From 07e58e504380614a2ab48e78570728695f8cec62 Mon Sep 17 00:00:00 2001 From: Dylan Hogg Date: Sun, 11 Dec 2022 11:07:10 +1100 Subject: [PATCH 01/20] Add types. --- src/library/crawler.py | 2 +- src/library/render.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/library/crawler.py b/src/library/crawler.py index 97cd08f..0b2300e 100644 --- a/src/library/crawler.py +++ b/src/library/crawler.py @@ -4,7 +4,7 @@ from library import render, readme, requirements -def write_files(csv_location, token, output_csv_filename, output_json_filename): +def write_files(csv_location: str, token: str, output_csv_filename: str, output_json_filename: str): start = datetime.now() # Read github urls from google docs diff --git a/src/library/render.py b/src/library/render.py index 4f05a2a..130f1e0 100644 --- a/src/library/render.py +++ b/src/library/render.py @@ -7,7 +7,7 @@ from library.ghw import GithubWrapper -def get_input_data(csv_location) -> pd.DataFrame: +def get_input_data(csv_location: str) -> pd.DataFrame: df = pd.read_csv(csv_location) df.columns = map(str.lower, df.columns) assert "githuburl" in df.columns @@ -92,7 +92,7 @@ def _display_description(ghw, name) -> str: return f"{repo.name}: {repo.description}" -def process(df_input, token) -> pd.DataFrame: +def process(df_input: pd.DataFrame, token: str) -> pd.DataFrame: ghw = GithubWrapper(token) df = df_input.copy() df["_repopath"] = df["githuburl"].apply(lambda x: urlparse(x).path.lstrip("/")) @@ -132,7 +132,7 @@ def process(df_input, token) -> pd.DataFrame: return df.sort_values("_stars", ascending=False) -def lines_header(count, category="") -> List[str]: +def lines_header(count: int, category: str = "") -> List[str]: category_line = f"A selection of {count} curated Python libraries and frameworks ordered by stars. \n" if len(category) > 0: category_line = f"A selection of {count} curated {category} Python libraries and frameworks ordered by stars. \n" @@ -145,7 +145,7 @@ def lines_header(count, category="") -> List[str]: ] -def add_markdown(df) -> pd.DataFrame: +def add_markdown(df: pd.DataFrame) -> pd.DataFrame: df["_doclines_main"] = df.apply( lambda x: make_markdown(x, include_category=True), axis=1 ) From 3dd32587c420d8b6d88ea502fd6f741e22f25e13 Mon Sep 17 00:00:00 2001 From: Dylan Hogg Date: Sun, 11 Dec 2022 11:07:39 +1100 Subject: [PATCH 02/20] Add unit tests. --- Makefile | 5 +- tests/test_render.py | 22 + tests/test_repos_source.csv | 903 ++++++++++++++++++++++++++++++++++++ 3 files changed, 929 insertions(+), 1 deletion(-) create mode 100644 tests/test_render.py create mode 100644 tests/test_repos_source.csv diff --git a/Makefile b/Makefile index 5f5a278..f95eb2a 100644 --- a/Makefile +++ b/Makefile @@ -21,12 +21,15 @@ run: black: source venv/bin/activate ; black . +## Run tests +test: + source venv/bin/activate ; PYTHONPATH='./src' pytest --capture=no tests + ## Serve local client serve-local-client: open http://localhost:8002/ cd client/app; python3 -m http.server 8002 - ## AWS S3 cp client app to S3 s3-deploy-app: cd client; make s3-deploy-app; make cf-invalidation diff --git a/tests/test_render.py b/tests/test_render.py new file mode 100644 index 0000000..95dfde0 --- /dev/null +++ b/tests/test_render.py @@ -0,0 +1,22 @@ +from loguru import logger +from library import render, env + + +def test_render_process(): + token = env.get("GITHUB_ACCESS_TOKEN") + csv_location = "tests/test_repos_source.csv" + + df_input = render.get_input_data(csv_location) + df_input = df_input.head(1) + df = render.process(df_input, token) + + logger.info(f"{df.shape=}") + logger.info(f"{df.columns=}") + + assert df.shape[0] == 1, "Unexpected number of rows" + assert df.shape[1] == 20, "Unexpected number of columns" + assert list(df.columns) == ["category", "githuburl", "featured", "links", "description", + "_repopath", "_reponame", "_stars", "_forks", "_watches", "_topics", + "_language", "_homepage", "_description", "_organization", + "_updated_at", "_last_commit_date", "_created_at", "_age_weeks", + "_stars_per_week"] diff --git a/tests/test_repos_source.csv b/tests/test_repos_source.csv new file mode 100644 index 0000000..d8264c3 --- /dev/null +++ b/tests/test_repos_source.csv @@ -0,0 +1,903 @@ +Category,GithubUrl,Featured,Links,Description +data,https://github.com/andialbrecht/sqlparse,,, +data,https://github.com/apache/arrow,,, +ml-dl,https://github.com/apache/incubator-mxnet,,, +ml,https://github.com/awslabs/autogluon,,, +pandas,https://github.com/aws/aws-sdk-pandas,1,, +web,https://github.com/benoitc/gunicorn,,, +viz,https://github.com/bokeh/bokeh,,, +util,https://github.com/boto/boto3,,, +perf,https://github.com/celery/celery,,, +ml,https://github.com/ContextLab/hypertools,,, +util,https://github.com/cython/cython,,, +perf,https://github.com/dask/dask,,, +nlp,https://github.com/dialogflow/dialogflow-python-client-v2,,, +ml,https://github.com/DistrictDataLabs/yellowbrick,,, +web,https://github.com/django/django,,, +ml-dl,https://github.com/skorch-dev/skorch,,, +perf,https://github.com/eventlet/eventlet,,, +nlp,https://github.com/explosion/spaCy,,, +nlp,https://github.com/explosion/spacy-streamlit,,, +time-series,https://github.com/facebook/prophet,1,, +typing,https://github.com/facebook/pyre-check,,, +nlp,https://github.com/facebookresearch/DrQA,,, +nlp,https://github.com/facebookresearch/ParlAI,,, +math,https://github.com/fredrik-johansson/mpmath,,, +ml,https://github.com/google/dopamine,,, +util,https://github.com/google/gin-config,,, +term,https://github.com/google/python-fire,,, +typing,https://github.com/google/pytype,,, +ml-dl,https://github.com/google/trax,,, +ml-ops,https://github.com/great-expectations/great_expectations,,, +web,https://github.com/huge-success/sanic,,, +data,https://github.com/JaidedAI/EasyOCR,,, +nlp,https://github.com/jamesturk/jellyfish,,, +gis,https://github.com/jasonrig/address-net,,, +nlp,https://github.com/jbesomi/texthero,,, +data,https://github.com/jmcnamara/XlsxWriter,,, +data,https://github.com/joke2k/faker,,, +math,https://github.com/jszymon/pacal,,, +jupyter,https://github.com/jupyter/notebook,,, +jupyter,https://github.com/jupyterlab/jupyterlab,,, +ml-dl,https://github.com/keras-team/keras,,, +util,https://github.com/kivy/kivy,,, +nlp,https://github.com/life4/textdistance,,, +data,https://github.com/lk-geimfari/mimesis,,, +ml,https://github.com/lmcinnes/umap,,, +testing,https://github.com/locustio/locust,1,, +jupyter,https://github.com/maartenbreddels/ipyvolume,,, +data,https://github.com/macbre/sql-metadata,1,, +viz,https://github.com/matplotlib/matplotlib,,, +util,https://github.com/mozillazg/pypy,,, +viz,https://github.com/mwaskom/seaborn,,, +testing,https://github.com/nedbat/coveragepy,,, +graph,https://github.com/networkx/networkx,,, +perf,https://github.com/numba/numba,,, +math,https://github.com/numpy/numpy,1,, +sim,https://github.com/openai/gym,,, +term,https://github.com/pallets/click,,, +web,https://github.com/pallets/flask,,, +gamedev,https://github.com/panda3d/panda3d,,, +pandas,https://github.com/pandas-dev/pandas,1,, +pandas,https://github.com/pandas-profiling/pandas-profiling,1,, +viz,https://github.com/plotly/dash,,, +viz,https://github.com/plotly/plotly.py,,, +sim,https://github.com/projectmesa/mesa,,, +util,https://github.com/psf/black,,, +ml,https://github.com/pycaret/pycaret,,, +util,https://github.com/PyCQA/pylint,,, +web,https://github.com/pyeve/eve,,, +gamedev,https://github.com/pygame/pygame,1,, +util,https://github.com/PyGithub/PyGithub,,, +ml,https://github.com/pymc-devs/pymc3,,, +testing,https://github.com/pytest-dev/pytest,,, +util,https://github.com/python-pillow/Pillow,,, +gis,https://github.com/python-visualization/folium,,, +typing,https://github.com/python/mypy,,, +nlp,https://github.com/pytorch/fairseq,,, +ml-dl,https://github.com/pytorch/pytorch,,, +jupyter,https://github.com/quantopian/qgrid,,, +ml,https://github.com/scikit-learn/scikit-learn,,, +ml,https://github.com/scipy/scipy,,, +data,https://github.com/scrapy/scrapy,,, +util,https://github.com/sphinx-doc/sphinx,,, +data,https://github.com/sqlalchemy/sqlalchemy,,, +ml,https://github.com/stan-dev/pystan,,, +ml,https://github.com/statsmodels/statsmodels,,, +graph,https://github.com/stellargraph/stellargraph,,, +viz,https://github.com/streamlit/streamlit,,, +math,https://github.com/sympy/sympy,1,, +testing,https://github.com/taverntesting/tavern,,, +ml-dl,https://github.com/tensorflow/tensorflow,,, +web,https://github.com/tornadoweb/tornado,1,, +ml,https://github.com/uber/causalml,,, +ml-ops,https://github.com/uber/ludwig,,, +web,https://github.com/unbit/uwsgi,,, +term,https://github.com/urwid/urwid,,, +perf,https://github.com/vaexio/vaex,,, +data,https://github.com/vi3k6i5/flashtext,,, +jupyter,https://github.com/voila-dashboards/voila,,, +data,https://github.com/ZoomerAnalytics/xlwings,,, +ml,https://github.com/skvark/opencv-python,,, +nlp,https://github.com/clips/pattern,,, +ml,https://github.com/rasbt/mlxtend,,, +ml-ops,https://github.com/spotify/luigi,,, +ml,https://github.com/dmlc/xgboost,,, +nlp,https://github.com/RaRe-Technologies/gensim,,, +nlp,https://github.com/nltk/nltk,,, +ml,https://github.com/NicolasHug/Surprise,,, +sim,https://github.com/AtsushiSakai/PythonRobotics,,, +util,https://github.com/nficano/python-lambda,,, +data,https://github.com/binux/pyspider,,, +ml-interpretability,https://github.com/marcotcr/lime,,, +ml,https://github.com/TeamHG-Memex/eli5,,, +nlp,https://github.com/huggingface/transformers,,, +nlp,https://github.com/huggingface/neuralcoref,,, +nlp,https://github.com/allenai/allennlp,,, +perf,https://github.com/h5py/h5py,,, +ml-ops,https://github.com/kedro-org/kedro,,From: https://github.com/quantumblacklabs/kedro, +nlp,https://github.com/ICLRandD/Blackstone,,, +ml-ops,https://github.com/apache/airflow,,, +ml-ops,https://github.com/mlflow/mlflow,,, +ml-ops,https://github.com/PrefectHQ/prefect,,, +ml-ops,https://github.com/dagster-io/dagster,,, +data,https://github.com/iterative/dvc,,, +util,https://github.com/mgedmin/check-manifest,,, +ml,https://github.com/onnx/onnx,,, +perf,https://github.com/modin-project/modin,,, +ml-dl,https://github.com/microsoft/DeepSpeed,,, +ml,https://github.com/microsoft/nni,,, +viz,https://github.com/altair-viz/altair,,, +viz,https://github.com/holoviz/holoviews,,, +ml-dl,https://github.com/explosion/thinc,,, +ml,https://github.com/automl/auto-sklearn,,, +ml,https://github.com/EpistasisLab/tpot,,, +ml,https://github.com/hyperopt/hyperopt,,, +ml-dl,https://github.com/keras-team/autokeras,,, +web,https://github.com/tiangolo/fastapi,1,, +nlp,https://github.com/ddangelov/Top2Vec,,, +nlp,https://github.com/huggingface/datasets,,, +ml-interpretability,https://github.com/pair-code/lit,1,, +viz,https://github.com/vispy/vispy,,, +nlp,https://github.com/neuml/txtai,,, +ml,https://github.com/FeatureLabs/featuretools,1,, +nlp,https://github.com/UKPLab/sentence-transformers,,, +nlp,https://github.com/plasticityai/magnitude,,, +nlp,https://github.com/openai/gpt-2,,, +ml,https://github.com/nmslib/hnswlib,,, +util,https://github.com/zenodo/zenodo,,, +graph,https://github.com/guyallard/markov_clustering,,, +data,https://github.com/twintproject/twint,,, +data,https://github.com/simple-salesforce/simple-salesforce,,, +ml,https://github.com/catboost/catboost,,, +nlp,https://github.com/sloria/TextBlob,,, +nlp,https://github.com/flairNLP/flair,,, +util,https://github.com/marshmallow-code/marshmallow,,, +pandas,https://github.com/adamerose/pandasgui,,, +data,https://github.com/s0md3v/Photon,,, +profiling,https://github.com/gaogaotiantian/viztracer,,, +util,https://github.com/pallets/jinja,,, +jupyter,https://github.com/nteract/testbook,,, +data,https://github.com/goldsmith/Wikipedia,,, +nlp,https://github.com/nipunsadvilkar/pysbd,,, +ml,https://github.com/wandb/client,,, +nlp,https://github.com/explosion/spacy-transformers,,, +term,https://github.com/tqdm/tqdm,1,, +nlp,https://github.com/explosion/spacy-stanza,,, +nlp,https://github.com/doccano/doccano,,, +sim,https://github.com/bulletphysics/bullet3,,, +nlp,https://github.com/LexPredict/lexpredict-lexnlp,,, +gis,https://github.com/openeventdata/mordecai,,, +nlp,https://github.com/minimaxir/textgenrnn,,, +ml,https://github.com/ourownstory/neural_prophet,,, +ml-dl,https://github.com/facebookresearch/pytorch3d,,, +viz,https://github.com/facebookresearch/hiplot,,, +term,https://github.com/tiangolo/typer,1,, +util,https://github.com/liiight/notifiers,,, +util,https://github.com/Delgan/loguru,1,, +debug,https://github.com/cool-RR/PySnooper,1,, +web,https://github.com/psf/requests,,, +nlp,https://github.com/explosion/spacy-models,,, +term,https://github.com/willmcgugan/rich,,, +sim,https://github.com/artemyk/dynpy,,, +security,https://github.com/PyCQA/bandit,,, +testing,https://github.com/tox-dev/tox,,, +ml,https://github.com/google/jax,,, +ml-dl,https://github.com/google/flax,,, +math,https://github.com/WillianFuks/tfcausalimpact,,, +ml,https://github.com/HarisIqbal88/PlotNeuralNet,,, +ml-interpretability,https://github.com/slundberg/shap,,, +math,https://github.com/dit/dit,,, +util,https://github.com/home-assistant/core,,, +ml-dl,https://github.com/dmlc/dgl,,, +ml,https://github.com/awslabs/dgl-ke,,, +template,https://github.com/tiangolo/full-stack-fastapi-postgresql,,, +util,https://github.com/PyCQA/isort,,, +web,https://github.com/jordaneremieff/mangum,,, +sim,https://github.com/PettingZoo-Team/PettingZoo,,, +viz,https://github.com/lux-org/lux,,, +nlp,https://github.com/EleutherAI/gpt-neo,,, +ml,https://github.com/MAIF/shapash,,, +viz,https://github.com/man-group/dtale,,, +ml,https://github.com/huggingface/accelerate,,, +util,https://github.com/camelot-dev/camelot,,, +crypto,https://github.com/Nerolation/ethereum-datafarm,,, +viz,https://github.com/ml-tooling/opyrator,,, +debug,https://github.com/alexmojaki/snoop,,, +debug,https://github.com/alexmojaki/heartrate,,, +ml,https://github.com/lucidrains/deep-daze,,, +util,https://github.com/aws/aws-lambda-python-runtime-interface-client,,, +crypto,https://github.com/CyberPunkMetalHead/Binance-volatility-trading-bot,,, +web,https://github.com/pywebio/PyWebIO,,, +util,https://github.com/tiangolo/poetry-version-plugin,,, +time-series,https://github.com/firmai/atspy,,, +data,https://github.com/sfu-db/connector-x,1,, +data,https://github.com/facebookresearch/AugLy,,, +nlp,https://github.com/speechbrain/speechbrain,,, +debug,https://github.com/gruns/icecream,,, +ml-ops,https://github.com/nccr-itmo/FEDOT,,, +ml,https://github.com/linkedin/greykite,1,, +ml,https://github.com/spotify/annoy,,, +template,https://github.com/TezRomacH/python-package-template,1,, +util,https://github.com/pyenv/pyenv,,, +jupyter,https://github.com/jupyterlite/jupyterlite,,, +data,https://github.com/pynamodb/PynamoDB,1,, +nlp,https://github.com/kingoflolz/mesh-transformer-jax,1,, +sim,https://github.com/google/brax,,, +util,https://github.com/pyodide/pyodide,,, +sim,https://github.com/facebookresearch/droidlet,,, +ml,https://github.com/online-ml/river,1,, +term,https://github.com/willmcgugan/textual,,, +data,https://github.com/microsoft/genalog,,, +template,https://github.com/drivendata/cookiecutter-data-science,1,, +template,https://github.com/crmne/cookiecutter-modern-datascience,,, +template,https://github.com/cookiecutter/cookiecutter,,, +crypto,https://github.com/ethereum/py-evm,,, +crypto,https://github.com/blockchainsllc/in3,,, +nlp,https://github.com/salesforce/CodeT5,,, +sim,https://github.com/salesforce/ai-economist,1,, +ml,https://github.com/salesforce/warp-drive,,, +data,https://github.com/tiangolo/sqlmodel,1,, +data,https://github.com/simonw/sqlite-utils,,, +sim,https://github.com/nv-tlabs/GameGAN_code,,, +ml,https://github.com/microsoft/Focal-Transformer,,, +ml,https://github.com/deepmind/deepmind-research,,, +ml,https://github.com/carla-recourse/CARLA,,, +util,https://github.com/aws/serverless-application-model,,, +ml,https://github.com/TencentARC/GFPGAN,,, +util,https://github.com/pyston/pyston,,, +util,https://github.com/jorgebastida/awslogs,,, +util,https://github.com/rpgreen/apilogs,,, +sim,https://github.com/BilHim/trafficSimulator,,, +web,https://github.com/websocket-client/websocket-client,,, +ml-dl,https://github.com/tensorflow/similarity,,, +ml-dl,https://github.com/PyTorchLightning/pytorch-lightning,1,, +ml,https://github.com/microsoft/FLAML,,, +ml,https://github.com/amzn/pecos,,, +crypto,https://github.com/freqtrade/freqtrade,,, +crypto,https://github.com/bmoscon/cryptofeed,,, +crypto,https://github.com/ccxt/ccxt,,, +crypto,https://github.com/ethereum/web3.py,1,, +crypto,https://github.com/pmaji/crypto-whale-watching-app,,, +util,https://github.com/Python-Markdown/markdown,,, +time-series,https://github.com/salesforce/Merlion,,, +web,https://github.com/sherlock-project/sherlock,,, +sim,https://github.com/QuantEcon/QuantEcon.py,,, +data,https://github.com/collerek/ormar,,, +util,https://github.com/pytransitions/transitions,,, +nlp,https://github.com/allenai/s2orc-doc2json,,, +nlp,https://github.com/arxiv-vanity/arxiv-vanity,,, +jupyter,https://github.com/jupyterlab/jupyterlab-desktop,,, +term,https://github.com/deeplook/sparklines,,, +web,https://github.com/strawberry-graphql/strawberry,,, +crypto,https://github.com/man-c/pycoingecko,,, +data,https://github.com/praw-dev/praw,,, +ml,https://github.com/google/mediapipe,,, +data,https://github.com/amzn/ion-python,,, +crypto,https://github.com/EthTx/ethtx,,, +crypto,https://github.com/EthTx/ethtx_ce,,, +data,https://github.com/airbnb/omniduct,,, +data,https://github.com/airbnb/knowledge-repo,,, +jupyter,https://github.com/nteract/papermill,,, +nlp,https://github.com/MaartenGr/BERTopic,,, +util,https://github.com/squidfunk/mkdocs-material,,, +util,https://github.com/arrow-py/arrow,,, +util,https://github.com/sdispater/pendulum,,, +data,https://github.com/sdispater/orator,,, +crypto,https://github.com/ethereum/consensus-specs,,, +data,https://github.com/simonw/datasette,1,, +gis,https://github.com/geopandas/geopandas,1,, +testing,https://github.com/HypothesisWorks/hypothesis,1,, +ml-dl,https://github.com/rwightman/pytorch-image-models,,, +template,https://github.com/eugeneyan/python-collab-template,,, +pandas,https://github.com/stitchfix/hamilton,,, +util,https://github.com/fastai/ghapi,,, +util,https://github.com/pytoolz/toolz,,, +util,https://github.com/paramiko/paramiko,,, +util,https://github.com/PyFilesystem/pyfilesystem2,,, +sim,https://github.com/openai/mujoco-py,,, +util,https://github.com/pyparsing/pyparsing,,, +crypto,https://github.com/Blankly-Finance/Blankly,,, +util,https://github.com/JulienPalard/Pipe,,, +nlp,https://github.com/openai/grade-school-math,,, +data,https://github.com/Kaggle/kaggle-api,,, +template,https://github.com/pyscaffold/pyscaffold,,, +util,https://github.com/airbnb/ottr,,, +nlp,https://github.com/featureform/embeddinghub,,, +util,https://github.com/xrudelis/pytrait,,, +crypto,https://github.com/palkeo/panoramix,,, +crypto,https://github.com/ethereum/eth-utils,,, +util,https://github.com/Legrandin/pycryptodome,,, +crypto,https://github.com/crytic/slither,,, +data,https://github.com/graphistry/pygraphistry,,, +util,https://github.com/linkedin/shiv,,, +util,https://github.com/indygreg/PyOxidizer,,, +util,https://github.com/pypa/pipx,,, +util,https://github.com/samuelcolvin/pydantic,,, +gui,https://github.com/hoffstadt/DearPyGui,,, +util,https://github.com/irmen/pyminiaudio,,, +gamedev,https://github.com/pyglet/pyglet,,, +gamedev,https://github.com/pythonarcade/arcade,1,, +gui,https://github.com/dddomodossola/remi,,, +gui,https://github.com/PySimpleGUI/PySimpleGUI,1,, +gui,https://github.com/r0x0r/pywebview,,, +web,https://github.com/graphql-python/graphene,,, +gui,https://github.com/wxWidgets/Phoenix,,, +security,https://github.com/pyupio/safety,,, +security,https://github.com/trailofbits/pip-audit,,, +security,https://github.com/snyk-labs/pysnyk,,, +security,https://github.com/sonatype-nexus-community/jake,,, +security,https://github.com/aquasecurity/trivy,,, +ml-dl,https://github.com/facebookresearch/ppuda,,, +nlp,https://github.com/Franck-Dernoncourt/NeuroNER,,, +ml,https://github.com/jacopotagliabue/reclist,,, +sim,https://github.com/Unity-Technologies/ml-agents,,, +util,https://github.com/Gondolav/pyfuncol,,, +util,https://github.com/clarete/forbiddenfruit,,, +ml,https://github.com/mrdbourke/m1-machine-learning-test,,, +ml,https://github.com/apple/coremltools,,, +util,https://github.com/mrabarnett/mrab-regex,,, +perf,https://github.com/tlkh/asitop,,, +perf,https://github.com/tlkh/tf-metal-experiments,,, +term,https://github.com/FedericoCeratto/dashing,,, +term,https://github.com/jquast/blessed,,, +term,https://github.com/Rockhopper-Technologies/enlighten,,, +web,https://github.com/vitalik/django-ninja,,, +data,https://github.com/scikit-hep/awkward-1.0,,, +jupyter,https://github.com/mwouts/jupytext,,, +viz,https://github.com/gradio-app/gradio,,, +nlp,https://github.com/NorskRegnesentral/skweak,,, +ml-ops,https://github.com/evidentlyai/evidently,,, +ml,https://github.com/jina-ai/jina,,, +ml-dl,https://github.com/PaddlePaddle/Paddle,,, +ml,https://github.com/jina-ai/finetuner,,, +ml-ops,https://github.com/activeloopai/Hub,,, +ml-interpretability,https://github.com/SeldonIO/alibi,,, +ml-interpretability,https://github.com/pytorch/captum,,, +ml-ops,https://github.com/feast-dev/feast,,, +ml-ops,https://github.com/Netflix/metaflow,,, +data,https://github.com/amundsen-io/amundsen,,, +data,https://github.com/hyperqueryhq/whale,,, +ml-ops,https://github.com/google/ml-metadata,,, +ml-ops,https://github.com/tensorflow/data-validation,,, +ml-ops,https://github.com/polyaxon/polyaxon,,, +ml-ops,https://github.com/allegroai/clearml,,, +ml-ops,https://github.com/kubeflow/pipelines,,, +ml-ops,https://github.com/kubeflow/fairing,,, +ml,https://github.com/rentruewang/koila,,, +ml,https://github.com/facebookresearch/vissl,,, +ml,https://github.com/Megvii-BaseDetection/YOLOX,,, +nlp,https://github.com/Layout-Parser/layout-parser,,, +nlp,https://github.com/bytedance/lightseq,,, +time-series,https://github.com/facebookresearch/Kats,,, +viz,https://github.com/marceloprates/prettymaps,,, +gis,https://github.com/microsoft/torchgeo,,, +ml-dl,https://github.com/pyg-team/pytorch_geometric,,, +data,https://github.com/ndrplz/google-drive-downloader,,, +viz,https://github.com/VHRanger/nodevectors,,, +util,https://github.com/spotify/pedalboard,,, +ml-interpretability,https://github.com/jalammar/ecco,,, +ml-interpretability,https://github.com/oegedijk/explainerdashboard,,, +ml-interpretability,https://github.com/cdpierse/transformers-interpret,,, +data,https://github.com/alirezamika/autoscraper,,, +ml-ops,https://github.com/aimhubio/aim,,, +ml-ops,https://github.com/deepset-ai/haystack,,, +nlp,https://github.com/minimaxir/aitextgen,,, +nlp,https://github.com/minimaxir/gpt-2-simple,,, +nlp,https://github.com/kootenpv/contractions,,, +nlp,https://github.com/FerdinandZhong/punctuator,,, +nlp,https://github.com/shivam5992/textstat,,, +nlp,https://github.com/makcedward/nlpaug,,, +data,https://github.com/yzhao062/pyod,,, +diffusion,https://github.com/openai/glide-text2im,,, +data,https://github.com/mchong6/JoJoGAN,,, +pandas,https://github.com/tkrabel/bamboolib,,, +perf,https://github.com/klen/py-frameworks-bench,,, +web,https://github.com/encode/starlette,,, +web,https://github.com/emmett-framework/emmett,,, +web,https://github.com/Neoteroi/BlackSheep,,, +web,https://github.com/klen/muffin,,, +web,https://github.com/falconry/falcon,,, +util,https://github.com/python/cpython,,, +study,https://github.com/dylanhogg/crazy-awesome-python,,, +crypto,https://github.com/dylanhogg/crazy-awesome-crypto,,, +perf,https://github.com/tiangolo/asyncer,,, +perf,https://github.com/agronholm/anyio,,, +perf,https://github.com/python-trio/trio,,, +study,https://github.com/TheAlgorithms/Python,,, +perf,https://github.com/pympler/pympler,,, +data,https://github.com/google/weather-tools,,, +web,https://github.com/aio-libs/aiohttp,,, +perf,https://github.com/google/flatbuffers,,, +web,https://github.com/encode/uvicorn,,, +util,https://github.com/yaml/pyyaml,,, +util,https://github.com/pre-commit/pre-commit,,, +util,https://github.com/bastibe/python-soundfile,,, +nlp,https://github.com/chrismattmann/tika-python,,, +ml-dl,https://github.com/rafiqhasan/auto-tensorflow,,, +ml,https://github.com/bmabey/pyLDAvis,,, +pandas,https://github.com/pyjanitor-devs/pyjanitor,1,, +pandas,https://github.com/Zsailer/pandas_flavor,,, +util,https://github.com/SethMMorton/natsort,,, +template,https://github.com/dylanhogg/python-project-template,,, +ml,https://github.com/facebookresearch/ReAgent,,, +ml-dl,https://github.com/pyro-ppl/pyro,,, +util,https://github.com/tebelorg/RPA-Python,,, +debug,https://github.com/gotcha/ipdb,,, +ml-dl,https://github.com/albumentations-team/albumentations,,, +study,https://github.com/fchollet/deep-learning-with-python-notebooks,,, +ml-dl,https://github.com/facebookresearch/detr,,, +util,https://github.com/pycqa/flake8,,, +jupyter,https://github.com/jupyter-lsp/jupyterlab-lsp,,, +jupyter,https://github.com/chaoleili/jupyterlab_tensorboard,,, +viz,https://github.com/holoviz/panel,,, +study,https://github.com/jakevdp/PythonDataScienceHandbook,,, +pandas,https://github.com/pydata/pandas-datareader,,, +util,https://github.com/scikit-image/scikit-image,,, +data,https://github.com/sdv-dev/SDV,,, +nlp,https://github.com/recognai/rubrix,,, +pandas,https://github.com/polyaxon/datatile,,, +gis,https://github.com/giswqs/leafmap,,, +perf,https://github.com/mher/flower,,, +ml-dl,https://github.com/kornia/kornia,,, +gis,https://github.com/rasterio/rasterio,1,, +gis,https://github.com/OSGeo/gdal,,, +gis,https://github.com/shapely/shapely,1,, +gis,https://github.com/Toblerity/Fiona,,, +gis,https://github.com/pyproj4/pyproj,,, +gis,https://github.com/pysal/spopt,,, +ml,https://github.com/csinva/imodels,,, +gis,https://github.com/pysal/pysal,1,, +gis,https://github.com/ResidentMario/geoplot,1,, +gis,https://github.com/jupyter-widgets/ipyleaflet,,, +util,https://github.com/imageio/imageio,,, +pandas,https://github.com/pandera-dev/pandera,1,, +gis,https://github.com/GoogleCloudPlatform/dataflow-geobeam,,, +gis,https://github.com/openaddresses/pyesridump,,, +ml-dl,https://github.com/tensorlayer/tensorlayer,,, +gis,https://github.com/GRAAL-Research/deepparse,,, +nlp,https://github.com/coastalcph/lex-glue,,, +ml-dl,https://github.com/nebuly-ai/nebullvm,,, +ml-ops,https://github.com/dbt-labs/dbt-core,,, +nlp,https://github.com/google-research/language,,, +nlp,https://github.com/yoadtew/zero-shot-image-to-text,,, +util,https://github.com/rspeer/python-ftfy,,, +data,https://github.com/Psycoguana/SubredditMediaDownloader,,, +data,https://github.com/dmarx/psaw,,, +ml-dl,https://github.com/pytorch/torchrec,,, +nlp,https://github.com/infinitylogesh/mutate,,, +math,https://github.com/LukasZahradnik/PyNeuraLogic,,, +ml,https://github.com/huggingface/optimum,,, +util,https://github.com/alievk/avatarify-python,,, +nlp,https://github.com/microsoft/unilm,,, +util,https://github.com/ParthJadhav/Tkinter-Designer,,, +nlp,https://github.com/google-research/byt5,,, +ml-dl,https://github.com/Nyandwi/ModernConvNets,,, +nlp,https://github.com/neuralmagic/deepsparse,,, +viz,https://github.com/holoviz/holoviz,1,, +gis,https://github.com/holoviz/datashader,1,, +pandas,https://github.com/holoviz/hvplot,,, +ml-dl,https://github.com/tensorflow/mesh,,, +gis,https://github.com/holoviz/geoviews,,, +pandas,https://github.com/holoviz/spatialpandas,,, +sim,https://github.com/UDST/urbansim,,, +gis,https://github.com/sentinel-hub/eo-learn,,, +gis,https://github.com/sentinel-hub/sentinelhub-py,,, +gis,https://github.com/sentinelsat/sentinelsat,,, +gis,https://github.com/scisco/area,,, +gis,https://github.com/earthlab/earthpy,,, +gis,https://github.com/fatiando/verde,,, +util,https://github.com/pydata/xarray,,, +gis,https://github.com/SciTools/cartopy,,, +viz,https://github.com/luispedro/mahotas,,, +gis,https://github.com/cogeotiff/rio-cogeo,,, +gis,https://github.com/cogeotiff/rio-tiler,,, +ml-dl,https://github.com/rasbt/deeplearning-models,,, +ml-dl,https://github.com/hysts/pytorch_image_classification,,, +data,https://github.com/duckdb/duckdb,1,, +ml,https://github.com/linkedin/fasttreeshap,,, +ml-dl,https://github.com/mcahny/Deep-Video-Inpainting,,, +ml-dl,https://github.com/vt-vl-lab/FGVC,,, +ml-dl,https://github.com/researchmm/STTN,,, +study,https://github.com/GoogleCloudPlatform/practical-ml-vision-book,,, +ml,https://github.com/ageron/handson-ml2,,, +gis,https://github.com/gregorhd/mapcompare,,, +gis,https://github.com/google/earthengine-api,,, +gis,https://github.com/anitagraser/movingpandas,,, +gis,https://github.com/scikit-mobility/scikit-mobility,,, +ml-ops,https://github.com/adap/flower,,, +ml,https://github.com/tensorflow/tensor2tensor,,, +data,https://github.com/facebookresearch/Mephisto,,, +ml,https://github.com/tensorflow/addons,,, +ml-dl,https://github.com/leondgarse/keras_cv_attention_models,,, +ml,https://github.com/google/automl,,, +typing,https://github.com/agronholm/typeguard,,, +util,https://github.com/agronholm/apscheduler,,, +data,https://github.com/agronholm/sqlacodegen,,, +data,https://github.com/JovianML/opendatasets,,, +ml-dl,https://github.com/kakaobrain/rq-vae-transformer,,, +typing,https://github.com/microsoft/pyright,,, +util,https://github.com/spack/spack,,, +gis,https://github.com/scikit-geometry/scikit-geometry,,, +gis,https://github.com/Lydorn/Polygonization-by-Frame-Field-Learning,,, +gis,https://github.com/Lydorn/mapalignment,,, +gis,https://github.com/pygeos/pygeos,,, +ml-dl,https://github.com/lucidrains/DALLE2-pytorch,,, +util,https://github.com/venth/aws-adfs,,, +gis,https://github.com/Toblerity/rtree,,, +gis,https://github.com/lycantropos/wagyu,,, +ml,https://github.com/HazyResearch/domino,,, +nlp,https://github.com/HazyResearch/fonduer,,, +nlp,https://github.com/hazyresearch/fonduer-tutorials,,, +ml,https://github.com/brohrer/cottonwood,,, +ml-dl,https://github.com/neuralmagic/sparseml,,, +util,https://github.com/facebookresearch/hydra,,, +gis,https://github.com/GDAOSU/LOD2BuildingModel,,, +ml-dl,https://github.com/benedekrozemberczki/tigerlily,,, +gis,https://github.com/cloudsen12/easystac,,, +profiling,https://github.com/bloomberg/memray,1,, +nlp,https://github.com/espnet/espnet,,, +nlp,https://github.com/NVIDIA/NeMo,,, +nlp,https://github.com/huawei-noah/Pretrained-Language-Model,,, +nlp,https://github.com/salesforce/CodeGen,,, +util,https://github.com/pdoc3/pdoc,,, +util,https://github.com/mamba-org/mamba,,, +data,https://github.com/sqlalchemy/alembic,,, +ml,https://github.com/aleju/imgaug,,, +ml,https://github.com/BorealisAI/advertorch,,, +ml-dl,https://github.com/facebookresearch/mmf,,, +ml,https://github.com/optuna/optuna,,, +ml,https://github.com/lightly-ai/lightly,,, +ml,https://github.com/open-mmlab/mmediting,,, +ml,https://github.com/open-mmlab/mmdetection,,, +ml,https://github.com/open-mmlab/mmcv,,, +ml,https://github.com/open-mmlab/mmsegmentation,,, +ml-dl,https://github.com/pytorch/botorch,,, +ml-ops,https://github.com/horovod/horovod,,, +ml,https://github.com/nicolas-chaulet/torch-points3d,,, +ml-dl,https://github.com/arogozhnikov/einops,,, +jupyter,https://github.com/executablebooks/jupyter-book,,, +gis,https://github.com/darribas/gds_env,,, +jupyter,https://github.com/vizzuhq/ipyvizzu,,, +gis,https://github.com/corteva/rioxarray,,, +gis,https://github.com/geopandas/contextily,,, +gis,https://github.com/geopandas/xyzservices,,, +gis,https://github.com/geopandas/dask-geopandas,,, +gis,https://github.com/geopandas/pyogrio,,, +gis,https://github.com/gboeing/osmnx,,, +gis,https://github.com/gboeing/osmnx-examples,,, +sim,https://github.com/gboeing/pynamical,,, +sim,https://github.com/gboeing/street-network-models,,, +ml,https://github.com/mdbloice/Augmentor,,, +util,https://github.com/jd/tenacity,,, +gis,https://github.com/developmentseed/geojson-pydantic,,, +gis,https://github.com/developmentseed/landsat-util,,, +gis,https://github.com/developmentseed/label-maker,,, +gis,https://github.com/developmentseed/geolambda,,, +perf,https://github.com/pybind/pybind11,,, +util,https://github.com/fsspec/filesystem_spec,,, +jupyter,https://github.com/computationalmodelling/nbval,,, +term,https://github.com/matthewdeanmartin/terminaltables,,, +ml,https://github.com/probml/pyprobml,,, +util,https://github.com/lidatong/dataclasses-json,,, +ml-dl,https://github.com/alpa-projects/alpa,,, +gis,https://github.com/developmentseed/titiler,,, +web,https://github.com/developmentseed/fastai-serving,,, +gis,https://github.com/developmentseed/cogeo-mosaic,,, +gis,https://github.com/spatialucr/geosnap,,, +gis,https://github.com/pysal/momepy,,, +ml,https://github.com/merantix-momentum/squirrel-core,,, +data,https://github.com/tokern/data-lineage,,, +ml-ops,https://github.com/kedro-org/kedro-viz,,, +util,https://github.com/hgrecco/pint,,, +template,https://github.com/Buuntu/fastapi-react,,, +util,https://github.com/mingrammer/diagrams,,, +gis,https://github.com/matplotlib/basemap,,, +gis,https://github.com/geopython/OWSLib,,, +gis,https://github.com/uber/h3-py,,, +data,https://github.com/uber/petastorm,,, +time-series,https://github.com/uber/orbit,,, +data,https://github.com/uber/fiber,,, +gis,https://github.com/domlysz/BlenderGIS,,, +gis,https://github.com/giswqs/geemap,,, +gis,https://github.com/plant99/felicette,,, +testing,https://github.com/newsapps/beeswithmachineguns,,, +ml,https://github.com/cleanlab/cleanlab,,, +web,https://github.com/pyscript/pyscript,,, +jupyter,https://github.com/connorferster/handcalcs,,, +util,https://github.com/pyscript/pyscript-cli,,, +util,https://github.com/norvig/pytudes,,, +typing,https://github.com/tk0miya/docutils-stubs,,, +testing,https://github.com/pytest-dev/pytest-xdist,,, +testing,https://github.com/seleniumbase/SeleniumBase,,, +debug,https://github.com/inducer/pudb,,, +testing,https://github.com/pytest-dev/pytest-mock,,, +testing,https://github.com/pytest-dev/pytest-cov,,, +testing,https://github.com/Teemu/pytest-sugar,,, +testing,https://github.com/robotframework/robotframework,,, +testing,https://github.com/spulec/freezegun,,, +testing,https://github.com/pytest-dev/pytest-testinfra,,, +testing,https://github.com/pytest-dev/pytest-bdd,,, +testing,https://github.com/pytest-dev/pytest-asyncio,,, +jupyter,https://github.com/nbQA-dev/nbQA,,, +testing,https://github.com/wolever/parameterized,,, +util,https://github.com/pytoolz/cytoolz,,, +util,https://github.com/suor/funcy,,, +util,https://github.com/more-itertools/more-itertools,,, +gis,https://github.com/SciTools/iris,,, +viz,https://github.com/enthought/mayavi,,, +data,https://github.com/zarr-developers/zarr-python,,, +data,https://github.com/intake/intake,,, +gis,https://github.com/makepath/xarray-spatial,,, +gis,https://github.com/pytroll/satpy,,, +util,https://github.com/pyca/bcrypt,,, +util,https://github.com/pyca/cryptography,,, +util,https://github.com/pyca/pynacl,,, +profiling,https://github.com/csurfer/pyheat,,, +debug,https://github.com/alexmojaki/birdseye,,, +util,https://github.com/pygments/pygments,,, +util,https://github.com/samuelcolvin/python-devtools,,, +perf,https://github.com/dask/distributed,,, +ml,https://github.com/dask/dask-ml,,, +data,https://github.com/dask/fastparquet,,, +testing,https://github.com/behave/behave,,, +util,https://github.com/PyCQA/pycodestyle,,, +util,https://github.com/theskumar/python-dotenv,,, +util,https://github.com/metachris/logzero,,, +util,https://github.com/pyinstaller/pyinstaller,,, +util,https://github.com/python-poetry/poetry,,, +data,https://github.com/PyTables/PyTables,,, +util,https://github.com/GrahamDumpleton/wrapt,,, +util,https://github.com/keon/algorithms,,, +profiling,https://github.com/plasma-umass/scalene,1,, +profiling,https://github.com/P403n1x87/austin,,, +profiling,https://github.com/joerick/pyinstrument,,, +profiling,https://github.com/benfred/py-spy,,, +profiling,https://github.com/sumerc/yappi,,, +util,https://github.com/MagicStack/uvloop,,, +web,https://github.com/MagicStack/httptools,,, +template,https://github.com/sqlalchemy/mako,,, +util,https://github.com/rasbt/watermark,,, +ml,https://github.com/tensorly/tensorly,,, +ml,https://github.com/pytorch/glow,,, +study,https://github.com/udacity/deep-learning-v2-pytorch,,, +util,https://github.com/numba/llvmlite,,, +util,https://github.com/zeromq/pyzmq,,, +study,https://github.com/rasbt/stat451-machine-learning-fs20,,, +study,https://github.com/rasbt/stat453-deep-learning-ss20,,, +ml,https://github.com/huggingface/evaluate,,, +gis,https://github.com/zorzi-s/PolyWorldPretrainedNetwork,,, +gis,https://github.com/zorzi-s/projectRegularization,,, +gis,https://github.com/zorzi-s/MapRepair,,, +gis,https://github.com/CGAL/cgal-swig-bindings,,, +ml,https://github.com/apple/ml-ane-transformers,,, +perf,https://github.com/markshannon/faster-cpython,,, +perf,https://github.com/brandtbucher/specialist,,, +ml-dl,https://github.com/borisdayma/dalle-mini,,, +ml-dl,https://github.com/saharmor/dalle-playground,,, +gis,https://github.com/apache/incubator-sedona,,, +ml-dl,https://github.com/facebookresearch/Detectron,,, +ml-dl,https://github.com/facebookresearch/Detectron2,,, +util,https://github.com/MarkHershey/arxiv-dl,,, +util,https://github.com/lukasschwab/arxiv.py,,, +ml,https://github.com/hips/autograd,,, +diffusion,https://github.com/CompVis/latent-diffusion,,, +util,https://github.com/spotify/basic-pitch,,, +util,https://github.com/sciunto-org/python-bibtexparser,,, +ml,https://github.com/NVIDIA/cuda-python,,, +util,https://github.com/py-pdf/PyPDF2,,, +util,https://github.com/bndr/pipreqs,,, +ml-dl,https://github.com/JerryYLi/valhalla-nmt,,, +ml-dl,https://github.com/matterport/Mask_RCNN,,, +util,https://github.com/PyFPDF/fpdf2,,, +ml-dl,https://github.com/nerdyrodent/VQGAN-CLIP,,, +util,https://github.com/paperswithcode/axcell,,, +data,https://github.com/paperswithcode/sota-extractor,,, +ml-dl,https://github.com/iperov/DeepFaceLab,,, +ml-dl,https://github.com/deepfakes/faceswap,,, +ml-dl,https://github.com/deepmind/dm-haiku,,, +data,https://github.com/scholarly-python-package/scholarly,,, +util,https://github.com/joblib/joblib,,, +util,https://github.com/grantjenks/python-diskcache,,, +perf,https://github.com/intel/scikit-learn-intelex,,, +profiling,https://github.com/pythonspeed/filprofiler,,, +data,https://github.com/harangju/wikinet,,, +util,https://github.com/openai/openai-python,,, +data,https://github.com/pyeve/cerberus,,, +ml-ops,https://github.com/bodywork-ml/bodywork-core,,, +sim,https://github.com/isl-org/Open3D,,, +util,https://github.com/brandon-rhodes/python-patterns,,, +ml,https://github.com/mljar/mljar-supervised,,, +pandas,https://github.com/nalepae/pandarallel,1,, +pandas,https://github.com/jmcarpenter2/swifter,,, +gis,https://github.com/Artelys/geonetworkx,,, +ml,https://github.com/google-research/deeplab2,,, +gis,https://github.com/mcordts/cityscapesScripts,,, +ml-ops,https://github.com/unionai-oss/unionml,,, +ml-ops,https://github.com/flyteorg/flyte,,, +util,https://github.com/jazzband/pip-tools,,, +data,https://github.com/jazzband/tablib,,, +perf,https://github.com/pola-rs/polars,1,, +gis,https://github.com/weecology/DeepForest,,, +math,https://github.com/facebookresearch/theseus,,, +util,https://github.com/omry/omegaconf,,, +perf,https://github.com/noxdafox/pebble,,, +ml,https://github.com/py-why/dowhy,,, +util,https://github.com/ashleve/lightning-hydra-template,,, +typing,https://github.com/patrick-kidger/torchtyping,,, +perf,https://github.com/Omyyyy/pycom,,, +web,https://github.com/rstudio/py-shiny,,, +gis,https://github.com/GeospatialPython/pyshp,,, +ml-dl,https://github.com/mosaicml/composer,,, +ml,https://github.com/cleverhans-lab/cleverhans,,, +gis,https://github.com/bowenc0221/boundary-iou-api,,, +study,https://github.com/amanchadha/coursera-deep-learning-specialization,,, +ml,https://github.com/autonlab/auton-survival,,, +ml-dl,https://github.com/pytorch/ignite,1,, +data,https://github.com/ibis-project/ibis,1,, +diffusion,https://github.com/CompVis/stable-diffusion,,, +ml-ops,https://github.com/skops-dev/skops,,, +perf,https://github.com/ZeroIntensity/pointers.py,,, +pandas,https://github.com/machow/siuba,,, +ml,https://github.com/koaning/scikit-lego,,, +data,https://github.com/koaning/human-learn,,, +nlp,https://github.com/koaning/whatlies,,, +study,https://github.com/koaning/calm-notebooks,,, +ml-ops,https://github.com/aiqc/aiqc,,, +perf,https://github.com/Blosc/python-blosc,,, +data,https://github.com/ktrueda/parquet-tools,,, +study,https://github.com/BayesianModelingandComputationInPython/BookCode_Edition1,,, +study,https://github.com/zhanymkanov/fastapi-best-practices,,, +diffusion,https://github.com/nateraw/stable-diffusion-videos,,, +data,https://github.com/pytorch/data,,, +gis,https://github.com/edomel/boundaryvt,,, +diffusion,https://github.com/sharonzhou/long_stable_diffusion,,, +study,https://github.com/karpathy/nn-zero-to-hero,,, +study,https://github.com/karpathy/micrograd,,, +ml,https://github.com/marqo-ai/marqo,,, +ml-dl,https://github.com/samuela/git-re-basin,,, +util,https://github.com/pypa/hatch,,, +diffusion,https://github.com/divamgupta/diffusionbee-stable-diffusion-ui,,, +diffusion,https://github.com/invoke-ai/InvokeAI,,, +study,https://github.com/jackhidary/quantumcomputingbook,,, +sim,https://github.com/Qiskit/qiskit,,, +sim,https://github.com/quantumlib/cirq,,, +ml-dl,https://github.com/xinntao/Real-ESRGAN,,, +ml-dl,https://github.com/XPixelGroup/BasicSR,,, +diffusion,https://github.com/lkwq007/stablediffusion-infinity,,, +diffusion,https://github.com/divamgupta/stable-diffusion-tensorflow,,, +study,https://github.com/fluentpython/example-code-2e,,, +ml-dl,https://github.com/fepegar/torchio,,, +ml-dl,https://github.com/praw-dev/asyncpraw,,, +data,https://github.com/gristlabs/grist-core,,, +data,https://github.com/google/tensorstore,,, +nlp,https://github.com/huggingface/setfit,,, +ml-dl,https://github.com/Sanster/lama-cleaner,,, +sim,https://github.com/openfisca/openfisca-core,,, +sim,https://github.com/ActivitySim/activitysim,,, +sim,https://github.com/ActivitySim/populationsim,,, +util,https://github.com/google/latexify_py,,, +study,https://github.com/NielsRogge/Transformers-Tutorials,,, +nlp,https://github.com/deepset-ai/FARM,,, +diffusion,https://github.com/huggingface/diffusers,,, +gis,https://github.com/ghislainv/forestatrisk,,, +diffusion,https://github.com/jina-ai/discoart,,, +diffusion,https://github.com/carson-katri/dream-textures,,, +diffusion,https://github.com/XavierXiao/Dreambooth-Stable-Diffusion,,, +util,https://github.com/brokenloop/jsontopydantic,,, +util,https://github.com/gefyrahq/gefyra,,, +study,https://github.com/cosmicpython/book,,, +study,https://github.com/mynameisfiber/high_performance_python_2e,,, +study,https://github.com/wesm/pydata-book,,, +diffusion,https://github.com/ashawkey/stable-dreamfusion,,, +sim,https://github.com/viblo/pymunk,1,, +ml-dl,https://github.com/facebookincubator/AITemplate,,, +ml-ops,https://github.com/orchest/orchest,,, +gis,https://github.com/kvos/CoastSat,,, +web,https://github.com/starlite-api/starlite,,, +graph,https://github.com/WestHealth/pyvis,,, +ml-interpretability,https://github.com/SelfExplainML/PiML-Toolbox,,, +data,https://github.com/jsonpickle/jsonpickle,,, +web,https://github.com/pallets/quart,,, +web,https://github.com/pallets/werkzeug,,, +data,https://github.com/pallets/itsdangerous,,, +util,https://github.com/open-telemetry/opentelemetry-python,,, +util,https://github.com/open-telemetry/opentelemetry-python-contrib,,, +util,https://github.com/miguelgrinberg/python-socketio,,, +web,https://github.com/encode/httpx,,, +web,https://github.com/python-restx/flask-restx,,, +web,https://github.com/flipkart-incubator/Astra,,, +web,https://github.com/s3rius/FastAPI-template,,, +web,https://github.com/fastapi-users/fastapi-users,,, +data,https://github.com/neo4j/neo4j-python-driver,,, +ml-ops,https://github.com/ploomber/ploomber,,, +nlp,https://github.com/gunthercox/ChatterBot,,, +data,https://github.com/datafold/data-diff,,, +data,https://github.com/deepchecks/deepchecks,,, +ml-dl,https://github.com/danielgatis/rembg,,, +util,https://github.com/aws-samples/sagemaker-ssh-helper,,, +ml-dl,https://github.com/CalculatedContent/WeightWatcher,,, +ml,https://github.com/automl/TabPFN,,, +time-series,https://github.com/salesforce/DeepTime,,, +viz,https://github.com/facultyai/dash-bootstrap-components,,, +pandas,https://github.com/ddelange/mapply,,, +ml,https://github.com/Project-MONAI/MONAI,,, +data,https://github.com/uqfoundation/dill,1,, +study,https://github.com/firmai/industry-machine-learning,,, +study,https://github.com/alirezadir/machine-learning-interview-enlightener,,, +diffusion,https://github.com/ThereforeGames/unprompted,,, +gis,https://github.com/DataSystemsLab/GeoTorch,,, +sim,https://github.com/Farama-Foundation/Gymnasium,,, +study,https://github.com/huggingface/diffusion-models-class,,, +typing,https://github.com/python-attrs/attrs,1,, +typing,https://github.com/python-attrs/cattrs,,, +pandas,https://github.com/blaze/blaze,,, +util,https://github.com/adafruit/circuitpython,,, +util,https://github.com/micropython/micropython,,, +typing,https://github.com/JelleZijlstra/autotyping,,, +gis,https://github.com/r-barnes/richdem,,, +gis,https://github.com/perrygeo/python-rasterstats,,, +diffusion,https://github.com/AUTOMATIC1111/stable-diffusion-webui,,, +util,https://github.com/idanya/algo-trader,,, +data,https://github.com/CODAIT/pardata,,, +util,https://github.com/carlospuenteg/File-Injector,,, +jupyter,https://github.com/cmudig/AutoProfiler,,, +ml,https://github.com/aws/sagemaker-python-sdk,,, +perf,https://github.com/joblib/loky,,, +time-series,https://github.com/TDAmeritrade/stumpy,,, +time-series,https://github.com/blue-yonder/tsfresh,,, +gis,https://github.com/remotesensinglab/raster4ml,,, +gis,https://github.com/mapbox/mercantile,,, +util,https://github.com/fsspec/s3fs,,, +util,https://github.com/WoLpH/python-progressbar,,, +profiling,https://github.com/kshitij12345/torchnnprofiler,,, +web,https://github.com/conradbez/hstream,,, +data,https://github.com/eliasdabbas/advertools,,, +util,https://github.com/backtick-se/cowait,,, +profiling,https://github.com/pythonprofilers/memory_profiler,,, +profiling,https://github.com/jiffyclub/snakeviz,,, +viz,https://github.com/visgl/deck.gl,,, +jupyter,https://github.com/jupyter/nbdime,,, +jupyter,https://github.com/jupyter/nbformat,,, +jupyter,https://github.com/jupyter/nbviewer,,, +jupyter,https://github.com/jupyter/nbconvert,,, +jupyter,https://github.com/jupyter/nbgrader,,, +ml-ops,https://github.com/astronomer/astronomer,,, +ml-ops,https://github.com/astronomer/airflow-chart,,, +ml-ops,https://github.com/astronomer/astro-sdk,,, +ml-ops,https://github.com/mage-ai/mage-ai,1,, +util,https://github.com/dosisod/refurb,1,, +ml-dl,https://github.com/hpcaitech/ColossalAI,,, +util,https://github.com/hugovk/pypistats,,, +ml,https://github.com/infer-actively/pymdp,,, +profiling,https://github.com/reloadware/reloadium,1,, +pandas,https://github.com/Eventual-Inc/Daft,,, +util,https://github.com/ipython/ipython,,, +util,https://github.com/ipython/ipykernel,,, +perf,https://github.com/ipython/ipyparallel,,, +study,https://github.com/rasbt/machine-learning-book,,, +time-series,https://github.com/alkaline-ml/pmdarima,,, +time-series,https://github.com/Nixtla/statsforecast,,, +time-series,https://github.com/sktime/sktime,1,, +time-series,https://github.com/unit8co/darts,,, +time-series,https://github.com/RJT1990/pyflux,,, +time-series,https://github.com/winedarksea/AutoTS,,, +time-series,https://github.com/AutoViML/Auto_TS,,, +time-series,https://github.com/pastas/pastas,,, +time-series,https://github.com/AIStream-Peelout/flow-forecast,,, +study,https://github.com/huggingface/deep-rl-class,,, +sim,https://github.com/pyscf/pyscf,,, +study,https://github.com/amaargiru/pyroad,,, +gis,https://github.com/OSGeo/grass,,, +graph,https://github.com/H4kor/graph-force,,, +util,https://github.com/xl0/lovely-tensors,,, +util,https://github.com/pyodide/micropip,,, +sim,https://github.com/crowdbotp/socialways,,, +sim,https://github.com/crowddynamics/crowddynamics,,, +time-series,https://github.com/awslabs/gluonts,,, +diffusion,https://github.com/apple/ml-stable-diffusion,,, +viz,https://github.com/has2k1/plotnine,,, +ml-ops,https://github.com/hi-primus/optimus,,, +gis,https://github.com/kuanb/peartree,,, +ml,https://github.com/shankarpandala/lazypredict,,, +gis,https://github.com/amazon-science/earth-forecasting-transformer,,, \ No newline at end of file From b50c1ba9f598f247055cc2e87a887a68b15eed4c Mon Sep 17 00:00:00 2001 From: Dylan Hogg Date: Sun, 11 Dec 2022 11:15:08 +1100 Subject: [PATCH 03/20] Black formatting. --- Makefile | 2 +- src/library/crawler.py | 39 ++++++++++++++++++------------- src/library/readme.py | 10 ++++---- src/library/render.py | 53 ++++++++++++++++++------------------------ tests/test_render.py | 27 +++++++++++++++++---- 5 files changed, 72 insertions(+), 59 deletions(-) diff --git a/Makefile b/Makefile index f95eb2a..8dea281 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ run: ## Run black code formatter black: - source venv/bin/activate ; black . + source venv/bin/activate ; black --line-length 120 . ## Run tests test: diff --git a/src/library/crawler.py b/src/library/crawler.py index 0b2300e..6212f2f 100644 --- a/src/library/crawler.py +++ b/src/library/crawler.py @@ -9,7 +9,7 @@ def write_files(csv_location: str, token: str, output_csv_filename: str, output_ # Read github urls from google docs df_input = render.get_input_data(csv_location) - # df_input = df_input.head(5) # Testing + df_input = df_input.head(2) # Testing # df_input = df_input.iloc[9:13] # Testing # Augment repo name with metadata from Github @@ -21,39 +21,44 @@ def write_files(csv_location: str, token: str, output_csv_filename: str, output_ df.to_csv(output_csv_filename) logger.info("Crawling readme files...") - df["_readme_filename"] = df["_repopath"].apply( - lambda x: readme.get_readme(x) - ) + df["_readme_filename"] = df["_repopath"].apply(lambda x: readme.get_readme(x)) # TODO: handle 'main' master branches also: df["_readme_giturl"] = df.apply( lambda row: f"https://raw.githubusercontent.com/{row['_repopath']}/master/{row['_readme_filename']}" - if len(row['_readme_filename']) > 0 - else "", axis=1 + if len(row["_readme_filename"]) > 0 + else "", + axis=1, ) # TODO: get from readme.get_readme above as tuple and zip as per # https://stackoverflow.com/questions/16236684/apply-pandas-function-to-column-to-create-multiple-new-columns df["_readme_localurl"] = df.apply( lambda row: f"{row['_repopath'].replace('/', '~')}~{row['_readme_filename']}" - if len(row['_readme_filename']) > 0 - else "", axis=1 + if len(row["_readme_filename"]) > 0 + else "", + axis=1, ) logger.info("Crawling requirements files...") - df["_requirements_filenames"] = df["_repopath"].apply( - lambda x: requirements.get_requirements(x) - ) + df["_requirements_filenames"] = df["_repopath"].apply(lambda x: requirements.get_requirements(x)) # TODO: handle 'main' master branches also: df["_requirements_giturls"] = df.apply( - lambda row: list(map(lambda x: f"https://raw.githubusercontent.com/{row['_repopath']}/master/{x}", row['_requirements_filenames'])), axis=1 + lambda row: list( + map( + lambda x: f"https://raw.githubusercontent.com/{row['_repopath']}/master/{x}", + row["_requirements_filenames"], + ) + ), + axis=1, ) # TODO: get from readme.get_readme above as tuple and zip as per # https://stackoverflow.com/questions/16236684/apply-pandas-function-to-column-to-create-multiple-new-columns df["_requirements_localurls"] = df.apply( - lambda row: list(map(lambda x: f"{row['_repopath'].replace('/', '~')}~{x}", row['_requirements_filenames'])), axis=1 + lambda row: list(map(lambda x: f"{row['_repopath'].replace('/', '~')}~{x}", row["_requirements_filenames"])), + axis=1, ) # Write raw results to json table format @@ -63,14 +68,16 @@ def write_files(csv_location: str, token: str, output_csv_filename: str, output_ json.dump(data, f, indent=4) # Write raw results to minimised json - output_minjson_filename = output_json_filename.replace(".json", ".min.json") \ - if ".json" in output_json_filename \ + output_minjson_filename = ( + output_json_filename.replace(".json", ".min.json") + if ".json" in output_json_filename else output_json_filename + ".min.json" + ) with open(output_minjson_filename, "w") as f: json_results = df.to_json(orient="table", double_precision=2) data = json.loads(json_results) - json.dump(data, f, separators=(',', ':')) + json.dump(data, f, separators=(",", ":")) # Add markdown columns for local README.md and categories/*.md file lists. logger.info(f"Add markdown columns...") diff --git a/src/library/readme.py b/src/library/readme.py index 4b05043..0e85254 100644 --- a/src/library/readme.py +++ b/src/library/readme.py @@ -10,14 +10,12 @@ # https://stackoverflow.com/questions/47337009/rst2html-on-full-python-project def rst2html_old(content): - pub = docutils.core.Publisher( - source_class=docutils.io.StringInput, - destination_class=docutils.io.StringOutput) - pub.set_components('standalone', 'restructuredtext', 'html') + pub = docutils.core.Publisher(source_class=docutils.io.StringInput, destination_class=docutils.io.StringOutput) + pub.set_components("standalone", "restructuredtext", "html") pub.process_programmatic_settings(None, None, None) pub.set_source(source=content) pub.publish() - html = pub.writer.parts['whole'] + html = pub.writer.parts["whole"] return html @@ -47,7 +45,7 @@ def save_content(repopath, branch, filename, content): readme_url = f"https://github.com/{repopath}/blob/{branch}/{filename}" # Find pip installs - pip_pattern = re.compile(r'(pip[3]*[ ]+install[ ]+[a-zA-Z0-9 \-_<>=\"\'.,+:/\[\]]+)') # TODO: review + pip_pattern = re.compile(r"(pip[3]*[ ]+install[ ]+[a-zA-Z0-9 \-_<>=\"\'.,+:/\[\]]+)") # TODO: review pips = [] for m in re.findall(pip_pattern, content): pips.append(m.strip()) diff --git a/src/library/render.py b/src/library/render.py index 130f1e0..3a811de 100644 --- a/src/library/render.py +++ b/src/library/render.py @@ -17,9 +17,7 @@ def get_input_data(csv_location: str) -> pd.DataFrame: duplicated_githuburls = df[df.duplicated(subset=["githuburl"])] duplicated_count = len(duplicated_githuburls) if duplicated_count > 0: - logger.warning( - f"Duplicate githuburl values found in csv: {duplicated_count}\n{duplicated_githuburls}" - ) + logger.warning(f"Duplicate githuburl values found in csv: {duplicated_count}\n{duplicated_githuburls}") logger.error(f"Fix up {duplicated_count} duplicates from {csv_location} and re-run.") sys.exit() else: @@ -54,19 +52,17 @@ def make_markdown(row, include_category=False) -> str: last_commit_date = row["_last_commit_date"] created = row["_created_at"] topics = row["_topics"] - topics_display = ( - "\n" + ", ".join(sorted(topics)) + "" - if len(topics) > 0 - else "" - ) + topics_display = "\n" + ", ".join(sorted(topics)) + "" if len(topics) > 0 else "" description = row["_description"] language = row["_language"] if language is not None and language.lower() != "python": logger.info(f"Is {name} really a Python library? Main language is {language}.") - header = f"[{name}]({url})" \ - if name == organization \ + header = ( + f"[{name}]({url})" + if name == organization else f"[{name}]({url}) by [{organization}](https://github.com/{organization})" + ) return ( f"### {header} " @@ -86,7 +82,10 @@ def _display_description(ghw, name) -> str: return f"{name}" else: assert repo.name is not None - if repo.description.lower().startswith(repo.name.lower()) or f"{repo.name.lower()}:" in repo.description.lower(): + if ( + repo.description.lower().startswith(repo.name.lower()) + or f"{repo.name.lower()}:" in repo.description.lower() + ): return f"{repo.description}" else: return f"{repo.name}: {repo.description}" @@ -103,15 +102,9 @@ def process(df_input: pd.DataFrame, token: str) -> pd.DataFrame: df["_topics"] = df["_repopath"].apply(lambda x: ghw.get_repo(x).get_topics()) df["_language"] = df["_repopath"].apply(lambda x: ghw.get_repo(x).language) df["_homepage"] = df["_repopath"].apply(lambda x: ghw.get_repo(x).homepage) - df["_description"] = df["_repopath"].apply( - lambda x: _display_description(ghw, x) - ) - df["_organization"] = df["_repopath"].apply( - lambda x: x.split("/")[0] - ) - df["_updated_at"] = df["_repopath"].apply( - lambda x: ghw.get_repo(x).updated_at.date() - ) + df["_description"] = df["_repopath"].apply(lambda x: _display_description(ghw, x)) + df["_organization"] = df["_repopath"].apply(lambda x: x.split("/")[0]) + df["_updated_at"] = df["_repopath"].apply(lambda x: ghw.get_repo(x).updated_at.date()) df["_last_commit_date"] = df["_repopath"].apply( # E.g. Sat, 18 Jul 2020 17:14:09 GMT lambda x: datetime.strptime( @@ -119,14 +112,14 @@ def process(df_input: pd.DataFrame, token: str) -> pd.DataFrame: "%a, %d %b %Y %H:%M:%S %Z", ).date() ) - df["_created_at"] = df["_repopath"].apply( - lambda x: ghw.get_repo(x).created_at.date() - ) + df["_created_at"] = df["_repopath"].apply(lambda x: ghw.get_repo(x).created_at.date()) df["_age_weeks"] = df["_repopath"].apply( lambda x: (datetime.now().date() - ghw.get_repo(x).created_at.date()).days // 7 ) df["_stars_per_week"] = df["_repopath"].apply( - lambda x: ghw.get_repo(x).stargazers_count * 7 / (datetime.now().date() - ghw.get_repo(x).created_at.date()).days + lambda x: ghw.get_repo(x).stargazers_count + * 7 + / (datetime.now().date() - ghw.get_repo(x).created_at.date()).days ) return df.sort_values("_stars", ascending=False) @@ -135,7 +128,9 @@ def process(df_input: pd.DataFrame, token: str) -> pd.DataFrame: def lines_header(count: int, category: str = "") -> List[str]: category_line = f"A selection of {count} curated Python libraries and frameworks ordered by stars. \n" if len(category) > 0: - category_line = f"A selection of {count} curated {category} Python libraries and frameworks ordered by stars. \n" + category_line = ( + f"A selection of {count} curated {category} Python libraries and frameworks ordered by stars. \n" + ) return [ f"# Crazy Awesome Python", @@ -146,10 +141,6 @@ def lines_header(count: int, category: str = "") -> List[str]: def add_markdown(df: pd.DataFrame) -> pd.DataFrame: - df["_doclines_main"] = df.apply( - lambda x: make_markdown(x, include_category=True), axis=1 - ) - df["_doclines_child"] = df.apply( - lambda x: make_markdown(x, include_category=False), axis=1 - ) + df["_doclines_main"] = df.apply(lambda x: make_markdown(x, include_category=True), axis=1) + df["_doclines_child"] = df.apply(lambda x: make_markdown(x, include_category=False), axis=1) return df diff --git a/tests/test_render.py b/tests/test_render.py index 95dfde0..446dbe6 100644 --- a/tests/test_render.py +++ b/tests/test_render.py @@ -15,8 +15,25 @@ def test_render_process(): assert df.shape[0] == 1, "Unexpected number of rows" assert df.shape[1] == 20, "Unexpected number of columns" - assert list(df.columns) == ["category", "githuburl", "featured", "links", "description", - "_repopath", "_reponame", "_stars", "_forks", "_watches", "_topics", - "_language", "_homepage", "_description", "_organization", - "_updated_at", "_last_commit_date", "_created_at", "_age_weeks", - "_stars_per_week"] + assert list(df.columns) == [ + "category", + "githuburl", + "featured", + "links", + "description", + "_repopath", + "_reponame", + "_stars", + "_forks", + "_watches", + "_topics", + "_language", + "_homepage", + "_description", + "_organization", + "_updated_at", + "_last_commit_date", + "_created_at", + "_age_weeks", + "_stars_per_week", + ] From d34e4242a68baa88678d66d97a274a9d9c6b3a20 Mon Sep 17 00:00:00 2001 From: Dylan Hogg Date: Sun, 18 Dec 2022 11:20:26 +1100 Subject: [PATCH 04/20] Draft version of popularity score based on ossf/criticality_score. --- .gitignore | 1 + Makefile | 6 +- requirements.txt | 3 +- src/library/ghw.py | 43 +++++---- src/library/metrics.py | 207 +++++++++++++++++++++++++++++++++++++++++ src/library/render.py | 52 +++++++++++ src/library/scorer.py | 71 ++++++++++++++ tests/test_render.py | 61 +++++++----- 8 files changed, 398 insertions(+), 46 deletions(-) create mode 100644 src/library/metrics.py create mode 100644 src/library/scorer.py diff --git a/.gitignore b/.gitignore index 87cf1bd..202ce89 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # TEMP data/ +.joblib_cache/ .idea/ .vscode/ diff --git a/Makefile b/Makefile index 8dea281..0aece53 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,11 @@ black: ## Run tests test: - source venv/bin/activate ; PYTHONPATH='./src' pytest --capture=no tests + source venv/bin/activate ; PYTHONPATH='./src' pytest -vv --capture=no tests + +## Clear joblib cache +clear-cache: + rm -rf .joblib_cache ## Serve local client serve-local-client: diff --git a/requirements.txt b/requirements.txt index 2c16668..28a5e99 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,4 +5,5 @@ docutils Pygments python-dotenv black -loguru \ No newline at end of file +loguru +joblib \ No newline at end of file diff --git a/src/library/ghw.py b/src/library/ghw.py index bf164dc..3e762e3 100644 --- a/src/library/ghw.py +++ b/src/library/ghw.py @@ -2,34 +2,39 @@ import github from loguru import logger from typing import List +from joblib import Memory + +memory = Memory(".joblib_cache") class GithubWrapper: def __init__(self, token): + self.token = token self.gh = github.Github(token) - self.cache = {} - def get_repo(self, name, use_cache=True) -> github.Repository: + @staticmethod + @memory.cache + def _get_repo_cached(token, name) -> github.Repository: + gh = github.Github(token) if name.endswith("/"): - logger.warning(f"Repo needs to be fixed by removing trailing slash in source csv: {name}") - key = f"repo_{name}" - cached = self.cache.get(key, None) - if cached is None or not use_cache: - logger.info(f"get_repo: [{name}]") + logger.info(f"Removed trailing slash for: {name}") + name = name.rstrip("/") + + logger.info(f"get_repo (not cached): [{name}]") + try: + repo = gh.get_repo(name) + except Exception as ex: + logger.warning(f"Exception for get_repo with name (will re-try once): {name}") try: - self.cache[key] = self.gh.get_repo(name) + time.sleep(30) + repo = gh.get_repo(name) except Exception as ex: - logger.warning(f"Exception for get_repo with name (will re-try once): {name}") - try: - time.sleep(30) - self.cache[key] = self.gh.get_repo(name) - except Exception as ex: - logger.error(f"Exception for get_repo after re-try with name: {name}") - raise ex - return self.cache[key] - else: - logger.info(f"get_repo: [{name}] (cached)") - return cached + logger.error(f"Exception for get_repo after re-try with name: {name}") + raise ex + return repo + + def get_repo(self, name) -> github.Repository: + return self._get_repo_cached(self.token, name) def get_org_repos(self, name) -> List[github.Repository.Repository]: logger.debug(f"get_org_repos: {name}") diff --git a/src/library/metrics.py b/src/library/metrics.py new file mode 100644 index 0000000..d67a887 --- /dev/null +++ b/src/library/metrics.py @@ -0,0 +1,207 @@ +import requests +import time +import re +from datetime import datetime, timedelta +from loguru import logger +from library.ghw import GithubWrapper +from joblib import Memory + +memory = Memory(".joblib_cache") + + +class PopularityMetrics: + """ + Inspired by https://github.com/ossf/criticality_score/tree/v1.0.7 (Latest Python version before Go port) + and https://github.com/ossf/criticality_score/blob/main/Quantifying_criticality_algorithm.pdf + """ + + @staticmethod + @memory.cache + def contributor_count(ghw: GithubWrapper, name: str) -> int: + repo = ghw.get_repo(name) + try: + return repo.get_contributors(anon='true').totalCount + except Exception as ex: + # Typically a large number of contributors + logger.warning(f"get_contributors exception: {ex}") + return 5000 + + @staticmethod + @memory.cache + def contributor_orgs(ghw: GithubWrapper, name: str) -> dict: + MAX_CONTRIBUTOR_COUNT = 10 # 15 + repo = ghw.get_repo(name) + + def _filter_name(org_name): + return org_name.lower().replace(', inc.', '').replace('inc.', '')\ + .replace('llc', '').replace('@', '').replace(' ', '').rstrip(',') + + orgs = set() + contributors = repo.get_contributors()[:MAX_CONTRIBUTOR_COUNT] + try: + # NOTE: Can be expensive if not capped due to `contributor.company` being an API call + for contributor in contributors: + # TODO: cache contributor -> company ?? + contributor_company = contributor.company + if contributor_company: + filtered_contributor_company = _filter_name(contributor_company) + logger.info(f"{name=}, {contributor.login=}, {filtered_contributor_company=}") + orgs.add(filtered_contributor_company) + except Exception as ex: + # Typically a large number of contributors + logger.warning(f"get_contributors exception: {ex}") + return { + "_pop_contributor_orgs_len": -1, + "_pop_contributor_orgs_max": MAX_CONTRIBUTOR_COUNT, + "_pop_contributor_orgs": None, + "_pop_contributor_orgs_error": str(ex) + } + return { + "_pop_contributor_orgs_len": len(orgs), + "_pop_contributor_orgs_max": MAX_CONTRIBUTOR_COUNT, + "_pop_contributor_orgs": orgs, + "_pop_contributor_orgs_error": None + } + + @staticmethod + @memory.cache + def commit_frequency(ghw: GithubWrapper, name: str) -> float: + repo = ghw.get_repo(name) + # NOTE: get_stats_commit_activity Returns the last year of commit activity grouped by week + stats_commit_activity = repo.get_stats_commit_activity() + assert len(stats_commit_activity) == 52 + total = 0 + for week_stat in stats_commit_activity: + total += week_stat.total + return round(total / len(stats_commit_activity), 2) + + @staticmethod + @memory.cache + def updated_issues_count(ghw: GithubWrapper, name: str) -> int: + ISSUE_LOOKBACK_DAYS = 90 + repo = ghw.get_repo(name) + issues_since_time = datetime.utcnow() - timedelta(days=ISSUE_LOOKBACK_DAYS) + # NOTE: get_issues includes PR's + return repo.get_issues(state='all', since=issues_since_time).totalCount + + @staticmethod + @memory.cache + def closed_issues_count(ghw: GithubWrapper, name: str) -> int: + ISSUE_LOOKBACK_DAYS = 90 + # TODO: make generic with updated_issues_count? + repo = ghw.get_repo(name) + issues_since_time = datetime.utcnow() - timedelta(days=ISSUE_LOOKBACK_DAYS) + # NOTE: get_issues includes PR's + return repo.get_issues(state='closed', since=issues_since_time).totalCount + + @staticmethod + @memory.cache + def created_since_days(ghw: GithubWrapper, name: str) -> int: + repo = ghw.get_repo(name) + creation_time = repo.created_at + + # See if there exist any commits before this repository creation + # time on GitHub. If yes, then the repository creation time is not + # correct, and it was residing somewhere else before. So, use the first + # commit date. + prior_creation_commit_count = repo.get_commits(until=creation_time).totalCount + if prior_creation_commit_count: + logger.warning(f"{name} has {prior_creation_commit_count=}, repository creation time is not correct, " + f"and it was residing somewhere else before") + # TODO: see how often this happens + # first_commit_time = self.get_first_commit_time() + # if first_commit_time: + # creation_time = min(creation_time, first_commit_time) + + difference = datetime.utcnow() - creation_time + return round(difference.days / 30) + + @staticmethod + @memory.cache + def updated_since_days(ghw: GithubWrapper, name: str) -> int: + repo = ghw.get_repo(name) + last_commit = repo.get_commits()[0] + last_commit_time = last_commit.commit.author.date + difference = datetime.utcnow() - last_commit_time + return round(difference.days / 30) + + @staticmethod + @memory.cache + def recent_releases_count(ghw: GithubWrapper, name: str) -> dict: + RELEASE_LOOKBACK_DAYS = 365 + repo = ghw.get_repo(name) + recent_releases_count = 0 + for release in repo.get_releases(): + if (datetime.utcnow() - + release.created_at).days > RELEASE_LOOKBACK_DAYS: + continue + recent_releases_count += 1 + + estimated_tags = 0 + # Make rough estimation of tags used in last year from overall + # project history. This query is extremely expensive, so instead + # do the rough calculation. + days_since_creation = PopularityMetrics.created_since_days(ghw, name) * 30 + if days_since_creation: + total_tags = repo.get_tags().totalCount + estimated_tags = round( + (total_tags / days_since_creation) * RELEASE_LOOKBACK_DAYS) + + recent_releases_adjusted_count = recent_releases_count + if not recent_releases_count: + recent_releases_adjusted_count = estimated_tags + + return { + "_pop_recent_releases_count": recent_releases_count, + "_pop_recent_releases_estimated_tags": estimated_tags, + "_pop_recent_releases_adjusted_count": recent_releases_adjusted_count # TODO: review need and name + } + + @staticmethod + @memory.cache + def comment_frequency(ghw: GithubWrapper, name: str) -> dict: + ISSUE_LOOKBACK_DAYS = 90 + repo = ghw.get_repo(name) + issues_since_time = datetime.utcnow() - timedelta(days=ISSUE_LOOKBACK_DAYS) + issue_count = repo.get_issues(state='all', since=issues_since_time).totalCount + comment_count = repo.get_issues_comments(since=issues_since_time).totalCount + comment_frequency = round(comment_count / issue_count, 1) if issue_count else 0 + + return { + "_pop_issue_count": issue_count, + "_pop_comment_count": comment_count, + "_pop_comment_frequency": comment_frequency + } + + @staticmethod + @memory.cache + def dependents_count(ghw: GithubWrapper, name: str) -> int: + # return 0 # TODO: this is expensive and can have many fails + DEPENDENTS_REGEX = re.compile(b'.*[^0-9,]([0-9,]+).*commit results', re.DOTALL) + FAIL_RETRIES = 12 + # TODO: Take package manager dependency trees into account. If we decide + # to replace this, then find a solution for C/C++ as well. + # parsed_url = urllib.parse.urlparse(self.url) + # repo_name = parsed_url.path.strip('/') + dependents_url = f'https://github.com/search?q="{name}"&type=commits' + logger.trace(f"Call dependents_count: {dependents_url=}, {name=}") + content = b'' + time.sleep(5) + success = False + for i in range(FAIL_RETRIES): + result = requests.get(dependents_url) + if result.status_code == 200: + content = result.content + success = True + break + logger.warning(f"Retry dependents_count #{i}/{FAIL_RETRIES}...") + sleep_secs = max(2 ** (i+2), 15*60) + time.sleep(sleep_secs) + + if not success: + raise Exception(f"dependents_count failed, too many retries ({FAIL_RETRIES})") + + match = DEPENDENTS_REGEX.match(content) + if not match: + return 0 + return int(match.group(1).replace(b',', b'')) diff --git a/src/library/render.py b/src/library/render.py index 3a811de..e4b6a55 100644 --- a/src/library/render.py +++ b/src/library/render.py @@ -5,6 +5,8 @@ from loguru import logger from urllib.parse import urlparse from library.ghw import GithubWrapper +from library.metrics import PopularityMetrics +from library.scorer import PopularityScorer def get_input_data(csv_location: str) -> pd.DataFrame: @@ -94,6 +96,8 @@ def _display_description(ghw, name) -> str: def process(df_input: pd.DataFrame, token: str) -> pd.DataFrame: ghw = GithubWrapper(token) df = df_input.copy() + + # Add standard columns df["_repopath"] = df["githuburl"].apply(lambda x: urlparse(x).path.lstrip("/")) df["_reponame"] = df["_repopath"].apply(lambda x: ghw.get_repo(x).name) df["_stars"] = df["_repopath"].apply(lambda x: ghw.get_repo(x).stargazers_count) @@ -122,6 +126,54 @@ def process(df_input: pd.DataFrame, token: str) -> pd.DataFrame: / (datetime.now().date() - ghw.get_repo(x).created_at.date()).days ) + # Add popularity metric columns + metrics = PopularityMetrics() + + df["_pop_contributor_count"] = df["_repopath"].apply( + lambda x: metrics.contributor_count(ghw, x) + ) + + df_pop_contributor_orgs = df.apply(lambda row: metrics.contributor_orgs(ghw, row["_repopath"]), + axis="columns", result_type="expand") + df = pd.concat([df, df_pop_contributor_orgs], axis="columns") + + df["_pop_commit_frequency"] = df["_repopath"].apply( + lambda x: metrics.commit_frequency(ghw, x) + ) + + df["_pop_updated_issues_count"] = df["_repopath"].apply( + lambda x: metrics.updated_issues_count(ghw, x) + ) + + df["_pop_closed_issues_count"] = df["_repopath"].apply( + lambda x: metrics.closed_issues_count(ghw, x) + ) + + df["_pop_created_since_days"] = df["_repopath"].apply( + lambda x: metrics.created_since_days(ghw, x) + ) + + df["_pop_updated_since_days"] = df["_repopath"].apply( + lambda x: metrics.updated_since_days(ghw, x) + ) + + df_pop_recent_releases_count = df.apply(lambda row: metrics.recent_releases_count(ghw, row["_repopath"]), + axis="columns", result_type="expand") + df = pd.concat([df, df_pop_recent_releases_count], axis="columns") + + df_pop_comment_frequency = df.apply(lambda row: metrics.comment_frequency(ghw, row["_repopath"]), + axis="columns", result_type="expand") + df = pd.concat([df, df_pop_comment_frequency], axis="columns") + + df["_pop_dependents_count"] = df["_repopath"].apply( + lambda x: metrics.dependents_count(ghw, x) + ) + + scorer = PopularityScorer() + df["_pop_score"] = df.apply( + lambda row: scorer.score(row), axis="columns" + ) + return df.sort_values("_stars", ascending=False) diff --git a/src/library/scorer.py b/src/library/scorer.py new file mode 100644 index 0000000..b2688e0 --- /dev/null +++ b/src/library/scorer.py @@ -0,0 +1,71 @@ +import math +from loguru import logger + + +class PopularityScorer: + """ + Inspired by https://github.com/ossf/criticality_score/tree/v1.0.7 (Latest Python version before Go port) + and https://github.com/ossf/criticality_score/blob/main/Quantifying_criticality_algorithm.pdf + """ + + @staticmethod + def score(row): + # Weights for various parameters. + CREATED_SINCE_WEIGHT = 1 + UPDATED_SINCE_WEIGHT = -1 + CONTRIBUTOR_COUNT_WEIGHT = 2 + ORG_COUNT_WEIGHT = 1 + COMMIT_FREQUENCY_WEIGHT = 1 + RECENT_RELEASES_WEIGHT = 0.5 + CLOSED_ISSUES_WEIGHT = 0.5 + UPDATED_ISSUES_WEIGHT = 0.5 + COMMENT_FREQUENCY_WEIGHT = 1 + DEPENDENTS_COUNT_WEIGHT = 2 + + # Max thresholds for various parameters. + CREATED_SINCE_THRESHOLD = 120 + UPDATED_SINCE_THRESHOLD = 120 + CONTRIBUTOR_COUNT_THRESHOLD = 5000 + ORG_COUNT_THRESHOLD = 10 + COMMIT_FREQUENCY_THRESHOLD = 1000 + RECENT_RELEASES_THRESHOLD = 26 + CLOSED_ISSUES_THRESHOLD = 5000 + UPDATED_ISSUES_THRESHOLD = 5000 + COMMENT_FREQUENCY_THRESHOLD = 15 + DEPENDENTS_COUNT_THRESHOLD = 500000 + + def _get_param_score(param, max_value, weight=1.0): + """Return paramater score given its current value, max value and + parameter weight.""" + return (math.log(1 + param) / math.log(1 + max(param, max_value))) * weight + + total_weight = (CREATED_SINCE_WEIGHT + UPDATED_SINCE_WEIGHT + + CONTRIBUTOR_COUNT_WEIGHT + ORG_COUNT_WEIGHT + + COMMIT_FREQUENCY_WEIGHT + RECENT_RELEASES_WEIGHT + + CLOSED_ISSUES_WEIGHT + UPDATED_ISSUES_WEIGHT + + COMMENT_FREQUENCY_WEIGHT + DEPENDENTS_COUNT_WEIGHT) + + score_sum = ((_get_param_score(row['_pop_created_since_days'], + CREATED_SINCE_THRESHOLD, CREATED_SINCE_WEIGHT)) + + (_get_param_score(row['_pop_updated_since_days'], + UPDATED_SINCE_THRESHOLD, UPDATED_SINCE_WEIGHT)) + + (_get_param_score(row['_pop_contributor_count'], + CONTRIBUTOR_COUNT_THRESHOLD, CONTRIBUTOR_COUNT_WEIGHT)) + + (_get_param_score(row['_pop_contributor_orgs_len'], + ORG_COUNT_THRESHOLD, ORG_COUNT_WEIGHT)) + + (_get_param_score(row['_pop_commit_frequency'], + COMMIT_FREQUENCY_THRESHOLD, COMMIT_FREQUENCY_WEIGHT)) + + (_get_param_score(row['_pop_recent_releases_adjusted_count'], + RECENT_RELEASES_THRESHOLD, RECENT_RELEASES_WEIGHT)) + + (_get_param_score(row['_pop_closed_issues_count'], + CLOSED_ISSUES_THRESHOLD, CLOSED_ISSUES_WEIGHT)) + + (_get_param_score(row['_pop_updated_issues_count'], + UPDATED_ISSUES_THRESHOLD, UPDATED_ISSUES_WEIGHT)) + + (_get_param_score(row['_pop_comment_frequency'], + COMMENT_FREQUENCY_THRESHOLD, COMMENT_FREQUENCY_WEIGHT)) + + (_get_param_score(row['_pop_dependents_count'], + DEPENDENTS_COUNT_THRESHOLD, DEPENDENTS_COUNT_WEIGHT))) + + criticality_score = round(100 * score_sum / total_weight, 5) + logger.info(f"Calculated {criticality_score=} for {row['_repopath']}") + return criticality_score diff --git a/tests/test_render.py b/tests/test_render.py index 446dbe6..9f913e3 100644 --- a/tests/test_render.py +++ b/tests/test_render.py @@ -7,33 +7,44 @@ def test_render_process(): csv_location = "tests/test_repos_source.csv" df_input = render.get_input_data(csv_location) - df_input = df_input.head(1) + test_repos = [ + "https://github.com/dask/dask", + "https://github.com/dylanhogg/crazy-awesome-python", + "https://github.com/klen/muffin", + ] + # test_repos = ["https://github.com/dylanhogg/crazy-awesome-python"] + df_input = df_input[df_input["githuburl"].isin(test_repos)] + assert len(df_input) == len(test_repos) df = render.process(df_input, token) logger.info(f"{df.shape=}") logger.info(f"{df.columns=}") - assert df.shape[0] == 1, "Unexpected number of rows" - assert df.shape[1] == 20, "Unexpected number of columns" - assert list(df.columns) == [ - "category", - "githuburl", - "featured", - "links", - "description", - "_repopath", - "_reponame", - "_stars", - "_forks", - "_watches", - "_topics", - "_language", - "_homepage", - "_description", - "_organization", - "_updated_at", - "_last_commit_date", - "_created_at", - "_age_weeks", - "_stars_per_week", - ] + for i in range(len(df)): + logger.info(df.iloc[i]) + + assert len(df) == len(df_input), "Unexpected number of rows" + # assert list(df.columns) == [ + # "category", + # "githuburl", + # "featured", + # "links", + # "description", + # "_repopath", + # "_reponame", + # "_stars", + # "_forks", + # "_watches", + # "_topics", + # "_language", + # "_homepage", + # "_description", + # "_organization", + # "_updated_at", + # "_last_commit_date", + # "_created_at", + # "_age_weeks", + # "_stars_per_week", + # "_pop_contributor_count", + # "_pop_org_count", + # ] From a9107c3b1321e8ea5ac08c9a298da21757b017f0 Mon Sep 17 00:00:00 2001 From: Dylan Hogg Date: Sun, 18 Dec 2022 11:25:04 +1100 Subject: [PATCH 05/20] Fix sleep calc. --- src/library/metrics.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/library/metrics.py b/src/library/metrics.py index d67a887..cefbd9f 100644 --- a/src/library/metrics.py +++ b/src/library/metrics.py @@ -194,8 +194,8 @@ def dependents_count(ghw: GithubWrapper, name: str) -> int: content = result.content success = True break - logger.warning(f"Retry dependents_count #{i}/{FAIL_RETRIES}...") - sleep_secs = max(2 ** (i+2), 15*60) + sleep_secs = min(2 ** (i + 2), 15 * 60) + logger.warning(f"Retry dependents_count #{i}/{FAIL_RETRIES}, sleeping for {sleep_secs} secs...") time.sleep(sleep_secs) if not success: From 50d583ea5edd9c7e9e93355d37b9e1c60c1b266a Mon Sep 17 00:00:00 2001 From: Dylan Hogg Date: Sun, 18 Dec 2022 11:30:02 +1100 Subject: [PATCH 06/20] Assert expected columns. --- tests/test_render.py | 41 +++++++++++++++++------------------------ 1 file changed, 17 insertions(+), 24 deletions(-) diff --git a/tests/test_render.py b/tests/test_render.py index 9f913e3..fcd7c27 100644 --- a/tests/test_render.py +++ b/tests/test_render.py @@ -24,27 +24,20 @@ def test_render_process(): logger.info(df.iloc[i]) assert len(df) == len(df_input), "Unexpected number of rows" - # assert list(df.columns) == [ - # "category", - # "githuburl", - # "featured", - # "links", - # "description", - # "_repopath", - # "_reponame", - # "_stars", - # "_forks", - # "_watches", - # "_topics", - # "_language", - # "_homepage", - # "_description", - # "_organization", - # "_updated_at", - # "_last_commit_date", - # "_created_at", - # "_age_weeks", - # "_stars_per_week", - # "_pop_contributor_count", - # "_pop_org_count", - # ] + # logger.info(f"{df.columns=}") + assert list(df.columns) == [ + "category", "githuburl", "featured", "links", "description", + "_repopath", "_reponame", "_stars", "_forks", "_watches", "_topics", + "_language", "_homepage", "_description", "_organization", + "_updated_at", "_last_commit_date", "_created_at", "_age_weeks", + "_stars_per_week", "_pop_contributor_count", + "_pop_contributor_orgs_len", "_pop_contributor_orgs_max", + "_pop_contributor_orgs", "_pop_contributor_orgs_error", + "_pop_commit_frequency", "_pop_updated_issues_count", + "_pop_closed_issues_count", "_pop_created_since_days", + "_pop_updated_since_days", "_pop_recent_releases_count", + "_pop_recent_releases_estimated_tags", + "_pop_recent_releases_adjusted_count", "_pop_issue_count", + "_pop_comment_count", "_pop_comment_frequency", "_pop_dependents_count", + "_pop_score" + ] From a373bad70000a596593a053b9df85c903ed84342 Mon Sep 17 00:00:00 2001 From: Dylan Hogg Date: Sun, 18 Dec 2022 11:30:09 +1100 Subject: [PATCH 07/20] Add requests. --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 28a5e99..989212b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,4 +6,5 @@ Pygments python-dotenv black loguru -joblib \ No newline at end of file +joblib +requests \ No newline at end of file From 2e3227ac65d160e53f8efba04ba75f1293fd6b4b Mon Sep 17 00:00:00 2001 From: Dylan Hogg Date: Sun, 18 Dec 2022 11:35:29 +1100 Subject: [PATCH 08/20] Incr max contributor_orgs. --- src/library/metrics.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/library/metrics.py b/src/library/metrics.py index cefbd9f..5445973 100644 --- a/src/library/metrics.py +++ b/src/library/metrics.py @@ -29,7 +29,7 @@ def contributor_count(ghw: GithubWrapper, name: str) -> int: @staticmethod @memory.cache def contributor_orgs(ghw: GithubWrapper, name: str) -> dict: - MAX_CONTRIBUTOR_COUNT = 10 # 15 + MAX_CONTRIBUTOR_COUNT = 20 # 10 repo = ghw.get_repo(name) def _filter_name(org_name): @@ -59,7 +59,7 @@ def _filter_name(org_name): return { "_pop_contributor_orgs_len": len(orgs), "_pop_contributor_orgs_max": MAX_CONTRIBUTOR_COUNT, - "_pop_contributor_orgs": orgs, + "_pop_contributor_orgs": sorted(orgs), "_pop_contributor_orgs_error": None } From ad9c9b9b6ea35c5f34c784ce55f30bf3cd131680 Mon Sep 17 00:00:00 2001 From: Dylan Hogg Date: Tue, 20 Dec 2022 21:41:52 +1100 Subject: [PATCH 09/20] First draft of popularity metric crawler and calc. --- .gitignore | 1 + src/library/crawler.py | 6 +-- src/library/ghw.py | 39 ++++++++-------- src/library/metrics.py | 101 +++++++++++++++++++++++++++++------------ src/library/render.py | 85 +++++++++++++++++----------------- tests/test_render.py | 4 +- 6 files changed, 140 insertions(+), 96 deletions(-) diff --git a/.gitignore b/.gitignore index 202ce89..5d45971 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ # TEMP data/ .joblib_cache/ +.joblib_cache*/ .idea/ .vscode/ diff --git a/src/library/crawler.py b/src/library/crawler.py index 6212f2f..ee109ef 100644 --- a/src/library/crawler.py +++ b/src/library/crawler.py @@ -7,12 +7,12 @@ def write_files(csv_location: str, token: str, output_csv_filename: str, output_json_filename: str): start = datetime.now() - # Read github urls from google docs + # Read GitHub urls from google docs df_input = render.get_input_data(csv_location) - df_input = df_input.head(2) # Testing + # df_input = df_input.head(3) # Testing # df_input = df_input.iloc[9:13] # Testing - # Augment repo name with metadata from Github + # Augment repo name with metadata from GitHub logger.info(f"Processing {len(df_input)} records from {csv_location}") df = render.process(df_input, token) diff --git a/src/library/ghw.py b/src/library/ghw.py index 3e762e3..a3b8b3d 100644 --- a/src/library/ghw.py +++ b/src/library/ghw.py @@ -10,7 +10,6 @@ class GithubWrapper: def __init__(self, token): self.token = token - self.gh = github.Github(token) @staticmethod @memory.cache @@ -36,22 +35,22 @@ def _get_repo_cached(token, name) -> github.Repository: def get_repo(self, name) -> github.Repository: return self._get_repo_cached(self.token, name) - def get_org_repos(self, name) -> List[github.Repository.Repository]: - logger.debug(f"get_org_repos: {name}") - org = self.gh.get_organization(name) - repos = [] - for repo in org.get_repos(): - repos.append(repo) - return repos - - def get_organization(self, name) -> github.Organization.Organization: - logger.debug(f"get_organization: {name}") - return self.gh.get_organization(name) - - def search_github(self, keywords): - query = "+".join(keywords) + "+in:readme+in:description" - result = self.gh.search_repositories(query, "stars", "desc") - - print(f"Found {result.totalCount} repo(s)") - for repo in result: - print(repo.clone_url) + # def get_org_repos(self, name) -> List[github.Repository.Repository]: + # logger.debug(f"get_org_repos: {name}") + # org = self.gh.get_organization(name) + # repos = [] + # for repo in org.get_repos(): + # repos.append(repo) + # return repos + # + # def get_organization(self, name) -> github.Organization.Organization: + # logger.debug(f"get_organization: {name}") + # return self.gh.get_organization(name) + # + # def search_github(self, keywords): + # query = "+".join(keywords) + "+in:readme+in:description" + # result = self.gh.search_repositories(query, "stars", "desc") + # + # print(f"Found {result.totalCount} repo(s)") + # for repo in result: + # print(repo.clone_url) diff --git a/src/library/metrics.py b/src/library/metrics.py index 5445973..2700ec9 100644 --- a/src/library/metrics.py +++ b/src/library/metrics.py @@ -5,10 +5,26 @@ from loguru import logger from library.ghw import GithubWrapper from joblib import Memory +from github.GithubException import RateLimitExceededException, GithubException memory = Memory(".joblib_cache") +class StandardMetrics: + @staticmethod + @memory.cache + def get_repo_topics(ghw, name): + return ghw.get_repo(name).get_topics() + + @staticmethod + @memory.cache + def last_commit_date(ghw, name): + return datetime.strptime( + ghw.get_repo(name).get_commits().get_page(0)[0].last_modified, + "%a, %d %b %Y %H:%M:%S %Z", + ).date() + + class PopularityMetrics: """ Inspired by https://github.com/ossf/criticality_score/tree/v1.0.7 (Latest Python version before Go port) @@ -17,20 +33,29 @@ class PopularityMetrics: @staticmethod @memory.cache - def contributor_count(ghw: GithubWrapper, name: str) -> int: - repo = ghw.get_repo(name) + def contributor_count(token: str, name: str) -> int: + repo = GithubWrapper(token).get_repo(name) try: return repo.get_contributors(anon='true').totalCount + except RateLimitExceededException as ex: + logger.error(f"contributor_count rate exception: {ex}") + # TODO: add sleep and retry + raise ex except Exception as ex: # Typically a large number of contributors - logger.warning(f"get_contributors exception: {ex}") + logger.warning(f"contributor_count exception: {ex}") return 5000 @staticmethod @memory.cache - def contributor_orgs(ghw: GithubWrapper, name: str) -> dict: - MAX_CONTRIBUTOR_COUNT = 20 # 10 - repo = ghw.get_repo(name) + def get_contributor_company(contributor): + return contributor.company + + @staticmethod + @memory.cache + def contributor_orgs(token: str, name: str) -> dict: + MAX_CONTRIBUTOR_COUNT = 5 # 10 + repo = GithubWrapper(token).get_repo(name) def _filter_name(org_name): return org_name.lower().replace(', inc.', '').replace('inc.', '')\ @@ -41,15 +66,19 @@ def _filter_name(org_name): try: # NOTE: Can be expensive if not capped due to `contributor.company` being an API call for contributor in contributors: - # TODO: cache contributor -> company ?? - contributor_company = contributor.company + time.sleep(2) # TODO: review and add retry + contributor_company = PopularityMetrics.get_contributor_company(contributor) if contributor_company: filtered_contributor_company = _filter_name(contributor_company) logger.info(f"{name=}, {contributor.login=}, {filtered_contributor_company=}") orgs.add(filtered_contributor_company) + except RateLimitExceededException as ex: + logger.warning(f"get_contributors rate exception: {ex}") + # TODO: add sleep and retry + raise ex except Exception as ex: # Typically a large number of contributors - logger.warning(f"get_contributors exception: {ex}") + logger.warning(f"get_contributors {type(ex)} exception: {ex}") return { "_pop_contributor_orgs_len": -1, "_pop_contributor_orgs_max": MAX_CONTRIBUTOR_COUNT, @@ -65,8 +94,8 @@ def _filter_name(org_name): @staticmethod @memory.cache - def commit_frequency(ghw: GithubWrapper, name: str) -> float: - repo = ghw.get_repo(name) + def commit_frequency(token: str, name: str) -> float: + repo = GithubWrapper(token).get_repo(name) # NOTE: get_stats_commit_activity Returns the last year of commit activity grouped by week stats_commit_activity = repo.get_stats_commit_activity() assert len(stats_commit_activity) == 52 @@ -77,27 +106,27 @@ def commit_frequency(ghw: GithubWrapper, name: str) -> float: @staticmethod @memory.cache - def updated_issues_count(ghw: GithubWrapper, name: str) -> int: + def updated_issues_count(token: str, name: str) -> int: ISSUE_LOOKBACK_DAYS = 90 - repo = ghw.get_repo(name) + repo = GithubWrapper(token).get_repo(name) issues_since_time = datetime.utcnow() - timedelta(days=ISSUE_LOOKBACK_DAYS) # NOTE: get_issues includes PR's return repo.get_issues(state='all', since=issues_since_time).totalCount @staticmethod @memory.cache - def closed_issues_count(ghw: GithubWrapper, name: str) -> int: + def closed_issues_count(token: str, name: str) -> int: ISSUE_LOOKBACK_DAYS = 90 # TODO: make generic with updated_issues_count? - repo = ghw.get_repo(name) + repo = GithubWrapper(token).get_repo(name) issues_since_time = datetime.utcnow() - timedelta(days=ISSUE_LOOKBACK_DAYS) # NOTE: get_issues includes PR's return repo.get_issues(state='closed', since=issues_since_time).totalCount @staticmethod @memory.cache - def created_since_days(ghw: GithubWrapper, name: str) -> int: - repo = ghw.get_repo(name) + def created_since_days(token: str, name: str) -> int: + repo = GithubWrapper(token).get_repo(name) creation_time = repo.created_at # See if there exist any commits before this repository creation @@ -118,8 +147,8 @@ def created_since_days(ghw: GithubWrapper, name: str) -> int: @staticmethod @memory.cache - def updated_since_days(ghw: GithubWrapper, name: str) -> int: - repo = ghw.get_repo(name) + def updated_since_days(token: str, name: str) -> int: + repo = GithubWrapper(token).get_repo(name) last_commit = repo.get_commits()[0] last_commit_time = last_commit.commit.author.date difference = datetime.utcnow() - last_commit_time @@ -127,9 +156,9 @@ def updated_since_days(ghw: GithubWrapper, name: str) -> int: @staticmethod @memory.cache - def recent_releases_count(ghw: GithubWrapper, name: str) -> dict: + def recent_releases_count(token: str, name: str) -> dict: RELEASE_LOOKBACK_DAYS = 365 - repo = ghw.get_repo(name) + repo = GithubWrapper(token).get_repo(name) recent_releases_count = 0 for release in repo.get_releases(): if (datetime.utcnow() - @@ -141,7 +170,7 @@ def recent_releases_count(ghw: GithubWrapper, name: str) -> dict: # Make rough estimation of tags used in last year from overall # project history. This query is extremely expensive, so instead # do the rough calculation. - days_since_creation = PopularityMetrics.created_since_days(ghw, name) * 30 + days_since_creation = PopularityMetrics.created_since_days(token, name) * 30 if days_since_creation: total_tags = repo.get_tags().totalCount estimated_tags = round( @@ -159,23 +188,36 @@ def recent_releases_count(ghw: GithubWrapper, name: str) -> dict: @staticmethod @memory.cache - def comment_frequency(ghw: GithubWrapper, name: str) -> dict: + def comment_frequency(token: str, name: str) -> dict: ISSUE_LOOKBACK_DAYS = 90 - repo = ghw.get_repo(name) + repo = GithubWrapper(token).get_repo(name) issues_since_time = datetime.utcnow() - timedelta(days=ISSUE_LOOKBACK_DAYS) + # NOTE: get_issues includes PR's issue_count = repo.get_issues(state='all', since=issues_since_time).totalCount - comment_count = repo.get_issues_comments(since=issues_since_time).totalCount + + try: + comment_count = repo.get_issues_comments(since=issues_since_time).totalCount + except GithubException as ex: + logger.warning(f"get_issues_comments exception: {ex}, retry once...") + time.sleep(5) + # Exception due to large number of comments, e.g. pytorch/pytorch repo. + # So try reducing down ISSUE_LOOKBACK_DAYS + ISSUE_LOOKBACK_DAYS = ISSUE_LOOKBACK_DAYS // 4 + issues_since_time = datetime.utcnow() - timedelta(days=ISSUE_LOOKBACK_DAYS) + comment_count = repo.get_issues_comments(since=issues_since_time).totalCount * 4 + comment_frequency = round(comment_count / issue_count, 1) if issue_count else 0 return { "_pop_issue_count": issue_count, "_pop_comment_count": comment_count, - "_pop_comment_frequency": comment_frequency + "_pop_comment_count_lookback_days": ISSUE_LOOKBACK_DAYS, + "_pop_comment_frequency": comment_frequency, } @staticmethod @memory.cache - def dependents_count(ghw: GithubWrapper, name: str) -> int: + def dependents_count(name: str) -> int: # return 0 # TODO: this is expensive and can have many fails DEPENDENTS_REGEX = re.compile(b'.*[^0-9,]([0-9,]+).*commit results', re.DOTALL) FAIL_RETRIES = 12 @@ -183,10 +225,11 @@ def dependents_count(ghw: GithubWrapper, name: str) -> int: # to replace this, then find a solution for C/C++ as well. # parsed_url = urllib.parse.urlparse(self.url) # repo_name = parsed_url.path.strip('/') + # TODO: add in gh token in url?? dependents_url = f'https://github.com/search?q="{name}"&type=commits' logger.trace(f"Call dependents_count: {dependents_url=}, {name=}") content = b'' - time.sleep(5) + time.sleep(2) success = False for i in range(FAIL_RETRIES): result = requests.get(dependents_url) @@ -194,7 +237,7 @@ def dependents_count(ghw: GithubWrapper, name: str) -> int: content = result.content success = True break - sleep_secs = min(2 ** (i + 2), 15 * 60) + sleep_secs = min(2 ** (i + 3), 15 * 60) logger.warning(f"Retry dependents_count #{i}/{FAIL_RETRIES}, sleeping for {sleep_secs} secs...") time.sleep(sleep_secs) diff --git a/src/library/render.py b/src/library/render.py index e4b6a55..418d894 100644 --- a/src/library/render.py +++ b/src/library/render.py @@ -1,11 +1,11 @@ import sys import pandas as pd from datetime import datetime -from typing import List +from typing import List, Callable from loguru import logger from urllib.parse import urlparse from library.ghw import GithubWrapper -from library.metrics import PopularityMetrics +from library.metrics import PopularityMetrics, StandardMetrics from library.scorer import PopularityScorer @@ -93,80 +93,81 @@ def _display_description(ghw, name) -> str: return f"{repo.name}: {repo.description}" +def _column_apply(df: pd.DataFrame, target: str, source: str, fn: Callable): + logger.info(f"apply: {source} -> {target}") + df[target] = df[source].apply(fn) + + def process(df_input: pd.DataFrame, token: str) -> pd.DataFrame: ghw = GithubWrapper(token) df = df_input.copy() - # Add standard columns - df["_repopath"] = df["githuburl"].apply(lambda x: urlparse(x).path.lstrip("/")) - df["_reponame"] = df["_repopath"].apply(lambda x: ghw.get_repo(x).name) - df["_stars"] = df["_repopath"].apply(lambda x: ghw.get_repo(x).stargazers_count) - df["_forks"] = df["_repopath"].apply(lambda x: ghw.get_repo(x).forks_count) - df["_watches"] = df["_repopath"].apply(lambda x: ghw.get_repo(x).subscribers_count) - df["_topics"] = df["_repopath"].apply(lambda x: ghw.get_repo(x).get_topics()) - df["_language"] = df["_repopath"].apply(lambda x: ghw.get_repo(x).language) - df["_homepage"] = df["_repopath"].apply(lambda x: ghw.get_repo(x).homepage) - df["_description"] = df["_repopath"].apply(lambda x: _display_description(ghw, x)) - df["_organization"] = df["_repopath"].apply(lambda x: x.split("/")[0]) - df["_updated_at"] = df["_repopath"].apply(lambda x: ghw.get_repo(x).updated_at.date()) - df["_last_commit_date"] = df["_repopath"].apply( - # E.g. Sat, 18 Jul 2020 17:14:09 GMT - lambda x: datetime.strptime( - ghw.get_repo(x).get_commits().get_page(0)[0].last_modified, - "%a, %d %b %Y %H:%M:%S %Z", - ).date() - ) - df["_created_at"] = df["_repopath"].apply(lambda x: ghw.get_repo(x).created_at.date()) - df["_age_weeks"] = df["_repopath"].apply( - lambda x: (datetime.now().date() - ghw.get_repo(x).created_at.date()).days // 7 - ) - df["_stars_per_week"] = df["_repopath"].apply( - lambda x: ghw.get_repo(x).stargazers_count - * 7 - / (datetime.now().date() - ghw.get_repo(x).created_at.date()).days - ) - - # Add popularity metric columns + logger.info(f"Add standard columns...") + std_metrics = StandardMetrics() + + _column_apply(df, "_repopath", "githuburl", lambda x: urlparse(x).path.lstrip("/")) + _column_apply(df, "_reponame", "_repopath", lambda x: ghw.get_repo(x).name) + _column_apply(df, "_stars", "_repopath", lambda x: ghw.get_repo(x).stargazers_count) + _column_apply(df, "_forks", "_repopath", lambda x: ghw.get_repo(x).forks_count) + _column_apply(df, "_watches", "_repopath", lambda x: ghw.get_repo(x).subscribers_count) + _column_apply(df, "_topics", "_repopath", lambda x: std_metrics.get_repo_topics(ghw, x)) + _column_apply(df, "_language", "_repopath", lambda x: ghw.get_repo(x).language) + _column_apply(df, "_homepage", "_repopath", lambda x: ghw.get_repo(x).homepage) + _column_apply(df, "_description", "_repopath", lambda x: _display_description(ghw, x)) + _column_apply(df, "_organization", "_repopath", lambda x: x.split("/")[0]) + _column_apply(df, "_updated_at", "_repopath", lambda x: ghw.get_repo(x).updated_at.date()) + _column_apply(df, "_last_commit_date", "_repopath", lambda x: std_metrics.last_commit_date(ghw, x)) + _column_apply(df, "_created_at", "_repopath", lambda x: ghw.get_repo(x).created_at.date()) + _column_apply(df, "_age_weeks", "_repopath", + lambda x: (datetime.now().date() - ghw.get_repo(x).created_at.date()).days // 7 + ) + _column_apply(df, "_stars_per_week", "_repopath", + lambda x: ghw.get_repo(x).stargazers_count + * 7 + / (datetime.now().date() - ghw.get_repo(x).created_at.date()).days + ) + + logger.info(f"Add popularity metric columns...") metrics = PopularityMetrics() df["_pop_contributor_count"] = df["_repopath"].apply( - lambda x: metrics.contributor_count(ghw, x) + lambda x: metrics.contributor_count(token, x) ) - df_pop_contributor_orgs = df.apply(lambda row: metrics.contributor_orgs(ghw, row["_repopath"]), + df_pop_contributor_orgs = df.apply(lambda row: metrics.contributor_orgs(token, row["_repopath"]), axis="columns", result_type="expand") df = pd.concat([df, df_pop_contributor_orgs], axis="columns") df["_pop_commit_frequency"] = df["_repopath"].apply( - lambda x: metrics.commit_frequency(ghw, x) + lambda x: metrics.commit_frequency(token, x) ) df["_pop_updated_issues_count"] = df["_repopath"].apply( - lambda x: metrics.updated_issues_count(ghw, x) + lambda x: metrics.updated_issues_count(token, x) ) df["_pop_closed_issues_count"] = df["_repopath"].apply( - lambda x: metrics.closed_issues_count(ghw, x) + lambda x: metrics.closed_issues_count(token, x) ) df["_pop_created_since_days"] = df["_repopath"].apply( - lambda x: metrics.created_since_days(ghw, x) + lambda x: metrics.created_since_days(token, x) ) df["_pop_updated_since_days"] = df["_repopath"].apply( - lambda x: metrics.updated_since_days(ghw, x) + lambda x: metrics.updated_since_days(token, x) ) - df_pop_recent_releases_count = df.apply(lambda row: metrics.recent_releases_count(ghw, row["_repopath"]), + df_pop_recent_releases_count = df.apply(lambda row: metrics.recent_releases_count(token, row["_repopath"]), axis="columns", result_type="expand") df = pd.concat([df, df_pop_recent_releases_count], axis="columns") - df_pop_comment_frequency = df.apply(lambda row: metrics.comment_frequency(ghw, row["_repopath"]), + df_pop_comment_frequency = df.apply(lambda row: metrics.comment_frequency(token, row["_repopath"]), axis="columns", result_type="expand") df = pd.concat([df, df_pop_comment_frequency], axis="columns") df["_pop_dependents_count"] = df["_repopath"].apply( - lambda x: metrics.dependents_count(ghw, x) + lambda x: metrics.dependents_count(x) ) scorer = PopularityScorer() diff --git a/tests/test_render.py b/tests/test_render.py index fcd7c27..7aa5d48 100644 --- a/tests/test_render.py +++ b/tests/test_render.py @@ -38,6 +38,6 @@ def test_render_process(): "_pop_updated_since_days", "_pop_recent_releases_count", "_pop_recent_releases_estimated_tags", "_pop_recent_releases_adjusted_count", "_pop_issue_count", - "_pop_comment_count", "_pop_comment_frequency", "_pop_dependents_count", - "_pop_score" + "_pop_comment_count", "_pop_comment_frequency", + "_pop_comment_frequency_lookback_days", "_pop_dependents_count", "_pop_score" ] From a39f3b715818888eb2ea0df2842456a9dbb15997 Mon Sep 17 00:00:00 2001 From: Dylan Hogg Date: Tue, 20 Dec 2022 21:44:31 +1100 Subject: [PATCH 10/20] First full popularity crawl. --- github_data.csv | 1806 +- github_data.json | 43267 ++++++++++++++++++++++++++++++----------- github_data.min.json | 2 +- 3 files changed, 32502 insertions(+), 12573 deletions(-) diff --git a/github_data.csv b/github_data.csv index a90d25c..17e11e8 100644 --- a/github_data.csv +++ b/github_data.csv @@ -1,903 +1,903 @@ -,category,githuburl,featured,links,description,_repopath,_reponame,_stars,_forks,_watches,_topics,_language,_homepage,_description,_organization,_updated_at,_last_commit_date,_created_at,_age_weeks,_stars_per_week -89,ml-dl,https://github.com/tensorflow/tensorflow,,,,tensorflow/tensorflow,tensorflow,169543,87524,7795,"['tensorflow', 'machine-learning', 'python', 'deep-learning', 'deep-neural-networks', 'neural-network', 'ml', 'distributed']",C++,https://tensorflow.org,tensorflow: An Open Source Machine Learning Framework for Everyone,tensorflow,2022-12-07,2022-12-07,2015-11-07,369,458.7557015848473 -405,study,https://github.com/thealgorithms/python,,,,thealgorithms/python,Python,149666,38442,5936,"['python', 'algorithm', 'algorithms-implemented', 'algorithm-competitions', 'algos', 'sorts', 'searches', 'sorting-algorithms', 'education', 'learn', 'practice', 'community-driven', 'interview', 'hacktoberfest']",Python,https://the-algorithms.com/,Python: All Algorithms implemented in Python,thealgorithms,2022-12-07,2022-12-05,2016-07-16,333,448.67751605995716 -112,nlp,https://github.com/huggingface/transformers,,,,huggingface/transformers,transformers,75566,17147,860,"['nlp', 'natural-language-processing', 'pytorch', 'language-model', 'tensorflow', 'bert', 'language-models', 'pytorch-transformers', 'nlp-library', 'transformer', 'model-hub', 'pretrained-models', 'jax', 'flax', 'seq2seq', 'speech-recognition', 'hacktoberfest', 'python', 'machine-learning', 'deep-learning']",Python,https://huggingface.co/transformers,"🤗 Transformers: State-of-the-art Machine Learning for Pytorch, TensorFlow, and JAX.",huggingface,2022-12-07,2022-12-07,2018-10-29,214,352.6413333333333 -14,web,https://github.com/django/django,,,,django/django,django,67603,28283,2267,"['python', 'django', 'web', 'framework', 'orm', 'templates', 'models', 'views', 'apps']",Python,https://www.djangoproject.com/,django: The Web framework for perfectionists with deadlines.,django,2022-12-07,2022-12-07,2012-04-28,553,122.12154838709678 -57,web,https://github.com/pallets/flask,,,,pallets/flask,flask,61266,15345,2147,"['python', 'flask', 'wsgi', 'web-framework', 'werkzeug', 'jinja', 'pallets']",Python,https://flask.palletsprojects.com,flask: The Python micro framework for building web applications.,pallets,2022-12-07,2022-11-25,2010-04-06,661,92.66681071737251 -76,ml-dl,https://github.com/pytorch/pytorch,,,,pytorch/pytorch,pytorch,60819,16942,1624,"['neural-network', 'autograd', 'gpu', 'numpy', 'deep-learning', 'tensor', 'python', 'machine-learning']",C++,https://pytorch.org,pytorch: Tensors and Dynamic neural networks in Python with strong GPU acceleration,pytorch,2022-12-07,2022-12-07,2016-08-13,329,184.53966189856956 -40,ml-dl,https://github.com/keras-team/keras,,,,keras-team/keras,keras,56789,19224,1937,"['deep-learning', 'tensorflow', 'neural-networks', 'machine-learning', 'data-science', 'python']",Python,http://keras.io/,keras: Deep Learning for humans,keras-team,2022-12-07,2022-12-07,2015-03-28,401,141.41693347563145 -189,util,https://github.com/home-assistant/core,,,,home-assistant/core,core,56473,20808,1345,"['python', 'home-automation', 'iot', 'internet-of-things', 'mqtt', 'raspberry-pi', 'asyncio', 'hacktoberfest']",Python,https://www.home-assistant.io,core: :house_with_garden: Open source home automation that puts local control and privacy first.,home-assistant,2022-12-07,2022-12-07,2013-09-17,481,117.37262470308788 -78,ml,https://github.com/scikit-learn/scikit-learn,,,,scikit-learn/scikit-learn,scikit-learn,52254,23758,2170,"['machine-learning', 'python', 'statistics', 'data-science', 'data-analysis']",Python,https://scikit-learn.org,scikit-learn: machine learning in Python,scikit-learn,2022-12-07,2022-12-07,2010-08-17,642,81.37441601779756 -135,web,https://github.com/tiangolo/fastapi,1.0,,,tiangolo/fastapi,fastapi,52245,4281,601,"['python', 'json', 'swagger-ui', 'redoc', 'starlette', 'openapi', 'api', 'openapi3', 'framework', 'async', 'asyncio', 'uvicorn', 'python3', 'python-types', 'pydantic', 'json-schema', 'fastapi', 'swagger', 'rest', 'web']",Python,https://fastapi.tiangolo.com/,"FastAPI framework, high performance, easy to learn, fast to code, ready for production",tiangolo,2022-12-07,2022-12-03,2018-12-08,208,250.48972602739727 -399,util,https://github.com/python/cpython,,,,python/cpython,cpython,49336,25142,1461,[],Python,https://www.python.org/,cpython: The Python programming language,python,2022-12-07,2022-12-07,2017-02-10,303,162.44214487300093 -177,web,https://github.com/psf/requests,,,,psf/requests,requests,48656,8921,1360,"['python', 'http', 'forhumans', 'requests', 'python-requests', 'client', 'humans', 'cookies']",Python,https://requests.readthedocs.io/en/latest/,"requests: A simple, yet elegant, HTTP library.",psf,2022-12-07,2022-11-21,2011-02-13,616,78.93209733487834 -80,data,https://github.com/scrapy/scrapy,,,,scrapy/scrapy,scrapy,45297,9798,1787,"['python', 'scraping', 'crawling', 'framework', 'crawler', 'hacktoberfest']",Python,https://scrapy.org,"Scrapy, a fast high-level web crawling & scraping framework for Python.",scrapy,2022-12-07,2022-12-05,2010-02-22,667,67.88246628131022 -695,ml-dl,https://github.com/deepfakes/faceswap,,,,deepfakes/faceswap,faceswap,42917,12004,1504,"['faceswap', 'face-swap', 'deep-learning', 'deeplearning', 'deep-neural-networks', 'deepfakes', 'deepface', 'deep-face-swap', 'fakeapp', 'neural-networks', 'neural-nets', 'openfaceswap', 'myfakeapp', 'machine-learning']",Python,https://www.faceswap.dev,faceswap: Deepfakes Software For All,deepfakes,2022-12-07,2022-11-22,2017-12-19,259,165.61135611907386 -179,term,https://github.com/willmcgugan/rich,,,,willmcgugan/rich,rich,40996,1434,541,"['python', 'python3', 'python-library', 'terminal', 'terminal-color', 'markdown', 'tables', 'syntax-highlighting', 'ansi-colors', 'progress-bar-python', 'progress-bar', 'traceback', 'rich', 'tracebacks-rich', 'emoji', 'tui']",Python,https://rich.readthedocs.io/en/latest/,Rich is a Python library for rich text and beautiful formatting in the terminal.,willmcgugan,2022-12-07,2022-12-04,2019-11-10,160,255.5405164737311 -262,web,https://github.com/sherlock-project/sherlock,,,,sherlock-project/sherlock,sherlock,37642,4443,962,"['osint', 'reconnaissance', 'linux', 'macos', 'cli', 'sherlock', 'python3', 'windows', 'redteam', 'tools', 'information-gathering', 'hacktoberfest', 'hacktoberfest2022', 'python']",Python,http://sherlock-project.github.io,sherlock: 🔎 Hunt down social media accounts by username across social networks,sherlock-project,2022-12-07,2022-10-21,2018-12-24,206,182.47506925207756 -432,study,https://github.com/jakevdp/pythondatasciencehandbook,,,,jakevdp/pythondatasciencehandbook,PythonDataScienceHandbook,36745,16232,1768,"['scikit-learn', 'numpy', 'python', 'jupyter-notebook', 'matplotlib', 'pandas']",Jupyter Notebook,http://jakevdp.github.io/PythonDataScienceHandbook,PythonDataScienceHandbook: Python Data Science Handbook: full text in Jupyter Notebooks,jakevdp,2022-12-07,2018-11-30,2016-08-10,330,111.34848484848484 -736,diffusion,https://github.com/compvis/stable-diffusion,,,,compvis/stable-diffusion,stable-diffusion,36523,5617,348,[],Jupyter Notebook,https://ommer-lab.com/research/latent-diffusion-models/,stable-diffusion: A latent text-to-image diffusion model,compvis,2022-12-07,2022-11-16,2022-08-10,17,2148.4117647058824 -59,pandas,https://github.com/pandas-dev/pandas,1.0,,,pandas-dev/pandas,pandas,36168,15473,1118,"['data-analysis', 'pandas', 'flexible', 'alignment', 'python', 'data-science']",Python,https://pandas.pydata.org,"pandas: Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more",pandas-dev,2022-12-07,2022-12-06,2010-08-24,641,56.411764705882355 -694,ml-dl,https://github.com/iperov/deepfacelab,,,,iperov/deepfacelab,DeepFaceLab,36022,8114,1049,"['faceswap', 'face-swap', 'deep-learning', 'deeplearning', 'deep-neural-networks', 'deepfakes', 'deepface', 'deep-face-swap', 'fakeapp', 'neural-networks', 'neural-nets', 'deepfacelab', 'creating-deepfakes', 'arxiv', 'machine-learning']",Python,,DeepFaceLab is the leading software for creating deepfakes.,iperov,2022-12-07,2022-10-31,2018-06-04,235,153.09896782027928 -64,util,https://github.com/psf/black,,,,psf/black,black,30382,1946,226,"['python', 'code', 'formatter', 'codeformatter', 'gofmt', 'yapf', 'autopep8', 'pre-commit-hook', 'hacktoberfest']",Python,https://black.readthedocs.io/en/stable/,black: The uncompromising Python code formatter,psf,2022-12-07,2022-11-21,2018-03-14,247,123.00404858299595 -220,util,https://github.com/pyenv/pyenv,,,,pyenv/pyenv,pyenv,29759,2642,382,"['python', 'shell']",Roff,,pyenv: Simple Python version management,pyenv,2022-12-07,2022-12-02,2012-08-31,535,55.550133333333335 -55,sim,https://github.com/openai/gym,,,,openai/gym,gym,29220,8087,992,[],Python,https://www.gymlibrary.dev,gym: A toolkit for developing and comparing reinforcement learning algorithms.,openai,2022-12-07,2022-10-25,2016-04-27,345,84.69565217391305 -118,ml-ops,https://github.com/apache/airflow,,,,apache/airflow,airflow,28369,11636,766,"['airflow', 'apache', 'apache-airflow', 'python', 'scheduler', 'workflow', 'hacktoberfest']",Python,https://airflow.apache.org/,"airflow: Apache Airflow - A platform to programmatically author, schedule, and monitor workflows",apache,2022-12-07,2022-12-07,2015-04-13,399,71.04937388193203 -592,util,https://github.com/mingrammer/diagrams,,,,mingrammer/diagrams,diagrams,27356,1669,348,"['diagram', 'diagram-as-code', 'architecture', 'graphviz']",Python,https://diagrams.mingrammer.com,diagrams: :art: Diagram as Code for prototyping cloud system architectures,mingrammer,2022-12-07,2022-11-27,2020-02-02,148,184.3041385948027 -257,crypto,https://github.com/ccxt/ccxt,,,,ccxt/ccxt,ccxt,26569,6498,929,"['altcoin', 'api', 'arbitrage', 'bitcoin', 'bot', 'cryptocurrency', 'crypto', 'e-commerce', 'ethereum', 'exchange', 'invest', 'library', 'strategy', 'trading', 'btc', 'eth', 'trade', 'merchant', 'market-data']",JavaScript,,ccxt: A JavaScript / Python / PHP cryptocurrency trading API with support for more than 100 bitcoin/altcoin exchanges,ccxt,2022-12-07,2022-12-07,2017-05-14,290,91.48204623708804 -677,ml-dl,https://github.com/facebookresearch/detectron,,,,facebookresearch/detectron,Detectron,25445,5480,959,[],Python,,"Detectron: FAIR's research platform for object detection research, implementing popular algorithms like Mask R-CNN and RetinaNet.",facebookresearch,2022-12-06,2021-03-27,2017-10-05,269,94.29062996294336 -245,ml,https://github.com/tencentarc/gfpgan,,,,tencentarc/gfpgan,GFPGAN,24990,3771,368,"['pytorch', 'gan', 'deep-learning', 'super-resolution', 'face-restoration', 'image-restoration', 'gfpgan']",Python,,GFPGAN aims at developing Practical Algorithms for Real-world Face Restoration.,tencentarc,2022-12-07,2022-09-16,2021-03-19,89,278.5509554140127 -17,nlp,https://github.com/explosion/spacy,,,,explosion/spacy,spaCy,24716,3984,547,"['natural-language-processing', 'data-science', 'machine-learning', 'python', 'cython', 'nlp', 'artificial-intelligence', 'ai', 'spacy', 'nlp-library', 'neural-network', 'neural-networks', 'deep-learning', 'named-entity-recognition', 'entity-linking', 'text-classification', 'tokenization']",Python,https://spacy.io,spaCy: 💫 Industrial-strength Natural Language Processing (NLP) in Python,explosion,2022-12-07,2022-12-07,2014-07-03,439,56.190971094511205 -838,diffusion,https://github.com/automatic1111/stable-diffusion-webui,,,,automatic1111/stable-diffusion-webui,stable-diffusion-webui,23958,4338,245,[],Python,,stable-diffusion-webui: Stable Diffusion web UI,automatic1111,2022-12-07,2022-12-04,2022-08-22,15,1567.3457943925234 -501,ml,https://github.com/ageron/handson-ml2,,,,ageron/handson-ml2,handson-ml2,23637,11425,621,[],Jupyter Notebook,,"handson-ml2: A series of Jupyter notebooks that walk you through the fundamentals of Machine Learning and Deep Learning in Python using Scikit-Learn, Keras and TensorFlow 2.",ageron,2022-12-07,2022-11-08,2019-01-08,204,115.78656403079076 -103,ml,https://github.com/dmlc/xgboost,,,,dmlc/xgboost,xgboost,23534,8529,931,"['gbdt', 'gbrt', 'gbm', 'distributed-systems', 'xgboost', 'machine-learning']",C++,https://xgboost.ai/,"xgboost: Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library, for Python, R, Java, Scala, C++ and more. Runs on single machine, Hadoop, Spark, Dask, Flink and DataFlow",dmlc,2022-12-07,2022-12-07,2014-02-06,460,51.065716057036575 -163,term,https://github.com/tqdm/tqdm,1.0,,,tqdm/tqdm,tqdm,23501,1195,207,"['progressbar', 'progressmeter', 'progress-bar', 'meter', 'rate', 'console', 'terminal', 'time', 'progress', 'gui', 'python', 'parallel', 'cli', 'utilities', 'jupyter', 'discord', 'telegram', 'pandas', 'keras', 'closember']",Python,https://tqdm.github.io,"tqdm: A Fast, Extensible Progress Bar for Python and CLI",tqdm,2022-12-07,2022-09-03,2015-06-03,392,59.951530612244895 -26,term,https://github.com/google/python-fire,,,,google/python-fire,python-fire,23437,1353,380,"['python', 'cli']",Python,,python-fire: Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object.,google,2022-12-07,2022-11-28,2017-02-21,302,77.5692671394799 -678,ml-dl,https://github.com/facebookresearch/detectron2,,,,facebookresearch/detectron2,detectron2,23038,6272,365,[],Python,https://detectron2.readthedocs.io/en/latest/,"Detectron2 is a platform for object detection, segmentation and other visual recognition tasks.",facebookresearch,2022-12-07,2022-12-06,2019-09-05,169,135.63162321278386 -646,util,https://github.com/python-poetry/poetry,,,,python-poetry/poetry,poetry,22845,1849,185,"['python', 'dependency-manager', 'package-manager', 'packaging', 'poetry']",Python,https://python-poetry.org,poetry: Python packaging and dependency management made easy,python-poetry,2022-12-07,2022-12-05,2018-02-28,249,91.74698795180723 -689,ml-dl,https://github.com/matterport/mask_rcnn,,,,matterport/mask_rcnn,Mask_RCNN,22482,11162,599,"['mask-rcnn', 'tensorflow', 'object-detection', 'instance-segmentation', 'keras']",Python,,Mask_RCNN: Mask R-CNN for object detection and instance segmentation on Keras and TensorFlow,matterport,2022-12-06,2019-03-31,2017-10-19,267,83.9328 -289,ml-dl,https://github.com/rwightman/pytorch-image-models,,,,rwightman/pytorch-image-models,pytorch-image-models,22389,3729,290,"['pytorch', 'imagenet-classifier', 'resnet', 'dual-path-networks', 'cnn-classification', 'pretrained-models', 'pretrained-weights', 'distributed-training', 'mobile-deep-learning', 'mobilenet-v2', 'mnasnet', 'mobilenetv3', 'efficientnet', 'augmix', 'randaugment', 'mixnet', 'efficientnet-training', 'vision-transformer-models', 'nfnets', 'normalization-free-training']",Python,https://huggingface.co/docs/timm,"pytorch-image-models: PyTorch image models, scripts, pretrained weights -- ResNet, ResNeXT, EfficientNet, EfficientNetV2, NFNet, Vision Transformer, MixNet, MobileNet-V3/V2, RegNet, DPN, CSPNet, and more",rwightman,2022-12-07,2022-12-05,2019-02-02,200,111.62606837606837 -550,ml,https://github.com/open-mmlab/mmdetection,,,,open-mmlab/mmdetection,mmdetection,22303,8115,362,"['object-detection', 'instance-segmentation', 'rpn', 'fast-rcnn', 'faster-rcnn', 'mask-rcnn', 'cascade-rcnn', 'ssd', 'retinanet', 'pytorch']",Python,https://mmdetection.readthedocs.io,mmdetection: OpenMMLab Detection Toolbox and Benchmark,open-mmlab,2022-12-07,2022-11-23,2018-08-22,224,99.56696428571429 -54,math,https://github.com/numpy/numpy,1.0,,,numpy/numpy,numpy,22137,7583,569,"['numpy', 'python', 'closember']",Python,https://numpy.org,numpy: The fundamental package for scientific computing with Python.,numpy,2022-12-07,2022-12-07,2010-09-13,638,34.6819606087735 -649,util,https://github.com/keon/algorithms,,,,keon/algorithms,algorithms,21904,4420,642,"['algorithm', 'python', 'competitive-programming', 'data-structure', 'algorithms', 'sort', 'search', 'tree', 'graph']",Python,,algorithms: Minimal examples of data structures and algorithms in Python,keon,2022-12-07,2022-11-12,2016-11-17,315,69.3478064224333 -86,viz,https://github.com/streamlit/streamlit,,,,streamlit/streamlit,streamlit,21706,1948,283,"['python', 'machine-learning', 'data-science', 'deep-learning', 'data-visualization', 'streamlit', 'data-analysis', 'developer-tools']",Python,https://streamlit.io,Streamlit — The fastest way to build data apps in Python,streamlit,2022-12-07,2022-12-07,2019-08-24,171,126.51290591174022 -183,ml,https://github.com/google/jax,,,,google/jax,jax,21094,1969,288,['jax'],Python,http://jax.readthedocs.io/,"jax: Composable transformations of Python+NumPy programs: differentiate, vectorize, JIT to GPU/TPU, and more",google,2022-12-07,2022-12-07,2018-10-25,214,98.17686170212765 -90,web,https://github.com/tornadoweb/tornado,1.0,,,tornadoweb/tornado,tornado,20892,5484,1007,"['python', 'asynchronous']",Python,http://www.tornadoweb.org/,"Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.",tornadoweb,2022-12-07,2022-11-28,2009-09-09,691,30.234442836468887 -252,ml-dl,https://github.com/pytorchlightning/pytorch-lightning,1.0,,,pytorchlightning/pytorch-lightning,lightning,20867,2662,229,"['python', 'deep-learning', 'artificial-intelligence', 'ai', 'pytorch', 'data-science', 'machine-learning']",Python,https://lightning.ai,"lightning: Build and train PyTorch models and connect them to the ML lifecycle using Lightning App templates, without handling DIY infrastructure, cost management, scaling, and other headaches.",pytorchlightning,2022-12-07,2022-12-07,2019-03-31,192,108.44023756495916 -8,perf,https://github.com/celery/celery,,,,celery/celery,celery,20619,4394,477,"['python', 'task-manager', 'task-scheduler', 'task-runner', 'queue-workers', 'queued-jobs', 'queue-tasks', 'amqp', 'redis', 'sqs', 'sqs-queue', 'python3', 'python-library', 'redis-queue']",Python,https://docs.celeryq.dev,celery: Distributed Task Queue (development branch),celery,2022-12-07,2022-12-06,2009-04-24,710,29.011658291457287 -45,testing,https://github.com/locustio/locust,1.0,,,locustio/locust,locust,20265,2592,430,"['locust', 'python', 'load-testing', 'performance-testing', 'http', 'benchmarking', 'load-generator']",Python,,locust: Scalable load testing tool written in Python,locustio,2022-12-07,2022-12-06,2011-02-17,615,32.9053583855254 -2,ml-dl,https://github.com/apache/incubator-mxnet,,,,apache/incubator-mxnet,mxnet,20178,6877,1089,['mxnet'],C++,https://mxnet.apache.org,"mxnet: Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler; for Python, R, Julia, Scala, Go, Javascript and more",apache,2022-12-06,2022-09-26,2015-04-30,396,50.84449244060475 -75,nlp,https://github.com/pytorch/fairseq,,,,pytorch/fairseq,fairseq,20065,5058,354,"['python', 'pytorch', 'artificial-intelligence']",Python,,fairseq: Facebook AI Research Sequence-to-Sequence Toolkit written in Python.,pytorch,2022-12-07,2022-11-29,2017-08-29,275,72.9257528556594 -255,crypto,https://github.com/freqtrade/freqtrade,,,,freqtrade/freqtrade,freqtrade,20030,4243,591,"['python', 'cryptocurrencies', 'trading-bot', 'telegram-bot', 'bitcoin', 'trade', 'cryptocurrency', 'algorithmic-trading', 'freqtrade']",Python,https://www.freqtrade.io,"freqtrade: Free, open source crypto trading bot",freqtrade,2022-12-07,2022-12-06,2017-05-17,290,69.06896551724138 -273,ml,https://github.com/google/mediapipe,,,,google/mediapipe,mediapipe,19623,4132,495,"['mediapipe', 'c-plus-plus', 'computer-vision', 'deep-learning', 'android', 'video-processing', 'audio-processing', 'mobile-development', 'machine-learning', 'inference', 'graph-framework', 'graph-based', 'calculator', 'framework', 'pipeline-framework', 'stream-processing', 'perception']",C++,https://mediapipe.dev,"mediapipe: Cross-platform, customizable ML solutions for live and streaming media.",google,2022-12-07,2022-12-07,2019-06-13,181,107.90337784760409 -409,perf,https://github.com/google/flatbuffers,,,,google/flatbuffers,flatbuffers,19486,2968,648,"['flatbuffers', 'serialization', 'serialization-library', 'json-parser', 'marshalling', 'rpc', 'zero-copy', 'mmap', 'cross-platform', 'c-plus-plus', 'java', 'c-sharp', 'go', 'python', 'rust', 'javascript', 'typescript', 'grpc', 'c', 'protobuf']",C++,http://google.github.io/flatbuffers/,FlatBuffers: Memory Efficient Serialization Library,google,2022-12-07,2022-12-07,2014-05-19,446,43.662612035851474 -607,util,https://github.com/norvig/pytudes,,,,norvig/pytudes,pytudes,19392,2231,712,"['python', 'python-3', 'programming', 'practice', 'demonstrate-skills']",Jupyter Notebook,,"pytudes: Python programs, usually short, of considerable difficulty, to perfect particular skills.",norvig,2022-12-07,2022-12-02,2017-03-01,301,64.42524916943522 -350,ml-dl,https://github.com/paddlepaddle/paddle,,,,paddlepaddle/paddle,Paddle,19267,4815,733,"['paddlepaddle', 'deep-learning', 'scalability', 'machine-learning', 'neural-network', 'python', 'efficiency', 'distributed-training']",C++,http://www.paddlepaddle.org/,Paddle: PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice (『飞桨』核心框架,深度学习&机器学习高性能单机、分布式训练和跨平台部署),paddlepaddle,2022-12-07,2022-12-07,2016-08-15,329,58.5114967462039 -232,template,https://github.com/cookiecutter/cookiecutter,,,,cookiecutter/cookiecutter,cookiecutter,18527,1759,237,"['python', 'cookiecutter']",Python,https://pypi.org/project/cookiecutter/,"cookiecutter: A cross-platform command-line utility that creates projects from cookiecutters (project templates), e.g. Python package projects, C projects.",cookiecutter,2022-12-06,2022-09-09,2013-07-14,490,37.77716283134285 -789,study,https://github.com/wesm/pydata-book,,,,wesm/pydata-book,pydata-book,18470,13769,1453,[],Jupyter Notebook,,"pydata-book: Materials and IPython notebooks for ""Python for Data Analysis"" by Wes McKinney, published by O'Reilly Media",wesm,2022-12-07,2022-11-03,2012-06-30,544,33.91657922350472 -186,ml,https://github.com/harisiqbal88/plotneuralnet,,,,harisiqbal88/plotneuralnet,PlotNeuralNet,18387,2528,219,"['latex', 'deep-neural-networks']",TeX,,PlotNeuralNet: Latex code for making neural networks diagrams,harisiqbal88,2022-12-07,2020-11-06,2018-07-24,228,80.59423919849718 -187,ml-interpretability,https://github.com/slundberg/shap,,,,slundberg/shap,shap,18096,2722,260,"['interpretability', 'machine-learning', 'deep-learning', 'gradient-boosting', 'shap', 'shapley', 'explainability']",Jupyter Notebook,,shap: A game theoretic approach to explain the output of any machine learning model.,slundberg,2022-12-07,2022-06-16,2016-11-22,315,57.42157751586582 -61,viz,https://github.com/plotly/dash,,,,plotly/dash,dash,17753,1811,408,"['dash', 'plotly', 'data-visualization', 'data-science', 'gui-framework', 'flask', 'react', 'python', 'finance', 'bioinformatics', 'technical-computing', 'charting', 'plotly-dash', 'web-app', 'productivity', 'modeling', 'r', 'rstats', 'jupyter', 'julia']",Python,https://plotly.com/dash,"dash: Analytical Web Apps for Python, R, Julia, and Jupyter. No JavaScript Required.",plotly,2022-12-07,2022-12-05,2015-04-10,399,44.41422444603288 -6,viz,https://github.com/bokeh/bokeh,,,,bokeh/bokeh,bokeh,16967,4007,453,"['bokeh', 'python', 'interactive-plots', 'javascript', 'visualization', 'plotting', 'plots', 'data-visualisation', 'notebooks', 'jupyter', 'visualisation', 'numfocus']",Python,https://bokeh.org,"bokeh: Interactive Data Visualization in the browser, from Python",bokeh,2022-12-07,2022-12-07,2012-03-26,558,30.391248720573184 -107,sim,https://github.com/atsushisakai/pythonrobotics,,,,atsushisakai/pythonrobotics,PythonRobotics,16924,5359,502,"['python', 'robotics', 'algorithm', 'path-planning', 'control', 'animation', 'localization', 'slam', 'cvxpy', 'ekf', 'autonomous-vehicles', 'autonomous-driving', 'mapping', 'autonomous-navigation', 'robot', 'hacktoberfest']",Python,https://atsushisakai.github.io/PythonRobotics/,PythonRobotics: Python sample codes for robotics algorithms.,atsushisakai,2022-12-07,2022-12-05,2016-03-21,350,48.31484502446982 -349,ml,https://github.com/jina-ai/jina,,,,jina-ai/jina,jina,16835,1992,183,"['neural-search', 'cloud-native', 'deep-learning', 'machine-learning', 'framework', 'vector-search-engine', 'grpc', 'kubernetes', 'microservices', 'semantic-search', 'multimodal', 'crossmodal', 'creative-ai', 'aiops', 'mlops', 'pipeline', 'workflow', 'airflow', 'fastapi', 'generative-ai']",Python,https://docs.jina.ai,jina: 🔮 Build multimodal AI services via cloud native technologies · Neural Search · Generative AI · Cloud Native,jina-ai,2022-12-07,2022-12-07,2020-02-13,146,114.6352140077821 -763,ml-dl,https://github.com/xinntao/real-esrgan,,,,xinntao/real-esrgan,Real-ESRGAN,16801,1792,182,"['esrgan', 'pytorch', 'real-esrgan', 'super-resolution', 'image-restoration', 'denoise', 'jpeg-compression', 'amine']",Python,,Real-ESRGAN aims at developing Practical Algorithms for General Image/Video Restoration.,xinntao,2022-12-07,2022-09-20,2021-07-19,72,232.42490118577075 -30,web,https://github.com/huge-success/sanic,,,,huge-success/sanic,sanic,16668,1481,413,"['python', 'framework', 'asyncio', 'api-server', 'web', 'web-server', 'web-framework', 'asgi', 'sanic']",Python,https://sanic.dev,sanic: Next generation Python web server/framework | Build fast. Run fast.,huge-success,2022-12-06,2022-11-29,2016-05-26,340,48.90025146689019 -48,viz,https://github.com/matplotlib/matplotlib,,,,matplotlib/matplotlib,matplotlib,16508,6629,586,"['matplotlib', 'data-visualization', 'data-science', 'python', 'qt', 'wx', 'gtk', 'plotting', 'tk', 'hacktoberfest']",Python,https://matplotlib.org/stable/,matplotlib: plotting with Python,matplotlib,2022-12-07,2022-12-07,2011-02-19,615,26.817359016012997 -31,data,https://github.com/jaidedai/easyocr,,,,jaidedai/easyocr,EasyOCR,16464,2375,282,"['ocr', 'deep-learning', 'crnn', 'pytorch', 'lstm', 'machine-learning', 'scene-text', 'scene-text-recognition', 'optical-character-recognition', 'cnn', 'data-mining', 'image-processing', 'python', 'easyocr', 'information-retrieval']",Python,https://www.jaided.ai,"EasyOCR: Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc.",jaidedai,2022-12-07,2022-11-18,2020-03-14,142,115.47895791583166 -228,term,https://github.com/willmcgugan/textual,,,,willmcgugan/textual,textual,16321,470,151,"['terminal', 'python', 'tui', 'rich', 'cli', 'framework']",Python,https://textual.textualize.io/,Textual is a TUI (Text User Interface) framework for Python inspired by modern web development.,willmcgugan,2022-12-07,2022-12-05,2021-04-08,86,187.90625 -373,ml-dl,https://github.com/pyg-team/pytorch_geometric,,,,pyg-team/pytorch_geometric,pytorch_geometric,16304,2971,245,"['pytorch', 'geometric-deep-learning', 'graph-neural-networks', 'deep-learning', 'graph-convolutional-networks']",Python,https://pytorch-geometric.readthedocs.io/,pytorch_geometric: Graph Neural Network Library for PyTorch,pyg-team,2022-12-07,2022-12-07,2017-10-06,269,60.44915254237288 -102,ml-ops,https://github.com/spotify/luigi,,,,spotify/luigi,luigi,16176,2353,485,"['python', 'luigi', 'orchestration-framework', 'scheduling', 'hadoop']",Python,,"Luigi is a Python module that helps you build complex pipelines of batch jobs. It handles dependency resolution, workflow management, visualization etc. It also comes with Hadoop support built in. ",spotify,2022-12-07,2022-12-02,2012-09-20,532,30.35710455764075 -426,study,https://github.com/fchollet/deep-learning-with-python-notebooks,,,,fchollet/deep-learning-with-python-notebooks,deep-learning-with-python-notebooks,16123,7893,647,[],Jupyter Notebook,,"deep-learning-with-python-notebooks: Jupyter notebooks for the code samples of the book ""Deep Learning with Python""",fchollet,2022-12-07,2022-02-10,2017-09-05,274,58.81240229286087 -144,nlp,https://github.com/openai/gpt-2,,,,openai/gpt-2,gpt-2,15784,3983,585,['paper'],Python,https://openai.com/blog/better-language-models/,"gpt-2: Code for the paper ""Language Models are Unsupervised Multitask Learners""",openai,2022-12-07,2020-12-02,2019-02-11,199,79.20286738351254 -109,data,https://github.com/binux/pyspider,,,,binux/pyspider,pyspider,15669,3662,906,"['python', 'crawler']",Python,http://docs.pyspider.org/,pyspider: A Powerful Spider(Web Crawler) System in Python.,binux,2022-12-07,2020-08-02,2014-02-21,458,34.15851759576456 -873,util,https://github.com/ipython/ipython,,,,ipython/ipython,ipython,15605,4401,775,"['ipython', 'jupyter', 'data-science', 'notebook', 'python', 'repl', 'closember', 'hacktoberfest']",Python,https://ipython.readthedocs.org,"ipython: Official repository for IPython itself. Other repos in the IPython organization contain things like the website, documentation builds, etc.",ipython,2022-12-06,2022-11-28,2010-05-10,656,23.77775359164127 -834,util,https://github.com/micropython/micropython,,,,micropython/micropython,micropython,15566,5981,728,"['micropython', 'python', 'embedded', 'microcontroller']",C,https://micropython.org,MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems,micropython,2022-12-07,2022-12-07,2013-12-20,467,33.281001832620646 -493,ml-dl,https://github.com/rasbt/deeplearning-models,,,,rasbt/deeplearning-models,deeplearning-models,15461,3826,598,[],Jupyter Notebook,,"deeplearning-models: A collection of various deep learning architectures, models, and tips",rasbt,2022-12-07,2022-11-16,2019-06-05,183,84.48633879781421 -176,debug,https://github.com/cool-rr/pysnooper,1.0,,,cool-rr/pysnooper,PySnooper,15426,931,234,"['python', 'debug', 'debugger', 'introspection', 'logging']",Python,,PySnooper: Never use print for debugging again,cool-rr,2022-12-07,2022-04-02,2019-04-18,189,81.25056433408578 -469,util,https://github.com/alievk/avatarify-python,,,,alievk/avatarify-python,avatarify-python,15282,2354,305,[],Python,,"avatarify-python: Avatars for Zoom, Skype and other video-conferencing apps.",alievk,2022-12-07,2022-11-11,2020-04-06,139,109.71692307692308 -41,util,https://github.com/kivy/kivy,,,,kivy/kivy,kivy,15268,2961,616,"['python', 'ui', 'windows', 'ios', 'android', 'macos', 'linux', 'app', 'kivy']",Python,https://kivy.org,"kivy: Open source UI framework written in Python, running on Windows, Linux, macOS, Android and iOS",kivy,2022-12-07,2022-11-28,2010-11-03,631,24.19651347068146 -19,time-series,https://github.com/facebook/prophet,1.0,,,facebook/prophet,prophet,15239,4336,426,"['forecasting', 'r', 'python']",Python,https://facebook.github.io/prophet,prophet: Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth.,facebook,2022-12-07,2022-09-21,2016-11-16,316,48.2246835443038 -328,security,https://github.com/aquasecurity/trivy,,,,aquasecurity/trivy,trivy,15142,1463,144,"['security', 'security-tools', 'docker', 'containers', 'vulnerability-scanners', 'vulnerability-detection', 'vulnerability', 'golang', 'go', 'kubernetes', 'hacktoberfest', 'devsecops', 'misconfiguration', 'infrastructure-as-code', 'iac']",Go,https://trivy.dev,"trivy: Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more",aquasecurity,2022-12-07,2022-12-04,2019-04-11,190,79.33682634730539 -36,data,https://github.com/joke2k/faker,,,,joke2k/faker,faker,15138,1702,222,"['python', 'fake', 'testing', 'dataset', 'fake-data', 'test-data', 'test-data-generator']",Python,http://faker.rtfd.org,Faker is a Python package that generates fake data for you.,joke2k,2022-12-07,2022-11-30,2012-11-12,525,28.818602121294532 -604,web,https://github.com/pyscript/pyscript,,,,pyscript/pyscript,pyscript,15047,1104,179,"['python', 'html', 'javascript']",Python,https://community.anaconda.cloud/c/tech-topics/pyscript,pyscript: Home Page: https://pyscript.net Examples: https://pyscript.net/examples,pyscript,2022-12-07,2022-12-06,2022-02-21,41,364.46020761245677 -137,nlp,https://github.com/huggingface/datasets,,,,huggingface/datasets,datasets,14856,1932,256,"['nlp', 'datasets', 'metrics', 'evaluation', 'pytorch', 'tensorflow', 'pandas', 'numpy', 'natural-language-processing', 'computer-vision', 'machine-learning', 'deep-learning', 'speech', 'hacktoberfest']",Python,https://huggingface.co/docs/datasets,"datasets: 🤗 The largest hub of ready-to-use datasets for ML models with fast, easy-to-use and efficient data manipulation tools",huggingface,2022-12-07,2022-12-06,2020-03-26,140,105.4685598377282 -74,typing,https://github.com/python/mypy,,,,python/mypy,mypy,14283,2374,223,"['python', 'types', 'typing', 'typechecker', 'linter']",Python,http://www.mypy-lang.org/,mypy: Optional static typing for Python,python,2022-12-07,2022-12-06,2012-12-07,521,27.377053669222345 -148,data,https://github.com/twintproject/twint,,,,twintproject/twint,twint,14151,2429,310,"['osint', 'twitter', 'python', 'scrape', 'tweets', 'elasticsearch', 'kibana', 'scrape-followers', 'scrape-likes', 'scrape-following', 'twint', 'tweep']",Python,,"twint: An advanced Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API, allowing you to scrape a user's followers, following, Tweets and more while evading most API limitations.",twintproject,2022-12-07,2021-03-02,2017-06-10,286,49.38035892323031 -104,nlp,https://github.com/rare-technologies/gensim,,,,rare-technologies/gensim,gensim,13764,4294,432,"['gensim', 'topic-modeling', 'information-retrieval', 'machine-learning', 'natural-language-processing', 'nlp', 'data-science', 'python', 'data-mining', 'word2vec', 'word-embeddings', 'neural-network', 'document-similarity', 'word-similarity', 'fasttext']",Python,https://radimrehurek.com/gensim,gensim: Topic Modelling for Humans,rare-technologies,2022-12-07,2022-12-07,2011-02-10,616,22.313107920333486 -124,ml,https://github.com/onnx/onnx,,,,onnx/onnx,onnx,13753,3199,430,"['deep-learning', 'deep-neural-networks', 'neural-network', 'onnx', 'pytorch', 'mxnet', 'tensorflow', 'keras', 'scikit-learn', 'ml', 'machine-learning', 'dnn']",Python,https://onnx.ai/,onnx: Open standard for machine learning interoperability,onnx,2022-12-07,2022-11-29,2017-09-07,273,50.219613980177364 -332,sim,https://github.com/unity-technologies/ml-agents,,,,unity-technologies/ml-agents,ml-agents,13737,3625,539,"['reinforcement-learning', 'unity3d', 'deep-learning', 'unity', 'deep-reinforcement-learning', 'neural-networks', 'machine-learning']",C#,https://unity.com/products/machine-learning-agents,ml-agents: The Unity Machine Learning Agents Toolkit (ML-Agents) is an open-source project that enables games and simulations to serve as environments for training intelligent agents using deep reinforcement learning and imitation learning.,unity-technologies,2022-12-07,2022-12-05,2017-09-08,273,50.187369519832984 -175,util,https://github.com/delgan/loguru,1.0,,,delgan/loguru,loguru,13525,569,119,"['python', 'logging', 'logger', 'log']",Python,,loguru: Python logging made (stupidly) simple,delgan,2022-12-07,2022-12-02,2017-08-15,277,48.80154639175258 -674,ml-dl,https://github.com/borisdayma/dalle-mini,,,,borisdayma/dalle-mini,dalle-mini,13392,1006,105,[],Python,https://www.craiyon.com,dalle-mini: DALL·E Mini - Generate images from a text prompt,borisdayma,2022-12-07,2022-11-09,2021-07-03,74,179.58620689655172 -56,term,https://github.com/pallets/click,,,,pallets/click,click,13247,1298,181,"['python', 'cli', 'click', 'pallets']",Python,https://click.palletsprojects.com,click: Python composable command line interface toolkit,pallets,2022-12-07,2022-11-01,2014-04-24,449,29.447126071768814 -544,ml,https://github.com/aleju/imgaug,,,,aleju/imgaug,imgaug,13162,2334,228,"['image-augmentation', 'machine-learning', 'augmentation', 'deep-learning', 'images', 'affine-transformation', 'polygon', 'heatmap', 'segmentation-maps', 'keypoints', 'bounding-boxes', 'augment-images', 'crop', 'contrast']",Python,http://imgaug.readthedocs.io,imgaug: Image augmentation for machine learning experiments.,aleju,2022-12-07,2020-06-01,2015-07-10,386,34.03546361285556 -119,ml-ops,https://github.com/mlflow/mlflow,,,,mlflow/mlflow,mlflow,13162,3070,286,"['machine-learning', 'ai', 'ml', 'mlflow', 'apache-spark', 'model-management']",Python,https://mlflow.org,mlflow: Open source platform for the machine learning lifecycle,mlflow,2022-12-07,2022-12-07,2018-06-05,235,55.974483596597814 -408,web,https://github.com/aio-libs/aiohttp,,,,aio-libs/aiohttp,aiohttp,13079,1833,228,"['aiohttp', 'asyncio', 'python', 'http', 'http-server', 'http-client', 'async', 'hacktoberfest']",Python,https://docs.aiohttp.org,aiohttp: Asynchronous HTTP client/server framework for asyncio and Python,aio-libs,2022-12-06,2022-12-05,2013-10-01,479,27.296660703637446 -554,ml-ops,https://github.com/horovod/horovod,,,,horovod/horovod,horovod,12875,2143,331,"['tensorflow', 'uber', 'machine-learning', 'machinelearning', 'mpi', 'baidu', 'deep-learning', 'deeplearning', 'keras', 'pytorch', 'mxnet', 'spark', 'ray']",Python,http://horovod.ai,"horovod: Distributed training framework for TensorFlow, Keras, PyTorch, and Apache MXNet.",horovod,2022-12-07,2022-11-30,2017-08-09,278,46.31294964028777 -507,ml,https://github.com/tensorflow/tensor2tensor,,,,tensorflow/tensor2tensor,tensor2tensor,12814,3145,457,"['machine-learning', 'machine-translation', 'deep-learning', 'reinforcement-learning', 'tpu']",Python,,tensor2tensor: Library of deep learning models and datasets designed to make deep learning more accessible and accelerate ML research.,tensorflow,2022-12-07,2022-10-24,2017-06-15,285,44.82658670664668 -812,nlp,https://github.com/gunthercox/chatterbot,,,,gunthercox/chatterbot,ChatterBot,12704,4181,553,"['chatterbot', 'machine-learning', 'chatbot', 'python', 'conversation', 'language', 'bot']",Python,https://chatterbot.readthedocs.io,"ChatterBot is a machine learning, conversational dialog engine for creating chat bots",gunthercox,2022-12-07,2021-06-01,2014-09-28,427,29.72192513368984 -62,viz,https://github.com/plotly/plotly.py,,,,plotly/plotly.py,plotly.py,12566,2248,274,"['python', 'd3', 'plotly', 'plotlyjs', 'webgl', 'dashboard', 'visualization', 'graph-library', 'plotly-dash', 'jupyter-notebook', 'sparkles', 'regl', 'declarative', 'interactive']",Python,https://plotly.com/python/,plotly.py: The interactive graphing library for Python (includes Plotly Express) :sparkles:,plotly,2022-12-07,2022-10-27,2013-11-21,471,26.63094156827127 -39,jupyter,https://github.com/jupyterlab/jupyterlab,,,,jupyterlab/jupyterlab,jupyterlab,12496,2506,312,"['jupyterlab', 'jupyter']",TypeScript,https://jupyterlab.readthedocs.io/,JupyterLab computational environment.,jupyterlab,2022-12-07,2022-12-06,2016-06-03,339,36.7838519764508 -127,ml,https://github.com/microsoft/nni,,,,microsoft/nni,nni,12291,1725,281,"['automl', 'deep-learning', 'neural-architecture-search', 'hyperparameter-optimization', 'distributed', 'bayesian-optimization', 'automated-machine-learning', 'machine-learning', 'machine-learning-algorithms', 'data-science', 'tensorflow', 'pytorch', 'neural-network', 'deep-neural-network', 'model-compression', 'feature-engineering', 'nas', 'python', 'hyperparameter-tuning', 'mlops']",Python,https://nni.readthedocs.io,"nni: An open source AutoML toolkit for automate machine learning lifecycle, including feature engineering, neural architecture search, model compression and hyper-parameter tuning.",microsoft,2022-12-07,2022-12-07,2018-06-01,235,52.14363636363636 -152,nlp,https://github.com/flairnlp/flair,,,,flairnlp/flair,flair,12280,1972,204,"['pytorch', 'nlp', 'named-entity-recognition', 'sequence-labeling', 'semantic-role-labeling', 'word-embeddings', 'natural-language-processing', 'machine-learning']",Python,,flair: A very simple framework for state-of-the-art Natural Language Processing (NLP),flairnlp,2022-12-06,2022-12-06,2018-06-11,234,52.41463414634146 -575,perf,https://github.com/pybind/pybind11,,,,pybind/pybind11,pybind11,11937,1727,247,"['python', 'bindings']",C++,https://pybind11.readthedocs.io/,pybind11: Seamless operability between C++11 and Python,pybind,2022-12-07,2022-12-07,2015-07-05,387,30.8108407079646 -281,util,https://github.com/squidfunk/mkdocs-material,,,,squidfunk/mkdocs-material,mkdocs-material,11935,2641,112,"['mkdocs', 'theme', 'documentation', 'material-design', 'template', 'static']",TypeScript,https://squidfunk.github.io/mkdocs-material/,mkdocs-material: Documentation that simply works,squidfunk,2022-12-07,2022-12-07,2016-01-28,357,33.35129740518962 -52,graph,https://github.com/networkx/networkx,,,,networkx/networkx,networkx,11918,2797,276,"['python', 'complex-networks', 'graph-theory', 'graph-algorithms', 'graph-analysis', 'graph-generation', 'graph-visualization']",Python,https://networkx.org,networkx: Network Analysis in Python,networkx,2022-12-07,2022-12-06,2010-09-06,639,18.64268156424581 -314,util,https://github.com/samuelcolvin/pydantic,,,,samuelcolvin/pydantic,pydantic,11851,1103,89,"['validation', 'parsing', 'json-schema', 'python37', 'python38', 'pydantic', 'python39', 'python', 'hints', 'python310', 'python311']",Python,https://docs.pydantic.dev,pydantic: Data parsing and validation using Python type hints,samuelcolvin,2022-12-07,2022-12-06,2017-05-03,292,40.58561643835616 -114,nlp,https://github.com/allenai/allennlp,,,,allenai/allennlp,allennlp,11320,2230,280,"['pytorch', 'nlp', 'natural-language-processing', 'deep-learning', 'data-science', 'python']",Python,http://www.allennlp.org,"allennlp: An open-source NLP research library, built on PyTorch.",allenai,2022-12-07,2022-11-22,2017-05-15,290,38.996062992125985 -105,nlp,https://github.com/nltk/nltk,,,,nltk/nltk,nltk,11291,2665,469,"['nltk', 'python', 'nlp', 'natural-language-processing', 'machine-learning']",Python,https://www.nltk.org,NLTK Source,nltk,2022-12-07,2022-12-07,2009-09-07,691,16.333333333333332 -425,ml-dl,https://github.com/albumentations-team/albumentations,,,,albumentations-team/albumentations,albumentations,11273,1442,124,"['image-augmentation', 'machine-learning', 'augmentation', 'deep-learning', 'detection', 'fast-augmentations', 'segmentation', 'image-segmentation', 'image-processing', 'image-classification', 'python', 'object-detection']",Python,https://albumentations.ai,albumentations: Fast image augmentation library and an easy-to-use wrapper around other libraries. Documentation: https://albumentations.ai/docs/ Paper about the library: https://www.mdpi.com/2078-2489/11/2/125,albumentations-team,2022-12-07,2022-11-24,2018-06-06,235,47.97021276595745 -242,ml,https://github.com/deepmind/deepmind-research,,,,deepmind/deepmind-research,deepmind-research,11153,2291,322,[],Jupyter Notebook,,deepmind-research: This repository contains implementations and illustrative code to accompany DeepMind publications,deepmind,2022-12-07,2022-10-24,2019-01-15,203,54.90225035161744 -346,viz,https://github.com/gradio-app/gradio,,,,gradio-app/gradio,gradio,11064,697,87,"['machine-learning', 'models', 'ui', 'ui-components', 'interface', 'python', 'data-science', 'data-visualization', 'deep-learning', 'data-analysis', 'gradio', 'gradio-interface', 'python-notebook', 'deploy']",HTML,http://www.gradio.app,gradio: Create UIs for your machine learning model in Python in 3 minutes,gradio-app,2022-12-07,2022-12-04,2018-12-19,207,53.44927536231884 -320,gui,https://github.com/pysimplegui/pysimplegui,1.0,,,pysimplegui/pysimplegui,PySimpleGUI,10910,1623,219,"['pysimplegui', 'gui-framework', 'python', 'tkinter', 'tkinter-python', 'tkinter-gui', 'wxpython', 'pyside2', 'qt', 'qt-gui', 'remi', 'gui', 'gui-window', 'gui-programming', 'datavisualization', 'games', 'beginner-friendly', 'systemtray', 'python-gui', 'user-interface']",Python,,"PySimpleGUI: Launched in 2018. It's 2022 and PySimpleGUI is actively developed & supported. Create complex windows simply. Supports tkinter, Qt, WxPython, Remi (in browser). Create GUI applications trivially with a full set of widgets. Multi-Window applications are also simple. 3.4 to 3.11 supported. 325+ Demo programs & Cookbook for rapid start. Extensive documentation. Examples for Machine Learning(OpenCV Integration, Chatterbot), Rainmeter-like Desktop Widgets, Matplotlib + Pyplot integration, add GUI to command line scripts, PDF & Image Viewer. For both beginning and advanced programmers. docs - PySimpleGUI.org GitHub - PySimpleGUI.com. The Minecraft of GUIs - simple to complex... does them all.",pysimplegui,2022-12-07,2022-12-04,2018-07-11,230,47.43478260869565 -190,ml-dl,https://github.com/dmlc/dgl,,,,dmlc/dgl,dgl,10816,2633,175,"['deep-learning', 'graph-neural-networks']",Python,http://dgl.ai,"dgl: Python package built to ease deep learning on graph, on top of existing DL frameworks.",dmlc,2022-12-07,2022-12-07,2018-04-20,241,44.74704491725768 -1,data,https://github.com/apache/arrow,,,,apache/arrow,arrow,10747,2638,345,['arrow'],C++,https://arrow.apache.org/,arrow: Apache Arrow is a multi-language toolbox for accelerated data interchange and in-memory processing,apache,2022-12-06,2022-12-07,2016-02-17,355,30.27323943661972 -122,data,https://github.com/iterative/dvc,,,,iterative/dvc,dvc,10746,1006,136,"['data-science', 'machine-learning', 'reproducibility', 'data-version-control', 'git', 'developer-tools', 'collaboration', 'ai', 'python', 'hacktoberfest']",Python,https://dvc.org,dvc: 🦉Data Version Control | Git for Data & Models | ML Experiments Management,iterative,2022-12-07,2022-12-07,2017-03-04,300,35.75190114068441 -120,ml-ops,https://github.com/prefecthq/prefect,,,,prefecthq/prefect,prefect,10618,1069,153,"['python', 'workflow', 'data-engineering', 'data-science', 'workflow-engine', 'prefect', 'infrastructure', 'ml-ops', 'data-ops', 'automation', 'orchestration', 'orion', 'data', 'observability', 'pipeline']",Python,https://prefect.io,prefect: The easiest way to coordinate your dataflow,prefecthq,2022-12-07,2022-12-06,2018-06-29,231,45.82367447595561 -79,ml,https://github.com/scipy/scipy,,,,scipy/scipy,scipy,10560,4498,339,"['python', 'scipy', 'algorithms', 'closember', 'scientific-computing']",Python,https://scipy.org,SciPy library main repository,scipy,2022-12-07,2022-12-07,2011-03-09,613,17.226753670473084 -218,ml,https://github.com/spotify/annoy,,,,spotify/annoy,annoy,10540,1062,325,"['c-plus-plus', 'python', 'nearest-neighbor-search', 'locality-sensitive-hashing', 'approximate-nearest-neighbor-search', 'golang', 'lua']",C++,,annoy: Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk,spotify,2022-12-07,2022-10-27,2013-04-01,505,20.85948543963811 -11,perf,https://github.com/dask/dask,,,,dask/dask,dask,10538,1567,217,"['dask', 'python', 'pydata', 'numpy', 'pandas', 'scikit-learn', 'scipy']",Python,https://dask.org,dask: Parallel computing with task scheduling,dask,2022-12-07,2022-12-06,2015-01-04,413,25.48928818244644 -192,template,https://github.com/tiangolo/full-stack-fastapi-postgresql,,,,tiangolo/full-stack-fastapi-postgresql,full-stack-fastapi-postgresql,10525,1908,171,"['python', 'python3', 'json', 'json-schema', 'docker', 'postgresql', 'frontend', 'backend', 'fastapi', 'traefik', 'letsencrypt', 'swagger', 'celery', 'jwt', 'vue', 'vuex', 'cookiecutter', 'openapi', 'openapi3', 'pgadmin']",Python,,"full-stack-fastapi-postgresql: Full stack, modern web application generator. Using FastAPI, PostgreSQL as database, Docker, automatic HTTPS and more.",tiangolo,2022-12-07,2020-06-05,2019-02-23,197,53.271872740419376 -857,viz,https://github.com/visgl/deck.gl,,,,visgl/deck.gl,deck.gl,10454,1876,1730,"['webgl', 'data-visualization', 'javascript', 'visualization', 'python', 'geospatial-analysis', 'maps']",JavaScript,https://deck.gl,deck.gl: WebGL2 powered visualization framework,visgl,2022-12-07,2022-12-06,2015-12-15,364,28.708513142408787 -72,util,https://github.com/python-pillow/pillow,,,,python-pillow/pillow,Pillow,10351,1951,218,"['c', 'cross-platform', 'pil', 'pillow', 'python', 'python-3', 'image-processing', 'image']",Python,https://python-pillow.org,Pillow: The friendly PIL fork (Python Imaging Library),python-pillow,2022-12-07,2022-12-06,2012-07-24,541,19.12803590285111 -110,ml-interpretability,https://github.com/marcotcr/lime,,,,marcotcr/lime,lime,10276,1685,272,[],JavaScript,,Lime: Explaining the predictions of any machine learning classifier,marcotcr,2022-12-07,2021-07-29,2016-03-15,351,29.264442636289665 -427,ml-dl,https://github.com/facebookresearch/detr,,,,facebookresearch/detr,detr,10186,1844,145,[],Python,,detr: End-to-End Object Detection with Transformers,facebookresearch,2022-12-07,2022-03-07,2020-05-26,132,77.08324324324325 -50,viz,https://github.com/mwaskom/seaborn,,,,mwaskom/seaborn,seaborn,10146,1677,252,"['python', 'data-visualization', 'data-science', 'matplotlib', 'pandas']",Python,https://seaborn.pydata.org,seaborn: Statistical data visualization in Python,mwaskom,2022-12-07,2022-12-06,2012-06-18,546,18.572698744769873 -166,sim,https://github.com/bulletphysics/bullet3,,,,bulletphysics/bullet3,bullet3,10020,2617,406,"['simulation', 'robotics', 'kinematics', 'virtual-reality', 'reinforcement-learning', 'computer-animation', 'game-development', 'simulator', 'pybullet']",C++,http://bulletphysics.org,"bullet3: Bullet Physics SDK: real-time collision detection and multi-physics simulation for VR, games, visual effects, robotics, machine learning etc.",bulletphysics,2022-12-07,2022-09-25,2011-04-12,608,16.476391825229033 -24,ml,https://github.com/google/dopamine,,,,google/dopamine,dopamine,9944,1336,441,"['rl', 'ml', 'ai', 'google', 'tensorflow']",Jupyter Notebook,https://github.com/google/dopamine,Dopamine is a research framework for fast prototyping of reinforcement learning algorithms. ,google,2022-12-07,2022-11-28,2018-07-26,227,43.641379310344824 -173,term,https://github.com/tiangolo/typer,1.0,,,tiangolo/typer,typer,9902,396,66,"['cli', 'click', 'python3', 'typehints', 'terminal', 'shell', 'python', 'typer']",Python,https://typer.tiangolo.com/,"Typer, build great CLIs. Easy to code. Based on Python type hints.",tiangolo,2022-12-07,2022-11-14,2019-12-24,154,64.23911028730306 -60,pandas,https://github.com/pandas-profiling/pandas-profiling,1.0,,,pandas-profiling/pandas-profiling,pandas-profiling,9891,1410,152,"['pandas-profiling', 'pandas-dataframe', 'statistics', 'jupyter-notebook', 'exploration', 'data-science', 'python', 'pandas', 'machine-learning', 'deep-learning', 'exploratory-data-analysis', 'eda', 'data-quality', 'html-report', 'data-exploration', 'data-analysis', 'jupyter', 'big-data-analytics', 'data-profiling', 'hacktoberfest']",Python,https://pandas-profiling.ydata.ai,pandas-profiling: Create HTML profiling reports from pandas DataFrame objects,pandas-profiling,2022-12-07,2022-11-29,2016-01-09,360,27.43145800316957 -87,math,https://github.com/sympy/sympy,1.0,,,sympy/sympy,sympy,9861,3781,281,"['python', 'math', 'computer-algebra', 'science', 'hacktoberfest']",Python,https://sympy.org/,sympy: A computer algebra system written in pure Python,sympy,2022-12-06,2022-12-04,2010-04-30,657,14.99283231972198 -645,util,https://github.com/pyinstaller/pyinstaller,,,,pyinstaller/pyinstaller,pyinstaller,9805,1846,233,"['python', 'python-3', 'bundle', 'package', 'pyinstaller', 'python-to-exe', 'py2exe', 'py2app']",Python,http://www.pyinstaller.org,pyinstaller: Freeze (package) Python programs into stand-alone executables,pyinstaller,2022-12-06,2022-12-05,2011-11-23,576,17.022569444444443 -805,web,https://github.com/encode/httpx,,,,encode/httpx,httpx,9742,636,105,"['python', 'http', 'trio', 'asyncio']",Python,https://www.python-httpx.org/,httpx: A next generation HTTP client for Python. 🦋,encode,2022-12-07,2022-12-06,2019-04-04,191,50.77736411020104 -536,profiling,https://github.com/bloomberg/memray,1.0,,,bloomberg/memray,memray,9649,263,53,"['memory', 'memory-leak', 'memory-leak-detection', 'memory-profiler', 'profiler', 'python', 'python3', 'hacktoberfest']",Python,https://bloomberg.github.io/memray/,Memray is a memory profiler for Python,bloomberg,2022-12-07,2022-12-06,2022-04-08,34,277.95473251028807 -22,nlp,https://github.com/facebookresearch/parlai,,,,facebookresearch/parlai,ParlAI,9643,1970,289,[],Python,https://parl.ai,ParlAI: A framework for training and evaluating AI models on a variety of openly available dialogue datasets.,facebookresearch,2022-12-07,2022-12-06,2017-04-24,293,32.879201169020945 -38,jupyter,https://github.com/jupyter/notebook,,,,jupyter/notebook,notebook,9602,3982,319,"['closember', 'jupyter', 'jupyter-notebook', 'notebook']",Jupyter Notebook,https://jupyter-notebook.readthedocs.io/,notebook: Jupyter Interactive Notebook,jupyter,2022-12-07,2022-12-06,2015-04-09,399,24.01357627724187 -718,perf,https://github.com/pola-rs/polars,1.0,,,pola-rs/polars,polars,9575,532,98,"['dataframe-library', 'dataframe', 'dataframes', 'rust', 'arrow', 'python', 'out-of-core']",Rust,https://pola.rs/,"polars: Fast multi-threaded, hybrid-streaming DataFrame library in Rust | Python | Node.js",pola-rs,2022-12-07,2022-12-07,2020-05-13,134,71.45522388059702 -71,testing,https://github.com/pytest-dev/pytest,,,,pytest-dev/pytest,pytest,9564,2210,194,"['unit-testing', 'test', 'testing', 'python', 'hacktoberfest']",Python,https://pytest.org,"pytest: The pytest framework makes it easy to write small tests, yet scales to support complex functional testing",pytest-dev,2022-12-07,2022-12-06,2015-06-15,390,24.505124450951683 -653,profiling,https://github.com/benfred/py-spy,,,,benfred/py-spy,py-spy,9415,341,107,"['profiler', 'python', 'performance-analysis', 'profiling']",Rust,,py-spy: Sampling profiler for Python programs,benfred,2022-12-07,2022-12-05,2018-08-01,227,41.47577092511013 -225,util,https://github.com/pyodide/pyodide,,,,pyodide/pyodide,pyodide,9376,613,124,"['python', 'webassembly']",Python,https://pyodide.org/en/stable/,Pyodide is a Python distribution for the browser and Node.js based on WebAssembly,pyodide,2022-12-07,2022-12-06,2018-02-23,249,37.546910755148744 -412,util,https://github.com/pre-commit/pre-commit,,,,pre-commit/pre-commit,pre-commit,9296,686,82,"['git', 'pre-commit', 'python', 'linter', 'refactoring']",Python,https://pre-commit.com,pre-commit: A framework for managing and maintaining multi-language pre-commit hooks.,pre-commit,2022-12-07,2022-11-29,2014-03-13,455,20.392353494202446 -155,data,https://github.com/s0md3v/photon,,,,s0md3v/photon,Photon,9197,1358,324,"['crawler', 'spider', 'python', 'osint', 'information-gathering']",Python,,Photon: Incredibly fast crawler designed for OSINT.,s0md3v,2022-12-07,2022-03-16,2018-03-30,244,37.5826036193812 -315,gui,https://github.com/hoffstadt/dearpygui,,,,hoffstadt/dearpygui,DearPyGui,9195,487,135,"['cpp', 'python', 'imgui', 'toolkit', 'native', 'tools', 'gui', 'graphics', 'macos', 'linux', 'ui', 'python-gui', 'cross-platform', 'windows', 'dearpygui']",C++,https://dearpygui.readthedocs.io/en/latest/,DearPyGui: Dear PyGui: A fast and powerful Graphical User Interface Toolkit for Python with minimal dependencies,hoffstadt,2022-12-06,2022-12-01,2020-05-28,131,69.73456121343445 -655,util,https://github.com/magicstack/uvloop,,,,magicstack/uvloop,uvloop,9053,522,225,"['asyncio', 'async-await', 'async', 'high-performance', 'libuv', 'python', 'python-3', 'event-loop', 'networking', 'async-python']",Cython,,uvloop: Ultra fast asyncio event loop.,magicstack,2022-12-06,2022-09-14,2015-11-08,369,24.50541376643465 -238,data,https://github.com/tiangolo/sqlmodel,1.0,,,tiangolo/sqlmodel,sqlmodel,9026,385,114,"['python', 'sql', 'sqlalchemy', 'pydantic', 'fastapi', 'json', 'json-schema']",Python,https://sqlmodel.tiangolo.com/,"sqlmodel: SQL databases in Python, designed for simplicity, compatibility, and robustness.",tiangolo,2022-12-07,2022-11-12,2021-08-24,67,134.42978723404255 -398,web,https://github.com/falconry/falcon,,,,falconry/falcon,falcon,8965,897,266,"['python', 'framework', 'rest', 'microservices', 'web', 'api', 'http', 'wsgi', 'asgi', 'api-rest', 'hacktoberfest-accepted', 'hacktoberfest2022', 'hacktoberfest']",Python,https://falcon.readthedocs.io/en/stable/,"falcon: The no-magic web data plane API and microservices framework for Python developers, with a focus on reliability, correctness, and performance at scale.",falconry,2022-12-07,2022-12-02,2012-12-06,521,17.179030933479332 -142,nlp,https://github.com/ukplab/sentence-transformers,,,,ukplab/sentence-transformers,sentence-transformers,8954,1784,117,[],Python,https://www.SBERT.net,sentence-transformers: Multilingual Sentence & Image Embeddings with BERT,ukplab,2022-12-07,2022-11-28,2019-07-24,176,50.875 -157,util,https://github.com/pallets/jinja,,,,pallets/jinja,jinja,8921,1525,254,"['python', 'template-engine', 'jinja', 'jinja2', 'templates', 'pallets']",Python,https://jinja.palletsprojects.com,jinja: A very fast and expressive template engine.,pallets,2022-12-07,2022-11-01,2010-10-17,633,14.083671628326567 -371,viz,https://github.com/marceloprates/prettymaps,,,,marceloprates/prettymaps,prettymaps,8917,430,78,"['matplotlib', 'jupyter-notebook', 'python', 'generative-art', 'cartography', 'maps', 'openstreetmap']",Jupyter Notebook,,"prettymaps: A small set of Python functions to draw pretty maps from OpenStreetMap data. Based on osmnx, matplotlib and shapely libraries.",marceloprates,2022-12-07,2022-11-16,2021-03-05,91,97.22585669781931 -517,typing,https://github.com/microsoft/pyright,,,,microsoft/pyright,pyright,8852,612,77,[],Python,,pyright: Static type checker for Python,microsoft,2022-12-07,2022-12-07,2019-03-12,195,45.36163982430454 -244,util,https://github.com/aws/serverless-application-model,,,,aws/serverless-application-model,serverless-application-model,8842,2270,310,"['serverless', 'aws', 'lambda', 'aws-sam', 'sam', 'sam-specification', 'serverless-applications', 'serverless-application-model']",Python,https://aws.amazon.com/serverless/sam,serverless-application-model: The AWS Serverless Application Model (AWS SAM) transform is a AWS CloudFormation macro that transforms SAM templates into CloudFormation templates.,aws,2022-12-06,2022-12-06,2016-10-10,321,27.52067585593597 -132,ml,https://github.com/epistasislab/tpot,,,,epistasislab/tpot,tpot,8829,1503,292,"['machine-learning', 'python', 'data-science', 'automl', 'automation', 'scikit-learn', 'hyperparameter-optimization', 'model-selection', 'parameter-tuning', 'automated-machine-learning', 'random-forest', 'gradient-boosting', 'feature-engineering', 'aiml', 'alzheimer', 'alzheimers', 'nia', 'u01ag066833', 'ag066833', 'adsp']",Python,http://epistasislab.github.io/tpot/,tpot: A Python Automated Machine Learning tool that optimizes machine learning pipelines using genetic programming.,epistasislab,2022-12-07,2022-07-29,2015-11-03,370,23.852952527981476 -134,ml-dl,https://github.com/keras-team/autokeras,,,,keras-team/autokeras,autokeras,8668,1385,305,"['automl', 'neural-architecture-search', 'automated-machine-learning', 'python', 'deep-learning', 'machine-learning', 'autodl', 'tensorflow', 'keras']",Python,http://autokeras.com/,autokeras: AutoML library for deep learning,keras-team,2022-12-05,2022-12-04,2017-11-19,263,32.904555314533624 -5,web,https://github.com/benoitc/gunicorn,,,,benoitc/gunicorn,gunicorn,8665,1616,235,"['http-server', 'http', 'python', 'wsgi-server', 'wsgi']",Python,http://www.gunicorn.org,"gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications.",benoitc,2022-12-07,2022-12-03,2009-11-30,679,12.756046267087276 -92,ml-ops,https://github.com/uber/ludwig,,,,uber/ludwig,ludwig,8645,1020,181,"['deep-learning', 'deeplearning', 'deep', 'learning', 'machine-learning', 'machinelearning', 'machine', 'natural-language-processing', 'natural-language', 'computer-vision', 'data-centric', 'data-science', 'python', 'pytorch', 'neural-network', 'ml', 'datascience']",Python,http://ludwig.ai,ludwig: Data-centric declarative deep learning framework,uber,2022-12-05,2022-12-06,2018-12-27,205,41.995142262317835 -523,ml-dl,https://github.com/lucidrains/dalle2-pytorch,,,,lucidrains/dalle2-pytorch,DALLE2-pytorch,8421,685,112,"['artificial-intelligence', 'deep-learning', 'text-to-image']",Python,,"DALLE2-pytorch: Implementation of DALL-E 2, OpenAI's updated text-to-image synthesis neural network, in Pytorch",lucidrains,2022-12-07,2022-11-23,2022-04-07,34,241.5860655737705 -151,nlp,https://github.com/sloria/textblob,,,,sloria/textblob,TextBlob,8377,1097,270,"['nlp', 'nltk', 'pattern', 'python', 'python-3', 'python-2', 'natural-language-processing']",Python,https://textblob.readthedocs.io/,"TextBlob: Simple, Pythonic, text processing--Sentiment analysis, part-of-speech tagging, noun phrase extraction, translation, and more.",sloria,2022-12-07,2021-10-22,2013-06-30,492,17.01160429358863 -780,diffusion,https://github.com/huggingface/diffusers,,,,huggingface/diffusers,diffusers,8376,1378,92,"['deep-learning', 'diffusion', 'image-generation', 'pytorch', 'score-based-generative-modeling', 'image2image', 'text2image', 'stable-diffusion', 'hacktoberfest']",Python,https://huggingface.co/docs/diffusers,🤗 Diffusers: State-of-the-art diffusion models for image and audio generation in PyTorch,huggingface,2022-12-07,2022-12-07,2022-05-30,27,306.9738219895288 -100,nlp,https://github.com/clips/pattern,,,,clips/pattern,pattern,8358,1593,548,"['python', 'machine-learning', 'natural-language-processing', 'web-mining', 'wordnet', 'sentiment-analysis', 'network-analysis']",Python,https://github.com/clips/pattern/wiki,"pattern: Web mining module for Python, with tools for scraping, natural language processing, machine learning, network analysis and visualization.",clips,2022-12-07,2020-04-25,2011-05-03,605,13.811614730878187 -126,ml-dl,https://github.com/microsoft/deepspeed,,,,microsoft/deepspeed,DeepSpeed,8276,968,142,"['deep-learning', 'pytorch', 'gpu', 'machine-learning', 'billion-parameters', 'data-parallelism', 'model-parallelism', 'inference', 'pipeline-parallelism', 'compression', 'mixture-of-experts', 'trillion-parameters', 'zero']",Python,https://www.deepspeed.ai/,"DeepSpeed is a deep learning optimization library that makes distributed training and inference easy, efficient, and effective.",microsoft,2022-12-07,2022-12-06,2020-01-23,149,55.22592945662536 -282,util,https://github.com/arrow-py/arrow,,,,arrow-py/arrow,arrow,8149,634,134,"['python', 'arrow', 'datetime', 'date', 'time', 'timestamp', 'timezones', 'hacktoberfest']",Python,https://arrow.readthedocs.io,arrow: 🏹 Better dates & times for Python,arrow-py,2022-12-07,2022-11-15,2012-11-18,524,15.538817760828112 -125,perf,https://github.com/modin-project/modin,,,,modin-project/modin,modin,8115,582,109,"['dataframe', 'pandas', 'distributed', 'datascience', 'modin', 'sql', 'python', 'analytics', 'data-science', 'hacktoberfest']",Python,http://modin.readthedocs.io,Modin: Scale your Pandas workflows by changing a single line of code,modin-project,2022-12-07,2022-12-06,2018-06-21,232,34.84969325153374 -53,perf,https://github.com/numba/numba,,,,numba/numba,numba,8047,982,207,"['python', 'numpy', 'llvm', 'compiler', 'cuda', 'parallel']",Python,http://numba.pydata.org/,numba: NumPy aware dynamic Python compiler using LLVM,numba,2022-12-06,2022-12-06,2012-03-08,560,14.347682119205299 -294,util,https://github.com/paramiko/paramiko,,,,paramiko/paramiko,paramiko,8018,1885,320,[],Python,http://paramiko.org,paramiko: The leading native Python SSHv2 protocol library.,paramiko,2022-12-07,2022-11-04,2009-02-02,722,11.100870253164556 -84,ml,https://github.com/statsmodels/statsmodels,,,,statsmodels/statsmodels,statsmodels,7967,2619,271,"['python', 'statistics', 'econometrics', 'data-analysis', 'generalized-linear-models', 'timeseries-analysis', 'regression-models', 'count-model', 'data-science', 'forecasting', 'hypothesis-testing', 'prediction', 'robust-estimation']",Python,http://www.statsmodels.org/devel/,Statsmodels: statistical modeling and econometrics in Python,statsmodels,2022-12-06,2022-12-06,2011-06-12,599,13.290991420400381 -128,viz,https://github.com/altair-viz/altair,,,,altair-viz/altair,altair,7913,708,150,[],Python,https://altair-viz.github.io/,altair: Declarative statistical visualization library for Python,altair-viz,2022-12-07,2022-12-01,2015-09-19,376,21.01327769347496 -116,ml-ops,https://github.com/kedro-org/kedro,,From: https://github.com/quantumblacklabs/kedro,,kedro-org/kedro,kedro,7871,739,103,"['pipeline', 'kedro', 'hacktoberfest', 'mlops', 'experiment-tracking', 'python', 'machine-learning']",Python,https://kedro.org,"kedro: A Python framework for creating reproducible, maintainable and modular data science code.",kedro-org,2022-12-07,2022-12-06,2019-04-18,189,41.457486832204665 -706,sim,https://github.com/isl-org/open3d,,,,isl-org/open3d,Open3D,7773,1830,171,"['mesh-processing', 'computer-graphics', 'opengl', 'cpp', 'python', 'reconstruction', 'odometry', 'visualization', 'registration', 'machine-learning', '3d', 'pointcloud', 'rendering', 'gui', '3d-perception', 'gpu', 'arm', 'cuda', 'pytorch', 'tensorflow']",C++,http://www.open3d.org,Open3D: A Modern Library for 3D Data Processing,isl-org,2022-12-07,2022-12-02,2016-12-02,313,24.777322404371585 -7,util,https://github.com/boto/boto3,,,,boto/boto3,boto3,7751,1685,238,"['python', 'aws', 'cloud', 'cloud-management', 'aws-sdk']",Python,https://aws.amazon.com/sdk-for-python/,boto3: AWS SDK for Python,boto,2022-12-07,2022-12-06,2014-10-03,426,18.164378975560762 -29,ml-ops,https://github.com/great-expectations/great_expectations,,,,great-expectations/great_expectations,great_expectations,7712,1144,70,"['pipeline-tests', 'dataquality', 'datacleaning', 'datacleaner', 'data-science', 'data-profiling', 'pipeline', 'pipeline-testing', 'cleandata', 'dataunittest', 'data-unit-tests', 'eda', 'exploratory-data-analysis', 'exploratory-analysis', 'exploratorydataanalysis', 'data-quality', 'data-engineering', 'pipeline-debt', 'data-profilers', 'mlops']",Python,https://docs.greatexpectations.io/,great_expectations: Always know what to expect from your data.,great-expectations,2022-12-07,2022-12-06,2017-09-11,273,28.21955044432828 -422,ml-dl,https://github.com/pyro-ppl/pyro,,,,pyro-ppl/pyro,pyro,7698,939,203,"['python', 'pytorch', 'machine-learning', 'bayesian', 'probabilistic-programming', 'bayesian-inference', 'variational-inference', 'probabilistic-modeling', 'deep-learning']",Python,http://pyro.ai,pyro: Deep universal probabilistic programming with Python and PyTorch,pyro-ppl,2022-12-06,2022-12-02,2017-06-16,285,26.943 -394,web,https://github.com/encode/starlette,,,,encode/starlette,starlette,7651,689,110,"['python', 'async', 'websockets', 'graphql', 'http']",Python,https://www.starlette.io/,starlette: The little ASGI framework that shines. 🌟,encode,2022-12-07,2022-12-05,2018-06-25,232,32.93788437884379 -367,ml,https://github.com/megvii-basedetection/yolox,,,,megvii-basedetection/yolox,YOLOX,7636,1828,72,"['yolox', 'yolov3', 'onnx', 'tensorrt', 'ncnn', 'openvino', 'pytorch', 'megengine', 'object-detection', 'yolo', 'deep-learning']",Python,,"YOLOX is a high-performance anchor-free YOLO, exceeding yolov3~v5 with MegEngine, ONNX, TensorRT, ncnn, and OpenVINO supported. Documentation: https://yolox.readthedocs.io/",megvii-basedetection,2022-12-07,2022-11-30,2021-07-17,72,105.22047244094489 -615,testing,https://github.com/robotframework/robotframework,,,,robotframework/robotframework,robotframework,7608,2047,483,"['robotframework', 'testing', 'automation', 'testautomation', 'attd', 'bdd', 'rpa', 'python']",Python,http://robotframework.org,robotframework: Generic automation framework for acceptance testing and RPA,robotframework,2022-12-07,2022-11-20,2014-06-27,440,17.26288492706645 -815,ml-dl,https://github.com/danielgatis/rembg,,,,danielgatis/rembg,rembg,7549,955,99,"['image-processing', 'background-removal', 'python']",Python,,Rembg is a tool to remove images background.,danielgatis,2022-12-07,2022-11-28,2020-08-10,121,62.2414605418139 -495,data,https://github.com/duckdb/duckdb,1.0,,,duckdb/duckdb,duckdb,7538,716,114,"['sql', 'database', 'olap', 'analytics', 'embedded-database']",C++,http://www.duckdb.org,DuckDB is an in-process SQL OLAP Database Management System,duckdb,2022-12-07,2022-12-07,2018-06-26,232,32.471384615384615 -10,util,https://github.com/cython/cython,,,,cython/cython,cython,7498,1343,230,"['python', 'cython', 'cpython', 'cpython-extensions', 'c', 'cpp', 'performance', 'big-data']",Python,https://cython.org,cython: The most widely used Python to C compiler,cython,2022-12-07,2022-12-07,2010-11-21,628,11.93134803364401 -322,web,https://github.com/graphql-python/graphene,,,,graphql-python/graphene,graphene,7484,803,146,"['graphql', 'python', 'relay', 'framework', 'graphene']",Python,http://graphene-python.org/,graphene: GraphQL framework for Python,graphql-python,2022-12-06,2022-12-01,2015-09-24,375,19.911820600532117 -440,ml-dl,https://github.com/kornia/kornia,,,,kornia/kornia,kornia,7480,750,118,"['computer-vision', 'image-processing', 'machine-learning', 'pytorch', 'deep-learning', 'neural-network', 'python', 'artificial-intelligence']",Python,https://kornia.github.io/kornia/,kornia: Open Source Differentiable Computer Vision Library,kornia,2022-12-07,2022-12-07,2018-08-22,224,33.392857142857146 -759,diffusion,https://github.com/invoke-ai/invokeai,,,,invoke-ai/invokeai,InvokeAI,7444,843,82,"['ai-art', 'artificial-intelligence', 'generative-art', 'image-generation', 'img2img', 'inpainting', 'latent-diffusion', 'linux', 'macos', 'outpainting', 'txt2img', 'windows', 'stable-diffusion']",Jupyter Notebook,https://invoke-ai.github.io/InvokeAI/,"InvokeAI: This version of Stable Diffusion features a slick WebGUI, an interactive command-line script that combines text2img and img2img functionality in a ""dream bot"" style interface, and multiple features and other enhancements. For more info, see the website link below.",invoke-ai,2022-12-07,2022-12-06,2022-08-17,16,465.25 -95,perf,https://github.com/vaexio/vaex,,,,vaexio/vaex,vaex,7435,573,141,"['dataframe', 'python', 'bigdata', 'tabular-data', 'visualization', 'memory-mapped-file', 'hdf5', 'machine-learning', 'machinelearning', 'data-science', 'pyarrow']",Python,https://vaex.io,"vaex: Out-of-Core hybrid Apache Arrow/NumPy DataFrame for Python, ML, visualization and exploration of big tabular data at a billion rows per second 🚀",vaexio,2022-12-07,2022-12-05,2014-09-27,427,17.388907450718342 -470,nlp,https://github.com/microsoft/unilm,,,,microsoft/unilm,unilm,7384,1354,177,"['nlp', 'language-understanding', 'language-generation', 'pre-trained-model', 'small-pre-trained-model', 'unilm', 'minilm', 'layoutlm', 'infoxlm', 'multimodal-pre-trained-model', 'layoutxlm', 'beit', 'document-ai', 'trocr', 'wavlm', 'beit-3', 'foundation-models', 'xlm-e', 'deepnet', 'document-foundation-model']",Python,https://aka.ms/nlpagi,"unilm: Large-scale Self-supervised Pre-training Across Tasks, Languages, and Modalities",microsoft,2022-12-07,2022-11-28,2019-07-23,176,41.92051905920519 -547,ml,https://github.com/optuna/optuna,,,,optuna/optuna,optuna,7264,784,122,"['python', 'machine-learning', 'parallel', 'distributed', 'hyperparameter-optimization', 'hacktoberfest']",Python,https://optuna.org,optuna: A hyperparameter optimization framework,optuna,2022-12-06,2022-12-07,2018-02-21,250,29.056 -28,ml-dl,https://github.com/google/trax,,,,google/trax,trax,7203,751,145,"['jax', 'numpy', 'deep-learning', 'deep-reinforcement-learning', 'machine-learning', 'transformer', 'reinforcement-learning']",Python,,Trax — Deep Learning with Clear Code and Speed,google,2022-12-07,2022-11-09,2019-10-05,165,43.50388265746333 -70,ml,https://github.com/pymc-devs/pymc3,,,,pymc-devs/pymc3,pymc,7175,1705,224,"['python', 'statistical-analysis', 'bayesian-inference', 'mcmc', 'variational-inference', 'probabilistic-programming', 'aesara', 'hacktoberfest', 'pytensor']",Python,https://docs.pymc.io/,pymc: Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with PyTensor,pymc-devs,2022-12-06,2022-12-06,2009-05-05,709,10.11784850926672 -455,ml-dl,https://github.com/tensorlayer/tensorlayer,,,,tensorlayer/tensorlayer,TensorLayer,7119,1609,462,"['tensorlayer', 'deep-learning', 'tensorflow', 'neural-network', 'reinforcement-learning', 'artificial-intelligence', 'gan', 'a3c', 'tensorflow-tutorials', 'dqn', 'object-detection', 'chatbot', 'python', 'tensorflow-tutorial', 'imagenet', 'google']",Python,http://tensorlayer.org,TensorLayer: Deep Learning and Reinforcement Learning Library for Scientists and Engineers ,tensorlayer,2022-12-07,2022-04-23,2016-06-07,339,20.991154170176916 -165,nlp,https://github.com/doccano/doccano,,,,doccano/doccano,doccano,7013,1445,121,"['natural-language-processing', 'machine-learning', 'annotation-tool', 'python', 'datasets', 'dataset', 'data-labeling', 'text-annotation', 'nuxtjs', 'vue', 'vuejs', 'nuxt']",Python,https://doccano.herokuapp.com,doccano: Open source annotation tool for machine learning practitioners.,doccano,2022-12-07,2022-12-06,2018-05-09,239,29.343096234309623 -846,time-series,https://github.com/blue-yonder/tsfresh,,,,blue-yonder/tsfresh,tsfresh,6919,1086,159,"['data-science', 'feature-extraction', 'time-series']",Jupyter Notebook,http://tsfresh.readthedocs.io,tsfresh: Automatic extraction of relevant features from time series:,blue-yonder,2022-12-07,2022-11-18,2016-10-26,319,21.689655172413794 -868,ml-dl,https://github.com/hpcaitech/colossalai,,,,hpcaitech/colossalai,ColossalAI,6901,649,88,"['deep-learning', 'hpc', 'large-scale', 'data-parallelism', 'pipeline-parallelism', 'model-parallelism', 'ai', 'big-model', 'distributed-computing', 'inference', 'heterogeneous-training']",Python,https://www.colossalai.org/,ColossalAI: Colossal-AI: A Unified Deep Learning System for Big Model Era,hpcaitech,2022-12-07,2022-12-07,2021-10-28,57,119.27654320987655 -150,ml,https://github.com/catboost/catboost,,,,catboost/catboost,catboost,6830,1067,194,"['machine-learning', 'decision-trees', 'gradient-boosting', 'gbm', 'gbdt', 'python', 'r', 'kaggle', 'gpu-computing', 'catboost', 'tutorial', 'categorical-features', 'gpu', 'coreml', 'data-science', 'big-data', 'cuda', 'data-mining']",C,https://catboost.ai,"catboost: A fast, scalable, high performance Gradient Boosting on Decision Trees library, used for ranking, classification, regression and other machine learning tasks for Python, R, Java, C++. Supports computation on CPU and GPU.",catboost,2022-12-07,2022-12-07,2017-07-18,281,24.29369918699187 -758,diffusion,https://github.com/divamgupta/diffusionbee-stable-diffusion-ui,,,,divamgupta/diffusionbee-stable-diffusion-ui,diffusionbee-stable-diffusion-ui,6794,263,67,"['electron-app', 'macos', 'stable-diffusion']",JavaScript,https://diffusionbee.com,diffusionbee-stable-diffusion-ui: Diffusion Bee is the easiest way to run Stable Diffusion locally on your M1 Mac. Comes with a one-click installer. No dependencies or technical knowledge needed.,divamgupta,2022-12-07,2022-11-23,2022-09-06,13,516.9347826086956 -171,ml-dl,https://github.com/facebookresearch/pytorch3d,,,,facebookresearch/pytorch3d,pytorch3d,6781,1026,140,[],Python,https://pytorch3d.org/,PyTorch3D is FAIR's library of reusable components for deep learning with 3D data,facebookresearch,2022-12-07,2022-12-05,2019-10-25,162,41.674275680421424 -650,profiling,https://github.com/plasma-umass/scalene,1.0,,,plasma-umass/scalene,scalene,6772,232,67,"['python', 'profiling', 'performance-analysis', 'cpu-profiling', 'profiler', 'python-profilers', 'gpu-programming', 'scalene', 'profiles-memory', 'performance-cpu', 'cpu', 'memory-allocation', 'gpu', 'memory-consumption']",JavaScript,,"Scalene: a high-performance, high-precision CPU, GPU, and memory profiler for Python",plasma-umass,2022-12-07,2022-12-07,2019-12-17,155,43.65009208103131 -286,data,https://github.com/simonw/datasette,1.0,,,simonw/datasette,datasette,6729,470,99,"['sqlite', 'python', 'datasets', 'json', 'docker', 'datasette', 'automatic-api', 'asgi', 'csv', 'datasette-io', 'sql']",Python,https://datasette.io,datasette: An open source multi-tool for exploring and publishing data,simonw,2022-12-06,2022-12-03,2017-10-23,267,25.175307322287548 -131,ml,https://github.com/automl/auto-sklearn,,,,automl/auto-sklearn,auto-sklearn,6650,1208,213,"['automl', 'scikit-learn', 'automated-machine-learning', 'hyperparameter-optimization', 'hyperparameter-tuning', 'hyperparameter-search', 'bayesian-optimization', 'metalearning', 'meta-learning', 'smac']",Python,https://automl.github.io/auto-sklearn,auto-sklearn: Automated Machine Learning with scikit-learn,automl,2022-12-07,2022-12-07,2015-07-02,387,17.14548802946593 -824,study,https://github.com/firmai/industry-machine-learning,,,,firmai/industry-machine-learning,industry-machine-learning,6646,1120,392,"['machine-learning', 'jupyter-notebook', 'datascience', 'example', 'python', 'practical-machine-learning', 'data-science', 'firmai']",Jupyter Notebook,https://www.linkedin.com/company/firmai,industry-machine-learning: A curated list of applied machine learning and data science notebooks and libraries across different industries (by @firmai),firmai,2022-12-07,2021-12-18,2019-05-03,187,35.404870624048705 -65,ml,https://github.com/pycaret/pycaret,,,,pycaret/pycaret,pycaret,6625,1514,124,"['data-science', 'citizen-data-scientists', 'python', 'machine-learning', 'pycaret', 'ml', 'gpu', 'time-series', 'regression', 'classification', 'anomaly-detection', 'nlp', 'clustering']",Jupyter Notebook,https://www.pycaret.org,"pycaret: An open-source, low-code machine learning library in Python",pycaret,2022-12-07,2022-12-06,2019-11-23,158,41.77927927927928 -197,nlp,https://github.com/eleutherai/gpt-neo,,,,eleutherai/gpt-neo,gpt-neo,6582,579,159,"['language-model', 'transformers', 'gpt', 'gpt-2', 'gpt-3']",Python,https://www.eleuther.ai,gpt-neo: An implementation of model parallel GPT-2 and GPT-3-style models using the mesh-tensorflow library.,eleutherai,2022-12-07,2022-02-25,2020-07-05,126,52.061016949152545 -532,util,https://github.com/facebookresearch/hydra,,,,facebookresearch/hydra,hydra,6572,524,81,[],Python,https://hydra.cc,Hydra is a framework for elegantly configuring complex applications,facebookresearch,2022-12-07,2022-12-06,2019-06-12,182,36.10989010989011 -67,web,https://github.com/pyeve/eve,,,,pyeve/eve,eve,6563,752,228,"['python', 'rest', 'flask', 'mongodb']",Python,https://python-eve.org,eve: REST API framework designed for human beings,pyeve,2022-12-04,2022-11-10,2012-10-22,528,12.423201730665225 -389,data,https://github.com/yzhao062/pyod,,,,yzhao062/pyod,pyod,6529,1214,150,"['outlier-detection', 'anomaly-detection', 'outlier-ensembles', 'outliers', 'anomaly', 'python', 'machine-learning', 'data-mining', 'unsupervised-learning', 'python2', 'python3', 'fraud-detection', 'autoencoder', 'neural-networks', 'deep-learning', 'data-science', 'data-analysis', 'novelty-detection', 'out-of-distribution-detection']",Python,http://pyod.readthedocs.io,pyod: A Comprehensive and Scalable Python Library for Outlier Detection (Anomaly Detection),yzhao062,2022-12-07,2022-10-24,2017-10-03,270,24.16869381279746 -133,ml,https://github.com/hyperopt/hyperopt,,,,hyperopt/hyperopt,hyperopt,6496,1001,126,[],Python,http://hyperopt.github.io/hyperopt,hyperopt: Distributed Asynchronous Hyperparameter Optimization in Python,hyperopt,2022-12-07,2021-11-29,2011-09-06,587,11.06374695863747 -215,debug,https://github.com/gruns/icecream,,,,gruns/icecream,icecream,6449,134,50,"['python', 'python3', 'library', 'inspects', 'debug', 'debugging', 'debugging-tool', 'print']",Python,,icecream: 🍦 Never use print() to debug again.,gruns,2022-12-07,2022-12-04,2018-02-13,251,25.678612059158134 -716,util,https://github.com/jazzband/pip-tools,,,,jazzband/pip-tools,pip-tools,6442,551,105,"['python', 'packaging', 'pip', 'pip-tools', 'pip-compile', 'setuptools', 'requirements', 'lockfile', 'hashes']",Python,https://pip-tools.rtfd.io,pip-tools: A set of tools to keep your pinned Python dependencies fresh.,jazzband,2022-12-06,2022-12-01,2012-09-10,534,12.057219251336898 -82,data,https://github.com/sqlalchemy/sqlalchemy,,,,sqlalchemy/sqlalchemy,sqlalchemy,6408,1022,95,"['sqlalchemy', 'sql', 'python']",Python,https://www.sqlalchemy.org,sqlalchemy: The Database Toolkit for Python,sqlalchemy,2022-12-07,2022-12-06,2018-11-27,210,30.493541808293678 -141,ml,https://github.com/featurelabs/featuretools,1.0,,,featurelabs/featuretools,featuretools,6406,834,158,"['feature-engineering', 'machine-learning', 'data-science', 'automated-machine-learning', 'automl', 'python', 'scikit-learn', 'automated-feature-engineering']",Python,https://www.featuretools.com,featuretools: An open source python library for automated feature engineering,featurelabs,2022-12-07,2022-12-06,2017-09-08,273,23.403966597077243 -288,testing,https://github.com/hypothesisworks/hypothesis,1.0,,,hypothesisworks/hypothesis,hypothesis,6373,537,69,"['python', 'testing', 'fuzzing', 'property-based-testing']",Python,https://hypothesis.works,"Hypothesis is a powerful, flexible, and easy to use library for property-based testing.",hypothesisworks,2022-12-07,2022-12-04,2013-03-10,508,12.534700758640067 -153,util,https://github.com/marshmallow-code/marshmallow,,,,marshmallow-code/marshmallow,marshmallow,6348,622,82,"['serialization', 'deserialization', 'validation', 'python', 'marshalling', 'python-3', 'serde', 'schema', 'hacktoberfest']",Python,https://marshmallow.readthedocs.io/,marshmallow: A lightweight library for converting complex objects to and from simple Python datatypes.,marshmallow-code,2022-12-07,2022-12-05,2013-11-10,473,13.408569704284853 -230,template,https://github.com/drivendata/cookiecutter-data-science,1.0,,,drivendata/cookiecutter-data-science,cookiecutter-data-science,6292,2007,112,"['cookiecutter-data-science', 'cookiecutter', 'cookiecutter-template', 'data-science', 'machine-learning', 'ai']",Python,http://drivendata.github.io/cookiecutter-data-science/,"cookiecutter-data-science: A logical, reasonably standardized, but flexible project structure for doing and sharing data science work.",drivendata,2022-12-07,2022-03-11,2015-10-30,370,16.972639691714836 -602,testing,https://github.com/newsapps/beeswithmachineguns,,,,newsapps/beeswithmachineguns,beeswithmachineguns,6260,663,227,[],Python,http://apps.chicagotribune.com/,beeswithmachineguns: A utility for arming (creating) many bees (micro EC2 instances) to attack (load test) targets (web applications).,newsapps,2022-12-06,2017-12-20,2010-06-29,649,9.643485915492958 -800,web,https://github.com/pallets/werkzeug,,,,pallets/werkzeug,werkzeug,6226,1663,227,"['python', 'wsgi', 'werkzeug', 'http', 'pallets']",Python,https://werkzeug.palletsprojects.com,werkzeug: The comprehensive WSGI web application library.,pallets,2022-12-06,2022-11-01,2010-10-18,633,9.831265508684863 -356,ml-ops,https://github.com/netflix/metaflow,,,,netflix/metaflow,metaflow,6193,577,239,"['machine-learning', 'data-science', 'productivity', 'model-management', 'ai', 'ml', 'ml-platform', 'ml-infrastructure', 'python', 'r', 'rstats', 'reproducible-research', 'r-package', 'mlops', 'datascience', 'cli', 'high-performance-computing', 'kubernetes']",Python,https://metaflow.org,metaflow: :rocket: Build and manage real-life data science projects with ease!,netflix,2022-12-07,2022-12-06,2019-09-17,168,36.83177570093458 -20,typing,https://github.com/facebook/pyre-check,,,,facebook/pyre-check,pyre-check,6156,405,107,"['python', 'typechecker', 'type-check', 'static-analysis', 'ocaml', 'code-quality', 'abstract-interpretation', 'security', 'program-analysis', 'taint-analysis', 'control-flow-analysis']",OCaml,https://pyre-check.org/,pyre-check: Performant type-checking for python.,facebook,2022-12-06,2022-12-07,2017-11-10,264,23.255261737722613 -382,ml-ops,https://github.com/deepset-ai/haystack,,,,deepset-ai/haystack,haystack,6155,955,89,"['nlp', 'question-answering', 'bert', 'transfer-learning', 'language-model', 'pytorch', 'semantic-search', 'neural-search', 'squad', 'elasticsearch', 'dpr', 'information-retrieval', 'summarization', 'search-engine', 'transformers', 'natural-language-processing', 'machine-learning', 'ai', 'python']",Python,https://deepset.ai/haystack,"haystack: :mag: Haystack is an open source NLP framework that leverages pre-trained Transformer models. It enables developers to quickly implement production-ready semantic search, question answering, summarization and document ranking for a wide range of NLP applications.",deepset-ai,2022-12-07,2022-12-07,2019-11-14,159,38.50312779267203 -459,ml-ops,https://github.com/dbt-labs/dbt-core,,,,dbt-labs/dbt-core,dbt-core,6151,1084,128,"['dbt-viewpoint', 'slack', 'pypa', 'data-modeling', 'business-intelligence', 'analytics', 'elt']",Python,https://getdbt.com,dbt-core: dbt enables data analysts and engineers to transform their data using the same practices that software engineers use to build applications.,dbt-labs,2022-12-07,2022-12-07,2016-03-10,351,17.48152659358506 -556,ml-dl,https://github.com/arogozhnikov/einops,,,,arogozhnikov/einops,einops,6099,264,62,"['deep-learning', 'pytorch', 'tensorflow', 'numpy', 'gluon', 'cupy', 'chainer', 'keras', 'tensor', 'jax']",Python,https://einops.rocks,"einops: Deep learning operations reinvented (for pytorch, tensorflow, jax and others)",arogozhnikov,2022-12-07,2022-12-04,2018-09-22,219,27.77683799609629 -681,ml,https://github.com/hips/autograd,,,,hips/autograd,autograd,6097,842,215,[],Python,,autograd: Efficiently computes derivatives of numpy code.,hips,2022-12-06,2022-09-29,2014-11-24,419,14.541396933560478 -73,gis,https://github.com/python-visualization/folium,,,,python-visualization/folium,folium,6008,2154,166,"['closember', 'data-science', 'data-visualization', 'javascript', 'maps', 'python']",Python,https://python-visualization.github.io/folium/,folium: Python Data. Leaflet.js Maps. ,python-visualization,2022-12-07,2022-11-30,2013-05-09,499,12.019434124035438 -121,ml-ops,https://github.com/dagster-io/dagster,,,,dagster-io/dagster,dagster,5988,743,87,"['data-pipelines', 'dagster', 'workflow', 'data-science', 'workflow-automation', 'python', 'scheduler', 'data-orchestrator', 'etl', 'analytics', 'data-engineering', 'mlops', 'orchestration', 'data-integration', 'metadata']",Python,https://dagster.io,"dagster: An orchestration platform for the development, production, and observation of data assets.",dagster-io,2022-12-07,2022-12-06,2018-04-30,240,24.920332936979786 -879,time-series,https://github.com/sktime/sktime,1.0,,,sktime/sktime,sktime,5958,974,109,"['time-series', 'machine-learning', 'scikit-learn', 'time-series-classification', 'time-series-regression', 'forecasting', 'time-series-analysis', 'data-science', 'data-mining']",Python,https://sktime.org,sktime: A unified framework for machine learning with time series,sktime,2022-12-06,2022-12-02,2018-11-06,213,27.95308310991957 -44,ml,https://github.com/lmcinnes/umap,,,,lmcinnes/umap,umap,5939,692,125,"['umap', 'dimensionality-reduction', 'visualization', 'machine-learning', 'topological-data-analysis']",Python,,umap: Uniform Manifold Approximation and Projection,lmcinnes,2022-12-07,2022-11-11,2017-07-02,283,20.954133064516128 -410,web,https://github.com/encode/uvicorn,,,,encode/uvicorn,uvicorn,5925,524,86,"['python', 'asyncio', 'asgi', 'http', 'http-server']",Python,https://www.uvicorn.org/,"uvicorn: An ASGI web server, for Python. 🦄",encode,2022-12-07,2022-12-06,2017-05-31,288,20.572916666666668 -599,gis,https://github.com/domlysz/blendergis,,,,domlysz/blendergis,BlenderGIS,5848,1087,244,"['blender', 'addon', 'geospatial', 'gis', 'shapefile', 'delaunay-triangulation', 'raster', 'openstreetmap', 'python', 'dem', '3dgis', 'map', 'geodata', 'georeferencing', 'importexport', '3d', 'terrain-model', 'basemap', '3d-map']",Python,,BlenderGIS: Blender addons to make the bridge between Blender and geographic data,domlysz,2022-12-06,2022-05-31,2014-05-08,447,13.057735247208932 -537,nlp,https://github.com/espnet/espnet,,,,espnet/espnet,espnet,5797,1779,183,"['deep-learning', 'end-to-end', 'chainer', 'pytorch', 'kaldi', 'speech-recognition', 'speech-synthesis', 'speech-translation', 'machine-translation', 'voice-conversion', 'speech-enhancement', 'speech-separation', 'singing-voice-synthesis', 'speaker-diarization', 'spoken-language-understanding']",Python,https://espnet.github.io/espnet/,espnet: End-to-End Speech Processing Toolkit,espnet,2022-12-07,2022-12-06,2017-12-13,260,22.296153846153846 -313,util,https://github.com/pypa/pipx,,,,pypa/pipx,pipx,5769,265,65,"['pip', 'cli', 'pypi', 'venv', 'hacktoberfest', 'python']",Python,https://pypa.github.io/pipx/,pipx: Install and Run Python Applications in Isolated Environments,pypa,2022-12-07,2022-12-01,2018-10-06,217,26.51543007222587 -345,jupyter,https://github.com/mwouts/jupytext,,,,mwouts/jupytext,jupytext,5695,361,70,"['jupyter-notebook', 'jupyterlab-extension', 'version-control', 'knitr', 'rstudio', 'markdown', 'rmarkdown', 'python', 'hydrogen', 'notebooks', 'jupyterlab']",Python,https://jupytext.readthedocs.io,"jupytext: Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts",mwouts,2022-12-05,2022-11-12,2018-06-15,233,24.367359413202934 -777,util,https://github.com/google/latexify_py,,,,google/latexify_py,latexify_py,5679,310,51,[],Python,,latexify_py: A library to generate LaTeX expression from Python code.,google,2022-12-07,2022-12-07,2020-07-25,123,45.95722543352601 -730,ml,https://github.com/cleverhans-lab/cleverhans,,,,cleverhans-lab/cleverhans,cleverhans,5661,1377,190,"['machine-learning', 'security', 'benchmarking']",Jupyter Notebook,,"cleverhans: An adversarial example library for constructing attacks, building defenses, and benchmarking both",cleverhans-lab,2022-12-07,2021-09-23,2016-09-15,324,17.426121372031663 -69,util,https://github.com/pygithub/pygithub,,,,pygithub/pygithub,PyGithub,5646,1554,113,"['pygithub', 'python', 'github', 'github-api']",Python,https://pygithub.readthedocs.io/,PyGithub: Typed interactions with the GitHub API v3,pygithub,2022-12-07,2022-11-09,2012-02-25,562,10.036058913153886 -106,ml,https://github.com/nicolashug/surprise,,,,nicolashug/surprise,Surprise,5623,960,149,"['recommender', 'systems', 'recommendation', 'svd', 'matrix', 'factorization', 'machine-learning']",Python,http://surpriselib.com,Surprise: A Python scikit for building and analyzing recommender systems,nicolashug,2022-12-06,2022-10-31,2016-10-23,319,17.603309481216456 -68,gamedev,https://github.com/pygame/pygame,1.0,,,pygame/pygame,pygame,5518,2415,160,"['python', 'pygame', 'sdl2', 'sdl', 'game-development', 'gamedev', 'game-dev']",C,https://www.pygame.org,"pygame: 🐍🎮 pygame (the library) is a Free and Open Source python programming language library for making multimedia applications like games built on top of the excellent SDL library. C, Python, Native, OpenGL.",pygame,2022-12-07,2022-12-04,2017-03-26,297,18.552353506243996 -439,perf,https://github.com/mher/flower,,,,mher/flower,flower,5476,978,144,"['celery', 'task-queue', 'monitoring', 'administration', 'workers', 'rabbitmq', 'redis', 'python', 'asynchronous']",Python,https://flower.readthedocs.io,flower: Real-time monitor and web admin for Celery distributed task queue,mher,2022-12-06,2022-11-14,2012-07-08,543,10.076761303890642 -643,util,https://github.com/theskumar/python-dotenv,,,,theskumar/python-dotenv,python-dotenv,5470,353,33,"['python', 'devops-tools', 'dotenv', '12-factor-app', 'configuration', 'env', 'environment-variables']",Python,https://saurabh-kumar.com/python-dotenv/,python-dotenv: Reads key-value pairs from a .env file and can set them as environment variables. It helps in developing applications following the 12-factor principles.,theskumar,2022-12-07,2022-11-25,2014-09-06,430,12.704047777040477 -723,ml,https://github.com/py-why/dowhy,,,,py-why/dowhy,dowhy,5445,766,135,"['causal-inference', 'machine-learning', 'graphical-models', 'bayesian-networks', 'data-science', 'python3', 'causality', 'causal-models', 'treatment-effects', 'do-calculus', 'causal-machine-learning']",Python,https://www.pywhy.org/dowhy,"DoWhy is a Python library for causal inference that supports explicit modeling and testing of causal assumptions. DoWhy is based on a unified language for causal inference, combining causal graphical models and potential outcomes frameworks. ",py-why,2022-12-07,2022-12-06,2018-05-31,235,23.086008479709268 -193,util,https://github.com/pycqa/isort,,,,pycqa/isort,isort,5393,498,42,"['auto-formatter', 'isort', 'sorting-imports', 'python-utility', 'cli', 'linter', 'cleaner', 'formatter', 'python', 'python3', 'hacktoberfest']",Python,https://pycqa.github.io/isort/,isort: A Python utility / library to sort imports.,pycqa,2022-12-07,2022-05-20,2013-09-02,483,11.159030446349394 -682,diffusion,https://github.com/compvis/latent-diffusion,,,,compvis/latent-diffusion,latent-diffusion,5350,690,70,[],Jupyter Notebook,,latent-diffusion: High-Resolution Image Synthesis with Latent Diffusion Models,compvis,2022-12-07,2022-07-26,2021-12-20,50,106.39204545454545 -96,data,https://github.com/vi3k6i5/flashtext,,,,vi3k6i5/flashtext,flashtext,5321,598,139,"['search-in-text', 'keyword-extraction', 'nlp', 'word2vec', 'data-extraction']",Python,,flashtext: Extract Keywords from sentence or Replace keywords in sentences.,vi3k6i5,2022-12-07,2020-05-03,2017-08-15,277,19.199484536082473 -773,ml-dl,https://github.com/sanster/lama-cleaner,,,,sanster/lama-cleaner,lama-cleaner,5278,415,42,"['inpainting', 'pytorch', 'lama', 'latent-diffusion', 'mat', 'zits', 'stable-diffusion']",Python,,"lama-cleaner: Image inpainting tool powered by SOTA AI Model. Remove any unwanted object, defect, people from your pictures or erase and replace(powered by stable diffusion) any thing on your pictures.",sanster,2022-12-07,2022-12-05,2021-11-15,55,95.46770025839793 -579,ml,https://github.com/probml/pyprobml,,,,probml/pyprobml,pyprobml,5256,1243,173,"['jupyter-notebooks', 'machine-learning', 'colab', 'pml', 'probabilistic-programming', 'jax', 'tensorflow', 'pytorch', 'pymc3', 'numpyro', 'flax', 'pyro', 'blackjax']",Jupyter Notebook,,"pyprobml: Python code for ""Probabilistic Machine learning"" book by Kevin Murphy",probml,2022-12-06,2022-11-26,2016-08-17,329,15.975683890577507 -278,data,https://github.com/airbnb/knowledge-repo,,,,airbnb/knowledge-repo,knowledge-repo,5229,704,180,"['data', 'data-science', 'knowledge', 'data-analysis']",Python,,knowledge-repo: A next-generation curated knowledge sharing platform for data scientists and other technical professions.,airbnb,2022-12-06,2022-12-06,2016-08-17,329,15.893617021276595 -511,ml,https://github.com/google/automl,,,,google/automl,automl,5209,1382,150,"['automl', 'efficientdet', 'object-detection', 'efficientnet', 'efficientnetv2']",Jupyter Notebook,,automl: Google Brain AutoML,google,2022-12-07,2022-10-09,2020-03-12,142,36.463 -632,util,https://github.com/pyca/cryptography,,,,pyca/cryptography,cryptography,5207,1099,119,"['python', 'cryptography']",Python,https://cryptography.io,cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.,pyca,2022-12-06,2022-12-07,2013-08-07,487,10.69199178644764 -283,util,https://github.com/sdispater/pendulum,,,,sdispater/pendulum,pendulum,5204,308,63,"['python', 'datetime', 'date', 'time', 'python3', 'timezones']",Python,https://pendulum.eustace.io,pendulum: Python datetimes made easy,sdispater,2022-12-05,2022-11-24,2016-06-27,336,15.474936278674596 -434,util,https://github.com/scikit-image/scikit-image,,,,scikit-image/scikit-image,scikit-image,5153,2076,187,"['image-processing', 'python', 'computer-vision', 'hacktoberfest', 'closember']",Python,https://scikit-image.org,scikit-image: Image processing in Python,scikit-image,2022-12-06,2022-12-03,2011-07-07,595,8.648046032126588 -538,nlp,https://github.com/nvidia/nemo,,,,nvidia/nemo,NeMo,5145,1284,137,"['deep-learning', 'speech-recognition', 'nlp', 'nlp-machine-learning', 'neural-network', 'machine-translation', 'speech-synthesis', 'speech-to-text', 'text-to-speech', 'nmt', 'language-model', 'speaker-diarization', 'speaker-recognition', 'text-normalization', 'asr', 'tts']",Python,https://nvidia.github.io/NeMo/,NeMo: a toolkit for conversational AI,nvidia,2022-12-07,2022-12-07,2019-08-05,174,29.520491803278688 -3,ml,https://github.com/awslabs/autogluon,,,,awslabs/autogluon,autogluon,5124,672,96,"['automl', 'machine-learning', 'data-science', 'deep-learning', 'ensemble-learning', 'image-classification', 'computer-vision', 'natural-language-processing', 'structured-data', 'object-detection', 'gluon', 'transfer-learning', 'pytorch', 'automated-machine-learning', 'scikit-learn', 'autogluon', 'tabular-data', 'hyperparameter-optimization', 'time-series']",Python,https://auto.gluon.ai/,"AutoGluon: AutoML for Image, Text, Time Series, and Tabular Data",awslabs,2022-12-07,2022-12-07,2019-07-29,175,29.232273838630807 -880,time-series,https://github.com/unit8co/darts,,,,unit8co/darts,darts,5102,551,41,"['python', 'time-series', 'forecasting', 'machine-learning', 'deep-learning']",Python,https://unit8co.github.io/darts/,darts: A python library for easy manipulation and forecasting of time series.,unit8co,2022-12-07,2022-12-01,2018-09-13,220,23.10090556274256 -546,ml-dl,https://github.com/facebookresearch/mmf,,,,facebookresearch/mmf,mmf,5084,895,117,"['pytorch', 'vqa', 'pretrained-models', 'multimodal', 'deep-learning', 'captioning', 'dialog', 'textvqa', 'hateful-memes', 'multi-tasking']",Python,https://mmf.sh/,mmf: A modular framework for vision & language multimodal research from Facebook AI Research (FAIR),facebookresearch,2022-12-07,2022-10-19,2018-06-27,232,21.913793103448278 -352,ml-ops,https://github.com/activeloopai/hub,,,,activeloopai/hub,deeplake,5059,409,63,"['datasets', 'deep-learning', 'machine-learning', 'data-science', 'pytorch', 'tensorflow', 'data-version-control', 'python', 'ai', 'ml', 'mlops', 'computer-vision', 'cv', 'data-processing', 'image-processing', 'data-centric', 'jupyter-notebook', 'datalake', 'lakehouse']",Python,https://activeloop.ai,"deeplake: Data Lake for Deep Learning. Build, manage, query, version, & visualize datasets. Stream data real-time to PyTorch/TensorFlow. https://activeloop.ai ",activeloopai,2022-12-07,2022-12-06,2019-08-09,173,29.122532894736842 -301,data,https://github.com/kaggle/kaggle-api,,,,kaggle/kaggle-api,kaggle-api,5054,979,188,[],Python,,kaggle-api: Official Kaggle API,kaggle,2022-12-07,2021-03-15,2018-01-25,253,19.908835115362972 -161,ml,https://github.com/wandb/client,,,,wandb/client,wandb,5051,385,39,"['machine-learning', 'experiment-track', 'deep-learning', 'keras', 'tensorflow', 'pytorch', 'hyperparameter-search', 'reinforcement-learning', 'mlops', 'data-science', 'collaboration', 'hyperparameter-optimization', 'reproducibility', 'hyperparameter-tuning', 'data-versioning', 'model-versioning', 'ml-platform']",Python,https://wandb.ai,wandb: 🔥 A tool for visualizing and tracking your machine learning experiments. This repo contains the CLI and Python API.,wandb,2022-12-07,2022-12-07,2017-03-24,297,16.965930902111324 -81,util,https://github.com/sphinx-doc/sphinx,,,,sphinx-doc/sphinx,sphinx,5031,1801,140,"['python', 'documentation', 'documentation-tool', 'sphinx', 'markdown', 'restructuredtext']",Python,https://www.sphinx-doc.org/,sphinx: The Sphinx documentation generator,sphinx-doc,2022-12-07,2022-11-30,2015-01-02,413,12.160566298342541 -279,jupyter,https://github.com/nteract/papermill,,,,nteract/papermill,papermill,5021,378,91,"['jupyter', 'notebooks', 'notebook-generator', 'nteract', 'publishing', 'pipeline', 'notebook', 'python', 'r', 'julia', 'scala']",Python,http://papermill.readthedocs.io/en/latest/,"papermill: 📚 Parameterize, execute, and analyze notebooks",nteract,2022-12-06,2022-10-18,2017-07-06,282,17.751010101010102 -404,perf,https://github.com/python-trio/trio,,,,python-trio/trio,trio,5010,290,87,"['python', 'async', 'async-await', 'networking', 'io', 'trio', 'structured-concurrency']",Python,https://trio.readthedocs.io,Trio – a friendly Python library for async concurrency and I/O,python-trio,2022-12-07,2022-12-05,2017-01-16,307,16.304044630404462 -605,jupyter,https://github.com/connorferster/handcalcs,,,,connorferster/handcalcs,handcalcs,4975,391,76,[],CSS,,handcalcs: Python library for converting Python calculations into rendered latex.,connorferster,2022-12-07,2022-09-28,2020-02-19,146,34.07534246575342 -214,nlp,https://github.com/speechbrain/speechbrain,,,,speechbrain/speechbrain,speechbrain,4960,957,109,"['speech-recognition', 'speech-toolkit', 'speaker-recognition', 'speech-to-text', 'speech-enhancement', 'speech-separation', 'audio', 'audio-processing', 'speech-processing', 'speechrecognition', 'asr', 'voice-recognition', 'spoken-language-understanding', 'speaker-diarization', 'speaker-verification', 'pytorch', 'huggingface', 'transformers', 'language-model', 'deep-learning']",Python,http://speechbrain.github.io,speechbrain: A PyTorch-based Speech Toolkit,speechbrain,2022-12-07,2022-12-04,2020-04-28,136,36.43231899265477 -686,util,https://github.com/py-pdf/pypdf2,,,,py-pdf/pypdf2,PyPDF2,4943,1135,139,"['pypdf2', 'pdf', 'python', 'pdf-parser', 'pdf-parsing', 'pdf-manipulation', 'pdf-documents', 'help-wanted']",Python,https://pypdf2.readthedocs.io/en/latest/,"PyPDF2: A pure-python PDF library capable of splitting, merging, cropping, and transforming the pages of PDF files",py-pdf,2022-12-07,2022-12-04,2012-01-06,569,8.676278836509528 -652,profiling,https://github.com/joerick/pyinstrument,,,,joerick/pyinstrument,pyinstrument,4934,218,52,"['python', 'django', 'profiler', 'performance', 'profile', 'async']",Python,https://pyinstrument.readthedocs.io/,pyinstrument: 🚴 Call stack profiler for Python. Shows you why your code is slow!,joerick,2022-12-07,2022-12-05,2014-03-13,455,10.823566280162959 -471,util,https://github.com/parthjadhav/tkinter-designer,,,,parthjadhav/tkinter-designer,Tkinter-Designer,4889,461,51,"['tkinter', 'tkinter-gui', 'tkinter-python', 'tkinter-graphic-interface', 'python3', 'tkinter-widgets', 'gui-application', 'python-script', 'drag-and-drop', 'easy', 'easy-to-use', 'fast', 'gui', 'tkinter-designer', 'figma', 'python', 'automatic', 'collaborate', 'learn', 'hacktoberfest']",Python,,Tkinter-Designer: An easy and fast way to create a Python GUI 🐍,parthjadhav,2022-12-07,2022-12-02,2021-05-18,81,60.25176056338028 -552,ml,https://github.com/open-mmlab/mmsegmentation,,,,open-mmlab/mmsegmentation,mmsegmentation,4880,1803,50,"['semantic-segmentation', 'pytorch', 'pspnet', 'deeplabv3', 'transformer', 'swin-transformer', 'realtime-segmentation', 'vessel-segmentation', 'retinal-vessel-segmentation', 'image-segmentation', 'medical-image-segmentation']",Python,https://mmsegmentation.readthedocs.io/en/latest/,mmsegmentation: OpenMMLab Semantic Segmentation Toolbox and Benchmark.,open-mmlab,2022-12-07,2022-12-01,2020-06-14,129,37.70419426048565 -15,ml-dl,https://github.com/skorch-dev/skorch,,,,skorch-dev/skorch,skorch,4879,328,80,"['scikit-learn', 'pytorch', 'machine-learning', 'hacktoberfest']",Jupyter Notebook,,skorch: A scikit-learn compatible neural network library that wraps PyTorch,skorch-dev,2022-12-07,2022-11-29,2017-07-18,281,17.354166666666668 -569,ml,https://github.com/mdbloice/augmentor,,,,mdbloice/augmentor,Augmentor,4833,850,123,"['augmentation', 'machine-learning', 'deep-learning', 'neural-networks']",Python,https://augmentor.readthedocs.io/en/stable,Augmentor: Image augmentation library in Python for machine learning.,mdbloice,2022-12-06,2022-09-23,2016-03-01,353,13.685679611650485 -169,nlp,https://github.com/minimaxir/textgenrnn,,,,minimaxir/textgenrnn,textgenrnn,4817,752,138,"['keras', 'deep-learning', 'text-generation', 'tensorflow', 'python']",Python,,textgenrnn: Easily train your own text-generating neural network of any size and complexity on any text dataset with a few lines of code.,minimaxir,2022-12-05,2020-07-14,2017-08-07,278,17.309548254620122 -661,study,https://github.com/udacity/deep-learning-v2-pytorch,,,,udacity/deep-learning-v2-pytorch,deep-learning-v2-pytorch,4781,5167,172,"['deep-learning', 'neural-network', 'convolutional-networks', 'pytorch', 'recurrent-networks', 'style-transfer', 'sentiment-analysis']",Jupyter Notebook,,deep-learning-v2-pytorch: Projects and exercises for the latest Deep Learning ND program https://www.udacity.com/course/deep-learning-nanodegree--nd101,udacity,2022-12-07,2022-10-03,2018-09-04,222,21.52218649517685 -380,data,https://github.com/alirezamika/autoscraper,,,,alirezamika/autoscraper,autoscraper,4756,510,124,"['scraping', 'scraper', 'scrape', 'webscraping', 'crawler', 'web-scraping', 'ai', 'artificial-intelligence', 'python', 'webautomation', 'automation', 'machine-learning']",Python,,"autoscraper: A Smart, Automatic, Fast and Lightweight Web Scraper for Python",alirezamika,2022-12-07,2022-07-17,2020-08-31,118,40.207729468599034 -642,util,https://github.com/pycqa/pycodestyle,,,,pycqa/pycodestyle,pycodestyle,4730,683,119,"['python', 'pep8', 'styleguide', 'style-guide', 'linter-plugin', 'linter-flake8', 'flake8-plugin']",Python,https://pycodestyle.pycqa.org,pycodestyle: Simple Python style checker in one Python file,pycqa,2022-12-06,2022-12-06,2009-10-02,687,6.877856252596593 -181,security,https://github.com/pycqa/bandit,,,,pycqa/bandit,bandit,4722,493,59,"['linter', 'bandit', 'security-tools', 'security-scanner', 'security', 'static-code-analysis', 'python']",Python,https://bandit.readthedocs.io,Bandit is a tool designed to find common security issues in Python code.,pycqa,2022-12-07,2022-10-28,2018-04-26,240,19.604982206405694 -687,util,https://github.com/bndr/pipreqs,,,,bndr/pipreqs,pipreqs,4715,320,59,[],Python,,pipreqs - Generate pip requirements.txt file based on imports of any project. Looking for maintainers to move this project forward.,bndr,2022-12-07,2022-12-02,2015-04-22,398,11.846733668341708 -513,util,https://github.com/agronholm/apscheduler,,,,agronholm/apscheduler,apscheduler,4695,603,125,[],Python,,apscheduler: Task scheduling library for Python,agronholm,2022-12-07,2022-12-06,2016-03-27,349,13.436222403924775 -265,util,https://github.com/pytransitions/transitions,,,,pytransitions/transitions,transitions,4676,511,94,"['python', 'state-machine', 'nested-states', 'hierarchical-state-machine', 'state-diagram']",Python,,"transitions: A lightweight, object-oriented finite state machine implementation in Python with many extensions",pytransitions,2022-12-07,2022-11-08,2014-10-12,425,10.991269308260577 -223,nlp,https://github.com/kingoflolz/mesh-transformer-jax,1.0,,,kingoflolz/mesh-transformer-jax,mesh-transformer-jax,4626,651,74,[],Python,,mesh-transformer-jax: Model parallel transformers in JAX and Haiku,kingoflolz,2022-12-07,2022-01-28,2021-03-13,90,51.07570977917981 -213,data,https://github.com/facebookresearch/augly,,,,facebookresearch/augly,AugLy,4618,265,61,[],Python,https://ai.facebook.com/blog/augly-a-new-data-augmentation-library-to-help-build-more-robust-ai-models/,"AugLy: A data augmentations library for audio, image, text, and video.",facebookresearch,2022-12-06,2022-12-05,2021-06-09,78,59.205128205128204 -551,ml,https://github.com/open-mmlab/mmcv,,,,open-mmlab/mmcv,mmcv,4560,1308,83,[],Python,https://mmcv.readthedocs.io/en/latest/,mmcv: OpenMMLab Computer Vision Foundation,open-mmlab,2022-12-07,2022-12-07,2018-08-22,224,20.357142857142858 -830,typing,https://github.com/python-attrs/attrs,1.0,,,python-attrs/attrs,attrs,4537,319,57,"['python', 'boilerplate', 'classes', 'oop', 'attributes', 'srp']",Python,https://www.attrs.org/,attrs: Python Classes Without Boilerplate,python-attrs,2022-12-06,2022-12-07,2015-01-27,410,11.061999303378613 -784,diffusion,https://github.com/xavierxiao/dreambooth-stable-diffusion,,,,xavierxiao/dreambooth-stable-diffusion,Dreambooth-Stable-Diffusion,4516,494,70,"['pytorch', 'pytorch-lightning', 'stable-diffusion', 'text-to-image']",Jupyter Notebook,,Dreambooth-Stable-Diffusion: Implementation of Dreambooth (https://arxiv.org/abs/2208.12242) with Stable Diffusion,xavierxiao,2022-12-07,2022-09-21,2022-09-06,13,343.60869565217394 -247,util,https://github.com/jorgebastida/awslogs,,,,jorgebastida/awslogs,awslogs,4498,325,61,[],Python,,awslogs: AWS CloudWatch logs for Humans™,jorgebastida,2022-12-05,2020-07-10,2015-01-21,411,10.944038929440389 -97,jupyter,https://github.com/voila-dashboards/voila,,,,voila-dashboards/voila,voila,4472,448,77,"['jupyter', 'jupyter-notebook', 'jupyterlab-extension', 'dashboarding']",Python,https://voila.readthedocs.io,voila: Voilà turns Jupyter notebooks into standalone web applications,voila-dashboards,2022-12-06,2022-11-30,2018-08-21,224,19.951561504142767 -312,util,https://github.com/indygreg/pyoxidizer,,,,indygreg/pyoxidizer,PyOxidizer,4406,190,59,[],Rust,,PyOxidizer: A modern Python application packaging and distribution tool,indygreg,2022-12-06,2022-11-20,2018-12-18,207,21.270344827586207 -66,util,https://github.com/pycqa/pylint,,,,pycqa/pylint,pylint,4371,942,72,"['static-analysis', 'linter', 'static-code-analysis', 'code-quality', 'pep8', 'closember', 'hacktoberfest']",Python,http://pylint.pycqa.org,pylint: It's not just a linter that annoys you!,pycqa,2022-12-06,2022-12-06,2015-12-09,365,11.975342465753425 -206,ml,https://github.com/lucidrains/deep-daze,,,,lucidrains/deep-daze,deep-daze,4365,326,76,"['artificial-intelligence', 'deep-learning', 'transformers', 'siren', 'implicit-neural-representation', 'text-to-image', 'multi-modality']",Python,,deep-daze: Simple command line tool for text to image generation using OpenAI's CLIP and Siren (Implicit neural representation network). Technique was originally created by https://twitter.com/advadnoun,lucidrains,2022-12-06,2022-03-13,2021-01-17,98,44.346879535558784 -196,viz,https://github.com/lux-org/lux,,,,lux-org/lux,lux,4317,336,86,"['visualization-tools', 'jupyter', 'python', 'data-science', 'exploratory-data-analysis', 'visualization', 'pandas']",Python,,lux: Automatically visualize your pandas dataframe via a single print! 📊 💡,lux-org,2022-12-07,2022-05-21,2020-01-08,152,28.401315789473685 -21,nlp,https://github.com/facebookresearch/drqa,,,,facebookresearch/drqa,DrQA,4313,899,165,[],Python,,DrQA: Reading Wikipedia to Answer Open-Domain Questions,facebookresearch,2022-12-06,2021-05-18,2017-07-07,282,15.255684689236988 -570,util,https://github.com/jd/tenacity,,,,jd/tenacity,tenacity,4294,215,43,"['python', 'failure', 'retry', 'retry-library', 'hacktoberfest']",Python,http://tenacity.readthedocs.io,tenacity: Retrying library for Python,jd,2022-12-06,2022-09-21,2016-08-11,329,13.017756604590732 -603,ml,https://github.com/cleanlab/cleanlab,,,,cleanlab/cleanlab,cleanlab,4269,394,63,"['weak-supervision', 'machine-learning', 'confident-learning', 'robust-machine-learning', 'learning-with-confident-examples', 'learning-with-noisy-labels', 'noisy-data', 'data-cleaning', 'audio-classification', 'classification', 'data-quality', 'data-science', 'exploratory-data-analysis', 'image-classification', 'label-errors', 'noisy-labels', 'text-classification', 'data-centric-ai', 'data-centric-machine-learning']",Python,https://cleanlab.ai,"cleanlab: The standard data-centric AI package for data quality and machine learning with messy, real-world data and labels.",cleanlab,2022-12-06,2022-12-06,2018-05-11,238,17.88330341113106 -717,data,https://github.com/jazzband/tablib,,,,jazzband/tablib,tablib,4197,568,141,[],Python,https://tablib.readthedocs.io/,"tablib: Python Module for Tabular Datasets in XLS, CSV, JSON, YAML, &c.",jazzband,2022-12-07,2022-10-31,2011-03-28,610,6.877106741573034 -101,ml,https://github.com/rasbt/mlxtend,,,,rasbt/mlxtend,mlxtend,4171,795,121,"['python', 'machine-learning', 'data-science', 'data-mining', 'association-rules', 'supervised-learning', 'unsupervised-learning']",Python,http://rasbt.github.io/mlxtend/,mlxtend: A library of extension and helper modules for Python's data analysis and machine learning libraries.,rasbt,2022-12-06,2022-12-03,2014-08-14,433,9.613763582482713 -764,ml-dl,https://github.com/xpixelgroup/basicsr,,,,xpixelgroup/basicsr,BasicSR,4137,859,85,"['basicsr', 'esrgan', 'edsr', 'rcan', 'edvr', 'srresnet', 'srgan', 'super-resolution', 'restoration', 'pytorch', 'stylegan2', 'dfdnet', 'basicvsr', 'swinir', 'ecbsr']",Python,https://basicsr.readthedocs.io/en/latest/,"BasicSR: Open Source Image and Video Restoration Toolbox for Super-resolution, Denoise, Deblurring, etc. Currently, it includes EDSR, RCAN, SRResNet, SRGAN, ESRGAN, EDVR, BasicVSR, SwinIR, ECBSR, etc. Also support StyleGAN2, DFDNet.",xpixelgroup,2022-12-07,2022-11-06,2018-04-19,241,17.10513880685174 -734,ml-dl,https://github.com/pytorch/ignite,1.0,,,pytorch/ignite,ignite,4136,562,59,"['pytorch', 'neural-network', 'python', 'machine-learning', 'deep-learning', 'metrics', 'hacktoberfest', 'closember']",Python,https://pytorch-ignite.ai,ignite: High-level library to help with training and evaluating neural networks in PyTorch flexibly and transparently.,pytorch,2022-12-07,2022-12-05,2017-11-23,262,15.734782608695653 -370,time-series,https://github.com/facebookresearch/kats,,,,facebookresearch/kats,Kats,4107,430,70,[],Python,,"Kats, a kit to analyze time series data, a lightweight, easy-to-use, generalizable, and extendable framework to perform time series analysis, from understanding the key statistics and characteristics, detecting change points and anomalies, to forecasting future trends. ",facebookresearch,2022-12-06,2022-12-07,2021-02-25,92,44.22923076923077 -293,util,https://github.com/pytoolz/toolz,,,,pytoolz/toolz,toolz,4094,243,82,[],Python,http://toolz.readthedocs.org/,toolz: A functional standard library for Python.,pytoolz,2022-12-06,2022-11-03,2013-09-13,481,8.498813760379596 -27,typing,https://github.com/google/pytype,,,,google/pytype,pytype,4006,259,55,"['python', 'typing', 'typechecker', 'linter', 'types', 'static-analysis', 'static-code-analysis']",Python,https://google.github.io/pytype,pytype: A static type analyzer for Python code,google,2022-12-06,2022-12-06,2015-03-18,403,9.94044665012407 -565,gis,https://github.com/gboeing/osmnx,,,,gboeing/osmnx,osmnx,3948,731,123,"['openstreetmap', 'gis', 'street-networks', 'overpass-api', 'networkx', 'spatial-analysis', 'geospatial', 'urban-planning', 'transportation', 'geography', 'osmnx', 'networks', 'spatial-data', 'urban', 'osm', 'spatial', 'python', 'transport', 'mapping', 'routing']",Python,https://geoffboeing.com/publications/osmnx-complex-street-networks/,"OSMnx: Python for street networks. Retrieve, model, analyze, and visualize street networks and other spatial data from OpenStreetMap.",gboeing,2022-12-06,2022-11-28,2016-07-24,332,11.876235496347228 -542,util,https://github.com/mamba-org/mamba,,,,mamba-org/mamba,mamba,3944,226,39,[],C++,https://mamba.readthedocs.io,mamba: The Fast Cross-Platform Package Manager,mamba-org,2022-12-07,2022-12-06,2019-03-05,196,20.107793153678077 -227,ml,https://github.com/online-ml/river,1.0,,,online-ml/river,river,3915,432,82,"['incremental-learning', 'machine-learning', 'python', 'online-learning', 'online-statistics', 'data-science', 'streaming', 'online-machine-learning', 'streaming-data', 'concept-drift', 'real-time-processing', 'stream-processing']",Python,https://riverml.xyz,river: 🌊 Online machine learning in Python,online-ml,2022-12-07,2022-12-06,2019-01-24,201,19.394904458598727 -258,crypto,https://github.com/ethereum/web3.py,1.0,,,ethereum/web3.py,web3.py,3896,1223,117,[],Python,http://web3py.readthedocs.io,web3.py: A python interface for interacting with the Ethereum blockchain and ecosystem.,ethereum,2022-12-07,2022-12-02,2016-04-14,346,11.232289950576606 -13,ml,https://github.com/districtdatalabs/yellowbrick,,,,districtdatalabs/yellowbrick,yellowbrick,3861,538,102,"['machine-learning', 'visual-analysis', 'model-selection', 'visualization', 'scikit-learn', 'visualizer', 'matplotlib', 'python', 'estimator', 'anaconda']",Python,http://www.scikit-yb.org/,yellowbrick: Visual analysis and diagnostic tools to facilitate machine learning model selection.,districtdatalabs,2022-12-06,2022-12-05,2016-05-18,342,11.289473684210526 -549,ml,https://github.com/open-mmlab/mmediting,,,,open-mmlab/mmediting,mmediting,3839,685,83,"['super-resolution', 'inpainting', 'matting', 'image-generation', 'generative-adversarial-network', 'pytorch', 'deep-learning', 'video-interpolation', 'video-frame-interpolation', 'video-super-resolution', 'computer-vision', 'image-editing', 'image-processing', 'image-synthesis']",Python,https://mmediting.readthedocs.io/en/latest/,"mmediting: OpenMMLab Image and Video Restoration, Editing and Generation Toolbox",open-mmlab,2022-12-07,2022-11-30,2019-08-23,171,22.356905158069882 -43,data,https://github.com/lk-geimfari/mimesis,,,,lk-geimfari/mimesis,mimesis,3822,303,64,"['mimesis', 'fake', 'data', 'generator', 'fixtures', 'dummy', 'json', 'schema', 'testing', 'python', 'json-generator', 'faker', 'mock', 'synthetic-data', 'datascience', 'api-mock']",Python,https://mimesis.name,"Mimesis is a high-performance fake data generator for Python, which provides data for a variety of purposes in a variety of languages. ",lk-geimfari,2022-12-06,2022-10-27,2016-09-09,325,11.73421052631579 -362,ml-ops,https://github.com/allegroai/clearml,,,,allegroai/clearml,clearml,3816,516,80,"['version-control', 'experiment-manager', 'version', 'control', 'experiment', 'deeplearning', 'deep-learning', 'machine-learning', 'machinelearning', 'ai', 'trains', 'trainsai', 'clearml', 'k8s', 'devops', 'mlops']",Python,https://clear.ml/docs,"ClearML - Auto-Magical CI/CD to streamline your ML workflow. Experiment Manager, MLOps and Data-Management",allegroai,2022-12-07,2022-12-06,2019-06-10,182,20.934169278996865 -355,ml-ops,https://github.com/feast-dev/feast,,,,feast-dev/feast,feast,3798,708,74,"['machine-learning', 'features', 'ml', 'big-data', 'feature-store', 'python', 'mlops', 'data-engineering', 'data-science', 'data-quality']",Python,https://feast.dev,feast: Feature Store for Machine Learning,feast-dev,2022-12-07,2022-12-05,2018-12-10,208,18.234567901234566 -184,ml-dl,https://github.com/google/flax,,,,google/flax,flax,3788,437,74,['jax'],Python,https://flax.readthedocs.io,Flax is a neural network library for JAX that is designed for flexibility.,google,2022-12-07,2022-12-07,2020-01-10,151,24.96798493408663 -376,util,https://github.com/spotify/pedalboard,,,,spotify/pedalboard,pedalboard,3756,145,44,"['vst3', 'vst3-host', 'python', 'juce', 'tensorflow', 'audio-unit', 'pybind11', 'audio-processing', 'audio-production', 'audio-research', 'audio']",C++,,pedalboard: 🎛 🔊 A Python library for working with audio.,spotify,2022-12-06,2022-12-04,2021-07-06,74,50.65895953757225 -199,viz,https://github.com/man-group/dtale,,,,man-group/dtale,dtale,3754,315,67,"['python27', 'python3', 'react', 'flask', 'pandas', 'ipython', 'jupyter-notebook', 'react-virtualized', 'data-analysis', 'data-visualization', 'visualization', 'plotly-dash', 'data-science', 'xarray']",TypeScript,http://alphatechadmin.pythonanywhere.com,dtale: Visualizer for pandas data structures,man-group,2022-12-07,2022-11-04,2019-07-15,177,21.174858984689767 -896,diffusion,https://github.com/apple/ml-stable-diffusion,,,,apple/ml-stable-diffusion,ml-stable-diffusion,3725,128,46,[],Python,,ml-stable-diffusion: Stable Diffusion with Core ML on Apple Silicon,apple,2022-12-07,2022-11-30,2022-11-16,3,1241.6666666666667 -343,web,https://github.com/vitalik/django-ninja,,,,vitalik/django-ninja,django-ninja,3725,231,62,"['python', 'django', 'rest-api', 'openapi', 'pydantic', 'swagger', 'swagger-ui', 'django-ninja']",Python,https://django-ninja.rest-framework.com,"django-ninja: 💨 Fast, Async-ready, Openapi, type hints based framework for building APIs",vitalik,2022-12-07,2022-11-20,2020-05-19,133,27.9774678111588 -753,study,https://github.com/karpathy/nn-zero-to-hero,,,,karpathy/nn-zero-to-hero,nn-zero-to-hero,3708,252,151,[],Jupyter Notebook,,nn-zero-to-hero: Neural Networks: Zero to Hero,karpathy,2022-12-07,2022-11-21,2022-09-08,12,288.4 -388,nlp,https://github.com/makcedward/nlpaug,,,,makcedward/nlpaug,nlpaug,3672,419,38,"['nlp', 'augmentation', 'machine-learning', 'artificial-intelligence', 'data-science', 'natural-language-processing', 'adversarial-attacks', 'adversarial-example', 'ai', 'ml']",Jupyter Notebook,https://makcedward.github.io/,nlpaug: Data augmentation for NLP ,makcedward,2022-12-07,2022-07-07,2019-03-21,193,18.941783345615328 -855,profiling,https://github.com/pythonprofilers/memory_profiler,,,,pythonprofilers/memory_profiler,memory_profiler,3671,363,76,[],Python,http://pypi.python.org/pypi/memory_profiler,memory_profiler: Monitor Memory usage of Python code,pythonprofilers,2022-12-07,2022-12-06,2011-10-14,581,6.310658153241651 -357,data,https://github.com/amundsen-io/amundsen,,,,amundsen-io/amundsen,amundsen,3661,888,245,"['amundsen', 'metadata', 'data-catalog', 'data-discovery', 'linuxfoundation']",Python,https://www.amundsen.io/amundsen/,"Amundsen is a metadata driven application for improving the productivity of data analysts, data scientists and engineers when interacting with data.",amundsen-io,2022-12-06,2022-12-06,2019-05-14,186,19.66768994627782 -822,ml,https://github.com/project-monai/monai,,,,project-monai/monai,MONAI,3633,683,89,"['healthcare-imaging', 'deep-learning', 'medical-image-computing', 'medical-image-processing', 'pytorch', 'python3', 'monai']",Python,https://monai.io/,MONAI: AI Toolkit for Healthcare Imaging,project-monai,2022-12-07,2022-12-06,2019-10-11,164,22.056374674761493 -91,ml,https://github.com/uber/causalml,,,,uber/causalml,causalml,3618,575,76,"['incubation', 'machine-learning', 'causal-inference', 'uplift-modeling']",Python,,causalml: Uplift modeling and causal inference with machine learning algorithms,uber,2022-12-07,2022-11-10,2019-07-09,178,20.30954290296712 -354,ml-interpretability,https://github.com/pytorch/captum,,,,pytorch/captum,captum,3615,388,212,"['interpretability', 'interpretable-ai', 'interpretable-ml', 'feature-importance', 'feature-attribution']",Python,https://captum.ai,captum: Model interpretability and understanding for PyTorch,pytorch,2022-12-07,2022-11-18,2019-08-27,171,21.12270450751252 -762,sim,https://github.com/quantumlib/cirq,,,,quantumlib/cirq,Cirq,3606,813,176,"['quantum-circuits', 'nisq', 'quantum-algorithms', 'quantum-computing', 'cirq']",Python,,"Cirq: A python framework for creating, editing, and invoking Noisy Intermediate Scale Quantum (NISQ) circuits.",quantumlib,2022-12-07,2022-11-22,2017-12-14,259,13.876855415063222 -58,gamedev,https://github.com/panda3d/panda3d,,,,panda3d/panda3d,panda3d,3594,732,193,"['game-engine', 'open-source', 'panda3d', 'cross-platform', 'python', 'panda3d-game-engine', 'game-development', 'opengl', 'multi-platform', 'gamedev', 'c-plus-plus']",C++,https://www.panda3d.org/,"panda3d: Powerful, mature open-source cross-platform game engine for Python and C++, developed by Disney and CMU",panda3d,2022-12-06,2022-12-06,2013-09-30,479,7.49865871833085 -793,ml-ops,https://github.com/orchest/orchest,,,,orchest/orchest,orchest,3565,208,37,"['data-science', 'machine-learning', 'pipelines', 'ide', 'jupyter', 'cloud', 'self-hosted', 'jupyterlab', 'notebooks', 'docker', 'python', 'data-pipelines', 'orchest', 'deployment', 'kubernetes', 'airflow', 'dag', 'etl', 'etl-pipeline']",TypeScript,https://orchest.io,"orchest: Build data pipelines, the easy way 🛠️",orchest,2022-12-07,2022-12-06,2020-05-21,132,26.833333333333332 -423,util,https://github.com/tebelorg/rpa-python,,,,tebelorg/rpa-python,RPA-Python,3552,521,99,"['rpa', 'python', 'opencv', 'tesseract', 'tagui', 'sikuli', 'cross-platform']",Python,,RPA-Python: Python package for doing RPA,tebelorg,2022-12-06,2022-09-07,2019-03-30,192,18.445103857566764 -783,diffusion,https://github.com/carson-katri/dream-textures,,,,carson-katri/dream-textures,dream-textures,3545,167,70,"['ai', 'blender', 'blender-addon', 'image-generation', 'stable-diffusion']",Python,,dream-textures: Stable Diffusion built-in to the Blender shader editor,carson-katri,2022-12-07,2022-12-06,2022-09-08,12,275.72222222222223 -209,web,https://github.com/pywebio/pywebio,,,,pywebio/pywebio,PyWebIO,3527,314,44,['pywebio'],Python,https://pywebio.readthedocs.io,PyWebIO: Write interactive web app in script way.,pywebio,2022-12-06,2022-11-26,2020-02-29,144,24.39624505928854 -616,testing,https://github.com/spulec/freezegun,,,,spulec/freezegun,freezegun,3499,243,34,[],Python,,freezegun: Let your Python tests travel through time,spulec,2022-12-07,2022-08-12,2012-12-11,521,6.714089912280702 -309,crypto,https://github.com/crytic/slither,,,,crytic/slither,slither,3491,637,63,"['solidity', 'ethereum', 'static-analysis']",Python,https://blog.trailofbits.com/2018/10/19/slither-a-solidity-static-analysis-framework/,slither: Static Analyzer for Solidity,crytic,2022-12-06,2022-11-28,2018-09-05,222,15.725225225225225 -770,data,https://github.com/gristlabs/grist-core,,,,gristlabs/grist-core,grist-core,3487,162,40,"['awesome', 'database', 'spreadsheet']",TypeScript,https://support.getgrist.com/self-managed/,grist-core: Grist is the evolution of spreadsheets.,gristlabs,2022-12-07,2022-12-05,2020-05-22,132,26.27448869752422 -442,gis,https://github.com/osgeo/gdal,,,,osgeo/gdal,gdal,3482,1946,170,"['raster', 'geospatial-data', 'vector', 'remote-sensing']",C++,https://gdal.org,GDAL is an open source MIT licensed translator library for raster and vector geospatial data formats.,osgeo,2022-12-06,2022-12-06,2012-10-09,530,6.568040959310159 -287,gis,https://github.com/geopandas/geopandas,1.0,,,geopandas/geopandas,geopandas,3443,770,105,[],Python,http://geopandas.org/,geopandas: Python tools for geographic data,geopandas,2022-12-07,2022-12-06,2013-06-27,492,6.9857971014492755 -280,nlp,https://github.com/maartengr/bertopic,,,,maartengr/bertopic,BERTopic,3431,448,46,"['bert', 'transformers', 'topic-modeling', 'sentence-embeddings', 'nlp', 'machine-learning', 'topic', 'ldavis', 'topic-modelling', 'topic-models']",Python,https://maartengr.github.io/BERTopic/,BERTopic: Leveraging BERT and c-TF-IDF to create easily interpretable topics. ,maartengr,2022-12-07,2022-12-06,2020-09-22,115,29.79776674937965 -778,study,https://github.com/nielsrogge/transformers-tutorials,,,,nielsrogge/transformers-tutorials,Transformers-Tutorials,3414,505,76,"['transformers', 'pytorch', 'bert', 'vision-transformer', 'layoutlm', 'gpt-2']",Jupyter Notebook,,Transformers-Tutorials: This repository contains demos I made with the Transformers library by HuggingFace.,nielsrogge,2022-12-06,2022-11-25,2020-08-31,118,28.86231884057971 -782,diffusion,https://github.com/jina-ai/discoart,,,,jina-ai/discoart,discoart,3407,203,32,"['creative-ai', 'disco-diffusion', 'cross-modal', 'dalle', 'generative-art', 'multimodal', 'diffusion', 'prompts', 'midjourney', 'imgen', 'discodiffusion', 'creative-art', 'clip-guided-diffusion', 'latent-diffusion', 'stable-diffusion']",Python,,discoart: 🪩 Create Disco Diffusion artworks in one line,jina-ai,2022-12-07,2022-08-17,2022-06-30,22,149.05625 -462,util,https://github.com/rspeer/python-ftfy,,,,rspeer/python-ftfy,python-ftfy,3376,116,75,[],Python,http://ftfy.readthedocs.org,"python-ftfy: Fixes mojibake and other glitches in Unicode text, after the fact.",rspeer,2022-12-07,2022-10-25,2012-08-24,536,6.2901250998136815 -754,study,https://github.com/karpathy/micrograd,,,,karpathy/micrograd,micrograd,3360,299,79,[],Jupyter Notebook,,micrograd: A tiny scalar-valued autograd engine and a neural net library on top of it with PyTorch-like API,karpathy,2022-12-07,2020-04-18,2020-04-13,138,24.297520661157026 -757,util,https://github.com/pypa/hatch,,,,pypa/hatch,hatch,3349,157,49,"['python', 'cli', 'virtualenv', 'packaging', 'versioning', 'build', 'plugin']",Python,https://hatch.pypa.io/latest/,"hatch: Modern, extensible Python project management",pypa,2022-12-07,2022-12-06,2017-05-31,288,11.628472222222221 -368,nlp,https://github.com/layout-parser/layout-parser,,,,layout-parser/layout-parser,layout-parser,3324,331,57,"['layout-analysis', 'deep-learning', 'object-detection', 'ocr', 'layout-parser', 'detectron2', 'document-layout-analysis', 'computer-vision', 'document-image-processing', 'layout-detection']",Python,https://layout-parser.github.io/,layout-parser: A Unified Toolkit for Deep Learning Based Document Image Analysis,layout-parser,2022-12-07,2022-08-06,2020-06-10,130,25.56923076923077 -200,ml,https://github.com/huggingface/accelerate,,,,huggingface/accelerate,accelerate,3312,277,63,[],Python,https://huggingface.co/docs/accelerate,"accelerate: 🚀 A simple way to train and use PyTorch models with multi-GPU, TPU, mixed-precision",huggingface,2022-12-07,2022-12-06,2020-10-30,109,30.1875 -421,ml,https://github.com/facebookresearch/reagent,,,,facebookresearch/reagent,ReAgent,3308,497,146,[],Python,https://reagent.ai,"ReAgent: A platform for Reasoning systems (Reinforcement Learning, Contextual Bandits, etc.)",facebookresearch,2022-12-07,2022-11-15,2017-07-27,279,11.820316488004083 -833,util,https://github.com/adafruit/circuitpython,,,,adafruit/circuitpython,circuitpython,3300,873,128,"['circuitpython', 'micropython', 'python', 'embedded', 'microcontroller', 'education', 'beginner', 'cpython', 'python3', 'hacktoberfest']",C,https://circuitpython.org,CircuitPython - a Python implementation for teaching coding with microcontrollers,adafruit,2022-12-07,2022-12-07,2016-08-20,328,10.043478260869565 -897,viz,https://github.com/has2k1/plotnine,,,,has2k1/plotnine,plotnine,3268,184,65,"['plotting', 'grammar', 'graphics', 'python', 'data-analysis']",Python,https://plotnine.readthedocs.io/en/stable/,plotnine: A grammar of graphics for Python,has2k1,2022-12-07,2022-11-29,2017-04-24,293,11.142717973697028 -4,pandas,https://github.com/aws/aws-sdk-pandas,1.0,,,aws/aws-sdk-pandas,aws-sdk-pandas,3242,554,58,"['python', 'aws', 'pandas', 'apache-arrow', 'apache-parquet', 'data-engineering', 'etl', 'data-science', 'redshift', 'athena', 'lambda', 'aws-lambda', 'aws-glue', 'emr', 'amazon-athena', 'glue-catalog', 'mysql', 'amazon-sagemaker-notebook']",Python,https://aws-sdk-pandas.readthedocs.io,"aws-sdk-pandas: pandas on AWS - Easy integration with Athena, Glue, Redshift, Timestream, Neptune, OpenSearch, QuickSight, Chime, CloudWatchLogs, DynamoDB, EMR, SecretManager, PostgreSQL, MySQL, SQLServer and S3 (Parquet, CSV, JSON and EXCEL).",aws,2022-12-07,2022-12-05,2019-02-26,197,16.444927536231884 -790,diffusion,https://github.com/ashawkey/stable-dreamfusion,,,,ashawkey/stable-dreamfusion,stable-dreamfusion,3229,264,74,"['text-to-3d', 'gui', 'nerf', 'stable-diffusion', 'dreamfusion']",Python,,"stable-dreamfusion: A pytorch implementation of text-to-3D dreamfusion, powered by stable diffusion.",ashawkey,2022-12-07,2022-12-03,2022-10-06,8,364.56451612903226 -321,gui,https://github.com/r0x0r/pywebview,,,,r0x0r/pywebview,pywebview,3224,430,57,"['python', 'webkit', 'gtk', 'linux', 'windows', 'gui', 'osx', 'cocoa', 'html', 'javascript', 'qt', 'cef']",Python,https://pywebview.flowrl.com,"pywebview: Build GUI for your Python program with JavaScript, HTML, and CSS",r0x0r,2022-12-06,2022-12-05,2014-11-20,419,7.678802313712147 -663,util,https://github.com/zeromq/pyzmq,,,,zeromq/pyzmq,pyzmq,3220,610,102,"['cython', 'python', 'zeromq']",Python,http://zguide.zeromq.org/py:all,PyZMQ: Python bindings for zeromq,zeromq,2022-12-06,2022-12-06,2010-07-21,646,4.984520123839009 -208,crypto,https://github.com/cyberpunkmetalhead/binance-volatility-trading-bot,,,,cyberpunkmetalhead/binance-volatility-trading-bot,Binance-volatility-trading-bot,3219,762,145,[],Python,,Binance-volatility-trading-bot: This is a fully functioning Binance trading bot that measures the volatility of every coin on Binance and places trades with the highest gaining coins If you like this project consider donating though the Brave browser to allow me to continuously improve the script.,cyberpunkmetalhead,2022-12-03,2021-06-10,2021-05-08,82,38.984429065743946 -93,web,https://github.com/unbit/uwsgi,,,,unbit/uwsgi,uwsgi,3217,668,113,[],C,http://projects.unbit.it/uwsgi,uWSGI application server container,unbit,2022-12-07,2022-11-23,2011-10-09,582,5.523424086337994 -361,ml-ops,https://github.com/polyaxon/polyaxon,,,,polyaxon/polyaxon,polyaxon,3212,315,77,"['deep-learning', 'machine-learning', 'artificial-intelligence', 'data-science', 'reinforcement-learning', 'kubernetes', 'tensorflow', 'pytorch', 'keras', 'mxnet', 'caffe', 'ml', 'k8s', 'jupyter', 'notebook', 'jupyterlab', 'pipelines', 'workflow', 'mlops', 'hyperparameter-optimization']",Python,https://polyaxon.com,polyaxon: MLOps Tools For Managing & Orchestrating The Machine Learning LifeCycle,polyaxon,2022-12-07,2022-11-11,2016-12-26,310,10.351749539594843 -895,time-series,https://github.com/awslabs/gluonts,,,,awslabs/gluonts,gluonts,3195,646,70,"['time-series', 'deep-learning', 'forecasting', 'neural-networks', 'machine-learning', 'time-series-prediction', 'time-series-forecasting', 'mxnet', 'pytorch', 'aws', 'sagemaker', 'timeseries', 'artificial-intelligence', 'data-science']",Python,https://ts.gluon.ai,gluonts: Probabilistic time series modeling in Python,awslabs,2022-12-07,2022-11-30,2019-05-15,186,17.177419354838708 -319,gui,https://github.com/dddomodossola/remi,,,,dddomodossola/remi,remi,3177,388,119,"['python', 'gui-library', 'remi', 'platform-independent', 'ui', 'gui']",Python,,"remi: Python REMote Interface library. Platform independent. In about 100 Kbytes, perfect for your diet.",dddomodossola,2022-12-06,2022-11-23,2014-03-20,454,6.984610552763819 -557,jupyter,https://github.com/executablebooks/jupyter-book,,,,executablebooks/jupyter-book,jupyter-book,3149,582,63,"['jupyter', 'sphinx-doc', 'documentation-generator']",Python,http://jupyterbook.org,"jupyter-book: Create beautiful, publication-quality books and documents from computational content.",executablebooks,2022-12-07,2022-11-23,2018-06-14,233,13.465485644471594 -804,util,https://github.com/miguelgrinberg/python-socketio,,,,miguelgrinberg/python-socketio,python-socketio,3142,511,63,"['socket-io', 'socketio', 'socketio-server', 'websocket', 'long-polling', 'low-latency', 'web-server', 'python', 'asyncio', 'eventlet', 'gevent']",Python,,python-socketio: Python Socket.IO server and client,miguelgrinberg,2022-12-07,2022-11-25,2015-07-15,386,8.139896373056995 -99,ml,https://github.com/skvark/opencv-python,,,,skvark/opencv-python,opencv-python,3140,616,82,"['opencv', 'python', 'wheel', 'python-3', 'opencv-python', 'opencv-contrib-python', 'precompiled', 'pypi', 'manylinux']",Shell,https://pypi.org/project/opencv-python/,"opencv-python: Automated CI toolchain to produce precompiled opencv-python, opencv-python-headless, opencv-contrib-python and opencv-contrib-python-headless packages.",skvark,2022-12-07,2022-12-05,2016-04-08,347,9.030402629416598 -250,web,https://github.com/websocket-client/websocket-client,,,,websocket-client/websocket-client,websocket-client,3128,721,88,"['websocket', 'websockets', 'websocket-client', 'websockets-client', 'python', 'rfc-6455']",Python,https://github.com/websocket-client/websocket-client,websocket-client: WebSocket client for Python,websocket-client,2022-12-07,2022-11-04,2010-12-28,623,5.019715726730857 -832,pandas,https://github.com/blaze/blaze,,,,blaze/blaze,blaze,3115,386,200,[],Python,blaze.pydata.org,blaze: NumPy and Pandas interface to Big Data,blaze,2022-11-26,2019-08-15,2012-10-26,527,5.902815376285869 -35,data,https://github.com/jmcnamara/xlsxwriter,,,,jmcnamara/xlsxwriter,XlsxWriter,3105,590,120,"['python', 'xlsx-files', 'libxlsxwriter', 'pandas', 'charts', 'spreadsheet', 'xlsx', 'xlsxwriter']",Python,https://xlsxwriter.readthedocs.io,XlsxWriter: A Python module for creating Excel XLSX files.,jmcnamara,2022-12-06,2022-11-01,2013-01-04,517,5.997516556291391 -182,testing,https://github.com/tox-dev/tox,,,,tox-dev/tox,tox,3097,443,41,"['testing', 'python', 'virtualenv', 'continuous-integration', 'cli', 'automation', 'venv', 'travis', 'appveyor', 'gitlab', 'circleci', 'azure-pipelines', 'hacktoberfest']",Python,https://tox.wiki,tox: Command line driven CI frontend and development task automation tool.,tox-dev,2022-12-07,2022-12-07,2016-09-17,324,9.54181338028169 -518,util,https://github.com/spack/spack,,,,spack/spack,spack,3089,1787,104,"['python', 'spack', 'package-manager', 'hpc', 'build-tools', 'radiuss', 'scientific-computing', 'macos', 'linux']",Python,https://spack.io,"spack: A flexible package manager that supports multiple versions, configurations, platforms, and compilers.",spack,2022-12-07,2022-12-07,2014-01-08,465,6.643010752688172 -443,gis,https://github.com/shapely/shapely,1.0,,,shapely/shapely,shapely,3080,497,82,[],Python,https://shapely.readthedocs.io/en/stable/,shapely: Manipulation and analysis of geometric objects,shapely,2022-12-06,2022-12-07,2011-12-31,570,5.398097145718578 -0,data,https://github.com/andialbrecht/sqlparse,,,,andialbrecht/sqlparse,sqlparse,3077,612,93,[],Python,,sqlparse: A non-validating SQL parser module for Python,andialbrecht,2022-12-06,2022-09-23,2012-04-18,555,5.544144144144144 -260,util,https://github.com/python-markdown/markdown,,,,python-markdown/markdown,markdown,3071,789,76,"['python-markdown', 'markdown', 'markdown-parser', 'markdown-to-html', 'python', 'python3']",Python,https://python-markdown.github.io/,markdown: A Python implementation of John Gruber’s Markdown with Extension support.,python-markdown,2022-12-07,2022-12-02,2010-05-29,653,4.6987978142076505 -384,nlp,https://github.com/minimaxir/gpt-2-simple,,,,minimaxir/gpt-2-simple,gpt-2-simple,3061,631,74,"['text-generation', 'tensorflow', 'openai', 'textgenrnn']",Python,,gpt-2-simple: Python package to easily retrain OpenAI's GPT-2 text-generating model on new texts,minimaxir,2022-12-06,2022-05-22,2019-04-13,190,16.06221889055472 -363,ml-ops,https://github.com/kubeflow/pipelines,,,,kubeflow/pipelines,pipelines,3054,1348,103,"['kubeflow-pipelines', 'mlops', 'kubeflow', 'machine-learning', 'kubernetes', 'pipeline', 'data-science']",Python,https://www.kubeflow.org/docs/components/pipelines/,pipelines: Machine Learning Pipelines for Kubeflow,kubeflow,2022-12-06,2022-12-06,2018-05-12,238,12.801197604790419 -140,nlp,https://github.com/neuml/txtai,,,,neuml/txtai,txtai,3029,270,54,"['python', 'search', 'machine-learning', 'nlp', 'deep-learning', 'document-search', 'audio-search', 'image-search', 'video-search', 'semantic-search', 'similarity-search', 'neural-search', 'contextual-search', 'vector-search', 'machine-learning-workflows', 'machine-learning-pipelines', 'microservice', 'api', 'cloud-native', 'txtai']",Python,https://neuml.github.io/txtai,txtai: 💡 Build AI-powered semantic search applications ,neuml,2022-12-07,2022-12-03,2020-08-09,121,24.94470588235294 -138,ml-interpretability,https://github.com/pair-code/lit,1.0,,,pair-code/lit,lit,3023,318,72,"['machine-learning', 'natural-language-processing', 'visualization']",TypeScript,https://pair-code.github.io/lit,lit: The Language Interpretability Tool: Interactively analyze NLP models for model understanding in an extensible and framework agnostic interface.,pair-code,2022-12-07,2022-12-02,2020-07-28,123,24.548723897911835 -610,testing,https://github.com/seleniumbase/seleniumbase,,,,seleniumbase/seleniumbase,SeleniumBase,3012,724,119,"['python', 'selenium', 'webdriver', 'selenium-python', 'testing', 'rpa', 'e2e-testing', 'seleniumbase', 'awesome-list', 'pytest-plugin', 'web-automation', 'pytest', 'behave', 'testing-tools', 'chrome', 'firefox', 'recorder', 'webkit', 'webautomation', 'chromedriver']",Python,https://seleniumbase.io,SeleniumBase: Python framework for web automation and testing. Includes a dashboard and a test-generating recorder.,seleniumbase,2022-12-07,2022-12-05,2014-03-04,457,6.58875 -42,nlp,https://github.com/life4/textdistance,,,,life4/textdistance,textdistance,3004,240,61,"['distance', 'algorithm', 'python', 'textdistance', 'hamming-distance', 'levenshtein-distance', 'damerau-levenshtein', 'damerau-levenshtein-distance', 'algorithms', 'distance-calculation', 'jellyfish', 'diff', 'levenshtein']",Python,,"textdistance: Compute distance between sequences. 30+ algorithms, pure python implementation, common interface, optional external libs usage.",life4,2022-12-06,2022-09-18,2017-05-05,291,10.297747306562194 -698,util,https://github.com/joblib/joblib,,,,joblib/joblib,joblib,2984,356,63,"['python', 'parallel-computing', 'caching', 'multiprocessing', 'threading', 'memoization']",Python,http://joblib.readthedocs.org,joblib: Computing with Python functions.,joblib,2022-12-05,2022-11-25,2010-05-07,656,4.543832934522515 -336,ml,https://github.com/apple/coremltools,,,,apple/coremltools,coremltools,2981,476,109,"['coremltools', 'tensorflow', 'pytorch', 'coreml', 'machine-learning', 'model-converter', 'model-conversion']",Python,https://coremltools.readme.io,"coremltools: Core ML tools contain supporting tools for Core ML model conversion, editing, and validation.",apple,2022-12-07,2022-12-06,2017-06-30,283,10.507049345417926 -139,viz,https://github.com/vispy/vispy,,,,vispy/vispy,vispy,2979,604,122,"['hacktoberfest', 'python', 'opengl', 'visualization', 'closember']",Python,http://vispy.org,vispy: Main repository for Vispy,vispy,2022-12-06,2022-11-14,2013-03-21,506,5.87739571589628 -272,data,https://github.com/praw-dev/praw,,,,praw-dev/praw,praw,2956,449,72,"['python', 'reddit', 'api', 'oauth', 'praw', 'reddit-api']",Python,http://praw.readthedocs.io/,"PRAW, an acronym for ""Python Reddit API Wrapper"", is a python package that allows for simple access to Reddit's API.",praw-dev,2022-12-06,2022-12-07,2010-08-19,641,4.6053861562430445 -285,crypto,https://github.com/ethereum/consensus-specs,,,,ethereum/consensus-specs,consensus-specs,2952,740,245,[],Python,,consensus-specs: Ethereum Proof-of-Stake Consensus Specifications,ethereum,2022-12-05,2022-12-06,2018-09-20,219,13.426900584795321 -221,jupyter,https://github.com/jupyterlite/jupyterlite,,,,jupyterlite/jupyterlite,jupyterlite,2932,177,43,"['jupyter', 'jupyterlab', 'jupyterlab-extension', 'lite', 'webassembly', 'wasm', 'pyodide']",Python,https://jupyterlite.rtfd.io/en/latest/try/lab,jupyterlite: Wasm powered Jupyter running in the browser 💡,jupyterlite,2022-12-07,2022-11-30,2021-03-27,88,33.10322580645161 -623,util,https://github.com/suor/funcy,,,,suor/funcy,funcy,2919,133,73,"['functional-programming', 'utilities', 'python']",Python,,funcy: A fancy and practical functional tools,suor,2022-12-06,2022-08-25,2012-10-13,529,5.5120043161586185 -77,jupyter,https://github.com/quantopian/qgrid,,,,quantopian/qgrid,qgrid,2915,416,89,[],Python,,"qgrid: An interactive grid for sorting, filtering, and editing DataFrames in Jupyter notebooks",quantopian,2022-12-07,2020-04-07,2014-09-30,427,6.8244147157190636 -348,ml-ops,https://github.com/evidentlyai/evidently,,,,evidentlyai/evidently,evidently,2913,317,32,"['data-drift', 'jupyter-notebook', 'pandas-dataframe', 'machine-learning', 'model-monitoring', 'html-report', 'production-machine-learning', 'machine-learning-operations', 'mlops', 'data-science', 'hacktoberfest']",Python,,evidently: Evaluate and monitor ML models from validation to production. Join our Discord: https://discord.com/invite/xZjKRaNp8b,evidentlyai,2022-12-06,2022-12-06,2020-11-25,106,27.4811320754717 -381,ml-ops,https://github.com/aimhubio/aim,,,,aimhubio/aim,aim,2903,178,35,"['python', 'ai', 'data-science', 'data-visualization', 'experiment-tracking', 'machine-learning', 'metadata', 'metadata-tracking', 'ml', 'mlflow', 'mlops', 'pytorch', 'tensorboard', 'tensorflow', 'visualization']",TypeScript,https://aimstack.io,Aim 💫 — easy-to-use and performant open-source ML experiment tracker.,aimhubio,2022-12-06,2022-12-06,2019-05-31,183,15.801710730948678 -715,ml-ops,https://github.com/flyteorg/flyte,,,,flyteorg/flyte,flyte,2896,304,266,"['flyte', 'machine-learning', 'golang', 'scale', 'workflow', 'data-science', 'data-analysis', 'data', 'kubernetes-operator', 'kubernetes', 'orchestration-engine', 'mlops', 'dataops', 'grpc', 'python', 'battle-tested', 'production', 'production-grade', 'declarative', 'hacktoberfest']",Python,https://flyte.org,"flyte: Kubernetes-native workflow automation platform for complex, mission-critical data and ML processes at scale. It has been battle-tested at Lyft, Spotify, Freenome, and others and is truly open-source.",flyteorg,2022-12-07,2022-12-05,2019-10-21,163,17.73578302712161 -704,data,https://github.com/pyeve/cerberus,,,,pyeve/cerberus,cerberus,2884,226,48,"['python', 'data-validation']",Python,http://python-cerberus.org,"cerberus: Lightweight, extensible data validation library for Python",pyeve,2022-12-06,2021-05-05,2012-10-10,530,5.441509433962264 -476,gis,https://github.com/holoviz/datashader,1.0,,,holoviz/datashader,datashader,2882,360,94,"['holoviz', 'datashader', 'data-visualizations', 'rasterization']",Python,http://datashader.org,datashader: Quickly and accurately render even the largest data.,holoviz,2022-12-06,2022-11-17,2015-12-23,363,7.9393939393939394 -660,ml,https://github.com/pytorch/glow,,,,pytorch/glow,glow,2880,654,154,[],C++,,glow: Compiler for Neural Network hardware accelerators,pytorch,2022-12-07,2022-12-05,2017-09-29,270,10.638522427440634 -390,diffusion,https://github.com/openai/glide-text2im,,,,openai/glide-text2im,glide-text2im,2878,401,116,[],Python,,glide-text2im: GLIDE: a diffusion-based text-conditional image synthesis model,openai,2022-12-07,2022-03-21,2021-12-10,51,55.651933701657455 -366,ml,https://github.com/facebookresearch/vissl,,,,facebookresearch/vissl,vissl,2866,299,53,[],Jupyter Notebook,https://vissl.ai,"VISSL is FAIR's library of extensible, modular and scalable components for SOTA Self-Supervised Learning with images.",facebookresearch,2022-12-07,2022-10-12,2020-04-09,138,20.63991769547325 -811,ml-ops,https://github.com/ploomber/ploomber,,,,ploomber/ploomber,ploomber,2856,196,27,"['workflow', 'machine-learning', 'data-science', 'data-engineering', 'mlops', 'papermill', 'jupyter', 'jupyter-notebooks', 'pipelines', 'vscode', 'pycharm', 'notebooks', 'hacktoberfest']",Python,https://ploomber.io,"ploomber: The fastest ⚡️ way to build data pipelines. Develop iteratively, deploy anywhere. ☁️",ploomber,2022-12-07,2022-11-22,2020-01-20,150,19.00380228136882 -624,util,https://github.com/more-itertools/more-itertools,,,,more-itertools/more-itertools,more-itertools,2811,220,34,[],Python,https://more-itertools.rtfd.io,"more-itertools: More routines for operating on iterables, beyond itertools",more-itertools,2022-12-07,2022-12-05,2012-04-26,553,5.075315965953057 -761,sim,https://github.com/qiskit/qiskit,,,,qiskit/qiskit,qiskit,2805,759,97,"['qiskit', 'quantum-computing', 'quantum-programming-language', 'documentation']",OpenQASM,https://qiskit.org,"Qiskit is an open-source SDK for working with quantum computers at the level of circuits, algorithms, and application modules.",qiskit,2022-12-06,2022-12-02,2018-12-12,208,13.485576923076923 -261,time-series,https://github.com/salesforce/merlion,,,,salesforce/merlion,Merlion,2800,240,45,"['time-series', 'anomaly-detection', 'forecasting', 'machine-learning', 'benchmarking', 'automl', 'ensemble-learning']",Python,,Merlion: A Machine Learning Framework for Time Series Intelligence,salesforce,2022-12-07,2022-12-07,2021-07-28,71,39.436619718309856 -787,study,https://github.com/cosmicpython/book,,,,cosmicpython/book,book,2789,480,92,[],Python,https://www.cosmicpython.com,"book: A Book about Pythonic Application Architecture Patterns for Managing Complexity. Cosmos is the Opposite of Chaos you see. O'R. wouldn't actually let us call it ""Cosmic Python"" tho.",cosmicpython,2022-12-06,2022-10-03,2019-02-05,200,13.935046395431835 -154,pandas,https://github.com/adamerose/pandasgui,,,,adamerose/pandasgui,PandasGUI,2786,189,53,"['pandas', 'dataframe', 'gui', 'viewer']",Python,,PandasGUI: A GUI for Pandas DataFrames,adamerose,2022-12-07,2022-03-16,2019-06-12,182,15.307692307692308 -765,diffusion,https://github.com/lkwq007/stablediffusion-infinity,,,,lkwq007/stablediffusion-infinity,stablediffusion-infinity,2784,210,29,"['outpainting', 'stablediffusion']",Python,,stablediffusion-infinity: Outpainting with Stable Diffusion on an infinite canvas,lkwq007,2022-12-07,2022-12-07,2022-09-02,13,203.0 -270,web,https://github.com/strawberry-graphql/strawberry,,,,strawberry-graphql/strawberry,strawberry,2776,340,43,"['graphql', 'graphql-server', 'python', 'starlette', 'asyncio', 'mypy', 'django', 'graphql-library', 'asgi', 'graphql-schema', 'strawberry', 'hacktoberfest']",Python,https://strawberry.rocks,strawberry: A GraphQL library for Python that leverages type annotations 🍓,strawberry-graphql,2022-12-07,2022-12-07,2018-12-21,206,13.42916378714582 -488,util,https://github.com/pydata/xarray,,,,pydata/xarray,xarray,2775,853,106,"['python', 'netcdf', 'numpy', 'pandas', 'xarray', 'dask']",Python,https://xarray.dev,xarray: N-D labeled arrays and datasets in Python,pydata,2022-12-06,2022-12-04,2013-09-30,479,5.789865871833085 -792,ml-dl,https://github.com/facebookincubator/aitemplate,,,,facebookincubator/aitemplate,AITemplate,2764,180,78,[],Python,,AITemplate is a Python framework which renders neural network into high performance CUDA/HIP C++ code. Specialized for FP16 TensorCore (NVIDIA GPU) and MatrixCore (AMD GPU) inference.,facebookincubator,2022-12-07,2022-12-02,2022-07-15,20,133.4344827586207 -203,viz,https://github.com/ml-tooling/opyrator,,,,ml-tooling/opyrator,opyrator,2749,132,48,"['fastapi', 'streamlit', 'pydantic', 'python', 'microservices', 'serverless', 'faas', 'functions', 'python-functions', 'machine-learning', 'deployment', 'type-hints']",Python,https://opyrator-playground.mltooling.org,"opyrator: 🪄 Turns your machine learning code into microservices with web API, interactive GUI, and more.",ml-tooling,2022-12-06,2021-05-06,2021-04-06,87,31.54590163934426 -729,ml-dl,https://github.com/mosaicml/composer,,,,mosaicml/composer,composer,2738,169,22,"['deep-learning', 'pytorch', 'neural-networks', 'ml-systems', 'ml-efficiency', 'ml-training', 'machine-learning', 'neural-network']",Python,http://docs.mosaicml.com,composer: Train neural networks up to 7x faster,mosaicml,2022-12-05,2022-12-07,2021-10-12,60,45.524940617577194 -641,testing,https://github.com/behave/behave,,,,behave/behave,behave,2733,608,119,[],Python,,"behave: BDD, Python style.",behave,2022-12-05,2022-11-23,2011-10-25,580,4.710908643191332 -156,profiling,https://github.com/gaogaotiantian/viztracer,,,,gaogaotiantian/viztracer,viztracer,2732,275,37,"['tracer', 'python3', 'debugging', 'profiling', 'visualization', 'flamegraph', 'python', 'logging']",Python,https://viztracer.readthedocs.io/,VizTracer is a low-overhead logging/debugging/profiling tool that can trace and visualize your python code execution.,gaogaotiantian,2022-12-06,2022-11-24,2020-08-05,122,22.39344262295082 -170,ml,https://github.com/ourownstory/neural_prophet,,,,ourownstory/neural_prophet,neural_prophet,2674,360,48,"['forecasting', 'time-series', 'machine-learning', 'fbprophet', 'prophet', 'forecast', 'artificial-intelligence', 'prediction', 'trend', 'seasonality', 'autoregression', 'pytorch', 'timeseries', 'forecasting-algorithm', 'forecasting-model', 'neuralprophet', 'neural', 'neural-network', 'python', 'deep-learning']",Python,https://neuralprophet.com,neural_prophet: NeuralProphet: A simple forecasting package,ourownstory,2022-12-07,2022-12-07,2020-05-04,135,19.76557550158395 -34,nlp,https://github.com/jbesomi/texthero,,,,jbesomi/texthero,texthero,2635,222,44,"['text-preprocessing', 'text-representation', 'text-visualization', 'nlp', 'word-embeddings', 'machine-learning', 'text-mining', 'nlp-pipeline', 'text-clustering', 'texthero']",Python,https://texthero.org,"texthero: Text preprocessing, representation and visualization from zero to hero.",jbesomi,2022-12-01,2022-10-28,2020-04-06,139,18.91794871794872 -130,ml-dl,https://github.com/explosion/thinc,,,,explosion/thinc,thinc,2627,259,85,"['machine-learning', 'deep-learning', 'artificial-intelligence', 'ai', 'python', 'nlp', 'natural-language-processing', 'spacy', 'machine-learning-library', 'type-checking', 'functional-programming', 'pytorch', 'tensorflow', 'mxnet', 'jax']",Python,https://thinc.ai,"thinc: 🔮 A refreshing functional take on deep learning, compatible with your favorite libraries",explosion,2022-12-06,2022-11-30,2014-10-16,424,6.183254875588433 -113,nlp,https://github.com/huggingface/neuralcoref,,,,huggingface/neuralcoref,neuralcoref,2627,460,94,"['python', 'machine-learning', 'coreference', 'spacy', 'coreference-resolution', 'spacy-extension', 'spacy-pipeline', 'nlp', 'neural-networks', 'pytorch']",C,https://huggingface.co/coref/,neuralcoref: ✨Fast Coreference Resolution in spaCy with Neural Networks,huggingface,2022-12-01,2021-06-22,2017-07-03,283,9.273323247604639 -111,ml,https://github.com/teamhg-memex/eli5,,,,teamhg-memex/eli5,eli5,2611,326,68,"['scikit-learn', 'machine-learning', 'xgboost', 'lightgbm', 'crfsuite', 'inspection', 'explanation', 'nlp', 'data-science', 'python']",Jupyter Notebook,http://eli5.readthedocs.io,eli5: A library for debugging/inspecting machine learning classifiers and explaining their predictions,teamhg-memex,2022-12-06,2020-01-22,2016-09-15,324,8.037379067722076 -709,pandas,https://github.com/nalepae/pandarallel,1.0,,,nalepae/pandarallel,pandarallel,2609,161,25,"['pandas', 'python', 'parallel']",Python,https://nalepae.github.io/pandarallel,pandarallel: A simple and efficient tool to parallelize Pandas operations on all available CPUs,nalepae,2022-12-06,2022-12-06,2019-03-10,195,13.350146198830409 -801,data,https://github.com/pallets/itsdangerous,,,,pallets/itsdangerous,itsdangerous,2589,212,57,"['python', 'security', 'hmac', 'serialization', 'itsdangerous', 'pallets']",Python,https://itsdangerous.palletsprojects.com,itsdangerous: Safely pass trusted data to untrusted environments and back.,pallets,2022-12-06,2022-11-01,2011-06-24,597,4.3315009560229445 -85,graph,https://github.com/stellargraph/stellargraph,,,,stellargraph/stellargraph,stellargraph,2562,395,62,"['graphs', 'machine-learning', 'machine-learning-algorithms', 'graph-convolutional-networks', 'networkx', 'geometric-deep-learning', 'saliency-map', 'interpretability', 'heterogeneous-networks', 'graph-neural-networks', 'graph-analysis', 'graph-machine-learning', 'gcn', 'link-prediction', 'stellargraph-library', 'graph-data', 'python', 'deep-learning', 'data-science']",Python,https://stellargraph.readthedocs.io/,StellarGraph - Machine Learning on Graphs,stellargraph,2022-12-07,2021-10-29,2018-04-13,242,10.55562095350206 -539,nlp,https://github.com/huawei-noah/pretrained-language-model,,,,huawei-noah/pretrained-language-model,Pretrained-Language-Model,2552,546,52,"['knowledge-distillation', 'model-compression', 'quantization', 'pretrained-models', 'large-scale-distributed']",Python,,Pretrained-Language-Model: Pretrained language model and its related optimization techniques developed by Huawei Noah's Ark Lab.,huawei-noah,2022-12-07,2022-11-21,2019-12-02,157,16.225249772933697 -611,debug,https://github.com/inducer/pudb,,,,inducer/pudb,pudb,2547,216,45,"['python', 'debugger', 'pytest', 'pytest-plugin', 'pdb', 'ipython', 'bpython', 'urwid', 'debug']",Python,https://documen.tician.de/pudb/,pudb: Full-screen console debugger for Python,inducer,2022-12-07,2022-11-20,2011-05-13,603,4.218883104590629 -159,data,https://github.com/goldsmith/wikipedia,,,,goldsmith/wikipedia,Wikipedia,2528,514,82,[],Python,https://wikipedia.readthedocs.org/,Wikipedia: A Pythonic wrapper for the Wikipedia API,goldsmith,2022-12-04,2020-10-09,2013-08-20,485,5.210836277974087 -94,term,https://github.com/urwid/urwid,,,,urwid/urwid,urwid,2513,311,60,[],Python,urwid.org,urwid: Console user interface library for Python (official repo),urwid,2022-12-07,2022-07-12,2010-02-25,666,3.7684233076263927 -369,nlp,https://github.com/bytedance/lightseq,,,,bytedance/lightseq,lightseq,2504,277,51,"['inference', 'transformer', 'beam-search', 'bert', 'cuda', 'sampling', 'diverse-decoding', 'multilingual-nmt', 'training', 'bart', 'gpt', 'accelerate']",C++,,LightSeq: A High Performance Library for Sequence Processing and Generation,bytedance,2022-12-07,2022-12-07,2019-12-06,156,15.978122151321786 -428,util,https://github.com/pycqa/flake8,,,,pycqa/flake8,flake8,2500,255,33,"['python', 'python3', 'static-analysis', 'static-code-analysis', 'linter', 'linter-flake8', 'stylelint', 'styleguide', 'style-guide', 'flake8', 'pep8', 'complexity-analysis']",Python,https://flake8.pycqa.org,"flake8 is a python tool that glues together pycodestyle, pyflakes, mccabe, and third-party plugins to check the style and quality of some python code.",pycqa,2022-12-07,2022-12-06,2014-09-13,429,5.819753907549052 -433,pandas,https://github.com/pydata/pandas-datareader,,,,pydata/pandas-datareader,pandas-datareader,2496,616,133,"['html', 'data-analysis', 'data', 'dataset', 'stock-data', 'finance', 'financial-data', 'python', 'pydata', 'pandas', 'econdb', 'fama-french', 'economic-data', 'fred']",Python,https://pydata.github.io/pandas-datareader/stable/index.html,pandas-datareader: Extract data from a wide range of Internet sources into a pandas DataFrame.,pydata,2022-12-07,2022-03-16,2015-01-15,411,6.060353798126951 -675,ml-dl,https://github.com/saharmor/dalle-playground,,,,saharmor/dalle-playground,dalle-playground,2485,553,28,"['dall-e', 'openai', 'gan', 'text-to-image', 'transformers', 'artificial', 'artificial-intelligence', 'machine-learning', 'dalle', 'dalle-mini', 'stable-diffusion']",Jupyter Notebook,,dalle-playground: A playground to generate images from any text prompt using Stable Diffusion (past: using DALL-E Mini),saharmor,2022-12-07,2022-12-02,2021-09-13,64,38.65555555555556 -553,ml-dl,https://github.com/pytorch/botorch,,,,pytorch/botorch,botorch,2471,292,52,[],Jupyter Notebook,https://botorch.org/,botorch: Bayesian optimization in PyTorch,pytorch,2022-12-07,2022-12-07,2018-07-30,227,10.871778755499685 -98,data,https://github.com/zoomeranalytics/xlwings,,,,zoomeranalytics/xlwings,xlwings,2458,450,120,"['python', 'excel', 'reporting', 'automation', 'googlesheets', 'google-sheets']",Python,https://www.xlwings.org,xlwings is a Python library that makes it easy to call Python from Excel and vice versa. It works with Excel on Windows and macOS as well as with Google Sheets and Excel on the web. ,zoomeranalytics,2022-12-03,2022-12-03,2014-03-17,455,5.398807656102918 -845,time-series,https://github.com/tdameritrade/stumpy,,,,tdameritrade/stumpy,stumpy,2452,237,50,"['data-science', 'time-series-analysis', 'dask', 'numba', 'python', 'anomaly-detection', 'pattern-matching', 'pydata', 'matrix-profile', 'motif-discovery', 'time-series-segmentation', 'time-series-data-mining']",Python,https://stumpy.readthedocs.io/en/latest/,STUMPY is a powerful and scalable Python library for modern time series analysis,tdameritrade,2022-12-07,2022-12-06,2019-05-03,187,13.062404870624048 -431,viz,https://github.com/holoviz/panel,,,,holoviz/panel,panel,2418,313,47,"['holoviz', 'panel', 'dashboards', 'control-panels', 'gui']",Python,https://panel.holoviz.org,panel: A high-level app and dashboarding solution for Python,holoviz,2022-12-06,2022-12-06,2018-08-23,223,10.801531589023613 -600,gis,https://github.com/giswqs/geemap,,,,giswqs/geemap,geemap,2407,894,96,"['google-earth-engine', 'gis', 'remote-sensing', 'image-processing', 'python', 'jupyter-notebook', 'ipyleaflet', 'mapping', 'earth-engine', 'ipywidgets', 'folium', 'jupyter', 'colab', 'geospatial', 'landsat', 'dataviz', 'data-science', 'streamlit', 'streamlit-webapp', 'earthengine']",Python,https://geemap.org,"geemap: A Python package for interactive mapping with Google Earth Engine, ipyleaflet, and ipywidgets.",giswqs,2022-12-07,2022-12-05,2020-03-08,143,16.78187250996016 -172,viz,https://github.com/facebookresearch/hiplot,,,,facebookresearch/hiplot,hiplot,2378,120,28,[],TypeScript,https://facebookresearch.github.io/hiplot/,HiPlot makes understanding high dimensional data easy,facebookresearch,2022-12-04,2022-12-05,2019-11-08,160,14.796444444444445 -708,ml,https://github.com/mljar/mljar-supervised,,,,mljar/mljar-supervised,mljar-supervised,2357,308,41,"['automl', 'machine-learning', 'automatic-machine-learning', 'mljar', 'data-science', 'scikit-learn', 'hyperparameter-optimization', 'feature-engineering', 'xgboost', 'random-forest', 'neural-network', 'lightgbm', 'catboost', 'ensemble', 'tuning-algorithm', 'models-tuning', 'hyper-parameters', 'decision-tree', 'shap', 'automated-machine-learning']",Python,https://mljar.com,"mljar-supervised: Python package for AutoML on Tabular Data with Feature Engineering, Hyper-Parameters Tuning, Explanations and Automatic Documentation",mljar,2022-12-07,2022-11-03,2018-11-05,213,11.050904219691896 -174,util,https://github.com/liiight/notifiers,,,,liiight/notifiers,notifiers,2346,91,33,"['python', 'notifications', 'notifier', 'notification-service', 'python3', 'pypi']",Python,http://notifiers.readthedocs.io/,notifiers: The easy way to send notifications,liiight,2022-12-05,2022-07-14,2017-06-01,287,8.149875930521091 -858,jupyter,https://github.com/jupyter/nbdime,,,,jupyter/nbdime,nbdime,2334,151,43,"['jupyterlab-extension', 'jupyter', 'jupyter-notebook', 'diff', 'diffing', 'merge', 'git', 'hg', 'mercurial', 'mergetool', 'merge-driver', 'vcs', 'version-control']",Python,http://nbdime.readthedocs.io,nbdime: Tools for diffing and merging of Jupyter notebooks.,jupyter,2022-12-06,2022-11-24,2015-11-16,368,6.337470907680372 -129,viz,https://github.com/holoviz/holoviews,,,,holoviz/holoviews,holoviews,2330,364,61,"['holoviz', 'holoviews', 'plotting']",Python,https://holoviews.org,"holoviews: With Holoviews, your data visualizes itself.",holoviz,2022-12-05,2022-12-05,2014-05-07,448,5.200892857142857 -136,nlp,https://github.com/ddangelov/top2vec,,,,ddangelov/top2vec,Top2Vec,2329,320,39,"['topic-modeling', 'word-embeddings', 'document-embedding', 'topic-vector', 'topic-search', 'text-search', 'text-semantic-similarity', 'topic-modelling', 'semantic-search', 'bert', 'top2vec', 'sentence-transformers', 'sentence-encoder', 'pre-trained-language-models']",Python,,"Top2Vec learns jointly embedded topic, document and word vectors.",ddangelov,2022-12-06,2022-04-03,2020-03-20,141,16.434475806451612 -875,perf,https://github.com/ipython/ipyparallel,,,,ipython/ipyparallel,ipyparallel,2312,947,119,"['parallel', 'jupyter', 'python']",Jupyter Notebook,https://ipyparallel.readthedocs.io/,ipyparallel: IPython Parallel: Interactive Parallel Computing in Python,ipython,2022-12-06,2022-11-22,2015-04-09,399,5.78206502322258 -886,study,https://github.com/huggingface/deep-rl-class,,,,huggingface/deep-rl-class,deep-rl-class,2300,263,93,"['deep-reinforcement-learning', 'reinforcement-learning', 'reinforcement-learning-excercises', 'deep-learning']",Jupyter Notebook,,deep-rl-class: This repo contain the syllabus of the Hugging Face Deep Reinforcement Learning Class.,huggingface,2022-12-07,2022-12-06,2022-04-21,32,70.0 -809,web,https://github.com/fastapi-users/fastapi-users,,,,fastapi-users/fastapi-users,fastapi-users,2299,236,33,"['python', 'starlette', 'fastapi', 'async', 'asyncio', 'users', 'fastapi-users']",Python,https://fastapi-users.github.io/fastapi-users/,fastapi-users: Ready-to-use and customizable users management for FastAPI,fastapi-users,2022-12-07,2022-11-04,2019-10-05,165,13.885245901639344 -691,ml-dl,https://github.com/nerdyrodent/vqgan-clip,,,,nerdyrodent/vqgan-clip,VQGAN-CLIP,2293,395,53,"['text2image', 'text-to-image']",Python,,"VQGAN-CLIP: Just playing with getting VQGAN+CLIP running locally, rather than having to use colab.",nerdyrodent,2022-12-05,2022-10-02,2021-07-02,74,30.690248565965582 -51,testing,https://github.com/nedbat/coveragepy,,,,nedbat/coveragepy,coveragepy,2292,330,27,[],Python,https://coverage.readthedocs.io,coveragepy: The code coverage tool for Python,nedbat,2022-12-06,2022-12-06,2018-06-23,232,9.855036855036856 -246,util,https://github.com/pyston/pyston,,,,pyston/pyston,pyston,2285,83,32,[],Python,https://www.pyston.org/,pyston: A faster and highly-compatible implementation of the Python programming language.,pyston,2022-12-07,2022-11-23,2021-03-01,92,24.760061919504643 -296,sim,https://github.com/openai/mujoco-py,,,,openai/mujoco-py,mujoco-py,2283,711,157,[],Cython,,"mujoco-py: MuJoCo is a physics engine for detailed, efficient rigid body simulations with contacts. mujoco-py allows using MuJoCo from Python 3.",openai,2022-12-07,2022-11-17,2016-04-24,345,6.609181141439206 -696,ml-dl,https://github.com/deepmind/dm-haiku,,,,deepmind/dm-haiku,dm-haiku,2270,190,37,"['machine-learning', 'neural-networks', 'jax', 'deep-learning', 'deep-neural-networks']",Python,https://dm-haiku.readthedocs.io,dm-haiku: JAX-based neural network library,deepmind,2022-12-06,2022-11-22,2020-02-18,146,15.532746823069404 -814,data,https://github.com/deepchecks/deepchecks,,,,deepchecks/deepchecks,deepchecks,2265,158,13,"['machine-learning', 'ml', 'model-validation', 'data-validation', 'mlops', 'data-science', 'python', 'jupyter-notebook', 'model-monitoring', 'data-drift', 'html-report', 'deep-learning', 'pytorch', 'pandas-dataframe']",Python,https://docs.deepchecks.com,deepchecks: Tests for Continuous Validation of ML Models & Data. Deepchecks is a Python package for comprehensively validating your machine learning models and data with minimal effort.,deepchecks,2022-12-07,2022-12-06,2021-10-11,60,37.57109004739336 -145,ml,https://github.com/nmslib/hnswlib,,,,nmslib/hnswlib,hnswlib,2256,418,62,[],C++,https://github.com/nmslib/hnswlib,hnswlib: Header-only C++/python library for fast approximate nearest neighbors,nmslib,2022-12-06,2022-04-16,2017-07-06,282,7.975757575757576 -735,data,https://github.com/ibis-project/ibis,1.0,,,ibis-project/ibis,ibis,2217,371,77,"['python', 'impala', 'pandas', 'spark', 'database', 'clickhouse', 'postgresql', 'sqlite', 'mysql', 'datafusion', 'sql', 'pyspark', 'dask', 'duckdb', 'bigquery', 'sqlalchemy', 'pyarrow', 'arrow', 'mssql', 'polars']",Python,http://ibis-project.org,ibis: Expressive analytics in Python at any scale.,ibis-project,2022-12-06,2022-12-07,2015-04-17,398,5.560372626298817 -308,util,https://github.com/legrandin/pycryptodome,,,,legrandin/pycryptodome,pycryptodome,2206,403,59,"['cryptography', 'security', 'python']",C,https://www.pycryptodome.org,pycryptodome: A self-contained cryptographic library for Python,legrandin,2022-12-06,2022-12-06,2014-05-02,448,4.91626870423432 -866,ml-ops,https://github.com/mage-ai/mage-ai,1.0,,,mage-ai/mage-ai,mage-ai,2173,189,39,"['machine-learning', 'artificial-intelligence', 'data', 'data-engineering', 'data-science', 'python', 'elt', 'etl', 'pipelines', 'data-pipelines', 'orchestration', 'data-integration', 'sql', 'spark', 'dbt', 'pipeline', 'reverse-etl', 'transformation']",Python,https://www.mage.ai/,mage-ai: 🧙 A modern replacement for Airflow.,mage-ai,2022-12-07,2022-12-06,2022-05-16,29,74.2 -253,ml,https://github.com/microsoft/flaml,,,,microsoft/flaml,FLAML,2158,328,37,"['automl', 'hyperparam', 'automated-machine-learning', 'machine-learning', 'data-science', 'python', 'jupyter-notebook', 'hyperparameter-optimization', 'random-forest', 'scikit-learn', 'deep-learning', 'natural-language-processing', 'natural-language-generation', 'timeseries-forecasting', 'classification', 'regression', 'tuning', 'finetuning', 'tabular-data']",Jupyter Notebook,https://microsoft.github.io/FLAML/,FLAML: A fast library for AutoML and tuning. Join our Discord: https://discord.gg/Cppx2vSPVP.,microsoft,2022-12-07,2022-12-07,2020-08-20,119,18.00476758045292 -710,pandas,https://github.com/jmcarpenter2/swifter,,,,jmcarpenter2/swifter,swifter,2152,97,28,"['pandas', 'pandas-dataframe', 'parallel-computing', 'parallelization', 'dask', 'modin']",Python,,swifter: A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner,jmcarpenter2,2022-12-06,2022-08-16,2018-04-07,243,8.835190615835778 -617,testing,https://github.com/pytest-dev/pytest-testinfra,,,,pytest-dev/pytest-testinfra,pytest-testinfra,2133,312,82,"['python', 'testing', 'infrastructure-as-code', 'devops', 'tdd', 'nagios', 'docker', 'tdd-utilities', 'testing-tools', 'devops-tools', 'infrastructure-testing', 'saltstack', 'chef', 'puppet', 'ansible', 'kubernetes', 'pytest-plugin']",Python,https://testinfra.readthedocs.io,pytest-testinfra: Testinfra test your infrastructures,pytest-dev,2022-12-05,2022-12-06,2015-03-15,403,5.287181303116148 -807,web,https://github.com/flipkart-incubator/astra,,,,flipkart-incubator/astra,Astra,2126,356,84,"['security', 'restapiautomation', 'python', 'owasp', 'penetration-testing-framework', 'postman-collection', 'ci-cd', 'sdlc', 'penetration-testing', 'security-automation']",Python,,Astra: Automated Security Testing For REST API's,flipkart-incubator,2022-12-03,2019-04-05,2018-01-10,256,8.3046875 -503,gis,https://github.com/google/earthengine-api,,,,google/earthengine-api,earthengine-api,2082,888,204,[],JavaScript,,earthengine-api: Python and JavaScript bindings for calling the Earth Engine API.,google,2022-12-07,2022-11-30,2015-04-22,398,5.231155778894473 -222,data,https://github.com/pynamodb/pynamodb,1.0,,,pynamodb/pynamodb,PynamoDB,2048,411,41,"['python', 'dynamodb', 'aws']",Python,http://pynamodb.readthedocs.io,PynamoDB: A pythonic interface to Amazon's DynamoDB,pynamodb,2022-12-07,2022-12-06,2014-01-20,463,4.420598211532532 -198,ml,https://github.com/maif/shapash,,,,maif/shapash,shapash,2044,251,38,"['python', 'machine-learning', 'explainability', 'explainable-ml', 'transparency', 'ethical-artificial-intelligence', 'shap', 'lime', 'interpretability']",Jupyter Notebook,https://maif.github.io/shapash/,shapash: 🔅 Shapash makes Machine Learning models transparent and understandable by everyone,maif,2022-12-07,2022-12-02,2020-04-29,136,15.029411764705882 -268,jupyter,https://github.com/jupyterlab/jupyterlab-desktop,,,,jupyterlab/jupyterlab-desktop,jupyterlab-desktop,2038,211,43,"['jupyterlab', 'jupyter', 'jupyter-notebook']",TypeScript,,"jupyterlab-desktop: JupyterLab desktop application, based on Electron.",jupyterlab,2022-12-07,2022-12-06,2017-05-04,291,6.982868330885952 -860,jupyter,https://github.com/jupyter/nbviewer,,,,jupyter/nbviewer,nbviewer,2031,530,92,"['jupyter', 'jupyter-notebook', 'nbconvert']",Python,https://nbviewer.jupyter.org,nbviewer: nbconvert as a web service: Render Jupyter Notebooks as static web pages,jupyter,2022-11-30,2022-11-07,2012-08-05,539,3.765095338983051 -867,util,https://github.com/dosisod/refurb,1.0,,,dosisod/refurb,refurb,2027,34,14,"['cli', 'mypy', 'python', 'python310', 'testing', 'gplv3', 'hacktoberfest']",Python,,refurb: A tool for refurbishing and modernizing Python codebases,dosisod,2022-12-06,2022-12-06,2022-07-27,19,106.6842105263158 -724,util,https://github.com/ashleve/lightning-hydra-template,,,,ashleve/lightning-hydra-template,lightning-hydra-template,2014,334,18,"['pytorch-lightning', 'wandb', 'project-structure', 'config', 'deep-learning', 'hydra', 'template', 'pytorch', 'research', 'experiments', 'reproducibility', 'experiment-tracking', 'best-practices', 'neptune', 'mlflow', 'tensorboard', 'comet', 'mlops']",Python,,lightning-hydra-template: PyTorch Lightning + Hydra. A very user-friendly template for rapid and reproducible ML experimentation with best practices. ⚡🔥⚡,ashleve,2022-12-07,2022-11-11,2020-11-04,109,18.477064220183486 -878,time-series,https://github.com/nixtla/statsforecast,,,,nixtla/statsforecast,statsforecast,2009,117,20,"['time-series', 'statistics', 'forecasting', 'arima', 'econometrics', 'machine-learning', 'python', 'exponential-smoothing', 'auto-arima', 'ets', 'baselines', 'predictions', 'naive', 'seasonal-naive', 'fbprophet', 'prophet', 'neuralprophet', 'autoarima', 'mstl', 'theta']",Python,https://nixtla.github.io/statsforecast/,statsforecast: Lightning ⚡️ fast forecasting with statistical and econometric models.,nixtla,2022-12-07,2022-12-06,2021-11-24,54,37.2037037037037 -411,util,https://github.com/yaml/pyyaml,,,,yaml/pyyaml,pyyaml,1999,420,46,"['python', 'yaml']",Python,,pyyaml: Canonical source repository for PyYAML,yaml,2022-12-06,2022-09-13,2011-11-03,578,3.453356367226061 -881,time-series,https://github.com/rjt1990/pyflux,,,,rjt1990/pyflux,pyflux,1998,233,70,"['statistics', 'time-series']",Python,,pyflux: Open source time series library for Python,rjt1990,2022-12-03,2018-12-16,2016-02-16,355,5.625905068382944 -748,study,https://github.com/zhanymkanov/fastapi-best-practices,,,,zhanymkanov/fastapi-best-practices,fastapi-best-practices,1962,127,35,"['fastapi', 'best-practices']",,,fastapi-best-practices: FastAPI Best Practices and Conventions we used @ hi.peerlink.me,zhanymkanov,2022-12-07,2022-09-16,2022-08-09,17,114.45 -548,ml,https://github.com/lightly-ai/lightly,,,,lightly-ai/lightly,lightly,1952,159,25,"['deep-learning', 'self-supervised-learning', 'machine-learning', 'computer-vision', 'pytorch', 'embeddings', 'contrastive-learning', 'active-learning']",Python,,lightly: A python library for self-supervised learning on images.,lightly-ai,2022-12-07,2022-12-06,2020-10-13,112,17.406369426751592 -323,gui,https://github.com/wxwidgets/phoenix,,,,wxwidgets/phoenix,Phoenix,1905,488,105,"['python', 'cross-platform', 'gui-framework', 'gui-toolkit', 'gui', 'windows', 'macosx', 'linux', 'awesome', 'wxwidgets', 'wxpython']",Python,http://wxpython.org/,"Phoenix: wxPython's Project Phoenix. A new implementation of wxPython, better, stronger, faster than he was before.",wxwidgets,2022-12-06,2022-11-10,2012-07-17,542,3.513833992094862 -590,util,https://github.com/hgrecco/pint,,,,hgrecco/pint,pint,1891,405,40,"['python', 'science', 'units']",Python,http://pint.readthedocs.org/,pint: Operate and manipulate physical quantities in Python,hgrecco,2022-12-06,2022-11-29,2012-07-13,542,3.4843379836799158 -233,crypto,https://github.com/ethereum/py-evm,,,,ethereum/py-evm,py-evm,1878,576,98,"['evm', 'ethereum', 'python', 'ethereum-virtual-machine']",Python,https://py-evm.readthedocs.io/en/latest/,py-evm: A Python implementation of the Ethereum Virtual Machine,ethereum,2022-12-06,2022-11-14,2016-12-27,310,6.0552740672501155 -353,ml-interpretability,https://github.com/seldonio/alibi,,,,seldonio/alibi,alibi,1868,213,43,"['machine-learning', 'explanations', 'interpretability', 'counterfactual', 'xai']",Python,https://docs.seldon.io/projects/alibi/en/stable/,alibi: Algorithms for explaining machine learning models,seldonio,2022-12-06,2022-11-24,2019-02-26,197,9.47536231884058 -441,gis,https://github.com/rasterio/rasterio,1.0,,,rasterio/rasterio,rasterio,1853,490,152,"['python', 'gis', 'raster', 'gdal', 'cli', 'cython', 'mapbox-satellite-oss']",Python,https://rasterio.readthedocs.io/,Rasterio reads and writes geospatial raster datasets,rasterio,2022-12-06,2022-12-01,2013-11-04,474,3.9069277108433735 -813,data,https://github.com/datafold/data-diff,,,,datafold/data-diff,data-diff,1849,81,14,"['database', 'mysql', 'postgresql', 'snowflake', 'rdbms', 'trino', 'data-engineering', 'data-quality', 'data-science', 'data-quality-monitoring', 'databricks-sql', 'dataengineering', 'dataquality', 'oracle-database', 'postgres', 'sql']",Python,https://www.datafold.com/blog/open-source-data-diff,data-diff: Efficiently diff data in or across relational databases,datafold,2022-12-07,2022-12-06,2022-03-07,39,47.06545454545454 -713,gis,https://github.com/mcordts/cityscapesscripts,,,,mcordts/cityscapesscripts,cityscapesScripts,1832,565,46,[],Python,,cityscapesScripts: README and scripts for the Cityscapes Dataset,mcordts,2022-12-07,2022-10-22,2016-02-20,354,5.1668009669621275 -452,pandas,https://github.com/pandera-dev/pandera,1.0,,,pandera-dev/pandera,pandera,1829,155,12,"['pandas', 'validation', 'schema', 'dataframes', 'testing', 'pandas-validation', 'pandas-dataframe', 'data-validation', 'data-cleaning', 'data-check', 'testing-tools', 'assertions', 'data-assertions', 'data-verification', 'dataframe-schema', 'hypothesis-testing', 'pandas-validator', 'data-processing']",Python,https://www.union.ai/pandera,"pandera: A light-weight, flexible, and expressive statistical data testing library",pandera-dev,2022-12-06,2022-11-14,2018-11-01,213,8.55243820975284 -856,profiling,https://github.com/jiffyclub/snakeviz,,,,jiffyclub/snakeviz,snakeviz,1823,128,22,[],Python,https://jiffyclub.github.io/snakeviz/,snakeviz: An in-browser Python profile viewer,jiffyclub,2022-12-04,2021-10-25,2012-06-26,545,3.344077568134172 -823,data,https://github.com/uqfoundation/dill,1.0,,,uqfoundation/dill,dill,1814,149,22,[],Python,http://dill.rtfd.io,dill: serialize all of python,uqfoundation,2022-12-06,2022-10-26,2013-06-28,492,3.6816468541606264 -46,jupyter,https://github.com/maartenbreddels/ipyvolume,,,,maartenbreddels/ipyvolume,ipyvolume,1807,233,53,"['ipython-widget', 'jupyter', 'jupyter-notebook', 'python', 'visualisation', 'volume-rendering', 'virtual-reality', 'plotting', 'dataviz', 'scientific-visualization', 'webgl', 'threejs', 'rendering-3d-volumes', 'quiver']",TypeScript,,ipyvolume: 3d plotting for Python in the Jupyter notebook based on IPython widgets using WebGL,maartenbreddels,2022-12-04,2022-07-26,2016-12-21,311,5.810289389067524 -540,nlp,https://github.com/salesforce/codegen,,,,salesforce/codegen,CodeGen,1805,133,35,"['programsynthesis', 'generativemodel', 'codex', 'languagemodel', 'llm', 'tpu-acceleration']",Python,,CodeGen is an open-source model for program synthesis. Trained on TPU-v4. Competitive with OpenAI Codex.,salesforce,2022-12-07,2022-12-01,2022-03-28,36,49.74409448818898 -115,perf,https://github.com/h5py/h5py,,,,h5py/h5py,h5py,1799,479,55,[],Python,http://www.h5py.org,h5py: HDF5 for Python -- The h5py package is a Pythonic interface to the HDF5 binary data format.,h5py,2022-12-06,2022-11-24,2012-09-21,532,3.37704478412443 -601,gis,https://github.com/plant99/felicette,,,,plant99/felicette,felicette,1792,86,38,"['geospatial-data', 'gis', 'geospatial-visualization', 'geospatial', 'python', 'python3', 'geoinformatics', 'earth-observation', 'earth-science', 'satellite-imagery', 'satellite-images', 'satellite-data']",Python,,felicette: Satellite imagery for dummies.,plant99,2022-12-06,2021-09-08,2020-07-12,125,14.287015945330296 -648,util,https://github.com/grahamdumpleton/wrapt,,,,grahamdumpleton/wrapt,wrapt,1790,208,45,[],Python,,"wrapt: A Python module for decorators, wrappers and monkey patching.",grahamdumpleton,2022-12-06,2022-10-28,2013-05-29,497,3.601609657947686 -871,profiling,https://github.com/reloadware/reloadium,1.0,,,reloadware/reloadium,reloadium,1783,26,23,"['hot-reload', 'hot-reloading', 'python', 'python3', 'edit-and-continue', 'django', 'flask', 'pandas']",Python,https://reloadium.io,reloadium: Advanced Hot Reloading & Profiling for Python,reloadware,2022-12-07,2022-11-29,2022-01-15,46,38.285276073619634 -295,util,https://github.com/pyfilesystem/pyfilesystem2,,,,pyfilesystem/pyfilesystem2,pyfilesystem2,1782,170,45,"['filesystem', 'pyfilesystem', 'pyfilesystem2', 'python', 'ftp', 'tar', 'zip', 'filesystem-library']",Python,https://www.pyfilesystem.org,pyfilesystem2: Python's Filesystem abstraction layer,pyfilesystem,2022-12-02,2022-10-18,2016-10-14,320,5.556347438752784 -506,ml-ops,https://github.com/adap/flower,,,,adap/flower,flower,1776,378,24,"['flower', 'federated-learning', 'federated-learning-framework', 'pytorch-federated-learning', 'tensorflow-federated-learning', 'keras-federated-learning', 'federated-analytics', 'fleet-learning', 'fleet-intelligence']",Python,https://flower.dev,Flower - A Friendly Federated Learning Framework,adap,2022-12-07,2022-12-06,2020-02-17,146,12.140625 -63,sim,https://github.com/projectmesa/mesa,,,,projectmesa/mesa,mesa,1774,756,90,"['mesa', 'agent-based-modeling', 'agent-based-simulation', 'simulation-framework', 'simulation', 'simulation-environment', 'complex-systems', 'complexity-analysis', 'modeling-agents', 'spatial-models', 'gis']",Python,,Mesa is an agent-based modeling framework in Python,projectmesa,2022-12-05,2022-12-07,2014-09-19,428,4.137954015328224 -310,data,https://github.com/graphistry/pygraphistry,,,,graphistry/pygraphistry,pygraphistry,1759,185,48,"['graph', 'visualization', 'gpu', 'graphistry', 'python', 'rapids', 'cugraph', 'networkx', 'neo4j', 'tigergraph', 'pandas', 'csv', 'webgl', 'splunk', 'cudf', 'jupyter', 'igraph', 'network-analysis', 'network-visualization', 'graph-visualization']",Python,,"PyGraphistry is a Python library to quickly load, shape, embed, and explore big graphs with the GPU-accelerated Graphistry visual graph analyzer",graphistry,2022-12-07,2022-11-29,2015-06-02,392,4.485610200364299 -32,nlp,https://github.com/jamesturk/jellyfish,,,,jamesturk/jellyfish,jellyfish,1759,148,43,"['python', 'levenshtein', 'soundex', 'hamming', 'metaphone', 'jaro-winkler', 'fuzzy-search', 'hacktoberfest']",Python,https://jamesturk.github.io/jellyfish/,jellyfish: 🪼 a python library for doing approximate and phonetic matching of strings.,jamesturk,2022-12-05,2022-11-07,2010-07-09,647,2.71570357300397 -9,ml,https://github.com/contextlab/hypertools,,,,contextlab/hypertools,hypertools,1754,159,60,"['data-visualization', 'high-dimensional-data', 'python', 'topic-modeling', 'text-vectorization', 'data-wrangling', 'visualization', 'time-series']",Python,http://hypertools.readthedocs.io/en/latest/,hypertools: A Python toolbox for gaining geometric insights into high-dimensional data,contextlab,2022-11-27,2022-02-12,2016-09-27,323,5.4279398762157385 -201,util,https://github.com/camelot-dev/camelot,,,,camelot-dev/camelot,camelot,1743,330,39,[],Python,https://camelot-py.readthedocs.io,camelot: A Python library to extract tabular data from PDFs,camelot-dev,2022-12-05,2021-07-11,2019-07-01,179,9.72191235059761 -843,ml,https://github.com/aws/sagemaker-python-sdk,,,,aws/sagemaker-python-sdk,sagemaker-python-sdk,1740,899,131,"['aws', 'mxnet', 'tensorflow', 'machine-learning', 'python', 'pytorch', 'sagemaker', 'huggingface']",Python,https://sagemaker.readthedocs.io/,sagemaker-python-sdk: A library for training and deploying machine learning models on Amazon SageMaker,aws,2022-12-06,2022-12-07,2017-11-14,264,6.587344510546242 -749,diffusion,https://github.com/nateraw/stable-diffusion-videos,,,,nateraw/stable-diffusion-videos,stable-diffusion-videos,1722,151,19,"['ai-art', 'huggingface', 'huggingface-diffusers', 'machine-learning', 'stable-diffusion']",Python,,stable-diffusion-videos: Create 🔥 videos with Stable Diffusion by exploring the latent space and morphing between text prompts,nateraw,2022-12-07,2022-12-05,2022-09-06,13,131.02173913043478 -25,util,https://github.com/google/gin-config,,,,google/gin-config,gin-config,1705,107,22,"['python', 'configuration-management', 'tensorflow', 'tensorflow-experiments']",Python,,gin-config: Gin provides a lightweight configuration framework for Python,google,2022-12-07,2022-12-05,2018-06-27,232,7.349137931034483 -297,util,https://github.com/pyparsing/pyparsing,,,,pyparsing/pyparsing,pyparsing,1704,236,23,"['python', 'python2', 'python3', 'python-2', 'python-3', 'parser-combinators', 'parsing-expression-grammar', 'parsing', 'parsing-library', 'text-processing', 'peg-parsers']",Python,,pyparsing: Python library for creating PEG parsers,pyparsing,2022-12-07,2022-11-11,2017-05-14,290,5.867191342843089 -365,ml,https://github.com/rentruewang/koila,,,,rentruewang/koila,koila,1686,58,11,"['pytorch', 'lazy-evaluation', 'out-of-memory', 'python', 'machine-learning', 'deep-learning', 'memory-management', 'gradient-accumulation', 'neural-network']",Python,https://rentruewang.github.io/koila,koila: Prevent PyTorch's `CUDA error: out of memory` in just 1 line of code.,rentruewang,2022-12-04,2022-11-26,2021-11-17,55,30.654545454545456 -806,web,https://github.com/python-restx/flask-restx,,,,python-restx/flask-restx,flask-restx,1682,283,64,"['python', 'api', 'swagger', 'flask', 'rest', 'json', 'restful', 'restplus', 'restx']",Python,https://flask-restx.readthedocs.io/en/latest/,"flask-restx: Fork of Flask-RESTPlus: Fully featured framework for fast, easy and documented API development with Flask",python-restx,2022-12-07,2022-11-02,2020-01-09,151,11.076199435559737 -416,ml,https://github.com/bmabey/pyldavis,,,,bmabey/pyldavis,pyLDAvis,1667,340,57,[],Jupyter Notebook,,pyLDAvis: Python library for interactive topic model visualization. Port of the R LDAvis package.,bmabey,2022-12-04,2021-03-24,2015-04-09,399,4.168988924615935 -543,data,https://github.com/sqlalchemy/alembic,,,,sqlalchemy/alembic,alembic,1659,170,18,"['sqlalchemy', 'sql', 'python']",Python,,alembic: A database migrations tool for SQLAlchemy.,sqlalchemy,2022-12-07,2022-11-28,2018-11-27,210,7.894629503738953 -217,ml,https://github.com/linkedin/greykite,1.0,,,linkedin/greykite,greykite,1648,87,37,[],Python,,"greykite: A flexible, intuitive and fast forecasting library",linkedin,2022-12-06,2022-08-31,2021-04-27,84,19.58573853989813 -330,nlp,https://github.com/franck-dernoncourt/neuroner,,,,franck-dernoncourt/neuroner,NeuroNER,1637,482,84,"['nlp', 'machine-learning', 'neural-networks', 'named-entity-recognition', 'deep-learning', 'tensorflow']",Python,http://neuroner.com,NeuroNER: Named-entity recognition using neural networks. Easy-to-use and state-of-the-art results.,franck-dernoncourt,2022-12-07,2019-10-02,2017-03-07,300,5.454069490718705 -302,template,https://github.com/pyscaffold/pyscaffold,,,,pyscaffold/pyscaffold,pyscaffold,1636,169,39,"['python', 'release-automation', 'git', 'distribution', 'package-creation', 'template-project', 'project-template', 'package']",Python,https://pyscaffold.org,pyscaffold: 🛠 Python project template generator with batteries included,pyscaffold,2022-12-06,2022-11-28,2014-04-02,453,3.6114790286975715 -732,study,https://github.com/amanchadha/coursera-deep-learning-specialization,,,,amanchadha/coursera-deep-learning-specialization,coursera-deep-learning-specialization,1634,1442,16,"['deep-learning', 'coursera', 'coursera-assignment', 'coursera-specialization', 'coursera-machine-learning', 'andrew-ng', 'andrew-ng-course', 'convolutional-neural-networks', 'cnns', 'recurrent-neural-networks', 'rnns', 'convolutional-neural-network', 'recurrent-neural-network', 'hyperparameter-optimization', 'hyperparameter-tuning', 'neural-network', 'neural-networks', 'neural-machine-translation', 'neural-style-transfer', 'regularization']",Jupyter Notebook,,"coursera-deep-learning-specialization: Notes, programming assignments and quizzes from all courses within the Coursera Deep Learning specialization offered by deeplearning.ai: (i) Neural Networks and Deep Learning; (ii) Improving Deep Neural Networks: Hyperparameter tuning, Regularization and Optimization; (iii) Structuring Machine Learning Projects; (iv) Convolutional Neural Networks; (v) Sequence Models",amanchadha,2022-12-07,2022-02-07,2020-06-24,128,12.765625 -424,debug,https://github.com/gotcha/ipdb,,,,gotcha/ipdb,ipdb,1633,143,27,"['python', 'ipython', 'debugger']",Python,,ipdb: Integration of IPython pdb,gotcha,2022-12-02,2021-12-30,2011-01-15,620,2.6314456721915285 -755,ml,https://github.com/marqo-ai/marqo,,,,marqo-ai/marqo,marqo,1624,61,19,"['deep-learning', 'search', 'information-retrieval', 'machinelearning', 'vector-search', 'tensor-search', 'clip', 'multi-modal', 'search-engine', 'timm', 'transformers', 'vision-language', 'machine-learning', 'semantic-search', 'visual-search', 'natural-language-processing', 'hnsw', 'knn', 'hacktoberfest', 'hacktoberfest-accepted']",Python,https://www.marqo.ai/,marqo: Tensor search for humans.,marqo-ai,2022-12-07,2022-12-07,2022-08-01,18,88.8125 -699,util,https://github.com/grantjenks/python-diskcache,,,,grantjenks/python-diskcache,python-diskcache,1617,106,18,"['python', 'cache', 'persistence', 'key-value-store', 'filesystem']",Python,http://www.grantjenks.com/docs/diskcache/,python-diskcache: Python disk-backed cache (Django-compatible). Faster than Redis and Memcached. Pure-Python.,grantjenks,2022-12-06,2022-02-20,2016-02-03,357,4.529411764705882 -256,crypto,https://github.com/bmoscon/cryptofeed,,,,bmoscon/cryptofeed,cryptofeed,1605,517,75,"['python', 'trading', 'market-data', 'cryptocurrency', 'bitcoin', 'exchange', 'websockets', 'coinbase', 'binance', 'influxdb', 'asyncio', 'websocket', 'ftx-exchange', 'trading-platform', 'ethereum', 'cryptocurrencies', 'btc', 'crypto', 'coinbase-api']",Python,,cryptofeed: Cryptocurrency Exchange Websocket Data Feed Handler,bmoscon,2022-12-07,2022-12-02,2017-12-16,259,6.183269124931205 -779,nlp,https://github.com/deepset-ai/farm,,,,deepset-ai/farm,FARM,1598,231,56,"['language-models', 'bert', 'nlp', 'deep-learning', 'transfer-learning', 'pytorch', 'nlp-library', 'nlp-framework', 'xlnet-pytorch', 'ner', 'question-answering', 'pretrained-models', 'roberta', 'germanbert']",Python,https://farm.deepset.ai,FARM: :house_with_garden: Fast & easy transfer learning for NLP. Harvesting language models for the industry. Focus on Question Answering.,deepset-ai,2022-12-07,2022-08-31,2019-07-17,177,9.028248587570621 -383,nlp,https://github.com/minimaxir/aitextgen,,,,minimaxir/aitextgen,aitextgen,1593,181,37,[],Python,https://docs.aitextgen.io,aitextgen: A robust Python tool for text-based AI training and generation using GPT-2.,minimaxir,2022-12-07,2022-08-09,2019-12-29,153,10.38268156424581 -509,ml,https://github.com/tensorflow/addons,,,,tensorflow/addons,addons,1587,594,57,"['machine-learning', 'deep-learning', 'tensorflow', 'neural-network', 'tensorflow-addons', 'python']",Python,,addons: Useful extra functionality for TensorFlow 2.x maintained by SIG-addons,tensorflow,2022-12-06,2022-11-23,2018-11-26,210,7.546875 -768,ml-dl,https://github.com/fepegar/torchio,,,,fepegar/torchio,torchio,1570,195,14,"['pytorch', 'medical-image-computing', 'deep-learning', 'data-augmentation', 'medical-images', 'machine-learning', 'python', 'medical-image-processing', 'medical-image-analysis', 'medical-imaging-datasets', 'medical-imaging-with-deep-learning', 'augmentation']",Python,http://www.torchio.org,torchio: Medical imaging toolkit for deep learning,fepegar,2022-12-07,2022-11-19,2019-11-26,158,9.92773261065944 -767,study,https://github.com/fluentpython/example-code-2e,,,,fluentpython/example-code-2e,example-code-2e,1566,458,52,"['python', 'python3', 'concurrency', 'iterators', 'metaprogramming', 'special-methods']",Python,https://amzn.to/3J48u2J,"example-code-2e: Example code for Fluent Python, 2nd edition (O'Reilly 2022) ",fluentpython,2022-12-07,2022-04-24,2019-03-21,193,8.078113485630066 -195,sim,https://github.com/pettingzoo-team/pettingzoo,,,,pettingzoo-team/pettingzoo,PettingZoo,1560,249,16,[],Python,https://pettingzoo.farama.org,PettingZoo: Gymnasium for multi-agent reinforcement learning,pettingzoo-team,2022-12-07,2022-11-15,2020-01-20,150,10.38022813688213 -263,sim,https://github.com/quantecon/quantecon.py,,,,quantecon/quantecon.py,QuantEcon.py,1560,2100,150,[],Python,https://quantecon.org/quantecon-py/,QuantEcon.py: A community based Python library for quantitative economics,quantecon,2022-12-06,2022-12-04,2013-03-22,506,3.078658020862701 -825,study,https://github.com/alirezadir/machine-learning-interview-enlightener,,,,alirezadir/machine-learning-interview-enlightener,machine-learning-interview-enlightener,1557,327,47,"['machine-learning', 'machine-learning-algorithms', 'ai', 'deep-learning', 'system-design', 'scalable-applications', 'interview', 'interview-preparation', 'interview-practice', 'interviews']",Jupyter Notebook,,machine-learning-interview-enlightener: This repo is meant to serve as a guide for Machine Learning/AI technical interviews. ,alirezadir,2022-12-07,2022-05-25,2021-01-31,96,16.14666666666667 -597,time-series,https://github.com/uber/orbit,,,,uber/orbit,orbit,1553,115,31,"['python', 'forecasting', 'bayesian', 'exponential-smoothing', 'pyro', 'stan', 'pystan', 'probabilistic-programming', 'probabilistic', 'forecast', 'orbit', 'time-series', 'regression', 'arima', 'changepoint', 'bayesian-methods', 'bayesian-statistics', 'machine-learning', 'regression-models', 'pytorch']",Python,https://orbit-ml.readthedocs.io/en/stable/,orbit: A Python package for Bayesian forecasting with object-oriented design and probabilistic models under the hood.,uber,2022-12-06,2022-11-30,2020-01-07,152,10.207511737089202 -377,ml-interpretability,https://github.com/jalammar/ecco,,,,jalammar/ecco,ecco,1549,108,20,"['nlp', 'visualization', 'explorables', 'natural-language-processing', 'pytorch', 'language-models']",Jupyter Notebook,https://ecco.readthedocs.io,"ecco: Explain, analyze, and visualize NLP language models. Ecco creates interactive visualizations directly in Jupyter notebooks explaining the behavior of Transformer-based language models (like GPT2, BERT, RoBERTA, T5, and T0).",jalammar,2022-12-05,2022-01-18,2020-11-07,108,14.267105263157895 -143,nlp,https://github.com/plasticityai/magnitude,,,,plasticityai/magnitude,magnitude,1542,113,37,"['python', 'natural-language-processing', 'nlp', 'machine-learning', 'vectors', 'embeddings', 'word2vec', 'fasttext', 'glove', 'gensim', 'fast', 'memory-efficient', 'machine-learning-library', 'word-embeddings']",Python,,"magnitude: A fast, efficient universal vector embedding utility package.",plasticityai,2022-12-06,2020-07-17,2018-02-24,249,6.178591871780195 -299,util,https://github.com/julienpalard/pipe,,,,julienpalard/pipe,Pipe,1540,101,25,[],Python,,Pipe: A Python library to use infix notation in Python,julienpalard,2022-12-04,2022-11-16,2010-04-08,660,2.3303069606571554 -596,data,https://github.com/uber/petastorm,,,,uber/petastorm,petastorm,1536,265,41,"['tensorflow', 'pytorch', 'deep-learning', 'machine-learning', 'sysml', 'pyspark', 'pyarrow', 'parquet', 'parquet-files']",Python,,"Petastorm library enables single machine or distributed training and evaluation of deep learning models from datasets in Apache Parquet format. It supports ML frameworks such as Tensorflow, Pytorch, and PySpark and can be used from pure Python code.",uber,2022-12-07,2022-09-14,2018-06-15,233,6.572127139364303 -311,util,https://github.com/linkedin/shiv,,,,linkedin/shiv,shiv,1530,84,26,[],Python,,"shiv is a command line utility for building fully self contained Python zipapps as outlined in PEP 441, but with all their dependencies included.",linkedin,2022-12-06,2022-11-04,2018-03-13,247,6.190751445086705 -635,debug,https://github.com/alexmojaki/birdseye,,,,alexmojaki/birdseye,birdseye,1522,76,43,"['python-debugger', 'python', 'debugger', 'debugging', 'birdseye', 'ast']",JavaScript,https://birdseye.readthedocs.io,birdseye: Graphical Python debugger which lets you easily view the values of all evaluated expressions,alexmojaki,2022-12-04,2022-05-18,2017-07-22,280,5.424643584521385 -662,util,https://github.com/numba/llvmlite,,,,numba/llvmlite,llvmlite,1514,285,55,[],Python,http://llvmlite.pydata.org/,llvmlite: A lightweight LLVM python binding for writing JIT compilers,numba,2022-12-06,2022-12-05,2014-08-07,434,3.4816031537450725 -205,debug,https://github.com/alexmojaki/heartrate,,,,alexmojaki/heartrate,heartrate,1498,120,30,"['python', 'visualization', 'debugger']",Python,,heartrate: Simple real time visualisation of the execution of a Python program.,alexmojaki,2022-12-06,2021-11-13,2019-04-24,189,7.925925925925926 -799,web,https://github.com/pallets/quart,,,,pallets/quart,quart,1497,88,25,"['asyncio', 'python', 'http-server', 'asgi', 'quart']",Python,https://quart.palletsprojects.com,quart: An async Python micro framework for building web applications. ,pallets,2022-12-07,2022-11-14,2017-11-10,264,5.655153804641123 -458,ml-dl,https://github.com/nebuly-ai/nebullvm,,,,nebuly-ai/nebullvm,nebullvm,1495,68,17,"['deep-learning', 'pytorch', 'onnx', 'machine-learning', 'tensorflow', 'tvm', 'openvino', 'tensorrt', 'huggingface', 'compiler', 'computing', 'inference']",Python,,nebullvm: Accelerate AI models inference leveraging best-of-breed optimization techniques 🚀,nebuly-ai,2022-12-06,2022-11-30,2022-02-12,42,35.11744966442953 -612,testing,https://github.com/pytest-dev/pytest-mock,,,,pytest-dev/pytest-mock,pytest-mock,1488,118,33,"['pytest', 'mock', 'hacktoberfest']",Python,https://pytest-mock.readthedocs.io/en/latest/,pytest-mock: Thin-wrapper around the mock package for easier use with pytest,pytest-dev,2022-12-06,2022-11-29,2014-07-17,437,3.39836867862969 -498,ml-dl,https://github.com/vt-vl-lab/fgvc,,,,vt-vl-lab/fgvc,FGVC,1472,237,68,[],Python,,FGVC: [ECCV 2020] Flow-edge Guided Video Completion ,vt-vl-lab,2022-12-02,2021-12-14,2020-09-09,117,12.581196581196581 -224,sim,https://github.com/google/brax,,,,google/brax,brax,1471,146,31,"['jax', 'reinforcement-learning', 'robotics', 'physics-simulation']",Jupyter Notebook,,brax: Massively parallel rigidbody physics simulation on accelerator hardware.,google,2022-12-07,2022-10-13,2021-06-02,79,18.620253164556964 -795,web,https://github.com/starlite-api/starlite,,,,starlite-api/starlite,starlite,1469,130,22,"['python', 'api', 'rest', 'mypy', 'pydantic', 'types', 'asgi', 'json', 'openapi', 'redoc', 'starlette']",Python,https://starlite-api.github.io/starlite/,"starlite: Light, Flexible and Extensible ASGI API framework",starlite-api,2022-12-06,2022-12-06,2021-12-06,52,28.095628415300546 -436,nlp,https://github.com/recognai/rubrix,,,,recognai/rubrix,argilla,1454,133,18,"['python', 'data-science', 'human-in-the-loop', 'natural-language-processing', 'mlops', 'artificial-intelligence', 'knowledge-graph', 'developer-tools', 'text-labeling', 'annotation-tool', 'nlp', 'machine-learning', 'active-learning', 'weak-supervision', 'weakly-supervised-learning', 'spacy', 'text-classification', 'dataops', 'text-annotation', 'hacktoberfest']",Python,https://docs.argilla.io,argilla: ✨ Open-source tool for data-centric NLP. Argilla helps domain experts and data teams to build better NLP datasets in less time.,recognai,2022-12-07,2022-11-30,2021-04-28,84,17.30952380952381 -531,ml-dl,https://github.com/neuralmagic/sparseml,,,,neuralmagic/sparseml,sparseml,1443,103,36,"['pytorch', 'keras', 'model-sparsification', 'sparsification-recipes', 'tensorflow', 'smaller-models', 'deep-learning-library', 'deep-learning-algorithms', 'deep-learning-models', 'automl', 'pruning-algorithms', 'sparsity', 'sparsification', 'recipe-driven-approaches', 'pruning', 'computer-vision-algorithms', 'object-detection', 'image-classification', 'nlp', 'onnx']",Python,,"sparseml: Libraries for applying sparsification recipes to neural networks with a few lines of code, enabling faster and smaller models",neuralmagic,2022-12-07,2022-12-05,2020-12-11,103,13.913223140495868 -638,perf,https://github.com/dask/distributed,,,,dask/distributed,distributed,1427,664,59,"['pydata', 'dask', 'distributed-computing', 'python', 'hacktoberfest']",Python,https://distributed.dask.org,distributed: A distributed task scheduler for Dask,dask,2022-12-07,2022-12-06,2015-09-13,377,3.7808478425435275 -591,template,https://github.com/buuntu/fastapi-react,,,,buuntu/fastapi-react,fastapi-react,1415,233,34,"['fastapi', 'postgres', 'cookiecutter', 'react', 'react-admin', 'nginx', 'boilerplate', 'full-stack', 'typescript', 'sqlalchemy', 'jwt', 'oauth2', 'docker']",Python,,"fastapi-react: 🚀 Cookiecutter Template for FastAPI + React Projects. Using PostgreSQL, SQLAlchemy, and Docker",buuntu,2022-12-06,2022-02-18,2020-03-21,141,9.994954591321896 -861,jupyter,https://github.com/jupyter/nbconvert,,,,jupyter/nbconvert,nbconvert,1415,509,50,[],Python,https://nbconvert.readthedocs.io/,nbconvert: Jupyter Notebook Conversion,jupyter,2022-12-06,2022-12-06,2015-04-09,399,3.538763844230082 -324,security,https://github.com/pyupio/safety,,,,pyupio/safety,safety,1413,122,31,"['python', 'security', 'security-vulnerability', 'travis', 'vulnerability-scanners', 'vulnerability-detection']",Python,https://pyup.io/safety/,Safety checks Python dependencies for known security vulnerabilities and suggests the proper remediations for vulnerabilities detected.,pyupio,2022-12-06,2022-11-28,2016-10-19,320,4.415625 -108,util,https://github.com/nficano/python-lambda,,,,nficano/python-lambda,python-lambda,1413,227,31,"['python', 'aws', 'aws-lambda', 'microservices', 'serverless']",Python,,python-lambda: A toolkit for developing and deploying serverless Python code in AWS Lambda. ,nficano,2022-11-27,2022-06-03,2016-02-26,353,3.994749596122779 -378,ml-interpretability,https://github.com/oegedijk/explainerdashboard,,,,oegedijk/explainerdashboard,explainerdashboard,1396,182,15,"['dash', 'shap-values', 'dashboard', 'model-predictions', 'data-scientists', 'explainer', 'interactive-dashboards', 'permutation-importances', 'shap', 'plotly', 'inner-workings', 'interactive-plots', 'xai-library', 'xai']",Python,http://explainerdashboard.readthedocs.io,"explainerdashboard: Quickly build Explainable AI dashboards that show the inner workings of so-called ""blackbox"" machine learning models.",oegedijk,2022-12-07,2022-06-16,2019-10-30,162,8.617283950617283 -429,jupyter,https://github.com/jupyter-lsp/jupyterlab-lsp,,,,jupyter-lsp/jupyterlab-lsp,jupyterlab-lsp,1381,115,16,"['jupyterlab', 'jupyterlab-extension', 'language-server-protocol', 'jupyter-lab', 'lsp', 'linter', 'jupyter', 'jupyter-notebook', 'notebook', 'notebook-jupyter', 'ipython', 'autocompletion', 'julia-language', 'r']",TypeScript,,jupyterlab-lsp: Coding assistance for JupyterLab (code navigation + hover suggestions + linters + autocompletion + rename) using Language Server Protocol,jupyter-lsp,2022-12-07,2022-09-28,2019-08-17,172,8.00248344370861 -284,data,https://github.com/sdispater/orator,,,,sdispater/orator,orator,1371,166,46,"['python', 'orm', 'database']",Python,https://orator-orm.com,orator: The Orator ORM provides a simple yet beautiful ActiveRecord implementation.,sdispater,2022-11-27,2022-03-13,2015-05-24,393,3.4847494553376905 -149,data,https://github.com/simple-salesforce/simple-salesforce,,,,simple-salesforce/simple-salesforce,simple-salesforce,1368,604,88,"['salesforce', 'api', 'api-client', 'python']",Python,,simple-salesforce: A very simple Salesforce.com REST API client for Python,simple-salesforce,2022-12-05,2022-10-26,2013-01-17,515,2.651896981445583 -267,nlp,https://github.com/arxiv-vanity/arxiv-vanity,,,,arxiv-vanity/arxiv-vanity,arxiv-vanity,1363,87,22,"['latex', 'academic-publishing', 'science', 'arxiv']",Python,https://www.arxiv-vanity.com,arxiv-vanity: Renders papers from arXiv as responsive web pages so you don't have to squint at a PDF.,arxiv-vanity,2022-12-07,2022-01-18,2017-08-12,277,4.91044776119403 -438,gis,https://github.com/giswqs/leafmap,,,,giswqs/leafmap,leafmap,1361,162,40,"['ipyleaflet', 'folium', 'mapping', 'python', 'geopython', 'jupyter-notebook', 'jupyter', 'gis', 'dataviz', 'data-science', 'whiteboxtools', 'geospatial', 'geospatial-analysis', 'leafmap', 'streamlit', 'streamlit-webapp', 'plotly', 'pydeck', 'keplergl']",Python,https://leafmap.org,leafmap: A Python package for interactive mapping and geospatial analysis with minimal coding in a Jupyter environment,giswqs,2022-12-06,2022-12-01,2021-03-10,91,14.956043956043956 -613,testing,https://github.com/pytest-dev/pytest-cov,,,,pytest-dev/pytest-cov,pytest-cov,1353,188,33,"['pytest', 'python']",Python,,pytest-cov: Coverage plugin for pytest.,pytest-dev,2022-12-02,2022-12-03,2014-04-17,450,3.0009505703422055 -721,util,https://github.com/omry/omegaconf,,,,omry/omegaconf,omegaconf,1353,71,17,"['python', 'yaml', 'yaml-configuration', 'configuration-files', 'configuration-loader', 'python-types', 'schema-validator']",Python,,omegaconf: Flexible Python configuration system. The last one you will ever need.,omry,2022-12-06,2022-12-06,2018-09-03,222,6.086760925449871 -298,crypto,https://github.com/blankly-finance/blankly,,,,blankly-finance/blankly,blankly,1341,172,28,"['cryptocurrency', 'bot-framework', 'investment', 'bots', 'bot', 'coinbase', 'binance', 'blankly', 'stocks', 'platform', 'framework', 'trading', 'trading-bot', 'trading-strategies', 'python', 'crypto', 'algotrading']",Python,https://package.blankly.finance,"blankly: 🚀 💸 Easily build, backtest and deploy your algo in just a few lines of code. Trade stocks, cryptos, and forex across exchanges w/ one package.",blankly-finance,2022-12-07,2022-11-24,2021-03-09,91,14.713166144200628 -478,ml-dl,https://github.com/tensorflow/mesh,,,,tensorflow/mesh,mesh,1340,233,43,[],Python,,Mesh TensorFlow: Model Parallelism Made Easier,tensorflow,2022-12-05,2022-10-04,2018-09-20,219,6.094866796621183 -318,gamedev,https://github.com/pythonarcade/arcade,1.0,,,pythonarcade/arcade,arcade,1338,253,56,"['python3', 'python', 'arcade-framework', 'arcade-api', 'arcade-learning-environment', 'opengl', 'educational-technology', 'educational-resources']",Python,http://arcade.academy,arcade: Easy to use Python library for creating 2D arcade games.,pythonarcade,2022-12-07,2022-12-04,2016-01-04,361,3.7034400948991695 -683,util,https://github.com/spotify/basic-pitch,,,,spotify/basic-pitch,basic-pitch,1334,62,24,"['lightweight', 'machine-learning', 'midi', 'music', 'pitch-detection', 'polyphonic', 'transcription', 'audio', 'python', 'typescript']",Python,https://basicpitch.io,basic-pitch: A lightweight yet powerful audio-to-MIDI converter with pitch bend detection,spotify,2022-12-06,2022-08-30,2022-05-03,31,42.8348623853211 -460,nlp,https://github.com/google-research/language,,,,google-research/language,language,1333,311,64,"['natural-language-processing', 'machine-learning', 'research']",Python,https://ai.google/research/teams/language/,language: Shared repository for open-sourced projects from the Google AI Language team.,google-research,2022-11-28,2022-10-17,2018-10-16,216,6.167217448777263 -659,ml,https://github.com/tensorly/tensorly,,,,tensorly/tensorly,tensorly,1332,261,45,"['machine-learning', 'tensor', 'decomposition', 'tensor-algebra', 'tensorly', 'tensor-learning', 'python', 'tensor-methods', 'pytorch', 'mxnet', 'jax', 'tensorflow', 'cupy', 'numpy', 'tensor-decomposition', 'tensor-factorization', 'tensor-regression', 'regression']",Python,http://tensorly.org,TensorLy: Tensor Learning in Python.,tensorly,2022-12-06,2022-11-22,2016-10-21,319,4.166219839142091 -898,ml-ops,https://github.com/hi-primus/optimus,,,,hi-primus/optimus,optimus,1320,223,40,"['spark', 'pyspark', 'data-wrangling', 'bigdata', 'big-data-cleaning', 'data-science', 'data-cleansing', 'data-cleaner', 'data-transformation', 'machine-learning', 'data-profiling', 'data-extraction', 'data-exploration', 'data-analysis', 'data-preparation', 'cudf', 'dask', 'dask-cudf', 'data-cleaning']",Python,https://hi-optimus.com,"optimus: :truck: Agile Data Preparation Workflows made easy with Pandas, Dask, cuDF, Dask-cuDF, Vaex and PySpark",hi-primus,2022-12-07,2022-10-17,2017-07-13,281,4.683223517486062 -450,gis,https://github.com/jupyter-widgets/ipyleaflet,,,,jupyter-widgets/ipyleaflet,ipyleaflet,1314,348,61,"['jupyterlab-extension', 'leaflet', 'visualization', 'jupyter']",JavaScript,https://ipyleaflet.readthedocs.io,ipyleaflet: A Jupyter - Leaflet.js bridge,jupyter-widgets,2022-12-07,2022-10-27,2014-05-07,448,2.9330357142857144 -876,study,https://github.com/rasbt/machine-learning-book,,,,rasbt/machine-learning-book,machine-learning-book,1310,482,26,"['machine-learning', 'scikit-learn', 'deep-learning', 'neural-networks', 'pytorch']",Jupyter Notebook,https://sebastianraschka.com/books/#machine-learning-with-pytorch-and-scikit-learn,machine-learning-book: Code Repository for Machine Learning with PyTorch and Scikit-Learn,rasbt,2022-12-07,2022-11-30,2021-12-19,50,25.977337110481585 -317,gamedev,https://github.com/pyglet/pyglet,,,,pyglet/pyglet,pyglet,1304,247,29,"['pyglet', 'python', 'opengl', 'gamedev', 'scientific-visualization']",Python,http://pyglet.org,"pyglet is a cross-platform windowing and multimedia library for Python, for developing games and other visually rich applications.",pyglet,2022-12-07,2022-12-04,2019-06-09,182,7.148003132341425 -877,time-series,https://github.com/alkaline-ml/pmdarima,,,,alkaline-ml/pmdarima,pmdarima,1282,222,36,"['arima', 'time-series', 'forecasting', 'forecasting-models', 'python', 'econometrics', 'pmdarima', 'machine-learning', 'sarimax']",Python,https://www.alkaline-ml.com/pmdarima,"pmdarima: A statistical library designed to fill the void in Python's time series analysis capabilities, including the equivalent of R's auto.arima function.",alkaline-ml,2022-12-07,2022-11-03,2017-03-30,296,4.318575553416747 -766,diffusion,https://github.com/divamgupta/stable-diffusion-tensorflow,,,,divamgupta/stable-diffusion-tensorflow,stable-diffusion-tensorflow,1276,167,19,[],Python,,stable-diffusion-tensorflow: Stable Diffusion in TensorFlow / Keras,divamgupta,2022-12-06,2022-11-22,2022-09-15,11,107.6144578313253 -676,gis,https://github.com/apache/incubator-sedona,,,,apache/incubator-sedona,incubator-sedona,1269,532,101,"['cluster-computing', 'spatial-sql', 'geospatial', 'spatial-analysis', 'spatial-query', 'scala', 'java', 'python']",Java,http://sedona.apache.org/,incubator-sedona: A cluster computing framework for processing large-scale geospatial data,apache,2022-12-05,2022-12-03,2015-04-24,397,3.1907327586206895 -391,data,https://github.com/mchong6/jojogan,,,,mchong6/jojogan,JoJoGAN,1264,185,24,"['image-translation', 'gans', 'anime']",Jupyter Notebook,,Official PyTorch repo for JoJoGAN: One Shot Face Stylization,mchong6,2022-12-06,2022-02-05,2021-12-17,50,24.92394366197183 -514,data,https://github.com/agronholm/sqlacodegen,,,,agronholm/sqlacodegen,sqlacodegen,1235,195,20,[],Python,,sqlacodegen: Automatic model code generator for SQLAlchemy,agronholm,2022-12-06,2022-11-23,2016-12-28,310,3.9838709677419355 -465,ml-dl,https://github.com/pytorch/torchrec,,,,pytorch/torchrec,torchrec,1231,200,24,"['pytorch', 'gpu', 'deep-learning', 'cuda', 'recommender-system', 'recommendation-system', 'sharding']",Python,,torchrec: Pytorch domain library for recommendation systems,pytorch,2022-12-07,2022-12-06,2021-07-12,73,16.797270955165693 -885,time-series,https://github.com/aistream-peelout/flow-forecast,,,,aistream-peelout/flow-forecast,flow-forecast,1218,207,19,"['deep-learning', 'pytorch', 'time-series-forecasting', 'time-series', 'transfer-learning', 'deep-neural-networks', 'transformer', 'forecasting', 'lstm', 'time-series-regression', 'state-of-the-art-models', 'anomaly-detection', 'time-series-analysis', 'hacktoberfest']",Python,https://flow-forecast.atlassian.net/wiki/spaces/FF/overview,"flow-forecast: Deep learning PyTorch library for time series forecasting, classification, and anomaly detection (originally for flood forecasting).",aistream-peelout,2022-12-06,2022-12-06,2019-08-15,172,7.046280991735538 -414,nlp,https://github.com/chrismattmann/tika-python,,,,chrismattmann/tika-python,tika-python,1213,222,37,"['tika-server', 'python', 'tika-python', 'tika-server-jar', 'parser-interface', 'parse', 'translation-interface', 'usc', 'text-extraction', 'mime', 'buffer', 'memex', 'text-recognition', 'detection', 'recognition', 'nlp', 'nlp-machine-learning', 'nlp-library', 'covid-19', 'extraction']",Python,,Tika-Python is a Python binding to the Apache Tika™ REST services allowing Tika to be called natively in the Python community.,chrismattmann,2022-12-06,2021-06-07,2014-06-26,440,2.7514581983149706 -178,nlp,https://github.com/explosion/spacy-models,,,,explosion/spacy-models,spacy-models,1211,271,47,"['spacy', 'nlp', 'natural-language-processing', 'machine-learning', 'models', 'machine-learning-models', 'statistical-models', 'spacy-models']",Python,https://spacy.io,spacy-models: 💫 Models for the spaCy Natural Language Processing (NLP) library,explosion,2022-12-05,2022-11-30,2017-03-14,299,4.048233046800382 -581,ml-dl,https://github.com/alpa-projects/alpa,,,,alpa-projects/alpa,alpa,1203,130,20,"['deep-learning', 'machine-learning', 'compiler', 'distributed-training', 'high-performance-computing', 'alpa', 'jax', 'distributed-computing', 'llm', 'auto-parallelization']",Python,https://alpa.ai,alpa: Training and serving large-scale neural networks,alpa-projects,2022-12-07,2022-12-07,2021-02-22,93,12.895865237366003 -474,nlp,https://github.com/neuralmagic/deepsparse,,,,neuralmagic/deepsparse,deepsparse,1183,71,36,"['ml', 'machinelearning', 'pytorch', 'tensorflow', 'onnx', 'deepsparse-engine', 'sparsified-models', 'sparsification-recipe', 'inference', 'computer-vision', 'object-detection', 'pruning', 'quantization', 'pretrained-models', 'nlp', 'auto-ml', 'cpus', 'yolov3', 'sparsification', 'cpu-inference-api']",Python,,deepsparse: Inference runtime offering GPU-class performance on CPUs and APIs to integrate ML into your application,neuralmagic,2022-12-07,2022-12-01,2020-12-14,103,11.453665283540802 -162,nlp,https://github.com/explosion/spacy-transformers,,,,explosion/spacy-transformers,spacy-transformers,1177,152,30,"['spacy', 'spacy-pipeline', 'spacy-extension', 'nlp', 'natural-language-processing', 'natural-language-understanding', 'pytorch', 'bert', 'google', 'pytorch-model', 'openai', 'language-model', 'machine-learning', 'huggingface', 'transfer-learning', 'xlnet', 'gpt-2']",Python,https://spacy.io/usage/embeddings-transformers,"spacy-transformers: 🛸 Use pretrained transformers like BERT, XLNet and GPT-2 in spaCy",explosion,2022-12-03,2022-11-17,2019-07-26,175,6.698373983739837 -264,data,https://github.com/collerek/ormar,,,,collerek/ormar,ormar,1173,60,15,"['orm', 'sqlalchemy', 'async-orm', 'python-orm', 'fastapi', 'pydantic', 'alembic', 'databases']",Python,https://collerek.github.io/ormar/,ormar: python async orm with fastapi in mind and pydantic validation,collerek,2022-12-06,2022-11-23,2020-08-02,122,9.581096849474912 -435,data,https://github.com/sdv-dev/sdv,,,,sdv-dev/sdv,SDV,1169,188,39,"['synthetic-data', 'machine-learning', 'relational-datasets', 'multi-table', 'time-series', 'synthetic-data-generation', 'sdv', 'data-generation', 'generative-adversarial-network', 'gan', 'gans', 'deep-learning', 'generative-ai', 'generative-model']",Python,https://sdv.dev/SDV,"SDV: Synthetic Data Generation for tabular, relational and time series data.",sdv-dev,2022-12-06,2022-12-06,2018-05-11,238,4.897067624177139 -566,gis,https://github.com/gboeing/osmnx-examples,,,,gboeing/osmnx-examples,osmnx-examples,1165,433,54,"['street-networks', 'binder', 'jupyter-notebook', 'notebooks', 'urban-planning', 'city', 'cities', 'openstreetmap', 'network-analysis', 'transport', 'transportation', 'accessibility', 'urban-data-science', 'urban-analytics', 'public-transport', 'python', 'transit', 'urban-design']",Jupyter Notebook,https://github.com/gboeing/osmnx,"osmnx-examples: Usage examples, demos, and tutorials for OSMnx.",gboeing,2022-12-06,2022-08-05,2017-07-22,280,4.152240325865581 -372,gis,https://github.com/microsoft/torchgeo,,,,microsoft/torchgeo,torchgeo,1162,137,32,"['pytorch', 'torchvision', 'datasets', 'models', 'transforms', 'remote-sensing', 'deep-learning', 'earth-observation']",Python,https://torchgeo.rtfd.io,"TorchGeo: datasets, samplers, transforms, and pre-trained models for geospatial data",microsoft,2022-12-07,2022-12-05,2021-05-21,80,14.39646017699115 -647,data,https://github.com/pytables/pytables,,,,pytables/pytables,PyTables,1161,235,59,[],Python,http://www.pytables.org,PyTables: A Python package to manage extremely large amounts of data,pytables,2022-12-01,2022-11-17,2011-06-03,600,1.9326991676575505 -451,util,https://github.com/imageio/imageio,,,,imageio/imageio,imageio,1155,232,31,"['python', 'imageio', 'animated-gif', 'video', 'webcam-capture', 'scientific-formats', 'dicom']",Python,https://imageio.readthedocs.io,imageio: Python library for reading and writing image data,imageio,2022-12-05,2022-11-29,2013-05-04,500,2.3073630136986303 -494,ml-dl,https://github.com/hysts/pytorch_image_classification,,,,hysts/pytorch_image_classification,pytorch_image_classification,1154,291,27,"['pytorch', 'computer-vision', 'cifar10', 'fashion-mnist', 'imagenet']",Python,,pytorch_image_classification: PyTorch implementation of image classification models for CIFAR-10/CIFAR-100/MNIST/FashionMNIST/Kuzushiji-MNIST/ImageNet,hysts,2022-12-06,2021-12-12,2017-12-09,260,4.428728070175438 -304,nlp,https://github.com/featureform/embeddinghub,,,,featureform/embeddinghub,featureform,1150,42,12,"['machine-learning', 'data-science', 'vector-database', 'embeddings-similarity', 'embeddings', 'hacktoberfest', 'feature-store', 'mlops', 'data-quality', 'feature-engineering', 'ml', 'python']",Go,https://www.featureform.com,featureform: The Virtual Feature Store. Turn your existing data infrastructure into a feature store.,featureform,2022-12-07,2022-12-07,2020-10-16,111,10.294117647058824 -725,typing,https://github.com/patrick-kidger/torchtyping,,,,patrick-kidger/torchtyping,torchtyping,1149,27,13,"['tensors', 'named-tensors', 'shape', 'pytorch', 'typing', 'python-typing']",Python,,"torchtyping: Type annotations and dynamic checking for a tensor's shape, dtype, names, etc.",patrick-kidger,2022-12-03,2022-07-11,2021-03-28,88,12.993537964458804 -862,jupyter,https://github.com/jupyter/nbgrader,,,,jupyter/nbgrader,nbgrader,1148,314,43,"['nbgrader', 'jupyter', 'jupyter-notebook', 'jupyterhub', 'teaching', 'grading']",Python,https://nbgrader.readthedocs.io/,nbgrader: A system for assigning and grading notebooks,jupyter,2022-12-07,2022-11-30,2014-09-13,429,2.672430994346525 -16,perf,https://github.com/eventlet/eventlet,,,,eventlet/eventlet,eventlet,1138,295,62,"['python', 'concurrency', 'network', 'c10k', 'greenlet', 'production-ready']",Python,https://eventlet.net,eventlet: Concurrent networking library for Python,eventlet,2022-12-05,2022-11-17,2012-12-11,521,2.1836622807017543 -636,util,https://github.com/pygments/pygments,,,,pygments/pygments,pygments,1137,484,26,"['python', 'syntax-highlighting']",Python,http://pygments.org/,Pygments is a generic syntax highlighter written in Python,pygments,2022-12-07,2022-12-05,2019-08-31,170,6.665829145728643 -489,gis,https://github.com/scitools/cartopy,,,,scitools/cartopy,cartopy,1137,334,55,"['cartopy', 'matplotlib', 'python', 'geometry', 'maps', 'spatial', 'projections']",Python,https://scitools.org.uk/cartopy/docs/latest,Cartopy - a cartographic python library with matplotlib support,scitools,2022-12-06,2022-11-30,2012-08-03,539,2.106670195870831 -338,perf,https://github.com/tlkh/asitop,,,,tlkh/asitop,asitop,1133,67,13,"['cpu', 'gpu', 'cli', 'macos', 'm1', 'apple-silicon']",Python,https://tlkh.github.io/asitop/,asitop: Perf monitoring CLI tool for Apple Silicon,tlkh,2022-12-06,2022-08-20,2021-10-27,58,19.53448275862069 -194,web,https://github.com/jordaneremieff/mangum,,,,jordaneremieff/mangum,mangum,1128,78,15,"['asgi', 'aws', 'lambda', 'serverless', 'python', 'asyncio', 'api-gateway', 'starlette', 'fastapi', 'quart', 'django', 'sanic', 'aws-lambda', 'python3']",Python,https://mangum.io/,mangum: AWS Lambda support for ASGI applications,jordaneremieff,2022-12-07,2022-11-27,2019-01-14,203,5.548840477863668 -720,math,https://github.com/facebookresearch/theseus,,,,facebookresearch/theseus,theseus,1125,74,28,"['differentiable-optimization', 'robotics', 'embodied-ai', 'nonlinear-least-squares', 'pytorch', 'deep-learning', 'computer-vision', 'gauss-newton', 'levenberg-marquardt', 'implicit-differentiation', 'bilevel-optimization']",Python,,theseus: A library for differentiable nonlinear optimization,facebookresearch,2022-12-07,2022-12-05,2021-11-18,54,20.5078125 -403,perf,https://github.com/agronholm/anyio,,,,agronholm/anyio,anyio,1125,95,24,"['async-await', 'trio', 'asyncio', 'curio']",Python,,anyio: High level asynchronous concurrency and networking framework that works on top of either trio or asyncio,agronholm,2022-12-01,2022-11-26,2018-08-19,224,5.012730744748568 -545,ml,https://github.com/borealisai/advertorch,,,,borealisai/advertorch,advertorch,1119,178,27,"['pytorch', 'adversarial-examples', 'adversarial-example', 'adversarial-perturbations', 'adversarial-attacks', 'adversarial-machine-learning', 'adversarial-learning', 'robustness', 'toolbox', 'security', 'machine-learning', 'benchmarking']",Jupyter Notebook,,advertorch: A Toolbox for Adversarial Robustness Research,borealisai,2022-12-07,2022-05-29,2018-11-29,209,5.332198774676651 -802,util,https://github.com/open-telemetry/opentelemetry-python,,,,open-telemetry/opentelemetry-python,opentelemetry-python,1113,402,36,"['python', 'opentelemetry', 'tracecontext', 'correlationcontext', 'distributed-tracing', 'logging', 'metrics', 'sdk']",Python,https://opentelemetry.io,opentelemetry-python: OpenTelemetry Python API and SDK ,open-telemetry,2022-12-07,2022-12-06,2019-05-07,187,5.947328244274809 -726,perf,https://github.com/omyyyy/pycom,,,,omyyyy/pycom,pycom,1097,21,17,[],C++,,"pycom: A Python compiler, down to native code, using C++",omyyyy,2022-12-01,2022-08-31,2022-07-16,20,53.326388888888886 -618,testing,https://github.com/pytest-dev/pytest-bdd,,,,pytest-dev/pytest-bdd,pytest-bdd,1096,186,53,[],Python,https://pytest-bdd.readthedocs.io/en/latest/,pytest-bdd: BDD library for the py.test runner,pytest-dev,2022-12-06,2022-12-06,2013-03-29,505,2.167231638418079 -396,web,https://github.com/neoteroi/blacksheep,,,,neoteroi/blacksheep,BlackSheep,1095,49,24,"['asyncio', 'server', 'http', 'asgi', 'blacksheep', 'python', 'http-server', 'rest', 'web', 'framework']",Python,https://www.neoteroi.dev/blacksheep/,BlackSheep: Fast ASGI web framework for Python,neoteroi,2022-12-05,2022-11-20,2018-11-22,210,5.193089430894309 -656,web,https://github.com/magicstack/httptools,,,,magicstack/httptools,httptools,1081,69,40,[],Python,,httptools: Fast HTTP parser,magicstack,2022-11-29,2022-09-13,2016-04-25,345,3.1307405875051715 -448,gis,https://github.com/pysal/pysal,1.0,,,pysal/pysal,pysal,1080,283,81,[],Jupyter Notebook,http://pysal.org/pysal,PySAL: Python Spatial Analysis Library Meta-Package,pysal,2022-12-01,2022-07-23,2013-02-19,511,2.112912241475685 -798,data,https://github.com/jsonpickle/jsonpickle,,,,jsonpickle/jsonpickle,jsonpickle,1078,152,31,"['json', 'python', 'serialization', 'pickle', 'deserialization', 'objectstorage', 'bsd-3-clause']",Python,https://jsonpickle.github.io,"jsonpickle: Python library for serializing any arbitrary object graph into JSON. It can take almost any Python object and turn the object into JSON. Additionally, it can reconstitute the object back into Python.",jsonpickle,2022-12-06,2022-12-02,2009-12-10,677,1.5903055848261327 -771,data,https://github.com/google/tensorstore,,,,google/tensorstore,tensorstore,1065,77,30,[],C++,https://google.github.io/tensorstore/,tensorstore: Library for reading and writing large multi-dimensional arrays.,google,2022-12-03,2022-12-06,2020-03-30,140,7.591649694501018 -512,typing,https://github.com/agronholm/typeguard,,,,agronholm/typeguard,typeguard,1064,79,17,[],Python,,typeguard: Run-time type checker for Python,agronholm,2022-12-03,2022-10-11,2015-12-27,362,2.935750886874261 -417,pandas,https://github.com/pyjanitor-devs/pyjanitor,1.0,,,pyjanitor-devs/pyjanitor,pyjanitor,1063,159,20,"['pandas', 'dataframe', 'data', 'cleaning-data', 'data-engineering', 'pydata', 'hacktoberfest']",Python,https://pyjanitor-devs.github.io/pyjanitor,pyjanitor: Clean APIs for data cleaning. Python implementation of R package Janitor,pyjanitor-devs,2022-12-06,2022-11-30,2018-03-04,248,4.27889591719379 -829,study,https://github.com/huggingface/diffusion-models-class,,,,huggingface/diffusion-models-class,diffusion-models-class,1059,75,64,[],Jupyter Notebook,,diffusion-models-class: Materials for the Hugging Face Diffusion Models Course,huggingface,2022-12-07,2022-12-05,2022-10-13,7,134.78181818181818 -651,profiling,https://github.com/p403n1x87/austin,,,,p403n1x87/austin,austin,1058,35,14,"['python', 'profiling', 'performance', 'debugging-tools']",C,,austin: Python frame stack sampler for CPython,p403n1x87,2022-12-04,2022-10-28,2018-09-20,219,4.8122157244964265 -626,viz,https://github.com/enthought/mayavi,,,,enthought/mayavi,mayavi,1054,264,93,[],Python,http://docs.enthought.com/mayavi/mayavi/,mayavi: 3D visualization of scientific data in Python,enthought,2022-12-06,2022-10-18,2011-01-24,619,1.7019607843137254 -703,util,https://github.com/openai/openai-python,,,,openai/openai-python,openai-python,1053,296,47,[],Python,,openai/openai-python,openai,2022-12-07,2022-11-17,2020-10-25,110,9.535575679172057 -627,data,https://github.com/zarr-developers/zarr-python,,,,zarr-developers/zarr-python,zarr-python,1052,210,43,"['hacktoberfest', 'zarr', 'ndimensional-arrays', 'compressed', 'python']",Python,http://zarr.readthedocs.io/,"zarr-python: An implementation of chunked, compressed, N-dimensional arrays for Python.",zarr-developers,2022-12-07,2022-12-07,2015-12-15,364,2.888976069046685 -619,testing,https://github.com/pytest-dev/pytest-asyncio,,,,pytest-dev/pytest-asyncio,pytest-asyncio,1050,115,34,[],Python,https://pytest-asyncio.readthedocs.io,pytest-asyncio: Asyncio support for pytest,pytest-dev,2022-12-06,2022-12-01,2015-04-11,399,2.6278155166249553 -239,data,https://github.com/simonw/sqlite-utils,,,,simonw/sqlite-utils,sqlite-utils,1043,81,17,"['sqlite', 'python', 'datasette', 'sqlite-database', 'click', 'cli', 'datasette-io', 'datasette-tool']",Python,https://sqlite-utils.datasette.io,sqlite-utils: Python CLI utility and library for manipulating SQLite databases,simonw,2022-12-07,2022-11-29,2018-07-14,229,4.543248288736777 -609,testing,https://github.com/pytest-dev/pytest-xdist,,,,pytest-dev/pytest-xdist,pytest-xdist,1038,185,45,"['hacktoberfest', 'pytest', 'pytest-plugin']",Python,https://pytest-xdist.readthedocs.io,pytest-xdist: pytest plugin for distributed testing and loop-on-failures testing modes. ,pytest-dev,2022-12-06,2022-12-06,2015-09-01,379,2.7377543330821403 -644,util,https://github.com/metachris/logzero,,,,metachris/logzero,logzero,1035,70,26,"['python', 'logging', 'logzero', 'logfiles']",Python,https://logzero.readthedocs.io,logzero: Robust and effective logging for Python 2 and 3.,metachris,2022-12-04,2021-03-17,2017-06-12,286,3.6152694610778444 -449,gis,https://github.com/residentmario/geoplot,1.0,,,residentmario/geoplot,geoplot,1030,90,35,"['geospatial-visualization', 'geospatial-data', 'matplotlib', 'geopandas', 'spatial-analysis']",Python,https://residentmario.github.io/geoplot/index.html,geoplot: High-level geospatial data visualization library for Python.,residentmario,2022-12-01,2022-03-18,2016-06-29,336,3.0654761904761907 -191,ml,https://github.com/awslabs/dgl-ke,,,,awslabs/dgl-ke,dgl-ke,1030,174,23,"['machine-learning', 'knowledge-graph', 'knowledge-graphs-embeddings', 'graph-learning', 'dgl']",Python,https://dglke.dgl.ai/doc/,"dgl-ke: High performance, easy-to-use, and scalable package for learning large-scale knowledge graph embeddings.",awslabs,2022-12-06,2022-11-18,2020-03-03,144,7.145688800792864 -817,ml-dl,https://github.com/calculatedcontent/weightwatcher,,,,calculatedcontent/weightwatcher,WeightWatcher,1029,94,29,[],Python,,WeightWatcher: The WeightWatcher tool for predicting the accuracy of Deep Neural Networks,calculatedcontent,2022-12-07,2022-12-07,2018-11-28,210,4.9 -654,profiling,https://github.com/sumerc/yappi,,,,sumerc/yappi,yappi,1026,57,13,"['profilers', 'multi-threaded-applications', 'coroutine', 'asynchronous', 'python', 'asyncio', 'performance', 'profile', 'asgi', 'cpu', 'thread', 'gevent', 'greenlet', 'multithreading']",Python,,"yappi: Yet Another Python Profiler, but this time multithreading, asyncio and gevent aware.",sumerc,2022-12-06,2022-11-25,2009-10-07,687,1.4934497816593886 -580,util,https://github.com/lidatong/dataclasses-json,,,,lidatong/dataclasses-json,dataclasses-json,1011,114,9,"['dataclasses', 'json', 'python']",Python,,dataclasses-json: Easily serialize Data Classes to and from JSON,lidatong,2022-12-07,2022-08-14,2018-04-21,241,4.185097575399172 -598,data,https://github.com/uber/fiber,,,,uber/fiber,fiber,994,112,21,"['python', 'distributed-computing', 'multiprocessing', 'sandbox', 'machine-learning']",Python,https://uber.github.io/fiber/,fiber: Distributed Computing for AI Made Simple,uber,2022-12-06,2021-03-15,2020-01-07,152,6.533333333333333 -666,ml,https://github.com/huggingface/evaluate,,,,huggingface/evaluate,evaluate,994,79,36,"['evaluation', 'machine-learning']",Python,https://huggingface.co/docs/evaluate,🤗 Evaluate: A library for easily evaluating machine learning models and datasets.,huggingface,2022-12-07,2022-12-06,2022-03-30,36,27.61111111111111 -406,perf,https://github.com/pympler/pympler,,,,pympler/pympler,pympler,989,82,10,[],Python,,"pympler: Development tool to measure, monitor and analyze the memory behavior of Python objects in a running Python application.",pympler,2022-12-03,2022-07-24,2012-10-04,530,1.8630247578040904 -728,gis,https://github.com/geospatialpython/pyshp,,,,geospatialpython/pyshp,pyshp,984,258,63,[],Python,,pyshp: This library reads and writes ESRI Shapefiles in pure Python.,geospatialpython,2022-12-06,2022-07-28,2014-03-04,457,2.1525 -444,gis,https://github.com/toblerity/fiona,,,,toblerity/fiona,Fiona,977,190,49,"['python', 'gis', 'vector', 'gdal', 'ogr', 'cli', 'cython']",Python,https://fiona.readthedocs.io/,Fiona reads and writes geographic data files,toblerity,2022-11-24,2022-03-01,2011-12-31,570,1.712318477716575 -447,ml,https://github.com/csinva/imodels,,,,csinva/imodels,imodels,971,97,22,"['interpretability', 'machine-learning', 'data-science', 'artificial-intelligence', 'ml', 'ai', 'statistics', 'scikit-learn', 'python', 'optimal-classification-tree', 'rulefit', 'imodels', 'rule-learning', 'supervised-learning', 'explainable-ml', 'explainable-ai', 'rules', 'bayesian-rule-list']",Jupyter Notebook,https://csinva.io/imodels,"imodels: Interpretable ML package 🔍 for concise, transparent, and accurate predictive modeling (sklearn-compatible).",csinva,2022-12-07,2022-12-06,2019-07-04,178,5.428913738019169 -739,pandas,https://github.com/machow/siuba,,,,machow/siuba,siuba,970,40,20,"['data-analysis', 'python', 'pandas', 'sql', 'dplyr']",Python,https://siuba.org,siuba: Python library for using dplyr like syntax with pandas and SQL,machow,2022-12-03,2022-11-16,2019-02-09,199,4.860415175375805 -707,util,https://github.com/brandon-rhodes/python-patterns,,,,brandon-rhodes/python-patterns,python-patterns,965,88,247,[],Python,,python-patterns: Source code behind the python-patterns.guide site by Brandon Rhodes,brandon-rhodes,2022-12-04,2021-01-05,2018-01-31,253,3.814229249011858 -614,testing,https://github.com/teemu/pytest-sugar,,,,teemu/pytest-sugar,pytest-sugar,954,67,17,"['pytest', 'pytest-sugar', 'python', 'testing', 'pytest-plugin']",Python,,"pytest-sugar: a plugin for py.test that changes the default look and feel of py.test (e.g. progressbar, show tests that fail instantly)",teemu,2022-12-06,2022-12-04,2013-06-25,493,1.9345307068366164 -482,gis,https://github.com/sentinel-hub/eo-learn,,,,sentinel-hub/eo-learn,eo-learn,948,275,51,"['machine-learning', 'eo-data', 'eo-research', 'python-package']",Python,,eo-learn: Earth observation processing framework for machine learning in Python,sentinel-hub,2022-12-06,2022-11-23,2018-05-31,235,4.019382192610539 -631,util,https://github.com/pyca/bcrypt,,,,pyca/bcrypt,bcrypt,941,134,29,['python'],Python,,bcrypt: Modern(-ish) password hashing for your software and your servers,pyca,2022-12-06,2022-12-06,2013-05-11,499,1.8836145267372033 -633,util,https://github.com/pyca/pynacl,,,,pyca/pynacl,pynacl,935,220,28,"['cryptography', 'libsodium', 'nacl', 'python']",C,https://pynacl.readthedocs.io/,pynacl: Python binding to the Networking and Cryptography (NaCl) library,pyca,2022-12-04,2022-12-05,2013-02-22,510,1.8307692307692307 -740,ml,https://github.com/koaning/scikit-lego,,,,koaning/scikit-lego,scikit-lego,932,99,18,"['scikit-learn', 'machine-learning', 'common-sense']",Python,https://scikit-lego.netlify.app,scikit-lego: Extra blocks for scikit-learn pipelines.,koaning,2022-12-05,2022-11-02,2019-01-21,202,4.607344632768362 -271,crypto,https://github.com/man-c/pycoingecko,,,,man-c/pycoingecko,pycoingecko,931,242,32,"['python3', 'api-wrapper', 'api', 'wrapper', 'cryptocurrency', 'crypto', 'coingecko', 'python', 'nft', 'nfts']",Python,,pycoingecko: Python wrapper for the CoinGecko API,man-c,2022-12-03,2022-10-26,2018-08-24,223,4.161558109833972 -820,viz,https://github.com/facultyai/dash-bootstrap-components,,,,facultyai/dash-bootstrap-components,dash-bootstrap-components,925,201,21,"['bootstrap', 'plotly-dash', 'python', 'dashboards', 'r', 'julia']",JavaScript,https://dash-bootstrap-components.opensource.faculty.ai/,dash-bootstrap-components: Bootstrap components for Plotly Dash,facultyai,2022-12-04,2022-08-03,2018-09-21,219,4.21001300390117 -236,sim,https://github.com/salesforce/ai-economist,1.0,,,salesforce/ai-economist,ai-economist,913,189,44,"['ai', 'ml', 'multi-agent', 'multi-agent-reinforcement-learning', 'deep-reinforcement-learning', 'reinforcement-learning-environments', 'simulation-framework', 'python-3', 'economics']",Python,https://www.einstein.ai/the-ai-economist,"ai-economist: Foundation is a flexible, modular, and composable framework to model socio-economic behaviors and dynamics with both agents and governments. This framework can be used in conjunction with reinforcement learning to learn optimal economic policies, as done by the AI Economist (https://www.einstein.ai/the-ai-economist).",salesforce,2022-12-05,2022-05-09,2020-07-02,126,7.197072072072072 -88,testing,https://github.com/taverntesting/tavern,,,,taverntesting/tavern,tavern,908,179,28,"['python', 'pytest', 'testing', 'test-automation', 'mqtt', 'http']",Python,https://taverntesting.github.io/,"tavern: A command-line tool and Python library and Pytest plugin for automated testing of RESTful APIs, with a simple, concise and flexible YAML-based syntax",taverntesting,2022-12-01,2022-11-27,2017-11-01,266,3.4135338345864663 -379,ml-interpretability,https://github.com/cdpierse/transformers-interpret,,,,cdpierse/transformers-interpret,transformers-interpret,907,80,16,"['nlp', 'machine-learning', 'natural-language-processing', 'explainable-ai', 'transformers', 'model-explainability', 'transformers-model', 'captum', 'deep-learning', 'neural-network', 'interpretability', 'computer-vision']",Jupyter Notebook,,transformers-interpret: Model explainability that works seamlessly with 🤗 transformers. Explain your transformers model in just 2 lines of code. ,cdpierse,2022-12-06,2022-11-17,2020-05-27,132,6.871212121212121 -541,util,https://github.com/pdoc3/pdoc,,,,pdoc3/pdoc,pdoc,905,136,8,"['documentation', 'generator', 'documentation-generator', 'documentation-tool', 'documentation-dumper', 'api-documentation', 'python', 'python3', 'docs', 'docs-generator', 'docstrings', 'docstring', 'docstring-documentation', 'pdoc', 'hacktoberfest']",Python,https://pdoc3.github.io/pdoc/,pdoc: :snake: :arrow_right: :scroll: Auto-generate API documentation for Python projects,pdoc3,2022-12-03,2022-10-29,2019-01-02,205,4.414634146341464 -212,data,https://github.com/sfu-db/connector-x,1.0,,,sfu-db/connector-x,connector-x,901,66,24,"['rust', 'python', 'database', 'sql', 'dataframe']",Rust,https://sfu-db.github.io/connector-x/intro.html,connector-x: Fastest library to load data from DB to DataFrames in Rust and Python,sfu-db,2022-12-06,2022-12-05,2021-01-13,99,9.1010101010101 -251,ml-dl,https://github.com/tensorflow/similarity,,,,tensorflow/similarity,similarity,900,84,27,"['similarity-learning', 'metric-learning', 'similarity-search', 'nearest-neighbor-search', 'nearest-neighbors', 'deep-learning', 'tensorflow', 'contrastive-learning', 'machine-learning', 'unsupervised-learning', 'clustering', 'python', 'simclr', 'simclr2', 'barlow-twins', 'simsiam', 'cosine-similarity', 'knn']",Python,,similarity: TensorFlow Similarity is a python package focused on making similarity learning quick and easy.,tensorflow,2022-12-05,2022-12-02,2020-06-15,129,6.961325966850829 -622,util,https://github.com/pytoolz/cytoolz,,,,pytoolz/cytoolz,cytoolz,890,67,23,[],Python,,cytoolz: Cython implementation of Toolz: High performance functional utilities,pytoolz,2022-12-06,2022-11-06,2014-04-04,452,1.96591984853266 -387,nlp,https://github.com/shivam5992/textstat,,,,shivam5992/textstat,textstat,889,145,17,"['python', 'textstat', 'readability', 'flesch-kincaid-grade', 'smog', 'flesch-reading-ease']",Python,https://textstat.org,"textstat: :memo: python package to calculate readability statistics of a text object - paragraphs, sentences, articles.",shivam5992,2022-12-06,2022-07-08,2014-06-18,442,2.01131221719457 -504,gis,https://github.com/anitagraser/movingpandas,,,,anitagraser/movingpandas,movingpandas,888,164,36,"['geopandas', 'trajectory', 'movement-data', 'trajectory-analysis', 'python', 'spatial-data-analysis']",Python,http://movingpandas.org,movingpandas: Implementation of Trajectory classes and functions built on top of GeoPandas,anitagraser,2022-12-06,2022-12-02,2018-12-16,207,4.2809917355371905 -672,perf,https://github.com/markshannon/faster-cpython,,,,markshannon/faster-cpython,faster-cpython,883,20,83,[],,,faster-cpython: How to make CPython faster.,markshannon,2022-12-06,2020-10-28,2020-10-19,111,7.934531450577664 -630,gis,https://github.com/pytroll/satpy,,,,pytroll/satpy,satpy,880,255,32,"['python', 'satellite', 'weather', 'hacktoberfest', 'dask', 'xarray', 'closember']",Python,http://satpy.readthedocs.org/en/latest/,satpy: Python package for earth-observing satellite data processing,pytroll,2022-12-07,2022-12-06,2016-02-09,356,2.4709185720016045 -402,perf,https://github.com/tiangolo/asyncer,,,,tiangolo/asyncer,asyncer,878,40,14,"['python', 'async', 'asyncio', 'trio', 'anyio']",Python,https://asyncer.tiangolo.com/,"Asyncer, async and await, focused on developer experience.",tiangolo,2022-12-05,2022-11-14,2022-01-04,48,18.237388724035608 -750,data,https://github.com/pytorch/data,,,,pytorch/data,data,865,100,26,[],Python,,data: A PyTorch repo for data loading and utilities to be shared by the PyTorch domain libraries.,pytorch,2022-12-06,2022-12-06,2021-05-12,82,10.548780487804878 -219,template,https://github.com/tezromach/python-package-template,1.0,,,tezromach/python-package-template,python-package-template,865,85,6,"['python', 'cookiecutter', 'best-practices', 'semantic-versions', 'python-packages', 'codestyle', 'formatters', 'makefile', 'poetry', 'template']",Python,,python-package-template: 🚀 Your next Python package needs a bleeding-edge project structure.,tezromach,2022-12-06,2022-05-18,2020-04-15,138,6.268115942028985 -341,term,https://github.com/jquast/blessed,,,,jquast/blessed,blessed,863,67,24,"['terminal', 'curses', 'cli']",Python,http://pypi.python.org/pypi/blessed,"Blessed is an easy, practical library for making python terminal apps",jquast,2022-11-30,2022-09-27,2014-03-01,457,1.8860443334374024 -392,pandas,https://github.com/tkrabel/bamboolib,,,,tkrabel/bamboolib,bamboolib,854,92,31,"['pandas', 'pandas-dataframes', 'jupyter-notebook', 'jupyterlab', 'python']",Jupyter Notebook,https://bamboolib.com,bamboolib - a GUI for pandas DataFrames,tkrabel,2022-12-07,2022-09-27,2019-05-29,184,4.641304347826087 -204,debug,https://github.com/alexmojaki/snoop,,,,alexmojaki/snoop,snoop,848,29,16,"['python', 'debugging', 'debugger', 'debugging-tools', 'logging']",Python,,"snoop: A powerful set of Python debugging tools, based on PySnooper",alexmojaki,2022-12-07,2022-12-05,2019-05-13,186,4.552147239263804 -700,perf,https://github.com/intel/scikit-learn-intelex,,,,intel/scikit-learn-intelex,scikit-learn-intelex,847,135,28,"['oneapi', 'scikit-learn', 'machine-learning-algorithms', 'data-analysis', 'machine-learning', 'python', 'swrepo', 'ai-machine-learning', 'big-data', 'analytics', 'ai-training', 'ai-inference', 'gpu', 'intel']",Python,https://intel.github.io/scikit-learn-intelex/,scikit-learn-intelex: Intel(R) Extension for Scikit-learn is a seamless way to speed up your Scikit-learn application,intel,2022-12-04,2022-12-05,2018-08-07,226,3.7454200884396713 -347,nlp,https://github.com/norskregnesentral/skweak,,,,norskregnesentral/skweak,skweak,845,67,27,"['weak-supervision', 'nlp-machine-learning', 'distant-supervision', 'nlp-library', 'spacy', 'python', 'data-science', 'training-data', 'natural-language-processing']",Python,,skweak: A software toolkit for weak supervision applied to NLP tasks,norskregnesentral,2022-12-05,2022-11-08,2021-03-16,90,9.374009508716323 -628,data,https://github.com/intake/intake,,,,intake/intake,intake,841,125,41,"['python', 'data-access', 'data-catalog']",Python,https://intake.readthedocs.io/,"Intake is a lightweight package for finding, investigating, loading and disseminating data.",intake,2022-12-05,2022-12-02,2017-08-14,277,3.032972694487378 -484,gis,https://github.com/sentinelsat/sentinelsat,,,,sentinelsat/sentinelsat,sentinelsat,833,225,59,"['sentinel', 'copernicus', 'esa', 'remote-sensing', 'satellite-imagery', 'geographic-data', 'open-data', 'hacktoberfest']",Python,https://sentinelsat.readthedocs.io,sentinelsat: Search and download Copernicus Sentinel satellite images,sentinelsat,2022-12-06,2022-11-03,2015-05-22,393,2.115747460087083 -639,ml,https://github.com/dask/dask-ml,,,,dask/dask-ml,dask-ml,832,236,40,['hacktoberfest'],Python,http://ml.dask.org,dask-ml: Scalable Machine Learning with Dask,dask,2022-12-05,2022-10-19,2017-06-15,285,2.9105447276361818 -697,data,https://github.com/scholarly-python-package/scholarly,,,,scholarly-python-package/scholarly,scholarly,830,249,24,"['scholar', 'googlescholar', 'scholarly-articles', 'scholarly-communications', 'python3', 'python-3', 'python', 'citation-network', 'citation-analysis', 'citations', 'citation-index', 'publication-data']",Python,https://scholarly.readthedocs.io/,"scholarly: Retrieve author and publication information from Google Scholar in a friendly, Pythonic way without having to worry about CAPTCHAs!",scholarly-python-package,2022-12-06,2022-11-30,2014-12-02,418,1.984967543559959 -445,gis,https://github.com/pyproj4/pyproj,,,,pyproj4/pyproj,pyproj,824,188,30,"['geospatial', 'python', 'coordinate-systems', 'coordinate-transformation', 'cartographic-projection', 'geodesic', 'hacktoberfest']",Python,https://pyproj4.github.io/pyproj,pyproj: Python interface to PROJ (cartographic projections and coordinate transformations library),pyproj4,2022-12-06,2022-12-06,2014-12-29,414,1.9889655172413794 -887,sim,https://github.com/pyscf/pyscf,,,,pyscf/pyscf,pyscf,816,436,77,[],Python,,pyscf: Python module for quantum chemistry,pyscf,2022-12-07,2022-11-29,2014-05-02,448,1.8185291308500477 -712,ml,https://github.com/google-research/deeplab2,,,,google-research/deeplab2,deeplab2,813,137,19,[],Python,,"DeepLab2 is a TensorFlow library for deep labeling, aiming to provide a unified and state-of-the-art TensorFlow codebase for dense pixel labeling tasks.",google-research,2022-12-07,2022-11-05,2021-05-12,82,9.914634146341463 -468,ml,https://github.com/huggingface/optimum,,,,huggingface/optimum,optimum,808,98,35,"['onnx', 'pytorch', 'inference', 'training', 'intel', 'graphcore', 'onnxruntime', 'transformers', 'quantization', 'habana', 'optimization']",Python,https://huggingface.co/docs/optimum/,optimum: 🏎️ Accelerate training and inference of 🤗 Transformers with easy to use hardware optimization tools,huggingface,2022-12-06,2022-12-06,2021-07-20,72,11.2 -772,nlp,https://github.com/huggingface/setfit,,,,huggingface/setfit,setfit,796,68,13,"['few-shot-learning', 'nlp', 'sentence-transformers']",Python,,setfit: Efficient few-shot learning with Sentence Transformers,huggingface,2022-12-07,2022-12-07,2022-06-30,22,34.825 -850,util,https://github.com/wolph/python-progressbar,,,,wolph/python-progressbar,python-progressbar,792,95,22,"['python', 'progressbar', 'progress-bar', 'rate', 'eta', 'percentage', 'console', 'terminal', 'time', 'progress', 'bar', 'cli', 'gui', 'library']",Python,http://progressbar-2.readthedocs.org/en/latest/,"python-progressbar: Progressbar 2 - A progress bar for Python 2 and Python 3 - ""pip install progressbar2""",wolph,2022-12-01,2022-12-06,2012-02-20,563,1.406036013187928 -395,web,https://github.com/emmett-framework/emmett,,,,emmett-framework/emmett,emmett,792,63,29,"['python', 'web-framework', 'asgi', 'asyncio', 'emmett']",Python,,emmett: The web framework for inventors,emmett-framework,2022-12-05,2022-11-24,2014-10-20,424,1.8666666666666667 -490,viz,https://github.com/luispedro/mahotas,,,,luispedro/mahotas,mahotas,783,149,47,"['computer-vision', 'numpy', 'python', 'c-plus-plus', 'python-2', 'python-3']",Python,https://mahotas.rtfd.io,mahotas: Computer Vision in Python,luispedro,2022-12-01,2022-11-14,2010-01-31,670,1.1679096526741957 -226,sim,https://github.com/facebookresearch/droidlet,,,,facebookresearch/droidlet,fairo,783,80,38,[],Jupyter Notebook,,fairo: A modular embodied agent architecture and platform for building embodied agents,facebookresearch,2022-12-06,2022-12-02,2020-11-02,109,7.1647058823529415 -738,perf,https://github.com/zerointensity/pointers.py,,,,zerointensity/pointers.py,pointers.py,765,9,3,"['python', 'pointers', 'python-pointers']",Python,https://pointers.zintensity.dev/,pointers.py: Bringing the hell of pointers to Python.,zerointensity,2022-12-01,2022-11-30,2022-03-09,39,19.615384615384617 -810,data,https://github.com/neo4j/neo4j-python-driver,,,,neo4j/neo4j-python-driver,neo4j-python-driver,757,167,99,"['python', 'graph-database', 'driver', 'neo4j', 'database-driver', 'protocol', 'cypher', 'query-language', 'python3', 'binary-protocol']",Python,https://neo4j.com/docs/api/python-driver/current/,neo4j-python-driver: Neo4j Bolt driver for Python,neo4j,2022-11-29,2022-12-06,2015-05-05,396,1.9109267940858277 -351,ml,https://github.com/jina-ai/finetuner,,,,jina-ai/finetuner,finetuner,754,37,21,"['fine-tuning', 'pretrained-models', 'few-shot-learning', 'negative-sampling', 'metric-learning', 'siamese-network', 'triplet-loss', 'transfer-learning', 'jina', 'neural-search', 'finetuning', 'similarity-learning']",Python,https://finetuner.jina.ai,finetuner: :dart: Task-oriented finetuning for better embeddings on neural search,jina-ai,2022-12-03,2022-12-06,2021-08-11,69,10.927536231884059 -334,util,https://github.com/clarete/forbiddenfruit,,,,clarete/forbiddenfruit,forbiddenfruit,748,50,28,"['python', 'monkey-patching']",Python,https://clarete.li/forbiddenfruit/,forbiddenfruit: Patch built-in python objects,clarete,2022-12-06,2022-03-12,2013-04-03,505,1.4811881188118812 -146,util,https://github.com/zenodo/zenodo,,,,zenodo/zenodo,zenodo,747,224,38,"['zenodo', 'invenio', 'python', 'research-data-repository', 'research-data-management', 'flask', 'digital-library', 'open-science', 'open-access', 'scientific-publications', 'library-management', 'elasticsearch', 'postgresql', 'inveniosoftware']",Python,https://zenodo.org,zenodo: Research. Shared.,zenodo,2022-12-05,2022-12-01,2013-02-11,512,1.458170663692136 -658,util,https://github.com/rasbt/watermark,,,,rasbt/watermark,watermark,747,83,13,"['python', 'magic-extension', 'jupyter', 'ipython']",Python,,"watermark: An IPython magic extension for printing date and time stamps, version numbers, and hardware information",rasbt,2022-12-06,2022-09-13,2014-07-30,436,1.713302752293578 -634,profiling,https://github.com/csurfer/pyheat,,,,csurfer/pyheat,pyheat,734,41,13,"['profiling', 'python', 'heatmap', 'matplotlib']",Python,,pyheat: pprofile + matplotlib = Python program profiled as an awesome heatmap!,csurfer,2022-11-30,2021-09-18,2017-02-04,304,2.4099437148217637 -791,sim,https://github.com/viblo/pymunk,1.0,,,viblo/pymunk,pymunk,729,179,21,"['python', 'physics-2d', 'library', 'pygame', 'pyglet', 'physics-engine', 'physics-simulation', 'python-library']",Python,http://www.pymunk.org,Pymunk is a easy-to-use pythonic 2d physics library that can be used whenever you need 2d rigid body physics from Python,viblo,2022-12-06,2022-12-05,2013-10-02,479,1.5219206680584552 -853,data,https://github.com/eliasdabbas/advertools,,,,eliasdabbas/advertools,advertools,727,158,33,"['marketing', 'advertising', 'adwords', 'python', 'digital-marketing', 'online-marketing', 'keywords', 'search-engine-marketing', 'twitter-api', 'search-engine-optimization', 'seo', 'serp', 'social-media', 'youtube', 'robots-txt', 'scrapy', 'seo-crawler', 'log-analysis', 'google-ads', 'logfile-parser']",Python,https://advertools.readthedocs.io,advertools - online marketing productivity and analysis tools,eliasdabbas,2022-12-05,2022-11-25,2017-05-14,290,2.5031972454500737 -900,ml,https://github.com/shankarpandala/lazypredict,,,,shankarpandala/lazypredict,lazypredict,721,101,12,"['machine-learning', 'automl', 'regression', 'classification']",Python,,lazypredict: Lazy Predict help build a lot of basic models without much code and helps understand which models works better without any parameter tuning,shankarpandala,2022-12-07,2022-09-28,2019-11-16,159,4.518352730528201 -891,util,https://github.com/xl0/lovely-tensors,,,,xl0/lovely-tensors,lovely-tensors,715,9,5,"['deep-learning', 'library', 'pytorch', 'statistics', 'visualization']",Jupyter Notebook,https://xl0.github.io/lovely-tensors,"lovely-tensors: Tensors, ready for human consumption",xl0,2022-12-07,2022-12-06,2022-10-07,8,82.04918032786885 -291,pandas,https://github.com/stitchfix/hamilton,,,,stitchfix/hamilton,hamilton,713,35,21,"['python', 'pandas', 'dag', 'data-science', 'data-engineering', 'numpy', 'software-engineering', 'etl-framework', 'etl-pipeline', 'etl', 'feature-engineering', 'featurization', 'dataframe', 'stitch-fix', 'data-platform', 'hamilton', 'hamiltonian', 'machine-learning']",Python,https://hamilton-docs.gitbook.io/docs/,"hamilton: A scalable general purpose micro-framework for defining dataflows. You can use it to build dataframes, numpy matrices, python objects, ML models, etc.",stitchfix,2022-12-07,2022-12-04,2020-05-26,132,5.395675675675676 -358,data,https://github.com/hyperqueryhq/whale,,,,hyperqueryhq/whale,whale,711,39,42,"['data-documentation', 'data-catalog', 'data-discovery']",Python,https://rsyi.gitbook.io/whale,whale: 🐳 The stupidly simple CLI workspace for your data warehouse.,hyperqueryhq,2022-11-21,2022-10-13,2020-05-27,132,5.386363636363637 -621,testing,https://github.com/wolever/parameterized,,,,wolever/parameterized,parameterized,708,94,18,[],Python,,Parameterized testing with any Python test framework,wolever,2022-11-29,2021-01-09,2012-03-10,560,1.2629969418960245 -419,util,https://github.com/sethmmorton/natsort,,,,sethmmorton/natsort,natsort,706,40,14,"['python', 'natural-sort', 'sorting-interface', 'sorting', 'natsort']",Python,https://pypi.org/project/natsort/,natsort: Simple yet flexible natural sorting in Python.,sethmmorton,2022-12-02,2022-09-01,2012-05-03,552,1.2770025839793282 -559,jupyter,https://github.com/vizzuhq/ipyvizzu,,,,vizzuhq/ipyvizzu,ipyvizzu,706,56,14,"['jupyter', 'jupyter-notebook', 'python', 'plotting', 'graphs', 'data-visualization', 'graphing', 'ipython', 'chart', 'charts', 'dataviz', 'animation', 'storytelling', 'charting', 'vizzu']",Python,https://ipyvizzu.vizzuhq.com,ipyvizzu: Build animated charts in Jupyter Notebook and in many other environments with a simple Python syntax.,vizzuhq,2022-12-06,2022-12-06,2022-01-05,48,14.708333333333334 -23,math,https://github.com/fredrik-johansson/mpmath,,,,fredrik-johansson/mpmath,mpmath,702,148,39,"['python', 'arbitrary-precision', 'multiprecision', 'floating-point', 'special-functions', 'numerical-integration', 'numerical-methods', 'plotting', 'complex-numbers', 'ordinary-differential-equations', 'numerical-optimization']",Python,http://mpmath.org,mpmath: Python library for arbitrary-precision floating-point arithmetic,fredrik-johansson,2022-12-06,2022-11-07,2011-12-07,574,1.2229965156794425 -593,gis,https://github.com/matplotlib/basemap,,,,matplotlib/basemap,basemap,701,395,60,"['gis', 'maps', 'plots']",Python,,basemap: Plot on map projections (with coastlines and political boundaries) using matplotlib,matplotlib,2022-11-23,2022-11-29,2011-02-19,615,1.1387792991413321 -701,profiling,https://github.com/pythonspeed/filprofiler,,,,pythonspeed/filprofiler,filprofiler,690,20,8,"['python', 'memory-profiler', 'memory-profiling', 'memory-leak', 'memory-leaks', 'memory-leak-detection', 'memory-leak-finder', 'memory', 'memory-']",Rust,https://pythonspeed.com/products/filmemoryprofiler/,filprofiler: A Python memory profiler for data processing and scientific computing applications,pythonspeed,2022-12-03,2022-12-05,2020-06-18,128,5.3547671840354765 -325,security,https://github.com/trailofbits/pip-audit,,,,trailofbits/pip-audit,pip-audit,686,39,19,"['security', 'security-audit', 'python', 'pip', 'supply-chain']",Python,https://pypi.org/project/pip-audit/,pip-audit: Audits Python environments and dependency trees for known vulnerabilities,trailofbits,2022-12-03,2022-12-01,2021-09-02,65,10.41648590021692 -168,gis,https://github.com/openeventdata/mordecai,,,,openeventdata/mordecai,mordecai,685,94,35,"['geoparsing', 'geonames', 'nlp', 'geocoding', 'spacy', 'toponym-resolution']",Python,,mordecai: Full text geoparsing as a Python library,openeventdata,2022-12-06,2021-02-01,2016-06-23,336,2.0335029686174724 -477,pandas,https://github.com/holoviz/hvplot,,,,holoviz/hvplot,hvplot,682,77,23,"['holoviz', 'holoviews', 'plotting', 'datashader']",Python,https://hvplot.holoviz.org,"hvplot: A high-level plotting API for pandas, dask, xarray, and networkx built on HoloViews",holoviz,2022-12-04,2022-12-01,2018-03-19,246,2.769141531322506 -360,ml-ops,https://github.com/tensorflow/data-validation,,,,tensorflow/data-validation,data-validation,682,142,47,[],Python,,data-validation: Library for exploring and validating machine learning data,tensorflow,2022-12-06,2022-12-06,2018-07-02,231,2.948733786287832 -572,gis,https://github.com/developmentseed/landsat-util,,,,developmentseed/landsat-util,landsat-util,681,155,125,[],Python,,"landsat-util: A utility to search, download and process Landsat 8 satellite imagery",developmentseed,2022-12-07,2018-07-30,2014-08-01,435,1.5629508196721311 -393,perf,https://github.com/klen/py-frameworks-bench,,,,klen/py-frameworks-bench,py-frameworks-bench,670,78,28,"['benchmark', 'python-frameworks']",Python,https://klen.github.io/py-frameworks-bench/,py-frameworks-bench: Another benchmark for some python frameworks,klen,2022-12-07,2022-03-14,2015-04-30,396,1.6882649388048956 -164,nlp,https://github.com/explosion/spacy-stanza,,,,explosion/spacy-stanza,spacy-stanza,661,50,25,"['nlp', 'natural-language-processing', 'machine-learning', 'data-science', 'spacy', 'spacy-pipeline', 'stanford-nlp', 'stanford-corenlp', 'stanford-machine-learning', 'corenlp', 'stanza']",Python,,spacy-stanza: 💥 Use the latest Stanza (StanfordNLP) research models directly in spaCy,explosion,2022-12-07,2022-05-27,2019-01-31,200,3.290896159317212 -483,gis,https://github.com/sentinel-hub/sentinelhub-py,,,,sentinel-hub/sentinelhub-py,sentinelhub-py,654,211,49,"['python-library', 'sentinel-hub', 'aws', 'ogc-services', 'satellite-imagery']",Python,http://sentinelhub-py.readthedocs.io/en/latest/,sentinelhub-py: Download and process satellite imagery in Python using Sentinel Hub services.,sentinel-hub,2022-12-02,2022-10-06,2017-05-17,290,2.2551724137931033 -818,ml,https://github.com/automl/tabpfn,,,,automl/tabpfn,TabPFN,644,44,16,[],Python,https://arxiv.org/abs/2207.01848,TabPFN: Official implementation of the TabPFN and the tabpfn package.,automl,2022-12-06,2022-11-17,2022-07-01,22,28.352201257861637 -882,time-series,https://github.com/winedarksea/autots,,,,winedarksea/autots,AutoTS,638,58,13,"['time-series', 'machine-learning', 'automl', 'autots', 'forecasting', 'deep-learning', 'preprocessing', 'feature-engineering']",Python,,AutoTS: Automated Time Series Forecasting,winedarksea,2022-12-07,2022-11-15,2019-11-26,158,4.034327009936766 -629,gis,https://github.com/makepath/xarray-spatial,,,,makepath/xarray-spatial,xarray-spatial,638,73,25,"['python', 'raster-analysis', 'spatial-analysis', 'numba', 'datashader', 'xarray']",Python,https://xarray-spatial.org,xarray-spatial: Raster-based Spatial Analytics for Python,makepath,2022-12-06,2022-06-22,2020-02-08,147,4.3233301064859635 -475,viz,https://github.com/holoviz/holoviz,1.0,,,holoviz/holoviz,holoviz,635,114,35,"['holoviz', 'holoviews', 'geoviews', 'datashader', 'panel', 'hvplot', 'colorcet']",Python,https://holoviz.org/,holoviz: High-level tools to simplify visualization in Python.,holoviz,2022-12-06,2022-12-07,2017-09-22,271,2.337013669821241 -620,jupyter,https://github.com/nbqa-dev/nbqa,,,,nbqa-dev/nbqa,nbQA,634,36,6,"['python', 'jupyter-notebook', 'pre-commit', 'codequality', 'lint', 'isort', 'black', 'flake8', 'doctest', 'pyupgrade', 'pylint', 'mypy', 'yapf', 'pre-commit-hook']",Python,https://nbqa.readthedocs.io/en/latest/index.html,"nbQA: Run isort, pyupgrade, mypy, pylint, flake8, and more on Jupyter Notebooks",nbqa-dev,2022-12-04,2022-11-21,2020-07-11,125,5.048919226393629 -637,util,https://github.com/samuelcolvin/python-devtools,,,,samuelcolvin/python-devtools,python-devtools,627,31,8,"['python-devtools', 'python', 'devtools']",Python,https://python-devtools.helpmanual.io/,python-devtools: Dev tools for python,samuelcolvin,2022-12-06,2022-11-28,2017-08-20,276,2.268217054263566 -344,data,https://github.com/scikit-hep/awkward-1.0,,,,scikit-hep/awkward-1.0,awkward,625,63,17,"['json', 'numpy', 'data-analysis', 'jagged-array', 'ragged-array', 'columnar-format', 'pandas', 'numba', 'apache-arrow', 'cern-root', 'scikit-hep', 'python']",Python,https://awkward-array.org,awkward: Manipulate JSON-like data with NumPy-like idioms.,scikit-hep,2022-12-05,2022-12-06,2019-08-14,173,3.61271676300578 -640,data,https://github.com/dask/fastparquet,,,,dask/fastparquet,fastparquet,623,161,18,['hacktoberfest'],Python,,fastparquet: python implementation of the parquet columnar file format.,dask,2022-12-02,2022-12-05,2015-11-06,369,1.6850850077279753 -397,web,https://github.com/klen/muffin,,,,klen/muffin,muffin,621,25,31,"['python', 'asyncio', 'trio', 'asgi', 'webframework', 'muffin', 'curio']",Python,,"Muffin is a fast, simple and asyncronous web-framework for Python 3",klen,2022-10-28,2022-08-12,2015-02-03,409,1.5178072625698324 -849,util,https://github.com/fsspec/s3fs,,,,fsspec/s3fs,s3fs,615,207,21,['hacktoberfest'],Python,http://s3fs.readthedocs.io/en/latest/,s3fs: S3 Filesystem ,fsspec,2022-12-06,2022-12-06,2016-03-16,351,1.7521367521367521 -741,data,https://github.com/koaning/human-learn,,,,koaning/human-learn,human-learn,612,51,13,"['scikit-learn', 'machine-learning', 'benchmark']",Jupyter Notebook,https://koaning.github.io/human-learn/,human-learn: Natural Intelligence is still a pretty good idea.,koaning,2022-12-02,2021-10-05,2020-07-11,125,4.873720136518771 -760,study,https://github.com/jackhidary/quantumcomputingbook,,,,jackhidary/quantumcomputingbook,quantumcomputingbook,611,186,54,"['quantum', 'quantum-computing', 'cirq', 'qiskit', 'rigetti', 'quantum-processor', 'sycamore', 'quantum-supremacy', 'quantum-information', 'quantum-information-science', 'google-quantum']",Jupyter Notebook,,quantumcomputingbook: Companion site for the textbook Quantum Computing: An Applied Approach,jackhidary,2022-11-23,2021-10-14,2019-02-28,196,3.1037735849056602 -18,nlp,https://github.com/explosion/spacy-streamlit,,,,explosion/spacy-streamlit,spacy-streamlit,605,102,17,"['spacy', 'nlp', 'natural-language-processing', 'visualizers', 'dependency-parsing', 'part-of-speech-tagging', 'named-entity-recognition', 'ner', 'streamlit', 'visualizer', 'text-classification', 'word-vectors', 'tokenization', 'machine-learning']",Python,https://share.streamlit.io/ines/spacy-streamlit-demo/master/app.py,spacy-streamlit: 👑 spaCy building blocks and visualizers for Streamlit apps,explosion,2022-12-07,2022-08-23,2020-06-23,128,4.7212931995540695 -839,util,https://github.com/idanya/algo-trader,,,,idanya/algo-trader,algo-trader,604,55,21,"['algorithmic-trading', 'backtesting', 'crypto-bot', 'python', 'technical-analysis', 'trading-bot', 'trading-strategies']",Python,,"algo-trader: Trading bot with support for realtime trading, backtesting, custom strategies and much more.",idanya,2022-12-07,2022-11-29,2021-09-14,64,9.416481069042316 -595,gis,https://github.com/uber/h3-py,,,,uber/h3-py,h3-py,593,112,34,"['uber', 'python', 'hexagonal-architecture', 'h3', 'geospatial', 'geocoding', 'gis']",Python,https://uber.github.io/h3-py,"h3-py: Python bindings for H3, a hierarchical hexagonal geospatial indexing system",uber,2022-12-02,2022-11-24,2018-06-12,234,2.5326418547895058 -680,util,https://github.com/lukasschwab/arxiv.py,,,,lukasschwab/arxiv.py,arxiv.py,583,76,16,"['arxiv', 'arxiv-api', 'python-wrapper', 'pdf']",Python,,arxiv.py: Python wrapper for the arXiv API,lukasschwab,2022-12-07,2022-09-12,2015-11-25,367,1.5885558583106267 -796,graph,https://github.com/westhealth/pyvis,,,,westhealth/pyvis,pyvis,577,109,13,"['network-visualization', 'python', 'networkx']",HTML,http://pyvis.readthedocs.io/en/latest/,pyvis: Python package for creating and visualizing interactive network graphs.,westhealth,2022-12-05,2022-11-04,2018-05-10,238,2.41566985645933 -117,nlp,https://github.com/iclrandd/blackstone,,,,iclrandd/blackstone,Blackstone,573,93,37,"['law', 'caselaw', 'nlp', 'spacy-models', 'legaltech']",Python,https://research.iclr.co.uk,Blackstone: :black_circle: A spaCy pipeline and model for NLP on unstructured legal text.,iclrandd,2022-11-27,2021-01-31,2019-03-25,193,2.964523281596452 -505,gis,https://github.com/scikit-mobility/scikit-mobility,,,,scikit-mobility/scikit-mobility,scikit-mobility,571,130,29,"['data-science', 'data-analysis', 'human-mobility', 'complex-systems', 'network-science', 'statistics', 'scikit-mobility', 'mobility-analysis', 'risk-assessment', 'mobility-flows', 'synthetic-flows']",Python,https://scikit-mobility.github.io/scikit-mobility/,scikit-mobility: mobility analysis in Python,scikit-mobility,2022-12-04,2022-06-13,2019-04-30,188,3.034927866362946 -831,typing,https://github.com/python-attrs/cattrs,,,,python-attrs/cattrs,cattrs,568,81,16,"['attrs', 'deserialization', 'serialization']",Python,,cattrs: Complex custom class converters for attrs.,python-attrs,2022-12-06,2022-11-30,2016-08-28,327,1.7347294938917976 -828,sim,https://github.com/farama-foundation/gymnasium,,,,farama-foundation/gymnasium,Gymnasium,561,71,9,[],Python,https://gymnasium.farama.org,Gymnasium: A standard API for reinforcement learning and a diverse set of reference environments (formerly Gym),farama-foundation,2022-12-07,2022-12-05,2022-09-08,12,43.63333333333333 -690,util,https://github.com/pyfpdf/fpdf2,,,,pyfpdf/fpdf2,fpdf2,560,150,16,"['pdf-generation', 'pdf', 'python', 'hacktoberfest', 'barcode', 'pdf-library', 'python3', 'library', 'svg', 'markdown']",Python,https://pyfpdf.github.io/fpdf2/,fpdf2: Simple PDF generation for Python,pyfpdf,2022-12-07,2022-12-02,2017-03-15,299,1.8729096989966556 -889,gis,https://github.com/osgeo/grass,,,,osgeo/grass,grass,559,208,47,"['osgeo', 'grass-gis', 'geospatial', 'geospatial-analysis', 'raster', 'vector', 'timeseries-analysis', 'earth-observation', 'gis', 'hacktoberfest', 'open-science', 'remote-sensing', 'science', 'spatial']",C,https://grass.osgeo.org,GRASS GIS - free and open source Geographic Information System (GIS),osgeo,2022-12-07,2022-12-06,2019-05-17,185,3.01 -167,nlp,https://github.com/lexpredict/lexpredict-lexnlp,,,,lexpredict/lexpredict-lexnlp,lexpredict-lexnlp,556,153,49,"['nlp', 'ml', 'legal', 'legaltech', 'linguistics', 'law', 'contracts', 'analytics', 'data']",HTML,,lexpredict-lexnlp: LexNLP by LexPredict,lexpredict,2022-12-05,2022-08-10,2017-09-30,270,2.054910242872228 -752,diffusion,https://github.com/sharonzhou/long_stable_diffusion,,,,sharonzhou/long_stable_diffusion,long_stable_diffusion,553,43,13,[],Python,,"long_stable_diffusion: Long-form text-to-images generation, using a pipeline of deep generative models (GPT-3 and Stable Diffusion)",sharonzhou,2022-12-05,2022-10-30,2022-09-04,13,41.180851063829785 -808,web,https://github.com/s3rius/fastapi-template,,,,s3rius/fastapi-template,FastAPI-template,552,47,9,"['fastapi', 'cookiecutter', 'cookiecutter-template', 'cookiecutter-python3', 'sqlalchemy-orm', 'asynchronous', 'ormar', 'tortoise-orm', 'aerich', 'alembic', 'python3', 'asyncio', 'graphql', 'strawberry-graphql', 'opentelemetry', 'prometheus', 'sentry', 'fastapi-template', 'fastapi-boilerplate', 'hacktoberfest']",Python,,FastAPI-template: Feature rich robust FastAPI template.,s3rius,2022-12-07,2022-11-04,2020-10-05,113,4.872635561160151 -567,sim,https://github.com/gboeing/pynamical,,,,gboeing/pynamical,pynamical,550,107,32,"['chaos', 'nonlinear', 'fractal', 'logistic', 'visualization', 'modeling', 'animation', 'math', 'physics', 'python', 'pandas', 'numba', 'numpy', 'matplotlib', 'ipynb', 'bifurcation-diagram', 'fractals', 'systems', 'phase-diagram', 'cobweb-plot']",Python,https://geoffboeing.com/publications/nonlinear-chaos-fractals-prediction/,"Pynamical is a Python package for modeling and visualizing discrete nonlinear dynamical systems, chaos, and fractals.",gboeing,2022-11-25,2022-05-24,2014-09-28,427,1.286764705882353 -259,crypto,https://github.com/pmaji/crypto-whale-watching-app,,,,pmaji/crypto-whale-watching-app,crypto-whale-watching-app,548,132,48,"['gdax', 'python', 'cryptocurrency', 'ethereum', 'litecoin', 'bitcoin', 'cryptocurrency-exchanges', 'python3', 'dash', 'ethereum-blockchain', 'bitcoin-api', 'bitcoin-price', 'cryptocurrency-price-ticker', 'cryptocurrency-prices', 'litecoin-price', 'ethereum-price', 'gdax-api', 'gdax-python', 'plotly', 'plotly-dash']",Python,,crypto-whale-watching-app: Python Dash app that tracks whale activity in cryptocurrency markets.,pmaji,2022-12-06,2022-11-26,2018-01-23,254,2.1562675660483417 -235,nlp,https://github.com/salesforce/codet5,,,,salesforce/codet5,CodeT5,534,103,17,"['language-model', 'code-intelligence', 'programming-language', 'representation-learning', 'nlp']",Python,https://arxiv.org/abs/2109.00859,Code for CodeT5: a new code-aware pre-trained encoder-decoder model.,salesforce,2022-12-07,2022-07-08,2021-08-16,68,7.820083682008368 -874,util,https://github.com/ipython/ipykernel,,,,ipython/ipykernel,ipykernel,528,332,32,"['ipython', 'ipython-kernel', 'jupyter', 'python', 'closember', 'jupyter-notebook', 'kernel']",Python,https://ipython.readthedocs.io/en/stable/,ipykernel: IPython Kernel for Jupyter,ipython,2022-12-02,2022-12-06,2015-04-09,399,1.3204715969989282 -516,ml-dl,https://github.com/kakaobrain/rq-vae-transformer,,,,kakaobrain/rq-vae-transformer,rq-vae-transformer,521,60,15,[],Jupyter Notebook,,rq-vae-transformer: The official implementation of Autoregressive Image Generation using Residual Quantization (CVPR '22),kakaobrain,2022-12-06,2022-08-18,2022-03-03,39,13.07168458781362 -625,gis,https://github.com/scitools/iris,,,,scitools/iris,iris,520,258,44,"['iris', 'python', 'netcdf', 'grib', 'visualisation', 'data-analysis', 'earth-science', 'meteorology', 'oceanography', 'spaceweather']",Python,https://scitools-iris.readthedocs.io/en/latest/,"iris: A powerful, format-agnostic, and community-driven Python package for analysing and visualising Earth science data",scitools,2022-12-01,2022-12-05,2012-08-06,539,0.9642384105960264 -160,nlp,https://github.com/nipunsadvilkar/pysbd,,,,nipunsadvilkar/pysbd,pySBD,519,63,10,"['sentence-boundary-detection', 'python', 'segmentation', 'rule-based', 'sentence-tokenizer', 'sentence']",Python,,pySBD: 🐍💯pySBD (Python Sentence Boundary Disambiguation) is a rule-based sentence boundary detection that works out-of-the-box.,nipunsadvilkar,2022-12-07,2021-02-11,2017-06-11,286,1.8119700748129677 -665,study,https://github.com/rasbt/stat453-deep-learning-ss20,,,,rasbt/stat453-deep-learning-ss20,stat453-deep-learning-ss20,518,148,36,[],Jupyter Notebook,http://pages.stat.wisc.edu/~sraschka/teaching/stat453-ss2020/,stat453-deep-learning-ss20: STAT 453: Intro to Deep Learning @ UW-Madison (Spring 2020),rasbt,2022-11-30,2020-05-01,2020-01-20,150,3.446768060836502 -576,util,https://github.com/fsspec/filesystem_spec,,,,fsspec/filesystem_spec,filesystem_spec,517,225,21,[],Python,,filesystem_spec: A specification that python filesystems should adhere to.,fsspec,2022-12-06,2022-12-02,2018-04-23,241,2.142687981053878 -525,gis,https://github.com/toblerity/rtree,,,,toblerity/rtree,rtree,514,123,30,[],Python,https://rtree.readthedocs.io/en/latest/,Rtree: spatial index for Python GIS ¶,toblerity,2022-12-03,2022-11-04,2011-06-19,598,0.8589162091191215 -685,ml,https://github.com/nvidia/cuda-python,,,,nvidia/cuda-python,cuda-python,514,38,23,[],Python,https://nvidia.github.io/cuda-python/,cuda-python: CUDA Python Low-level Bindings,nvidia,2022-12-06,2022-11-04,2021-06-28,75,6.827324478178368 -883,time-series,https://github.com/autoviml/auto_ts,,,,autoviml/auto_ts,Auto_TS,510,92,16,"['time-series', 'time-series-analysis', 'auto-timeseries', 'automl', 'autosklearn', 'tpot', 'autokeras', 'python3', 'prophet', 'python', 'sklearn', 'arima', 'auto-arima', 'auto-sklearn']",Jupyter Notebook,,"Auto_TS: Automatically build ARIMA, SARIMAX, VAR, FB Prophet and XGBoost Models on Time Series data sets with a Single Line of Code. Now updated with Dask to handle millions of rows.",autoviml,2022-12-01,2022-08-16,2020-02-15,146,3.47953216374269 -306,crypto,https://github.com/palkeo/panoramix,,,,palkeo/panoramix,panoramix,509,140,30,[],Python,,panoramix: Ethereum decompiler,palkeo,2022-12-05,2020-08-22,2020-02-17,146,3.4794921875 -589,ml-ops,https://github.com/kedro-org/kedro-viz,,,,kedro-org/kedro-viz,kedro-viz,506,83,9,"['kedro', 'kedro-plugin', 'data-visualization', 'hacktoberfest', 'react', 'experiment-tracking', 'python']",JavaScript,https://demo.kedro.org/,kedro-viz: Visualise your Kedro data and machine-learning pipelines and track your experiments. ,kedro-org,2022-12-04,2022-11-18,2019-05-09,186,2.7079510703363914 -413,util,https://github.com/bastibe/python-soundfile,,,,bastibe/python-soundfile,python-soundfile,503,85,17,[],Python,,"python-soundfile: SoundFile is an audio library based on libsndfile, CFFI, and NumPy",bastibe,2022-12-07,2022-09-27,2013-08-27,484,1.0389495426379463 -359,ml-ops,https://github.com/google/ml-metadata,,,,google/ml-metadata,ml-metadata,500,113,27,[],C++,https://www.tensorflow.org/tfx/guide/mlmd,ml-metadata: For recording and retrieving metadata associated with ML developer and data scientist workflows.,google,2022-12-07,2022-12-07,2019-01-15,203,2.461322081575246 -671,ml,https://github.com/apple/ml-ane-transformers,,,,apple/ml-ane-transformers,ml-ane-transformers,488,26,26,[],Python,,ml-ane-transformers: Reference implementation of the Transformer architecture optimized for Apple Neural Engine (ANE),apple,2022-12-06,2022-08-09,2022-06-03,26,18.267379679144383 -241,ml,https://github.com/microsoft/focal-transformer,,,,microsoft/focal-transformer,Focal-Transformer,486,57,17,[],Python,,"Focal-Transformer: [NeurIPS 2021 Spotlight] Official code for ""Focal Self-attention for Local-Global Interactions in Vision Transformers""",microsoft,2022-12-03,2022-03-27,2021-07-10,73,6.6058252427184465 -797,ml-interpretability,https://github.com/selfexplainml/piml-toolbox,,,,selfexplainml/piml-toolbox,PiML-Toolbox,482,52,12,"['interpretable-machine-learning', 'low-code', 'ml-workflow', 'model-diagnostics']",Jupyter Notebook,https://selfexplainml.github.io/PiML-Toolbox,PiML-Toolbox: PiML (Python Interpretable Machine Learning) toolbox for model development and model validation,selfexplainml,2022-12-04,2022-12-01,2022-04-29,31,15.198198198198199 -794,gis,https://github.com/kvos/coastsat,,,,kvos/coastsat,CoastSat,477,194,23,"['google-earth-engine', 'earth-engine', 'remote-sensing', 'satellite-images', 'coastal-engineering', 'shoreline-detection']",Jupyter Notebook,http://coastsat.wrl.unsw.edu.au/,CoastSat: Global shoreline mapping tool from satellite imagery,kvos,2022-12-06,2022-11-11,2018-09-28,218,2.1809274983670806 -216,ml-ops,https://github.com/nccr-itmo/fedot,,,,nccr-itmo/fedot,FEDOT,476,61,9,"['automl', 'machine-learning', 'evolutionary-algorithms', 'genetic-programming', 'structural-learning', 'automated-machine-learning', 'hyperparameter-optimization', 'parameter-tuning', 'automation', 'multimodality', 'fedot']",Python,https://fedot.readthedocs.io,FEDOT: Automated modeling and machine learning framework FEDOT,nccr-itmo,2022-12-04,2022-12-01,2020-01-13,151,3.1463644948064213 -47,data,https://github.com/macbre/sql-metadata,1.0,,,macbre/sql-metadata,sql-metadata,468,84,15,"['sql', 'parser', 'database', 'sql-parser', 'metadata', 'sqlparse', 'python-package', 'python3-library', 'hiveql', 'hive', 'mysql-query']",Python,https://pypi.python.org/pypi/sql-metadata,sql-metadata: Uses tokenized query returned by python-sqlparse and generates query metadata,macbre,2022-12-07,2022-11-03,2017-06-06,287,1.6298507462686567 -487,gis,https://github.com/fatiando/verde,,,,fatiando/verde,verde,467,60,21,"['geophysics', 'earth-science', 'geospatial', 'python', 'scipy', 'interpolation', 'python3', 'scipy-stack', 'fatiando-a-terra', 'geoscience']",Python,https://www.fatiando.org/verde,verde: Processing and interpolating spatial data with a twist of machine learning,fatiando,2022-12-05,2022-11-30,2018-04-25,241,1.937759336099585 -673,perf,https://github.com/brandtbucher/specialist,,,,brandtbucher/specialist,specialist,465,9,8,[],Python,,"specialist: Visualize CPython 3.11's specializing, adaptive interpreter. :fire:",brandtbucher,2022-12-06,2022-12-02,2022-06-01,27,17.22222222222222 -211,time-series,https://github.com/firmai/atspy,,,,firmai/atspy,atspy,462,88,21,"['time-series', 'time-series-analysis', 'automated', 'python', 'forecasting', 'forecasting-models', 'finance']",Python,https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3580631,AtsPy: Automated Time Series Models in Python (by @firmai),firmai,2022-12-04,2021-12-18,2020-01-28,149,3.0977011494252875 -329,ml-dl,https://github.com/facebookresearch/ppuda,,,,facebookresearch/ppuda,ppuda,457,61,17,[],Python,,ppuda: Code for Parameter Prediction for Unseen Deep Architectures (NeurIPS 2021),facebookresearch,2022-11-19,2022-07-26,2021-10-21,58,7.764563106796117 -497,ml-dl,https://github.com/mcahny/deep-video-inpainting,,,,mcahny/deep-video-inpainting,Deep-Video-Inpainting,445,86,13,[],Python,,"Deep-Video-Inpainting: Official pytorch implementation for ""Deep Video Inpainting"" (CVPR 2019)",mcahny,2022-12-07,2020-12-10,2019-05-22,185,2.4054054054054053 -437,pandas,https://github.com/polyaxon/datatile,,,,polyaxon/datatile,datatile,443,40,13,"['pandas', 'pandas-summary', 'dataframes', 'data-analysis', 'data-science', 'spark', 'dask', 'plotly', 'statistics', 'matplotlib', 'data-profiling', 'data-visualization', 'data-summary', 'data-reporting', 'data-exploration', 'dataops', 'mlops', 'data-quality', 'data-quality-monitoring', 'data-quality-checks']",Python,,"datatile: A library for managing, validating, summarizing, and visualizing data",polyaxon,2022-11-24,2022-11-09,2016-03-25,349,1.2667483660130718 -479,gis,https://github.com/holoviz/geoviews,,,,holoviz/geoviews,geoviews,441,69,30,"['holoviz', 'geoviews', 'holoviews', 'geographic-visualizations', 'cartopy', 'plotting']",Python,http://geoviews.org,"geoviews: Simple, concise geographical visualization in Python",holoviz,2022-11-18,2022-11-18,2016-04-19,346,1.2740404457284358 -375,viz,https://github.com/vhranger/nodevectors,,,,vhranger/nodevectors,nodevectors,440,52,11,[],Python,,nodevectors: Fastest network node embeddings in the west,vhranger,2022-11-29,2021-11-06,2019-07-25,175,2.502030869212023 -742,nlp,https://github.com/koaning/whatlies,,,,koaning/whatlies,whatlies,435,49,13,"['nlp', 'embeddings', 'visualisations']",Python,https://koaning.github.io/whatlies/,"whatlies: Toolkit to help understand ""what lies"" in word embeddings. Also benchmarking! ",koaning,2022-12-04,2022-07-28,2020-02-22,145,2.988223748773307 -573,gis,https://github.com/developmentseed/label-maker,,,,developmentseed/label-maker,label-maker,434,113,50,"['satellite-imagery', 'data-preparation', 'deep-learning', 'computer-vision', 'remote-sensing', 'keras']",Python,http://devseed.com/label-maker/,label-maker: Data Preparation for Satellite Machine Learning,developmentseed,2022-11-19,2020-11-19,2018-01-10,256,1.6953125 -837,gis,https://github.com/perrygeo/python-rasterstats,,,,perrygeo/python-rasterstats,python-rasterstats,434,108,33,[],Python,,python-rasterstats: Summary statistics of geospatial raster datasets based on vector geometries.,perrygeo,2022-12-07,2022-10-18,2013-09-18,481,0.9022869022869023 -844,perf,https://github.com/joblib/loky,,,,joblib/loky,loky,432,41,9,"['multiprocessing-library', 'python']",Python,http://loky.readthedocs.io/en/stable/,loky: Robust and reusable Executor for joblib,joblib,2022-11-25,2022-09-15,2015-12-25,362,1.1910200866482867 -872,pandas,https://github.com/eventual-inc/daft,,,,eventual-inc/daft,Daft,431,12,6,"['image-processing', 'machine-learning', 'python', 'data-engineering', 'data-science', 'dataframe', 'deep-learning', 'distributed-computing']",Python,,Daft: The Python DataFrame for Complex Data,eventual-inc,2022-12-05,2022-12-07,2022-04-25,32,13.349557522123893 -582,gis,https://github.com/developmentseed/titiler,,,,developmentseed/titiler,titiler,430,98,18,"['fastapi', 'cog', 'aws-cdk', 'aws-lambda', 'stac', 'cogeotiff', 'mosaicjson', 'raster', 'dynamic', 'server', 'rest', 'gdal', 'rasterio', 'tile', 'map-tile-server', 'map-tiles']",Python,https://developmentseed.org/titiler/,titiler: Build your own Raster dynamic map tile services,developmentseed,2022-12-07,2022-12-05,2019-06-28,179,2.39268680445151 -863,ml-ops,https://github.com/astronomer/astronomer,,,,astronomer/astronomer,astronomer,430,77,43,"['apache-airflow', 'kubernetes', 'docker', 'astronomer-platform']",Python,https://www.astronomer.io,"astronomer: Helm Charts for the Astronomer Platform, Apache Airflow as a Service on Kubernetes",astronomer,2022-11-29,2022-12-06,2018-01-15,255,1.6843872411863459 -481,sim,https://github.com/udst/urbansim,,,,udst/urbansim,urbansim,419,124,78,[],Python,https://udst.github.io/urbansim/,urbansim: Platform for building statistical models of cities and regions,udst,2022-12-03,2020-05-11,2013-08-15,485,0.8623934137018524 -292,util,https://github.com/fastai/ghapi,,,,fastai/ghapi,ghapi,419,44,8,"['github-api', 'github', 'nbdev', 'openapi', 'api-client']",Jupyter Notebook,https://ghapi.fast.ai/,ghapi: A delightful and complete interface to GitHub's amazing API,fastai,2022-12-07,2022-09-27,2020-11-21,106,3.9316353887399464 -188,math,https://github.com/dit/dit,,,,dit/dit,dit,415,77,24,"['python', 'information-theory']",Python,http://docs.dit.io,dit: Python package for information theory.,dit,2022-12-01,2022-07-25,2013-09-29,479,0.8656138259833135 -486,gis,https://github.com/earthlab/earthpy,,,,earthlab/earthpy,earthpy,409,149,22,"['spatial-data', 'raster', 'vector', 'python', 'education']",Python,https://earthpy.readthedocs.io,earthpy: A package built to support working with spatial data using open source python,earthlab,2022-11-27,2021-12-20,2018-02-20,250,1.6350656767561393 -705,ml-ops,https://github.com/bodywork-ml/bodywork-core,,,,bodywork-ml/bodywork-core,bodywork-core,407,19,9,"['mlops', 'python', 'kubernetes', 'data-science', 'machine-learning', 'pipeline', 'serving', 'continuous-deployment', 'batch', 'devops', 'framework', 'cicd', 'orchestration']",Python,https://bodywork.readthedocs.io/en/latest/,"bodywork-core: ML pipeline orchestration and model deployments on Kubernetes, made really easy.",bodywork-ml,2022-12-06,2022-07-04,2020-11-17,107,3.7986666666666666 -472,nlp,https://github.com/google-research/byt5,,,,google-research/byt5,byt5,403,25,11,[],Python,,google-research/byt5,google-research,2022-12-05,2022-03-02,2021-05-26,80,5.0375 -275,crypto,https://github.com/ethtx/ethtx,,,,ethtx/ethtx,ethtx,391,61,16,[],Python,https://www.ethtx.info,ethtx: Python package with core transaction decoding functions.,ethtx,2022-12-05,2022-12-01,2021-06-28,75,5.193548387096774 -577,jupyter,https://github.com/computationalmodelling/nbval,,,,computationalmodelling/nbval,nbval,391,51,10,"['ipython-notebook', 'jupyter-notebook', 'python', 'testing', 'pytest-plugin', 'pytest']",Python,,nbval: A py.test plugin to validate Jupyter notebooks,computationalmodelling,2022-11-23,2022-09-17,2015-04-09,399,0.9778492318685245 -722,perf,https://github.com/noxdafox/pebble,,,,noxdafox/pebble,pebble,387,45,10,"['threading', 'multiprocessing', 'python', 'pool', 'decorators', 'asyncio']",Python,,pebble: Multi threading and processing eye-candy.,noxdafox,2022-12-05,2022-11-15,2013-10-16,477,0.8113207547169812 -528,nlp,https://github.com/hazyresearch/fonduer,,,,hazyresearch/fonduer,fonduer,386,79,27,"['multimodality', 'machine-learning', 'knowledge-base-construction']",Python,https://fonduer.readthedocs.io/,fonduer: A knowledge base construction engine for richly formatted data,hazyresearch,2022-12-05,2021-06-23,2018-02-02,252,1.5274166195590728 -841,util,https://github.com/carlospuenteg/file-injector,,,,carlospuenteg/file-injector,File-Injector,380,17,6,"['image', 'image-manipulation', 'image-processing', 'noise', 'numpy', 'photography', 'python', 'python3', 'file', 'files', 'extraction', 'injection', 'storage', 'steganography', 'file-injection', 'file-injector']",Python,,File-Injector: File Injector is a script that allows you to store any file in an image using steganography,carlospuenteg,2022-12-06,2022-11-18,2022-10-22,6,57.82608695652174 -12,nlp,https://github.com/dialogflow/dialogflow-python-client-v2,,,,dialogflow/dialogflow-python-client-v2,python-dialogflow,378,146,53,"['python', 'machine-learning', 'dialogflow']",Python,https://dialogflow.com/,python-dialogflow: Python client for Dialogflow: Design and integrate a conversational user interface into your applications and devices.,dialogflow,2022-12-07,2022-11-26,2017-10-24,267,1.4149732620320856 -254,ml,https://github.com/amzn/pecos,,,,amzn/pecos,pecos,374,84,18,"['machine-learning-algorithms', 'extreme-multi-label-classification', 'extreme-multi-label-ranking', 'transformers', 'approximate-nearest-neighbor-search']",Python,https://libpecos.org/,PECOS - Prediction for Enormous and Correlated Spaces,amzn,2022-12-06,2022-12-03,2020-08-12,121,3.090909090909091 -331,ml,https://github.com/jacopotagliabue/reclist,,,,jacopotagliabue/reclist,reclist,369,19,8,"['recommender-system', 'machine-learning', 'qa-automation']",Python,,"reclist: Behavioral ""black-box"" testing for recommender systems",jacopotagliabue,2022-12-03,2022-11-03,2021-11-08,56,6.555837563451776 -561,gis,https://github.com/geopandas/contextily,,,,geopandas/contextily,contextily,366,66,14,"['tiles', 'stamen', 'openstreetmap', 'python', 'tile', 'mapping', 'webtiles', 'geography', 'cartography', 'matplotlib', 'osm', 'stamen-maps']",Jupyter Notebook,https://contextily.readthedocs.io/en/latest/,contextily: Context geo-tiles in Python,geopandas,2022-11-22,2022-11-30,2016-09-08,325,1.1231915826391934 -803,util,https://github.com/open-telemetry/opentelemetry-python-contrib,,,,open-telemetry/opentelemetry-python-contrib,opentelemetry-python-contrib,363,275,14,[],Python,https://opentelemetry.io,opentelemetry-python-contrib: OpenTelemetry instrumentation for Python modules,open-telemetry,2022-12-06,2022-12-06,2019-11-08,160,2.2586666666666666 -492,gis,https://github.com/cogeotiff/rio-tiler,,,,cogeotiff/rio-tiler,rio-tiler,362,84,65,"['satellite', 'cog', 'cogeotiff', 'maptile', 'raster-processing', 'mercator', 'tile', 'slippy-map', 'gdal', 'rasterio', 'raster']",Python,https://cogeotiff.github.io/rio-tiler/,rio-tiler: User friendly Rasterio plugin to read raster datasets.,cogeotiff,2022-12-05,2022-11-28,2017-10-06,269,1.3421610169491525 -185,math,https://github.com/willianfuks/tfcausalimpact,,,,willianfuks/tfcausalimpact,tfcausalimpact,361,49,9,"['causalimpact', 'tensorflow-probability', 'python', 'causal-inference']",Python,,tfcausalimpact: Python Causal Impact Implementation Based on Google's R Package. Built using TensorFlow Probability.,willianfuks,2022-11-25,2022-10-07,2020-08-17,120,3.001187648456057 -49,util,https://github.com/mozillazg/pypy,,,,mozillazg/pypy,pypy,358,57,11,"['pypy', 'github-mirror', 'unofficial', 'unofficial-mirror', 'read-only-repository']",Python,https://foss.heptapod.net/pypy/pypy,pypy: The unofficial GitHub mirror of PyPy,mozillazg,2022-12-03,2022-12-06,2015-08-03,383,0.9340290719344018 -522,gis,https://github.com/pygeos/pygeos,,,,pygeos/pygeos,pygeos,358,37,15,[],Python,https://pygeos.readthedocs.io,pygeos: Wraps GEOS geometry functions in numpy ufuncs.,pygeos,2022-12-04,2022-08-25,2019-06-10,182,1.963949843260188 -496,ml,https://github.com/linkedin/fasttreeshap,,,,linkedin/fasttreeshap,FastTreeSHAP,354,22,6,"['explainable-ai', 'interpretability', 'lightgbm', 'machine-learning', 'random-forest', 'shap', 'xgboost']",Python,,FastTreeSHAP: Fast SHAP value computation for interpreting tree-based models,linkedin,2022-11-29,2022-11-29,2022-01-24,45,7.817034700315458 -499,ml-dl,https://github.com/researchmm/sttn,,,,researchmm/sttn,STTN,354,69,20,"['video-inpainting', 'completing-videos', 'transformer', 'spatial-temporal']",Jupyter Notebook,https://arxiv.org/abs/2007.10247,[ECCV'2020] STTN: Learning Joint Spatial-Temporal Transformations for Video Inpainting,researchmm,2022-11-30,2021-07-26,2020-07-10,125,2.815909090909091 -519,gis,https://github.com/scikit-geometry/scikit-geometry,,,,scikit-geometry/scikit-geometry,scikit-geometry,354,47,13,"['cgal', 'geometry', 'python', 'geometric-algorithms', 'wrapper']",Jupyter Notebook,https://scikit-geometry.github.io/scikit-geometry,scikit-geometry: Scientific Python Geometric Algorithms Library,scikit-geometry,2022-11-28,2022-10-14,2016-03-28,349,1.0134969325153373 -756,ml-dl,https://github.com/samuela/git-re-basin,,,,samuela/git-re-basin,git-re-basin,344,27,4,"['deep-learning', 'deeplearning', 'jax', 'machine-learning', 'neural-networks']",Python,https://arxiv.org/abs/2209.04836,"git-re-basin: Code release for ""Git Re-Basin: Merging Models modulo Permutation Symmetries""",samuela,2022-12-07,2022-10-12,2022-09-13,12,28.32941176470588 -692,util,https://github.com/paperswithcode/axcell,,,,paperswithcode/axcell,axcell,343,51,13,[],Python,,axcell: Tools for extracting tables and results from Machine Learning papers,paperswithcode,2022-11-30,2021-06-23,2019-06-27,179,1.9070691024622717 -586,gis,https://github.com/pysal/momepy,,,,pysal/momepy,momepy,341,46,16,"['urban', 'morphology', 'morphological-analysis', 'morphometrics', 'urban-morphometrics', 'urban-street-networks']",Python,https://docs.momepy.org,momepy: Urban Morphology Measuring Toolkit,pysal,2022-12-06,2022-10-17,2018-03-30,244,1.3934617629889083 -340,term,https://github.com/federicoceratto/dashing,,,,federicoceratto/dashing,dashing,337,30,9,"['python', 'python3', 'terminal', 'dashboard', 'terminal-based', 'gauges', 'charts']",Python,https://dashing.readthedocs.io/en/latest/,dashing: Terminal dashboards for Python,federicoceratto,2022-12-06,2020-09-06,2017-06-03,287,1.1718827620466965 -563,gis,https://github.com/geopandas/dask-geopandas,,,,geopandas/dask-geopandas,dask-geopandas,336,32,23,[],Python,https://dask-geopandas.readthedocs.io/,dask-geopandas: Parallel GeoPandas with Dask,geopandas,2022-12-06,2022-08-28,2020-02-13,146,2.2879377431906613 -335,ml,https://github.com/mrdbourke/m1-machine-learning-test,,,,mrdbourke/m1-machine-learning-test,m1-machine-learning-test,336,99,12,"['tensorflow', 'tensorflow-macos', 'metal', 'machine-learning']",Jupyter Notebook,,m1-machine-learning-test: Code for testing various M1 Chip benchmarks with TensorFlow.,mrdbourke,2022-12-06,2022-07-16,2021-11-14,55,6.061855670103093 -158,jupyter,https://github.com/nteract/testbook,,,,nteract/testbook,testbook,335,34,15,"['jupyter-notebook', 'unit-testing', 'pytest', 'nteract', 'python', 'testbook']",Python,https://testbook.readthedocs.io,testbook: 🧪 📗 Unit test your Jupyter Notebooks the right way,nteract,2022-12-03,2022-11-29,2020-02-26,145,2.310344827586207 -848,gis,https://github.com/mapbox/mercantile,,,,mapbox/mercantile,mercantile,334,62,117,"['satellite', 'pxm', 'imagery']",Python,,mercantile: Spherical mercator tile and coordinate utilities,mapbox,2022-12-02,2021-10-22,2014-02-12,460,0.7260869565217392 -560,gis,https://github.com/corteva/rioxarray,,,,corteva/rioxarray,rioxarray,333,56,12,"['gis', 'rasterio', 'xarray', 'geospatial', 'python', 'gdal', 'raster', 'netcdf', 'hacktoberfest']",Python,https://corteva.github.io/rioxarray,rioxarray: geospatial xarray extension powered by rasterio,corteva,2022-12-06,2022-11-29,2019-04-16,190,1.7513148009015778 -464,data,https://github.com/dmarx/psaw,,,,dmarx/psaw,psaw,331,45,9,[],Python,,psaw: Python Pushshift.io API Wrapper (for comment/submission search),dmarx,2022-11-17,2022-07-09,2018-04-15,242,1.365350618738951 -684,util,https://github.com/sciunto-org/python-bibtexparser,,,,sciunto-org/python-bibtexparser,python-bibtexparser,330,116,16,"['bibtex', 'bibtex-files', 'latex', 'python', 'hacktoberfest2022']",Python,https://bibtexparser.readthedocs.io,python-bibtexparser: Bibtex parser for Python 3,sciunto-org,2022-12-01,2022-10-20,2013-01-05,517,0.6375931548440519 -237,ml,https://github.com/salesforce/warp-drive,,,,salesforce/warp-drive,warp-drive,328,57,12,"['reinforcement-learning', 'gpu', 'cuda', 'multiagent-reinforcement-learning', 'deep-learning', 'high-throughput', 'pytorch', 'numba']",Python,,warp-drive: Extremely Fast End-to-End Deep Multi-Agent Reinforcement Learning Framework on a GPU,salesforce,2022-12-06,2022-12-02,2021-08-25,67,4.895522388059701 -664,study,https://github.com/rasbt/stat451-machine-learning-fs20,,,,rasbt/stat451-machine-learning-fs20,stat451-machine-learning-fs20,326,177,18,[],Jupyter Notebook,,stat451-machine-learning-fs20: STAT 451: Intro to Machine Learning @ UW-Madison (Fall 2020),rasbt,2022-12-06,2020-12-03,2020-08-06,121,2.675263774912075 -786,util,https://github.com/gefyrahq/gefyra,,,,gefyrahq/gefyra,gefyra,326,22,6,"['kubernetes', 'development', 'developer-tool', 'containers', 'coding', 'tunnel', 'docker', 'k8s']",Python,https://gefyra.dev,"gefyra: Blazingly-fast :rocket:, rock-solid, local application development :arrow_right: with Kubernetes.",gefyrahq,2022-12-05,2022-11-27,2021-11-18,54,5.942708333333333 -747,study,https://github.com/bayesianmodelingandcomputationinpython/bookcode_edition1,,,,bayesianmodelingandcomputationinpython/bookcode_edition1,BookCode_Edition1,324,75,13,[],Jupyter Notebook,https://www.bayesiancomputationbook.com,bayesianmodelingandcomputationinpython/bookcode_edition1,bayesianmodelingandcomputationinpython,2022-12-04,2022-09-20,2021-08-17,68,4.754716981132075 -364,ml-ops,https://github.com/kubeflow/fairing,,,,kubeflow/fairing,fairing,324,146,40,[],Jsonnet,,"fairing: Python SDK for building, training, and deploying ML models",kubeflow,2022-11-24,2021-08-26,2018-09-03,222,1.4575835475578407 -745,perf,https://github.com/blosc/python-blosc,,,,blosc/python-blosc,python-blosc,322,75,12,"['python', 'wrapper', 'blosc', 'compression']",C,https://www.blosc.org/python-blosc/python-blosc.html,python-blosc: A Python wrapper for the extremely fast Blosc compression library ,blosc,2022-11-30,2022-11-10,2010-09-30,635,0.5064030554931476 -719,gis,https://github.com/weecology/deepforest,,,,weecology/deepforest,DeepForest,319,120,15,[],JavaScript,https://deepforest.readthedocs.io/,DeepForest: Python Package for Tree Crown Detection in Airborne RGB imagery,weecology,2022-12-01,2022-12-02,2018-03-07,248,1.2862903225806452 -594,gis,https://github.com/geopython/owslib,,,,geopython/owslib,OWSLib,313,257,31,[],Python,https://geopython.github.io/OWSLib,"OWSLib is a Python package for client programming with Open Geospatial Consortium (OGC) web service (hence OWS) interface standards, and their related content models.",geopython,2022-12-07,2022-12-03,2012-01-13,568,0.5503642300929414 -510,ml-dl,https://github.com/leondgarse/keras_cv_attention_models,,,,leondgarse/keras_cv_attention_models,keras_cv_attention_models,307,49,16,"['tensorflow', 'visualizing', 'keras', 'attention', 'model', 'imagenet', 'coco', 'recognition', 'detection', 'anchor-free', 'tf', 'tf2']",Python,,"keras_cv_attention_models: Keras/Tensorflow models including beit,botnet,CMT,CoaT,CoAtNet,convnext,cotnet,davit,efficientdet,edgenext,efficientformer,efficientnet,fbnet,gcvit,ghostnetv2,gmlp,halonet,hornet,lcnet,levit,maxvit,mlp-mixer,mobilevit,nat,nfnets,regnet,resmlp,resnest,resnext,resnetd,swin,tinynet,uniformer,volo,wavemlp,yolor,yolov7,yolox",leondgarse,2022-12-07,2022-12-04,2021-08-02,70,4.367886178861789 -473,ml-dl,https://github.com/nyandwi/modernconvnets,,,,nyandwi/modernconvnets,ModernConvNets,306,31,7,"['convnets', 'deep-learning-algorithms', 'computer-vision', 'tensorflow', 'keras', 'convolutional-neural-networks', 'neural-networks', 'image-classification', 'cnns']",Jupyter Notebook,,ModernConvNets: Revisions and implementations of modern Convolutional Neural Networks architectures in TensorFlow and Keras,nyandwi,2022-11-30,2022-10-05,2022-02-10,42,7.14 -500,study,https://github.com/googlecloudplatform/practical-ml-vision-book,,,,googlecloudplatform/practical-ml-vision-book,practical-ml-vision-book,300,137,18,[],Jupyter Notebook,,googlecloudplatform/practical-ml-vision-book,googlecloudplatform,2022-12-03,2022-11-21,2020-11-18,107,2.803738317757009 -430,jupyter,https://github.com/chaoleili/jupyterlab_tensorboard,,,,chaoleili/jupyterlab_tensorboard,jupyterlab_tensorboard,295,35,11,"['jupyterlab-extension', 'tensorboard', 'jupyterlab']",TypeScript,,jupyterlab_tensorboard: Tensorboard extension for jupyterlab.,chaoleili,2022-11-11,2022-07-18,2018-08-14,225,1.3102791878172588 -788,study,https://github.com/mynameisfiber/high_performance_python_2e,,,,mynameisfiber/high_performance_python_2e,high_performance_python_2e,288,89,6,"['python', 'high-performance', 'code-samples', 'oreilly', 'oreilly-books']",Python,,"high_performance_python_2e: Code for the book ""High Performance Python 2e"" by Micha Gorelick and Ian Ozsvald with OReilly ",mynameisfiber,2022-12-01,2021-01-15,2020-04-12,138,2.0804953560371517 -574,gis,https://github.com/developmentseed/geolambda,,,,developmentseed/geolambda,geolambda,277,84,50,[],Dockerfile,,geolambda: Create and deploy Geospatial AWS Lambda functions,developmentseed,2022-10-26,2021-02-16,2017-05-02,292,0.9481662591687041 -524,util,https://github.com/venth/aws-adfs,,,,venth/aws-adfs,aws-adfs,276,91,11,"['aws', 'adfs', 'python', 'command-line', 'tools', 'multi-factor-authentication', 'duo-security']",Python,,aws-adfs: Command line tool to ease aws cli authentication against ADFS (multi factor authentication with active directory),venth,2022-12-01,2022-10-29,2016-06-25,336,0.8200339558573854 -884,time-series,https://github.com/pastas/pastas,,,,pastas/pastas,pastas,274,54,15,"['hydrology', 'groundwater', 'python', 'timeseries', 'analysis', 'pastas']",Jupyter Notebook,http://pastas.readthedocs.io/,pastas: :spaghetti: Pastas is an open-source Python framework for the analysis of groundwater time series.,pastas,2022-11-22,2022-08-02,2016-04-15,346,0.7902760609806345 -827,gis,https://github.com/datasystemslab/geotorch,,,,datasystemslab/geotorch,GeoTorch,271,14,7,"['classification-model', 'convlstm-pytorch', 'deep-learning', 'deep-neural-networks', 'deepsat', 'prediction-model', 'raster-data', 'satellite-images', 'segmentation-models', 'sequence-models', 'spatial-data-analysis', 'spatio-temporal-analysis', 'spatio-temporal-models', 'spatio-temporal-prediction', 'st-resnet', 'satellite-classification']",Python,https://kanchanchy.github.io/geotorch/,GeoTorch: A Spatiotemporal Deep Learning Framework,datasystemslab,2022-12-04,2022-11-27,2022-05-23,28,9.580808080808081 -727,web,https://github.com/rstudio/py-shiny,,,,rstudio/py-shiny,py-shiny,271,14,18,[],JavaScript,https://shiny.rstudio.com/py/,py-shiny: Shiny for Python,rstudio,2022-12-06,2022-11-06,2021-07-27,71,3.8092369477911645 -123,util,https://github.com/mgedmin/check-manifest,,,,mgedmin/check-manifest,check-manifest,269,37,7,[],Python,https://pypi.org/p/check-manifest,check-manifest: Tool to check the completeness of MANIFEST.in for Python packages,mgedmin,2022-12-05,2022-12-05,2013-03-05,509,0.5283389450056116 -852,web,https://github.com/conradbez/hstream,,,,conradbez/hstream,hstream,264,11,6,[],Python,,hstream: Hyper Stream,conradbez,2022-12-02,2022-11-24,2022-11-03,4,54.35294117647059 -307,crypto,https://github.com/ethereum/eth-utils,,,,ethereum/eth-utils,eth-utils,263,141,19,"['ethereum', 'python', 'utility-library']",Python,https://eth-utils.readthedocs.io/en/latest/,eth-utils: Utility functions for working with ethereum related codebases.,ethereum,2022-12-03,2022-11-17,2017-02-07,304,0.864725223109441 -385,nlp,https://github.com/kootenpv/contractions,,,,kootenpv/contractions,contractions,262,35,7,[],Python,,contractions: Fixes contractions such as `you're` to you `are`,kootenpv,2022-12-02,2022-11-15,2016-12-25,310,0.8439944776806259 -342,term,https://github.com/rockhopper-technologies/enlighten,,,,rockhopper-technologies/enlighten,enlighten,262,19,4,['python'],Python,https://python-enlighten.readthedocs.io,Enlighten Progress Bar for Python Console Apps,rockhopper-technologies,2022-11-28,2022-12-01,2017-09-22,271,0.964248159831756 -210,util,https://github.com/tiangolo/poetry-version-plugin,,,,tiangolo/poetry-version-plugin,poetry-version-plugin,261,23,5,"['python-poetry', 'packaging', 'python', 'python3', 'pypi', 'packaging-for-pypi']",Python,,poetry-version-plugin: Poetry plugin for dynamically extracting the package version from a __version__ variable or a Git tag.,tiangolo,2022-12-03,2021-05-28,2021-05-27,79,3.268336314847943 -508,data,https://github.com/facebookresearch/mephisto,,,,facebookresearch/mephisto,Mephisto,257,58,14,[],JavaScript,https://mephisto.ai/,Mephisto: A suite of tools for managing crowdsourcing tasks from the inception through to data packaging for research use. ,facebookresearch,2022-11-23,2022-12-02,2019-08-19,172,1.4917081260364842 -303,util,https://github.com/airbnb/ottr,,,,airbnb/ottr,ottr,256,27,8,[],Python,,ottr: Serverless Public Key Infrastructure Framework,airbnb,2022-11-05,2022-01-04,2021-08-27,66,3.8372591006423984 -418,pandas,https://github.com/zsailer/pandas_flavor,,,,zsailer/pandas_flavor,pandas_flavor,254,17,6,['pandas'],Python,https://zsailer.github.io/software/pandas-flavor/,pandas_flavor: The easy way to write your own flavor of Pandas,zsailer,2022-12-04,2022-04-17,2018-01-25,253,1.0005627462014632 -693,data,https://github.com/paperswithcode/sota-extractor,,,,paperswithcode/sota-extractor,sota-extractor,251,27,13,[],Python,,sota-extractor: The SOTA extractor pipeline,paperswithcode,2022-12-06,2022-03-09,2018-12-07,208,1.2026009582477755 -670,gis,https://github.com/cgal/cgal-swig-bindings,,,,cgal/cgal-swig-bindings,cgal-swig-bindings,251,78,26,[],C++,,cgal-swig-bindings: CGAL bindings using SWIG,cgal,2022-12-02,2022-10-19,2015-03-14,403,0.6219469026548673 -374,data,https://github.com/ndrplz/google-drive-downloader,,,,ndrplz/google-drive-downloader,google-drive-downloader,249,63,11,[],Python,,google-drive-downloader: Minimal class to download shared files from Google Drive.,ndrplz,2022-11-15,2019-02-09,2017-12-08,260,0.955068493150685 -587,ml,https://github.com/merantix-momentum/squirrel-core,,,,merantix-momentum/squirrel-core,squirrel-core,249,4,14,"['python', 'ml', 'machine-learning', 'data-science', 'computer-vision', 'cv', 'nlp', 'natural-language-processing', 'ai', 'pytorch', 'tensorflow', 'jax', 'datasets', 'distributed', 'dataops', 'collaboration', 'deep-learning', 'data-mesh', 'data-ingestion', 'cloud-computing']",Python,https://squirrel-core.readthedocs.io/,"squirrel-core: A Python library that enables ML teams to share, load, and transform data in a collaborative, flexible, and efficient way :chestnut:",merantix-momentum,2022-12-07,2022-11-17,2022-02-11,42,5.829431438127091 -248,util,https://github.com/rpgreen/apilogs,,,,rpgreen/apilogs,apilogs,247,19,9,"['api', 'gateway', 'api-gateway', 'aws', 'cloudwatch-logs', 'logging', 'lambda', 'aws-lambda', 'aws-apigateway']",Python,,apilogs: Easy logging and debugging for Amazon API Gateway and AWS Lambda Serverless APIs,rpgreen,2022-10-23,2019-11-13,2016-09-07,326,0.7576687116564417 -300,nlp,https://github.com/openai/grade-school-math,,,,openai/grade-school-math,grade-school-math,244,45,7,[],Python,,openai/grade-school-math,openai,2022-12-06,2021-11-19,2021-10-20,59,4.135593220338983 -454,gis,https://github.com/openaddresses/pyesridump,,,,openaddresses/pyesridump,pyesridump,243,59,16,[],Python,,pyesridump: Scrapes an ESRI MapServer REST endpoint to spit out more generally-usable geodata.,openaddresses,2022-12-06,2022-06-19,2013-12-06,469,0.5173357664233577 -480,pandas,https://github.com/holoviz/spatialpandas,,,,holoviz/spatialpandas,spatialpandas,243,20,21,"['holoviz', 'spatialpandas', 'pandas', 'geopandas', 'geographic-data']",Python,,spatialpandas: Pandas extension arrays for spatial/geometric operations,holoviz,2022-12-05,2022-11-22,2019-10-28,162,1.4973591549295775 -714,ml-ops,https://github.com/unionai-oss/unionml,,,,unionai-oss/unionml,unionml,242,38,4,"['machine-learning', 'mlops', 'hacktoberfest']",Python,https://www.union.ai/unionml,UnionML: the easiest way to build and deploy machine learning microservices,unionai-oss,2022-12-06,2022-11-29,2021-11-17,55,4.4 -276,crypto,https://github.com/ethtx/ethtx_ce,,,,ethtx/ethtx_ce,ethtx_ce,239,59,13,[],Python,https://ethtx.info,ethtx_ce: Ethereum transaction decoder (community version).,ethtx,2022-12-05,2022-12-05,2021-07-26,71,3.352705410821643 -277,data,https://github.com/airbnb/omniduct,,,,airbnb/omniduct,omniduct,237,47,30,[],Python,,"omniduct: A toolkit providing a uniform interface for connecting to and extracting data from a wide variety of (potentially remote) data stores (including HDFS, Hive, Presto, MySQL, etc).",airbnb,2022-10-16,2022-05-09,2017-02-22,302,0.7847682119205298 -864,ml-ops,https://github.com/astronomer/airflow-chart,,,,astronomer/airflow-chart,airflow-chart,236,86,44,"['helm-chart', 'airflow', 'apache-airflow', 'kubernetes']",Python,,airflow-chart: A Helm chart to install Apache Airflow on Kubernetes,astronomer,2022-11-29,2022-12-06,2020-01-22,150,1.5733333333333333 -657,template,https://github.com/sqlalchemy/mako,,,,sqlalchemy/mako,mako,234,46,10,[],Python,https://www.makotemplates.org,Mako Templates for Python,sqlalchemy,2022-12-06,2022-12-01,2018-11-26,210,1.1127717391304348 -870,ml,https://github.com/infer-actively/pymdp,,,,infer-actively/pymdp,pymdp,232,37,23,[],Python,,pymdp: A Python implementation of active inference for Markov Decision Processes,infer-actively,2022-12-06,2022-10-26,2019-11-27,158,1.4683544303797469 -588,data,https://github.com/tokern/data-lineage,,,,tokern/data-lineage,data-lineage,231,27,8,"['data-lineage', 'data-governance', 'python', 'postgresql', 'jupyter']",Python,https://tokern.io/data-lineage/,data-lineage: Generate and Visualize Data Lineage from query history,tokern,2022-12-01,2022-05-02,2020-03-17,142,1.6251256281407036 -229,data,https://github.com/microsoft/genalog,,,,microsoft/genalog,genalog,231,23,10,"['ner', 'ocr-recognition', 'python', 'text-alignment', 'data-generation', 'data-science', 'machine-learning', 'synthetic-data', 'synthetic-images', 'synthetic-data-generation']",Jupyter Notebook,https://microsoft.github.io/genalog/,"Genalog is an open source, cross-platform python package allowing generation of synthetic document images with custom degradations and text alignment capabilities.",microsoft,2022-11-29,2022-09-13,2020-06-15,129,1.7867403314917127 -515,data,https://github.com/jovianml/opendatasets,,,,jovianml/opendatasets,opendatasets,230,110,14,"['data-science', 'machine-learning', 'datasets', 'python']",Python,,"opendatasets: A Python library for downloading datasets from Kaggle, Google Drive, and other online sources.",jovianml,2022-12-03,2022-11-01,2020-09-17,115,1.9852034525277436 -83,ml,https://github.com/stan-dev/pystan,,,,stan-dev/pystan,pystan,219,43,12,[],Python,,"PyStan, a Python interface to Stan, a platform for statistical modeling. Documentation: https://pystan.readthedocs.io",stan-dev,2022-11-28,2022-11-26,2017-09-17,272,0.8038804404824331 -274,data,https://github.com/amzn/ion-python,,,,amzn/ion-python,ion-python,213,49,23,[],Python,http://amzn.github.io/ion-docs/,ion-python: A Python implementation of Amazon Ion.,amzn,2022-12-06,2022-08-19,2016-04-07,347,0.6123203285420945 -737,ml-ops,https://github.com/skops-dev/skops,,,,skops-dev/skops,skops,213,31,9,"['huggingface', 'machine-learning', 'mlops', 'scikit-learn', 'hacktoberfest']",Python,https://skops.readthedocs.io/en/stable/,skops is a Python library helping you share your scikit-learn based models and put them in production,skops-dev,2022-12-06,2022-12-05,2022-05-04,31,6.870967741935484 -491,gis,https://github.com/cogeotiff/rio-cogeo,,,,cogeotiff/rio-cogeo,rio-cogeo,212,30,44,"['satellite', 'cog', 'geotiff', 'rasterio', 'cogeotiff']",Python,https://cogeotiff.github.io/rio-cogeo/,rio-cogeo: Cloud Optimized GeoTIFF creation and validation plugin for rasterio,cogeotiff,2022-11-16,2022-10-26,2018-03-09,247,0.8558246828143022 -249,sim,https://github.com/bilhim/trafficsimulator,,,,bilhim/trafficsimulator,trafficSimulator,203,77,13,[],Python,,bilhim/trafficsimulator,bilhim,2022-12-07,2021-09-07,2021-09-05,65,3.1026200873362444 -888,study,https://github.com/amaargiru/pyroad,,,,amaargiru/pyroad,pyroad,199,25,5,"['python', 'roadmap', 'tutorial']",Jupyter Notebook,,pyroad: Detailed Python developer roadmap,amaargiru,2022-12-06,2022-11-29,2022-11-03,4,40.970588235294116 -243,ml,https://github.com/carla-recourse/carla,,,,carla-recourse/carla,CARLA,197,41,5,"['python', 'machine-learning', 'artificial-intelligence', 'explainable-ai', 'explainable-ml', 'explainability', 'counterfactual-explanations', 'counterfactuals', 'counterfactual', 'recourse', 'benchmark', 'benchmarking', 'tensorflow', 'tensorflow2', 'pytorch']",Python,,CARLA: A Python Library to Benchmark Algorithmic Recourse and Counterfactual Explanation Algorithms,carla-recourse,2022-12-03,2022-09-07,2020-12-09,104,1.8942307692307692 -240,sim,https://github.com/nv-tlabs/gamegan_code,,,,nv-tlabs/gamegan_code,GameGAN_code,197,32,9,[],Python,,GameGAN_code: Learning to Simulate Dynamic Environments with GameGAN (CVPR 2020),nv-tlabs,2022-12-04,2021-11-11,2020-12-11,103,1.899449035812672 -865,ml-ops,https://github.com/astronomer/astro-sdk,,,,astronomer/astro-sdk,astro-sdk,195,26,13,"['python', 'sql', 'pandas', 'airflow', 'sqlite', 'bigquery', 'postgres', 'snowflake', 'gcs', 's3', 'etl', 'elt', 'dags', 'workflows', 'data-analysis', 'data-science', 'apache-airflow']",Python,https://docs.astronomer.io/learn/astro-python-sdk-etl,"astro-sdk: Astro SDK allows rapid and clean development of {Extract, Load, Transform} workflows using Python and SQL, powered by Apache Airflow.",astronomer,2022-12-06,2022-12-07,2021-12-06,52,3.7295081967213113 -836,gis,https://github.com/r-barnes/richdem,,,,r-barnes/richdem,richdem,194,57,14,"['digital-elevation-model', 'geosciences', 'geospatial', 'hydrology', 'hydrologic-modeling', 'big-data']",C++,,richdem: High-performance Terrain and Hydrology Analysis ,r-barnes,2022-12-05,2022-11-18,2013-01-06,517,0.3749309773605743 -733,ml,https://github.com/autonlab/auton-survival,,,,autonlab/auton-survival,auton-survival,194,48,6,"['survival-analysis', 'reliability-analysis', 'python', 'data-science', 'deep-learning', 'machine-learning', 'time-to-event', 'counterfactual-inference', 'regression', 'causal-inference', 'graphical-models']",Python,http://autonlab.github.io/auton-survival,"auton-survival: Auton Survival - an open source package for Regression, Counterfactual Estimation, Evaluation and Phenotyping with Censored Time-to-Events ",autonlab,2022-12-02,2022-11-05,2020-04-01,140,1.3857142857142857 -859,jupyter,https://github.com/jupyter/nbformat,,,,jupyter/nbformat,nbformat,193,142,26,[],Python,http://nbformat.readthedocs.io/,nbformat: Reference implementation of the Jupyter Notebook format,jupyter,2022-12-01,2022-12-06,2015-04-09,399,0.4826723829939264 -456,gis,https://github.com/graal-research/deepparse,,,,graal-research/deepparse,deepparse,186,23,4,"['machine-learning', 'python', 'addresses-parsing']",Python,https://deepparse.org/,Deepparse is a state-of-the-art library for parsing multinational street addresses using deep learning,graal-research,2022-12-06,2022-12-01,2020-07-01,127,1.4645669291338583 -337,util,https://github.com/mrabarnett/mrab-regex,,,,mrabarnett/mrab-regex,mrab-regex,183,24,5,[],C,,mrabarnett/mrab-regex,mrabarnett,2022-12-06,2022-10-31,2020-11-02,109,1.6745098039215687 -446,gis,https://github.com/pysal/spopt,,,,pysal/spopt,spopt,182,30,13,"['spatial-optimization', 'regionalization', 'facility-location', 'routing', 'transportation', 'spatial-analysis', 'location-allocation', 'location-modeling', 'resource-planning', 'python']",Python,https://pysal.org/spopt/,spopt: Spatial Optimization,pysal,2022-11-27,2022-11-21,2019-03-01,196,0.925199709513435 -207,util,https://github.com/aws/aws-lambda-python-runtime-interface-client,,,,aws/aws-lambda-python-runtime-interface-client,aws-lambda-python-runtime-interface-client,178,41,12,[],Python,,aws/aws-lambda-python-runtime-interface-client,aws,2022-12-01,2022-08-16,2020-09-02,118,1.5084745762711864 -520,gis,https://github.com/lydorn/polygonization-by-frame-field-learning,,,,lydorn/polygonization-by-frame-field-learning,Polygonization-by-Frame-Field-Learning,177,50,11,"['segmentation', 'polygonization', 'remote', 'sensing', 'frame', 'field']",Python,,Polygonization-by-Frame-Field-Learning: This repository contains the code for our fast polygonal building extraction from overhead images pipeline.,lydorn,2022-12-06,2021-07-08,2020-05-26,132,1.3394594594594595 -585,gis,https://github.com/spatialucr/geosnap,,,,spatialucr/geosnap,geosnap,175,28,17,[],Python,https://spatialucr.github.io/geosnap-guide,geosnap: The Geospatial Neighborhood Analysis Package,spatialucr,2022-12-06,2022-10-24,2018-09-19,220,0.7954545454545454 -731,gis,https://github.com/bowenc0221/boundary-iou-api,,,,bowenc0221/boundary-iou-api,boundary-iou-api,174,17,8,[],Python,,boundary-iou-api: Boundary IoU API (Beta version),bowenc0221,2022-11-25,2021-04-05,2021-03-29,88,1.970873786407767 -467,math,https://github.com/lukaszahradnik/pyneuralogic,,,,lukaszahradnik/pyneuralogic,PyNeuraLogic,173,13,4,"['machine-learning', 'deep-learning', 'graph-neural-networks', 'relational-learning', 'python', 'geometric-deep-learning', 'pytorch', 'logic-programming', 'differentiable-programming']",Python,https://pyneuralogic.readthedocs.io/,PyNeuraLogic lets you use Python to create Differentiable Logic Programs,lukaszahradnik,2022-12-05,2022-12-05,2020-12-06,104,1.6566347469220246 -33,gis,https://github.com/jasonrig/address-net,,,,jasonrig/address-net,address-net,171,71,13,"['rnn', 'deep-learning', 'machine-learning', 'address-parser']",Python,,address-net: A package to structure Australian addresses,jasonrig,2022-12-01,2020-09-09,2018-12-05,209,0.8181818181818182 -266,nlp,https://github.com/allenai/s2orc-doc2json,,,,allenai/s2orc-doc2json,s2orc-doc2json,170,29,8,[],Python,,"s2orc-doc2json: Parsers for scientific papers (PDF2JSON, TEX2JSON, JATS2JSON)",allenai,2022-12-06,2022-11-18,2020-12-10,103,1.6368638239339752 -461,nlp,https://github.com/yoadtew/zero-shot-image-to-text,,,,yoadtew/zero-shot-image-to-text,zero-shot-image-to-text,164,22,7,[],Python,,zero-shot-image-to-text: Implementation of Zero-Shot Image-to-Text Generation for Visual-Semantic Arithmetic,yoadtew,2022-12-06,2022-09-17,2021-11-26,53,3.0531914893617023 -339,perf,https://github.com/tlkh/tf-metal-experiments,,,,tlkh/tf-metal-experiments,tf-metal-experiments,160,17,9,"['gpu', 'deep-learning', 'tensorflow', 'm1', 'm1-max', 'benchmark', 'bert']",Jupyter Notebook,,tf-metal-experiments: TensorFlow Metal Backend on Apple Silicon Experiments (just for fun),tlkh,2022-11-30,2021-11-15,2021-10-26,58,2.751842751842752 -899,gis,https://github.com/kuanb/peartree,,,,kuanb/peartree,peartree,160,13,11,"['network-analysis', 'transit', 'graphs', 'gtfs', 'spatial-analysis', 'gis', 'modeling']",Python,,peartree: A library for converting transit data into a directed graph for sketch network analysis.,kuanb,2022-12-07,2021-01-18,2017-11-12,264,0.605078336034576 -743,study,https://github.com/koaning/calm-notebooks,,,,koaning/calm-notebooks,calm-notebooks,157,133,7,[],Jupyter Notebook,https://calmcode.io,calm-notebooks: notebooks that are used at calmcode.io,koaning,2022-12-07,2021-10-21,2020-03-01,144,1.0870425321463897 -819,time-series,https://github.com/salesforce/deeptime,,,,salesforce/deeptime,DeepTime,155,22,5,"['deep-learning', 'forecasting', 'meta-learning', 'time-series', 'time-series-forecasting', 'time-series-regression', 'implicit-neural-representation']",Python,,PyTorch code for DeepTime: Deep Time-Index Meta-Learning for Non-Stationary Time-Series Forecasting,salesforce,2022-12-05,2022-11-03,2022-06-27,23,6.656441717791411 -890,graph,https://github.com/h4kor/graph-force,,,,h4kor/graph-force,graph-force,152,0,9,"['force-directed-graphs', 'graph-algorithms', 'python', 'python3']",Rust,https://pypi.org/project/graph-force/,"graph-force: Python library for embedding large graphs in 2D space, using force-directed layouts.",h4kor,2022-12-05,2022-11-28,2022-11-28,1,118.22222222222223 -775,sim,https://github.com/activitysim/activitysim,,,,activitysim/activitysim,activitysim,143,86,42,"['python', 'travel-modeling', 'data-science', 'bsd-3-clause', 'microsimulation', 'activitysim']",Jupyter Notebook,https://activitysim.github.io,activitysim: An Open Platform for Activity-Based Travel Modeling,activitysim,2022-10-29,2022-09-14,2014-06-18,442,0.3235294117647059 -415,ml-dl,https://github.com/rafiqhasan/auto-tensorflow,,,,rafiqhasan/auto-tensorflow,auto-tensorflow,141,31,12,"['tensorflow', 'deeplearning', 'neural-networks', 'machinelearning', 'tfx', 'machine-learning', 'automl', 'auto-tensorflow', 'autotensorflow']",Python,,auto-tensorflow: Build Low Code Automated Tensorflow explainable models in just 3 lines of code. Library created by: Hasan Rafiq - https://www.linkedin.com/in/sam04/,rafiqhasan,2022-11-09,2022-10-31,2021-07-05,74,1.898076923076923 -606,util,https://github.com/pyscript/pyscript-cli,,,,pyscript/pyscript-cli,pyscript-cli,140,14,11,[],Python,,pyscript-cli: A CLI for PyScript,pyscript,2022-11-17,2022-12-05,2022-05-01,31,4.454545454545454 -869,util,https://github.com/hugovk/pypistats,,,,hugovk/pypistats,pypistats,137,25,4,"['python', 'python3', 'pypi', 'statistics', 'stats', 'api', 'cli', 'command-line', 'command-line-tool', 'downloads', 'hacktoberfest']",Python,https://pypistats.org/api/,pypistats: Command-line interface to PyPI Stats API to get download stats for Python packages,hugovk,2022-12-06,2022-12-03,2018-09-22,219,0.623942745608328 -231,template,https://github.com/crmne/cookiecutter-modern-datascience,,,,crmne/cookiecutter-modern-datascience,cookiecutter-modern-datascience,134,27,3,"['cookiecutter', 'cookiecutter-template', 'cookiecutter-data-science', 'python', 'datascience']",Python,,cookiecutter-modern-datascience: Start a data science project with modern tools,crmne,2022-12-03,2022-06-10,2020-07-06,126,1.0610859728506787 -147,graph,https://github.com/guyallard/markov_clustering,,,,guyallard/markov_clustering,markov_clustering,132,33,9,"['markov-clustering', 'clustering', 'python', 'networks']",Python,,markov_clustering: markov clustering in python,guyallard,2022-11-15,2018-12-11,2017-09-27,271,0.4870848708487085 -774,sim,https://github.com/openfisca/openfisca-core,,,,openfisca/openfisca-core,openfisca-core,131,72,24,"['legislation-as-code', 'rules-as-code', 'better-rules', 'microsimulation']",Python,https://openfisca.org,openfisca-core: OpenFisca core engine. See other repositories for countries-specific code & data.,openfisca,2022-12-06,2022-12-01,2013-12-29,466,0.28085758039816233 -826,diffusion,https://github.com/thereforegames/unprompted,,,,thereforegames/unprompted,unprompted,129,10,4,[],Python,,unprompted: Text generator written for Stable Diffusion workflows.,thereforegames,2022-12-06,2022-12-07,2022-10-31,5,24.405405405405407 -564,gis,https://github.com/geopandas/pyogrio,,,,geopandas/pyogrio,pyogrio,129,8,8,[],Python,https://pyogrio.readthedocs.io,pyogrio: Vectorized vector I/O using OGR,geopandas,2022-11-30,2022-11-14,2020-03-27,140,0.916751269035533 -785,util,https://github.com/brokenloop/jsontopydantic,,,,brokenloop/jsontopydantic,jsontopydantic,126,7,3,[],TypeScript,https://jsontopydantic.com,jsontopydantic: Web tool for generating Pydantic models from JSON objects,brokenloop,2022-11-29,2022-05-13,2020-11-28,105,1.1935047361299054 -290,template,https://github.com/eugeneyan/python-collab-template,,,,eugeneyan/python-collab-template,python-collab-template,124,35,4,"['python', 'unit-testing', 'linting', 'type-checking', 'github-actions', 'makefile', 'coverage', 'hacktoberfest']",Python,https://eugeneyan.com/writing/setting-up-python-project-for-automation-and-collaboration/,"python-collab-template: 🛠 Python project template with unit tests, code coverage, linting, type checking, Makefile wrapper, and GitHub Actions.",eugeneyan,2022-11-28,2022-07-02,2020-06-21,128,0.9655172413793104 -305,util,https://github.com/xrudelis/pytrait,,,,xrudelis/pytrait,pytrait,121,3,3,[],Python,,pytrait: Traits for Python3,xrudelis,2022-11-15,2021-11-27,2021-11-21,54,2.2230971128608923 -583,web,https://github.com/developmentseed/fastai-serving,,,,developmentseed/fastai-serving,fastai-serving,121,11,8,"['machine-learning', 'python', 'deep-learning', 'pytorch', 'docker']",Python,,"fastai-serving: A Docker image for serving fast.ai models, mimicking the API of Tensorflow Serving",developmentseed,2022-04-08,2020-02-10,2019-07-01,179,0.6749003984063745 -555,ml,https://github.com/nicolas-chaulet/torch-points3d,,,,nicolas-chaulet/torch-points3d,torch-points3d,118,30,0,[],,https://torch-points3d.readthedocs.io/en/latest/,torch-points3d: Pytorch framework for doing deep learning on point clouds.,nicolas-chaulet,2022-12-01,2021-12-10,2022-01-09,47,2.4879518072289155 -316,util,https://github.com/irmen/pyminiaudio,,,,irmen/pyminiaudio,pyminiaudio,117,13,3,[],C,,"pyminiaudio: python interface to the miniaudio audio playback, recording, decoding and conversion library",irmen,2022-11-22,2022-11-15,2019-06-30,179,0.6520700636942676 -571,gis,https://github.com/developmentseed/geojson-pydantic,,,,developmentseed/geojson-pydantic,geojson-pydantic,113,27,11,"['geojson', 'pydantic', 'geojson-spec']",Python,,geojson-pydantic: Pydantic data models for the GeoJSON spec,developmentseed,2022-11-29,2022-11-02,2020-05-21,132,0.8505376344086022 -901,gis,https://github.com/amazon-science/earth-forecasting-transformer,,,,amazon-science/earth-forecasting-transformer,earth-forecasting-transformer,111,19,7,[],Jupyter Notebook,,earth-forecasting-transformer: Official implementation of Earthformer,amazon-science,2022-12-07,2022-12-01,2022-09-12,12,9.034883720930232 -893,sim,https://github.com/crowdbotp/socialways,,,,crowdbotp/socialways,socialways,109,45,9,"['trajectory-prediction', 'human-trajectory-prediction', 'gan', 'social-navigation', 'social-ways', 'pedestrian-trajectories', 'pedestrian', 'social-gan', 'social-robots', 'generative-adversarial-network', 'trajectory-forecasting', 'self-driving-car', 'prediction-model', 'info-gan', 'crowd-simulation']",Python,,socialways: Social Ways: Learning Multi-Modal Distributions of Pedestrian Trajectories with GANs (CVPR 2019),crowdbotp,2022-12-02,2020-03-20,2019-04-23,189,0.5762839879154078 -407,data,https://github.com/google/weather-tools,,,,google/weather-tools,weather-tools,108,23,12,"['python', 'apache-beam', 'weather']",Python,https://weather-tools.readthedocs.io/,weather-tools: Apache Beam pipelines to make weather data accessible and useful.,google,2022-12-07,2022-12-06,2021-11-22,54,1.9894736842105263 -466,nlp,https://github.com/infinitylogesh/mutate,,,,infinitylogesh/mutate,mutate,105,7,3,"['nlp-library', 'text-generation', 'language-model', 'data-augmentation', 'data-labeling']",Python,,mutate: A library to synthesize text datasets using Large Language Models (LLM),infinitylogesh,2022-11-08,2022-04-18,2021-12-29,49,2.142857142857143 -463,data,https://github.com/psycoguana/subredditmediadownloader,,,,psycoguana/subredditmediadownloader,SubredditMediaDownloader,102,6,3,[],Python,,SubredditMediaDownloader: Simple Python script to download images and videos from public subreddits without using Reddit's API 😎,psycoguana,2022-12-06,2022-11-20,2022-02-18,41,2.4452054794520546 -527,ml,https://github.com/hazyresearch/domino,,,,hazyresearch/domino,domino,98,14,20,[],Python,,hazyresearch/domino,hazyresearch,2022-12-07,2022-08-02,2021-11-29,53,1.839142091152815 -847,gis,https://github.com/remotesensinglab/raster4ml,,,,remotesensinglab/raster4ml,raster4ml,97,11,4,"['agriculture-research', 'data-science', 'geospatial-data', 'machine-learning', 'remote-sensing', 'vegetation', 'vegetation-index', 'python']",Python,https://raster4ml.readthedocs.io,raster4ml: A geospatial raster processing library for machine learning,remotesensinglab,2022-12-04,2022-11-01,2022-07-11,21,4.557046979865772 -529,nlp,https://github.com/hazyresearch/fonduer-tutorials,,,,hazyresearch/fonduer-tutorials,fonduer-tutorials,96,23,18,[],Jupyter Notebook,https://github.com/HazyResearch/fonduer,fonduer-tutorials: A collection of simple tutorials for using Fonduer,hazyresearch,2022-12-01,2020-05-27,2018-03-23,245,0.39069767441860465 -533,gis,https://github.com/gdaosu/lod2buildingmodel,,,,gdaosu/lod2buildingmodel,LOD2BuildingModel,96,23,9,[],Python,,LOD2BuildingModel: SAT2LoD2: Automated LoD-2 Model Reconstruction from Satellite-derived DSM and Orthophoto,gdaosu,2022-12-06,2022-07-21,2021-08-30,66,1.4482758620689655 -781,gis,https://github.com/ghislainv/forestatrisk,,,,ghislainv/forestatrisk,forestatrisk,95,20,4,"['python', 'land-use-change', 'spatial-modelling', 'spatial-analysis', 'forecasting', 'spatial-autocorrelation', 'tropical-forests', 'roads', 'protected-areas', 'biodiversity-scenario', 'ipbes', 'co2-emissions', 'ipcc', 'forest-cover-change', 'deforestation', 'deforestation-risk', 'redd']",Python,https://ecology.ghislainv.fr/forestatrisk,forestatrisk: :package: :snake: Python package to model and forecast the risk of deforestation,ghislainv,2022-11-07,2022-08-23,2016-12-01,313,0.3026854802002731 -457,nlp,https://github.com/coastalcph/lex-glue,,,,coastalcph/lex-glue,lex-glue,94,22,6,"['legal', 'nlp', 'benchmark', 'legaltech', 'lawtech']",Python,,lex-glue: LexGLUE: A Benchmark Dataset for Legal Language Understanding in English,coastalcph,2022-12-06,2022-11-04,2021-09-27,62,1.5091743119266054 -558,gis,https://github.com/darribas/gds_env,,,,darribas/gds_env,gds_env,93,36,10,"['geographic-data-science', 'docker', 'python', 'r', 'latex', 'jupyter-lab']",Jupyter Notebook,https://darribas.org/gds_env,gds_env: A containerised platform for Geographic Data Science,darribas,2022-11-16,2022-06-08,2016-08-12,329,0.2820623916811092 -534,ml-dl,https://github.com/benedekrozemberczki/tigerlily,,,,benedekrozemberczki/tigerlily,tigerlily,90,9,1,"['node', 'embedding', 'node-embedding', 'graph-embedding', 'ddi', 'drug-drug-interaction', 'gradient-boosting', 'graph', 'pharmaceuticals', 'network-science', 'biology', 'heterogeneous-graph', 'knowledge-graph', 'deep-learning', 'machine-learning', 'unsupervised-learning', 'tigergraph', 'graph-database', 'graph-machine-learning']",Jupyter Notebook,,TigerLily: Finding drug interactions in silico with the Graph.,benedekrozemberczki,2022-09-11,2022-11-06,2022-02-28,40,2.234042553191489 -835,typing,https://github.com/jellezijlstra/autotyping,,,,jellezijlstra/autotyping,autotyping,88,7,3,[],Python,,jellezijlstra/autotyping,jellezijlstra,2022-12-06,2022-10-13,2021-06-25,75,1.1622641509433962 -744,ml-ops,https://github.com/aiqc/aiqc,,,,aiqc/aiqc,AIQC,88,19,4,[],Jupyter Notebook,,AIQC: End-to-end deep learning on your desktop or server.,aiqc,2022-11-21,2022-11-23,2020-12-02,105,0.8380952380952381 -667,gis,https://github.com/zorzi-s/polyworldpretrainednetwork,,,,zorzi-s/polyworldpretrainednetwork,PolyWorldPretrainedNetwork,88,13,7,[],Python,,PolyWorldPretrainedNetwork: PolyWorld: Polygonal Building Extraction with Graph Neural Networks in Satellite Images,zorzi-s,2022-12-06,2022-11-10,2022-03-23,37,2.3783783783783785 -485,gis,https://github.com/scisco/area,,,,scisco/area,area,86,19,3,[],Python,,area: Calculate the area inside of any GeoJSON geometry. This is a port of Mapbox's geojson-area for Python,scisco,2022-10-27,2018-10-31,2015-11-25,367,0.23433242506811988 -269,term,https://github.com/deeplook/sparklines,,,,deeplook/sparklines,sparklines,83,6,3,"['python', 'command-line-tool', 'graphs', 'ascii', 'sparklines', 'sparkline-graphs']",Python,,sparklines: Text-based sparkline command line mimicking those of Edward Tuft.,deeplook,2022-11-26,2021-06-26,2016-05-17,342,0.24258872651356994 -562,gis,https://github.com/geopandas/xyzservices,,,,geopandas/xyzservices,xyzservices,81,19,11,[],Python,https://xyzservices.readthedocs.io/,xyzservices: Source of XYZ tiles providers,geopandas,2022-12-06,2022-12-01,2021-05-21,80,1.0035398230088495 -746,data,https://github.com/ktrueda/parquet-tools,,,,ktrueda/parquet-tools,parquet-tools,81,10,3,"['parquet', 'parquet-tools', 'cli']",Python,,parquet-tools: easy install parquet-tools,ktrueda,2022-11-26,2022-06-14,2020-05-02,135,0.5974710221285564 -668,gis,https://github.com/zorzi-s/projectregularization,,,,zorzi-s/projectregularization,projectRegularization,80,7,2,[],Python,,projectRegularization: Regularization of Building Boundaries using Adversarial and Regularized losses,zorzi-s,2022-11-10,2021-09-17,2021-05-18,81,0.9859154929577465 -842,jupyter,https://github.com/cmudig/autoprofiler,,,,cmudig/autoprofiler,AutoProfiler,79,4,1,"['jupyter', 'pandas', 'python']",Svelte,,AutoProfiler: Automatically profile dataframes in the Jupyter sidebar,cmudig,2022-12-04,2022-12-01,2022-03-24,36,2.143410852713178 -769,ml-dl,https://github.com/praw-dev/asyncpraw,,,,praw-dev/asyncpraw,asyncpraw,78,14,3,"['python', 'api', 'oauth', 'reddit', 'reddit-api', 'async', 'asyncpraw', 'praw']",Python,https://asyncpraw.readthedocs.io,"asyncpraw: Async PRAW, an abbreviation for ""Asynchronous Python Reddit API Wrapper"", is a python package that allows for simple access to Reddit's API.",praw-dev,2022-12-04,2022-11-28,2019-02-05,200,0.3897216274089936 -327,security,https://github.com/sonatype-nexus-community/jake,,,,sonatype-nexus-community/jake,jake,74,18,8,"['python', 'vulnerabilities', 'vulnerability-scanners', 'ossindex', 'nexus-iq', 'sonatype-iq']",Python,https://jake.readthedocs.io/,jake: Check your Python environments for vulnerable Open Source packages with OSS Index or Sonatype Nexus Lifecycle.,sonatype-nexus-community,2022-12-05,2022-12-05,2019-10-10,164,0.4488734835355286 -530,ml,https://github.com/brohrer/cottonwood,,,,brohrer/cottonwood,cottonwood,72,13,14,[],Python,https://end-to-end-machine-learning.teachable.com/p/write-a-neural-network-framework/,cottonwood: A flexible neural network framework for running experiments and trying ideas.,brohrer,2022-09-23,2020-02-02,2019-09-29,166,0.43261802575107294 -851,profiling,https://github.com/kshitij12345/torchnnprofiler,,,,kshitij12345/torchnnprofiler,torchnnprofiler,70,2,4,[],Python,,torchnnprofiler: Context Manager to profile the forward and backward times of PyTorch's nn.Module,kshitij12345,2022-11-28,2022-11-02,2022-10-22,6,10.652173913043478 -584,gis,https://github.com/developmentseed/cogeo-mosaic,,,,developmentseed/cogeo-mosaic,cogeo-mosaic,69,19,8,[],Python,https://developmentseed.org/cogeo-mosaic/,cogeo-mosaic: Create and use COG mosaic based on mosaicJSON,developmentseed,2022-11-30,2022-11-21,2019-05-14,186,0.37068303914044515 -234,crypto,https://github.com/blockchainsllc/in3,,,,blockchainsllc/in3,in3,65,18,12,"['blockchain', 'verify', 'crypto-economic', 'ethereum', 'ipfs']",C,https://in3.readthedocs.io/en/develop/index.html,in3: The IN3 client (written in C).,blockchainsllc,2022-11-17,2022-04-01,2019-09-17,168,0.38657604078164826 -568,sim,https://github.com/gboeing/street-network-models,,,,gboeing/street-network-models,street-network-models,62,4,2,[],Python,https://osf.io/f2dqc,street-network-models: Street network models and indicators for every urban area in the world,gboeing,2022-11-15,2021-03-05,2020-04-13,138,0.44834710743801653 -453,gis,https://github.com/googlecloudplatform/dataflow-geobeam,,,,googlecloudplatform/dataflow-geobeam,dataflow-geobeam,61,25,9,[],Python,,googlecloudplatform/dataflow-geobeam,googlecloudplatform,2022-11-08,2022-11-29,2021-02-04,95,0.6363636363636364 -535,gis,https://github.com/cloudsen12/easystac,,,,cloudsen12/easystac,easystac,57,1,3,"['stac', 'remote-sensing', 'gis', 'earth-observation', 'python', 'python3', 'spatio-temporal', 'spatio-temporal-data', 'planetary-computer', 'radiant']",Python,https://easystac.readthedocs.io/,easystac: A Python package for simple STAC queries,cloudsen12,2022-11-26,2022-08-07,2022-01-20,45,1.2429906542056075 -854,util,https://github.com/backtick-se/cowait,,,,backtick-se/cowait,cowait,55,5,8,"['python', 'task-scheduler', 'data-science', 'data-engineering', 'spark', 'dask', 'kubernetes', 'docker', 'workflow-engine']",Python,https://cowait.io,cowait: Containerized distributed programming framework for Python,backtick-se,2022-11-16,2022-09-22,2019-09-18,168,0.3273809523809524 -521,gis,https://github.com/lydorn/mapalignment,,,,lydorn/mapalignment,mapalignment,54,14,4,[],Python,,mapalignment: Aligning and Updating Cadaster Maps with Remote Sensing Images,lydorn,2022-12-06,2020-09-03,2018-09-05,222,0.24324324324324326 -326,security,https://github.com/snyk-labs/pysnyk,,,,snyk-labs/pysnyk,pysnyk,50,89,10,"['snyk', 'python', 'api']",Python,https://snyk.docs.apiary.io/,pysnyk: A Python client for the Snyk API.,snyk-labs,2022-11-04,2022-05-26,2019-02-03,200,0.2494654312188168 -816,util,https://github.com/aws-samples/sagemaker-ssh-helper,,,,aws-samples/sagemaker-ssh-helper,sagemaker-ssh-helper,50,5,6,"['amazon-sagemaker', 'aws', 'aws-systems-manager', 'machine-learning', 'pycharm', 'sagemaker', 'sagemaker-studio', 'ssh', 'vscode']",Python,,sagemaker-ssh-helper: A helper library to connect into Amazon SageMaker with AWS Systems Manager and SSH,aws-samples,2022-12-04,2022-12-06,2022-10-14,7,6.481481481481482 -400,study,https://github.com/dylanhogg/crazy-awesome-python,,,,dylanhogg/crazy-awesome-python,crazy-awesome-python,46,8,3,"['python', 'python-data', 'awesome-list', 'python-machine-learning', 'python-nlp', 'python-frameworks', 'python-library', 'data', 'machine-learning', 'natural-language-processing']",HTML,https://www.awesomepython.org/,"crazy-awesome-python: A curated list of awesome Python frameworks, with a bias towards data and machine learning",dylanhogg,2022-11-11,2022-11-26,2020-06-20,128,0.35777777777777775 -401,crypto,https://github.com/dylanhogg/crazy-awesome-crypto,,,,dylanhogg/crazy-awesome-crypto,crazy-awesome-crypto,42,12,4,"['crypto', 'cryptocurrency', 'blockchain', 'bitcoin', 'ethereum', 'awesome-list', 'data', 'data-analysis', 'github', 'awesome']",Python,https://www.awesomecrypto.xyz/,crazy-awesome-crypto: A list of awesome crypto and blockchain projects,dylanhogg,2022-11-14,2022-10-30,2021-09-27,62,0.6743119266055045 -776,sim,https://github.com/activitysim/populationsim,,,,activitysim/populationsim,populationsim,37,27,11,"['python', 'data-science', 'population-synthesis', 'activitysim', 'bsd-3-clause', 'microsimulation']",Jupyter Notebook,https://activitysim.github.io/populationsim,populationsim: An Open Platform for Population Synthesis,activitysim,2022-08-23,2021-11-19,2017-02-14,303,0.12205466540999058 -386,nlp,https://github.com/ferdinandzhong/punctuator,,,,ferdinandzhong/punctuator,punctuator,35,5,1,"['bert', 'nlp', 'seq2seq', 'punctuation', 'deep-learning', 'pytorch', 'bert-ner', 'chinese-nlp']",Python,,punctuator: A small seq2seq punctuator tool based on DistilBERT,ferdinandzhong,2022-10-19,2022-09-28,2020-11-19,106,0.32754010695187163 -202,crypto,https://github.com/nerolation/ethereum-datafarm,,,,nerolation/ethereum-datafarm,ethereum-datafarm,34,8,1,[],Python,,ethereum-datafarm: Scrap blockchain data from the public API of Etherscan.io,nerolation,2022-12-06,2022-11-19,2021-03-13,90,0.3753943217665615 -821,pandas,https://github.com/ddelange/mapply,,,,ddelange/mapply,mapply,33,2,3,[],Python,,mapply: Sensible multi-core apply function for Pandas,ddelange,2022-11-04,2022-11-22,2020-10-26,110,0.29922279792746115 -333,util,https://github.com/gondolav/pyfuncol,,,,gondolav/pyfuncol,pyfuncol,32,3,3,"['functional', 'collections', 'python', 'parallel', 'python3', 'extension-functions']",Python,https://pyfuncol.readthedocs.io/,pyfuncol: Functional collections extension functions for Python,gondolav,2022-11-16,2022-11-16,2021-12-16,50,0.6292134831460674 -711,gis,https://github.com/artelys/geonetworkx,,,,artelys/geonetworkx,geonetworkx,30,1,7,[],Python,,geonetworkx: Python tools for geographic graphs,artelys,2022-10-27,2021-06-28,2019-10-24,162,0.18421052631578946 -502,gis,https://github.com/gregorhd/mapcompare,,,,gregorhd/mapcompare,mapcompare,28,0,2,"['visualisation-libraries', 'sample-visualisation', 'comparison', 'data-visualisation', 'data-viz', 'urban-data-science', 'interactive-visualisations']",Python,,mapcompare: Comparison of Python packages and libraries for visualising geospatial vector data: applications for Smarter Cities.,gregorhd,2022-12-06,2022-12-03,2021-05-21,80,0.34690265486725663 -894,sim,https://github.com/crowddynamics/crowddynamics,,,,crowddynamics/crowddynamics,crowddynamics,26,9,9,"['crowd-dynamics', 'multi-agent', 'continuous-time', 'crowd-simulation']",Python,https://jaantollander.com/post/how-to-implement-continuous-time-multi-agent-crowd-simulation/,crowddynamics: Continuous-time multi-agent crowd simulation engine implemented in Python using Numba and Numpy for performance.,crowddynamics,2022-12-01,2020-01-02,2016-03-22,350,0.07425540595675234 -688,ml-dl,https://github.com/jerryyli/valhalla-nmt,,,,jerryyli/valhalla-nmt,valhalla-nmt,23,3,1,"['computer-vision', 'machine-translation', 'multimodal-learning', 'natural-language-processing']",Python,,"valhalla-nmt: Code repository for CVPR 2022 paper ""VALHALLA: Visual Hallucination for Machine Translation""",jerryyli,2022-11-26,2022-06-06,2022-03-22,37,0.6192307692307693 -37,math,https://github.com/jszymon/pacal,,,,jszymon/pacal,pacal,21,8,6,[],Python,,PaCAL - ProbAbilistic CALculator,jszymon,2022-11-02,2022-11-02,2014-08-04,435,0.04824417459796521 -840,data,https://github.com/codait/pardata,,,,codait/pardata,pardata,18,5,11,"['dataset', 'python', 'machine-learning', 'artificial-intelligence', 'data-science']",Python,https://pardata.readthedocs.io/en/latest/,codait/pardata,codait,2022-08-14,2021-12-01,2020-11-17,107,0.168 -578,term,https://github.com/matthewdeanmartin/terminaltables,,,,matthewdeanmartin/terminaltables,terminaltables,17,4,0,[],Python,https://robpol86.github.io/terminaltables,terminaltables: Generate simple tables in terminals from a nested list of strings.,matthewdeanmartin,2022-11-15,2022-01-30,2021-12-04,52,0.3233695652173913 -679,util,https://github.com/markhershey/arxiv-dl,,,,markhershey/arxiv-dl,arxiv-dl,16,4,2,"['arxiv', 'paper', 'downloader', 'command-line-tool', 'paper-with-code', 'cvpr']",Python,https://pypi.org/project/arxiv-dl/,"arxiv-dl: Command-line ArXiv & CVF (CVPR, ICCV, WACV) Paper Downloader",markhershey,2022-12-02,2022-12-06,2021-01-21,97,0.1635036496350365 -669,gis,https://github.com/zorzi-s/maprepair,,,,zorzi-s/maprepair,MapRepair,16,4,2,[],Python,,MapRepair: Deep Cadastre Maps Alignment and Temporal Inconsistencies Fix in Satellite Images,zorzi-s,2022-12-06,2021-05-17,2020-07-30,122,0.13023255813953488 -892,util,https://github.com/pyodide/micropip,,,,pyodide/micropip,micropip,11,3,5,[],Python,https://micropip.pyodide.org,micropip: A lightweight Python package installer for Pyodide,pyodide,2022-12-07,2022-12-07,2022-09-15,11,0.927710843373494 -702,data,https://github.com/harangju/wikinet,,,,harangju/wikinet,wikinet,10,5,3,[],Jupyter Notebook,,wikinet: Python library for exploring networks of hyperlinked Wikipedia articles,harangju,2022-01-17,2022-01-25,2019-08-05,174,0.05737704918032787 -608,typing,https://github.com/tk0miya/docutils-stubs,,,,tk0miya/docutils-stubs,docutils-stubs,7,5,6,[],Python,,tk0miya/docutils-stubs,tk0miya,2022-01-02,2022-01-02,2018-11-02,213,0.032754010695187165 -180,sim,https://github.com/artemyk/dynpy,,,,artemyk/dynpy,dynpy,5,5,3,[],Python,,dynpy: Dynamical systems for Python,artemyk,2021-09-24,2018-09-28,2014-09-12,429,0.01163563829787234 -526,gis,https://github.com/lycantropos/wagyu,,,,lycantropos/wagyu,wagyu,3,2,1,[],Python,https://github.com/mapbox/wagyu,wagyu: Python port of mapbox/wagyu library (with separate C++ binding),lycantropos,2022-07-19,2020-11-21,2020-06-30,127,0.02359550561797753 -751,gis,https://github.com/edomel/boundaryvt,,,,edomel/boundaryvt,BoundaryVT,2,0,2,[],Python,,edomel/boundaryvt,edomel,2022-12-07,2022-09-29,2022-07-29,18,0.10687022900763359 -420,template,https://github.com/dylanhogg/python-project-template,,,,dylanhogg/python-project-template,python-project-template,1,0,2,"['python', 'template', 'jupyterlab', 'cookiecutter']",Python,,python-project-template: A quick-start Python project template with helpful functionality and common libraries.,dylanhogg,2022-08-19,2022-08-19,2020-02-12,147,0.006802721088435374 +,category,githuburl,featured,links,description,_repopath,_reponame,_stars,_forks,_watches,_topics,_language,_homepage,_description,_organization,_updated_at,_last_commit_date,_created_at,_age_weeks,_stars_per_week,_pop_contributor_count,_pop_contributor_orgs_len,_pop_contributor_orgs_max,_pop_contributor_orgs,_pop_contributor_orgs_error,_pop_commit_frequency,_pop_updated_issues_count,_pop_closed_issues_count,_pop_created_since_days,_pop_updated_since_days,_pop_recent_releases_count,_pop_recent_releases_estimated_tags,_pop_recent_releases_adjusted_count,_pop_issue_count,_pop_comment_count,_pop_comment_count_lookback_days,_pop_comment_frequency,_pop_dependents_count,_pop_score +89,ml-dl,https://github.com/tensorflow/tensorflow,,,,tensorflow/tensorflow,tensorflow,169751,87558,7793,"['tensorflow', 'machine-learning', 'python', 'deep-learning', 'deep-neural-networks', 'neural-network', 'ml', 'distributed']",C++,https://tensorflow.org,tensorflow: An Open Source Machine Learning Framework for Everyone,tensorflow,2022-12-18,2022-12-18,2015-11-07,371,457.1977683724509,4198,2,5,"['google', 'googletensorflow']",,312.65,2393,1430,87,0,32,26,32,2393.0,6694.0,90.0,2.8,175460,92.79924 +405,study,https://github.com/thealgorithms/python,,,,thealgorithms/python,Python,150017,38545,5937,"['python', 'algorithm', 'algorithms-implemented', 'algorithm-competitions', 'algos', 'sorts', 'searches', 'sorting-algorithms', 'education', 'learn', 'practice', 'community-driven', 'interview', 'hacktoberfest']",Python,https://the-algorithms.com/,Python: All Algorithms implemented in Python,thealgorithms,2022-12-18,2022-12-18,2016-07-16,335,447.43033659991477,973,4,5,"['christianclauss', 'fossasiagojekthealgorithms', 'thealgorithmsgojek', 'universitätpassau']",,6.31,1926,1831,78,0,0,0,0,1926.0,2356.0,90.0,1.2,3296,69.29599 +112,nlp,https://github.com/huggingface/transformers,,,,huggingface/transformers,transformers,76398,17261,866,"['nlp', 'natural-language-processing', 'pytorch', 'language-model', 'tensorflow', 'bert', 'language-models', 'pytorch-transformers', 'nlp-library', 'transformer', 'model-hub', 'pretrained-models', 'jax', 'flax', 'seq2seq', 'speech-recognition', 'hacktoberfest', 'python', 'machine-learning', 'deep-learning']",Python,https://huggingface.co/transformers,"🤗 Transformers: State-of-the-art Machine Learning for Pytorch, TensorFlow, and JAX.",huggingface,2022-12-18,2022-12-16,2018-10-29,216,353.69444444444446,1650,2,5,"['huggingface', 'stasosphereonline']",,56.79,2247,1896,50,0,24,28,24,2248.0,6558.0,90.0,2.9,10695,81.10986 +14,web,https://github.com/django/django,,,,django/django,django,67753,28322,2271,"['python', 'django', 'web', 'framework', 'orm', 'templates', 'models', 'views', 'apps']",Python,https://www.djangoproject.com/,django: The Web framework for perfectionists with deadlines.,django,2022-12-18,2022-12-17,2012-04-28,555,122.01466426550039,2842,1,5,['2xlibre.netsàrl'],,18.12,377,307,130,1,0,34,34,377.0,957.0,90.0,2.5,61720,79.49161 +57,web,https://github.com/pallets/flask,,,,pallets/flask,flask,61341,15349,2146,"['python', 'flask', 'wsgi', 'web-framework', 'werkzeug', 'jinja', 'pallets']",Python,https://flask.palletsprojects.com,flask: The Python micro framework for building web applications.,pallets,2022-12-18,2022-11-25,2010-04-06,662,92.54030172413793,800,2,5,"['getsentry', 'sentry']",,3.71,76,65,155,1,8,4,8,76.0,61.0,90.0,0.8,8741,65.14601 +76,ml-dl,https://github.com/pytorch/pytorch,,,,pytorch/pytorch,pytorch,61054,17007,1624,"['neural-network', 'autograd', 'gpu', 'numpy', 'deep-learning', 'tensor', 'python', 'machine-learning']",C++,https://pytorch.org,pytorch: Tensors and Dynamic neural networks in Python with strong GPU acceleration,pytorch,2022-12-18,2022-12-18,2016-08-13,331,184.29409228115568,3755,1,5,['facebookairesearch'],,216.04,8263,5684,77,0,5,120,5,8258.0,34479.0,90.0,4.2,961352,91.47611 +40,ml-dl,https://github.com/keras-team/keras,,,,keras-team/keras,keras,56861,19228,1936,"['deep-learning', 'tensorflow', 'neural-networks', 'machine-learning', 'data-science', 'python']",Python,http://keras.io/,keras: Deep Learning for humans,keras-team,2022-12-18,2022-12-16,2015-03-28,403,140.9943322706341,1133,2,5,"['google', 'sktelecom']",,20.58,486,353,94,0,13,9,13,486.0,894.0,90.0,1.8,3088,73.03711 +189,util,https://github.com/home-assistant/core,,,,home-assistant/core,core,56762,20995,1345,"['python', 'home-automation', 'iot', 'internet-of-things', 'mqtt', 'raspberry-pi', 'asyncio', 'hacktoberfest']",Python,https://www.home-assistant.io,core: :house_with_garden: Open source home automation that puts local control and privacy first.,home-assistant,2022-12-18,2022-12-18,2013-09-17,482,117.55443786982248,3475,2,5,"['home-assistant,nabucasa', 'home-assistanthassio-addons']",,241.85,7960,5914,113,0,173,111,173,7960.0,23769.0,90.0,3.0,3239,86.90949 +135,web,https://github.com/tiangolo/fastapi,1.0,,,tiangolo/fastapi,fastapi,52565,4303,603,"['python', 'json', 'swagger-ui', 'redoc', 'starlette', 'openapi', 'api', 'openapi3', 'framework', 'async', 'asyncio', 'uvicorn', 'python3', 'python-types', 'pydantic', 'json-schema', 'fastapi', 'swagger', 'rest', 'web']",Python,https://fastapi.tiangolo.com/,"FastAPI framework, high performance, easy to learn, fast to code, ready for production",tiangolo,2022-12-18,2022-12-16,2018-12-08,210,249.9694293478261,401,0,5,[],,12.75,1366,887,49,0,25,35,25,1366.0,3158.0,90.0,2.3,4316,66.19022 +78,ml,https://github.com/scikit-learn/scikit-learn,,,,scikit-learn/scikit-learn,scikit-learn,52354,23790,2167,"['machine-learning', 'python', 'statistics', 'data-science', 'data-analysis']",Python,https://scikit-learn.org,scikit-learn: machine learning in Python,scikit-learn,2022-12-18,2022-12-16,2010-08-17,643,81.31306856001775,2806,4,5,"['inria', 'meta', 'microsoft', 'uliège']",,31.21,1080,710,150,0,6,10,6,1079.0,2656.0,90.0,2.5,36390,84.48729 +399,util,https://github.com/python/cpython,,,,python/cpython,cpython,49550,25219,1465,[],Python,https://www.python.org/,cpython: The Python programming language,python,2022-12-18,2022-12-18,2017-02-10,305,162.2310570626754,2294,4,5,"['fzjülich', 'keepertech', 'microsoft', 'redhatofficial']",,68.56,4833,3383,71,0,0,91,91,4833.0,11415.0,90.0,2.4,11228,86.25842 +177,web,https://github.com/psf/requests,,,,psf/requests,requests,48718,8929,1362,"['python', 'http', 'forhumans', 'requests', 'python-requests', 'client', 'humans', 'cookies']",Python,https://requests.readthedocs.io/en/latest/,"requests: A simple, yet elegant, HTTP library.",psf,2022-12-18,2022-11-21,2011-02-13,618,78.81349664894846,723,3,5,"['amazonwebservices', 'apple', 'tableau&salesforce']",,0.87,89,56,144,1,4,12,4,89.0,124.0,90.0,1.4,9183,64.97178 +80,data,https://github.com/scrapy/scrapy,,,,scrapy/scrapy,scrapy,45399,9807,1789,"['python', 'scraping', 'crawling', 'framework', 'crawler', 'hacktoberfest']",Python,https://scrapy.org,"Scrapy, a fast high-level web crawling & scraping framework for Python.",scrapy,2022-12-18,2022-12-15,2010-02-22,669,67.8609865470852,569,3,5,"['superfly', 'zytedata(formerlyscrapinghub)', 'zytedata,scrapinghub']",,4.71,259,190,156,0,8,9,8,260.0,538.0,90.0,2.1,1159,67.90526 +695,ml-dl,https://github.com/deepfakes/faceswap,,,,deepfakes/faceswap,faceswap,42994,12012,1502,"['faceswap', 'face-swap', 'deep-learning', 'deeplearning', 'deep-neural-networks', 'deepfakes', 'deepface', 'deep-face-swap', 'fakeapp', 'neural-networks', 'neural-nets', 'openfaceswap', 'myfakeapp', 'machine-learning']",Python,https://www.faceswap.dev,faceswap: Deepfakes Software For All,deepfakes,2022-12-18,2022-12-18,2017-12-19,260,164.8181818181818,94,0,5,[],,4.87,21,14,61,0,0,1,1,21.0,17.0,90.0,0.8,1192,46.15719 +179,term,https://github.com/willmcgugan/rich,,,,willmcgugan/rich,rich,41137,1447,541,"['python', 'python3', 'python-library', 'terminal', 'terminal-color', 'markdown', 'tables', 'syntax-highlighting', 'ansi-colors', 'progress-bar-python', 'progress-bar', 'traceback', 'rich', 'tracebacks-rich', 'emoji', 'tui']",Python,https://rich.readthedocs.io/en/latest/,Rich is a Python library for rich text and beautiful formatting in the terminal.,willmcgugan,2022-12-18,2022-12-04,2019-11-10,162,253.70837004405286,203,2,5,"['davep.org', 'textualize']",,13.44,197,147,38,0,17,45,17,197.0,392.0,90.0,2.0,3007,64.89991 +262,web,https://github.com/sherlock-project/sherlock,,,,sherlock-project/sherlock,sherlock,37843,4466,963,"['osint', 'reconnaissance', 'linux', 'macos', 'cli', 'sherlock', 'python3', 'windows', 'redteam', 'tools', 'information-gathering', 'hacktoberfest', 'hacktoberfest2022', 'python']",Python,http://sherlock-project.github.io,sherlock: 🔎 Hunt down social media accounts by username across social networks,sherlock-project,2022-12-18,2022-10-21,2018-12-24,208,181.9375,209,1,5,['paackeng'],,3.25,194,117,48,2,0,0,0,194.0,179.0,90.0,0.9,415,47.9617 +736,diffusion,https://github.com/compvis/stable-diffusion,,,,compvis/stable-diffusion,stable-diffusion,37519,5790,355,[],Jupyter Notebook,https://ommer-lab.com/research/latent-diffusion-models/,stable-diffusion: A latent text-to-image diffusion model,compvis,2022-12-18,2022-11-16,2022-08-10,18,2004.8320610687024,8,1,5,['runwayml'],,0.4,324,77,4,1,0,0,0,324.0,729.0,90.0,2.2,53,31.38278 +432,study,https://github.com/jakevdp/pythondatasciencehandbook,,,,jakevdp/pythondatasciencehandbook,PythonDataScienceHandbook,36840,16265,1768,"['scikit-learn', 'numpy', 'python', 'jupyter-notebook', 'matplotlib', 'pandas']",Jupyter Notebook,http://jakevdp.github.io/PythonDataScienceHandbook,PythonDataScienceHandbook: Python Data Science Handbook: full text in Jupyter Notebooks,jakevdp,2022-12-18,2018-11-30,2016-08-10,331,111.0594315245478,17,4,5,"['coiled', 'google', 'kvantify', 'quansight']",,0.0,19,11,77,49,0,0,0,19.0,17.0,90.0,0.9,172,32.72075 +59,pandas,https://github.com/pandas-dev/pandas,1.0,,,pandas-dev/pandas,pandas,36289,15523,1119,"['data-analysis', 'pandas', 'flexible', 'alignment', 'python', 'data-science']",Python,https://pandas.pydata.org,"pandas: Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more",pandas-dev,2022-12-18,2022-12-18,2010-08-24,642,56.449555555555555,3189,2,5,"['rapidsai', 'voltrondata']",,45.63,4619,3022,150,0,10,12,10,4619.0,5418.0,90.0,1.2,4975,80.23597 +694,ml-dl,https://github.com/iperov/deepfacelab,,,,iperov/deepfacelab,DeepFaceLab,36190,8167,1044,"['faceswap', 'face-swap', 'deep-learning', 'deeplearning', 'deep-neural-networks', 'deepfakes', 'deepface', 'deep-face-swap', 'fakeapp', 'neural-networks', 'neural-nets', 'deepfacelab', 'creating-deepfakes', 'arxiv', 'machine-learning']",Python,,DeepFaceLab is the leading software for creating deepfakes.,iperov,2022-12-18,2022-10-31,2018-06-04,237,152.70042194092827,21,0,5,[],,0.19,63,12,55,2,0,0,0,63.0,53.0,90.0,0.8,333,33.57254 +64,util,https://github.com/psf/black,,,,psf/black,black,30470,1949,227,"['python', 'code', 'formatter', 'codeformatter', 'gofmt', 'yapf', 'autopep8', 'pre-commit-hook', 'hacktoberfest']",Python,https://black.readthedocs.io/en/stable/,black: The uncompromising Python code formatter,psf,2022-12-18,2022-12-18,2018-03-14,248,122.51005169442848,350,4,5,"['clc', 'facebook', 'psf', 'quora']",,5.35,295,176,58,0,7,9,7,299.0,585.0,90.0,2.0,28929,71.53459 +220,util,https://github.com/pyenv/pyenv,,,,pyenv/pyenv,pyenv,29882,2655,380,"['python', 'shell']",Roff,,pyenv: Simple Python version management,pyenv,2022-12-18,2022-12-18,2012-08-31,537,55.60180754917597,402,1,5,['treasuredata'],,3.25,133,117,125,0,12,13,12,133.0,307.0,90.0,2.3,1883,64.0447 +55,sim,https://github.com/openai/gym,,,,openai/gym,gym,29439,8120,999,[],Python,https://www.gymlibrary.dev,gym: A toolkit for developing and comparing reinforcement learning algorithms.,openai,2022-12-18,2022-10-25,2016-04-27,346,84.90852904820767,384,0,5,[],,5.62,113,83,81,2,11,8,11,113.0,261.0,90.0,2.3,7204,59.53888 +118,ml-ops,https://github.com/apache/airflow,,,,apache/airflow,airflow,28488,11690,764,"['airflow', 'apache', 'apache-airflow', 'python', 'scheduler', 'workflow', 'hacktoberfest']",Python,https://airflow.apache.org/,"airflow: Apache Airflow - A platform to programmatically author, schedule, and monitor workflows",apache,2022-12-18,2022-12-18,2015-04-13,401,71.0423940149626,2662,5,5,"['apachesoftwarefoundation', 'astronomer', 'astronomer.io', 'preset-io', 'snowflakedb']",,70.71,2090,1667,94,0,17,337,17,2091.0,4975.0,90.0,2.4,13010,86.76876 +592,util,https://github.com/mingrammer/diagrams,,,,mingrammer/diagrams,diagrams,27457,1675,350,"['diagram', 'diagram-as-code', 'architecture', 'graphviz']",Python,https://diagrams.mingrammer.com,diagrams: :art: Diagram as Code for prototyping cloud system architectures,mingrammer,2022-12-18,2022-11-27,2020-02-02,150,182.87250237868696,123,2,5,"['daangn', 'luxeys']",,1.17,165,63,35,1,4,13,4,165.0,168.0,90.0,1.0,59,46.67377 +257,crypto,https://github.com/ccxt/ccxt,,,,ccxt/ccxt,ccxt,26668,6520,930,"['altcoin', 'api', 'arbitrage', 'bitcoin', 'bot', 'cryptocurrency', 'crypto', 'e-commerce', 'ethereum', 'exchange', 'invest', 'library', 'strategy', 'trading', 'btc', 'eth', 'trade', 'merchant', 'market-data']",JavaScript,,ccxt: A JavaScript / Python / PHP cryptocurrency trading API with support for more than 100 bitcoin/altcoin exchanges,ccxt,2022-12-18,2022-12-18,2017-05-14,292,91.2841075794621,709,1,5,['ccxt'],,235.92,1408,1047,68,0,0,142,142,1408.0,2198.0,90.0,1.6,37950,79.88869 +838,diffusion,https://github.com/automatic1111/stable-diffusion-webui,,,,automatic1111/stable-diffusion-webui,stable-diffusion-webui,25507,4618,247,[],Python,,stable-diffusion-webui: Stable Diffusion web UI,automatic1111,2022-12-18,2022-12-10,2022-08-22,17,1500.4117647058824,278,0,5,[],,42.46,3672,2189,4,0,0,0,0,3672.0,13755.0,90.0,3.7,863,55.59936 +677,ml-dl,https://github.com/facebookresearch/detectron,,,,facebookresearch/detectron,Detectron,25464,5480,959,[],Python,,"Detectron: FAIR's research platform for object detection research, implementing popular algorithms like Mask R-CNN and RetinaNet.",facebookresearch,2022-12-18,2021-03-27,2017-10-05,271,93.76538663861126,40,2,5,"['facebook', 'ucberkeley']",,0.0,11,3,63,21,0,0,0,11.0,3.0,90.0,0.3,865,34.18342 +245,ml,https://github.com/tencentarc/gfpgan,,,,tencentarc/gfpgan,GFPGAN,25179,3809,373,"['pytorch', 'gan', 'deep-learning', 'super-resolution', 'face-restoration', 'image-restoration', 'gfpgan']",Python,,GFPGAN aims at developing Practical Algorithms for Real-world Face Restoration.,tencentarc,2022-12-18,2022-09-16,2021-03-19,91,275.3953125,11,2,5,"['huggingface', 'tencent']",,0.6,59,16,21,3,6,9,6,58.0,54.0,90.0,0.9,11,32.67355 +17,nlp,https://github.com/explosion/spacy,,,,explosion/spacy,spaCy,24789,3988,549,"['natural-language-processing', 'data-science', 'machine-learning', 'python', 'cython', 'nlp', 'artificial-intelligence', 'ai', 'spacy', 'nlp-library', 'neural-network', 'neural-networks', 'deep-learning', 'named-entity-recognition', 'entity-linking', 'text-classification', 'tokenization']",Python,https://spacy.io,spaCy: 💫 Industrial-strength Natural Language Processing (NLP) in Python,explosion,2022-12-18,2022-12-15,2014-07-03,441,56.13814299579424,710,2,5,"['explosion&oxykodit', 'founderexplosion']",,8.85,356,316,103,0,19,16,19,356.0,577.0,90.0,1.6,5776,71.78792 +501,ml,https://github.com/ageron/handson-ml2,,,,ageron/handson-ml2,handson-ml2,23709,11459,625,[],Jupyter Notebook,,"handson-ml2: A series of Jupyter notebooks that walk you through the fundamentals of Machine Learning and Deep Learning in Python using Scikit-Learn, Keras and TensorFlow 2.",ageron,2022-12-18,2022-11-08,2019-01-08,205,115.17210270645386,75,0,5,[],,0.29,21,3,48,1,0,0,0,21.0,31.0,90.0,1.5,1115,39.80723 +163,term,https://github.com/tqdm/tqdm,1.0,,,tqdm/tqdm,tqdm,23582,1199,207,"['progressbar', 'progressmeter', 'progress-bar', 'meter', 'rate', 'console', 'terminal', 'time', 'progress', 'gui', 'python', 'parallel', 'cli', 'utilities', 'jupyter', 'discord', 'telegram', 'pandas', 'keras', 'closember']",Python,https://tqdm.github.io,"tqdm: A Fast, Extensible Progress Bar for Python and CLI",tqdm,2022-12-18,2022-09-03,2015-06-03,393,59.89622641509434,112,2,5,"['giga-consciousness-comasciencegroup-university&hospitalofliège', 'valence']",,0.52,69,11,92,4,5,20,5,69.0,82.0,90.0,1.2,6644,53.30922 +103,ml,https://github.com/dmlc/xgboost,,,,dmlc/xgboost,xgboost,23555,8535,931,"['gbdt', 'gbrt', 'gbm', 'distributed-systems', 'xgboost', 'machine-learning']",C++,https://xgboost.ai/,"xgboost: Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library, for Python, R, Java, Scala, C++ and more. Runs on single machine, Hadoop, Spark, Dask, Flink and DataFlow",dmlc,2022-12-18,2022-12-17,2014-02-06,462,50.92186534898085,589,4,5,"['amazonai', 'cmu,octoml', 'els-rdlefebvresarrut', 'nvidia']",,9.9,464,372,108,0,9,5,9,464.0,840.0,90.0,1.8,1612,71.15114 +26,term,https://github.com/google/python-fire,,,,google/python-fire,python-fire,23487,1353,380,"['python', 'cli']",Python,,python-fire: Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object.,google,2022-12-18,2022-12-12,2017-02-21,303,77.29619181946403,55,3,5,"['google', 'googlebrain', 'syracuseuniversity']",,0.37,48,26,71,0,1,2,1,48.0,43.0,90.0,0.9,114,46.38159 +678,ml-dl,https://github.com/facebookresearch/detectron2,,,,facebookresearch/detectron2,detectron2,23127,6313,365,[],Python,https://detectron2.readthedocs.io/en/latest/,"Detectron2 is a platform for object detection, segmentation and other visual recognition tasks.",facebookresearch,2022-12-18,2022-12-14,2019-09-05,171,134.79517069109076,227,1,5,['facebookairesearch'],,1.67,214,132,40,0,0,3,3,214.0,258.0,90.0,1.2,23330,60.12194 +646,util,https://github.com/python-poetry/poetry,,,,python-poetry/poetry,poetry,22961,1857,184,"['python', 'dependency-manager', 'package-manager', 'packaging', 'poetry']",Python,https://python-poetry.org,poetry: Python packaging and dependency management made easy,python-poetry,2022-12-18,2022-12-18,2018-02-28,250,91.58233618233618,417,0,5,[],,13.08,1180,864,58,0,13,25,13,1181.0,2846.0,90.0,2.4,2403,64.59742 +289,ml-dl,https://github.com/rwightman/pytorch-image-models,,,,rwightman/pytorch-image-models,pytorch-image-models,22569,3759,292,"['pytorch', 'imagenet-classifier', 'resnet', 'dual-path-networks', 'cnn-classification', 'pretrained-models', 'pretrained-weights', 'distributed-training', 'mobile-deep-learning', 'mobilenet-v2', 'mnasnet', 'mobilenetv3', 'efficientnet', 'augmix', 'randaugment', 'mixnet', 'efficientnet-training', 'vision-transformer-models', 'nfnets', 'normalization-free-training']",Python,https://huggingface.co/docs/timm,"pytorch-image-models: PyTorch image models, scripts, pretrained weights -- ResNet, ResNeXT, EfficientNet, EfficientNetV2, NFNet, Vision Transformer, MixNet, MobileNet-V3/V2, RegNet, DPN, CSPNet, and more",rwightman,2022-12-18,2022-12-15,2019-02-02,202,111.56991525423729,89,3,5,"['huggingface', 'independent', 'weights&biases']",,6.46,111,72,47,0,10,10,10,111.0,146.0,90.0,1.3,159,55.28684 +689,ml-dl,https://github.com/matterport/mask_rcnn,,,,matterport/mask_rcnn,Mask_RCNN,22507,11179,597,"['mask-rcnn', 'tensorflow', 'object-detection', 'instance-segmentation', 'keras']",Python,,Mask_RCNN: Mask R-CNN for object detection and instance segmentation on Keras and TensorFlow,matterport,2022-12-18,2019-03-31,2017-10-19,269,83.4917859035506,47,3,5,"['apple', 'freelance', 'grid.ai|pytorchlightning']",,0.0,89,18,63,46,0,1,1,89.0,107.0,90.0,1.2,1541,41.13975 +550,ml,https://github.com/open-mmlab/mmdetection,,,,open-mmlab/mmdetection,mmdetection,22420,8168,362,"['object-detection', 'instance-segmentation', 'rpn', 'fast-rcnn', 'faster-rcnn', 'mask-rcnn', 'cascade-rcnn', 'ssd', 'retinanet', 'pytorch']",Python,https://mmdetection.readthedocs.io,mmdetection: OpenMMLab Detection Toolbox and Benchmark,open-mmlab,2022-12-18,2022-11-23,2018-08-22,225,99.32911392405063,377,5,5,"['cuhk,mmlab', 'mmlab,ntu', 'nuaa', 'open-mmlab', 'ucsd']",,5.21,876,652,53,1,16,11,16,873.0,1322.0,90.0,1.5,4620,69.61265 +54,math,https://github.com/numpy/numpy,1.0,,,numpy/numpy,numpy,22230,7600,571,"['numpy', 'python', 'closember']",Python,https://numpy.org,numpy: The fundamental package for scientific computing with Python.,numpy,2022-12-18,2022-12-18,2010-09-13,640,34.734375,1556,4,5,"['mercarijp', 'quansight,openteams', 'quansightlabs', 'retired']",,29.58,907,655,149,0,20,18,20,908.0,2325.0,90.0,2.6,27499,84.17272 +649,util,https://github.com/keon/algorithms,,,,keon/algorithms,algorithms,21936,4425,643,"['algorithm', 'python', 'competitive-programming', 'data-structure', 'algorithms', 'sort', 'search', 'tree', 'graph']",Python,,algorithms: Minimal examples of data structures and algorithms in Python,keon,2022-12-18,2022-11-12,2016-11-17,317,69.07422402159244,193,2,5,"['gojek', 'google']",,0.37,11,2,74,1,0,0,0,11.0,4.0,90.0,0.4,74,41.01387 +86,viz,https://github.com/streamlit/streamlit,,,,streamlit/streamlit,streamlit,21862,1957,284,"['python', 'machine-learning', 'data-science', 'deep-learning', 'data-visualization', 'streamlit', 'data-analysis', 'developer-tools']",Python,https://streamlit.io,Streamlit — The fastest way to build data apps in Python,streamlit,2022-12-18,2022-12-18,2019-08-24,173,126.16158285243199,160,2,5,"['independent', 'streamlit']",,12.52,1080,630,40,0,22,347,22,1080.0,1206.0,90.0,1.1,1546,64.16201 +183,ml,https://github.com/google/jax,,,,google/jax,jax,21230,1987,288,['jax'],Python,http://jax.readthedocs.io/,"jax: Composable transformations of Python+NumPy programs: differentiate, vectorize, JIT to GPU/TPU, and more",google,2022-12-18,2022-12-17,2018-10-25,216,98.02770448548813,484,1,5,['google'],,50.02,1255,952,50,0,39,38,39,1254.0,1433.0,90.0,1.1,6513,71.26828 +252,ml-dl,https://github.com/pytorchlightning/pytorch-lightning,1.0,,,pytorchlightning/pytorch-lightning,lightning,20989,2683,227,"['python', 'deep-learning', 'artificial-intelligence', 'ai', 'pytorch', 'data-science', 'machine-learning']",Python,https://lightning.ai,"lightning: Build and train PyTorch models and connect them to the ML lifecycle using Lightning App templates, without handling DIY infrastructure, cost management, scaling, and other headaches.",pytorchlightning,2022-12-18,2022-12-18,2019-03-31,194,108.11111111111111,811,4,5,"['current:opentowork|previouslylightning-ai,episource', 'grid.ai|pytorchlightning', 'lightning-ai', 'lightningai']",,39.56,1617,1237,45,0,41,46,41,1616.0,2285.0,90.0,1.4,550,73.03704 +90,web,https://github.com/tornadoweb/tornado,1.0,,,tornadoweb/tornado,tornado,20902,5485,1006,"['python', 'asynchronous']",Python,http://www.tornadoweb.org/,"Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.",tornadoweb,2022-12-18,2022-12-17,2009-09-09,692,30.174056506496186,432,2,5,"['healthbyro', 'mongodb']",,1.42,39,24,162,0,0,5,5,39.0,62.0,90.0,1.6,879,59.61018 +8,perf,https://github.com/celery/celery,,,,celery/celery,celery,20658,4395,476,"['python', 'task-manager', 'task-scheduler', 'task-runner', 'queue-workers', 'queued-jobs', 'queue-tasks', 'amqp', 'redis', 'sqs', 'sqs-queue', 'python3', 'python-library', 'redis-queue']",Python,https://docs.celeryq.dev,celery: Distributed Task Queue (development branch),celery,2022-12-18,2022-12-15,2009-04-24,712,28.996591136956084,1255,2,5,"['celerypsfapache', 'robinhoodmarkets']",,5.23,297,166,166,0,8,17,8,297.0,543.0,90.0,1.8,6865,71.58273 +45,testing,https://github.com/locustio/locust,1.0,,,locustio/locust,locust,20331,2602,431,"['locust', 'python', 'load-testing', 'performance-testing', 'http', 'benchmarking', 'load-generator']",Python,,locust: Scalable load testing tool written in Python,locustio,2022-12-18,2022-12-16,2011-02-17,617,32.92088827203331,271,3,5,"['5m', 'heylab', 'redshirtconsultingab']",,9.37,96,83,144,0,26,9,26,96.0,201.0,90.0,2.1,596,66.39902 +75,nlp,https://github.com/pytorch/fairseq,,,,pytorch/fairseq,fairseq,20311,5092,355,"['python', 'pytorch', 'artificial-intelligence']",Python,,fairseq: Facebook AI Research Sequence-to-Sequence Toolkit written in Python.,pytorch,2022-12-18,2022-12-17,2017-08-29,276,73.36274509803921,412,3,5,"['facebook', 'facebookairesearch', 'facebookresearch']",,3.77,277,114,65,0,3,3,3,277.0,248.0,90.0,0.9,81045,69.00771 +2,ml-dl,https://github.com/apache/incubator-mxnet,,,,apache/incubator-mxnet,mxnet,20194,6876,1088,['mxnet'],C++,https://mxnet.apache.org,"mxnet: Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler; for Python, R, Julia, Scala, Go, Javascript and more",apache,2022-12-18,2022-09-26,2015-04-30,398,50.66594982078853,980,5,5,"['amazon', 'cmu,octoml', 'facebook', 'mit', 'universityofwashington']",,2.65,95,14,93,3,5,6,5,95.0,53.0,90.0,0.6,1919,61.54047 +255,crypto,https://github.com/freqtrade/freqtrade,,,,freqtrade/freqtrade,freqtrade,20137,4263,595,"['python', 'cryptocurrencies', 'trading-bot', 'telegram-bot', 'bitcoin', 'trade', 'cryptocurrency', 'algorithmic-trading', 'freqtrade']",Python,https://www.freqtrade.io,"freqtrade: Free, open source crypto trading bot",freqtrade,2022-12-18,2022-12-18,2017-05-17,291,69.02987267384917,284,1,5,['freqtradecoredev;frizzleapps/whatsitwhatsit'],,69.62,530,502,68,0,17,13,17,530.0,1379.0,90.0,2.6,1085,68.40999 +607,util,https://github.com/norvig/pytudes,,,,norvig/pytudes,pytudes,19802,2265,730,"['python', 'python-3', 'programming', 'practice', 'demonstrate-skills']",Jupyter Notebook,,"pytudes: Python programs, usually short, of considerable difficulty, to perfect particular skills.",norvig,2022-12-18,2022-12-14,2017-03-01,302,65.41481831052383,44,1,5,['google'],,1.38,5,4,71,0,0,0,0,5.0,2.0,90.0,0.4,17,34.84385 +273,ml,https://github.com/google/mediapipe,,,,google/mediapipe,mediapipe,19756,4148,494,"['mediapipe', 'c-plus-plus', 'computer-vision', 'deep-learning', 'android', 'video-processing', 'audio-processing', 'mobile-development', 'machine-learning', 'inference', 'graph-framework', 'graph-based', 'calculator', 'framework', 'pipeline-framework', 'stream-processing', 'perception']",C++,https://mediapipe.dev,"mediapipe: Cross-platform, customizable ML solutions for live and streaming media.",google,2022-12-18,2022-12-16,2019-06-13,183,107.62023346303502,21,1,5,['google'],,11.92,556,322,43,0,4,13,4,556.0,1433.0,90.0,2.6,111,50.70535 +409,perf,https://github.com/google/flatbuffers,,,,google/flatbuffers,flatbuffers,19528,2976,649,"['flatbuffers', 'serialization', 'serialization-library', 'json-parser', 'marshalling', 'rpc', 'zero-copy', 'mmap', 'cross-platform', 'c-plus-plus', 'java', 'c-sharp', 'go', 'python', 'rust', 'javascript', 'typescript', 'grpc', 'c', 'protobuf']",C++,http://google.github.io/flatbuffers/,FlatBuffers: Memory Efficient Serialization Library,google,2022-12-18,2022-12-15,2014-05-19,448,43.589285714285715,613,3,5,"['cto', 'google', 'voxraygames']",,7.4,227,156,104,0,9,4,9,227.0,576.0,90.0,2.5,3175,70.70299 +350,ml-dl,https://github.com/paddlepaddle/paddle,,,,paddlepaddle/paddle,Paddle,19328,4834,734,"['paddlepaddle', 'deep-learning', 'scalability', 'machine-learning', 'neural-network', 'python', 'efficiency', 'distributed-training']",C++,http://www.paddlepaddle.org/,Paddle: PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice (『飞桨』核心框架,深度学习&机器学习高性能单机、分布式训练和跨平台部署),paddlepaddle,2022-12-18,2022-12-17,2016-08-15,331,58.39274924471299,895,3,5,"['baidubdg/idl/dltp', 'paddlepaddle', 'tencent']",,110.33,4106,3158,77,0,7,11,7,4104.0,6254.0,90.0,1.5,19940,80.9565 +232,template,https://github.com/cookiecutter/cookiecutter,,,,cookiecutter/cookiecutter,cookiecutter,18574,1762,236,"['python', 'cookiecutter']",Python,https://pypi.org/project/cookiecutter/,"cookiecutter: A cross-platform command-line utility that creates projects from cookiecutters (project templates), e.g. Python package projects, C projects.",cookiecutter,2022-12-18,2022-09-09,2013-07-14,492,37.7410740203193,285,3,5,"['margaritahumanitarian', 'mozilla', 'octoenergy']",,3.08,50,10,115,3,2,3,2,50.0,43.0,90.0,0.9,611,53.64259 +789,study,https://github.com/wesm/pydata-book,,,,wesm/pydata-book,pydata-book,18518,13789,1456,[],Jupyter Notebook,,"pydata-book: Materials and IPython notebooks for ""Python for Data Analysis"" by Wes McKinney, published by O'Reilly Media",wesm,2022-12-18,2022-11-03,2012-06-30,546,33.89801255230125,9,3,5,"['googlecloud', 'vndly', 'voltrondata']",,0.15,7,4,127,2,0,0,0,7.0,6.0,90.0,0.9,5,30.95404 +186,ml,https://github.com/harisiqbal88/plotneuralnet,,,,harisiqbal88/plotneuralnet,PlotNeuralNet,18466,2542,219,"['latex', 'deep-neural-networks']",TeX,,PlotNeuralNet: Latex code for making neural networks diagrams,harisiqbal88,2022-12-18,2020-11-06,2018-07-24,229,80.33685518955873,13,2,5,"['cesarbr', 'universityofoxford']",,0.0,4,1,54,26,0,0,0,4.0,5.0,90.0,1.2,35,25.78726 +187,ml-interpretability,https://github.com/slundberg/shap,,,,slundberg/shap,shap,18176,2729,259,"['interpretability', 'machine-learning', 'deep-learning', 'gradient-boosting', 'shap', 'shapley', 'explainability']",Jupyter Notebook,,shap: A game theoretic approach to explain the output of any machine learning model.,slundberg,2022-12-18,2022-06-16,2016-11-22,316,57.36339044183949,205,3,5,"['microsoft', 'microsoftresearch', 'mila-iqia']",,2.31,187,27,74,6,1,8,1,187.0,160.0,90.0,0.9,439,50.16834 +61,viz,https://github.com/plotly/dash,,,,plotly/dash,dash,17833,1815,409,"['dash', 'plotly', 'data-visualization', 'data-science', 'gui-framework', 'flask', 'react', 'python', 'finance', 'bioinformatics', 'technical-computing', 'charting', 'plotly-dash', 'web-app', 'productivity', 'modeling', 'r', 'rstats', 'jupyter', 'julia']",Python,https://plotly.com/dash,"dash: Analytical Web Apps for Python, R, Julia, and Jupyter. No JavaScript Required.",plotly,2022-12-18,2022-12-17,2015-04-10,401,44.423843416370104,132,1,5,['plotly'],,12.54,177,85,94,0,12,11,12,177.0,210.0,90.0,1.2,5155,62.42429 +763,ml-dl,https://github.com/xinntao/real-esrgan,,,,xinntao/real-esrgan,Real-ESRGAN,17026,1811,181,"['esrgan', 'pytorch', 'real-esrgan', 'super-resolution', 'image-restoration', 'denoise', 'jpeg-compression', 'amine']",Python,,Real-ESRGAN aims at developing Practical Algorithms for General Image/Video Restoration.,xinntao,2022-12-18,2022-09-20,2021-07-19,74,230.0810810810811,11,3,5,"['huggingface', 'tencent', 'vk|hse']",,0.69,87,7,17,3,3,14,3,87.0,78.0,90.0,0.9,67,35.54132 +6,viz,https://github.com/bokeh/bokeh,,,,bokeh/bokeh,bokeh,17007,4012,451,"['bokeh', 'python', 'interactive-plots', 'javascript', 'visualization', 'plotting', 'plots', 'data-visualisation', 'notebooks', 'jupyter', 'visualisation', 'numfocus']",Python,https://bokeh.org,"bokeh: Interactive Data Visualization in the browser, from Python",bokeh,2022-12-18,2022-12-16,2012-03-26,560,30.369642857142857,624,1,5,['nvidia'],,8.15,405,275,131,0,0,10,10,405.0,824.0,90.0,2.0,1783,67.11479 +107,sim,https://github.com/atsushisakai/pythonrobotics,,,,atsushisakai/pythonrobotics,PythonRobotics,16987,5385,503,"['python', 'robotics', 'algorithm', 'path-planning', 'control', 'animation', 'localization', 'slam', 'cvxpy', 'ekf', 'autonomous-vehicles', 'autonomous-driving', 'mapping', 'autonomous-navigation', 'robot', 'hacktoberfest']",Python,https://atsushisakai.github.io/PythonRobotics/,PythonRobotics: Python sample codes for robotics algorithms.,atsushisakai,2022-12-18,2022-12-05,2016-03-21,352,48.25852272727273,102,2,5,"['idealworks', 'tiiuae']",,2.15,45,35,82,0,0,0,0,45.0,24.0,90.0,0.5,950,50.12303 +349,ml,https://github.com/jina-ai/jina,,,,jina-ai/jina,jina,16915,2000,183,"['neural-search', 'cloud-native', 'deep-learning', 'machine-learning', 'framework', 'vector-search-engine', 'grpc', 'kubernetes', 'microservices', 'semantic-search', 'multimodal', 'crossmodal', 'creative-ai', 'aiops', 'mlops', 'pipeline', 'workflow', 'airflow', 'fastapi', 'generative-ai']",Python,https://docs.jina.ai,jina: 🔮 Build multimodal AI services via cloud native technologies · Neural Search · Generative AI · Cloud Native,jina-ai,2022-12-18,2022-12-17,2020-02-13,148,113.85096153846153,161,2,5,"['jina-ai', 'jinaai']",,23.48,403,374,35,0,109,127,109,403.0,797.0,90.0,2.0,1437,65.50054 +30,web,https://github.com/huge-success/sanic,,,,huge-success/sanic,sanic,16695,1484,414,"['python', 'framework', 'asyncio', 'api-server', 'web', 'web-server', 'web-framework', 'asgi', 'sanic']",Python,https://sanic.dev,sanic: Next generation Python web server/framework | Build fast. Run fast.,huge-success,2022-12-18,2022-12-18,2016-05-26,342,48.73436196830692,325,3,5,"['airbnb', 'packetfabric', 'pytorch']",,2.42,121,91,80,0,14,12,14,121.0,310.0,90.0,2.6,62,59.80018 +228,term,https://github.com/willmcgugan/textual,,,,willmcgugan/textual,textual,16593,476,151,"['terminal', 'python', 'tui', 'rich', 'cli', 'framework']",Python,https://textual.textualize.io/,Textual is a TUI (Text User Interface) framework for Python inspired by modern web development.,willmcgugan,2022-12-18,2022-12-18,2021-04-08,88,187.34032258064516,61,3,5,"['davep.org', 'lastmileict', 'textualize']",,50.9,650,542,21,0,13,10,13,650.0,957.0,90.0,1.5,26,55.84176 +48,viz,https://github.com/matplotlib/matplotlib,,,,matplotlib/matplotlib,matplotlib,16560,6641,587,"['matplotlib', 'data-visualization', 'data-science', 'python', 'qt', 'wx', 'gtk', 'plotting', 'tk', 'hacktoberfest']",Python,https://matplotlib.org/stable/,matplotlib: plotting with Python,matplotlib,2022-12-18,2022-12-18,2011-02-19,617,26.82712335107614,1447,2,5,"['brookhavennationallab', 'microsoft']",,35.75,2020,1442,144,0,7,10,7,2020.0,2716.0,90.0,1.3,7290,76.87204 +31,data,https://github.com/jaidedai/easyocr,,,,jaidedai/easyocr,EasyOCR,16541,2390,284,"['ocr', 'deep-learning', 'crnn', 'pytorch', 'lstm', 'machine-learning', 'scene-text', 'scene-text-recognition', 'optical-character-recognition', 'cnn', 'data-mining', 'image-processing', 'python', 'easyocr', 'information-retrieval']",Python,https://www.jaided.ai,"EasyOCR: Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc.",jaidedai,2022-12-18,2022-11-18,2020-03-14,144,114.64059405940594,110,2,5,"['enveritas', 'jaidedai']",,1.0,86,31,34,0,5,7,5,86.0,125.0,90.0,1.5,122,49.49466 +373,ml-dl,https://github.com/pyg-team/pytorch_geometric,,,,pyg-team/pytorch_geometric,pytorch_geometric,16385,2991,246,"['pytorch', 'geometric-deep-learning', 'graph-neural-networks', 'deep-learning', 'graph-convolutional-networks']",Python,https://pytorch-geometric.readthedocs.io/,pytorch_geometric: Graph Neural Network Library for PyTorch,pyg-team,2022-12-18,2022-12-17,2017-10-06,271,60.36578947368421,351,2,5,"['max-planckinstituteforinformatics,kumo.ai', 'uilab-githubsparcs-kaist']",,16.75,996,819,63,0,4,6,4,995.0,1179.0,90.0,1.2,47,59.25055 +102,ml-ops,https://github.com/spotify/luigi,,,,spotify/luigi,luigi,16191,2352,486,"['python', 'luigi', 'orchestration-framework', 'scheduling', 'hadoop']",Python,,"Luigi is a Python module that helps you build complex pipelines of batch jobs. It handles dependency resolution, workflow management, visualization etc. It also comes with Hadoop support built in. ",spotify,2022-12-18,2022-12-02,2012-09-20,534,30.28781400320684,596,3,5,"['google', 'houzz', 'modallabs']",,0.81,21,10,125,1,2,6,2,21.0,32.0,90.0,1.5,387,55.86213 +426,study,https://github.com/fchollet/deep-learning-with-python-notebooks,,,,fchollet/deep-learning-with-python-notebooks,deep-learning-with-python-notebooks,16168,7914,647,[],Jupyter Notebook,,"deep-learning-with-python-notebooks: Jupyter notebooks for the code samples of the book ""Deep Learning with Python""",fchollet,2022-12-18,2022-02-10,2017-09-05,275,58.61004660797514,6,0,5,[],,0.02,4,1,64,10,0,0,0,4.0,5.0,90.0,1.2,2,16.67302 +144,nlp,https://github.com/openai/gpt-2,,,,openai/gpt-2,gpt-2,15919,4021,584,['paper'],Python,https://openai.com/blog/better-language-models/,"gpt-2: Code for the paper ""Language Models are Unsupervised Multitask Learners""",openai,2022-12-18,2020-12-02,2019-02-11,201,79.19900497512438,16,1,5,['openai'],,0.0,5,1,47,25,0,0,0,5.0,3.0,90.0,0.6,365,27.02593 +109,data,https://github.com/binux/pyspider,,,,binux/pyspider,pyspider,15686,3660,906,"['python', 'crawler']",Python,http://docs.pyspider.org/,pyspider: A Powerful Spider(Web Crawler) System in Python.,binux,2022-12-18,2020-08-02,2014-02-21,460,34.06825938566553,62,0,5,[],,0.0,8,2,107,29,0,1,1,8.0,5.0,90.0,0.6,243,29.95225 +834,util,https://github.com/micropython/micropython,,,,micropython/micropython,micropython,15625,6002,731,"['micropython', 'python', 'embedded', 'microcontroller']",C,https://micropython.org,MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems,micropython,2022-12-18,2022-12-16,2013-12-20,469,33.285149117468045,536,2,5,"['micropython', 'openmv']",,25.54,524,330,110,7,2,6,2,524.0,1537.0,90.0,2.9,17483,68.37545 +873,util,https://github.com/ipython/ipython,,,,ipython/ipython,ipython,15614,4403,775,"['ipython', 'jupyter', 'data-science', 'notebook', 'python', 'repl', 'closember', 'hacktoberfest']",Python,https://ipython.readthedocs.org,"ipython: Official repository for IPython itself. Other repos in the IPython organization contain things like the website, documentation builds, etc.",ipython,2022-12-17,2022-12-12,2010-05-10,658,23.72948328267477,925,4,5,"['amazonwebservices', 'google', 'quansight-labs', 'simularesearchlaboratory']",,5.67,183,91,154,0,0,12,12,183.0,194.0,90.0,1.1,14264,73.36514 +176,debug,https://github.com/cool-rr/pysnooper,1.0,,,cool-rr/pysnooper,PySnooper,15499,932,234,"['python', 'debug', 'debugger', 'introspection', 'logging']",Python,,PySnooper: Never use print for debugging again,cool-rr,2022-12-18,2022-12-11,2019-04-18,191,80.90454884414616,27,2,5,"['japan', 'nvidia']",,0.12,3,1,45,0,0,5,5,3.0,5.0,90.0,1.7,10,37.32871 +493,ml-dl,https://github.com/rasbt/deeplearning-models,,,,rasbt/deeplearning-models,deeplearning-models,15476,3828,598,[],Jupyter Notebook,,"deeplearning-models: A collection of various deep learning architectures, models, and tips",rasbt,2022-12-18,2022-11-16,2019-06-05,184,83.78344934261408,11,4,5,"['alibaba-inc&nanjinguniversity', 'irtsaint-exupéry', 'lightning-ai,universityofwisconsin-madison', 'microsoft']",,1.4,4,3,43,1,0,0,0,4.0,1.0,90.0,0.2,49,33.69158 +41,util,https://github.com/kivy/kivy,,,,kivy/kivy,kivy,15305,2966,619,"['python', 'ui', 'windows', 'ios', 'android', 'macos', 'linux', 'app', 'kivy']",Python,https://kivy.org,"kivy: Open source UI framework written in Python, running on Windows, Linux, macOS, Android and iOS",kivy,2022-12-18,2022-12-18,2010-11-03,632,24.18943328065026,577,5,5,"['cornelluniversity', 'freelance', 'imc.com', 'meltingrocks', 'zencode']",,2.21,117,65,148,0,1,3,1,117.0,187.0,90.0,1.6,6614,67.36366 +469,util,https://github.com/alievk/avatarify-python,,,,alievk/avatarify-python,avatarify-python,15297,2357,306,[],Python,,"avatarify-python: Avatars for Zoom, Skype and other video-conferencing apps.",alievk,2022-12-18,2022-11-11,2020-04-06,141,108.48936170212765,22,3,5,"['entrepreneur', 'occrp,the-markup', 'universityofhildesheim']",,0.02,58,15,33,1,0,1,1,58.0,174.0,90.0,3.0,0,34.2977 +328,security,https://github.com/aquasecurity/trivy,,,,aquasecurity/trivy,trivy,15287,1475,145,"['security', 'security-tools', 'docker', 'containers', 'vulnerability-scanners', 'vulnerability-detection', 'vulnerability', 'golang', 'go', 'kubernetes', 'hacktoberfest', 'devsecops', 'misconfiguration', 'infrastructure-as-code', 'iac']",Go,https://trivy.dev,"trivy: Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more",aquasecurity,2022-12-18,2022-12-18,2019-04-11,192,79.38353115727003,268,0,5,[],,15.67,547,334,45,0,35,28,35,547.0,947.0,90.0,1.7,2726,62.29143 +19,time-series,https://github.com/facebook/prophet,1.0,,,facebook/prophet,prophet,15280,4341,426,"['forecasting', 'r', 'python']",Python,https://facebook.github.io/prophet,prophet: Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth.,facebook,2022-12-18,2022-09-21,2016-11-16,317,48.093525179856115,158,1,5,['canva'],,0.88,88,26,74,3,2,2,2,88.0,95.0,90.0,1.1,1139,48.7755 +36,data,https://github.com/joke2k/faker,,,,joke2k/faker,faker,15170,1708,220,"['python', 'fake', 'testing', 'dataset', 'fake-data', 'test-data', 'test-data-generator']",Python,http://faker.rtfd.org,Faker is a Python package that generates fake data for you.,joke2k,2022-12-17,2022-11-30,2012-11-12,527,28.785578747628083,489,4,5,"['mdxs', 'minted', 'sailoboats', 'selfemployed']",,5.06,76,51,123,1,55,26,55,76.0,136.0,90.0,1.8,6153,69.76525 +604,web,https://github.com/pyscript/pyscript,,,,pyscript/pyscript,pyscript,15152,1110,180,"['python', 'html', 'javascript']",Python,https://community.anaconda.cloud/c/tech-topics/pyscript,pyscript: Home Page: https://pyscript.net Examples: https://pyscript.net/examples,pyscript,2022-12-18,2022-12-17,2022-02-21,43,352.3720930232558,95,1,5,['anaconda'],,12.27,497,367,10,0,4,5,4,497.0,1009.0,90.0,2.0,34,48.57364 +137,nlp,https://github.com/huggingface/datasets,,,,huggingface/datasets,datasets,14923,1942,260,"['nlp', 'datasets', 'metrics', 'evaluation', 'pytorch', 'tensorflow', 'pandas', 'numpy', 'natural-language-processing', 'computer-vision', 'machine-learning', 'deep-learning', 'speech', 'hacktoberfest']",Python,https://huggingface.co/docs/datasets,"datasets: 🤗 The largest hub of ready-to-use datasets for ML models with fast, easy-to-use and efficient data manipulation tools",huggingface,2022-12-18,2022-12-18,2020-03-26,142,104.67034068136273,474,2,5,"['huggingface', 'huggingfaceaiinnova']",,18.37,643,505,33,0,23,25,23,643.0,1331.0,90.0,2.1,2106,69.07616 +74,typing,https://github.com/python/mypy,,,,python/mypy,mypy,14361,2385,223,"['python', 'types', 'typing', 'typechecker', 'linter']",Python,http://www.mypy-lang.org/,mypy: Optional static typing for Python,python,2022-12-18,2022-12-16,2012-12-07,523,27.43640829694323,618,3,5,"['edgedb', 'microsoft', 'openai']",,16.12,944,561,122,0,0,7,7,944.0,2100.0,90.0,2.2,21972,76.83813 +148,data,https://github.com/twintproject/twint,,,,twintproject/twint,twint,14185,2432,310,"['osint', 'twitter', 'python', 'scrape', 'tweets', 'elasticsearch', 'kibana', 'scrape-followers', 'scrape-likes', 'scrape-following', 'twint', 'tweep']",Python,,"twint: An advanced Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API, allowing you to scrape a user's followers, following, Tweets and more while evading most API limitations.",twintproject,2022-12-18,2021-03-02,2017-06-10,288,49.20465807730426,65,2,5,"['maximlevin', 'none']",,0.0,1,1,67,22,0,4,4,1.0,0.0,90.0,0.0,313,33.7623 +124,ml,https://github.com/onnx/onnx,,,,onnx/onnx,onnx,13818,3231,430,"['deep-learning', 'deep-neural-networks', 'neural-network', 'onnx', 'pytorch', 'mxnet', 'tensorflow', 'keras', 'scikit-learn', 'ml', 'machine-learning', 'dnn']",Python,https://onnx.ai/,onnx: Open standard for machine learning interoperability,onnx,2022-12-18,2022-12-15,2017-09-07,275,50.143079315707624,264,2,5,"['microsoft', 'microsoftresearch']",,4.88,267,175,64,0,3,5,3,267.0,461.0,90.0,1.7,32190,66.79335 +104,nlp,https://github.com/rare-technologies/gensim,,,,rare-technologies/gensim,gensim,13801,4298,430,"['gensim', 'topic-modeling', 'information-retrieval', 'machine-learning', 'natural-language-processing', 'nlp', 'data-science', 'python', 'data-mining', 'word2vec', 'word-embeddings', 'neural-network', 'document-similarity', 'word-similarity', 'fasttext']",Python,https://radimrehurek.com/gensim,gensim: Topic Modelling for Humans,rare-technologies,2022-12-18,2022-12-17,2011-02-10,618,22.31108545034642,440,4,5,"['constructor.io,embedika', 'http://xavvy.com', 'profoundnetworks', 'rare-technologies']",,1.77,51,41,144,0,1,6,1,51.0,100.0,90.0,2.0,156,58.49225 +332,sim,https://github.com/unity-technologies/ml-agents,,,,unity-technologies/ml-agents,ml-agents,13800,3635,539,"['reinforcement-learning', 'unity3d', 'deep-learning', 'unity', 'deep-reinforcement-learning', 'neural-networks', 'machine-learning']",C#,https://unity.com/products/machine-learning-agents,ml-agents: The Unity Machine Learning Agents Toolkit (ML-Agents) is an open-source project that enables games and simulations to serve as environments for training intelligent agents using deep reinforcement learning and imitation learning.,unity-technologies,2022-12-18,2022-12-15,2017-09-08,275,50.10373443983403,147,1,5,['ziplineinternational'],,1.85,198,145,64,0,2,26,2,198.0,155.0,90.0,0.8,428,51.65048 +175,util,https://github.com/delgan/loguru,1.0,,,delgan/loguru,loguru,13598,570,119,"['python', 'logging', 'logger', 'log']",Python,,loguru: Python logging made (stupidly) simple,delgan,2022-12-18,2022-12-02,2017-08-15,278,48.763319672131146,41,1,5,"['freelancer,upforhire']",,2.17,92,68,65,1,1,3,1,92.0,198.0,90.0,2.2,258,46.45915 +674,ml-dl,https://github.com/borisdayma/dalle-mini,,,,borisdayma/dalle-mini,dalle-mini,13453,1011,103,[],Python,https://www.craiyon.com,dalle-mini: DALL·E Mini - Generate images from a text prompt,borisdayma,2022-12-18,2022-11-09,2021-07-03,76,176.3501872659176,27,2,5,"['huggingface', 'universityofmaryland,collegepark']",,4.35,13,4,18,1,3,3,3,13.0,32.0,90.0,2.5,121,42.31203 +56,term,https://github.com/pallets/click,,,,pallets/click,click,13290,1299,183,"['python', 'cli', 'click', 'pallets']",Python,https://click.palletsprojects.com,click: Python composable command line interface toolkit,pallets,2022-12-18,2022-11-01,2014-04-24,451,29.430559949383106,333,2,5,"['getsentry', 'sentry']",,1.23,65,24,105,2,5,5,5,65.0,62.0,90.0,1.0,3073,57.20947 +119,ml-ops,https://github.com/mlflow/mlflow,,,,mlflow/mlflow,mlflow,13208,3082,285,"['machine-learning', 'ai', 'ml', 'mlflow', 'apache-spark', 'model-management']",Python,https://mlflow.org,mlflow: Open source platform for the machine learning lifecycle,mlflow,2022-12-18,2022-12-17,2018-06-05,236,55.76357056694813,526,1,5,['databricks'],,22.33,849,680,55,0,13,24,13,850.0,2007.0,90.0,2.4,955,67.32446 +544,ml,https://github.com/aleju/imgaug,,,,aleju/imgaug,imgaug,13184,2333,228,"['image-augmentation', 'machine-learning', 'augmentation', 'deep-learning', 'images', 'affine-transformation', 'polygon', 'heatmap', 'segmentation-maps', 'keypoints', 'bounding-boxes', 'augment-images', 'crop', 'contrast']",Python,http://imgaug.readthedocs.io,imgaug: Image augmentation for machine learning experiments.,aleju,2022-12-18,2020-06-01,2015-07-10,388,33.94189040088268,36,3,5,"['kitware', 'maxplanckinstituteofanimalbehavior', 'mujin']",,0.0,5,1,91,31,0,2,2,5.0,8.0,90.0,1.6,383,37.76871 +408,web,https://github.com/aio-libs/aiohttp,,,,aio-libs/aiohttp,aiohttp,13100,1836,227,"['aiohttp', 'asyncio', 'python', 'http', 'http-server', 'http-client', 'async', 'hacktoberfest']",Python,https://docs.aiohttp.org,aiohttp: Asynchronous HTTP client/server framework for asyncio and Python,aio-libs,2022-12-18,2022-12-12,2013-10-01,480,27.243018419489008,661,3,5,"['ansiblecoreredhatofficial', 'microsoft', 'neu.ro']",,8.35,303,207,112,0,2,26,2,303.0,598.0,90.0,2.0,5253,69.76611 +554,ml-ops,https://github.com/horovod/horovod,,,,horovod/horovod,horovod,12898,2145,332,"['tensorflow', 'uber', 'machine-learning', 'machinelearning', 'mpi', 'baidu', 'deep-learning', 'deeplearning', 'keras', 'pytorch', 'mxnet', 'spark', 'ray']",Python,http://horovod.ai,"horovod: Distributed training framework for TensorFlow, Keras, PyTorch, and Apache MXNet.",horovod,2022-12-18,2022-12-10,2017-08-09,279,46.111338100102145,163,3,5,"['carbonrobotics', 'nvidia', 'uber']",,3.12,128,75,65,0,7,14,7,128.0,269.0,90.0,2.1,93,56.58463 +507,ml,https://github.com/tensorflow/tensor2tensor,,,,tensorflow/tensor2tensor,tensor2tensor,12835,3147,458,"['machine-learning', 'machine-translation', 'deep-learning', 'reinforcement-learning', 'tpu']",Python,,tensor2tensor: Library of deep learning models and datasets designed to make deep learning more accessible and accelerate ML research.,tensorflow,2022-12-18,2022-10-24,2017-06-15,287,44.632389468455045,243,3,5,"['google', 'mimuw', 'universityofillinoisaturbana–champaign']",,0.23,14,2,67,2,0,14,14,14.0,15.0,90.0,1.1,295,50.80974 +812,nlp,https://github.com/gunthercox/chatterbot,,,,gunthercox/chatterbot,ChatterBot,12738,4189,552,"['chatterbot', 'machine-learning', 'chatbot', 'python', 'conversation', 'language', 'bot']",Python,https://chatterbot.readthedocs.io,"ChatterBot is a machine learning, conversational dialog engine for creating chat bots",gunthercox,2022-12-18,2021-06-01,2014-09-28,429,29.68242343541944,103,2,5,"['amazonwebservices', 'wedgwoodwebworks']",,0.0,27,10,100,19,0,10,10,27.0,17.0,90.0,0.6,247,42.31027 +62,viz,https://github.com/plotly/plotly.py,,,,plotly/plotly.py,plotly.py,12630,2251,275,"['python', 'd3', 'plotly', 'plotlyjs', 'webgl', 'dashboard', 'visualization', 'graph-library', 'plotly-dash', 'jupyter-notebook', 'sparkles', 'regl', 'declarative', 'interactive']",Python,https://plotly.com/python/,plotly.py: The interactive graphing library for Python (includes Plotly Express) :sparkles:,plotly,2022-12-18,2022-10-27,2013-11-21,473,26.669683257918553,201,3,5,"['hextechnologies', 'netflix', 'plotly']",,3.52,166,40,110,2,9,15,9,166.0,236.0,90.0,1.4,2044,60.48519 +39,jupyter,https://github.com/jupyterlab/jupyterlab,,,,jupyterlab/jupyterlab,jupyterlab,12515,2511,311,"['jupyterlab', 'jupyter']",TypeScript,https://jupyterlab.readthedocs.io/,JupyterLab computational environment.,jupyterlab,2022-12-18,2022-12-16,2016-06-03,341,36.65481171548117,517,5,5,"['coiled', 'databricks', 'jupyterquantstack', 'mongodb', 'quantstack']",,15.75,777,555,80,0,53,5006,53,777.0,1800.0,90.0,2.3,5103,76.85596 +127,ml,https://github.com/microsoft/nni,,,,microsoft/nni,nni,12327,1729,282,"['automl', 'deep-learning', 'neural-architecture-search', 'hyperparameter-optimization', 'distributed', 'bayesian-optimization', 'automated-machine-learning', 'machine-learning', 'machine-learning-algorithms', 'data-science', 'tensorflow', 'pytorch', 'neural-network', 'deep-neural-network', 'model-compression', 'feature-engineering', 'nas', 'python', 'hyperparameter-tuning', 'mlops']",Python,https://nni.readthedocs.io,"nni: An open source AutoML toolkit for automate machine learning lifecycle, including feature engineering, neural architecture search, model compression and hyper-parameter tuning.",microsoft,2022-12-18,2022-12-16,2018-06-01,237,51.918772563176894,185,1,5,['microsoft'],,7.79,212,115,55,0,6,10,6,213.0,379.0,90.0,1.8,186,55.62039 +152,nlp,https://github.com/flairnlp/flair,,,,flairnlp/flair,flair,12300,1977,206,"['pytorch', 'nlp', 'named-entity-recognition', 'sequence-labeling', 'semantic-role-labeling', 'word-embeddings', 'natural-language-processing', 'machine-learning']",Python,,flair: A very simple framework for state-of-the-art Natural Language Processing (NLP),flairnlp,2022-12-18,2022-12-18,2018-06-11,236,52.11864406779661,235,3,5,"['humboldtuniversität', 'rasahq', 'researchindustrialsystemsengineering(rise)']",,11.98,195,127,55,0,1,5,1,195.0,260.0,90.0,1.3,254,57.83871 +281,util,https://github.com/squidfunk/mkdocs-material,,,,squidfunk/mkdocs-material,mkdocs-material,12080,2664,110,"['mkdocs', 'theme', 'documentation', 'material-design', 'template', 'static']",TypeScript,https://squidfunk.github.io/mkdocs-material/,mkdocs-material: Documentation that simply works,squidfunk,2022-12-18,2022-12-18,2016-01-28,359,33.59555025824394,173,2,5,"['stylezen', 'trimble-oss']",,14.37,245,232,84,0,58,43,58,245.0,619.0,90.0,2.5,13300,70.98461 +575,perf,https://github.com/pybind/pybind11,,,,pybind/pybind11,pybind11,11971,1736,247,"['python', 'bindings']",C++,https://pybind11.readthedocs.io/,pybind11: Seamless operability between C++11 and Python,pybind,2022-12-18,2022-12-16,2015-07-05,389,30.762481644640236,312,3,5,"['epfl', 'lumicks', 'princetonuniversity']",,5.27,230,176,91,0,5,7,5,230.0,886.0,90.0,3.9,1836,67.64555 +52,graph,https://github.com/networkx/networkx,,,,networkx/networkx,networkx,11960,2803,276,"['python', 'complex-networks', 'graph-theory', 'graph-algorithms', 'graph-analysis', 'graph-generation', 'graph-visualization']",Python,https://networkx.org,networkx: Network Analysis in Python,networkx,2022-12-18,2022-12-15,2010-09-06,641,18.658346333853356,636,1,5,['ucberkeley'],,9.06,390,241,150,0,16,7,16,390.0,500.0,90.0,1.3,957,65.74663 +314,util,https://github.com/samuelcolvin/pydantic,,,,samuelcolvin/pydantic,pydantic,11924,1113,88,"['validation', 'parsing', 'json-schema', 'python37', 'python38', 'pydantic', 'python39', 'python', 'hints', 'python310', 'python311']",Python,https://docs.pydantic.dev,pydantic: Data parsing and validation using Python type hints,samuelcolvin,2022-12-18,2022-12-15,2017-05-03,293,40.59727626459144,333,3,5,"['pydantic', 'pyupio', 'toucantoco']",,5.4,340,204,68,0,11,17,11,340.0,668.0,90.0,2.0,1774,66.6183 +114,nlp,https://github.com/allenai/allennlp,,,,allenai/allennlp,allennlp,11332,2231,280,"['pytorch', 'nlp', 'natural-language-processing', 'deep-learning', 'data-science', 'python']",Python,http://www.allennlp.org,"allennlp: An open-source NLP research library, built on PyTorch.",allenai,2022-12-18,2022-11-22,2017-05-15,292,38.80821917808219,265,1,5,['microsoftsemanticmachines'],,1.6,36,32,68,1,6,12,6,36.0,98.0,90.0,2.7,331,53.48101 +425,ml-dl,https://github.com/albumentations-team/albumentations,,,,albumentations-team/albumentations,albumentations,11325,1447,124,"['image-augmentation', 'machine-learning', 'augmentation', 'deep-learning', 'detection', 'fast-augmentations', 'segmentation', 'image-segmentation', 'image-processing', 'image-classification', 'python', 'object-detection']",Python,https://albumentations.ai,albumentations: Fast image augmentation library and an easy-to-use wrapper around other libraries. Documentation: https://albumentations.ai/docs/ Paper about the library: https://www.mdpi.com/2078-2489/11/2/125,albumentations-team,2022-12-18,2022-11-24,2018-06-06,236,47.84248642124321,123,2,5,"['deci-ai', 'ternaus.com']",,1.29,95,40,55,1,3,4,3,95.0,133.0,90.0,1.4,24,45.96912 +105,nlp,https://github.com/nltk/nltk,,,,nltk/nltk,nltk,11321,2671,469,"['nltk', 'python', 'nlp', 'natural-language-processing', 'machine-learning']",Python,https://www.nltk.org,NLTK Source,nltk,2022-12-18,2022-12-13,2009-09-07,693,16.336219336219337,435,2,5,"['googleresearch', 'zytedata,scrapinghub']",,2.29,66,52,162,0,0,3,3,66.0,154.0,90.0,2.3,4758,64.34187 +346,viz,https://github.com/gradio-app/gradio,,,,gradio-app/gradio,gradio,11301,717,88,"['machine-learning', 'models', 'ui', 'ui-components', 'interface', 'python', 'data-science', 'data-visualization', 'deep-learning', 'data-analysis', 'gradio', 'gradio-interface', 'python-notebook', 'deploy']",HTML,http://www.gradio.app,gradio: Create UIs for your machine learning model in Python in 3 minutes,gradio-app,2022-12-18,2022-12-17,2018-12-19,208,54.14579055441479,118,1,5,['pennstate'],,29.58,698,489,49,0,75,19,75,698.0,1859.0,90.0,2.7,794,64.23435 +242,ml,https://github.com/deepmind/deepmind-research,,,,deepmind/deepmind-research,deepmind-research,11213,2300,325,[],Jupyter Notebook,,deepmind-research: This repository contains implementations and illustrative code to accompany DeepMind publications,deepmind,2022-12-18,2022-10-24,2019-01-15,204,54.73570432357043,91,1,5,['deepmind'],,0.77,37,6,48,2,0,0,0,37.0,26.0,90.0,0.7,7,33.55297 +320,gui,https://github.com/pysimplegui/pysimplegui,1.0,,,pysimplegui/pysimplegui,PySimpleGUI,10984,1632,220,"['pysimplegui', 'gui-framework', 'python', 'tkinter', 'tkinter-python', 'tkinter-gui', 'wxpython', 'pyside2', 'qt', 'qt-gui', 'remi', 'gui', 'gui-window', 'gui-programming', 'datavisualization', 'games', 'beginner-friendly', 'systemtray', 'python-gui', 'user-interface']",Python,,"PySimpleGUI: Launched in 2018. It's 2022 and PySimpleGUI is actively developed & supported. Create complex windows simply. Supports tkinter, Qt, WxPython, Remi (in browser). Create GUI applications trivially with a full set of widgets. Multi-Window applications are also simple. 3.4 to 3.11 supported. 325+ Demo programs & Cookbook for rapid start. Extensive documentation. Examples for Machine Learning(OpenCV Integration, Chatterbot), Rainmeter-like Desktop Widgets, Matplotlib + Pyplot integration, add GUI to command line scripts, PDF & Image Viewer. For both beginning and advanced programmers. docs - PySimpleGUI.org GitHub - PySimpleGUI.com. The Minecraft of GUIs - simple to complex... does them all.",pysimplegui,2022-12-18,2022-12-17,2018-07-11,231,47.40320591861899,18,2,5,"['netperfect', 'pysimplegui']",,9.48,242,202,54,0,5,1,5,242.0,689.0,90.0,2.8,67,51.24711 +190,ml-dl,https://github.com/dmlc/dgl,,,,dmlc/dgl,dgl,10871,2643,174,"['deep-learning', 'graph-neural-networks']",Python,http://dgl.ai,"dgl: Python package built to ease deep learning on graph, on top of existing DL frameworks.",dmlc,2022-12-18,2022-12-18,2018-04-20,243,44.657863849765256,240,5,5,"['aws', 'awsailabshanghai', 'awsshanghai', 'newyorkuniversity', 'tensorchord']",,11.92,617,452,57,0,7,6,7,615.0,3148.0,90.0,5.1,47,65.24854 +122,data,https://github.com/iterative/dvc,,,,iterative/dvc,dvc,10804,1010,136,"['data-science', 'machine-learning', 'reproducibility', 'data-version-control', 'git', 'developer-tools', 'collaboration', 'ai', 'python', 'hacktoberfest']",Python,https://dvc.org,dvc: 🦉Data Version Control | Git for Data & Models | ML Experiments Management,iterative,2022-12-18,2022-12-15,2017-03-04,302,35.74102079395085,276,2,5,"['iterative', 'iterative.ai']",,19.79,520,371,70,0,54,73,54,519.0,1066.0,90.0,2.1,3399,70.22249 +1,data,https://github.com/apache/arrow,,,,apache/arrow,arrow,10801,2663,345,['arrow'],C++,https://arrow.apache.org/,arrow: Apache Arrow is a multi-language toolbox for accelerated data interchange and in-memory processing,apache,2022-12-18,2022-12-18,2016-02-17,356,30.279134961954345,976,4,5,"['clear-code', 'quantco', 'voltron-data/ursa-computing', 'voltrondata']",,41.44,1046,764,83,0,0,10,10,1046.0,5523.0,90.0,5.3,15514,82.94679 +120,ml-ops,https://github.com/prefecthq/prefect,,,,prefecthq/prefect,prefect,10681,1084,152,"['python', 'workflow', 'data-engineering', 'data-science', 'workflow-engine', 'prefect', 'infrastructure', 'ml-ops', 'data-ops', 'automation', 'orchestration', 'orion', 'data', 'observability', 'pipeline']",Python,https://prefect.io,prefect: The easiest way to coordinate your dataflow,prefecthq,2022-12-18,2022-12-17,2018-06-29,233,45.75703794369645,100,2,5,"['prefect', 'prefecthq']",,131.9,1305,920,54,0,47,36,47,1308.0,2629.0,90.0,2.0,362,67.07832 +192,template,https://github.com/tiangolo/full-stack-fastapi-postgresql,,,,tiangolo/full-stack-fastapi-postgresql,full-stack-fastapi-postgresql,10628,1932,172,"['python', 'python3', 'json', 'json-schema', 'docker', 'postgresql', 'frontend', 'backend', 'fastapi', 'traefik', 'letsencrypt', 'swagger', 'celery', 'jwt', 'vue', 'vuex', 'cookiecutter', 'openapi', 'openapi3', 'pgadmin']",Python,,"full-stack-fastapi-postgresql: Full stack, modern web application generator. Using FastAPI, PostgreSQL as database, Docker, automatic HTTPS and more.",tiangolo,2022-12-18,2020-06-05,2019-02-23,199,53.33046594982079,17,4,5,"['cortexia', 'formlogic', 'intelliatherapeutics', 'messagg']",,0.0,152,51,46,31,0,2,2,152.0,84.0,90.0,0.6,44,33.80779 +79,ml,https://github.com/scipy/scipy,,,,scipy/scipy,scipy,10608,4514,341,"['python', 'scipy', 'algorithms', 'closember', 'scientific-computing']",Python,https://scipy.org,SciPy library main repository,scipy,2022-12-18,2022-12-17,2011-03-09,614,17.25679758308157,1401,1,5,['quansight'],,30.5,1144,738,143,0,13,13,13,1144.0,2983.0,90.0,2.6,7282,76.57437 +11,perf,https://github.com/dask/dask,,,,dask/dask,dask,10578,1575,216,"['dask', 'python', 'pydata', 'numpy', 'pandas', 'scikit-learn', 'scipy']",Python,https://dask.org,dask: Parallel computing with task scheduling,dask,2022-12-18,2022-12-16,2015-01-04,415,25.48038540949759,570,2,5,"['coiled', 'voltrondata']",,11.13,346,211,97,0,0,32,32,346.0,856.0,90.0,2.5,3107,71.77885 +218,ml,https://github.com/spotify/annoy,,,,spotify/annoy,annoy,10574,1066,325,"['c-plus-plus', 'python', 'nearest-neighbor-search', 'locality-sensitive-hashing', 'approximate-nearest-neighbor-search', 'golang', 'lua']",C++,,annoy: Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk,spotify,2022-12-18,2022-10-27,2013-04-01,507,20.8560157790927,82,1,5,['google'],,0.12,17,9,118,2,1,3,1,17.0,28.0,90.0,1.6,66,41.24694 +857,viz,https://github.com/visgl/deck.gl,,,,visgl/deck.gl,deck.gl,10477,1892,1730,"['webgl', 'data-visualization', 'javascript', 'visualization', 'python', 'geospatial-analysis', 'maps']",JavaScript,https://deck.gl,deck.gl: WebGL2 powered visualization framework,visgl,2022-12-18,2022-12-16,2015-12-15,365,28.636860601327605,209,1,5,['foursquare'],,7.31,185,127,85,0,59,74,59,186.0,250.0,90.0,1.3,273,59.14641 +718,perf,https://github.com/pola-rs/polars,1.0,,,pola-rs/polars,polars,10407,553,104,"['dataframe-library', 'dataframe', 'dataframes', 'rust', 'arrow', 'python', 'out-of-core']",Rust,https://pola.rs/,"polars: Fast multi-threaded, hybrid-streaming DataFrame library in Rust | Python | Node.js",pola-rs,2022-12-18,2022-12-18,2020-05-13,135,76.68315789473684,141,1,5,['aertslab'],,39.65,1083,893,32,0,26,129,26,1083.0,1784.0,90.0,1.6,102,59.74475 +72,util,https://github.com/python-pillow/pillow,,,,python-pillow/pillow,Pillow,10374,1957,218,"['c', 'cross-platform', 'pil', 'pillow', 'python', 'python-3', 'image-processing', 'image']",Python,https://python-pillow.org,Pillow: The friendly PIL fork (Python Imaging Library),python-pillow,2022-12-18,2022-12-16,2012-07-24,542,19.11,420,3,5,"['aclark.net', 'nordsoftware', 'uploadcare']",,19.37,361,295,127,0,6,8,6,361.0,568.0,90.0,1.6,26551,74.1838 +110,ml-interpretability,https://github.com/marcotcr/lime,,,,marcotcr/lime,lime,10294,1693,272,[],JavaScript,,Lime: Explaining the predictions of any machine learning classifier,marcotcr,2022-12-16,2021-07-29,2016-03-15,352,29.17327935222672,61,2,5,"['related-sciences', 'system1']",,0.0,25,10,82,17,0,3,3,25.0,19.0,90.0,0.8,145,38.3514 +427,ml-dl,https://github.com/facebookresearch/detr,,,,facebookresearch/detr,detr,10233,1866,146,[],Python,,detr: End-to-End Object Detection with Transformers,facebookresearch,2022-12-18,2022-03-07,2020-05-26,133,76.44717182497332,25,4,5,"['axera-tech', 'facebookaireseach', 'facebookairesearch', 'mtsai']",,0.02,48,13,31,10,0,0,0,48.0,51.0,90.0,1.1,66,34.74809 +50,viz,https://github.com/mwaskom/seaborn,,,,mwaskom/seaborn,seaborn,10172,1678,252,"['python', 'data-visualization', 'data-science', 'matplotlib', 'pandas']",Python,https://seaborn.pydata.org,seaborn: Statistical data visualization in Python,mwaskom,2022-12-18,2022-12-18,2012-06-18,548,18.562043795620436,181,3,5,"['bridgebioanalytics', 'coiled', 'universityofbritishcolumbia']",,4.69,146,116,128,0,8,3,8,146.0,305.0,90.0,2.1,522,62.58486 +166,sim,https://github.com/bulletphysics/bullet3,,,,bulletphysics/bullet3,bullet3,10043,2620,405,"['simulation', 'robotics', 'kinematics', 'virtual-reality', 'reinforcement-learning', 'computer-animation', 'game-development', 'simulator', 'pybullet']",C++,http://bulletphysics.org,"bullet3: Bullet Physics SDK: real-time collision detection and multi-physics simulation for VR, games, visual effects, robotics, machine learning etc.",bulletphysics,2022-12-18,2022-09-25,2011-04-12,609,16.467791051768565,299,1,5,['ucla'],,1.69,55,14,142,3,2,2,2,55.0,34.0,90.0,0.6,2098,51.52757 +173,term,https://github.com/tiangolo/typer,1.0,,,tiangolo/typer,typer,9986,399,66,"['cli', 'click', 'python3', 'typehints', 'terminal', 'shell', 'python', 'typer']",Python,https://typer.tiangolo.com/,"Typer, build great CLIs. Easy to code. Based on Python type hints.",tiangolo,2022-12-18,2022-12-16,2019-12-24,155,64.07149404216315,32,1,5,['lofidynamics'],,2.75,183,93,36,0,6,8,6,183.0,342.0,90.0,1.9,381,49.55948 +24,ml,https://github.com/google/dopamine,,,,google/dopamine,dopamine,9956,1337,440,"['rl', 'ml', 'ai', 'google', 'tensorflow']",Jupyter Notebook,https://github.com/google/dopamine,Dopamine is a research framework for fast prototyping of reinforcement learning algorithms. ,google,2022-12-16,2022-11-28,2018-07-26,229,43.367766023646546,15,1,5,['google'],,0.44,6,2,54,1,0,0,0,6.0,17.0,90.0,2.8,27,33.55339 +60,pandas,https://github.com/pandas-profiling/pandas-profiling,1.0,,,pandas-profiling/pandas-profiling,pandas-profiling,9944,1413,150,"['pandas-profiling', 'pandas-dataframe', 'statistics', 'jupyter-notebook', 'exploration', 'data-science', 'python', 'pandas', 'machine-learning', 'deep-learning', 'exploratory-data-analysis', 'eda', 'data-quality', 'html-report', 'data-exploration', 'data-analysis', 'jupyter', 'big-data-analytics', 'data-profiling', 'hacktoberfest']",Python,https://pandas-profiling.ydata.ai,pandas-profiling: Create HTML profiling reports from pandas DataFrame objects,pandas-profiling,2022-12-18,2022-12-16,2016-01-09,362,27.44794952681388,105,1,5,['metamaze'],,3.54,196,144,84,0,4,18,4,196.0,260.0,90.0,1.3,60,50.62193 +87,math,https://github.com/sympy/sympy,1.0,,,sympy/sympy,sympy,9887,3794,283,"['python', 'math', 'computer-algebra', 'science', 'hacktoberfest']",Python,https://sympy.org/,sympy: A computer algebra system written in pure Python,sympy,2022-12-18,2022-12-17,2010-04-30,659,14.993284228769497,1186,2,5,"['gsitechnology', 'quansight']",,40.35,914,247,154,0,8,7,8,914.0,1859.0,90.0,2.0,7939,76.25086 +645,util,https://github.com/pyinstaller/pyinstaller,,,,pyinstaller/pyinstaller,pyinstaller,9831,1852,233,"['python', 'python-3', 'bundle', 'package', 'pyinstaller', 'python-to-exe', 'py2exe', 'py2app']",Python,http://www.pyinstaller.org,pyinstaller: Freeze (package) Python programs into stand-alone executables,pyinstaller,2022-12-18,2022-12-18,2011-11-23,577,17.01706231454006,443,1,5,['develers.r.l.'],,7.4,6291,6242,135,0,14,5,14,6291.0,670.0,90.0,0.1,2287,66.502 +805,web,https://github.com/encode/httpx,,,,encode/httpx,httpx,9786,640,106,"['python', 'http', 'trio', 'asyncio']",Python,https://www.python-httpx.org/,httpx: A next generation HTTP client for Python. 🦋,encode,2022-12-18,2022-12-12,2019-04-04,193,50.5549815498155,182,2,5,"['elastic', 'encodeoss']",,3.13,130,103,45,0,5,20,5,130.0,242.0,90.0,1.9,2114,59.60811 +536,profiling,https://github.com/bloomberg/memray,1.0,,,bloomberg/memray,memray,9678,267,54,"['memory', 'memory-leak', 'memory-leak-detection', 'memory-profiler', 'profiler', 'python', 'python3', 'hacktoberfest']",Python,https://bloomberg.github.io/memray/,Memray is a memory profiler for Python,bloomberg,2022-12-18,2022-12-09,2022-04-08,36,265.67058823529413,22,2,5,"['bloomberg', 'bloombergpythoninfrastructure']",,6.85,60,47,8,0,9,17,9,60.0,73.0,90.0,1.2,3,38.40438 +22,nlp,https://github.com/facebookresearch/parlai,,,,facebookresearch/parlai,ParlAI,9672,1974,290,[],Python,https://parl.ai,ParlAI: A framework for training and evaluating AI models on a variety of openly available dialogue datasets.,facebookresearch,2022-12-18,2022-12-13,2017-04-24,295,32.7864406779661,204,2,5,"['facebookairesearch', 'facebookresearch']",,5.13,177,138,69,0,3,7,3,177.0,276.0,90.0,1.6,1804,60.56503 +38,jupyter,https://github.com/jupyter/notebook,,,,jupyter/notebook,notebook,9629,3983,320,"['closember', 'jupyter', 'jupyter-notebook', 'notebook']",Jupyter Notebook,https://jupyter-notebook.readthedocs.io/,notebook: Jupyter Interactive Notebook,jupyter,2022-12-17,2022-12-11,2015-04-09,401,23.97829953753113,622,4,5,"['amazonwebservices', 'google', 'quansight-labs', 'simularesearchlaboratory']",,9.38,222,148,94,0,19,30,19,222.0,373.0,90.0,1.7,97078,78.16955 +71,testing,https://github.com/pytest-dev/pytest,,,,pytest-dev/pytest,pytest,9601,2216,195,"['unit-testing', 'test', 'testing', 'python', 'hacktoberfest']",Python,https://pytest.org,"pytest: The pytest framework makes it easy to write small tests, yet scales to support complex functional testing",pytest-dev,2022-12-18,2022-12-17,2015-06-15,392,24.492346938775512,842,4,5,"['esss', 'freelancer,upforhire', 'merlinux', 'redhatinsights']",,7.56,302,217,91,0,7,24,7,302.0,631.0,90.0,2.1,42749,76.55276 +653,profiling,https://github.com/benfred/py-spy,,,,benfred/py-spy,py-spy,9464,344,107,"['profiler', 'python', 'performance-analysis', 'profiling']",Rust,,py-spy: Sampling profiler for Python programs,benfred,2022-12-17,2022-12-09,2018-08-01,228,41.3791380387258,31,1,5,['nvidia'],,0.58,29,10,53,0,3,7,3,29.0,27.0,90.0,0.9,156,41.80836 +225,util,https://github.com/pyodide/pyodide,,,,pyodide/pyodide,pyodide,9408,616,124,"['python', 'webassembly']",Python,https://pyodide.org/en/stable/,Pyodide is a Python distribution for the browser and Node.js based on WebAssembly,pyodide,2022-12-18,2022-12-18,2018-02-23,251,37.41818181818182,159,2,5,"['microsoft', 'mitmathdepartment']",,14.48,288,200,59,0,15,13,15,289.0,724.0,90.0,2.5,60,59.33072 +412,util,https://github.com/pre-commit/pre-commit,,,,pre-commit/pre-commit,pre-commit,9355,689,82,"['git', 'pre-commit', 'python', 'linter', 'refactoring']",Python,https://pre-commit.com,pre-commit: A framework for managing and maintaining multi-language pre-commit hooks.,pre-commit,2022-12-18,2022-12-13,2014-03-13,457,20.444895410552608,146,2,5,"['twitter', 'yelp']",,2.08,155,139,107,0,5,20,5,155.0,361.0,90.0,2.3,1348,60.66502 +315,gui,https://github.com/hoffstadt/dearpygui,,,,hoffstadt/dearpygui,DearPyGui,9255,496,136,"['cpp', 'python', 'imgui', 'toolkit', 'native', 'tools', 'gui', 'graphics', 'macos', 'linux', 'ui', 'python-gui', 'cross-platform', 'windows', 'dearpygui']",C++,https://dearpygui.readthedocs.io/en/latest/,DearPyGui: Dear PyGui: A fast and powerful Graphical User Interface Toolkit for Python with minimal dependencies,hoffstadt,2022-12-18,2022-12-14,2020-05-28,133,69.28877005347593,51,2,5,"['benoitpremiumthreading', 'metecs']",,3.42,131,57,31,0,10,9,10,131.0,131.0,90.0,1.0,64,48.22041 +155,data,https://github.com/s0md3v/photon,,,,s0md3v/photon,Photon,9231,1359,324,"['crawler', 'spider', 'python', 'osint', 'information-gathering']",Python,,Photon: Incredibly fast crawler designed for OSINT.,s0md3v,2022-12-18,2022-03-16,2018-03-30,246,37.45913043478261,21,1,5,['na'],,0.02,3,0,57,9,0,4,4,3.0,2.0,90.0,0.7,52,29.48631 +655,util,https://github.com/magicstack/uvloop,,,,magicstack/uvloop,uvloop,9071,525,226,"['asyncio', 'async-await', 'async', 'high-performance', 'libuv', 'python', 'python-3', 'event-loop', 'networking', 'async-python']",Cython,,uvloop: Ultra fast asyncio event loop.,magicstack,2022-12-18,2022-09-14,2015-11-08,371,24.44072363356428,55,1,5,['edgedb'],,0.6,26,6,87,3,1,11,1,26.0,37.0,90.0,1.4,569,42.85418 +238,data,https://github.com/tiangolo/sqlmodel,1.0,,,tiangolo/sqlmodel,sqlmodel,9061,385,118,"['python', 'sql', 'sqlalchemy', 'pydantic', 'fastapi', 'json', 'json-schema']",Python,https://sqlmodel.tiangolo.com/,"sqlmodel: SQL databases in Python, designed for simplicity, compatibility, and robustness.",tiangolo,2022-12-18,2022-12-16,2021-08-24,68,131.59128630705393,54,0,5,[],,2.98,137,67,16,0,3,5,3,137.0,308.0,90.0,2.2,42,40.84357 +142,nlp,https://github.com/ukplab/sentence-transformers,,,,ukplab/sentence-transformers,sentence-transformers,9012,1796,116,[],Python,https://www.SBERT.net,sentence-transformers: Multilingual Sentence & Image Embeddings with BERT,ukplab,2022-12-18,2022-11-28,2019-07-24,177,50.71061093247589,106,2,5,"['huggingface', 'telekom']",,2.02,141,44,41,1,3,9,3,141.0,158.0,90.0,1.1,118,47.89295 +398,web,https://github.com/falconry/falcon,,,,falconry/falcon,falcon,8978,898,266,"['python', 'framework', 'rest', 'microservices', 'web', 'api', 'http', 'wsgi', 'asgi', 'api-rest', 'hacktoberfest-accepted', 'hacktoberfest2022', 'hacktoberfest']",Python,https://falcon.readthedocs.io/en/stable/,"falcon: The no-magic web data plane API and microservices framework for Python developers, with a focus on reliability, correctness, and performance at scale.",falconry,2022-12-17,2022-12-02,2012-12-06,523,17.147612551159618,195,2,5,"['centurylink', 'liquidweb']",,1.27,43,26,122,1,8,7,8,43.0,67.0,90.0,1.6,39,50.91137 +157,util,https://github.com/pallets/jinja,,,,pallets/jinja,jinja,8940,1529,252,"['python', 'template-engine', 'jinja', 'jinja2', 'templates', 'pallets']",Python,https://jinja.palletsprojects.com,jinja: A very fast and expressive template engine.,pallets,2022-12-18,2022-11-01,2010-10-17,635,14.07557354925776,302,3,5,"['cern/indico', 'getsentry', 'sentry']",,1.25,52,31,148,2,3,4,3,52.0,48.0,90.0,0.9,16433,60.77525 +371,viz,https://github.com/marceloprates/prettymaps,,,,marceloprates/prettymaps,prettymaps,8935,428,80,"['matplotlib', 'jupyter-notebook', 'python', 'generative-art', 'cartography', 'maps', 'openstreetmap']",Jupyter Notebook,,"prettymaps: A small set of Python functions to draw pretty maps from OpenStreetMap data. Based on osmnx, matplotlib and shapely libraries.",marceloprates,2022-12-17,2022-11-16,2021-03-05,93,95.63455657492355,15,1,5,['up42'],,0.52,11,6,22,1,0,2,2,11.0,7.0,90.0,0.6,14,29.63539 +517,typing,https://github.com/microsoft/pyright,,,,microsoft/pyright,pyright,8923,644,79,[],Python,,pyright: Static type checker for Python,microsoft,2022-12-18,2022-12-18,2019-03-12,196,45.327285921625545,83,2,5,"['microsoft', 'microsoftcorp.']",,24.56,372,356,46,0,87,97,87,370.0,924.0,90.0,2.5,1392,64.92175 +244,util,https://github.com/aws/serverless-application-model,,,,aws/serverless-application-model,serverless-application-model,8855,2275,307,"['serverless', 'aws', 'lambda', 'aws-sam', 'sam', 'sam-specification', 'serverless-applications', 'serverless-application-model']",Python,https://aws.amazon.com/serverless/sam,serverless-application-model: The AWS Serverless Application Model (AWS SAM) transform is a AWS CloudFormation macro that transforms SAM templates into CloudFormation templates.,aws,2022-12-17,2022-12-16,2016-10-10,323,27.41486068111455,255,2,5,"['aws', 'leland']",,6.06,467,322,75,0,13,10,13,467.0,343.0,90.0,0.7,372,60.47681 +132,ml,https://github.com/epistasislab/tpot,,,,epistasislab/tpot,tpot,8846,1504,291,"['machine-learning', 'python', 'data-science', 'automl', 'automation', 'scikit-learn', 'hyperparameter-optimization', 'model-selection', 'parameter-tuning', 'automated-machine-learning', 'random-forest', 'gradient-boosting', 'feature-engineering', 'aiml', 'alzheimer', 'alzheimers', 'nia', 'u01ag066833', 'ag066833', 'adsp']",Python,http://epistasislab.github.io/tpot/,tpot: A Python Automated Machine Learning tool that optimizes machine learning pipelines using genetic programming.,epistasislab,2022-12-18,2022-07-29,2015-11-03,371,23.788705339992315,112,3,5,"[""children'shospitalofphiladelphia"", 'eindhovenuniversityoftechnology', 'usc']",,0.35,15,4,87,5,0,4,4,15.0,13.0,90.0,0.9,20,41.04155 +780,diffusion,https://github.com/huggingface/diffusers,,,,huggingface/diffusers,diffusers,8780,1520,99,"['deep-learning', 'diffusion', 'image-generation', 'pytorch', 'score-based-generative-modeling', 'image2image', 'text2image', 'stable-diffusion', 'hacktoberfest']",Python,https://huggingface.co/docs/diffusers,🤗 Diffusers: State-of-the-art diffusion models for image and audio generation in PyTorch,huggingface,2022-12-18,2022-12-18,2022-05-30,29,302.7586206896552,159,1,5,['huggingface'],,26.25,1315,1033,7,0,23,49,23,1315.0,5140.0,90.0,3.9,5139,65.64144 +5,web,https://github.com/benoitc/gunicorn,,,,benoitc/gunicorn,gunicorn,8684,1619,234,"['http-server', 'http', 'python', 'wsgi-server', 'wsgi']",Python,http://www.gunicorn.org,"gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications.",benoitc,2022-12-18,2022-12-03,2009-11-30,681,12.751835535976506,380,3,5,"['confluentinc', 'enkimultimedia', 'nytimes']",,0.5,167,90,159,0,0,7,7,167.0,184.0,90.0,1.1,2114,62.91664 +134,ml-dl,https://github.com/keras-team/autokeras,,,,keras-team/autokeras,autokeras,8681,1385,306,"['automl', 'neural-architecture-search', 'automated-machine-learning', 'python', 'deep-learning', 'machine-learning', 'autodl', 'tensorflow', 'keras']",Python,http://autokeras.com/,autokeras: AutoML library for deep learning,keras-team,2022-12-18,2022-12-15,2017-11-19,265,32.74084051724138,139,2,5,"['keras-teamtensorflowgooglers', 'preligens']",,1.6,47,28,62,0,4,11,4,47.0,42.0,90.0,0.9,3,43.91307 +92,ml-ops,https://github.com/uber/ludwig,,,,uber/ludwig,ludwig,8670,1024,181,"['deep-learning', 'deeplearning', 'deep', 'learning', 'machine-learning', 'machinelearning', 'machine', 'natural-language-processing', 'natural-language', 'computer-vision', 'data-centric', 'data-science', 'python', 'pytorch', 'neural-network', 'ml', 'datascience']",Python,http://ludwig.ai,ludwig: Data-centric declarative deep learning framework,uber,2022-12-18,2022-12-17,2018-12-27,207,41.768754301445284,130,2,5,"['predibase', 'uber']",,15.54,383,334,48,0,16,9,16,383.0,479.0,90.0,1.3,54,57.08434 +759,diffusion,https://github.com/invoke-ai/invokeai,,,,invoke-ai/invokeai,InvokeAI,8507,960,102,"['ai-art', 'artificial-intelligence', 'generative-art', 'image-generation', 'img2img', 'inpainting', 'latent-diffusion', 'linux', 'macos', 'outpainting', 'txt2img', 'windows', 'stable-diffusion']",Jupyter Notebook,https://invoke-ai.github.io/InvokeAI/,"InvokeAI: This version of Stable Diffusion features a slick WebGUI, an interactive command-line script that combines text2img and img2img functionality in a ""dream bot"" style interface, and multiple features and other enhancements. For more info, see the website link below.",invoke-ai,2022-12-18,2022-12-18,2022-08-17,17,480.23387096774195,146,2,5,"['ares-consulting', 'ontarioinstituteforcancerresearch']",,34.5,1312,1023,4,0,12,195,12,1312.0,5106.0,90.0,3.9,230,60.02869 +523,ml-dl,https://github.com/lucidrains/dalle2-pytorch,,,,lucidrains/dalle2-pytorch,DALLE2-pytorch,8496,692,113,"['artificial-intelligence', 'deep-learning', 'text-to-image']",Python,,"DALLE2-pytorch: Implementation of DALL-E 2, OpenAI's updated text-to-image synthesis neural network, in Pytorch",lucidrains,2022-12-18,2022-12-15,2022-04-07,36,232.3125,16,0,5,[],,11.19,32,18,8,0,332,514,332,32.0,52.0,90.0,1.6,50,38.91026 +151,nlp,https://github.com/sloria/textblob,,,,sloria/textblob,TextBlob,8388,1100,270,"['nlp', 'nltk', 'pattern', 'python', 'python-3', 'python-2', 'natural-language-processing']",Python,https://textblob.readthedocs.io/,"TextBlob: Simple, Pythonic, text processing--Sentiment analysis, part-of-speech tagging, noun phrase extraction, translation, and more.",sloria,2022-12-18,2021-10-22,2013-06-30,494,16.97484822202949,36,2,5,"['google', 'urbaninfrastructure']",,0.0,3,0,115,14,0,4,4,3.0,1.0,90.0,0.3,38,31.8955 +100,nlp,https://github.com/clips/pattern,,,,clips/pattern,pattern,8371,1594,548,"['python', 'machine-learning', 'natural-language-processing', 'web-mining', 'wordnet', 'sentiment-analysis', 'network-analysis']",Python,https://github.com/clips/pattern/wiki,"pattern: Web mining module for Python, with tools for scraping, natural language processing, machine learning, network analysis and visualization.",clips,2022-12-18,2020-04-25,2011-05-03,606,13.794020715630886,30,1,5,['twitter-research'],,0.0,6,2,142,32,1,0,1,6.0,3.0,90.0,0.5,293,31.32583 +126,ml-dl,https://github.com/microsoft/deepspeed,,,,microsoft/deepspeed,DeepSpeed,8355,985,144,"['deep-learning', 'pytorch', 'gpu', 'machine-learning', 'billion-parameters', 'data-parallelism', 'model-parallelism', 'inference', 'pipeline-parallelism', 'compression', 'mixture-of-experts', 'trillion-parameters', 'zero']",Python,https://www.deepspeed.ai/,"DeepSpeed is a deep learning optimization library that makes distributed training and inference easy, efficient, and effective.",microsoft,2022-12-18,2022-12-18,2020-01-23,151,55.12252591894439,148,2,5,"['microsoft', 'stasosphereonline']",,8.46,386,270,35,0,17,18,17,386.0,708.0,90.0,1.8,150,58.33886 +282,util,https://github.com/arrow-py/arrow,,,,arrow-py/arrow,arrow,8167,636,134,"['python', 'arrow', 'datetime', 'date', 'time', 'timestamp', 'timezones', 'hacktoberfest']",Python,https://arrow.readthedocs.io,arrow: 🏹 Better dates & times for Python,arrow-py,2022-12-18,2022-11-15,2012-11-18,526,15.522400217214228,268,1,5,['amazon'],,0.73,28,11,123,1,1,5,1,28.0,46.0,90.0,1.6,943,51.46999 +125,perf,https://github.com/modin-project/modin,,,,modin-project/modin,modin,8151,584,110,"['dataframe', 'pandas', 'distributed', 'datascience', 'modin', 'sql', 'python', 'analytics', 'data-science', 'hacktoberfest']",Python,http://modin.readthedocs.io,Modin: Scale your Pandas workflows by changing a single line of code,modin-project,2022-12-18,2022-12-17,2018-06-21,234,34.74847746650426,109,2,5,"['ponder', 'ponder.io']",,9.44,815,505,55,0,17,14,17,815.0,1026.0,90.0,1.3,22,55.48983 +53,perf,https://github.com/numba/numba,,,,numba/numba,numba,8074,983,205,"['python', 'numpy', 'llvm', 'compiler', 'cuda', 'parallel']",Python,http://numba.pydata.org/,numba: NumPy aware dynamic Python compiler using LLVM,numba,2022-12-17,2022-12-16,2012-03-08,562,14.35195530726257,327,1,5,['mlabs'],,29.77,388,197,131,0,7,18,7,388.0,1032.0,90.0,2.7,4467,69.1077 +294,util,https://github.com/paramiko/paramiko,,,,paramiko/paramiko,paramiko,8042,1887,320,[],Python,http://paramiko.org,paramiko: The leading native Python SSHv2 protocol library.,paramiko,2022-12-18,2022-11-04,2009-02-02,724,11.107734806629834,177,3,5,"['codecobblers,inc', 'healthbyro', 'jumptrading']",,1.71,93,36,169,1,0,13,13,93.0,204.0,90.0,2.2,2010,61.79429 +84,ml,https://github.com/statsmodels/statsmodels,,,,statsmodels/statsmodels,statsmodels,8013,2627,272,"['python', 'statistics', 'econometrics', 'data-analysis', 'generalized-linear-models', 'timeseries-analysis', 'regression-models', 'count-model', 'data-science', 'forecasting', 'hypothesis-testing', 'prediction', 'robust-estimation']",Python,http://www.statsmodels.org/devel/,Statsmodels: statistical modeling and econometrics in Python,statsmodels,2022-12-18,2022-12-10,2011-06-12,601,13.329610266159696,402,1,5,['hcahealthcare'],,6.0,450,237,140,0,4,4,4,450.0,623.0,90.0,1.4,1144,62.26753 +128,viz,https://github.com/altair-viz/altair,,,,altair-viz/altair,altair,7936,710,150,[],Python,https://altair-viz.github.io/,altair: Declarative statistical visualization library for Python,altair-viz,2022-12-17,2022-12-18,2015-09-19,378,20.978851963746223,147,3,5,"['amazonwebservices', 'google', ""losangelestimesandstanford'sbiglocalnews""]",,3.27,112,69,88,0,1,3,1,112.0,374.0,90.0,3.3,95,55.89908 +116,ml-ops,https://github.com/kedro-org/kedro,,From: https://github.com/quantumblacklabs/kedro,,kedro-org/kedro,kedro,7893,741,102,"['pipeline', 'kedro', 'hacktoberfest', 'mlops', 'experiment-tracking', 'python', 'machine-learning']",Python,https://kedro.org,"kedro: A Python framework for creating reproducible, maintainable and modular data science code.",kedro-org,2022-12-18,2022-12-15,2019-04-18,191,41.20134228187919,176,2,5,"['quantumblack', 'softwareengineeratquantumblacklabs']",,6.88,366,212,45,0,6,9,6,366.0,529.0,90.0,1.4,9,51.69432 +706,sim,https://github.com/isl-org/open3d,,,,isl-org/open3d,Open3D,7821,1838,170,"['mesh-processing', 'computer-graphics', 'opengl', 'cpp', 'python', 'reconstruction', 'odometry', 'visualization', 'registration', 'machine-learning', '3d', 'pointcloud', 'rendering', 'gui', '3d-perception', 'gpu', 'arm', 'cuda', 'pytorch', 'tensorflow']",C++,http://www.open3d.org,Open3D: A Modern Library for 3D Data Processing,isl-org,2022-12-18,2022-12-16,2016-12-02,315,24.79483695652174,175,3,5,"['formatechnologies', 'hku-cs', 'postech']",,5.5,345,128,74,0,2,4,2,345.0,419.0,90.0,1.2,11,52.01991 +7,util,https://github.com/boto/boto3,,,,boto/boto3,boto3,7770,1691,239,"['python', 'aws', 'cloud', 'cloud-management', 'aws-sdk']",Python,https://aws.amazon.com/sdk-for-python/,boto3: AWS SDK for Python,boto,2022-12-18,2022-12-16,2014-10-03,428,18.136045348449482,139,2,5,"['amazonwebservices', 'istreamplanet']",,9.92,326,182,100,0,0,147,147,326.0,432.0,90.0,1.3,28646,69.8489 +29,ml-ops,https://github.com/great-expectations/great_expectations,,,,great-expectations/great_expectations,great_expectations,7751,1156,69,"['pipeline-tests', 'dataquality', 'datacleaning', 'datacleaner', 'data-science', 'data-profiling', 'pipeline', 'pipeline-testing', 'cleandata', 'dataunittest', 'data-unit-tests', 'eda', 'exploratory-data-analysis', 'exploratory-analysis', 'exploratorydataanalysis', 'data-quality', 'data-engineering', 'pipeline-debt', 'data-profilers', 'mlops']",Python,https://docs.greatexpectations.io/,great_expectations: Always know what to expect from your data.,great-expectations,2022-12-18,2022-12-16,2017-09-11,275,28.185454545454544,342,1,5,['superconductive'],,35.42,638,516,64,0,58,41,58,638.0,1340.0,90.0,2.1,158,64.43845 +422,ml-dl,https://github.com/pyro-ppl/pyro,,,,pyro-ppl/pyro,pyro,7715,940,203,"['python', 'pytorch', 'machine-learning', 'bayesian', 'probabilistic-programming', 'bayesian-inference', 'variational-inference', 'probabilistic-modeling', 'deep-learning']",Python,http://pyro.ai,pyro: Deep universal probabilistic programming with Python and PyTorch,pyro-ppl,2022-12-18,2022-12-13,2017-06-16,287,26.84145129224652,130,3,5,"['facebook', 'generatebiomedicines', 'meta']",,1.35,37,24,67,0,3,6,3,37.0,44.0,90.0,1.2,106,51.00913 +394,web,https://github.com/encode/starlette,,,,encode/starlette,starlette,7692,693,112,"['python', 'async', 'websockets', 'graphql', 'http']",Python,https://www.starlette.io/,starlette: The little ASGI framework that shines. 🌟,encode,2022-12-18,2022-12-09,2018-06-25,234,32.87179487179487,217,2,5,"['encode', 'encodeoss']",,4.56,129,96,55,0,12,27,12,129.0,273.0,90.0,2.1,1476,62.04619 +367,ml,https://github.com/megvii-basedetection/yolox,,,,megvii-basedetection/yolox,YOLOX,7687,1837,72,"['yolox', 'yolov3', 'onnx', 'tensorrt', 'ncnn', 'openvino', 'pytorch', 'megengine', 'object-detection', 'yolo', 'deep-learning']",Python,,"YOLOX is a high-performance anchor-free YOLO, exceeding yolov3~v5 with MegEngine, ONNX, TensorRT, ncnn, and OpenVINO supported. Documentation: https://yolox.readthedocs.io/",megvii-basedetection,2022-12-18,2022-12-16,2021-07-17,74,103.47884615384615,67,4,5,"['markany', 'megvii-basedetection', 'megviibasedetection', 'wandb']",,0.92,122,50,17,0,2,3,2,122.0,147.0,90.0,1.2,10,43.39891 +495,data,https://github.com/duckdb/duckdb,1.0,,,duckdb/duckdb,duckdb,7647,730,115,"['sql', 'database', 'olap', 'analytics', 'embedded-database']",C++,http://www.duckdb.org,DuckDB is an in-process SQL OLAP Database Management System,duckdb,2022-12-18,2022-12-17,2018-06-26,233,32.69945021380574,215,2,5,"['cwi', 'duckdblabs']",,131.92,1149,956,55,0,8,7,8,1150.0,1990.0,90.0,1.7,349,66.68811 +815,ml-dl,https://github.com/danielgatis/rembg,,,,danielgatis/rembg,rembg,7640,969,99,"['image-processing', 'background-removal', 'python']",Python,,Rembg is a tool to remove images background.,danielgatis,2022-12-18,2022-12-14,2020-08-10,123,62.113821138211385,32,1,5,['christianclauss'],,2.35,73,51,29,0,15,13,15,73.0,149.0,90.0,2.0,18,44.05328 +615,testing,https://github.com/robotframework/robotframework,,,,robotframework/robotframework,robotframework,7635,2052,483,"['robotframework', 'testing', 'automation', 'testautomation', 'attd', 'bdd', 'rpa', 'python']",Python,http://robotframework.org,robotframework: Generic automation framework for acceptance testing and RPA,robotframework,2022-12-18,2022-12-11,2014-06-27,442,17.25702292541169,172,2,5,"['eligaoy', 'reaktor']",,10.92,157,94,103,0,14,15,14,157.0,321.0,90.0,2.0,1572,64.57422 +95,perf,https://github.com/vaexio/vaex,,,,vaexio/vaex,vaex,7633,581,144,"['dataframe', 'python', 'bigdata', 'tabular-data', 'visualization', 'memory-mapped-file', 'hdf5', 'machine-learning', 'machinelearning', 'data-science', 'pyarrow']",Python,https://vaex.io,"vaex: Out-of-Core hybrid Apache Arrow/NumPy DataFrame for Python, ML, visualization and exploration of big tabular data at a billion rows per second 🚀",vaexio,2022-12-18,2022-12-08,2014-09-27,429,17.780698835274542,72,3,5,"['maartenbreddels', 'rungalileo', 'xdss']",,4.52,131,68,100,0,0,44,44,131.0,263.0,90.0,2.0,29,55.82363 +10,util,https://github.com/cython/cython,,,,cython/cython,cython,7517,1345,230,"['python', 'cython', 'cpython', 'cpython-extensions', 'c', 'cpp', 'performance', 'big-data']",Python,https://cython.org,cython: The most widely used Python to C compiler,cython,2022-12-18,2022-12-15,2010-11-21,630,11.929041033779189,489,2,5,"['ecrcatkaust', 'mlabs']",,9.35,222,136,147,0,8,15,8,222.0,496.0,90.0,2.2,4115,69.15892 +440,ml-dl,https://github.com/kornia/kornia,,,,kornia/kornia,kornia,7514,753,118,"['computer-vision', 'image-processing', 'machine-learning', 'pytorch', 'deep-learning', 'neural-network', 'python', 'artificial-intelligence']",Python,https://kornia.github.io/kornia/,kornia: Open Source Differentiable Computer Vision Library,kornia,2022-12-17,2022-12-16,2018-08-22,225,33.289873417721516,195,4,5,"['computervisioncenter', 'czechtechnicaluniversityinprague', 'kaust', 'kornia.org']",,6.37,236,174,53,0,6,8,6,236.0,411.0,90.0,1.7,103,59.02274 +322,web,https://github.com/graphql-python/graphene,,,,graphql-python/graphene,graphene,7496,804,146,"['graphql', 'python', 'relay', 'framework', 'graphene']",Python,http://graphene-python.org/,graphene: GraphQL framework for Python,graphql-python,2022-12-17,2022-12-11,2015-09-24,377,19.85319712447976,194,1,5,['wasmerio'],,0.79,49,34,88,0,4,8,4,49.0,110.0,90.0,2.2,1177,55.6152 +470,nlp,https://github.com/microsoft/unilm,,,,microsoft/unilm,unilm,7463,1365,178,"['nlp', 'language-understanding', 'language-generation', 'pre-trained-model', 'small-pre-trained-model', 'unilm', 'minilm', 'layoutlm', 'infoxlm', 'multimodal-pre-trained-model', 'layoutxlm', 'beit', 'document-ai', 'trocr', 'wavlm', 'beit-3', 'foundation-models', 'xlm-e', 'deepnet', 'document-foundation-model']",Python,https://aka.ms/nlpagi,"unilm: Large-scale Self-supervised Pre-training Across Tasks, Languages, and Modalities",microsoft,2022-12-18,2022-11-28,2019-07-23,177,41.960642570281124,50,1,5,['microsoftresearch'],,6.02,136,79,41,1,0,1,1,136.0,207.0,90.0,1.5,32,42.86846 +547,ml,https://github.com/optuna/optuna,,,,optuna/optuna,optuna,7310,784,121,"['python', 'machine-learning', 'parallel', 'distributed', 'hyperparameter-optimization', 'hacktoberfest']",Python,https://optuna.org,optuna: A hyperparameter optimization framework,optuna,2022-12-18,2022-12-16,2018-02-21,251,29.040862656072644,220,1,5,['preferrednetworks'],,46.4,323,226,59,0,11,11,11,323.0,983.0,90.0,3.0,1036,65.43558 +28,ml-dl,https://github.com/google/trax,,,,google/trax,trax,7217,750,145,"['jax', 'numpy', 'deep-learning', 'deep-reinforcement-learning', 'machine-learning', 'transformer', 'reinforcement-learning']",Python,,Trax — Deep Learning with Clear Code and Speed,google,2022-12-18,2022-11-09,2019-10-05,167,43.141759180187876,78,2,5,"['google', 'mimuw']",,0.38,8,1,39,1,0,6,6,8.0,5.0,90.0,0.6,19,38.19324 +70,ml,https://github.com/pymc-devs/pymc3,,,,pymc-devs/pymc3,pymc,7187,1711,225,"['python', 'statistical-analysis', 'bayesian-inference', 'mcmc', 'variational-inference', 'probabilistic-programming', 'aesara', 'hacktoberfest', 'pytensor']",Python,https://docs.pymc.io/,pymc: Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with PyTensor,pymc-devs,2022-12-18,2022-12-18,2009-05-05,710,10.11032958199357,428,2,5,"['msueconomics/skoltechcs', 'pymclabs']",,17.42,365,279,166,0,22,5,22,365.0,941.0,90.0,2.6,236,67.66503 +455,ml-dl,https://github.com/tensorlayer/tensorlayer,,,,tensorlayer/tensorlayer,TensorLayer,7126,1612,462,"['tensorlayer', 'deep-learning', 'tensorflow', 'neural-network', 'reinforcement-learning', 'artificial-intelligence', 'gan', 'a3c', 'tensorflow-tutorials', 'dqn', 'object-detection', 'chatbot', 'python', 'tensorflow-tutorial', 'imagenet', 'google']",Python,http://tensorlayer.org,TensorLayer: Deep Learning and Reinforcement Learning Library for Scientists and Engineers ,tensorlayer,2022-12-17,2022-04-23,2016-06-07,340,20.906119027661358,132,4,5,"['columbiauniversity', 'imperialcollegelondon,pangaeadata', 'pekinguniversity', 'universityofedinburgh']",,0.04,2,0,80,8,0,13,13,2.0,2.0,90.0,1.0,52,42.39194 +165,nlp,https://github.com/doccano/doccano,,,,doccano/doccano,doccano,7043,1449,122,"['natural-language-processing', 'machine-learning', 'annotation-tool', 'python', 'datasets', 'dataset', 'data-labeling', 'text-annotation', 'nuxtjs', 'vue', 'vuejs', 'nuxt']",Python,https://doccano.herokuapp.com,doccano: Open source annotation tool for machine learning practitioners.,doccano,2022-12-17,2022-12-16,2018-05-09,240,29.258753709198814,98,3,5,"['classi', 'noom', 'statisticscanada']",,12.69,115,68,56,0,8,7,8,115.0,161.0,90.0,1.4,94,55.87857 +758,diffusion,https://github.com/divamgupta/diffusionbee-stable-diffusion-ui,,,,divamgupta/diffusionbee-stable-diffusion-ui,diffusionbee-stable-diffusion-ui,7014,271,71,"['electron-app', 'macos', 'stable-diffusion']",JavaScript,https://diffusionbee.com,diffusionbee-stable-diffusion-ui: Diffusion Bee is the easiest way to run Stable Diffusion locally on your M1 Mac. Comes with a one-click installer. No dependencies or technical knowledge needed.,divamgupta,2022-12-18,2022-11-23,2022-09-06,14,472.09615384615387,16,0,5,[],,3.87,338,129,3,1,13,57,13,338.0,773.0,90.0,2.3,0,29.38445 +868,ml-dl,https://github.com/hpcaitech/colossalai,,,,hpcaitech/colossalai,ColossalAI,7002,658,88,"['deep-learning', 'hpc', 'large-scale', 'data-parallelism', 'pipeline-parallelism', 'model-parallelism', 'ai', 'big-model', 'distributed-computing', 'inference', 'heterogeneous-training']",Python,https://www.colossalai.org/,ColossalAI: Colossal-AI: A Unified Deep Learning System for Big Model Era,hpcaitech,2022-12-18,2022-12-18,2021-10-28,59,117.53956834532374,82,2,5,"['hpc-aitech', 'hpcaitech']",,27.52,514,452,14,0,18,17,18,511.0,266.0,90.0,0.5,3,47.94364 +846,time-series,https://github.com/blue-yonder/tsfresh,,,,blue-yonder/tsfresh,tsfresh,6943,1093,159,"['data-science', 'feature-extraction', 'time-series']",Jupyter Notebook,http://tsfresh.readthedocs.io,tsfresh: Automatic extraction of relevant features from time series:,blue-yonder,2022-12-17,2022-11-18,2016-10-26,320,21.648552338530067,82,2,5,"['apple', 'universityofauckland']",,0.1,24,6,75,1,1,5,1,24.0,48.0,90.0,2.0,26,42.05837 +650,profiling,https://github.com/plasma-umass/scalene,1.0,,,plasma-umass/scalene,scalene,6939,232,69,"['python', 'profiling', 'performance-analysis', 'cpu-profiling', 'profiler', 'python-profilers', 'gpu-programming', 'scalene', 'profiles-memory', 'performance-cpu', 'cpu', 'memory-allocation', 'gpu', 'memory-consumption']",JavaScript,,"Scalene: a high-performance, high-precision CPU, GPU, and memory profiler for Python",plasma-umass,2022-12-18,2022-12-16,2019-12-17,156,44.23770491803279,34,2,5,"['umassamherst', 'universityofmassachusettsamherst']",,11.71,93,52,37,0,21,12,21,94.0,167.0,90.0,1.8,76,52.01886 +150,ml,https://github.com/catboost/catboost,,,,catboost/catboost,catboost,6846,1070,193,"['machine-learning', 'decision-trees', 'gradient-boosting', 'gbm', 'gbdt', 'python', 'r', 'kaggle', 'gpu-computing', 'catboost', 'tutorial', 'categorical-features', 'gpu', 'coreml', 'data-science', 'big-data', 'cuda', 'data-mining']",C,https://catboost.ai,"catboost: A fast, scalable, high performance Gradient Boosting on Decision Trees library, used for ranking, classification, regression and other machine learning tasks for Python, R, Java, C++. Supports computation on CPU and GPU.",catboost,2022-12-18,2022-12-18,2017-07-18,282,24.203030303030303,1038,2,5,"['yandex', 'yandexnv']",,117.42,146,58,66,0,5,16,5,146.0,263.0,90.0,1.8,276,66.9368 +171,ml-dl,https://github.com/facebookresearch/pytorch3d,,,,facebookresearch/pytorch3d,pytorch3d,6806,1032,140,[],Python,https://pytorch3d.org/,PyTorch3D is FAIR's library of reusable components for deep learning with 3D data,facebookresearch,2022-12-18,2022-12-16,2019-10-25,164,41.39183318853171,110,3,5,"['caltech', 'facebook', 'facebookairesearch']",,6.92,88,37,38,0,3,4,3,88.0,123.0,90.0,1.4,383,54.79397 +286,data,https://github.com/simonw/datasette,1.0,,,simonw/datasette,datasette,6758,474,99,"['sqlite', 'python', 'datasets', 'json', 'docker', 'datasette', 'automatic-api', 'asgi', 'csv', 'datasette-io', 'sql']",Python,https://datasette.io,datasette: An open source multi-tool for exploring and publishing data,simonw,2022-12-18,2022-12-18,2017-10-23,269,25.12267657992565,72,2,5,"['datasette', 'latacora']",,8.62,178,108,63,0,19,25,19,178.0,853.0,90.0,4.8,557,62.26816 +65,ml,https://github.com/pycaret/pycaret,,,,pycaret/pycaret,pycaret,6669,1522,125,"['data-science', 'citizen-data-scientists', 'python', 'machine-learning', 'pycaret', 'ml', 'gpu', 'time-series', 'regression', 'classification', 'anomaly-detection', 'nlp', 'clustering']",Jupyter Notebook,https://www.pycaret.org,"pycaret: An open-source, low-code machine learning library in Python",pycaret,2022-12-18,2022-12-18,2019-11-23,160,41.606951871657756,107,4,5,"['konfio', 'o9solutions', 'pycaret', 'softwareengineeranyscale']",,19.88,307,228,37,0,5,8,5,307.0,380.0,90.0,1.2,194,58.63736 +131,ml,https://github.com/automl/auto-sklearn,,,,automl/auto-sklearn,auto-sklearn,6666,1208,213,"['automl', 'scikit-learn', 'automated-machine-learning', 'hyperparameter-optimization', 'hyperparameter-tuning', 'hyperparameter-search', 'bayesian-optimization', 'metalearning', 'meta-learning', 'smac']",Python,https://automl.github.io/auto-sklearn,auto-sklearn: Automated Machine Learning with scikit-learn,automl,2022-12-18,2022-12-07,2015-07-02,389,17.11111111111111,88,5,5,"['albert-ludwigs-universitätfreiburg', 'automl.org', 'awsberlin', 'centerforarmyanalysisandsimulation', 'universityoffreiburg']",,2.65,71,34,91,0,5,5,5,71.0,101.0,90.0,1.4,388,57.50293 +197,nlp,https://github.com/eleutherai/gpt-neo,,,,eleutherai/gpt-neo,gpt-neo,6663,591,161,"['language-model', 'transformers', 'gpt', 'gpt-2', 'gpt-3']",Python,https://www.eleuther.ai,gpt-neo: An implementation of model parallel GPT-2 and GPT-3-style models using the mesh-tensorflow library.,eleutherai,2022-12-18,2022-02-25,2020-07-05,128,51.99665551839465,29,1,5,['boozallenhamilton'],,0.04,0,0,30,10,0,2,2,0.0,0.0,90.0,0.0,14,22.2216 +824,study,https://github.com/firmai/industry-machine-learning,,,,firmai/industry-machine-learning,industry-machine-learning,6654,1119,392,"['machine-learning', 'jupyter-notebook', 'datascience', 'example', 'python', 'practical-machine-learning', 'data-science', 'firmai']",Jupyter Notebook,https://www.linkedin.com/company/firmai,industry-machine-learning: A curated list of applied machine learning and data science notebooks and libraries across different industries (by @firmai),firmai,2022-12-18,2021-12-18,2019-05-03,189,35.126696832579185,6,3,5,"['alanturinginstitute,firmai', 'tilde-lab', 'universityofutah']",,0.0,0,0,44,12,0,0,0,0.0,0.0,90.0,0.0,0,15.22321 +532,util,https://github.com/facebookresearch/hydra,,,,facebookresearch/hydra,hydra,6600,527,83,[],Python,https://hydra.cc,Hydra is a framework for elegantly configuring complex applications,facebookresearch,2022-12-18,2022-12-17,2019-06-12,183,35.925349922239505,105,2,5,"['facebook', 'facebookairesearch']",,4.27,147,91,43,0,3,6,3,147.0,233.0,90.0,1.6,47,50.43036 +67,web,https://github.com/pyeve/eve,,,,pyeve/eve,eve,6567,752,229,"['python', 'rest', 'flask', 'mongodb']",Python,https://python-eve.org,eve: REST API framework designed for human beings,pyeve,2022-12-18,2022-11-10,2012-10-22,530,12.39056603773585,211,3,5,"['cir2000', 'denoland', 'google']",,1.06,16,9,124,1,0,5,5,16.0,28.0,90.0,1.8,34,50.38291 +389,data,https://github.com/yzhao062/pyod,,,,yzhao062/pyod,pyod,6557,1217,151,"['outlier-detection', 'anomaly-detection', 'outlier-ensembles', 'outliers', 'anomaly', 'python', 'machine-learning', 'data-mining', 'unsupervised-learning', 'python2', 'python3', 'fraud-detection', 'autoencoder', 'neural-networks', 'deep-learning', 'data-science', 'data-analysis', 'novelty-detection', 'out-of-distribution-detection']",Python,http://pyod.readthedocs.io,pyod: A Comprehensive and Scalable Python Library for Outlier Detection (Anomaly Detection),yzhao062,2022-12-18,2022-12-16,2017-10-03,271,24.119285338938518,46,3,5,"['carnegiemellonuniversity', 'erasmusmedicalcentre', 'royalbankofcanada(rbc)']",,3.69,28,13,63,0,12,7,12,28.0,59.0,90.0,2.1,66,51.33773 +133,ml,https://github.com/hyperopt/hyperopt,,,,hyperopt/hyperopt,hyperopt,6511,1004,126,[],Python,http://hyperopt.github.io/hyperopt,hyperopt: Distributed Asynchronous Hyperparameter Optimization in Python,hyperopt,2022-12-16,2021-11-29,2011-09-06,588,11.057011159631246,93,3,5,"['contxts-io', 'databricks', 'kindred.ai']",,0.0,14,3,137,13,0,1,1,14.0,28.0,90.0,2.0,135,42.1784 +716,util,https://github.com/jazzband/pip-tools,,,,jazzband/pip-tools,pip-tools,6473,554,105,"['python', 'packaging', 'pip', 'pip-tools', 'pip-compile', 'setuptools', 'requirements', 'lockfile', 'hashes']",Python,https://pip-tools.rtfd.io,pip-tools: A set of tools to keep your pinned Python dependencies fresh.,jazzband,2022-12-17,2022-12-17,2012-09-10,536,12.076492537313433,181,2,5,"['pioneervalleybooks', 'ubisoftinc']",,2.67,179,132,125,0,12,11,12,179.0,312.0,90.0,1.7,2531,63.55318 +215,debug,https://github.com/gruns/icecream,,,,gruns/icecream,icecream,6468,134,50,"['python', 'python3', 'library', 'inspects', 'debug', 'debugging', 'debugging-tool', 'print']",Python,,icecream: 🍦 Never use print() to debug again.,gruns,2022-12-18,2022-12-04,2018-02-13,252,25.579661016949153,21,3,5,"['fixpoint', 'https://arc.io,https://pep.dev', 'pku-epic']",,0.85,12,5,59,0,2,1,2,12.0,26.0,90.0,2.2,34,42.71229 +82,data,https://github.com/sqlalchemy/sqlalchemy,,,,sqlalchemy/sqlalchemy,sqlalchemy,6443,1025,94,"['sqlalchemy', 'sql', 'python']",Python,https://www.sqlalchemy.org,sqlalchemy: The Database Toolkit for Python,sqlalchemy,2022-12-17,2022-12-18,2018-11-27,211,30.412002697235334,583,2,5,"['redhat', 'self-employed']",,13.65,304,231,49,0,21,66,21,304.0,1209.0,90.0,4.0,10439,73.80535 +141,ml,https://github.com/featurelabs/featuretools,1.0,,,featurelabs/featuretools,featuretools,6424,835,158,"['feature-engineering', 'machine-learning', 'data-science', 'automated-machine-learning', 'automl', 'python', 'scikit-learn', 'automated-feature-engineering']",Python,https://www.featuretools.com,featuretools: An open source python library for automated feature engineering,featurelabs,2022-12-18,2022-12-17,2017-09-08,275,23.323651452282157,68,1,5,['alteryx'],,6.17,161,125,64,0,25,28,25,161.0,189.0,90.0,1.2,31,50.92099 +288,testing,https://github.com/hypothesisworks/hypothesis,1.0,,,hypothesisworks/hypothesis,hypothesis,6401,539,69,"['python', 'testing', 'fuzzing', 'property-based-testing']",Python,https://hypothesis.works,"Hypothesis is a powerful, flexible, and easy to use library for property-based testing.",hypothesisworks,2022-12-18,2022-12-11,2013-03-10,510,12.547465695883506,297,4,5,"['anthropic', 'pyupio', 'quansight', 'weomecollection']",,13.75,88,66,119,0,95,135,95,88.0,128.0,90.0,1.5,12462,72.64569 +153,util,https://github.com/marshmallow-code/marshmallow,,,,marshmallow-code/marshmallow,marshmallow,6358,621,82,"['serialization', 'deserialization', 'validation', 'python', 'marshalling', 'python-3', 'serde', 'schema', 'hacktoberfest']",Python,https://marshmallow.readthedocs.io/,marshmallow: A lightweight library for converting complex objects to and from simple Python datatypes.,marshmallow-code,2022-12-18,2022-12-11,2013-11-10,475,13.38123872519543,203,1,5,['nobatek'],,1.79,54,36,111,0,0,19,19,54.0,52.0,90.0,1.0,2390,58.91292 +230,template,https://github.com/drivendata/cookiecutter-data-science,1.0,,,drivendata/cookiecutter-data-science,cookiecutter-data-science,6335,2015,111,"['cookiecutter-data-science', 'cookiecutter', 'cookiecutter-template', 'data-science', 'machine-learning', 'ai']",Python,http://drivendata.github.io/cookiecutter-data-science/,"cookiecutter-data-science: A logical, reasonably standardized, but flexible project structure for doing and sharing data science work.",drivendata,2022-12-17,2022-03-11,2015-10-30,372,17.009973149213657,45,3,5,"['contentful', 'drivendata', 'unseenbio']",,0.04,17,7,87,9,0,0,0,17.0,10.0,90.0,0.6,28,34.24438 +602,testing,https://github.com/newsapps/beeswithmachineguns,,,,newsapps/beeswithmachineguns,beeswithmachineguns,6267,663,227,[],Python,http://apps.chicagotribune.com/,beeswithmachineguns: A utility for arming (creating) many bees (micro EC2 instances) to attack (load test) targets (web applications).,newsapps,2022-12-17,2017-12-20,2010-06-29,650,9.628841088674276,49,5,5,"['br', 'datascopeanalytics', 'facebook', 'fivethirtyeight', 'https://github.com/verizondigital/']",,0.0,2,0,152,61,0,0,0,2.0,2.0,90.0,1.0,64,32.42307 +800,web,https://github.com/pallets/werkzeug,,,,pallets/werkzeug,werkzeug,6234,1663,227,"['python', 'wsgi', 'werkzeug', 'http', 'pallets']",Python,https://werkzeug.palletsprojects.com,werkzeug: The comprehensive WSGI web application library.,pallets,2022-12-17,2022-11-01,2010-10-18,635,9.817322834645669,463,3,5,"['getsentry', 'sentry', 'zalandose']",,2.62,50,34,148,2,7,7,7,50.0,43.0,90.0,0.9,9133,62.98156 +356,ml-ops,https://github.com/netflix/metaflow,,,,netflix/metaflow,metaflow,6219,583,239,"['machine-learning', 'data-science', 'productivity', 'model-management', 'ai', 'ml', 'ml-platform', 'ml-infrastructure', 'python', 'r', 'rstats', 'reproducible-research', 'r-package', 'mlops', 'datascience', 'cli', 'high-performance-computing', 'kubernetes']",Python,https://metaflow.org,metaflow: :rocket: Build and manage real-life data science projects with ease!,netflix,2022-12-18,2022-12-14,2019-09-17,169,36.613120269133724,62,2,5,"['missingexponent', 'outerbounds']",,3.27,106,65,40,0,30,24,30,106.0,147.0,90.0,1.4,49,51.14974 +382,ml-ops,https://github.com/deepset-ai/haystack,,,,deepset-ai/haystack,haystack,6210,964,87,"['nlp', 'question-answering', 'bert', 'transfer-learning', 'language-model', 'pytorch', 'semantic-search', 'neural-search', 'squad', 'elasticsearch', 'dpr', 'information-retrieval', 'summarization', 'search-engine', 'transformers', 'natural-language-processing', 'machine-learning', 'ai', 'python']",Python,https://deepset.ai/haystack,"haystack: :mag: Haystack is an open source NLP framework that leverages pre-trained Transformer models. It enables developers to quickly implement production-ready semantic search, question answering, summarization and document ranking for a wide range of NLP applications.",deepset-ai,2022-12-18,2022-12-16,2019-11-14,161,38.43501326259947,149,2,5,"['deepset', 'deepset-ai']",,14.31,617,399,38,0,18,12,18,617.0,895.0,90.0,1.5,57,57.8656 +459,ml-ops,https://github.com/dbt-labs/dbt-core,,,,dbt-labs/dbt-core,dbt-core,6207,1095,131,"['dbt-viewpoint', 'slack', 'pypa', 'data-modeling', 'business-intelligence', 'analytics', 'elt']",Python,https://getdbt.com,dbt-core: dbt enables data analysts and engineers to transform their data using the same practices that software engineers use to build applications.,dbt-labs,2022-12-18,2022-12-15,2016-03-10,353,17.555151515151515,252,2,5,"['dbt-labs', 'fishtownanalytics']",,8.29,890,615,82,0,40,21,40,889.0,1514.0,90.0,1.7,82,62.45905 +20,typing,https://github.com/facebook/pyre-check,,,,facebook/pyre-check,pyre-check,6164,407,107,"['python', 'typechecker', 'type-check', 'static-analysis', 'ocaml', 'code-quality', 'abstract-interpretation', 'security', 'program-analysis', 'taint-analysis', 'control-flow-analysis']",OCaml,https://pyre-check.org/,pyre-check: Performant type-checking for python.,facebook,2022-12-18,2022-12-17,2017-11-10,266,23.135656836461127,231,2,5,"['facebook', 'metaplatforms']",,47.44,46,22,62,0,3,16,3,46.0,51.0,90.0,1.1,322,58.0148 +556,ml-dl,https://github.com/arogozhnikov/einops,,,,arogozhnikov/einops,einops,6140,269,62,"['deep-learning', 'pytorch', 'tensorflow', 'numpy', 'gluon', 'cupy', 'chainer', 'keras', 'tensor', 'jax']",Python,https://einops.rocks,"einops: Deep learning operations reinvented (for pytorch, tensorflow, jax and others)",arogozhnikov,2022-12-18,2022-12-04,2018-09-22,221,27.746933505487412,22,5,5,"['aperturescience', 'idea', 'princetonuniversity', 'quansight', 'sunyat-senuniversity']",,2.52,41,26,52,0,4,2,4,41.0,42.0,90.0,1.0,8,43.94634 +681,ml,https://github.com/hips/autograd,,,,hips/autograd,autograd,6109,843,216,[],Python,,autograd: Efficiently computes derivatives of numpy code.,hips,2022-12-17,2022-09-29,2014-11-24,421,14.510688836104514,52,5,5,"['google', 'googlebrain', 'universityofamsterdam', 'universityoftoronto', 'visa']",,0.08,7,4,98,3,0,0,0,7.0,15.0,90.0,2.1,160,44.22134 +121,ml-ops,https://github.com/dagster-io/dagster,,,,dagster-io/dagster,dagster,6053,759,87,"['data-pipelines', 'dagster', 'workflow', 'data-science', 'workflow-automation', 'python', 'scheduler', 'data-orchestrator', 'etl', 'analytics', 'data-engineering', 'mlops', 'orchestration', 'data-integration', 'metadata']",Python,https://dagster.io,"dagster: An orchestration platform for the development, production, and observation of data assets.",dagster-io,2022-12-18,2022-12-18,2018-04-30,242,25.012396694214875,256,1,5,['elementl'],,57.9,1677,1229,56,0,59,139,59,1677.0,3154.0,90.0,1.9,2733,70.22045 +73,gis,https://github.com/python-visualization/folium,,,,python-visualization/folium,folium,6023,2154,166,"['closember', 'data-science', 'data-visualization', 'javascript', 'maps', 'python']",Python,https://python-visualization.github.io/folium/,folium: Python Data. Leaflet.js Maps. ,python-visualization,2022-12-18,2022-12-12,2013-05-09,501,12.00825975505554,147,3,5,"['datartibus', 'jgardinerconsultingltd.', 'stripe']",,1.81,309,276,117,0,2,2,2,309.0,344.0,90.0,1.1,671,58.69721 +879,time-series,https://github.com/sktime/sktime,1.0,,,sktime/sktime,sktime,5980,984,110,"['time-series', 'machine-learning', 'scikit-learn', 'time-series-classification', 'time-series-regression', 'forecasting', 'time-series-analysis', 'data-science', 'data-mining']",Python,https://sktime.org,sktime: A unified framework for machine learning with time series,sktime,2022-12-17,2022-12-18,2018-11-06,214,27.83244680851064,206,4,5,"['ucl', 'uclalan-turing-instituteesrc-cdrc', 'universitycollegelondon', 'universityofeastanglia']",,17.92,655,376,50,0,16,9,16,656.0,1884.0,90.0,2.9,51,63.77311 +410,web,https://github.com/encode/uvicorn,,,,encode/uvicorn,uvicorn,5962,522,87,"['python', 'asyncio', 'asgi', 'http', 'http-server']",Python,https://www.uvicorn.org/,"uvicorn: An ASGI web server, for Python. 🦄",encode,2022-12-18,2022-12-12,2017-05-31,289,20.578895463510847,149,2,5,"['encode', 'encodeoss']",,3.92,212,178,68,0,14,26,14,212.0,395.0,90.0,1.9,3899,63.79482 +44,ml,https://github.com/lmcinnes/umap,,,,lmcinnes/umap,umap,5961,694,124,"['umap', 'dimensionality-reduction', 'visualization', 'machine-learning', 'topological-data-analysis']",Python,,umap: Uniform Manifold Approximation and Projection,lmcinnes,2022-12-16,2022-11-11,2017-07-02,285,20.905310621242485,109,4,5,"['anaconda', 'contextlabcosanlab', 'microsoft', 'tutteinstituteformathematicsandcomputing']",,1.87,34,11,67,1,1,5,1,34.0,42.0,90.0,1.2,45,46.94678 +599,gis,https://github.com/domlysz/blendergis,,,,domlysz/blendergis,BlenderGIS,5875,1093,244,"['blender', 'addon', 'geospatial', 'gis', 'shapefile', 'delaunay-triangulation', 'raster', 'openstreetmap', 'python', 'dem', '3dgis', 'map', 'geodata', 'georeferencing', 'importexport', '3d', 'terrain-model', 'basemap', '3d-map']",Python,,BlenderGIS: Blender addons to make the bridge between Blender and geographic data,domlysz,2022-12-18,2022-05-31,2014-05-08,449,13.068001271051795,15,1,5,['alphagov'],,0.21,28,4,105,7,2,2,2,28.0,27.0,90.0,1.0,61,33.46287 +537,nlp,https://github.com/espnet/espnet,,,,espnet/espnet,espnet,5832,1782,184,"['deep-learning', 'end-to-end', 'chainer', 'pytorch', 'kaldi', 'speech-recognition', 'speech-synthesis', 'speech-translation', 'machine-translation', 'voice-conversion', 'speech-enhancement', 'speech-separation', 'singing-voice-synthesis', 'speaker-diarization', 'spoken-language-understanding']",Python,https://espnet.github.io/espnet/,espnet: End-to-End Speech Processing Toolkit,espnet,2022-12-18,2022-12-18,2017-12-13,261,22.283842794759824,312,2,5,"['fairatmetaai', 'nagoyauniversity']",,35.96,258,151,61,0,7,9,7,258.0,530.0,90.0,2.1,6280,69.03597 +313,util,https://github.com/pypa/pipx,,,,pypa/pipx,pipx,5810,265,65,"['pip', 'cli', 'pypi', 'venv', 'hacktoberfest', 'python']",Python,https://pypa.github.io/pipx/,pipx: Install and Run Python Applications in Isolated Environments,pypa,2022-12-18,2022-12-14,2018-10-06,219,26.495114006514658,82,2,5,"['astronomer', 'bloomberglp']",,1.12,51,21,51,0,4,13,4,51.0,95.0,90.0,1.9,107,49.219 +777,util,https://github.com/google/latexify_py,,,,google/latexify_py,latexify_py,5807,316,50,[],Python,,latexify_py: A library to generate LaTeX expression from Python code.,google,2022-12-18,2022-12-15,2020-07-25,125,46.35005701254276,24,2,5,"['google', 'inspired-co']",,1.69,146,133,29,0,3,3,3,146.0,389.0,90.0,2.7,4,42.05166 +345,jupyter,https://github.com/mwouts/jupytext,,,,mwouts/jupytext,jupytext,5713,363,70,"['jupyter-notebook', 'jupyterlab-extension', 'version-control', 'knitr', 'rstudio', 'markdown', 'rmarkdown', 'python', 'hydrogen', 'notebooks', 'jupyterlab']",Python,https://jupytext.readthedocs.io,"jupytext: Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts",mwouts,2022-12-18,2022-12-11,2018-06-15,235,24.266383495145632,74,3,5,"['facebookresearch', 'imperialcollegelondon', 'ucberkeley']",,0.9,40,18,55,0,10,29,10,40.0,92.0,90.0,2.3,113,52.13273 +69,util,https://github.com/pygithub/pygithub,,,,pygithub/pygithub,PyGithub,5678,1566,113,"['pygithub', 'python', 'github', 'github-api']",Python,https://pygithub.readthedocs.io/,PyGithub: Typed interactions with the GitHub API v3,pygithub,2022-12-18,2022-12-15,2012-02-25,564,10.062278481012658,293,3,5,"['authzed', 'suse', 'zendesk']",,0.31,128,53,132,0,2,9,2,128.0,162.0,90.0,1.3,897,58.52648 +730,ml,https://github.com/cleverhans-lab/cleverhans,,,,cleverhans-lab/cleverhans,cleverhans,5662,1376,190,"['machine-learning', 'security', 'benchmarking']",Jupyter Notebook,,"cleverhans: An adversarial example library for constructing attacks, building defenses, and benchmarking both",cleverhans-lab,2022-12-13,2021-09-23,2016-09-15,326,17.337707786526686,129,1,5,['universityoftoronto'],,0.0,2,0,76,15,0,1,1,2.0,0.0,90.0,0.0,5,25.91041 +106,ml,https://github.com/nicolashug/surprise,,,,nicolashug/surprise,Surprise,5637,963,149,"['recommender', 'systems', 'recommendation', 'svd', 'matrix', 'factorization', 'machine-learning']",Python,http://surpriselib.com,Surprise: A Python scikit for building and analyzing recommender systems,nicolashug,2022-12-18,2022-10-31,2016-10-23,321,17.552935943060497,44,2,5,"['centralesupelec', 'hirosystems']",,0.52,23,12,75,2,0,2,2,23.0,24.0,90.0,1.0,99,41.67353 +68,gamedev,https://github.com/pygame/pygame,1.0,,,pygame/pygame,pygame,5546,2435,160,"['python', 'pygame', 'sdl2', 'sdl', 'game-development', 'gamedev', 'game-dev']",C,https://www.pygame.org,"pygame: 🐍🎮 pygame (the library) is a Free and Open Source python programming language library for making multimedia applications like games built on top of the excellent SDL library. C, Python, Native, OpenGL.",pygame,2022-12-18,2022-12-18,2017-03-26,299,18.5396370582617,263,0,5,[],,13.81,342,231,70,0,8,14,8,342.0,571.0,90.0,1.7,806,58.38147 +773,ml-dl,https://github.com/sanster/lama-cleaner,,,,sanster/lama-cleaner,lama-cleaner,5506,445,47,"['inpainting', 'pytorch', 'lama', 'latent-diffusion', 'mat', 'zits', 'stable-diffusion']",Python,,"lama-cleaner: Image inpainting tool powered by SOTA AI Model. Remove any unwanted object, defect, people from your pictures or erase and replace(powered by stable diffusion) any thing on your pictures.",sanster,2022-12-18,2022-12-17,2021-11-15,57,96.59649122807018,11,1,5,['musixmatchdev'],,6.69,105,84,13,0,33,33,33,105.0,214.0,90.0,2.0,7,40.77455 +643,util,https://github.com/theskumar/python-dotenv,,,,theskumar/python-dotenv,python-dotenv,5495,353,33,"['python', 'devops-tools', 'dotenv', '12-factor-app', 'configuration', 'env', 'environment-variables']",Python,https://saurabh-kumar.com/python-dotenv/,python-dotenv: Reads key-value pairs from a .env file and can set them as environment variables. It helps in developing applications following the 12-factor principles.,theskumar,2022-12-18,2022-11-25,2014-09-06,432,12.711500330469267,85,4,5,"['codiumteam', 'docker', 'fueled', 'latacora']",,0.69,29,14,101,1,1,5,1,29.0,23.0,90.0,0.8,3185,53.15469 +682,diffusion,https://github.com/compvis/latent-diffusion,,,,compvis/latent-diffusion,latent-diffusion,5488,716,71,[],Jupyter Notebook,,latent-diffusion: High-Resolution Image Synthesis with Latent Diffusion Models,compvis,2022-12-18,2022-07-26,2021-12-20,52,105.53846153846153,5,2,5,"['huggingface', 'runwayml']",,0.52,80,14,12,5,0,0,0,80.0,126.0,90.0,1.6,16,26.98939 +439,perf,https://github.com/mher/flower,,,,mher/flower,flower,5485,979,144,"['celery', 'task-queue', 'monitoring', 'administration', 'workers', 'rabbitmq', 'redis', 'python', 'asynchronous']",Python,https://flower.readthedocs.io,flower: Real-time monitor and web admin for Celery distributed task queue,mher,2022-12-17,2022-11-14,2012-07-08,545,10.06158280922432,196,2,5,"['robinhoodmarkets', 'zipsale']",,0.27,31,12,127,1,0,2,2,31.0,41.0,90.0,1.3,364,50.69527 +723,ml,https://github.com/py-why/dowhy,,,,py-why/dowhy,dowhy,5478,771,136,"['causal-inference', 'machine-learning', 'graphical-models', 'bayesian-networks', 'data-science', 'python3', 'causality', 'causal-models', 'treatment-effects', 'do-calculus', 'causal-machine-learning']",Python,https://www.pywhy.org/dowhy,"DoWhy is a Python library for causal inference that supports explicit modeling and testing of causal assumptions. DoWhy is based on a unified language for causal inference, combining causal graphical models and potential outcomes frameworks. ",py-why,2022-12-18,2022-12-16,2018-05-31,237,23.05832832230908,64,2,5,"['amazon', 'barclaysib;columbia']",,5.81,191,159,55,0,5,3,5,191.0,321.0,90.0,1.7,5,47.82466 +193,util,https://github.com/pycqa/isort,,,,pycqa/isort,isort,5429,502,42,"['auto-formatter', 'isort', 'sorting-imports', 'python-utility', 'cli', 'linter', 'cleaner', 'formatter', 'python', 'python3', 'hacktoberfest']",Python,https://pycqa.github.io/isort/,isort: A Python utility / library to sort imports.,pycqa,2022-12-18,2022-12-17,2013-09-02,485,11.19381443298969,271,4,5,"['google', 'pioneervalleybooks', 'stripe', 'swisscom']",,1.6,124,92,113,0,5,15,5,124.0,106.0,90.0,0.9,9130,65.36624 +96,data,https://github.com/vi3k6i5/flashtext,,,,vi3k6i5/flashtext,flashtext,5326,597,139,"['search-in-text', 'keyword-extraction', 'nlp', 'word2vec', 'data-extraction']",Python,,flashtext: Extract Keywords from sentence or Replace keywords in sentences.,vi3k6i5,2022-12-18,2020-05-03,2017-08-15,278,19.09938524590164,7,1,5,['meta'],,0.0,4,0,65,32,0,0,0,4.0,5.0,90.0,1.2,5,18.51551 +579,ml,https://github.com/probml/pyprobml,,,,probml/pyprobml,pyprobml,5282,1249,173,"['jupyter-notebooks', 'machine-learning', 'colab', 'pml', 'probabilistic-programming', 'jax', 'tensorflow', 'pytorch', 'pymc3', 'numpyro', 'flax', 'pyro', 'blackjax']",Jupyter Notebook,,"pyprobml: Python code for ""Probabilistic Machine learning"" book by Kevin Murphy",probml,2022-12-18,2022-12-17,2016-08-17,330,15.971490280777537,66,5,5,"['collaborative,learning,andadaptiverobots(clear)', 'google', 'iitgandhinagar', 'indianinstituteofscience(iisc)', 'nvidia']",,10.58,7,6,77,0,1,0,1,7.0,3.0,90.0,0.4,232,50.48374 +278,data,https://github.com/airbnb/knowledge-repo,,,,airbnb/knowledge-repo,knowledge-repo,5238,704,180,"['data', 'data-science', 'knowledge', 'data-analysis']",Python,,knowledge-repo: A next-generation curated knowledge sharing platform for data scientists and other technical professions.,airbnb,2022-12-18,2022-12-16,2016-08-17,330,15.838444924406048,69,2,5,"['airbnb', 'datascientistatnetflix']",,7.25,17,13,77,0,1,5,1,17.0,9.0,90.0,0.5,16,43.26415 +283,util,https://github.com/sdispater/pendulum,,,,sdispater/pendulum,pendulum,5226,312,63,"['python', 'datetime', 'date', 'time', 'python3', 'timezones']",Python,https://pendulum.eustace.io,pendulum: Python datetimes made easy,sdispater,2022-12-18,2022-11-24,2016-06-27,338,15.461538461538462,87,1,5,['stxnext'],,0.75,39,15,79,1,1,8,1,39.0,28.0,90.0,0.7,60,41.094 +632,util,https://github.com/pyca/cryptography,,,,pyca/cryptography,cryptography,5220,1103,119,"['python', 'cryptography']",Python,https://cryptography.io,cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.,pyca,2022-12-18,2022-12-17,2013-08-07,488,10.681087401344636,275,1,5,['purple-dot'],,14.67,380,359,114,0,0,11,11,380.0,341.0,90.0,0.9,11167,67.29385 +538,nlp,https://github.com/nvidia/nemo,,,,nvidia/nemo,NeMo,5219,1294,138,"['deep-learning', 'speech-recognition', 'nlp', 'nlp-machine-learning', 'neural-network', 'machine-translation', 'speech-synthesis', 'speech-to-text', 'text-to-speech', 'nmt', 'language-model', 'speaker-diarization', 'speaker-recognition', 'text-normalization', 'asr', 'tts']",Python,https://nvidia.github.io/NeMo/,NeMo: a toolkit for conversational AI,nvidia,2022-12-18,2022-12-17,2019-08-05,176,29.65340909090909,193,2,5,"['nvidia', 'nyu,nvidia']",,18.9,833,753,41,0,14,12,14,833.0,1535.0,90.0,1.8,885,64.79671 +511,ml,https://github.com/google/automl,,,,google/automl,automl,5211,1382,150,"['automl', 'efficientdet', 'object-detection', 'efficientnet', 'efficientnetv2']",Jupyter Notebook,,automl: Google Brain AutoML,google,2022-12-16,2022-10-09,2020-03-12,144,36.044466403162055,37,2,5,"['amd', 'google']",,0.48,13,3,34,2,0,1,1,13.0,4.0,90.0,0.3,959,39.5766 +434,util,https://github.com/scikit-image/scikit-image,,,,scikit-image/scikit-image,scikit-image,5172,2076,187,"['image-processing', 'python', 'computer-vision', 'hacktoberfest', 'closember']",Python,https://scikit-image.org,scikit-image: Image processing in Python,scikit-image,2022-12-18,2022-12-17,2011-07-07,597,8.655032273487928,586,5,5,"['biomedicinediscoveryinstitute,monashuniversity', 'microsoft', 'mongodb', 'nvidia', 'universityofcalifornia,berkeley']",,5.21,376,226,139,0,2,8,2,377.0,566.0,90.0,1.5,779,66.90939 +3,ml,https://github.com/awslabs/autogluon,,,,awslabs/autogluon,autogluon,5160,674,94,"['automl', 'machine-learning', 'data-science', 'deep-learning', 'ensemble-learning', 'image-classification', 'computer-vision', 'natural-language-processing', 'structured-data', 'object-detection', 'gluon', 'transfer-learning', 'pytorch', 'automated-machine-learning', 'scikit-learn', 'autogluon', 'tabular-data', 'hyperparameter-optimization', 'time-series', 'forecasting']",Python,https://auto.gluon.ai/,"AutoGluon: AutoML for Image, Text, Time Series, and Tabular Data",awslabs,2022-12-18,2022-12-17,2019-07-29,177,29.152542372881356,96,4,5,"['amazon', 'amazonai', 'amazonwebservices', 'awsai']",,12.71,481,353,41,0,10,7,10,481.0,972.0,90.0,2.0,56,58.67239 +880,time-series,https://github.com/unit8co/darts,,,,unit8co/darts,darts,5138,557,41,"['python', 'time-series', 'forecasting', 'machine-learning', 'deep-learning']",Python,https://unit8co.github.io/darts/,darts: A python library for easy manipulation and forecasting of time series.,unit8co,2022-12-17,2022-12-16,2018-09-13,222,23.084724005134788,73,2,5,"['unit8co', 'unit8sa']",,4.38,278,166,52,0,10,8,10,278.0,419.0,90.0,1.5,13,50.20865 +546,ml-dl,https://github.com/facebookresearch/mmf,,,,facebookresearch/mmf,mmf,5093,899,117,"['pytorch', 'vqa', 'pretrained-models', 'multimodal', 'deep-learning', 'captioning', 'dialog', 'textvqa', 'hateful-memes', 'multi-tasking']",Python,https://mmf.sh/,mmf: A modular framework for vision & language multimodal research from Facebook AI Research (FAIR),facebookresearch,2022-12-18,2022-12-10,2018-06-27,233,21.79156479217604,107,3,5,"['metaai', 'researchhuggingface,contributorjquery,pastfacebookresearch', 'uwstudent']",,0.83,18,2,54,0,0,1,1,18.0,12.0,90.0,0.7,3572,51.54595 +352,ml-ops,https://github.com/activeloopai/hub,,,,activeloopai/hub,deeplake,5093,412,66,"['datasets', 'deep-learning', 'machine-learning', 'data-science', 'pytorch', 'tensorflow', 'data-version-control', 'python', 'ai', 'ml', 'mlops', 'computer-vision', 'cv', 'data-processing', 'image-processing', 'data-centric', 'jupyter-notebook', 'datalake', 'lakehouse']",Python,https://activeloop.ai,"deeplake: Data Lake for Deep Learning. Build, manage, query, version, & visualize datasets. Stream data real-time to PyTorch/TensorFlow. https://activeloop.ai ",activeloopai,2022-12-18,2022-12-16,2019-08-09,175,29.031758957654723,109,1,5,['activeloop'],,23.83,202,178,41,0,47,30,47,202.0,254.0,90.0,1.3,242,57.54266 +161,ml,https://github.com/wandb/client,,,,wandb/client,wandb,5078,387,38,"['machine-learning', 'experiment-track', 'deep-learning', 'keras', 'tensorflow', 'pytorch', 'hyperparameter-search', 'reinforcement-learning', 'mlops', 'data-science', 'collaboration', 'hyperparameter-optimization', 'reproducibility', 'hyperparameter-tuning', 'data-versioning', 'model-versioning', 'ml-platform']",Python,https://wandb.ai,wandb: 🔥 A tool for visualizing and tracking your machine learning experiments. This repo contains the CLI and Python API.,wandb,2022-12-18,2022-12-17,2017-03-24,299,16.958969465648856,135,2,5,"['crowdflower.com', 'weightsandbiases']",,11.27,692,325,70,0,26,21,26,692.0,1398.0,90.0,2.0,363,63.31971 +301,data,https://github.com/kaggle/kaggle-api,,,,kaggle/kaggle-api,kaggle-api,5073,978,188,[],Python,,kaggle-api: Official Kaggle API,kaggle,2022-12-18,2021-03-15,2018-01-25,255,19.849636668529904,36,1,5,['google'],,0.0,37,7,60,21,0,0,0,37.0,41.0,90.0,1.1,27,28.9492 +81,util,https://github.com/sphinx-doc/sphinx,,,,sphinx-doc/sphinx,sphinx,5056,1812,140,"['python', 'documentation', 'documentation-tool', 'sphinx', 'markdown', 'restructuredtext']",Python,https://www.sphinx-doc.org/,sphinx: The Sphinx documentation generator,sphinx-doc,2022-12-18,2022-12-16,2015-01-02,415,12.170563961485557,759,3,5,"['beproud', 'fzjülich', 'timeintermedia(timedia)']",,13.21,1262,297,97,0,15,31,15,1262.0,578.0,90.0,0.5,18396,74.03639 +279,jupyter,https://github.com/nteract/papermill,,,,nteract/papermill,papermill,5037,379,91,"['jupyter', 'notebooks', 'notebook-generator', 'nteract', 'publishing', 'pipeline', 'notebook', 'python', 'r', 'julia', 'scala']",Python,http://papermill.readthedocs.io/en/latest/,"papermill: 📚 Parameterize, execute, and analyze notebooks",nteract,2022-12-17,2022-10-18,2017-07-06,284,17.700301204819276,108,3,5,"['netflix', 'noteable-io', 'willingconsulting']",,0.77,36,19,66,2,0,14,14,36.0,56.0,90.0,1.6,106,50.18257 +214,nlp,https://github.com/speechbrain/speechbrain,,,,speechbrain/speechbrain,speechbrain,5021,974,110,"['speech-recognition', 'speech-toolkit', 'speaker-recognition', 'speech-to-text', 'speech-enhancement', 'speech-separation', 'audio', 'audio-processing', 'speech-processing', 'speechrecognition', 'asr', 'voice-recognition', 'spoken-language-understanding', 'speaker-diarization', 'speaker-verification', 'pytorch', 'huggingface', 'transformers', 'language-model', 'deep-learning']",Python,http://speechbrain.github.io,speechbrain: A PyTorch-based Speech Toolkit,speechbrain,2022-12-18,2022-12-12,2020-04-28,137,36.42176165803109,194,4,5,"['jpmorganchase', 'mit', 'samsung', 'universityofmontreal']",,17.15,271,185,32,0,3,3,3,271.0,521.0,90.0,1.9,1683,63.76976 +404,perf,https://github.com/python-trio/trio,,,,python-trio/trio,trio,5017,290,88,"['python', 'async', 'async-await', 'networking', 'io', 'trio', 'structured-concurrency']",Python,https://trio.readthedocs.io,Trio – a friendly Python library for async concurrency and I/O,python-trio,2022-12-18,2022-12-13,2017-01-16,309,16.236245954692556,138,2,5,"['elastic', 'hudsonrivertrading']",,6.5,128,97,72,0,0,4,4,128.0,226.0,90.0,1.8,503,57.8996 +605,jupyter,https://github.com/connorferster/handcalcs,,,,connorferster/handcalcs,handcalcs,4989,389,76,[],CSS,,handcalcs: Python library for converting Python calculations into rendered latex.,connorferster,2022-12-18,2022-09-28,2020-02-19,147,33.774661508704064,11,4,5,"['applemontechnologies', 'christianclauss', 'clearcalcs', 'rjc-development']",,0.98,19,5,34,3,3,3,3,19.0,20.0,90.0,1.1,13,34.90596 +686,util,https://github.com/py-pdf/pypdf2,,,,py-pdf/pypdf2,PyPDF2,4988,1143,139,"['pypdf2', 'pdf', 'python', 'pdf-parser', 'pdf-parsing', 'pdf-manipulation', 'pdf-documents', 'help-wanted']",Python,https://pypdf2.readthedocs.io/en/latest/,"PyPDF2: A pure-python PDF library capable of splitting, merging, cropping, and transforming the pages of PDF files",py-pdf,2022-12-18,2022-12-17,2012-01-06,571,8.729,160,1,5,['popsql'],,12.06,157,121,133,0,47,6,47,157.0,492.0,90.0,3.1,628,63.817 +652,profiling,https://github.com/joerick/pyinstrument,,,,joerick/pyinstrument,pyinstrument,4954,217,52,"['python', 'django', 'profiler', 'performance', 'profile', 'async']",Python,https://pyinstrument.readthedocs.io/,pyinstrument: 🚴 Call stack profiler for Python. Shows you why your code is slow!,joerick,2022-12-18,2022-12-05,2014-03-13,457,10.826724945363722,47,4,5,"['datadog,formerlyllnl', 'flycode-org', 'jpmorgan', 'nordprojects']",,1.92,47,39,107,0,0,6,6,47.0,51.0,90.0,1.1,30,49.90106 +471,util,https://github.com/parthjadhav/tkinter-designer,,,,parthjadhav/tkinter-designer,Tkinter-Designer,4944,470,51,"['tkinter', 'tkinter-gui', 'tkinter-python', 'tkinter-graphic-interface', 'python3', 'tkinter-widgets', 'gui-application', 'python-script', 'drag-and-drop', 'easy', 'easy-to-use', 'fast', 'gui', 'tkinter-designer', 'figma', 'python', 'automatic', 'collaborate', 'learn', 'hacktoberfest']",Python,,Tkinter-Designer: An easy and fast way to create a Python GUI 🐍,parthjadhav,2022-12-18,2022-12-17,2021-05-18,82,59.66896551724138,33,2,5,"['microsoftazure', 'xd2sketch']",,1.02,48,30,19,0,1,5,1,48.0,42.0,90.0,0.9,15,37.66943 +552,ml,https://github.com/open-mmlab/mmsegmentation,,,,open-mmlab/mmsegmentation,mmsegmentation,4927,1821,51,"['semantic-segmentation', 'pytorch', 'pspnet', 'deeplabv3', 'transformer', 'swin-transformer', 'realtime-segmentation', 'vessel-segmentation', 'retinal-vessel-segmentation', 'image-segmentation', 'medical-image-segmentation']",Python,https://mmsegmentation.readthedocs.io/en/latest/,mmsegmentation: OpenMMLab Semantic Segmentation Toolbox and Benchmark.,open-mmlab,2022-12-18,2022-12-13,2020-06-14,131,37.569716775599126,127,3,5,"['open-mmlab,shanghaiailaboratory', 'openmmlab', 'ucsd']",,4.42,403,300,31,0,16,14,16,403.0,797.0,90.0,2.0,229,59.1407 +15,ml-dl,https://github.com/skorch-dev/skorch,,,,skorch-dev/skorch,skorch,4891,330,81,"['scikit-learn', 'pytorch', 'machine-learning', 'hacktoberfest']",Jupyter Notebook,,skorch: A scikit-learn compatible neural network library that wraps PyTorch,skorch-dev,2022-12-18,2022-12-13,2017-07-18,282,17.29141414141414,52,3,5,"['aeolusrobotics', 'ottogroupbi', 'quansight-labs']",,1.06,40,32,66,0,2,3,2,40.0,92.0,90.0,2.3,14,46.17694 +569,ml,https://github.com/mdbloice/augmentor,,,,mdbloice/augmentor,Augmentor,4841,852,123,"['augmentation', 'machine-learning', 'deep-learning', 'neural-networks']",Python,https://augmentor.readthedocs.io/en/stable,Augmentor: Image augmentation library in Python for machine learning.,mdbloice,2022-12-17,2022-09-23,2016-03-01,354,13.642109500805153,22,1,5,['medicaluniversitygraz'],,0.17,1,0,83,3,0,3,3,1.0,1.0,90.0,1.0,68,33.28478 +169,nlp,https://github.com/minimaxir/textgenrnn,,,,minimaxir/textgenrnn,textgenrnn,4825,753,138,"['keras', 'deep-learning', 'text-generation', 'tensorflow', 'python']",Python,,textgenrnn: Easily train your own text-generating neural network of any size and complexity on any text dataset with a few lines of code.,minimaxir,2022-12-18,2020-07-14,2017-08-07,280,17.232142857142858,19,2,5,"['buzzfeed', 'valohai']",,0.0,10,6,65,30,0,2,2,10.0,4.0,90.0,0.4,4,24.79389 +784,diffusion,https://github.com/xavierxiao/dreambooth-stable-diffusion,,,,xavierxiao/dreambooth-stable-diffusion,Dreambooth-Stable-Diffusion,4801,521,73,"['pytorch', 'pytorch-lightning', 'stable-diffusion', 'text-to-image']",Jupyter Notebook,,Dreambooth-Stable-Diffusion: Implementation of Dreambooth (https://arxiv.org/abs/2208.12242) with Stable Diffusion,xavierxiao,2022-12-18,2022-09-21,2022-09-06,14,323.1442307692308,1,1,5,['universityofchicago'],,0.6,100,13,3,3,0,0,0,100.0,234.0,90.0,2.3,15,21.16343 +661,study,https://github.com/udacity/deep-learning-v2-pytorch,,,,udacity/deep-learning-v2-pytorch,deep-learning-v2-pytorch,4793,5176,172,"['deep-learning', 'neural-network', 'convolutional-networks', 'pytorch', 'recurrent-networks', 'style-transfer', 'sentiment-analysis']",Jupyter Notebook,,deep-learning-v2-pytorch: Projects and exercises for the latest Deep Learning ND program https://www.udacity.com/course/deep-learning-nanodegree--nd101,udacity,2022-12-18,2022-10-03,2018-09-04,223,21.410976388002553,97,3,5,"['bardeen', 'lumafield', 'udacity']",,0.08,3,1,52,3,0,0,0,3.0,0.0,90.0,0.0,1469,40.45056 +380,data,https://github.com/alirezamika/autoscraper,,,,alirezamika/autoscraper,autoscraper,4781,510,125,"['scraping', 'scraper', 'scrape', 'webscraping', 'crawler', 'web-scraping', 'ai', 'artificial-intelligence', 'python', 'webautomation', 'automation', 'machine-learning']",Python,,"autoscraper: A Smart, Automatic, Fast and Lightweight Web Scraper for Python",alirezamika,2022-12-18,2022-07-17,2020-08-31,120,39.84166666666667,8,1,5,['cognitifai'],,0.04,6,4,28,5,1,7,1,6.0,9.0,90.0,1.5,0,20.98298 +223,nlp,https://github.com/kingoflolz/mesh-transformer-jax,1.0,,,kingoflolz/mesh-transformer-jax,mesh-transformer-jax,4763,673,82,[],Python,,mesh-transformer-jax: Model parallel transformers in JAX and Haiku,kingoflolz,2022-12-18,2022-01-28,2021-03-13,92,51.61145510835913,23,0,5,[],,0.08,13,2,22,11,0,0,0,13.0,12.0,90.0,0.9,7,19.53991 +181,security,https://github.com/pycqa/bandit,,,,pycqa/bandit,bandit,4744,493,62,"['linter', 'bandit', 'security-tools', 'security-scanner', 'security', 'static-code-analysis', 'python']",Python,https://bandit.readthedocs.io,Bandit is a tool designed to find common security issues in Python code.,pycqa,2022-12-18,2022-10-28,2018-04-26,242,19.557126030624264,160,2,5,"['redhat,inc', 'securesauce']",,2.08,31,10,57,2,3,8,3,31.0,49.0,90.0,1.6,1216,51.92544 +642,util,https://github.com/pycqa/pycodestyle,,,,pycqa/pycodestyle,pycodestyle,4742,685,119,"['python', 'pep8', 'styleguide', 'style-guide', 'linter-plugin', 'linter-flake8', 'flake8-plugin']",Python,https://pycodestyle.pycqa.org,pycodestyle: Simple Python style checker in one Python file,pycqa,2022-12-18,2022-12-13,2009-10-02,689,6.878159966846249,131,2,5,"['llnl', 'tableau&salesforce']",,0.88,37,36,161,0,0,3,3,37.0,41.0,90.0,1.1,2936,56.665 +687,util,https://github.com/bndr/pipreqs,,,,bndr/pipreqs,pipreqs,4741,319,59,[],Python,,pipreqs - Generate pip requirements.txt file based on imports of any project. Looking for maintainers to move this project forward.,bndr,2022-12-18,2022-12-02,2015-04-22,399,11.860972122944961,52,0,5,[],,0.02,28,7,93,1,0,3,3,28.0,26.0,90.0,0.9,27,35.38096 +513,util,https://github.com/agronholm/apscheduler,,,,agronholm/apscheduler,apscheduler,4722,604,126,[],Python,,apscheduler: Task scheduling library for Python,agronholm,2022-12-18,2022-12-14,2016-03-27,351,13.447518307567128,37,1,5,['nextdaysolutionsoy'],,2.81,25,16,82,0,0,8,8,25.0,53.0,90.0,2.1,713,51.27874 +265,util,https://github.com/pytransitions/transitions,,,,pytransitions/transitions,transitions,4690,512,93,"['python', 'state-machine', 'nested-states', 'hierarchical-state-machine', 'state-diagram']",Python,,"transitions: A lightweight, object-oriented finite state machine implementation in Python with many extensions",pytransitions,2022-12-18,2022-11-08,2014-10-12,427,10.979933110367893,75,3,5,"['caretechowl,fhbielefeld', 'jrc-stu', 'twitter']",,0.65,8,5,100,1,2,6,2,8.0,7.0,90.0,0.9,143,45.58958 +213,data,https://github.com/facebookresearch/augly,,,,facebookresearch/augly,AugLy,4625,267,61,[],Python,https://ai.facebook.com/blog/augly-a-new-data-augmentation-library-to-help-build-more-robust-ai-models/,"AugLy: A data augmentations library for audio, image, text, and video.",facebookresearch,2022-12-16,2022-12-05,2021-06-09,79,58.01971326164875,26,2,5,"['facebookresearch', 'omnilib']",,1.02,1,0,19,0,1,4,1,1.0,0.0,90.0,0.0,106,33.13565 +551,ml,https://github.com/open-mmlab/mmcv,,,,open-mmlab/mmcv,mmcv,4578,1326,83,[],Python,https://mmcv.readthedocs.io/en/latest/,mmcv: OpenMMLab Computer Vision Foundation,open-mmlab,2022-12-18,2022-12-14,2018-08-22,225,20.282278481012657,237,3,5,"['mmlab,ntu', 'open-mmlab', 'ucsd']",,5.75,283,219,53,0,18,23,18,283.0,368.0,90.0,1.3,41,58.07361 +830,typing,https://github.com/python-attrs/attrs,1.0,,,python-attrs/attrs,attrs,4546,319,58,"['python', 'boilerplate', 'classes', 'oop', 'attributes', 'srp']",Python,https://www.attrs.org/,attrs: Python Classes Without Boilerplate,python-attrs,2022-12-18,2022-12-18,2015-01-27,411,11.037807839056539,137,2,5,"['pocketzworld', 'variomediaag']",,4.12,61,44,96,0,3,3,3,61.0,133.0,90.0,2.2,1224,58.64417 +783,diffusion,https://github.com/carson-katri/dream-textures,,,,carson-katri/dream-textures,dream-textures,4525,221,85,"['ai', 'blender', 'blender-addon', 'image-generation', 'stable-diffusion']",Python,,dream-textures: Stable Diffusion built-in to the Blender shader editor,carson-katri,2022-12-18,2022-12-15,2022-09-08,14,310.53921568627453,7,2,5,"['blastframe', 'blenderdiplom']",,2.1,352,214,3,0,9,36,9,352.0,1050.0,90.0,3.0,5,37.42735 +247,util,https://github.com/jorgebastida/awslogs,,,,jorgebastida/awslogs,awslogs,4512,325,61,[],Python,,awslogs: AWS CloudWatch logs for Humans™,jorgebastida,2022-12-16,2020-07-10,2015-01-21,412,10.932502596053999,39,2,5,"['freelancer,upforhire', 'infiniteforksl']",,0.0,6,0,96,30,0,1,1,6.0,3.0,90.0,0.5,53,29.83306 +97,jupyter,https://github.com/voila-dashboards/voila,,,,voila-dashboards/voila,voila,4489,448,77,"['jupyter', 'jupyter-notebook', 'jupyterlab-extension', 'dashboarding']",Python,https://voila.readthedocs.io,voila: Voilà turns Jupyter notebooks into standalone web applications,voila-dashboards,2022-12-18,2022-12-13,2018-08-21,225,19.87539531941809,63,2,5,"['maartenbreddels', 'quantstack']",,2.63,114,64,53,0,14,29,14,114.0,285.0,90.0,2.5,77,52.98083 +312,util,https://github.com/indygreg/pyoxidizer,,,,indygreg/pyoxidizer,PyOxidizer,4430,190,59,[],Rust,,PyOxidizer: A modern Python application packaging and distribution tool,indygreg,2022-12-17,2022-11-20,2018-12-18,208,21.210670314637483,53,2,5,"['franklin-ai', 'isaadvisers']",,27.5,40,6,49,0,11,88,11,40.0,47.0,90.0,1.2,59,50.74155 +66,util,https://github.com/pycqa/pylint,,,,pycqa/pylint,pylint,4389,950,72,"['static-analysis', 'linter', 'static-code-analysis', 'code-quality', 'pep8', 'closember', 'hacktoberfest']",Python,http://pylint.pycqa.org,pylint: It's not just a linter that annoys you!,pycqa,2022-12-18,2022-12-17,2015-12-09,366,11.968445656408258,503,2,5,"['azavea', 'channable']",,36.04,722,471,86,0,28,24,28,722.0,2451.0,90.0,3.4,17832,78.20634 +206,ml,https://github.com/lucidrains/deep-daze,,,,lucidrains/deep-daze,deep-daze,4366,328,76,"['artificial-intelligence', 'deep-learning', 'transformers', 'siren', 'implicit-neural-representation', 'text-to-image', 'multi-modality']",Python,,deep-daze: Simple command line tool for text to image generation using OpenAI's CLIP and Siren (Implicit neural representation network). Technique was originally created by https://twitter.com/advadnoun,lucidrains,2022-12-18,2022-03-13,2021-01-17,100,43.59771754636234,14,1,5,['adalab'],,0.04,1,0,23,9,2,35,2,1.0,1.0,90.0,1.0,37,24.99936 +196,viz,https://github.com/lux-org/lux,,,,lux-org/lux,lux,4329,338,86,"['visualization-tools', 'jupyter', 'python', 'data-science', 'exploratory-data-analysis', 'visualization', 'pandas']",Python,,lux: Automatically visualize your pandas dataframe via a single print! 📊 💡,lux-org,2022-12-18,2022-05-21,2020-01-08,153,28.162639405204462,20,1,5,['ponder-org'],,0.35,6,0,36,7,2,4,2,6.0,11.0,90.0,1.8,0,23.75284 +21,nlp,https://github.com/facebookresearch/drqa,,,,facebookresearch/drqa,DrQA,4315,898,165,[],Python,,DrQA: Reading Wikipedia to Answer Open-Domain Questions,facebookresearch,2022-12-08,2021-05-18,2017-07-07,284,15.170768458061275,12,3,5,"['facebookresearch', 'hewlett-packardenterprise', 'mitnlp']",,0.0,2,1,66,19,0,0,0,2.0,0.0,90.0,0.0,90,26.17873 +570,util,https://github.com/jd/tenacity,,,,jd/tenacity,tenacity,4313,217,43,"['python', 'failure', 'retry', 'retry-library', 'hacktoberfest']",Python,http://tenacity.readthedocs.io,tenacity: Retrying library for Python,jd,2022-12-18,2022-12-16,2016-08-11,331,13.007755277897457,74,2,5,"['mergifyio', 'waymo']",,0.17,24,7,77,0,0,9,9,24.0,27.0,90.0,1.1,502,50.34312 +603,ml,https://github.com/cleanlab/cleanlab,,,,cleanlab/cleanlab,cleanlab,4300,397,63,"['weak-supervision', 'machine-learning', 'confident-learning', 'robust-machine-learning', 'learning-with-confident-examples', 'learning-with-noisy-labels', 'noisy-data', 'data-cleaning', 'audio-classification', 'classification', 'data-quality', 'data-science', 'exploratory-data-analysis', 'image-classification', 'label-errors', 'noisy-labels', 'text-classification', 'data-centric-ai', 'data-centric-machine-learning']",Python,https://cleanlab.ai,"cleanlab: The standard data-centric AI package for data quality and machine learning with messy, real-world data and labels.",cleanlab,2022-12-18,2022-12-17,2018-05-11,240,17.88472964943553,24,3,5,"['cleanlab', 'cleanlab|mit', 'mitcsail']",,8.31,170,135,56,0,4,1,4,170.0,164.0,90.0,1.0,228,51.91166 +896,diffusion,https://github.com/apple/ml-stable-diffusion,,,,apple/ml-stable-diffusion,ml-stable-diffusion,4291,165,57,[],Python,,ml-stable-diffusion: Stable Diffusion with Core ML on Apple Silicon,apple,2022-12-18,2022-12-16,2022-11-16,4,910.2121212121212,6,2,5,"['christianclauss', 'google']",,0.17,74,17,1,0,1,12,1,74.0,192.0,90.0,2.6,0,24.38378 +717,data,https://github.com/jazzband/tablib,,,,jazzband/tablib,tablib,4203,570,141,[],Python,https://tablib.readthedocs.io/,"tablib: Python Module for Tabular Datasets in XLS, CSV, JSON, YAML, &c.",jazzband,2022-12-17,2022-12-10,2011-03-28,612,6.867647058823529,118,4,5,"['2xlibre.netsàrl', 'buser', 'http://www.lukelee.me', 'nordsoftware']",,0.31,9,8,143,0,3,4,3,9.0,12.0,90.0,1.3,117,50.9936 +101,ml,https://github.com/rasbt/mlxtend,,,,rasbt/mlxtend,mlxtend,4183,796,121,"['python', 'machine-learning', 'data-science', 'data-mining', 'association-rules', 'supervised-learning', 'unsupervised-learning']",Python,http://rasbt.github.io/mlxtend/,mlxtend: A library of extension and helper modules for Python's data analysis and machine learning libraries.,rasbt,2022-12-18,2022-12-18,2014-08-14,435,9.603476549688422,91,2,5,"['coiled', 'lightning-ai,universityofwisconsin-madison']",,4.75,46,35,102,0,2,3,2,46.0,66.0,90.0,1.4,37,49.56181 +764,ml-dl,https://github.com/xpixelgroup/basicsr,,,,xpixelgroup/basicsr,BasicSR,4171,864,85,"['basicsr', 'esrgan', 'edsr', 'rcan', 'edvr', 'srresnet', 'srgan', 'super-resolution', 'restoration', 'pytorch', 'stylegan2', 'dfdnet', 'basicvsr', 'swinir', 'ecbsr']",Python,https://basicsr.readthedocs.io/en/latest/,"BasicSR: Open Source Image and Video Restoration Toolbox for Super-resolution, Denoise, Deblurring, etc. Currently, it includes EDSR, RCAN, SRResNet, SRGAN, ESRGAN, EDVR, BasicVSR, SwinIR, ECBSR, etc. Also support StyleGAN2, DFDNet.",xpixelgroup,2022-12-18,2022-11-06,2018-04-19,243,17.12434017595308,18,4,5,"['msft', 'tencent', 'um&siat', 'whut']",,1.02,30,6,57,1,4,7,4,30.0,16.0,90.0,0.5,0,33.79657 +734,ml-dl,https://github.com/pytorch/ignite,1.0,,,pytorch/ignite,ignite,4142,562,59,"['pytorch', 'neural-network', 'python', 'machine-learning', 'deep-learning', 'metrics', 'hacktoberfest', 'closember']",Python,https://pytorch-ignite.ai,ignite: High-level library to help with training and evaluating neural networks in PyTorch flexibly and transparently.,pytorch,2022-12-17,2022-12-10,2017-11-23,264,15.655507559395248,183,5,5,"['bimsbbioinfopytorch-ignite', 'cision', 'pytorch-ignitemichelin', 'quansight', 'sharechat']",,3.77,111,94,62,0,3,4,3,111.0,203.0,90.0,1.8,529,60.51595 +370,time-series,https://github.com/facebookresearch/kats,,,,facebookresearch/kats,Kats,4122,434,69,[],Python,,"Kats, a kit to analyze time series data, a lightweight, easy-to-use, generalizable, and extendable framework to perform time series analysis, from understanding the key statistics and characteristics, detecting change points and anomalies, to forecasting future trends. ",facebookresearch,2022-12-18,2022-12-16,2021-02-25,94,43.586102719033235,121,2,5,"['facebook', 'meta']",,4.67,31,19,22,0,1,1,1,31.0,48.0,90.0,1.5,118,47.46478 +293,util,https://github.com/pytoolz/toolz,,,,pytoolz/toolz,toolz,4103,246,82,[],Python,http://toolz.readthedocs.org/,toolz: A functional standard library for Python.,pytoolz,2022-12-18,2022-11-03,2013-09-13,483,8.487293144208039,74,4,5,"['coiled', 'formerlyquantopian', 'google', 'lynkertechnologies']",,0.29,15,7,113,2,1,3,1,15.0,27.0,90.0,1.8,90,46.22583 +27,typing,https://github.com/google/pytype,,,,google/pytype,pytype,4016,258,55,"['python', 'typing', 'typechecker', 'linter', 'types', 'static-analysis', 'static-code-analysis']",Python,https://google.github.io/pytype,pytype: A static type analyzer for Python code,google,2022-12-18,2022-12-16,2015-03-18,404,9.923049770561242,87,2,5,"['google', 'googledart-langflutter']",,12.4,56,41,94,0,0,21,21,56.0,45.0,90.0,0.8,2154,60.4968 +542,util,https://github.com/mamba-org/mamba,,,,mamba-org/mamba,mamba,4000,230,39,[],C++,https://mamba.readthedocs.io,mamba: The Fast Cross-Platform Package Manager,mamba-org,2022-12-18,2022-12-14,2019-03-05,197,20.216606498194945,101,2,5,"['prefix.devgmbh', 'quantstack']",,10.98,449,227,46,0,14,50,14,449.0,1062.0,90.0,2.4,0,49.83509 +565,gis,https://github.com/gboeing/osmnx,,,,gboeing/osmnx,osmnx,3963,734,121,"['openstreetmap', 'gis', 'street-networks', 'overpass-api', 'networkx', 'spatial-analysis', 'geospatial', 'urban-planning', 'transportation', 'geography', 'osmnx', 'networks', 'spatial-data', 'urban', 'osm', 'spatial', 'python', 'transport', 'mapping', 'routing']",Python,https://geoffboeing.com/publications/osmnx-complex-street-networks/,"OSMnx: Python for street networks. Retrieve, model, analyze, and visualize street networks and other spatial data from OpenStreetMap.",gboeing,2022-12-18,2022-12-18,2016-07-24,334,11.860196665241556,73,2,5,"['aaltouniversity', 'universityofsoutherncalifornia']",,2.94,51,49,78,0,0,8,8,51.0,88.0,90.0,1.7,93,52.04712 +227,ml,https://github.com/online-ml/river,1.0,,,online-ml/river,river,3958,437,82,"['incremental-learning', 'machine-learning', 'python', 'online-learning', 'online-statistics', 'data-science', 'streaming', 'online-machine-learning', 'streaming-data', 'concept-drift', 'real-time-processing', 'stream-processing']",Python,https://riverml.xyz,river: 🌊 Online machine learning in Python,online-ml,2022-12-18,2022-12-15,2019-01-24,203,19.44280701754386,89,5,5,"['carbonfact', 'manomano', 'phdcandidateatuniversityofsãopaulo', 'universityofwaikato', 'volvo-cars']",,5.13,60,55,47,0,6,7,6,60.0,155.0,90.0,2.6,2,50.30314 +258,crypto,https://github.com/ethereum/web3.py,1.0,,,ethereum/web3.py,web3.py,3917,1232,119,[],Python,http://web3py.readthedocs.io,web3.py: A python interface for interacting with the Ethereum blockchain and ecosystem.,ethereum,2022-12-18,2022-12-18,2016-04-14,348,11.237295081967213,218,2,5,"['ethereum', 'ethereumfoundation']",,5.88,149,122,81,0,0,28,28,149.0,174.0,90.0,1.2,547,61.69142 +549,ml,https://github.com/open-mmlab/mmediting,,,,open-mmlab/mmediting,mmediting,3869,698,83,"['super-resolution', 'inpainting', 'matting', 'image-generation', 'generative-adversarial-network', 'pytorch', 'deep-learning', 'video-interpolation', 'video-frame-interpolation', 'video-super-resolution', 'computer-vision', 'image-editing', 'image-processing', 'image-synthesis']",Python,https://mmediting.readthedocs.io/en/latest/,"mmediting: OpenMMLab Image and Video Restoration, Editing and Generation Toolbox",open-mmlab,2022-12-18,2022-11-30,2019-08-23,173,22.308896210873147,64,3,5,"['cuhk', 'nanyangtechnologicaluniversity', 'universityofalberta']",,3.6,461,389,40,1,12,6,12,460.0,452.0,90.0,1.0,1643,57.49587 +13,ml,https://github.com/districtdatalabs/yellowbrick,,,,districtdatalabs/yellowbrick,yellowbrick,3866,538,101,"['machine-learning', 'visual-analysis', 'model-selection', 'visualization', 'scikit-learn', 'visualizer', 'matplotlib', 'python', 'estimator', 'anaconda']",Python,http://www.scikit-yb.org/,yellowbrick: Visual analysis and diagnostic tools to facilitate machine learning model selection.,districtdatalabs,2022-12-18,2022-12-05,2016-05-18,343,11.247714048212801,110,2,5,"['rotationalio', 'rotationallabs']",,0.65,13,9,80,0,2,4,2,13.0,25.0,90.0,1.9,57,47.20525 +362,ml-ops,https://github.com/allegroai/clearml,,,,allegroai/clearml,clearml,3857,519,82,"['version-control', 'experiment-manager', 'version', 'control', 'experiment', 'deeplearning', 'deep-learning', 'machine-learning', 'machinelearning', 'ai', 'trains', 'trainsai', 'clearml', 'k8s', 'devops', 'mlops']",Python,https://clear.ml/docs,"ClearML - Auto-Magical CI/CD to streamline your ML workflow. Experiment Manager, MLOps and Data-Management",allegroai,2022-12-18,2022-12-18,2019-06-10,184,20.96195652173913,62,2,5,"['allegroai', 'techlearnersincallegroai']",,1.46,114,39,43,0,22,36,22,114.0,249.0,90.0,2.2,22,49.63001 +43,data,https://github.com/lk-geimfari/mimesis,,,,lk-geimfari/mimesis,mimesis,3833,303,64,"['mimesis', 'fake', 'data', 'generator', 'fixtures', 'dummy', 'json', 'schema', 'testing', 'python', 'json-generator', 'faker', 'mock', 'synthetic-data', 'datascience', 'api-mock']",Python,https://mimesis.name,"Mimesis is a high-performance fake data generator for Python, which provides data for a variety of purposes in a variety of languages. ",lk-geimfari,2022-12-18,2022-12-17,2016-09-09,327,11.706369982547994,112,2,5,"['extendi', 'roskomsvoboda']",,3.96,46,32,76,0,9,9,9,46.0,56.0,90.0,1.2,100,52.63675 +184,ml-dl,https://github.com/google/flax,,,,google/flax,flax,3821,444,74,['jax'],Python,https://flax.readthedocs.io,Flax is a neural network library for JAX that is designed for flexibility.,google,2022-12-18,2022-12-17,2020-01-10,153,24.904096834264433,183,1,5,['google'],,10.9,289,218,36,0,12,7,12,289.0,489.0,90.0,1.7,588,58.74947 +355,ml-ops,https://github.com/feast-dev/feast,,,,feast-dev/feast,feast,3820,714,74,"['machine-learning', 'features', 'ml', 'big-data', 'feature-store', 'python', 'mlops', 'data-engineering', 'data-science', 'data-quality']",Python,https://feast.dev,feast: Feature Store for Machine Learning,feast-dev,2022-12-17,2022-12-18,2018-12-10,210,18.19047619047619,179,3,5,"['gojekindonesia', 'tecton', 'tectonai']",,15.31,271,156,49,0,31,31,31,271.0,434.0,90.0,1.6,4,55.68404 +376,util,https://github.com/spotify/pedalboard,,,,spotify/pedalboard,pedalboard,3802,153,46,"['vst3', 'vst3-host', 'python', 'juce', 'tensorflow', 'audio-unit', 'pybind11', 'audio-processing', 'audio-production', 'audio-research', 'audio']",C++,,pedalboard: 🎛 🔊 A Python library for working with audio.,spotify,2022-12-18,2022-12-08,2021-07-06,75,50.120527306967986,24,3,5,"['b3ta', 'myr', 'spotify']",,6.35,36,23,18,0,30,24,30,36.0,38.0,90.0,1.1,16,45.11291 +199,viz,https://github.com/man-group/dtale,,,,man-group/dtale,dtale,3769,318,69,"['python27', 'python3', 'react', 'flask', 'pandas', 'ipython', 'jupyter-notebook', 'react-virtualized', 'data-analysis', 'data-visualization', 'visualization', 'plotly-dash', 'data-science', 'xarray']",TypeScript,http://alphatechadmin.pythonanywhere.com,dtale: Visualizer for pandas data structures,man-group,2022-12-17,2022-11-04,2019-07-15,179,21.05586592178771,29,0,5,[],,1.65,23,11,42,1,12,40,12,23.0,18.0,90.0,0.8,253,39.49359 +343,web,https://github.com/vitalik/django-ninja,,,,vitalik/django-ninja,django-ninja,3763,235,61,"['python', 'django', 'rest-api', 'openapi', 'pydantic', 'swagger', 'swagger-ui', 'django-ninja']",Python,https://django-ninja.rest-framework.com,"django-ninja: 💨 Fast, Async-ready, Openapi, type hints based framework for building APIs",vitalik,2022-12-18,2022-12-17,2020-05-19,134,27.903601694915253,70,0,5,[],,3.58,97,46,31,0,6,10,6,97.0,173.0,90.0,1.8,22,42.15851 +753,study,https://github.com/karpathy/nn-zero-to-hero,,,,karpathy/nn-zero-to-hero,nn-zero-to-hero,3754,259,151,[],Jupyter Notebook,,nn-zero-to-hero: Neural Networks: Zero to Hero,karpathy,2022-12-18,2022-11-21,2022-09-08,14,257.62745098039215,2,0,5,[],,0.17,13,5,3,1,0,0,0,13.0,18.0,90.0,1.4,0,11.77752 +388,nlp,https://github.com/makcedward/nlpaug,,,,makcedward/nlpaug,nlpaug,3690,420,39,"['nlp', 'augmentation', 'machine-learning', 'artificial-intelligence', 'data-science', 'natural-language-processing', 'adversarial-attacks', 'adversarial-example', 'ai', 'ml']",Jupyter Notebook,https://makcedward.github.io/,nlpaug: Data augmentation for NLP ,makcedward,2022-12-17,2022-07-07,2019-03-21,195,18.867786705624543,33,4,5,"['clevertech', 'cresta', 'toyotaconnected', 'truefoundry']",,0.37,11,1,46,5,2,7,2,11.0,6.0,90.0,0.5,2,31.06954 +855,profiling,https://github.com/pythonprofilers/memory_profiler,,,,pythonprofilers/memory_profiler,memory_profiler,3684,363,75,[],Python,http://pypi.python.org/pypi/memory_profiler,memory_profiler: Monitor Memory usage of Python code,pythonprofilers,2022-12-17,2022-12-06,2011-10-14,583,6.314397649363369,101,2,5,"['cardiologs', 'google']",,0.73,21,14,136,0,0,4,4,21.0,23.0,90.0,1.1,225,50.60987 +357,data,https://github.com/amundsen-io/amundsen,,,,amundsen-io/amundsen,amundsen,3680,891,245,"['amundsen', 'metadata', 'data-catalog', 'data-discovery', 'linuxfoundation']",Python,https://www.amundsen.io/amundsen/,"Amundsen is a metadata driven application for improving the productivity of data analysts, data scientists and engineers when interacting with data.",amundsen-io,2022-12-18,2022-12-15,2019-05-14,187,19.5893536121673,215,2,5,"['databricksamundsen-ioapache', 'lyft']",,3.73,270,253,44,0,48,33,48,270.0,147.0,90.0,0.5,16,52.59996 +822,ml,https://github.com/project-monai/monai,,,,project-monai/monai,MONAI,3663,698,89,"['healthcare-imaging', 'deep-learning', 'medical-image-computing', 'medical-image-processing', 'pytorch', 'python3', 'monai']",Python,https://monai.io/,MONAI: AI Toolkit for Healthcare Imaging,project-monai,2022-12-18,2022-12-18,2019-10-11,166,22.00944206008584,131,2,5,"[""king'scollegelondon"", 'nvidia']",,14.46,573,466,39,0,5,22,5,572.0,1388.0,90.0,2.4,151,58.62208 +91,ml,https://github.com/uber/causalml,,,,uber/causalml,causalml,3644,579,76,"['incubation', 'machine-learning', 'causal-inference', 'uplift-modeling']",Python,,causalml: Uplift modeling and causal inference with machine learning algorithms,uber,2022-12-18,2022-12-12,2019-07-09,179,20.260524225575853,48,3,5,"['spotify', 'toyotaresearchinstitute', 'uber']",,1.48,45,19,42,0,5,3,5,45.0,45.0,90.0,1.0,19,44.54986 +354,ml-interpretability,https://github.com/pytorch/captum,,,,pytorch/captum,captum,3635,390,213,"['interpretability', 'interpretable-ai', 'interpretable-ml', 'feature-importance', 'feature-attribution']",Python,https://captum.ai,captum: Model interpretability and understanding for PyTorch,pytorch,2022-12-17,2022-12-16,2019-08-27,172,21.02892561983471,95,2,5,"['facebook', 'meta']",,2.1,87,45,40,0,1,2,1,87.0,170.0,90.0,2.0,444,51.6051 +762,sim,https://github.com/quantumlib/cirq,,,,quantumlib/cirq,Cirq,3617,815,175,"['quantum-circuits', 'nisq', 'quantum-algorithms', 'quantum-computing', 'cirq']",Python,,"Cirq: A python framework for creating, editing, and invoking Noisy Intermediate Scale Quantum (NISQ) circuits.",quantumlib,2022-12-18,2022-12-16,2017-12-14,261,13.82796286182414,179,2,5,"['dukeuniversity', 'google']",,15.63,119,76,61,0,4,5,4,119.0,178.0,90.0,1.5,1234,60.47867 +58,gamedev,https://github.com/panda3d/panda3d,,,,panda3d/panda3d,panda3d,3608,730,192,"['game-engine', 'open-source', 'panda3d', 'cross-platform', 'python', 'panda3d-game-engine', 'game-development', 'opengl', 'multi-platform', 'gamedev', 'c-plus-plus']",C++,https://www.panda3d.org/,"panda3d: Powerful, mature open-source cross-platform game engine for Python and C++, developed by Disney and CMU",panda3d,2022-12-18,2022-12-16,2013-09-30,481,7.501039501039501,155,0,5,[],,8.71,128,83,112,0,2,2,2,128.0,194.0,90.0,1.5,523,52.9106 +793,ml-ops,https://github.com/orchest/orchest,,,,orchest/orchest,orchest,3589,212,36,"['data-science', 'machine-learning', 'pipelines', 'ide', 'jupyter', 'cloud', 'self-hosted', 'jupyterlab', 'notebooks', 'docker', 'python', 'data-pipelines', 'orchest', 'deployment', 'kubernetes', 'airflow', 'dag', 'etl', 'etl-pipeline']",TypeScript,https://orchest.io,"orchest: Build data pipelines, the easy way 🛠️",orchest,2022-12-18,2022-12-15,2020-05-21,134,26.669851380042463,31,2,5,"['orchest', 'orchest.io']",,82.5,254,225,31,0,99,75,99,254.0,203.0,90.0,0.8,757,58.83738 +423,util,https://github.com/tebelorg/rpa-python,,,,tebelorg/rpa-python,RPA-Python,3566,523,99,"['rpa', 'python', 'opencv', 'tesseract', 'tagui', 'sikuli', 'cross-platform']",Python,,RPA-Python: Python package for doing RPA,tebelorg,2022-12-16,2022-09-07,2019-03-30,194,18.354411764705883,3,1,5,['universityofappliedtrialanderror'],,1.17,25,13,45,3,3,13,3,25.0,38.0,90.0,1.5,8,28.91587 +209,web,https://github.com/pywebio/pywebio,,,,pywebio/pywebio,PyWebIO,3563,319,45,['pywebio'],Python,https://pywebio.readthedocs.io,PyWebIO: Write interactive web app in script way.,pywebio,2022-12-18,2022-11-26,2020-02-29,146,24.3564453125,15,1,5,['christianclauss'],,1.71,27,3,34,1,0,10,10,27.0,21.0,90.0,0.8,6,33.30083 +309,crypto,https://github.com/crytic/slither,,,,crytic/slither,slither,3530,645,61,"['solidity', 'ethereum', 'static-analysis']",Python,https://blog.trailofbits.com/2018/10/19/slither-a-solidity-static-analysis-framework/,slither: Static Analyzer for Solidity,crytic,2022-12-17,2022-11-28,2018-09-05,223,15.77905491698595,96,1,5,['trailofbits'],,6.79,193,90,52,1,3,7,3,193.0,305.0,90.0,1.6,369,51.45896 +616,testing,https://github.com/spulec/freezegun,,,,spulec/freezegun,freezegun,3510,243,34,[],Python,,freezegun: Let your Python tests travel through time,spulec,2022-12-18,2022-08-12,2012-12-11,522,6.713114754098361,106,5,5,"['dryft-technologies', 'nordsoftware', 'pioneervalleybooks', 'policystat', 'yipitdata']",,0.33,22,1,122,4,0,5,5,22.0,15.0,90.0,0.7,692,49.82397 +770,data,https://github.com/gristlabs/grist-core,,,,gristlabs/grist-core,grist-core,3501,164,40,"['awesome', 'database', 'spreadsheet']",TypeScript,https://support.getgrist.com/self-managed/,grist-core: Grist is the evolution of spreadsheets.,gristlabs,2022-12-18,2022-12-12,2020-05-22,134,26.043570669500532,20,1,5,['gristlabs'],,10.13,117,58,31,0,8,5,8,117.0,253.0,90.0,2.2,11,43.84005 +442,gis,https://github.com/osgeo/gdal,,,,osgeo/gdal,gdal,3496,1955,169,"['raster', 'geospatial-data', 'vector', 'remote-sensing']",C++,https://gdal.org,GDAL is an open source MIT licensed translator library for raster and vector geospatial data formats.,osgeo,2022-12-18,2022-12-17,2012-10-09,531,6.573193661026054,506,3,5,"['cadcorp', 'google', 'spatialys']",,47.69,625,575,124,0,9,14,9,625.0,665.0,90.0,1.1,6036,74.09368 +280,nlp,https://github.com/maartengr/bertopic,,,,maartengr/bertopic,BERTopic,3488,455,45,"['bert', 'transformers', 'topic-modeling', 'sentence-embeddings', 'nlp', 'machine-learning', 'topic', 'ldavis', 'topic-modelling', 'topic-models']",Python,https://maartengr.github.io/BERTopic/,BERTopic: Leveraging BERT and c-TF-IDF to create easily interpretable topics. ,maartengr,2022-12-18,2022-12-06,2020-09-22,116,29.848410757946212,15,5,5,"['ada', 'expedock', 'iknl', 'mustanganalytics', 'scitedotai']",,0.44,221,136,27,0,3,11,3,221.0,544.0,90.0,2.5,0,40.16454 +287,gis,https://github.com/geopandas/geopandas,1.0,,,geopandas/geopandas,geopandas,3462,774,107,[],Python,http://geopandas.org/,geopandas: Python tools for geographic data,geopandas,2022-12-18,2022-12-10,2013-06-27,494,7.0,183,2,5,"['planetlabs', 'udl-ai']",,3.08,204,93,115,0,5,3,5,204.0,443.0,90.0,2.2,243,58.6562 +778,study,https://github.com/nielsrogge/transformers-tutorials,,,,nielsrogge/transformers-tutorials,Transformers-Tutorials,3456,516,77,"['transformers', 'pytorch', 'bert', 'vision-transformer', 'layoutlm', 'gpt-2']",Jupyter Notebook,,Transformers-Tutorials: This repository contains demos I made with the Transformers library by HuggingFace.,nielsrogge,2022-12-18,2022-12-16,2020-08-31,120,28.8,4,2,5,"['huggingface', 'roboflow']",,2.33,63,25,28,0,0,0,0,63.0,92.0,90.0,1.5,0,29.1555 +782,diffusion,https://github.com/jina-ai/discoart,,,,jina-ai/discoart,discoart,3428,204,33,"['creative-ai', 'disco-diffusion', 'cross-modal', 'dalle', 'generative-art', 'multimodal', 'diffusion', 'prompts', 'midjourney', 'imgen', 'discodiffusion', 'creative-art', 'clip-guided-diffusion', 'latent-diffusion', 'stable-diffusion']",Python,,discoart: 🪩 Create Disco Diffusion artworks in one line,jina-ai,2022-12-18,2022-08-17,2022-06-30,24,139.51162790697674,6,2,5,"['jina-ai', 'jinaai']",,7.21,14,0,6,4,110,241,110,14.0,19.0,90.0,1.4,8,30.58344 +754,study,https://github.com/karpathy/micrograd,,,,karpathy/micrograd,micrograd,3406,309,80,[],Jupyter Notebook,,micrograd: A tiny scalar-valued autograd engine and a neural net library on top of it with PyTorch-like API,karpathy,2022-12-18,2020-04-18,2020-04-13,140,24.32857142857143,2,1,5,['enscognitique'],,0.0,8,4,33,32,0,0,0,8.0,4.0,90.0,0.5,0,10.85839 +757,util,https://github.com/pypa/hatch,,,,pypa/hatch,hatch,3396,165,49,"['python', 'cli', 'virtualenv', 'packaging', 'versioning', 'build', 'plugin']",Python,https://hatch.pypa.io/latest/,"hatch: Modern, extensible Python project management",pypa,2022-12-18,2022-12-17,2017-05-31,289,11.721893491124261,20,3,5,"['datadog', 'douban', 'mongodb']",,10.4,164,126,68,0,82,15,82,164.0,303.0,90.0,1.8,205,56.4194 +462,util,https://github.com/rspeer/python-ftfy,,,,rspeer/python-ftfy,python-ftfy,3387,116,74,[],Python,http://ftfy.readthedocs.org,"python-ftfy: Fixes mojibake and other glitches in Unicode text, after the fact.",rspeer,2022-12-17,2022-10-25,2012-08-24,538,6.290527991509684,18,2,5,"['elementalcognition', 'luminoso']",,0.37,2,1,126,2,0,13,13,2.0,0.0,90.0,0.0,3,31.5632 +200,ml,https://github.com/huggingface/accelerate,,,,huggingface/accelerate,accelerate,3380,286,65,[],Python,https://huggingface.co/docs/accelerate,"accelerate: 🚀 A simple way to train and use PyTorch models with multi-GPU, TPU, mixed-precision",huggingface,2022-12-18,2022-12-16,2020-10-30,111,30.333333333333332,77,1,5,['huggingface'],,7.46,287,250,26,0,15,11,15,287.0,733.0,90.0,2.6,1206,57.99184 +790,diffusion,https://github.com/ashawkey/stable-dreamfusion,,,,ashawkey/stable-dreamfusion,stable-dreamfusion,3366,280,79,"['text-to-3d', 'gui', 'nerf', 'stable-diffusion', 'dreamfusion']",Python,,"stable-dreamfusion: A pytorch implementation of text-to-3D dreamfusion, powered by stable diffusion.",ashawkey,2022-12-18,2022-12-17,2022-10-06,10,318.4054054054054,6,2,5,"['ctcmedia', 'pekinguniversity']",,1.12,114,54,2,0,0,0,0,114.0,317.0,90.0,2.8,10,30.74917 +368,nlp,https://github.com/layout-parser/layout-parser,,,,layout-parser/layout-parser,layout-parser,3346,332,57,"['layout-analysis', 'deep-learning', 'object-detection', 'ocr', 'layout-parser', 'detectron2', 'document-layout-analysis', 'computer-vision', 'document-image-processing', 'layout-detection']",Python,https://layout-parser.github.io/,layout-parser: A Unified Toolkit for Deep Learning Based Document Image Analysis,layout-parser,2022-12-18,2022-08-06,2020-06-10,131,25.40347071583514,8,3,5,"['amazon', 'clinicalmlallenai', 'factminers']",,0.31,16,2,31,4,2,4,2,16.0,20.0,90.0,1.2,0,25.90676 +833,util,https://github.com/adafruit/circuitpython,,,,adafruit/circuitpython,circuitpython,3320,877,128,"['circuitpython', 'micropython', 'python', 'embedded', 'microcontroller', 'education', 'beginner', 'cpython', 'python3', 'hacktoberfest']",C,https://circuitpython.org,CircuitPython - a Python implementation for teaching coding with microcontrollers,adafruit,2022-12-18,2022-12-18,2016-08-20,330,10.051903114186851,877,2,5,"['chickadee-tech', 'unpythonicnetworks']",,37.1,622,448,77,0,31,37,31,622.0,1458.0,90.0,2.3,5191,75.94935 +421,ml,https://github.com/facebookresearch/reagent,,,,facebookresearch/reagent,ReAgent,3311,498,146,[],Python,https://reagent.ai,"ReAgent: A platform for Reasoning systems (Reinforcement Learning, Contextual Bandits, etc.)",facebookresearch,2022-12-13,2022-12-16,2017-07-27,281,11.75900558092339,151,2,5,"['banditml', 'cornell']",,2.08,22,15,66,0,0,0,0,22.0,36.0,90.0,1.6,587,51.06759 +897,viz,https://github.com/has2k1/plotnine,,,,has2k1/plotnine,plotnine,3278,184,65,"['plotting', 'grammar', 'graphics', 'python', 'data-analysis']",Python,https://plotnine.readthedocs.io/en/stable/,plotnine: A grammar of graphics for Python,has2k1,2022-12-16,2022-11-29,2017-04-24,295,11.111864406779661,99,1,5,['kreuzwerker'],,2.85,40,22,69,1,3,2,3,40.0,67.0,90.0,1.7,34,44.93393 +4,pandas,https://github.com/aws/aws-sdk-pandas,1.0,,,aws/aws-sdk-pandas,aws-sdk-pandas,3257,562,57,"['python', 'aws', 'pandas', 'apache-arrow', 'apache-parquet', 'data-engineering', 'etl', 'data-science', 'redshift', 'athena', 'lambda', 'aws-lambda', 'aws-glue', 'emr', 'amazon-athena', 'glue-catalog', 'mysql', 'amazon-sagemaker-notebook']",Python,https://aws-sdk-pandas.readthedocs.io,"aws-sdk-pandas: pandas on AWS - Easy integration with Athena, Glue, Redshift, Timestream, Neptune, OpenSearch, QuickSight, Chime, CloudWatchLogs, DynamoDB, EMR, SecretManager, PostgreSQL, MySQL, SQLServer and S3 (Parquet, CSV, JSON and EXCEL).",aws,2022-12-16,2022-12-16,2019-02-26,198,16.378591954022987,121,3,5,"['amazonwebservices', 'aws', 'vtex']",,5.17,328,297,46,0,14,26,14,328.0,1279.0,90.0,3.9,0,52.13058 +321,gui,https://github.com/r0x0r/pywebview,,,,r0x0r/pywebview,pywebview,3247,433,57,"['python', 'webkit', 'gtk', 'linux', 'windows', 'gui', 'osx', 'cocoa', 'html', 'javascript', 'qt', 'cef']",Python,https://pywebview.flowrl.com,"pywebview: Build GUI for your Python program with JavaScript, HTML, and CSS",r0x0r,2022-12-18,2022-12-05,2014-11-20,421,7.702134869535751,97,1,5,['beeper'],,1.46,66,46,98,0,7,6,7,66.0,194.0,90.0,2.9,43,50.70661 +663,util,https://github.com/zeromq/pyzmq,,,,zeromq/pyzmq,pyzmq,3225,610,102,"['cython', 'python', 'zeromq']",Python,http://zguide.zeromq.org/py:all,PyZMQ: Python bindings for zeromq,zeromq,2022-12-17,2022-12-13,2010-07-21,647,4.979047198941332,187,4,5,"['amazonwebservices', 'microsoft', 'simularesearchlaboratory', 'universityofcalifornia,berkeley.']",,3.42,60,48,151,0,0,6,6,60.0,63.0,90.0,1.1,604,60.29066 +895,time-series,https://github.com/awslabs/gluonts,,,,awslabs/gluonts,gluonts,3224,652,69,"['time-series', 'deep-learning', 'forecasting', 'neural-networks', 'machine-learning', 'time-series-prediction', 'time-series-forecasting', 'mxnet', 'pytorch', 'aws', 'sagemaker', 'timeseries', 'artificial-intelligence', 'data-science']",Python,https://ts.gluon.ai,gluonts: Probabilistic time series modeling in Python,awslabs,2022-12-17,2022-12-17,2019-05-15,187,17.17503805175038,98,3,5,"['amazon', 'awsawsawslabs', 'awslabs']",,5.65,176,121,44,0,27,19,27,176.0,224.0,90.0,1.3,0,48.36929 +208,crypto,https://github.com/cyberpunkmetalhead/binance-volatility-trading-bot,,,,cyberpunkmetalhead/binance-volatility-trading-bot,Binance-volatility-trading-bot,3222,763,145,[],Python,,Binance-volatility-trading-bot: This is a fully functioning Binance trading bot that measures the volatility of every coin on Binance and places trades with the highest gaining coins If you like this project consider donating though the Brave browser to allow me to continuously improve the script.,cyberpunkmetalhead,2022-12-14,2021-06-10,2021-05-08,84,38.227118644067794,19,1,5,['mazette!'],,0.0,2,0,20,19,0,0,0,2.0,0.0,90.0,0.0,0,12.55493 +93,web,https://github.com/unbit/uwsgi,,,,unbit/uwsgi,uwsgi,3218,668,113,[],C,http://projects.unbit.it/uwsgi,uWSGI application server container,unbit,2022-12-13,2022-11-23,2011-10-09,584,5.508926387869895,352,3,5,"['20tabsrl', 'menodizero.it', 'unbit']",,0.52,67,33,136,1,0,11,11,67.0,85.0,90.0,1.3,1403,60.09838 +361,ml-ops,https://github.com/polyaxon/polyaxon,,,,polyaxon/polyaxon,polyaxon,3216,316,77,"['deep-learning', 'machine-learning', 'artificial-intelligence', 'data-science', 'reinforcement-learning', 'kubernetes', 'tensorflow', 'pytorch', 'keras', 'mxnet', 'caffe', 'ml', 'k8s', 'jupyter', 'notebook', 'jupyterlab', 'pipelines', 'workflow', 'mlops', 'hyperparameter-optimization']",Python,https://polyaxon.com,polyaxon: MLOps Tools For Managing & Orchestrating The Machine Learning LifeCycle,polyaxon,2022-12-17,2022-11-11,2016-12-26,312,10.307692307692308,98,0,5,[],,5.58,6,0,73,1,0,25,25,6.0,0.0,90.0,0.0,111,40.37993 +319,gui,https://github.com/dddomodossola/remi,,,,dddomodossola/remi,remi,3185,390,119,"['python', 'gui-library', 'remi', 'platform-independent', 'ui', 'gui']",Python,,"remi: Python REMote Interface library. Platform independent. In about 100 Kbytes, perfect for your diet.",dddomodossola,2022-12-18,2022-11-23,2014-03-20,456,6.975907384230288,56,2,5,"['europeanspallationsourceeric', 'imtssrl']",,0.71,24,21,106,1,0,3,3,24.0,42.0,90.0,1.8,471,49.47621 +557,jupyter,https://github.com/executablebooks/jupyter-book,,,,executablebooks/jupyter-book,jupyter-book,3163,587,63,"['jupyter', 'sphinx-doc', 'documentation-generator']",Python,http://jupyterbook.org,"jupyter-book: Create beautiful, publication-quality books and documents from computational content.",executablebooks,2022-12-18,2022-12-09,2018-06-14,235,13.426925409338994,118,3,5,"['imperialcollegelondon', 'stanforduniversity', 'ucberkeley']",,1.63,107,37,55,0,4,8,4,107.0,197.0,90.0,1.8,139,53.37326 +99,ml,https://github.com/skvark/opencv-python,,,,skvark/opencv-python,opencv-python,3161,618,82,"['opencv', 'python', 'wheel', 'python-3', 'opencv-python', 'opencv-contrib-python', 'precompiled', 'pypi', 'manylinux']",Shell,https://pypi.org/project/opencv-python/,"opencv-python: Automated CI toolchain to produce precompiled opencv-python, opencv-python-headless, opencv-contrib-python and opencv-contrib-python-headless packages.",skvark,2022-12-18,2022-12-13,2016-04-08,349,9.04619787408013,40,2,5,"['softlandia-ltd', 'xperience.ai']",,0.75,50,30,82,0,6,10,6,50.0,105.0,90.0,2.1,1469,53.87962 +804,util,https://github.com/miguelgrinberg/python-socketio,,,,miguelgrinberg/python-socketio,python-socketio,3151,512,63,"['socket-io', 'socketio', 'socketio-server', 'websocket', 'long-polling', 'low-latency', 'web-server', 'python', 'asyncio', 'eventlet', 'gevent']",Python,,python-socketio: Python Socket.IO server and client,miguelgrinberg,2022-12-18,2022-12-08,2015-07-15,387,8.127118644067796,61,1,5,['untienots'],,1.19,51,43,90,0,0,12,12,51.0,105.0,90.0,2.1,285,52.06525 +250,web,https://github.com/websocket-client/websocket-client,,,,websocket-client/websocket-client,websocket-client,3133,724,88,"['websocket', 'websockets', 'websocket-client', 'websockets-client', 'python', 'rfc-6455']",Python,https://github.com/websocket-client/websocket-client,websocket-client: WebSocket client for Python,websocket-client,2022-12-17,2022-11-04,2010-12-28,624,5.013946044810242,205,3,5,"['piclo', 'redhat,inc', 'yacademy']",,0.96,32,26,146,2,7,6,7,32.0,57.0,90.0,1.8,986,56.86937 +832,pandas,https://github.com/blaze/blaze,,,,blaze/blaze,blaze,3118,386,200,[],Python,blaze.pydata.org,blaze: NumPy and Pandas interface to Big Data,blaze,2022-12-17,2019-08-15,2012-10-26,529,5.8893685914732865,65,4,5,"['awsthinkbox', 'coiled', 'formerlyquantopian', 'voltrondata']",,0.0,2,0,124,41,0,5,5,2.0,1.0,90.0,0.5,1860,41.24297 +182,testing,https://github.com/tox-dev/tox,,,,tox-dev/tox,tox,3115,452,40,"['testing', 'python', 'virtualenv', 'continuous-integration', 'cli', 'automation', 'venv', 'travis', 'appveyor', 'gitlab', 'circleci', 'azure-pipelines', 'hacktoberfest']",Python,https://tox.wiki,tox: Command line driven CI frontend and development task automation tool.,tox-dev,2022-12-16,2022-12-18,2016-09-17,326,9.546847635726795,26,3,5,"['bloomberglp', 'canonical', 'redhatansible']",,3.0,283,229,76,0,26,25,26,284.0,495.0,90.0,1.7,6182,62.32967 +35,data,https://github.com/jmcnamara/xlsxwriter,,,,jmcnamara/xlsxwriter,XlsxWriter,3115,592,121,"['python', 'xlsx-files', 'libxlsxwriter', 'pandas', 'charts', 'spreadsheet', 'xlsx', 'xlsxwriter']",Python,https://xlsxwriter.readthedocs.io,XlsxWriter: A Python module for creating Excel XLSX files.,jmcnamara,2022-12-16,2022-12-18,2013-01-04,519,5.996974697469747,47,1,5,['crunch.io'],,0.79,32,23,121,0,0,15,15,32.0,87.0,90.0,2.7,362,52.52992 +518,util,https://github.com/spack/spack,,,,spack/spack,spack,3102,1796,105,"['python', 'spack', 'package-manager', 'hpc', 'build-tools', 'radiuss', 'scientific-computing', 'macos', 'linux']",Python,https://spack.io,"spack: A flexible package manager that supports multiple versions, configurations, platforms, and compilers.",spack,2022-12-18,2022-12-18,2014-01-08,466,6.646464646464646,1314,3,5,"['llnl', 'np-complete', 'universityofillinoisaturbana-champaign']",,84.79,2517,1844,109,0,6,5,6,2515.0,5597.0,90.0,2.2,1578,77.96856 +443,gis,https://github.com/shapely/shapely,1.0,,,shapely/shapely,shapely,3100,501,82,[],Python,https://shapely.readthedocs.io/en/stable/,shapely: Manipulation and analysis of geometric objects,shapely,2022-12-18,2022-12-18,2011-12-31,572,5.416874687968048,140,3,5,"['gnsscience', 'nelen&schuurmans', 'planetlabs']",,3.21,221,143,134,0,14,9,14,221.0,488.0,90.0,2.2,135,60.42615 +0,data,https://github.com/andialbrecht/sqlparse,,,,andialbrecht/sqlparse,sqlparse,3091,613,93,[],Python,,sqlparse: A non-validating SQL parser module for Python,andialbrecht,2022-12-18,2022-09-23,2012-04-18,556,5.552219656145753,100,2,5,"['dyte-in,mafalda-sfu', 'pioneervalleybooks']",,0.46,27,4,130,3,0,3,3,27.0,36.0,90.0,1.3,2598,50.66783 +260,util,https://github.com/python-markdown/markdown,,,,python-markdown/markdown,markdown,3079,789,76,"['python-markdown', 'markdown', 'markdown-parser', 'markdown-to-html', 'python', 'python3']",Python,https://python-markdown.github.io/,markdown: A Python implementation of John Gruber’s Markdown with Extension support.,python-markdown,2022-12-17,2022-12-09,2010-05-29,655,4.698713756267713,164,2,5,"['rangle.io', 'theinterfacefinancialgroup']",,0.62,25,19,153,0,0,4,4,25.0,100.0,90.0,4.0,1745,59.48777 +384,nlp,https://github.com/minimaxir/gpt-2-simple,,,,minimaxir/gpt-2-simple,gpt-2-simple,3070,633,74,"['text-generation', 'tensorflow', 'openai', 'textgenrnn']",Python,,gpt-2-simple: Python package to easily retrain OpenAI's GPT-2 text-generating model on new texts,minimaxir,2022-12-18,2022-05-22,2019-04-13,192,15.965824665676077,21,2,5,"['buzzfeed', 'universityofnotredame']",,0.06,9,3,45,7,0,5,5,9.0,7.0,90.0,0.8,0,26.55902 +363,ml-ops,https://github.com/kubeflow/pipelines,,,,kubeflow/pipelines,pipelines,3069,1358,103,"['kubeflow-pipelines', 'mlops', 'kubeflow', 'machine-learning', 'kubernetes', 'pipeline', 'data-science']",Python,https://www.kubeflow.org/docs/components/pipelines/,pipelines: Machine Learning Pipelines for Kubeflow,kubeflow,2022-12-18,2022-12-17,2018-05-12,240,12.772294887039239,350,1,5,['google'],,14.87,577,245,56,0,30,28,30,577.0,1161.0,90.0,2.0,3456,67.56538 +140,nlp,https://github.com/neuml/txtai,,,,neuml/txtai,txtai,3059,273,54,"['python', 'search', 'machine-learning', 'nlp', 'deep-learning', 'document-search', 'audio-search', 'image-search', 'video-search', 'semantic-search', 'similarity-search', 'neural-search', 'contextual-search', 'vector-search', 'machine-learning-workflows', 'machine-learning-pipelines', 'microservice', 'api', 'cloud-native', 'txtai']",Python,https://neuml.github.io/txtai,txtai: 💡 Build AI-powered semantic search applications ,neuml,2022-12-18,2022-12-16,2020-08-09,123,24.84106728538283,8,2,5,"['bigtincan', 'neuml']",,7.63,68,57,29,0,11,11,11,68.0,99.0,90.0,1.5,3,40.01085 +138,ml-interpretability,https://github.com/pair-code/lit,1.0,,,pair-code/lit,lit,3043,322,71,"['machine-learning', 'natural-language-processing', 'visualization']",TypeScript,https://pair-code.github.io/lit,lit: The Learning Interpretability Tool: Interactively analyze ML models to understand their behavior in an extensible and framework agnostic interface.,pair-code,2022-12-18,2022-12-02,2020-07-28,124,24.371853546910756,27,2,5,"['deepmind', 'google']",,6.96,168,154,29,1,2,3,2,168.0,33.0,90.0,0.2,6,38.02059 +610,testing,https://github.com/seleniumbase/seleniumbase,,,,seleniumbase/seleniumbase,SeleniumBase,3027,726,119,"['python', 'selenium', 'webdriver', 'selenium-python', 'e2e-testing', 'seleniumbase', 'pytest-plugin', 'web-automation', 'pytest', 'behave', 'chrome', 'webkit', 'chromedriver', 'firefox', 'test']",Python,https://seleniumbase.io,SeleniumBase: Python framework for web automation and testing that extends Selenium.,seleniumbase,2022-12-18,2022-12-18,2014-03-04,458,6.596824408468244,35,2,5,"['https://www.iboss.com/', 'nausetconsulting']",,24.38,108,105,107,0,152,86,152,108.0,127.0,90.0,1.2,318,58.30856 +42,nlp,https://github.com/life4/textdistance,,,,life4/textdistance,textdistance,3015,240,61,"['distance', 'algorithm', 'python', 'textdistance', 'hamming-distance', 'levenshtein-distance', 'damerau-levenshtein', 'damerau-levenshtein-distance', 'algorithms', 'distance-calculation', 'jellyfish', 'diff', 'levenshtein']",Python,,"textdistance: Compute distance between sequences. 30+ algorithms, pure python implementation, common interface, optional external libs usage.",life4,2022-12-18,2022-09-18,2017-05-05,293,10.275073028237586,13,3,5,"['archlinux', 'sendcloud', 'universityofcambridge']",,0.79,0,0,68,3,3,2,3,0.0,0.0,90.0,0.0,73,32.26121 +336,ml,https://github.com/apple/coremltools,,,,apple/coremltools,coremltools,2999,481,110,"['coremltools', 'tensorflow', 'pytorch', 'coreml', 'machine-learning', 'model-converter', 'model-conversion']",Python,https://coremltools.readme.io,"coremltools: Core ML tools contain supporting tools for Core ML model conversion, editing, and validation.",apple,2022-12-17,2022-12-16,2017-06-30,285,10.507007007007006,143,1,5,['apple'],,2.0,312,236,67,0,5,6,5,312.0,465.0,90.0,1.5,49,51.19711 +698,util,https://github.com/joblib/joblib,,,,joblib/joblib,joblib,2994,357,63,"['python', 'parallel-computing', 'caching', 'multiprocessing', 'threading', 'memoization']",Python,http://joblib.readthedocs.org,joblib: Computing with Python functions.,joblib,2022-12-17,2022-11-25,2010-05-07,658,4.547190279887177,113,2,5,"['inria', 'inriasaclay-parietalteam']",,0.9,50,21,154,1,0,6,6,50.0,81.0,90.0,1.6,1999,55.63788 +348,ml-ops,https://github.com/evidentlyai/evidently,,,,evidentlyai/evidently,evidently,2986,325,32,"['data-drift', 'jupyter-notebook', 'pandas-dataframe', 'machine-learning', 'model-monitoring', 'html-report', 'production-machine-learning', 'machine-learning-operations', 'mlops', 'data-science', 'hacktoberfest']",Python,,evidently: Evaluate and monitor ML models from validation to production. Join our Discord: https://discord.com/invite/xZjKRaNp8b,evidentlyai,2022-12-18,2022-12-15,2020-11-25,107,27.721485411140584,31,2,5,"['evidentlyai', 'intento,evidentlyai']",,20.81,186,152,25,0,24,19,24,186.0,203.0,90.0,1.1,16,49.26592 +139,viz,https://github.com/vispy/vispy,,,,vispy/vispy,vispy,2985,604,121,"['hacktoberfest', 'python', 'opengl', 'visualization', 'closember']",Python,http://vispy.org,vispy: Main repository for Vispy,vispy,2022-12-17,2022-12-18,2013-03-21,508,5.86938202247191,182,4,5,"['independentsoftwareengineer', 'spacescienceandengineeringcenter(ssec)', 'universityofedinburgh', 'universityofwashington']",,3.31,79,47,119,0,6,3,6,79.0,326.0,90.0,4.1,125,61.27773 +285,crypto,https://github.com/ethereum/consensus-specs,,,,ethereum/consensus-specs,consensus-specs,2973,749,246,[],Python,,consensus-specs: Ethereum Proof-of-Stake Consensus Specifications,ethereum,2022-12-18,2022-12-14,2018-09-20,221,13.41779497098646,128,2,5,"['ctrl^t', 'oplabs']",,9.48,169,126,52,0,11,16,11,169.0,335.0,90.0,2.0,146,57.49323 +221,jupyter,https://github.com/jupyterlite/jupyterlite,,,,jupyterlite/jupyterlite,jupyterlite,2973,186,44,"['jupyter', 'jupyterlab', 'jupyterlab-extension', 'lite', 'webassembly', 'wasm', 'pyodide']",Python,https://jupyterlite.rtfd.io/en/latest/try/lab,jupyterlite: Wasm powered Jupyter running in the browser 💡,jupyterlite,2022-12-17,2022-12-14,2021-03-27,90,32.92879746835443,41,1,5,['quantstack'],,15.35,137,71,21,0,22,458,22,137.0,330.0,90.0,2.4,25,49.05449 +272,data,https://github.com/praw-dev/praw,,,,praw-dev/praw,praw,2962,449,72,"['python', 'reddit', 'api', 'oauth', 'praw', 'reddit-api']",Python,http://praw.readthedocs.io/,"PRAW, an acronym for ""Python Reddit API Wrapper"", is a python package that allows for simple access to Reddit's API.",praw-dev,2022-12-18,2022-12-09,2010-08-19,643,4.602441731409545,220,4,5,"['appfolio', 'billy', 'indeed', 'netflix']",,4.02,30,24,150,0,2,12,2,30.0,62.0,90.0,2.1,541,59.96511 +715,ml-ops,https://github.com/flyteorg/flyte,,,,flyteorg/flyte,flyte,2930,305,266,"['flyte', 'machine-learning', 'golang', 'scale', 'workflow', 'data-science', 'data-analysis', 'data', 'kubernetes-operator', 'kubernetes', 'orchestration-engine', 'mlops', 'dataops', 'grpc', 'python', 'battle-tested', 'production', 'production-grade', 'declarative', 'hacktoberfest']",Python,https://flyte.org,"flyte: Kubernetes-native workflow automation platform for complex, mission-critical data and ML processes at scale. It has been battle-tested at Lyft, Spotify, Freenome, and others and is truly open-source.",flyteorg,2022-12-18,2022-12-16,2019-10-21,165,17.757575757575758,110,2,5,"['flyteorg', 'unionai']",,5.98,375,172,38,0,31,25,31,376.0,569.0,90.0,1.5,31,54.33504 +381,ml-ops,https://github.com/aimhubio/aim,,,,aimhubio/aim,aim,2926,183,35,"['python', 'ai', 'data-science', 'data-visualization', 'experiment-tracking', 'machine-learning', 'metadata', 'metadata-tracking', 'ml', 'mlflow', 'mlops', 'pytorch', 'tensorboard', 'tensorflow', 'visualization']",TypeScript,https://aimstack.io,Aim 💫 — easy-to-use and performant open-source ML experiment tracker.,aimhubio,2022-12-18,2022-12-13,2019-05-31,185,15.779661016949152,48,3,5,"['aimhub', 'aimhubio', 'aimstack']",,13.19,332,236,43,0,45,42,45,332.0,521.0,90.0,1.6,33,55.40027 +623,util,https://github.com/suor/funcy,,,,suor/funcy,funcy,2923,133,73,"['functional-programming', 'utilities', 'python']",Python,,funcy: A fancy and practical functional tools,suor,2022-12-17,2022-08-25,2012-10-13,531,5.501747781661737,31,3,5,"['festicket', 'iress', 'obsidian-security']",,0.12,2,0,124,4,0,5,5,2.0,2.0,90.0,1.0,110,39.72755 +77,jupyter,https://github.com/quantopian/qgrid,,,,quantopian/qgrid,qgrid,2921,418,90,[],Python,,"qgrid: An interactive grid for sorting, filtering, and editing DataFrames in Jupyter notebooks",quantopian,2022-12-18,2020-04-07,2014-09-30,428,6.811125916055962,30,2,5,"['mongodb', 'sundellopensourceconsultingab']",,0.0,3,0,100,33,0,3,3,3.0,2.0,90.0,0.7,18,28.51022 +390,diffusion,https://github.com/openai/glide-text2im,,,,openai/glide-text2im,glide-text2im,2908,408,119,[],Python,,glide-text2im: GLIDE: a diffusion-based text-conditional image synthesis model,openai,2022-12-18,2022-03-21,2021-12-10,53,54.42780748663102,4,1,5,['texasa&mcenterforappliedtechnology'],,0.04,1,0,12,9,0,0,0,1.0,0.0,90.0,0.0,0,9.03597 +704,data,https://github.com/pyeve/cerberus,,,,pyeve/cerberus,cerberus,2890,226,48,"['python', 'data-validation']",Python,http://python-cerberus.org,"cerberus: Lightweight, extensible data validation library for Python",pyeve,2022-12-17,2021-05-05,2012-10-10,531,5.4352498656636214,62,1,5,['cir2000'],,0.0,9,4,124,20,0,2,2,9.0,9.0,90.0,1.0,144,35.6697 +476,gis,https://github.com/holoviz/datashader,1.0,,,holoviz/datashader,datashader,2887,361,95,"['holoviz', 'datashader', 'data-visualizations', 'rasterization']",Python,http://datashader.org,datashader: Quickly and accurately render even the largest data.,holoviz,2022-12-17,2022-12-16,2015-12-23,364,7.915785350567959,51,3,5,"['anaconda', 'stripe', 'voltrondata']",,1.56,54,41,85,0,4,14,4,54.0,53.0,90.0,1.0,17,46.58995 +660,ml,https://github.com/pytorch/glow,,,,pytorch/glow,glow,2882,655,154,[],C++,,glow: Compiler for Neural Network hardware accelerators,pytorch,2022-12-18,2022-12-16,2017-09-29,272,10.578919769271106,332,1,5,['facebook'],,3.33,52,16,64,0,0,0,0,52.0,95.0,90.0,1.8,3085,55.65613 +366,ml,https://github.com/facebookresearch/vissl,,,,facebookresearch/vissl,vissl,2877,300,53,[],Jupyter Notebook,https://vissl.ai,"VISSL is FAIR's library of extensible, modular and scalable components for SOTA Self-Supervised Learning with images.",facebookresearch,2022-12-16,2022-10-12,2020-04-09,140,20.466463414634145,34,3,5,"['google', 'meta', 'mosaicml']",,1.92,9,3,33,2,0,1,1,9.0,9.0,90.0,1.0,429,42.00235 +811,ml-ops,https://github.com/ploomber/ploomber,,,,ploomber/ploomber,ploomber,2874,199,27,"['workflow', 'machine-learning', 'data-science', 'data-engineering', 'mlops', 'papermill', 'jupyter', 'jupyter-notebooks', 'pipelines', 'vscode', 'pycharm', 'notebooks', 'hacktoberfest']",Python,https://ploomber.io,"ploomber: The fastest ⚡️ way to build data pipelines. Develop iteratively, deploy anywhere. ☁️",ploomber,2022-12-17,2022-12-16,2020-01-20,152,18.907894736842106,70,1,5,['ploomber'],,13.5,68,42,35,0,0,36,36,68.0,95.0,90.0,1.4,15,48.61145 +765,diffusion,https://github.com/lkwq007/stablediffusion-infinity,,,,lkwq007/stablediffusion-infinity,stablediffusion-infinity,2832,220,29,"['outpainting', 'stablediffusion']",Python,,stablediffusion-infinity: Outpainting with Stable Diffusion on an infinite canvas,lkwq007,2022-12-18,2022-12-13,2022-09-02,15,183.55555555555554,6,1,5,['cuhk'],,4.29,123,65,4,0,0,9,9,123.0,352.0,90.0,2.9,10,35.96787 +624,util,https://github.com/more-itertools/more-itertools,,,,more-itertools/more-itertools,more-itertools,2825,221,35,[],Python,https://more-itertools.rtfd.io,"more-itertools: More routines for operating on iterables, beyond itertools",more-itertools,2022-12-17,2022-12-05,2012-04-26,555,5.084854718436616,92,3,5,"['mozilla', 'universityofoxford', 'wurlinc']",,1.31,25,22,130,0,3,4,3,25.0,30.0,90.0,1.2,420,53.58365 +761,sim,https://github.com/qiskit/qiskit,,,,qiskit/qiskit,qiskit,2821,756,97,"['qiskit', 'quantum-computing', 'quantum-programming-language', 'documentation']",OpenQASM,https://qiskit.org,"Qiskit is an open-source SDK for working with quantum computers at the level of circuits, algorithms, and application modules.",qiskit,2022-12-18,2022-12-12,2018-12-12,209,13.451634877384196,155,1,5,['ibm'],,1.4,49,37,49,0,16,21,16,49.0,53.0,90.0,1.1,4225,56.82784 +261,time-series,https://github.com/salesforce/merlion,,,,salesforce/merlion,Merlion,2817,242,45,"['time-series', 'anomaly-detection', 'forecasting', 'machine-learning', 'benchmarking', 'automl', 'ensemble-learning']",Python,,Merlion: A Machine Learning Framework for Time Series Intelligence,salesforce,2022-12-18,2022-12-10,2021-07-28,72,38.74066797642436,13,2,5,"['salesforce', 'twilio']",,0.92,18,13,17,0,11,11,11,18.0,22.0,90.0,1.2,39,39.13298 +270,web,https://github.com/strawberry-graphql/strawberry,,,,strawberry-graphql/strawberry,strawberry,2808,345,44,"['graphql', 'graphql-server', 'python', 'starlette', 'asyncio', 'mypy', 'django', 'graphql-library', 'asgi', 'graphql-schema', 'strawberry', 'hacktoberfest']",Python,https://strawberry.rocks,strawberry: A GraphQL library for Python that leverages type annotations 🍓,strawberry-graphql,2022-12-18,2022-12-13,2018-12-21,208,13.472241261137766,166,2,5,"['apollographql', 'strawberry-graphql']",,12.23,350,210,49,0,178,123,178,350.0,691.0,90.0,2.0,90,59.89905 +787,study,https://github.com/cosmicpython/book,,,,cosmicpython/book,book,2806,481,93,[],Python,https://www.cosmicpython.com,"book: A Book about Pythonic Application Architecture Patterns for Managing Complexity. Cosmos is the Opposite of Chaos you see. O'R. wouldn't actually let us call it ""Cosmic Python"" tho.",cosmicpython,2022-12-18,2022-10-03,2019-02-05,201,13.900920028308564,44,2,5,"['carbon-re', ""o'reillymedia""]",,0.15,3,2,47,3,0,0,0,3.0,2.0,90.0,0.7,6,29.69672 +154,pandas,https://github.com/adamerose/pandasgui,,,,adamerose/pandasgui,PandasGUI,2796,190,53,"['pandas', 'dataframe', 'gui', 'viewer']",Python,,PandasGUI: A GUI for Pandas DataFrames,adamerose,2022-12-17,2022-03-16,2019-06-12,183,15.219284603421462,13,1,5,['dionresearch'],,0.06,7,1,43,9,0,12,12,7.0,2.0,90.0,0.3,30,28.18837 +792,ml-dl,https://github.com/facebookincubator/aitemplate,,,,facebookincubator/aitemplate,AITemplate,2789,184,79,[],Python,,AITemplate is a Python framework which renders neural network into high performance CUDA/HIP C++ code. Specialized for FP16 TensorCore (NVIDIA GPU) and MatrixCore (AMD GPU) inference.,facebookincubator,2022-12-18,2022-12-17,2022-07-15,22,124.35031847133757,18,1,5,['facebook'],,0.56,128,88,5,0,1,2,1,128.0,328.0,90.0,2.6,0,29.81618 +488,util,https://github.com/pydata/xarray,,,,pydata/xarray,xarray,2788,857,107,"['python', 'netcdf', 'numpy', 'pandas', 'xarray', 'dask']",Python,https://xarray.dev,xarray: N-D labeled arrays and datasets in Python,pydata,2022-12-18,2022-12-18,2013-09-30,481,5.796257796257796,407,3,5,"['google', 'mathandstatsdepartment', 'ncar']",,9.54,448,256,112,0,9,8,9,448.0,1120.0,90.0,2.5,1142,69.11638 +729,ml-dl,https://github.com/mosaicml/composer,,,,mosaicml/composer,composer,2782,174,21,"['deep-learning', 'pytorch', 'neural-networks', 'ml-systems', 'ml-efficiency', 'ml-training', 'machine-learning', 'neural-network']",Python,http://docs.mosaicml.com,composer: Train neural networks up to 7x faster,mosaicml,2022-12-18,2022-12-17,2021-10-12,61,44.97459584295612,54,2,5,"['mosaicml', ""stanford'22""]",,24.19,357,327,14,0,14,24,14,357.0,326.0,90.0,0.9,21,49.75918 +203,viz,https://github.com/ml-tooling/opyrator,,,,ml-tooling/opyrator,opyrator,2759,132,48,"['fastapi', 'streamlit', 'pydantic', 'python', 'microservices', 'serverless', 'faas', 'functions', 'python-functions', 'machine-learning', 'deployment', 'type-hints']",Python,https://opyrator-playground.mltooling.org,"opyrator: 🪄 Turns your machine learning code into microservices with web API, interactive GUI, and more.",ml-tooling,2022-12-18,2021-05-06,2021-04-06,88,31.04983922829582,4,0,5,[],,0.0,10,5,21,20,0,6,6,10.0,8.0,90.0,0.8,7,17.14944 +156,profiling,https://github.com/gaogaotiantian/viztracer,,,,gaogaotiantian/viztracer,viztracer,2756,276,40,"['tracer', 'python3', 'debugging', 'profiling', 'visualization', 'flamegraph', 'python', 'logging']",Python,https://viztracer.readthedocs.io/,VizTracer is a low-overhead logging/debugging/profiling tool that can trace and visualize your python code execution.,gaogaotiantian,2022-12-18,2022-12-08,2020-08-05,123,22.27713625866051,17,2,5,"['facebookairesearch', 'microsoft']",,1.21,26,22,29,0,8,32,8,26.0,57.0,90.0,2.2,4,39.2533 +641,testing,https://github.com/behave/behave,,,,behave/behave,behave,2739,608,120,[],Python,,"behave: BDD, Python style.",behave,2022-12-17,2022-12-10,2011-10-25,581,4.707341026270562,85,2,5,"['painless-software', 'smartsgroupmarketsurveillance,nasdaqomx']",,1.19,62,31,136,0,0,2,2,62.0,99.0,90.0,1.6,391,52.77193 +709,pandas,https://github.com/nalepae/pandarallel,1.0,,,nalepae/pandarallel,pandarallel,2733,166,26,"['pandas', 'python', 'parallel']",Python,https://nalepae.github.io/pandarallel,pandarallel: A simple and efficient tool to parallelize Pandas operations on all available CPUs,nalepae,2022-12-18,2022-12-06,2019-03-10,197,13.86304347826087,22,4,5,"['boatboatboat', 'caddi', 'https://www.kiln.fi/', 'swissdatasciencecenter']",,0.87,26,14,46,0,8,10,8,26.0,48.0,90.0,1.8,4,42.39175 +170,ml,https://github.com/ourownstory/neural_prophet,,,,ourownstory/neural_prophet,neural_prophet,2702,363,47,"['forecasting', 'time-series', 'machine-learning', 'fbprophet', 'prophet', 'forecast', 'artificial-intelligence', 'prediction', 'trend', 'seasonality', 'autoregression', 'pytorch', 'timeseries', 'forecasting-algorithm', 'forecasting-model', 'neuralprophet', 'neural', 'neural-network', 'python', 'deep-learning']",Python,https://neuralprophet.com,neural_prophet: NeuralProphet: A simple forecasting package,ourownstory,2022-12-17,2022-12-15,2020-05-04,137,19.722627737226276,34,2,5,"['stanforduniversity', 'technicaluniversityofmunich']",,6.9,314,251,32,0,7,6,7,314.0,588.0,90.0,1.9,19,48.70117 +34,nlp,https://github.com/jbesomi/texthero,,,,jbesomi/texthero,texthero,2659,226,44,"['text-preprocessing', 'text-representation', 'text-visualization', 'nlp', 'word-embeddings', 'machine-learning', 'text-mining', 'nlp-pipeline', 'text-clustering', 'texthero']",Python,https://texthero.org,"texthero: Text preprocessing, representation and visualization from zero to hero.",jbesomi,2022-12-18,2022-10-28,2020-04-06,141,18.858156028368793,20,2,5,"['aaltouniversity', 'imctrading']",,0.04,3,1,33,2,0,2,2,3.0,3.0,90.0,1.0,29,32.25968 +130,ml-dl,https://github.com/explosion/thinc,,,,explosion/thinc,thinc,2635,259,85,"['machine-learning', 'deep-learning', 'artificial-intelligence', 'ai', 'python', 'nlp', 'natural-language-processing', 'spacy', 'machine-learning-library', 'type-checking', 'functional-programming', 'pytorch', 'tensorflow', 'mxnet', 'jax']",Python,https://thinc.ai,"thinc: 🔮 A refreshing functional take on deep learning, compatible with your favorite libraries",explosion,2022-12-17,2022-12-16,2014-10-16,426,6.177160080375084,57,2,5,"['explosion&oxykodit', 'founderexplosion']",,3.29,58,50,100,0,11,11,11,58.0,67.0,90.0,1.2,255,53.66351 +113,nlp,https://github.com/huggingface/neuralcoref,,,,huggingface/neuralcoref,neuralcoref,2630,461,96,"['python', 'machine-learning', 'coreference', 'spacy', 'coreference-resolution', 'spacy-extension', 'spacy-pipeline', 'nlp', 'neural-networks', 'pytorch']",C,https://huggingface.co/coref/,neuralcoref: ✨Fast Coreference Resolution in spaCy with Neural Networks,huggingface,2022-12-12,2021-06-22,2017-07-03,285,9.228070175438596,21,3,5,"['explosion&oxykodit', 'filamentai', 'huggingface']",,0.0,7,2,66,18,0,1,1,7.0,10.0,90.0,1.4,26,31.48861 +111,ml,https://github.com/teamhg-memex/eli5,,,,teamhg-memex/eli5,eli5,2618,326,68,"['scikit-learn', 'machine-learning', 'xgboost', 'lightgbm', 'crfsuite', 'inspection', 'explanation', 'nlp', 'data-science', 'python']",Jupyter Notebook,http://eli5.readthedocs.io,eli5: A library for debugging/inspecting machine learning classifiers and explaining their predictions,teamhg-memex,2022-12-18,2020-01-22,2016-09-15,326,8.016622922134733,14,3,5,"['canva', 'zyte', 'zytedata,scrapinghub']",,0.0,7,1,76,35,0,4,4,7.0,4.0,90.0,0.6,13,27.66132 +801,data,https://github.com/pallets/itsdangerous,,,,pallets/itsdangerous,itsdangerous,2593,213,57,"['python', 'security', 'hmac', 'serialization', 'itsdangerous', 'pallets']",Python,https://itsdangerous.palletsprojects.com,itsdangerous: Safely pass trusted data to untrusted environments and back.,pallets,2022-12-18,2022-11-01,2011-06-24,599,4.325786463298379,41,1,5,['sentry'],,0.67,8,7,140,2,3,3,3,8.0,2.0,90.0,0.2,598,41.33771 +85,graph,https://github.com/stellargraph/stellargraph,,,,stellargraph/stellargraph,stellargraph,2572,396,62,"['graphs', 'machine-learning', 'machine-learning-algorithms', 'graph-convolutional-networks', 'networkx', 'geometric-deep-learning', 'saliency-map', 'interpretability', 'heterogeneous-networks', 'graph-neural-networks', 'graph-analysis', 'graph-machine-learning', 'gcn', 'link-prediction', 'stellargraph-library', 'graph-data', 'python', 'deep-learning', 'data-science']",Python,https://stellargraph.readthedocs.io/,StellarGraph - Machine Learning on Graphs,stellargraph,2022-12-16,2021-10-29,2018-04-13,244,10.52250146113384,36,3,5,"['data61', 'exoflare', 'xoflare']",,0.0,12,4,57,14,0,6,6,12.0,9.0,90.0,0.8,177,38.23575 +539,nlp,https://github.com/huawei-noah/pretrained-language-model,,,,huawei-noah/pretrained-language-model,Pretrained-Language-Model,2562,550,52,"['knowledge-distillation', 'model-compression', 'quantization', 'pretrained-models', 'large-scale-distributed']",Python,,Pretrained-Language-Model: Pretrained language model and its related optimization techniques developed by Huawei Noah's Ark Lab.,huawei-noah,2022-12-18,2022-11-21,2019-12-02,159,16.11320754716981,19,1,5,['huawei-noah'],,0.38,23,4,37,1,0,0,0,23.0,20.0,90.0,0.9,2,27.44788 +611,debug,https://github.com/inducer/pudb,,,,inducer/pudb,pudb,2559,215,46,"['python', 'debugger', 'pytest', 'pytest-plugin', 'pdb', 'ipython', 'bpython', 'urwid', 'debug']",Python,https://documen.tician.de/pudb/,pudb: Full-screen console debugger for Python,inducer,2022-12-17,2022-11-20,2011-05-13,605,4.226757904672015,91,3,5,"['quansight', 'scalableminds', 'scientificcomputing,csuiuc']",,0.96,24,13,141,1,2,6,2,24.0,35.0,90.0,1.5,428,51.26641 +159,data,https://github.com/goldsmith/wikipedia,,,,goldsmith/wikipedia,Wikipedia,2532,514,82,[],Python,https://wikipedia.readthedocs.org/,Wikipedia: A Pythonic wrapper for the Wikipedia API,goldsmith,2022-12-18,2020-10-09,2013-08-20,486,5.200704225352113,23,2,5,"['localkitchens', 'nationalradioastronomyobservatory']",,0.0,10,3,114,27,0,0,0,10.0,10.0,90.0,1.0,81,31.09134 +428,util,https://github.com/pycqa/flake8,,,,pycqa/flake8,flake8,2524,255,33,"['python', 'python3', 'static-analysis', 'static-code-analysis', 'linter', 'linter-flake8', 'stylelint', 'styleguide', 'style-guide', 'flake8', 'pep8', 'complexity-analysis']",Python,https://flake8.pycqa.org,"flake8 is a python tool that glues together pycodestyle, pyflakes, mccabe, and third-party plugins to check the style and quality of some python code.",pycqa,2022-12-18,2022-12-14,2014-09-13,431,5.852268963232858,172,3,5,"['bloomberg', 'elastic', 'tableau&salesforce']",,2.38,92,86,101,0,0,10,10,92.0,141.0,90.0,1.5,14344,66.0013 +369,nlp,https://github.com/bytedance/lightseq,,,,bytedance/lightseq,lightseq,2518,281,51,"['inference', 'transformer', 'beam-search', 'bert', 'cuda', 'sampling', 'diverse-decoding', 'multilingual-nmt', 'training', 'bart', 'gpt', 'accelerate']",C++,,LightSeq: A High Performance Library for Sequence Processing and Generation,bytedance,2022-12-18,2022-12-07,2019-12-06,158,15.893597835888187,14,5,5,"['bytedance', 'bytedance,ailab', 'bytedanceailab', 'bytedanceantnlp', 'universityofillinoisaturbana-champaign']",,1.25,69,35,37,0,3,4,3,69.0,99.0,90.0,1.4,2,40.1442 +94,term,https://github.com/urwid/urwid,,,,urwid/urwid,urwid,2518,310,60,[],Python,urwid.org,urwid: Console user interface library for Python (official repo),urwid,2022-12-18,2022-07-12,2010-02-25,668,3.766239316239316,116,1,5,"['newfirepartners,mediwareinc,holmusk,unitio-org,urwid']",,0.04,8,2,156,17,0,4,4,8.0,7.0,90.0,0.9,56,36.41909 +433,pandas,https://github.com/pydata/pandas-datareader,,,,pydata/pandas-datareader,pandas-datareader,2506,620,132,"['html', 'data-analysis', 'data', 'dataset', 'stock-data', 'finance', 'financial-data', 'python', 'pydata', 'pandas', 'econdb', 'fama-french', 'economic-data', 'fred']",Python,https://pydata.github.io/pandas-datareader/stable/index.html,pandas-datareader: Extract data from a wide range of Internet sources into a pandas DataFrame.,pydata,2022-12-17,2022-03-16,2015-01-15,413,6.059412780656304,85,0,5,[],,0.04,17,1,96,9,0,3,3,17.0,32.0,90.0,1.9,118,35.98206 +675,ml-dl,https://github.com/saharmor/dalle-playground,,,,saharmor/dalle-playground,dalle-playground,2500,561,28,"['dall-e', 'openai', 'gan', 'text-to-image', 'transformers', 'artificial', 'artificial-intelligence', 'machine-learning', 'dalle', 'dalle-mini', 'stable-diffusion']",Jupyter Notebook,,dalle-playground: A playground to generate images from any text prompt using Stable Diffusion (past: using DALL-E Mini),saharmor,2022-12-18,2022-12-02,2021-09-13,66,37.878787878787875,10,3,5,"['bitly', 'highfalootintechnologycorp.', 'saamaresearch']",,2.15,21,16,15,1,0,0,0,21.0,20.0,90.0,1.0,0,27.5134 +553,ml-dl,https://github.com/pytorch/botorch,,,,pytorch/botorch,botorch,2477,295,51,[],Jupyter Notebook,https://botorch.org/,botorch: Bayesian optimization in PyTorch,pytorch,2022-12-14,2022-12-16,2018-07-30,229,10.816593886462883,86,2,5,"['facebook', 'meta']",,6.17,156,116,53,0,11,7,11,156.0,607.0,90.0,3.9,1061,61.32058 +98,data,https://github.com/zoomeranalytics/xlwings,,,,zoomeranalytics/xlwings,xlwings,2466,450,119,"['python', 'excel', 'reporting', 'automation', 'googlesheets', 'google-sheets']",Python,https://www.xlwings.org,xlwings is a Python library that makes it easy to call Python from Excel and vice versa. It works with Excel on Windows and macOS as well as with Google Sheets and Excel on the web. ,zoomeranalytics,2022-12-16,2022-12-15,2014-03-17,457,5.3960612691466086,57,1,5,['xlwings'],,4.27,122,69,107,0,27,16,27,122.0,161.0,90.0,1.3,55,51.82579 +845,time-series,https://github.com/tdameritrade/stumpy,,,,tdameritrade/stumpy,stumpy,2463,239,51,"['data-science', 'time-series-analysis', 'dask', 'numba', 'python', 'anomaly-detection', 'pattern-matching', 'pydata', 'matrix-profile', 'motif-discovery', 'time-series-segmentation', 'time-series-data-mining']",Python,https://stumpy.readthedocs.io/en/latest/,STUMPY is a powerful and scalable Python library for modern time series analysis,tdameritrade,2022-12-17,2022-12-18,2019-05-03,189,13.002262443438914,32,1,5,['nvidia'],,4.15,79,58,44,0,3,7,3,79.0,556.0,90.0,7.0,12,46.92848 +431,viz,https://github.com/holoviz/panel,,,,holoviz/panel,panel,2438,313,48,"['holoviz', 'panel', 'dashboards', 'control-panels', 'gui']",Python,https://panel.holoviz.org,panel: A high-level app and dashboarding solution for Python,holoviz,2022-12-18,2022-12-18,2018-08-23,225,10.808106396453452,111,3,5,"['anaconda', 'cea', 'data,modelsandanalytics']",,13.71,450,272,53,0,6,103,6,450.0,654.0,90.0,1.5,55,56.87378 +600,gis,https://github.com/giswqs/geemap,,,,giswqs/geemap,geemap,2428,904,96,"['google-earth-engine', 'gis', 'remote-sensing', 'image-processing', 'python', 'jupyter-notebook', 'ipyleaflet', 'mapping', 'earth-engine', 'ipywidgets', 'folium', 'jupyter', 'colab', 'geospatial', 'landsat', 'dataviz', 'data-science', 'streamlit', 'streamlit-webapp', 'earthengine']",Python,https://geemap.org,"geemap: A Python package for interactive mapping with Google Earth Engine, ipyleaflet, and ipywidgets.",giswqs,2022-12-18,2022-12-05,2020-03-08,145,16.728346456692915,35,4,5,"['christianclauss', 'faoopenforis', 'google', 'universityoftennessee']",,8.23,54,51,34,0,53,47,53,54.0,102.0,90.0,1.9,16,51.27888 +172,viz,https://github.com/facebookresearch/hiplot,,,,facebookresearch/hiplot,hiplot,2385,120,28,[],TypeScript,https://facebookresearch.github.io/hiplot/,HiPlot makes understanding high dimensional data easy,facebookresearch,2022-12-15,2022-12-05,2019-11-08,162,14.683377308707124,8,1,5,['opensourcedevrelfacebook'],,0.48,17,17,38,0,0,13,13,17.0,15.0,90.0,0.9,412,41.35194 +886,study,https://github.com/huggingface/deep-rl-class,,,,huggingface/deep-rl-class,deep-rl-class,2373,285,90,"['deep-reinforcement-learning', 'reinforcement-learning', 'reinforcement-learning-excercises', 'deep-learning']",Jupyter Notebook,,deep-rl-class: This repo contain the syllabus of the Hugging Face Deep Reinforcement Learning Class.,huggingface,2022-12-18,2022-12-18,2022-04-21,34,68.64049586776859,35,1,5,['huggingface'],,7.21,63,43,8,0,0,0,0,63.0,113.0,90.0,1.8,5,35.34288 +708,ml,https://github.com/mljar/mljar-supervised,,,,mljar/mljar-supervised,mljar-supervised,2372,313,42,"['automl', 'machine-learning', 'automatic-machine-learning', 'mljar', 'data-science', 'scikit-learn', 'hyperparameter-optimization', 'feature-engineering', 'xgboost', 'random-forest', 'neural-network', 'lightgbm', 'catboost', 'ensemble', 'tuning-algorithm', 'models-tuning', 'hyper-parameters', 'decision-tree', 'shap', 'automated-machine-learning']",Python,https://mljar.com,"mljar-supervised: Python package for AutoML on Tabular Data with Feature Engineering, Hyper-Parameters Tuning, Explanations and Automatic Documentation",mljar,2022-12-17,2022-12-14,2018-11-05,215,11.032558139534883,20,3,5,"['bitspilanihyderabadcampus', 'mljar', 'otterclamfinance']",,0.44,32,10,50,0,3,12,3,32.0,82.0,90.0,2.6,49,44.4732 +174,util,https://github.com/liiight/notifiers,,,,liiight/notifiers,notifiers,2351,91,33,"['python', 'notifications', 'notifier', 'notification-service', 'python3', 'pypi']",Python,http://notifiers.readthedocs.io/,notifiers: The easy way to send notifications,liiight,2022-12-18,2022-07-14,2017-06-01,289,8.118894918598915,19,2,5,"['pyupio', 'totango']",,1.31,2,0,68,5,0,5,5,2.0,0.0,90.0,0.0,6,28.52875 +129,viz,https://github.com/holoviz/holoviews,,,,holoviz/holoviews,holoviews,2341,364,63,"['holoviz', 'holoviews', 'plotting']",Python,https://holoviews.org,"holoviews: With Holoviews, your data visualizes itself.",holoviz,2022-12-17,2022-12-18,2014-05-07,449,5.205527318932655,126,1,5,['anaconda'],,2.62,237,108,105,0,6,41,6,237.0,294.0,90.0,1.2,40,50.91025 +136,nlp,https://github.com/ddangelov/top2vec,,,,ddangelov/top2vec,Top2Vec,2339,326,39,"['topic-modeling', 'word-embeddings', 'document-embedding', 'topic-vector', 'topic-search', 'text-search', 'text-semantic-similarity', 'topic-modelling', 'semantic-search', 'bert', 'top2vec', 'sentence-transformers', 'sentence-encoder', 'pre-trained-language-models']",Python,,"Top2Vec learns jointly embedded topic, document and word vectors.",ddangelov,2022-12-18,2022-04-03,2020-03-20,143,16.30776892430279,2,0,5,[],,0.17,53,37,33,9,1,8,1,53.0,46.0,90.0,0.9,21,21.07462 +858,jupyter,https://github.com/jupyter/nbdime,,,,jupyter/nbdime,nbdime,2339,154,43,"['jupyterlab-extension', 'jupyter', 'jupyter-notebook', 'diff', 'diffing', 'merge', 'git', 'hg', 'mercurial', 'mergetool', 'merge-driver', 'vcs', 'version-control']",Python,http://nbdime.readthedocs.io,nbdime: Tools for diffing and merging of Jupyter notebooks.,jupyter,2022-12-17,2022-11-24,2015-11-16,370,6.321621621621621,41,4,5,"['ibmcodait', 'quantstack', 'simularesearchlaboratory', 'willingconsulting']",,0.1,29,7,86,1,0,9,9,29.0,29.0,90.0,1.0,402,49.2315 +809,web,https://github.com/fastapi-users/fastapi-users,,,,fastapi-users/fastapi-users,fastapi-users,2323,239,33,"['python', 'starlette', 'fastapi', 'async', 'asyncio', 'users', 'fastapi-users']",Python,https://fastapi-users.github.io/fastapi-users/,fastapi-users: Ready-to-use and customizable users management for FastAPI,fastapi-users,2022-12-18,2022-11-04,2019-10-05,167,13.886421861656704,53,3,5,"['beemydesk', 'fitctuinprague', 'quantstack']",,2.96,19,19,39,1,32,28,32,19.0,20.0,90.0,1.1,134,49.4776 +875,perf,https://github.com/ipython/ipyparallel,,,,ipython/ipyparallel,ipyparallel,2319,949,119,"['parallel', 'jupyter', 'python']",Jupyter Notebook,https://ipyparallel.readthedocs.io/,ipyparallel: IPython Parallel: Interactive Parallel Computing in Python,ipython,2022-12-18,2022-11-22,2015-04-09,401,5.774813233724653,112,4,5,"['amazonwebservices', 'ardoq', 'simularesearchlaboratory', 'universityofcalifornia,berkeley.']",,2.29,19,16,94,1,0,7,7,19.0,9.0,90.0,0.5,318,52.2495 +51,testing,https://github.com/nedbat/coveragepy,,,,nedbat/coveragepy,coveragepy,2305,331,28,[],Python,https://coverage.readthedocs.io,coveragepy: The code coverage tool for Python,nedbat,2022-12-18,2022-12-18,2018-06-23,234,9.838414634146341,142,2,5,"['freelancer,upforhire', 'shoobx']",,8.65,134,89,55,0,13,24,13,134.0,400.0,90.0,3.0,9969,66.43243 +691,ml-dl,https://github.com/nerdyrodent/vqgan-clip,,,,nerdyrodent/vqgan-clip,VQGAN-CLIP,2304,401,53,"['text2image', 'text-to-image']",Python,,"VQGAN-CLIP: Just playing with getting VQGAN+CLIP running locally, rather than having to use colab.",nerdyrodent,2022-12-18,2022-10-02,2021-07-02,76,30.145794392523364,7,2,5,"['azéotropecanada', 'censys']",,0.1,2,2,18,3,0,0,0,2.0,2.0,90.0,1.0,0,19.57784 +296,sim,https://github.com/openai/mujoco-py,,,,openai/mujoco-py,mujoco-py,2300,715,161,[],Cython,,"mujoco-py: MuJoCo is a physics engine for detailed, efficient rigid body simulations with contacts. mujoco-py allows using MuJoCo from Python 3.",openai,2022-12-17,2022-11-17,2016-04-24,347,6.625514403292181,33,2,5,"['millionintegrals', 'openai']",,0.02,33,4,81,1,0,1,1,33.0,23.0,90.0,0.7,34,37.68593 +246,util,https://github.com/pyston/pyston,,,,pyston/pyston,pyston,2295,83,32,[],Python,https://www.pyston.org/,pyston: A faster and highly-compatible implementation of the Python programming language.,pyston,2022-12-17,2022-11-23,2021-03-01,94,24.414893617021278,1035,4,5,"['fzjülich', 'keepertech', 'microsoft', 'mutableminds']",,5.1,22,10,22,1,4,261,4,22.0,30.0,90.0,1.4,9,50.685 +866,ml-ops,https://github.com/mage-ai/mage-ai,1.0,,,mage-ai/mage-ai,mage-ai,2287,203,40,"['machine-learning', 'artificial-intelligence', 'data', 'data-engineering', 'data-science', 'python', 'elt', 'etl', 'pipelines', 'data-pipelines', 'orchestration', 'data-integration', 'sql', 'spark', 'dbt', 'pipeline', 'reverse-etl', 'transformation']",Python,https://www.mage.ai/,mage-ai: 🧙 A modern replacement for Airflow.,mage-ai,2022-12-18,2022-12-18,2022-05-16,31,73.7741935483871,19,1,5,['mage'],,37.4,525,488,7,0,0,0,0,525.0,134.0,90.0,0.3,18,37.98631 +696,ml-dl,https://github.com/deepmind/dm-haiku,,,,deepmind/dm-haiku,dm-haiku,2285,192,37,"['machine-learning', 'neural-networks', 'jax', 'deep-learning', 'deep-neural-networks']",Python,https://dm-haiku.readthedocs.io,dm-haiku: JAX-based neural network library,deepmind,2022-12-18,2022-12-09,2020-02-18,147,15.454106280193237,68,2,5,"['deepmind', 'openai']",,2.69,64,39,34,0,4,4,4,64.0,40.0,90.0,0.6,34,44.70434 +814,data,https://github.com/deepchecks/deepchecks,,,,deepchecks/deepchecks,deepchecks,2282,159,13,"['machine-learning', 'ml', 'model-validation', 'data-validation', 'mlops', 'data-science', 'python', 'jupyter-notebook', 'model-monitoring', 'data-drift', 'html-report', 'deep-learning', 'pytorch', 'pandas-dataframe']",Python,https://docs.deepchecks.com,deepchecks: Tests for Continuous Validation of ML Models & Data. Deepchecks is a Python package for comprehensively validating your machine learning models and data with minimal effort.,deepchecks,2022-12-18,2022-12-12,2021-10-11,62,36.806451612903224,37,2,5,"['deepchecks', 'starnavi']",,17.17,255,169,14,0,35,42,35,255.0,269.0,90.0,1.1,5,46.64 +145,ml,https://github.com/nmslib/hnswlib,,,,nmslib/hnswlib,hnswlib,2269,419,62,[],C++,https://github.com/nmslib/hnswlib,hnswlib: Header-only C++/python library for fast approximate nearest neighbors,nmslib,2022-12-18,2022-04-16,2017-07-06,284,7.973393574297189,56,1,5,['twittercortex'],,0.25,18,6,66,8,2,1,2,18.0,27.0,90.0,1.5,24,34.87223 +735,data,https://github.com/ibis-project/ibis,1.0,,,ibis-project/ibis,ibis,2231,375,77,"['python', 'impala', 'pandas', 'spark', 'database', 'clickhouse', 'postgresql', 'sqlite', 'mysql', 'datafusion', 'sql', 'pyspark', 'dask', 'duckdb', 'bigquery', 'sqlalchemy', 'pyarrow', 'arrow', 'mssql', 'polars']",Python,http://ibis-project.org,ibis: Expressive analytics in Python at any scale.,ibis-project,2022-12-18,2022-12-18,2015-04-17,400,5.5715305030324656,121,2,5,"['voltron-data/ursa-computing', 'voltrondata']",,43.25,565,501,93,0,7,5,7,565.0,1237.0,90.0,2.2,428,64.44805 +308,util,https://github.com/legrandin/pycryptodome,,,,legrandin/pycryptodome,pycryptodome,2218,402,58,"['cryptography', 'security', 'python']",C,https://www.pycryptodome.org,pycryptodome: A self-contained cryptographic library for Python,legrandin,2022-12-18,2022-12-14,2014-05-02,450,4.924199175388519,130,2,5,"['aitaustrianinstituteoftechnology', 'cisco']",,2.35,75,64,105,0,2,12,2,75.0,126.0,90.0,1.7,1485,57.50221 +253,ml,https://github.com/microsoft/flaml,,,,microsoft/flaml,FLAML,2172,331,39,"['automl', 'hyperparam', 'automated-machine-learning', 'machine-learning', 'data-science', 'python', 'jupyter-notebook', 'hyperparameter-optimization', 'random-forest', 'scikit-learn', 'deep-learning', 'natural-language-processing', 'natural-language-generation', 'timeseries-forecasting', 'classification', 'regression', 'tuning', 'finetuning', 'tabular-data']",Jupyter Notebook,https://microsoft.github.io/FLAML/,FLAML: A fast library for AutoML and tuning. Join our Discord: https://discord.gg/Cppx2vSPVP.,microsoft,2022-12-18,2022-12-18,2020-08-20,121,17.866039952996474,59,3,5,"['microsoft', 'pennsylvaniastateuniversity', 'stevensinstituteoftechnology']",,5.04,138,85,28,0,22,21,22,138.0,225.0,90.0,1.6,11,50.02551 +710,pandas,https://github.com/jmcarpenter2/swifter,,,,jmcarpenter2/swifter,swifter,2161,98,28,"['pandas', 'pandas-dataframe', 'parallel-computing', 'parallelization', 'dask', 'modin']",Python,,swifter: A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner,jmcarpenter2,2022-12-16,2022-08-16,2018-04-07,245,8.810133954571928,17,2,5,"['freshrelevance', 'manifoldai']",,0.62,5,1,57,4,0,17,17,5.0,4.0,90.0,0.8,9,33.70657 +617,testing,https://github.com/pytest-dev/pytest-testinfra,,,,pytest-dev/pytest-testinfra,pytest-testinfra,2133,312,82,"['python', 'testing', 'infrastructure-as-code', 'devops', 'tdd', 'nagios', 'docker', 'tdd-utilities', 'testing-tools', 'devops-tools', 'infrastructure-testing', 'saltstack', 'chef', 'puppet', 'ansible', 'kubernetes', 'pytest-plugin']",Python,https://testinfra.readthedocs.io,pytest-testinfra: Testinfra test your infrastructures,pytest-dev,2022-12-17,2022-12-10,2015-03-15,405,5.264809590973202,121,2,5,"['lowatt', 'redhatansible']",,0.54,16,10,94,0,5,10,5,16.0,18.0,90.0,1.1,123,49.16978 +807,web,https://github.com/flipkart-incubator/astra,,,,flipkart-incubator/astra,Astra,2129,356,84,"['security', 'restapiautomation', 'python', 'owasp', 'penetration-testing-framework', 'postman-collection', 'ci-cd', 'sdlc', 'penetration-testing', 'security-automation']",Python,,Astra: Automated Security Testing For REST API's,flipkart-incubator,2022-12-13,2019-04-05,2018-01-10,257,8.26108647450111,11,2,5,"['aarhusuni', 'myntradesignspvtltd']",,0.0,4,0,60,45,0,0,0,4.0,3.0,90.0,0.8,20,22.01172 +503,gis,https://github.com/google/earthengine-api,,,,google/earthengine-api,earthengine-api,2093,892,204,[],JavaScript,,earthengine-api: Python and JavaScript bindings for calling the Earth Engine API.,google,2022-12-17,2022-12-13,2015-04-22,399,5.236240171551108,36,1,5,['google'],,0.0,7,1,93,0,0,32,32,7.0,5.0,90.0,0.7,9,38.69874 +878,time-series,https://github.com/nixtla/statsforecast,,,,nixtla/statsforecast,statsforecast,2070,119,19,"['time-series', 'statistics', 'forecasting', 'arima', 'econometrics', 'machine-learning', 'python', 'exponential-smoothing', 'ets', 'baselines', 'predictions', 'naive', 'seasonal-naive', 'fbprophet', 'prophet', 'neuralprophet', 'mstl', 'theta', 'automl', 'data-science']",Python,https://nixtla.github.io/statsforecast/,statsforecast: Lightning ⚡️ fast forecasting with statistical and econometric models.,nixtla,2022-12-18,2022-12-16,2021-11-24,55,37.15384615384615,16,2,5,"['nixtla', 'nubank']",,16.48,124,103,13,0,22,23,22,124.0,148.0,90.0,1.2,28,46.08455 +222,data,https://github.com/pynamodb/pynamodb,1.0,,,pynamodb/pynamodb,PynamoDB,2060,411,41,"['python', 'dynamodb', 'aws']",Python,http://pynamodb.readthedocs.io,PynamoDB: A pythonic interface to Amazon's DynamoDB,pynamodb,2022-12-15,2022-12-13,2014-01-20,465,4.43010752688172,100,2,5,"['lyft', 'openeyescientificsoftware']",,0.87,114,93,108,0,10,10,10,114.0,177.0,90.0,1.6,72,53.1558 +268,jupyter,https://github.com/jupyterlab/jupyterlab-desktop,,,,jupyterlab/jupyterlab-desktop,jupyterlab-desktop,2059,213,40,"['jupyterlab', 'jupyter', 'jupyter-notebook']",TypeScript,,"jupyterlab-desktop: JupyterLab desktop application, based on Electron.",jupyterlab,2022-12-18,2022-12-12,2017-05-04,293,7.013625304136253,33,2,5,"['fermiumlabssrl(fermiumlabs)', 'netflix']",,3.94,66,45,68,0,9,4,9,66.0,99.0,90.0,1.5,2,43.75421 +867,util,https://github.com/dosisod/refurb,1.0,,,dosisod/refurb,refurb,2055,35,15,"['cli', 'mypy', 'python', 'python310', 'testing', 'gplv3', 'hacktoberfest']",Python,,refurb: A tool for refurbishing and modernizing Python codebases,dosisod,2022-12-18,2022-12-17,2022-07-27,20,99.20689655172414,8,3,5,"['grupoboticario', 'hotjar', 'resgroup']",,3.46,153,139,5,0,8,34,8,153.0,162.0,90.0,1.1,5,36.98689 +198,ml,https://github.com/maif/shapash,,,,maif/shapash,shapash,2053,253,37,"['python', 'machine-learning', 'explainability', 'explainable-ml', 'transparency', 'ethical-artificial-intelligence', 'shap', 'lime', 'interpretability']",Jupyter Notebook,https://maif.github.io/shapash/,shapash: 🔅 Shapash makes Machine Learning models transparent and understandable by everyone,maif,2022-12-17,2022-12-02,2020-04-29,137,14.907676348547717,35,2,5,"['helsing', 'maif']",,4.9,34,30,32,1,8,9,8,34.0,15.0,90.0,0.4,12,39.9646 +724,util,https://github.com/ashleve/lightning-hydra-template,,,,ashleve/lightning-hydra-template,lightning-hydra-template,2051,343,19,"['pytorch-lightning', 'wandb', 'project-structure', 'config', 'deep-learning', 'hydra', 'template', 'pytorch', 'research', 'experiments', 'reproducibility', 'experiment-tracking', 'best-practices', 'neptune', 'mlflow', 'tensorboard', 'comet', 'mlops']",Python,,lightning-hydra-template: PyTorch Lightning + Hydra. A very user-friendly template for rapid and reproducible ML experimentation with best practices. ⚡🔥⚡,ashleve,2022-12-18,2022-12-18,2020-11-04,110,18.52516129032258,26,1,5,['hunanuniversity'],,2.81,46,38,26,0,2,3,2,46.0,49.0,90.0,1.1,7,36.89525 +860,jupyter,https://github.com/jupyter/nbviewer,,,,jupyter/nbviewer,nbviewer,2035,530,92,"['jupyter', 'jupyter-notebook', 'nbconvert']",Python,https://nbviewer.jupyter.org,nbviewer: nbconvert as a web service: Render Jupyter Notebooks as static web pages,jupyter,2022-12-10,2022-11-07,2012-08-05,541,3.760559662090813,92,4,5,"['noteable-io', 'quansight-labs', 'simularesearchlaboratory', 'wearethorn']",,1.25,22,14,126,1,0,0,0,22.0,21.0,90.0,1.0,240,48.67448 +411,util,https://github.com/yaml/pyyaml,,,,yaml/pyyaml,pyyaml,2007,423,46,"['python', 'yaml']",Python,,pyyaml: Canonical source repository for PyYAML,yaml,2022-12-17,2022-09-13,2011-11-03,580,3.4569389763779528,40,3,5,"['ansible', 'newfolddigital/bluehost', 'suse']",,0.04,36,9,135,3,0,4,4,36.0,33.0,90.0,0.9,6927,51.02787 +748,study,https://github.com/zhanymkanov/fastapi-best-practices,,,,zhanymkanov/fastapi-best-practices,fastapi-best-practices,2006,134,36,"['fastapi', 'best-practices']",,,fastapi-best-practices: FastAPI Best Practices and Conventions we used @ hi.peerlink.me,zhanymkanov,2022-12-18,2022-09-16,2022-08-09,18,106.37878787878788,3,1,5,['viaprotocol'],,0.81,9,3,4,3,0,0,0,9.0,25.0,90.0,2.8,0,17.00053 +881,time-series,https://github.com/rjt1990/pyflux,,,,rjt1990/pyflux,pyflux,2001,233,70,"['statistics', 'time-series']",Python,,pyflux: Open source time series library for Python,rjt1990,2022-12-17,2018-12-16,2016-02-16,356,5.60728582866293,6,2,5,"['gitter', 'pinseekerinc']",,0.0,0,0,83,49,0,6,6,0.0,0.0,90.0,0.0,8,19.45117 +548,ml,https://github.com/lightly-ai/lightly,,,,lightly-ai/lightly,lightly,1976,164,25,"['deep-learning', 'self-supervised-learning', 'machine-learning', 'computer-vision', 'pytorch', 'embeddings', 'contrastive-learning', 'active-learning']",Python,,lightly: A python library for self-supervised learning on images.,lightly-ai,2022-12-18,2022-12-15,2020-10-13,113,17.355081555834378,21,1,5,['lightly'],,5.62,92,78,27,0,38,33,38,92.0,133.0,90.0,1.4,22,44.70008 +813,data,https://github.com/datafold/data-diff,,,,datafold/data-diff,data-diff,1953,88,14,"['database', 'mysql', 'postgresql', 'snowflake', 'rdbms', 'trino', 'data-engineering', 'data-quality', 'data-science', 'data-quality-monitoring', 'databricks-sql', 'dataengineering', 'dataquality', 'oracle-database', 'postgres', 'sql']",Python,https://www.datafold.com/blog/open-source-data-diff,data-diff: Efficiently diff data in or across relational databases,datafold,2022-12-18,2022-12-16,2022-03-07,41,47.63414634146341,25,2,5,"['datafold', 'webscaleinc']",,13.75,139,117,10,0,13,16,13,139.0,220.0,90.0,1.6,4,43.21385 +323,gui,https://github.com/wxwidgets/phoenix,,,,wxwidgets/phoenix,Phoenix,1911,488,105,"['python', 'cross-platform', 'gui-framework', 'gui-toolkit', 'gui', 'windows', 'macosx', 'linux', 'awesome', 'wxwidgets', 'wxpython']",Python,http://wxpython.org/,"Phoenix: wxPython's Project Phoenix. A new implementation of wxPython, better, stronger, faster than he was before.",wxwidgets,2022-12-16,2022-11-10,2012-07-17,543,3.5137903861308115,123,1,5,['self;independant'],,3.96,79,45,127,1,1,2,1,79.0,141.0,90.0,1.8,133,49.56691 +590,util,https://github.com/hgrecco/pint,,,,hgrecco/pint,pint,1895,407,40,"['python', 'science', 'units']",Python,http://pint.readthedocs.org/,pint: Operate and manipulate physical quantities in Python,hgrecco,2022-12-17,2022-11-29,2012-07-13,544,3.48071372343217,181,0,5,[],,4.02,135,73,127,1,0,4,4,135.0,335.0,90.0,2.5,462,52.74691 +233,crypto,https://github.com/ethereum/py-evm,,,,ethereum/py-evm,py-evm,1886,576,98,"['evm', 'ethereum', 'python', 'ethereum-virtual-machine']",Python,https://py-evm.readthedocs.io/en/latest/,py-evm: A Python implementation of the Ethereum Virtual Machine,ethereum,2022-12-18,2022-12-16,2016-12-27,311,6.0476408612001835,80,1,5,['ethereumfoundation'],,0.71,13,6,73,0,0,17,17,13.0,4.0,90.0,0.3,107,44.84639 +353,ml-interpretability,https://github.com/seldonio/alibi,,,,seldonio/alibi,alibi,1880,212,43,"['machine-learning', 'explanations', 'interpretability', 'counterfactual', 'xai']",Python,https://docs.seldon.io/projects/alibi/en/stable/,alibi: Algorithms for explaining machine learning models,seldonio,2022-12-17,2022-12-14,2019-02-26,198,9.454022988505747,18,1,5,['datascienceseldonio'],,3.52,84,61,46,0,5,7,5,84.0,108.0,90.0,1.3,12,40.79834 +441,gis,https://github.com/rasterio/rasterio,1.0,,,rasterio/rasterio,rasterio,1858,490,152,"['python', 'gis', 'raster', 'gdal', 'cli', 'cython', 'mapbox-satellite-oss']",Python,https://rasterio.readthedocs.io/,Rasterio reads and writes geospatial raster datasets,rasterio,2022-12-16,2022-12-17,2013-11-04,476,3.903361344537815,140,3,5,"['astutespruce', 'corteva', 'planetlabs']",,3.12,228,122,111,0,8,18,8,228.0,254.0,90.0,1.1,102,56.91496 +755,ml,https://github.com/marqo-ai/marqo,,,,marqo-ai/marqo,marqo,1852,69,23,"['deep-learning', 'search', 'information-retrieval', 'machinelearning', 'vector-search', 'tensor-search', 'clip', 'multi-modal', 'search-engine', 'timm', 'transformers', 'vision-language', 'machine-learning', 'semantic-search', 'visual-search', 'natural-language-processing', 'hnsw', 'knn', 'hacktoberfest', 'hacktoberfest-accepted']",Python,https://www.marqo.ai/,marqo: Tensor search for humans.,marqo-ai,2022-12-18,2022-12-16,2022-08-01,20,92.6,20,1,5,['marqo-ai'],,8.88,196,148,5,0,6,15,6,195.0,147.0,90.0,0.8,9,37.30761 +452,pandas,https://github.com/pandera-dev/pandera,1.0,,,pandera-dev/pandera,pandera,1851,156,12,"['pandas', 'validation', 'schema', 'dataframes', 'testing', 'pandas-validation', 'pandas-dataframe', 'data-validation', 'data-cleaning', 'data-check', 'testing-tools', 'assertions', 'data-assertions', 'data-verification', 'dataframe-schema', 'hypothesis-testing', 'pandas-validator', 'data-processing']",Python,https://www.union.ai/pandera,"pandera: A light-weight, flexible, and expressive statistical data testing library",pandera-dev,2022-12-18,2022-12-16,2018-11-01,215,8.58648111332008,77,4,5,"['auxmoney', 'bcggamma', 'imperialcollegelondon', 'unionai']",,2.23,134,83,50,0,17,14,17,134.0,355.0,90.0,2.6,17,53.79806 +540,nlp,https://github.com/salesforce/codegen,,,,salesforce/codegen,CodeGen,1850,137,35,"['programsynthesis', 'generativemodel', 'codex', 'languagemodel', 'llm', 'tpu-acceleration']",Python,,CodeGen is an open-source model for program synthesis. Trained on TPU-v4. Competitive with OpenAI Codex.,salesforce,2022-12-18,2022-12-01,2022-03-28,38,48.68421052631579,7,1,5,['garnercorp'],,0.83,21,12,9,1,0,0,0,21.0,47.0,90.0,2.2,2,24.93407 +713,gis,https://github.com/mcordts/cityscapesscripts,,,,mcordts/cityscapesscripts,cityscapesScripts,1842,565,46,[],Python,,cityscapesScripts: README and scripts for the Cityscapes Dataset,mcordts,2022-12-18,2022-10-22,2016-02-20,356,5.170008019246191,17,2,5,"['daimlerag', 'facebookairesearch']",,0.02,7,2,83,2,0,0,0,7.0,4.0,90.0,0.6,8,29.71181 +871,profiling,https://github.com/reloadware/reloadium,1.0,,,reloadware/reloadium,reloadium,1836,27,24,"['hot-reload', 'hot-reloading', 'python', 'python3', 'edit-and-continue', 'django', 'flask', 'pandas']",Python,https://reloadium.io,reloadium: Advanced Hot Reloading & Profiling for Python,reloadware,2022-12-18,2022-11-29,2022-01-15,48,38.023668639053255,2,2,5,"['bytelogics', 'reloadware']",,0.71,38,31,11,1,0,6,6,38.0,103.0,90.0,2.7,0,27.68228 +856,profiling,https://github.com/jiffyclub/snakeviz,,,,jiffyclub/snakeviz,snakeviz,1827,128,22,[],Python,https://jiffyclub.github.io/snakeviz/,snakeviz: An in-browser Python profile viewer,jiffyclub,2022-12-15,2021-10-25,2012-06-26,546,3.340909090909091,24,3,5,"['nvidia', 'populus-ai', 'universityofwisconsin-madison']",,0.0,10,4,128,14,0,2,2,10.0,12.0,90.0,1.2,24,34.66087 +823,data,https://github.com/uqfoundation/dill,1.0,,,uqfoundation/dill,dill,1822,151,22,[],Python,http://dill.rtfd.io,dill: serialize all of python,uqfoundation,2022-12-17,2022-12-18,2013-06-28,494,3.685062120774343,39,2,5,"['amphybio-universityofsãopaulo,medicalschool', 'uqfoundation']",,1.94,40,19,115,0,3,3,3,40.0,57.0,90.0,1.4,514,51.09718 +46,jupyter,https://github.com/maartenbreddels/ipyvolume,,,,maartenbreddels/ipyvolume,ipyvolume,1811,234,53,"['ipython-widget', 'jupyter', 'jupyter-notebook', 'python', 'visualisation', 'volume-rendering', 'virtual-reality', 'plotting', 'dataviz', 'scientific-visualization', 'webgl', 'threejs', 'rendering-3d-volumes', 'quiver']",TypeScript,,ipyvolume: 3d plotting for Python in the Jupyter notebook based on IPython widgets using WebGL,maartenbreddels,2022-12-18,2022-07-26,2016-12-21,312,5.7912288716308815,41,4,5,"['imperialcollegelondon', 'maartenbreddels', 'monashuniversity', 'surf']",,0.04,8,1,73,5,0,8,8,8.0,8.0,90.0,1.0,97,41.53161 +115,perf,https://github.com/h5py/h5py,,,,h5py/h5py,h5py,1806,478,55,[],Python,http://www.h5py.org,h5py: HDF5 for Python -- The h5py package is a Pythonic interface to the HDF5 binary data format.,h5py,2022-12-18,2022-12-15,2012-09-21,534,3.3793103448275863,190,4,5,"['brookhavennationallab', 'departmentofphysicsandastronomy,macquarieuniversity', 'enthought', 'esrf']",,3.48,70,41,125,0,1,4,1,70.0,208.0,90.0,3.0,791,61.33691 +506,ml-ops,https://github.com/adap/flower,,,,adap/flower,flower,1800,390,24,"['flower', 'federated-learning', 'federated-learning-framework', 'pytorch-federated-learning', 'tensorflow-federated-learning', 'keras-federated-learning', 'federated-analytics', 'fleet-learning', 'fleet-intelligence']",Python,https://flower.dev,Flower - A Friendly Federated Learning Framework,adap,2022-12-18,2022-12-16,2020-02-17,148,12.162162162162161,51,1,5,['adapgmbh'],,5.63,99,67,34,0,4,4,4,99.0,59.0,90.0,0.6,18,42.50002 +648,util,https://github.com/grahamdumpleton/wrapt,,,,grahamdumpleton/wrapt,wrapt,1793,208,45,[],Python,,"wrapt: A Python module for decorators, wrappers and monkey patching.",grahamdumpleton,2022-12-18,2022-10-28,2013-05-29,498,3.595244915496992,25,3,5,"['embl,zellerlab', 'georgiatech', 'scampersand']",,0.4,5,4,116,2,0,5,5,5.0,8.0,90.0,1.6,1101,47.52383 +601,gis,https://github.com/plant99/felicette,,,,plant99/felicette,felicette,1792,85,38,"['geospatial-data', 'gis', 'geospatial-visualization', 'geospatial', 'python', 'python3', 'geoinformatics', 'earth-observation', 'earth-science', 'satellite-imagery', 'satellite-images', 'satellite-data']",Python,,felicette: Satellite imagery for dummies.,plant99,2022-12-16,2021-09-08,2020-07-12,127,14.09438202247191,6,4,5,"['clemsonuniversity', 'financeandeconomicsdepartment,mgimo-odintsovo', 'mattermost', 'tempulsenoirlinuxmulindisourcehaus']",,0.0,0,0,30,16,0,2,2,0.0,0.0,90.0,0.0,0,16.70649 +295,util,https://github.com/pyfilesystem/pyfilesystem2,,,,pyfilesystem/pyfilesystem2,pyfilesystem2,1785,170,45,"['filesystem', 'pyfilesystem', 'pyfilesystem2', 'python', 'ftp', 'tar', 'zip', 'filesystem-library']",Python,https://www.pyfilesystem.org,pyfilesystem2: Python's Filesystem abstraction layer,pyfilesystem,2022-12-12,2022-10-18,2016-10-14,322,5.536109880372176,47,3,5,"['embl,zellerlab', 'mercatronicsgmbh', 'textualize']",,1.56,7,2,75,2,2,8,2,7.0,19.0,90.0,2.7,47,43.67384 +63,sim,https://github.com/projectmesa/mesa,,,,projectmesa/mesa,mesa,1778,760,89,"['mesa', 'agent-based-modeling', 'agent-based-simulation', 'simulation-framework', 'simulation', 'simulation-environment', 'complex-systems', 'complexity-analysis', 'modeling-agents', 'spatial-models', 'gis']",Python,,Mesa is an agent-based modeling framework in Python,projectmesa,2022-12-17,2022-12-14,2014-09-19,430,4.130766677729837,121,0,5,[],,5.48,166,136,100,0,1,3,1,166.0,676.0,90.0,4.1,104,51.20262 +749,diffusion,https://github.com/nateraw/stable-diffusion-videos,,,,nateraw/stable-diffusion-videos,stable-diffusion-videos,1774,155,21,"['ai-art', 'huggingface', 'huggingface-diffusers', 'machine-learning', 'stable-diffusion']",Python,,stable-diffusion-videos: Create 🔥 videos with Stable Diffusion by exploring the latent space and morphing between text prompts,nateraw,2022-12-18,2022-12-05,2022-09-06,14,119.40384615384616,10,3,5,"['earth', 'huggingface', 'student']",,2.31,103,83,3,0,15,61,15,103.0,213.0,90.0,2.1,2,36.8515 +32,nlp,https://github.com/jamesturk/jellyfish,,,,jamesturk/jellyfish,jellyfish,1766,148,43,"['python', 'levenshtein', 'soundex', 'hamming', 'metaphone', 'jaro-winkler', 'fuzzy-search', 'hacktoberfest']",Python,https://jamesturk.github.io/jellyfish/,jellyfish: 🪼 a python library for doing approximate and phonetic matching of strings.,jamesturk,2022-12-18,2022-11-07,2010-07-09,649,2.719313682358117,27,3,5,"['ibmresearch', 'sunlightlabs', 'utrechtuniversity']",,0.38,10,7,152,1,0,2,2,10.0,6.0,90.0,0.6,92,41.79416 +310,data,https://github.com/graphistry/pygraphistry,,,,graphistry/pygraphistry,pygraphistry,1764,185,48,"['graph', 'visualization', 'gpu', 'graphistry', 'python', 'rapids', 'cugraph', 'networkx', 'neo4j', 'tigergraph', 'pandas', 'csv', 'webgl', 'splunk', 'cudf', 'jupyter', 'igraph', 'network-analysis', 'network-visualization', 'graph-visualization']",Python,,"PyGraphistry is a Python library to quickly load, shape, embed, and explore big graphs with the GPU-accelerated Graphistry visual graph analyzer",graphistry,2022-12-15,2022-12-13,2015-06-02,393,4.478781284004352,31,2,5,"['graphistry', 'nvidia']",,1.44,38,21,92,0,0,22,22,38.0,32.0,90.0,0.8,36,46.8321 +9,ml,https://github.com/contextlab/hypertools,,,,contextlab/hypertools,hypertools,1754,159,60,"['data-visualization', 'high-dimensional-data', 'python', 'topic-modeling', 'text-vectorization', 'data-wrangling', 'visualization', 'time-series']",Python,http://hypertools.readthedocs.io/en/latest/,hypertools: A Python toolbox for gaining geometric insights into high-dimensional data,contextlab,2022-12-17,2022-02-12,2016-09-27,324,5.399296394019349,21,3,5,"['akiliinteractive', 'contextlabcosanlab', 'dartmouthcollege']",,0.63,4,4,76,10,1,3,1,4.0,4.0,90.0,1.0,25,33.18949 +201,util,https://github.com/camelot-dev/camelot,,,,camelot-dev/camelot,camelot,1752,329,40,[],Python,https://camelot-py.readthedocs.io,camelot: A Python library to extract tabular data from PDFs,camelot-dev,2022-12-17,2021-07-11,2019-07-01,181,9.679558011049723,38,2,5,"['01s', 'http://develated.com/']",,0.0,16,5,42,18,0,7,7,16.0,15.0,90.0,0.9,6,30.63252 +843,ml,https://github.com/aws/sagemaker-python-sdk,,,,aws/sagemaker-python-sdk,sagemaker-python-sdk,1748,905,131,"['aws', 'mxnet', 'tensorflow', 'machine-learning', 'python', 'pytorch', 'sagemaker', 'huggingface']",Python,https://sagemaker.readthedocs.io/,sagemaker-python-sdk: A library for training and deploying machine learning models on Amazon SageMaker,aws,2022-12-16,2022-12-16,2017-11-14,265,6.574959699086513,311,1,5,['google'],,9.71,275,152,62,0,74,93,74,275.0,3020.0,90.0,11.0,133,66.03168 +297,util,https://github.com/pyparsing/pyparsing,,,,pyparsing/pyparsing,pyparsing,1714,237,23,"['python', 'python2', 'python3', 'python-2', 'python-3', 'parser-combinators', 'parsing-expression-grammar', 'parsing', 'parsing-library', 'text-processing', 'peg-parsers']",Python,,pyparsing: Python library for creating PEG parsers,pyparsing,2022-12-14,2022-12-13,2017-05-14,292,5.866992665036674,52,3,5,"['google', 'pioneervalleybooks', 'suse']",,2.69,19,7,68,0,3,9,3,19.0,33.0,90.0,1.7,2168,54.34798 +25,util,https://github.com/google/gin-config,,,,google/gin-config,gin-config,1710,107,22,"['python', 'configuration-management', 'tensorflow', 'tensorflow-experiments']",Python,,gin-config: Gin provides a lightweight configuration framework for Python,google,2022-12-17,2022-12-05,2018-06-27,233,7.316625916870415,23,2,5,"['google', 'netguru']",,0.12,9,6,54,0,0,0,0,9.0,5.0,90.0,0.6,0,29.12146 +365,ml,https://github.com/rentruewang/koila,,,,rentruewang/koila,koila,1689,61,11,"['pytorch', 'lazy-evaluation', 'out-of-memory', 'python', 'machine-learning', 'deep-learning', 'memory-management', 'gradient-accumulation', 'neural-network']",Python,https://rentruewang.github.io/koila,koila: Prevent PyTorch's `CUDA error: out of memory` in just 1 line of code.,rentruewang,2022-12-16,2022-12-10,2021-11-17,56,29.7808564231738,4,2,5,"['collegeofcomputing,georgiatech', 'iprally']",,0.83,1,1,13,0,0,2,2,1.0,0.0,90.0,0.0,0,20.2574 +806,web,https://github.com/python-restx/flask-restx,,,,python-restx/flask-restx,flask-restx,1689,285,65,"['python', 'api', 'swagger', 'flask', 'rest', 'json', 'restful', 'restplus', 'restx']",Python,https://flask-restx.readthedocs.io/en/latest/,"flask-restx: Fork of Flask-RESTPlus: Fully featured framework for fast, easy and documented API development with Flask",python-restx,2022-12-18,2022-11-02,2020-01-09,153,10.998139534883721,137,2,5,"['apihackers', 'canonical']",,0.48,85,21,36,2,2,4,2,85.0,67.0,90.0,0.8,264,45.50314 +543,data,https://github.com/sqlalchemy/alembic,,,,sqlalchemy/alembic,alembic,1673,171,18,"['sqlalchemy', 'sql', 'python']",Python,,alembic: A database migrations tool for SQLAlchemy.,sqlalchemy,2022-12-18,2022-12-15,2018-11-27,211,7.896830748482805,155,4,5,"['helioslite', 'planetarium', 'redhat', 'self-employed']",,1.33,37,26,49,0,5,26,5,37.0,106.0,90.0,2.9,1101,59.20527 +416,ml,https://github.com/bmabey/pyldavis,,,,bmabey/pyldavis,pyLDAvis,1671,340,57,[],Jupyter Notebook,,pyLDAvis: Python library for interactive topic model visualization. Port of the R LDAvis package.,bmabey,2022-12-17,2021-03-24,2015-04-09,401,4.161152614727855,32,2,5,"['google', 'zalandose']",,0.0,13,2,94,21,0,3,3,13.0,6.0,90.0,0.5,15,30.38527 +217,ml,https://github.com/linkedin/greykite,1.0,,,linkedin/greykite,greykite,1654,87,37,[],Python,,"greykite: A flexible, intuitive and fast forecasting library",linkedin,2022-12-17,2022-08-31,2021-04-27,85,19.264559068219633,8,2,5,"['linkedin', 'pepsico']",,0.08,3,1,20,4,1,2,1,3.0,9.0,90.0,3.0,12,28.26619 +302,template,https://github.com/pyscaffold/pyscaffold,,,,pyscaffold/pyscaffold,pyscaffold,1649,170,40,"['python', 'release-automation', 'git', 'distribution', 'package-creation', 'template-project', 'project-template', 'package']",Python,https://pyscaffold.org,pyscaffold: 🛠 Python project template generator with batteries included,pyscaffold,2022-12-18,2022-11-28,2014-04-02,454,3.6264530317310713,53,3,5,"['inovex', 'karlsruheinstituteoftechnology', 'universityofbristol']",,2.98,18,13,106,1,10,22,10,18.0,22.0,90.0,1.2,105,49.77932 +732,study,https://github.com/amanchadha/coursera-deep-learning-specialization,,,,amanchadha/coursera-deep-learning-specialization,coursera-deep-learning-specialization,1649,1451,16,"['deep-learning', 'coursera', 'coursera-assignment', 'coursera-specialization', 'coursera-machine-learning', 'andrew-ng', 'andrew-ng-course', 'convolutional-neural-networks', 'cnns', 'recurrent-neural-networks', 'rnns', 'convolutional-neural-network', 'recurrent-neural-network', 'hyperparameter-optimization', 'hyperparameter-tuning', 'neural-network', 'neural-networks', 'neural-machine-translation', 'neural-style-transfer', 'regularization']",Jupyter Notebook,,"coursera-deep-learning-specialization: Notes, programming assignments and quizzes from all courses within the Coursera Deep Learning specialization offered by deeplearning.ai: (i) Neural Networks and Deep Learning; (ii) Improving Deep Neural Networks: Hyperparameter tuning, Regularization and Optimization; (iii) Structuring Machine Learning Projects; (iv) Convolutional Neural Networks; (v) Sequence Models",amanchadha,2022-12-18,2022-02-07,2020-06-24,129,12.712555066079295,6,2,5,"['amazon/stanforduniversity', 'readytocollaborateonaiprojects']",,0.1,3,1,30,10,0,0,0,3.0,2.0,90.0,0.7,0,17.15735 +424,debug,https://github.com/gotcha/ipdb,,,,gotcha/ipdb,ipdb,1640,145,27,"['python', 'ipython', 'debugger']",Python,,ipdb: Integration of IPython pdb,gotcha,2022-12-14,2022-12-13,2011-01-15,622,2.63544536271809,54,3,5,"['bubblenet', ""let'sdelivery"", 'locatee']",,0.29,20,14,145,0,0,3,3,20.0,29.0,90.0,1.4,915,52.46091 +330,nlp,https://github.com/franck-dernoncourt/neuroner,,,,franck-dernoncourt/neuroner,NeuroNER,1640,483,84,"['nlp', 'machine-learning', 'neural-networks', 'named-entity-recognition', 'deep-learning', 'tensorflow']",Python,http://neuroner.com,NeuroNER: Named-entity recognition using neural networks. Easy-to-use and state-of-the-art results.,franck-dernoncourt,2022-12-17,2019-10-02,2017-03-07,301,5.433033601514435,7,1,5,['mit'],,0.0,4,1,70,39,0,0,0,4.0,2.0,90.0,0.5,0,13.86356 +699,util,https://github.com/grantjenks/python-diskcache,,,,grantjenks/python-diskcache,python-diskcache,1627,106,18,"['python', 'cache', 'persistence', 'key-value-store', 'filesystem']",Python,http://www.grantjenks.com/docs/diskcache/,python-diskcache: Python disk-backed cache (Django-compatible). Faster than Redis and Memcached. Pure-Python.,grantjenks,2022-12-18,2022-02-20,2016-02-03,358,4.535643170051772,24,1,5,['canonical'],,0.15,9,6,84,10,0,12,12,9.0,16.0,90.0,1.8,65,36.94029 +256,crypto,https://github.com/bmoscon/cryptofeed,,,,bmoscon/cryptofeed,cryptofeed,1610,518,74,"['python', 'trading', 'market-data', 'cryptocurrency', 'bitcoin', 'exchange', 'websockets', 'coinbase', 'binance', 'influxdb', 'asyncio', 'websocket', 'ftx-exchange', 'trading-platform', 'ethereum', 'cryptocurrencies', 'btc', 'crypto', 'coinbase-api']",Python,,cryptofeed: Cryptocurrency Exchange Websocket Data Feed Handler,bmoscon,2022-12-17,2022-12-14,2017-12-16,261,6.161837069436851,104,0,5,[],,3.71,32,20,61,0,7,14,7,32.0,33.0,90.0,1.0,173,46.04048 +383,nlp,https://github.com/minimaxir/aitextgen,,,,minimaxir/aitextgen,aitextgen,1603,182,36,[],Python,https://docs.aitextgen.io,aitextgen: A robust Python tool for text-based AI training and generation using GPT-2.,minimaxir,2022-12-17,2022-08-09,2019-12-29,155,10.332412523020258,9,3,5,"['buzzfeed', 'lightning-ai', 'quantcopy']",,0.1,8,1,36,4,1,4,1,8.0,13.0,90.0,1.6,0,25.52238 +779,nlp,https://github.com/deepset-ai/farm,,,,deepset-ai/farm,FARM,1602,232,56,"['language-models', 'bert', 'nlp', 'deep-learning', 'transfer-learning', 'pytorch', 'nlp-library', 'nlp-framework', 'xlnet-pytorch', 'ner', 'question-answering', 'pretrained-models', 'roberta', 'germanbert']",Python,https://farm.deepset.ai,FARM: :house_with_garden: Fast & easy transfer learning for NLP. Harvesting language models for the industry. Focus on Question Answering.,deepset-ai,2022-12-15,2022-08-31,2019-07-17,178,8.964028776978417,37,1,5,['deepset'],,0.04,1,0,42,4,0,7,7,1.0,0.0,90.0,0.0,39,29.59949 +509,ml,https://github.com/tensorflow/addons,,,,tensorflow/addons,addons,1596,597,58,"['machine-learning', 'deep-learning', 'tensorflow', 'neural-network', 'tensorflow-addons', 'python']",Python,,addons: Useful extra functionality for TensorFlow 2.x maintained by SIG-addons,tensorflow,2022-12-15,2022-12-14,2018-11-26,212,7.528301886792453,200,4,5,"['aws', 'googlers', 'preligens', 'systran']",,1.27,53,31,49,0,6,9,6,53.0,111.0,90.0,2.1,2373,60.89811 +825,study,https://github.com/alirezadir/machine-learning-interview-enlightener,,,,alirezadir/machine-learning-interview-enlightener,machine-learning-interview-enlightener,1586,327,47,"['machine-learning', 'machine-learning-algorithms', 'ai', 'deep-learning', 'system-design', 'scalable-applications', 'interview', 'interview-preparation', 'interview-practice', 'interviews']",Jupyter Notebook,,machine-learning-interview-enlightener: This repo is meant to serve as a guide for Machine Learning/AI technical interviews. ,alirezadir,2022-12-18,2022-05-25,2021-01-31,98,16.160116448326054,6,2,5,"['meta', 'sdeliveramp']",,0.12,1,0,23,7,0,0,0,1.0,0.0,90.0,0.0,0,14.13242 +767,study,https://github.com/fluentpython/example-code-2e,,,,fluentpython/example-code-2e,example-code-2e,1584,464,52,"['python', 'python3', 'concurrency', 'iterators', 'metaprogramming', 'special-methods']",Python,https://amzn.to/3J48u2J,"example-code-2e: Example code for Fluent Python, 2nd edition (O'Reilly 2022) ",fluentpython,2022-12-18,2022-04-24,2019-03-21,195,8.099342585829072,7,1,5,['thoughtworksthoughtworksinc'],,0.19,3,0,46,8,0,0,0,3.0,1.0,90.0,0.3,35,21.99251 +768,ml-dl,https://github.com/fepegar/torchio,,,,fepegar/torchio,torchio,1577,196,15,"['pytorch', 'medical-image-computing', 'deep-learning', 'data-augmentation', 'medical-images', 'machine-learning', 'python', 'medical-image-processing', 'medical-image-analysis', 'medical-imaging-datasets', 'medical-imaging-with-deep-learning', 'augmentation']",Python,http://www.torchio.org,torchio: Medical imaging toolkit for deep learning,fepegar,2022-12-18,2022-11-19,2019-11-26,159,9.865058087578195,41,1,5,['microsoftuclkcl-bmeis'],,2.33,47,33,37,1,0,83,83,47.0,115.0,90.0,2.4,14,44.03754 +195,sim,https://github.com/pettingzoo-team/pettingzoo,,,,pettingzoo-team/pettingzoo,PettingZoo,1576,250,16,[],Python,https://pettingzoo.farama.org,PettingZoo: Gymnasium for multi-agent reinforcement learning,pettingzoo-team,2022-12-17,2022-11-15,2020-01-20,152,10.368421052631579,79,1,5,['morganstanley'],,10.38,87,70,35,1,12,11,12,87.0,116.0,90.0,1.3,40,47.54469 +263,sim,https://github.com/quantecon/quantecon.py,,,,quantecon/quantecon.py,QuantEcon.py,1566,2108,151,[],Python,https://quantecon.org/quantecon-py/,QuantEcon.py: A community based Python library for quantitative economics,quantecon,2022-12-18,2022-12-18,2013-03-22,508,3.080078673784771,40,4,5,"['australiannationaluniversity', 'kingabdullahuniversityofscienceandtechnology', 'umaprotocol', 'universityoftokyo']",,1.73,66,37,119,0,2,4,2,66.0,168.0,90.0,2.5,932,56.56408 +597,time-series,https://github.com/uber/orbit,,,,uber/orbit,orbit,1562,117,32,"['python', 'forecasting', 'bayesian', 'exponential-smoothing', 'pyro', 'stan', 'pystan', 'probabilistic-programming', 'probabilistic', 'forecast', 'orbit', 'time-series', 'regression', 'arima', 'changepoint', 'bayesian-methods', 'bayesian-statistics', 'machine-learning', 'regression-models', 'pytorch']",Python,https://orbit-ml.readthedocs.io/en/stable/,orbit: A Python package for Bayesian forecasting with object-oriented design and probabilistic models under the hood.,uber,2022-12-17,2022-11-30,2020-01-07,153,10.152274837511607,18,1,5,['uber'],,1.6,15,7,36,1,5,8,5,15.0,11.0,90.0,0.7,22,34.74221 +377,ml-interpretability,https://github.com/jalammar/ecco,,,,jalammar/ecco,ecco,1556,111,20,"['nlp', 'visualization', 'explorables', 'natural-language-processing', 'pytorch', 'language-models']",Jupyter Notebook,https://ecco.readthedocs.io,"ecco: Explain, analyze, and visualize NLP language models. Ecco creates interactive visualizations directly in Jupyter notebooks explaining the behavior of Transformer-based language models (like GPT2, BERT, RoBERTA, T5, and T0).",jalammar,2022-12-18,2022-01-18,2020-11-07,110,14.10880829015544,10,3,5,"['cohere-ai', 'outsystems', 'truefoundry']",,0.62,9,6,26,11,3,6,3,9.0,5.0,90.0,0.6,3,26.125 +299,util,https://github.com/julienpalard/pipe,,,,julienpalard/pipe,Pipe,1544,101,26,[],Python,,Pipe: A Python library to use infix notation in Python,julienpalard,2022-12-18,2022-11-16,2010-04-08,662,2.3303147908581283,25,1,5,['sumologic'],,0.37,2,1,155,1,1,0,1,2.0,2.0,90.0,1.0,2,30.38733 +143,nlp,https://github.com/plasticityai/magnitude,,,,plasticityai/magnitude,magnitude,1544,113,37,"['python', 'natural-language-processing', 'nlp', 'machine-learning', 'vectors', 'embeddings', 'word2vec', 'fasttext', 'glove', 'gensim', 'fast', 'memory-efficient', 'machine-learning-library', 'word-embeddings']",Python,,"magnitude: A fast, efficient universal vector embedding utility package.",plasticityai,2022-12-12,2020-07-17,2018-02-24,251,6.144400227401933,4,1,5,['plasticityai'],,0.0,2,0,59,29,0,29,29,2.0,1.0,90.0,0.5,6,21.39797 +596,data,https://github.com/uber/petastorm,,,,uber/petastorm,petastorm,1543,265,41,"['tensorflow', 'pytorch', 'deep-learning', 'machine-learning', 'sysml', 'pyspark', 'pyarrow', 'parquet', 'parquet-files']",Python,,"Petastorm library enables single machine or distributed training and evaluation of deep learning models from datasets in Apache Parquet format. It supports ML frameworks such as Tensorflow, Pytorch, and PySpark and can be used from pure Python code.",uber,2022-12-17,2022-12-16,2018-06-15,235,6.554004854368932,46,3,5,"['databricks', 'netflix', 'uber']",,0.46,13,5,55,0,11,25,11,13.0,27.0,90.0,2.1,10,44.55222 +311,util,https://github.com/linkedin/shiv,,,,linkedin/shiv,shiv,1532,84,26,[],Python,,"shiv is a command line utility for building fully self contained Python zipapps as outlined in PEP 441, but with all their dependencies included.",linkedin,2022-12-13,2022-11-04,2018-03-13,248,6.156142365097589,39,3,5,"['lincolnloop', 'linkedin', 'mam-dev']",,0.21,4,2,58,2,3,4,3,4.0,3.0,90.0,0.8,8,35.40279 +662,util,https://github.com/numba/llvmlite,,,,numba/llvmlite,llvmlite,1526,289,54,[],Python,http://llvmlite.pydata.org/,llvmlite: A lightweight LLVM python binding for writing JIT compilers,numba,2022-12-17,2022-12-05,2014-08-07,436,3.4954188481675392,81,1,5,['anaconda'],,1.71,30,14,102,0,0,13,13,30.0,87.0,90.0,2.9,458,54.35845 +635,debug,https://github.com/alexmojaki/birdseye,,,,alexmojaki/birdseye,birdseye,1524,76,43,"['python-debugger', 'python', 'debugger', 'debugging', 'birdseye', 'ast']",JavaScript,https://birdseye.readthedocs.io,birdseye: Graphical Python debugger which lets you easily view the values of all evaluated expressions,alexmojaki,2022-12-16,2022-05-18,2017-07-22,282,5.398785425101215,10,3,5,"['actcommodities', 'cybernetica', 'skelevilletechnologysolutions']",,0.04,2,1,66,7,0,1,1,2.0,1.0,90.0,0.5,8,26.84088 +795,web,https://github.com/starlite-api/starlite,,,,starlite-api/starlite,starlite,1520,141,22,"['python', 'api', 'rest', 'mypy', 'pydantic', 'types', 'asgi', 'json', 'openapi', 'redoc', 'starlette']",Python,https://starlite-api.github.io/starlite/,"starlite: Light, Flexible and Extensible ASGI API framework",starlite-api,2022-12-18,2022-12-18,2021-12-06,54,28.14814814814815,71,1,5,['safehousetechnologies'],,19.87,437,412,13,0,119,112,119,437.0,889.0,90.0,2.0,78,53.60219 +799,web,https://github.com/pallets/quart,,,,pallets/quart,quart,1509,93,24,"['asyncio', 'python', 'http-server', 'asgi', 'quart']",Python,https://quart.palletsprojects.com,quart: An async Python micro framework for building web applications. ,pallets,2022-12-17,2022-12-15,2017-11-10,266,5.663806970509383,80,1,5,['none'],,1.81,28,25,62,0,0,10,10,28.0,29.0,90.0,1.0,18,44.53971 +458,ml-dl,https://github.com/nebuly-ai/nebullvm,,,,nebuly-ai/nebullvm,nebullvm,1504,70,16,"['deep-learning', 'pytorch', 'onnx', 'machine-learning', 'tensorflow', 'tvm', 'openvino', 'tensorrt', 'huggingface', 'compiler', 'computing', 'inference', 'neural-network', 'pypi', 'quantization']",Python,,nebullvm: Accelerate AI models leveraging best-of-breed optimization techniques 🚀,nebuly-ai,2022-12-16,2022-12-17,2022-02-12,44,33.961290322580645,11,4,5,"['nebuly', 'nebuly-ai', 'nebuly|epfl', 'nebuly|ethzurich']",,2.23,48,30,10,0,13,16,13,48.0,19.0,90.0,0.4,2,35.80703 +205,debug,https://github.com/alexmojaki/heartrate,,,,alexmojaki/heartrate,heartrate,1499,120,30,"['python', 'visualization', 'debugger']",Python,,heartrate: Simple real time visualisation of the execution of a Python program.,alexmojaki,2022-12-15,2021-11-13,2019-04-24,190,7.859925093632959,3,0,5,[],,0.0,0,0,44,13,0,0,0,0.0,0.0,90.0,0.0,0,6.69395 +612,testing,https://github.com/pytest-dev/pytest-mock,,,,pytest-dev/pytest-mock,pytest-mock,1493,119,34,"['pytest', 'mock', 'hacktoberfest']",Python,https://pytest-mock.readthedocs.io/en/latest/,pytest-mock: Thin-wrapper around the mock package for easier use with pytest,pytest-dev,2022-12-16,2022-12-16,2014-07-17,439,3.3964900877478064,64,4,5,"['esss', 'freelancer,upforhire', 'nordsoftware', 'wayfair']",,1.08,26,26,103,0,6,7,6,26.0,27.0,90.0,1.0,3125,57.46496 +224,sim,https://github.com/google/brax,,,,google/brax,brax,1479,148,31,"['jax', 'reinforcement-learning', 'robotics', 'physics-simulation']",Jupyter Notebook,,brax: Massively parallel rigidbody physics simulation on accelerator hardware.,google,2022-12-17,2022-12-15,2021-06-02,80,18.323893805309734,25,2,5,"['drexeluniversity', 'instadeep']",,0.4,41,23,19,0,6,8,6,41.0,79.0,90.0,1.9,11,39.53516 +498,ml-dl,https://github.com/vt-vl-lab/fgvc,,,,vt-vl-lab/fgvc,FGVC,1473,237,68,[],Python,,FGVC: [ECCV 2020] Flow-edge Guided Video Completion ,vt-vl-lab,2022-12-15,2021-12-14,2020-09-09,118,12.407942238267148,3,2,5,"['meta', 'virginiatech']",,0.0,4,2,28,12,0,0,0,4.0,5.0,90.0,1.2,0,16.40385 +436,nlp,https://github.com/recognai/rubrix,,,,recognai/rubrix,argilla,1469,134,18,"['python', 'data-science', 'human-in-the-loop', 'natural-language-processing', 'mlops', 'artificial-intelligence', 'knowledge-graph', 'developer-tools', 'text-labeling', 'annotation-tool', 'nlp', 'machine-learning', 'active-learning', 'weak-supervision', 'weakly-supervised-learning', 'spacy', 'text-classification', 'dataops', 'text-annotation', 'hacktoberfest']",Python,https://docs.argilla.io,argilla: ✨ Open-source tool for data-centric NLP. Argilla helps domain experts and data teams to build better NLP datasets in less time.,recognai,2022-12-17,2022-12-16,2021-04-28,85,17.138333333333332,33,4,5,"['aarhusuniversity,vestas', 'argilla.io', 'maxplanckcomputing&datafacility', 'recogai']",,10.4,364,231,20,0,30,52,30,369.0,470.0,90.0,1.3,4,49.38941 +531,ml-dl,https://github.com/neuralmagic/sparseml,,,,neuralmagic/sparseml,sparseml,1455,104,36,"['pytorch', 'keras', 'model-sparsification', 'sparsification-recipes', 'tensorflow', 'smaller-models', 'deep-learning-library', 'deep-learning-algorithms', 'deep-learning-models', 'automl', 'pruning-algorithms', 'sparsity', 'sparsification', 'recipe-driven-approaches', 'pruning', 'computer-vision-algorithms', 'object-detection', 'image-classification', 'nlp', 'onnx']",Python,,"sparseml: Libraries for applying sparsification recipes to neural networks with a few lines of code, enabling faster and smaller models",neuralmagic,2022-12-18,2022-12-15,2020-12-11,105,13.800813008130081,36,1,5,['neuralmagic'],,8.13,242,216,25,0,12,12,12,242.0,161.0,90.0,0.7,9,43.60185 +703,util,https://github.com/openai/openai-python,,,,openai/openai-python,openai-python,1433,345,52,[],Python,,openai/openai-python,openai,2022-12-18,2022-12-07,2020-10-25,112,12.778343949044586,26,2,5,"['microsoft', 'openai']",,0.87,38,21,26,0,17,20,17,38.0,35.0,90.0,0.9,12,40.79217 +591,template,https://github.com/buuntu/fastapi-react,,,,buuntu/fastapi-react,fastapi-react,1428,241,35,"['fastapi', 'postgres', 'cookiecutter', 'react', 'react-admin', 'nginx', 'boilerplate', 'full-stack', 'typescript', 'sqlalchemy', 'jwt', 'oauth2', 'docker']",Python,,"fastapi-react: 🚀 Cookiecutter Template for FastAPI + React Projects. Using PostgreSQL, SQLAlchemy, and Docker",buuntu,2022-12-17,2022-02-18,2020-03-21,143,9.966101694915254,13,2,5,"['facebook', 'jasonhoku']",,0.02,2,0,33,10,0,1,1,2.0,2.0,90.0,1.0,7,24.14813 +638,perf,https://github.com/dask/distributed,,,,dask/distributed,distributed,1428,666,59,"['pydata', 'dask', 'distributed-computing', 'python', 'hacktoberfest']",Python,https://distributed.dask.org,distributed: A distributed task scheduler for Dask,dask,2022-12-16,2022-12-16,2015-09-13,379,3.7663903541823665,301,1,5,['coiled'],,15.67,479,300,88,0,0,26,26,479.0,1204.0,90.0,2.5,3056,68.77149 +861,jupyter,https://github.com/jupyter/nbconvert,,,,jupyter/nbconvert,nbconvert,1423,509,50,[],Python,https://nbconvert.readthedocs.io/,nbconvert: Jupyter Notebook Conversion,jupyter,2022-12-17,2022-12-18,2015-04-09,401,3.543578797580932,254,4,5,"['google', 'netflix', 'quansight-labs', 'simularesearchlaboratory']",,3.06,93,44,94,0,19,9,19,93.0,119.0,90.0,1.3,4472,66.48137 +324,security,https://github.com/pyupio/safety,,,,pyupio/safety,safety,1421,123,32,"['python', 'security', 'security-vulnerability', 'travis', 'vulnerability-scanners', 'vulnerability-detection']",Python,https://pyup.io/safety/,Safety checks Python dependencies for known security vulnerabilities and suggests the proper remediations for vulnerabilities detected.,pyupio,2022-12-16,2022-12-08,2016-10-19,321,4.41696269982238,40,2,5,"['pyupio', 'syncsketch']",,2.06,63,44,75,0,11,9,11,63.0,38.0,90.0,0.6,1197,52.81789 +108,util,https://github.com/nficano/python-lambda,,,,nficano/python-lambda,python-lambda,1415,227,31,"['python', 'aws', 'aws-lambda', 'microservices', 'serverless']",Python,,python-lambda: A toolkit for developing and deploying serverless Python code in AWS Lambda. ,nficano,2022-12-10,2022-06-03,2016-02-26,355,3.9811093247588425,48,2,5,"['charliehealth', 'gemovationlabs']",,0.02,2,0,83,7,0,8,8,2.0,1.0,90.0,0.5,61,35.74429 +378,ml-interpretability,https://github.com/oegedijk/explainerdashboard,,,,oegedijk/explainerdashboard,explainerdashboard,1405,184,15,"['dash', 'shap-values', 'dashboard', 'model-predictions', 'data-scientists', 'explainer', 'interactive-dashboards', 'permutation-importances', 'shap', 'plotly', 'inner-workings', 'interactive-plots', 'xai-library', 'xai']",Python,http://explainerdashboard.readthedocs.io,"explainerdashboard: Quickly build Explainable AI dashboards that show the inner workings of so-called ""blackbox"" machine learning models.",oegedijk,2022-12-18,2022-12-09,2019-10-30,163,8.582024432809773,16,2,5,"['dtn', 'thoughtworks']",,1.15,15,7,38,0,4,23,4,15.0,30.0,90.0,2.0,151,43.40087 +429,jupyter,https://github.com/jupyter-lsp/jupyterlab-lsp,,,,jupyter-lsp/jupyterlab-lsp,jupyterlab-lsp,1388,116,16,"['jupyterlab', 'jupyterlab-extension', 'language-server-protocol', 'jupyter-lab', 'lsp', 'linter', 'jupyter', 'jupyter-notebook', 'notebook', 'notebook-jupyter', 'ipython', 'autocompletion', 'julia-language', 'r']",TypeScript,,jupyterlab-lsp: Coding assistance for JupyterLab (code navigation + hover suggestions + linters + autocompletion + rename) using Language Server Protocol,jupyter-lsp,2022-12-17,2022-12-18,2019-08-17,174,7.963934426229508,45,3,5,"['google', 'quantstack', 'universityofoxford']",,3.71,49,29,41,0,4,13,4,49.0,76.0,90.0,1.6,4,44.04962 +683,util,https://github.com/spotify/basic-pitch,,,,spotify/basic-pitch,basic-pitch,1377,68,25,"['lightweight', 'machine-learning', 'midi', 'music', 'pitch-detection', 'polyphonic', 'transcription', 'audio', 'python', 'typescript']",Python,https://basicpitch.io,basic-pitch: A lightweight yet powerful audio-to-MIDI converter with pitch bend detection,spotify,2022-12-18,2022-08-30,2022-05-03,32,41.90869565217391,7,2,5,"['christianclauss', 'spotify']",,0.58,15,6,8,4,0,0,0,15.0,14.0,90.0,0.9,0,19.33768 +149,data,https://github.com/simple-salesforce/simple-salesforce,,,,simple-salesforce/simple-salesforce,simple-salesforce,1375,606,88,"['salesforce', 'api', 'api-client', 'python']",Python,,simple-salesforce: A very simple Salesforce.com REST API client for Python,simple-salesforce,2022-12-18,2022-12-07,2013-01-17,517,2.6566381451835497,75,2,5,"[':+1:', 'salesforce']",,0.21,29,11,121,0,5,4,5,29.0,46.0,90.0,1.6,25,46.60257 +284,data,https://github.com/sdispater/orator,,,,sdispater/orator,orator,1373,165,46,"['python', 'orm', 'database']",Python,https://orator-orm.com,orator: The Orator ORM provides a simple yet beautiful ActiveRecord implementation.,sdispater,2022-12-18,2022-03-13,2015-05-24,395,3.4746926970354304,32,2,5,"['bellawatt', 'masoniteframework']",,0.02,2,0,92,9,0,4,4,2.0,0.0,90.0,0.0,4,27.07055 +438,gis,https://github.com/giswqs/leafmap,,,,giswqs/leafmap,leafmap,1371,165,40,"['ipyleaflet', 'folium', 'mapping', 'python', 'geopython', 'jupyter-notebook', 'jupyter', 'gis', 'dataviz', 'data-science', 'whiteboxtools', 'geospatial', 'geospatial-analysis', 'leafmap', 'streamlit', 'streamlit-webapp', 'plotly', 'pydeck', 'keplergl']",Python,https://leafmap.org,leafmap: A Python package for interactive mapping and geospatial analysis with minimal coding in a Jupyter environment,giswqs,2022-12-18,2022-12-11,2021-03-10,92,14.787365177195685,19,3,5,"['germanaerospacecenter(dlr)', 'naxa', 'universityoftennessee']",,5.79,40,37,22,0,42,35,42,40.0,85.0,90.0,2.1,4,44.67672 +267,nlp,https://github.com/arxiv-vanity/arxiv-vanity,,,,arxiv-vanity/arxiv-vanity,arxiv-vanity,1366,87,22,"['latex', 'academic-publishing', 'science', 'arxiv']",Python,https://www.arxiv-vanity.com,arxiv-vanity: Renders papers from arXiv as responsive web pages so you don't have to squint at a PDF.,arxiv-vanity,2022-12-14,2022-01-18,2017-08-12,279,4.8910485933503836,9,1,5,['replicate'],,0.13,26,15,65,11,0,0,0,26.0,18.0,90.0,0.7,3,23.08011 +721,util,https://github.com/omry/omegaconf,,,,omry/omegaconf,omegaconf,1360,71,17,"['python', 'yaml', 'yaml-configuration', 'configuration-files', 'configuration-loader', 'python-types', 'schema-validator']",Python,,omegaconf: Flexible Python configuration system. The last one you will ever need.,omry,2022-12-16,2022-12-17,2018-09-03,224,6.071428571428571,28,3,5,"['ceph', 'facebook', 'facebookairesearch']",,2.33,51,35,52,0,4,4,4,51.0,34.0,90.0,0.7,58,45.53101 +298,crypto,https://github.com/blankly-finance/blankly,,,,blankly-finance/blankly,blankly,1357,173,28,"['cryptocurrency', 'bot-framework', 'investment', 'bots', 'bot', 'coinbase', 'binance', 'blankly', 'stocks', 'platform', 'framework', 'trading', 'trading-bot', 'trading-strategies', 'python', 'crypto', 'algotrading']",Python,https://package.blankly.finance,"blankly: 🚀 💸 Easily build, backtest and deploy your algo in just a few lines of code. Trade stocks, cryptos, and forex across exchanges w/ one package.",blankly-finance,2022-12-17,2022-12-08,2021-03-09,92,14.613846153846154,16,2,5,"['amazonwebservices', 'student']",,10.13,16,10,22,0,5,15,5,16.0,29.0,90.0,1.8,4,39.07736 +613,testing,https://github.com/pytest-dev/pytest-cov,,,,pytest-dev/pytest-cov,pytest-cov,1356,190,34,"['pytest', 'python']",Python,,pytest-cov: Coverage plugin for pytest.,pytest-dev,2022-12-18,2022-12-03,2014-04-17,452,2.996212121212121,81,2,5,"['freelancer,upforhire', 'nordsoftware']",,0.73,39,18,106,1,0,5,5,39.0,78.0,90.0,2.0,6181,56.35296 +478,ml-dl,https://github.com/tensorflow/mesh,,,,tensorflow/mesh,mesh,1344,235,44,[],Python,,Mesh TensorFlow: Model Parallelism Made Easier,tensorflow,2022-12-15,2022-10-04,2018-09-20,221,6.065764023210832,48,2,5,"['google', 'uncandhuggingface']",,0.13,1,1,52,3,0,1,1,1.0,1.0,90.0,1.0,40,34.48272 +318,gamedev,https://github.com/pythonarcade/arcade,1.0,,,pythonarcade/arcade,arcade,1343,252,56,"['python3', 'python', 'arcade-framework', 'arcade-api', 'arcade-learning-environment', 'opengl', 'educational-technology', 'educational-resources']",Python,http://arcade.academy,arcade: Easy to use Python library for creating 2D arcade games.,pythonarcade,2022-12-17,2022-12-18,2016-01-04,363,3.6997245179063363,131,4,5,"['freelance,opentofull-timeemployment', 'optimizely', 'vw-dilab', 'zetta.io']",,15.96,135,102,85,0,0,18,18,135.0,153.0,90.0,1.1,112,60.60646 +460,nlp,https://github.com/google-research/language,,,,google-research/language,language,1339,311,65,"['natural-language-processing', 'machine-learning', 'research']",Python,https://ai.google/research/teams/language/,language: Shared repository for open-sourced projects from the Google AI Language team.,google-research,2022-12-16,2022-12-16,2018-10-16,217,6.146229508196721,10,3,5,"['google', 'googleresearch', 'universityofwashington']",,0.1,16,3,51,0,0,0,0,16.0,3.0,90.0,0.2,20,32.42777 +876,study,https://github.com/rasbt/machine-learning-book,,,,rasbt/machine-learning-book,machine-learning-book,1332,496,27,"['machine-learning', 'scikit-learn', 'deep-learning', 'neural-networks', 'pytorch']",Jupyter Notebook,https://sebastianraschka.com/books/#machine-learning-with-pytorch-and-scikit-learn,machine-learning-book: Code Repository for Machine Learning with PyTorch and Scikit-Learn,rasbt,2022-12-18,2022-11-30,2021-12-19,52,25.545205479452054,9,2,5,"['google', 'lightning-ai,universityofwisconsin-madison']",,2.19,31,23,12,1,2,2,2,31.0,31.0,90.0,1.0,10,32.10811 +659,ml,https://github.com/tensorly/tensorly,,,,tensorly/tensorly,tensorly,1331,261,45,"['machine-learning', 'tensor', 'decomposition', 'tensor-algebra', 'tensorly', 'tensor-learning', 'python', 'tensor-methods', 'pytorch', 'mxnet', 'jax', 'tensorflow', 'cupy', 'numpy', 'tensor-decomposition', 'tensor-factorization', 'tensor-regression', 'regression']",Python,http://tensorly.org,TensorLy: Tensor Learning in Python.,tensorly,2022-12-10,2022-12-12,2016-10-21,321,4.140888888888889,57,5,5,"['inria', 'nvidiaai', 'quansight', 'simulametropolitan', 'universityofcalifornia,losangeles']",,4.83,33,22,75,0,0,3,3,33.0,47.0,90.0,1.4,8377,60.62134 +898,ml-ops,https://github.com/hi-primus/optimus,,,,hi-primus/optimus,optimus,1325,223,41,"['spark', 'pyspark', 'data-wrangling', 'bigdata', 'big-data-cleaning', 'data-science', 'data-cleansing', 'data-cleaner', 'data-transformation', 'machine-learning', 'data-profiling', 'data-extraction', 'data-exploration', 'data-analysis', 'data-preparation', 'cudf', 'dask', 'dask-cudf', 'data-cleaning']",Python,https://hi-optimus.com,"optimus: :truck: Agile Data Preparation Workflows made easy with Pandas, Dask, cuDF, Dask-cuDF, Vaex and PySpark",hi-primus,2022-12-18,2022-10-17,2017-07-13,283,4.672544080604534,24,4,5,"['boitas', 'bumblebee', 'life', 'pyupio']",,4.33,22,16,66,2,13,23,13,22.0,8.0,90.0,0.4,7,41.24626 +317,gamedev,https://github.com/pyglet/pyglet,,,,pyglet/pyglet,pyglet,1318,248,29,"['pyglet', 'python', 'opengl', 'gamedev', 'scientific-visualization']",Python,http://pyglet.org,"pyglet is a cross-platform windowing and multimedia library for Python, for developing games and other visually rich applications.",pyglet,2022-12-18,2022-12-16,2019-06-09,184,7.1574864235841735,140,2,5,"['itv', 'tomtom-international']",,7.25,92,65,43,0,6,14,6,92.0,261.0,90.0,2.8,225,56.81863 +450,gis,https://github.com/jupyter-widgets/ipyleaflet,,,,jupyter-widgets/ipyleaflet,ipyleaflet,1316,348,61,"['jupyterlab-extension', 'leaflet', 'visualization', 'jupyter']",JavaScript,https://ipyleaflet.readthedocs.io,ipyleaflet: A Jupyter - Leaflet.js bridge,jupyter-widgets,2022-12-15,2022-10-27,2014-05-07,449,2.926302414231258,81,3,5,"['amazonwebservices', 'databricks', 'quantstack']",,1.98,40,22,105,2,4,9,4,40.0,72.0,90.0,1.8,13,46.28313 +877,time-series,https://github.com/alkaline-ml/pmdarima,,,,alkaline-ml/pmdarima,pmdarima,1290,223,36,"['arima', 'time-series', 'forecasting', 'forecasting-models', 'python', 'econometrics', 'pmdarima', 'machine-learning', 'sarimax']",Python,https://www.alkaline-ml.com/pmdarima,"pmdarima: A statistical library designed to fill the void in Python's time series analysis capabilities, including the equivalent of R's auto.arima function.",alkaline-ml,2022-12-17,2022-12-12,2017-03-30,298,4.320574162679426,22,4,5,"['chivalrysoftware', 'microsoft', 'sevcosecurity', 'toyota-connected']",,0.46,21,10,70,0,6,7,6,21.0,13.0,90.0,0.6,11,41.37331 +766,diffusion,https://github.com/divamgupta/stable-diffusion-tensorflow,,,,divamgupta/stable-diffusion-tensorflow,stable-diffusion-tensorflow,1288,172,19,[],Python,,stable-diffusion-tensorflow: Stable Diffusion in TensorFlow / Keras,divamgupta,2022-12-18,2022-11-22,2022-09-15,13,94.90526315789474,13,0,5,[],,1.79,56,34,3,1,0,0,0,56.0,94.0,90.0,1.7,4,23.08613 +676,gis,https://github.com/apache/incubator-sedona,,,,apache/incubator-sedona,incubator-sedona,1282,536,101,"['cluster-computing', 'spatial-sql', 'geospatial', 'spatial-analysis', 'spatial-query', 'scala', 'java', 'python']",Java,http://sedona.apache.org/,incubator-sedona: A cluster computing framework for processing large-scale geospatial data,apache,2022-12-18,2022-12-18,2015-04-24,399,3.209585121602289,91,4,5,"['bloomberg', 'grab', 'nttdata', 'wherobots']",,3.79,52,46,93,0,3,10,3,52.0,62.0,90.0,1.2,0,45.42157 +391,data,https://github.com/mchong6/jojogan,,,,mchong6/jojogan,JoJoGAN,1272,185,24,"['image-translation', 'gans', 'anime']",Jupyter Notebook,,Official PyTorch repo for JoJoGAN: One Shot Face Stylization,mchong6,2022-12-18,2022-02-05,2021-12-17,52,24.26158038147139,3,1,5,['huggingface'],,0.48,3,0,12,11,0,0,0,3.0,1.0,90.0,0.3,12,14.76421 +465,ml-dl,https://github.com/pytorch/torchrec,,,,pytorch/torchrec,torchrec,1254,206,24,"['pytorch', 'gpu', 'deep-learning', 'cuda', 'recommender-system', 'recommendation-system', 'sharding']",Python,,torchrec: Pytorch domain library for recommendation systems,pytorch,2022-12-18,2022-12-18,2021-07-12,75,16.72,132,3,5,"['facebook', 'facebookai', 'pytorch']",,15.67,312,272,17,0,5,4,5,312.0,699.0,90.0,2.2,568,59.54388 +514,data,https://github.com/agronholm/sqlacodegen,,,,agronholm/sqlacodegen,sqlacodegen,1243,194,20,[],Python,,sqlacodegen: Automatic model code generator for SQLAlchemy,agronholm,2022-12-16,2022-11-23,2016-12-28,311,3.9876260311640697,16,1,5,['nextdaysolutionsoy'],,1.04,20,8,73,1,0,3,3,20.0,50.0,90.0,2.5,3,35.19549 +581,ml-dl,https://github.com/alpa-projects/alpa,,,,alpa-projects/alpa,alpa,1234,138,20,"['deep-learning', 'machine-learning', 'compiler', 'distributed-training', 'high-performance-computing', 'alpa', 'jax', 'distributed-computing', 'llm', 'auto-parallelization']",Python,https://alpa.ai,alpa: Training and serving large-scale neural networks,alpa-projects,2022-12-18,2022-12-17,2021-02-22,95,12.989473684210527,26,3,5,"['carnegiemellonuniversity', 'pekinguniversity', 'ucberkeley']",,6.83,128,101,22,0,12,7,12,127.0,225.0,90.0,1.8,19,47.97136 +885,time-series,https://github.com/aistream-peelout/flow-forecast,,,,aistream-peelout/flow-forecast,flow-forecast,1231,209,20,"['deep-learning', 'pytorch', 'time-series-forecasting', 'time-series', 'transfer-learning', 'deep-neural-networks', 'transformer', 'forecasting', 'lstm', 'time-series-regression', 'state-of-the-art-models', 'anomaly-detection', 'time-series-analysis', 'hacktoberfest']",Python,https://flow-forecast.atlassian.net/wiki/spaces/FF/overview,"flow-forecast: Deep learning PyTorch library for time series forecasting, classification, and anomaly detection (originally for flood forecasting).",aistream-peelout,2022-12-17,2022-12-06,2019-08-15,174,7.051554828150572,14,1,5,['okratechnologies'],,3.37,35,26,41,0,6,11,6,35.0,29.0,90.0,0.8,61,40.68059 +372,gis,https://github.com/microsoft/torchgeo,,,,microsoft/torchgeo,torchgeo,1230,144,33,"['pytorch', 'torchvision', 'datasets', 'models', 'transforms', 'remote-sensing', 'deep-learning', 'earth-observation']",Python,https://torchgeo.rtfd.io,"TorchGeo: datasets, samplers, transforms, and pre-trained models for geospatial data",microsoft,2022-12-18,2022-12-17,2021-05-21,82,14.922010398613518,27,3,5,"['dronebase', 'microsoft', 'universityofillinoisaturbana-champaign']",,7.88,202,160,19,0,5,4,5,202.0,309.0,90.0,1.5,13,46.07121 +829,study,https://github.com/huggingface/diffusion-models-class,,,,huggingface/diffusion-models-class,diffusion-models-class,1220,97,61,[],Jupyter Notebook,,diffusion-models-class: Materials for the Hugging Face Diffusion Models Course,huggingface,2022-12-18,2022-12-15,2022-10-13,9,127.46268656716418,10,3,5,"['drcfsorg', 'huggingface', 'relx']",,1.31,27,25,2,0,0,0,0,27.0,38.0,90.0,1.4,0,25.81276 +178,nlp,https://github.com/explosion/spacy-models,,,,explosion/spacy-models,spacy-models,1217,275,48,"['spacy', 'nlp', 'natural-language-processing', 'machine-learning', 'models', 'machine-learning-models', 'statistical-models', 'spacy-models']",Python,https://spacy.io,spacy-models: 💫 Models for the spaCy Natural Language Processing (NLP) library,explosion,2022-12-16,2022-12-15,2017-03-14,300,4.045109211775879,14,3,5,"['cotonoha', 'explosion', 'founderexplosion']",,3.63,5,4,70,0,166,128,166,5.0,0.0,90.0,0.0,68,43.1726 +414,nlp,https://github.com/chrismattmann/tika-python,,,,chrismattmann/tika-python,tika-python,1215,223,37,"['tika-server', 'python', 'tika-python', 'tika-server-jar', 'parser-interface', 'parse', 'translation-interface', 'usc', 'text-extraction', 'mime', 'buffer', 'memex', 'text-recognition', 'detection', 'recognition', 'nlp', 'nlp-machine-learning', 'nlp-library', 'covid-19', 'extraction']",Python,,Tika-Python is a Python binding to the Apache Tika™ REST services allowing Tika to be called natively in the Python community.,chrismattmann,2022-12-14,2021-06-07,2014-06-26,442,2.7453195610071015,63,1,5,['nasa'],,0.0,10,2,103,19,0,2,2,10.0,14.0,90.0,1.4,37,33.54696 +474,nlp,https://github.com/neuralmagic/deepsparse,,,,neuralmagic/deepsparse,deepsparse,1196,73,37,"['ml', 'machinelearning', 'pytorch', 'tensorflow', 'onnx', 'deepsparse-engine', 'sparsified-models', 'sparsification-recipe', 'inference', 'computer-vision', 'object-detection', 'pruning', 'quantization', 'pretrained-models', 'nlp', 'auto-ml', 'cpus', 'yolov3', 'sparsification', 'cpu-inference-api']",Python,,deepsparse: Inference runtime offering GPU-class performance on CPUs and APIs to integrate ML into your application,neuralmagic,2022-12-18,2022-12-12,2020-12-14,105,11.39047619047619,29,1,5,['neuralmagic'],,6.83,179,159,24,0,12,13,12,179.0,111.0,90.0,0.6,0,37.86105 +435,data,https://github.com/sdv-dev/sdv,,,,sdv-dev/sdv,SDV,1187,189,40,"['synthetic-data', 'machine-learning', 'relational-datasets', 'multi-table', 'time-series', 'synthetic-data-generation', 'sdv', 'data-generation', 'generative-adversarial-network', 'gan', 'gans', 'deep-learning', 'generative-ai', 'generative-model']",Python,https://sdv.dev/SDV,"SDV: Synthetic Data Generation for tabular, relational and time series data.",sdv-dev,2022-12-18,2022-12-15,2018-05-11,240,4.937017231134878,41,2,5,"['precognit', 'pythiac']",,2.85,160,113,56,0,8,9,8,160.0,131.0,90.0,0.8,7,44.85376 +162,nlp,https://github.com/explosion/spacy-transformers,,,,explosion/spacy-transformers,spacy-transformers,1184,154,30,"['spacy', 'spacy-pipeline', 'spacy-extension', 'nlp', 'natural-language-processing', 'natural-language-understanding', 'pytorch', 'bert', 'google', 'pytorch-model', 'openai', 'language-model', 'machine-learning', 'huggingface', 'transfer-learning', 'xlnet', 'gpt-2']",Python,https://spacy.io/usage/embeddings-transformers,"spacy-transformers: 🛸 Use pretrained transformers like BERT, XLNet and GPT-2 in spaCy",explosion,2022-12-18,2022-12-16,2019-07-26,177,6.673107890499195,19,3,5,"['explosion&oxykodit', 'founderexplosion', 'indeedeng']",,0.58,14,12,41,0,5,11,5,14.0,5.0,90.0,0.4,14,38.14826 +264,data,https://github.com/collerek/ormar,,,,collerek/ormar,ormar,1182,61,15,"['orm', 'sqlalchemy', 'async-orm', 'python-orm', 'fastapi', 'pydantic', 'alembic', 'databases']",Python,https://collerek.github.io/ormar/,ormar: python async orm with fastapi in mind and pydantic validation,collerek,2022-12-16,2022-12-14,2020-08-02,124,9.521288837744533,30,3,5,"['kaizentech', 'leyantech', 'wheel-me']",,5.63,121,100,29,0,7,31,7,121.0,131.0,90.0,1.1,130,49.95899 +566,gis,https://github.com/gboeing/osmnx-examples,,,,gboeing/osmnx-examples,osmnx-examples,1179,434,54,"['street-networks', 'binder', 'jupyter-notebook', 'notebooks', 'urban-planning', 'city', 'cities', 'openstreetmap', 'network-analysis', 'transport', 'transportation', 'accessibility', 'urban-data-science', 'urban-analytics', 'public-transport', 'python', 'transit', 'urban-design']",Jupyter Notebook,https://github.com/gboeing/osmnx,"osmnx-examples: Usage examples, demos, and tutorials for OSMnx.",gboeing,2022-12-18,2022-12-15,2017-07-22,282,4.176619433198381,1,1,5,['universityofsoutherncalifornia'],,0.31,2,2,66,0,0,2,2,2.0,1.0,90.0,0.5,3,23.77454 +451,util,https://github.com/imageio/imageio,,,,imageio/imageio,imageio,1168,235,31,"['python', 'imageio', 'animated-gif', 'video', 'webcam-capture', 'scientific-formats', 'dicom']",Python,https://imageio.readthedocs.io,imageio: Python library for reading and writing image data,imageio,2022-12-17,2022-12-17,2013-05-04,502,2.3253697383390217,95,4,5,"['actions', 'independentsoftwareengineer', 'mongodb', 'usr-lab']",,2.46,52,36,117,0,26,7,26,52.0,155.0,90.0,3.0,2463,65.32585 +647,data,https://github.com/pytables/pytables,,,,pytables/pytables,PyTables,1163,236,59,[],Python,http://www.pytables.org,PyTables: A Python package to manage extremely large amounts of data,pytables,2022-12-15,2022-12-16,2011-06-03,602,1.9305193265354517,110,2,5,"['coornhertgymnasium', 'francescalted']",,4.96,36,22,141,0,1,4,1,36.0,105.0,90.0,2.9,132,53.64475 +304,nlp,https://github.com/featureform/embeddinghub,,,,featureform/embeddinghub,featureform,1162,42,12,"['machine-learning', 'data-science', 'vector-database', 'embeddings-similarity', 'embeddings', 'hacktoberfest', 'feature-store', 'mlops', 'data-quality', 'feature-engineering', 'ml', 'python']",Go,https://www.featureform.com,featureform: The Virtual Feature Store. Turn your existing data infrastructure into a feature store.,featureform,2022-12-16,2022-12-07,2020-10-16,113,10.244332493702771,18,1,5,['featureform'],,47.98,124,103,26,0,6,4,6,124.0,103.0,90.0,0.8,9,42.88447 +494,ml-dl,https://github.com/hysts/pytorch_image_classification,,,,hysts/pytorch_image_classification,pytorch_image_classification,1159,289,27,"['pytorch', 'computer-vision', 'cifar10', 'fashion-mnist', 'imagenet']",Python,,pytorch_image_classification: PyTorch implementation of image classification models for CIFAR-10/CIFAR-100/MNIST/FashionMNIST/Kuzushiji-MNIST/ImageNet,hysts,2022-12-17,2021-12-12,2017-12-09,262,4.418845315904139,1,0,5,[],,0.0,0,0,61,12,0,0,0,0.0,0.0,90.0,0.0,0,5.74707 +725,typing,https://github.com/patrick-kidger/torchtyping,,,,patrick-kidger/torchtyping,torchtyping,1153,27,13,"['tensors', 'named-tensors', 'shape', 'pytorch', 'typing', 'python-typing']",Python,,"torchtyping: Type annotations and dynamic checking for a tensor's shape, dtype, names, etc.",patrick-kidger,2022-12-14,2022-07-11,2021-03-28,90,12.79080824088748,6,3,5,"['avatarify', 'googlex', 'irtsaint-exupéry']",,0.04,4,1,21,5,0,0,0,4.0,10.0,90.0,2.5,2,24.3071 +862,jupyter,https://github.com/jupyter/nbgrader,,,,jupyter/nbgrader,nbgrader,1151,315,43,"['nbgrader', 'jupyter', 'jupyter-notebook', 'jupyterhub', 'teaching', 'grading']",Python,https://nbgrader.readthedocs.io/,nbgrader: A system for assigning and grading notebooks,jupyter,2022-12-17,2022-11-30,2014-09-13,431,2.6687644915534947,98,1,5,['quantstack'],,3.96,67,24,101,2,7,3,7,67.0,135.0,90.0,2.0,74,48.72421 +636,util,https://github.com/pygments/pygments,,,,pygments/pygments,pygments,1148,484,27,"['python', 'syntax-highlighting']",Python,http://pygments.org/,Pygments is a generic syntax highlighter written in Python,pygments,2022-12-18,2022-12-15,2019-08-31,172,6.66334991708126,757,3,5,"['amd', 'fzjülich', 'google']",,7.58,133,67,40,0,5,17,5,133.0,184.0,90.0,1.4,7530,67.10478 +489,gis,https://github.com/scitools/cartopy,,,,scitools/cartopy,cartopy,1145,333,55,"['cartopy', 'matplotlib', 'python', 'geometry', 'maps', 'spatial', 'projections']",Python,https://scitools.org.uk/cartopy/docs/latest,Cartopy - a cartographic python library with matplotlib support,scitools,2022-12-18,2022-12-14,2012-08-03,541,2.1147757255936677,118,3,5,"['lasp/lasp/swxtrec', 'metoffice', 'ucar/unidata']",,1.4,46,26,126,0,4,4,4,46.0,135.0,90.0,2.9,284,56.97742 +194,web,https://github.com/jordaneremieff/mangum,,,,jordaneremieff/mangum,mangum,1144,78,16,"['asgi', 'aws', 'lambda', 'serverless', 'python', 'asyncio', 'api-gateway', 'starlette', 'fastapi', 'quart', 'django', 'sanic', 'aws-lambda', 'python3']",Python,https://mangum.io/,mangum: AWS Lambda support for ASGI applications,jordaneremieff,2022-12-18,2022-11-27,2019-01-14,205,5.580487804878048,29,2,5,"['resurety', 'tractabletractableai']",,0.56,11,8,48,1,8,15,8,11.0,14.0,90.0,1.3,16,39.15951 +338,perf,https://github.com/tlkh/asitop,,,,tlkh/asitop,asitop,1142,69,14,"['cpu', 'gpu', 'cli', 'macos', 'm1', 'apple-silicon']",Python,https://tlkh.github.io/asitop/,asitop: Perf monitoring CLI tool for Apple Silicon,tlkh,2022-12-18,2022-08-20,2021-10-27,59,19.124401913875598,8,1,5,['singaporeuniversityoftechnologyanddesign'],,0.27,13,3,14,4,0,0,0,13.0,65.0,90.0,5.0,0,22.95553 +16,perf,https://github.com/eventlet/eventlet,,,,eventlet/eventlet,eventlet,1139,295,62,"['python', 'concurrency', 'network', 'c10k', 'greenlet', 'production-ready']",Python,https://eventlet.net,eventlet: Concurrent networking library for Python,eventlet,2022-12-08,2022-11-17,2012-12-11,522,2.178415300546448,181,0,5,[],,0.15,18,5,122,1,0,5,5,18.0,26.0,90.0,1.4,2749,49.06214 +403,perf,https://github.com/agronholm/anyio,,,,agronholm/anyio,anyio,1134,95,24,"['async-await', 'trio', 'asyncio', 'curio']",Python,,anyio: High level asynchronous concurrency and networking framework that works on top of either trio or asyncio,agronholm,2022-12-17,2022-12-14,2018-08-19,226,5.01452937460518,38,3,5,"['andrewjayichlabucsb', 'nextdaysolutionsoy', 'norisnetworkag']",,2.38,64,43,53,0,0,10,10,64.0,117.0,90.0,1.8,553,54.25376 +720,math,https://github.com/facebookresearch/theseus,,,,facebookresearch/theseus,theseus,1132,76,29,"['differentiable-optimization', 'robotics', 'embodied-ai', 'nonlinear-least-squares', 'pytorch', 'deep-learning', 'computer-vision', 'gauss-newton', 'levenberg-marquardt', 'implicit-differentiation', 'bilevel-optimization']",Python,,theseus: A library for differentiable nonlinear optimization,facebookresearch,2022-12-18,2022-12-16,2021-11-18,56,20.01010101010101,19,2,5,"['facebookairesearchfacebookresearch', 'metaai']",,4.25,107,84,13,0,5,7,5,107.0,64.0,90.0,0.6,0,34.4576 +802,util,https://github.com/open-telemetry/opentelemetry-python,,,,open-telemetry/opentelemetry-python,opentelemetry-python,1125,402,35,"['python', 'opentelemetry', 'tracecontext', 'correlationcontext', 'distributed-tracing', 'logging', 'metrics', 'sdk']",Python,https://opentelemetry.io,opentelemetry-python: OpenTelemetry Python API and SDK ,open-telemetry,2022-12-18,2022-12-09,2019-05-07,188,5.9568835098335855,172,4,5,"['google', 'lightstep', 'microsoftcorporation', 'signoz.io']",,5.42,206,128,44,0,11,14,11,206.0,374.0,90.0,1.8,128,59.19414 +545,ml,https://github.com/borealisai/advertorch,,,,borealisai/advertorch,advertorch,1119,178,27,"['pytorch', 'adversarial-examples', 'adversarial-example', 'adversarial-perturbations', 'adversarial-attacks', 'adversarial-machine-learning', 'adversarial-learning', 'robustness', 'toolbox', 'security', 'machine-learning', 'benchmarking']",Jupyter Notebook,,advertorch: A Toolbox for Adversarial Robustness Research,borealisai,2022-12-13,2022-05-29,2018-11-29,211,5.288993923024983,21,2,5,"['borealisai', 'ecopiaai']",,0.31,3,1,49,7,0,0,0,3.0,1.0,90.0,0.3,2,23.4038 +618,testing,https://github.com/pytest-dev/pytest-bdd,,,,pytest-dev/pytest-bdd,pytest-bdd,1102,186,54,[],Python,https://pytest-bdd.readthedocs.io/en/latest/,pytest-bdd: BDD library for the py.test runner,pytest-dev,2022-12-15,2022-12-14,2013-03-29,507,2.171734234234234,52,2,5,"['bruhinsoftware', 'fareharbor']",,4.33,38,28,118,0,2,10,2,38.0,63.0,90.0,1.7,232,51.7366 +396,web,https://github.com/neoteroi/blacksheep,,,,neoteroi/blacksheep,BlackSheep,1100,50,23,"['asyncio', 'server', 'http', 'asgi', 'blacksheep', 'python', 'http-server', 'rest', 'web', 'framework']",Python,https://www.neoteroi.dev/blacksheep/,BlackSheep: Fast ASGI web framework for Python,neoteroi,2022-12-14,2022-12-14,2018-11-22,212,5.174731182795699,10,0,5,[],,0.6,17,12,50,0,6,7,6,17.0,39.0,90.0,2.3,30,35.53396 +726,perf,https://github.com/omyyyy/pycom,,,,omyyyy/pycom,pycom,1094,21,17,[],C++,,"pycom: A Python compiler, down to native code, using C++",omyyyy,2022-12-16,2022-08-31,2022-07-16,22,49.08974358974359,6,2,5,"['marcelpetrick.it', 'universityofcalgary']",,1.71,2,1,5,4,1,2,1,2.0,1.0,90.0,0.5,0,17.10565 +900,ml,https://github.com/shankarpandala/lazypredict,,,,shankarpandala/lazypredict,lazypredict,1090,123,16,"['machine-learning', 'automl', 'regression', 'classification']",Python,,lazypredict: Lazy Predict help build a lot of basic models without much code and helps understand which models works better without any parameter tuning,shankarpandala,2022-12-18,2022-09-28,2019-11-16,161,6.758193091231178,18,5,5,"['appliedmaterials', 'fiolabs-internal', 'pyupio', 'streamlit', 'wildlife-studios']",,0.6,24,5,38,3,1,4,1,24.0,22.0,90.0,0.9,3,33.21855 +448,gis,https://github.com/pysal/pysal,1.0,,,pysal/pysal,pysal,1084,287,81,[],Jupyter Notebook,http://pysal.org/pysal,PySAL: Python Spatial Analysis Library Meta-Package,pysal,2022-12-18,2022-07-23,2013-02-19,512,2.113649025069638,77,3,5,"['centerforopengeographicalscience', 'geoda/asu', 'usgsastrogeology']",,0.65,2,2,120,5,5,3,5,2.0,6.0,90.0,3.0,1349,50.581 +656,web,https://github.com/magicstack/httptools,,,,magicstack/httptools,httptools,1082,69,40,[],Python,,httptools: Fast HTTP parser,magicstack,2022-12-13,2022-09-13,2016-04-25,347,3.118155619596542,13,2,5,"['edgedb', 'enix']",,0.12,3,1,81,3,2,2,2,3.0,6.0,90.0,2.0,245,38.21304 +798,data,https://github.com/jsonpickle/jsonpickle,,,,jsonpickle/jsonpickle,jsonpickle,1079,153,31,"['json', 'python', 'serialization', 'pickle', 'deserialization', 'objectstorage', 'bsd-3-clause']",Python,https://jsonpickle.github.io,"jsonpickle: Python library for serializing any arbitrary object graph into JSON. It can take almost any Python object and turn the object into JSON. Additionally, it can reconstitute the object back into Python.",jsonpickle,2022-12-18,2022-12-17,2009-12-10,679,1.587765398360311,68,4,5,"['3dhubs', 'equium-io', 'google', 'waltdisneyanimationstudios']",,2.25,29,22,159,0,0,3,3,29.0,56.0,90.0,1.9,170,54.09076 +771,data,https://github.com/google/tensorstore,,,,google/tensorstore,tensorstore,1074,79,30,[],C++,https://google.github.io/tensorstore/,tensorstore: Library for reading and writing large multi-dimensional arrays.,google,2022-12-15,2022-12-15,2020-03-30,142,7.563380281690141,10,1,5,['google'],,5.65,35,23,33,0,0,11,11,35.0,195.0,90.0,5.6,29,45.11251 +417,pandas,https://github.com/pyjanitor-devs/pyjanitor,1.0,,,pyjanitor-devs/pyjanitor,pyjanitor,1070,160,21,"['pandas', 'dataframe', 'data', 'cleaning-data', 'data-engineering', 'pydata', 'hacktoberfest']",Python,https://pyjanitor-devs.github.io/pyjanitor,pyjanitor: Clean APIs for data cleaning. Python implementation of R package Janitor,pyjanitor-devs,2022-12-18,2022-11-30,2018-03-04,250,4.2775556824671614,106,3,5,"['amdi', 'datajanitor', 'springdiscovery']",,2.77,81,60,58,1,2,10,2,81.0,193.0,90.0,2.4,2,45.27839 +651,profiling,https://github.com/p403n1x87/austin,,,,p403n1x87/austin,austin,1065,35,14,"['python', 'profiling', 'performance', 'debugging-tools']",C,,austin: Python frame stack sampler for CPython,p403n1x87,2022-12-18,2022-10-28,2018-09-20,221,4.806576402321083,7,3,5,"['datadog', 'madalgo', 'microsoft']",,2.02,28,24,52,2,6,6,6,28.0,44.0,90.0,1.6,29,39.6474 +512,typing,https://github.com/agronholm/typeguard,,,,agronholm/typeguard,typeguard,1065,79,17,[],Python,,typeguard: Run-time type checker for Python,agronholm,2022-12-12,2022-10-11,2015-12-27,364,2.924676343664182,21,2,5,"['nextdaysolutionsoy', 'salesforce.org']",,0.35,10,4,85,2,0,6,6,10.0,6.0,90.0,0.6,265,40.9188 +626,viz,https://github.com/enthought/mayavi,,,,enthought/mayavi,mayavi,1060,264,93,[],Python,http://docs.enthought.com/mayavi/mayavi/,mayavi: 3D visualization of scientific data in Python,enthought,2022-12-16,2022-10-18,2011-01-24,621,1.7069243156199678,93,3,5,"['astrazenecauk', 'enthought', 'iitbombay']",,1.19,44,25,145,2,0,3,3,44.0,82.0,90.0,1.9,119,50.21249 +627,data,https://github.com/zarr-developers/zarr-python,,,,zarr-developers/zarr-python,zarr-python,1059,210,43,"['hacktoberfest', 'zarr', 'ndimensional-arrays', 'compressed', 'python']",Python,http://zarr.readthedocs.io/,"zarr-python: An implementation of chunked, compressed, N-dimensional arrays for Python.",zarr-developers,2022-12-17,2022-12-16,2015-12-15,365,2.8945724326434985,77,3,5,"['openmicroscopy', 'quansight-labs', 'weomesangerinstitute']",,3.62,207,115,85,0,12,11,12,207.0,692.0,90.0,3.3,75,57.87181 +619,testing,https://github.com/pytest-dev/pytest-asyncio,,,,pytest-dev/pytest-asyncio,pytest-asyncio,1056,116,35,[],Python,https://pytest-asyncio.readthedocs.io,pytest-asyncio: Asyncio support for pytest,pytest-dev,2022-12-17,2022-12-13,2015-04-11,401,2.6315414738341047,40,2,5,"['neu.ro', 'pocketzworld']",,3.27,80,66,94,0,15,5,15,80.0,80.0,90.0,1.0,2129,56.86242 +239,data,https://github.com/simonw/sqlite-utils,,,,simonw/sqlite-utils,sqlite-utils,1055,81,17,"['sqlite', 'python', 'datasette', 'sqlite-database', 'click', 'cli', 'datasette-io', 'datasette-tool']",Python,https://sqlite-utils.datasette.io,sqlite-utils: Python CLI utility and library for manipulating SQLite databases,simonw,2022-12-16,2022-12-10,2018-07-14,231,4.561457689932057,27,3,5,"['datasette', 'stanforduniversity', 'usatodaynetwork/glasseyemedia/homicidewatch']",,4.17,39,22,54,0,14,26,14,39.0,93.0,90.0,2.4,123,52.01717 +609,testing,https://github.com/pytest-dev/pytest-xdist,,,,pytest-dev/pytest-xdist,pytest-xdist,1045,185,46,"['hacktoberfest', 'pytest', 'pytest-plugin']",Python,https://pytest-xdist.readthedocs.io,pytest-xdist: pytest plugin for distributed testing and loop-on-failures testing modes. ,pytest-dev,2022-12-16,2022-12-13,2015-09-01,380,2.7438109527381846,86,4,5,"['esss', 'merlinux', 'nordsoftware', 'redhatinsights']",,1.25,56,37,89,0,0,8,8,56.0,128.0,90.0,2.3,1467,60.0196 +666,ml,https://github.com/huggingface/evaluate,,,,huggingface/evaluate,evaluate,1038,85,39,"['evaluation', 'machine-learning']",Python,https://huggingface.co/docs/evaluate,🤗 Evaluate: A library for easily evaluating machine learning models and datasets.,huggingface,2022-12-18,2022-12-13,2022-03-30,37,27.522727272727273,111,2,5,"['huggingface', 'huggingfaceaiinnova']",,8.37,117,82,9,0,8,11,8,117.0,290.0,90.0,2.5,644,55.06746 +191,ml,https://github.com/awslabs/dgl-ke,,,,awslabs/dgl-ke,dgl-ke,1035,176,23,"['machine-learning', 'knowledge-graph', 'knowledge-graphs-embeddings', 'graph-learning', 'dgl']",Python,https://dglke.dgl.ai/doc/,"dgl-ke: High performance, easy-to-use, and scalable package for learning large-scale knowledge graph embeddings.",awslabs,2022-12-16,2022-11-18,2020-03-03,145,7.095984329089128,25,3,5,"['amazon', 'aws', 'kwai']",,0.1,16,8,34,1,0,1,1,16.0,20.0,90.0,1.2,0,31.0426 +817,ml-dl,https://github.com/calculatedcontent/weightwatcher,,,,calculatedcontent/weightwatcher,WeightWatcher,1033,94,29,[],Python,,WeightWatcher: The WeightWatcher tool for predicting the accuracy of Deep Neural Networks,calculatedcontent,2022-12-16,2022-12-13,2018-11-28,211,4.879217273954116,7,3,5,"['calculationconsulting', 'etalab', 'ozminerals']",,4.88,66,55,49,0,1,2,1,66.0,107.0,90.0,1.6,24,41.9066 +644,util,https://github.com/metachris/logzero,,,,metachris/logzero,logzero,1033,70,26,"['python', 'logging', 'logzero', 'logfiles']",Python,https://logzero.readthedocs.io,logzero: Robust and effective logging for Python 2 and 3.,metachris,2022-12-16,2021-03-17,2017-06-12,288,3.5868055555555554,12,3,5,"['canva', 'flashbots', 'pyupio']",,0.0,17,11,67,21,0,3,3,17.0,11.0,90.0,0.6,4,27.72223 +654,profiling,https://github.com/sumerc/yappi,,,,sumerc/yappi,yappi,1031,57,13,"['profilers', 'multi-threaded-applications', 'coroutine', 'asynchronous', 'python', 'asyncio', 'performance', 'profile', 'asgi', 'cpu', 'thread', 'gevent', 'greenlet', 'multithreading']",Python,,"yappi: Yet Another Python Profiler, but this time multithreading, asyncio and gevent aware.",sumerc,2022-12-18,2022-11-25,2009-10-07,688,1.4969923252437254,28,4,5,"['dara.network', 'mongodb', 'nutanix', 'redhat']",,0.65,11,8,161,1,2,0,2,11.0,13.0,90.0,1.2,404,47.42103 +449,gis,https://github.com/residentmario/geoplot,1.0,,,residentmario/geoplot,geoplot,1029,90,35,"['geospatial-visualization', 'geospatial-data', 'matplotlib', 'geopandas', 'spatial-analysis']",Python,https://residentmario.github.io/geoplot/index.html,geoplot: High-level geospatial data visualization library for Python.,residentmario,2022-12-14,2022-03-18,2016-06-29,337,3.046954314720812,5,2,5,"['quiltdata', 'udl-ai']",,0.31,3,1,79,9,2,3,2,3.0,4.0,90.0,1.3,18,28.11153 +580,util,https://github.com/lidatong/dataclasses-json,,,,lidatong/dataclasses-json,dataclasses-json,1024,114,9,"['dataclasses', 'json', 'python']",Python,,dataclasses-json: Easily serialize Data Classes to and from JSON,lidatong,2022-12-15,2022-08-14,2018-04-21,243,4.209042865531415,46,1,5,['quantenna'],,0.13,35,4,57,4,1,14,1,35.0,18.0,90.0,0.5,172,36.04185 +598,data,https://github.com/uber/fiber,,,,uber/fiber,fiber,995,113,21,"['python', 'distributed-computing', 'multiprocessing', 'sandbox', 'machine-learning']",Python,https://uber.github.io/fiber/,fiber: Distributed Computing for AI Made Simple,uber,2022-12-14,2021-03-15,2020-01-07,153,6.467038068709378,5,3,5,"['delltechnologies', 'litesgroup', 'nvidia']",,0.0,3,0,36,21,0,1,1,3.0,0.0,90.0,0.0,3,17.70687 +406,perf,https://github.com/pympler/pympler,,,,pympler/pympler,pympler,994,82,10,[],Python,,"pympler: Development tool to measure, monitor and analyze the memory behavior of Python objects in a running Python application.",pympler,2022-12-17,2022-07-24,2012-10-04,532,1.8664163090128756,29,2,5,"['ableton', 'finceptiv']",,0.12,5,1,124,5,0,2,2,5.0,8.0,90.0,1.6,71,37.74797 +728,gis,https://github.com/geospatialpython/pyshp,,,,geospatialpython/pyshp,pyshp,987,258,64,[],Python,,pyshp: This library reads and writes ESRI Shapefiles in pure Python.,geospatialpython,2022-12-14,2022-07-28,2014-03-04,458,2.1509962640099625,42,1,5,['geospatialpython.com'],,0.92,4,1,107,5,3,2,3,4.0,2.0,90.0,0.5,107,36.17278 +444,gis,https://github.com/toblerity/fiona,,,,toblerity/fiona,Fiona,983,190,49,"['python', 'gis', 'vector', 'gdal', 'ogr', 'cli', 'cython']",Python,https://fiona.readthedocs.io/,Fiona reads and writes geographic data files,toblerity,2022-12-18,2022-12-13,2011-12-31,572,1.717673489765352,64,2,5,"['gnsscience', 'planetlabs']",,1.4,58,42,134,0,6,10,6,58.0,109.0,90.0,1.9,115,52.10543 +739,pandas,https://github.com/machow/siuba,,,,machow/siuba,siuba,975,40,20,"['data-analysis', 'python', 'pandas', 'sql', 'dplyr']",Python,https://siuba.org,siuba: Python library for using dplyr like syntax with pandas and SQL,machow,2022-12-15,2022-11-16,2019-02-09,201,4.843860894251242,10,2,5,"['flatiron-school', 'rstudio']",,3.5,46,34,47,1,15,9,15,46.0,39.0,90.0,0.8,3,37.41449 +447,ml,https://github.com/csinva/imodels,,,,csinva/imodels,imodels,975,97,22,"['interpretability', 'machine-learning', 'data-science', 'artificial-intelligence', 'ml', 'ai', 'statistics', 'scikit-learn', 'python', 'optimal-classification-tree', 'rulefit', 'imodels', 'rule-learning', 'supervised-learning', 'explainable-ml', 'explainable-ai', 'rules', 'bayesian-rule-list']",Jupyter Notebook,https://csinva.io/imodels,"imodels: Interpretable ML package 🔍 for concise, transparent, and accurate predictive modeling (sklearn-compatible).",csinva,2022-12-15,2022-12-18,2019-07-04,180,5.399525316455696,15,2,5,"['berkeleyairesearchlab', 'seniorresearcher']",,3.0,16,14,42,0,11,8,11,16.0,23.0,90.0,1.4,25,42.45559 +707,util,https://github.com/brandon-rhodes/python-patterns,,,,brandon-rhodes/python-patterns,python-patterns,972,88,247,[],Python,,python-patterns: Source code behind the python-patterns.guide site by Brandon Rhodes,brandon-rhodes,2022-12-17,2021-01-05,2018-01-31,254,3.8160403813796973,4,1,5,['bccentreforexcellenceinhiv/aids'],,0.0,0,0,59,24,0,0,0,0.0,0.0,90.0,0.0,0,9.9945 +614,testing,https://github.com/teemu/pytest-sugar,,,,teemu/pytest-sugar,pytest-sugar,961,68,17,"['pytest', 'pytest-sugar', 'python', 'testing', 'pytest-plugin']",Python,,"pytest-sugar: a plugin for py.test that changes the default look and feel of py.test (e.g. progressbar, show tests that fail instantly)",teemu,2022-12-17,2022-12-11,2013-06-25,494,1.9419745958429562,45,4,5,"['adobe', 'falcony-io', 'freelancer,upforhire', 'wolt']",,0.83,54,48,115,0,0,1,1,54.0,94.0,90.0,1.7,303,52.32141 +482,gis,https://github.com/sentinel-hub/eo-learn,,,,sentinel-hub/eo-learn,eo-learn,949,276,50,"['machine-learning', 'eo-data', 'eo-research', 'python-package']",Python,,eo-learn: Earth observation processing framework for machine learning in Python,sentinel-hub,2022-12-13,2022-11-23,2018-05-31,237,3.994588093806374,49,4,5,"['eoresearchteamsinergise', 'google', 'sinergise', 'sinergisesentinel-hub']",,5.48,56,51,55,1,10,8,10,56.0,54.0,90.0,1.0,83,50.74665 +631,util,https://github.com/pyca/bcrypt,,,,pyca/bcrypt,bcrypt,945,134,29,['python'],Python,,bcrypt: Modern(-ish) password hashing for your software and your servers,pyca,2022-12-17,2022-12-13,2013-05-11,501,1.885152465089769,31,2,5,"['datadog', 'pioneervalleybooks']",,2.85,56,49,117,0,0,2,2,59.0,37.0,90.0,0.6,399,49.1552 +740,ml,https://github.com/koaning/scikit-lego,,,,koaning/scikit-lego,scikit-lego,936,99,18,"['scikit-learn', 'machine-learning', 'common-sense']",Python,https://scikit-lego.netlify.app,scikit-lego: Extra blocks for scikit-learn pipelines.,koaning,2022-12-14,2022-11-02,2019-01-21,204,4.588235294117647,56,3,5,"['explosion', 'm-gate', 'xcceleratedpydataamsterdam']",,0.48,28,17,48,2,5,8,5,28.0,77.0,90.0,2.8,19,44.04612 +633,util,https://github.com/pyca/pynacl,,,,pyca/pynacl,pynacl,936,219,28,"['cryptography', 'libsodium', 'nacl', 'python']",C,https://pynacl.readthedocs.io/,pynacl: Python binding to the Networking and Cryptography (NaCl) library,pyca,2022-12-11,2022-12-13,2013-02-22,512,1.8265960412601059,64,1,5,['datadog'],,0.48,9,7,120,0,0,2,2,9.0,14.0,90.0,1.6,169,45.61533 +271,crypto,https://github.com/man-c/pycoingecko,,,,man-c/pycoingecko,pycoingecko,933,245,32,"['python3', 'api-wrapper', 'api', 'wrapper', 'cryptocurrency', 'crypto', 'coingecko', 'python', 'nft', 'nfts']",Python,,pycoingecko: Python wrapper for the CoinGecko API,man-c,2022-12-18,2022-10-26,2018-08-24,225,4.138783269961977,14,0,5,[],,0.29,5,2,53,2,0,5,5,5.0,5.0,90.0,1.0,180,32.46167 +820,viz,https://github.com/facultyai/dash-bootstrap-components,,,,facultyai/dash-bootstrap-components,dash-bootstrap-components,930,201,21,"['bootstrap', 'plotly-dash', 'python', 'dashboards', 'r', 'julia']",JavaScript,https://dash-bootstrap-components.opensource.faculty.ai/,dash-bootstrap-components: Bootstrap components for Plotly Dash,facultyai,2022-12-15,2022-08-03,2018-09-21,221,4.2,29,2,5,"['facebook', 'facultyai']",,1.17,29,8,52,5,14,33,14,29.0,20.0,90.0,0.7,41,39.10263 +379,ml-interpretability,https://github.com/cdpierse/transformers-interpret,,,,cdpierse/transformers-interpret,transformers-interpret,924,81,16,"['nlp', 'machine-learning', 'natural-language-processing', 'explainable-ai', 'transformers', 'model-explainability', 'transformers-model', 'captum', 'deep-learning', 'neural-network', 'interpretability', 'computer-vision']",Jupyter Notebook,,transformers-interpret: Model explainability that works seamlessly with 🤗 transformers. Explain your transformers model in just 2 lines of code. ,cdpierse,2022-12-18,2022-11-17,2020-05-27,133,6.910256410256411,7,4,5,"['dfki/universitätdessaarlandes', 'mavenoid;omnimodular', 'oraikatechnologies', 'quantcopy']",,0.98,17,5,31,1,4,5,4,17.0,22.0,90.0,1.3,11,35.70152 +212,data,https://github.com/sfu-db/connector-x,1.0,,,sfu-db/connector-x,connector-x,919,66,23,"['rust', 'python', 'database', 'sql', 'dataframe']",Rust,https://sfu-db.github.io/connector-x/intro.html,connector-x: Fastest library to load data from DB to DataFrames in Rust and Python,sfu-db,2022-12-18,2022-12-08,2021-01-13,100,9.12482269503546,29,2,5,"['redhatofficial', 'sfu-db']",,5.38,68,33,23,0,5,3,5,68.0,79.0,90.0,1.2,20,43.09998 +236,sim,https://github.com/salesforce/ai-economist,1.0,,,salesforce/ai-economist,ai-economist,918,192,44,"['ai', 'ml', 'multi-agent', 'multi-agent-reinforcement-learning', 'deep-reinforcement-learning', 'reinforcement-learning-environments', 'simulation-framework', 'python-3', 'economics']",Python,https://www.einstein.ai/the-ai-economist,"ai-economist: Foundation is a flexible, modular, and composable framework to model socio-economic behaviors and dynamics with both agents and governments. This framework can be used in conjunction with reinforcement learning to learn optimal economic policies, as done by the AI Economist (https://www.einstein.ai/the-ai-economist).",salesforce,2022-12-18,2022-05-09,2020-07-02,128,7.14,8,2,5,"['apple', 'salesforceresearch']",,0.42,4,0,30,7,0,0,0,4.0,2.0,90.0,0.5,0,18.21195 +541,util,https://github.com/pdoc3/pdoc,,,,pdoc3/pdoc,pdoc,911,136,8,"['documentation', 'generator', 'documentation-generator', 'documentation-tool', 'documentation-dumper', 'api-documentation', 'python', 'python3', 'docs', 'docs-generator', 'docstrings', 'docstring', 'docstring-documentation', 'pdoc', 'hacktoberfest']",Python,https://pdoc3.github.io/pdoc/,pdoc: :snake: :arrow_right: :scroll: Auto-generate API documentation for Python projects,pdoc3,2022-12-18,2022-10-29,2019-01-02,206,4.407049067035246,58,1,5,['salesforce'],,0.1,15,10,48,2,0,12,12,15.0,13.0,90.0,0.9,183,41.90249 +251,ml-dl,https://github.com/tensorflow/similarity,,,,tensorflow/similarity,similarity,910,86,28,"['similarity-learning', 'metric-learning', 'similarity-search', 'nearest-neighbor-search', 'nearest-neighbors', 'deep-learning', 'tensorflow', 'contrastive-learning', 'machine-learning', 'unsupervised-learning', 'clustering', 'python', 'simclr', 'simclr2', 'barlow-twins', 'simsiam', 'cosine-similarity', 'knn']",Python,,similarity: TensorFlow Similarity is a python package focused on making similarity learning quick and easy.,tensorflow,2022-12-18,2022-12-02,2020-06-15,131,6.9465648854961835,23,1,5,['google'],,1.1,24,13,31,1,2,2,2,24.0,37.0,90.0,1.5,29,36.2382 +88,testing,https://github.com/taverntesting/tavern,,,,taverntesting/tavern,tavern,909,179,28,"['python', 'pytest', 'testing', 'test-automation', 'mqtt', 'http']",Python,https://taverntesting.github.io/,"tavern: A command-line tool and Python library and Pytest plugin for automated testing of RESTful APIs, with a simple, concise and flexible YAML-based syntax",taverntesting,2022-12-15,2022-12-15,2017-11-01,267,3.395410885805763,56,3,5,"['atlassian', 'forgerock', 'zalando']",,1.38,34,25,62,0,0,37,37,34.0,34.0,90.0,1.0,38,49.70886 +387,nlp,https://github.com/shivam5992/textstat,,,,shivam5992/textstat,textstat,892,144,17,"['python', 'textstat', 'readability', 'flesch-kincaid-grade', 'smog', 'flesch-reading-ease']",Python,https://textstat.org,"textstat: :memo: python package to calculate readability statistics of a text object - paragraphs, sentences, articles.",shivam5992,2022-12-18,2022-07-08,2014-06-18,443,2.0103026400515134,46,1,5,['tessian'],,0.1,4,3,104,5,1,2,1,4.0,5.0,90.0,1.2,19,33.24374 +622,util,https://github.com/pytoolz/cytoolz,,,,pytoolz/cytoolz,cytoolz,890,67,23,[],Python,,cytoolz: Cython implementation of Toolz: High performance functional utilities,pytoolz,2022-12-06,2022-11-06,2014-04-04,454,1.958503615215341,20,4,5,"['coiled', 'formerlyquantopian', 'lynkertechnologies', 'voltrondata']",,0.52,10,6,106,1,1,2,1,10.0,6.0,90.0,0.6,28,39.05177 +504,gis,https://github.com/anitagraser/movingpandas,,,,anitagraser/movingpandas,movingpandas,889,165,36,"['geopandas', 'trajectory', 'movement-data', 'trajectory-analysis', 'python', 'spatial-data-analysis']",Python,http://movingpandas.org,movingpandas: Implementation of Trajectory classes and functions built on top of GeoPandas,anitagraser,2022-12-14,2022-12-16,2018-12-16,209,4.2506830601092895,29,2,5,"['dtn', 'universityofliverpool']",,2.29,35,20,49,0,5,3,5,35.0,55.0,90.0,1.6,25,44.08245 +672,perf,https://github.com/markshannon/faster-cpython,,,,markshannon/faster-cpython,faster-cpython,888,21,83,[],,,faster-cpython: How to make CPython faster.,markshannon,2022-12-18,2020-10-28,2020-10-19,113,7.8584070796460175,4,2,5,"['colgateuniversity', 'microsoft']",,0.0,3,0,26,26,0,0,0,3.0,2.0,90.0,0.7,0,13.04516 +402,perf,https://github.com/tiangolo/asyncer,,,,tiangolo/asyncer,asyncer,886,40,14,"['python', 'async', 'asyncio', 'trio', 'anyio']",Python,https://asyncer.tiangolo.com/,"Asyncer, async and await, focused on developer experience.",tiangolo,2022-12-18,2022-12-16,2022-01-04,49,17.770773638968482,10,1,5,"['snok,intility']",,1.69,30,26,12,0,2,2,2,30.0,38.0,90.0,1.3,0,28.14501 +630,gis,https://github.com/pytroll/satpy,,,,pytroll/satpy,satpy,881,256,31,"['python', 'satellite', 'weather', 'hacktoberfest', 'dask', 'xarray', 'closember']",Python,http://satpy.readthedocs.org/en/latest/,satpy: Python package for earth-observing satellite data processing,pytroll,2022-12-14,2022-12-15,2016-02-09,357,2.46187624750499,132,4,5,"['deutscherwetterdienst', 'dwd', 'smhi', 'spacescienceandengineeringcenter(ssec)']",,21.56,174,107,83,0,6,12,6,174.0,595.0,90.0,3.4,12,58.74132 +219,template,https://github.com/tezromach/python-package-template,1.0,,,tezromach/python-package-template,python-package-template,873,85,6,"['python', 'cookiecutter', 'best-practices', 'semantic-versions', 'python-packages', 'codestyle', 'formatters', 'makefile', 'poetry', 'template']",Python,,python-package-template: 🚀 Your next Python package needs a bleeding-edge project structure.,tezromach,2022-12-18,2022-05-18,2020-04-15,139,6.248466257668712,13,0,5,[],,0.02,111,71,33,7,0,8,8,111.0,73.0,90.0,0.7,18,28.5387 +750,data,https://github.com/pytorch/data,,,,pytorch/data,data,870,102,25,[],Python,,data: A PyTorch repo for data loading and utilities to be shared by the PyTorch domain libraries.,pytorch,2022-12-17,2022-12-16,2021-05-12,83,10.392491467576791,60,2,5,"['facebook', 'quansight']",,6.5,194,146,20,0,5,7,5,194.0,491.0,90.0,2.5,1663,56.54724 +341,term,https://github.com/jquast/blessed,,,,jquast/blessed,blessed,867,67,24,"['terminal', 'curses', 'cli']",Python,http://pypi.python.org/pypi/blessed,"Blessed is an easy, practical library for making python terminal apps",jquast,2022-12-14,2022-09-27,2014-03-01,459,1.8877138413685848,24,2,5,"['dalibo', 'mozilla']",,0.1,7,2,107,3,1,6,1,7.0,10.0,90.0,1.4,11,34.1321 +392,pandas,https://github.com/tkrabel/bamboolib,,,,tkrabel/bamboolib,bamboolib,858,93,31,"['pandas', 'pandas-dataframes', 'jupyter-notebook', 'jupyterlab', 'python']",Jupyter Notebook,https://bamboolib.com,bamboolib - a GUI for pandas DataFrames,tkrabel,2022-12-18,2022-09-27,2019-05-29,185,4.62,4,3,5,"['8080labs', 'bamboolib', 'databricks']",,0.21,0,0,43,3,0,0,0,0.0,0.0,90.0,0.0,8,21.39437 +204,debug,https://github.com/alexmojaki/snoop,,,,alexmojaki/snoop,snoop,856,29,16,"['python', 'debugging', 'debugger', 'debugging-tools', 'logging']",Python,,"snoop: A powerful set of Python debugging tools, based on PySnooper",alexmojaki,2022-12-17,2022-12-05,2019-05-13,188,4.553191489361702,22,1,5,['google'],,0.15,6,2,44,0,0,1,1,6.0,15.0,90.0,2.5,5,33.50711 +700,perf,https://github.com/intel/scikit-learn-intelex,,,,intel/scikit-learn-intelex,scikit-learn-intelex,854,136,28,"['oneapi', 'scikit-learn', 'machine-learning-algorithms', 'data-analysis', 'machine-learning', 'python', 'swrepo', 'ai-machine-learning', 'big-data', 'analytics', 'ai-training', 'ai-inference', 'gpu', 'intel']",Python,https://intel.github.io/scikit-learn-intelex/,scikit-learn-intelex: Intel(R) Extension for Scikit-learn is a seamless way to speed up your Scikit-learn application,intel,2022-12-18,2022-12-18,2018-08-07,227,3.747962382445141,62,2,5,"['intel', 'intelcorporation']",,1.63,118,82,53,0,3,5,3,118.0,80.0,90.0,0.7,0,39.34588 +772,nlp,https://github.com/huggingface/setfit,,,,huggingface/setfit,setfit,850,74,15,"['few-shot-learning', 'nlp', 'sentence-transformers']",Python,,setfit: Efficient few-shot learning with Sentence Transformers,huggingface,2022-12-18,2022-12-17,2022-06-30,24,34.593023255813954,29,3,5,"['huggingface', 'nervanasystems', 'telekom']",,5.46,187,132,6,0,7,18,7,187.0,415.0,90.0,2.2,2,41.75848 +347,nlp,https://github.com/norskregnesentral/skweak,,,,norskregnesentral/skweak,skweak,847,67,27,"['weak-supervision', 'nlp-machine-learning', 'distant-supervision', 'nlp-library', 'spacy', 'python', 'data-science', 'training-data', 'natural-language-processing']",Python,,skweak: A software toolkit for weak supervision applied to NLP tasks,norskregnesentral,2022-12-12,2022-11-08,2021-03-16,91,9.220839813374806,11,4,5,"['norwegiancomputingcentre', 'palinode', 'universityofoslo', 'universityofthebasquecountryupv/ehu']",,0.46,7,5,21,1,1,1,1,7.0,5.0,90.0,0.7,13,32.18198 +628,data,https://github.com/intake/intake,,,,intake/intake,intake,844,125,41,"['python', 'data-access', 'data-catalog']",Python,https://intake.readthedocs.io/,"Intake is a lightweight package for finding, investigating, loading and disseminating data.",intake,2022-12-12,2022-12-02,2017-08-14,279,3.025089605734767,79,3,5,"['anaconda', 'azavea', 'brookhavennationallab']",,0.98,22,14,65,1,0,7,7,22.0,41.0,90.0,1.9,392,51.62392 +484,gis,https://github.com/sentinelsat/sentinelsat,,,,sentinelsat/sentinelsat,sentinelsat,836,225,59,"['sentinel', 'copernicus', 'esa', 'remote-sensing', 'satellite-imagery', 'geographic-data', 'open-data', 'hacktoberfest']",Python,https://sentinelsat.readthedocs.io,sentinelsat: Search and download Copernicus Sentinel satellite images,sentinelsat,2022-12-15,2022-11-03,2015-05-22,395,2.1141618497109826,42,3,5,"['deloitte', 'developmentseed', 'milremrobotics']",,0.15,9,4,92,2,1,3,1,9.0,45.0,90.0,5.0,7,41.12421 +697,data,https://github.com/scholarly-python-package/scholarly,,,,scholarly-python-package/scholarly,scholarly,834,250,24,"['scholar', 'googlescholar', 'scholarly-articles', 'scholarly-communications', 'python3', 'python-3', 'python', 'citation-network', 'citation-analysis', 'citations', 'citation-index', 'publication-data']",Python,https://scholarly.readthedocs.io/,"scholarly: Retrieve author and publication information from Google Scholar in a friendly, Pythonic way without having to worry about CAPTCHAs!",scholarly-python-package,2022-12-17,2022-12-18,2014-12-02,419,1.986389928547125,43,3,5,"['newyorkuniversity', 'princetonuniversity', 'universityofalberta']",,1.44,28,24,98,0,11,7,11,28.0,68.0,90.0,2.4,3,46.70889 +639,ml,https://github.com/dask/dask-ml,,,,dask/dask-ml,dask-ml,833,236,40,['hacktoberfest'],Python,http://ml.dask.org,dask-ml: Scalable Machine Learning with Dask,dask,2022-12-15,2022-10-19,2017-06-15,287,2.8966716343765526,76,3,5,"['coiled', 'microsoft', 'voltrondata']",,0.21,22,3,67,2,2,7,2,22.0,28.0,90.0,1.3,68,42.99187 +445,gis,https://github.com/pyproj4/pyproj,,,,pyproj4/pyproj,pyproj,828,189,30,"['geospatial', 'python', 'coordinate-systems', 'coordinate-transformation', 'cartographic-projection', 'geodesic', 'hacktoberfest']",Python,https://pyproj4.github.io/pyproj,pyproj: Python interface to PROJ (cartographic projections and coordinate transformations library),pyproj4,2022-12-16,2022-12-16,2014-12-29,416,1.9903846153846154,58,1,5,['corteva'],,2.6,56,40,97,0,7,8,7,56.0,144.0,90.0,2.6,523,53.82472 +468,ml,https://github.com/huggingface/optimum,,,,huggingface/optimum,optimum,825,105,39,"['onnx', 'pytorch', 'inference', 'training', 'intel', 'graphcore', 'onnxruntime', 'transformers', 'quantization', 'habana', 'optimization']",Python,https://huggingface.co/docs/optimum/,optimum: 🏎️ Accelerate training and inference of 🤗 Transformers with easy to use hardware optimization tools,huggingface,2022-12-17,2022-12-16,2021-07-20,73,11.170212765957446,37,1,5,['huggingface'],,6.21,260,187,17,0,12,12,12,260.0,642.0,90.0,2.5,679,52.95176 +887,sim,https://github.com/pyscf/pyscf,,,,pyscf/pyscf,pyscf,823,439,75,[],Python,,pyscf: Python module for quantum chemistry,pyscf,2022-12-17,2022-12-14,2014-05-02,450,1.8271487472248653,137,2,5,"['simuneatomisticss.l.', 'theohiostateuniversity']",,5.52,148,70,105,0,2,8,2,148.0,217.0,90.0,1.5,660,57.52678 +712,ml,https://github.com/google-research/deeplab2,,,,google-research/deeplab2,deeplab2,820,138,20,[],Python,,"DeepLab2 is a TensorFlow library for deep labeling, aiming to provide a unified and state-of-the-art TensorFlow codebase for dense pixel labeling tasks.",google-research,2022-12-18,2022-11-05,2021-05-12,83,9.795221843003413,11,1,5,['johnshopkinsuniversity'],,0.83,24,6,20,1,0,0,0,24.0,44.0,90.0,1.8,3,27.48424 +850,util,https://github.com/wolph/python-progressbar,,,,wolph/python-progressbar,python-progressbar,795,95,22,"['python', 'progressbar', 'progress-bar', 'rate', 'eta', 'percentage', 'console', 'terminal', 'time', 'progress', 'bar', 'cli', 'gui', 'library']",Python,http://progressbar-2.readthedocs.org/en/latest/,"python-progressbar: Progressbar 2 - A progress bar for Python 2 and Python 3 - ""pip install progressbar2""",wolph,2022-12-18,2022-12-08,2012-02-20,565,1.407079646017699,42,1,5,['cslab'],,1.13,14,11,132,0,4,9,4,14.0,45.0,90.0,3.2,381,50.05229 +395,web,https://github.com/emmett-framework/emmett,,,,emmett-framework/emmett,emmett,794,63,30,"['python', 'web-framework', 'asgi', 'asyncio', 'emmett']",Python,,emmett: The web framework for inventors,emmett-framework,2022-12-10,2022-11-24,2014-10-20,426,1.863849765258216,21,3,5,"['cashbee-team', 'lawstudent', 'ostrovok.ru']",,1.83,8,5,99,1,14,14,14,8.0,0.0,90.0,0.0,12,38.89607 +490,viz,https://github.com/luispedro/mahotas,,,,luispedro/mahotas,mahotas,788,149,47,"['computer-vision', 'numpy', 'python', 'c-plus-plus', 'python-2', 'python-3']",Python,https://mahotas.rtfd.io,mahotas: Computer Vision in Python,luispedro,2022-12-17,2022-11-14,2010-01-31,672,1.1723698193411265,32,2,5,"['fudanuniversity', 'theexclosure']",,0.15,3,0,157,1,1,4,1,3.0,5.0,90.0,1.7,52,38.87971 +891,util,https://github.com/xl0/lovely-tensors,,,,xl0/lovely-tensors,lovely-tensors,788,11,6,"['deep-learning', 'library', 'pytorch', 'statistics', 'visualization']",Jupyter Notebook,https://xl0.github.io/lovely-tensors,"lovely-tensors: Tensors, ready for human consumption",xl0,2022-12-18,2022-12-18,2022-10-07,10,75.56164383561644,1,0,5,[],,1.48,14,8,2,0,0,79,79,14.0,80.0,90.0,5.7,0,23.49765 +226,sim,https://github.com/facebookresearch/droidlet,,,,facebookresearch/droidlet,fairo,785,80,38,[],Jupyter Notebook,,fairo: A modular embodied agent architecture and platform for building embodied agents,facebookresearch,2022-12-12,2022-12-02,2020-11-02,111,7.072072072072072,43,1,5,['facebookairesearch'],,9.77,41,27,26,1,0,0,0,41.0,86.0,90.0,2.1,108,42.38209 +351,ml,https://github.com/jina-ai/finetuner,,,,jina-ai/finetuner,finetuner,771,39,21,"['fine-tuning', 'pretrained-models', 'few-shot-learning', 'negative-sampling', 'metric-learning', 'siamese-network', 'triplet-loss', 'transfer-learning', 'jina', 'neural-search', 'finetuning', 'similarity-learning']",Python,https://finetuner.jina.ai,finetuner: :dart: Task-oriented finetuning for better embeddings on neural search,jina-ai,2022-12-18,2022-12-15,2021-08-11,70,10.903030303030302,32,2,5,"['jina-ai', 'jinaai']",,4.73,99,89,16,0,12,24,12,99.0,117.0,90.0,1.2,0,39.18383 +738,perf,https://github.com/zerointensity/pointers.py,,,,zerointensity/pointers.py,pointers.py,766,9,3,"['python', 'pointers', 'python-pointers']",Python,https://pointers.zintensity.dev/,pointers.py: Bringing the hell of pointers to Python.,zerointensity,2022-12-08,2022-11-30,2022-03-09,40,18.814035087719297,7,1,5,['royalbankofcanada'],,3.21,3,3,9,1,6,8,6,3.0,3.0,90.0,1.0,2,25.84015 +810,data,https://github.com/neo4j/neo4j-python-driver,,,,neo4j/neo4j-python-driver,neo4j-python-driver,759,167,99,"['python', 'graph-database', 'driver', 'neo4j', 'database-driver', 'protocol', 'cypher', 'query-language', 'python3', 'binary-protocol']",Python,https://neo4j.com/docs/api/python-driver/current/,neo4j-python-driver: Neo4j Bolt driver for Python,neo4j,2022-12-18,2022-12-16,2015-05-05,397,1.9077199281867145,41,2,5,"['elastic', 'neo4j']",,2.94,80,75,93,0,17,14,17,80.0,48.0,90.0,0.6,74,50.11615 +146,util,https://github.com/zenodo/zenodo,,,,zenodo/zenodo,zenodo,752,225,38,"['zenodo', 'invenio', 'python', 'research-data-repository', 'research-data-management', 'flask', 'digital-library', 'open-science', 'open-access', 'scientific-publications', 'library-management', 'elasticsearch', 'postgresql', 'inveniosoftware']",Python,https://zenodo.org,zenodo: Research. Shared.,zenodo,2022-12-17,2022-12-12,2013-02-11,514,1.4630350194552528,65,3,5,"['cern', 'protonmail', 'skribble']",,1.52,66,36,120,0,0,42,42,66.0,44.0,90.0,0.7,150,54.24208 +658,util,https://github.com/rasbt/watermark,,,,rasbt/watermark,watermark,750,83,13,"['python', 'magic-extension', 'jupyter', 'ipython']",Python,,"watermark: An IPython magic extension for printing date and time stamps, version numbers, and hardware information",rasbt,2022-12-18,2022-09-13,2014-07-30,437,1.7134464751958225,17,4,5,"['brabantwater', 'capgeminiengineering', 'drivendata', 'lightning-ai,universityofwisconsin-madison']",,0.12,2,0,102,3,2,2,2,2.0,3.0,90.0,1.5,94,38.81583 +334,util,https://github.com/clarete/forbiddenfruit,,,,clarete/forbiddenfruit,forbiddenfruit,750,50,28,"['python', 'monkey-patching']",Python,https://clarete.li/forbiddenfruit/,forbiddenfruit: Patch built-in python objects,clarete,2022-12-15,2022-03-12,2013-04-03,506,1.480124048491683,15,2,5,"['bitdeli', 'django,djangolondon']",,0.0,3,1,118,14,0,1,1,3.0,1.0,90.0,0.3,0,21.91652 +791,sim,https://github.com/viblo/pymunk,1.0,,,viblo/pymunk,pymunk,733,179,21,"['python', 'physics-2d', 'library', 'pygame', 'pyglet', 'physics-engine', 'physics-simulation', 'python-library']",Python,http://www.pymunk.org,Pymunk is a easy-to-use pythonic 2d physics library that can be used whenever you need 2d rigid body physics from Python,viblo,2022-12-16,2022-12-05,2013-10-02,480,1.52481426448737,17,3,5,"['blksail', 'google', 'skamrahlitsolutions']",,1.02,7,7,112,0,2,3,2,7.0,18.0,90.0,2.6,22,43.4709 +634,profiling,https://github.com/csurfer/pyheat,,,,csurfer/pyheat,pyheat,733,41,13,"['profiling', 'python', 'heatmap', 'matplotlib']",Python,,pyheat: pprofile + matplotlib = Python program profiled as an awesome heatmap!,csurfer,2022-12-16,2021-09-18,2017-02-04,306,2.393190298507463,5,2,5,"['citrix', 'lyft']",,0.0,0,0,71,15,0,0,0,0.0,0.0,90.0,0.0,0,14.02954 +853,data,https://github.com/eliasdabbas/advertools,,,,eliasdabbas/advertools,advertools,732,158,33,"['marketing', 'advertising', 'adwords', 'python', 'digital-marketing', 'online-marketing', 'keywords', 'search-engine-marketing', 'twitter-api', 'search-engine-optimization', 'seo', 'serp', 'social-media', 'youtube', 'robots-txt', 'scrapy', 'seo-crawler', 'log-analysis', 'google-ads', 'logfile-parser']",Python,https://advertools.readthedocs.io,advertools - online marketing productivity and analysis tools,eliasdabbas,2022-12-18,2022-12-13,2017-05-14,292,2.5056234718826405,7,3,5,"['github', 'pyupio', 'themediasupermarket']",,2.17,19,16,68,0,0,6,6,19.0,32.0,90.0,1.7,71,44.27913 +828,sim,https://github.com/farama-foundation/gymnasium,,,,farama-foundation/gymnasium,Gymnasium,725,87,11,[],Python,https://gymnasium.farama.org,Gymnasium: A standard API for reinforcement learning and a diverse set of reference environments (formerly Gym),farama-foundation,2022-12-18,2022-12-18,2022-09-08,14,49.754901960784316,395,0,5,[],,8.46,208,170,3,0,5,20,5,208.0,322.0,90.0,1.5,4,40.96329 +291,pandas,https://github.com/stitchfix/hamilton,,,,stitchfix/hamilton,hamilton,719,36,21,"['python', 'pandas', 'dag', 'data-science', 'data-engineering', 'numpy', 'software-engineering', 'etl-framework', 'etl-pipeline', 'etl', 'feature-engineering', 'featurization', 'dataframe', 'stitch-fix', 'data-platform', 'hamilton', 'hamiltonian', 'machine-learning']",Python,https://hamilton-docs.gitbook.io/docs/,"hamilton: A scalable general purpose micro-framework for defining dataflows. You can use it to build dataframes, numpy matrices, python objects, ML models, etc.",stitchfix,2022-12-17,2022-12-18,2020-05-26,133,5.371398078975454,14,2,5,"['spothero', 'stitchfix']",,5.1,83,41,31,0,10,5,10,83.0,122.0,90.0,1.5,4,41.14727 +621,testing,https://github.com/wolever/parameterized,,,,wolever/parameterized,parameterized,713,94,18,[],Python,,Parameterized testing with any Python test framework,wolever,2022-12-16,2021-01-09,2012-03-10,562,1.2680386178861789,24,1,5,['sheertex'],,0.0,3,1,131,24,0,1,1,3.0,4.0,90.0,1.3,89,30.43729 +559,jupyter,https://github.com/vizzuhq/ipyvizzu,,,,vizzuhq/ipyvizzu,ipyvizzu,711,58,16,"['jupyter', 'jupyter-notebook', 'python', 'plotting', 'graphs', 'data-visualization', 'graphing', 'ipython', 'chart', 'charts', 'dataviz', 'animation', 'storytelling', 'charting', 'vizzu']",Python,https://ipyvizzu.vizzuhq.com,ipyvizzu: Build animated charts in Jupyter Notebook and in many other environments with a simple Python syntax.,vizzuhq,2022-12-18,2022-12-16,2022-01-05,49,14.301724137931034,10,2,5,"['oneidentity(balabit)', 'vizzuhq']",,9.17,22,13,12,0,18,18,18,22.0,16.0,90.0,0.7,11,38.20662 +358,data,https://github.com/hyperqueryhq/whale,,,,hyperqueryhq/whale,whale,711,40,42,"['data-documentation', 'data-catalog', 'data-discovery']",Python,https://rsyi.gitbook.io/whale,whale: 🐳 The stupidly simple CLI workspace for your data warehouse.,hyperqueryhq,2022-12-18,2022-10-13,2020-05-27,133,5.3173076923076925,17,3,5,"['dataframe', 'nttcommunications', 'shopify']",,0.17,6,3,31,2,0,10,10,6.0,3.0,90.0,0.5,0,29.16195 +419,util,https://github.com/sethmmorton/natsort,,,,sethmmorton/natsort,natsort,709,40,14,"['python', 'natural-sort', 'sorting-interface', 'sorting', 'natsort']",Python,https://pypi.org/project/natsort/,natsort: Simple yet flexible natural sorting in Python.,sethmmorton,2022-12-15,2022-09-01,2012-05-03,554,1.2784647089129315,20,4,5,"['dapulse', 'nordsoftware', 'pioneervalleybooks', 'siasol']",,0.37,3,1,129,4,0,6,6,3.0,3.0,90.0,1.0,178,41.81119 +23,math,https://github.com/fredrik-johansson/mpmath,,,,fredrik-johansson/mpmath,mpmath,707,148,40,"['python', 'arbitrary-precision', 'multiprecision', 'floating-point', 'special-functions', 'numerical-integration', 'numerical-methods', 'plotting', 'complex-numbers', 'ordinary-differential-equations', 'numerical-optimization']",Python,http://mpmath.org,mpmath: Python library for arbitrary-precision floating-point arithmetic,fredrik-johansson,2022-12-17,2022-11-07,2011-12-07,575,1.2280397022332505,47,2,5,"['inria&institutdemathématiquesdebordeaux', 'quansight']",,0.27,9,3,134,1,0,1,1,9.0,7.0,90.0,0.8,75,40.59987 +593,gis,https://github.com/matplotlib/basemap,,,,matplotlib/basemap,basemap,703,396,60,"['gis', 'maps', 'plots']",Python,,basemap: Plot on map projections (with coastlines and political boundaries) using matplotlib,matplotlib,2022-12-12,2022-11-29,2011-02-19,617,1.1388567461235826,69,2,5,"['eccc', 'germanaerospacecenter(dlr)']",,3.77,24,19,144,1,7,3,7,24.0,40.0,90.0,1.7,606,53.56031 +701,profiling,https://github.com/pythonspeed/filprofiler,,,,pythonspeed/filprofiler,filprofiler,700,21,9,"['python', 'memory-profiler', 'memory-profiling', 'memory-leak', 'memory-leaks', 'memory-leak-detection', 'memory-leak-finder', 'memory', 'memory-']",Rust,https://pythonspeed.com/products/filmemoryprofiler/,filprofiler: A Python memory profiler for data processing and scientific computing applications,pythonspeed,2022-12-17,2022-12-05,2020-06-18,130,5.361050328227571,6,3,5,"['algolia', 'hyphenatedenterprises', 'whalesalad']",,3.08,61,46,30,0,14,25,14,61.0,58.0,90.0,1.0,6,39.76851 +325,security,https://github.com/trailofbits/pip-audit,,,,trailofbits/pip-audit,pip-audit,696,44,19,"['security', 'security-audit', 'python', 'pip', 'supply-chain']",Python,https://pypi.org/project/pip-audit/,pip-audit: Audits Python environments and dependency trees for known vulnerabilities,trailofbits,2022-12-17,2022-12-15,2021-09-02,67,10.300211416490486,18,3,5,"['digitalr00ts', 'google', 'trailofbits']",,3.63,77,64,16,0,22,30,22,77.0,183.0,90.0,2.4,95,49.36054 +477,pandas,https://github.com/holoviz/hvplot,,,,holoviz/hvplot,hvplot,688,78,24,"['holoviz', 'holoviews', 'plotting', 'datashader']",Python,https://hvplot.holoviz.org,"hvplot: A high-level plotting API for pandas, dask, xarray, and networkx built on HoloViews",holoviz,2022-12-17,2022-12-13,2018-03-19,248,2.774193548387097,39,2,5,"['anaconda', 'azavea']",,2.21,269,74,58,0,3,22,3,269.0,239.0,90.0,0.9,10,43.91498 +360,ml-ops,https://github.com/tensorflow/data-validation,,,,tensorflow/data-validation,data-validation,686,144,48,[],Python,,data-validation: Library for exploring and validating machine learning data,tensorflow,2022-12-14,2022-12-16,2018-07-02,233,2.944206008583691,25,1,5,['google'],,2.98,19,13,54,0,7,9,7,19.0,26.0,90.0,1.4,572,47.28929 +168,gis,https://github.com/openeventdata/mordecai,,,,openeventdata/mordecai,mordecai,684,94,35,"['geoparsing', 'geonames', 'nlp', 'geocoding', 'spacy', 'toponym-resolution']",Python,,mordecai: Full text geoparsing as a Python library,openeventdata,2022-12-08,2021-02-01,2016-06-23,338,2.020253164556962,6,4,5,"['github', 'maxar', 'msupoliticalscience', 'phillymedia']",,0.0,2,0,79,23,0,1,1,2.0,2.0,90.0,1.0,4,24.04831 +572,gis,https://github.com/developmentseed/landsat-util,,,,developmentseed/landsat-util,landsat-util,681,155,125,[],Python,,"landsat-util: A utility to search, download and process Landsat 8 satellite imagery",developmentseed,2022-12-07,2018-07-30,2014-08-01,437,1.5568256041802744,24,4,5,"['cloud-gov(work)+personalprojects;', 'developmentseed', 'element84', 'ledgy']",,0.0,0,0,102,53,0,2,2,0.0,0.0,90.0,0.0,11,24.78902 +393,perf,https://github.com/klen/py-frameworks-bench,,,,klen/py-frameworks-bench,py-frameworks-bench,673,78,28,"['benchmark', 'python-frameworks']",Python,https://klen.github.io/py-frameworks-bench/,py-frameworks-bench: Another benchmark for some python frameworks,klen,2022-12-11,2022-03-14,2015-04-30,398,1.6885304659498208,10,2,5,"['get-post-technology', 'home']",,0.44,17,10,93,9,0,3,3,17.0,9.0,90.0,0.5,0,25.97893 +164,nlp,https://github.com/explosion/spacy-stanza,,,,explosion/spacy-stanza,spacy-stanza,662,50,25,"['nlp', 'natural-language-processing', 'machine-learning', 'data-science', 'spacy', 'spacy-pipeline', 'stanford-nlp', 'stanford-corenlp', 'stanford-machine-learning', 'corenlp', 'stanza']",Python,,spacy-stanza: 💥 Use the latest Stanza (StanfordNLP) research models directly in spaCy,explosion,2022-12-09,2022-05-27,2019-01-31,202,3.2679830747531735,7,3,5,"['founderexplosion', 'graphext', 'lt3kuleuven']",,0.06,0,0,47,7,1,4,1,0.0,0.0,90.0,0.0,0,18.27777 +483,gis,https://github.com/sentinel-hub/sentinelhub-py,,,,sentinel-hub/sentinelhub-py,sentinelhub-py,655,213,48,"['python-library', 'sentinel-hub', 'aws', 'ogc-services', 'satellite-imagery']",Python,http://sentinelhub-py.readthedocs.io/en/latest/,sentinelhub-py: Download and process satellite imagery in Python using Sentinel Hub services.,sentinel-hub,2022-12-11,2022-10-06,2017-05-17,291,2.2453476983349656,40,3,5,"['eoresearchteamsinergise', 'google', 'sinergise']",,3.83,29,27,68,2,12,9,12,29.0,18.0,90.0,0.6,335,49.08687 +818,ml,https://github.com/automl/tabpfn,,,,automl/tabpfn,TabPFN,654,44,15,[],Python,https://arxiv.org/abs/2207.01848,TabPFN: Official implementation of the TabPFN and the tabpfn package.,automl,2022-12-18,2022-12-09,2022-07-01,24,26.771929824561404,6,1,5,['automl.org'],,2.31,23,22,6,0,0,0,0,23.0,45.0,90.0,2.0,0,24.61015 +620,jupyter,https://github.com/nbqa-dev/nbqa,,,,nbqa-dev/nbqa,nbQA,646,36,7,"['python', 'jupyter-notebook', 'pre-commit', 'codequality', 'lint', 'isort', 'black', 'flake8', 'doctest', 'pyupgrade', 'pylint', 'mypy', 'yapf', 'pre-commit-hook']",Python,https://nbqa.readthedocs.io/en/latest/index.html,"nbQA: Run isort, pyupgrade, mypy, pylint, flake8, and more on Jupyter Notebooks",nbqa-dev,2022-12-15,2022-12-11,2020-07-11,127,5.075196408529742,22,1,5,['quansight'],,1.19,36,31,30,0,0,33,33,36.0,56.0,90.0,1.6,674,48.32703 +629,gis,https://github.com/makepath/xarray-spatial,,,,makepath/xarray-spatial,xarray-spatial,645,73,25,"['python', 'raster-analysis', 'spatial-analysis', 'numba', 'datashader', 'xarray']",Python,https://xarray-spatial.org,xarray-spatial: Raster-based Spatial Analytics for Python,makepath,2022-12-16,2022-06-22,2020-02-08,149,4.320574162679426,28,2,5,"['anaconda', 'makepath']",,1.52,82,14,35,6,5,13,5,82.0,11.0,90.0,0.1,12,33.40695 +882,time-series,https://github.com/winedarksea/autots,,,,winedarksea/autots,AutoTS,643,60,13,"['time-series', 'machine-learning', 'automl', 'autots', 'forecasting', 'deep-learning', 'preprocessing', 'feature-engineering']",Python,,AutoTS: Automated Time Series Forecasting,winedarksea,2022-12-17,2022-12-13,2019-11-26,159,4.022341376228776,1,0,5,[],,3.35,5,4,37,0,6,12,6,5.0,14.0,90.0,2.8,5,28.04128 +475,viz,https://github.com/holoviz/holoviz,1.0,,,holoviz/holoviz,holoviz,636,114,35,"['holoviz', 'holoviews', 'geoviews', 'datashader', 'panel', 'hvplot', 'colorcet']",Python,https://holoviz.org/,holoviz: High-level tools to simplify visualization in Python.,holoviz,2022-12-16,2022-12-07,2017-09-22,273,2.3260188087774294,21,2,5,"['anaconda', 'azavea']",,0.46,18,8,64,0,0,13,13,18.0,54.0,90.0,3.0,2,40.92725 +741,data,https://github.com/koaning/human-learn,,,,koaning/human-learn,human-learn,635,51,13,"['scikit-learn', 'machine-learning', 'benchmark']",Jupyter Notebook,https://koaning.github.io/human-learn/,human-learn: Natural Intelligence is still a pretty good idea.,koaning,2022-12-18,2021-10-05,2020-07-11,127,4.988776655443322,5,3,5,"['explosion', 'floryn', 'nttdatabusinesssolutions']",,0.0,0,0,30,15,0,0,0,0.0,0.0,90.0,0.0,0,13.37378 +344,data,https://github.com/scikit-hep/awkward-1.0,,,,scikit-hep/awkward-1.0,awkward,632,64,17,"['json', 'numpy', 'data-analysis', 'jagged-array', 'ragged-array', 'columnar-format', 'pandas', 'numba', 'apache-arrow', 'cern-root', 'scikit-hep', 'python']",Python,https://awkward-array.org,awkward: Manipulate JSON-like data with NumPy-like idioms.,scikit-hep,2022-12-17,2022-12-16,2019-08-14,174,3.617334423548651,35,2,5,"['princeton,iris-hep,pyhep,scikit-hep', 'purdueuniversity']",,10.04,362,309,41,0,42,61,42,362.0,923.0,90.0,2.5,26,53.68855 +637,util,https://github.com/samuelcolvin/python-devtools,,,,samuelcolvin/python-devtools,python-devtools,631,31,8,"['python-devtools', 'python', 'devtools']",Python,https://python-devtools.helpmanual.io/,python-devtools: Dev tools for python,samuelcolvin,2022-12-15,2022-11-28,2017-08-20,278,2.268618387262455,10,2,5,"['pydantic', 'pyupio']",,0.29,10,4,65,1,2,3,2,10.0,20.0,90.0,2.0,85,38.40232 +640,data,https://github.com/dask/fastparquet,,,,dask/fastparquet,fastparquet,624,161,18,['hacktoberfest'],Python,,fastparquet: python implementation of the parquet columnar file format.,dask,2022-12-13,2022-12-05,2015-11-06,371,1.68,86,4,5,"['anaconda', 'coiled', 'confluentinc', 'steminc']",,1.06,31,25,87,0,0,5,5,31.0,104.0,90.0,3.4,75,54.34131 +397,web,https://github.com/klen/muffin,,,,klen/muffin,muffin,621,25,31,"['python', 'asyncio', 'trio', 'asgi', 'webframework', 'muffin', 'curio']",Python,,"Muffin is a fast, simple and asyncronous web-framework for Python 3",klen,2022-10-28,2022-08-12,2015-02-03,410,1.5114742698191934,13,2,5,"['faceapp', 'home']",,0.15,0,0,96,4,0,42,42,0.0,0.0,90.0,0.0,14,30.93081 +849,util,https://github.com/fsspec/s3fs,,,,fsspec/s3fs,s3fs,621,208,21,['hacktoberfest'],Python,http://s3fs.readthedocs.io/en/latest/,s3fs: S3 Filesystem ,fsspec,2022-12-15,2022-12-12,2016-03-16,352,1.7606318347509113,108,5,5,"['anaconda', 'coiled', 'fal-ai', 'microsoft', 'voltrondata']",,0.88,30,17,82,0,0,8,8,30.0,77.0,90.0,2.6,58,54.7017 +760,study,https://github.com/jackhidary/quantumcomputingbook,,,,jackhidary/quantumcomputingbook,quantumcomputingbook,614,187,54,"['quantum', 'quantum-computing', 'cirq', 'qiskit', 'rigetti', 'quantum-processor', 'sycamore', 'quantum-supremacy', 'quantum-information', 'quantum-information-science', 'google-quantum']",Jupyter Notebook,,quantumcomputingbook: Companion site for the textbook Quantum Computing: An Applied Approach,jackhidary,2022-12-18,2021-10-14,2019-02-28,198,3.0920863309352518,8,1,5,['google'],,0.0,1,1,46,14,0,0,0,1.0,2.0,90.0,2.0,6,21.38058 +18,nlp,https://github.com/explosion/spacy-streamlit,,,,explosion/spacy-streamlit,spacy-streamlit,613,102,18,"['spacy', 'nlp', 'natural-language-processing', 'visualizers', 'dependency-parsing', 'part-of-speech-tagging', 'named-entity-recognition', 'ner', 'streamlit', 'visualizer', 'text-classification', 'word-vectors', 'tokenization', 'machine-learning']",Python,https://share.streamlit.io/ines/spacy-streamlit-demo/master/app.py,spacy-streamlit: 👑 spaCy building blocks and visualizers for Streamlit apps,explosion,2022-12-16,2022-08-23,2020-06-23,129,4.720572057205721,12,2,5,"['explosion', 'founderexplosion']",,0.56,1,0,30,4,2,4,2,1.0,1.0,90.0,1.0,0,23.08956 +839,util,https://github.com/idanya/algo-trader,,,,idanya/algo-trader,algo-trader,610,57,21,"['algorithmic-trading', 'backtesting', 'crypto-bot', 'python', 'technical-analysis', 'trading-bot', 'trading-strategies']",Python,,"algo-trader: Trading bot with support for realtime trading, backtesting, custom strategies and much more.",idanya,2022-12-18,2022-12-18,2021-09-14,65,9.262472885032539,4,2,5,"['fireblocks', ""scott'sdevelopment""]",,0.5,21,17,15,0,0,0,0,21.0,45.0,90.0,2.1,0,26.25988 +595,gis,https://github.com/uber/h3-py,,,,uber/h3-py,h3-py,601,113,34,"['uber', 'python', 'hexagonal-architecture', 'h3', 'geospatial', 'geocoding', 'gis']",Python,https://uber.github.io/h3-py,"h3-py: Python bindings for H3, a hierarchical hexagonal geospatial indexing system",uber,2022-12-18,2022-11-24,2018-06-12,235,2.548152634766808,16,3,5,"['alantech', 'softwareengineer,uber', 'unfoldedinc']",,0.52,22,14,55,1,4,5,4,22.0,50.0,90.0,2.3,149,44.47441 +680,util,https://github.com/lukasschwab/arxiv.py,,,,lukasschwab/arxiv.py,arxiv.py,588,76,16,"['arxiv', 'arxiv-api', 'python-wrapper', 'pdf']",Python,,arxiv.py: Python wrapper for the arXiv API,lukasschwab,2022-12-12,2022-09-12,2015-11-25,368,1.5947307245253777,13,0,5,[],,0.08,3,0,86,3,0,3,3,3.0,4.0,90.0,1.3,383,32.61201 +796,graph,https://github.com/westhealth/pyvis,,,,westhealth/pyvis,pyvis,582,109,13,"['network-visualization', 'python', 'networkx']",HTML,http://pyvis.readthedocs.io/en/latest/,pyvis: Python package for creating and visualizing interactive network graphs.,westhealth,2022-12-17,2022-11-04,2018-05-10,240,2.4192399049881237,31,2,5,"['westhealth', 'westhealthinstitute']",,0.58,37,12,56,1,3,1,3,37.0,28.0,90.0,0.8,24,38.9846 +505,gis,https://github.com/scikit-mobility/scikit-mobility,,,,scikit-mobility/scikit-mobility,scikit-mobility,573,130,29,"['data-science', 'data-analysis', 'human-mobility', 'complex-systems', 'network-science', 'statistics', 'scikit-mobility', 'mobility-analysis', 'risk-assessment', 'mobility-flows', 'synthetic-flows']",Python,https://scikit-mobility.github.io/scikit-mobility/,scikit-mobility: mobility analysis in Python,scikit-mobility,2022-12-16,2022-06-13,2019-04-30,189,3.018058690744921,21,2,5,"['argonnenationallaboratory', 'isti-cnr']",,1.67,10,1,44,6,2,2,2,10.0,3.0,90.0,0.3,20,30.83403 +117,nlp,https://github.com/iclrandd/blackstone,,,,iclrandd/blackstone,Blackstone,573,93,37,"['law', 'caselaw', 'nlp', 'spacy-models', 'legaltech']",Python,https://research.iclr.co.uk,Blackstone: :black_circle: A spaCy pipeline and model for NLP on unstructured legal text.,iclrandd,2022-11-27,2021-01-31,2019-03-25,195,2.9384615384615387,8,1,5,['theincorporatedcounciloflawreportingforenglandandwales'],,0.0,0,0,45,23,0,0,0,0.0,0.0,90.0,0.0,0,11.0666 +831,typing,https://github.com/python-attrs/cattrs,,,,python-attrs/cattrs,cattrs,570,82,15,"['attrs', 'deserialization', 'serialization']",Python,,cattrs: Complex custom class converters for attrs.,python-attrs,2022-12-16,2022-12-09,2016-08-28,329,1.7317708333333333,44,2,5,"['google', 'pocketzworld']",,2.77,33,18,77,0,0,4,4,33.0,90.0,90.0,2.7,73,49.46393 +752,diffusion,https://github.com/sharonzhou/long_stable_diffusion,,,,sharonzhou/long_stable_diffusion,long_stable_diffusion,569,44,13,[],Python,,"long_stable_diffusion: Long-form text-to-images generation, using a pipeline of deep generative models (GPT-3 and Stable Diffusion)",sharonzhou,2022-12-17,2022-10-30,2022-09-04,15,37.575471698113205,2,1,5,['stanford'],,0.44,3,2,4,2,0,0,0,3.0,1.0,90.0,0.3,0,11.13917 +808,web,https://github.com/s3rius/fastapi-template,,,,s3rius/fastapi-template,FastAPI-template,569,51,11,"['fastapi', 'cookiecutter', 'cookiecutter-template', 'cookiecutter-python3', 'sqlalchemy-orm', 'asynchronous', 'ormar', 'tortoise-orm', 'aerich', 'alembic', 'python3', 'asyncio', 'graphql', 'strawberry-graphql', 'opentelemetry', 'prometheus', 'sentry', 'fastapi-template', 'fastapi-boilerplate']",Python,,FastAPI-template: Feature rich robust FastAPI template.,s3rius,2022-12-18,2022-12-17,2020-10-05,115,4.947826086956522,12,3,5,"['fyndiq', 'gazprom-media', 'infosec']",,1.06,26,21,27,0,13,10,13,26.0,63.0,90.0,2.4,0,37.6061 +690,util,https://github.com/pyfpdf/fpdf2,,,,pyfpdf/fpdf2,fpdf2,568,152,16,"['pdf-generation', 'pdf', 'python', 'hacktoberfest', 'barcode', 'pdf-library', 'python3', 'library', 'svg', 'markdown']",Python,https://pyfpdf.github.io/fpdf2/,fpdf2: Simple PDF generation for Python,pyfpdf,2022-12-16,2022-12-14,2017-03-15,300,1.8888361045130642,81,3,5,"['lymaconsulting', 'onapsis', 'sncfconnect&techvoyages-sncf-technologies']",,5.46,87,69,70,0,9,6,9,87.0,296.0,90.0,3.4,0,49.03168 +889,gis,https://github.com/osgeo/grass,,,,osgeo/grass,grass,562,209,47,"['osgeo', 'grass-gis', 'geospatial', 'geospatial-analysis', 'raster', 'vector', 'timeseries-analysis', 'earth-observation', 'gis', 'hacktoberfest', 'open-science', 'remote-sensing', 'science', 'spatial']",C,https://grass.osgeo.org,GRASS GIS - free and open source Geographic Information System (GIS),osgeo,2022-12-17,2022-12-15,2019-05-17,187,2.9984756097560976,93,3,5,"['czechtechnicaluniversityinprague', 'mundialis', 'ncsu']",,6.92,198,117,44,0,15,37,15,198.0,394.0,90.0,2.0,187,58.16453 +167,nlp,https://github.com/lexpredict/lexpredict-lexnlp,,,,lexpredict/lexpredict-lexnlp,lexpredict-lexnlp,557,153,49,"['nlp', 'ml', 'legal', 'legaltech', 'linguistics', 'law', 'contracts', 'analytics', 'data']",HTML,,lexpredict-lexnlp: LexNLP by LexPredict,lexpredict,2022-12-16,2022-08-10,2017-09-30,272,2.045645330535152,8,1,5,['bommaritoconsulting'],,0.06,5,0,64,4,0,0,0,5.0,2.0,90.0,0.4,17,23.70983 +567,sim,https://github.com/gboeing/pynamical,,,,gboeing/pynamical,pynamical,551,108,32,"['chaos', 'nonlinear', 'fractal', 'logistic', 'visualization', 'modeling', 'animation', 'math', 'physics', 'python', 'pandas', 'numba', 'numpy', 'matplotlib', 'ipynb', 'bifurcation-diagram', 'fractals', 'systems', 'phase-diagram', 'cobweb-plot']",Python,https://geoffboeing.com/publications/nonlinear-chaos-fractals-prediction/,"Pynamical is a Python package for modeling and visualizing discrete nonlinear dynamical systems, chaos, and fractals.",gboeing,2022-12-13,2022-05-24,2014-09-28,429,1.2839547270306257,1,1,5,['universityofsoutherncalifornia'],,0.13,0,0,100,7,0,1,1,0.0,0.0,90.0,0.0,0,12.98118 +259,crypto,https://github.com/pmaji/crypto-whale-watching-app,,,,pmaji/crypto-whale-watching-app,crypto-whale-watching-app,548,132,48,"['gdax', 'python', 'cryptocurrency', 'ethereum', 'litecoin', 'bitcoin', 'cryptocurrency-exchanges', 'python3', 'dash', 'ethereum-blockchain', 'bitcoin-api', 'bitcoin-price', 'cryptocurrency-price-ticker', 'cryptocurrency-prices', 'litecoin-price', 'ethereum-price', 'gdax-api', 'gdax-python', 'plotly', 'plotly-dash']",Python,,crypto-whale-watching-app: Python Dash app that tracks whale activity in cryptocurrency markets.,pmaji,2022-12-14,2022-12-08,2018-01-23,255,2.141820212171971,8,1,5,['capitalone'],,0.06,2,2,60,0,0,0,0,2.0,0.0,90.0,0.0,0,21.17183 +235,nlp,https://github.com/salesforce/codet5,,,,salesforce/codet5,CodeT5,547,105,18,"['language-model', 'code-intelligence', 'programming-language', 'representation-learning', 'nlp']",Python,https://arxiv.org/abs/2109.00859,Code for CodeT5: a new code-aware pre-trained encoder-decoder model.,salesforce,2022-12-17,2022-07-08,2021-08-16,70,7.814285714285714,3,1,5,['salesforceresearch'],,0.1,10,3,16,5,0,0,0,10.0,4.0,90.0,0.4,0,13.98874 +874,util,https://github.com/ipython/ipykernel,,,,ipython/ipykernel,ipykernel,529,335,33,"['ipython', 'ipython-kernel', 'jupyter', 'python', 'closember', 'jupyter-notebook', 'kernel']",Python,https://ipython.readthedocs.io/en/stable/,ipykernel: IPython Kernel for Jupyter,ipython,2022-12-15,2022-12-14,2015-04-09,401,1.3173247954464604,161,4,5,"['amazonwebservices', 'mongodb', 'quansight-labs', 'simularesearchlaboratory']",,4.9,77,59,94,0,29,14,29,77.0,132.0,90.0,1.7,1683,65.39877 +160,nlp,https://github.com/nipunsadvilkar/pysbd,,,,nipunsadvilkar/pysbd,pySBD,528,63,10,"['sentence-boundary-detection', 'python', 'segmentation', 'rule-based', 'sentence-tokenizer', 'sentence']",Python,,pySBD: 🐍💯pySBD (Python Sentence Boundary Disambiguation) is a rule-based sentence boundary detection that works out-of-the-box.,nipunsadvilkar,2022-12-18,2021-02-11,2017-06-11,288,1.8324243926623698,6,2,5,"['explosion', 'gerulatatechnologies']",,0.0,2,0,67,22,0,3,3,2.0,3.0,90.0,1.5,5,23.75867 +625,gis,https://github.com/scitools/iris,,,,scitools/iris,iris,527,259,44,"['iris', 'python', 'netcdf', 'grib', 'visualisation', 'data-analysis', 'earth-science', 'meteorology', 'oceanography', 'spaceweather']",Python,https://scitools-iris.readthedocs.io/en/latest/,"iris: A powerful, format-agnostic, and community-driven Python package for analysing and visualising Earth science data",scitools,2022-12-14,2022-12-16,2012-08-06,541,0.9741219963031423,99,1,5,['metoffice'],,6.63,257,160,126,0,10,7,10,257.0,387.0,90.0,1.5,46,53.76344 +516,ml-dl,https://github.com/kakaobrain/rq-vae-transformer,,,,kakaobrain/rq-vae-transformer,rq-vae-transformer,521,60,15,[],Jupyter Notebook,,rq-vae-transformer: The official implementation of Autoregressive Image Generation using Residual Quantization (CVPR '22),kakaobrain,2022-12-15,2022-08-18,2022-03-03,41,12.532646048109966,1,1,5,['kakaobrain'],,0.08,3,2,10,4,0,0,0,3.0,4.0,90.0,1.3,0,12.6312 +685,ml,https://github.com/nvidia/cuda-python,,,,nvidia/cuda-python,cuda-python,520,39,22,[],Python,https://nvidia.github.io/cuda-python/,cuda-python: CUDA Python Low-level Bindings,nvidia,2022-12-17,2022-12-09,2021-06-28,77,6.753246753246753,2,1,5,['nvidia'],,0.23,18,14,18,0,7,6,7,18.0,27.0,90.0,1.5,3,28.00019 +576,util,https://github.com/fsspec/filesystem_spec,,,,fsspec/filesystem_spec,filesystem_spec,520,226,21,[],Python,,filesystem_spec: A specification that python filesystems should adhere to.,fsspec,2022-12-18,2022-12-12,2018-04-23,243,2.139917695473251,165,5,5,"['abcellerabiologics', 'anaconda', 'fal-ai', 'microsoft', 'nvidia']",,2.67,118,84,57,0,0,14,14,118.0,314.0,90.0,2.7,209,61.42906 +665,study,https://github.com/rasbt/stat453-deep-learning-ss20,,,,rasbt/stat453-deep-learning-ss20,stat453-deep-learning-ss20,518,148,36,[],Jupyter Notebook,http://pages.stat.wisc.edu/~sraschka/teaching/stat453-ss2020/,stat453-deep-learning-ss20: STAT 453: Intro to Deep Learning @ UW-Madison (Spring 2020),rasbt,2022-11-30,2020-05-01,2020-01-20,152,3.4078947368421053,1,1,5,"['lightning-ai,universityofwisconsin-madison']",,0.0,2,1,35,32,0,0,0,2.0,1.0,90.0,0.5,6,11.97613 +306,crypto,https://github.com/palkeo/panoramix,,,,palkeo/panoramix,panoramix,516,142,31,[],Python,,panoramix: Ethereum decompiler,palkeo,2022-12-15,2020-08-22,2020-02-17,148,3.4864864864864864,4,2,5,"['ethereum', 'eveem.org']",,0.0,5,2,34,28,0,1,1,5.0,4.0,90.0,0.8,0,16.02489 +525,gis,https://github.com/toblerity/rtree,,,,toblerity/rtree,rtree,515,123,30,[],Python,https://rtree.readthedocs.io/en/latest/,Rtree: spatial index for Python GIS ¶,toblerity,2022-12-07,2022-12-12,2011-06-19,600,0.858129016900738,39,4,5,"['hobu', 'planetlabs', 'universityofillinoisaturbana-champaign', 'universityofutah']",,0.75,11,10,140,0,2,1,2,11.0,26.0,90.0,2.4,25,47.17232 +883,time-series,https://github.com/autoviml/auto_ts,,,,autoviml/auto_ts,Auto_TS,514,92,16,"['time-series', 'time-series-analysis', 'auto-timeseries', 'automl', 'autosklearn', 'tpot', 'autokeras', 'python3', 'prophet', 'python', 'sklearn', 'arima', 'auto-arima', 'auto-sklearn']",Jupyter Notebook,,"Auto_TS: Automatically build ARIMA, SARIMAX, VAR, FB Prophet and XGBoost Models on Time Series data sets with a Single Line of Code. Now updated with Dask to handle millions of rows.",autoviml,2022-12-14,2022-08-16,2020-02-15,148,3.466281310211946,6,1,5,['o9solutions'],,0.27,8,3,35,4,0,1,1,8.0,12.0,90.0,1.5,26,27.53577 +589,ml-ops,https://github.com/kedro-org/kedro-viz,,,,kedro-org/kedro-viz,kedro-viz,510,84,9,"['kedro', 'kedro-plugin', 'data-visualization', 'hacktoberfest', 'react', 'experiment-tracking', 'python']",JavaScript,https://demo.kedro.org/,kedro-viz: Visualise your Kedro data and machine-learning pipelines and track your experiments. ,kedro-org,2022-12-17,2022-12-16,2019-05-09,188,2.7045454545454546,38,2,5,"['kedro-org,quantumblacklabs', 'medshr']",,4.83,149,116,44,0,12,14,12,149.0,204.0,90.0,1.4,2,44.86311 +413,util,https://github.com/bastibe/python-soundfile,,,,bastibe/python-soundfile,python-soundfile,507,85,17,[],Python,,"python-soundfile: SoundFile is an audio library based on libsndfile, CFFI, and NumPy",bastibe,2022-12-17,2022-09-27,2013-08-27,485,1.0435166127609528,28,2,5,"['quantco', 'self']",,0.37,30,13,113,3,6,2,6,30.0,99.0,90.0,3.3,0,37.30259 +359,ml-ops,https://github.com/google/ml-metadata,,,,google/ml-metadata,ml-metadata,502,114,27,[],C++,https://www.tensorflow.org/tfx/guide/mlmd,ml-metadata: For recording and retrieving metadata associated with ML developer and data scientist workflows.,google,2022-12-16,2022-12-12,2019-01-15,204,2.4504881450488143,15,0,5,[],,0.56,4,2,48,0,7,9,7,4.0,28.0,90.0,7.0,20,37.8279 +671,ml,https://github.com/apple/ml-ane-transformers,,,,apple/ml-ane-transformers,ml-ane-transformers,494,26,26,[],Python,,ml-ane-transformers: Reference implementation of the Transformer architecture optimized for Apple Neural Engine (ANE),apple,2022-12-14,2022-08-09,2022-06-03,28,17.376884422110553,1,0,5,[],,0.1,0,0,7,4,3,5,3,0.0,0.0,90.0,0.0,0,5.70434 +241,ml,https://github.com/microsoft/focal-transformer,,,,microsoft/focal-transformer,Focal-Transformer,487,57,17,[],Python,,"Focal-Transformer: [NeurIPS 2021 Spotlight] Official code for ""Focal Self-attention for Local-Global Interactions in Vision Transformers""",microsoft,2022-12-15,2022-03-27,2021-07-10,75,6.468690702087287,2,1,5,['microsoft'],,0.04,2,0,18,9,0,0,0,2.0,1.0,90.0,0.5,2,12.52614 +673,perf,https://github.com/brandtbucher/specialist,,,,brandtbucher/specialist,specialist,485,9,9,[],Python,,"specialist: Visualize CPython 3.11's specializing, adaptive interpreter. :fire:",brandtbucher,2022-12-18,2022-12-15,2022-06-01,28,16.890547263681594,2,2,5,"['christianclauss', 'microsoft']",,1.0,3,1,7,0,10,17,10,3.0,11.0,90.0,3.7,0,26.98899 +797,ml-interpretability,https://github.com/selfexplainml/piml-toolbox,,,,selfexplainml/piml-toolbox,PiML-Toolbox,485,52,14,"['interpretable-machine-learning', 'low-code', 'ml-workflow', 'model-diagnostics']",Jupyter Notebook,https://selfexplainml.github.io/PiML-Toolbox,PiML-Toolbox: PiML (Python Interpretable Machine Learning) toolbox for model development and model validation,selfexplainml,2022-12-18,2022-12-17,2022-04-29,33,14.508547008547009,6,1,5,['cityuniversityofhongkong'],,4.02,16,13,8,0,15,24,15,16.0,24.0,90.0,1.5,5,32.74247 +216,ml-ops,https://github.com/nccr-itmo/fedot,,,,nccr-itmo/fedot,FEDOT,481,63,9,"['automl', 'machine-learning', 'evolutionary-algorithms', 'genetic-programming', 'structural-learning', 'automated-machine-learning', 'hyperparameter-optimization', 'parameter-tuning', 'automation', 'multimodality', 'fedot']",Python,https://fedot.readthedocs.io,FEDOT: Automated modeling and machine learning framework FEDOT,nccr-itmo,2022-12-17,2022-12-16,2020-01-13,153,3.1437908496732025,26,3,5,"['itmouniversity', 'mail.rugroup', 'wiredhut']",,5.02,175,137,36,0,4,3,4,175.0,167.0,90.0,1.0,0,40.60863 +794,gis,https://github.com/kvos/coastsat,,,,kvos/coastsat,CoastSat,480,195,23,"['google-earth-engine', 'earth-engine', 'remote-sensing', 'satellite-images', 'coastal-engineering', 'shoreline-detection']",Jupyter Notebook,http://coastsat.wrl.unsw.edu.au/,CoastSat: Global shoreline mapping tool from satellite imagery,kvos,2022-12-17,2022-12-18,2018-09-28,220,2.1775761503564484,14,5,5,"['sacramentostate', 'unswsydney', 'usaceerdc-fieldresearchfacility', 'waterresearchlaboratory', 'waterresearchlaboratory(unsw)']",,1.4,53,36,51,0,3,3,3,53.0,109.0,90.0,2.1,17,45.16199 +47,data,https://github.com/macbre/sql-metadata,1.0,,,macbre/sql-metadata,sql-metadata,478,84,15,"['sql', 'parser', 'database', 'sql-parser', 'metadata', 'sqlparse', 'python-package', 'python3-library', 'hiveql', 'hive', 'mysql-query']",Python,https://pypi.python.org/pypi/sql-metadata,sql-metadata: Uses tokenized query returned by python-sqlparse and generates query metadata,macbre,2022-12-18,2022-12-16,2017-06-06,288,1.6547972304648864,13,2,5,"['automattic', 'kaizentech']",,1.0,21,15,67,0,3,5,3,21.0,10.0,90.0,0.5,27,38.43106 +487,gis,https://github.com/fatiando/verde,,,,fatiando/verde,verde,467,60,21,"['geophysics', 'earth-science', 'geospatial', 'python', 'scipy', 'interpolation', 'python3', 'scipy-stack', 'fatiando-a-terra', 'geoscience']",Python,https://www.fatiando.org/verde,verde: Processing and interpolating spatial data with a twist of machine learning,fatiando,2022-12-14,2022-12-09,2018-04-25,242,1.924072984108299,13,4,5,"['fatiando', 'fatiandoubcgifcompgeolabgeolatinas', 'spacescienceandengineeringcenter(ssec)', 'universityofliverpool']",,0.56,29,26,57,0,1,3,1,29.0,21.0,90.0,0.7,15,38.99012 +211,time-series,https://github.com/firmai/atspy,,,,firmai/atspy,atspy,464,88,21,"['time-series', 'time-series-analysis', 'automated', 'python', 'forecasting', 'forecasting-models', 'finance']",Python,https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3580631,AtsPy: Automated Time Series Models in Python (by @firmai),firmai,2022-12-17,2021-12-18,2020-01-28,150,3.0757575757575757,5,2,5,"['alanturinginstitute,firmai', 'ddosify']",,0.0,3,1,35,12,0,0,0,3.0,1.0,90.0,0.3,12,19.98707 +329,ml-dl,https://github.com/facebookresearch/ppuda,,,,facebookresearch/ppuda,ppuda,459,61,17,[],Python,,ppuda: Code for Parameter Prediction for Unseen Deep Architectures (NeurIPS 2021),facebookresearch,2022-12-10,2022-07-26,2021-10-21,60,7.577830188679245,3,1,5,"['samsung-saitailab,montreal']",,0.29,1,0,14,5,0,0,0,1.0,3.0,90.0,3.0,0,16.27288 +497,ml-dl,https://github.com/mcahny/deep-video-inpainting,,,,mcahny/deep-video-inpainting,Deep-Video-Inpainting,448,86,13,[],Python,,"Deep-Video-Inpainting: Official pytorch implementation for ""Deep Video Inpainting"" (CVPR 2019)",mcahny,2022-12-12,2020-12-10,2019-05-22,186,2.399387911247131,3,1,5,['kentech'],,0.0,3,0,44,25,0,0,0,3.0,1.0,90.0,0.3,2,12.6167 +437,pandas,https://github.com/polyaxon/datatile,,,,polyaxon/datatile,datatile,447,40,13,"['pandas', 'pandas-summary', 'dataframes', 'data-analysis', 'data-science', 'spark', 'dask', 'plotly', 'statistics', 'matplotlib', 'data-profiling', 'data-visualization', 'data-summary', 'data-reporting', 'data-exploration', 'dataops', 'mlops', 'data-quality', 'data-quality-monitoring', 'data-quality-checks']",Python,,"datatile: A library for managing, validating, summarizing, and visualizing data",polyaxon,2022-12-17,2022-12-16,2016-03-25,351,1.2719512195121951,10,2,5,"['hospiq', 'sidhulabs']",,0.48,0,0,82,0,0,0,0,0.0,0.0,90.0,0.0,0,23.52189 +375,viz,https://github.com/vhranger/nodevectors,,,,vhranger/nodevectors,nodevectors,445,52,11,[],Python,,nodevectors: Fastest network node embeddings in the west,vhranger,2022-12-17,2021-11-06,2019-07-25,177,2.50603378921963,6,2,5,"['harvardmedicalschool', 'sap']",,0.0,2,0,41,14,0,4,4,2.0,0.0,90.0,0.0,0,16.92271 +479,gis,https://github.com/holoviz/geoviews,,,,holoviz/geoviews,geoviews,442,67,30,"['holoviz', 'geoviews', 'holoviews', 'geographic-visualizations', 'cartopy', 'plotting']",Python,http://geoviews.org,"geoviews: Simple, concise geographical visualization in Python",holoviz,2022-12-12,2022-12-07,2016-04-19,347,1.2706365503080082,28,1,5,['anaconda'],,0.69,19,11,81,0,3,10,3,19.0,20.0,90.0,1.1,10,38.1139 +872,pandas,https://github.com/eventual-inc/daft,,,,eventual-inc/daft,Daft,437,12,6,"['image-processing', 'machine-learning', 'python', 'data-engineering', 'data-science', 'dataframe', 'deep-learning', 'distributed-computing']",Python,,Daft: The Python DataFrame for Complex Data,eventual-inc,2022-12-17,2022-12-16,2022-04-25,34,12.852941176470589,5,3,5,"['eventual-inc', 'freenome', 'lyft']",,9.44,199,173,8,0,0,27,27,199.0,41.0,90.0,0.2,7,38.74243 +742,nlp,https://github.com/koaning/whatlies,,,,koaning/whatlies,whatlies,436,49,13,"['nlp', 'embeddings', 'visualisations']",Python,https://koaning.github.io/whatlies/,"whatlies: Toolkit to help understand ""what lies"" in word embeddings. Also benchmarking! ",koaning,2022-12-13,2022-07-28,2020-02-22,147,2.9602327837051408,13,4,5,"['explosion', 'kpmgnetherlands', 'motain', 'zalandose']",,0.27,1,1,34,5,1,9,1,1.0,2.0,90.0,2.0,0,26.77627 +573,gis,https://github.com/developmentseed/label-maker,,,,developmentseed/label-maker,label-maker,436,113,50,"['satellite-imagery', 'data-preparation', 'deep-learning', 'computer-vision', 'remote-sensing', 'keras']",Python,http://devseed.com/label-maker/,label-maker: Data Preparation for Satellite Machine Learning,developmentseed,2022-12-14,2020-11-19,2018-01-10,257,1.6917960088691797,15,4,5,"['cloud-gov(work)+personalprojects;', 'developmentseed', 'planetlabs', 'regrow']",,0.0,2,1,60,25,0,3,3,2.0,1.0,90.0,0.5,9,27.20848 +582,gis,https://github.com/developmentseed/titiler,,,,developmentseed/titiler,titiler,436,99,18,"['fastapi', 'cog', 'aws-cdk', 'aws-lambda', 'stac', 'cogeotiff', 'mosaicjson', 'raster', 'dynamic', 'server', 'rest', 'gdal', 'rasterio', 'tile', 'map-tile-server', 'map-tiles']",Python,https://developmentseed.org/titiler/,titiler: Build your own Raster dynamic map tile services,developmentseed,2022-12-18,2022-12-17,2019-06-28,181,2.4031496062992126,28,4,5,"['developmentseed', 'ozminerals', 'satellogic', 'terradue']",,2.0,31,26,42,0,0,15,15,31.0,39.0,90.0,1.3,13,46.18049 +837,gis,https://github.com/perrygeo/python-rasterstats,,,,perrygeo/python-rasterstats,python-rasterstats,434,108,33,[],Python,,python-rasterstats: Summary statistics of geospatial raster datasets based on vector geometries.,perrygeo,2022-12-07,2022-10-18,2013-09-18,482,0.8990825688073395,30,4,5,"['aiddata', 'ouranos', 'satellogic', 'southernmethodistuniversity']",,0.12,9,2,113,2,1,2,1,9.0,12.0,90.0,1.3,50,40.66959 +844,perf,https://github.com/joblib/loky,,,,joblib/loky,loky,433,41,9,"['multiprocessing-library', 'python']",Python,http://loky.readthedocs.io/en/stable/,loky: Robust and reusable Executor for joblib,joblib,2022-12-13,2022-09-15,2015-12-25,364,1.1881615052920422,16,4,5,"['inria', 'inriasaclay-parietalteam', 'scikit-learninriafoundation', 'ucl']",,1.0,6,2,85,3,0,5,5,6.0,2.0,90.0,0.3,59,38.18507 +863,ml-ops,https://github.com/astronomer/astronomer,,,,astronomer/astronomer,astronomer,431,78,43,"['apache-airflow', 'kubernetes', 'docker', 'astronomer-platform']",Python,https://www.astronomer.io,"astronomer: Helm Charts for the Astronomer Platform, Apache Airflow as a Service on Kubernetes",astronomer,2022-12-14,2022-12-16,2018-01-15,257,1.6770428015564203,70,2,5,"['astronomer', 'cerebral']",,8.96,113,109,60,0,29,69,29,112.0,78.0,90.0,0.7,133,54.59785 +292,util,https://github.com/fastai/ghapi,,,,fastai/ghapi,ghapi,421,45,8,"['github-api', 'github', 'nbdev', 'openapi', 'api-client']",Jupyter Notebook,https://ghapi.fast.ai/,ghapi: A delightful and complete interface to GitHub's amazing API,fastai,2022-12-17,2022-09-27,2020-11-21,108,3.887862796833773,16,4,5,"['fastai', 'github', 'huggingface', 'streamlit']",,1.17,10,3,25,3,6,9,6,10.0,7.0,90.0,0.7,21,35.5147 +481,sim,https://github.com/udst/urbansim,,,,udst/urbansim,urbansim,418,124,78,[],Python,https://udst.github.io/urbansim/,urbansim: Platform for building statistical models of cities and regions,udst,2022-12-08,2020-05-11,2013-08-15,487,0.8573102842074422,20,5,5,"['applemontechnologies', 'google', 'populus-ai', 'populus-aimapcraftlabsoaklandanalytics', 'urbansim']",,0.0,0,0,114,32,0,1,1,0.0,0.0,90.0,0.0,40,28.15977 +188,math,https://github.com/dit/dit,,,,dit/dit,dit,417,77,24,"['python', 'information-theory']",Python,http://docs.dit.io,dit: Python package for information theory.,dit,2022-12-13,2022-07-25,2013-09-29,481,0.8666864608076009,20,1,5,['google'],,0.92,4,0,112,5,1,3,1,4.0,7.0,90.0,1.8,269,36.87955 +486,gis,https://github.com/earthlab/earthpy,,,,earthlab/earthpy,earthpy,412,149,22,"['spatial-data', 'raster', 'vector', 'python', 'education']",Python,https://earthpy.readthedocs.io,earthpy: A package built to support working with spatial data using open source python,earthlab,2022-12-17,2021-12-20,2018-02-20,251,1.6358479863868407,41,4,5,"['hydrosat', 'nvidia', 'pyupio', 'silviaterra']",,0.0,28,21,59,12,0,7,7,28.0,43.0,90.0,1.5,60,41.4043 +705,ml-ops,https://github.com/bodywork-ml/bodywork-core,,,,bodywork-ml/bodywork-core,bodywork-core,406,18,9,"['mlops', 'python', 'kubernetes', 'data-science', 'machine-learning', 'pipeline', 'serving', 'continuous-deployment', 'batch', 'devops', 'framework', 'cicd', 'orchestration']",Python,https://bodywork.readthedocs.io/en/latest/,"bodywork-core: ML pipeline orchestration and model deployments on Kubernetes, made really easy.",bodywork-ml,2022-12-13,2022-07-04,2020-11-17,108,3.729658792650919,4,2,5,"['bodywork-mllloydsbankinggroup', 'bodyworkmachinelearning']",,2.73,0,0,25,6,0,29,29,0.0,0.0,90.0,0.0,8,25.11896 +472,nlp,https://github.com/google-research/byt5,,,,google-research/byt5,byt5,405,25,11,[],Python,,google-research/byt5,google-research,2022-12-11,2022-03-02,2021-05-26,81,4.956293706293707,2,0,5,[],,0.04,1,0,19,10,0,0,0,1.0,0.0,90.0,0.0,0,5.047 +275,crypto,https://github.com/ethtx/ethtx,,,,ethtx/ethtx,ethtx,397,60,16,[],Python,https://www.ethtx.info,ethtx: Python package with core transaction decoding functions.,ethtx,2022-12-16,2022-12-01,2021-06-28,77,5.1558441558441555,6,2,5,"['py-world', 'tokenflowinsights']",,1.37,23,22,18,1,17,24,17,23.0,9.0,90.0,0.4,0,28.70451 +577,jupyter,https://github.com/computationalmodelling/nbval,,,,computationalmodelling/nbval,nbval,393,50,10,"['ipython-notebook', 'jupyter-notebook', 'python', 'testing', 'pytest-plugin', 'pytest']",Python,,nbval: A py.test plugin to validate Jupyter notebooks,computationalmodelling,2022-12-16,2022-09-17,2015-04-09,401,0.9786552828175027,31,1,5,['mpsd&universityofsouthampton'],,0.21,5,1,94,3,0,2,2,5.0,2.0,90.0,0.4,44,33.0003 +722,perf,https://github.com/noxdafox/pebble,,,,noxdafox/pebble,pebble,389,45,10,"['threading', 'multiprocessing', 'python', 'pool', 'decorators', 'asyncio']",Python,,pebble: Multi threading and processing eye-candy.,noxdafox,2022-12-18,2022-11-15,2013-10-16,478,0.8125932557445539,14,1,5,['getcujo'],,1.08,11,11,112,1,4,2,4,11.0,35.0,90.0,3.2,322,44.77938 +528,nlp,https://github.com/hazyresearch/fonduer,,,,hazyresearch/fonduer,fonduer,386,79,27,"['multimodality', 'machine-learning', 'knowledge-base-construction']",Python,https://fonduer.readthedocs.io/,fonduer: A knowledge base construction engine for richly formatted data,hazyresearch,2022-12-05,2021-06-23,2018-02-02,254,1.5171252105558675,14,2,5,"['https://snorkel.ai/', 'numbersstationai']",,0.0,0,0,59,18,0,6,6,0.0,0.0,90.0,0.0,23,24.8635 +841,util,https://github.com/carlospuenteg/file-injector,,,,carlospuenteg/file-injector,File-Injector,383,17,6,"['image', 'image-manipulation', 'image-processing', 'noise', 'numpy', 'photography', 'python', 'python3', 'file', 'files', 'extraction', 'injection', 'storage', 'steganography', 'file-injection', 'file-injector']",Python,,File-Injector: File Injector is a script that allows you to store any file in an image using steganography,carlospuenteg,2022-12-16,2022-11-18,2022-10-22,8,46.224137931034484,1,0,5,[],,0.77,0,0,2,1,13,79,13,0.0,0.0,90.0,0.0,0,8.59194 +254,ml,https://github.com/amzn/pecos,,,,amzn/pecos,pecos,383,84,18,"['machine-learning-algorithms', 'extreme-multi-label-classification', 'extreme-multi-label-ranking', 'transformers', 'approximate-nearest-neighbor-search']",Python,https://libpecos.org/,PECOS - Prediction for Enormous and Correlated Spaces,amzn,2022-12-17,2022-12-17,2020-08-12,122,3.121071012805588,25,2,5,"['amazon', 'amazonsearchandai']",,1.15,35,34,29,0,2,3,2,35.0,13.0,90.0,0.4,0,32.35651 +12,nlp,https://github.com/dialogflow/dialogflow-python-client-v2,,,,dialogflow/dialogflow-python-client-v2,python-dialogflow,379,146,53,"['python', 'machine-learning', 'dialogflow']",Python,https://dialogflow.com/,python-dialogflow: Python client for Dialogflow: Design and integrate a conversational user interface into your applications and devices.,dialogflow,2022-12-09,2022-12-15,2017-10-24,268,1.4096705632306057,34,3,5,"['googleapis', 'googlecloud', 'mend']",,2.13,31,27,63,0,13,8,13,31.0,27.0,90.0,0.9,49,47.91162 +331,ml,https://github.com/jacopotagliabue/reclist,,,,jacopotagliabue/reclist,reclist,370,20,8,"['recommender-system', 'machine-learning', 'qa-automation']",Python,,"reclist: Behavioral ""black-box"" testing for recommender systems",jacopotagliabue,2022-12-13,2022-11-03,2021-11-08,58,6.379310344827586,7,2,5,"['digitalgreenorg', 'stanforduniversity']",,0.71,6,3,14,2,0,6,6,6.0,3.0,90.0,0.5,10,27.79074 +803,util,https://github.com/open-telemetry/opentelemetry-python-contrib,,,,open-telemetry/opentelemetry-python-contrib,opentelemetry-python-contrib,369,277,14,[],Python,https://opentelemetry.io,opentelemetry-python-contrib: OpenTelemetry instrumentation for Python modules,open-telemetry,2022-12-16,2022-12-18,2019-11-08,162,2.271767810026385,167,4,5,"['lightstep', 'microsoftcorporation', 'signoz.io', 'splunk']",,5.38,246,164,38,0,11,11,11,246.0,335.0,90.0,1.4,35,56.10085 +492,gis,https://github.com/cogeotiff/rio-tiler,,,,cogeotiff/rio-tiler,rio-tiler,369,86,65,"['satellite', 'cog', 'cogeotiff', 'maptile', 'raster-processing', 'mercator', 'tile', 'slippy-map', 'gdal', 'rasterio', 'raster']",Python,https://cogeotiff.github.io/rio-tiler/,rio-tiler: User friendly Rasterio plugin to read raster datasets.,cogeotiff,2022-12-15,2022-12-16,2017-10-06,271,1.3594736842105264,21,3,5,"['amskepler', 'angloamerican', 'developmentseed']",,1.19,47,46,63,0,0,23,23,47.0,50.0,90.0,1.1,10,45.33027 +185,math,https://github.com/willianfuks/tfcausalimpact,,,,willianfuks/tfcausalimpact,tfcausalimpact,366,51,10,"['causalimpact', 'tensorflow-probability', 'python', 'causal-inference']",Python,,tfcausalimpact: Python Causal Impact Implementation Based on Google's R Package. Built using TensorFlow Probability.,willianfuks,2022-12-16,2022-10-07,2020-08-17,122,3.0,3,1,5,['epfl'],,0.19,7,3,28,2,7,7,7,7.0,17.0,90.0,2.4,0,24.38965 +561,gis,https://github.com/geopandas/contextily,,,,geopandas/contextily,contextily,366,66,14,"['tiles', 'stamen', 'openstreetmap', 'python', 'tile', 'mapping', 'webtiles', 'geography', 'cartography', 'matplotlib', 'osm', 'stamen-maps']",Jupyter Notebook,https://contextily.readthedocs.io/en/latest/,contextily: Context geo-tiles in Python,geopandas,2022-11-22,2022-11-30,2016-09-08,327,1.1173135630178805,18,3,5,"['geogbristol', 'nordsoftware', 'ornl']",,0.08,7,1,76,1,0,1,1,7.0,6.0,90.0,0.9,3,32.38338 +522,gis,https://github.com/pygeos/pygeos,,,,pygeos/pygeos,pygeos,361,37,16,[],Python,https://pygeos.readthedocs.io,pygeos: Wraps GEOS geometry functions in numpy ufuncs.,pygeos,2022-12-14,2022-12-14,2019-06-10,184,1.9619565217391304,13,4,5,"['adonmo(adonmo)', 'astutespruce', 'gnsscience', 'nelen&schuurmans']",,0.19,21,21,43,0,2,6,2,21.0,14.0,90.0,0.7,321,43.60219 +49,util,https://github.com/mozillazg/pypy,,,,mozillazg/pypy,pypy,358,57,11,"['pypy', 'github-mirror', 'unofficial', 'unofficial-mirror', 'read-only-repository']",Python,https://foss.heptapod.net/pypy/pypy,pypy: The unofficial GitHub mirror of PyPy,mozillazg,2022-12-17,2022-12-18,2015-08-03,385,0.9298701298701298,374,2,5,"['pypy,baroquesoftware', 'quansightlabs']",,13.0,1,0,90,0,0,22,22,1.0,0.0,90.0,0.0,3,45.88361 +496,ml,https://github.com/linkedin/fasttreeshap,,,,linkedin/fasttreeshap,FastTreeSHAP,358,22,6,"['explainable-ai', 'interpretability', 'lightgbm', 'machine-learning', 'random-forest', 'shap', 'xgboost']",Python,,FastTreeSHAP: Fast SHAP value computation for interpreting tree-based models,linkedin,2022-12-16,2022-11-29,2022-01-24,47,7.617021276595745,3,1,5,['linkedincorporation'],,0.23,7,2,11,1,3,3,3,7.0,11.0,90.0,1.6,0,20.70189 +499,ml-dl,https://github.com/researchmm/sttn,,,,researchmm/sttn,STTN,355,70,20,"['video-inpainting', 'completing-videos', 'transformer', 'spatial-temporal']",Jupyter Notebook,https://arxiv.org/abs/2007.10247,[ECCV'2020] STTN: Learning Joint Spatial-Temporal Transformations for Video Inpainting,researchmm,2022-12-16,2021-07-26,2020-07-10,127,2.7858744394618835,2,0,5,[],,0.0,1,0,30,17,0,0,0,1.0,1.0,90.0,1.0,0,7.78837 +519,gis,https://github.com/scikit-geometry/scikit-geometry,,,,scikit-geometry/scikit-geometry,scikit-geometry,354,49,13,"['cgal', 'geometry', 'python', 'geometric-algorithms', 'wrapper']",Jupyter Notebook,https://scikit-geometry.github.io/scikit-geometry,scikit-geometry: Scientific Python Geometric Algorithms Library,scikit-geometry,2022-11-28,2022-10-14,2016-03-28,351,1.0085470085470085,15,5,5,"['ambirobotics', 'leipziguniversity', 'prefix.devgmbh', 'resonance', 'westpac']",,0.1,6,1,82,2,0,0,0,6.0,3.0,90.0,0.5,4,31.18635 +756,ml-dl,https://github.com/samuela/git-re-basin,,,,samuela/git-re-basin,git-re-basin,349,29,4,"['deep-learning', 'deeplearning', 'jax', 'machine-learning', 'neural-networks']",Python,https://arxiv.org/abs/2209.04836,"git-re-basin: Code release for ""Git Re-Basin: Merging Models modulo Permutation Symmetries""",samuela,2022-12-16,2022-10-12,2022-09-13,13,25.185567010309278,1,0,5,[],,0.44,8,1,3,2,0,0,0,8.0,52.0,90.0,6.5,0,13.78734 +692,util,https://github.com/paperswithcode/axcell,,,,paperswithcode/axcell,axcell,344,51,13,[],Python,,axcell: Tools for extracting tables and results from Machine Learning papers,paperswithcode,2022-12-18,2021-06-23,2019-06-27,181,1.8945712037765539,7,2,5,"['ukplab,tudarmstadt', 'xyzlab']",,0.0,1,0,42,18,0,0,0,1.0,0.0,90.0,0.0,0,13.6169 +586,gis,https://github.com/pysal/momepy,,,,pysal/momepy,momepy,343,46,16,"['urban', 'morphology', 'morphological-analysis', 'morphometrics', 'urban-morphometrics', 'urban-street-networks']",Python,https://docs.momepy.org,momepy: Urban Morphology Measuring Toolkit,pysal,2022-12-18,2022-10-17,2018-03-30,246,1.3918840579710146,10,2,5,"['ornl', 'udl-ai']",,1.1,29,19,57,2,3,4,3,29.0,68.0,90.0,2.3,39,39.11614 +560,gis,https://github.com/corteva/rioxarray,,,,corteva/rioxarray,rioxarray,342,56,12,"['gis', 'rasterio', 'xarray', 'geospatial', 'python', 'gdal', 'raster', 'netcdf', 'hacktoberfest']",Python,https://corteva.github.io/rioxarray,rioxarray: geospatial xarray extension powered by rasterio,corteva,2022-12-13,2022-12-12,2019-04-16,191,1.7825763216679076,26,5,5,"['corteva', 'dtn', 'gnsscience', 'quantstack', 'smhi']",,2.5,43,21,45,0,16,16,16,43.0,75.0,90.0,1.7,3,45.92631 +786,util,https://github.com/gefyrahq/gefyra,,,,gefyrahq/gefyra,gefyra,339,22,6,"['kubernetes', 'development', 'developer-tool', 'containers', 'coding', 'tunnel', 'docker', 'k8s']",Python,https://gefyra.dev,"gefyra: Blazingly-fast :rocket:, rock-solid, local application development :arrow_right: with Kubernetes.",gefyrahq,2022-12-16,2022-12-16,2021-11-18,56,5.992424242424242,13,2,5,"['blueshoe', 'blueshoeunikubehq']",,7.1,131,114,13,0,44,47,44,131.0,200.0,90.0,1.5,3,41.62193 +335,ml,https://github.com/mrdbourke/m1-machine-learning-test,,,,mrdbourke/m1-machine-learning-test,m1-machine-learning-test,339,101,12,"['tensorflow', 'tensorflow-macos', 'metal', 'machine-learning']",Jupyter Notebook,,m1-machine-learning-test: Code for testing various M1 Chip benchmarks with TensorFlow.,mrdbourke,2022-12-16,2022-07-16,2021-11-14,57,5.9325,2,0,5,[],,0.06,1,0,13,5,0,0,0,1.0,0.0,90.0,0.0,12,10.29055 +848,gis,https://github.com/mapbox/mercantile,,,,mapbox/mercantile,mercantile,338,62,116,"['satellite', 'pxm', 'imagery']",Python,,mercantile: Spherical mercator tile and coordinate utilities,mapbox,2022-12-17,2021-10-22,2014-02-12,461,0.7320544554455446,20,2,5,"['planetlabs', 'tudresden']",,0.0,3,0,108,14,0,4,4,3.0,0.0,90.0,0.0,111,30.95645 +340,term,https://github.com/federicoceratto/dashing,,,,federicoceratto/dashing,dashing,338,30,9,"['python', 'python3', 'terminal', 'dashboard', 'terminal-based', 'gauges', 'charts']",Python,https://dashing.readthedocs.io/en/latest/,dashing: Terminal dashboards for Python,federicoceratto,2022-12-14,2020-09-06,2017-06-03,289,1.1683950617283951,2,1,5,['ooni/torproject/debian'],,0.0,1,0,67,28,0,0,0,1.0,0.0,90.0,0.0,0,9.00499 +158,jupyter,https://github.com/nteract/testbook,,,,nteract/testbook,testbook,336,34,15,"['jupyter-notebook', 'unit-testing', 'pytest', 'nteract', 'python', 'testbook']",Python,https://testbook.readthedocs.io,testbook: 🧪 📗 Unit test your Jupyter Notebooks the right way,nteract,2022-12-15,2022-11-29,2020-02-26,146,2.29016553067186,15,4,5,"['noteable-io', 'quantstack', 'seaspancorporation', 'willingconsulting']",,0.04,5,2,34,1,0,5,5,5.0,5.0,90.0,1.0,5,33.9918 +563,gis,https://github.com/geopandas/dask-geopandas,,,,geopandas/dask-geopandas,dask-geopandas,336,34,23,[],Python,https://dask-geopandas.readthedocs.io/,dask-geopandas: Parallel GeoPandas with Dask,geopandas,2022-12-12,2022-08-28,2020-02-13,148,2.2615384615384615,16,4,5,"['azavea', 'mr', 'sylveraio', 'udl-ai']",,1.1,13,3,35,4,7,4,7,13.0,23.0,90.0,1.8,0,32.68949 +464,data,https://github.com/dmarx/psaw,,,,dmarx/psaw,psaw,333,46,9,[],Python,,psaw: Python Pushshift.io API Wrapper (for comment/submission search),dmarx,2022-12-12,2022-07-09,2018-04-15,244,1.363955529549444,8,1,5,"['stability.ai,eleuther.ai']",,0.04,1,0,57,5,0,0,0,1.0,0.0,90.0,0.0,4,18.46735 +684,util,https://github.com/sciunto-org/python-bibtexparser,,,,sciunto-org/python-bibtexparser,python-bibtexparser,330,117,16,"['bibtex', 'bibtex-files', 'latex', 'python', 'hacktoberfest2022']",Python,https://bibtexparser.readthedocs.io,python-bibtexparser: Bibtex parser for Python 3,sciunto-org,2022-12-13,2022-10-20,2013-01-05,519,0.6354883081155434,45,4,5,"['paris-saclayuniversity', 'quicksign', 'ruhruniversitybochum', 'universitàdellasvizzeraitaliana(testingautomated-usi)']",,0.6,41,24,121,2,2,2,2,41.0,37.0,90.0,0.9,35,44.25724 +237,ml,https://github.com/salesforce/warp-drive,,,,salesforce/warp-drive,warp-drive,329,58,12,"['reinforcement-learning', 'gpu', 'cuda', 'multiagent-reinforcement-learning', 'deep-learning', 'high-throughput', 'pytorch', 'numba']",Python,,warp-drive: Extremely Fast End-to-End Deep Multi-Agent Reinforcement Learning Framework on a GPU,salesforce,2022-12-17,2022-12-02,2021-08-25,68,4.787941787941788,6,1,5,['salesforceresearch'],,3.21,14,11,16,1,2,2,2,14.0,11.0,90.0,0.8,15,29.4868 +664,study,https://github.com/rasbt/stat451-machine-learning-fs20,,,,rasbt/stat451-machine-learning-fs20,stat451-machine-learning-fs20,327,176,18,[],Jupyter Notebook,,stat451-machine-learning-fs20: STAT 451: Intro to Machine Learning @ UW-Madison (Fall 2020),rasbt,2022-12-07,2020-12-03,2020-08-06,123,2.646242774566474,1,1,5,"['lightning-ai,universityofwisconsin-madison']",,0.0,0,0,29,25,0,0,0,0.0,0.0,90.0,0.0,2,7.63653 +747,study,https://github.com/bayesianmodelingandcomputationinpython/bookcode_edition1,,,,bayesianmodelingandcomputationinpython/bookcode_edition1,BookCode_Edition1,326,75,13,[],Jupyter Notebook,https://www.bayesiancomputationbook.com,bayesianmodelingandcomputationinpython/bookcode_edition1,bayesianmodelingandcomputationinpython,2022-12-17,2022-09-20,2021-08-17,69,4.666666666666667,10,2,5,"['google', 'imasl-conicet']",,1.69,8,2,16,3,0,0,0,8.0,7.0,90.0,0.9,0,22.24857 +364,ml-ops,https://github.com/kubeflow/fairing,,,,kubeflow/fairing,fairing,325,146,40,[],Jsonnet,,"fairing: Python SDK for building, training, and deploying ML models",kubeflow,2022-12-13,2021-08-26,2018-09-03,224,1.4508928571428572,41,2,5,"['google', 'ibm']",,0.0,1,0,52,16,0,1,1,1.0,1.0,90.0,1.0,113,31.65422 +745,perf,https://github.com/blosc/python-blosc,,,,blosc/python-blosc,python-blosc,322,75,12,"['python', 'wrapper', 'blosc', 'compression']",Python,https://www.blosc.org/python-blosc/python-blosc.html,python-blosc: A Python wrapper for the extremely fast Blosc compression library ,blosc,2022-12-14,2022-12-16,2010-09-30,637,0.5050414519381582,43,3,5,"['anaconda', 'cea', 'francescalted']",,0.92,43,41,149,0,1,4,1,43.0,66.0,90.0,1.5,167,49.63854 +719,gis,https://github.com/weecology/deepforest,,,,weecology/deepforest,DeepForest,321,122,15,[],JavaScript,https://deepforest.readthedocs.io/,DeepForest: Python Package for Tree Crown Detection in Airborne RGB imagery,weecology,2022-12-15,2022-12-02,2018-03-07,249,1.2854691075514875,11,4,5,"['rbccapitalmarkets', 'universityofflorida', 'weecology', 'weecology,univofflorida']",,0.71,29,14,58,1,0,13,13,29.0,53.0,90.0,1.8,119,45.85945 +594,gis,https://github.com/geopython/owslib,,,,geopython/owslib,OWSLib,315,257,31,[],Python,https://geopython.github.io/OWSLib,"OWSLib is a Python package for client programming with Open Geospatial Consortium (OGC) web service (hence OWS) interface standards, and their related content models.",geopython,2022-12-14,2022-12-12,2012-01-13,570,0.5522163786626596,138,3,5,"['geopythonwmo-imopengeospatial', 'opensourcegeospatialfoundation', 'planetlabs']",,0.9,20,7,133,0,4,7,4,20.0,28.0,90.0,1.4,308,53.69716 +510,ml-dl,https://github.com/leondgarse/keras_cv_attention_models,,,,leondgarse/keras_cv_attention_models,keras_cv_attention_models,313,51,16,"['tensorflow', 'visualizing', 'keras', 'attention', 'model', 'imagenet', 'coco', 'recognition', 'detection', 'anchor-free', 'tf', 'tf2']",Python,,"keras_cv_attention_models: Keras/Tensorflow models including beit,botnet,CMT,CoaT,CoAtNet,convnext,cotnet,davit,efficientdet,edgenext,efficientformer,efficientnet,fbnet,gcvit,ghostnetv2,gmlp,halonet,hornet,lcnet,levit,maxvit,mlp-mixer,mobilevit,nat,nfnets,regnet,resmlp,resnest,resnext,resnetd,swin,tinynet,uniformer,volo,wavemlp,yolor,yolov7,yolox",leondgarse,2022-12-15,2022-12-04,2021-08-02,72,4.347222222222222,4,3,5,"['koala-team', 'resmonicsag', 'wandb']",,7.21,14,13,17,0,19,68,19,14.0,35.0,90.0,2.5,0,36.27857 +473,ml-dl,https://github.com/nyandwi/modernconvnets,,,,nyandwi/modernconvnets,ModernConvNets,304,31,7,"['convnets', 'deep-learning-algorithms', 'computer-vision', 'tensorflow', 'keras', 'convolutional-neural-networks', 'neural-networks', 'image-classification', 'cnns']",Jupyter Notebook,,ModernConvNets: Revisions and implementations of modern Convolutional Neural Networks architectures in TensorFlow and Keras,nyandwi,2022-12-13,2022-10-05,2022-02-10,44,6.82051282051282,1,1,5,['cargeniemellon'],,0.6,0,0,10,2,0,0,0,0.0,0.0,90.0,0.0,0,9.30326 +500,study,https://github.com/googlecloudplatform/practical-ml-vision-book,,,,googlecloudplatform/practical-ml-vision-book,practical-ml-vision-book,304,138,18,[],Jupyter Notebook,,googlecloudplatform/practical-ml-vision-book,googlecloudplatform,2022-12-17,2022-11-21,2020-11-18,108,2.7963206307490145,6,1,5,['google'],,0.1,0,0,25,1,0,0,0,0.0,0.0,90.0,0.0,9,19.35954 +430,jupyter,https://github.com/chaoleili/jupyterlab_tensorboard,,,,chaoleili/jupyterlab_tensorboard,jupyterlab_tensorboard,295,35,11,"['jupyterlab-extension', 'tensorboard', 'jupyterlab']",TypeScript,,jupyterlab_tensorboard: Tensorboard extension for jupyterlab.,chaoleili,2022-11-11,2022-07-18,2018-08-14,226,1.3003778337531486,7,3,5,"['imec-idlab,departmentofinformationtechnology,ghentuniversity,belgium', 'researchscientistatnvidia', 'sundellopensourceconsultingab']",,0.1,1,0,53,5,0,0,0,1.0,2.0,90.0,2.0,0,23.23875 +788,study,https://github.com/mynameisfiber/high_performance_python_2e,,,,mynameisfiber/high_performance_python_2e,high_performance_python_2e,291,88,6,"['python', 'high-performance', 'code-samples', 'oreilly', 'oreilly-books']",Python,,"high_performance_python_2e: Code for the book ""High Performance Python 2e"" by Micha Gorelick and Ian Ozsvald with OReilly ",mynameisfiber,2022-12-17,2021-01-15,2020-04-12,140,2.076452599388379,2,2,5,"['http://morconsulting.com/', 'occrp,the-markup']",,0.0,0,0,33,23,0,0,0,0.0,0.0,90.0,0.0,0,9.27945 +574,gis,https://github.com/developmentseed/geolambda,,,,developmentseed/geolambda,geolambda,278,84,50,[],Dockerfile,,geolambda: Create and deploy Geospatial AWS Lambda functions,developmentseed,2022-12-09,2021-02-16,2017-05-02,293,0.9460379192999514,6,2,5,"['developmentseed', 'element84']",,0.0,0,0,69,22,0,1,1,0.0,0.0,90.0,0.0,3,17.21887 +524,util,https://github.com/venth/aws-adfs,,,,venth/aws-adfs,aws-adfs,277,91,11,"['aws', 'adfs', 'python', 'command-line', 'tools', 'multi-factor-authentication', 'duo-security']",Python,,aws-adfs: Command line tool to ease aws cli authentication against ADFS (multi factor authentication with active directory),venth,2022-12-14,2022-12-14,2016-06-25,338,0.8188344594594594,46,2,5,"['claranet', 'rancher']",,2.67,47,44,79,0,29,18,29,47.0,37.0,90.0,0.8,5,45.88168 +884,time-series,https://github.com/pastas/pastas,,,,pastas/pastas,pastas,276,54,15,"['hydrology', 'groundwater', 'python', 'timeseries', 'analysis', 'pastas']",Jupyter Notebook,http://pastas.readthedocs.io/,pastas: :spaghetti: Pastas is an open-source Python framework for the analysis of groundwater time series.,pastas,2022-12-17,2022-08-02,2016-04-15,348,0.7921279212792128,17,4,5,"['artesia-water', 'artesiawater', 'karl-franzensuniversityofgraz', 'tudelft']",,1.88,12,6,81,5,3,4,3,12.0,30.0,90.0,2.5,6069,50.62215 +727,web,https://github.com/rstudio/py-shiny,,,,rstudio/py-shiny,py-shiny,275,14,18,[],JavaScript,https://shiny.rstudio.com/py/,py-shiny: Shiny for Python,rstudio,2022-12-13,2022-12-09,2021-07-27,72,3.7745098039215685,7,2,5,"['freelance', 'rstudio']",,11.27,54,32,17,0,8,8,8,54.0,57.0,90.0,1.1,2,36.71642 +827,gis,https://github.com/datasystemslab/geotorch,,,,datasystemslab/geotorch,GeoTorch,272,15,8,"['classification-model', 'convlstm-pytorch', 'deep-learning', 'deep-neural-networks', 'deepsat', 'prediction-model', 'raster-data', 'satellite-images', 'segmentation-models', 'sequence-models', 'spatial-data-analysis', 'spatio-temporal-analysis', 'spatio-temporal-models', 'spatio-temporal-prediction', 'st-resnet', 'satellite-classification']",Python,https://kanchanchy.github.io/geotorch/,GeoTorch: A Spatiotemporal Deep Learning Framework,datasystemslab,2022-12-15,2022-11-27,2022-05-23,30,9.066666666666666,4,2,5,"['amberit', 'wherobots']",,1.96,5,3,7,1,0,0,0,6.0,9.0,90.0,1.5,2,23.13765 +123,util,https://github.com/mgedmin/check-manifest,,,,mgedmin/check-manifest,check-manifest,268,37,7,[],Python,https://pypi.org/p/check-manifest,check-manifest: Tool to check the completeness of MANIFEST.in for Python packages,mgedmin,2022-12-14,2022-12-11,2013-03-05,510,0.5246085011185683,22,4,5,"['nordsoftware', 'pioneervalleybooks', 'programmersofvilnius', 'zestsoftware']",,0.6,4,4,119,0,0,6,6,4.0,8.0,90.0,2.0,789,51.42407 +852,web,https://github.com/conradbez/hstream,,,,conradbez/hstream,hstream,264,11,6,[],Python,,hstream: Hyper Stream,conradbez,2022-12-12,2022-11-24,2022-11-03,6,40.17391304347826,5,1,5,['streamlit'],,0.79,9,9,2,1,0,0,0,9.0,8.0,90.0,0.9,0,16.24061 +210,util,https://github.com/tiangolo/poetry-version-plugin,,,,tiangolo/poetry-version-plugin,poetry-version-plugin,263,24,5,"['python-poetry', 'packaging', 'python', 'python3', 'pypi', 'packaging-for-pypi']",Python,,poetry-version-plugin: Poetry plugin for dynamically extracting the package version from a __version__ variable or a Git tag.,tiangolo,2022-12-15,2021-05-28,2021-05-27,81,3.224168126094571,3,1,5,['belike'],,0.0,1,0,19,19,0,1,1,1.0,0.0,90.0,0.0,0,8.94624 +307,crypto,https://github.com/ethereum/eth-utils,,,,ethereum/eth-utils,eth-utils,263,140,18,"['ethereum', 'python', 'utility-library']",Python,https://eth-utils.readthedocs.io/en/latest/,eth-utils: Utility functions for working with ethereum related codebases.,ethereum,2022-12-03,2022-11-17,2017-02-07,305,0.8598785614198973,31,2,5,"['ethereum', 'ethereumfoundation']",,0.31,12,4,71,1,0,11,11,12.0,15.0,90.0,1.2,92,43.00575 +342,term,https://github.com/rockhopper-technologies/enlighten,,,,rockhopper-technologies/enlighten,enlighten,263,19,4,['python'],Python,https://python-enlighten.readthedocs.io,Enlighten Progress Bar for Python Console Apps,rockhopper-technologies,2022-12-17,2022-12-15,2017-09-22,273,0.9618599791013585,5,1,5,['micaeljarniac'],,0.54,4,3,64,0,2,5,2,4.0,15.0,90.0,3.8,5,33.22458 +385,nlp,https://github.com/kootenpv/contractions,,,,kootenpv/contractions,contractions,263,35,7,[],Python,,contractions: Fixes contractions such as `you're` to you `are`,kootenpv,2022-12-17,2022-11-15,2016-12-25,312,0.8425629290617849,14,2,5,"['japan', 'vankootenaisolutions/mgnr.io']",,0.23,2,0,73,1,0,0,0,2.0,1.0,90.0,0.5,16,29.64106 +508,data,https://github.com/facebookresearch/mephisto,,,,facebookresearch/mephisto,Mephisto,258,57,14,[],JavaScript,https://mephisto.ai/,Mephisto: A suite of tools for managing crowdsourcing tasks from the inception through to data packaging for research use. ,facebookresearch,2022-12-12,2022-12-17,2019-08-19,174,1.4827586206896552,33,1,5,['spectatorpublishingcorrelation-one'],,16.15,76,64,41,0,6,6,6,76.0,85.0,90.0,1.1,80,47.53465 +303,util,https://github.com/airbnb/ottr,,,,airbnb/ottr,ottr,257,27,8,[],Python,,ottr: Serverless Public Key Infrastructure Framework,airbnb,2022-12-17,2022-01-04,2021-08-27,68,3.755741127348643,2,1,5,['coinbase'],,0.02,0,0,16,12,0,0,0,0.0,0.0,90.0,0.0,0,7.1275 +418,pandas,https://github.com/zsailer/pandas_flavor,,,,zsailer/pandas_flavor,pandas_flavor,256,17,6,['pandas'],Python,https://zsailer.github.io/software/pandas-flavor/,pandas_flavor: The easy way to write your own flavor of Pandas,zsailer,2022-12-12,2022-04-17,2018-01-25,255,1.0016769144773616,5,2,5,"['apple', 'bigabid']",,0.38,2,0,60,8,0,0,0,2.0,1.0,90.0,0.5,0,18.06195 +670,gis,https://github.com/cgal/cgal-swig-bindings,,,,cgal/cgal-swig-bindings,cgal-swig-bindings,252,78,26,[],C++,,cgal-swig-bindings: CGAL bindings using SWIG,cgal,2022-12-15,2022-10-19,2015-03-14,405,0.6217835741980966,21,1,5,['geometryfactory'],,2.4,12,7,95,2,3,0,3,12.0,8.0,90.0,0.7,4,33.34485 +693,data,https://github.com/paperswithcode/sota-extractor,,,,paperswithcode/sota-extractor,sota-extractor,251,27,13,[],Python,,sota-extractor: The SOTA extractor pipeline,paperswithcode,2022-12-06,2022-03-09,2018-12-07,210,1.1928038017651053,8,2,5,"['https://alefnula.io', 'metaai']",,0.04,2,1,49,9,0,4,4,2.0,1.0,90.0,0.5,0,21.30531 +587,ml,https://github.com/merantix-momentum/squirrel-core,,,,merantix-momentum/squirrel-core,squirrel-core,249,6,14,"['python', 'ml', 'machine-learning', 'data-science', 'computer-vision', 'cv', 'nlp', 'natural-language-processing', 'ai', 'pytorch', 'tensorflow', 'jax', 'datasets', 'distributed', 'dataops', 'collaboration', 'deep-learning', 'data-mesh', 'data-ingestion', 'cloud-computing']",Python,https://squirrel-core.readthedocs.io/,"squirrel-core: A Python library that enables ML teams to share, load, and transform data in a collaborative, flexible, and efficient way :chestnut:",merantix-momentum,2022-12-07,2022-11-17,2022-02-11,44,5.604501607717042,12,3,5,"['idealointernetgmbh', 'merantix&pw-solutions', 'merantixlabs']",,1.87,17,14,10,1,12,15,12,17.0,21.0,90.0,1.2,0,31.65446 +374,data,https://github.com/ndrplz/google-drive-downloader,,,,ndrplz/google-drive-downloader,google-drive-downloader,249,63,11,[],Python,,google-drive-downloader: Minimal class to download shared files from Google Drive.,ndrplz,2022-11-15,2019-02-09,2017-12-08,262,0.9488296135002722,4,1,5,['nomitri-perceptionaiformobile'],,0.0,4,1,61,47,0,0,0,4.0,1.0,90.0,0.2,0,10.83856 +300,nlp,https://github.com/openai/grade-school-math,,,,openai/grade-school-math,grade-school-math,248,47,7,[],Python,,openai/grade-school-math,openai,2022-12-18,2021-11-19,2021-10-20,60,4.084705882352941,2,1,5,['openai'],,0.0,1,0,14,13,0,0,0,1.0,0.0,90.0,0.0,2,9.05355 +248,util,https://github.com/rpgreen/apilogs,,,,rpgreen/apilogs,apilogs,247,19,9,"['api', 'gateway', 'api-gateway', 'aws', 'cloudwatch-logs', 'logging', 'lambda', 'aws-lambda', 'aws-apigateway']",Python,,apilogs: Easy logging and debugging for Amazon API Gateway and AWS Lambda Serverless APIs,rpgreen,2022-10-23,2019-11-13,2016-09-07,327,0.7537053182214473,23,2,5,"['avira', 'engineeringstableauto']",,0.0,0,0,76,38,0,0,0,0.0,0.0,90.0,0.0,0,15.83822 +714,ml-ops,https://github.com/unionai-oss/unionml,,,,unionai-oss/unionml,unionml,246,38,4,"['machine-learning', 'mlops', 'hacktoberfest']",Python,https://www.union.ai/unionml,UnionML: the easiest way to build and deploy machine learning microservices,unionai-oss,2022-12-16,2022-12-16,2021-11-17,56,4.337531486146096,15,2,5,"['letsopen-source', 'unionai']",,4.79,76,46,13,0,17,16,17,76.0,127.0,90.0,1.7,2,39.51596 +480,pandas,https://github.com/holoviz/spatialpandas,,,,holoviz/spatialpandas,spatialpandas,245,21,22,"['holoviz', 'spatialpandas', 'pandas', 'geopandas', 'geographic-data']",Python,,spatialpandas: Pandas extension arrays for spatial/geometric operations,holoviz,2022-12-16,2022-12-16,2019-10-28,164,1.4939024390243902,9,3,5,"['anaconda', 'datum-tech', 'hextechnologies']",,0.31,8,7,38,0,2,12,2,8.0,2.0,90.0,0.2,2,30.26737 +454,gis,https://github.com/openaddresses/pyesridump,,,,openaddresses/pyesridump,pyesridump,243,59,16,[],Python,,pyesridump: Scrapes an ESRI MapServer REST endpoint to spit out more generally-usable geodata.,openaddresses,2022-12-06,2022-06-19,2013-12-06,471,0.5154545454545455,12,3,5,"['datamade', 'nlt', 'openaddressesdevelopmentseed']",,0.38,3,0,110,6,1,2,1,3.0,7.0,90.0,2.3,0,28.47583 +276,crypto,https://github.com/ethtx/ethtx_ce,,,,ethtx/ethtx_ce,ethtx_ce,239,60,13,[],Python,https://ethtx.info,ethtx_ce: Ethereum transaction decoder (community version).,ethtx,2022-12-14,2022-12-05,2021-07-26,73,3.2739726027397262,7,2,5,"['py-world', 'tokenflowinsights']",,0.71,9,9,17,0,0,0,0,9.0,8.0,90.0,0.9,0,25.0426 +864,ml-ops,https://github.com/astronomer/airflow-chart,,,,astronomer/airflow-chart,airflow-chart,239,87,44,"['helm-chart', 'airflow', 'apache-airflow', 'kubernetes']",Python,,airflow-chart: A Helm chart to install Apache Airflow on Kubernetes,astronomer,2022-12-13,2022-12-16,2020-01-22,151,1.5753295668549905,48,3,5,"['astronomer', 'cerebral', 'mandolin-dev']",,1.58,29,29,35,0,18,29,18,29.0,14.0,90.0,0.5,14,44.48687 +277,data,https://github.com/airbnb/omniduct,,,,airbnb/omniduct,omniduct,238,47,30,[],Python,,"omniduct: A toolkit providing a uniform interface for connecting to and extracting data from a wide variety of (potentially remote) data stores (including HDFS, Hive, Presto, MySQL, etc).",airbnb,2022-12-15,2022-05-09,2017-02-22,303,0.7836312323612418,12,2,5,"['airbnb', 'datascientistatnetflix']",,0.04,0,0,71,7,1,13,1,0.0,0.0,90.0,0.0,0,19.16977 +588,data,https://github.com/tokern/data-lineage,,,,tokern/data-lineage,data-lineage,235,27,8,"['data-lineage', 'data-governance', 'python', 'postgresql', 'jupyter']",Python,https://tokern.io/data-lineage/,data-lineage: Generate and Visualize Data Lineage from query history,tokern,2022-12-18,2022-05-02,2020-03-17,143,1.6335650446871897,4,0,5,[],,0.06,8,0,34,8,0,9,9,8.0,3.0,90.0,0.4,0,14.93178 +657,template,https://github.com/sqlalchemy/mako,,,,sqlalchemy/mako,mako,234,46,10,[],Python,https://www.makotemplates.org,Mako Templates for Python,sqlalchemy,2022-12-07,2022-12-01,2018-11-26,212,1.1037735849056605,59,3,5,"['iter8ve', 'mozilla', 'redhat']",,0.67,7,7,49,1,5,16,5,7.0,17.0,90.0,2.4,1216,50.88298 +870,ml,https://github.com/infer-actively/pymdp,,,,infer-actively/pymdp,pymdp,233,36,23,[],Python,,pymdp: A Python implementation of active inference for Markov Decision Processes,infer-actively,2022-12-10,2022-12-08,2019-11-27,159,1.4588550983899822,12,1,5,['thoughtmachine'],,1.54,7,6,37,0,4,2,4,7.0,9.0,90.0,1.3,8,34.12383 +515,data,https://github.com/jovianml/opendatasets,,,,jovianml/opendatasets,opendatasets,233,109,14,"['data-science', 'machine-learning', 'datasets', 'python']",Python,,"opendatasets: A Python library for downloading datasets from Kaggle, Google Drive, and other online sources.",jovianml,2022-12-18,2022-11-01,2020-09-17,117,1.9817739975698663,3,2,5,"['jovian', 'jovianml']",,0.13,2,0,27,2,0,0,0,2.0,0.0,90.0,0.0,3,18.15162 +229,data,https://github.com/microsoft/genalog,,,,microsoft/genalog,genalog,232,23,10,"['ner', 'ocr-recognition', 'python', 'text-alignment', 'data-generation', 'data-science', 'machine-learning', 'synthetic-data', 'synthetic-images', 'synthetic-data-generation']",Jupyter Notebook,https://microsoft.github.io/genalog/,"Genalog is an open source, cross-platform python package allowing generation of synthetic document images with custom degradations and text alignment capabilities.",microsoft,2022-12-11,2022-09-13,2020-06-15,131,1.7709923664122138,5,1,5,['microsoft'],,0.02,1,1,31,3,0,3,3,1.0,0.0,90.0,0.0,0,16.91704 +737,ml-ops,https://github.com/skops-dev/skops,,,,skops-dev/skops,skops,227,32,7,"['huggingface', 'machine-learning', 'mlops', 'scikit-learn', 'hacktoberfest']",Python,https://skops.readthedocs.io/en/stable/,skops is a Python library helping you share your scikit-learn based models and put them in production,skops-dev,2022-12-18,2022-12-16,2022-05-04,32,6.93886462882096,9,2,5,"['huggingface', 'jsainsburyplc,sainsburys-tech']",,2.48,138,104,8,0,4,6,4,138.0,530.0,90.0,3.8,4,38.30099 +83,ml,https://github.com/stan-dev/pystan,,,,stan-dev/pystan,pystan,226,45,12,[],Python,,"PyStan, a Python interface to Stan, a platform for statistical modeling. Documentation: https://pystan.readthedocs.io",stan-dev,2022-12-16,2022-11-26,2017-09-17,274,0.8243877019280875,11,1,5,['lumoanalytics'],,0.48,23,16,64,1,0,4,4,23.0,58.0,90.0,2.5,26,37.72237 +274,data,https://github.com/amzn/ion-python,,,,amzn/ion-python,ion-python,215,49,23,[],Python,http://amzn.github.io/ion-docs/,ion-python: A Python implementation of Amazon Ion.,amzn,2022-12-16,2022-12-12,2016-04-07,349,0.615038823048631,25,2,5,"['amazon', 'amzn']",,0.33,13,5,82,0,3,2,3,13.0,6.0,90.0,0.5,16,38.05117 +491,gis,https://github.com/cogeotiff/rio-cogeo,,,,cogeotiff/rio-cogeo,rio-cogeo,213,30,44,"['satellite', 'cog', 'geotiff', 'rasterio', 'cogeotiff']",Python,https://cogeotiff.github.io/rio-cogeo/,rio-cogeo: Cloud Optimized GeoTIFF creation and validation plugin for rasterio,cogeotiff,2022-12-16,2022-10-26,2018-03-09,249,0.8539518900343642,13,3,5,"['developmentseed', 'regrowag', 'uav4geo']",,0.63,4,3,58,2,0,12,12,4.0,6.0,90.0,1.5,11,37.22211 +888,study,https://github.com/amaargiru/pyroad,,,,amaargiru/pyroad,pyroad,205,26,5,"['python', 'roadmap', 'tutorial']",Jupyter Notebook,,pyroad: Detailed Python developer roadmap,amaargiru,2022-12-18,2022-12-13,2022-11-03,6,31.195652173913043,1,1,5,['oznadigitalsolutions'],,0.92,2,0,2,0,0,0,0,2.0,4.0,90.0,2.0,0,14.54184 +249,sim,https://github.com/bilhim/trafficsimulator,,,,bilhim/trafficsimulator,trafficSimulator,204,77,13,[],Python,,bilhim/trafficsimulator,bilhim,2022-12-12,2021-09-07,2021-09-05,67,3.0382978723404257,2,0,5,[],,0.0,0,0,16,16,0,0,0,0.0,0.0,90.0,0.0,4,5.92078 +243,ml,https://github.com/carla-recourse/carla,,,,carla-recourse/carla,CARLA,198,42,5,"['python', 'machine-learning', 'artificial-intelligence', 'explainable-ai', 'explainable-ml', 'explainability', 'counterfactual-explanations', 'counterfactuals', 'counterfactual', 'recourse', 'benchmark', 'benchmarking', 'tensorflow', 'tensorflow2', 'pytorch']",Python,,CARLA: A Python Library to Benchmark Algorithmic Recourse and Counterfactual Explanation Algorithms,carla-recourse,2022-12-16,2022-09-07,2020-12-09,105,1.872972972972973,7,1,5,['bezerocarbon'],,0.81,1,0,25,3,0,0,0,1.0,0.0,90.0,0.0,0,15.22609 +240,sim,https://github.com/nv-tlabs/gamegan_code,,,,nv-tlabs/gamegan_code,GameGAN_code,198,32,9,[],Python,,GameGAN_code: Learning to Simulate Dynamic Environments with GameGAN (CVPR 2020),nv-tlabs,2022-12-14,2021-11-11,2020-12-11,105,1.8780487804878048,2,0,5,[],,0.0,0,0,25,13,0,0,0,0.0,0.0,90.0,0.0,2,6.52341 +865,ml-ops,https://github.com/astronomer/astro-sdk,,,,astronomer/astro-sdk,astro-sdk,197,27,13,"['python', 'sql', 'pandas', 'airflow', 'sqlite', 'bigquery', 'postgres', 'snowflake', 'gcs', 's3', 'etl', 'elt', 'dags', 'workflows', 'data-analysis', 'data-science', 'apache-airflow']",Python,https://docs.astronomer.io/learn/astro-python-sdk-etl,"astro-sdk: Astro SDK allows rapid and clean development of {Extract, Load, Transform} workflows using Python and SQL, powered by Apache Airflow.",astronomer,2022-12-18,2022-12-18,2021-12-06,54,3.6481481481481484,32,2,5,"['astronomer', 'astronomerio']",,13.54,677,489,13,0,42,49,42,677.0,784.0,90.0,1.2,112,52.56646 +836,gis,https://github.com/r-barnes/richdem,,,,r-barnes/richdem,richdem,195,57,14,"['digital-elevation-model', 'geosciences', 'geospatial', 'hydrology', 'hydrologic-modeling', 'big-data']",C++,,richdem: High-performance Terrain and Hydrology Analysis ,r-barnes,2022-12-15,2022-11-18,2013-01-06,519,0.3756191524490919,4,2,5,"['universityofcolorado', 'universityofidaho']",,0.79,9,1,121,1,2,2,2,9.0,5.0,90.0,0.6,84,34.882 +733,ml,https://github.com/autonlab/auton-survival,,,,autonlab/auton-survival,auton-survival,194,48,6,"['survival-analysis', 'reliability-analysis', 'python', 'data-science', 'deep-learning', 'machine-learning', 'time-to-event', 'counterfactual-inference', 'regression', 'causal-inference', 'graphical-models']",Python,http://autonlab.github.io/auton-survival,"auton-survival: Auton Survival - an open source package for Regression, Counterfactual Estimation, Evaluation and Phenotyping with Censored Time-to-Events ",autonlab,2022-12-02,2022-11-05,2020-04-01,141,1.3689516129032258,10,2,5,"['carnegiemellonuniversity', 'universityofcambridge']",,2.85,8,5,33,1,0,0,0,8.0,27.0,90.0,3.4,12,34.90097 +859,jupyter,https://github.com/jupyter/nbformat,,,,jupyter/nbformat,nbformat,193,142,26,[],Python,http://nbformat.readthedocs.io/,nbformat: Reference implementation of the Jupyter Notebook format,jupyter,2022-12-01,2022-12-18,2015-04-09,401,0.48061188189256493,70,4,5,"['mongodb', 'noteable-io', 'quansight-labs', 'simularesearchlaboratory']",,3.35,40,30,94,0,9,4,9,40.0,40.0,90.0,1.0,1138,57.95342 +456,gis,https://github.com/graal-research/deepparse,,,,graal-research/deepparse,deepparse,190,23,4,"['machine-learning', 'python', 'addresses-parsing']",Python,https://deepparse.org/,Deepparse is a state-of-the-art library for parsing multinational street addresses using deep learning,graal-research,2022-12-16,2022-12-01,2020-07-01,128,1.4761376248612652,6,1,5,['baseline.québec'],,4.54,17,15,30,1,20,18,20,17.0,15.0,90.0,0.9,34,36.85866 +337,util,https://github.com/mrabarnett/mrab-regex,,,,mrabarnett/mrab-regex,mrab-regex,189,24,5,[],C,,mrabarnett/mrab-regex,mrabarnett,2022-12-17,2022-10-31,2020-11-02,111,1.7027027027027026,9,2,5,"['facebook', 'google']",,0.31,7,6,26,2,0,6,6,7.0,15.0,90.0,2.1,2311,42.54368 +446,gis,https://github.com/pysal/spopt,,,,pysal/spopt,spopt,184,32,13,"['spatial-optimization', 'regionalization', 'facility-location', 'routing', 'transportation', 'spatial-analysis', 'location-allocation', 'location-modeling', 'resource-planning', 'python']",Python,https://pysal.org/spopt/,spopt: Spatial Optimization,pysal,2022-12-14,2022-12-14,2019-03-01,198,0.9272858171346292,15,3,5,"['center-for-open-geographical-science', 'centerforopengeographicalscience', 'ornl']",,6.38,75,58,46,0,3,3,3,75.0,73.0,90.0,1.0,104,46.87672 +207,util,https://github.com/aws/aws-lambda-python-runtime-interface-client,,,,aws/aws-lambda-python-runtime-interface-client,aws-lambda-python-runtime-interface-client,181,42,13,[],Python,,aws/aws-lambda-python-runtime-interface-client,aws,2022-12-18,2022-08-16,2020-09-02,119,1.5119331742243436,21,2,5,"['356', 'amazonwebservices']",,0.31,7,1,28,4,0,3,3,7.0,6.0,90.0,0.9,2,27.78369 +467,math,https://github.com/lukaszahradnik/pyneuralogic,,,,lukaszahradnik/pyneuralogic,PyNeuraLogic,181,14,5,"['machine-learning', 'deep-learning', 'graph-neural-networks', 'relational-learning', 'python', 'geometric-deep-learning', 'pytorch', 'logic-programming', 'differentiable-programming']",Python,https://pyneuralogic.readthedocs.io/,PyNeuraLogic lets you use Python to create Differentiable Logic Programs,lukaszahradnik,2022-12-18,2022-12-18,2020-12-06,106,1.705248990578735,3,2,5,"['adevinta', 'czechtechnicaluniversity']",,7.31,1,1,25,0,16,17,16,1.0,0.0,90.0,0.0,0,26.83212 +899,gis,https://github.com/kuanb/peartree,,,,kuanb/peartree,peartree,181,16,13,"['network-analysis', 'transit', 'graphs', 'gtfs', 'spatial-analysis', 'gis', 'modeling']",Python,,peartree: A library for converting transit data into a directed graph for sketch network analysis.,kuanb,2022-12-15,2021-01-18,2017-11-12,266,0.6800858829844337,5,2,5,"['eradb', 'mapbox']",,0.0,1,0,62,23,0,3,3,1.0,0.0,90.0,0.0,0,15.66025 +520,gis,https://github.com/lydorn/polygonization-by-frame-field-learning,,,,lydorn/polygonization-by-frame-field-learning,Polygonization-by-Frame-Field-Learning,179,51,11,"['segmentation', 'polygonization', 'remote', 'sensing', 'frame', 'field']",Python,,Polygonization-by-Frame-Field-Learning: This repository contains the code for our fast polygonal building extraction from overhead images pipeline.,lydorn,2022-12-15,2022-12-09,2020-05-26,133,1.3372465314834578,1,0,5,[],,0.13,2,0,31,0,0,0,0,2.0,11.0,90.0,5.5,0,19.32606 +585,gis,https://github.com/spatialucr/geosnap,,,,spatialucr/geosnap,geosnap,176,28,17,[],Python,https://spatialucr.github.io/geosnap-guide,geosnap: The Geospatial Neighborhood Analysis Package,spatialucr,2022-12-08,2022-10-24,2018-09-19,221,0.7938144329896907,9,5,5,"['center-for-open-geographical-science', 'centerforopengeographicalscience', 'mansueto-institute', 'ornl', 'universityofnorthtexas']",,0.94,4,2,52,2,4,7,4,4.0,1.0,90.0,0.2,16,33.9214 +731,gis,https://github.com/bowenc0221/boundary-iou-api,,,,bowenc0221/boundary-iou-api,boundary-iou-api,175,17,8,[],Python,,boundary-iou-api: Boundary IoU API (Beta version),bowenc0221,2022-12-15,2021-04-05,2021-03-29,90,1.9444444444444444,2,0,5,[],,0.0,0,0,21,21,0,0,0,0.0,0.0,90.0,0.0,0,3.03493 +266,nlp,https://github.com/allenai/s2orc-doc2json,,,,allenai/s2orc-doc2json,s2orc-doc2json,174,30,6,[],Python,,"s2orc-doc2json: Parsers for scientific papers (PDF2JSON, TEX2JSON, JATS2JSON)",allenai,2022-12-16,2022-12-09,2020-12-10,105,1.6481732070365358,9,3,5,"['allenai', 'castedo.com', 'kafkodersfrontiersin']",,0.13,6,5,25,0,0,0,0,6.0,2.0,90.0,0.3,0,25.05772 +33,gis,https://github.com/jasonrig/address-net,,,,jasonrig/address-net,address-net,171,71,13,"['rnn', 'deep-learning', 'machine-learning', 'address-parser']",Python,,address-net: A package to structure Australian addresses,jasonrig,2022-12-01,2020-09-09,2018-12-05,210,0.8115254237288135,2,2,5,"['deceptiveai', 'monash-mercpay-baymax']",,0.0,2,0,49,28,0,0,0,2.0,5.0,90.0,2.5,0,15.83578 +461,nlp,https://github.com/yoadtew/zero-shot-image-to-text,,,,yoadtew/zero-shot-image-to-text,zero-shot-image-to-text,165,23,7,[],Python,,zero-shot-image-to-text: Implementation of Zero-Shot Image-to-Text Generation for Visual-Semantic Arithmetic,yoadtew,2022-12-11,2022-09-17,2021-11-26,55,2.9768041237113403,6,0,5,[],,0.12,7,2,13,3,0,0,0,7.0,1.0,90.0,0.1,0,11.24106 +415,ml-dl,https://github.com/rafiqhasan/auto-tensorflow,,,,rafiqhasan/auto-tensorflow,auto-tensorflow,163,33,12,"['tensorflow', 'deeplearning', 'neural-networks', 'machinelearning', 'tfx', 'machine-learning', 'automl', 'auto-tensorflow', 'autotensorflow']",Python,,auto-tensorflow: Build Low Code Automated Tensorflow explainable models in just 3 lines of code. Library created by: Hasan Rafiq - https://www.linkedin.com/in/sam04/,rafiqhasan,2022-12-17,2022-12-09,2021-07-05,76,2.1447368421052633,1,1,5,['google'],,0.1,0,0,18,0,2,5,2,0.0,0.0,90.0,0.0,0,14.66177 +819,time-series,https://github.com/salesforce/deeptime,,,,salesforce/deeptime,DeepTime,161,22,5,"['deep-learning', 'forecasting', 'meta-learning', 'time-series', 'time-series-forecasting', 'time-series-regression', 'implicit-neural-representation']",Python,,PyTorch code for DeepTime: Deep Time-Index Meta-Learning for Non-Stationary Time-Series Forecasting,salesforce,2022-12-17,2022-11-03,2022-06-27,25,6.44,2,0,5,[],,0.21,3,1,6,2,0,0,0,3.0,9.0,90.0,3.0,0,12.75654 +339,perf,https://github.com/tlkh/tf-metal-experiments,,,,tlkh/tf-metal-experiments,tf-metal-experiments,160,17,9,"['gpu', 'deep-learning', 'tensorflow', 'm1', 'm1-max', 'benchmark', 'bert']",Jupyter Notebook,,tf-metal-experiments: TensorFlow Metal Backend on Apple Silicon Experiments (just for fun),tlkh,2022-11-30,2021-11-15,2021-10-26,59,2.6730310262529833,2,1,5,['singaporeuniversityoftechnologyanddesign'],,0.0,1,1,14,13,0,0,0,1.0,0.0,90.0,0.0,0,7.56236 +890,graph,https://github.com/h4kor/graph-force,,,,h4kor/graph-force,graph-force,159,0,9,"['force-directed-graphs', 'graph-algorithms', 'python', 'python3']",Rust,https://pypi.org/project/graph-force/,"graph-force: Python library for embedding large graphs in 2D space, using force-directed layouts.",h4kor,2022-12-15,2022-11-28,2022-11-28,3,53.0,2,0,5,[],,0.77,4,0,1,1,0,0,0,4.0,0.0,90.0,0.0,0,5.11876 +743,study,https://github.com/koaning/calm-notebooks,,,,koaning/calm-notebooks,calm-notebooks,158,135,7,[],Jupyter Notebook,https://calmcode.io,calm-notebooks: notebooks that are used at calmcode.io,koaning,2022-12-15,2021-10-21,2020-03-01,146,1.0811339198435972,1,1,5,['explosion'],,0.0,0,0,34,14,0,0,0,0.0,0.0,90.0,0.0,5,10.60689 +775,sim,https://github.com/activitysim/activitysim,,,,activitysim/activitysim,activitysim,145,86,43,"['python', 'travel-modeling', 'data-science', 'bsd-3-clause', 'microsimulation', 'activitysim']",Jupyter Notebook,https://activitysim.github.io,activitysim: An Open Platform for Activity-Based Travel Modeling,activitysim,2022-12-14,2022-09-14,2014-06-18,443,0.3267868641339343,25,5,5,"['cambridgesystematics|georgiatech', 'populus-ai', 'populus-aimapcraftlabsoaklandanalytics', 'ptvgroup', 'rsginc']",,2.9,43,19,104,3,4,2,4,43.0,68.0,90.0,1.6,28,45.77213 +606,util,https://github.com/pyscript/pyscript-cli,,,,pyscript/pyscript-cli,pyscript-cli,142,14,12,[],Python,,pyscript-cli: A CLI for PyScript,pyscript,2022-12-16,2022-12-13,2022-05-01,33,4.2844827586206895,7,1,5,['anaconda'],,1.35,5,4,8,0,0,9,9,5.0,4.0,90.0,0.8,0,24.94297 +869,util,https://github.com/hugovk/pypistats,,,,hugovk/pypistats,pypistats,138,25,4,"['python', 'python3', 'pypi', 'statistics', 'stats', 'api', 'cli', 'command-line', 'command-line-tool', 'downloads', 'hacktoberfest']",Python,https://pypistats.org/api/,pypistats: Command-line interface to PyPI Stats API to get download stats for Python packages,hugovk,2022-12-15,2022-12-03,2018-09-22,221,0.6236281471917366,12,1,5,['nordsoftware'],,1.42,14,13,52,0,3,6,3,14.0,11.0,90.0,0.8,8,34.33206 +901,gis,https://github.com/amazon-science/earth-forecasting-transformer,,,,amazon-science/earth-forecasting-transformer,earth-forecasting-transformer,137,20,7,[],Jupyter Notebook,,earth-forecasting-transformer: Official implementation of Earthformer,amazon-science,2022-12-17,2022-12-15,2022-09-12,14,9.785714285714286,5,5,5,"['amazon', 'amazonai', 'amazonwebservices', 'hongkonguniversityofscienceandtechnology', 'universityoftennessee']",,0.71,39,38,3,0,0,0,0,39.0,46.0,90.0,1.2,0,26.47835 +231,template,https://github.com/crmne/cookiecutter-modern-datascience,,,,crmne/cookiecutter-modern-datascience,cookiecutter-modern-datascience,136,27,3,"['cookiecutter', 'cookiecutter-template', 'cookiecutter-data-science', 'python', 'datascience']",Python,,cookiecutter-modern-datascience: Start a data science project with modern tools,crmne,2022-12-14,2022-06-10,2020-07-06,128,1.0625,2,1,5,['freshflowai'],,0.02,4,0,30,6,0,0,0,4.0,2.0,90.0,0.5,0,12.95187 +826,diffusion,https://github.com/thereforegames/unprompted,,,,thereforegames/unprompted,unprompted,134,10,4,[],Python,,unprompted: Text generator written for Stable Diffusion workflows.,thereforegames,2022-12-16,2022-12-14,2022-10-31,7,19.142857142857142,2,1,5,['awesomehamster'],,1.29,22,16,2,0,0,0,0,22.0,74.0,90.0,3.4,0,20.95058 +564,gis,https://github.com/geopandas/pyogrio,,,,geopandas/pyogrio,pyogrio,134,8,8,[],Python,https://pyogrio.readthedocs.io,pyogrio: Vectorized vector I/O using OGR,geopandas,2022-12-16,2022-12-18,2020-03-27,142,0.9408224674022067,8,2,5,"['astutespruce', 'udl-ai']",,1.87,43,29,33,0,6,3,6,43.0,84.0,90.0,2.0,5,38.2158 +147,graph,https://github.com/guyallard/markov_clustering,,,,guyallard/markov_clustering,markov_clustering,132,33,9,"['markov-clustering', 'clustering', 'python', 'networks']",Python,,markov_clustering: markov clustering in python,guyallard,2022-11-15,2018-12-11,2017-09-27,272,0.48402304871660556,3,0,5,[],,0.0,2,1,64,49,0,0,0,2.0,1.0,90.0,0.5,0,7.43119 +774,sim,https://github.com/openfisca/openfisca-core,,,,openfisca/openfisca-core,openfisca-core,131,71,24,"['legislation-as-code', 'rules-as-code', 'better-rules', 'microsimulation']",Python,https://openfisca.org,openfisca-core: OpenFisca core engine. See other repositories for countries-specific code & data.,openfisca,2022-12-06,2022-12-12,2013-12-29,468,0.27982911199267624,58,1,5,['codeworksfrance'],,3.31,61,35,109,0,0,43,43,62.0,83.0,90.0,1.3,53,50.57802 +785,util,https://github.com/brokenloop/jsontopydantic,,,,brokenloop/jsontopydantic,jsontopydantic,128,7,3,[],TypeScript,https://jsontopydantic.com,jsontopydantic: Web tool for generating Pydantic models from JSON objects,brokenloop,2022-12-12,2022-05-13,2020-11-28,107,1.193075898801598,2,0,5,[],,0.08,2,0,25,7,0,0,0,2.0,0.0,90.0,0.0,0,6.81611 +290,template,https://github.com/eugeneyan/python-collab-template,,,,eugeneyan/python-collab-template,python-collab-template,125,35,4,"['python', 'unit-testing', 'linting', 'type-checking', 'github-actions', 'makefile', 'coverage', 'hacktoberfest']",Python,https://eugeneyan.com/writing/setting-up-python-project-for-automation-and-collaboration/,"python-collab-template: 🛠 Python project template with unit tests, code coverage, linting, type checking, Makefile wrapper, and GitHub Actions.",eugeneyan,2022-12-13,2022-07-02,2020-06-21,130,0.960482985729967,2,1,5,['amzn'],,0.04,0,0,30,6,0,0,0,0.0,0.0,90.0,0.0,0,10.15293 +583,web,https://github.com/developmentseed/fastai-serving,,,,developmentseed/fastai-serving,fastai-serving,121,11,8,"['machine-learning', 'python', 'deep-learning', 'pytorch', 'docker']",Python,,"fastai-serving: A Docker image for serving fast.ai models, mimicking the API of Tensorflow Serving",developmentseed,2022-04-08,2020-02-10,2019-07-01,181,0.6685082872928176,2,1,5,['cloud-gov(work)+personalprojects;'],,0.0,0,0,42,35,0,0,0,0.0,0.0,90.0,0.0,0,6.87157 +305,util,https://github.com/xrudelis/pytrait,,,,xrudelis/pytrait,pytrait,121,3,3,[],Python,,pytrait: Traits for Python3,xrudelis,2022-11-15,2021-11-27,2021-11-21,56,2.1552162849872776,2,0,5,[],,0.0,0,0,13,13,0,0,0,0.0,0.0,90.0,0.0,0,3.03493 +555,ml,https://github.com/nicolas-chaulet/torch-points3d,,,,nicolas-chaulet/torch-points3d,torch-points3d,118,30,0,[],,https://torch-points3d.readthedocs.io/en/latest/,torch-points3d: Pytorch framework for doing deep learning on point clouds.,nicolas-chaulet,2022-12-12,2021-12-10,2022-01-09,49,2.4011627906976742,29,3,5,"['canoapbc', 'grid.ai|pytorchlightning', 'universityoftexasatdallas']",,0.0,0,0,11,12,0,11,11,0.0,0.0,90.0,0.0,38,27.00509 +316,util,https://github.com/irmen/pyminiaudio,,,,irmen/pyminiaudio,pyminiaudio,117,13,3,[],C,,"pyminiaudio: python interface to the miniaudio audio playback, recording, decoding and conversion library",irmen,2022-11-22,2022-11-15,2019-06-30,181,0.6458990536277602,4,1,5,['closedlooplabs'],,0.44,4,4,42,1,7,9,7,4.0,6.0,90.0,1.5,8,29.75635 +571,gis,https://github.com/developmentseed/geojson-pydantic,,,,developmentseed/geojson-pydantic,geojson-pydantic,113,27,11,"['geojson', 'pydantic', 'geojson-spec']",Python,,geojson-pydantic: Pydantic data models for the GeoJSON spec,developmentseed,2022-11-29,2022-12-16,2020-05-21,134,0.8397027600849257,19,3,5,"['bigbear.ai', 'cloud-gov(work)+personalprojects;', 'developmentseed']",,1.21,4,1,31,0,0,6,6,4.0,3.0,90.0,0.8,5,35.69967 +893,sim,https://github.com/crowdbotp/socialways,,,,crowdbotp/socialways,socialways,110,45,9,"['trajectory-prediction', 'human-trajectory-prediction', 'gan', 'social-navigation', 'social-ways', 'pedestrian-trajectories', 'pedestrian', 'social-gan', 'social-robots', 'generative-adversarial-network', 'trajectory-forecasting', 'self-driving-car', 'prediction-model', 'info-gan', 'crowd-simulation']",Python,,socialways: Social Ways: Learning Multi-Modal Distributions of Pedestrian Trajectories with GANs (CVPR 2019),crowdbotp,2022-12-13,2020-03-20,2019-04-23,190,0.5763473053892215,3,2,5,"['cimat', 'inriaresearchcenter']",,0.0,0,0,44,33,0,0,0,0.0,0.0,90.0,0.0,0,9.90736 +407,data,https://github.com/google/weather-tools,,,,google/weather-tools,weather-tools,109,23,12,"['python', 'apache-beam', 'weather']",Python,https://weather-tools.readthedocs.io/,weather-tools: Apache Beam pipelines to make weather data accessible and useful.,google,2022-12-14,2022-12-13,2021-11-22,56,1.9464285714285714,25,1,5,['infocuspinnovationspvt.ltd.'],,2.19,48,25,13,0,8,8,8,48.0,29.0,90.0,0.6,0,31.70445 +466,nlp,https://github.com/infinitylogesh/mutate,,,,infinitylogesh/mutate,mutate,105,7,3,"['nlp-library', 'text-generation', 'language-model', 'data-augmentation', 'data-labeling']",Python,,mutate: A library to synthesize text datasets using Large Language Models (LLM),infinitylogesh,2022-11-08,2022-04-18,2021-12-29,50,2.0704225352112675,2,1,5,['argilla'],,0.27,0,0,12,8,0,0,0,0.0,0.0,90.0,0.0,0,7.74479 +463,data,https://github.com/psycoguana/subredditmediadownloader,,,,psycoguana/subredditmediadownloader,SubredditMediaDownloader,102,7,3,[],Python,,SubredditMediaDownloader: Simple Python script to download images and videos from public subreddits without using Reddit's API 😎,psycoguana,2022-12-16,2022-11-20,2022-02-18,43,2.348684210526316,2,0,5,[],,0.4,7,7,10,1,0,0,0,7.0,21.0,90.0,3.0,0,16.54447 +527,ml,https://github.com/hazyresearch/domino,,,,hazyresearch/domino,domino,99,14,20,[],Python,,hazyresearch/domino,hazyresearch,2022-12-16,2022-08-02,2021-11-29,55,1.8,6,0,5,[],,1.19,4,1,13,5,1,6,1,4.0,0.0,90.0,0.0,6,15.10553 +847,gis,https://github.com/remotesensinglab/raster4ml,,,,remotesensinglab/raster4ml,raster4ml,97,12,4,"['agriculture-research', 'data-science', 'geospatial-data', 'machine-learning', 'remote-sensing', 'vegetation', 'vegetation-index', 'python']",Python,https://raster4ml.readthedocs.io,raster4ml: A geospatial raster processing library for machine learning,remotesensinglab,2022-12-04,2022-11-01,2022-07-11,23,4.217391304347826,1,1,5,['saintlouisuniversity'],,0.96,0,0,5,2,1,2,1,0.0,0.0,90.0,0.0,0,9.39903 +533,gis,https://github.com/gdaosu/lod2buildingmodel,,,,gdaosu/lod2buildingmodel,LOD2BuildingModel,96,23,9,[],Python,,LOD2BuildingModel: SAT2LoD2: Automated LoD-2 Model Reconstruction from Satellite-derived DSM and Orthophoto,gdaosu,2022-12-06,2022-07-21,2021-08-30,68,1.411764705882353,2,1,5,['ohiostateuniversity'],,0.85,1,0,16,5,0,0,0,1.0,1.0,90.0,1.0,0,13.45798 +529,nlp,https://github.com/hazyresearch/fonduer-tutorials,,,,hazyresearch/fonduer-tutorials,fonduer-tutorials,96,23,18,[],Jupyter Notebook,https://github.com/HazyResearch/fonduer,fonduer-tutorials: A collection of simple tutorials for using Fonduer,hazyresearch,2022-12-01,2020-05-27,2018-03-23,247,0.38799076212471134,6,3,5,"['https://snorkel.ai/', 'numbersstationai', 'vodafone']",,0.0,0,0,58,31,0,3,3,0.0,0.0,90.0,0.0,0,16.15219 +457,nlp,https://github.com/coastalcph/lex-glue,,,,coastalcph/lex-glue,lex-glue,95,22,6,"['legal', 'nlp', 'benchmark', 'legaltech', 'lawtech']",Python,,lex-glue: LexGLUE: A Benchmark Dataset for Legal Language Understanding in English,coastalcph,2022-12-08,2022-11-04,2021-09-27,64,1.484375,2,0,5,[],,0.6,4,4,15,1,0,0,0,4.0,11.0,90.0,2.8,8,20.76397 +781,gis,https://github.com/ghislainv/forestatrisk,,,,ghislainv/forestatrisk,forestatrisk,95,20,4,"['python', 'land-use-change', 'spatial-modelling', 'spatial-analysis', 'forecasting', 'spatial-autocorrelation', 'tropical-forests', 'roads', 'protected-areas', 'biodiversity-scenario', 'ipbes', 'co2-emissions', 'ipcc', 'forest-cover-change', 'deforestation', 'deforestation-risk', 'redd']",Python,https://ecology.ghislainv.fr/forestatrisk,forestatrisk: :package: :snake: Python package to model and forecast the risk of deforestation,ghislainv,2022-11-07,2022-08-23,2016-12-01,315,0.30104119511090993,6,5,5,"['cirad', 'faoopenforis', 'lancasteruniversity', 'uiuc', 'weecology,univofflorida']",,0.56,1,0,74,4,1,0,1,1.0,0.0,90.0,0.0,22,28.9049 +558,gis,https://github.com/darribas/gds_env,,,,darribas/gds_env,gds_env,93,37,10,"['geographic-data-science', 'docker', 'python', 'r', 'latex', 'jupyter-lab']",Jupyter Notebook,https://darribas.org/gds_env,gds_env: A containerised platform for Geographic Data Science,darribas,2022-11-16,2022-12-09,2016-08-12,331,0.2806034482758621,8,3,5,"['actions', 'udl-ai', 'universityofliverpool']",,0.83,3,0,77,0,1,2,1,3.0,1.0,90.0,0.3,79,35.75315 +835,typing,https://github.com/jellezijlstra/autotyping,,,,jellezijlstra/autotyping,autotyping,91,8,3,[],Python,,jellezijlstra/autotyping,jellezijlstra,2022-12-18,2022-12-18,2021-06-25,77,1.1752767527675276,6,3,5,"['quora', 'sendcloud', 'softformance']",,0.25,12,7,18,0,2,1,2,12.0,23.0,90.0,1.9,3,31.95208 +534,ml-dl,https://github.com/benedekrozemberczki/tigerlily,,,,benedekrozemberczki/tigerlily,tigerlily,90,10,1,"['node', 'embedding', 'node-embedding', 'graph-embedding', 'ddi', 'drug-drug-interaction', 'gradient-boosting', 'graph', 'pharmaceuticals', 'network-science', 'biology', 'heterogeneous-graph', 'knowledge-graph', 'deep-learning', 'machine-learning', 'unsupervised-learning', 'tigergraph', 'graph-database', 'graph-machine-learning']",Jupyter Notebook,,TigerLily: Finding drug interactions in silico with the Graph.,benedekrozemberczki,2022-09-11,2022-12-17,2022-02-28,42,2.142857142857143,1,1,5,['isomorphiclabs'],,1.98,0,0,10,0,1,1,1,0.0,0.0,90.0,0.0,0,14.29446 +667,gis,https://github.com/zorzi-s/polyworldpretrainednetwork,,,,zorzi-s/polyworldpretrainednetwork,PolyWorldPretrainedNetwork,90,13,7,[],Python,,PolyWorldPretrainedNetwork: PolyWorld: Polygonal Building Extraction with Graph Neural Networks in Satellite Images,zorzi-s,2022-12-17,2022-11-10,2022-03-23,38,2.3247232472324724,1,0,5,[],,0.4,7,2,9,1,0,0,0,7.0,19.0,90.0,2.7,0,14.18236 +744,ml-ops,https://github.com/aiqc/aiqc,,,,aiqc/aiqc,AIQC,88,19,4,[],Jupyter Notebook,,AIQC: End-to-end deep learning on your desktop or server.,aiqc,2022-11-21,2022-12-16,2020-12-02,106,0.8246318607764391,8,2,5,"['aiqc', 'deuteronomyworks']",,8.5,0,0,25,0,0,0,0,0.0,0.0,90.0,0.0,2,25.25604 +485,gis,https://github.com/scisco/area,,,,scisco/area,area,87,19,3,[],Python,,area: Calculate the area inside of any GeoJSON geometry. This is a port of Mapbox's geojson-area for Python,scisco,2022-12-14,2018-10-31,2015-11-25,368,0.23595505617977527,3,0,5,[],,0.0,0,0,86,50,0,0,0,0.0,0.0,90.0,0.0,0,5.13983 +269,term,https://github.com/deeplook/sparklines,,,,deeplook/sparklines,sparklines,83,6,3,"['python', 'command-line-tool', 'graphs', 'ascii', 'sparklines', 'sparkline-graphs']",Python,,sparklines: Text-based sparkline command line mimicking those of Edward Tuft.,deeplook,2022-11-26,2021-06-26,2016-05-17,343,0.2413793103448276,7,3,5,"['deepsourcelabs', 'investnext', 'quantifiedcode']",,0.0,0,0,80,18,0,0,0,0.0,0.0,90.0,0.0,0,16.10308 +746,data,https://github.com/ktrueda/parquet-tools,,,,ktrueda/parquet-tools,parquet-tools,82,10,3,"['parquet', 'parquet-tools', 'cli']",Python,,parquet-tools: easy install parquet-tools,ktrueda,2022-12-07,2022-06-14,2020-05-02,137,0.5972944849115505,10,2,5,"['discogs', 'shopify']",,0.1,2,0,32,6,2,6,2,2.0,0.0,90.0,0.0,5,21.9127 +562,gis,https://github.com/geopandas/xyzservices,,,,geopandas/xyzservices,xyzservices,81,19,11,[],Python,https://xyzservices.readthedocs.io/,xyzservices: Source of XYZ tiles providers,geopandas,2022-12-06,2022-12-15,2021-05-21,82,0.9826689774696707,17,2,5,"['quantstack', 'udl-ai']",,1.13,9,6,19,0,7,10,7,9.0,5.0,90.0,0.6,0,30.65109 +668,gis,https://github.com/zorzi-s/projectregularization,,,,zorzi-s/projectregularization,projectRegularization,80,7,2,[],Python,,projectRegularization: Regularization of Building Boundaries using Adversarial and Regularized losses,zorzi-s,2022-11-10,2021-09-17,2021-05-18,82,0.9655172413793104,1,0,5,[],,0.0,0,0,19,15,0,0,0,0.0,0.0,90.0,0.0,0,2.46223 +842,jupyter,https://github.com/cmudig/autoprofiler,,,,cmudig/autoprofiler,AutoProfiler,79,4,1,"['jupyter', 'pandas', 'python']",Svelte,,AutoProfiler: Automatically profile dataframes in the Jupyter sidebar,cmudig,2022-12-04,2022-12-16,2022-03-24,38,2.0481481481481483,2,2,5,"['cmu', 'cmu,apple']",,3.58,94,70,9,0,0,0,0,94.0,41.0,90.0,0.4,0,24.1815 +769,ml-dl,https://github.com/praw-dev/asyncpraw,,,,praw-dev/asyncpraw,asyncpraw,79,14,3,"['python', 'api', 'oauth', 'reddit', 'reddit-api', 'async', 'asyncpraw', 'praw']",Python,https://asyncpraw.readthedocs.io,"asyncpraw: Async PRAW, an abbreviation for ""Asynchronous Python Reddit API Wrapper"", is a python package that allows for simple access to Reddit's API.",praw-dev,2022-12-18,2022-12-09,2019-02-05,201,0.3913658881811748,226,4,5,"['appfolio', 'billy', 'indeed', 'netflix']",,4.1,29,26,47,0,2,3,2,29.0,12.0,90.0,0.4,14,48.02319 +327,security,https://github.com/sonatype-nexus-community/jake,,,,sonatype-nexus-community/jake,jake,75,19,8,"['python', 'vulnerabilities', 'vulnerability-scanners', 'ossindex', 'nexus-iq', 'sonatype-iq']",Python,https://jake.readthedocs.io/,jake: Check your Python environments for vulnerable Open Source packages with OSS Index or Sonatype Nexus Lifecycle.,sonatype-nexus-community,2022-12-14,2022-12-14,2019-10-10,166,0.4502572898799314,15,3,5,"['nginxinc', 'sonatype', 'sonatypecyclonedx']",,1.0,5,4,39,0,12,41,12,5.0,8.0,90.0,1.6,30,41.82917 +851,profiling,https://github.com/kshitij12345/torchnnprofiler,,,,kshitij12345/torchnnprofiler,torchnnprofiler,72,2,4,[],Python,,torchnnprofiler: Context Manager to profile the forward and backward times of PyTorch's nn.Module,kshitij12345,2022-12-16,2022-11-02,2022-10-22,8,8.689655172413794,1,1,5,['quansight'],,0.96,6,3,2,2,0,0,0,6.0,1.0,90.0,0.2,2,11.50637 +530,ml,https://github.com/brohrer/cottonwood,,,,brohrer/cottonwood,cottonwood,72,13,14,[],Python,https://end-to-end-machine-learning.teachable.com/p/write-a-neural-network-framework/,cottonwood: A flexible neural network framework for running experiments and trying ideas.,brohrer,2022-09-23,2020-02-02,2019-09-29,168,0.4282073067119796,3,2,5,"['azerbaijanpug', 'tum,imperialcollege,openmined']",,0.0,0,0,39,35,0,4,4,0.0,0.0,90.0,0.0,11,16.80633 +584,gis,https://github.com/developmentseed/cogeo-mosaic,,,,developmentseed/cogeo-mosaic,cogeo-mosaic,70,19,8,[],Python,https://developmentseed.org/cogeo-mosaic/,cogeo-mosaic: Create and use COG mosaic based on mosaicJSON,developmentseed,2022-12-14,2022-11-21,2019-05-14,187,0.3726235741444867,8,3,5,"['developmentseed', 'regrowag', 'satellogic']",,0.44,7,6,44,1,0,11,11,7.0,7.0,90.0,1.0,6,34.77557 +234,crypto,https://github.com/blockchainsllc/in3,,,,blockchainsllc/in3,in3,65,18,12,"['blockchain', 'verify', 'crypto-economic', 'ethereum', 'ipfs']",C,https://in3.readthedocs.io/en/develop/index.html,in3: The IN3 client (written in C).,blockchainsllc,2022-11-17,2022-04-01,2019-09-17,169,0.3826745164003364,35,2,5,"['blockchains', 'sni']",,3.81,2,0,40,9,0,28,28,2.0,2.0,90.0,1.0,3,33.49362 +568,sim,https://github.com/gboeing/street-network-models,,,,gboeing/street-network-models,street-network-models,64,4,2,[],Python,https://osf.io/f2dqc,street-network-models: Street network models and indicators for every urban area in the world,gboeing,2022-12-13,2021-03-05,2020-04-13,140,0.45714285714285713,1,1,5,['universityofsoutherncalifornia'],,0.0,0,0,33,22,0,0,0,0.0,0.0,90.0,0.0,2,8.24433 +453,gis,https://github.com/googlecloudplatform/dataflow-geobeam,,,,googlecloudplatform/dataflow-geobeam,dataflow-geobeam,61,25,9,[],Python,,googlecloudplatform/dataflow-geobeam,googlecloudplatform,2022-11-08,2022-11-29,2021-02-04,97,0.6251830161054173,5,3,5,"['calthorpeanalytics', 'carto', 'google']",,0.79,6,3,23,1,0,3,3,6.0,3.0,90.0,0.5,4,28.2204 +535,gis,https://github.com/cloudsen12/easystac,,,,cloudsen12/easystac,easystac,57,1,3,"['stac', 'remote-sensing', 'gis', 'earth-observation', 'python', 'python3', 'spatio-temporal', 'spatio-temporal-data', 'planetary-computer', 'radiant']",Python,https://easystac.readthedocs.io/,easystac: A Python package for simple STAC queries,cloudsen12,2022-11-26,2022-08-07,2022-01-20,47,1.1981981981981982,3,3,5,"['emcdestudent', 'regrowag', 'rsc4earth|universityofleipzig']",,1.06,0,0,11,4,1,1,1,0.0,0.0,90.0,0.0,0,15.24661 +521,gis,https://github.com/lydorn/mapalignment,,,,lydorn/mapalignment,mapalignment,55,14,4,[],Python,,mapalignment: Aligning and Updating Cadaster Maps with Remote Sensing Images,lydorn,2022-12-16,2020-09-03,2018-09-05,223,0.24584929757343552,2,0,5,[],,0.0,1,0,52,28,0,0,0,1.0,0.0,90.0,0.0,0,4.99287 +854,util,https://github.com/backtick-se/cowait,,,,backtick-se/cowait,cowait,55,5,8,"['python', 'task-scheduler', 'data-science', 'data-engineering', 'spark', 'dask', 'kubernetes', 'docker', 'workflow-engine']",Python,https://cowait.io,cowait: Containerized distributed programming framework for Python,backtick-se,2022-11-16,2022-09-22,2019-09-18,169,0.32407407407407407,10,1,5,['backticktechnologies'],,0.33,13,2,40,3,3,14,3,13.0,2.0,90.0,0.2,0,22.04893 +816,util,https://github.com/aws-samples/sagemaker-ssh-helper,,,,aws-samples/sagemaker-ssh-helper,sagemaker-ssh-helper,51,7,6,"['amazon-sagemaker', 'aws', 'aws-systems-manager', 'machine-learning', 'pycharm', 'sagemaker', 'sagemaker-studio', 'ssh', 'vscode']",Python,,sagemaker-ssh-helper: A helper library to connect into Amazon SageMaker with AWS Systems Manager and SSH,aws-samples,2022-12-15,2022-12-15,2022-10-14,9,5.409090909090909,4,2,5,"['amazon', 'amazonwebservices(aws)']",,0.5,9,5,2,0,3,18,3,9.0,16.0,90.0,1.8,0,22.89248 +326,security,https://github.com/snyk-labs/pysnyk,,,,snyk-labs/pysnyk,pysnyk,50,91,10,"['snyk', 'python', 'api']",Python,https://snyk.docs.apiary.io/,pysnyk: A Python client for the Snyk API.,snyk-labs,2022-11-04,2022-12-12,2019-02-03,202,0.24734982332155478,22,3,5,"['gitpod-io', 'replicated.com', 'snyk']",,0.29,10,1,47,0,8,5,8,10.0,4.0,90.0,0.4,4,35.76346 +400,study,https://github.com/dylanhogg/crazy-awesome-python,,,,dylanhogg/crazy-awesome-python,crazy-awesome-python,47,8,3,"['python', 'python-data', 'awesome-list', 'python-machine-learning', 'python-nlp', 'python-frameworks', 'python-library', 'data', 'machine-learning', 'natural-language-processing']",HTML,https://www.awesomepython.org/,"crazy-awesome-python: A curated list of awesome Python frameworks, with a bias towards data and machine learning",dylanhogg,2022-12-09,2022-12-10,2020-06-20,130,0.3607456140350877,2,0,5,[],,1.62,6,6,30,0,0,2,2,6.0,0.0,90.0,0.0,0,17.7477 +401,crypto,https://github.com/dylanhogg/crazy-awesome-crypto,,,,dylanhogg/crazy-awesome-crypto,crazy-awesome-crypto,43,13,4,"['crypto', 'cryptocurrency', 'blockchain', 'bitcoin', 'ethereum', 'awesome-list', 'data', 'data-analysis', 'github', 'awesome']",Python,https://www.awesomecrypto.xyz/,crazy-awesome-crypto: A list of awesome crypto and blockchain projects,dylanhogg,2022-12-16,2022-12-10,2021-09-27,64,0.671875,1,0,5,[],,0.63,0,0,15,0,0,2,2,0.0,0.0,90.0,0.0,0,11.50913 +202,crypto,https://github.com/nerolation/ethereum-datafarm,,,,nerolation/ethereum-datafarm,ethereum-datafarm,37,8,1,[],Python,,ethereum-datafarm: Scrap blockchain data from the public API of Etherscan.io,nerolation,2022-12-18,2022-11-19,2021-03-13,92,0.40092879256965946,1,1,5,['viennauniversityofeconomicsandbusiness(wu)'],,1.71,0,0,22,1,0,0,0,0.0,0.0,90.0,0.0,0,13.00466 +776,sim,https://github.com/activitysim/populationsim,,,,activitysim/populationsim,populationsim,37,27,11,"['python', 'data-science', 'population-synthesis', 'activitysim', 'bsd-3-clause', 'microsimulation']",Jupyter Notebook,https://activitysim.github.io/populationsim,populationsim: An Open Platform for Population Synthesis,activitysim,2022-08-23,2021-11-19,2017-02-14,304,0.12136832239925023,9,2,5,"['ptvgroup', 'rsginc']",,0.0,1,0,71,13,0,1,1,1.0,3.0,90.0,3.0,0,23.36645 +821,pandas,https://github.com/ddelange/mapply,,,,ddelange/mapply,mapply,35,2,3,[],Python,,mapply: Sensible multi-core apply function for Pandas,ddelange,2022-12-14,2022-12-16,2020-10-26,112,0.3125,1,0,5,[],,0.29,7,7,26,0,9,9,9,7.0,12.0,90.0,1.7,0,21.63002 +386,nlp,https://github.com/ferdinandzhong/punctuator,,,,ferdinandzhong/punctuator,punctuator,35,5,1,"['bert', 'nlp', 'seq2seq', 'punctuation', 'deep-learning', 'pytorch', 'bert-ner', 'chinese-nlp']",Python,,punctuator: A small seq2seq punctuator tool based on DistilBERT,ferdinandzhong,2022-10-19,2022-09-28,2020-11-19,108,0.3223684210526316,4,0,5,[],,0.17,2,1,25,3,2,2,2,2.0,13.0,90.0,6.5,0,21.05313 +333,util,https://github.com/gondolav/pyfuncol,,,,gondolav/pyfuncol,pyfuncol,32,3,3,"['functional', 'collections', 'python', 'parallel', 'python3', 'extension-functions']",Python,https://pyfuncol.readthedocs.io/,pyfuncol: Functional collections extension functions for Python,gondolav,2022-11-16,2022-11-16,2021-12-16,52,0.6086956521739131,4,1,5,['epfl'],,0.98,27,20,12,1,7,7,7,27.0,38.0,90.0,1.4,0,25.43196 +711,gis,https://github.com/artelys/geonetworkx,,,,artelys/geonetworkx,geonetworkx,30,1,7,[],Python,,geonetworkx: Python tools for geographic graphs,artelys,2022-10-27,2021-06-28,2019-10-24,164,0.18229166666666666,6,1,5,['argonnenationallaboratory'],,0.0,1,1,38,18,0,2,2,1.0,1.0,90.0,1.0,0,16.39984 +502,gis,https://github.com/gregorhd/mapcompare,,,,gregorhd/mapcompare,mapcompare,28,0,2,"['visualisation-libraries', 'sample-visualisation', 'comparison', 'data-visualisation', 'data-viz', 'urban-data-science', 'interactive-visualisations']",Python,,mapcompare: Comparison of Python packages and libraries for visualising geospatial vector data: applications for Smarter Cities.,gregorhd,2022-12-06,2022-12-03,2021-05-21,82,0.3396880415944541,1,1,5,['gafag'],,0.17,0,0,19,0,0,2,2,0.0,0.0,90.0,0.0,0,14.89266 +894,sim,https://github.com/crowddynamics/crowddynamics,,,,crowddynamics/crowddynamics,crowddynamics,27,9,9,"['crowd-dynamics', 'multi-agent', 'continuous-time', 'crowd-simulation']",Python,https://jaantollander.com/post/how-to-implement-continuous-time-multi-agent-crowd-simulation/,crowddynamics: Continuous-time multi-agent crowd simulation engine implemented in Python using Numba and Numpy for performance.,crowddynamics,2022-12-16,2020-01-02,2016-03-22,351,0.07673568818514007,7,2,5,"['aaltouniversity', 'pyupio']",,0.0,0,0,82,36,0,0,0,0.0,0.0,90.0,0.0,0,13.11651 +688,ml-dl,https://github.com/jerryyli/valhalla-nmt,,,,jerryyli/valhalla-nmt,valhalla-nmt,23,3,1,"['computer-vision', 'machine-translation', 'multimodal-learning', 'natural-language-processing']",Python,,"valhalla-nmt: Code repository for CVPR 2022 paper ""VALHALLA: Visual Hallucination for Machine Translation""",jerryyli,2022-11-26,2022-06-06,2022-03-22,38,0.5919117647058824,3,1,5,['mit-ibmwatsonailab'],,0.31,0,0,9,6,1,1,1,0.0,0.0,90.0,0.0,0,9.80233 +37,math,https://github.com/jszymon/pacal,,,,jszymon/pacal,pacal,21,8,6,[],Python,,PaCAL - ProbAbilistic CALculator,jszymon,2022-11-02,2022-11-02,2014-08-04,437,0.04805491990846682,8,0,5,[],,0.04,1,0,102,2,0,0,0,1.0,0.0,90.0,0.0,5,18.50268 +840,data,https://github.com/codait/pardata,,,,codait/pardata,pardata,18,5,11,"['dataset', 'python', 'machine-learning', 'artificial-intelligence', 'data-science']",Python,https://pardata.readthedocs.io/en/latest/,codait/pardata,codait,2022-08-14,2021-12-01,2020-11-17,108,0.16535433070866143,7,2,5,"['google', 'ibmcodait']",,0.0,7,0,25,13,0,3,3,7.0,0.0,90.0,0.0,0,16.56351 +578,term,https://github.com/matthewdeanmartin/terminaltables,,,,matthewdeanmartin/terminaltables,terminaltables,17,4,0,[],Python,https://robpol86.github.io/terminaltables,terminaltables: Generate simple tables in terminals from a nested list of strings.,matthewdeanmartin,2022-11-15,2022-01-30,2021-12-04,54,0.3131578947368421,10,1,5,['adobe'],,0.02,1,0,13,11,0,14,14,1.0,0.0,90.0,0.0,31,21.96317 +679,util,https://github.com/markhershey/arxiv-dl,,,,markhershey/arxiv-dl,arxiv-dl,16,4,2,"['arxiv', 'paper', 'downloader', 'command-line-tool', 'paper-with-code', 'cvpr']",Python,https://pypi.org/project/arxiv-dl/,"arxiv-dl: Command-line ArXiv & CVF (CVPR, ICCV, WACV) Paper Downloader",markhershey,2022-12-02,2022-12-06,2021-01-21,99,0.1606886657101865,2,0,5,[],,0.48,1,1,23,0,2,3,2,1.0,1.0,90.0,1.0,0,17.35809 +669,gis,https://github.com/zorzi-s/maprepair,,,,zorzi-s/maprepair,MapRepair,16,4,2,[],Python,,MapRepair: Deep Cadastre Maps Alignment and Temporal Inconsistencies Fix in Satellite Images,zorzi-s,2022-12-06,2021-05-17,2020-07-30,124,0.12844036697247707,1,0,5,[],,0.0,0,0,29,19,0,0,0,0.0,0.0,90.0,0.0,0,2.90949 +892,util,https://github.com/pyodide/micropip,,,,pyodide/micropip,micropip,10,4,5,"['package-installer', 'pyodide', 'python', 'webassembly']",Python,https://micropip.pyodide.org,micropip: A lightweight Python package installer for Pyodide,pyodide,2022-12-15,2022-12-12,2022-09-15,13,0.7368421052631579,6,1,5,['mitmathdepartment'],,0.54,37,27,3,0,0,8,8,37.0,70.0,90.0,1.9,3,28.65104 +702,data,https://github.com/harangju/wikinet,,,,harangju/wikinet,wikinet,10,5,3,[],Jupyter Notebook,,wikinet: Python library for exploring networks of hyperlinked Wikipedia articles,harangju,2022-12-16,2022-01-25,2019-08-05,176,0.056818181818181816,6,0,5,[],,0.1,0,0,41,11,0,0,0,0.0,0.0,90.0,0.0,9,12.73981 +608,typing,https://github.com/tk0miya/docutils-stubs,,,,tk0miya/docutils-stubs,docutils-stubs,7,5,6,[],Python,,tk0miya/docutils-stubs,tk0miya,2022-01-02,2022-01-02,2018-11-02,215,0.03249336870026525,6,2,5,"['timeintermedia(timedia)', 'unist']",,0.04,0,0,50,12,0,5,5,0.0,0.0,90.0,0.0,8,21.32329 +180,sim,https://github.com/artemyk/dynpy,,,,artemyk/dynpy,dynpy,5,5,3,[],Python,,dynpy: Dynamical systems for Python,artemyk,2021-09-24,2018-09-28,2014-09-12,431,0.011589403973509934,5,0,5,[],,0.0,0,0,101,51,0,0,0,0.0,0.0,90.0,0.0,3,9.08824 +526,gis,https://github.com/lycantropos/wagyu,,,,lycantropos/wagyu,wagyu,3,2,1,[],Python,https://github.com/mapbox/wagyu,wagyu: Python port of mapbox/wagyu library (with separate C++ binding),lycantropos,2022-07-19,2020-11-21,2020-06-30,128,0.02328159645232816,2,0,5,[],,0.0,0,0,30,25,0,2,2,0.0,0.0,90.0,0.0,0,5.4272 +751,gis,https://github.com/edomel/boundaryvt,,,,edomel/boundaryvt,BoundaryVT,2,0,2,[],Python,,edomel/boundaryvt,edomel,2022-12-07,2022-09-29,2022-07-29,20,0.0979020979020979,2,1,5,['ethzurich'],,0.1,0,0,5,3,0,0,0,0.0,0.0,90.0,0.0,0,7.59265 +420,template,https://github.com/dylanhogg/python-project-template,,,,dylanhogg/python-project-template,python-project-template,1,0,2,"['python', 'template', 'jupyterlab', 'cookiecutter']",Python,,python-project-template: A quick-start Python project template with helpful functionality and common libraries.,dylanhogg,2022-08-19,2022-08-19,2020-02-12,148,0.0067243035542747355,2,0,5,[],,0.1,1,0,35,4,0,1,1,1.0,0.0,90.0,0.0,0,9.75574 diff --git a/github_data.json b/github_data.json index 4ba9990..0d8e170 100644 --- a/github_data.json +++ b/github_data.json @@ -85,6 +85,82 @@ "name": "_stars_per_week", "type": "number" }, + { + "name": "_pop_contributor_count", + "type": "integer" + }, + { + "name": "_pop_contributor_orgs_len", + "type": "integer" + }, + { + "name": "_pop_contributor_orgs_max", + "type": "integer" + }, + { + "name": "_pop_contributor_orgs", + "type": "string" + }, + { + "name": "_pop_contributor_orgs_error", + "type": "string" + }, + { + "name": "_pop_commit_frequency", + "type": "number" + }, + { + "name": "_pop_updated_issues_count", + "type": "integer" + }, + { + "name": "_pop_closed_issues_count", + "type": "integer" + }, + { + "name": "_pop_created_since_days", + "type": "integer" + }, + { + "name": "_pop_updated_since_days", + "type": "integer" + }, + { + "name": "_pop_recent_releases_count", + "type": "integer" + }, + { + "name": "_pop_recent_releases_estimated_tags", + "type": "integer" + }, + { + "name": "_pop_recent_releases_adjusted_count", + "type": "integer" + }, + { + "name": "_pop_issue_count", + "type": "number" + }, + { + "name": "_pop_comment_count", + "type": "number" + }, + { + "name": "_pop_comment_count_lookback_days", + "type": "number" + }, + { + "name": "_pop_comment_frequency", + "type": "number" + }, + { + "name": "_pop_dependents_count", + "type": "integer" + }, + { + "name": "_pop_score", + "type": "number" + }, { "name": "_readme_filename", "type": "string" @@ -125,9 +201,9 @@ "description": null, "_repopath": "tensorflow/tensorflow", "_reponame": "tensorflow", - "_stars": 169543, - "_forks": 87524, - "_watches": 7795, + "_stars": 169751, + "_forks": 87558, + "_watches": 7793, "_topics": [ "tensorflow", "machine-learning", @@ -142,11 +218,33 @@ "_homepage": "https://tensorflow.org", "_description": "tensorflow: An Open Source Machine Learning Framework for Everyone", "_organization": "tensorflow", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2015-11-07T00:00:00.000Z", - "_age_weeks": 369, - "_stars_per_week": 458.76, + "_age_weeks": 371, + "_stars_per_week": 457.2, + "_pop_contributor_count": 4198, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "googletensorflow" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 312.65, + "_pop_updated_issues_count": 2393, + "_pop_closed_issues_count": 1430, + "_pop_created_since_days": 87, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 32, + "_pop_recent_releases_estimated_tags": 26, + "_pop_recent_releases_adjusted_count": 32, + "_pop_issue_count": 2393.0, + "_pop_comment_count": 6694.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 175460, + "_pop_score": 92.8, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tensorflow/tensorflow/master/README.md", "_readme_localurl": "tensorflow~tensorflow~README.md", @@ -163,9 +261,9 @@ "description": null, "_repopath": "thealgorithms/python", "_reponame": "Python", - "_stars": 149666, - "_forks": 38442, - "_watches": 5936, + "_stars": 150017, + "_forks": 38545, + "_watches": 5937, "_topics": [ "python", "algorithm", @@ -186,11 +284,35 @@ "_homepage": "https://the-algorithms.com/", "_description": "Python: All Algorithms implemented in Python", "_organization": "thealgorithms", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2016-07-16T00:00:00.000Z", - "_age_weeks": 333, - "_stars_per_week": 448.68, + "_age_weeks": 335, + "_stars_per_week": 447.43, + "_pop_contributor_count": 973, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "christianclauss", + "fossasiagojekthealgorithms", + "thealgorithmsgojek", + "universit\u00e4tpassau" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.31, + "_pop_updated_issues_count": 1926, + "_pop_closed_issues_count": 1831, + "_pop_created_since_days": 78, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1926.0, + "_pop_comment_count": 2356.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 3296, + "_pop_score": 69.3, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/thealgorithms/python/master/README.md", "_readme_localurl": "thealgorithms~python~README.md", @@ -216,9 +338,9 @@ "description": null, "_repopath": "huggingface/transformers", "_reponame": "transformers", - "_stars": 75566, - "_forks": 17147, - "_watches": 860, + "_stars": 76398, + "_forks": 17261, + "_watches": 866, "_topics": [ "nlp", "natural-language-processing", @@ -245,11 +367,33 @@ "_homepage": "https://huggingface.co/transformers", "_description": "\ud83e\udd17 Transformers: State-of-the-art Machine Learning for Pytorch, TensorFlow, and JAX.", "_organization": "huggingface", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2018-10-29T00:00:00.000Z", - "_age_weeks": 214, - "_stars_per_week": 352.64, + "_age_weeks": 216, + "_stars_per_week": 353.69, + "_pop_contributor_count": 1650, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "huggingface", + "stasosphereonline" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 56.79, + "_pop_updated_issues_count": 2247, + "_pop_closed_issues_count": 1896, + "_pop_created_since_days": 50, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 24, + "_pop_recent_releases_estimated_tags": 28, + "_pop_recent_releases_adjusted_count": 24, + "_pop_issue_count": 2248.0, + "_pop_comment_count": 6558.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.9, + "_pop_dependents_count": 10695, + "_pop_score": 81.11, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/huggingface/transformers/master/README.md", "_readme_localurl": "huggingface~transformers~README.md", @@ -275,9 +419,9 @@ "description": null, "_repopath": "django/django", "_reponame": "django", - "_stars": 67603, - "_forks": 28283, - "_watches": 2267, + "_stars": 67753, + "_forks": 28322, + "_watches": 2271, "_topics": [ "python", "django", @@ -293,11 +437,32 @@ "_homepage": "https://www.djangoproject.com/", "_description": "django: The Web framework for perfectionists with deadlines.", "_organization": "django", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2012-04-28T00:00:00.000Z", - "_age_weeks": 553, - "_stars_per_week": 122.12, + "_age_weeks": 555, + "_stars_per_week": 122.01, + "_pop_contributor_count": 2842, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "2xlibre.nets\u00e0rl" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 18.12, + "_pop_updated_issues_count": 377, + "_pop_closed_issues_count": 307, + "_pop_created_since_days": 130, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 34, + "_pop_recent_releases_adjusted_count": 34, + "_pop_issue_count": 377.0, + "_pop_comment_count": 957.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 61720, + "_pop_score": 79.49, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/django/django/master/README.rst", "_readme_localurl": "django~django~README.rst", @@ -323,9 +488,9 @@ "description": null, "_repopath": "pallets/flask", "_reponame": "flask", - "_stars": 61266, - "_forks": 15345, - "_watches": 2147, + "_stars": 61341, + "_forks": 15349, + "_watches": 2146, "_topics": [ "python", "flask", @@ -339,11 +504,33 @@ "_homepage": "https://flask.palletsprojects.com", "_description": "flask: The Python micro framework for building web applications.", "_organization": "pallets", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-25T00:00:00.000Z", "_created_at": "2010-04-06T00:00:00.000Z", - "_age_weeks": 661, - "_stars_per_week": 92.67, + "_age_weeks": 662, + "_stars_per_week": 92.54, + "_pop_contributor_count": 800, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "getsentry", + "sentry" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.71, + "_pop_updated_issues_count": 76, + "_pop_closed_issues_count": 65, + "_pop_created_since_days": 155, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 76.0, + "_pop_comment_count": 61.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 8741, + "_pop_score": 65.15, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pallets/flask/master/README.rst", "_readme_localurl": "pallets~flask~README.rst", @@ -366,8 +553,8 @@ "description": null, "_repopath": "pytorch/pytorch", "_reponame": "pytorch", - "_stars": 60819, - "_forks": 16942, + "_stars": 61054, + "_forks": 17007, "_watches": 1624, "_topics": [ "neural-network", @@ -383,11 +570,32 @@ "_homepage": "https://pytorch.org", "_description": "pytorch: Tensors and Dynamic neural networks in Python with strong GPU acceleration", "_organization": "pytorch", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2016-08-13T00:00:00.000Z", - "_age_weeks": 329, - "_stars_per_week": 184.54, + "_age_weeks": 331, + "_stars_per_week": 184.29, + "_pop_contributor_count": 3755, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebookairesearch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 216.04, + "_pop_updated_issues_count": 8263, + "_pop_closed_issues_count": 5684, + "_pop_created_since_days": 77, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 120, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 8258.0, + "_pop_comment_count": 34479.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 4.2, + "_pop_dependents_count": 961352, + "_pop_score": 91.48, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pytorch/pytorch/master/README.md", "_readme_localurl": "pytorch~pytorch~README.md", @@ -416,9 +624,9 @@ "description": null, "_repopath": "keras-team/keras", "_reponame": "keras", - "_stars": 56789, - "_forks": 19224, - "_watches": 1937, + "_stars": 56861, + "_forks": 19228, + "_watches": 1936, "_topics": [ "deep-learning", "tensorflow", @@ -431,11 +639,33 @@ "_homepage": "http://keras.io/", "_description": "keras: Deep Learning for humans", "_organization": "keras-team", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2015-03-28T00:00:00.000Z", - "_age_weeks": 401, - "_stars_per_week": 141.42, + "_age_weeks": 403, + "_stars_per_week": 140.99, + "_pop_contributor_count": 1133, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "sktelecom" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 20.58, + "_pop_updated_issues_count": 486, + "_pop_closed_issues_count": 353, + "_pop_created_since_days": 94, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 486.0, + "_pop_comment_count": 894.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 3088, + "_pop_score": 73.04, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/keras-team/keras/master/README.md", "_readme_localurl": "keras-team~keras~README.md", @@ -458,8 +688,8 @@ "description": null, "_repopath": "home-assistant/core", "_reponame": "core", - "_stars": 56473, - "_forks": 20808, + "_stars": 56762, + "_forks": 20995, "_watches": 1345, "_topics": [ "python", @@ -475,11 +705,33 @@ "_homepage": "https://www.home-assistant.io", "_description": "core: :house_with_garden: Open source home automation that puts local control and privacy first.", "_organization": "home-assistant", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2013-09-17T00:00:00.000Z", - "_age_weeks": 481, - "_stars_per_week": 117.37, + "_age_weeks": 482, + "_stars_per_week": 117.55, + "_pop_contributor_count": 3475, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "home-assistant,nabucasa", + "home-assistanthassio-addons" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 241.85, + "_pop_updated_issues_count": 7960, + "_pop_closed_issues_count": 5914, + "_pop_created_since_days": 113, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 173, + "_pop_recent_releases_estimated_tags": 111, + "_pop_recent_releases_adjusted_count": 173, + "_pop_issue_count": 7960.0, + "_pop_comment_count": 23769.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 3239, + "_pop_score": 86.91, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/home-assistant/core/master/README.rst", "_readme_localurl": "home-assistant~core~README.rst", @@ -496,50 +748,6 @@ "home-assistant~core~pyproject.toml" ] }, - { - "index": 78, - "category": "ml", - "githuburl": "https://github.com/scikit-learn/scikit-learn", - "featured": null, - "links": null, - "description": null, - "_repopath": "scikit-learn/scikit-learn", - "_reponame": "scikit-learn", - "_stars": 52254, - "_forks": 23758, - "_watches": 2170, - "_topics": [ - "machine-learning", - "python", - "statistics", - "data-science", - "data-analysis" - ], - "_language": "Python", - "_homepage": "https://scikit-learn.org", - "_description": "scikit-learn: machine learning in Python", - "_organization": "scikit-learn", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2010-08-17T00:00:00.000Z", - "_age_weeks": 642, - "_stars_per_week": 81.37, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/scikit-learn/scikit-learn/master/README.rst", - "_readme_localurl": "scikit-learn~scikit-learn~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/scikit-learn/scikit-learn/master/setup.py", - "https://raw.githubusercontent.com/scikit-learn/scikit-learn/master/pyproject.toml" - ], - "_requirements_localurls": [ - "scikit-learn~scikit-learn~setup.py", - "scikit-learn~scikit-learn~pyproject.toml" - ] - }, { "index": 135, "category": "web", @@ -549,9 +757,9 @@ "description": null, "_repopath": "tiangolo/fastapi", "_reponame": "fastapi", - "_stars": 52245, - "_forks": 4281, - "_watches": 601, + "_stars": 52565, + "_forks": 4303, + "_watches": 603, "_topics": [ "python", "json", @@ -578,11 +786,30 @@ "_homepage": "https://fastapi.tiangolo.com/", "_description": "FastAPI framework, high performance, easy to learn, fast to code, ready for production", "_organization": "tiangolo", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2018-12-08T00:00:00.000Z", - "_age_weeks": 208, - "_stars_per_week": 250.49, + "_age_weeks": 210, + "_stars_per_week": 249.97, + "_pop_contributor_count": 401, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 12.75, + "_pop_updated_issues_count": 1366, + "_pop_closed_issues_count": 887, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 25, + "_pop_recent_releases_estimated_tags": 35, + "_pop_recent_releases_adjusted_count": 25, + "_pop_issue_count": 1366.0, + "_pop_comment_count": 3158.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 4316, + "_pop_score": 66.19, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tiangolo/fastapi/master/README.md", "_readme_localurl": "tiangolo~fastapi~README.md", @@ -596,6 +823,74 @@ "tiangolo~fastapi~pyproject.toml" ] }, + { + "index": 78, + "category": "ml", + "githuburl": "https://github.com/scikit-learn/scikit-learn", + "featured": null, + "links": null, + "description": null, + "_repopath": "scikit-learn/scikit-learn", + "_reponame": "scikit-learn", + "_stars": 52354, + "_forks": 23790, + "_watches": 2167, + "_topics": [ + "machine-learning", + "python", + "statistics", + "data-science", + "data-analysis" + ], + "_language": "Python", + "_homepage": "https://scikit-learn.org", + "_description": "scikit-learn: machine learning in Python", + "_organization": "scikit-learn", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2010-08-17T00:00:00.000Z", + "_age_weeks": 643, + "_stars_per_week": 81.31, + "_pop_contributor_count": 2806, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "inria", + "meta", + "microsoft", + "uli\u00e8ge" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 31.21, + "_pop_updated_issues_count": 1080, + "_pop_closed_issues_count": 710, + "_pop_created_since_days": 150, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 1079.0, + "_pop_comment_count": 2656.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 36390, + "_pop_score": 84.49, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/scikit-learn/scikit-learn/master/README.rst", + "_readme_localurl": "scikit-learn~scikit-learn~README.rst", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/scikit-learn/scikit-learn/master/setup.py", + "https://raw.githubusercontent.com/scikit-learn/scikit-learn/master/pyproject.toml" + ], + "_requirements_localurls": [ + "scikit-learn~scikit-learn~setup.py", + "scikit-learn~scikit-learn~pyproject.toml" + ] + }, { "index": 399, "category": "util", @@ -605,19 +900,43 @@ "description": null, "_repopath": "python/cpython", "_reponame": "cpython", - "_stars": 49336, - "_forks": 25142, - "_watches": 1461, + "_stars": 49550, + "_forks": 25219, + "_watches": 1465, "_topics": [], "_language": "Python", "_homepage": "https://www.python.org/", "_description": "cpython: The Python programming language", "_organization": "python", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2017-02-10T00:00:00.000Z", - "_age_weeks": 303, - "_stars_per_week": 162.44, + "_age_weeks": 305, + "_stars_per_week": 162.23, + "_pop_contributor_count": 2294, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "fzj\u00fclich", + "keepertech", + "microsoft", + "redhatofficial" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 68.56, + "_pop_updated_issues_count": 4833, + "_pop_closed_issues_count": 3383, + "_pop_created_since_days": 71, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 91, + "_pop_recent_releases_adjusted_count": 91, + "_pop_issue_count": 4833.0, + "_pop_comment_count": 11415.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 11228, + "_pop_score": 86.26, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/python/cpython/master/README.rst", "_readme_localurl": "python~cpython~README.rst", @@ -634,9 +953,9 @@ "description": null, "_repopath": "psf/requests", "_reponame": "requests", - "_stars": 48656, - "_forks": 8921, - "_watches": 1360, + "_stars": 48718, + "_forks": 8929, + "_watches": 1362, "_topics": [ "python", "http", @@ -651,11 +970,34 @@ "_homepage": "https://requests.readthedocs.io/en/latest/", "_description": "requests: A simple, yet elegant, HTTP library.", "_organization": "psf", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-21T00:00:00.000Z", "_created_at": "2011-02-13T00:00:00.000Z", - "_age_weeks": 616, - "_stars_per_week": 78.93, + "_age_weeks": 618, + "_stars_per_week": 78.81, + "_pop_contributor_count": 723, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazonwebservices", + "apple", + "tableau&salesforce" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.87, + "_pop_updated_issues_count": 89, + "_pop_closed_issues_count": 56, + "_pop_created_since_days": 144, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 89.0, + "_pop_comment_count": 124.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 9183, + "_pop_score": 64.97, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/psf/requests/master/README.md", "_readme_localurl": "psf~requests~README.md", @@ -681,9 +1023,9 @@ "description": null, "_repopath": "scrapy/scrapy", "_reponame": "scrapy", - "_stars": 45297, - "_forks": 9798, - "_watches": 1787, + "_stars": 45399, + "_forks": 9807, + "_watches": 1789, "_topics": [ "python", "scraping", @@ -696,11 +1038,34 @@ "_homepage": "https://scrapy.org", "_description": "Scrapy, a fast high-level web crawling & scraping framework for Python.", "_organization": "scrapy", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2010-02-22T00:00:00.000Z", - "_age_weeks": 667, - "_stars_per_week": 67.88, + "_age_weeks": 669, + "_stars_per_week": 67.86, + "_pop_contributor_count": 569, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "superfly", + "zytedata(formerlyscrapinghub)", + "zytedata,scrapinghub" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.71, + "_pop_updated_issues_count": 259, + "_pop_closed_issues_count": 190, + "_pop_created_since_days": 156, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 260.0, + "_pop_comment_count": 538.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 1159, + "_pop_score": 67.91, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/scrapy/scrapy/master/README.rst", "_readme_localurl": "scrapy~scrapy~README.rst", @@ -723,9 +1088,9 @@ "description": null, "_repopath": "deepfakes/faceswap", "_reponame": "faceswap", - "_stars": 42917, - "_forks": 12004, - "_watches": 1504, + "_stars": 42994, + "_forks": 12012, + "_watches": 1502, "_topics": [ "faceswap", "face-swap", @@ -746,11 +1111,30 @@ "_homepage": "https://www.faceswap.dev", "_description": "faceswap: Deepfakes Software For All", "_organization": "deepfakes", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-22T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2017-12-19T00:00:00.000Z", - "_age_weeks": 259, - "_stars_per_week": 165.61, + "_age_weeks": 260, + "_stars_per_week": 164.82, + "_pop_contributor_count": 94, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.87, + "_pop_updated_issues_count": 21, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 61, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 21.0, + "_pop_comment_count": 17.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 1192, + "_pop_score": 46.16, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/deepfakes/faceswap/master/README.md", "_readme_localurl": "deepfakes~faceswap~README.md", @@ -773,8 +1157,8 @@ "description": null, "_repopath": "willmcgugan/rich", "_reponame": "rich", - "_stars": 40996, - "_forks": 1434, + "_stars": 41137, + "_forks": 1447, "_watches": 541, "_topics": [ "python", @@ -798,11 +1182,33 @@ "_homepage": "https://rich.readthedocs.io/en/latest/", "_description": "Rich is a Python library for rich text and beautiful formatting in the terminal.", "_organization": "willmcgugan", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-12-04T00:00:00.000Z", "_created_at": "2019-11-10T00:00:00.000Z", - "_age_weeks": 160, - "_stars_per_week": 255.54, + "_age_weeks": 162, + "_stars_per_week": 253.71, + "_pop_contributor_count": 203, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "davep.org", + "textualize" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 13.44, + "_pop_updated_issues_count": 197, + "_pop_closed_issues_count": 147, + "_pop_created_since_days": 38, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 17, + "_pop_recent_releases_estimated_tags": 45, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 197.0, + "_pop_comment_count": 392.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 3007, + "_pop_score": 64.9, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/willmcgugan/rich/master/README.md", "_readme_localurl": "willmcgugan~rich~README.md", @@ -828,9 +1234,9 @@ "description": null, "_repopath": "sherlock-project/sherlock", "_reponame": "sherlock", - "_stars": 37642, - "_forks": 4443, - "_watches": 962, + "_stars": 37843, + "_forks": 4466, + "_watches": 963, "_topics": [ "osint", "reconnaissance", @@ -851,11 +1257,32 @@ "_homepage": "http://sherlock-project.github.io", "_description": "sherlock: \ud83d\udd0e Hunt down social media accounts by username across social networks", "_organization": "sherlock-project", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-10-21T00:00:00.000Z", "_created_at": "2018-12-24T00:00:00.000Z", - "_age_weeks": 206, - "_stars_per_week": 182.48, + "_age_weeks": 208, + "_stars_per_week": 181.94, + "_pop_contributor_count": 209, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "paackeng" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.25, + "_pop_updated_issues_count": 194, + "_pop_closed_issues_count": 117, + "_pop_created_since_days": 48, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 194.0, + "_pop_comment_count": 179.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 415, + "_pop_score": 47.96, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/sherlock-project/sherlock/master/README.md", "_readme_localurl": "sherlock-project~sherlock~README.md", @@ -869,6 +1296,62 @@ "sherlock-project~sherlock~requirements.txt" ] }, + { + "index": 736, + "category": "diffusion", + "githuburl": "https://github.com/compvis/stable-diffusion", + "featured": null, + "links": null, + "description": null, + "_repopath": "compvis/stable-diffusion", + "_reponame": "stable-diffusion", + "_stars": 37519, + "_forks": 5790, + "_watches": 355, + "_topics": [], + "_language": "Jupyter Notebook", + "_homepage": "https://ommer-lab.com/research/latent-diffusion-models/", + "_description": "stable-diffusion: A latent text-to-image diffusion model", + "_organization": "compvis", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-11-16T00:00:00.000Z", + "_created_at": "2022-08-10T00:00:00.000Z", + "_age_weeks": 18, + "_stars_per_week": 2004.83, + "_pop_contributor_count": 8, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "runwayml" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.4, + "_pop_updated_issues_count": 324, + "_pop_closed_issues_count": 77, + "_pop_created_since_days": 4, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 324.0, + "_pop_comment_count": 729.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 53, + "_pop_score": 31.38, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/compvis/stable-diffusion/master/README.md", + "_readme_localurl": "compvis~stable-diffusion~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/compvis/stable-diffusion/master/setup.py" + ], + "_requirements_localurls": [ + "compvis~stable-diffusion~setup.py" + ] + }, { "index": 432, "category": "study", @@ -878,8 +1361,8 @@ "description": null, "_repopath": "jakevdp/pythondatasciencehandbook", "_reponame": "PythonDataScienceHandbook", - "_stars": 36745, - "_forks": 16232, + "_stars": 36840, + "_forks": 16265, "_watches": 1768, "_topics": [ "scikit-learn", @@ -893,11 +1376,35 @@ "_homepage": "http://jakevdp.github.io/PythonDataScienceHandbook", "_description": "PythonDataScienceHandbook: Python Data Science Handbook: full text in Jupyter Notebooks", "_organization": "jakevdp", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2018-11-30T00:00:00.000Z", "_created_at": "2016-08-10T00:00:00.000Z", - "_age_weeks": 330, - "_stars_per_week": 111.35, + "_age_weeks": 331, + "_stars_per_week": 111.06, + "_pop_contributor_count": 17, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "coiled", + "google", + "kvantify", + "quansight" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 19, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 77, + "_pop_updated_since_days": 49, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 19.0, + "_pop_comment_count": 17.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 172, + "_pop_score": 32.72, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jakevdp/pythondatasciencehandbook/master/README.md", "_readme_localurl": "jakevdp~pythondatasciencehandbook~README.md", @@ -911,41 +1418,6 @@ "jakevdp~pythondatasciencehandbook~requirements.txt" ] }, - { - "index": 736, - "category": "diffusion", - "githuburl": "https://github.com/compvis/stable-diffusion", - "featured": null, - "links": null, - "description": null, - "_repopath": "compvis/stable-diffusion", - "_reponame": "stable-diffusion", - "_stars": 36523, - "_forks": 5617, - "_watches": 348, - "_topics": [], - "_language": "Jupyter Notebook", - "_homepage": "https://ommer-lab.com/research/latent-diffusion-models/", - "_description": "stable-diffusion: A latent text-to-image diffusion model", - "_organization": "compvis", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-16T00:00:00.000Z", - "_created_at": "2022-08-10T00:00:00.000Z", - "_age_weeks": 17, - "_stars_per_week": 2148.41, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/compvis/stable-diffusion/master/README.md", - "_readme_localurl": "compvis~stable-diffusion~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/compvis/stable-diffusion/master/setup.py" - ], - "_requirements_localurls": [ - "compvis~stable-diffusion~setup.py" - ] - }, { "index": 59, "category": "pandas", @@ -955,9 +1427,9 @@ "description": null, "_repopath": "pandas-dev/pandas", "_reponame": "pandas", - "_stars": 36168, - "_forks": 15473, - "_watches": 1118, + "_stars": 36289, + "_forks": 15523, + "_watches": 1119, "_topics": [ "data-analysis", "pandas", @@ -970,11 +1442,33 @@ "_homepage": "https://pandas.pydata.org", "_description": "pandas: Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more", "_organization": "pandas-dev", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2010-08-24T00:00:00.000Z", - "_age_weeks": 641, - "_stars_per_week": 56.41, + "_age_weeks": 642, + "_stars_per_week": 56.45, + "_pop_contributor_count": 3189, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "rapidsai", + "voltrondata" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 45.63, + "_pop_updated_issues_count": 4619, + "_pop_closed_issues_count": 3022, + "_pop_created_since_days": 150, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 4619.0, + "_pop_comment_count": 5418.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 4975, + "_pop_score": 80.24, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pandas-dev/pandas/master/README.md", "_readme_localurl": "pandas-dev~pandas~README.md", @@ -1000,9 +1494,9 @@ "description": null, "_repopath": "iperov/deepfacelab", "_reponame": "DeepFaceLab", - "_stars": 36022, - "_forks": 8114, - "_watches": 1049, + "_stars": 36190, + "_forks": 8167, + "_watches": 1044, "_topics": [ "faceswap", "face-swap", @@ -1024,11 +1518,30 @@ "_homepage": "", "_description": "DeepFaceLab is the leading software for creating deepfakes.", "_organization": "iperov", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-10-31T00:00:00.000Z", "_created_at": "2018-06-04T00:00:00.000Z", - "_age_weeks": 235, - "_stars_per_week": 153.1, + "_age_weeks": 237, + "_stars_per_week": 152.7, + "_pop_contributor_count": 21, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.19, + "_pop_updated_issues_count": 63, + "_pop_closed_issues_count": 12, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 63.0, + "_pop_comment_count": 53.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 333, + "_pop_score": 33.57, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/iperov/deepfacelab/master/README.md", "_readme_localurl": "iperov~deepfacelab~README.md", @@ -1045,9 +1558,9 @@ "description": null, "_repopath": "psf/black", "_reponame": "black", - "_stars": 30382, - "_forks": 1946, - "_watches": 226, + "_stars": 30470, + "_forks": 1949, + "_watches": 227, "_topics": [ "python", "code", @@ -1063,11 +1576,35 @@ "_homepage": "https://black.readthedocs.io/en/stable/", "_description": "black: The uncompromising Python code formatter", "_organization": "psf", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-21T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2018-03-14T00:00:00.000Z", - "_age_weeks": 247, - "_stars_per_week": 123.0, + "_age_weeks": 248, + "_stars_per_week": 122.51, + "_pop_contributor_count": 350, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "clc", + "facebook", + "psf", + "quora" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.35, + "_pop_updated_issues_count": 295, + "_pop_closed_issues_count": 176, + "_pop_created_since_days": 58, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 299.0, + "_pop_comment_count": 585.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 28929, + "_pop_score": 71.53, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/psf/black/master/README.md", "_readme_localurl": "psf~black~README.md", @@ -1090,9 +1627,9 @@ "description": null, "_repopath": "pyenv/pyenv", "_reponame": "pyenv", - "_stars": 29759, - "_forks": 2642, - "_watches": 382, + "_stars": 29882, + "_forks": 2655, + "_watches": 380, "_topics": [ "python", "shell" @@ -1101,11 +1638,32 @@ "_homepage": "", "_description": "pyenv: Simple Python version management", "_organization": "pyenv", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2012-08-31T00:00:00.000Z", - "_age_weeks": 535, - "_stars_per_week": 55.55, + "_age_weeks": 537, + "_stars_per_week": 55.6, + "_pop_contributor_count": 402, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "treasuredata" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.25, + "_pop_updated_issues_count": 133, + "_pop_closed_issues_count": 117, + "_pop_created_since_days": 125, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 133.0, + "_pop_comment_count": 307.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 1883, + "_pop_score": 64.04, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pyenv/pyenv/master/README.md", "_readme_localurl": "pyenv~pyenv~README.md", @@ -1122,19 +1680,38 @@ "description": null, "_repopath": "openai/gym", "_reponame": "gym", - "_stars": 29220, - "_forks": 8087, - "_watches": 992, + "_stars": 29439, + "_forks": 8120, + "_watches": 999, "_topics": [], "_language": "Python", "_homepage": "https://www.gymlibrary.dev", "_description": "gym: A toolkit for developing and comparing reinforcement learning algorithms.", "_organization": "openai", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-10-25T00:00:00.000Z", "_created_at": "2016-04-27T00:00:00.000Z", - "_age_weeks": 345, - "_stars_per_week": 84.7, + "_age_weeks": 346, + "_stars_per_week": 84.91, + "_pop_contributor_count": 384, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.62, + "_pop_updated_issues_count": 113, + "_pop_closed_issues_count": 83, + "_pop_created_since_days": 81, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 113.0, + "_pop_comment_count": 261.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 7204, + "_pop_score": 59.54, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/openai/gym/master/README.md", "_readme_localurl": "openai~gym~README.md", @@ -1163,9 +1740,9 @@ "description": null, "_repopath": "apache/airflow", "_reponame": "airflow", - "_stars": 28369, - "_forks": 11636, - "_watches": 766, + "_stars": 28488, + "_forks": 11690, + "_watches": 764, "_topics": [ "airflow", "apache", @@ -1179,11 +1756,36 @@ "_homepage": "https://airflow.apache.org/", "_description": "airflow: Apache Airflow - A platform to programmatically author, schedule, and monitor workflows", "_organization": "apache", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2015-04-13T00:00:00.000Z", - "_age_weeks": 399, - "_stars_per_week": 71.05, + "_age_weeks": 401, + "_stars_per_week": 71.04, + "_pop_contributor_count": 2662, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "apachesoftwarefoundation", + "astronomer", + "astronomer.io", + "preset-io", + "snowflakedb" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 70.71, + "_pop_updated_issues_count": 2090, + "_pop_closed_issues_count": 1667, + "_pop_created_since_days": 94, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 17, + "_pop_recent_releases_estimated_tags": 337, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 2091.0, + "_pop_comment_count": 4975.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 13010, + "_pop_score": 86.77, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/apache/airflow/master/README.md", "_readme_localurl": "apache~airflow~README.md", @@ -1209,9 +1811,9 @@ "description": null, "_repopath": "mingrammer/diagrams", "_reponame": "diagrams", - "_stars": 27356, - "_forks": 1669, - "_watches": 348, + "_stars": 27457, + "_forks": 1675, + "_watches": 350, "_topics": [ "diagram", "diagram-as-code", @@ -1222,11 +1824,33 @@ "_homepage": "https://diagrams.mingrammer.com", "_description": "diagrams: :art: Diagram as Code for prototyping cloud system architectures", "_organization": "mingrammer", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-27T00:00:00.000Z", "_created_at": "2020-02-02T00:00:00.000Z", - "_age_weeks": 148, - "_stars_per_week": 184.3, + "_age_weeks": 150, + "_stars_per_week": 182.87, + "_pop_contributor_count": 123, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "daangn", + "luxeys" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.17, + "_pop_updated_issues_count": 165, + "_pop_closed_issues_count": 63, + "_pop_created_since_days": 35, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 165.0, + "_pop_comment_count": 168.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 59, + "_pop_score": 46.67, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/mingrammer/diagrams/master/README.md", "_readme_localurl": "mingrammer~diagrams~README.md", @@ -1249,9 +1873,9 @@ "description": null, "_repopath": "ccxt/ccxt", "_reponame": "ccxt", - "_stars": 26569, - "_forks": 6498, - "_watches": 929, + "_stars": 26668, + "_forks": 6520, + "_watches": 930, "_topics": [ "altcoin", "api", @@ -1277,11 +1901,32 @@ "_homepage": "", "_description": "ccxt: A JavaScript / Python / PHP cryptocurrency trading API with support for more than 100 bitcoin/altcoin exchanges", "_organization": "ccxt", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2017-05-14T00:00:00.000Z", - "_age_weeks": 290, - "_stars_per_week": 91.48, + "_age_weeks": 292, + "_stars_per_week": 91.28, + "_pop_contributor_count": 709, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ccxt" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 235.92, + "_pop_updated_issues_count": 1408, + "_pop_closed_issues_count": 1047, + "_pop_created_since_days": 68, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 142, + "_pop_recent_releases_adjusted_count": 142, + "_pop_issue_count": 1408.0, + "_pop_comment_count": 2198.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 37950, + "_pop_score": 79.89, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ccxt/ccxt/master/README.md", "_readme_localurl": "ccxt~ccxt~README.md", @@ -1289,6 +1934,60 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, + { + "index": 838, + "category": "diffusion", + "githuburl": "https://github.com/automatic1111/stable-diffusion-webui", + "featured": null, + "links": null, + "description": null, + "_repopath": "automatic1111/stable-diffusion-webui", + "_reponame": "stable-diffusion-webui", + "_stars": 25507, + "_forks": 4618, + "_watches": 247, + "_topics": [], + "_language": "Python", + "_homepage": null, + "_description": "stable-diffusion-webui: Stable Diffusion web UI", + "_organization": "automatic1111", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-10T00:00:00.000Z", + "_created_at": "2022-08-22T00:00:00.000Z", + "_age_weeks": 17, + "_stars_per_week": 1500.41, + "_pop_contributor_count": 278, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 42.46, + "_pop_updated_issues_count": 3672, + "_pop_closed_issues_count": 2189, + "_pop_created_since_days": 4, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 3672.0, + "_pop_comment_count": 13755.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.7, + "_pop_dependents_count": 863, + "_pop_score": 55.6, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/automatic1111/stable-diffusion-webui/master/README.md", + "_readme_localurl": "automatic1111~stable-diffusion-webui~README.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/automatic1111/stable-diffusion-webui/master/requirements.txt" + ], + "_requirements_localurls": [ + "automatic1111~stable-diffusion-webui~requirements.txt" + ] + }, { "index": 677, "category": "ml-dl", @@ -1298,7 +1997,7 @@ "description": null, "_repopath": "facebookresearch/detectron", "_reponame": "Detectron", - "_stars": 25445, + "_stars": 25464, "_forks": 5480, "_watches": 959, "_topics": [], @@ -1306,11 +2005,33 @@ "_homepage": "", "_description": "Detectron: FAIR's research platform for object detection research, implementing popular algorithms like Mask R-CNN and RetinaNet.", "_organization": "facebookresearch", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2021-03-27T00:00:00.000Z", "_created_at": "2017-10-05T00:00:00.000Z", - "_age_weeks": 269, - "_stars_per_week": 94.29, + "_age_weeks": 271, + "_stars_per_week": 93.77, + "_pop_contributor_count": 40, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebook", + "ucberkeley" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 63, + "_pop_updated_since_days": 21, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 11.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 865, + "_pop_score": 34.18, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/detectron/master/README.md", "_readme_localurl": "facebookresearch~detectron~README.md", @@ -1336,9 +2057,9 @@ "description": null, "_repopath": "tencentarc/gfpgan", "_reponame": "GFPGAN", - "_stars": 24990, - "_forks": 3771, - "_watches": 368, + "_stars": 25179, + "_forks": 3809, + "_watches": 373, "_topics": [ "pytorch", "gan", @@ -1352,11 +2073,33 @@ "_homepage": "", "_description": "GFPGAN aims at developing Practical Algorithms for Real-world Face Restoration.", "_organization": "tencentarc", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-09-16T00:00:00.000Z", "_created_at": "2021-03-19T00:00:00.000Z", - "_age_weeks": 89, - "_stars_per_week": 278.55, + "_age_weeks": 91, + "_stars_per_week": 275.4, + "_pop_contributor_count": 11, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "huggingface", + "tencent" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.6, + "_pop_updated_issues_count": 59, + "_pop_closed_issues_count": 16, + "_pop_created_since_days": 21, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 58.0, + "_pop_comment_count": 54.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 11, + "_pop_score": 32.67, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tencentarc/gfpgan/master/README.md", "_readme_localurl": "tencentarc~gfpgan~README.md", @@ -1382,9 +2125,9 @@ "description": null, "_repopath": "explosion/spacy", "_reponame": "spaCy", - "_stars": 24716, - "_forks": 3984, - "_watches": 547, + "_stars": 24789, + "_forks": 3988, + "_watches": 549, "_topics": [ "natural-language-processing", "data-science", @@ -1408,11 +2151,33 @@ "_homepage": "https://spacy.io", "_description": "spaCy: \ud83d\udcab Industrial-strength Natural Language Processing (NLP) in Python", "_organization": "explosion", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2014-07-03T00:00:00.000Z", - "_age_weeks": 439, - "_stars_per_week": 56.19, + "_age_weeks": 441, + "_stars_per_week": 56.14, + "_pop_contributor_count": 710, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "explosion&oxykodit", + "founderexplosion" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 8.85, + "_pop_updated_issues_count": 356, + "_pop_closed_issues_count": 316, + "_pop_created_since_days": 103, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 19, + "_pop_recent_releases_estimated_tags": 16, + "_pop_recent_releases_adjusted_count": 19, + "_pop_issue_count": 356.0, + "_pop_comment_count": 577.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 5776, + "_pop_score": 71.79, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/explosion/spacy/master/README.md", "_readme_localurl": "explosion~spacy~README.md", @@ -1432,41 +2197,6 @@ "explosion~spacy~pyproject.toml" ] }, - { - "index": 838, - "category": "diffusion", - "githuburl": "https://github.com/automatic1111/stable-diffusion-webui", - "featured": null, - "links": null, - "description": null, - "_repopath": "automatic1111/stable-diffusion-webui", - "_reponame": "stable-diffusion-webui", - "_stars": 23958, - "_forks": 4338, - "_watches": 245, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "stable-diffusion-webui: Stable Diffusion web UI", - "_organization": "automatic1111", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", - "_created_at": "2022-08-22T00:00:00.000Z", - "_age_weeks": 15, - "_stars_per_week": 1567.35, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/automatic1111/stable-diffusion-webui/master/README.md", - "_readme_localurl": "automatic1111~stable-diffusion-webui~README.md", - "_requirements_filenames": [ - "requirements.txt" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/automatic1111/stable-diffusion-webui/master/requirements.txt" - ], - "_requirements_localurls": [ - "automatic1111~stable-diffusion-webui~requirements.txt" - ] - }, { "index": 501, "category": "ml", @@ -1476,19 +2206,38 @@ "description": null, "_repopath": "ageron/handson-ml2", "_reponame": "handson-ml2", - "_stars": 23637, - "_forks": 11425, - "_watches": 621, + "_stars": 23709, + "_forks": 11459, + "_watches": 625, "_topics": [], "_language": "Jupyter Notebook", "_homepage": null, "_description": "handson-ml2: A series of Jupyter notebooks that walk you through the fundamentals of Machine Learning and Deep Learning in Python using Scikit-Learn, Keras and TensorFlow 2.", "_organization": "ageron", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-08T00:00:00.000Z", "_created_at": "2019-01-08T00:00:00.000Z", - "_age_weeks": 204, - "_stars_per_week": 115.79, + "_age_weeks": 205, + "_stars_per_week": 115.17, + "_pop_contributor_count": 75, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.29, + "_pop_updated_issues_count": 21, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 48, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 21.0, + "_pop_comment_count": 31.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 1115, + "_pop_score": 39.81, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ageron/handson-ml2/master/README.md", "_readme_localurl": "ageron~handson-ml2~README.md", @@ -1502,42 +2251,6 @@ "ageron~handson-ml2~requirements.txt" ] }, - { - "index": 103, - "category": "ml", - "githuburl": "https://github.com/dmlc/xgboost", - "featured": null, - "links": null, - "description": null, - "_repopath": "dmlc/xgboost", - "_reponame": "xgboost", - "_stars": 23534, - "_forks": 8529, - "_watches": 931, - "_topics": [ - "gbdt", - "gbrt", - "gbm", - "distributed-systems", - "xgboost", - "machine-learning" - ], - "_language": "C++", - "_homepage": "https://xgboost.ai/", - "_description": "xgboost: Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library, for Python, R, Java, Scala, C++ and more. Runs on single machine, Hadoop, Spark, Dask, Flink and DataFlow", - "_organization": "dmlc", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2014-02-06T00:00:00.000Z", - "_age_weeks": 460, - "_stars_per_week": 51.07, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/dmlc/xgboost/master/README.md", - "_readme_localurl": "dmlc~xgboost~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 163, "category": "term", @@ -1547,8 +2260,8 @@ "description": null, "_repopath": "tqdm/tqdm", "_reponame": "tqdm", - "_stars": 23501, - "_forks": 1195, + "_stars": 23582, + "_forks": 1199, "_watches": 207, "_topics": [ "progressbar", @@ -1576,11 +2289,33 @@ "_homepage": "https://tqdm.github.io", "_description": "tqdm: A Fast, Extensible Progress Bar for Python and CLI", "_organization": "tqdm", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-09-03T00:00:00.000Z", "_created_at": "2015-06-03T00:00:00.000Z", - "_age_weeks": 392, - "_stars_per_week": 59.95, + "_age_weeks": 393, + "_stars_per_week": 59.9, + "_pop_contributor_count": 112, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "giga-consciousness-comasciencegroup-university&hospitalofli\u00e8ge", + "valence" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.52, + "_pop_updated_issues_count": 69, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 92, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 20, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 69.0, + "_pop_comment_count": 82.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 6644, + "_pop_score": 53.31, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/tqdm/tqdm/master/README.rst", "_readme_localurl": "tqdm~tqdm~README.rst", @@ -1597,6 +2332,66 @@ "tqdm~tqdm~pyproject.toml" ] }, + { + "index": 103, + "category": "ml", + "githuburl": "https://github.com/dmlc/xgboost", + "featured": null, + "links": null, + "description": null, + "_repopath": "dmlc/xgboost", + "_reponame": "xgboost", + "_stars": 23555, + "_forks": 8535, + "_watches": 931, + "_topics": [ + "gbdt", + "gbrt", + "gbm", + "distributed-systems", + "xgboost", + "machine-learning" + ], + "_language": "C++", + "_homepage": "https://xgboost.ai/", + "_description": "xgboost: Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library, for Python, R, Java, Scala, C++ and more. Runs on single machine, Hadoop, Spark, Dask, Flink and DataFlow", + "_organization": "dmlc", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2014-02-06T00:00:00.000Z", + "_age_weeks": 462, + "_stars_per_week": 50.92, + "_pop_contributor_count": 589, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazonai", + "cmu,octoml", + "els-rdlefebvresarrut", + "nvidia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 9.9, + "_pop_updated_issues_count": 464, + "_pop_closed_issues_count": 372, + "_pop_created_since_days": 108, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 464.0, + "_pop_comment_count": 840.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 1612, + "_pop_score": 71.15, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/dmlc/xgboost/master/README.md", + "_readme_localurl": "dmlc~xgboost~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 26, "category": "term", @@ -1606,7 +2401,7 @@ "description": null, "_repopath": "google/python-fire", "_reponame": "python-fire", - "_stars": 23437, + "_stars": 23487, "_forks": 1353, "_watches": 380, "_topics": [ @@ -1617,11 +2412,34 @@ "_homepage": "", "_description": "python-fire: Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object.", "_organization": "google", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-28T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2017-02-21T00:00:00.000Z", - "_age_weeks": 302, - "_stars_per_week": 77.57, + "_age_weeks": 303, + "_stars_per_week": 77.3, + "_pop_contributor_count": 55, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "googlebrain", + "syracuseuniversity" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.37, + "_pop_updated_issues_count": 48, + "_pop_closed_issues_count": 26, + "_pop_created_since_days": 71, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 48.0, + "_pop_comment_count": 43.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 114, + "_pop_score": 46.38, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google/python-fire/master/README.md", "_readme_localurl": "google~python-fire~README.md", @@ -1647,19 +2465,40 @@ "description": null, "_repopath": "facebookresearch/detectron2", "_reponame": "detectron2", - "_stars": 23038, - "_forks": 6272, + "_stars": 23127, + "_forks": 6313, "_watches": 365, "_topics": [], "_language": "Python", "_homepage": "https://detectron2.readthedocs.io/en/latest/", "_description": "Detectron2 is a platform for object detection, segmentation and other visual recognition tasks.", "_organization": "facebookresearch", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2019-09-05T00:00:00.000Z", - "_age_weeks": 169, - "_stars_per_week": 135.63, + "_age_weeks": 171, + "_stars_per_week": 134.8, + "_pop_contributor_count": 227, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebookairesearch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.67, + "_pop_updated_issues_count": 214, + "_pop_closed_issues_count": 132, + "_pop_created_since_days": 40, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 214.0, + "_pop_comment_count": 258.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 23330, + "_pop_score": 60.12, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/detectron2/master/README.md", "_readme_localurl": "facebookresearch~detectron2~README.md", @@ -1682,9 +2521,9 @@ "description": null, "_repopath": "python-poetry/poetry", "_reponame": "poetry", - "_stars": 22845, - "_forks": 1849, - "_watches": 185, + "_stars": 22961, + "_forks": 1857, + "_watches": 184, "_topics": [ "python", "dependency-manager", @@ -1696,11 +2535,30 @@ "_homepage": "https://python-poetry.org", "_description": "poetry: Python packaging and dependency management made easy", "_organization": "python-poetry", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2018-02-28T00:00:00.000Z", - "_age_weeks": 249, - "_stars_per_week": 91.75, + "_age_weeks": 250, + "_stars_per_week": 91.58, + "_pop_contributor_count": 417, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 13.08, + "_pop_updated_issues_count": 1180, + "_pop_closed_issues_count": 864, + "_pop_created_since_days": 58, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 25, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 1181.0, + "_pop_comment_count": 2846.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 2403, + "_pop_score": 64.6, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/python-poetry/poetry/master/README.md", "_readme_localurl": "python-poetry~poetry~README.md", @@ -1714,50 +2572,6 @@ "python-poetry~poetry~pyproject.toml" ] }, - { - "index": 689, - "category": "ml-dl", - "githuburl": "https://github.com/matterport/mask_rcnn", - "featured": null, - "links": null, - "description": null, - "_repopath": "matterport/mask_rcnn", - "_reponame": "Mask_RCNN", - "_stars": 22482, - "_forks": 11162, - "_watches": 599, - "_topics": [ - "mask-rcnn", - "tensorflow", - "object-detection", - "instance-segmentation", - "keras" - ], - "_language": "Python", - "_homepage": null, - "_description": "Mask_RCNN: Mask R-CNN for object detection and instance segmentation on Keras and TensorFlow", - "_organization": "matterport", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2019-03-31T00:00:00.000Z", - "_created_at": "2017-10-19T00:00:00.000Z", - "_age_weeks": 267, - "_stars_per_week": 83.93, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/matterport/mask_rcnn/master/README.md", - "_readme_localurl": "matterport~mask_rcnn~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/matterport/mask_rcnn/master/requirements.txt", - "https://raw.githubusercontent.com/matterport/mask_rcnn/master/setup.py" - ], - "_requirements_localurls": [ - "matterport~mask_rcnn~requirements.txt", - "matterport~mask_rcnn~setup.py" - ] - }, { "index": 289, "category": "ml-dl", @@ -1767,9 +2581,9 @@ "description": null, "_repopath": "rwightman/pytorch-image-models", "_reponame": "pytorch-image-models", - "_stars": 22389, - "_forks": 3729, - "_watches": 290, + "_stars": 22569, + "_forks": 3759, + "_watches": 292, "_topics": [ "pytorch", "imagenet-classifier", @@ -1796,11 +2610,34 @@ "_homepage": "https://huggingface.co/docs/timm", "_description": "pytorch-image-models: PyTorch image models, scripts, pretrained weights -- ResNet, ResNeXT, EfficientNet, EfficientNetV2, NFNet, Vision Transformer, MixNet, MobileNet-V3/V2, RegNet, DPN, CSPNet, and more", "_organization": "rwightman", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2019-02-02T00:00:00.000Z", - "_age_weeks": 200, - "_stars_per_week": 111.63, + "_age_weeks": 202, + "_stars_per_week": 111.57, + "_pop_contributor_count": 89, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "huggingface", + "independent", + "weights&biases" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.46, + "_pop_updated_issues_count": 111, + "_pop_closed_issues_count": 72, + "_pop_created_since_days": 47, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 111.0, + "_pop_comment_count": 146.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 159, + "_pop_score": 55.29, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/rwightman/pytorch-image-models/master/README.md", "_readme_localurl": "rwightman~pytorch-image-models~README.md", @@ -1817,6 +2654,73 @@ "rwightman~pytorch-image-models~setup.py" ] }, + { + "index": 689, + "category": "ml-dl", + "githuburl": "https://github.com/matterport/mask_rcnn", + "featured": null, + "links": null, + "description": null, + "_repopath": "matterport/mask_rcnn", + "_reponame": "Mask_RCNN", + "_stars": 22507, + "_forks": 11179, + "_watches": 597, + "_topics": [ + "mask-rcnn", + "tensorflow", + "object-detection", + "instance-segmentation", + "keras" + ], + "_language": "Python", + "_homepage": null, + "_description": "Mask_RCNN: Mask R-CNN for object detection and instance segmentation on Keras and TensorFlow", + "_organization": "matterport", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2019-03-31T00:00:00.000Z", + "_created_at": "2017-10-19T00:00:00.000Z", + "_age_weeks": 269, + "_stars_per_week": 83.49, + "_pop_contributor_count": 47, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "apple", + "freelance", + "grid.ai|pytorchlightning" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 89, + "_pop_closed_issues_count": 18, + "_pop_created_since_days": 63, + "_pop_updated_since_days": 46, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 89.0, + "_pop_comment_count": 107.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 1541, + "_pop_score": 41.14, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/matterport/mask_rcnn/master/README.md", + "_readme_localurl": "matterport~mask_rcnn~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/matterport/mask_rcnn/master/requirements.txt", + "https://raw.githubusercontent.com/matterport/mask_rcnn/master/setup.py" + ], + "_requirements_localurls": [ + "matterport~mask_rcnn~requirements.txt", + "matterport~mask_rcnn~setup.py" + ] + }, { "index": 550, "category": "ml", @@ -1826,8 +2730,8 @@ "description": null, "_repopath": "open-mmlab/mmdetection", "_reponame": "mmdetection", - "_stars": 22303, - "_forks": 8115, + "_stars": 22420, + "_forks": 8168, "_watches": 362, "_topics": [ "object-detection", @@ -1845,11 +2749,36 @@ "_homepage": "https://mmdetection.readthedocs.io", "_description": "mmdetection: OpenMMLab Detection Toolbox and Benchmark", "_organization": "open-mmlab", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-23T00:00:00.000Z", "_created_at": "2018-08-22T00:00:00.000Z", - "_age_weeks": 224, - "_stars_per_week": 99.57, + "_age_weeks": 225, + "_stars_per_week": 99.33, + "_pop_contributor_count": 377, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cuhk,mmlab", + "mmlab,ntu", + "nuaa", + "open-mmlab", + "ucsd" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.21, + "_pop_updated_issues_count": 876, + "_pop_closed_issues_count": 652, + "_pop_created_since_days": 53, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 16, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 16, + "_pop_issue_count": 873.0, + "_pop_comment_count": 1322.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 4620, + "_pop_score": 69.61, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/open-mmlab/mmdetection/master/README.md", "_readme_localurl": "open-mmlab~mmdetection~README.md", @@ -1875,9 +2804,9 @@ "description": null, "_repopath": "numpy/numpy", "_reponame": "numpy", - "_stars": 22137, - "_forks": 7583, - "_watches": 569, + "_stars": 22230, + "_forks": 7600, + "_watches": 571, "_topics": [ "numpy", "python", @@ -1887,11 +2816,35 @@ "_homepage": "https://numpy.org", "_description": "numpy: The fundamental package for scientific computing with Python.", "_organization": "numpy", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2010-09-13T00:00:00.000Z", - "_age_weeks": 638, - "_stars_per_week": 34.68, + "_age_weeks": 640, + "_stars_per_week": 34.73, + "_pop_contributor_count": 1556, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "mercarijp", + "quansight,openteams", + "quansightlabs", + "retired" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 29.58, + "_pop_updated_issues_count": 907, + "_pop_closed_issues_count": 655, + "_pop_created_since_days": 149, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 20, + "_pop_recent_releases_estimated_tags": 18, + "_pop_recent_releases_adjusted_count": 20, + "_pop_issue_count": 908.0, + "_pop_comment_count": 2325.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 27499, + "_pop_score": 84.17, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/numpy/numpy/master/README.md", "_readme_localurl": "numpy~numpy~README.md", @@ -1917,9 +2870,9 @@ "description": null, "_repopath": "keon/algorithms", "_reponame": "algorithms", - "_stars": 21904, - "_forks": 4420, - "_watches": 642, + "_stars": 21936, + "_forks": 4425, + "_watches": 643, "_topics": [ "algorithm", "python", @@ -1935,11 +2888,33 @@ "_homepage": "", "_description": "algorithms: Minimal examples of data structures and algorithms in Python", "_organization": "keon", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-12T00:00:00.000Z", "_created_at": "2016-11-17T00:00:00.000Z", - "_age_weeks": 315, - "_stars_per_week": 69.35, + "_age_weeks": 317, + "_stars_per_week": 69.07, + "_pop_contributor_count": 193, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "gojek", + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.37, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 74, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 11.0, + "_pop_comment_count": 4.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 74, + "_pop_score": 41.01, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/keon/algorithms/master/README.md", "_readme_localurl": "keon~algorithms~README.md", @@ -1962,9 +2937,9 @@ "description": null, "_repopath": "streamlit/streamlit", "_reponame": "streamlit", - "_stars": 21706, - "_forks": 1948, - "_watches": 283, + "_stars": 21862, + "_forks": 1957, + "_watches": 284, "_topics": [ "python", "machine-learning", @@ -1979,11 +2954,33 @@ "_homepage": "https://streamlit.io", "_description": "Streamlit \u2014 The fastest way to build data apps in Python", "_organization": "streamlit", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2019-08-24T00:00:00.000Z", - "_age_weeks": 171, - "_stars_per_week": 126.51, + "_age_weeks": 173, + "_stars_per_week": 126.16, + "_pop_contributor_count": 160, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "independent", + "streamlit" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 12.52, + "_pop_updated_issues_count": 1080, + "_pop_closed_issues_count": 630, + "_pop_created_since_days": 40, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 22, + "_pop_recent_releases_estimated_tags": 347, + "_pop_recent_releases_adjusted_count": 22, + "_pop_issue_count": 1080.0, + "_pop_comment_count": 1206.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 1546, + "_pop_score": 64.16, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/streamlit/streamlit/master/README.md", "_readme_localurl": "streamlit~streamlit~README.md", @@ -2000,8 +2997,8 @@ "description": null, "_repopath": "google/jax", "_reponame": "jax", - "_stars": 21094, - "_forks": 1969, + "_stars": 21230, + "_forks": 1987, "_watches": 288, "_topics": [ "jax" @@ -2010,11 +3007,32 @@ "_homepage": "http://jax.readthedocs.io/", "_description": "jax: Composable transformations of Python+NumPy programs: differentiate, vectorize, JIT to GPU/TPU, and more", "_organization": "google", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2018-10-25T00:00:00.000Z", - "_age_weeks": 214, - "_stars_per_week": 98.18, + "_age_weeks": 216, + "_stars_per_week": 98.03, + "_pop_contributor_count": 484, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 50.02, + "_pop_updated_issues_count": 1255, + "_pop_closed_issues_count": 952, + "_pop_created_since_days": 50, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 39, + "_pop_recent_releases_estimated_tags": 38, + "_pop_recent_releases_adjusted_count": 39, + "_pop_issue_count": 1254.0, + "_pop_comment_count": 1433.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 6513, + "_pop_score": 71.27, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google/jax/master/README.md", "_readme_localurl": "google~jax~README.md", @@ -2028,47 +3046,6 @@ "google~jax~setup.py" ] }, - { - "index": 90, - "category": "web", - "githuburl": "https://github.com/tornadoweb/tornado", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "tornadoweb/tornado", - "_reponame": "tornado", - "_stars": 20892, - "_forks": 5484, - "_watches": 1007, - "_topics": [ - "python", - "asynchronous" - ], - "_language": "Python", - "_homepage": "http://www.tornadoweb.org/", - "_description": "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.", - "_organization": "tornadoweb", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-28T00:00:00.000Z", - "_created_at": "2009-09-09T00:00:00.000Z", - "_age_weeks": 691, - "_stars_per_week": 30.23, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/tornadoweb/tornado/master/README.rst", - "_readme_localurl": "tornadoweb~tornado~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/tornadoweb/tornado/master/setup.py", - "https://raw.githubusercontent.com/tornadoweb/tornado/master/pyproject.toml" - ], - "_requirements_localurls": [ - "tornadoweb~tornado~setup.py", - "tornadoweb~tornado~pyproject.toml" - ] - }, { "index": 252, "category": "ml-dl", @@ -2078,9 +3055,9 @@ "description": null, "_repopath": "pytorchlightning/pytorch-lightning", "_reponame": "lightning", - "_stars": 20867, - "_forks": 2662, - "_watches": 229, + "_stars": 20989, + "_forks": 2683, + "_watches": 227, "_topics": [ "python", "deep-learning", @@ -2094,11 +3071,35 @@ "_homepage": "https://lightning.ai", "_description": "lightning: Build and train PyTorch models and connect them to the ML lifecycle using Lightning App templates, without handling DIY infrastructure, cost management, scaling, and other headaches.", "_organization": "pytorchlightning", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2019-03-31T00:00:00.000Z", - "_age_weeks": 192, - "_stars_per_week": 108.44, + "_age_weeks": 194, + "_stars_per_week": 108.11, + "_pop_contributor_count": 811, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "current:opentowork|previouslylightning-ai,episource", + "grid.ai|pytorchlightning", + "lightning-ai", + "lightningai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 39.56, + "_pop_updated_issues_count": 1617, + "_pop_closed_issues_count": 1237, + "_pop_created_since_days": 45, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 41, + "_pop_recent_releases_estimated_tags": 46, + "_pop_recent_releases_adjusted_count": 41, + "_pop_issue_count": 1616.0, + "_pop_comment_count": 2285.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 550, + "_pop_score": 73.04, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pytorchlightning/pytorch-lightning/master/README.md", "_readme_localurl": "pytorchlightning~pytorch-lightning~README.md", @@ -2118,6 +3119,69 @@ "pytorchlightning~pytorch-lightning~pyproject.toml" ] }, + { + "index": 90, + "category": "web", + "githuburl": "https://github.com/tornadoweb/tornado", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "tornadoweb/tornado", + "_reponame": "tornado", + "_stars": 20902, + "_forks": 5485, + "_watches": 1006, + "_topics": [ + "python", + "asynchronous" + ], + "_language": "Python", + "_homepage": "http://www.tornadoweb.org/", + "_description": "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.", + "_organization": "tornadoweb", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2009-09-09T00:00:00.000Z", + "_age_weeks": 692, + "_stars_per_week": 30.17, + "_pop_contributor_count": 432, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "healthbyro", + "mongodb" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.42, + "_pop_updated_issues_count": 39, + "_pop_closed_issues_count": 24, + "_pop_created_since_days": 162, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 39.0, + "_pop_comment_count": 62.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 879, + "_pop_score": 59.61, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/tornadoweb/tornado/master/README.rst", + "_readme_localurl": "tornadoweb~tornado~README.rst", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/tornadoweb/tornado/master/setup.py", + "https://raw.githubusercontent.com/tornadoweb/tornado/master/pyproject.toml" + ], + "_requirements_localurls": [ + "tornadoweb~tornado~setup.py", + "tornadoweb~tornado~pyproject.toml" + ] + }, { "index": 8, "category": "perf", @@ -2127,9 +3191,9 @@ "description": null, "_repopath": "celery/celery", "_reponame": "celery", - "_stars": 20619, - "_forks": 4394, - "_watches": 477, + "_stars": 20658, + "_forks": 4395, + "_watches": 476, "_topics": [ "python", "task-manager", @@ -2150,11 +3214,33 @@ "_homepage": "https://docs.celeryq.dev", "_description": "celery: Distributed Task Queue (development branch)", "_organization": "celery", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2009-04-24T00:00:00.000Z", - "_age_weeks": 710, - "_stars_per_week": 29.01, + "_age_weeks": 712, + "_stars_per_week": 29.0, + "_pop_contributor_count": 1255, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "celerypsfapache", + "robinhoodmarkets" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.23, + "_pop_updated_issues_count": 297, + "_pop_closed_issues_count": 166, + "_pop_created_since_days": 166, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 17, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 297.0, + "_pop_comment_count": 543.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 6865, + "_pop_score": 71.58, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/celery/celery/master/README.rst", "_readme_localurl": "celery~celery~README.rst", @@ -2180,9 +3266,9 @@ "description": null, "_repopath": "locustio/locust", "_reponame": "locust", - "_stars": 20265, - "_forks": 2592, - "_watches": 430, + "_stars": 20331, + "_forks": 2602, + "_watches": 431, "_topics": [ "locust", "python", @@ -2196,11 +3282,34 @@ "_homepage": "", "_description": "locust: Scalable load testing tool written in Python", "_organization": "locustio", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2011-02-17T00:00:00.000Z", - "_age_weeks": 615, - "_stars_per_week": 32.91, + "_age_weeks": 617, + "_stars_per_week": 32.92, + "_pop_contributor_count": 271, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "5m", + "heylab", + "redshirtconsultingab" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 9.37, + "_pop_updated_issues_count": 96, + "_pop_closed_issues_count": 83, + "_pop_created_since_days": 144, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 26, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 26, + "_pop_issue_count": 96.0, + "_pop_comment_count": 201.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 596, + "_pop_score": 66.4, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/locustio/locust/master/README.md", "_readme_localurl": "locustio~locust~README.md", @@ -2217,37 +3326,6 @@ "locustio~locust~pyproject.toml" ] }, - { - "index": 2, - "category": "ml-dl", - "githuburl": "https://github.com/apache/incubator-mxnet", - "featured": null, - "links": null, - "description": null, - "_repopath": "apache/incubator-mxnet", - "_reponame": "mxnet", - "_stars": 20178, - "_forks": 6877, - "_watches": 1089, - "_topics": [ - "mxnet" - ], - "_language": "C++", - "_homepage": "https://mxnet.apache.org", - "_description": "mxnet: Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler; for Python, R, Julia, Scala, Go, Javascript and more", - "_organization": "apache", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-09-26T00:00:00.000Z", - "_created_at": "2015-04-30T00:00:00.000Z", - "_age_weeks": 396, - "_stars_per_week": 50.84, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/apache/incubator-mxnet/master/README.md", - "_readme_localurl": "apache~incubator-mxnet~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 75, "category": "nlp", @@ -2257,9 +3335,9 @@ "description": null, "_repopath": "pytorch/fairseq", "_reponame": "fairseq", - "_stars": 20065, - "_forks": 5058, - "_watches": 354, + "_stars": 20311, + "_forks": 5092, + "_watches": 355, "_topics": [ "python", "pytorch", @@ -2269,11 +3347,34 @@ "_homepage": null, "_description": "fairseq: Facebook AI Research Sequence-to-Sequence Toolkit written in Python.", "_organization": "pytorch", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2017-08-29T00:00:00.000Z", - "_age_weeks": 275, - "_stars_per_week": 72.93, + "_age_weeks": 276, + "_stars_per_week": 73.36, + "_pop_contributor_count": 412, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebook", + "facebookairesearch", + "facebookresearch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.77, + "_pop_updated_issues_count": 277, + "_pop_closed_issues_count": 114, + "_pop_created_since_days": 65, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 277.0, + "_pop_comment_count": 248.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 81045, + "_pop_score": 69.01, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pytorch/fairseq/master/README.md", "_readme_localurl": "pytorch~fairseq~README.md", @@ -2290,6 +3391,62 @@ "pytorch~fairseq~pyproject.toml" ] }, + { + "index": 2, + "category": "ml-dl", + "githuburl": "https://github.com/apache/incubator-mxnet", + "featured": null, + "links": null, + "description": null, + "_repopath": "apache/incubator-mxnet", + "_reponame": "mxnet", + "_stars": 20194, + "_forks": 6876, + "_watches": 1088, + "_topics": [ + "mxnet" + ], + "_language": "C++", + "_homepage": "https://mxnet.apache.org", + "_description": "mxnet: Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler; for Python, R, Julia, Scala, Go, Javascript and more", + "_organization": "apache", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-09-26T00:00:00.000Z", + "_created_at": "2015-04-30T00:00:00.000Z", + "_age_weeks": 398, + "_stars_per_week": 50.67, + "_pop_contributor_count": 980, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazon", + "cmu,octoml", + "facebook", + "mit", + "universityofwashington" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.65, + "_pop_updated_issues_count": 95, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 93, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 95.0, + "_pop_comment_count": 53.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 1919, + "_pop_score": 61.54, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/apache/incubator-mxnet/master/README.md", + "_readme_localurl": "apache~incubator-mxnet~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 255, "category": "crypto", @@ -2299,9 +3456,9 @@ "description": null, "_repopath": "freqtrade/freqtrade", "_reponame": "freqtrade", - "_stars": 20030, - "_forks": 4243, - "_watches": 591, + "_stars": 20137, + "_forks": 4263, + "_watches": 595, "_topics": [ "python", "cryptocurrencies", @@ -2317,11 +3474,32 @@ "_homepage": "https://www.freqtrade.io", "_description": "freqtrade: Free, open source crypto trading bot", "_organization": "freqtrade", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2017-05-17T00:00:00.000Z", - "_age_weeks": 290, - "_stars_per_week": 69.07, + "_age_weeks": 291, + "_stars_per_week": 69.03, + "_pop_contributor_count": 284, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "freqtradecoredev;frizzleapps/whatsitwhatsit" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 69.62, + "_pop_updated_issues_count": 530, + "_pop_closed_issues_count": 502, + "_pop_created_since_days": 68, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 17, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 530.0, + "_pop_comment_count": 1379.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 1085, + "_pop_score": 68.41, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/freqtrade/freqtrade/master/README.md", "_readme_localurl": "freqtrade~freqtrade~README.md", @@ -2341,6 +3519,68 @@ "freqtrade~freqtrade~pyproject.toml" ] }, + { + "index": 607, + "category": "util", + "githuburl": "https://github.com/norvig/pytudes", + "featured": null, + "links": null, + "description": null, + "_repopath": "norvig/pytudes", + "_reponame": "pytudes", + "_stars": 19802, + "_forks": 2265, + "_watches": 730, + "_topics": [ + "python", + "python-3", + "programming", + "practice", + "demonstrate-skills" + ], + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "pytudes: Python programs, usually short, of considerable difficulty, to perfect particular skills.", + "_organization": "norvig", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", + "_created_at": "2017-03-01T00:00:00.000Z", + "_age_weeks": 302, + "_stars_per_week": 65.41, + "_pop_contributor_count": 44, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.38, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 71, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 5.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 17, + "_pop_score": 34.84, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/norvig/pytudes/master/README.md", + "_readme_localurl": "norvig~pytudes~README.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/norvig/pytudes/master/requirements.txt" + ], + "_requirements_localurls": [ + "norvig~pytudes~requirements.txt" + ] + }, { "index": 273, "category": "ml", @@ -2350,9 +3590,9 @@ "description": null, "_repopath": "google/mediapipe", "_reponame": "mediapipe", - "_stars": 19623, - "_forks": 4132, - "_watches": 495, + "_stars": 19756, + "_forks": 4148, + "_watches": 494, "_topics": [ "mediapipe", "c-plus-plus", @@ -2376,11 +3616,32 @@ "_homepage": "https://mediapipe.dev", "_description": "mediapipe: Cross-platform, customizable ML solutions for live and streaming media.", "_organization": "google", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2019-06-13T00:00:00.000Z", - "_age_weeks": 181, - "_stars_per_week": 107.9, + "_age_weeks": 183, + "_stars_per_week": 107.62, + "_pop_contributor_count": 21, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 11.92, + "_pop_updated_issues_count": 556, + "_pop_closed_issues_count": 322, + "_pop_created_since_days": 43, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 556.0, + "_pop_comment_count": 1433.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 111, + "_pop_score": 50.71, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google/mediapipe/master/README.md", "_readme_localurl": "google~mediapipe~README.md", @@ -2406,9 +3667,9 @@ "description": null, "_repopath": "google/flatbuffers", "_reponame": "flatbuffers", - "_stars": 19486, - "_forks": 2968, - "_watches": 648, + "_stars": 19528, + "_forks": 2976, + "_watches": 649, "_topics": [ "flatbuffers", "serialization", @@ -2435,11 +3696,34 @@ "_homepage": "http://google.github.io/flatbuffers/", "_description": "FlatBuffers: Memory Efficient Serialization Library", "_organization": "google", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2014-05-19T00:00:00.000Z", - "_age_weeks": 446, - "_stars_per_week": 43.66, + "_age_weeks": 448, + "_stars_per_week": 43.59, + "_pop_contributor_count": 613, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cto", + "google", + "voxraygames" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.4, + "_pop_updated_issues_count": 227, + "_pop_closed_issues_count": 156, + "_pop_created_since_days": 104, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 227.0, + "_pop_comment_count": 576.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 3175, + "_pop_score": 70.7, "_readme_filename": "readme.md", "_readme_giturl": "https://raw.githubusercontent.com/google/flatbuffers/master/readme.md", "_readme_localurl": "google~flatbuffers~readme.md", @@ -2447,47 +3731,6 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, - { - "index": 607, - "category": "util", - "githuburl": "https://github.com/norvig/pytudes", - "featured": null, - "links": null, - "description": null, - "_repopath": "norvig/pytudes", - "_reponame": "pytudes", - "_stars": 19392, - "_forks": 2231, - "_watches": 712, - "_topics": [ - "python", - "python-3", - "programming", - "practice", - "demonstrate-skills" - ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "pytudes: Python programs, usually short, of considerable difficulty, to perfect particular skills.", - "_organization": "norvig", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", - "_created_at": "2017-03-01T00:00:00.000Z", - "_age_weeks": 301, - "_stars_per_week": 64.43, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/norvig/pytudes/master/README.md", - "_readme_localurl": "norvig~pytudes~README.md", - "_requirements_filenames": [ - "requirements.txt" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/norvig/pytudes/master/requirements.txt" - ], - "_requirements_localurls": [ - "norvig~pytudes~requirements.txt" - ] - }, { "index": 350, "category": "ml-dl", @@ -2497,9 +3740,9 @@ "description": null, "_repopath": "paddlepaddle/paddle", "_reponame": "Paddle", - "_stars": 19267, - "_forks": 4815, - "_watches": 733, + "_stars": 19328, + "_forks": 4834, + "_watches": 734, "_topics": [ "paddlepaddle", "deep-learning", @@ -2514,11 +3757,34 @@ "_homepage": "http://www.paddlepaddle.org/", "_description": "Paddle: PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice \uff08\u300e\u98de\u6868\u300f\u6838\u5fc3\u6846\u67b6\uff0c\u6df1\u5ea6\u5b66\u4e60&\u673a\u5668\u5b66\u4e60\u9ad8\u6027\u80fd\u5355\u673a\u3001\u5206\u5e03\u5f0f\u8bad\u7ec3\u548c\u8de8\u5e73\u53f0\u90e8\u7f72\uff09", "_organization": "paddlepaddle", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2016-08-15T00:00:00.000Z", - "_age_weeks": 329, - "_stars_per_week": 58.51, + "_age_weeks": 331, + "_stars_per_week": 58.39, + "_pop_contributor_count": 895, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "baidubdg/idl/dltp", + "paddlepaddle", + "tencent" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 110.33, + "_pop_updated_issues_count": 4106, + "_pop_closed_issues_count": 3158, + "_pop_created_since_days": 77, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 4104.0, + "_pop_comment_count": 6254.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 19940, + "_pop_score": 80.96, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/paddlepaddle/paddle/master/README.md", "_readme_localurl": "paddlepaddle~paddle~README.md", @@ -2535,9 +3801,9 @@ "description": null, "_repopath": "cookiecutter/cookiecutter", "_reponame": "cookiecutter", - "_stars": 18527, - "_forks": 1759, - "_watches": 237, + "_stars": 18574, + "_forks": 1762, + "_watches": 236, "_topics": [ "python", "cookiecutter" @@ -2546,11 +3812,34 @@ "_homepage": "https://pypi.org/project/cookiecutter/", "_description": "cookiecutter: A cross-platform command-line utility that creates projects from cookiecutters (project templates), e.g. Python package projects, C projects.", "_organization": "cookiecutter", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-09-09T00:00:00.000Z", "_created_at": "2013-07-14T00:00:00.000Z", - "_age_weeks": 490, - "_stars_per_week": 37.78, + "_age_weeks": 492, + "_stars_per_week": 37.74, + "_pop_contributor_count": 285, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "margaritahumanitarian", + "mozilla", + "octoenergy" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.08, + "_pop_updated_issues_count": 50, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 115, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 50.0, + "_pop_comment_count": 43.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 611, + "_pop_score": 53.64, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/cookiecutter/cookiecutter/master/README.md", "_readme_localurl": "cookiecutter~cookiecutter~README.md", @@ -2576,19 +3865,42 @@ "description": null, "_repopath": "wesm/pydata-book", "_reponame": "pydata-book", - "_stars": 18470, - "_forks": 13769, - "_watches": 1453, + "_stars": 18518, + "_forks": 13789, + "_watches": 1456, "_topics": [], "_language": "Jupyter Notebook", "_homepage": "", "_description": "pydata-book: Materials and IPython notebooks for \"Python for Data Analysis\" by Wes McKinney, published by O'Reilly Media", "_organization": "wesm", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-03T00:00:00.000Z", "_created_at": "2012-06-30T00:00:00.000Z", - "_age_weeks": 544, - "_stars_per_week": 33.92, + "_age_weeks": 546, + "_stars_per_week": 33.9, + "_pop_contributor_count": 9, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "googlecloud", + "vndly", + "voltrondata" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.15, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 127, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 7.0, + "_pop_comment_count": 6.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 5, + "_pop_score": 30.95, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/wesm/pydata-book/master/README.md", "_readme_localurl": "wesm~pydata-book~README.md", @@ -2611,8 +3923,8 @@ "description": null, "_repopath": "harisiqbal88/plotneuralnet", "_reponame": "PlotNeuralNet", - "_stars": 18387, - "_forks": 2528, + "_stars": 18466, + "_forks": 2542, "_watches": 219, "_topics": [ "latex", @@ -2622,11 +3934,33 @@ "_homepage": null, "_description": "PlotNeuralNet: Latex code for making neural networks diagrams", "_organization": "harisiqbal88", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2020-11-06T00:00:00.000Z", "_created_at": "2018-07-24T00:00:00.000Z", - "_age_weeks": 228, - "_stars_per_week": 80.59, + "_age_weeks": 229, + "_stars_per_week": 80.34, + "_pop_contributor_count": 13, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cesarbr", + "universityofoxford" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 54, + "_pop_updated_since_days": 26, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 35, + "_pop_score": 25.79, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/harisiqbal88/plotneuralnet/master/README.md", "_readme_localurl": "harisiqbal88~plotneuralnet~README.md", @@ -2643,9 +3977,9 @@ "description": null, "_repopath": "slundberg/shap", "_reponame": "shap", - "_stars": 18096, - "_forks": 2722, - "_watches": 260, + "_stars": 18176, + "_forks": 2729, + "_watches": 259, "_topics": [ "interpretability", "machine-learning", @@ -2659,11 +3993,34 @@ "_homepage": "", "_description": "shap: A game theoretic approach to explain the output of any machine learning model.", "_organization": "slundberg", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-06-16T00:00:00.000Z", "_created_at": "2016-11-22T00:00:00.000Z", - "_age_weeks": 315, - "_stars_per_week": 57.42, + "_age_weeks": 316, + "_stars_per_week": 57.36, + "_pop_contributor_count": 205, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "microsoft", + "microsoftresearch", + "mila-iqia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.31, + "_pop_updated_issues_count": 187, + "_pop_closed_issues_count": 27, + "_pop_created_since_days": 74, + "_pop_updated_since_days": 6, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 187.0, + "_pop_comment_count": 160.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 439, + "_pop_score": 50.17, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/slundberg/shap/master/README.md", "_readme_localurl": "slundberg~shap~README.md", @@ -2692,9 +4049,9 @@ "description": null, "_repopath": "plotly/dash", "_reponame": "dash", - "_stars": 17753, - "_forks": 1811, - "_watches": 408, + "_stars": 17833, + "_forks": 1815, + "_watches": 409, "_topics": [ "dash", "plotly", @@ -2721,11 +4078,32 @@ "_homepage": "https://plotly.com/dash", "_description": "dash: Analytical Web Apps for Python, R, Julia, and Jupyter. No JavaScript Required.", "_organization": "plotly", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2015-04-10T00:00:00.000Z", - "_age_weeks": 399, - "_stars_per_week": 44.41, + "_age_weeks": 401, + "_stars_per_week": 44.42, + "_pop_contributor_count": 132, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "plotly" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 12.54, + "_pop_updated_issues_count": 177, + "_pop_closed_issues_count": 85, + "_pop_created_since_days": 94, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 177.0, + "_pop_comment_count": 210.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 5155, + "_pop_score": 62.42, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/plotly/dash/master/README.md", "_readme_localurl": "plotly~dash~README.md", @@ -2739,6 +4117,76 @@ "plotly~dash~setup.py" ] }, + { + "index": 763, + "category": "ml-dl", + "githuburl": "https://github.com/xinntao/real-esrgan", + "featured": null, + "links": null, + "description": null, + "_repopath": "xinntao/real-esrgan", + "_reponame": "Real-ESRGAN", + "_stars": 17026, + "_forks": 1811, + "_watches": 181, + "_topics": [ + "esrgan", + "pytorch", + "real-esrgan", + "super-resolution", + "image-restoration", + "denoise", + "jpeg-compression", + "amine" + ], + "_language": "Python", + "_homepage": "", + "_description": "Real-ESRGAN aims at developing Practical Algorithms for General Image/Video Restoration.", + "_organization": "xinntao", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-09-20T00:00:00.000Z", + "_created_at": "2021-07-19T00:00:00.000Z", + "_age_weeks": 74, + "_stars_per_week": 230.08, + "_pop_contributor_count": 11, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "huggingface", + "tencent", + "vk|hse" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.69, + "_pop_updated_issues_count": 87, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 17, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 87.0, + "_pop_comment_count": 78.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 67, + "_pop_score": 35.54, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/xinntao/real-esrgan/master/README.md", + "_readme_localurl": "xinntao~real-esrgan~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/xinntao/real-esrgan/master/requirements.txt", + "https://raw.githubusercontent.com/xinntao/real-esrgan/master/setup.py" + ], + "_requirements_localurls": [ + "xinntao~real-esrgan~requirements.txt", + "xinntao~real-esrgan~setup.py" + ] + }, { "index": 6, "category": "viz", @@ -2748,9 +4196,9 @@ "description": null, "_repopath": "bokeh/bokeh", "_reponame": "bokeh", - "_stars": 16967, - "_forks": 4007, - "_watches": 453, + "_stars": 17007, + "_forks": 4012, + "_watches": 451, "_topics": [ "bokeh", "python", @@ -2769,11 +4217,32 @@ "_homepage": "https://bokeh.org", "_description": "bokeh: Interactive Data Visualization in the browser, from Python", "_organization": "bokeh", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2012-03-26T00:00:00.000Z", - "_age_weeks": 558, - "_stars_per_week": 30.39, + "_age_weeks": 560, + "_stars_per_week": 30.37, + "_pop_contributor_count": 624, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "nvidia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 8.15, + "_pop_updated_issues_count": 405, + "_pop_closed_issues_count": 275, + "_pop_created_since_days": 131, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 405.0, + "_pop_comment_count": 824.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 1783, + "_pop_score": 67.11, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/bokeh/bokeh/master/README.md", "_readme_localurl": "bokeh~bokeh~README.md", @@ -2799,9 +4268,9 @@ "description": null, "_repopath": "atsushisakai/pythonrobotics", "_reponame": "PythonRobotics", - "_stars": 16924, - "_forks": 5359, - "_watches": 502, + "_stars": 16987, + "_forks": 5385, + "_watches": 503, "_topics": [ "python", "robotics", @@ -2824,11 +4293,33 @@ "_homepage": "https://atsushisakai.github.io/PythonRobotics/", "_description": "PythonRobotics: Python sample codes for robotics algorithms.", "_organization": "atsushisakai", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-12-05T00:00:00.000Z", "_created_at": "2016-03-21T00:00:00.000Z", - "_age_weeks": 350, - "_stars_per_week": 48.31, + "_age_weeks": 352, + "_stars_per_week": 48.26, + "_pop_contributor_count": 102, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "idealworks", + "tiiuae" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.15, + "_pop_updated_issues_count": 45, + "_pop_closed_issues_count": 35, + "_pop_created_since_days": 82, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 45.0, + "_pop_comment_count": 24.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 950, + "_pop_score": 50.12, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/atsushisakai/pythonrobotics/master/README.md", "_readme_localurl": "atsushisakai~pythonrobotics~README.md", @@ -2845,8 +4336,8 @@ "description": null, "_repopath": "jina-ai/jina", "_reponame": "jina", - "_stars": 16835, - "_forks": 1992, + "_stars": 16915, + "_forks": 2000, "_watches": 183, "_topics": [ "neural-search", @@ -2874,11 +4365,33 @@ "_homepage": "https://docs.jina.ai", "_description": "jina: \ud83d\udd2e Build multimodal AI services via cloud native technologies \u00b7 Neural Search \u00b7 Generative AI \u00b7 Cloud Native", "_organization": "jina-ai", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2020-02-13T00:00:00.000Z", - "_age_weeks": 146, - "_stars_per_week": 114.64, + "_age_weeks": 148, + "_stars_per_week": 113.85, + "_pop_contributor_count": 161, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "jina-ai", + "jinaai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 23.48, + "_pop_updated_issues_count": 403, + "_pop_closed_issues_count": 374, + "_pop_created_since_days": 35, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 109, + "_pop_recent_releases_estimated_tags": 127, + "_pop_recent_releases_adjusted_count": 109, + "_pop_issue_count": 403.0, + "_pop_comment_count": 797.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 1437, + "_pop_score": 65.5, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jina-ai/jina/master/README.md", "_readme_localurl": "jina-ai~jina~README.md", @@ -2898,53 +4411,6 @@ "jina-ai~jina~pyproject.toml" ] }, - { - "index": 763, - "category": "ml-dl", - "githuburl": "https://github.com/xinntao/real-esrgan", - "featured": null, - "links": null, - "description": null, - "_repopath": "xinntao/real-esrgan", - "_reponame": "Real-ESRGAN", - "_stars": 16801, - "_forks": 1792, - "_watches": 182, - "_topics": [ - "esrgan", - "pytorch", - "real-esrgan", - "super-resolution", - "image-restoration", - "denoise", - "jpeg-compression", - "amine" - ], - "_language": "Python", - "_homepage": "", - "_description": "Real-ESRGAN aims at developing Practical Algorithms for General Image/Video Restoration.", - "_organization": "xinntao", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-09-20T00:00:00.000Z", - "_created_at": "2021-07-19T00:00:00.000Z", - "_age_weeks": 72, - "_stars_per_week": 232.42, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/xinntao/real-esrgan/master/README.md", - "_readme_localurl": "xinntao~real-esrgan~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/xinntao/real-esrgan/master/requirements.txt", - "https://raw.githubusercontent.com/xinntao/real-esrgan/master/setup.py" - ], - "_requirements_localurls": [ - "xinntao~real-esrgan~requirements.txt", - "xinntao~real-esrgan~setup.py" - ] - }, { "index": 30, "category": "web", @@ -2954,9 +4420,9 @@ "description": null, "_repopath": "huge-success/sanic", "_reponame": "sanic", - "_stars": 16668, - "_forks": 1481, - "_watches": 413, + "_stars": 16695, + "_forks": 1484, + "_watches": 414, "_topics": [ "python", "framework", @@ -2972,11 +4438,34 @@ "_homepage": "https://sanic.dev", "_description": "sanic: Next generation Python web server/framework | Build fast. Run fast.", "_organization": "huge-success", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2016-05-26T00:00:00.000Z", - "_age_weeks": 340, - "_stars_per_week": 48.9, + "_age_weeks": 342, + "_stars_per_week": 48.73, + "_pop_contributor_count": 325, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "airbnb", + "packetfabric", + "pytorch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.42, + "_pop_updated_issues_count": 121, + "_pop_closed_issues_count": 91, + "_pop_created_since_days": 80, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 121.0, + "_pop_comment_count": 310.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 62, + "_pop_score": 59.8, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/huge-success/sanic/master/README.rst", "_readme_localurl": "huge-success~sanic~README.rst", @@ -2993,6 +4482,71 @@ "huge-success~sanic~pyproject.toml" ] }, + { + "index": 228, + "category": "term", + "githuburl": "https://github.com/willmcgugan/textual", + "featured": null, + "links": null, + "description": null, + "_repopath": "willmcgugan/textual", + "_reponame": "textual", + "_stars": 16593, + "_forks": 476, + "_watches": 151, + "_topics": [ + "terminal", + "python", + "tui", + "rich", + "cli", + "framework" + ], + "_language": "Python", + "_homepage": "https://textual.textualize.io/", + "_description": "Textual is a TUI (Text User Interface) framework for Python inspired by modern web development.", + "_organization": "willmcgugan", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_created_at": "2021-04-08T00:00:00.000Z", + "_age_weeks": 88, + "_stars_per_week": 187.34, + "_pop_contributor_count": 61, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "davep.org", + "lastmileict", + "textualize" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 50.9, + "_pop_updated_issues_count": 650, + "_pop_closed_issues_count": 542, + "_pop_created_since_days": 21, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 650.0, + "_pop_comment_count": 957.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 26, + "_pop_score": 55.84, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/willmcgugan/textual/master/README.md", + "_readme_localurl": "willmcgugan~textual~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/willmcgugan/textual/master/pyproject.toml" + ], + "_requirements_localurls": [ + "willmcgugan~textual~pyproject.toml" + ] + }, { "index": 48, "category": "viz", @@ -3002,9 +4556,9 @@ "description": null, "_repopath": "matplotlib/matplotlib", "_reponame": "matplotlib", - "_stars": 16508, - "_forks": 6629, - "_watches": 586, + "_stars": 16560, + "_forks": 6641, + "_watches": 587, "_topics": [ "matplotlib", "data-visualization", @@ -3021,11 +4575,33 @@ "_homepage": "https://matplotlib.org/stable/", "_description": "matplotlib: plotting with Python", "_organization": "matplotlib", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2011-02-19T00:00:00.000Z", - "_age_weeks": 615, - "_stars_per_week": 26.82, + "_age_weeks": 617, + "_stars_per_week": 26.83, + "_pop_contributor_count": 1447, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "brookhavennationallab", + "microsoft" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 35.75, + "_pop_updated_issues_count": 2020, + "_pop_closed_issues_count": 1442, + "_pop_created_since_days": 144, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 2020.0, + "_pop_comment_count": 2716.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 7290, + "_pop_score": 76.87, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/matplotlib/matplotlib/master/README.md", "_readme_localurl": "matplotlib~matplotlib~README.md", @@ -3051,9 +4627,9 @@ "description": null, "_repopath": "jaidedai/easyocr", "_reponame": "EasyOCR", - "_stars": 16464, - "_forks": 2375, - "_watches": 282, + "_stars": 16541, + "_forks": 2390, + "_watches": 284, "_topics": [ "ocr", "deep-learning", @@ -3075,11 +4651,33 @@ "_homepage": "https://www.jaided.ai", "_description": "EasyOCR: Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc.", "_organization": "jaidedai", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-18T00:00:00.000Z", "_created_at": "2020-03-14T00:00:00.000Z", - "_age_weeks": 142, - "_stars_per_week": 115.48, + "_age_weeks": 144, + "_stars_per_week": 114.64, + "_pop_contributor_count": 110, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "enveritas", + "jaidedai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.0, + "_pop_updated_issues_count": 86, + "_pop_closed_issues_count": 31, + "_pop_created_since_days": 34, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 86.0, + "_pop_comment_count": 125.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 122, + "_pop_score": 49.49, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jaidedai/easyocr/master/README.md", "_readme_localurl": "jaidedai~easyocr~README.md", @@ -3096,48 +4694,6 @@ "jaidedai~easyocr~setup.py" ] }, - { - "index": 228, - "category": "term", - "githuburl": "https://github.com/willmcgugan/textual", - "featured": null, - "links": null, - "description": null, - "_repopath": "willmcgugan/textual", - "_reponame": "textual", - "_stars": 16321, - "_forks": 470, - "_watches": 151, - "_topics": [ - "terminal", - "python", - "tui", - "rich", - "cli", - "framework" - ], - "_language": "Python", - "_homepage": "https://textual.textualize.io/", - "_description": "Textual is a TUI (Text User Interface) framework for Python inspired by modern web development.", - "_organization": "willmcgugan", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2021-04-08T00:00:00.000Z", - "_age_weeks": 86, - "_stars_per_week": 187.91, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/willmcgugan/textual/master/README.md", - "_readme_localurl": "willmcgugan~textual~README.md", - "_requirements_filenames": [ - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/willmcgugan/textual/master/pyproject.toml" - ], - "_requirements_localurls": [ - "willmcgugan~textual~pyproject.toml" - ] - }, { "index": 373, "category": "ml-dl", @@ -3147,9 +4703,9 @@ "description": null, "_repopath": "pyg-team/pytorch_geometric", "_reponame": "pytorch_geometric", - "_stars": 16304, - "_forks": 2971, - "_watches": 245, + "_stars": 16385, + "_forks": 2991, + "_watches": 246, "_topics": [ "pytorch", "geometric-deep-learning", @@ -3161,11 +4717,33 @@ "_homepage": "https://pytorch-geometric.readthedocs.io/", "_description": "pytorch_geometric: Graph Neural Network Library for PyTorch", "_organization": "pyg-team", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2017-10-06T00:00:00.000Z", - "_age_weeks": 269, - "_stars_per_week": 60.45, + "_age_weeks": 271, + "_stars_per_week": 60.37, + "_pop_contributor_count": 351, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "max-planckinstituteforinformatics,kumo.ai", + "uilab-githubsparcs-kaist" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 16.75, + "_pop_updated_issues_count": 996, + "_pop_closed_issues_count": 819, + "_pop_created_since_days": 63, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 995.0, + "_pop_comment_count": 1179.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 47, + "_pop_score": 59.25, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pyg-team/pytorch_geometric/master/README.md", "_readme_localurl": "pyg-team~pytorch_geometric~README.md", @@ -3188,9 +4766,9 @@ "description": null, "_repopath": "spotify/luigi", "_reponame": "luigi", - "_stars": 16176, - "_forks": 2353, - "_watches": 485, + "_stars": 16191, + "_forks": 2352, + "_watches": 486, "_topics": [ "python", "luigi", @@ -3202,11 +4780,34 @@ "_homepage": null, "_description": "Luigi is a Python module that helps you build complex pipelines of batch jobs. It handles dependency resolution, workflow management, visualization etc. It also comes with Hadoop support built in. ", "_organization": "spotify", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-12-02T00:00:00.000Z", "_created_at": "2012-09-20T00:00:00.000Z", - "_age_weeks": 532, - "_stars_per_week": 30.36, + "_age_weeks": 534, + "_stars_per_week": 30.29, + "_pop_contributor_count": 596, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "houzz", + "modallabs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.81, + "_pop_updated_issues_count": 21, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 125, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 21.0, + "_pop_comment_count": 32.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 387, + "_pop_score": 55.86, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/spotify/luigi/master/README.rst", "_readme_localurl": "spotify~luigi~README.rst", @@ -3229,19 +4830,38 @@ "description": null, "_repopath": "fchollet/deep-learning-with-python-notebooks", "_reponame": "deep-learning-with-python-notebooks", - "_stars": 16123, - "_forks": 7893, + "_stars": 16168, + "_forks": 7914, "_watches": 647, "_topics": [], "_language": "Jupyter Notebook", "_homepage": "", "_description": "deep-learning-with-python-notebooks: Jupyter notebooks for the code samples of the book \"Deep Learning with Python\"", "_organization": "fchollet", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-02-10T00:00:00.000Z", "_created_at": "2017-09-05T00:00:00.000Z", - "_age_weeks": 274, - "_stars_per_week": 58.81, + "_age_weeks": 275, + "_stars_per_week": 58.61, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 64, + "_pop_updated_since_days": 10, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 2, + "_pop_score": 16.67, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/fchollet/deep-learning-with-python-notebooks/master/README.md", "_readme_localurl": "fchollet~deep-learning-with-python-notebooks~README.md", @@ -3258,9 +4878,9 @@ "description": null, "_repopath": "openai/gpt-2", "_reponame": "gpt-2", - "_stars": 15784, - "_forks": 3983, - "_watches": 585, + "_stars": 15919, + "_forks": 4021, + "_watches": 584, "_topics": [ "paper" ], @@ -3268,11 +4888,32 @@ "_homepage": "https://openai.com/blog/better-language-models/", "_description": "gpt-2: Code for the paper \"Language Models are Unsupervised Multitask Learners\"", "_organization": "openai", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2020-12-02T00:00:00.000Z", "_created_at": "2019-02-11T00:00:00.000Z", - "_age_weeks": 199, + "_age_weeks": 201, "_stars_per_week": 79.2, + "_pop_contributor_count": 16, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "openai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 47, + "_pop_updated_since_days": 25, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 5.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 365, + "_pop_score": 27.03, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/openai/gpt-2/master/README.md", "_readme_localurl": "openai~gpt-2~README.md", @@ -3295,8 +4936,8 @@ "description": null, "_repopath": "binux/pyspider", "_reponame": "pyspider", - "_stars": 15669, - "_forks": 3662, + "_stars": 15686, + "_forks": 3660, "_watches": 906, "_topics": [ "python", @@ -3306,11 +4947,30 @@ "_homepage": "http://docs.pyspider.org/", "_description": "pyspider: A Powerful Spider(Web Crawler) System in Python.", "_organization": "binux", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2020-08-02T00:00:00.000Z", "_created_at": "2014-02-21T00:00:00.000Z", - "_age_weeks": 458, - "_stars_per_week": 34.16, + "_age_weeks": 460, + "_stars_per_week": 34.07, + "_pop_contributor_count": 62, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 107, + "_pop_updated_since_days": 29, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 8.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 243, + "_pop_score": 29.95, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/binux/pyspider/master/README.md", "_readme_localurl": "binux~pyspider~README.md", @@ -3327,6 +4987,62 @@ "binux~pyspider~setup.py" ] }, + { + "index": 834, + "category": "util", + "githuburl": "https://github.com/micropython/micropython", + "featured": null, + "links": null, + "description": null, + "_repopath": "micropython/micropython", + "_reponame": "micropython", + "_stars": 15625, + "_forks": 6002, + "_watches": 731, + "_topics": [ + "micropython", + "python", + "embedded", + "microcontroller" + ], + "_language": "C", + "_homepage": "https://micropython.org", + "_description": "MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems", + "_organization": "micropython", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2013-12-20T00:00:00.000Z", + "_age_weeks": 469, + "_stars_per_week": 33.29, + "_pop_contributor_count": 536, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "micropython", + "openmv" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 25.54, + "_pop_updated_issues_count": 524, + "_pop_closed_issues_count": 330, + "_pop_created_since_days": 110, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 524.0, + "_pop_comment_count": 1537.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.9, + "_pop_dependents_count": 17483, + "_pop_score": 68.38, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/micropython/micropython/master/README.md", + "_readme_localurl": "micropython~micropython~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 873, "category": "util", @@ -3336,8 +5052,8 @@ "description": null, "_repopath": "ipython/ipython", "_reponame": "ipython", - "_stars": 15605, - "_forks": 4401, + "_stars": 15614, + "_forks": 4403, "_watches": 775, "_topics": [ "ipython", @@ -3353,11 +5069,35 @@ "_homepage": "https://ipython.readthedocs.org", "_description": "ipython: Official repository for IPython itself. Other repos in the IPython organization contain things like the website, documentation builds, etc.", "_organization": "ipython", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-28T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2010-05-10T00:00:00.000Z", - "_age_weeks": 656, - "_stars_per_week": 23.78, + "_age_weeks": 658, + "_stars_per_week": 23.73, + "_pop_contributor_count": 925, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazonwebservices", + "google", + "quansight-labs", + "simularesearchlaboratory" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.67, + "_pop_updated_issues_count": 183, + "_pop_closed_issues_count": 91, + "_pop_created_since_days": 154, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 183.0, + "_pop_comment_count": 194.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 14264, + "_pop_score": 73.37, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/ipython/ipython/master/README.rst", "_readme_localurl": "ipython~ipython~README.rst", @@ -3374,69 +5114,6 @@ "ipython~ipython~pyproject.toml" ] }, - { - "index": 834, - "category": "util", - "githuburl": "https://github.com/micropython/micropython", - "featured": null, - "links": null, - "description": null, - "_repopath": "micropython/micropython", - "_reponame": "micropython", - "_stars": 15566, - "_forks": 5981, - "_watches": 728, - "_topics": [ - "micropython", - "python", - "embedded", - "microcontroller" - ], - "_language": "C", - "_homepage": "https://micropython.org", - "_description": "MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems", - "_organization": "micropython", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2013-12-20T00:00:00.000Z", - "_age_weeks": 467, - "_stars_per_week": 33.28, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/micropython/micropython/master/README.md", - "_readme_localurl": "micropython~micropython~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, - { - "index": 493, - "category": "ml-dl", - "githuburl": "https://github.com/rasbt/deeplearning-models", - "featured": null, - "links": null, - "description": null, - "_repopath": "rasbt/deeplearning-models", - "_reponame": "deeplearning-models", - "_stars": 15461, - "_forks": 3826, - "_watches": 598, - "_topics": [], - "_language": "Jupyter Notebook", - "_homepage": null, - "_description": "deeplearning-models: A collection of various deep learning architectures, models, and tips", - "_organization": "rasbt", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-16T00:00:00.000Z", - "_created_at": "2019-06-05T00:00:00.000Z", - "_age_weeks": 183, - "_stars_per_week": 84.49, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/rasbt/deeplearning-models/master/README.md", - "_readme_localurl": "rasbt~deeplearning-models~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 176, "category": "debug", @@ -3446,8 +5123,8 @@ "description": null, "_repopath": "cool-rr/pysnooper", "_reponame": "PySnooper", - "_stars": 15426, - "_forks": 931, + "_stars": 15499, + "_forks": 932, "_watches": 234, "_topics": [ "python", @@ -3460,11 +5137,33 @@ "_homepage": "", "_description": "PySnooper: Never use print for debugging again", "_organization": "cool-rr", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-04-02T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-11T00:00:00.000Z", "_created_at": "2019-04-18T00:00:00.000Z", - "_age_weeks": 189, - "_stars_per_week": 81.25, + "_age_weeks": 191, + "_stars_per_week": 80.9, + "_pop_contributor_count": 27, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "japan", + "nvidia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.12, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 45, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 3.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 10, + "_pop_score": 37.33, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/cool-rr/pysnooper/master/README.md", "_readme_localurl": "cool-rr~pysnooper~README.md", @@ -3482,39 +5181,57 @@ ] }, { - "index": 469, - "category": "util", - "githuburl": "https://github.com/alievk/avatarify-python", + "index": 493, + "category": "ml-dl", + "githuburl": "https://github.com/rasbt/deeplearning-models", "featured": null, "links": null, "description": null, - "_repopath": "alievk/avatarify-python", - "_reponame": "avatarify-python", - "_stars": 15282, - "_forks": 2354, - "_watches": 305, + "_repopath": "rasbt/deeplearning-models", + "_reponame": "deeplearning-models", + "_stars": 15476, + "_forks": 3828, + "_watches": 598, "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "avatarify-python: Avatars for Zoom, Skype and other video-conferencing apps.", - "_organization": "alievk", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-11T00:00:00.000Z", - "_created_at": "2020-04-06T00:00:00.000Z", - "_age_weeks": 139, - "_stars_per_week": 109.72, + "_language": "Jupyter Notebook", + "_homepage": null, + "_description": "deeplearning-models: A collection of various deep learning architectures, models, and tips", + "_organization": "rasbt", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-11-16T00:00:00.000Z", + "_created_at": "2019-06-05T00:00:00.000Z", + "_age_weeks": 184, + "_stars_per_week": 83.78, + "_pop_contributor_count": 11, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "alibaba-inc&nanjinguniversity", + "irtsaint-exup\u00e9ry", + "lightning-ai,universityofwisconsin-madison", + "microsoft" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.4, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 43, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 49, + "_pop_score": 33.69, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/alievk/avatarify-python/master/README.md", - "_readme_localurl": "alievk~avatarify-python~README.md", - "_requirements_filenames": [ - "requirements.txt" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/alievk/avatarify-python/master/requirements.txt" - ], - "_requirements_localurls": [ - "alievk~avatarify-python~requirements.txt" - ] + "_readme_giturl": "https://raw.githubusercontent.com/rasbt/deeplearning-models/master/README.md", + "_readme_localurl": "rasbt~deeplearning-models~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { "index": 41, @@ -3525,9 +5242,9 @@ "description": null, "_repopath": "kivy/kivy", "_reponame": "kivy", - "_stars": 15268, - "_forks": 2961, - "_watches": 616, + "_stars": 15305, + "_forks": 2966, + "_watches": 619, "_topics": [ "python", "ui", @@ -3543,11 +5260,36 @@ "_homepage": "https://kivy.org", "_description": "kivy: Open source UI framework written in Python, running on Windows, Linux, macOS, Android and iOS", "_organization": "kivy", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-28T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2010-11-03T00:00:00.000Z", - "_age_weeks": 631, - "_stars_per_week": 24.2, + "_age_weeks": 632, + "_stars_per_week": 24.19, + "_pop_contributor_count": 577, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cornelluniversity", + "freelance", + "imc.com", + "meltingrocks", + "zencode" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.21, + "_pop_updated_issues_count": 117, + "_pop_closed_issues_count": 65, + "_pop_created_since_days": 148, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 117.0, + "_pop_comment_count": 187.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 6614, + "_pop_score": 67.36, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/kivy/kivy/master/README.md", "_readme_localurl": "kivy~kivy~README.md", @@ -3565,37 +5307,62 @@ ] }, { - "index": 19, - "category": "time-series", - "githuburl": "https://github.com/facebook/prophet", - "featured": 1.0, + "index": 469, + "category": "util", + "githuburl": "https://github.com/alievk/avatarify-python", + "featured": null, "links": null, "description": null, - "_repopath": "facebook/prophet", - "_reponame": "prophet", - "_stars": 15239, - "_forks": 4336, - "_watches": 426, - "_topics": [ - "forecasting", - "r", - "python" - ], + "_repopath": "alievk/avatarify-python", + "_reponame": "avatarify-python", + "_stars": 15297, + "_forks": 2357, + "_watches": 306, + "_topics": [], "_language": "Python", - "_homepage": "https://facebook.github.io/prophet", - "_description": "prophet: Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth.", - "_organization": "facebook", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-09-21T00:00:00.000Z", - "_created_at": "2016-11-16T00:00:00.000Z", - "_age_weeks": 316, - "_stars_per_week": 48.22, + "_homepage": "", + "_description": "avatarify-python: Avatars for Zoom, Skype and other video-conferencing apps.", + "_organization": "alievk", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-11-11T00:00:00.000Z", + "_created_at": "2020-04-06T00:00:00.000Z", + "_age_weeks": 141, + "_stars_per_week": 108.49, + "_pop_contributor_count": 22, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "entrepreneur", + "occrp,the-markup", + "universityofhildesheim" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 58, + "_pop_closed_issues_count": 15, + "_pop_created_since_days": 33, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 58.0, + "_pop_comment_count": 174.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 0, + "_pop_score": 34.3, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/facebook/prophet/master/README.md", - "_readme_localurl": "facebook~prophet~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/alievk/avatarify-python/master/README.md", + "_readme_localurl": "alievk~avatarify-python~README.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/alievk/avatarify-python/master/requirements.txt" + ], + "_requirements_localurls": [ + "alievk~avatarify-python~requirements.txt" + ] }, { "index": 328, @@ -3606,9 +5373,9 @@ "description": null, "_repopath": "aquasecurity/trivy", "_reponame": "trivy", - "_stars": 15142, - "_forks": 1463, - "_watches": 144, + "_stars": 15287, + "_forks": 1475, + "_watches": 145, "_topics": [ "security", "security-tools", @@ -3630,11 +5397,30 @@ "_homepage": "https://trivy.dev", "_description": "trivy: Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more", "_organization": "aquasecurity", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2019-04-11T00:00:00.000Z", - "_age_weeks": 190, - "_stars_per_week": 79.34, + "_age_weeks": 192, + "_stars_per_week": 79.38, + "_pop_contributor_count": 268, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 15.67, + "_pop_updated_issues_count": 547, + "_pop_closed_issues_count": 334, + "_pop_created_since_days": 45, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 35, + "_pop_recent_releases_estimated_tags": 28, + "_pop_recent_releases_adjusted_count": 35, + "_pop_issue_count": 547.0, + "_pop_comment_count": 947.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 2726, + "_pop_score": 62.29, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/aquasecurity/trivy/master/README.md", "_readme_localurl": "aquasecurity~trivy~README.md", @@ -3642,6 +5428,60 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, + { + "index": 19, + "category": "time-series", + "githuburl": "https://github.com/facebook/prophet", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "facebook/prophet", + "_reponame": "prophet", + "_stars": 15280, + "_forks": 4341, + "_watches": 426, + "_topics": [ + "forecasting", + "r", + "python" + ], + "_language": "Python", + "_homepage": "https://facebook.github.io/prophet", + "_description": "prophet: Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth.", + "_organization": "facebook", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-09-21T00:00:00.000Z", + "_created_at": "2016-11-16T00:00:00.000Z", + "_age_weeks": 317, + "_stars_per_week": 48.09, + "_pop_contributor_count": 158, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "canva" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.88, + "_pop_updated_issues_count": 88, + "_pop_closed_issues_count": 26, + "_pop_created_since_days": 74, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 88.0, + "_pop_comment_count": 95.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 1139, + "_pop_score": 48.78, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/facebook/prophet/master/README.md", + "_readme_localurl": "facebook~prophet~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 36, "category": "data", @@ -3651,9 +5491,9 @@ "description": null, "_repopath": "joke2k/faker", "_reponame": "faker", - "_stars": 15138, - "_forks": 1702, - "_watches": 222, + "_stars": 15170, + "_forks": 1708, + "_watches": 220, "_topics": [ "python", "fake", @@ -3667,11 +5507,35 @@ "_homepage": "http://faker.rtfd.org", "_description": "Faker is a Python package that generates fake data for you.", "_organization": "joke2k", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-11-30T00:00:00.000Z", "_created_at": "2012-11-12T00:00:00.000Z", - "_age_weeks": 525, - "_stars_per_week": 28.82, + "_age_weeks": 527, + "_stars_per_week": 28.79, + "_pop_contributor_count": 489, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "mdxs", + "minted", + "sailoboats", + "selfemployed" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.06, + "_pop_updated_issues_count": 76, + "_pop_closed_issues_count": 51, + "_pop_created_since_days": 123, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 55, + "_pop_recent_releases_estimated_tags": 26, + "_pop_recent_releases_adjusted_count": 55, + "_pop_issue_count": 76.0, + "_pop_comment_count": 136.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 6153, + "_pop_score": 69.77, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/joke2k/faker/master/README.rst", "_readme_localurl": "joke2k~faker~README.rst", @@ -3694,9 +5558,9 @@ "description": null, "_repopath": "pyscript/pyscript", "_reponame": "pyscript", - "_stars": 15047, - "_forks": 1104, - "_watches": 179, + "_stars": 15152, + "_forks": 1110, + "_watches": 180, "_topics": [ "python", "html", @@ -3706,11 +5570,32 @@ "_homepage": "https://community.anaconda.cloud/c/tech-topics/pyscript", "_description": "pyscript: Home Page: https://pyscript.net Examples: https://pyscript.net/examples", "_organization": "pyscript", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2022-02-21T00:00:00.000Z", - "_age_weeks": 41, - "_stars_per_week": 364.46, + "_age_weeks": 43, + "_stars_per_week": 352.37, + "_pop_contributor_count": 95, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "anaconda" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 12.27, + "_pop_updated_issues_count": 497, + "_pop_closed_issues_count": 367, + "_pop_created_since_days": 10, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 497.0, + "_pop_comment_count": 1009.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 34, + "_pop_score": 48.57, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pyscript/pyscript/master/README.md", "_readme_localurl": "pyscript~pyscript~README.md", @@ -3727,9 +5612,9 @@ "description": null, "_repopath": "huggingface/datasets", "_reponame": "datasets", - "_stars": 14856, - "_forks": 1932, - "_watches": 256, + "_stars": 14923, + "_forks": 1942, + "_watches": 260, "_topics": [ "nlp", "datasets", @@ -3750,11 +5635,33 @@ "_homepage": "https://huggingface.co/docs/datasets", "_description": "datasets: \ud83e\udd17 The largest hub of ready-to-use datasets for ML models with fast, easy-to-use and efficient data manipulation tools", "_organization": "huggingface", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2020-03-26T00:00:00.000Z", - "_age_weeks": 140, - "_stars_per_week": 105.47, + "_age_weeks": 142, + "_stars_per_week": 104.67, + "_pop_contributor_count": 474, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "huggingface", + "huggingfaceaiinnova" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 18.37, + "_pop_updated_issues_count": 643, + "_pop_closed_issues_count": 505, + "_pop_created_since_days": 33, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 23, + "_pop_recent_releases_estimated_tags": 25, + "_pop_recent_releases_adjusted_count": 23, + "_pop_issue_count": 643.0, + "_pop_comment_count": 1331.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 2106, + "_pop_score": 69.08, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/huggingface/datasets/master/README.md", "_readme_localurl": "huggingface~datasets~README.md", @@ -3780,8 +5687,8 @@ "description": null, "_repopath": "python/mypy", "_reponame": "mypy", - "_stars": 14283, - "_forks": 2374, + "_stars": 14361, + "_forks": 2385, "_watches": 223, "_topics": [ "python", @@ -3794,11 +5701,34 @@ "_homepage": "http://www.mypy-lang.org/", "_description": "mypy: Optional static typing for Python", "_organization": "python", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2012-12-07T00:00:00.000Z", - "_age_weeks": 521, - "_stars_per_week": 27.38, + "_age_weeks": 523, + "_stars_per_week": 27.44, + "_pop_contributor_count": 618, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "edgedb", + "microsoft", + "openai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 16.12, + "_pop_updated_issues_count": 944, + "_pop_closed_issues_count": 561, + "_pop_created_since_days": 122, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 944.0, + "_pop_comment_count": 2100.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 21972, + "_pop_score": 76.84, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/python/mypy/master/README.md", "_readme_localurl": "python~mypy~README.md", @@ -3824,8 +5754,8 @@ "description": null, "_repopath": "twintproject/twint", "_reponame": "twint", - "_stars": 14151, - "_forks": 2429, + "_stars": 14185, + "_forks": 2432, "_watches": 310, "_topics": [ "osint", @@ -3845,11 +5775,33 @@ "_homepage": "", "_description": "twint: An advanced Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API, allowing you to scrape a user's followers, following, Tweets and more while evading most API limitations.", "_organization": "twintproject", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2021-03-02T00:00:00.000Z", "_created_at": "2017-06-10T00:00:00.000Z", - "_age_weeks": 286, - "_stars_per_week": 49.38, + "_age_weeks": 288, + "_stars_per_week": 49.2, + "_pop_contributor_count": 65, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "maximlevin", + "none" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 67, + "_pop_updated_since_days": 22, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 313, + "_pop_score": 33.76, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/twintproject/twint/master/README.md", "_readme_localurl": "twintproject~twint~README.md", @@ -3866,57 +5818,6 @@ "twintproject~twint~setup.py" ] }, - { - "index": 104, - "category": "nlp", - "githuburl": "https://github.com/rare-technologies/gensim", - "featured": null, - "links": null, - "description": null, - "_repopath": "rare-technologies/gensim", - "_reponame": "gensim", - "_stars": 13764, - "_forks": 4294, - "_watches": 432, - "_topics": [ - "gensim", - "topic-modeling", - "information-retrieval", - "machine-learning", - "natural-language-processing", - "nlp", - "data-science", - "python", - "data-mining", - "word2vec", - "word-embeddings", - "neural-network", - "document-similarity", - "word-similarity", - "fasttext" - ], - "_language": "Python", - "_homepage": "https://radimrehurek.com/gensim", - "_description": "gensim: Topic Modelling for Humans", - "_organization": "rare-technologies", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2011-02-10T00:00:00.000Z", - "_age_weeks": 616, - "_stars_per_week": 22.31, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/rare-technologies/gensim/master/README.md", - "_readme_localurl": "rare-technologies~gensim~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/rare-technologies/gensim/master/setup.py" - ], - "_requirements_localurls": [ - "rare-technologies~gensim~setup.py" - ] - }, { "index": 124, "category": "ml", @@ -3926,8 +5827,8 @@ "description": null, "_repopath": "onnx/onnx", "_reponame": "onnx", - "_stars": 13753, - "_forks": 3199, + "_stars": 13818, + "_forks": 3231, "_watches": 430, "_topics": [ "deep-learning", @@ -3947,11 +5848,33 @@ "_homepage": "https://onnx.ai/", "_description": "onnx: Open standard for machine learning interoperability", "_organization": "onnx", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2017-09-07T00:00:00.000Z", - "_age_weeks": 273, - "_stars_per_week": 50.22, + "_age_weeks": 275, + "_stars_per_week": 50.14, + "_pop_contributor_count": 264, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "microsoft", + "microsoftresearch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.88, + "_pop_updated_issues_count": 267, + "_pop_closed_issues_count": 175, + "_pop_created_since_days": 64, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 267.0, + "_pop_comment_count": 461.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 32190, + "_pop_score": 66.79, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/onnx/onnx/master/README.md", "_readme_localurl": "onnx~onnx~README.md", @@ -3971,6 +5894,81 @@ "onnx~onnx~pyproject.toml" ] }, + { + "index": 104, + "category": "nlp", + "githuburl": "https://github.com/rare-technologies/gensim", + "featured": null, + "links": null, + "description": null, + "_repopath": "rare-technologies/gensim", + "_reponame": "gensim", + "_stars": 13801, + "_forks": 4298, + "_watches": 430, + "_topics": [ + "gensim", + "topic-modeling", + "information-retrieval", + "machine-learning", + "natural-language-processing", + "nlp", + "data-science", + "python", + "data-mining", + "word2vec", + "word-embeddings", + "neural-network", + "document-similarity", + "word-similarity", + "fasttext" + ], + "_language": "Python", + "_homepage": "https://radimrehurek.com/gensim", + "_description": "gensim: Topic Modelling for Humans", + "_organization": "rare-technologies", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2011-02-10T00:00:00.000Z", + "_age_weeks": 618, + "_stars_per_week": 22.31, + "_pop_contributor_count": 440, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "constructor.io,embedika", + "http://xavvy.com", + "profoundnetworks", + "rare-technologies" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.77, + "_pop_updated_issues_count": 51, + "_pop_closed_issues_count": 41, + "_pop_created_since_days": 144, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 51.0, + "_pop_comment_count": 100.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 156, + "_pop_score": 58.49, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/rare-technologies/gensim/master/README.md", + "_readme_localurl": "rare-technologies~gensim~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/rare-technologies/gensim/master/setup.py" + ], + "_requirements_localurls": [ + "rare-technologies~gensim~setup.py" + ] + }, { "index": 332, "category": "sim", @@ -3980,8 +5978,8 @@ "description": null, "_repopath": "unity-technologies/ml-agents", "_reponame": "ml-agents", - "_stars": 13737, - "_forks": 3625, + "_stars": 13800, + "_forks": 3635, "_watches": 539, "_topics": [ "reinforcement-learning", @@ -3996,11 +5994,32 @@ "_homepage": "https://unity.com/products/machine-learning-agents", "_description": "ml-agents: The Unity Machine Learning Agents Toolkit (ML-Agents) is an open-source project that enables games and simulations to serve as environments for training intelligent agents using deep reinforcement learning and imitation learning.", "_organization": "unity-technologies", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2017-09-08T00:00:00.000Z", - "_age_weeks": 273, - "_stars_per_week": 50.19, + "_age_weeks": 275, + "_stars_per_week": 50.1, + "_pop_contributor_count": 147, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ziplineinternational" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.85, + "_pop_updated_issues_count": 198, + "_pop_closed_issues_count": 145, + "_pop_created_since_days": 64, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 26, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 198.0, + "_pop_comment_count": 155.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 428, + "_pop_score": 51.65, "_readme_filename": "", "_readme_giturl": "", "_readme_localurl": "", @@ -4017,8 +6036,8 @@ "description": null, "_repopath": "delgan/loguru", "_reponame": "loguru", - "_stars": 13525, - "_forks": 569, + "_stars": 13598, + "_forks": 570, "_watches": 119, "_topics": [ "python", @@ -4030,11 +6049,32 @@ "_homepage": "", "_description": "loguru: Python logging made (stupidly) simple", "_organization": "delgan", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-12-02T00:00:00.000Z", "_created_at": "2017-08-15T00:00:00.000Z", - "_age_weeks": 277, - "_stars_per_week": 48.8, + "_age_weeks": 278, + "_stars_per_week": 48.76, + "_pop_contributor_count": 41, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "freelancer,upforhire" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.17, + "_pop_updated_issues_count": 92, + "_pop_closed_issues_count": 68, + "_pop_created_since_days": 65, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 92.0, + "_pop_comment_count": 198.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 258, + "_pop_score": 46.46, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/delgan/loguru/master/README.rst", "_readme_localurl": "delgan~loguru~README.rst", @@ -4057,19 +6097,41 @@ "description": null, "_repopath": "borisdayma/dalle-mini", "_reponame": "dalle-mini", - "_stars": 13392, - "_forks": 1006, - "_watches": 105, + "_stars": 13453, + "_forks": 1011, + "_watches": 103, "_topics": [], "_language": "Python", "_homepage": "https://www.craiyon.com", "_description": "dalle-mini: DALL\u00b7E Mini - Generate images from a text prompt", "_organization": "borisdayma", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-09T00:00:00.000Z", "_created_at": "2021-07-03T00:00:00.000Z", - "_age_weeks": 74, - "_stars_per_week": 179.59, + "_age_weeks": 76, + "_stars_per_week": 176.35, + "_pop_contributor_count": 27, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "huggingface", + "universityofmaryland,collegepark" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.35, + "_pop_updated_issues_count": 13, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 18, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 13.0, + "_pop_comment_count": 32.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 121, + "_pop_score": 42.31, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/borisdayma/dalle-mini/master/README.md", "_readme_localurl": "borisdayma~dalle-mini~README.md", @@ -4095,9 +6157,9 @@ "description": null, "_repopath": "pallets/click", "_reponame": "click", - "_stars": 13247, - "_forks": 1298, - "_watches": 181, + "_stars": 13290, + "_forks": 1299, + "_watches": 183, "_topics": [ "python", "cli", @@ -4108,11 +6170,33 @@ "_homepage": "https://click.palletsprojects.com", "_description": "click: Python composable command line interface toolkit", "_organization": "pallets", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-01T00:00:00.000Z", "_created_at": "2014-04-24T00:00:00.000Z", - "_age_weeks": 449, - "_stars_per_week": 29.45, + "_age_weeks": 451, + "_stars_per_week": 29.43, + "_pop_contributor_count": 333, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "getsentry", + "sentry" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.23, + "_pop_updated_issues_count": 65, + "_pop_closed_issues_count": 24, + "_pop_created_since_days": 105, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 65.0, + "_pop_comment_count": 62.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 3073, + "_pop_score": 57.21, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pallets/click/master/README.rst", "_readme_localurl": "pallets~click~README.rst", @@ -4126,6 +6210,72 @@ "pallets~click~setup.py" ] }, + { + "index": 119, + "category": "ml-ops", + "githuburl": "https://github.com/mlflow/mlflow", + "featured": null, + "links": null, + "description": null, + "_repopath": "mlflow/mlflow", + "_reponame": "mlflow", + "_stars": 13208, + "_forks": 3082, + "_watches": 285, + "_topics": [ + "machine-learning", + "ai", + "ml", + "mlflow", + "apache-spark", + "model-management" + ], + "_language": "Python", + "_homepage": "https://mlflow.org", + "_description": "mlflow: Open source platform for the machine learning lifecycle", + "_organization": "mlflow", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2018-06-05T00:00:00.000Z", + "_age_weeks": 236, + "_stars_per_week": 55.76, + "_pop_contributor_count": 526, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "databricks" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 22.33, + "_pop_updated_issues_count": 849, + "_pop_closed_issues_count": 680, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 24, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 850.0, + "_pop_comment_count": 2007.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 955, + "_pop_score": 67.32, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/mlflow/mlflow/master/README.rst", + "_readme_localurl": "mlflow~mlflow~README.rst", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/mlflow/mlflow/master/setup.py", + "https://raw.githubusercontent.com/mlflow/mlflow/master/pyproject.toml" + ], + "_requirements_localurls": [ + "mlflow~mlflow~setup.py", + "mlflow~mlflow~pyproject.toml" + ] + }, { "index": 544, "category": "ml", @@ -4135,8 +6285,8 @@ "description": null, "_repopath": "aleju/imgaug", "_reponame": "imgaug", - "_stars": 13162, - "_forks": 2334, + "_stars": 13184, + "_forks": 2333, "_watches": 228, "_topics": [ "image-augmentation", @@ -4158,11 +6308,34 @@ "_homepage": "http://imgaug.readthedocs.io", "_description": "imgaug: Image augmentation for machine learning experiments.", "_organization": "aleju", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2020-06-01T00:00:00.000Z", "_created_at": "2015-07-10T00:00:00.000Z", - "_age_weeks": 386, - "_stars_per_week": 34.04, + "_age_weeks": 388, + "_stars_per_week": 33.94, + "_pop_contributor_count": 36, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "kitware", + "maxplanckinstituteofanimalbehavior", + "mujin" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 91, + "_pop_updated_since_days": 31, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 5.0, + "_pop_comment_count": 8.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 383, + "_pop_score": 37.77, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/aleju/imgaug/master/README.md", "_readme_localurl": "aleju~imgaug~README.md", @@ -4179,51 +6352,6 @@ "aleju~imgaug~setup.py" ] }, - { - "index": 119, - "category": "ml-ops", - "githuburl": "https://github.com/mlflow/mlflow", - "featured": null, - "links": null, - "description": null, - "_repopath": "mlflow/mlflow", - "_reponame": "mlflow", - "_stars": 13162, - "_forks": 3070, - "_watches": 286, - "_topics": [ - "machine-learning", - "ai", - "ml", - "mlflow", - "apache-spark", - "model-management" - ], - "_language": "Python", - "_homepage": "https://mlflow.org", - "_description": "mlflow: Open source platform for the machine learning lifecycle", - "_organization": "mlflow", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2018-06-05T00:00:00.000Z", - "_age_weeks": 235, - "_stars_per_week": 55.97, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/mlflow/mlflow/master/README.rst", - "_readme_localurl": "mlflow~mlflow~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/mlflow/mlflow/master/setup.py", - "https://raw.githubusercontent.com/mlflow/mlflow/master/pyproject.toml" - ], - "_requirements_localurls": [ - "mlflow~mlflow~setup.py", - "mlflow~mlflow~pyproject.toml" - ] - }, { "index": 408, "category": "web", @@ -4233,9 +6361,9 @@ "description": null, "_repopath": "aio-libs/aiohttp", "_reponame": "aiohttp", - "_stars": 13079, - "_forks": 1833, - "_watches": 228, + "_stars": 13100, + "_forks": 1836, + "_watches": 227, "_topics": [ "aiohttp", "asyncio", @@ -4250,11 +6378,34 @@ "_homepage": "https://docs.aiohttp.org", "_description": "aiohttp: Asynchronous HTTP client/server framework for asyncio and Python", "_organization": "aio-libs", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2013-10-01T00:00:00.000Z", - "_age_weeks": 479, - "_stars_per_week": 27.3, + "_age_weeks": 480, + "_stars_per_week": 27.24, + "_pop_contributor_count": 661, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ansiblecoreredhatofficial", + "microsoft", + "neu.ro" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 8.35, + "_pop_updated_issues_count": 303, + "_pop_closed_issues_count": 207, + "_pop_created_since_days": 112, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 26, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 303.0, + "_pop_comment_count": 598.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 5253, + "_pop_score": 69.77, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/aio-libs/aiohttp/master/README.rst", "_readme_localurl": "aio-libs~aiohttp~README.rst", @@ -4280,9 +6431,9 @@ "description": null, "_repopath": "horovod/horovod", "_reponame": "horovod", - "_stars": 12875, - "_forks": 2143, - "_watches": 331, + "_stars": 12898, + "_forks": 2145, + "_watches": 332, "_topics": [ "tensorflow", "uber", @@ -4302,11 +6453,34 @@ "_homepage": "http://horovod.ai", "_description": "horovod: Distributed training framework for TensorFlow, Keras, PyTorch, and Apache MXNet.", "_organization": "horovod", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-10T00:00:00.000Z", "_created_at": "2017-08-09T00:00:00.000Z", - "_age_weeks": 278, - "_stars_per_week": 46.31, + "_age_weeks": 279, + "_stars_per_week": 46.11, + "_pop_contributor_count": 163, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "carbonrobotics", + "nvidia", + "uber" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.12, + "_pop_updated_issues_count": 128, + "_pop_closed_issues_count": 75, + "_pop_created_since_days": 65, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 128.0, + "_pop_comment_count": 269.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 93, + "_pop_score": 56.58, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/horovod/horovod/master/README.rst", "_readme_localurl": "horovod~horovod~README.rst", @@ -4329,9 +6503,9 @@ "description": null, "_repopath": "tensorflow/tensor2tensor", "_reponame": "tensor2tensor", - "_stars": 12814, - "_forks": 3145, - "_watches": 457, + "_stars": 12835, + "_forks": 3147, + "_watches": 458, "_topics": [ "machine-learning", "machine-translation", @@ -4343,11 +6517,34 @@ "_homepage": "", "_description": "tensor2tensor: Library of deep learning models and datasets designed to make deep learning more accessible and accelerate ML research.", "_organization": "tensorflow", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-10-24T00:00:00.000Z", "_created_at": "2017-06-15T00:00:00.000Z", - "_age_weeks": 285, - "_stars_per_week": 44.83, + "_age_weeks": 287, + "_stars_per_week": 44.63, + "_pop_contributor_count": 243, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "mimuw", + "universityofillinoisaturbana\u2013champaign" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.23, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 67, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 14.0, + "_pop_comment_count": 15.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 295, + "_pop_score": 50.81, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tensorflow/tensor2tensor/master/README.md", "_readme_localurl": "tensorflow~tensor2tensor~README.md", @@ -4370,9 +6567,9 @@ "description": null, "_repopath": "gunthercox/chatterbot", "_reponame": "ChatterBot", - "_stars": 12704, - "_forks": 4181, - "_watches": 553, + "_stars": 12738, + "_forks": 4189, + "_watches": 552, "_topics": [ "chatterbot", "machine-learning", @@ -4386,11 +6583,33 @@ "_homepage": "https://chatterbot.readthedocs.io", "_description": "ChatterBot is a machine learning, conversational dialog engine for creating chat bots", "_organization": "gunthercox", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2021-06-01T00:00:00.000Z", "_created_at": "2014-09-28T00:00:00.000Z", - "_age_weeks": 427, - "_stars_per_week": 29.72, + "_age_weeks": 429, + "_stars_per_week": 29.68, + "_pop_contributor_count": 103, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazonwebservices", + "wedgwoodwebworks" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 27, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 100, + "_pop_updated_since_days": 19, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 27.0, + "_pop_comment_count": 17.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 247, + "_pop_score": 42.31, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/gunthercox/chatterbot/master/README.md", "_readme_localurl": "gunthercox~chatterbot~README.md", @@ -4416,9 +6635,9 @@ "description": null, "_repopath": "plotly/plotly.py", "_reponame": "plotly.py", - "_stars": 12566, - "_forks": 2248, - "_watches": 274, + "_stars": 12630, + "_forks": 2251, + "_watches": 275, "_topics": [ "python", "d3", @@ -4439,11 +6658,34 @@ "_homepage": "https://plotly.com/python/", "_description": "plotly.py: The interactive graphing library for Python (includes Plotly Express) :sparkles:", "_organization": "plotly", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-10-27T00:00:00.000Z", "_created_at": "2013-11-21T00:00:00.000Z", - "_age_weeks": 471, - "_stars_per_week": 26.63, + "_age_weeks": 473, + "_stars_per_week": 26.67, + "_pop_contributor_count": 201, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "hextechnologies", + "netflix", + "plotly" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.52, + "_pop_updated_issues_count": 166, + "_pop_closed_issues_count": 40, + "_pop_created_since_days": 110, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 166.0, + "_pop_comment_count": 236.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 2044, + "_pop_score": 60.49, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/plotly/plotly.py/master/README.md", "_readme_localurl": "plotly~plotly.py~README.md", @@ -4469,9 +6711,9 @@ "description": null, "_repopath": "jupyterlab/jupyterlab", "_reponame": "jupyterlab", - "_stars": 12496, - "_forks": 2506, - "_watches": 312, + "_stars": 12515, + "_forks": 2511, + "_watches": 311, "_topics": [ "jupyterlab", "jupyter" @@ -4480,11 +6722,36 @@ "_homepage": "https://jupyterlab.readthedocs.io/", "_description": "JupyterLab computational environment.", "_organization": "jupyterlab", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2016-06-03T00:00:00.000Z", - "_age_weeks": 339, - "_stars_per_week": 36.78, + "_age_weeks": 341, + "_stars_per_week": 36.65, + "_pop_contributor_count": 517, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "coiled", + "databricks", + "jupyterquantstack", + "mongodb", + "quantstack" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 15.75, + "_pop_updated_issues_count": 777, + "_pop_closed_issues_count": 555, + "_pop_created_since_days": 80, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 53, + "_pop_recent_releases_estimated_tags": 5006, + "_pop_recent_releases_adjusted_count": 53, + "_pop_issue_count": 777.0, + "_pop_comment_count": 1800.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 5103, + "_pop_score": 76.86, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jupyterlab/jupyterlab/master/README.md", "_readme_localurl": "jupyterlab~jupyterlab~README.md", @@ -4510,9 +6777,9 @@ "description": null, "_repopath": "microsoft/nni", "_reponame": "nni", - "_stars": 12291, - "_forks": 1725, - "_watches": 281, + "_stars": 12327, + "_forks": 1729, + "_watches": 282, "_topics": [ "automl", "deep-learning", @@ -4539,11 +6806,32 @@ "_homepage": "https://nni.readthedocs.io", "_description": "nni: An open source AutoML toolkit for automate machine learning lifecycle, including feature engineering, neural architecture search, model compression and hyper-parameter tuning.", "_organization": "microsoft", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2018-06-01T00:00:00.000Z", - "_age_weeks": 235, - "_stars_per_week": 52.14, + "_age_weeks": 237, + "_stars_per_week": 51.92, + "_pop_contributor_count": 185, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "microsoft" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.79, + "_pop_updated_issues_count": 212, + "_pop_closed_issues_count": 115, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 213.0, + "_pop_comment_count": 379.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 186, + "_pop_score": 55.62, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/microsoft/nni/master/README.md", "_readme_localurl": "microsoft~nni~README.md", @@ -4566,9 +6854,9 @@ "description": null, "_repopath": "flairnlp/flair", "_reponame": "flair", - "_stars": 12280, - "_forks": 1972, - "_watches": 204, + "_stars": 12300, + "_forks": 1977, + "_watches": 206, "_topics": [ "pytorch", "nlp", @@ -4583,11 +6871,34 @@ "_homepage": "", "_description": "flair: A very simple framework for state-of-the-art Natural Language Processing (NLP)", "_organization": "flairnlp", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2018-06-11T00:00:00.000Z", - "_age_weeks": 234, - "_stars_per_week": 52.41, + "_age_weeks": 236, + "_stars_per_week": 52.12, + "_pop_contributor_count": 235, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "humboldtuniversit\u00e4t", + "rasahq", + "researchindustrialsystemsengineering(rise)" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 11.98, + "_pop_updated_issues_count": 195, + "_pop_closed_issues_count": 127, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 195.0, + "_pop_comment_count": 260.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 254, + "_pop_score": 57.84, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/flairnlp/flair/master/README.md", "_readme_localurl": "flairnlp~flair~README.md", @@ -4610,47 +6921,6 @@ "flairnlp~flair~Pipfile" ] }, - { - "index": 575, - "category": "perf", - "githuburl": "https://github.com/pybind/pybind11", - "featured": null, - "links": null, - "description": null, - "_repopath": "pybind/pybind11", - "_reponame": "pybind11", - "_stars": 11937, - "_forks": 1727, - "_watches": 247, - "_topics": [ - "python", - "bindings" - ], - "_language": "C++", - "_homepage": "https://pybind11.readthedocs.io/", - "_description": "pybind11: Seamless operability between C++11 and Python", - "_organization": "pybind", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2015-07-05T00:00:00.000Z", - "_age_weeks": 387, - "_stars_per_week": 30.81, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pybind/pybind11/master/README.rst", - "_readme_localurl": "pybind~pybind11~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pybind/pybind11/master/setup.py", - "https://raw.githubusercontent.com/pybind/pybind11/master/pyproject.toml" - ], - "_requirements_localurls": [ - "pybind~pybind11~setup.py", - "pybind~pybind11~pyproject.toml" - ] - }, { "index": 281, "category": "util", @@ -4660,9 +6930,9 @@ "description": null, "_repopath": "squidfunk/mkdocs-material", "_reponame": "mkdocs-material", - "_stars": 11935, - "_forks": 2641, - "_watches": 112, + "_stars": 12080, + "_forks": 2664, + "_watches": 110, "_topics": [ "mkdocs", "theme", @@ -4675,11 +6945,33 @@ "_homepage": "https://squidfunk.github.io/mkdocs-material/", "_description": "mkdocs-material: Documentation that simply works", "_organization": "squidfunk", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2016-01-28T00:00:00.000Z", - "_age_weeks": 357, - "_stars_per_week": 33.35, + "_age_weeks": 359, + "_stars_per_week": 33.6, + "_pop_contributor_count": 173, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "stylezen", + "trimble-oss" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 14.37, + "_pop_updated_issues_count": 245, + "_pop_closed_issues_count": 232, + "_pop_created_since_days": 84, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 58, + "_pop_recent_releases_estimated_tags": 43, + "_pop_recent_releases_adjusted_count": 58, + "_pop_issue_count": 245.0, + "_pop_comment_count": 619.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 13300, + "_pop_score": 70.98, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/README.md", "_readme_localurl": "squidfunk~mkdocs-material~README.md", @@ -4699,6 +6991,70 @@ "squidfunk~mkdocs-material~pyproject.toml" ] }, + { + "index": 575, + "category": "perf", + "githuburl": "https://github.com/pybind/pybind11", + "featured": null, + "links": null, + "description": null, + "_repopath": "pybind/pybind11", + "_reponame": "pybind11", + "_stars": 11971, + "_forks": 1736, + "_watches": 247, + "_topics": [ + "python", + "bindings" + ], + "_language": "C++", + "_homepage": "https://pybind11.readthedocs.io/", + "_description": "pybind11: Seamless operability between C++11 and Python", + "_organization": "pybind", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2015-07-05T00:00:00.000Z", + "_age_weeks": 389, + "_stars_per_week": 30.76, + "_pop_contributor_count": 312, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "epfl", + "lumicks", + "princetonuniversity" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.27, + "_pop_updated_issues_count": 230, + "_pop_closed_issues_count": 176, + "_pop_created_since_days": 91, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 230.0, + "_pop_comment_count": 886.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.9, + "_pop_dependents_count": 1836, + "_pop_score": 67.65, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pybind/pybind11/master/README.rst", + "_readme_localurl": "pybind~pybind11~README.rst", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pybind/pybind11/master/setup.py", + "https://raw.githubusercontent.com/pybind/pybind11/master/pyproject.toml" + ], + "_requirements_localurls": [ + "pybind~pybind11~setup.py", + "pybind~pybind11~pyproject.toml" + ] + }, { "index": 52, "category": "graph", @@ -4708,8 +7064,8 @@ "description": null, "_repopath": "networkx/networkx", "_reponame": "networkx", - "_stars": 11918, - "_forks": 2797, + "_stars": 11960, + "_forks": 2803, "_watches": 276, "_topics": [ "python", @@ -4724,11 +7080,32 @@ "_homepage": "https://networkx.org", "_description": "networkx: Network Analysis in Python", "_organization": "networkx", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2010-09-06T00:00:00.000Z", - "_age_weeks": 639, - "_stars_per_week": 18.64, + "_age_weeks": 641, + "_stars_per_week": 18.66, + "_pop_contributor_count": 636, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ucberkeley" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 9.06, + "_pop_updated_issues_count": 390, + "_pop_closed_issues_count": 241, + "_pop_created_since_days": 150, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 16, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 16, + "_pop_issue_count": 390.0, + "_pop_comment_count": 500.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 957, + "_pop_score": 65.75, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/networkx/networkx/master/README.rst", "_readme_localurl": "networkx~networkx~README.rst", @@ -4751,9 +7128,9 @@ "description": null, "_repopath": "samuelcolvin/pydantic", "_reponame": "pydantic", - "_stars": 11851, - "_forks": 1103, - "_watches": 89, + "_stars": 11924, + "_forks": 1113, + "_watches": 88, "_topics": [ "validation", "parsing", @@ -4771,11 +7148,34 @@ "_homepage": "https://docs.pydantic.dev", "_description": "pydantic: Data parsing and validation using Python type hints", "_organization": "samuelcolvin", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2017-05-03T00:00:00.000Z", - "_age_weeks": 292, - "_stars_per_week": 40.59, + "_age_weeks": 293, + "_stars_per_week": 40.6, + "_pop_contributor_count": 333, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "pydantic", + "pyupio", + "toucantoco" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.4, + "_pop_updated_issues_count": 340, + "_pop_closed_issues_count": 204, + "_pop_created_since_days": 68, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 17, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 340.0, + "_pop_comment_count": 668.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 1774, + "_pop_score": 66.62, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/samuelcolvin/pydantic/master/README.md", "_readme_localurl": "samuelcolvin~pydantic~README.md", @@ -4801,8 +7201,8 @@ "description": null, "_repopath": "allenai/allennlp", "_reponame": "allennlp", - "_stars": 11320, - "_forks": 2230, + "_stars": 11332, + "_forks": 2231, "_watches": 280, "_topics": [ "pytorch", @@ -4816,11 +7216,32 @@ "_homepage": "http://www.allennlp.org", "_description": "allennlp: An open-source NLP research library, built on PyTorch.", "_organization": "allenai", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-22T00:00:00.000Z", "_created_at": "2017-05-15T00:00:00.000Z", - "_age_weeks": 290, - "_stars_per_week": 39.0, + "_age_weeks": 292, + "_stars_per_week": 38.81, + "_pop_contributor_count": 265, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "microsoftsemanticmachines" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.6, + "_pop_updated_issues_count": 36, + "_pop_closed_issues_count": 32, + "_pop_created_since_days": 68, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 36.0, + "_pop_comment_count": 98.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 331, + "_pop_score": 53.48, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/allenai/allennlp/master/README.md", "_readme_localurl": "allenai~allennlp~README.md", @@ -4837,47 +7258,6 @@ "allenai~allennlp~pyproject.toml" ] }, - { - "index": 105, - "category": "nlp", - "githuburl": "https://github.com/nltk/nltk", - "featured": null, - "links": null, - "description": null, - "_repopath": "nltk/nltk", - "_reponame": "nltk", - "_stars": 11291, - "_forks": 2665, - "_watches": 469, - "_topics": [ - "nltk", - "python", - "nlp", - "natural-language-processing", - "machine-learning" - ], - "_language": "Python", - "_homepage": "https://www.nltk.org", - "_description": "NLTK Source", - "_organization": "nltk", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2009-09-07T00:00:00.000Z", - "_age_weeks": 691, - "_stars_per_week": 16.33, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nltk/nltk/master/README.md", - "_readme_localurl": "nltk~nltk~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/nltk/nltk/master/setup.py" - ], - "_requirements_localurls": [ - "nltk~nltk~setup.py" - ] - }, { "index": 425, "category": "ml-dl", @@ -4887,8 +7267,8 @@ "description": null, "_repopath": "albumentations-team/albumentations", "_reponame": "albumentations", - "_stars": 11273, - "_forks": 1442, + "_stars": 11325, + "_forks": 1447, "_watches": 124, "_topics": [ "image-augmentation", @@ -4908,11 +7288,33 @@ "_homepage": "https://albumentations.ai", "_description": "albumentations: Fast image augmentation library and an easy-to-use wrapper around other libraries. Documentation: https://albumentations.ai/docs/ Paper about the library: https://www.mdpi.com/2078-2489/11/2/125", "_organization": "albumentations-team", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-24T00:00:00.000Z", "_created_at": "2018-06-06T00:00:00.000Z", - "_age_weeks": 235, - "_stars_per_week": 47.97, + "_age_weeks": 236, + "_stars_per_week": 47.84, + "_pop_contributor_count": 123, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "deci-ai", + "ternaus.com" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.29, + "_pop_updated_issues_count": 95, + "_pop_closed_issues_count": 40, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 95.0, + "_pop_comment_count": 133.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 24, + "_pop_score": 45.97, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/albumentations-team/albumentations/master/README.md", "_readme_localurl": "albumentations-team~albumentations~README.md", @@ -4927,33 +7329,67 @@ ] }, { - "index": 242, - "category": "ml", - "githuburl": "https://github.com/deepmind/deepmind-research", + "index": 105, + "category": "nlp", + "githuburl": "https://github.com/nltk/nltk", "featured": null, "links": null, "description": null, - "_repopath": "deepmind/deepmind-research", - "_reponame": "deepmind-research", - "_stars": 11153, - "_forks": 2291, - "_watches": 322, - "_topics": [], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "deepmind-research: This repository contains implementations and illustrative code to accompany DeepMind publications", - "_organization": "deepmind", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-10-24T00:00:00.000Z", - "_created_at": "2019-01-15T00:00:00.000Z", - "_age_weeks": 203, - "_stars_per_week": 54.9, + "_repopath": "nltk/nltk", + "_reponame": "nltk", + "_stars": 11321, + "_forks": 2671, + "_watches": 469, + "_topics": [ + "nltk", + "python", + "nlp", + "natural-language-processing", + "machine-learning" + ], + "_language": "Python", + "_homepage": "https://www.nltk.org", + "_description": "NLTK Source", + "_organization": "nltk", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", + "_created_at": "2009-09-07T00:00:00.000Z", + "_age_weeks": 693, + "_stars_per_week": 16.34, + "_pop_contributor_count": 435, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "googleresearch", + "zytedata,scrapinghub" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.29, + "_pop_updated_issues_count": 66, + "_pop_closed_issues_count": 52, + "_pop_created_since_days": 162, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 66.0, + "_pop_comment_count": 154.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 4758, + "_pop_score": 64.34, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/deepmind/deepmind-research/master/README.md", - "_readme_localurl": "deepmind~deepmind-research~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/nltk/nltk/master/README.md", + "_readme_localurl": "nltk~nltk~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/nltk/nltk/master/setup.py" + ], + "_requirements_localurls": [ + "nltk~nltk~setup.py" + ] }, { "index": 346, @@ -4964,9 +7400,9 @@ "description": null, "_repopath": "gradio-app/gradio", "_reponame": "gradio", - "_stars": 11064, - "_forks": 697, - "_watches": 87, + "_stars": 11301, + "_forks": 717, + "_watches": 88, "_topics": [ "machine-learning", "models", @@ -4987,11 +7423,32 @@ "_homepage": "http://www.gradio.app", "_description": "gradio: Create UIs for your machine learning model in Python in 3 minutes", "_organization": "gradio-app", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2018-12-19T00:00:00.000Z", - "_age_weeks": 207, - "_stars_per_week": 53.45, + "_age_weeks": 208, + "_stars_per_week": 54.15, + "_pop_contributor_count": 118, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "pennstate" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 29.58, + "_pop_updated_issues_count": 698, + "_pop_closed_issues_count": 489, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 75, + "_pop_recent_releases_estimated_tags": 19, + "_pop_recent_releases_adjusted_count": 75, + "_pop_issue_count": 698.0, + "_pop_comment_count": 1859.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 794, + "_pop_score": 64.23, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/gradio-app/gradio/master/README.md", "_readme_localurl": "gradio-app~gradio~README.md", @@ -5005,6 +7462,56 @@ "gradio-app~gradio~setup.py" ] }, + { + "index": 242, + "category": "ml", + "githuburl": "https://github.com/deepmind/deepmind-research", + "featured": null, + "links": null, + "description": null, + "_repopath": "deepmind/deepmind-research", + "_reponame": "deepmind-research", + "_stars": 11213, + "_forks": 2300, + "_watches": 325, + "_topics": [], + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "deepmind-research: This repository contains implementations and illustrative code to accompany DeepMind publications", + "_organization": "deepmind", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-10-24T00:00:00.000Z", + "_created_at": "2019-01-15T00:00:00.000Z", + "_age_weeks": 204, + "_stars_per_week": 54.74, + "_pop_contributor_count": 91, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "deepmind" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.77, + "_pop_updated_issues_count": 37, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 48, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 37.0, + "_pop_comment_count": 26.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 7, + "_pop_score": 33.55, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/deepmind/deepmind-research/master/README.md", + "_readme_localurl": "deepmind~deepmind-research~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 320, "category": "gui", @@ -5014,9 +7521,9 @@ "description": null, "_repopath": "pysimplegui/pysimplegui", "_reponame": "PySimpleGUI", - "_stars": 10910, - "_forks": 1623, - "_watches": 219, + "_stars": 10984, + "_forks": 1632, + "_watches": 220, "_topics": [ "pysimplegui", "gui-framework", @@ -5043,11 +7550,33 @@ "_homepage": "", "_description": "PySimpleGUI: Launched in 2018. It's 2022 and PySimpleGUI is actively developed & supported. Create complex windows simply. Supports tkinter, Qt, WxPython, Remi (in browser). Create GUI applications trivially with a full set of widgets. Multi-Window applications are also simple. 3.4 to 3.11 supported. 325+ Demo programs & Cookbook for rapid start. Extensive documentation. Examples for Machine Learning(OpenCV Integration, Chatterbot), Rainmeter-like Desktop Widgets, Matplotlib + Pyplot integration, add GUI to command line scripts, PDF & Image Viewer. For both beginning and advanced programmers. docs - PySimpleGUI.org GitHub - PySimpleGUI.com. The Minecraft of GUIs - simple to complex... does them all.", "_organization": "pysimplegui", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2018-07-11T00:00:00.000Z", - "_age_weeks": 230, - "_stars_per_week": 47.43, + "_age_weeks": 231, + "_stars_per_week": 47.4, + "_pop_contributor_count": 18, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "netperfect", + "pysimplegui" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 9.48, + "_pop_updated_issues_count": 242, + "_pop_closed_issues_count": 202, + "_pop_created_since_days": 54, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 242.0, + "_pop_comment_count": 689.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 67, + "_pop_score": 51.25, "_readme_filename": "readme.md", "_readme_giturl": "https://raw.githubusercontent.com/pysimplegui/pysimplegui/master/readme.md", "_readme_localurl": "pysimplegui~pysimplegui~readme.md", @@ -5070,9 +7599,9 @@ "description": null, "_repopath": "dmlc/dgl", "_reponame": "dgl", - "_stars": 10816, - "_forks": 2633, - "_watches": 175, + "_stars": 10871, + "_forks": 2643, + "_watches": 174, "_topics": [ "deep-learning", "graph-neural-networks" @@ -5081,11 +7610,36 @@ "_homepage": "http://dgl.ai", "_description": "dgl: Python package built to ease deep learning on graph, on top of existing DL frameworks.", "_organization": "dmlc", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2018-04-20T00:00:00.000Z", - "_age_weeks": 241, - "_stars_per_week": 44.75, + "_age_weeks": 243, + "_stars_per_week": 44.66, + "_pop_contributor_count": 240, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "aws", + "awsailabshanghai", + "awsshanghai", + "newyorkuniversity", + "tensorchord" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 11.92, + "_pop_updated_issues_count": 617, + "_pop_closed_issues_count": 452, + "_pop_created_since_days": 57, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 615.0, + "_pop_comment_count": 3148.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 5.1, + "_pop_dependents_count": 47, + "_pop_score": 65.25, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/dmlc/dgl/master/README.md", "_readme_localurl": "dmlc~dgl~README.md", @@ -5099,37 +7653,6 @@ "dmlc~dgl~pyproject.toml" ] }, - { - "index": 1, - "category": "data", - "githuburl": "https://github.com/apache/arrow", - "featured": null, - "links": null, - "description": null, - "_repopath": "apache/arrow", - "_reponame": "arrow", - "_stars": 10747, - "_forks": 2638, - "_watches": 345, - "_topics": [ - "arrow" - ], - "_language": "C++", - "_homepage": "https://arrow.apache.org/", - "_description": "arrow: Apache Arrow is a multi-language toolbox for accelerated data interchange and in-memory processing", - "_organization": "apache", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2016-02-17T00:00:00.000Z", - "_age_weeks": 355, - "_stars_per_week": 30.27, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/apache/arrow/master/README.md", - "_readme_localurl": "apache~arrow~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 122, "category": "data", @@ -5139,8 +7662,8 @@ "description": null, "_repopath": "iterative/dvc", "_reponame": "dvc", - "_stars": 10746, - "_forks": 1006, + "_stars": 10804, + "_forks": 1010, "_watches": 136, "_topics": [ "data-science", @@ -5158,11 +7681,33 @@ "_homepage": "https://dvc.org", "_description": "dvc: \ud83e\udd89Data Version Control | Git for Data & Models | ML Experiments Management", "_organization": "iterative", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2017-03-04T00:00:00.000Z", - "_age_weeks": 300, - "_stars_per_week": 35.75, + "_age_weeks": 302, + "_stars_per_week": 35.74, + "_pop_contributor_count": 276, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "iterative", + "iterative.ai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 19.79, + "_pop_updated_issues_count": 520, + "_pop_closed_issues_count": 371, + "_pop_created_since_days": 70, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 54, + "_pop_recent_releases_estimated_tags": 73, + "_pop_recent_releases_adjusted_count": 54, + "_pop_issue_count": 519.0, + "_pop_comment_count": 1066.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 3399, + "_pop_score": 70.22, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/iterative/dvc/master/README.rst", "_readme_localurl": "iterative~dvc~README.rst", @@ -5179,6 +7724,61 @@ "iterative~dvc~pyproject.toml" ] }, + { + "index": 1, + "category": "data", + "githuburl": "https://github.com/apache/arrow", + "featured": null, + "links": null, + "description": null, + "_repopath": "apache/arrow", + "_reponame": "arrow", + "_stars": 10801, + "_forks": 2663, + "_watches": 345, + "_topics": [ + "arrow" + ], + "_language": "C++", + "_homepage": "https://arrow.apache.org/", + "_description": "arrow: Apache Arrow is a multi-language toolbox for accelerated data interchange and in-memory processing", + "_organization": "apache", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_created_at": "2016-02-17T00:00:00.000Z", + "_age_weeks": 356, + "_stars_per_week": 30.28, + "_pop_contributor_count": 976, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "clear-code", + "quantco", + "voltron-data/ursa-computing", + "voltrondata" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 41.44, + "_pop_updated_issues_count": 1046, + "_pop_closed_issues_count": 764, + "_pop_created_since_days": 83, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 1046.0, + "_pop_comment_count": 5523.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 5.3, + "_pop_dependents_count": 15514, + "_pop_score": 82.95, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/apache/arrow/master/README.md", + "_readme_localurl": "apache~arrow~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 120, "category": "ml-ops", @@ -5188,9 +7788,9 @@ "description": null, "_repopath": "prefecthq/prefect", "_reponame": "prefect", - "_stars": 10618, - "_forks": 1069, - "_watches": 153, + "_stars": 10681, + "_forks": 1084, + "_watches": 152, "_topics": [ "python", "workflow", @@ -5212,11 +7812,33 @@ "_homepage": "https://prefect.io", "_description": "prefect: The easiest way to coordinate your dataflow", "_organization": "prefecthq", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2018-06-29T00:00:00.000Z", - "_age_weeks": 231, - "_stars_per_week": 45.82, + "_age_weeks": 233, + "_stars_per_week": 45.76, + "_pop_contributor_count": 100, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "prefect", + "prefecthq" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 131.9, + "_pop_updated_issues_count": 1305, + "_pop_closed_issues_count": 920, + "_pop_created_since_days": 54, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 47, + "_pop_recent_releases_estimated_tags": 36, + "_pop_recent_releases_adjusted_count": 47, + "_pop_issue_count": 1308.0, + "_pop_comment_count": 2629.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 362, + "_pop_score": 67.08, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/prefecthq/prefect/master/README.md", "_readme_localurl": "prefecthq~prefect~README.md", @@ -5236,6 +7858,80 @@ "prefecthq~prefect~pyproject.toml" ] }, + { + "index": 192, + "category": "template", + "githuburl": "https://github.com/tiangolo/full-stack-fastapi-postgresql", + "featured": null, + "links": null, + "description": null, + "_repopath": "tiangolo/full-stack-fastapi-postgresql", + "_reponame": "full-stack-fastapi-postgresql", + "_stars": 10628, + "_forks": 1932, + "_watches": 172, + "_topics": [ + "python", + "python3", + "json", + "json-schema", + "docker", + "postgresql", + "frontend", + "backend", + "fastapi", + "traefik", + "letsencrypt", + "swagger", + "celery", + "jwt", + "vue", + "vuex", + "cookiecutter", + "openapi", + "openapi3", + "pgadmin" + ], + "_language": "Python", + "_homepage": null, + "_description": "full-stack-fastapi-postgresql: Full stack, modern web application generator. Using FastAPI, PostgreSQL as database, Docker, automatic HTTPS and more.", + "_organization": "tiangolo", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2020-06-05T00:00:00.000Z", + "_created_at": "2019-02-23T00:00:00.000Z", + "_age_weeks": 199, + "_stars_per_week": 53.33, + "_pop_contributor_count": 17, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cortexia", + "formlogic", + "intelliatherapeutics", + "messagg" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 152, + "_pop_closed_issues_count": 51, + "_pop_created_since_days": 46, + "_pop_updated_since_days": 31, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 152.0, + "_pop_comment_count": 84.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 44, + "_pop_score": 33.81, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/tiangolo/full-stack-fastapi-postgresql/master/README.md", + "_readme_localurl": "tiangolo~full-stack-fastapi-postgresql~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 79, "category": "ml", @@ -5245,9 +7941,9 @@ "description": null, "_repopath": "scipy/scipy", "_reponame": "scipy", - "_stars": 10560, - "_forks": 4498, - "_watches": 339, + "_stars": 10608, + "_forks": 4514, + "_watches": 341, "_topics": [ "python", "scipy", @@ -5259,11 +7955,32 @@ "_homepage": "https://scipy.org", "_description": "SciPy library main repository", "_organization": "scipy", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2011-03-09T00:00:00.000Z", - "_age_weeks": 613, - "_stars_per_week": 17.23, + "_age_weeks": 614, + "_stars_per_week": 17.26, + "_pop_contributor_count": 1401, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "quansight" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 30.5, + "_pop_updated_issues_count": 1144, + "_pop_closed_issues_count": 738, + "_pop_created_since_days": 143, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 1144.0, + "_pop_comment_count": 2983.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 7282, + "_pop_score": 76.57, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/scipy/scipy/master/README.rst", "_readme_localurl": "scipy~scipy~README.rst", @@ -5280,49 +7997,6 @@ "scipy~scipy~pyproject.toml" ] }, - { - "index": 218, - "category": "ml", - "githuburl": "https://github.com/spotify/annoy", - "featured": null, - "links": null, - "description": null, - "_repopath": "spotify/annoy", - "_reponame": "annoy", - "_stars": 10540, - "_forks": 1062, - "_watches": 325, - "_topics": [ - "c-plus-plus", - "python", - "nearest-neighbor-search", - "locality-sensitive-hashing", - "approximate-nearest-neighbor-search", - "golang", - "lua" - ], - "_language": "C++", - "_homepage": null, - "_description": "annoy: Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk", - "_organization": "spotify", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-10-27T00:00:00.000Z", - "_created_at": "2013-04-01T00:00:00.000Z", - "_age_weeks": 505, - "_stars_per_week": 20.86, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/spotify/annoy/master/README.rst", - "_readme_localurl": "spotify~annoy~README.rst", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/spotify/annoy/master/setup.py" - ], - "_requirements_localurls": [ - "spotify~annoy~setup.py" - ] - }, { "index": 11, "category": "perf", @@ -5332,9 +8006,9 @@ "description": null, "_repopath": "dask/dask", "_reponame": "dask", - "_stars": 10538, - "_forks": 1567, - "_watches": 217, + "_stars": 10578, + "_forks": 1575, + "_watches": 216, "_topics": [ "dask", "python", @@ -5348,11 +8022,33 @@ "_homepage": "https://dask.org", "_description": "dask: Parallel computing with task scheduling", "_organization": "dask", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2015-01-04T00:00:00.000Z", - "_age_weeks": 413, - "_stars_per_week": 25.49, + "_age_weeks": 415, + "_stars_per_week": 25.48, + "_pop_contributor_count": 570, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "coiled", + "voltrondata" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 11.13, + "_pop_updated_issues_count": 346, + "_pop_closed_issues_count": 211, + "_pop_created_since_days": 97, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 32, + "_pop_recent_releases_adjusted_count": 32, + "_pop_issue_count": 346.0, + "_pop_comment_count": 856.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 3107, + "_pop_score": 71.78, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/dask/dask/master/README.rst", "_readme_localurl": "dask~dask~README.rst", @@ -5367,54 +8063,68 @@ ] }, { - "index": 192, - "category": "template", - "githuburl": "https://github.com/tiangolo/full-stack-fastapi-postgresql", + "index": 218, + "category": "ml", + "githuburl": "https://github.com/spotify/annoy", "featured": null, "links": null, "description": null, - "_repopath": "tiangolo/full-stack-fastapi-postgresql", - "_reponame": "full-stack-fastapi-postgresql", - "_stars": 10525, - "_forks": 1908, - "_watches": 171, + "_repopath": "spotify/annoy", + "_reponame": "annoy", + "_stars": 10574, + "_forks": 1066, + "_watches": 325, "_topics": [ + "c-plus-plus", "python", - "python3", - "json", - "json-schema", - "docker", - "postgresql", - "frontend", - "backend", - "fastapi", - "traefik", - "letsencrypt", - "swagger", - "celery", - "jwt", - "vue", - "vuex", - "cookiecutter", - "openapi", - "openapi3", - "pgadmin" + "nearest-neighbor-search", + "locality-sensitive-hashing", + "approximate-nearest-neighbor-search", + "golang", + "lua" ], - "_language": "Python", + "_language": "C++", "_homepage": null, - "_description": "full-stack-fastapi-postgresql: Full stack, modern web application generator. Using FastAPI, PostgreSQL as database, Docker, automatic HTTPS and more.", - "_organization": "tiangolo", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2020-06-05T00:00:00.000Z", - "_created_at": "2019-02-23T00:00:00.000Z", - "_age_weeks": 197, - "_stars_per_week": 53.27, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/tiangolo/full-stack-fastapi-postgresql/master/README.md", - "_readme_localurl": "tiangolo~full-stack-fastapi-postgresql~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_description": "annoy: Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk", + "_organization": "spotify", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-10-27T00:00:00.000Z", + "_created_at": "2013-04-01T00:00:00.000Z", + "_age_weeks": 507, + "_stars_per_week": 20.86, + "_pop_contributor_count": 82, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.12, + "_pop_updated_issues_count": 17, + "_pop_closed_issues_count": 9, + "_pop_created_since_days": 118, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 17.0, + "_pop_comment_count": 28.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 66, + "_pop_score": 41.25, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/spotify/annoy/master/README.rst", + "_readme_localurl": "spotify~annoy~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/spotify/annoy/master/setup.py" + ], + "_requirements_localurls": [ + "spotify~annoy~setup.py" + ] }, { "index": 857, @@ -5425,8 +8135,8 @@ "description": null, "_repopath": "visgl/deck.gl", "_reponame": "deck.gl", - "_stars": 10454, - "_forks": 1876, + "_stars": 10477, + "_forks": 1892, "_watches": 1730, "_topics": [ "webgl", @@ -5441,11 +8151,32 @@ "_homepage": "https://deck.gl", "_description": "deck.gl: WebGL2 powered visualization framework", "_organization": "visgl", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2015-12-15T00:00:00.000Z", - "_age_weeks": 364, - "_stars_per_week": 28.71, + "_age_weeks": 365, + "_stars_per_week": 28.64, + "_pop_contributor_count": 209, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "foursquare" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.31, + "_pop_updated_issues_count": 185, + "_pop_closed_issues_count": 127, + "_pop_created_since_days": 85, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 59, + "_pop_recent_releases_estimated_tags": 74, + "_pop_recent_releases_adjusted_count": 59, + "_pop_issue_count": 186.0, + "_pop_comment_count": 250.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 273, + "_pop_score": 59.15, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/visgl/deck.gl/master/README.md", "_readme_localurl": "visgl~deck.gl~README.md", @@ -5453,6 +8184,64 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, + { + "index": 718, + "category": "perf", + "githuburl": "https://github.com/pola-rs/polars", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "pola-rs/polars", + "_reponame": "polars", + "_stars": 10407, + "_forks": 553, + "_watches": 104, + "_topics": [ + "dataframe-library", + "dataframe", + "dataframes", + "rust", + "arrow", + "python", + "out-of-core" + ], + "_language": "Rust", + "_homepage": "https://pola.rs/", + "_description": "polars: Fast multi-threaded, hybrid-streaming DataFrame library in Rust | Python | Node.js", + "_organization": "pola-rs", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_created_at": "2020-05-13T00:00:00.000Z", + "_age_weeks": 135, + "_stars_per_week": 76.68, + "_pop_contributor_count": 141, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "aertslab" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 39.65, + "_pop_updated_issues_count": 1083, + "_pop_closed_issues_count": 893, + "_pop_created_since_days": 32, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 26, + "_pop_recent_releases_estimated_tags": 129, + "_pop_recent_releases_adjusted_count": 26, + "_pop_issue_count": 1083.0, + "_pop_comment_count": 1784.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 102, + "_pop_score": 59.74, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pola-rs/polars/master/README.md", + "_readme_localurl": "pola-rs~polars~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 72, "category": "util", @@ -5462,8 +8251,8 @@ "description": null, "_repopath": "python-pillow/pillow", "_reponame": "Pillow", - "_stars": 10351, - "_forks": 1951, + "_stars": 10374, + "_forks": 1957, "_watches": 218, "_topics": [ "c", @@ -5479,25 +8268,45 @@ "_homepage": "https://python-pillow.org", "_description": "Pillow: The friendly PIL fork (Python Imaging Library)", "_organization": "python-pillow", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2012-07-24T00:00:00.000Z", - "_age_weeks": 541, - "_stars_per_week": 19.13, + "_age_weeks": 542, + "_stars_per_week": 19.11, + "_pop_contributor_count": 420, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "aclark.net", + "nordsoftware", + "uploadcare" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 19.37, + "_pop_updated_issues_count": 361, + "_pop_closed_issues_count": 295, + "_pop_created_since_days": 127, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 361.0, + "_pop_comment_count": 568.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 26551, + "_pop_score": 74.18, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/python-pillow/pillow/master/README.md", "_readme_localurl": "python-pillow~pillow~README.md", "_requirements_filenames": [ - "setup.py", - "Pipfile" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/python-pillow/pillow/master/setup.py", - "https://raw.githubusercontent.com/python-pillow/pillow/master/Pipfile" + "https://raw.githubusercontent.com/python-pillow/pillow/master/setup.py" ], "_requirements_localurls": [ - "python-pillow~pillow~setup.py", - "python-pillow~pillow~Pipfile" + "python-pillow~pillow~setup.py" ] }, { @@ -5509,19 +8318,41 @@ "description": null, "_repopath": "marcotcr/lime", "_reponame": "lime", - "_stars": 10276, - "_forks": 1685, + "_stars": 10294, + "_forks": 1693, "_watches": 272, "_topics": [], "_language": "JavaScript", "_homepage": "", "_description": "Lime: Explaining the predictions of any machine learning classifier", "_organization": "marcotcr", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2021-07-29T00:00:00.000Z", "_created_at": "2016-03-15T00:00:00.000Z", - "_age_weeks": 351, - "_stars_per_week": 29.26, + "_age_weeks": 352, + "_stars_per_week": 29.17, + "_pop_contributor_count": 61, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "related-sciences", + "system1" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 25, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 82, + "_pop_updated_since_days": 17, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 25.0, + "_pop_comment_count": 19.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 145, + "_pop_score": 38.35, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/marcotcr/lime/master/README.md", "_readme_localurl": "marcotcr~lime~README.md", @@ -5544,19 +8375,43 @@ "description": null, "_repopath": "facebookresearch/detr", "_reponame": "detr", - "_stars": 10186, - "_forks": 1844, - "_watches": 145, + "_stars": 10233, + "_forks": 1866, + "_watches": 146, "_topics": [], "_language": "Python", "_homepage": null, "_description": "detr: End-to-End Object Detection with Transformers", "_organization": "facebookresearch", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-03-07T00:00:00.000Z", "_created_at": "2020-05-26T00:00:00.000Z", - "_age_weeks": 132, - "_stars_per_week": 77.08, + "_age_weeks": 133, + "_stars_per_week": 76.45, + "_pop_contributor_count": 25, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "axera-tech", + "facebookaireseach", + "facebookairesearch", + "mtsai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 48, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 10, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 48.0, + "_pop_comment_count": 51.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 66, + "_pop_score": 34.75, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/detr/master/README.md", "_readme_localurl": "facebookresearch~detr~README.md", @@ -5579,8 +8434,8 @@ "description": null, "_repopath": "mwaskom/seaborn", "_reponame": "seaborn", - "_stars": 10146, - "_forks": 1677, + "_stars": 10172, + "_forks": 1678, "_watches": 252, "_topics": [ "python", @@ -5593,11 +8448,34 @@ "_homepage": "https://seaborn.pydata.org", "_description": "seaborn: Statistical data visualization in Python", "_organization": "mwaskom", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2012-06-18T00:00:00.000Z", - "_age_weeks": 546, - "_stars_per_week": 18.57, + "_age_weeks": 548, + "_stars_per_week": 18.56, + "_pop_contributor_count": 181, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bridgebioanalytics", + "coiled", + "universityofbritishcolumbia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.69, + "_pop_updated_issues_count": 146, + "_pop_closed_issues_count": 116, + "_pop_created_since_days": 128, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 146.0, + "_pop_comment_count": 305.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 522, + "_pop_score": 62.58, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/mwaskom/seaborn/master/README.md", "_readme_localurl": "mwaskom~seaborn~README.md", @@ -5620,9 +8498,9 @@ "description": null, "_repopath": "bulletphysics/bullet3", "_reponame": "bullet3", - "_stars": 10020, - "_forks": 2617, - "_watches": 406, + "_stars": 10043, + "_forks": 2620, + "_watches": 405, "_topics": [ "simulation", "robotics", @@ -5638,11 +8516,32 @@ "_homepage": "http://bulletphysics.org", "_description": "bullet3: Bullet Physics SDK: real-time collision detection and multi-physics simulation for VR, games, visual effects, robotics, machine learning etc.", "_organization": "bulletphysics", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-09-25T00:00:00.000Z", "_created_at": "2011-04-12T00:00:00.000Z", - "_age_weeks": 608, - "_stars_per_week": 16.48, + "_age_weeks": 609, + "_stars_per_week": 16.47, + "_pop_contributor_count": 299, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ucla" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.69, + "_pop_updated_issues_count": 55, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 142, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 55.0, + "_pop_comment_count": 34.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 2098, + "_pop_score": 51.53, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/bulletphysics/bullet3/master/README.md", "_readme_localurl": "bulletphysics~bullet3~README.md", @@ -5656,50 +8555,6 @@ "bulletphysics~bullet3~setup.py" ] }, - { - "index": 24, - "category": "ml", - "githuburl": "https://github.com/google/dopamine", - "featured": null, - "links": null, - "description": null, - "_repopath": "google/dopamine", - "_reponame": "dopamine", - "_stars": 9944, - "_forks": 1336, - "_watches": 441, - "_topics": [ - "rl", - "ml", - "ai", - "google", - "tensorflow" - ], - "_language": "Jupyter Notebook", - "_homepage": "https://github.com/google/dopamine", - "_description": "Dopamine is a research framework for fast prototyping of reinforcement learning algorithms. ", - "_organization": "google", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-28T00:00:00.000Z", - "_created_at": "2018-07-26T00:00:00.000Z", - "_age_weeks": 227, - "_stars_per_week": 43.64, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/google/dopamine/master/README.md", - "_readme_localurl": "google~dopamine~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/google/dopamine/master/requirements.txt", - "https://raw.githubusercontent.com/google/dopamine/master/setup.py" - ], - "_requirements_localurls": [ - "google~dopamine~requirements.txt", - "google~dopamine~setup.py" - ] - }, { "index": 173, "category": "term", @@ -5709,8 +8564,8 @@ "description": null, "_repopath": "tiangolo/typer", "_reponame": "typer", - "_stars": 9902, - "_forks": 396, + "_stars": 9986, + "_forks": 399, "_watches": 66, "_topics": [ "cli", @@ -5726,11 +8581,32 @@ "_homepage": "https://typer.tiangolo.com/", "_description": "Typer, build great CLIs. Easy to code. Based on Python type hints.", "_organization": "tiangolo", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-14T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2019-12-24T00:00:00.000Z", - "_age_weeks": 154, - "_stars_per_week": 64.24, + "_age_weeks": 155, + "_stars_per_week": 64.07, + "_pop_contributor_count": 32, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "lofidynamics" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.75, + "_pop_updated_issues_count": 183, + "_pop_closed_issues_count": 93, + "_pop_created_since_days": 36, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 183.0, + "_pop_comment_count": 342.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 381, + "_pop_score": 49.56, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tiangolo/typer/master/README.md", "_readme_localurl": "tiangolo~typer~README.md", @@ -5744,6 +8620,71 @@ "tiangolo~typer~pyproject.toml" ] }, + { + "index": 24, + "category": "ml", + "githuburl": "https://github.com/google/dopamine", + "featured": null, + "links": null, + "description": null, + "_repopath": "google/dopamine", + "_reponame": "dopamine", + "_stars": 9956, + "_forks": 1337, + "_watches": 440, + "_topics": [ + "rl", + "ml", + "ai", + "google", + "tensorflow" + ], + "_language": "Jupyter Notebook", + "_homepage": "https://github.com/google/dopamine", + "_description": "Dopamine is a research framework for fast prototyping of reinforcement learning algorithms. ", + "_organization": "google", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-11-28T00:00:00.000Z", + "_created_at": "2018-07-26T00:00:00.000Z", + "_age_weeks": 229, + "_stars_per_week": 43.37, + "_pop_contributor_count": 15, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.44, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 54, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 6.0, + "_pop_comment_count": 17.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 27, + "_pop_score": 33.55, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/google/dopamine/master/README.md", + "_readme_localurl": "google~dopamine~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/google/dopamine/master/requirements.txt", + "https://raw.githubusercontent.com/google/dopamine/master/setup.py" + ], + "_requirements_localurls": [ + "google~dopamine~requirements.txt", + "google~dopamine~setup.py" + ] + }, { "index": 60, "category": "pandas", @@ -5753,9 +8694,9 @@ "description": null, "_repopath": "pandas-profiling/pandas-profiling", "_reponame": "pandas-profiling", - "_stars": 9891, - "_forks": 1410, - "_watches": 152, + "_stars": 9944, + "_forks": 1413, + "_watches": 150, "_topics": [ "pandas-profiling", "pandas-dataframe", @@ -5782,11 +8723,32 @@ "_homepage": "https://pandas-profiling.ydata.ai", "_description": "pandas-profiling: Create HTML profiling reports from pandas DataFrame objects", "_organization": "pandas-profiling", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2016-01-09T00:00:00.000Z", - "_age_weeks": 360, - "_stars_per_week": 27.43, + "_age_weeks": 362, + "_stars_per_week": 27.45, + "_pop_contributor_count": 105, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "metamaze" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.54, + "_pop_updated_issues_count": 196, + "_pop_closed_issues_count": 144, + "_pop_created_since_days": 84, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 18, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 196.0, + "_pop_comment_count": 260.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 60, + "_pop_score": 50.62, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pandas-profiling/pandas-profiling/master/README.md", "_readme_localurl": "pandas-profiling~pandas-profiling~README.md", @@ -5812,9 +8774,9 @@ "description": null, "_repopath": "sympy/sympy", "_reponame": "sympy", - "_stars": 9861, - "_forks": 3781, - "_watches": 281, + "_stars": 9887, + "_forks": 3794, + "_watches": 283, "_topics": [ "python", "math", @@ -5826,11 +8788,33 @@ "_homepage": "https://sympy.org/", "_description": "sympy: A computer algebra system written in pure Python", "_organization": "sympy", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2010-04-30T00:00:00.000Z", - "_age_weeks": 657, + "_age_weeks": 659, "_stars_per_week": 14.99, + "_pop_contributor_count": 1186, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "gsitechnology", + "quansight" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 40.35, + "_pop_updated_issues_count": 914, + "_pop_closed_issues_count": 247, + "_pop_created_since_days": 154, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 914.0, + "_pop_comment_count": 1859.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 7939, + "_pop_score": 76.25, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/sympy/sympy/master/README.md", "_readme_localurl": "sympy~sympy~README.md", @@ -5853,8 +8837,8 @@ "description": null, "_repopath": "pyinstaller/pyinstaller", "_reponame": "pyinstaller", - "_stars": 9805, - "_forks": 1846, + "_stars": 9831, + "_forks": 1852, "_watches": 233, "_topics": [ "python", @@ -5870,11 +8854,32 @@ "_homepage": "http://www.pyinstaller.org", "_description": "pyinstaller: Freeze (package) Python programs into stand-alone executables", "_organization": "pyinstaller", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2011-11-23T00:00:00.000Z", - "_age_weeks": 576, + "_age_weeks": 577, "_stars_per_week": 17.02, + "_pop_contributor_count": 443, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "develers.r.l." + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.4, + "_pop_updated_issues_count": 6291, + "_pop_closed_issues_count": 6242, + "_pop_created_since_days": 135, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 6291.0, + "_pop_comment_count": 670.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.1, + "_pop_dependents_count": 2287, + "_pop_score": 66.5, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pyinstaller/pyinstaller/master/README.rst", "_readme_localurl": "pyinstaller~pyinstaller~README.rst", @@ -5903,9 +8908,9 @@ "description": null, "_repopath": "encode/httpx", "_reponame": "httpx", - "_stars": 9742, - "_forks": 636, - "_watches": 105, + "_stars": 9786, + "_forks": 640, + "_watches": 106, "_topics": [ "python", "http", @@ -5916,11 +8921,33 @@ "_homepage": "https://www.python-httpx.org/", "_description": "httpx: A next generation HTTP client for Python. \ud83e\udd8b", "_organization": "encode", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2019-04-04T00:00:00.000Z", - "_age_weeks": 191, - "_stars_per_week": 50.78, + "_age_weeks": 193, + "_stars_per_week": 50.55, + "_pop_contributor_count": 182, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "elastic", + "encodeoss" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.13, + "_pop_updated_issues_count": 130, + "_pop_closed_issues_count": 103, + "_pop_created_since_days": 45, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 20, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 130.0, + "_pop_comment_count": 242.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 2114, + "_pop_score": 59.61, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/encode/httpx/master/README.md", "_readme_localurl": "encode~httpx~README.md", @@ -5949,9 +8976,9 @@ "description": null, "_repopath": "bloomberg/memray", "_reponame": "memray", - "_stars": 9649, - "_forks": 263, - "_watches": 53, + "_stars": 9678, + "_forks": 267, + "_watches": 54, "_topics": [ "memory", "memory-leak", @@ -5966,11 +8993,33 @@ "_homepage": "https://bloomberg.github.io/memray/", "_description": "Memray is a memory profiler for Python", "_organization": "bloomberg", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-09T00:00:00.000Z", "_created_at": "2022-04-08T00:00:00.000Z", - "_age_weeks": 34, - "_stars_per_week": 277.95, + "_age_weeks": 36, + "_stars_per_week": 265.67, + "_pop_contributor_count": 22, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bloomberg", + "bloombergpythoninfrastructure" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.85, + "_pop_updated_issues_count": 60, + "_pop_closed_issues_count": 47, + "_pop_created_since_days": 8, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 17, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 60.0, + "_pop_comment_count": 73.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 3, + "_pop_score": 38.4, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/bloomberg/memray/master/README.md", "_readme_localurl": "bloomberg~memray~README.md", @@ -5996,19 +9045,41 @@ "description": null, "_repopath": "facebookresearch/parlai", "_reponame": "ParlAI", - "_stars": 9643, - "_forks": 1970, - "_watches": 289, + "_stars": 9672, + "_forks": 1974, + "_watches": 290, "_topics": [], "_language": "Python", "_homepage": "https://parl.ai", "_description": "ParlAI: A framework for training and evaluating AI models on a variety of openly available dialogue datasets.", "_organization": "facebookresearch", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2017-04-24T00:00:00.000Z", - "_age_weeks": 293, - "_stars_per_week": 32.88, + "_age_weeks": 295, + "_stars_per_week": 32.79, + "_pop_contributor_count": 204, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebookairesearch", + "facebookresearch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.13, + "_pop_updated_issues_count": 177, + "_pop_closed_issues_count": 138, + "_pop_created_since_days": 69, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 177.0, + "_pop_comment_count": 276.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 1804, + "_pop_score": 60.57, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/parlai/master/README.md", "_readme_localurl": "facebookresearch~parlai~README.md", @@ -6037,9 +9108,9 @@ "description": null, "_repopath": "jupyter/notebook", "_reponame": "notebook", - "_stars": 9602, - "_forks": 3982, - "_watches": 319, + "_stars": 9629, + "_forks": 3983, + "_watches": 320, "_topics": [ "closember", "jupyter", @@ -6050,11 +9121,35 @@ "_homepage": "https://jupyter-notebook.readthedocs.io/", "_description": "notebook: Jupyter Interactive Notebook", "_organization": "jupyter", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-11T00:00:00.000Z", "_created_at": "2015-04-09T00:00:00.000Z", - "_age_weeks": 399, - "_stars_per_week": 24.01, + "_age_weeks": 401, + "_stars_per_week": 23.98, + "_pop_contributor_count": 622, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazonwebservices", + "google", + "quansight-labs", + "simularesearchlaboratory" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 9.38, + "_pop_updated_issues_count": 222, + "_pop_closed_issues_count": 148, + "_pop_created_since_days": 94, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 19, + "_pop_recent_releases_estimated_tags": 30, + "_pop_recent_releases_adjusted_count": 19, + "_pop_issue_count": 222.0, + "_pop_comment_count": 373.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 97078, + "_pop_score": 78.17, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jupyter/notebook/master/README.md", "_readme_localurl": "jupyter~notebook~README.md", @@ -6071,43 +9166,6 @@ "jupyter~notebook~pyproject.toml" ] }, - { - "index": 718, - "category": "perf", - "githuburl": "https://github.com/pola-rs/polars", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "pola-rs/polars", - "_reponame": "polars", - "_stars": 9575, - "_forks": 532, - "_watches": 98, - "_topics": [ - "dataframe-library", - "dataframe", - "dataframes", - "rust", - "arrow", - "python", - "out-of-core" - ], - "_language": "Rust", - "_homepage": "https://pola.rs/", - "_description": "polars: Fast multi-threaded, hybrid-streaming DataFrame library in Rust | Python | Node.js", - "_organization": "pola-rs", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2020-05-13T00:00:00.000Z", - "_age_weeks": 134, - "_stars_per_week": 71.46, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pola-rs/polars/master/README.md", - "_readme_localurl": "pola-rs~polars~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 71, "category": "testing", @@ -6117,9 +9175,9 @@ "description": null, "_repopath": "pytest-dev/pytest", "_reponame": "pytest", - "_stars": 9564, - "_forks": 2210, - "_watches": 194, + "_stars": 9601, + "_forks": 2216, + "_watches": 195, "_topics": [ "unit-testing", "test", @@ -6131,11 +9189,35 @@ "_homepage": "https://pytest.org", "_description": "pytest: The pytest framework makes it easy to write small tests, yet scales to support complex functional testing", "_organization": "pytest-dev", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2015-06-15T00:00:00.000Z", - "_age_weeks": 390, - "_stars_per_week": 24.51, + "_age_weeks": 392, + "_stars_per_week": 24.49, + "_pop_contributor_count": 842, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "esss", + "freelancer,upforhire", + "merlinux", + "redhatinsights" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.56, + "_pop_updated_issues_count": 302, + "_pop_closed_issues_count": 217, + "_pop_created_since_days": 91, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 24, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 302.0, + "_pop_comment_count": 631.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 42749, + "_pop_score": 76.55, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest/master/README.rst", "_readme_localurl": "pytest-dev~pytest~README.rst", @@ -6161,8 +9243,8 @@ "description": null, "_repopath": "benfred/py-spy", "_reponame": "py-spy", - "_stars": 9415, - "_forks": 341, + "_stars": 9464, + "_forks": 344, "_watches": 107, "_topics": [ "profiler", @@ -6174,11 +9256,32 @@ "_homepage": "", "_description": "py-spy: Sampling profiler for Python programs", "_organization": "benfred", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-09T00:00:00.000Z", "_created_at": "2018-08-01T00:00:00.000Z", - "_age_weeks": 227, - "_stars_per_week": 41.48, + "_age_weeks": 228, + "_stars_per_week": 41.38, + "_pop_contributor_count": 31, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "nvidia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.58, + "_pop_updated_issues_count": 29, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 53, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 29.0, + "_pop_comment_count": 27.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 156, + "_pop_score": 41.81, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/benfred/py-spy/master/README.md", "_readme_localurl": "benfred~py-spy~README.md", @@ -6201,8 +9304,8 @@ "description": null, "_repopath": "pyodide/pyodide", "_reponame": "pyodide", - "_stars": 9376, - "_forks": 613, + "_stars": 9408, + "_forks": 616, "_watches": 124, "_topics": [ "python", @@ -6212,11 +9315,33 @@ "_homepage": "https://pyodide.org/en/stable/", "_description": "Pyodide is a Python distribution for the browser and Node.js based on WebAssembly", "_organization": "pyodide", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2018-02-23T00:00:00.000Z", - "_age_weeks": 249, - "_stars_per_week": 37.55, + "_age_weeks": 251, + "_stars_per_week": 37.42, + "_pop_contributor_count": 159, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "microsoft", + "mitmathdepartment" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 14.48, + "_pop_updated_issues_count": 288, + "_pop_closed_issues_count": 200, + "_pop_created_since_days": 59, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 15, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 289.0, + "_pop_comment_count": 724.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 60, + "_pop_score": 59.33, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pyodide/pyodide/master/README.md", "_readme_localurl": "pyodide~pyodide~README.md", @@ -6242,8 +9367,8 @@ "description": null, "_repopath": "pre-commit/pre-commit", "_reponame": "pre-commit", - "_stars": 9296, - "_forks": 686, + "_stars": 9355, + "_forks": 689, "_watches": 82, "_topics": [ "git", @@ -6256,11 +9381,33 @@ "_homepage": "https://pre-commit.com", "_description": "pre-commit: A framework for managing and maintaining multi-language pre-commit hooks.", "_organization": "pre-commit", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2014-03-13T00:00:00.000Z", - "_age_weeks": 455, - "_stars_per_week": 20.39, + "_age_weeks": 457, + "_stars_per_week": 20.44, + "_pop_contributor_count": 146, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "twitter", + "yelp" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.08, + "_pop_updated_issues_count": 155, + "_pop_closed_issues_count": 139, + "_pop_created_since_days": 107, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 20, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 155.0, + "_pop_comment_count": 361.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 1348, + "_pop_score": 60.67, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pre-commit/pre-commit/master/README.md", "_readme_localurl": "pre-commit~pre-commit~README.md", @@ -6274,47 +9421,6 @@ "pre-commit~pre-commit~setup.py" ] }, - { - "index": 155, - "category": "data", - "githuburl": "https://github.com/s0md3v/photon", - "featured": null, - "links": null, - "description": null, - "_repopath": "s0md3v/photon", - "_reponame": "Photon", - "_stars": 9197, - "_forks": 1358, - "_watches": 324, - "_topics": [ - "crawler", - "spider", - "python", - "osint", - "information-gathering" - ], - "_language": "Python", - "_homepage": "", - "_description": "Photon: Incredibly fast crawler designed for OSINT.", - "_organization": "s0md3v", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-03-16T00:00:00.000Z", - "_created_at": "2018-03-30T00:00:00.000Z", - "_age_weeks": 244, - "_stars_per_week": 37.58, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/s0md3v/photon/master/README.md", - "_readme_localurl": "s0md3v~photon~README.md", - "_requirements_filenames": [ - "requirements.txt" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/s0md3v/photon/master/requirements.txt" - ], - "_requirements_localurls": [ - "s0md3v~photon~requirements.txt" - ] - }, { "index": 315, "category": "gui", @@ -6324,9 +9430,9 @@ "description": null, "_repopath": "hoffstadt/dearpygui", "_reponame": "DearPyGui", - "_stars": 9195, - "_forks": 487, - "_watches": 135, + "_stars": 9255, + "_forks": 496, + "_watches": 136, "_topics": [ "cpp", "python", @@ -6348,11 +9454,33 @@ "_homepage": "https://dearpygui.readthedocs.io/en/latest/", "_description": "DearPyGui: Dear PyGui: A fast and powerful Graphical User Interface Toolkit for Python with minimal dependencies", "_organization": "hoffstadt", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2020-05-28T00:00:00.000Z", - "_age_weeks": 131, - "_stars_per_week": 69.73, + "_age_weeks": 133, + "_stars_per_week": 69.29, + "_pop_contributor_count": 51, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "benoitpremiumthreading", + "metecs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.42, + "_pop_updated_issues_count": 131, + "_pop_closed_issues_count": 57, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 131.0, + "_pop_comment_count": 131.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 64, + "_pop_score": 48.22, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/hoffstadt/dearpygui/master/README.md", "_readme_localurl": "hoffstadt~dearpygui~README.md", @@ -6366,6 +9494,68 @@ "hoffstadt~dearpygui~setup.py" ] }, + { + "index": 155, + "category": "data", + "githuburl": "https://github.com/s0md3v/photon", + "featured": null, + "links": null, + "description": null, + "_repopath": "s0md3v/photon", + "_reponame": "Photon", + "_stars": 9231, + "_forks": 1359, + "_watches": 324, + "_topics": [ + "crawler", + "spider", + "python", + "osint", + "information-gathering" + ], + "_language": "Python", + "_homepage": "", + "_description": "Photon: Incredibly fast crawler designed for OSINT.", + "_organization": "s0md3v", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-03-16T00:00:00.000Z", + "_created_at": "2018-03-30T00:00:00.000Z", + "_age_weeks": 246, + "_stars_per_week": 37.46, + "_pop_contributor_count": 21, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "na" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 57, + "_pop_updated_since_days": 9, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 3.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 52, + "_pop_score": 29.49, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/s0md3v/photon/master/README.md", + "_readme_localurl": "s0md3v~photon~README.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/s0md3v/photon/master/requirements.txt" + ], + "_requirements_localurls": [ + "s0md3v~photon~requirements.txt" + ] + }, { "index": 655, "category": "util", @@ -6375,9 +9565,9 @@ "description": null, "_repopath": "magicstack/uvloop", "_reponame": "uvloop", - "_stars": 9053, - "_forks": 522, - "_watches": 225, + "_stars": 9071, + "_forks": 525, + "_watches": 226, "_topics": [ "asyncio", "async-await", @@ -6394,11 +9584,32 @@ "_homepage": "", "_description": "uvloop: Ultra fast asyncio event loop.", "_organization": "magicstack", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-09-14T00:00:00.000Z", "_created_at": "2015-11-08T00:00:00.000Z", - "_age_weeks": 369, - "_stars_per_week": 24.51, + "_age_weeks": 371, + "_stars_per_week": 24.44, + "_pop_contributor_count": 55, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "edgedb" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.6, + "_pop_updated_issues_count": 26, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 87, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 26.0, + "_pop_comment_count": 37.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 569, + "_pop_score": 42.85, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/magicstack/uvloop/master/README.rst", "_readme_localurl": "magicstack~uvloop~README.rst", @@ -6421,9 +9632,9 @@ "description": null, "_repopath": "tiangolo/sqlmodel", "_reponame": "sqlmodel", - "_stars": 9026, + "_stars": 9061, "_forks": 385, - "_watches": 114, + "_watches": 118, "_topics": [ "python", "sql", @@ -6437,11 +9648,30 @@ "_homepage": "https://sqlmodel.tiangolo.com/", "_description": "sqlmodel: SQL databases in Python, designed for simplicity, compatibility, and robustness.", "_organization": "tiangolo", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-12T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2021-08-24T00:00:00.000Z", - "_age_weeks": 67, - "_stars_per_week": 134.43, + "_age_weeks": 68, + "_stars_per_week": 131.59, + "_pop_contributor_count": 54, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.98, + "_pop_updated_issues_count": 137, + "_pop_closed_issues_count": 67, + "_pop_created_since_days": 16, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 137.0, + "_pop_comment_count": 308.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 42, + "_pop_score": 40.84, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tiangolo/sqlmodel/master/README.md", "_readme_localurl": "tiangolo~sqlmodel~README.md", @@ -6455,6 +9685,66 @@ "tiangolo~sqlmodel~pyproject.toml" ] }, + { + "index": 142, + "category": "nlp", + "githuburl": "https://github.com/ukplab/sentence-transformers", + "featured": null, + "links": null, + "description": null, + "_repopath": "ukplab/sentence-transformers", + "_reponame": "sentence-transformers", + "_stars": 9012, + "_forks": 1796, + "_watches": 116, + "_topics": [], + "_language": "Python", + "_homepage": "https://www.SBERT.net", + "_description": "sentence-transformers: Multilingual Sentence & Image Embeddings with BERT", + "_organization": "ukplab", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-11-28T00:00:00.000Z", + "_created_at": "2019-07-24T00:00:00.000Z", + "_age_weeks": 177, + "_stars_per_week": 50.71, + "_pop_contributor_count": 106, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "huggingface", + "telekom" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.02, + "_pop_updated_issues_count": 141, + "_pop_closed_issues_count": 44, + "_pop_created_since_days": 41, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 141.0, + "_pop_comment_count": 158.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 118, + "_pop_score": 47.89, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/ukplab/sentence-transformers/master/README.md", + "_readme_localurl": "ukplab~sentence-transformers~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/ukplab/sentence-transformers/master/requirements.txt", + "https://raw.githubusercontent.com/ukplab/sentence-transformers/master/setup.py" + ], + "_requirements_localurls": [ + "ukplab~sentence-transformers~requirements.txt", + "ukplab~sentence-transformers~setup.py" + ] + }, { "index": 398, "category": "web", @@ -6464,8 +9754,8 @@ "description": null, "_repopath": "falconry/falcon", "_reponame": "falcon", - "_stars": 8965, - "_forks": 897, + "_stars": 8978, + "_forks": 898, "_watches": 266, "_topics": [ "python", @@ -6486,11 +9776,33 @@ "_homepage": "https://falcon.readthedocs.io/en/stable/", "_description": "falcon: The no-magic web data plane API and microservices framework for Python developers, with a focus on reliability, correctness, and performance at scale.", "_organization": "falconry", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-12-02T00:00:00.000Z", "_created_at": "2012-12-06T00:00:00.000Z", - "_age_weeks": 521, - "_stars_per_week": 17.18, + "_age_weeks": 523, + "_stars_per_week": 17.15, + "_pop_contributor_count": 195, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "centurylink", + "liquidweb" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.27, + "_pop_updated_issues_count": 43, + "_pop_closed_issues_count": 26, + "_pop_created_since_days": 122, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 43.0, + "_pop_comment_count": 67.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 39, + "_pop_score": 50.91, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/falconry/falcon/master/README.rst", "_readme_localurl": "falconry~falcon~README.rst", @@ -6507,44 +9819,6 @@ "falconry~falcon~pyproject.toml" ] }, - { - "index": 142, - "category": "nlp", - "githuburl": "https://github.com/ukplab/sentence-transformers", - "featured": null, - "links": null, - "description": null, - "_repopath": "ukplab/sentence-transformers", - "_reponame": "sentence-transformers", - "_stars": 8954, - "_forks": 1784, - "_watches": 117, - "_topics": [], - "_language": "Python", - "_homepage": "https://www.SBERT.net", - "_description": "sentence-transformers: Multilingual Sentence & Image Embeddings with BERT", - "_organization": "ukplab", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-28T00:00:00.000Z", - "_created_at": "2019-07-24T00:00:00.000Z", - "_age_weeks": 176, - "_stars_per_week": 50.88, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/ukplab/sentence-transformers/master/README.md", - "_readme_localurl": "ukplab~sentence-transformers~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/ukplab/sentence-transformers/master/requirements.txt", - "https://raw.githubusercontent.com/ukplab/sentence-transformers/master/setup.py" - ], - "_requirements_localurls": [ - "ukplab~sentence-transformers~requirements.txt", - "ukplab~sentence-transformers~setup.py" - ] - }, { "index": 157, "category": "util", @@ -6554,9 +9828,9 @@ "description": null, "_repopath": "pallets/jinja", "_reponame": "jinja", - "_stars": 8921, - "_forks": 1525, - "_watches": 254, + "_stars": 8940, + "_forks": 1529, + "_watches": 252, "_topics": [ "python", "template-engine", @@ -6569,11 +9843,34 @@ "_homepage": "https://jinja.palletsprojects.com", "_description": "jinja: A very fast and expressive template engine.", "_organization": "pallets", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-01T00:00:00.000Z", "_created_at": "2010-10-17T00:00:00.000Z", - "_age_weeks": 633, + "_age_weeks": 635, "_stars_per_week": 14.08, + "_pop_contributor_count": 302, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cern/indico", + "getsentry", + "sentry" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.25, + "_pop_updated_issues_count": 52, + "_pop_closed_issues_count": 31, + "_pop_created_since_days": 148, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 52.0, + "_pop_comment_count": 48.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 16433, + "_pop_score": 60.78, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pallets/jinja/master/README.rst", "_readme_localurl": "pallets~jinja~README.rst", @@ -6596,9 +9893,9 @@ "description": null, "_repopath": "marceloprates/prettymaps", "_reponame": "prettymaps", - "_stars": 8917, - "_forks": 430, - "_watches": 78, + "_stars": 8935, + "_forks": 428, + "_watches": 80, "_topics": [ "matplotlib", "jupyter-notebook", @@ -6612,11 +9909,32 @@ "_homepage": "", "_description": "prettymaps: A small set of Python functions to draw pretty maps from OpenStreetMap data. Based on osmnx, matplotlib and shapely libraries.", "_organization": "marceloprates", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-11-16T00:00:00.000Z", "_created_at": "2021-03-05T00:00:00.000Z", - "_age_weeks": 91, - "_stars_per_week": 97.23, + "_age_weeks": 93, + "_stars_per_week": 95.63, + "_pop_contributor_count": 15, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "up42" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.52, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 22, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 11.0, + "_pop_comment_count": 7.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 14, + "_pop_score": 29.64, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/marceloprates/prettymaps/master/README.md", "_readme_localurl": "marceloprates~prettymaps~README.md", @@ -6642,19 +9960,41 @@ "description": null, "_repopath": "microsoft/pyright", "_reponame": "pyright", - "_stars": 8852, - "_forks": 612, - "_watches": 77, + "_stars": 8923, + "_forks": 644, + "_watches": 79, "_topics": [], "_language": "Python", "_homepage": "", "_description": "pyright: Static type checker for Python", "_organization": "microsoft", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2019-03-12T00:00:00.000Z", - "_age_weeks": 195, - "_stars_per_week": 45.36, + "_age_weeks": 196, + "_stars_per_week": 45.33, + "_pop_contributor_count": 83, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "microsoft", + "microsoftcorp." + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 24.56, + "_pop_updated_issues_count": 372, + "_pop_closed_issues_count": 356, + "_pop_created_since_days": 46, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 87, + "_pop_recent_releases_estimated_tags": 97, + "_pop_recent_releases_adjusted_count": 87, + "_pop_issue_count": 370.0, + "_pop_comment_count": 924.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 1392, + "_pop_score": 64.92, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/microsoft/pyright/master/README.md", "_readme_localurl": "microsoft~pyright~README.md", @@ -6671,9 +10011,9 @@ "description": null, "_repopath": "aws/serverless-application-model", "_reponame": "serverless-application-model", - "_stars": 8842, - "_forks": 2270, - "_watches": 310, + "_stars": 8855, + "_forks": 2275, + "_watches": 307, "_topics": [ "serverless", "aws", @@ -6688,11 +10028,33 @@ "_homepage": "https://aws.amazon.com/serverless/sam", "_description": "serverless-application-model: The AWS Serverless Application Model (AWS SAM) transform is a AWS CloudFormation macro that transforms SAM templates into CloudFormation templates.", "_organization": "aws", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2016-10-10T00:00:00.000Z", - "_age_weeks": 321, - "_stars_per_week": 27.52, + "_age_weeks": 323, + "_stars_per_week": 27.41, + "_pop_contributor_count": 255, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "aws", + "leland" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.06, + "_pop_updated_issues_count": 467, + "_pop_closed_issues_count": 322, + "_pop_created_since_days": 75, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 467.0, + "_pop_comment_count": 343.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 372, + "_pop_score": 60.48, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/aws/serverless-application-model/master/README.md", "_readme_localurl": "aws~serverless-application-model~README.md", @@ -6718,9 +10080,9 @@ "description": null, "_repopath": "epistasislab/tpot", "_reponame": "tpot", - "_stars": 8829, - "_forks": 1503, - "_watches": 292, + "_stars": 8846, + "_forks": 1504, + "_watches": 291, "_topics": [ "machine-learning", "python", @@ -6747,11 +10109,34 @@ "_homepage": "http://epistasislab.github.io/tpot/", "_description": "tpot: A Python Automated Machine Learning tool that optimizes machine learning pipelines using genetic programming.", "_organization": "epistasislab", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-07-29T00:00:00.000Z", "_created_at": "2015-11-03T00:00:00.000Z", - "_age_weeks": 370, - "_stars_per_week": 23.85, + "_age_weeks": 371, + "_stars_per_week": 23.79, + "_pop_contributor_count": 112, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "children'shospitalofphiladelphia", + "eindhovenuniversityoftechnology", + "usc" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.35, + "_pop_updated_issues_count": 15, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 87, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 15.0, + "_pop_comment_count": 13.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 20, + "_pop_score": 41.04, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/epistasislab/tpot/master/README.md", "_readme_localurl": "epistasislab~tpot~README.md", @@ -6768,6 +10153,139 @@ "epistasislab~tpot~setup.py" ] }, + { + "index": 780, + "category": "diffusion", + "githuburl": "https://github.com/huggingface/diffusers", + "featured": null, + "links": null, + "description": null, + "_repopath": "huggingface/diffusers", + "_reponame": "diffusers", + "_stars": 8780, + "_forks": 1520, + "_watches": 99, + "_topics": [ + "deep-learning", + "diffusion", + "image-generation", + "pytorch", + "score-based-generative-modeling", + "image2image", + "text2image", + "stable-diffusion", + "hacktoberfest" + ], + "_language": "Python", + "_homepage": "https://huggingface.co/docs/diffusers", + "_description": "\ud83e\udd17 Diffusers: State-of-the-art diffusion models for image and audio generation in PyTorch", + "_organization": "huggingface", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_created_at": "2022-05-30T00:00:00.000Z", + "_age_weeks": 29, + "_stars_per_week": 302.76, + "_pop_contributor_count": 159, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "huggingface" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 26.25, + "_pop_updated_issues_count": 1315, + "_pop_closed_issues_count": 1033, + "_pop_created_since_days": 7, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 23, + "_pop_recent_releases_estimated_tags": 49, + "_pop_recent_releases_adjusted_count": 23, + "_pop_issue_count": 1315.0, + "_pop_comment_count": 5140.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.9, + "_pop_dependents_count": 5139, + "_pop_score": 65.64, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/huggingface/diffusers/master/README.md", + "_readme_localurl": "huggingface~diffusers~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/huggingface/diffusers/master/setup.py", + "https://raw.githubusercontent.com/huggingface/diffusers/master/pyproject.toml" + ], + "_requirements_localurls": [ + "huggingface~diffusers~setup.py", + "huggingface~diffusers~pyproject.toml" + ] + }, + { + "index": 5, + "category": "web", + "githuburl": "https://github.com/benoitc/gunicorn", + "featured": null, + "links": null, + "description": null, + "_repopath": "benoitc/gunicorn", + "_reponame": "gunicorn", + "_stars": 8684, + "_forks": 1619, + "_watches": 234, + "_topics": [ + "http-server", + "http", + "python", + "wsgi-server", + "wsgi" + ], + "_language": "Python", + "_homepage": "http://www.gunicorn.org", + "_description": "gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications.", + "_organization": "benoitc", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-03T00:00:00.000Z", + "_created_at": "2009-11-30T00:00:00.000Z", + "_age_weeks": 681, + "_stars_per_week": 12.75, + "_pop_contributor_count": 380, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "confluentinc", + "enkimultimedia", + "nytimes" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.5, + "_pop_updated_issues_count": 167, + "_pop_closed_issues_count": 90, + "_pop_created_since_days": 159, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 167.0, + "_pop_comment_count": 184.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 2114, + "_pop_score": 62.92, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/benoitc/gunicorn/master/README.rst", + "_readme_localurl": "benoitc~gunicorn~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/benoitc/gunicorn/master/setup.py" + ], + "_requirements_localurls": [ + "benoitc~gunicorn~setup.py" + ] + }, { "index": 134, "category": "ml-dl", @@ -6777,9 +10295,9 @@ "description": null, "_repopath": "keras-team/autokeras", "_reponame": "autokeras", - "_stars": 8668, + "_stars": 8681, "_forks": 1385, - "_watches": 305, + "_watches": 306, "_topics": [ "automl", "neural-architecture-search", @@ -6795,11 +10313,33 @@ "_homepage": "http://autokeras.com/", "_description": "autokeras: AutoML library for deep learning", "_organization": "keras-team", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2017-11-19T00:00:00.000Z", - "_age_weeks": 263, - "_stars_per_week": 32.9, + "_age_weeks": 265, + "_stars_per_week": 32.74, + "_pop_contributor_count": 139, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "keras-teamtensorflowgooglers", + "preligens" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.6, + "_pop_updated_issues_count": 47, + "_pop_closed_issues_count": 28, + "_pop_created_since_days": 62, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 47.0, + "_pop_comment_count": 42.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 3, + "_pop_score": 43.91, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/keras-team/autokeras/master/README.md", "_readme_localurl": "keras-team~autokeras~README.md", @@ -6813,47 +10353,6 @@ "keras-team~autokeras~setup.py" ] }, - { - "index": 5, - "category": "web", - "githuburl": "https://github.com/benoitc/gunicorn", - "featured": null, - "links": null, - "description": null, - "_repopath": "benoitc/gunicorn", - "_reponame": "gunicorn", - "_stars": 8665, - "_forks": 1616, - "_watches": 235, - "_topics": [ - "http-server", - "http", - "python", - "wsgi-server", - "wsgi" - ], - "_language": "Python", - "_homepage": "http://www.gunicorn.org", - "_description": "gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications.", - "_organization": "benoitc", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-03T00:00:00.000Z", - "_created_at": "2009-11-30T00:00:00.000Z", - "_age_weeks": 679, - "_stars_per_week": 12.76, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/benoitc/gunicorn/master/README.rst", - "_readme_localurl": "benoitc~gunicorn~README.rst", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/benoitc/gunicorn/master/setup.py" - ], - "_requirements_localurls": [ - "benoitc~gunicorn~setup.py" - ] - }, { "index": 92, "category": "ml-ops", @@ -6863,8 +10362,8 @@ "description": null, "_repopath": "uber/ludwig", "_reponame": "ludwig", - "_stars": 8645, - "_forks": 1020, + "_stars": 8670, + "_forks": 1024, "_watches": 181, "_topics": [ "deep-learning", @@ -6889,11 +10388,33 @@ "_homepage": "http://ludwig.ai", "_description": "ludwig: Data-centric declarative deep learning framework", "_organization": "uber", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2018-12-27T00:00:00.000Z", - "_age_weeks": 205, - "_stars_per_week": 42.0, + "_age_weeks": 207, + "_stars_per_week": 41.77, + "_pop_contributor_count": 130, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "predibase", + "uber" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 15.54, + "_pop_updated_issues_count": 383, + "_pop_closed_issues_count": 334, + "_pop_created_since_days": 48, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 16, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 16, + "_pop_issue_count": 383.0, + "_pop_comment_count": 479.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 54, + "_pop_score": 57.08, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/uber/ludwig/master/README.md", "_readme_localurl": "uber~ludwig~README.md", @@ -6913,6 +10434,77 @@ "uber~ludwig~pyproject.toml" ] }, + { + "index": 759, + "category": "diffusion", + "githuburl": "https://github.com/invoke-ai/invokeai", + "featured": null, + "links": null, + "description": null, + "_repopath": "invoke-ai/invokeai", + "_reponame": "InvokeAI", + "_stars": 8507, + "_forks": 960, + "_watches": 102, + "_topics": [ + "ai-art", + "artificial-intelligence", + "generative-art", + "image-generation", + "img2img", + "inpainting", + "latent-diffusion", + "linux", + "macos", + "outpainting", + "txt2img", + "windows", + "stable-diffusion" + ], + "_language": "Jupyter Notebook", + "_homepage": "https://invoke-ai.github.io/InvokeAI/", + "_description": "InvokeAI: This version of Stable Diffusion features a slick WebGUI, an interactive command-line script that combines text2img and img2img functionality in a \"dream bot\" style interface, and multiple features and other enhancements. For more info, see the website link below.", + "_organization": "invoke-ai", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_created_at": "2022-08-17T00:00:00.000Z", + "_age_weeks": 17, + "_stars_per_week": 480.23, + "_pop_contributor_count": 146, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ares-consulting", + "ontarioinstituteforcancerresearch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 34.5, + "_pop_updated_issues_count": 1312, + "_pop_closed_issues_count": 1023, + "_pop_created_since_days": 4, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 195, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 1312.0, + "_pop_comment_count": 5106.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.9, + "_pop_dependents_count": 230, + "_pop_score": 60.03, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/invoke-ai/invokeai/master/README.md", + "_readme_localurl": "invoke-ai~invokeai~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/invoke-ai/invokeai/master/setup.py" + ], + "_requirements_localurls": [ + "invoke-ai~invokeai~setup.py" + ] + }, { "index": 523, "category": "ml-dl", @@ -6922,9 +10514,9 @@ "description": null, "_repopath": "lucidrains/dalle2-pytorch", "_reponame": "DALLE2-pytorch", - "_stars": 8421, - "_forks": 685, - "_watches": 112, + "_stars": 8496, + "_forks": 692, + "_watches": 113, "_topics": [ "artificial-intelligence", "deep-learning", @@ -6934,11 +10526,30 @@ "_homepage": "", "_description": "DALLE2-pytorch: Implementation of DALL-E 2, OpenAI's updated text-to-image synthesis neural network, in Pytorch", "_organization": "lucidrains", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-23T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2022-04-07T00:00:00.000Z", - "_age_weeks": 34, - "_stars_per_week": 241.59, + "_age_weeks": 36, + "_stars_per_week": 232.31, + "_pop_contributor_count": 16, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 11.19, + "_pop_updated_issues_count": 32, + "_pop_closed_issues_count": 18, + "_pop_created_since_days": 8, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 332, + "_pop_recent_releases_estimated_tags": 514, + "_pop_recent_releases_adjusted_count": 332, + "_pop_issue_count": 32.0, + "_pop_comment_count": 52.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 50, + "_pop_score": 38.91, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/lucidrains/dalle2-pytorch/master/README.md", "_readme_localurl": "lucidrains~dalle2-pytorch~README.md", @@ -6961,8 +10572,8 @@ "description": null, "_repopath": "sloria/textblob", "_reponame": "TextBlob", - "_stars": 8377, - "_forks": 1097, + "_stars": 8388, + "_forks": 1100, "_watches": 270, "_topics": [ "nlp", @@ -6977,11 +10588,33 @@ "_homepage": "https://textblob.readthedocs.io/", "_description": "TextBlob: Simple, Pythonic, text processing--Sentiment analysis, part-of-speech tagging, noun phrase extraction, translation, and more.", "_organization": "sloria", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2021-10-22T00:00:00.000Z", "_created_at": "2013-06-30T00:00:00.000Z", - "_age_weeks": 492, - "_stars_per_week": 17.01, + "_age_weeks": 494, + "_stars_per_week": 16.97, + "_pop_contributor_count": 36, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "urbaninfrastructure" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 115, + "_pop_updated_since_days": 14, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 3.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 38, + "_pop_score": 31.9, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/sloria/textblob/master/README.rst", "_readme_localurl": "sloria~textblob~README.rst", @@ -6995,54 +10628,6 @@ "sloria~textblob~setup.py" ] }, - { - "index": 780, - "category": "diffusion", - "githuburl": "https://github.com/huggingface/diffusers", - "featured": null, - "links": null, - "description": null, - "_repopath": "huggingface/diffusers", - "_reponame": "diffusers", - "_stars": 8376, - "_forks": 1378, - "_watches": 92, - "_topics": [ - "deep-learning", - "diffusion", - "image-generation", - "pytorch", - "score-based-generative-modeling", - "image2image", - "text2image", - "stable-diffusion", - "hacktoberfest" - ], - "_language": "Python", - "_homepage": "https://huggingface.co/docs/diffusers", - "_description": "\ud83e\udd17 Diffusers: State-of-the-art diffusion models for image and audio generation in PyTorch", - "_organization": "huggingface", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2022-05-30T00:00:00.000Z", - "_age_weeks": 27, - "_stars_per_week": 306.97, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/huggingface/diffusers/master/README.md", - "_readme_localurl": "huggingface~diffusers~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/huggingface/diffusers/master/setup.py", - "https://raw.githubusercontent.com/huggingface/diffusers/master/pyproject.toml" - ], - "_requirements_localurls": [ - "huggingface~diffusers~setup.py", - "huggingface~diffusers~pyproject.toml" - ] - }, { "index": 100, "category": "nlp", @@ -7052,8 +10637,8 @@ "description": null, "_repopath": "clips/pattern", "_reponame": "pattern", - "_stars": 8358, - "_forks": 1593, + "_stars": 8371, + "_forks": 1594, "_watches": 548, "_topics": [ "python", @@ -7068,11 +10653,32 @@ "_homepage": "https://github.com/clips/pattern/wiki", "_description": "pattern: Web mining module for Python, with tools for scraping, natural language processing, machine learning, network analysis and visualization.", "_organization": "clips", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2020-04-25T00:00:00.000Z", "_created_at": "2011-05-03T00:00:00.000Z", - "_age_weeks": 605, - "_stars_per_week": 13.81, + "_age_weeks": 606, + "_stars_per_week": 13.79, + "_pop_contributor_count": 30, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "twitter-research" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 142, + "_pop_updated_since_days": 32, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 6.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 293, + "_pop_score": 31.33, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/clips/pattern/master/README.md", "_readme_localurl": "clips~pattern~README.md", @@ -7095,9 +10701,9 @@ "description": null, "_repopath": "microsoft/deepspeed", "_reponame": "DeepSpeed", - "_stars": 8276, - "_forks": 968, - "_watches": 142, + "_stars": 8355, + "_forks": 985, + "_watches": 144, "_topics": [ "deep-learning", "pytorch", @@ -7117,11 +10723,33 @@ "_homepage": "https://www.deepspeed.ai/", "_description": "DeepSpeed is a deep learning optimization library that makes distributed training and inference easy, efficient, and effective.", "_organization": "microsoft", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2020-01-23T00:00:00.000Z", - "_age_weeks": 149, - "_stars_per_week": 55.23, + "_age_weeks": 151, + "_stars_per_week": 55.12, + "_pop_contributor_count": 148, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "microsoft", + "stasosphereonline" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 8.46, + "_pop_updated_issues_count": 386, + "_pop_closed_issues_count": 270, + "_pop_created_since_days": 35, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 17, + "_pop_recent_releases_estimated_tags": 18, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 386.0, + "_pop_comment_count": 708.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 150, + "_pop_score": 58.34, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/microsoft/deepspeed/master/README.md", "_readme_localurl": "microsoft~deepspeed~README.md", @@ -7144,8 +10772,8 @@ "description": null, "_repopath": "arrow-py/arrow", "_reponame": "arrow", - "_stars": 8149, - "_forks": 634, + "_stars": 8167, + "_forks": 636, "_watches": 134, "_topics": [ "python", @@ -7161,11 +10789,32 @@ "_homepage": "https://arrow.readthedocs.io", "_description": "arrow: \ud83c\udff9 Better dates & times for Python", "_organization": "arrow-py", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-15T00:00:00.000Z", "_created_at": "2012-11-18T00:00:00.000Z", - "_age_weeks": 524, - "_stars_per_week": 15.54, + "_age_weeks": 526, + "_stars_per_week": 15.52, + "_pop_contributor_count": 268, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazon" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.73, + "_pop_updated_issues_count": 28, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 123, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 28.0, + "_pop_comment_count": 46.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 943, + "_pop_score": 51.47, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/arrow-py/arrow/master/README.rst", "_readme_localurl": "arrow-py~arrow~README.rst", @@ -7188,9 +10837,9 @@ "description": null, "_repopath": "modin-project/modin", "_reponame": "modin", - "_stars": 8115, - "_forks": 582, - "_watches": 109, + "_stars": 8151, + "_forks": 584, + "_watches": 110, "_topics": [ "dataframe", "pandas", @@ -7207,11 +10856,33 @@ "_homepage": "http://modin.readthedocs.io", "_description": "Modin: Scale your Pandas workflows by changing a single line of code", "_organization": "modin-project", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2018-06-21T00:00:00.000Z", - "_age_weeks": 232, - "_stars_per_week": 34.85, + "_age_weeks": 234, + "_stars_per_week": 34.75, + "_pop_contributor_count": 109, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ponder", + "ponder.io" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 9.44, + "_pop_updated_issues_count": 815, + "_pop_closed_issues_count": 505, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 17, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 815.0, + "_pop_comment_count": 1026.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 22, + "_pop_score": 55.49, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/modin-project/modin/master/README.md", "_readme_localurl": "modin-project~modin~README.md", @@ -7234,9 +10905,9 @@ "description": null, "_repopath": "numba/numba", "_reponame": "numba", - "_stars": 8047, - "_forks": 982, - "_watches": 207, + "_stars": 8074, + "_forks": 983, + "_watches": 205, "_topics": [ "python", "numpy", @@ -7249,11 +10920,32 @@ "_homepage": "http://numba.pydata.org/", "_description": "numba: NumPy aware dynamic Python compiler using LLVM", "_organization": "numba", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2012-03-08T00:00:00.000Z", - "_age_weeks": 560, + "_age_weeks": 562, "_stars_per_week": 14.35, + "_pop_contributor_count": 327, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "mlabs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 29.77, + "_pop_updated_issues_count": 388, + "_pop_closed_issues_count": 197, + "_pop_created_since_days": 131, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 18, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 388.0, + "_pop_comment_count": 1032.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 4467, + "_pop_score": 69.11, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/numba/numba/master/README.rst", "_readme_localurl": "numba~numba~README.rst", @@ -7279,19 +10971,42 @@ "description": null, "_repopath": "paramiko/paramiko", "_reponame": "paramiko", - "_stars": 8018, - "_forks": 1885, + "_stars": 8042, + "_forks": 1887, "_watches": 320, "_topics": [], "_language": "Python", "_homepage": "http://paramiko.org", "_description": "paramiko: The leading native Python SSHv2 protocol library.", "_organization": "paramiko", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-04T00:00:00.000Z", "_created_at": "2009-02-02T00:00:00.000Z", - "_age_weeks": 722, - "_stars_per_week": 11.1, + "_age_weeks": 724, + "_stars_per_week": 11.11, + "_pop_contributor_count": 177, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "codecobblers,inc", + "healthbyro", + "jumptrading" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.71, + "_pop_updated_issues_count": 93, + "_pop_closed_issues_count": 36, + "_pop_created_since_days": 169, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 93.0, + "_pop_comment_count": 204.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 2010, + "_pop_score": 61.79, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/paramiko/paramiko/master/README.rst", "_readme_localurl": "paramiko~paramiko~README.rst", @@ -7314,9 +11029,9 @@ "description": null, "_repopath": "statsmodels/statsmodels", "_reponame": "statsmodels", - "_stars": 7967, - "_forks": 2619, - "_watches": 271, + "_stars": 8013, + "_forks": 2627, + "_watches": 272, "_topics": [ "python", "statistics", @@ -7336,11 +11051,32 @@ "_homepage": "http://www.statsmodels.org/devel/", "_description": "Statsmodels: statistical modeling and econometrics in Python", "_organization": "statsmodels", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-10T00:00:00.000Z", "_created_at": "2011-06-12T00:00:00.000Z", - "_age_weeks": 599, - "_stars_per_week": 13.29, + "_age_weeks": 601, + "_stars_per_week": 13.33, + "_pop_contributor_count": 402, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "hcahealthcare" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.0, + "_pop_updated_issues_count": 450, + "_pop_closed_issues_count": 237, + "_pop_created_since_days": 140, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 450.0, + "_pop_comment_count": 623.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 1144, + "_pop_score": 62.27, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/statsmodels/statsmodels/master/README.rst", "_readme_localurl": "statsmodels~statsmodels~README.rst", @@ -7369,19 +11105,42 @@ "description": null, "_repopath": "altair-viz/altair", "_reponame": "altair", - "_stars": 7913, - "_forks": 708, + "_stars": 7936, + "_forks": 710, "_watches": 150, "_topics": [], "_language": "Python", "_homepage": "https://altair-viz.github.io/", "_description": "altair: Declarative statistical visualization library for Python", "_organization": "altair-viz", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2015-09-19T00:00:00.000Z", - "_age_weeks": 376, - "_stars_per_week": 21.01, + "_age_weeks": 378, + "_stars_per_week": 20.98, + "_pop_contributor_count": 147, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazonwebservices", + "google", + "losangelestimesandstanford'sbiglocalnews" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.27, + "_pop_updated_issues_count": 112, + "_pop_closed_issues_count": 69, + "_pop_created_since_days": 88, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 112.0, + "_pop_comment_count": 374.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.3, + "_pop_dependents_count": 95, + "_pop_score": 55.9, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/altair-viz/altair/master/README.md", "_readme_localurl": "altair-viz~altair~README.md", @@ -7410,9 +11169,9 @@ "description": null, "_repopath": "kedro-org/kedro", "_reponame": "kedro", - "_stars": 7871, - "_forks": 739, - "_watches": 103, + "_stars": 7893, + "_forks": 741, + "_watches": 102, "_topics": [ "pipeline", "kedro", @@ -7426,11 +11185,33 @@ "_homepage": "https://kedro.org", "_description": "kedro: A Python framework for creating reproducible, maintainable and modular data science code.", "_organization": "kedro-org", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2019-04-18T00:00:00.000Z", - "_age_weeks": 189, - "_stars_per_week": 41.46, + "_age_weeks": 191, + "_stars_per_week": 41.2, + "_pop_contributor_count": 176, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "quantumblack", + "softwareengineeratquantumblacklabs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.88, + "_pop_updated_issues_count": 366, + "_pop_closed_issues_count": 212, + "_pop_created_since_days": 45, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 366.0, + "_pop_comment_count": 529.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 9, + "_pop_score": 51.69, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/kedro-org/kedro/master/README.md", "_readme_localurl": "kedro-org~kedro~README.md", @@ -7456,9 +11237,9 @@ "description": null, "_repopath": "isl-org/open3d", "_reponame": "Open3D", - "_stars": 7773, - "_forks": 1830, - "_watches": 171, + "_stars": 7821, + "_forks": 1838, + "_watches": 170, "_topics": [ "mesh-processing", "computer-graphics", @@ -7485,11 +11266,34 @@ "_homepage": "http://www.open3d.org", "_description": "Open3D: A Modern Library for 3D Data Processing", "_organization": "isl-org", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2016-12-02T00:00:00.000Z", - "_age_weeks": 313, - "_stars_per_week": 24.78, + "_age_weeks": 315, + "_stars_per_week": 24.79, + "_pop_contributor_count": 175, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "formatechnologies", + "hku-cs", + "postech" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.5, + "_pop_updated_issues_count": 345, + "_pop_closed_issues_count": 128, + "_pop_created_since_days": 74, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 345.0, + "_pop_comment_count": 419.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 11, + "_pop_score": 52.02, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/isl-org/open3d/master/README.md", "_readme_localurl": "isl-org~open3d~README.md", @@ -7506,9 +11310,9 @@ "description": null, "_repopath": "boto/boto3", "_reponame": "boto3", - "_stars": 7751, - "_forks": 1685, - "_watches": 238, + "_stars": 7770, + "_forks": 1691, + "_watches": 239, "_topics": [ "python", "aws", @@ -7520,11 +11324,33 @@ "_homepage": "https://aws.amazon.com/sdk-for-python/", "_description": "boto3: AWS SDK for Python", "_organization": "boto", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2014-10-03T00:00:00.000Z", - "_age_weeks": 426, - "_stars_per_week": 18.16, + "_age_weeks": 428, + "_stars_per_week": 18.14, + "_pop_contributor_count": 139, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazonwebservices", + "istreamplanet" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 9.92, + "_pop_updated_issues_count": 326, + "_pop_closed_issues_count": 182, + "_pop_created_since_days": 100, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 147, + "_pop_recent_releases_adjusted_count": 147, + "_pop_issue_count": 326.0, + "_pop_comment_count": 432.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 28646, + "_pop_score": 69.85, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/boto/boto3/master/README.rst", "_readme_localurl": "boto~boto3~README.rst", @@ -7553,9 +11379,9 @@ "description": null, "_repopath": "great-expectations/great_expectations", "_reponame": "great_expectations", - "_stars": 7712, - "_forks": 1144, - "_watches": 70, + "_stars": 7751, + "_forks": 1156, + "_watches": 69, "_topics": [ "pipeline-tests", "dataquality", @@ -7582,11 +11408,32 @@ "_homepage": "https://docs.greatexpectations.io/", "_description": "great_expectations: Always know what to expect from your data.", "_organization": "great-expectations", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2017-09-11T00:00:00.000Z", - "_age_weeks": 273, - "_stars_per_week": 28.22, + "_age_weeks": 275, + "_stars_per_week": 28.19, + "_pop_contributor_count": 342, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "superconductive" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 35.42, + "_pop_updated_issues_count": 638, + "_pop_closed_issues_count": 516, + "_pop_created_since_days": 64, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 58, + "_pop_recent_releases_estimated_tags": 41, + "_pop_recent_releases_adjusted_count": 58, + "_pop_issue_count": 638.0, + "_pop_comment_count": 1340.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 158, + "_pop_score": 64.44, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/great-expectations/great_expectations/master/README.md", "_readme_localurl": "great-expectations~great_expectations~README.md", @@ -7615,8 +11462,8 @@ "description": null, "_repopath": "pyro-ppl/pyro", "_reponame": "pyro", - "_stars": 7698, - "_forks": 939, + "_stars": 7715, + "_forks": 940, "_watches": 203, "_topics": [ "python", @@ -7633,11 +11480,34 @@ "_homepage": "http://pyro.ai", "_description": "pyro: Deep universal probabilistic programming with Python and PyTorch", "_organization": "pyro-ppl", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2017-06-16T00:00:00.000Z", - "_age_weeks": 285, - "_stars_per_week": 26.94, + "_age_weeks": 287, + "_stars_per_week": 26.84, + "_pop_contributor_count": 130, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebook", + "generatebiomedicines", + "meta" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.35, + "_pop_updated_issues_count": 37, + "_pop_closed_issues_count": 24, + "_pop_created_since_days": 67, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 37.0, + "_pop_comment_count": 44.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 106, + "_pop_score": 51.01, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pyro-ppl/pyro/master/README.md", "_readme_localurl": "pyro-ppl~pyro~README.md", @@ -7660,9 +11530,9 @@ "description": null, "_repopath": "encode/starlette", "_reponame": "starlette", - "_stars": 7651, - "_forks": 689, - "_watches": 110, + "_stars": 7692, + "_forks": 693, + "_watches": 112, "_topics": [ "python", "async", @@ -7674,11 +11544,33 @@ "_homepage": "https://www.starlette.io/", "_description": "starlette: The little ASGI framework that shines. \ud83c\udf1f", "_organization": "encode", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-09T00:00:00.000Z", "_created_at": "2018-06-25T00:00:00.000Z", - "_age_weeks": 232, - "_stars_per_week": 32.94, + "_age_weeks": 234, + "_stars_per_week": 32.87, + "_pop_contributor_count": 217, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "encode", + "encodeoss" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.56, + "_pop_updated_issues_count": 129, + "_pop_closed_issues_count": 96, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 27, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 129.0, + "_pop_comment_count": 273.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 1476, + "_pop_score": 62.05, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/encode/starlette/master/README.md", "_readme_localurl": "encode~starlette~README.md", @@ -7707,8 +11599,8 @@ "description": null, "_repopath": "megvii-basedetection/yolox", "_reponame": "YOLOX", - "_stars": 7636, - "_forks": 1828, + "_stars": 7687, + "_forks": 1837, "_watches": 72, "_topics": [ "yolox", @@ -7727,11 +11619,35 @@ "_homepage": "", "_description": "YOLOX is a high-performance anchor-free YOLO, exceeding yolov3~v5 with MegEngine, ONNX, TensorRT, ncnn, and OpenVINO supported. Documentation: https://yolox.readthedocs.io/", "_organization": "megvii-basedetection", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2021-07-17T00:00:00.000Z", - "_age_weeks": 72, - "_stars_per_week": 105.22, + "_age_weeks": 74, + "_stars_per_week": 103.48, + "_pop_contributor_count": 67, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "markany", + "megvii-basedetection", + "megviibasedetection", + "wandb" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.92, + "_pop_updated_issues_count": 122, + "_pop_closed_issues_count": 50, + "_pop_created_since_days": 17, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 122.0, + "_pop_comment_count": 147.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 10, + "_pop_score": 43.4, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/megvii-basedetection/yolox/master/README.md", "_readme_localurl": "megvii-basedetection~yolox~README.md", @@ -7748,6 +11664,129 @@ "megvii-basedetection~yolox~setup.py" ] }, + { + "index": 495, + "category": "data", + "githuburl": "https://github.com/duckdb/duckdb", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "duckdb/duckdb", + "_reponame": "duckdb", + "_stars": 7647, + "_forks": 730, + "_watches": 115, + "_topics": [ + "sql", + "database", + "olap", + "analytics", + "embedded-database" + ], + "_language": "C++", + "_homepage": "http://www.duckdb.org", + "_description": "DuckDB is an in-process SQL OLAP Database Management System", + "_organization": "duckdb", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2018-06-26T00:00:00.000Z", + "_age_weeks": 233, + "_stars_per_week": 32.7, + "_pop_contributor_count": 215, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cwi", + "duckdblabs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 131.92, + "_pop_updated_issues_count": 1149, + "_pop_closed_issues_count": 956, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 1150.0, + "_pop_comment_count": 1990.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 349, + "_pop_score": 66.69, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/duckdb/duckdb/master/README.md", + "_readme_localurl": "duckdb~duckdb~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 815, + "category": "ml-dl", + "githuburl": "https://github.com/danielgatis/rembg", + "featured": null, + "links": null, + "description": null, + "_repopath": "danielgatis/rembg", + "_reponame": "rembg", + "_stars": 7640, + "_forks": 969, + "_watches": 99, + "_topics": [ + "image-processing", + "background-removal", + "python" + ], + "_language": "Python", + "_homepage": "", + "_description": "Rembg is a tool to remove images background.", + "_organization": "danielgatis", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", + "_created_at": "2020-08-10T00:00:00.000Z", + "_age_weeks": 123, + "_stars_per_week": 62.11, + "_pop_contributor_count": 32, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "christianclauss" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.35, + "_pop_updated_issues_count": 73, + "_pop_closed_issues_count": 51, + "_pop_created_since_days": 29, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 15, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 73.0, + "_pop_comment_count": 149.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 18, + "_pop_score": 44.05, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/danielgatis/rembg/master/README.md", + "_readme_localurl": "danielgatis~rembg~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/danielgatis/rembg/master/requirements.txt", + "https://raw.githubusercontent.com/danielgatis/rembg/master/setup.py", + "https://raw.githubusercontent.com/danielgatis/rembg/master/pyproject.toml" + ], + "_requirements_localurls": [ + "danielgatis~rembg~requirements.txt", + "danielgatis~rembg~setup.py", + "danielgatis~rembg~pyproject.toml" + ] + }, { "index": 615, "category": "testing", @@ -7757,8 +11796,8 @@ "description": null, "_repopath": "robotframework/robotframework", "_reponame": "robotframework", - "_stars": 7608, - "_forks": 2047, + "_stars": 7635, + "_forks": 2052, "_watches": 483, "_topics": [ "robotframework", @@ -7774,11 +11813,33 @@ "_homepage": "http://robotframework.org", "_description": "robotframework: Generic automation framework for acceptance testing and RPA", "_organization": "robotframework", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-20T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-11T00:00:00.000Z", "_created_at": "2014-06-27T00:00:00.000Z", - "_age_weeks": 440, + "_age_weeks": 442, "_stars_per_week": 17.26, + "_pop_contributor_count": 172, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "eligaoy", + "reaktor" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 10.92, + "_pop_updated_issues_count": 157, + "_pop_closed_issues_count": 94, + "_pop_created_since_days": 103, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 157.0, + "_pop_comment_count": 321.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 1572, + "_pop_score": 64.57, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/robotframework/robotframework/master/README.rst", "_readme_localurl": "robotframework~robotframework~README.rst", @@ -7793,85 +11854,75 @@ ] }, { - "index": 815, - "category": "ml-dl", - "githuburl": "https://github.com/danielgatis/rembg", + "index": 95, + "category": "perf", + "githuburl": "https://github.com/vaexio/vaex", "featured": null, "links": null, "description": null, - "_repopath": "danielgatis/rembg", - "_reponame": "rembg", - "_stars": 7549, - "_forks": 955, - "_watches": 99, + "_repopath": "vaexio/vaex", + "_reponame": "vaex", + "_stars": 7633, + "_forks": 581, + "_watches": 144, "_topics": [ - "image-processing", - "background-removal", - "python" + "dataframe", + "python", + "bigdata", + "tabular-data", + "visualization", + "memory-mapped-file", + "hdf5", + "machine-learning", + "machinelearning", + "data-science", + "pyarrow" ], "_language": "Python", - "_homepage": "", - "_description": "Rembg is a tool to remove images background.", - "_organization": "danielgatis", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-28T00:00:00.000Z", - "_created_at": "2020-08-10T00:00:00.000Z", - "_age_weeks": 121, - "_stars_per_week": 62.24, + "_homepage": "https://vaex.io", + "_description": "vaex: Out-of-Core hybrid Apache Arrow/NumPy DataFrame for Python, ML, visualization and exploration of big tabular data at a billion rows per second \ud83d\ude80", + "_organization": "vaexio", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-08T00:00:00.000Z", + "_created_at": "2014-09-27T00:00:00.000Z", + "_age_weeks": 429, + "_stars_per_week": 17.78, + "_pop_contributor_count": 72, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "maartenbreddels", + "rungalileo", + "xdss" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.52, + "_pop_updated_issues_count": 131, + "_pop_closed_issues_count": 68, + "_pop_created_since_days": 100, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 44, + "_pop_recent_releases_adjusted_count": 44, + "_pop_issue_count": 131.0, + "_pop_comment_count": 263.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 29, + "_pop_score": 55.82, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/danielgatis/rembg/master/README.md", - "_readme_localurl": "danielgatis~rembg~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/vaexio/vaex/master/README.md", + "_readme_localurl": "vaexio~vaex~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/danielgatis/rembg/master/requirements.txt", - "https://raw.githubusercontent.com/danielgatis/rembg/master/setup.py", - "https://raw.githubusercontent.com/danielgatis/rembg/master/pyproject.toml" + "https://raw.githubusercontent.com/vaexio/vaex/master/setup.py" ], "_requirements_localurls": [ - "danielgatis~rembg~requirements.txt", - "danielgatis~rembg~setup.py", - "danielgatis~rembg~pyproject.toml" + "vaexio~vaex~setup.py" ] }, - { - "index": 495, - "category": "data", - "githuburl": "https://github.com/duckdb/duckdb", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "duckdb/duckdb", - "_reponame": "duckdb", - "_stars": 7538, - "_forks": 716, - "_watches": 114, - "_topics": [ - "sql", - "database", - "olap", - "analytics", - "embedded-database" - ], - "_language": "C++", - "_homepage": "http://www.duckdb.org", - "_description": "DuckDB is an in-process SQL OLAP Database Management System", - "_organization": "duckdb", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2018-06-26T00:00:00.000Z", - "_age_weeks": 232, - "_stars_per_week": 32.47, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/duckdb/duckdb/master/README.md", - "_readme_localurl": "duckdb~duckdb~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 10, "category": "util", @@ -7881,8 +11932,8 @@ "description": null, "_repopath": "cython/cython", "_reponame": "cython", - "_stars": 7498, - "_forks": 1343, + "_stars": 7517, + "_forks": 1345, "_watches": 230, "_topics": [ "python", @@ -7898,11 +11949,33 @@ "_homepage": "https://cython.org", "_description": "cython: The most widely used Python to C compiler", "_organization": "cython", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2010-11-21T00:00:00.000Z", - "_age_weeks": 628, + "_age_weeks": 630, "_stars_per_week": 11.93, + "_pop_contributor_count": 489, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ecrcatkaust", + "mlabs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 9.35, + "_pop_updated_issues_count": 222, + "_pop_closed_issues_count": 136, + "_pop_created_since_days": 147, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 222.0, + "_pop_comment_count": 496.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 4115, + "_pop_score": 69.16, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/cython/cython/master/README.rst", "_readme_localurl": "cython~cython~README.rst", @@ -7916,47 +11989,6 @@ "cython~cython~setup.py" ] }, - { - "index": 322, - "category": "web", - "githuburl": "https://github.com/graphql-python/graphene", - "featured": null, - "links": null, - "description": null, - "_repopath": "graphql-python/graphene", - "_reponame": "graphene", - "_stars": 7484, - "_forks": 803, - "_watches": 146, - "_topics": [ - "graphql", - "python", - "relay", - "framework", - "graphene" - ], - "_language": "Python", - "_homepage": "http://graphene-python.org/", - "_description": "graphene: GraphQL framework for Python", - "_organization": "graphql-python", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", - "_created_at": "2015-09-24T00:00:00.000Z", - "_age_weeks": 375, - "_stars_per_week": 19.91, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/graphql-python/graphene/master/README.md", - "_readme_localurl": "graphql-python~graphene~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/graphql-python/graphene/master/setup.py" - ], - "_requirements_localurls": [ - "graphql-python~graphene~setup.py" - ] - }, { "index": 440, "category": "ml-dl", @@ -7966,8 +11998,8 @@ "description": null, "_repopath": "kornia/kornia", "_reponame": "kornia", - "_stars": 7480, - "_forks": 750, + "_stars": 7514, + "_forks": 753, "_watches": 118, "_topics": [ "computer-vision", @@ -7983,11 +12015,35 @@ "_homepage": "https://kornia.github.io/kornia/", "_description": "kornia: Open Source Differentiable Computer Vision Library", "_organization": "kornia", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2018-08-22T00:00:00.000Z", - "_age_weeks": 224, - "_stars_per_week": 33.39, + "_age_weeks": 225, + "_stars_per_week": 33.29, + "_pop_contributor_count": 195, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "computervisioncenter", + "czechtechnicaluniversityinprague", + "kaust", + "kornia.org" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.37, + "_pop_updated_issues_count": 236, + "_pop_closed_issues_count": 174, + "_pop_created_since_days": 53, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 236.0, + "_pop_comment_count": 411.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 103, + "_pop_score": 59.02, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/kornia/kornia/master/README.md", "_readme_localurl": "kornia~kornia~README.md", @@ -8005,99 +12061,65 @@ ] }, { - "index": 759, - "category": "diffusion", - "githuburl": "https://github.com/invoke-ai/invokeai", - "featured": null, - "links": null, - "description": null, - "_repopath": "invoke-ai/invokeai", - "_reponame": "InvokeAI", - "_stars": 7444, - "_forks": 843, - "_watches": 82, - "_topics": [ - "ai-art", - "artificial-intelligence", - "generative-art", - "image-generation", - "img2img", - "inpainting", - "latent-diffusion", - "linux", - "macos", - "outpainting", - "txt2img", - "windows", - "stable-diffusion" - ], - "_language": "Jupyter Notebook", - "_homepage": "https://invoke-ai.github.io/InvokeAI/", - "_description": "InvokeAI: This version of Stable Diffusion features a slick WebGUI, an interactive command-line script that combines text2img and img2img functionality in a \"dream bot\" style interface, and multiple features and other enhancements. For more info, see the website link below.", - "_organization": "invoke-ai", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2022-08-17T00:00:00.000Z", - "_age_weeks": 16, - "_stars_per_week": 465.25, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/invoke-ai/invokeai/master/README.md", - "_readme_localurl": "invoke-ai~invokeai~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/invoke-ai/invokeai/master/setup.py" - ], - "_requirements_localurls": [ - "invoke-ai~invokeai~setup.py" - ] - }, - { - "index": 95, - "category": "perf", - "githuburl": "https://github.com/vaexio/vaex", + "index": 322, + "category": "web", + "githuburl": "https://github.com/graphql-python/graphene", "featured": null, "links": null, "description": null, - "_repopath": "vaexio/vaex", - "_reponame": "vaex", - "_stars": 7435, - "_forks": 573, - "_watches": 141, + "_repopath": "graphql-python/graphene", + "_reponame": "graphene", + "_stars": 7496, + "_forks": 804, + "_watches": 146, "_topics": [ - "dataframe", + "graphql", "python", - "bigdata", - "tabular-data", - "visualization", - "memory-mapped-file", - "hdf5", - "machine-learning", - "machinelearning", - "data-science", - "pyarrow" + "relay", + "framework", + "graphene" ], "_language": "Python", - "_homepage": "https://vaex.io", - "_description": "vaex: Out-of-Core hybrid Apache Arrow/NumPy DataFrame for Python, ML, visualization and exploration of big tabular data at a billion rows per second \ud83d\ude80", - "_organization": "vaexio", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2014-09-27T00:00:00.000Z", - "_age_weeks": 427, - "_stars_per_week": 17.39, + "_homepage": "http://graphene-python.org/", + "_description": "graphene: GraphQL framework for Python", + "_organization": "graphql-python", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-11T00:00:00.000Z", + "_created_at": "2015-09-24T00:00:00.000Z", + "_age_weeks": 377, + "_stars_per_week": 19.85, + "_pop_contributor_count": 194, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "wasmerio" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.79, + "_pop_updated_issues_count": 49, + "_pop_closed_issues_count": 34, + "_pop_created_since_days": 88, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 49.0, + "_pop_comment_count": 110.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 1177, + "_pop_score": 55.62, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/vaexio/vaex/master/README.md", - "_readme_localurl": "vaexio~vaex~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/graphql-python/graphene/master/README.md", + "_readme_localurl": "graphql-python~graphene~README.md", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/vaexio/vaex/master/setup.py" + "https://raw.githubusercontent.com/graphql-python/graphene/master/setup.py" ], "_requirements_localurls": [ - "vaexio~vaex~setup.py" + "graphql-python~graphene~setup.py" ] }, { @@ -8109,9 +12131,9 @@ "description": null, "_repopath": "microsoft/unilm", "_reponame": "unilm", - "_stars": 7384, - "_forks": 1354, - "_watches": 177, + "_stars": 7463, + "_forks": 1365, + "_watches": 178, "_topics": [ "nlp", "language-understanding", @@ -8138,11 +12160,32 @@ "_homepage": "https://aka.ms/nlpagi", "_description": "unilm: Large-scale Self-supervised Pre-training Across Tasks, Languages, and Modalities", "_organization": "microsoft", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-28T00:00:00.000Z", "_created_at": "2019-07-23T00:00:00.000Z", - "_age_weeks": 176, - "_stars_per_week": 41.92, + "_age_weeks": 177, + "_stars_per_week": 41.96, + "_pop_contributor_count": 50, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "microsoftresearch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.02, + "_pop_updated_issues_count": 136, + "_pop_closed_issues_count": 79, + "_pop_created_since_days": 41, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 136.0, + "_pop_comment_count": 207.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 32, + "_pop_score": 42.87, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/microsoft/unilm/master/README.md", "_readme_localurl": "microsoft~unilm~README.md", @@ -8159,9 +12202,9 @@ "description": null, "_repopath": "optuna/optuna", "_reponame": "optuna", - "_stars": 7264, + "_stars": 7310, "_forks": 784, - "_watches": 122, + "_watches": 121, "_topics": [ "python", "machine-learning", @@ -8174,11 +12217,32 @@ "_homepage": "https://optuna.org", "_description": "optuna: A hyperparameter optimization framework", "_organization": "optuna", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2018-02-21T00:00:00.000Z", - "_age_weeks": 250, - "_stars_per_week": 29.06, + "_age_weeks": 251, + "_stars_per_week": 29.04, + "_pop_contributor_count": 220, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "preferrednetworks" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 46.4, + "_pop_updated_issues_count": 323, + "_pop_closed_issues_count": 226, + "_pop_created_since_days": 59, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 323.0, + "_pop_comment_count": 983.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 1036, + "_pop_score": 65.44, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/optuna/optuna/master/README.md", "_readme_localurl": "optuna~optuna~README.md", @@ -8204,8 +12268,8 @@ "description": null, "_repopath": "google/trax", "_reponame": "trax", - "_stars": 7203, - "_forks": 751, + "_stars": 7217, + "_forks": 750, "_watches": 145, "_topics": [ "jax", @@ -8220,11 +12284,33 @@ "_homepage": "", "_description": "Trax \u2014 Deep Learning with Clear Code and Speed", "_organization": "google", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-09T00:00:00.000Z", "_created_at": "2019-10-05T00:00:00.000Z", - "_age_weeks": 165, - "_stars_per_week": 43.5, + "_age_weeks": 167, + "_stars_per_week": 43.14, + "_pop_contributor_count": 78, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "mimuw" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.38, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 39, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 8.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 19, + "_pop_score": 38.19, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google/trax/master/README.md", "_readme_localurl": "google~trax~README.md", @@ -8247,9 +12333,9 @@ "description": null, "_repopath": "pymc-devs/pymc3", "_reponame": "pymc", - "_stars": 7175, - "_forks": 1705, - "_watches": 224, + "_stars": 7187, + "_forks": 1711, + "_watches": 225, "_topics": [ "python", "statistical-analysis", @@ -8265,11 +12351,33 @@ "_homepage": "https://docs.pymc.io/", "_description": "pymc: Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with PyTensor", "_organization": "pymc-devs", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2009-05-05T00:00:00.000Z", - "_age_weeks": 709, - "_stars_per_week": 10.12, + "_age_weeks": 710, + "_stars_per_week": 10.11, + "_pop_contributor_count": 428, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "msueconomics/skoltechcs", + "pymclabs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 17.42, + "_pop_updated_issues_count": 365, + "_pop_closed_issues_count": 279, + "_pop_created_since_days": 166, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 22, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 22, + "_pop_issue_count": 365.0, + "_pop_comment_count": 941.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 236, + "_pop_score": 67.67, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pymc-devs/pymc3/master/README.rst", "_readme_localurl": "pymc-devs~pymc3~README.rst", @@ -8298,8 +12406,8 @@ "description": null, "_repopath": "tensorlayer/tensorlayer", "_reponame": "TensorLayer", - "_stars": 7119, - "_forks": 1609, + "_stars": 7126, + "_forks": 1612, "_watches": 462, "_topics": [ "tensorlayer", @@ -8323,11 +12431,35 @@ "_homepage": "http://tensorlayer.org", "_description": "TensorLayer: Deep Learning and Reinforcement Learning Library for Scientists and Engineers ", "_organization": "tensorlayer", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-04-23T00:00:00.000Z", "_created_at": "2016-06-07T00:00:00.000Z", - "_age_weeks": 339, - "_stars_per_week": 20.99, + "_age_weeks": 340, + "_stars_per_week": 20.91, + "_pop_contributor_count": 132, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "columbiauniversity", + "imperialcollegelondon,pangaeadata", + "pekinguniversity", + "universityofedinburgh" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 80, + "_pop_updated_since_days": 8, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 2.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 52, + "_pop_score": 42.39, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tensorlayer/tensorlayer/master/README.md", "_readme_localurl": "tensorlayer~tensorlayer~README.md", @@ -8350,9 +12482,9 @@ "description": null, "_repopath": "doccano/doccano", "_reponame": "doccano", - "_stars": 7013, - "_forks": 1445, - "_watches": 121, + "_stars": 7043, + "_forks": 1449, + "_watches": 122, "_topics": [ "natural-language-processing", "machine-learning", @@ -8371,11 +12503,34 @@ "_homepage": "https://doccano.herokuapp.com", "_description": "doccano: Open source annotation tool for machine learning practitioners.", "_organization": "doccano", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2018-05-09T00:00:00.000Z", - "_age_weeks": 239, - "_stars_per_week": 29.34, + "_age_weeks": 240, + "_stars_per_week": 29.26, + "_pop_contributor_count": 98, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "classi", + "noom", + "statisticscanada" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 12.69, + "_pop_updated_issues_count": 115, + "_pop_closed_issues_count": 68, + "_pop_created_since_days": 56, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 115.0, + "_pop_comment_count": 161.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 94, + "_pop_score": 55.88, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/doccano/doccano/master/README.md", "_readme_localurl": "doccano~doccano~README.md", @@ -8384,34 +12539,53 @@ "_requirements_localurls": [] }, { - "index": 846, - "category": "time-series", - "githuburl": "https://github.com/blue-yonder/tsfresh", + "index": 758, + "category": "diffusion", + "githuburl": "https://github.com/divamgupta/diffusionbee-stable-diffusion-ui", "featured": null, "links": null, "description": null, - "_repopath": "blue-yonder/tsfresh", - "_reponame": "tsfresh", - "_stars": 6919, - "_forks": 1086, - "_watches": 159, + "_repopath": "divamgupta/diffusionbee-stable-diffusion-ui", + "_reponame": "diffusionbee-stable-diffusion-ui", + "_stars": 7014, + "_forks": 271, + "_watches": 71, "_topics": [ - "data-science", - "feature-extraction", - "time-series" + "electron-app", + "macos", + "stable-diffusion" ], - "_language": "Jupyter Notebook", - "_homepage": "http://tsfresh.readthedocs.io", - "_description": "tsfresh: Automatic extraction of relevant features from time series:", - "_organization": "blue-yonder", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-18T00:00:00.000Z", - "_created_at": "2016-10-26T00:00:00.000Z", - "_age_weeks": 319, - "_stars_per_week": 21.69, + "_language": "JavaScript", + "_homepage": "https://diffusionbee.com", + "_description": "diffusionbee-stable-diffusion-ui: Diffusion Bee is the easiest way to run Stable Diffusion locally on your M1 Mac. Comes with a one-click installer. No dependencies or technical knowledge needed.", + "_organization": "divamgupta", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-11-23T00:00:00.000Z", + "_created_at": "2022-09-06T00:00:00.000Z", + "_age_weeks": 14, + "_stars_per_week": 472.1, + "_pop_contributor_count": 16, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.87, + "_pop_updated_issues_count": 338, + "_pop_closed_issues_count": 129, + "_pop_created_since_days": 3, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 57, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 338.0, + "_pop_comment_count": 773.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 29.38, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/blue-yonder/tsfresh/master/README.md", - "_readme_localurl": "blue-yonder~tsfresh~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/divamgupta/diffusionbee-stable-diffusion-ui/master/README.md", + "_readme_localurl": "divamgupta~diffusionbee-stable-diffusion-ui~README.md", "_requirements_filenames": [], "_requirements_giturls": [], "_requirements_localurls": [] @@ -8425,8 +12599,8 @@ "description": null, "_repopath": "hpcaitech/colossalai", "_reponame": "ColossalAI", - "_stars": 6901, - "_forks": 649, + "_stars": 7002, + "_forks": 658, "_watches": 88, "_topics": [ "deep-learning", @@ -8445,11 +12619,33 @@ "_homepage": "https://www.colossalai.org/", "_description": "ColossalAI: Colossal-AI: A Unified Deep Learning System for Big Model Era", "_organization": "hpcaitech", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2021-10-28T00:00:00.000Z", - "_age_weeks": 57, - "_stars_per_week": 119.28, + "_age_weeks": 59, + "_stars_per_week": 117.54, + "_pop_contributor_count": 82, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "hpc-aitech", + "hpcaitech" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 27.52, + "_pop_updated_issues_count": 514, + "_pop_closed_issues_count": 452, + "_pop_created_since_days": 14, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 18, + "_pop_recent_releases_estimated_tags": 17, + "_pop_recent_releases_adjusted_count": 18, + "_pop_issue_count": 511.0, + "_pop_comment_count": 266.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 3, + "_pop_score": 47.94, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/hpcaitech/colossalai/master/README.md", "_readme_localurl": "hpcaitech~colossalai~README.md", @@ -8463,6 +12659,139 @@ "hpcaitech~colossalai~setup.py" ] }, + { + "index": 846, + "category": "time-series", + "githuburl": "https://github.com/blue-yonder/tsfresh", + "featured": null, + "links": null, + "description": null, + "_repopath": "blue-yonder/tsfresh", + "_reponame": "tsfresh", + "_stars": 6943, + "_forks": 1093, + "_watches": 159, + "_topics": [ + "data-science", + "feature-extraction", + "time-series" + ], + "_language": "Jupyter Notebook", + "_homepage": "http://tsfresh.readthedocs.io", + "_description": "tsfresh: Automatic extraction of relevant features from time series:", + "_organization": "blue-yonder", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-11-18T00:00:00.000Z", + "_created_at": "2016-10-26T00:00:00.000Z", + "_age_weeks": 320, + "_stars_per_week": 21.65, + "_pop_contributor_count": 82, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "apple", + "universityofauckland" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 24, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 75, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 24.0, + "_pop_comment_count": 48.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 26, + "_pop_score": 42.06, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/blue-yonder/tsfresh/master/README.md", + "_readme_localurl": "blue-yonder~tsfresh~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 650, + "category": "profiling", + "githuburl": "https://github.com/plasma-umass/scalene", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "plasma-umass/scalene", + "_reponame": "scalene", + "_stars": 6939, + "_forks": 232, + "_watches": 69, + "_topics": [ + "python", + "profiling", + "performance-analysis", + "cpu-profiling", + "profiler", + "python-profilers", + "gpu-programming", + "scalene", + "profiles-memory", + "performance-cpu", + "cpu", + "memory-allocation", + "gpu", + "memory-consumption" + ], + "_language": "JavaScript", + "_homepage": "", + "_description": "Scalene: a high-performance, high-precision CPU, GPU, and memory profiler for Python", + "_organization": "plasma-umass", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2019-12-17T00:00:00.000Z", + "_age_weeks": 156, + "_stars_per_week": 44.24, + "_pop_contributor_count": 34, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "umassamherst", + "universityofmassachusettsamherst" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 11.71, + "_pop_updated_issues_count": 93, + "_pop_closed_issues_count": 52, + "_pop_created_since_days": 37, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 21, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 21, + "_pop_issue_count": 94.0, + "_pop_comment_count": 167.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 76, + "_pop_score": 52.02, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/plasma-umass/scalene/master/README.md", + "_readme_localurl": "plasma-umass~scalene~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "Pipfile" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/plasma-umass/scalene/master/requirements.txt", + "https://raw.githubusercontent.com/plasma-umass/scalene/master/setup.py", + "https://raw.githubusercontent.com/plasma-umass/scalene/master/Pipfile" + ], + "_requirements_localurls": [ + "plasma-umass~scalene~requirements.txt", + "plasma-umass~scalene~setup.py", + "plasma-umass~scalene~Pipfile" + ] + }, { "index": 150, "category": "ml", @@ -8472,9 +12801,9 @@ "description": null, "_repopath": "catboost/catboost", "_reponame": "catboost", - "_stars": 6830, - "_forks": 1067, - "_watches": 194, + "_stars": 6846, + "_forks": 1070, + "_watches": 193, "_topics": [ "machine-learning", "decision-trees", @@ -8499,11 +12828,33 @@ "_homepage": "https://catboost.ai", "_description": "catboost: A fast, scalable, high performance Gradient Boosting on Decision Trees library, used for ranking, classification, regression and other machine learning tasks for Python, R, Java, C++. Supports computation on CPU and GPU.", "_organization": "catboost", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2017-07-18T00:00:00.000Z", - "_age_weeks": 281, - "_stars_per_week": 24.29, + "_age_weeks": 282, + "_stars_per_week": 24.2, + "_pop_contributor_count": 1038, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "yandex", + "yandexnv" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 117.42, + "_pop_updated_issues_count": 146, + "_pop_closed_issues_count": 58, + "_pop_created_since_days": 66, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 16, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 146.0, + "_pop_comment_count": 263.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 276, + "_pop_score": 66.94, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/catboost/catboost/master/README.md", "_readme_localurl": "catboost~catboost~README.md", @@ -8511,39 +12862,6 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, - { - "index": 758, - "category": "diffusion", - "githuburl": "https://github.com/divamgupta/diffusionbee-stable-diffusion-ui", - "featured": null, - "links": null, - "description": null, - "_repopath": "divamgupta/diffusionbee-stable-diffusion-ui", - "_reponame": "diffusionbee-stable-diffusion-ui", - "_stars": 6794, - "_forks": 263, - "_watches": 67, - "_topics": [ - "electron-app", - "macos", - "stable-diffusion" - ], - "_language": "JavaScript", - "_homepage": "https://diffusionbee.com", - "_description": "diffusionbee-stable-diffusion-ui: Diffusion Bee is the easiest way to run Stable Diffusion locally on your M1 Mac. Comes with a one-click installer. No dependencies or technical knowledge needed.", - "_organization": "divamgupta", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-23T00:00:00.000Z", - "_created_at": "2022-09-06T00:00:00.000Z", - "_age_weeks": 13, - "_stars_per_week": 516.93, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/divamgupta/diffusionbee-stable-diffusion-ui/master/README.md", - "_readme_localurl": "divamgupta~diffusionbee-stable-diffusion-ui~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 171, "category": "ml-dl", @@ -8553,19 +12871,42 @@ "description": null, "_repopath": "facebookresearch/pytorch3d", "_reponame": "pytorch3d", - "_stars": 6781, - "_forks": 1026, + "_stars": 6806, + "_forks": 1032, "_watches": 140, "_topics": [], "_language": "Python", "_homepage": "https://pytorch3d.org/", "_description": "PyTorch3D is FAIR's library of reusable components for deep learning with 3D data", "_organization": "facebookresearch", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2019-10-25T00:00:00.000Z", - "_age_weeks": 162, - "_stars_per_week": 41.67, + "_age_weeks": 164, + "_stars_per_week": 41.39, + "_pop_contributor_count": 110, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "caltech", + "facebook", + "facebookairesearch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.92, + "_pop_updated_issues_count": 88, + "_pop_closed_issues_count": 37, + "_pop_created_since_days": 38, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 88.0, + "_pop_comment_count": 123.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 383, + "_pop_score": 54.79, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/pytorch3d/master/README.md", "_readme_localurl": "facebookresearch~pytorch3d~README.md", @@ -8579,62 +12920,6 @@ "facebookresearch~pytorch3d~setup.py" ] }, - { - "index": 650, - "category": "profiling", - "githuburl": "https://github.com/plasma-umass/scalene", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "plasma-umass/scalene", - "_reponame": "scalene", - "_stars": 6772, - "_forks": 232, - "_watches": 67, - "_topics": [ - "python", - "profiling", - "performance-analysis", - "cpu-profiling", - "profiler", - "python-profilers", - "gpu-programming", - "scalene", - "profiles-memory", - "performance-cpu", - "cpu", - "memory-allocation", - "gpu", - "memory-consumption" - ], - "_language": "JavaScript", - "_homepage": "", - "_description": "Scalene: a high-performance, high-precision CPU, GPU, and memory profiler for Python", - "_organization": "plasma-umass", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2019-12-17T00:00:00.000Z", - "_age_weeks": 155, - "_stars_per_week": 43.65, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/plasma-umass/scalene/master/README.md", - "_readme_localurl": "plasma-umass~scalene~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "Pipfile" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/plasma-umass/scalene/master/requirements.txt", - "https://raw.githubusercontent.com/plasma-umass/scalene/master/setup.py", - "https://raw.githubusercontent.com/plasma-umass/scalene/master/Pipfile" - ], - "_requirements_localurls": [ - "plasma-umass~scalene~requirements.txt", - "plasma-umass~scalene~setup.py", - "plasma-umass~scalene~Pipfile" - ] - }, { "index": 286, "category": "data", @@ -8644,8 +12929,8 @@ "description": null, "_repopath": "simonw/datasette", "_reponame": "datasette", - "_stars": 6729, - "_forks": 470, + "_stars": 6758, + "_forks": 474, "_watches": 99, "_topics": [ "sqlite", @@ -8664,11 +12949,33 @@ "_homepage": "https://datasette.io", "_description": "datasette: An open source multi-tool for exploring and publishing data", "_organization": "simonw", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2017-10-23T00:00:00.000Z", - "_age_weeks": 267, - "_stars_per_week": 25.18, + "_age_weeks": 269, + "_stars_per_week": 25.12, + "_pop_contributor_count": 72, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "datasette", + "latacora" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 8.62, + "_pop_updated_issues_count": 178, + "_pop_closed_issues_count": 108, + "_pop_created_since_days": 63, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 19, + "_pop_recent_releases_estimated_tags": 25, + "_pop_recent_releases_adjusted_count": 19, + "_pop_issue_count": 178.0, + "_pop_comment_count": 853.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 4.8, + "_pop_dependents_count": 557, + "_pop_score": 62.27, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/simonw/datasette/master/README.md", "_readme_localurl": "simonw~datasette~README.md", @@ -8683,145 +12990,156 @@ ] }, { - "index": 131, + "index": 65, "category": "ml", - "githuburl": "https://github.com/automl/auto-sklearn", + "githuburl": "https://github.com/pycaret/pycaret", "featured": null, "links": null, "description": null, - "_repopath": "automl/auto-sklearn", - "_reponame": "auto-sklearn", - "_stars": 6650, - "_forks": 1208, - "_watches": 213, + "_repopath": "pycaret/pycaret", + "_reponame": "pycaret", + "_stars": 6669, + "_forks": 1522, + "_watches": 125, "_topics": [ - "automl", - "scikit-learn", - "automated-machine-learning", - "hyperparameter-optimization", - "hyperparameter-tuning", - "hyperparameter-search", - "bayesian-optimization", - "metalearning", - "meta-learning", - "smac" + "data-science", + "citizen-data-scientists", + "python", + "machine-learning", + "pycaret", + "ml", + "gpu", + "time-series", + "regression", + "classification", + "anomaly-detection", + "nlp", + "clustering" ], - "_language": "Python", - "_homepage": "https://automl.github.io/auto-sklearn", - "_description": "auto-sklearn: Automated Machine Learning with scikit-learn", - "_organization": "automl", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2015-07-02T00:00:00.000Z", - "_age_weeks": 387, - "_stars_per_week": 17.15, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/automl/auto-sklearn/master/README.md", - "_readme_localurl": "automl~auto-sklearn~README.md", + "_language": "Jupyter Notebook", + "_homepage": "https://www.pycaret.org", + "_description": "pycaret: An open-source, low-code machine learning library in Python", + "_organization": "pycaret", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_created_at": "2019-11-23T00:00:00.000Z", + "_age_weeks": 160, + "_stars_per_week": 41.61, + "_pop_contributor_count": 107, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "konfio", + "o9solutions", + "pycaret", + "softwareengineeranyscale" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 19.88, + "_pop_updated_issues_count": 307, + "_pop_closed_issues_count": 228, + "_pop_created_since_days": 37, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 307.0, + "_pop_comment_count": 380.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 194, + "_pop_score": 58.64, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pycaret/pycaret/master/README.md", + "_readme_localurl": "pycaret~pycaret~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/automl/auto-sklearn/master/requirements.txt", - "https://raw.githubusercontent.com/automl/auto-sklearn/master/setup.py", - "https://raw.githubusercontent.com/automl/auto-sklearn/master/pyproject.toml" + "https://raw.githubusercontent.com/pycaret/pycaret/master/requirements.txt", + "https://raw.githubusercontent.com/pycaret/pycaret/master/setup.py" ], "_requirements_localurls": [ - "automl~auto-sklearn~requirements.txt", - "automl~auto-sklearn~setup.py", - "automl~auto-sklearn~pyproject.toml" + "pycaret~pycaret~requirements.txt", + "pycaret~pycaret~setup.py" ] }, { - "index": 824, - "category": "study", - "githuburl": "https://github.com/firmai/industry-machine-learning", - "featured": null, - "links": null, - "description": null, - "_repopath": "firmai/industry-machine-learning", - "_reponame": "industry-machine-learning", - "_stars": 6646, - "_forks": 1120, - "_watches": 392, - "_topics": [ - "machine-learning", - "jupyter-notebook", - "datascience", - "example", - "python", - "practical-machine-learning", - "data-science", - "firmai" - ], - "_language": "Jupyter Notebook", - "_homepage": "https://www.linkedin.com/company/firmai", - "_description": "industry-machine-learning: A curated list of applied machine learning and data science notebooks and libraries across different industries (by @firmai)", - "_organization": "firmai", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2021-12-18T00:00:00.000Z", - "_created_at": "2019-05-03T00:00:00.000Z", - "_age_weeks": 187, - "_stars_per_week": 35.4, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/firmai/industry-machine-learning/master/README.md", - "_readme_localurl": "firmai~industry-machine-learning~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, - { - "index": 65, + "index": 131, "category": "ml", - "githuburl": "https://github.com/pycaret/pycaret", + "githuburl": "https://github.com/automl/auto-sklearn", "featured": null, "links": null, "description": null, - "_repopath": "pycaret/pycaret", - "_reponame": "pycaret", - "_stars": 6625, - "_forks": 1514, - "_watches": 124, + "_repopath": "automl/auto-sklearn", + "_reponame": "auto-sklearn", + "_stars": 6666, + "_forks": 1208, + "_watches": 213, "_topics": [ - "data-science", - "citizen-data-scientists", - "python", - "machine-learning", - "pycaret", - "ml", - "gpu", - "time-series", - "regression", - "classification", - "anomaly-detection", - "nlp", - "clustering" + "automl", + "scikit-learn", + "automated-machine-learning", + "hyperparameter-optimization", + "hyperparameter-tuning", + "hyperparameter-search", + "bayesian-optimization", + "metalearning", + "meta-learning", + "smac" ], - "_language": "Jupyter Notebook", - "_homepage": "https://www.pycaret.org", - "_description": "pycaret: An open-source, low-code machine learning library in Python", - "_organization": "pycaret", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2019-11-23T00:00:00.000Z", - "_age_weeks": 158, - "_stars_per_week": 41.78, + "_language": "Python", + "_homepage": "https://automl.github.io/auto-sklearn", + "_description": "auto-sklearn: Automated Machine Learning with scikit-learn", + "_organization": "automl", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_created_at": "2015-07-02T00:00:00.000Z", + "_age_weeks": 389, + "_stars_per_week": 17.11, + "_pop_contributor_count": 88, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "albert-ludwigs-universit\u00e4tfreiburg", + "automl.org", + "awsberlin", + "centerforarmyanalysisandsimulation", + "universityoffreiburg" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.65, + "_pop_updated_issues_count": 71, + "_pop_closed_issues_count": 34, + "_pop_created_since_days": 91, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 71.0, + "_pop_comment_count": 101.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 388, + "_pop_score": 57.5, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pycaret/pycaret/master/README.md", - "_readme_localurl": "pycaret~pycaret~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/automl/auto-sklearn/master/README.md", + "_readme_localurl": "automl~auto-sklearn~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pycaret/pycaret/master/requirements.txt", - "https://raw.githubusercontent.com/pycaret/pycaret/master/setup.py" + "https://raw.githubusercontent.com/automl/auto-sklearn/master/requirements.txt", + "https://raw.githubusercontent.com/automl/auto-sklearn/master/setup.py", + "https://raw.githubusercontent.com/automl/auto-sklearn/master/pyproject.toml" ], "_requirements_localurls": [ - "pycaret~pycaret~requirements.txt", - "pycaret~pycaret~setup.py" + "automl~auto-sklearn~requirements.txt", + "automl~auto-sklearn~setup.py", + "automl~auto-sklearn~pyproject.toml" ] }, { @@ -8833,9 +13151,9 @@ "description": null, "_repopath": "eleutherai/gpt-neo", "_reponame": "gpt-neo", - "_stars": 6582, - "_forks": 579, - "_watches": 159, + "_stars": 6663, + "_forks": 591, + "_watches": 161, "_topics": [ "language-model", "transformers", @@ -8847,11 +13165,32 @@ "_homepage": "https://www.eleuther.ai", "_description": "gpt-neo: An implementation of model parallel GPT-2 and GPT-3-style models using the mesh-tensorflow library.", "_organization": "eleutherai", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-02-25T00:00:00.000Z", "_created_at": "2020-07-05T00:00:00.000Z", - "_age_weeks": 126, - "_stars_per_week": 52.06, + "_age_weeks": 128, + "_stars_per_week": 52.0, + "_pop_contributor_count": 29, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "boozallenhamilton" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 30, + "_pop_updated_since_days": 10, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 14, + "_pop_score": 22.22, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/eleutherai/gpt-neo/master/README.md", "_readme_localurl": "eleutherai~gpt-neo~README.md", @@ -8865,6 +13204,67 @@ "eleutherai~gpt-neo~requirements.txt" ] }, + { + "index": 824, + "category": "study", + "githuburl": "https://github.com/firmai/industry-machine-learning", + "featured": null, + "links": null, + "description": null, + "_repopath": "firmai/industry-machine-learning", + "_reponame": "industry-machine-learning", + "_stars": 6654, + "_forks": 1119, + "_watches": 392, + "_topics": [ + "machine-learning", + "jupyter-notebook", + "datascience", + "example", + "python", + "practical-machine-learning", + "data-science", + "firmai" + ], + "_language": "Jupyter Notebook", + "_homepage": "https://www.linkedin.com/company/firmai", + "_description": "industry-machine-learning: A curated list of applied machine learning and data science notebooks and libraries across different industries (by @firmai)", + "_organization": "firmai", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2021-12-18T00:00:00.000Z", + "_created_at": "2019-05-03T00:00:00.000Z", + "_age_weeks": 189, + "_stars_per_week": 35.13, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "alanturinginstitute,firmai", + "tilde-lab", + "universityofutah" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 12, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 15.22, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/firmai/industry-machine-learning/master/README.md", + "_readme_localurl": "firmai~industry-machine-learning~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 532, "category": "util", @@ -8874,19 +13274,41 @@ "description": null, "_repopath": "facebookresearch/hydra", "_reponame": "hydra", - "_stars": 6572, - "_forks": 524, - "_watches": 81, + "_stars": 6600, + "_forks": 527, + "_watches": 83, "_topics": [], "_language": "Python", "_homepage": "https://hydra.cc", "_description": "Hydra is a framework for elegantly configuring complex applications", "_organization": "facebookresearch", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2019-06-12T00:00:00.000Z", - "_age_weeks": 182, - "_stars_per_week": 36.11, + "_age_weeks": 183, + "_stars_per_week": 35.93, + "_pop_contributor_count": 105, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebook", + "facebookairesearch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.27, + "_pop_updated_issues_count": 147, + "_pop_closed_issues_count": 91, + "_pop_created_since_days": 43, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 147.0, + "_pop_comment_count": 233.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 47, + "_pop_score": 50.43, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/hydra/master/README.md", "_readme_localurl": "facebookresearch~hydra~README.md", @@ -8912,9 +13334,9 @@ "description": null, "_repopath": "pyeve/eve", "_reponame": "eve", - "_stars": 6563, + "_stars": 6567, "_forks": 752, - "_watches": 228, + "_watches": 229, "_topics": [ "python", "rest", @@ -8925,11 +13347,34 @@ "_homepage": "https://python-eve.org", "_description": "eve: REST API framework designed for human beings", "_organization": "pyeve", - "_updated_at": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-10T00:00:00.000Z", "_created_at": "2012-10-22T00:00:00.000Z", - "_age_weeks": 528, - "_stars_per_week": 12.42, + "_age_weeks": 530, + "_stars_per_week": 12.39, + "_pop_contributor_count": 211, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cir2000", + "denoland", + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.06, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 9, + "_pop_created_since_days": 124, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 16.0, + "_pop_comment_count": 28.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 34, + "_pop_score": 50.38, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pyeve/eve/master/README.rst", "_readme_localurl": "pyeve~eve~README.rst", @@ -8955,9 +13400,9 @@ "description": null, "_repopath": "yzhao062/pyod", "_reponame": "pyod", - "_stars": 6529, - "_forks": 1214, - "_watches": 150, + "_stars": 6557, + "_forks": 1217, + "_watches": 151, "_topics": [ "outlier-detection", "anomaly-detection", @@ -8983,11 +13428,34 @@ "_homepage": "http://pyod.readthedocs.io", "_description": "pyod: A Comprehensive and Scalable Python Library for Outlier Detection (Anomaly Detection)", "_organization": "yzhao062", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-10-24T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2017-10-03T00:00:00.000Z", - "_age_weeks": 270, - "_stars_per_week": 24.17, + "_age_weeks": 271, + "_stars_per_week": 24.12, + "_pop_contributor_count": 46, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "carnegiemellonuniversity", + "erasmusmedicalcentre", + "royalbankofcanada(rbc)" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.69, + "_pop_updated_issues_count": 28, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 63, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 28.0, + "_pop_comment_count": 59.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 66, + "_pop_score": 51.34, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/yzhao062/pyod/master/README.rst", "_readme_localurl": "yzhao062~pyod~README.rst", @@ -9013,19 +13481,42 @@ "description": null, "_repopath": "hyperopt/hyperopt", "_reponame": "hyperopt", - "_stars": 6496, - "_forks": 1001, + "_stars": 6511, + "_forks": 1004, "_watches": 126, "_topics": [], "_language": "Python", "_homepage": "http://hyperopt.github.io/hyperopt", "_description": "hyperopt: Distributed Asynchronous Hyperparameter Optimization in Python", "_organization": "hyperopt", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2021-11-29T00:00:00.000Z", "_created_at": "2011-09-06T00:00:00.000Z", - "_age_weeks": 587, + "_age_weeks": 588, "_stars_per_week": 11.06, + "_pop_contributor_count": 93, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "contxts-io", + "databricks", + "kindred.ai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 137, + "_pop_updated_since_days": 13, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 14.0, + "_pop_comment_count": 28.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 135, + "_pop_score": 42.18, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/hyperopt/hyperopt/master/README.md", "_readme_localurl": "hyperopt~hyperopt~README.md", @@ -9039,6 +13530,73 @@ "hyperopt~hyperopt~setup.py" ] }, + { + "index": 716, + "category": "util", + "githuburl": "https://github.com/jazzband/pip-tools", + "featured": null, + "links": null, + "description": null, + "_repopath": "jazzband/pip-tools", + "_reponame": "pip-tools", + "_stars": 6473, + "_forks": 554, + "_watches": 105, + "_topics": [ + "python", + "packaging", + "pip", + "pip-tools", + "pip-compile", + "setuptools", + "requirements", + "lockfile", + "hashes" + ], + "_language": "Python", + "_homepage": "https://pip-tools.rtfd.io", + "_description": "pip-tools: A set of tools to keep your pinned Python dependencies fresh.", + "_organization": "jazzband", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2012-09-10T00:00:00.000Z", + "_age_weeks": 536, + "_stars_per_week": 12.08, + "_pop_contributor_count": 181, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "pioneervalleybooks", + "ubisoftinc" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.67, + "_pop_updated_issues_count": 179, + "_pop_closed_issues_count": 132, + "_pop_created_since_days": 125, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 179.0, + "_pop_comment_count": 312.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 2531, + "_pop_score": 63.55, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/jazzband/pip-tools/master/README.rst", + "_readme_localurl": "jazzband~pip-tools~README.rst", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/jazzband/pip-tools/master/pyproject.toml" + ], + "_requirements_localurls": [ + "jazzband~pip-tools~pyproject.toml" + ] + }, { "index": 215, "category": "debug", @@ -9048,7 +13606,7 @@ "description": null, "_repopath": "gruns/icecream", "_reponame": "icecream", - "_stars": 6449, + "_stars": 6468, "_forks": 134, "_watches": 50, "_topics": [ @@ -9065,11 +13623,34 @@ "_homepage": "", "_description": "icecream: \ud83c\udf66 Never use print() to debug again.", "_organization": "gruns", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-12-04T00:00:00.000Z", "_created_at": "2018-02-13T00:00:00.000Z", - "_age_weeks": 251, - "_stars_per_week": 25.68, + "_age_weeks": 252, + "_stars_per_week": 25.58, + "_pop_contributor_count": 21, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "fixpoint", + "https://arc.io,https://pep.dev", + "pku-epic" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.85, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 59, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 12.0, + "_pop_comment_count": 26.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 34, + "_pop_score": 42.71, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/gruns/icecream/master/README.md", "_readme_localurl": "gruns~icecream~README.md", @@ -9083,54 +13664,6 @@ "gruns~icecream~setup.py" ] }, - { - "index": 716, - "category": "util", - "githuburl": "https://github.com/jazzband/pip-tools", - "featured": null, - "links": null, - "description": null, - "_repopath": "jazzband/pip-tools", - "_reponame": "pip-tools", - "_stars": 6442, - "_forks": 551, - "_watches": 105, - "_topics": [ - "python", - "packaging", - "pip", - "pip-tools", - "pip-compile", - "setuptools", - "requirements", - "lockfile", - "hashes" - ], - "_language": "Python", - "_homepage": "https://pip-tools.rtfd.io", - "_description": "pip-tools: A set of tools to keep your pinned Python dependencies fresh.", - "_organization": "jazzband", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", - "_created_at": "2012-09-10T00:00:00.000Z", - "_age_weeks": 534, - "_stars_per_week": 12.06, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/jazzband/pip-tools/master/README.rst", - "_readme_localurl": "jazzband~pip-tools~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/jazzband/pip-tools/master/setup.py", - "https://raw.githubusercontent.com/jazzband/pip-tools/master/pyproject.toml" - ], - "_requirements_localurls": [ - "jazzband~pip-tools~setup.py", - "jazzband~pip-tools~pyproject.toml" - ] - }, { "index": 82, "category": "data", @@ -9140,9 +13673,9 @@ "description": null, "_repopath": "sqlalchemy/sqlalchemy", "_reponame": "sqlalchemy", - "_stars": 6408, - "_forks": 1022, - "_watches": 95, + "_stars": 6443, + "_forks": 1025, + "_watches": 94, "_topics": [ "sqlalchemy", "sql", @@ -9152,11 +13685,33 @@ "_homepage": "https://www.sqlalchemy.org", "_description": "sqlalchemy: The Database Toolkit for Python", "_organization": "sqlalchemy", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2018-11-27T00:00:00.000Z", - "_age_weeks": 210, - "_stars_per_week": 30.49, + "_age_weeks": 211, + "_stars_per_week": 30.41, + "_pop_contributor_count": 583, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "redhat", + "self-employed" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 13.65, + "_pop_updated_issues_count": 304, + "_pop_closed_issues_count": 231, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 21, + "_pop_recent_releases_estimated_tags": 66, + "_pop_recent_releases_adjusted_count": 21, + "_pop_issue_count": 304.0, + "_pop_comment_count": 1209.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 4.0, + "_pop_dependents_count": 10439, + "_pop_score": 73.81, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/sqlalchemy/sqlalchemy/master/README.rst", "_readme_localurl": "sqlalchemy~sqlalchemy~README.rst", @@ -9182,8 +13737,8 @@ "description": null, "_repopath": "featurelabs/featuretools", "_reponame": "featuretools", - "_stars": 6406, - "_forks": 834, + "_stars": 6424, + "_forks": 835, "_watches": 158, "_topics": [ "feature-engineering", @@ -9199,11 +13754,32 @@ "_homepage": "https://www.featuretools.com", "_description": "featuretools: An open source python library for automated feature engineering", "_organization": "featurelabs", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2017-09-08T00:00:00.000Z", - "_age_weeks": 273, - "_stars_per_week": 23.4, + "_age_weeks": 275, + "_stars_per_week": 23.32, + "_pop_contributor_count": 68, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "alteryx" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.17, + "_pop_updated_issues_count": 161, + "_pop_closed_issues_count": 125, + "_pop_created_since_days": 64, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 25, + "_pop_recent_releases_estimated_tags": 28, + "_pop_recent_releases_adjusted_count": 25, + "_pop_issue_count": 161.0, + "_pop_comment_count": 189.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 31, + "_pop_score": 50.92, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/featurelabs/featuretools/master/README.md", "_readme_localurl": "featurelabs~featuretools~README.md", @@ -9226,8 +13802,8 @@ "description": null, "_repopath": "hypothesisworks/hypothesis", "_reponame": "hypothesis", - "_stars": 6373, - "_forks": 537, + "_stars": 6401, + "_forks": 539, "_watches": 69, "_topics": [ "python", @@ -9239,11 +13815,35 @@ "_homepage": "https://hypothesis.works", "_description": "Hypothesis is a powerful, flexible, and easy to use library for property-based testing.", "_organization": "hypothesisworks", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-11T00:00:00.000Z", "_created_at": "2013-03-10T00:00:00.000Z", - "_age_weeks": 508, - "_stars_per_week": 12.53, + "_age_weeks": 510, + "_stars_per_week": 12.55, + "_pop_contributor_count": 297, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "anthropic", + "pyupio", + "quansight", + "weomecollection" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 13.75, + "_pop_updated_issues_count": 88, + "_pop_closed_issues_count": 66, + "_pop_created_since_days": 119, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 95, + "_pop_recent_releases_estimated_tags": 135, + "_pop_recent_releases_adjusted_count": 95, + "_pop_issue_count": 88.0, + "_pop_comment_count": 128.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 12462, + "_pop_score": 72.65, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/hypothesisworks/hypothesis/master/README.rst", "_readme_localurl": "hypothesisworks~hypothesis~README.rst", @@ -9260,8 +13860,8 @@ "description": null, "_repopath": "marshmallow-code/marshmallow", "_reponame": "marshmallow", - "_stars": 6348, - "_forks": 622, + "_stars": 6358, + "_forks": 621, "_watches": 82, "_topics": [ "serialization", @@ -9278,11 +13878,32 @@ "_homepage": "https://marshmallow.readthedocs.io/", "_description": "marshmallow: A lightweight library for converting complex objects to and from simple Python datatypes.", "_organization": "marshmallow-code", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-11T00:00:00.000Z", "_created_at": "2013-11-10T00:00:00.000Z", - "_age_weeks": 473, - "_stars_per_week": 13.41, + "_age_weeks": 475, + "_stars_per_week": 13.38, + "_pop_contributor_count": 203, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "nobatek" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.79, + "_pop_updated_issues_count": 54, + "_pop_closed_issues_count": 36, + "_pop_created_since_days": 111, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 19, + "_pop_recent_releases_adjusted_count": 19, + "_pop_issue_count": 54.0, + "_pop_comment_count": 52.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 2390, + "_pop_score": 58.91, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/marshmallow-code/marshmallow/master/README.rst", "_readme_localurl": "marshmallow-code~marshmallow~README.rst", @@ -9308,9 +13929,9 @@ "description": null, "_repopath": "drivendata/cookiecutter-data-science", "_reponame": "cookiecutter-data-science", - "_stars": 6292, - "_forks": 2007, - "_watches": 112, + "_stars": 6335, + "_forks": 2015, + "_watches": 111, "_topics": [ "cookiecutter-data-science", "cookiecutter", @@ -9323,11 +13944,34 @@ "_homepage": "http://drivendata.github.io/cookiecutter-data-science/", "_description": "cookiecutter-data-science: A logical, reasonably standardized, but flexible project structure for doing and sharing data science work.", "_organization": "drivendata", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-03-11T00:00:00.000Z", "_created_at": "2015-10-30T00:00:00.000Z", - "_age_weeks": 370, - "_stars_per_week": 16.97, + "_age_weeks": 372, + "_stars_per_week": 17.01, + "_pop_contributor_count": 45, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "contentful", + "drivendata", + "unseenbio" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 17, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 87, + "_pop_updated_since_days": 9, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 17.0, + "_pop_comment_count": 10.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 28, + "_pop_score": 34.24, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/drivendata/cookiecutter-data-science/master/README.md", "_readme_localurl": "drivendata~cookiecutter-data-science~README.md", @@ -9350,7 +13994,7 @@ "description": null, "_repopath": "newsapps/beeswithmachineguns", "_reponame": "beeswithmachineguns", - "_stars": 6260, + "_stars": 6267, "_forks": 663, "_watches": 227, "_topics": [], @@ -9358,11 +14002,36 @@ "_homepage": "http://apps.chicagotribune.com/", "_description": "beeswithmachineguns: A utility for arming (creating) many bees (micro EC2 instances) to attack (load test) targets (web applications).", "_organization": "newsapps", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2017-12-20T00:00:00.000Z", "_created_at": "2010-06-29T00:00:00.000Z", - "_age_weeks": 649, - "_stars_per_week": 9.64, + "_age_weeks": 650, + "_stars_per_week": 9.63, + "_pop_contributor_count": 49, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "br", + "datascopeanalytics", + "facebook", + "fivethirtyeight", + "https://github.com/verizondigital/" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 152, + "_pop_updated_since_days": 61, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 64, + "_pop_score": 32.42, "_readme_filename": "", "_readme_giturl": "", "_readme_localurl": "", @@ -9388,7 +14057,7 @@ "description": null, "_repopath": "pallets/werkzeug", "_reponame": "werkzeug", - "_stars": 6226, + "_stars": 6234, "_forks": 1663, "_watches": 227, "_topics": [ @@ -9402,11 +14071,34 @@ "_homepage": "https://werkzeug.palletsprojects.com", "_description": "werkzeug: The comprehensive WSGI web application library.", "_organization": "pallets", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-11-01T00:00:00.000Z", "_created_at": "2010-10-18T00:00:00.000Z", - "_age_weeks": 633, - "_stars_per_week": 9.83, + "_age_weeks": 635, + "_stars_per_week": 9.82, + "_pop_contributor_count": 463, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "getsentry", + "sentry", + "zalandose" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.62, + "_pop_updated_issues_count": 50, + "_pop_closed_issues_count": 34, + "_pop_created_since_days": 148, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 50.0, + "_pop_comment_count": 43.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 9133, + "_pop_score": 62.98, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pallets/werkzeug/master/README.rst", "_readme_localurl": "pallets~werkzeug~README.rst", @@ -9429,8 +14121,8 @@ "description": null, "_repopath": "netflix/metaflow", "_reponame": "metaflow", - "_stars": 6193, - "_forks": 577, + "_stars": 6219, + "_forks": 583, "_watches": 239, "_topics": [ "machine-learning", @@ -9456,11 +14148,33 @@ "_homepage": "https://metaflow.org", "_description": "metaflow: :rocket: Build and manage real-life data science projects with ease!", "_organization": "netflix", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2019-09-17T00:00:00.000Z", - "_age_weeks": 168, - "_stars_per_week": 36.83, + "_age_weeks": 169, + "_stars_per_week": 36.61, + "_pop_contributor_count": 62, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "missingexponent", + "outerbounds" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.27, + "_pop_updated_issues_count": 106, + "_pop_closed_issues_count": 65, + "_pop_created_since_days": 40, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 30, + "_pop_recent_releases_estimated_tags": 24, + "_pop_recent_releases_adjusted_count": 30, + "_pop_issue_count": 106.0, + "_pop_comment_count": 147.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 49, + "_pop_score": 51.15, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/netflix/metaflow/master/README.md", "_readme_localurl": "netflix~metaflow~README.md", @@ -9474,56 +14188,6 @@ "netflix~metaflow~setup.py" ] }, - { - "index": 20, - "category": "typing", - "githuburl": "https://github.com/facebook/pyre-check", - "featured": null, - "links": null, - "description": null, - "_repopath": "facebook/pyre-check", - "_reponame": "pyre-check", - "_stars": 6156, - "_forks": 405, - "_watches": 107, - "_topics": [ - "python", - "typechecker", - "type-check", - "static-analysis", - "ocaml", - "code-quality", - "abstract-interpretation", - "security", - "program-analysis", - "taint-analysis", - "control-flow-analysis" - ], - "_language": "OCaml", - "_homepage": "https://pyre-check.org/", - "_description": "pyre-check: Performant type-checking for python.", - "_organization": "facebook", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2017-11-10T00:00:00.000Z", - "_age_weeks": 264, - "_stars_per_week": 23.26, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/facebook/pyre-check/master/README.md", - "_readme_localurl": "facebook~pyre-check~README.md", - "_requirements_filenames": [ - "requirements.txt", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/facebook/pyre-check/master/requirements.txt", - "https://raw.githubusercontent.com/facebook/pyre-check/master/pyproject.toml" - ], - "_requirements_localurls": [ - "facebook~pyre-check~requirements.txt", - "facebook~pyre-check~pyproject.toml" - ] - }, { "index": 382, "category": "ml-ops", @@ -9533,9 +14197,9 @@ "description": null, "_repopath": "deepset-ai/haystack", "_reponame": "haystack", - "_stars": 6155, - "_forks": 955, - "_watches": 89, + "_stars": 6210, + "_forks": 964, + "_watches": 87, "_topics": [ "nlp", "question-answering", @@ -9561,11 +14225,33 @@ "_homepage": "https://deepset.ai/haystack", "_description": "haystack: :mag: Haystack is an open source NLP framework that leverages pre-trained Transformer models. It enables developers to quickly implement production-ready semantic search, question answering, summarization and document ranking for a wide range of NLP applications.", "_organization": "deepset-ai", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2019-11-14T00:00:00.000Z", - "_age_weeks": 159, - "_stars_per_week": 38.5, + "_age_weeks": 161, + "_stars_per_week": 38.44, + "_pop_contributor_count": 149, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "deepset", + "deepset-ai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 14.31, + "_pop_updated_issues_count": 617, + "_pop_closed_issues_count": 399, + "_pop_created_since_days": 38, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 18, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 18, + "_pop_issue_count": 617.0, + "_pop_comment_count": 895.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 57, + "_pop_score": 57.87, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/deepset-ai/haystack/master/README.md", "_readme_localurl": "deepset-ai~haystack~README.md", @@ -9588,9 +14274,9 @@ "description": null, "_repopath": "dbt-labs/dbt-core", "_reponame": "dbt-core", - "_stars": 6151, - "_forks": 1084, - "_watches": 128, + "_stars": 6207, + "_forks": 1095, + "_watches": 131, "_topics": [ "dbt-viewpoint", "slack", @@ -9604,11 +14290,33 @@ "_homepage": "https://getdbt.com", "_description": "dbt-core: dbt enables data analysts and engineers to transform their data using the same practices that software engineers use to build applications.", "_organization": "dbt-labs", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2016-03-10T00:00:00.000Z", - "_age_weeks": 351, - "_stars_per_week": 17.48, + "_age_weeks": 353, + "_stars_per_week": 17.56, + "_pop_contributor_count": 252, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "dbt-labs", + "fishtownanalytics" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 8.29, + "_pop_updated_issues_count": 890, + "_pop_closed_issues_count": 615, + "_pop_created_since_days": 82, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 40, + "_pop_recent_releases_estimated_tags": 21, + "_pop_recent_releases_adjusted_count": 40, + "_pop_issue_count": 889.0, + "_pop_comment_count": 1514.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 82, + "_pop_score": 62.46, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/dbt-labs/dbt-core/master/README.md", "_readme_localurl": "dbt-labs~dbt-core~README.md", @@ -9625,6 +14333,78 @@ "dbt-labs~dbt-core~setup.py" ] }, + { + "index": 20, + "category": "typing", + "githuburl": "https://github.com/facebook/pyre-check", + "featured": null, + "links": null, + "description": null, + "_repopath": "facebook/pyre-check", + "_reponame": "pyre-check", + "_stars": 6164, + "_forks": 407, + "_watches": 107, + "_topics": [ + "python", + "typechecker", + "type-check", + "static-analysis", + "ocaml", + "code-quality", + "abstract-interpretation", + "security", + "program-analysis", + "taint-analysis", + "control-flow-analysis" + ], + "_language": "OCaml", + "_homepage": "https://pyre-check.org/", + "_description": "pyre-check: Performant type-checking for python.", + "_organization": "facebook", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2017-11-10T00:00:00.000Z", + "_age_weeks": 266, + "_stars_per_week": 23.14, + "_pop_contributor_count": 231, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebook", + "metaplatforms" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 47.44, + "_pop_updated_issues_count": 46, + "_pop_closed_issues_count": 22, + "_pop_created_since_days": 62, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 16, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 46.0, + "_pop_comment_count": 51.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 322, + "_pop_score": 58.01, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/facebook/pyre-check/master/README.md", + "_readme_localurl": "facebook~pyre-check~README.md", + "_requirements_filenames": [ + "requirements.txt", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/facebook/pyre-check/master/requirements.txt", + "https://raw.githubusercontent.com/facebook/pyre-check/master/pyproject.toml" + ], + "_requirements_localurls": [ + "facebook~pyre-check~requirements.txt", + "facebook~pyre-check~pyproject.toml" + ] + }, { "index": 556, "category": "ml-dl", @@ -9634,8 +14414,8 @@ "description": null, "_repopath": "arogozhnikov/einops", "_reponame": "einops", - "_stars": 6099, - "_forks": 264, + "_stars": 6140, + "_forks": 269, "_watches": 62, "_topics": [ "deep-learning", @@ -9653,11 +14433,36 @@ "_homepage": "https://einops.rocks", "_description": "einops: Deep learning operations reinvented (for pytorch, tensorflow, jax and others)", "_organization": "arogozhnikov", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-12-04T00:00:00.000Z", "_created_at": "2018-09-22T00:00:00.000Z", - "_age_weeks": 219, - "_stars_per_week": 27.78, + "_age_weeks": 221, + "_stars_per_week": 27.75, + "_pop_contributor_count": 22, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "aperturescience", + "idea", + "princetonuniversity", + "quansight", + "sunyat-senuniversity" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.52, + "_pop_updated_issues_count": 41, + "_pop_closed_issues_count": 26, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 41.0, + "_pop_comment_count": 42.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 8, + "_pop_score": 43.95, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/arogozhnikov/einops/master/README.md", "_readme_localurl": "arogozhnikov~einops~README.md", @@ -9680,19 +14485,44 @@ "description": null, "_repopath": "hips/autograd", "_reponame": "autograd", - "_stars": 6097, - "_forks": 842, - "_watches": 215, + "_stars": 6109, + "_forks": 843, + "_watches": 216, "_topics": [], "_language": "Python", "_homepage": "", "_description": "autograd: Efficiently computes derivatives of numpy code.", "_organization": "hips", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-09-29T00:00:00.000Z", "_created_at": "2014-11-24T00:00:00.000Z", - "_age_weeks": 419, - "_stars_per_week": 14.54, + "_age_weeks": 421, + "_stars_per_week": 14.51, + "_pop_contributor_count": 52, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "googlebrain", + "universityofamsterdam", + "universityoftoronto", + "visa" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.08, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 98, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 7.0, + "_pop_comment_count": 15.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 160, + "_pop_score": 44.22, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/hips/autograd/master/README.md", "_readme_localurl": "hips~autograd~README.md", @@ -9706,54 +14536,6 @@ "hips~autograd~setup.py" ] }, - { - "index": 73, - "category": "gis", - "githuburl": "https://github.com/python-visualization/folium", - "featured": null, - "links": null, - "description": null, - "_repopath": "python-visualization/folium", - "_reponame": "folium", - "_stars": 6008, - "_forks": 2154, - "_watches": 166, - "_topics": [ - "closember", - "data-science", - "data-visualization", - "javascript", - "maps", - "python" - ], - "_language": "Python", - "_homepage": "https://python-visualization.github.io/folium/", - "_description": "folium: Python Data. Leaflet.js Maps. ", - "_organization": "python-visualization", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", - "_created_at": "2013-05-09T00:00:00.000Z", - "_age_weeks": 499, - "_stars_per_week": 12.02, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/python-visualization/folium/master/README.rst", - "_readme_localurl": "python-visualization~folium~README.rst", - "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/python-visualization/folium/master/requirements.txt", - "https://raw.githubusercontent.com/python-visualization/folium/master/setup.py", - "https://raw.githubusercontent.com/python-visualization/folium/master/pyproject.toml" - ], - "_requirements_localurls": [ - "python-visualization~folium~requirements.txt", - "python-visualization~folium~setup.py", - "python-visualization~folium~pyproject.toml" - ] - }, { "index": 121, "category": "ml-ops", @@ -9763,8 +14545,8 @@ "description": null, "_repopath": "dagster-io/dagster", "_reponame": "dagster", - "_stars": 5988, - "_forks": 743, + "_stars": 6053, + "_forks": 759, "_watches": 87, "_topics": [ "data-pipelines", @@ -9787,11 +14569,32 @@ "_homepage": "https://dagster.io", "_description": "dagster: An orchestration platform for the development, production, and observation of data assets.", "_organization": "dagster-io", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2018-04-30T00:00:00.000Z", - "_age_weeks": 240, - "_stars_per_week": 24.92, + "_age_weeks": 242, + "_stars_per_week": 25.01, + "_pop_contributor_count": 256, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "elementl" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 57.9, + "_pop_updated_issues_count": 1677, + "_pop_closed_issues_count": 1229, + "_pop_created_since_days": 56, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 59, + "_pop_recent_releases_estimated_tags": 139, + "_pop_recent_releases_adjusted_count": 59, + "_pop_issue_count": 1677.0, + "_pop_comment_count": 3154.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 2733, + "_pop_score": 70.22, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/dagster-io/dagster/master/README.md", "_readme_localurl": "dagster-io~dagster~README.md", @@ -9805,6 +14608,77 @@ "dagster-io~dagster~pyproject.toml" ] }, + { + "index": 73, + "category": "gis", + "githuburl": "https://github.com/python-visualization/folium", + "featured": null, + "links": null, + "description": null, + "_repopath": "python-visualization/folium", + "_reponame": "folium", + "_stars": 6023, + "_forks": 2154, + "_watches": 166, + "_topics": [ + "closember", + "data-science", + "data-visualization", + "javascript", + "maps", + "python" + ], + "_language": "Python", + "_homepage": "https://python-visualization.github.io/folium/", + "_description": "folium: Python Data. Leaflet.js Maps. ", + "_organization": "python-visualization", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", + "_created_at": "2013-05-09T00:00:00.000Z", + "_age_weeks": 501, + "_stars_per_week": 12.01, + "_pop_contributor_count": 147, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "datartibus", + "jgardinerconsultingltd.", + "stripe" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.81, + "_pop_updated_issues_count": 309, + "_pop_closed_issues_count": 276, + "_pop_created_since_days": 117, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 309.0, + "_pop_comment_count": 344.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 671, + "_pop_score": 58.7, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/python-visualization/folium/master/README.rst", + "_readme_localurl": "python-visualization~folium~README.rst", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/python-visualization/folium/master/requirements.txt", + "https://raw.githubusercontent.com/python-visualization/folium/master/setup.py", + "https://raw.githubusercontent.com/python-visualization/folium/master/pyproject.toml" + ], + "_requirements_localurls": [ + "python-visualization~folium~requirements.txt", + "python-visualization~folium~setup.py", + "python-visualization~folium~pyproject.toml" + ] + }, { "index": 879, "category": "time-series", @@ -9814,9 +14688,9 @@ "description": null, "_repopath": "sktime/sktime", "_reponame": "sktime", - "_stars": 5958, - "_forks": 974, - "_watches": 109, + "_stars": 5980, + "_forks": 984, + "_watches": 110, "_topics": [ "time-series", "machine-learning", @@ -9832,11 +14706,35 @@ "_homepage": "https://sktime.org", "_description": "sktime: A unified framework for machine learning with time series", "_organization": "sktime", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2018-11-06T00:00:00.000Z", - "_age_weeks": 213, - "_stars_per_week": 27.95, + "_age_weeks": 214, + "_stars_per_week": 27.83, + "_pop_contributor_count": 206, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ucl", + "uclalan-turing-instituteesrc-cdrc", + "universitycollegelondon", + "universityofeastanglia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 17.92, + "_pop_updated_issues_count": 655, + "_pop_closed_issues_count": 376, + "_pop_created_since_days": 50, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 16, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 16, + "_pop_issue_count": 656.0, + "_pop_comment_count": 1884.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.9, + "_pop_dependents_count": 51, + "_pop_score": 63.77, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/sktime/sktime/master/README.md", "_readme_localurl": "sktime~sktime~README.md", @@ -9850,50 +14748,6 @@ "sktime~sktime~pyproject.toml" ] }, - { - "index": 44, - "category": "ml", - "githuburl": "https://github.com/lmcinnes/umap", - "featured": null, - "links": null, - "description": null, - "_repopath": "lmcinnes/umap", - "_reponame": "umap", - "_stars": 5939, - "_forks": 692, - "_watches": 125, - "_topics": [ - "umap", - "dimensionality-reduction", - "visualization", - "machine-learning", - "topological-data-analysis" - ], - "_language": "Python", - "_homepage": null, - "_description": "umap: Uniform Manifold Approximation and Projection", - "_organization": "lmcinnes", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-11T00:00:00.000Z", - "_created_at": "2017-07-02T00:00:00.000Z", - "_age_weeks": 283, - "_stars_per_week": 20.95, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/lmcinnes/umap/master/README.rst", - "_readme_localurl": "lmcinnes~umap~README.rst", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/lmcinnes/umap/master/requirements.txt", - "https://raw.githubusercontent.com/lmcinnes/umap/master/setup.py" - ], - "_requirements_localurls": [ - "lmcinnes~umap~requirements.txt", - "lmcinnes~umap~setup.py" - ] - }, { "index": 410, "category": "web", @@ -9903,9 +14757,9 @@ "description": null, "_repopath": "encode/uvicorn", "_reponame": "uvicorn", - "_stars": 5925, - "_forks": 524, - "_watches": 86, + "_stars": 5962, + "_forks": 522, + "_watches": 87, "_topics": [ "python", "asyncio", @@ -9917,11 +14771,33 @@ "_homepage": "https://www.uvicorn.org/", "_description": "uvicorn: An ASGI web server, for Python. \ud83e\udd84", "_organization": "encode", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2017-05-31T00:00:00.000Z", - "_age_weeks": 288, - "_stars_per_week": 20.57, + "_age_weeks": 289, + "_stars_per_week": 20.58, + "_pop_contributor_count": 149, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "encode", + "encodeoss" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.92, + "_pop_updated_issues_count": 212, + "_pop_closed_issues_count": 178, + "_pop_created_since_days": 68, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 26, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 212.0, + "_pop_comment_count": 395.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 3899, + "_pop_score": 63.79, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/encode/uvicorn/master/README.md", "_readme_localurl": "encode~uvicorn~README.md", @@ -9941,6 +14817,74 @@ "encode~uvicorn~pyproject.toml" ] }, + { + "index": 44, + "category": "ml", + "githuburl": "https://github.com/lmcinnes/umap", + "featured": null, + "links": null, + "description": null, + "_repopath": "lmcinnes/umap", + "_reponame": "umap", + "_stars": 5961, + "_forks": 694, + "_watches": 124, + "_topics": [ + "umap", + "dimensionality-reduction", + "visualization", + "machine-learning", + "topological-data-analysis" + ], + "_language": "Python", + "_homepage": null, + "_description": "umap: Uniform Manifold Approximation and Projection", + "_organization": "lmcinnes", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-11-11T00:00:00.000Z", + "_created_at": "2017-07-02T00:00:00.000Z", + "_age_weeks": 285, + "_stars_per_week": 20.91, + "_pop_contributor_count": 109, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "anaconda", + "contextlabcosanlab", + "microsoft", + "tutteinstituteformathematicsandcomputing" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.87, + "_pop_updated_issues_count": 34, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 67, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 34.0, + "_pop_comment_count": 42.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 45, + "_pop_score": 46.95, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/lmcinnes/umap/master/README.rst", + "_readme_localurl": "lmcinnes~umap~README.rst", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/lmcinnes/umap/master/requirements.txt", + "https://raw.githubusercontent.com/lmcinnes/umap/master/setup.py" + ], + "_requirements_localurls": [ + "lmcinnes~umap~requirements.txt", + "lmcinnes~umap~setup.py" + ] + }, { "index": 599, "category": "gis", @@ -9950,8 +14894,8 @@ "description": null, "_repopath": "domlysz/blendergis", "_reponame": "BlenderGIS", - "_stars": 5848, - "_forks": 1087, + "_stars": 5875, + "_forks": 1093, "_watches": 244, "_topics": [ "blender", @@ -9978,11 +14922,32 @@ "_homepage": "", "_description": "BlenderGIS: Blender addons to make the bridge between Blender and geographic data", "_organization": "domlysz", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-05-31T00:00:00.000Z", "_created_at": "2014-05-08T00:00:00.000Z", - "_age_weeks": 447, - "_stars_per_week": 13.06, + "_age_weeks": 449, + "_stars_per_week": 13.07, + "_pop_contributor_count": 15, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "alphagov" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.21, + "_pop_updated_issues_count": 28, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 105, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 28.0, + "_pop_comment_count": 27.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 61, + "_pop_score": 33.46, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/domlysz/blendergis/master/README.md", "_readme_localurl": "domlysz~blendergis~README.md", @@ -9999,9 +14964,9 @@ "description": null, "_repopath": "espnet/espnet", "_reponame": "espnet", - "_stars": 5797, - "_forks": 1779, - "_watches": 183, + "_stars": 5832, + "_forks": 1782, + "_watches": 184, "_topics": [ "deep-learning", "end-to-end", @@ -10023,11 +14988,33 @@ "_homepage": "https://espnet.github.io/espnet/", "_description": "espnet: End-to-End Speech Processing Toolkit", "_organization": "espnet", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2017-12-13T00:00:00.000Z", - "_age_weeks": 260, - "_stars_per_week": 22.3, + "_age_weeks": 261, + "_stars_per_week": 22.28, + "_pop_contributor_count": 312, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "fairatmetaai", + "nagoyauniversity" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 35.96, + "_pop_updated_issues_count": 258, + "_pop_closed_issues_count": 151, + "_pop_created_since_days": 61, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 258.0, + "_pop_comment_count": 530.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 6280, + "_pop_score": 69.04, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/espnet/espnet/master/README.md", "_readme_localurl": "espnet~espnet~README.md", @@ -10050,7 +15037,7 @@ "description": null, "_repopath": "pypa/pipx", "_reponame": "pipx", - "_stars": 5769, + "_stars": 5810, "_forks": 265, "_watches": 65, "_topics": [ @@ -10065,11 +15052,33 @@ "_homepage": "https://pypa.github.io/pipx/", "_description": "pipx: Install and Run Python Applications in Isolated Environments", "_organization": "pypa", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2018-10-06T00:00:00.000Z", - "_age_weeks": 217, - "_stars_per_week": 26.52, + "_age_weeks": 219, + "_stars_per_week": 26.5, + "_pop_contributor_count": 82, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "astronomer", + "bloomberglp" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.12, + "_pop_updated_issues_count": 51, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 51, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 51.0, + "_pop_comment_count": 95.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 107, + "_pop_score": 49.22, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pypa/pipx/master/README.md", "_readme_localurl": "pypa~pipx~README.md", @@ -10083,6 +15092,63 @@ "pypa~pipx~pyproject.toml" ] }, + { + "index": 777, + "category": "util", + "githuburl": "https://github.com/google/latexify_py", + "featured": null, + "links": null, + "description": null, + "_repopath": "google/latexify_py", + "_reponame": "latexify_py", + "_stars": 5807, + "_forks": 316, + "_watches": 50, + "_topics": [], + "_language": "Python", + "_homepage": "", + "_description": "latexify_py: A library to generate LaTeX expression from Python code.", + "_organization": "google", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_created_at": "2020-07-25T00:00:00.000Z", + "_age_weeks": 125, + "_stars_per_week": 46.35, + "_pop_contributor_count": 24, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "inspired-co" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.69, + "_pop_updated_issues_count": 146, + "_pop_closed_issues_count": 133, + "_pop_created_since_days": 29, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 146.0, + "_pop_comment_count": 389.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 4, + "_pop_score": 42.05, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/google/latexify_py/master/README.md", + "_readme_localurl": "google~latexify_py~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/google/latexify_py/master/pyproject.toml" + ], + "_requirements_localurls": [ + "google~latexify_py~pyproject.toml" + ] + }, { "index": 345, "category": "jupyter", @@ -10092,8 +15158,8 @@ "description": null, "_repopath": "mwouts/jupytext", "_reponame": "jupytext", - "_stars": 5695, - "_forks": 361, + "_stars": 5713, + "_forks": 363, "_watches": 70, "_topics": [ "jupyter-notebook", @@ -10112,11 +15178,34 @@ "_homepage": "https://jupytext.readthedocs.io", "_description": "jupytext: Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts", "_organization": "mwouts", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-11-12T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-11T00:00:00.000Z", "_created_at": "2018-06-15T00:00:00.000Z", - "_age_weeks": 233, - "_stars_per_week": 24.37, + "_age_weeks": 235, + "_stars_per_week": 24.27, + "_pop_contributor_count": 74, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebookresearch", + "imperialcollegelondon", + "ucberkeley" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.9, + "_pop_updated_issues_count": 40, + "_pop_closed_issues_count": 18, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 29, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 40.0, + "_pop_comment_count": 92.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 113, + "_pop_score": 52.13, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/mwouts/jupytext/master/README.md", "_readme_localurl": "mwouts~jupytext~README.md", @@ -10137,38 +15226,69 @@ ] }, { - "index": 777, + "index": 69, "category": "util", - "githuburl": "https://github.com/google/latexify_py", + "githuburl": "https://github.com/pygithub/pygithub", "featured": null, "links": null, "description": null, - "_repopath": "google/latexify_py", - "_reponame": "latexify_py", - "_stars": 5679, - "_forks": 310, - "_watches": 51, - "_topics": [], + "_repopath": "pygithub/pygithub", + "_reponame": "PyGithub", + "_stars": 5678, + "_forks": 1566, + "_watches": 113, + "_topics": [ + "pygithub", + "python", + "github", + "github-api" + ], "_language": "Python", - "_homepage": "", - "_description": "latexify_py: A library to generate LaTeX expression from Python code.", - "_organization": "google", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2020-07-25T00:00:00.000Z", - "_age_weeks": 123, - "_stars_per_week": 45.96, + "_homepage": "https://pygithub.readthedocs.io/", + "_description": "PyGithub: Typed interactions with the GitHub API v3", + "_organization": "pygithub", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_created_at": "2012-02-25T00:00:00.000Z", + "_age_weeks": 564, + "_stars_per_week": 10.06, + "_pop_contributor_count": 293, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "authzed", + "suse", + "zendesk" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.31, + "_pop_updated_issues_count": 128, + "_pop_closed_issues_count": 53, + "_pop_created_since_days": 132, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 128.0, + "_pop_comment_count": 162.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 897, + "_pop_score": 58.53, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/google/latexify_py/master/README.md", - "_readme_localurl": "google~latexify_py~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pygithub/pygithub/master/README.md", + "_readme_localurl": "pygithub~pygithub~README.md", "_requirements_filenames": [ - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/google/latexify_py/master/pyproject.toml" + "https://raw.githubusercontent.com/pygithub/pygithub/master/requirements.txt", + "https://raw.githubusercontent.com/pygithub/pygithub/master/setup.py" ], "_requirements_localurls": [ - "google~latexify_py~pyproject.toml" + "pygithub~pygithub~requirements.txt", + "pygithub~pygithub~setup.py" ] }, { @@ -10180,8 +15300,8 @@ "description": null, "_repopath": "cleverhans-lab/cleverhans", "_reponame": "cleverhans", - "_stars": 5661, - "_forks": 1377, + "_stars": 5662, + "_forks": 1376, "_watches": 190, "_topics": [ "machine-learning", @@ -10192,11 +15312,32 @@ "_homepage": "", "_description": "cleverhans: An adversarial example library for constructing attacks, building defenses, and benchmarking both", "_organization": "cleverhans-lab", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2021-09-23T00:00:00.000Z", "_created_at": "2016-09-15T00:00:00.000Z", - "_age_weeks": 324, - "_stars_per_week": 17.43, + "_age_weeks": 326, + "_stars_per_week": 17.34, + "_pop_contributor_count": 129, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "universityoftoronto" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 76, + "_pop_updated_since_days": 15, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 5, + "_pop_score": 25.91, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/cleverhans-lab/cleverhans/master/README.md", "_readme_localurl": "cleverhans-lab~cleverhans~README.md", @@ -10210,49 +15351,6 @@ "cleverhans-lab~cleverhans~setup.py" ] }, - { - "index": 69, - "category": "util", - "githuburl": "https://github.com/pygithub/pygithub", - "featured": null, - "links": null, - "description": null, - "_repopath": "pygithub/pygithub", - "_reponame": "PyGithub", - "_stars": 5646, - "_forks": 1554, - "_watches": 113, - "_topics": [ - "pygithub", - "python", - "github", - "github-api" - ], - "_language": "Python", - "_homepage": "https://pygithub.readthedocs.io/", - "_description": "PyGithub: Typed interactions with the GitHub API v3", - "_organization": "pygithub", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-09T00:00:00.000Z", - "_created_at": "2012-02-25T00:00:00.000Z", - "_age_weeks": 562, - "_stars_per_week": 10.04, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pygithub/pygithub/master/README.md", - "_readme_localurl": "pygithub~pygithub~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pygithub/pygithub/master/requirements.txt", - "https://raw.githubusercontent.com/pygithub/pygithub/master/setup.py" - ], - "_requirements_localurls": [ - "pygithub~pygithub~requirements.txt", - "pygithub~pygithub~setup.py" - ] - }, { "index": 106, "category": "ml", @@ -10262,8 +15360,8 @@ "description": null, "_repopath": "nicolashug/surprise", "_reponame": "Surprise", - "_stars": 5623, - "_forks": 960, + "_stars": 5637, + "_forks": 963, "_watches": 149, "_topics": [ "recommender", @@ -10278,11 +15376,33 @@ "_homepage": "http://surpriselib.com", "_description": "Surprise: A Python scikit for building and analyzing recommender systems", "_organization": "nicolashug", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-10-31T00:00:00.000Z", "_created_at": "2016-10-23T00:00:00.000Z", - "_age_weeks": 319, - "_stars_per_week": 17.6, + "_age_weeks": 321, + "_stars_per_week": 17.55, + "_pop_contributor_count": 44, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "centralesupelec", + "hirosystems" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.52, + "_pop_updated_issues_count": 23, + "_pop_closed_issues_count": 12, + "_pop_created_since_days": 75, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 23.0, + "_pop_comment_count": 24.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 99, + "_pop_score": 41.67, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/nicolashug/surprise/master/README.md", "_readme_localurl": "nicolashug~surprise~README.md", @@ -10308,8 +15428,8 @@ "description": null, "_repopath": "pygame/pygame", "_reponame": "pygame", - "_stars": 5518, - "_forks": 2415, + "_stars": 5546, + "_forks": 2435, "_watches": 160, "_topics": [ "python", @@ -10324,11 +15444,30 @@ "_homepage": "https://www.pygame.org", "_description": "pygame: \ud83d\udc0d\ud83c\udfae pygame (the library) is a Free and Open Source python programming language library for making multimedia applications like games built on top of the excellent SDL library. C, Python, Native, OpenGL.", "_organization": "pygame", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2017-03-26T00:00:00.000Z", - "_age_weeks": 297, - "_stars_per_week": 18.55, + "_age_weeks": 299, + "_stars_per_week": 18.54, + "_pop_contributor_count": 263, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 13.81, + "_pop_updated_issues_count": 342, + "_pop_closed_issues_count": 231, + "_pop_created_since_days": 70, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 342.0, + "_pop_comment_count": 571.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 806, + "_pop_score": 58.38, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pygame/pygame/master/README.rst", "_readme_localurl": "pygame~pygame~README.rst", @@ -10343,48 +15482,70 @@ ] }, { - "index": 439, - "category": "perf", - "githuburl": "https://github.com/mher/flower", + "index": 773, + "category": "ml-dl", + "githuburl": "https://github.com/sanster/lama-cleaner", "featured": null, "links": null, "description": null, - "_repopath": "mher/flower", - "_reponame": "flower", - "_stars": 5476, - "_forks": 978, - "_watches": 144, + "_repopath": "sanster/lama-cleaner", + "_reponame": "lama-cleaner", + "_stars": 5506, + "_forks": 445, + "_watches": 47, "_topics": [ - "celery", - "task-queue", - "monitoring", - "administration", - "workers", - "rabbitmq", - "redis", - "python", - "asynchronous" + "inpainting", + "pytorch", + "lama", + "latent-diffusion", + "mat", + "zits", + "stable-diffusion" ], "_language": "Python", - "_homepage": "https://flower.readthedocs.io", - "_description": "flower: Real-time monitor and web admin for Celery distributed task queue", - "_organization": "mher", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-14T00:00:00.000Z", - "_created_at": "2012-07-08T00:00:00.000Z", - "_age_weeks": 543, - "_stars_per_week": 10.08, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/mher/flower/master/README.rst", - "_readme_localurl": "mher~flower~README.rst", + "_homepage": "", + "_description": "lama-cleaner: Image inpainting tool powered by SOTA AI Model. Remove any unwanted object, defect, people from your pictures or erase and replace(powered by stable diffusion) any thing on your pictures.", + "_organization": "sanster", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2021-11-15T00:00:00.000Z", + "_age_weeks": 57, + "_stars_per_week": 96.6, + "_pop_contributor_count": 11, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "musixmatchdev" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.69, + "_pop_updated_issues_count": 105, + "_pop_closed_issues_count": 84, + "_pop_created_since_days": 13, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 33, + "_pop_recent_releases_estimated_tags": 33, + "_pop_recent_releases_adjusted_count": 33, + "_pop_issue_count": 105.0, + "_pop_comment_count": 214.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 7, + "_pop_score": 40.77, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/sanster/lama-cleaner/master/README.md", + "_readme_localurl": "sanster~lama-cleaner~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/mher/flower/master/setup.py" + "https://raw.githubusercontent.com/sanster/lama-cleaner/master/requirements.txt", + "https://raw.githubusercontent.com/sanster/lama-cleaner/master/setup.py" ], "_requirements_localurls": [ - "mher~flower~setup.py" + "sanster~lama-cleaner~requirements.txt", + "sanster~lama-cleaner~setup.py" ] }, { @@ -10396,7 +15557,7 @@ "description": null, "_repopath": "theskumar/python-dotenv", "_reponame": "python-dotenv", - "_stars": 5470, + "_stars": 5495, "_forks": 353, "_watches": 33, "_topics": [ @@ -10412,11 +15573,35 @@ "_homepage": "https://saurabh-kumar.com/python-dotenv/", "_description": "python-dotenv: Reads key-value pairs from a .env file and can set them as environment variables. It helps in developing applications following the 12-factor principles.", "_organization": "theskumar", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-25T00:00:00.000Z", "_created_at": "2014-09-06T00:00:00.000Z", - "_age_weeks": 430, - "_stars_per_week": 12.7, + "_age_weeks": 432, + "_stars_per_week": 12.71, + "_pop_contributor_count": 85, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "codiumteam", + "docker", + "fueled", + "latacora" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.69, + "_pop_updated_issues_count": 29, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 101, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 29.0, + "_pop_comment_count": 23.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 3185, + "_pop_score": 53.15, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/theskumar/python-dotenv/master/README.md", "_readme_localurl": "theskumar~python-dotenv~README.md", @@ -10433,6 +15618,130 @@ "theskumar~python-dotenv~setup.py" ] }, + { + "index": 682, + "category": "diffusion", + "githuburl": "https://github.com/compvis/latent-diffusion", + "featured": null, + "links": null, + "description": null, + "_repopath": "compvis/latent-diffusion", + "_reponame": "latent-diffusion", + "_stars": 5488, + "_forks": 716, + "_watches": 71, + "_topics": [], + "_language": "Jupyter Notebook", + "_homepage": null, + "_description": "latent-diffusion: High-Resolution Image Synthesis with Latent Diffusion Models", + "_organization": "compvis", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-07-26T00:00:00.000Z", + "_created_at": "2021-12-20T00:00:00.000Z", + "_age_weeks": 52, + "_stars_per_week": 105.54, + "_pop_contributor_count": 5, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "huggingface", + "runwayml" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.52, + "_pop_updated_issues_count": 80, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 12, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 80.0, + "_pop_comment_count": 126.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 16, + "_pop_score": 26.99, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/compvis/latent-diffusion/master/README.md", + "_readme_localurl": "compvis~latent-diffusion~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/compvis/latent-diffusion/master/setup.py" + ], + "_requirements_localurls": [ + "compvis~latent-diffusion~setup.py" + ] + }, + { + "index": 439, + "category": "perf", + "githuburl": "https://github.com/mher/flower", + "featured": null, + "links": null, + "description": null, + "_repopath": "mher/flower", + "_reponame": "flower", + "_stars": 5485, + "_forks": 979, + "_watches": 144, + "_topics": [ + "celery", + "task-queue", + "monitoring", + "administration", + "workers", + "rabbitmq", + "redis", + "python", + "asynchronous" + ], + "_language": "Python", + "_homepage": "https://flower.readthedocs.io", + "_description": "flower: Real-time monitor and web admin for Celery distributed task queue", + "_organization": "mher", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-11-14T00:00:00.000Z", + "_created_at": "2012-07-08T00:00:00.000Z", + "_age_weeks": 545, + "_stars_per_week": 10.06, + "_pop_contributor_count": 196, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "robinhoodmarkets", + "zipsale" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.27, + "_pop_updated_issues_count": 31, + "_pop_closed_issues_count": 12, + "_pop_created_since_days": 127, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 31.0, + "_pop_comment_count": 41.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 364, + "_pop_score": 50.7, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/mher/flower/master/README.rst", + "_readme_localurl": "mher~flower~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/mher/flower/master/setup.py" + ], + "_requirements_localurls": [ + "mher~flower~setup.py" + ] + }, { "index": 723, "category": "ml", @@ -10442,9 +15751,9 @@ "description": null, "_repopath": "py-why/dowhy", "_reponame": "dowhy", - "_stars": 5445, - "_forks": 766, - "_watches": 135, + "_stars": 5478, + "_forks": 771, + "_watches": 136, "_topics": [ "causal-inference", "machine-learning", @@ -10462,11 +15771,33 @@ "_homepage": "https://www.pywhy.org/dowhy", "_description": "DoWhy is a Python library for causal inference that supports explicit modeling and testing of causal assumptions. DoWhy is based on a unified language for causal inference, combining causal graphical models and potential outcomes frameworks. ", "_organization": "py-why", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2018-05-31T00:00:00.000Z", - "_age_weeks": 235, - "_stars_per_week": 23.09, + "_age_weeks": 237, + "_stars_per_week": 23.06, + "_pop_contributor_count": 64, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazon", + "barclaysib;columbia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.81, + "_pop_updated_issues_count": 191, + "_pop_closed_issues_count": 159, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 191.0, + "_pop_comment_count": 321.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 5, + "_pop_score": 47.82, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/py-why/dowhy/master/README.rst", "_readme_localurl": "py-why~dowhy~README.rst", @@ -10489,8 +15820,8 @@ "description": null, "_repopath": "pycqa/isort", "_reponame": "isort", - "_stars": 5393, - "_forks": 498, + "_stars": 5429, + "_forks": 502, "_watches": 42, "_topics": [ "auto-formatter", @@ -10509,11 +15840,35 @@ "_homepage": "https://pycqa.github.io/isort/", "_description": "isort: A Python utility / library to sort imports.", "_organization": "pycqa", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-05-20T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2013-09-02T00:00:00.000Z", - "_age_weeks": 483, - "_stars_per_week": 11.16, + "_age_weeks": 485, + "_stars_per_week": 11.19, + "_pop_contributor_count": 271, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "pioneervalleybooks", + "stripe", + "swisscom" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.6, + "_pop_updated_issues_count": 124, + "_pop_closed_issues_count": 92, + "_pop_created_since_days": 113, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 124.0, + "_pop_comment_count": 106.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 9130, + "_pop_score": 65.37, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pycqa/isort/master/README.md", "_readme_localurl": "pycqa~isort~README.md", @@ -10527,41 +15882,6 @@ "pycqa~isort~pyproject.toml" ] }, - { - "index": 682, - "category": "diffusion", - "githuburl": "https://github.com/compvis/latent-diffusion", - "featured": null, - "links": null, - "description": null, - "_repopath": "compvis/latent-diffusion", - "_reponame": "latent-diffusion", - "_stars": 5350, - "_forks": 690, - "_watches": 70, - "_topics": [], - "_language": "Jupyter Notebook", - "_homepage": null, - "_description": "latent-diffusion: High-Resolution Image Synthesis with Latent Diffusion Models", - "_organization": "compvis", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-07-26T00:00:00.000Z", - "_created_at": "2021-12-20T00:00:00.000Z", - "_age_weeks": 50, - "_stars_per_week": 106.39, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/compvis/latent-diffusion/master/README.md", - "_readme_localurl": "compvis~latent-diffusion~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/compvis/latent-diffusion/master/setup.py" - ], - "_requirements_localurls": [ - "compvis~latent-diffusion~setup.py" - ] - }, { "index": 96, "category": "data", @@ -10571,8 +15891,8 @@ "description": null, "_repopath": "vi3k6i5/flashtext", "_reponame": "flashtext", - "_stars": 5321, - "_forks": 598, + "_stars": 5326, + "_forks": 597, "_watches": 139, "_topics": [ "search-in-text", @@ -10585,11 +15905,32 @@ "_homepage": null, "_description": "flashtext: Extract Keywords from sentence or Replace keywords in sentences.", "_organization": "vi3k6i5", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2020-05-03T00:00:00.000Z", "_created_at": "2017-08-15T00:00:00.000Z", - "_age_weeks": 277, - "_stars_per_week": 19.2, + "_age_weeks": 278, + "_stars_per_week": 19.1, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "meta" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 65, + "_pop_updated_since_days": 32, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 5, + "_pop_score": 18.52, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/vi3k6i5/flashtext/master/README.rst", "_readme_localurl": "vi3k6i5~flashtext~README.rst", @@ -10603,52 +15944,6 @@ "vi3k6i5~flashtext~setup.py" ] }, - { - "index": 773, - "category": "ml-dl", - "githuburl": "https://github.com/sanster/lama-cleaner", - "featured": null, - "links": null, - "description": null, - "_repopath": "sanster/lama-cleaner", - "_reponame": "lama-cleaner", - "_stars": 5278, - "_forks": 415, - "_watches": 42, - "_topics": [ - "inpainting", - "pytorch", - "lama", - "latent-diffusion", - "mat", - "zits", - "stable-diffusion" - ], - "_language": "Python", - "_homepage": "", - "_description": "lama-cleaner: Image inpainting tool powered by SOTA AI Model. Remove any unwanted object, defect, people from your pictures or erase and replace(powered by stable diffusion) any thing on your pictures.", - "_organization": "sanster", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2021-11-15T00:00:00.000Z", - "_age_weeks": 55, - "_stars_per_week": 95.47, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/sanster/lama-cleaner/master/README.md", - "_readme_localurl": "sanster~lama-cleaner~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/sanster/lama-cleaner/master/requirements.txt", - "https://raw.githubusercontent.com/sanster/lama-cleaner/master/setup.py" - ], - "_requirements_localurls": [ - "sanster~lama-cleaner~requirements.txt", - "sanster~lama-cleaner~setup.py" - ] - }, { "index": 579, "category": "ml", @@ -10658,8 +15953,8 @@ "description": null, "_repopath": "probml/pyprobml", "_reponame": "pyprobml", - "_stars": 5256, - "_forks": 1243, + "_stars": 5282, + "_forks": 1249, "_watches": 173, "_topics": [ "jupyter-notebooks", @@ -10680,11 +15975,36 @@ "_homepage": "", "_description": "pyprobml: Python code for \"Probabilistic Machine learning\" book by Kevin Murphy", "_organization": "probml", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-26T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2016-08-17T00:00:00.000Z", - "_age_weeks": 329, - "_stars_per_week": 15.98, + "_age_weeks": 330, + "_stars_per_week": 15.97, + "_pop_contributor_count": 66, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "collaborative,learning,andadaptiverobots(clear)", + "google", + "iitgandhinagar", + "indianinstituteofscience(iisc)", + "nvidia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 10.58, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 77, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 7.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 232, + "_pop_score": 50.48, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/probml/pyprobml/master/README.md", "_readme_localurl": "probml~pyprobml~README.md", @@ -10710,7 +16030,7 @@ "description": null, "_repopath": "airbnb/knowledge-repo", "_reponame": "knowledge-repo", - "_stars": 5229, + "_stars": 5238, "_forks": 704, "_watches": 180, "_topics": [ @@ -10723,11 +16043,33 @@ "_homepage": "", "_description": "knowledge-repo: A next-generation curated knowledge sharing platform for data scientists and other technical professions.", "_organization": "airbnb", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2016-08-17T00:00:00.000Z", - "_age_weeks": 329, - "_stars_per_week": 15.89, + "_age_weeks": 330, + "_stars_per_week": 15.84, + "_pop_contributor_count": 69, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "airbnb", + "datascientistatnetflix" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.25, + "_pop_updated_issues_count": 17, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 77, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 17.0, + "_pop_comment_count": 9.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 16, + "_pop_score": 43.26, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/airbnb/knowledge-repo/master/README.md", "_readme_localurl": "airbnb~knowledge-repo~README.md", @@ -10744,82 +16086,6 @@ "airbnb~knowledge-repo~setup.py" ] }, - { - "index": 511, - "category": "ml", - "githuburl": "https://github.com/google/automl", - "featured": null, - "links": null, - "description": null, - "_repopath": "google/automl", - "_reponame": "automl", - "_stars": 5209, - "_forks": 1382, - "_watches": 150, - "_topics": [ - "automl", - "efficientdet", - "object-detection", - "efficientnet", - "efficientnetv2" - ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "automl: Google Brain AutoML", - "_organization": "google", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-10-09T00:00:00.000Z", - "_created_at": "2020-03-12T00:00:00.000Z", - "_age_weeks": 142, - "_stars_per_week": 36.46, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/google/automl/master/README.md", - "_readme_localurl": "google~automl~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, - { - "index": 632, - "category": "util", - "githuburl": "https://github.com/pyca/cryptography", - "featured": null, - "links": null, - "description": null, - "_repopath": "pyca/cryptography", - "_reponame": "cryptography", - "_stars": 5207, - "_forks": 1099, - "_watches": 119, - "_topics": [ - "python", - "cryptography" - ], - "_language": "Python", - "_homepage": "https://cryptography.io", - "_description": "cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.", - "_organization": "pyca", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2013-08-07T00:00:00.000Z", - "_age_weeks": 487, - "_stars_per_week": 10.69, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pyca/cryptography/master/README.rst", - "_readme_localurl": "pyca~cryptography~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pyca/cryptography/master/setup.py", - "https://raw.githubusercontent.com/pyca/cryptography/master/pyproject.toml" - ], - "_requirements_localurls": [ - "pyca~cryptography~setup.py", - "pyca~cryptography~pyproject.toml" - ] - }, { "index": 283, "category": "util", @@ -10829,8 +16095,8 @@ "description": null, "_repopath": "sdispater/pendulum", "_reponame": "pendulum", - "_stars": 5204, - "_forks": 308, + "_stars": 5226, + "_forks": 312, "_watches": 63, "_topics": [ "python", @@ -10844,11 +16110,32 @@ "_homepage": "https://pendulum.eustace.io", "_description": "pendulum: Python datetimes made easy", "_organization": "sdispater", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-24T00:00:00.000Z", "_created_at": "2016-06-27T00:00:00.000Z", - "_age_weeks": 336, - "_stars_per_week": 15.47, + "_age_weeks": 338, + "_stars_per_week": 15.46, + "_pop_contributor_count": 87, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "stxnext" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.75, + "_pop_updated_issues_count": 39, + "_pop_closed_issues_count": 15, + "_pop_created_since_days": 79, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 39.0, + "_pop_comment_count": 28.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 60, + "_pop_score": 41.09, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/sdispater/pendulum/master/README.rst", "_readme_localurl": "sdispater~pendulum~README.rst", @@ -10863,50 +16150,65 @@ ] }, { - "index": 434, + "index": 632, "category": "util", - "githuburl": "https://github.com/scikit-image/scikit-image", + "githuburl": "https://github.com/pyca/cryptography", "featured": null, "links": null, "description": null, - "_repopath": "scikit-image/scikit-image", - "_reponame": "scikit-image", - "_stars": 5153, - "_forks": 2076, - "_watches": 187, + "_repopath": "pyca/cryptography", + "_reponame": "cryptography", + "_stars": 5220, + "_forks": 1103, + "_watches": 119, "_topics": [ - "image-processing", "python", - "computer-vision", - "hacktoberfest", - "closember" + "cryptography" ], "_language": "Python", - "_homepage": "https://scikit-image.org", - "_description": "scikit-image: Image processing in Python", - "_organization": "scikit-image", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-03T00:00:00.000Z", - "_created_at": "2011-07-07T00:00:00.000Z", - "_age_weeks": 595, - "_stars_per_week": 8.65, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/scikit-image/scikit-image/master/README.md", - "_readme_localurl": "scikit-image~scikit-image~README.md", + "_homepage": "https://cryptography.io", + "_description": "cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.", + "_organization": "pyca", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2013-08-07T00:00:00.000Z", + "_age_weeks": 488, + "_stars_per_week": 10.68, + "_pop_contributor_count": 275, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "purple-dot" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 14.67, + "_pop_updated_issues_count": 380, + "_pop_closed_issues_count": 359, + "_pop_created_since_days": 114, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 380.0, + "_pop_comment_count": 341.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 11167, + "_pop_score": 67.29, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pyca/cryptography/master/README.rst", + "_readme_localurl": "pyca~cryptography~README.rst", "_requirements_filenames": [ - "requirements.txt", "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/scikit-image/scikit-image/master/requirements.txt", - "https://raw.githubusercontent.com/scikit-image/scikit-image/master/setup.py", - "https://raw.githubusercontent.com/scikit-image/scikit-image/master/pyproject.toml" + "https://raw.githubusercontent.com/pyca/cryptography/master/setup.py", + "https://raw.githubusercontent.com/pyca/cryptography/master/pyproject.toml" ], "_requirements_localurls": [ - "scikit-image~scikit-image~requirements.txt", - "scikit-image~scikit-image~setup.py", - "scikit-image~scikit-image~pyproject.toml" + "pyca~cryptography~setup.py", + "pyca~cryptography~pyproject.toml" ] }, { @@ -10918,9 +16220,9 @@ "description": null, "_repopath": "nvidia/nemo", "_reponame": "NeMo", - "_stars": 5145, - "_forks": 1284, - "_watches": 137, + "_stars": 5219, + "_forks": 1294, + "_watches": 138, "_topics": [ "deep-learning", "speech-recognition", @@ -10943,11 +16245,33 @@ "_homepage": "https://nvidia.github.io/NeMo/", "_description": "NeMo: a toolkit for conversational AI", "_organization": "nvidia", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2019-08-05T00:00:00.000Z", - "_age_weeks": 174, - "_stars_per_week": 29.52, + "_age_weeks": 176, + "_stars_per_week": 29.65, + "_pop_contributor_count": 193, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "nvidia", + "nyu,nvidia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 18.9, + "_pop_updated_issues_count": 833, + "_pop_closed_issues_count": 753, + "_pop_created_since_days": 41, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 833.0, + "_pop_comment_count": 1535.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 885, + "_pop_score": 64.8, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/nvidia/nemo/master/README.rst", "_readme_localurl": "nvidia~nemo~README.rst", @@ -10962,47 +16286,201 @@ ] }, { - "index": 3, + "index": 511, "category": "ml", - "githuburl": "https://github.com/awslabs/autogluon", + "githuburl": "https://github.com/google/automl", "featured": null, "links": null, "description": null, - "_repopath": "awslabs/autogluon", - "_reponame": "autogluon", - "_stars": 5124, - "_forks": 672, - "_watches": 96, + "_repopath": "google/automl", + "_reponame": "automl", + "_stars": 5211, + "_forks": 1382, + "_watches": 150, "_topics": [ "automl", - "machine-learning", - "data-science", - "deep-learning", - "ensemble-learning", - "image-classification", - "computer-vision", - "natural-language-processing", - "structured-data", + "efficientdet", "object-detection", - "gluon", - "transfer-learning", - "pytorch", - "automated-machine-learning", - "scikit-learn", - "autogluon", - "tabular-data", - "hyperparameter-optimization", - "time-series" - ], + "efficientnet", + "efficientnetv2" + ], + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "automl: Google Brain AutoML", + "_organization": "google", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-10-09T00:00:00.000Z", + "_created_at": "2020-03-12T00:00:00.000Z", + "_age_weeks": 144, + "_stars_per_week": 36.04, + "_pop_contributor_count": 37, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amd", + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.48, + "_pop_updated_issues_count": 13, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 34, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 13.0, + "_pop_comment_count": 4.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 959, + "_pop_score": 39.58, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/google/automl/master/README.md", + "_readme_localurl": "google~automl~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 434, + "category": "util", + "githuburl": "https://github.com/scikit-image/scikit-image", + "featured": null, + "links": null, + "description": null, + "_repopath": "scikit-image/scikit-image", + "_reponame": "scikit-image", + "_stars": 5172, + "_forks": 2076, + "_watches": 187, + "_topics": [ + "image-processing", + "python", + "computer-vision", + "hacktoberfest", + "closember" + ], + "_language": "Python", + "_homepage": "https://scikit-image.org", + "_description": "scikit-image: Image processing in Python", + "_organization": "scikit-image", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2011-07-07T00:00:00.000Z", + "_age_weeks": 597, + "_stars_per_week": 8.66, + "_pop_contributor_count": 586, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "biomedicinediscoveryinstitute,monashuniversity", + "microsoft", + "mongodb", + "nvidia", + "universityofcalifornia,berkeley" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.21, + "_pop_updated_issues_count": 376, + "_pop_closed_issues_count": 226, + "_pop_created_since_days": 139, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 377.0, + "_pop_comment_count": 566.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 779, + "_pop_score": 66.91, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/scikit-image/scikit-image/master/README.md", + "_readme_localurl": "scikit-image~scikit-image~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/scikit-image/scikit-image/master/requirements.txt", + "https://raw.githubusercontent.com/scikit-image/scikit-image/master/setup.py", + "https://raw.githubusercontent.com/scikit-image/scikit-image/master/pyproject.toml" + ], + "_requirements_localurls": [ + "scikit-image~scikit-image~requirements.txt", + "scikit-image~scikit-image~setup.py", + "scikit-image~scikit-image~pyproject.toml" + ] + }, + { + "index": 3, + "category": "ml", + "githuburl": "https://github.com/awslabs/autogluon", + "featured": null, + "links": null, + "description": null, + "_repopath": "awslabs/autogluon", + "_reponame": "autogluon", + "_stars": 5160, + "_forks": 674, + "_watches": 94, + "_topics": [ + "automl", + "machine-learning", + "data-science", + "deep-learning", + "ensemble-learning", + "image-classification", + "computer-vision", + "natural-language-processing", + "structured-data", + "object-detection", + "gluon", + "transfer-learning", + "pytorch", + "automated-machine-learning", + "scikit-learn", + "autogluon", + "tabular-data", + "hyperparameter-optimization", + "time-series", + "forecasting" + ], "_language": "Python", "_homepage": "https://auto.gluon.ai/", "_description": "AutoGluon: AutoML for Image, Text, Time Series, and Tabular Data", "_organization": "awslabs", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2019-07-29T00:00:00.000Z", - "_age_weeks": 175, - "_stars_per_week": 29.23, + "_age_weeks": 177, + "_stars_per_week": 29.15, + "_pop_contributor_count": 96, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazon", + "amazonai", + "amazonwebservices", + "awsai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 12.71, + "_pop_updated_issues_count": 481, + "_pop_closed_issues_count": 353, + "_pop_created_since_days": 41, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 481.0, + "_pop_comment_count": 972.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 56, + "_pop_score": 58.67, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/awslabs/autogluon/master/README.md", "_readme_localurl": "awslabs~autogluon~README.md", @@ -11025,8 +16503,8 @@ "description": null, "_repopath": "unit8co/darts", "_reponame": "darts", - "_stars": 5102, - "_forks": 551, + "_stars": 5138, + "_forks": 557, "_watches": 41, "_topics": [ "python", @@ -11039,11 +16517,33 @@ "_homepage": "https://unit8co.github.io/darts/", "_description": "darts: A python library for easy manipulation and forecasting of time series.", "_organization": "unit8co", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2018-09-13T00:00:00.000Z", - "_age_weeks": 220, - "_stars_per_week": 23.1, + "_age_weeks": 222, + "_stars_per_week": 23.08, + "_pop_contributor_count": 73, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "unit8co", + "unit8sa" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.38, + "_pop_updated_issues_count": 278, + "_pop_closed_issues_count": 166, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 278.0, + "_pop_comment_count": 419.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 13, + "_pop_score": 50.21, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/unit8co/darts/master/README.md", "_readme_localurl": "unit8co~darts~README.md", @@ -11069,8 +16569,8 @@ "description": null, "_repopath": "facebookresearch/mmf", "_reponame": "mmf", - "_stars": 5084, - "_forks": 895, + "_stars": 5093, + "_forks": 899, "_watches": 117, "_topics": [ "pytorch", @@ -11088,11 +16588,34 @@ "_homepage": "https://mmf.sh/", "_description": "mmf: A modular framework for vision & language multimodal research from Facebook AI Research (FAIR)", "_organization": "facebookresearch", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-10-19T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-10T00:00:00.000Z", "_created_at": "2018-06-27T00:00:00.000Z", - "_age_weeks": 232, - "_stars_per_week": 21.91, + "_age_weeks": 233, + "_stars_per_week": 21.79, + "_pop_contributor_count": 107, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "metaai", + "researchhuggingface,contributorjquery,pastfacebookresearch", + "uwstudent" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.83, + "_pop_updated_issues_count": 18, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 54, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 18.0, + "_pop_comment_count": 12.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 3572, + "_pop_score": 51.55, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/mmf/master/README.md", "_readme_localurl": "facebookresearch~mmf~README.md", @@ -11121,9 +16644,9 @@ "description": null, "_repopath": "activeloopai/hub", "_reponame": "deeplake", - "_stars": 5059, - "_forks": 409, - "_watches": 63, + "_stars": 5093, + "_forks": 412, + "_watches": 66, "_topics": [ "datasets", "deep-learning", @@ -11149,11 +16672,32 @@ "_homepage": "https://activeloop.ai", "_description": "deeplake: Data Lake for Deep Learning. Build, manage, query, version, & visualize datasets. Stream data real-time to PyTorch/TensorFlow. https://activeloop.ai ", "_organization": "activeloopai", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2019-08-09T00:00:00.000Z", - "_age_weeks": 173, - "_stars_per_week": 29.12, + "_age_weeks": 175, + "_stars_per_week": 29.03, + "_pop_contributor_count": 109, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "activeloop" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 23.83, + "_pop_updated_issues_count": 202, + "_pop_closed_issues_count": 178, + "_pop_created_since_days": 41, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 47, + "_pop_recent_releases_estimated_tags": 30, + "_pop_recent_releases_adjusted_count": 47, + "_pop_issue_count": 202.0, + "_pop_comment_count": 254.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 242, + "_pop_score": 57.54, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/activeloopai/hub/master/README.md", "_readme_localurl": "activeloopai~hub~README.md", @@ -11170,41 +16714,6 @@ "activeloopai~hub~setup.py" ] }, - { - "index": 301, - "category": "data", - "githuburl": "https://github.com/kaggle/kaggle-api", - "featured": null, - "links": null, - "description": null, - "_repopath": "kaggle/kaggle-api", - "_reponame": "kaggle-api", - "_stars": 5054, - "_forks": 979, - "_watches": 188, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "kaggle-api: Official Kaggle API", - "_organization": "kaggle", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2021-03-15T00:00:00.000Z", - "_created_at": "2018-01-25T00:00:00.000Z", - "_age_weeks": 253, - "_stars_per_week": 19.91, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/kaggle/kaggle-api/master/README.md", - "_readme_localurl": "kaggle~kaggle-api~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/kaggle/kaggle-api/master/setup.py" - ], - "_requirements_localurls": [ - "kaggle~kaggle-api~setup.py" - ] - }, { "index": 161, "category": "ml", @@ -11214,9 +16723,9 @@ "description": null, "_repopath": "wandb/client", "_reponame": "wandb", - "_stars": 5051, - "_forks": 385, - "_watches": 39, + "_stars": 5078, + "_forks": 387, + "_watches": 38, "_topics": [ "machine-learning", "experiment-track", @@ -11240,11 +16749,33 @@ "_homepage": "https://wandb.ai", "_description": "wandb: \ud83d\udd25 A tool for visualizing and tracking your machine learning experiments. This repo contains the CLI and Python API.", "_organization": "wandb", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2017-03-24T00:00:00.000Z", - "_age_weeks": 297, - "_stars_per_week": 16.97, + "_age_weeks": 299, + "_stars_per_week": 16.96, + "_pop_contributor_count": 135, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "crowdflower.com", + "weightsandbiases" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 11.27, + "_pop_updated_issues_count": 692, + "_pop_closed_issues_count": 325, + "_pop_created_since_days": 70, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 26, + "_pop_recent_releases_estimated_tags": 21, + "_pop_recent_releases_adjusted_count": 26, + "_pop_issue_count": 692.0, + "_pop_comment_count": 1398.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 363, + "_pop_score": 63.32, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/wandb/client/master/README.md", "_readme_localurl": "wandb~client~README.md", @@ -11264,6 +16795,62 @@ "wandb~client~pyproject.toml" ] }, + { + "index": 301, + "category": "data", + "githuburl": "https://github.com/kaggle/kaggle-api", + "featured": null, + "links": null, + "description": null, + "_repopath": "kaggle/kaggle-api", + "_reponame": "kaggle-api", + "_stars": 5073, + "_forks": 978, + "_watches": 188, + "_topics": [], + "_language": "Python", + "_homepage": "", + "_description": "kaggle-api: Official Kaggle API", + "_organization": "kaggle", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2021-03-15T00:00:00.000Z", + "_created_at": "2018-01-25T00:00:00.000Z", + "_age_weeks": 255, + "_stars_per_week": 19.85, + "_pop_contributor_count": 36, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 37, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 60, + "_pop_updated_since_days": 21, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 37.0, + "_pop_comment_count": 41.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 27, + "_pop_score": 28.95, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/kaggle/kaggle-api/master/README.md", + "_readme_localurl": "kaggle~kaggle-api~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/kaggle/kaggle-api/master/setup.py" + ], + "_requirements_localurls": [ + "kaggle~kaggle-api~setup.py" + ] + }, { "index": 81, "category": "util", @@ -11273,8 +16860,8 @@ "description": null, "_repopath": "sphinx-doc/sphinx", "_reponame": "sphinx", - "_stars": 5031, - "_forks": 1801, + "_stars": 5056, + "_forks": 1812, "_watches": 140, "_topics": [ "python", @@ -11288,11 +16875,34 @@ "_homepage": "https://www.sphinx-doc.org/", "_description": "sphinx: The Sphinx documentation generator", "_organization": "sphinx-doc", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2015-01-02T00:00:00.000Z", - "_age_weeks": 413, - "_stars_per_week": 12.16, + "_age_weeks": 415, + "_stars_per_week": 12.17, + "_pop_contributor_count": 759, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "beproud", + "fzj\u00fclich", + "timeintermedia(timedia)" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 13.21, + "_pop_updated_issues_count": 1262, + "_pop_closed_issues_count": 297, + "_pop_created_since_days": 97, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 15, + "_pop_recent_releases_estimated_tags": 31, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 1262.0, + "_pop_comment_count": 578.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 18396, + "_pop_score": 74.04, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/sphinx-doc/sphinx/master/README.rst", "_readme_localurl": "sphinx-doc~sphinx~README.rst", @@ -11315,8 +16925,8 @@ "description": null, "_repopath": "nteract/papermill", "_reponame": "papermill", - "_stars": 5021, - "_forks": 378, + "_stars": 5037, + "_forks": 379, "_watches": 91, "_topics": [ "jupyter", @@ -11335,11 +16945,34 @@ "_homepage": "http://papermill.readthedocs.io/en/latest/", "_description": "papermill: \ud83d\udcda Parameterize, execute, and analyze notebooks", "_organization": "nteract", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-10-18T00:00:00.000Z", "_created_at": "2017-07-06T00:00:00.000Z", - "_age_weeks": 282, - "_stars_per_week": 17.75, + "_age_weeks": 284, + "_stars_per_week": 17.7, + "_pop_contributor_count": 108, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "netflix", + "noteable-io", + "willingconsulting" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.77, + "_pop_updated_issues_count": 36, + "_pop_closed_issues_count": 19, + "_pop_created_since_days": 66, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 36.0, + "_pop_comment_count": 56.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 106, + "_pop_score": 50.18, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/nteract/papermill/master/README.md", "_readme_localurl": "nteract~papermill~README.md", @@ -11359,6 +16992,92 @@ "nteract~papermill~pyproject.toml" ] }, + { + "index": 214, + "category": "nlp", + "githuburl": "https://github.com/speechbrain/speechbrain", + "featured": null, + "links": null, + "description": null, + "_repopath": "speechbrain/speechbrain", + "_reponame": "speechbrain", + "_stars": 5021, + "_forks": 974, + "_watches": 110, + "_topics": [ + "speech-recognition", + "speech-toolkit", + "speaker-recognition", + "speech-to-text", + "speech-enhancement", + "speech-separation", + "audio", + "audio-processing", + "speech-processing", + "speechrecognition", + "asr", + "voice-recognition", + "spoken-language-understanding", + "speaker-diarization", + "speaker-verification", + "pytorch", + "huggingface", + "transformers", + "language-model", + "deep-learning" + ], + "_language": "Python", + "_homepage": "http://speechbrain.github.io", + "_description": "speechbrain: A PyTorch-based Speech Toolkit", + "_organization": "speechbrain", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", + "_created_at": "2020-04-28T00:00:00.000Z", + "_age_weeks": 137, + "_stars_per_week": 36.42, + "_pop_contributor_count": 194, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "jpmorganchase", + "mit", + "samsung", + "universityofmontreal" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 17.15, + "_pop_updated_issues_count": 271, + "_pop_closed_issues_count": 185, + "_pop_created_since_days": 32, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 271.0, + "_pop_comment_count": 521.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 1683, + "_pop_score": 63.77, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/speechbrain/speechbrain/master/README.md", + "_readme_localurl": "speechbrain~speechbrain~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/speechbrain/speechbrain/master/requirements.txt", + "https://raw.githubusercontent.com/speechbrain/speechbrain/master/setup.py", + "https://raw.githubusercontent.com/speechbrain/speechbrain/master/pyproject.toml" + ], + "_requirements_localurls": [ + "speechbrain~speechbrain~requirements.txt", + "speechbrain~speechbrain~setup.py", + "speechbrain~speechbrain~pyproject.toml" + ] + }, { "index": 404, "category": "perf", @@ -11368,9 +17087,9 @@ "description": null, "_repopath": "python-trio/trio", "_reponame": "trio", - "_stars": 5010, + "_stars": 5017, "_forks": 290, - "_watches": 87, + "_watches": 88, "_topics": [ "python", "async", @@ -11384,11 +17103,33 @@ "_homepage": "https://trio.readthedocs.io", "_description": "Trio \u2013 a friendly Python library for async concurrency and I/O", "_organization": "python-trio", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2017-01-16T00:00:00.000Z", - "_age_weeks": 307, - "_stars_per_week": 16.3, + "_age_weeks": 309, + "_stars_per_week": 16.24, + "_pop_contributor_count": 138, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "elastic", + "hudsonrivertrading" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.5, + "_pop_updated_issues_count": 128, + "_pop_closed_issues_count": 97, + "_pop_created_since_days": 72, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 128.0, + "_pop_comment_count": 226.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 503, + "_pop_score": 57.9, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/python-trio/trio/master/README.rst", "_readme_localurl": "python-trio~trio~README.rst", @@ -11414,19 +17155,43 @@ "description": null, "_repopath": "connorferster/handcalcs", "_reponame": "handcalcs", - "_stars": 4975, - "_forks": 391, + "_stars": 4989, + "_forks": 389, "_watches": 76, "_topics": [], "_language": "CSS", "_homepage": null, "_description": "handcalcs: Python library for converting Python calculations into rendered latex.", "_organization": "connorferster", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-09-28T00:00:00.000Z", "_created_at": "2020-02-19T00:00:00.000Z", - "_age_weeks": 146, - "_stars_per_week": 34.08, + "_age_weeks": 147, + "_stars_per_week": 33.77, + "_pop_contributor_count": 11, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "applemontechnologies", + "christianclauss", + "clearcalcs", + "rjc-development" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.98, + "_pop_updated_issues_count": 19, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 34, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 19.0, + "_pop_comment_count": 20.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 13, + "_pop_score": 34.91, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/connorferster/handcalcs/master/README.md", "_readme_localurl": "connorferster~handcalcs~README.md", @@ -11443,68 +17208,6 @@ "connorferster~handcalcs~pyproject.toml" ] }, - { - "index": 214, - "category": "nlp", - "githuburl": "https://github.com/speechbrain/speechbrain", - "featured": null, - "links": null, - "description": null, - "_repopath": "speechbrain/speechbrain", - "_reponame": "speechbrain", - "_stars": 4960, - "_forks": 957, - "_watches": 109, - "_topics": [ - "speech-recognition", - "speech-toolkit", - "speaker-recognition", - "speech-to-text", - "speech-enhancement", - "speech-separation", - "audio", - "audio-processing", - "speech-processing", - "speechrecognition", - "asr", - "voice-recognition", - "spoken-language-understanding", - "speaker-diarization", - "speaker-verification", - "pytorch", - "huggingface", - "transformers", - "language-model", - "deep-learning" - ], - "_language": "Python", - "_homepage": "http://speechbrain.github.io", - "_description": "speechbrain: A PyTorch-based Speech Toolkit", - "_organization": "speechbrain", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", - "_created_at": "2020-04-28T00:00:00.000Z", - "_age_weeks": 136, - "_stars_per_week": 36.43, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/speechbrain/speechbrain/master/README.md", - "_readme_localurl": "speechbrain~speechbrain~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/speechbrain/speechbrain/master/requirements.txt", - "https://raw.githubusercontent.com/speechbrain/speechbrain/master/setup.py", - "https://raw.githubusercontent.com/speechbrain/speechbrain/master/pyproject.toml" - ], - "_requirements_localurls": [ - "speechbrain~speechbrain~requirements.txt", - "speechbrain~speechbrain~setup.py", - "speechbrain~speechbrain~pyproject.toml" - ] - }, { "index": 686, "category": "util", @@ -11514,8 +17217,8 @@ "description": null, "_repopath": "py-pdf/pypdf2", "_reponame": "PyPDF2", - "_stars": 4943, - "_forks": 1135, + "_stars": 4988, + "_forks": 1143, "_watches": 139, "_topics": [ "pypdf2", @@ -11531,11 +17234,32 @@ "_homepage": "https://pypdf2.readthedocs.io/en/latest/", "_description": "PyPDF2: A pure-python PDF library capable of splitting, merging, cropping, and transforming the pages of PDF files", "_organization": "py-pdf", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2012-01-06T00:00:00.000Z", - "_age_weeks": 569, - "_stars_per_week": 8.68, + "_age_weeks": 571, + "_stars_per_week": 8.73, + "_pop_contributor_count": 160, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "popsql" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 12.06, + "_pop_updated_issues_count": 157, + "_pop_closed_issues_count": 121, + "_pop_created_since_days": 133, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 47, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 47, + "_pop_issue_count": 157.0, + "_pop_comment_count": 492.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.1, + "_pop_dependents_count": 628, + "_pop_score": 63.82, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/py-pdf/pypdf2/master/README.md", "_readme_localurl": "py-pdf~pypdf2~README.md", @@ -11558,8 +17282,8 @@ "description": null, "_repopath": "joerick/pyinstrument", "_reponame": "pyinstrument", - "_stars": 4934, - "_forks": 218, + "_stars": 4954, + "_forks": 217, "_watches": 52, "_topics": [ "python", @@ -11573,11 +17297,35 @@ "_homepage": "https://pyinstrument.readthedocs.io/", "_description": "pyinstrument: \ud83d\udeb4\u00a0Call stack profiler for Python. Shows you why your code is slow!", "_organization": "joerick", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-12-05T00:00:00.000Z", "_created_at": "2014-03-13T00:00:00.000Z", - "_age_weeks": 455, - "_stars_per_week": 10.82, + "_age_weeks": 457, + "_stars_per_week": 10.83, + "_pop_contributor_count": 47, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "datadog,formerlyllnl", + "flycode-org", + "jpmorgan", + "nordprojects" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.92, + "_pop_updated_issues_count": 47, + "_pop_closed_issues_count": 39, + "_pop_created_since_days": 107, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 47.0, + "_pop_comment_count": 51.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 30, + "_pop_score": 49.9, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/joerick/pyinstrument/master/README.md", "_readme_localurl": "joerick~pyinstrument~README.md", @@ -11603,8 +17351,8 @@ "description": null, "_repopath": "parthjadhav/tkinter-designer", "_reponame": "Tkinter-Designer", - "_stars": 4889, - "_forks": 461, + "_stars": 4944, + "_forks": 470, "_watches": 51, "_topics": [ "tkinter", @@ -11632,11 +17380,33 @@ "_homepage": "", "_description": "Tkinter-Designer: An easy and fast way to create a Python GUI \ud83d\udc0d", "_organization": "parthjadhav", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2021-05-18T00:00:00.000Z", - "_age_weeks": 81, - "_stars_per_week": 60.25, + "_age_weeks": 82, + "_stars_per_week": 59.67, + "_pop_contributor_count": 33, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "microsoftazure", + "xd2sketch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.02, + "_pop_updated_issues_count": 48, + "_pop_closed_issues_count": 30, + "_pop_created_since_days": 19, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 48.0, + "_pop_comment_count": 42.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 15, + "_pop_score": 37.67, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/parthjadhav/tkinter-designer/master/README.md", "_readme_localurl": "parthjadhav~tkinter-designer~README.md", @@ -11662,9 +17432,9 @@ "description": null, "_repopath": "open-mmlab/mmsegmentation", "_reponame": "mmsegmentation", - "_stars": 4880, - "_forks": 1803, - "_watches": 50, + "_stars": 4927, + "_forks": 1821, + "_watches": 51, "_topics": [ "semantic-segmentation", "pytorch", @@ -11682,11 +17452,34 @@ "_homepage": "https://mmsegmentation.readthedocs.io/en/latest/", "_description": "mmsegmentation: OpenMMLab Semantic Segmentation Toolbox and Benchmark.", "_organization": "open-mmlab", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2020-06-14T00:00:00.000Z", - "_age_weeks": 129, - "_stars_per_week": 37.7, + "_age_weeks": 131, + "_stars_per_week": 37.57, + "_pop_contributor_count": 127, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "open-mmlab,shanghaiailaboratory", + "openmmlab", + "ucsd" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.42, + "_pop_updated_issues_count": 403, + "_pop_closed_issues_count": 300, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 16, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 16, + "_pop_issue_count": 403.0, + "_pop_comment_count": 797.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 229, + "_pop_score": 59.14, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/open-mmlab/mmsegmentation/master/README.md", "_readme_localurl": "open-mmlab~mmsegmentation~README.md", @@ -11712,9 +17505,9 @@ "description": null, "_repopath": "skorch-dev/skorch", "_reponame": "skorch", - "_stars": 4879, - "_forks": 328, - "_watches": 80, + "_stars": 4891, + "_forks": 330, + "_watches": 81, "_topics": [ "scikit-learn", "pytorch", @@ -11725,11 +17518,34 @@ "_homepage": "", "_description": "skorch: A scikit-learn compatible neural network library that wraps PyTorch", "_organization": "skorch-dev", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2017-07-18T00:00:00.000Z", - "_age_weeks": 281, - "_stars_per_week": 17.35, + "_age_weeks": 282, + "_stars_per_week": 17.29, + "_pop_contributor_count": 52, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "aeolusrobotics", + "ottogroupbi", + "quansight-labs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.06, + "_pop_updated_issues_count": 40, + "_pop_closed_issues_count": 32, + "_pop_created_since_days": 66, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 40.0, + "_pop_comment_count": 92.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 14, + "_pop_score": 46.18, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/skorch-dev/skorch/master/README.rst", "_readme_localurl": "skorch-dev~skorch~README.rst", @@ -11755,8 +17571,8 @@ "description": null, "_repopath": "mdbloice/augmentor", "_reponame": "Augmentor", - "_stars": 4833, - "_forks": 850, + "_stars": 4841, + "_forks": 852, "_watches": 123, "_topics": [ "augmentation", @@ -11768,11 +17584,32 @@ "_homepage": "https://augmentor.readthedocs.io/en/stable", "_description": "Augmentor: Image augmentation library in Python for machine learning.", "_organization": "mdbloice", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-09-23T00:00:00.000Z", "_created_at": "2016-03-01T00:00:00.000Z", - "_age_weeks": 353, - "_stars_per_week": 13.69, + "_age_weeks": 354, + "_stars_per_week": 13.64, + "_pop_contributor_count": 22, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "medicaluniversitygraz" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.17, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 83, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 1.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 68, + "_pop_score": 33.28, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/mdbloice/augmentor/master/README.md", "_readme_localurl": "mdbloice~augmentor~README.md", @@ -11798,8 +17635,8 @@ "description": null, "_repopath": "minimaxir/textgenrnn", "_reponame": "textgenrnn", - "_stars": 4817, - "_forks": 752, + "_stars": 4825, + "_forks": 753, "_watches": 138, "_topics": [ "keras", @@ -11812,11 +17649,33 @@ "_homepage": "", "_description": "textgenrnn: Easily train your own text-generating neural network of any size and complexity on any text dataset with a few lines of code.", "_organization": "minimaxir", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2020-07-14T00:00:00.000Z", "_created_at": "2017-08-07T00:00:00.000Z", - "_age_weeks": 278, - "_stars_per_week": 17.31, + "_age_weeks": 280, + "_stars_per_week": 17.23, + "_pop_contributor_count": 19, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "buzzfeed", + "valohai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 65, + "_pop_updated_since_days": 30, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 10.0, + "_pop_comment_count": 4.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 4, + "_pop_score": 24.79, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/minimaxir/textgenrnn/master/README.md", "_readme_localurl": "minimaxir~textgenrnn~README.md", @@ -11833,6 +17692,67 @@ "minimaxir~textgenrnn~setup.py" ] }, + { + "index": 784, + "category": "diffusion", + "githuburl": "https://github.com/xavierxiao/dreambooth-stable-diffusion", + "featured": null, + "links": null, + "description": null, + "_repopath": "xavierxiao/dreambooth-stable-diffusion", + "_reponame": "Dreambooth-Stable-Diffusion", + "_stars": 4801, + "_forks": 521, + "_watches": 73, + "_topics": [ + "pytorch", + "pytorch-lightning", + "stable-diffusion", + "text-to-image" + ], + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "Dreambooth-Stable-Diffusion: Implementation of Dreambooth (https://arxiv.org/abs/2208.12242) with Stable Diffusion", + "_organization": "xavierxiao", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-09-21T00:00:00.000Z", + "_created_at": "2022-09-06T00:00:00.000Z", + "_age_weeks": 14, + "_stars_per_week": 323.14, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "universityofchicago" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.6, + "_pop_updated_issues_count": 100, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 3, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 100.0, + "_pop_comment_count": 234.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 15, + "_pop_score": 21.16, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/xavierxiao/dreambooth-stable-diffusion/master/README.md", + "_readme_localurl": "xavierxiao~dreambooth-stable-diffusion~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/xavierxiao/dreambooth-stable-diffusion/master/setup.py" + ], + "_requirements_localurls": [ + "xavierxiao~dreambooth-stable-diffusion~setup.py" + ] + }, { "index": 661, "category": "study", @@ -11842,8 +17762,8 @@ "description": null, "_repopath": "udacity/deep-learning-v2-pytorch", "_reponame": "deep-learning-v2-pytorch", - "_stars": 4781, - "_forks": 5167, + "_stars": 4793, + "_forks": 5176, "_watches": 172, "_topics": [ "deep-learning", @@ -11858,11 +17778,34 @@ "_homepage": null, "_description": "deep-learning-v2-pytorch: Projects and exercises for the latest Deep Learning ND program https://www.udacity.com/course/deep-learning-nanodegree--nd101", "_organization": "udacity", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-10-03T00:00:00.000Z", "_created_at": "2018-09-04T00:00:00.000Z", - "_age_weeks": 222, - "_stars_per_week": 21.52, + "_age_weeks": 223, + "_stars_per_week": 21.41, + "_pop_contributor_count": 97, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bardeen", + "lumafield", + "udacity" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.08, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 1469, + "_pop_score": 40.45, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/udacity/deep-learning-v2-pytorch/master/README.md", "_readme_localurl": "udacity~deep-learning-v2-pytorch~README.md", @@ -11885,9 +17828,9 @@ "description": null, "_repopath": "alirezamika/autoscraper", "_reponame": "autoscraper", - "_stars": 4756, + "_stars": 4781, "_forks": 510, - "_watches": 124, + "_watches": 125, "_topics": [ "scraping", "scraper", @@ -11906,11 +17849,32 @@ "_homepage": "", "_description": "autoscraper: A Smart, Automatic, Fast and Lightweight Web Scraper for Python", "_organization": "alirezamika", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-07-17T00:00:00.000Z", "_created_at": "2020-08-31T00:00:00.000Z", - "_age_weeks": 118, - "_stars_per_week": 40.21, + "_age_weeks": 120, + "_stars_per_week": 39.84, + "_pop_contributor_count": 8, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cognitifai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 28, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 6.0, + "_pop_comment_count": 9.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 20.98, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/alirezamika/autoscraper/master/README.md", "_readme_localurl": "alirezamika~autoscraper~README.md", @@ -11925,46 +17889,60 @@ ] }, { - "index": 642, - "category": "util", - "githuburl": "https://github.com/pycqa/pycodestyle", - "featured": null, + "index": 223, + "category": "nlp", + "githuburl": "https://github.com/kingoflolz/mesh-transformer-jax", + "featured": 1.0, "links": null, "description": null, - "_repopath": "pycqa/pycodestyle", - "_reponame": "pycodestyle", - "_stars": 4730, - "_forks": 683, - "_watches": 119, - "_topics": [ - "python", - "pep8", - "styleguide", - "style-guide", - "linter-plugin", - "linter-flake8", - "flake8-plugin" - ], + "_repopath": "kingoflolz/mesh-transformer-jax", + "_reponame": "mesh-transformer-jax", + "_stars": 4763, + "_forks": 673, + "_watches": 82, + "_topics": [], "_language": "Python", - "_homepage": "https://pycodestyle.pycqa.org", - "_description": "pycodestyle: Simple Python style checker in one Python file", - "_organization": "pycqa", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2009-10-02T00:00:00.000Z", - "_age_weeks": 687, - "_stars_per_week": 6.88, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pycqa/pycodestyle/master/README.rst", - "_readme_localurl": "pycqa~pycodestyle~README.rst", + "_homepage": "", + "_description": "mesh-transformer-jax: Model parallel transformers in JAX and Haiku", + "_organization": "kingoflolz", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-01-28T00:00:00.000Z", + "_created_at": "2021-03-13T00:00:00.000Z", + "_age_weeks": 92, + "_stars_per_week": 51.61, + "_pop_contributor_count": 23, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.08, + "_pop_updated_issues_count": 13, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 22, + "_pop_updated_since_days": 11, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 13.0, + "_pop_comment_count": 12.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 7, + "_pop_score": 19.54, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/README.md", + "_readme_localurl": "kingoflolz~mesh-transformer-jax~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pycqa/pycodestyle/master/setup.py" + "https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/requirements.txt", + "https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/setup.py" ], "_requirements_localurls": [ - "pycqa~pycodestyle~setup.py" + "kingoflolz~mesh-transformer-jax~requirements.txt", + "kingoflolz~mesh-transformer-jax~setup.py" ] }, { @@ -11976,9 +17954,9 @@ "description": null, "_repopath": "pycqa/bandit", "_reponame": "bandit", - "_stars": 4722, + "_stars": 4744, "_forks": 493, - "_watches": 59, + "_watches": 62, "_topics": [ "linter", "bandit", @@ -11992,11 +17970,33 @@ "_homepage": "https://bandit.readthedocs.io", "_description": "Bandit is a tool designed to find common security issues in Python code.", "_organization": "pycqa", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-10-28T00:00:00.000Z", "_created_at": "2018-04-26T00:00:00.000Z", - "_age_weeks": 240, - "_stars_per_week": 19.6, + "_age_weeks": 242, + "_stars_per_week": 19.56, + "_pop_contributor_count": 160, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "redhat,inc", + "securesauce" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.08, + "_pop_updated_issues_count": 31, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 57, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 31.0, + "_pop_comment_count": 49.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 1216, + "_pop_score": 51.93, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pycqa/bandit/master/README.rst", "_readme_localurl": "pycqa~bandit~README.rst", @@ -12013,6 +18013,71 @@ "pycqa~bandit~setup.py" ] }, + { + "index": 642, + "category": "util", + "githuburl": "https://github.com/pycqa/pycodestyle", + "featured": null, + "links": null, + "description": null, + "_repopath": "pycqa/pycodestyle", + "_reponame": "pycodestyle", + "_stars": 4742, + "_forks": 685, + "_watches": 119, + "_topics": [ + "python", + "pep8", + "styleguide", + "style-guide", + "linter-plugin", + "linter-flake8", + "flake8-plugin" + ], + "_language": "Python", + "_homepage": "https://pycodestyle.pycqa.org", + "_description": "pycodestyle: Simple Python style checker in one Python file", + "_organization": "pycqa", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", + "_created_at": "2009-10-02T00:00:00.000Z", + "_age_weeks": 689, + "_stars_per_week": 6.88, + "_pop_contributor_count": 131, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "llnl", + "tableau&salesforce" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.88, + "_pop_updated_issues_count": 37, + "_pop_closed_issues_count": 36, + "_pop_created_since_days": 161, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 37.0, + "_pop_comment_count": 41.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 2936, + "_pop_score": 56.66, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pycqa/pycodestyle/master/README.rst", + "_readme_localurl": "pycqa~pycodestyle~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pycqa/pycodestyle/master/setup.py" + ], + "_requirements_localurls": [ + "pycqa~pycodestyle~setup.py" + ] + }, { "index": 687, "category": "util", @@ -12022,19 +18087,38 @@ "description": null, "_repopath": "bndr/pipreqs", "_reponame": "pipreqs", - "_stars": 4715, - "_forks": 320, + "_stars": 4741, + "_forks": 319, "_watches": 59, "_topics": [], "_language": "Python", "_homepage": "", "_description": "pipreqs - Generate pip requirements.txt file based on imports of any project. Looking for maintainers to move this project forward.", "_organization": "bndr", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-12-02T00:00:00.000Z", "_created_at": "2015-04-22T00:00:00.000Z", - "_age_weeks": 398, - "_stars_per_week": 11.85, + "_age_weeks": 399, + "_stars_per_week": 11.86, + "_pop_contributor_count": 52, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 28, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 93, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 28.0, + "_pop_comment_count": 26.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 27, + "_pop_score": 35.38, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/bndr/pipreqs/master/README.rst", "_readme_localurl": "bndr~pipreqs~README.rst", @@ -12060,19 +18144,40 @@ "description": null, "_repopath": "agronholm/apscheduler", "_reponame": "apscheduler", - "_stars": 4695, - "_forks": 603, - "_watches": 125, + "_stars": 4722, + "_forks": 604, + "_watches": 126, "_topics": [], "_language": "Python", "_homepage": "", "_description": "apscheduler: Task scheduling library for Python", "_organization": "agronholm", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2016-03-27T00:00:00.000Z", - "_age_weeks": 349, - "_stars_per_week": 13.44, + "_age_weeks": 351, + "_stars_per_week": 13.45, + "_pop_contributor_count": 37, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "nextdaysolutionsoy" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.81, + "_pop_updated_issues_count": 25, + "_pop_closed_issues_count": 16, + "_pop_created_since_days": 82, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 25.0, + "_pop_comment_count": 53.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 713, + "_pop_score": 51.28, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/agronholm/apscheduler/master/README.rst", "_readme_localurl": "agronholm~apscheduler~README.rst", @@ -12095,9 +18200,9 @@ "description": null, "_repopath": "pytransitions/transitions", "_reponame": "transitions", - "_stars": 4676, - "_forks": 511, - "_watches": 94, + "_stars": 4690, + "_forks": 512, + "_watches": 93, "_topics": [ "python", "state-machine", @@ -12109,11 +18214,34 @@ "_homepage": "", "_description": "transitions: A lightweight, object-oriented finite state machine implementation in Python with many extensions", "_organization": "pytransitions", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-08T00:00:00.000Z", "_created_at": "2014-10-12T00:00:00.000Z", - "_age_weeks": 425, - "_stars_per_week": 10.99, + "_age_weeks": 427, + "_stars_per_week": 10.98, + "_pop_contributor_count": 75, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "caretechowl,fhbielefeld", + "jrc-stu", + "twitter" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.65, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 100, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 8.0, + "_pop_comment_count": 7.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 143, + "_pop_score": 45.59, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pytransitions/transitions/master/README.md", "_readme_localurl": "pytransitions~transitions~README.md", @@ -12130,44 +18258,6 @@ "pytransitions~transitions~setup.py" ] }, - { - "index": 223, - "category": "nlp", - "githuburl": "https://github.com/kingoflolz/mesh-transformer-jax", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "kingoflolz/mesh-transformer-jax", - "_reponame": "mesh-transformer-jax", - "_stars": 4626, - "_forks": 651, - "_watches": 74, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "mesh-transformer-jax: Model parallel transformers in JAX and Haiku", - "_organization": "kingoflolz", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-01-28T00:00:00.000Z", - "_created_at": "2021-03-13T00:00:00.000Z", - "_age_weeks": 90, - "_stars_per_week": 51.08, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/README.md", - "_readme_localurl": "kingoflolz~mesh-transformer-jax~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/requirements.txt", - "https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/setup.py" - ], - "_requirements_localurls": [ - "kingoflolz~mesh-transformer-jax~requirements.txt", - "kingoflolz~mesh-transformer-jax~setup.py" - ] - }, { "index": 213, "category": "data", @@ -12177,19 +18267,41 @@ "description": null, "_repopath": "facebookresearch/augly", "_reponame": "AugLy", - "_stars": 4618, - "_forks": 265, + "_stars": 4625, + "_forks": 267, "_watches": 61, "_topics": [], "_language": "Python", "_homepage": "https://ai.facebook.com/blog/augly-a-new-data-augmentation-library-to-help-build-more-robust-ai-models/", "_description": "AugLy: A data augmentations library for audio, image, text, and video.", "_organization": "facebookresearch", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-12-05T00:00:00.000Z", "_created_at": "2021-06-09T00:00:00.000Z", - "_age_weeks": 78, - "_stars_per_week": 59.21, + "_age_weeks": 79, + "_stars_per_week": 58.02, + "_pop_contributor_count": 26, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebookresearch", + "omnilib" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.02, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 19, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 106, + "_pop_score": 33.14, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/augly/master/README.md", "_readme_localurl": "facebookresearch~augly~README.md", @@ -12215,19 +18327,42 @@ "description": null, "_repopath": "open-mmlab/mmcv", "_reponame": "mmcv", - "_stars": 4560, - "_forks": 1308, + "_stars": 4578, + "_forks": 1326, "_watches": 83, "_topics": [], "_language": "Python", "_homepage": "https://mmcv.readthedocs.io/en/latest/", "_description": "mmcv: OpenMMLab Computer Vision Foundation", "_organization": "open-mmlab", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2018-08-22T00:00:00.000Z", - "_age_weeks": 224, - "_stars_per_week": 20.36, + "_age_weeks": 225, + "_stars_per_week": 20.28, + "_pop_contributor_count": 237, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "mmlab,ntu", + "open-mmlab", + "ucsd" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.75, + "_pop_updated_issues_count": 283, + "_pop_closed_issues_count": 219, + "_pop_created_since_days": 53, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 18, + "_pop_recent_releases_estimated_tags": 23, + "_pop_recent_releases_adjusted_count": 18, + "_pop_issue_count": 283.0, + "_pop_comment_count": 368.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 41, + "_pop_score": 58.07, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/open-mmlab/mmcv/master/README.md", "_readme_localurl": "open-mmlab~mmcv~README.md", @@ -12253,9 +18388,9 @@ "description": null, "_repopath": "python-attrs/attrs", "_reponame": "attrs", - "_stars": 4537, + "_stars": 4546, "_forks": 319, - "_watches": 57, + "_watches": 58, "_topics": [ "python", "boilerplate", @@ -12268,11 +18403,33 @@ "_homepage": "https://www.attrs.org/", "_description": "attrs: Python Classes Without Boilerplate", "_organization": "python-attrs", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2015-01-27T00:00:00.000Z", - "_age_weeks": 410, - "_stars_per_week": 11.06, + "_age_weeks": 411, + "_stars_per_week": 11.04, + "_pop_contributor_count": 137, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "pocketzworld", + "variomediaag" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.12, + "_pop_updated_issues_count": 61, + "_pop_closed_issues_count": 44, + "_pop_created_since_days": 96, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 61.0, + "_pop_comment_count": 133.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 1224, + "_pop_score": 58.64, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/python-attrs/attrs/master/README.md", "_readme_localurl": "python-attrs~attrs~README.md", @@ -12290,44 +18447,61 @@ ] }, { - "index": 784, + "index": 783, "category": "diffusion", - "githuburl": "https://github.com/xavierxiao/dreambooth-stable-diffusion", + "githuburl": "https://github.com/carson-katri/dream-textures", "featured": null, "links": null, "description": null, - "_repopath": "xavierxiao/dreambooth-stable-diffusion", - "_reponame": "Dreambooth-Stable-Diffusion", - "_stars": 4516, - "_forks": 494, - "_watches": 70, + "_repopath": "carson-katri/dream-textures", + "_reponame": "dream-textures", + "_stars": 4525, + "_forks": 221, + "_watches": 85, "_topics": [ - "pytorch", - "pytorch-lightning", - "stable-diffusion", - "text-to-image" + "ai", + "blender", + "blender-addon", + "image-generation", + "stable-diffusion" ], - "_language": "Jupyter Notebook", + "_language": "Python", "_homepage": "", - "_description": "Dreambooth-Stable-Diffusion: Implementation of Dreambooth (https://arxiv.org/abs/2208.12242) with Stable Diffusion", - "_organization": "xavierxiao", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-09-21T00:00:00.000Z", - "_created_at": "2022-09-06T00:00:00.000Z", - "_age_weeks": 13, - "_stars_per_week": 343.61, + "_description": "dream-textures: Stable Diffusion built-in to the Blender shader editor", + "_organization": "carson-katri", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_created_at": "2022-09-08T00:00:00.000Z", + "_age_weeks": 14, + "_stars_per_week": 310.54, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "blastframe", + "blenderdiplom" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.1, + "_pop_updated_issues_count": 352, + "_pop_closed_issues_count": 214, + "_pop_created_since_days": 3, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 36, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 352.0, + "_pop_comment_count": 1050.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 5, + "_pop_score": 37.43, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/xavierxiao/dreambooth-stable-diffusion/master/README.md", - "_readme_localurl": "xavierxiao~dreambooth-stable-diffusion~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/xavierxiao/dreambooth-stable-diffusion/master/setup.py" - ], - "_requirements_localurls": [ - "xavierxiao~dreambooth-stable-diffusion~setup.py" - ] + "_readme_giturl": "https://raw.githubusercontent.com/carson-katri/dream-textures/master/README.md", + "_readme_localurl": "carson-katri~dream-textures~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { "index": 247, @@ -12338,7 +18512,7 @@ "description": null, "_repopath": "jorgebastida/awslogs", "_reponame": "awslogs", - "_stars": 4498, + "_stars": 4512, "_forks": 325, "_watches": 61, "_topics": [], @@ -12346,11 +18520,33 @@ "_homepage": null, "_description": "awslogs: AWS CloudWatch logs for Humans\u2122", "_organization": "jorgebastida", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2020-07-10T00:00:00.000Z", "_created_at": "2015-01-21T00:00:00.000Z", - "_age_weeks": 411, - "_stars_per_week": 10.94, + "_age_weeks": 412, + "_stars_per_week": 10.93, + "_pop_contributor_count": 39, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "freelancer,upforhire", + "infiniteforksl" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 96, + "_pop_updated_since_days": 30, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 6.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 53, + "_pop_score": 29.83, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/jorgebastida/awslogs/master/README.rst", "_readme_localurl": "jorgebastida~awslogs~README.rst", @@ -12373,7 +18569,7 @@ "description": null, "_repopath": "voila-dashboards/voila", "_reponame": "voila", - "_stars": 4472, + "_stars": 4489, "_forks": 448, "_watches": 77, "_topics": [ @@ -12386,11 +18582,33 @@ "_homepage": "https://voila.readthedocs.io", "_description": "voila: Voil\u00e0 turns Jupyter notebooks into standalone web applications", "_organization": "voila-dashboards", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2018-08-21T00:00:00.000Z", - "_age_weeks": 224, - "_stars_per_week": 19.95, + "_age_weeks": 225, + "_stars_per_week": 19.88, + "_pop_contributor_count": 63, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "maartenbreddels", + "quantstack" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.63, + "_pop_updated_issues_count": 114, + "_pop_closed_issues_count": 64, + "_pop_created_since_days": 53, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 29, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 114.0, + "_pop_comment_count": 285.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 77, + "_pop_score": 52.98, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/voila-dashboards/voila/master/README.md", "_readme_localurl": "voila-dashboards~voila~README.md", @@ -12416,7 +18634,7 @@ "description": null, "_repopath": "indygreg/pyoxidizer", "_reponame": "PyOxidizer", - "_stars": 4406, + "_stars": 4430, "_forks": 190, "_watches": 59, "_topics": [], @@ -12424,11 +18642,33 @@ "_homepage": "", "_description": "PyOxidizer: A modern Python application packaging and distribution tool", "_organization": "indygreg", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-11-20T00:00:00.000Z", "_created_at": "2018-12-18T00:00:00.000Z", - "_age_weeks": 207, - "_stars_per_week": 21.27, + "_age_weeks": 208, + "_stars_per_week": 21.21, + "_pop_contributor_count": 53, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "franklin-ai", + "isaadvisers" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 27.5, + "_pop_updated_issues_count": 40, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 88, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 40.0, + "_pop_comment_count": 47.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 59, + "_pop_score": 50.74, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/indygreg/pyoxidizer/master/README.md", "_readme_localurl": "indygreg~pyoxidizer~README.md", @@ -12451,8 +18691,8 @@ "description": null, "_repopath": "pycqa/pylint", "_reponame": "pylint", - "_stars": 4371, - "_forks": 942, + "_stars": 4389, + "_forks": 950, "_watches": 72, "_topics": [ "static-analysis", @@ -12467,11 +18707,33 @@ "_homepage": "http://pylint.pycqa.org", "_description": "pylint: It's not just a linter that annoys you!", "_organization": "pycqa", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2015-12-09T00:00:00.000Z", - "_age_weeks": 365, - "_stars_per_week": 11.98, + "_age_weeks": 366, + "_stars_per_week": 11.97, + "_pop_contributor_count": 503, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "azavea", + "channable" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 36.04, + "_pop_updated_issues_count": 722, + "_pop_closed_issues_count": 471, + "_pop_created_since_days": 86, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 28, + "_pop_recent_releases_estimated_tags": 24, + "_pop_recent_releases_adjusted_count": 28, + "_pop_issue_count": 722.0, + "_pop_comment_count": 2451.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.4, + "_pop_dependents_count": 17832, + "_pop_score": 78.21, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pycqa/pylint/master/README.rst", "_readme_localurl": "pycqa~pylint~README.rst", @@ -12494,8 +18756,8 @@ "description": null, "_repopath": "lucidrains/deep-daze", "_reponame": "deep-daze", - "_stars": 4365, - "_forks": 326, + "_stars": 4366, + "_forks": 328, "_watches": 76, "_topics": [ "artificial-intelligence", @@ -12510,11 +18772,32 @@ "_homepage": "", "_description": "deep-daze: Simple command line tool for text to image generation using OpenAI's CLIP and Siren (Implicit neural representation network). Technique was originally created by https://twitter.com/advadnoun", "_organization": "lucidrains", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-03-13T00:00:00.000Z", "_created_at": "2021-01-17T00:00:00.000Z", - "_age_weeks": 98, - "_stars_per_week": 44.35, + "_age_weeks": 100, + "_stars_per_week": 43.6, + "_pop_contributor_count": 14, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "adalab" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 23, + "_pop_updated_since_days": 9, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 35, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 1.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 37, + "_pop_score": 25.0, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/lucidrains/deep-daze/master/README.md", "_readme_localurl": "lucidrains~deep-daze~README.md", @@ -12537,8 +18820,8 @@ "description": null, "_repopath": "lux-org/lux", "_reponame": "lux", - "_stars": 4317, - "_forks": 336, + "_stars": 4329, + "_forks": 338, "_watches": 86, "_topics": [ "visualization-tools", @@ -12553,11 +18836,32 @@ "_homepage": "", "_description": "lux: Automatically visualize your pandas dataframe via a single print! \ud83d\udcca \ud83d\udca1", "_organization": "lux-org", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-05-21T00:00:00.000Z", "_created_at": "2020-01-08T00:00:00.000Z", - "_age_weeks": 152, - "_stars_per_week": 28.4, + "_age_weeks": 153, + "_stars_per_week": 28.16, + "_pop_contributor_count": 20, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ponder-org" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.35, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 36, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 6.0, + "_pop_comment_count": 11.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 23.75, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/lux-org/lux/master/README.md", "_readme_localurl": "lux-org~lux~README.md", @@ -12586,19 +18890,42 @@ "description": null, "_repopath": "facebookresearch/drqa", "_reponame": "DrQA", - "_stars": 4313, - "_forks": 899, + "_stars": 4315, + "_forks": 898, "_watches": 165, "_topics": [], "_language": "Python", "_homepage": null, "_description": "DrQA: Reading Wikipedia to Answer Open-Domain Questions", "_organization": "facebookresearch", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-08T00:00:00.000Z", "_last_commit_date": "2021-05-18T00:00:00.000Z", "_created_at": "2017-07-07T00:00:00.000Z", - "_age_weeks": 282, - "_stars_per_week": 15.26, + "_age_weeks": 284, + "_stars_per_week": 15.17, + "_pop_contributor_count": 12, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebookresearch", + "hewlett-packardenterprise", + "mitnlp" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 66, + "_pop_updated_since_days": 19, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 90, + "_pop_score": 26.18, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/drqa/master/README.md", "_readme_localurl": "facebookresearch~drqa~README.md", @@ -12624,8 +18951,8 @@ "description": null, "_repopath": "jd/tenacity", "_reponame": "tenacity", - "_stars": 4294, - "_forks": 215, + "_stars": 4313, + "_forks": 217, "_watches": 43, "_topics": [ "python", @@ -12638,11 +18965,33 @@ "_homepage": "http://tenacity.readthedocs.io", "_description": "tenacity: Retrying library for Python", "_organization": "jd", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-09-21T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2016-08-11T00:00:00.000Z", - "_age_weeks": 329, - "_stars_per_week": 13.02, + "_age_weeks": 331, + "_stars_per_week": 13.01, + "_pop_contributor_count": 74, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "mergifyio", + "waymo" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.17, + "_pop_updated_issues_count": 24, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 77, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 24.0, + "_pop_comment_count": 27.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 502, + "_pop_score": 50.34, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/jd/tenacity/master/README.rst", "_readme_localurl": "jd~tenacity~README.rst", @@ -12668,8 +19017,8 @@ "description": null, "_repopath": "cleanlab/cleanlab", "_reponame": "cleanlab", - "_stars": 4269, - "_forks": 394, + "_stars": 4300, + "_forks": 397, "_watches": 63, "_topics": [ "weak-supervision", @@ -12696,11 +19045,34 @@ "_homepage": "https://cleanlab.ai", "_description": "cleanlab: The standard data-centric AI package for data quality and machine learning with messy, real-world data and labels.", "_organization": "cleanlab", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2018-05-11T00:00:00.000Z", - "_age_weeks": 238, + "_age_weeks": 240, "_stars_per_week": 17.88, + "_pop_contributor_count": 24, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cleanlab", + "cleanlab|mit", + "mitcsail" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 8.31, + "_pop_updated_issues_count": 170, + "_pop_closed_issues_count": 135, + "_pop_created_since_days": 56, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 170.0, + "_pop_comment_count": 164.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 228, + "_pop_score": 51.91, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/cleanlab/cleanlab/master/README.md", "_readme_localurl": "cleanlab~cleanlab~README.md", @@ -12717,6 +19089,66 @@ "cleanlab~cleanlab~pyproject.toml" ] }, + { + "index": 896, + "category": "diffusion", + "githuburl": "https://github.com/apple/ml-stable-diffusion", + "featured": null, + "links": null, + "description": null, + "_repopath": "apple/ml-stable-diffusion", + "_reponame": "ml-stable-diffusion", + "_stars": 4291, + "_forks": 165, + "_watches": 57, + "_topics": [], + "_language": "Python", + "_homepage": "", + "_description": "ml-stable-diffusion: Stable Diffusion with Core ML on Apple Silicon", + "_organization": "apple", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2022-11-16T00:00:00.000Z", + "_age_weeks": 4, + "_stars_per_week": 910.21, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "christianclauss", + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.17, + "_pop_updated_issues_count": 74, + "_pop_closed_issues_count": 17, + "_pop_created_since_days": 1, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 74.0, + "_pop_comment_count": 192.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 0, + "_pop_score": 24.38, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/README.md", + "_readme_localurl": "apple~ml-stable-diffusion~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/requirements.txt", + "https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/setup.py" + ], + "_requirements_localurls": [ + "apple~ml-stable-diffusion~requirements.txt", + "apple~ml-stable-diffusion~setup.py" + ] + }, { "index": 717, "category": "data", @@ -12726,19 +19158,43 @@ "description": null, "_repopath": "jazzband/tablib", "_reponame": "tablib", - "_stars": 4197, - "_forks": 568, + "_stars": 4203, + "_forks": 570, "_watches": 141, "_topics": [], "_language": "Python", "_homepage": "https://tablib.readthedocs.io/", "_description": "tablib: Python Module for Tabular Datasets in XLS, CSV, JSON, YAML, &c.", "_organization": "jazzband", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-10-31T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-10T00:00:00.000Z", "_created_at": "2011-03-28T00:00:00.000Z", - "_age_weeks": 610, - "_stars_per_week": 6.88, + "_age_weeks": 612, + "_stars_per_week": 6.87, + "_pop_contributor_count": 118, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "2xlibre.nets\u00e0rl", + "buser", + "http://www.lukelee.me", + "nordsoftware" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.31, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 143, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 9.0, + "_pop_comment_count": 12.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 117, + "_pop_score": 50.99, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jazzband/tablib/master/README.md", "_readme_localurl": "jazzband~tablib~README.md", @@ -12764,8 +19220,8 @@ "description": null, "_repopath": "rasbt/mlxtend", "_reponame": "mlxtend", - "_stars": 4171, - "_forks": 795, + "_stars": 4183, + "_forks": 796, "_watches": 121, "_topics": [ "python", @@ -12780,11 +19236,33 @@ "_homepage": "http://rasbt.github.io/mlxtend/", "_description": "mlxtend: A library of extension and helper modules for Python's data analysis and machine learning libraries.", "_organization": "rasbt", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2014-08-14T00:00:00.000Z", - "_age_weeks": 433, - "_stars_per_week": 9.61, + "_age_weeks": 435, + "_stars_per_week": 9.6, + "_pop_contributor_count": 91, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "coiled", + "lightning-ai,universityofwisconsin-madison" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.75, + "_pop_updated_issues_count": 46, + "_pop_closed_issues_count": 35, + "_pop_created_since_days": 102, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 46.0, + "_pop_comment_count": 66.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 37, + "_pop_score": 49.56, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/rasbt/mlxtend/master/README.md", "_readme_localurl": "rasbt~mlxtend~README.md", @@ -12810,8 +19288,8 @@ "description": null, "_repopath": "xpixelgroup/basicsr", "_reponame": "BasicSR", - "_stars": 4137, - "_forks": 859, + "_stars": 4171, + "_forks": 864, "_watches": 85, "_topics": [ "basicsr", @@ -12834,11 +19312,35 @@ "_homepage": "https://basicsr.readthedocs.io/en/latest/", "_description": "BasicSR: Open Source Image and Video Restoration Toolbox for Super-resolution, Denoise, Deblurring, etc. Currently, it includes EDSR, RCAN, SRResNet, SRGAN, ESRGAN, EDVR, BasicVSR, SwinIR, ECBSR, etc. Also support StyleGAN2, DFDNet.", "_organization": "xpixelgroup", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-06T00:00:00.000Z", "_created_at": "2018-04-19T00:00:00.000Z", - "_age_weeks": 241, - "_stars_per_week": 17.11, + "_age_weeks": 243, + "_stars_per_week": 17.12, + "_pop_contributor_count": 18, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "msft", + "tencent", + "um&siat", + "whut" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.02, + "_pop_updated_issues_count": 30, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 57, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 30.0, + "_pop_comment_count": 16.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 33.8, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/xpixelgroup/basicsr/master/README.md", "_readme_localurl": "xpixelgroup~basicsr~README.md", @@ -12864,7 +19366,7 @@ "description": null, "_repopath": "pytorch/ignite", "_reponame": "ignite", - "_stars": 4136, + "_stars": 4142, "_forks": 562, "_watches": 59, "_topics": [ @@ -12881,11 +19383,36 @@ "_homepage": "https://pytorch-ignite.ai", "_description": "ignite: High-level library to help with training and evaluating neural networks in PyTorch flexibly and transparently.", "_organization": "pytorch", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-10T00:00:00.000Z", "_created_at": "2017-11-23T00:00:00.000Z", - "_age_weeks": 262, - "_stars_per_week": 15.73, + "_age_weeks": 264, + "_stars_per_week": 15.66, + "_pop_contributor_count": 183, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bimsbbioinfopytorch-ignite", + "cision", + "pytorch-ignitemichelin", + "quansight", + "sharechat" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.77, + "_pop_updated_issues_count": 111, + "_pop_closed_issues_count": 94, + "_pop_created_since_days": 62, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 111.0, + "_pop_comment_count": 203.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 529, + "_pop_score": 60.52, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pytorch/ignite/master/README.md", "_readme_localurl": "pytorch~ignite~README.md", @@ -12911,19 +19438,41 @@ "description": null, "_repopath": "facebookresearch/kats", "_reponame": "Kats", - "_stars": 4107, - "_forks": 430, - "_watches": 70, + "_stars": 4122, + "_forks": 434, + "_watches": 69, "_topics": [], "_language": "Python", "_homepage": "", "_description": "Kats, a kit to analyze time series data, a lightweight, easy-to-use, generalizable, and extendable framework to perform time series analysis, from understanding the key statistics and characteristics, detecting change points and anomalies, to forecasting future trends. ", "_organization": "facebookresearch", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2021-02-25T00:00:00.000Z", - "_age_weeks": 92, - "_stars_per_week": 44.23, + "_age_weeks": 94, + "_stars_per_week": 43.59, + "_pop_contributor_count": 121, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebook", + "meta" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.67, + "_pop_updated_issues_count": 31, + "_pop_closed_issues_count": 19, + "_pop_created_since_days": 22, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 31.0, + "_pop_comment_count": 48.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 118, + "_pop_score": 47.46, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/kats/master/README.md", "_readme_localurl": "facebookresearch~kats~README.md", @@ -12949,19 +19498,43 @@ "description": null, "_repopath": "pytoolz/toolz", "_reponame": "toolz", - "_stars": 4094, - "_forks": 243, + "_stars": 4103, + "_forks": 246, "_watches": 82, "_topics": [], "_language": "Python", "_homepage": "http://toolz.readthedocs.org/", "_description": "toolz: A functional standard library for Python.", "_organization": "pytoolz", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-03T00:00:00.000Z", "_created_at": "2013-09-13T00:00:00.000Z", - "_age_weeks": 481, - "_stars_per_week": 8.5, + "_age_weeks": 483, + "_stars_per_week": 8.49, + "_pop_contributor_count": 74, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "coiled", + "formerlyquantopian", + "google", + "lynkertechnologies" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.29, + "_pop_updated_issues_count": 15, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 113, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 15.0, + "_pop_comment_count": 27.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 90, + "_pop_score": 46.23, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pytoolz/toolz/master/README.rst", "_readme_localurl": "pytoolz~toolz~README.rst", @@ -12984,8 +19557,8 @@ "description": null, "_repopath": "google/pytype", "_reponame": "pytype", - "_stars": 4006, - "_forks": 259, + "_stars": 4016, + "_forks": 258, "_watches": 55, "_topics": [ "python", @@ -13000,11 +19573,33 @@ "_homepage": "https://google.github.io/pytype", "_description": "pytype: A static type analyzer for Python code", "_organization": "google", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2015-03-18T00:00:00.000Z", - "_age_weeks": 403, - "_stars_per_week": 9.94, + "_age_weeks": 404, + "_stars_per_week": 9.92, + "_pop_contributor_count": 87, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "googledart-langflutter" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 12.4, + "_pop_updated_issues_count": 56, + "_pop_closed_issues_count": 41, + "_pop_created_since_days": 94, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 21, + "_pop_recent_releases_adjusted_count": 21, + "_pop_issue_count": 56.0, + "_pop_comment_count": 45.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 2154, + "_pop_score": 60.5, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google/pytype/master/README.md", "_readme_localurl": "google~pytype~README.md", @@ -13024,6 +19619,63 @@ "google~pytype~pyproject.toml" ] }, + { + "index": 542, + "category": "util", + "githuburl": "https://github.com/mamba-org/mamba", + "featured": null, + "links": null, + "description": null, + "_repopath": "mamba-org/mamba", + "_reponame": "mamba", + "_stars": 4000, + "_forks": 230, + "_watches": 39, + "_topics": [], + "_language": "C++", + "_homepage": "https://mamba.readthedocs.io", + "_description": "mamba: The Fast Cross-Platform Package Manager", + "_organization": "mamba-org", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", + "_created_at": "2019-03-05T00:00:00.000Z", + "_age_weeks": 197, + "_stars_per_week": 20.22, + "_pop_contributor_count": 101, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "prefix.devgmbh", + "quantstack" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 10.98, + "_pop_updated_issues_count": 449, + "_pop_closed_issues_count": 227, + "_pop_created_since_days": 46, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 50, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 449.0, + "_pop_comment_count": 1062.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 0, + "_pop_score": 49.84, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/mamba-org/mamba/master/README.md", + "_readme_localurl": "mamba-org~mamba~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/mamba-org/mamba/master/pyproject.toml" + ], + "_requirements_localurls": [ + "mamba-org~mamba~pyproject.toml" + ] + }, { "index": 565, "category": "gis", @@ -13033,9 +19685,9 @@ "description": null, "_repopath": "gboeing/osmnx", "_reponame": "osmnx", - "_stars": 3948, - "_forks": 731, - "_watches": 123, + "_stars": 3963, + "_forks": 734, + "_watches": 121, "_topics": [ "openstreetmap", "gis", @@ -13062,11 +19714,33 @@ "_homepage": "https://geoffboeing.com/publications/osmnx-complex-street-networks/", "_description": "OSMnx: Python for street networks. Retrieve, model, analyze, and visualize street networks and other spatial data from OpenStreetMap.", "_organization": "gboeing", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-28T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2016-07-24T00:00:00.000Z", - "_age_weeks": 332, - "_stars_per_week": 11.88, + "_age_weeks": 334, + "_stars_per_week": 11.86, + "_pop_contributor_count": 73, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "aaltouniversity", + "universityofsoutherncalifornia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.94, + "_pop_updated_issues_count": 51, + "_pop_closed_issues_count": 49, + "_pop_created_since_days": 78, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 51.0, + "_pop_comment_count": 88.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 93, + "_pop_score": 52.05, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/gboeing/osmnx/master/README.md", "_readme_localurl": "gboeing~osmnx~README.md", @@ -13083,41 +19757,6 @@ "gboeing~osmnx~setup.py" ] }, - { - "index": 542, - "category": "util", - "githuburl": "https://github.com/mamba-org/mamba", - "featured": null, - "links": null, - "description": null, - "_repopath": "mamba-org/mamba", - "_reponame": "mamba", - "_stars": 3944, - "_forks": 226, - "_watches": 39, - "_topics": [], - "_language": "C++", - "_homepage": "https://mamba.readthedocs.io", - "_description": "mamba: The Fast Cross-Platform Package Manager", - "_organization": "mamba-org", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2019-03-05T00:00:00.000Z", - "_age_weeks": 196, - "_stars_per_week": 20.11, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/mamba-org/mamba/master/README.md", - "_readme_localurl": "mamba-org~mamba~README.md", - "_requirements_filenames": [ - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/mamba-org/mamba/master/pyproject.toml" - ], - "_requirements_localurls": [ - "mamba-org~mamba~pyproject.toml" - ] - }, { "index": 227, "category": "ml", @@ -13127,8 +19766,8 @@ "description": null, "_repopath": "online-ml/river", "_reponame": "river", - "_stars": 3915, - "_forks": 432, + "_stars": 3958, + "_forks": 437, "_watches": 82, "_topics": [ "incremental-learning", @@ -13148,11 +19787,36 @@ "_homepage": "https://riverml.xyz", "_description": "river: \ud83c\udf0a Online machine learning in Python", "_organization": "online-ml", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2019-01-24T00:00:00.000Z", - "_age_weeks": 201, - "_stars_per_week": 19.39, + "_age_weeks": 203, + "_stars_per_week": 19.44, + "_pop_contributor_count": 89, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "carbonfact", + "manomano", + "phdcandidateatuniversityofs\u00e3opaulo", + "universityofwaikato", + "volvo-cars" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.13, + "_pop_updated_issues_count": 60, + "_pop_closed_issues_count": 55, + "_pop_created_since_days": 47, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 60.0, + "_pop_comment_count": 155.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 2, + "_pop_score": 50.3, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/online-ml/river/master/README.md", "_readme_localurl": "online-ml~river~README.md", @@ -13178,19 +19842,41 @@ "description": null, "_repopath": "ethereum/web3.py", "_reponame": "web3.py", - "_stars": 3896, - "_forks": 1223, - "_watches": 117, + "_stars": 3917, + "_forks": 1232, + "_watches": 119, "_topics": [], "_language": "Python", "_homepage": "http://web3py.readthedocs.io", "_description": "web3.py: A python interface for interacting with the Ethereum blockchain and ecosystem.", "_organization": "ethereum", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2016-04-14T00:00:00.000Z", - "_age_weeks": 346, - "_stars_per_week": 11.23, + "_age_weeks": 348, + "_stars_per_week": 11.24, + "_pop_contributor_count": 218, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ethereum", + "ethereumfoundation" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.88, + "_pop_updated_issues_count": 149, + "_pop_closed_issues_count": 122, + "_pop_created_since_days": 81, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 28, + "_pop_recent_releases_adjusted_count": 28, + "_pop_issue_count": 149.0, + "_pop_comment_count": 174.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 547, + "_pop_score": 61.69, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ethereum/web3.py/master/README.md", "_readme_localurl": "ethereum~web3.py~README.md", @@ -13207,6 +19893,82 @@ "ethereum~web3.py~pyproject.toml" ] }, + { + "index": 549, + "category": "ml", + "githuburl": "https://github.com/open-mmlab/mmediting", + "featured": null, + "links": null, + "description": null, + "_repopath": "open-mmlab/mmediting", + "_reponame": "mmediting", + "_stars": 3869, + "_forks": 698, + "_watches": 83, + "_topics": [ + "super-resolution", + "inpainting", + "matting", + "image-generation", + "generative-adversarial-network", + "pytorch", + "deep-learning", + "video-interpolation", + "video-frame-interpolation", + "video-super-resolution", + "computer-vision", + "image-editing", + "image-processing", + "image-synthesis" + ], + "_language": "Python", + "_homepage": "https://mmediting.readthedocs.io/en/latest/", + "_description": "mmediting: OpenMMLab Image and Video Restoration, Editing and Generation Toolbox", + "_organization": "open-mmlab", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-11-30T00:00:00.000Z", + "_created_at": "2019-08-23T00:00:00.000Z", + "_age_weeks": 173, + "_stars_per_week": 22.31, + "_pop_contributor_count": 64, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cuhk", + "nanyangtechnologicaluniversity", + "universityofalberta" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.6, + "_pop_updated_issues_count": 461, + "_pop_closed_issues_count": 389, + "_pop_created_since_days": 40, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 460.0, + "_pop_comment_count": 452.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 1643, + "_pop_score": 57.5, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/open-mmlab/mmediting/master/README.md", + "_readme_localurl": "open-mmlab~mmediting~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/open-mmlab/mmediting/master/requirements.txt", + "https://raw.githubusercontent.com/open-mmlab/mmediting/master/setup.py" + ], + "_requirements_localurls": [ + "open-mmlab~mmediting~requirements.txt", + "open-mmlab~mmediting~setup.py" + ] + }, { "index": 13, "category": "ml", @@ -13216,9 +19978,9 @@ "description": null, "_repopath": "districtdatalabs/yellowbrick", "_reponame": "yellowbrick", - "_stars": 3861, + "_stars": 3866, "_forks": 538, - "_watches": 102, + "_watches": 101, "_topics": [ "machine-learning", "visual-analysis", @@ -13235,11 +19997,33 @@ "_homepage": "http://www.scikit-yb.org/", "_description": "yellowbrick: Visual analysis and diagnostic tools to facilitate machine learning model selection.", "_organization": "districtdatalabs", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-12-05T00:00:00.000Z", "_created_at": "2016-05-18T00:00:00.000Z", - "_age_weeks": 342, - "_stars_per_week": 11.29, + "_age_weeks": 343, + "_stars_per_week": 11.25, + "_pop_contributor_count": 110, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "rotationalio", + "rotationallabs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.65, + "_pop_updated_issues_count": 13, + "_pop_closed_issues_count": 9, + "_pop_created_since_days": 80, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 13.0, + "_pop_comment_count": 25.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 57, + "_pop_score": 47.21, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/districtdatalabs/yellowbrick/master/README.md", "_readme_localurl": "districtdatalabs~yellowbrick~README.md", @@ -13257,56 +20041,80 @@ ] }, { - "index": 549, - "category": "ml", - "githuburl": "https://github.com/open-mmlab/mmediting", + "index": 362, + "category": "ml-ops", + "githuburl": "https://github.com/allegroai/clearml", "featured": null, "links": null, "description": null, - "_repopath": "open-mmlab/mmediting", - "_reponame": "mmediting", - "_stars": 3839, - "_forks": 685, - "_watches": 83, + "_repopath": "allegroai/clearml", + "_reponame": "clearml", + "_stars": 3857, + "_forks": 519, + "_watches": 82, "_topics": [ - "super-resolution", - "inpainting", - "matting", - "image-generation", - "generative-adversarial-network", - "pytorch", + "version-control", + "experiment-manager", + "version", + "control", + "experiment", + "deeplearning", "deep-learning", - "video-interpolation", - "video-frame-interpolation", - "video-super-resolution", - "computer-vision", - "image-editing", - "image-processing", - "image-synthesis" + "machine-learning", + "machinelearning", + "ai", + "trains", + "trainsai", + "clearml", + "k8s", + "devops", + "mlops" ], "_language": "Python", - "_homepage": "https://mmediting.readthedocs.io/en/latest/", - "_description": "mmediting: OpenMMLab Image and Video Restoration, Editing and Generation Toolbox", - "_organization": "open-mmlab", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", - "_created_at": "2019-08-23T00:00:00.000Z", - "_age_weeks": 171, - "_stars_per_week": 22.36, + "_homepage": "https://clear.ml/docs", + "_description": "ClearML - Auto-Magical CI/CD to streamline your ML workflow. Experiment Manager, MLOps and Data-Management", + "_organization": "allegroai", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_created_at": "2019-06-10T00:00:00.000Z", + "_age_weeks": 184, + "_stars_per_week": 20.96, + "_pop_contributor_count": 62, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "allegroai", + "techlearnersincallegroai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.46, + "_pop_updated_issues_count": 114, + "_pop_closed_issues_count": 39, + "_pop_created_since_days": 43, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 22, + "_pop_recent_releases_estimated_tags": 36, + "_pop_recent_releases_adjusted_count": 22, + "_pop_issue_count": 114.0, + "_pop_comment_count": 249.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 22, + "_pop_score": 49.63, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/open-mmlab/mmediting/master/README.md", - "_readme_localurl": "open-mmlab~mmediting~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/allegroai/clearml/master/README.md", + "_readme_localurl": "allegroai~clearml~README.md", "_requirements_filenames": [ "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/open-mmlab/mmediting/master/requirements.txt", - "https://raw.githubusercontent.com/open-mmlab/mmediting/master/setup.py" + "https://raw.githubusercontent.com/allegroai/clearml/master/requirements.txt", + "https://raw.githubusercontent.com/allegroai/clearml/master/setup.py" ], "_requirements_localurls": [ - "open-mmlab~mmediting~requirements.txt", - "open-mmlab~mmediting~setup.py" + "allegroai~clearml~requirements.txt", + "allegroai~clearml~setup.py" ] }, { @@ -13318,7 +20126,7 @@ "description": null, "_repopath": "lk-geimfari/mimesis", "_reponame": "mimesis", - "_stars": 3822, + "_stars": 3833, "_forks": 303, "_watches": 64, "_topics": [ @@ -13343,11 +20151,33 @@ "_homepage": "https://mimesis.name", "_description": "Mimesis is a high-performance fake data generator for Python, which provides data for a variety of purposes in a variety of languages. ", "_organization": "lk-geimfari", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-10-27T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2016-09-09T00:00:00.000Z", - "_age_weeks": 325, - "_stars_per_week": 11.73, + "_age_weeks": 327, + "_stars_per_week": 11.71, + "_pop_contributor_count": 112, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "extendi", + "roskomsvoboda" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.96, + "_pop_updated_issues_count": 46, + "_pop_closed_issues_count": 32, + "_pop_created_since_days": 76, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 46.0, + "_pop_comment_count": 56.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 100, + "_pop_score": 52.64, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/lk-geimfari/mimesis/master/README.rst", "_readme_localurl": "lk-geimfari~mimesis~README.rst", @@ -13362,58 +20192,61 @@ ] }, { - "index": 362, - "category": "ml-ops", - "githuburl": "https://github.com/allegroai/clearml", + "index": 184, + "category": "ml-dl", + "githuburl": "https://github.com/google/flax", "featured": null, "links": null, "description": null, - "_repopath": "allegroai/clearml", - "_reponame": "clearml", - "_stars": 3816, - "_forks": 516, - "_watches": 80, + "_repopath": "google/flax", + "_reponame": "flax", + "_stars": 3821, + "_forks": 444, + "_watches": 74, "_topics": [ - "version-control", - "experiment-manager", - "version", - "control", - "experiment", - "deeplearning", - "deep-learning", - "machine-learning", - "machinelearning", - "ai", - "trains", - "trainsai", - "clearml", - "k8s", - "devops", - "mlops" + "jax" ], "_language": "Python", - "_homepage": "https://clear.ml/docs", - "_description": "ClearML - Auto-Magical CI/CD to streamline your ML workflow. Experiment Manager, MLOps and Data-Management", - "_organization": "allegroai", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2019-06-10T00:00:00.000Z", - "_age_weeks": 182, - "_stars_per_week": 20.93, + "_homepage": "https://flax.readthedocs.io", + "_description": "Flax is a neural network library for JAX that is designed for flexibility.", + "_organization": "google", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2020-01-10T00:00:00.000Z", + "_age_weeks": 153, + "_stars_per_week": 24.9, + "_pop_contributor_count": 183, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 10.9, + "_pop_updated_issues_count": 289, + "_pop_closed_issues_count": 218, + "_pop_created_since_days": 36, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 289.0, + "_pop_comment_count": 489.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 588, + "_pop_score": 58.75, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/allegroai/clearml/master/README.md", - "_readme_localurl": "allegroai~clearml~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/google/flax/master/README.md", + "_readme_localurl": "google~flax~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/allegroai/clearml/master/requirements.txt", - "https://raw.githubusercontent.com/allegroai/clearml/master/setup.py" + "https://raw.githubusercontent.com/google/flax/master/setup.py" ], "_requirements_localurls": [ - "allegroai~clearml~requirements.txt", - "allegroai~clearml~setup.py" + "google~flax~setup.py" ] }, { @@ -13425,8 +20258,8 @@ "description": null, "_repopath": "feast-dev/feast", "_reponame": "feast", - "_stars": 3798, - "_forks": 708, + "_stars": 3820, + "_forks": 714, "_watches": 74, "_topics": [ "machine-learning", @@ -13444,11 +20277,34 @@ "_homepage": "https://feast.dev", "_description": "feast: Feature Store for Machine Learning", "_organization": "feast-dev", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2018-12-10T00:00:00.000Z", - "_age_weeks": 208, - "_stars_per_week": 18.23, + "_age_weeks": 210, + "_stars_per_week": 18.19, + "_pop_contributor_count": 179, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "gojekindonesia", + "tecton", + "tectonai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 15.31, + "_pop_updated_issues_count": 271, + "_pop_closed_issues_count": 156, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 31, + "_pop_recent_releases_estimated_tags": 31, + "_pop_recent_releases_adjusted_count": 31, + "_pop_issue_count": 271.0, + "_pop_comment_count": 434.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 4, + "_pop_score": 55.68, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/feast-dev/feast/master/README.md", "_readme_localurl": "feast-dev~feast~README.md", @@ -13465,43 +20321,6 @@ "feast-dev~feast~pyproject.toml" ] }, - { - "index": 184, - "category": "ml-dl", - "githuburl": "https://github.com/google/flax", - "featured": null, - "links": null, - "description": null, - "_repopath": "google/flax", - "_reponame": "flax", - "_stars": 3788, - "_forks": 437, - "_watches": 74, - "_topics": [ - "jax" - ], - "_language": "Python", - "_homepage": "https://flax.readthedocs.io", - "_description": "Flax is a neural network library for JAX that is designed for flexibility.", - "_organization": "google", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2020-01-10T00:00:00.000Z", - "_age_weeks": 151, - "_stars_per_week": 24.97, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/google/flax/master/README.md", - "_readme_localurl": "google~flax~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/google/flax/master/setup.py" - ], - "_requirements_localurls": [ - "google~flax~setup.py" - ] - }, { "index": 376, "category": "util", @@ -13511,9 +20330,9 @@ "description": null, "_repopath": "spotify/pedalboard", "_reponame": "pedalboard", - "_stars": 3756, - "_forks": 145, - "_watches": 44, + "_stars": 3802, + "_forks": 153, + "_watches": 46, "_topics": [ "vst3", "vst3-host", @@ -13531,11 +20350,34 @@ "_homepage": "", "_description": "pedalboard: \ud83c\udf9b \ud83d\udd0a A Python library for working with audio.", "_organization": "spotify", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-08T00:00:00.000Z", "_created_at": "2021-07-06T00:00:00.000Z", - "_age_weeks": 74, - "_stars_per_week": 50.66, + "_age_weeks": 75, + "_stars_per_week": 50.12, + "_pop_contributor_count": 24, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "b3ta", + "myr", + "spotify" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.35, + "_pop_updated_issues_count": 36, + "_pop_closed_issues_count": 23, + "_pop_created_since_days": 18, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 30, + "_pop_recent_releases_estimated_tags": 24, + "_pop_recent_releases_adjusted_count": 30, + "_pop_issue_count": 36.0, + "_pop_comment_count": 38.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 16, + "_pop_score": 45.11, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/spotify/pedalboard/master/README.md", "_readme_localurl": "spotify~pedalboard~README.md", @@ -13564,9 +20406,9 @@ "description": null, "_repopath": "man-group/dtale", "_reponame": "dtale", - "_stars": 3754, - "_forks": 315, - "_watches": 67, + "_stars": 3769, + "_forks": 318, + "_watches": 69, "_topics": [ "python27", "python3", @@ -13587,11 +20429,30 @@ "_homepage": "http://alphatechadmin.pythonanywhere.com", "_description": "dtale: Visualizer for pandas data structures", "_organization": "man-group", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-11-04T00:00:00.000Z", "_created_at": "2019-07-15T00:00:00.000Z", - "_age_weeks": 177, - "_stars_per_week": 21.17, + "_age_weeks": 179, + "_stars_per_week": 21.06, + "_pop_contributor_count": 29, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.65, + "_pop_updated_issues_count": 23, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 42, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 40, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 23.0, + "_pop_comment_count": 18.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 253, + "_pop_score": 39.49, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/man-group/dtale/master/README.md", "_readme_localurl": "man-group~dtale~README.md", @@ -13608,44 +20469,6 @@ "man-group~dtale~setup.py" ] }, - { - "index": 896, - "category": "diffusion", - "githuburl": "https://github.com/apple/ml-stable-diffusion", - "featured": null, - "links": null, - "description": null, - "_repopath": "apple/ml-stable-diffusion", - "_reponame": "ml-stable-diffusion", - "_stars": 3725, - "_forks": 128, - "_watches": 46, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "ml-stable-diffusion: Stable Diffusion with Core ML on Apple Silicon", - "_organization": "apple", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", - "_created_at": "2022-11-16T00:00:00.000Z", - "_age_weeks": 3, - "_stars_per_week": 1241.67, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/README.md", - "_readme_localurl": "apple~ml-stable-diffusion~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/requirements.txt", - "https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/setup.py" - ], - "_requirements_localurls": [ - "apple~ml-stable-diffusion~requirements.txt", - "apple~ml-stable-diffusion~setup.py" - ] - }, { "index": 343, "category": "web", @@ -13655,9 +20478,9 @@ "description": null, "_repopath": "vitalik/django-ninja", "_reponame": "django-ninja", - "_stars": 3725, - "_forks": 231, - "_watches": 62, + "_stars": 3763, + "_forks": 235, + "_watches": 61, "_topics": [ "python", "django", @@ -13672,11 +20495,30 @@ "_homepage": "https://django-ninja.rest-framework.com", "_description": "django-ninja: \ud83d\udca8 Fast, Async-ready, Openapi, type hints based framework for building APIs", "_organization": "vitalik", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-20T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2020-05-19T00:00:00.000Z", - "_age_weeks": 133, - "_stars_per_week": 27.98, + "_age_weeks": 134, + "_stars_per_week": 27.9, + "_pop_contributor_count": 70, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.58, + "_pop_updated_issues_count": 97, + "_pop_closed_issues_count": 46, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 97.0, + "_pop_comment_count": 173.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 22, + "_pop_score": 42.16, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/vitalik/django-ninja/master/README.md", "_readme_localurl": "vitalik~django-ninja~README.md", @@ -13702,19 +20544,38 @@ "description": null, "_repopath": "karpathy/nn-zero-to-hero", "_reponame": "nn-zero-to-hero", - "_stars": 3708, - "_forks": 252, + "_stars": 3754, + "_forks": 259, "_watches": 151, "_topics": [], "_language": "Jupyter Notebook", "_homepage": null, "_description": "nn-zero-to-hero: Neural Networks: Zero to Hero", "_organization": "karpathy", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-21T00:00:00.000Z", "_created_at": "2022-09-08T00:00:00.000Z", - "_age_weeks": 12, - "_stars_per_week": 288.4, + "_age_weeks": 14, + "_stars_per_week": 257.63, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.17, + "_pop_updated_issues_count": 13, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 3, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 13.0, + "_pop_comment_count": 18.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 11.78, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/karpathy/nn-zero-to-hero/master/README.md", "_readme_localurl": "karpathy~nn-zero-to-hero~README.md", @@ -13731,9 +20592,9 @@ "description": null, "_repopath": "makcedward/nlpaug", "_reponame": "nlpaug", - "_stars": 3672, - "_forks": 419, - "_watches": 38, + "_stars": 3690, + "_forks": 420, + "_watches": 39, "_topics": [ "nlp", "augmentation", @@ -13750,11 +20611,35 @@ "_homepage": "https://makcedward.github.io/", "_description": "nlpaug: Data augmentation for NLP ", "_organization": "makcedward", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-07-07T00:00:00.000Z", "_created_at": "2019-03-21T00:00:00.000Z", - "_age_weeks": 193, - "_stars_per_week": 18.94, + "_age_weeks": 195, + "_stars_per_week": 18.87, + "_pop_contributor_count": 33, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "clevertech", + "cresta", + "toyotaconnected", + "truefoundry" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.37, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 46, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 11.0, + "_pop_comment_count": 6.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 2, + "_pop_score": 31.07, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/makcedward/nlpaug/master/README.md", "_readme_localurl": "makcedward~nlpaug~README.md", @@ -13780,19 +20665,41 @@ "description": null, "_repopath": "pythonprofilers/memory_profiler", "_reponame": "memory_profiler", - "_stars": 3671, + "_stars": 3684, "_forks": 363, - "_watches": 76, + "_watches": 75, "_topics": [], "_language": "Python", "_homepage": "http://pypi.python.org/pypi/memory_profiler", "_description": "memory_profiler: Monitor Memory usage of Python code", "_organization": "pythonprofilers", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-12-06T00:00:00.000Z", "_created_at": "2011-10-14T00:00:00.000Z", - "_age_weeks": 581, + "_age_weeks": 583, "_stars_per_week": 6.31, + "_pop_contributor_count": 101, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cardiologs", + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.73, + "_pop_updated_issues_count": 21, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 136, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 21.0, + "_pop_comment_count": 23.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 225, + "_pop_score": 50.61, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pythonprofilers/memory_profiler/master/README.rst", "_readme_localurl": "pythonprofilers~memory_profiler~README.rst", @@ -13818,8 +20725,8 @@ "description": null, "_repopath": "amundsen-io/amundsen", "_reponame": "amundsen", - "_stars": 3661, - "_forks": 888, + "_stars": 3680, + "_forks": 891, "_watches": 245, "_topics": [ "amundsen", @@ -13832,11 +20739,33 @@ "_homepage": "https://www.amundsen.io/amundsen/", "_description": "Amundsen is a metadata driven application for improving the productivity of data analysts, data scientists and engineers when interacting with data.", "_organization": "amundsen-io", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2019-05-14T00:00:00.000Z", - "_age_weeks": 186, - "_stars_per_week": 19.67, + "_age_weeks": 187, + "_stars_per_week": 19.59, + "_pop_contributor_count": 215, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "databricksamundsen-ioapache", + "lyft" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.73, + "_pop_updated_issues_count": 270, + "_pop_closed_issues_count": 253, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 48, + "_pop_recent_releases_estimated_tags": 33, + "_pop_recent_releases_adjusted_count": 48, + "_pop_issue_count": 270.0, + "_pop_comment_count": 147.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 16, + "_pop_score": 52.6, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/amundsen-io/amundsen/master/README.md", "_readme_localurl": "amundsen-io~amundsen~README.md", @@ -13859,8 +20788,8 @@ "description": null, "_repopath": "project-monai/monai", "_reponame": "MONAI", - "_stars": 3633, - "_forks": 683, + "_stars": 3663, + "_forks": 698, "_watches": 89, "_topics": [ "healthcare-imaging", @@ -13875,11 +20804,33 @@ "_homepage": "https://monai.io/", "_description": "MONAI: AI Toolkit for Healthcare Imaging", "_organization": "project-monai", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2019-10-11T00:00:00.000Z", - "_age_weeks": 164, - "_stars_per_week": 22.06, + "_age_weeks": 166, + "_stars_per_week": 22.01, + "_pop_contributor_count": 131, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "king'scollegelondon", + "nvidia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 14.46, + "_pop_updated_issues_count": 573, + "_pop_closed_issues_count": 466, + "_pop_created_since_days": 39, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 22, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 572.0, + "_pop_comment_count": 1388.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 151, + "_pop_score": 58.62, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/project-monai/monai/master/README.md", "_readme_localurl": "project-monai~monai~README.md", @@ -13908,8 +20859,8 @@ "description": null, "_repopath": "uber/causalml", "_reponame": "causalml", - "_stars": 3618, - "_forks": 575, + "_stars": 3644, + "_forks": 579, "_watches": 76, "_topics": [ "incubation", @@ -13921,11 +20872,34 @@ "_homepage": "", "_description": "causalml: Uplift modeling and causal inference with machine learning algorithms", "_organization": "uber", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-10T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2019-07-09T00:00:00.000Z", - "_age_weeks": 178, - "_stars_per_week": 20.31, + "_age_weeks": 179, + "_stars_per_week": 20.26, + "_pop_contributor_count": 48, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "spotify", + "toyotaresearchinstitute", + "uber" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.48, + "_pop_updated_issues_count": 45, + "_pop_closed_issues_count": 19, + "_pop_created_since_days": 42, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 45.0, + "_pop_comment_count": 45.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 19, + "_pop_score": 44.55, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/uber/causalml/master/README.md", "_readme_localurl": "uber~causalml~README.md", @@ -13954,9 +20928,9 @@ "description": null, "_repopath": "pytorch/captum", "_reponame": "captum", - "_stars": 3615, - "_forks": 388, - "_watches": 212, + "_stars": 3635, + "_forks": 390, + "_watches": 213, "_topics": [ "interpretability", "interpretable-ai", @@ -13968,11 +20942,33 @@ "_homepage": "https://captum.ai", "_description": "captum: Model interpretability and understanding for PyTorch", "_organization": "pytorch", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-18T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2019-08-27T00:00:00.000Z", - "_age_weeks": 171, - "_stars_per_week": 21.12, + "_age_weeks": 172, + "_stars_per_week": 21.03, + "_pop_contributor_count": 95, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebook", + "meta" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.1, + "_pop_updated_issues_count": 87, + "_pop_closed_issues_count": 45, + "_pop_created_since_days": 40, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 87.0, + "_pop_comment_count": 170.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 444, + "_pop_score": 51.61, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pytorch/captum/master/README.md", "_readme_localurl": "pytorch~captum~README.md", @@ -13998,9 +20994,9 @@ "description": null, "_repopath": "quantumlib/cirq", "_reponame": "Cirq", - "_stars": 3606, - "_forks": 813, - "_watches": 176, + "_stars": 3617, + "_forks": 815, + "_watches": 175, "_topics": [ "quantum-circuits", "nisq", @@ -14012,11 +21008,33 @@ "_homepage": "", "_description": "Cirq: A python framework for creating, editing, and invoking Noisy Intermediate Scale Quantum (NISQ) circuits.", "_organization": "quantumlib", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-22T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2017-12-14T00:00:00.000Z", - "_age_weeks": 259, - "_stars_per_week": 13.88, + "_age_weeks": 261, + "_stars_per_week": 13.83, + "_pop_contributor_count": 179, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "dukeuniversity", + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 15.63, + "_pop_updated_issues_count": 119, + "_pop_closed_issues_count": 76, + "_pop_created_since_days": 61, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 119.0, + "_pop_comment_count": 178.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 1234, + "_pop_score": 60.48, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/quantumlib/cirq/master/README.rst", "_readme_localurl": "quantumlib~cirq~README.rst", @@ -14042,9 +21060,9 @@ "description": null, "_repopath": "panda3d/panda3d", "_reponame": "panda3d", - "_stars": 3594, - "_forks": 732, - "_watches": 193, + "_stars": 3608, + "_forks": 730, + "_watches": 192, "_topics": [ "game-engine", "open-source", @@ -14062,11 +21080,30 @@ "_homepage": "https://www.panda3d.org/", "_description": "panda3d: Powerful, mature open-source cross-platform game engine for Python and C++, developed by Disney and CMU", "_organization": "panda3d", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2013-09-30T00:00:00.000Z", - "_age_weeks": 479, + "_age_weeks": 481, "_stars_per_week": 7.5, + "_pop_contributor_count": 155, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 8.71, + "_pop_updated_issues_count": 128, + "_pop_closed_issues_count": 83, + "_pop_created_since_days": 112, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 128.0, + "_pop_comment_count": 194.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 523, + "_pop_score": 52.91, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/panda3d/panda3d/master/README.md", "_readme_localurl": "panda3d~panda3d~README.md", @@ -14083,9 +21120,9 @@ "description": null, "_repopath": "orchest/orchest", "_reponame": "orchest", - "_stars": 3565, - "_forks": 208, - "_watches": 37, + "_stars": 3589, + "_forks": 212, + "_watches": 36, "_topics": [ "data-science", "machine-learning", @@ -14111,11 +21148,33 @@ "_homepage": "https://orchest.io", "_description": "orchest: Build data pipelines, the easy way \ud83d\udee0\ufe0f", "_organization": "orchest", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2020-05-21T00:00:00.000Z", - "_age_weeks": 132, - "_stars_per_week": 26.83, + "_age_weeks": 134, + "_stars_per_week": 26.67, + "_pop_contributor_count": 31, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "orchest", + "orchest.io" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 82.5, + "_pop_updated_issues_count": 254, + "_pop_closed_issues_count": 225, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 99, + "_pop_recent_releases_estimated_tags": 75, + "_pop_recent_releases_adjusted_count": 99, + "_pop_issue_count": 254.0, + "_pop_comment_count": 203.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 757, + "_pop_score": 58.84, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/orchest/orchest/master/README.md", "_readme_localurl": "orchest~orchest~README.md", @@ -14138,8 +21197,8 @@ "description": null, "_repopath": "tebelorg/rpa-python", "_reponame": "RPA-Python", - "_stars": 3552, - "_forks": 521, + "_stars": 3566, + "_forks": 523, "_watches": 99, "_topics": [ "rpa", @@ -14154,11 +21213,32 @@ "_homepage": "", "_description": "RPA-Python: Python package for doing RPA", "_organization": "tebelorg", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-09-07T00:00:00.000Z", "_created_at": "2019-03-30T00:00:00.000Z", - "_age_weeks": 192, - "_stars_per_week": 18.45, + "_age_weeks": 194, + "_stars_per_week": 18.35, + "_pop_contributor_count": 3, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "universityofappliedtrialanderror" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.17, + "_pop_updated_issues_count": 25, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 45, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 25.0, + "_pop_comment_count": 38.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 8, + "_pop_score": 28.92, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tebelorg/rpa-python/master/README.md", "_readme_localurl": "tebelorg~rpa-python~README.md", @@ -14172,41 +21252,6 @@ "tebelorg~rpa-python~setup.py" ] }, - { - "index": 783, - "category": "diffusion", - "githuburl": "https://github.com/carson-katri/dream-textures", - "featured": null, - "links": null, - "description": null, - "_repopath": "carson-katri/dream-textures", - "_reponame": "dream-textures", - "_stars": 3545, - "_forks": 167, - "_watches": 70, - "_topics": [ - "ai", - "blender", - "blender-addon", - "image-generation", - "stable-diffusion" - ], - "_language": "Python", - "_homepage": "", - "_description": "dream-textures: Stable Diffusion built-in to the Blender shader editor", - "_organization": "carson-katri", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2022-09-08T00:00:00.000Z", - "_age_weeks": 12, - "_stars_per_week": 275.72, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/carson-katri/dream-textures/master/README.md", - "_readme_localurl": "carson-katri~dream-textures~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 209, "category": "web", @@ -14216,9 +21261,9 @@ "description": null, "_repopath": "pywebio/pywebio", "_reponame": "PyWebIO", - "_stars": 3527, - "_forks": 314, - "_watches": 44, + "_stars": 3563, + "_forks": 319, + "_watches": 45, "_topics": [ "pywebio" ], @@ -14226,11 +21271,32 @@ "_homepage": "https://pywebio.readthedocs.io", "_description": "PyWebIO: Write interactive web app in script way.", "_organization": "pywebio", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-26T00:00:00.000Z", "_created_at": "2020-02-29T00:00:00.000Z", - "_age_weeks": 144, - "_stars_per_week": 24.4, + "_age_weeks": 146, + "_stars_per_week": 24.36, + "_pop_contributor_count": 15, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "christianclauss" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.71, + "_pop_updated_issues_count": 27, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 34, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 27.0, + "_pop_comment_count": 21.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 6, + "_pop_score": 33.3, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pywebio/pywebio/master/README.md", "_readme_localurl": "pywebio~pywebio~README.md", @@ -14247,6 +21313,69 @@ "pywebio~pywebio~setup.py" ] }, + { + "index": 309, + "category": "crypto", + "githuburl": "https://github.com/crytic/slither", + "featured": null, + "links": null, + "description": null, + "_repopath": "crytic/slither", + "_reponame": "slither", + "_stars": 3530, + "_forks": 645, + "_watches": 61, + "_topics": [ + "solidity", + "ethereum", + "static-analysis" + ], + "_language": "Python", + "_homepage": "https://blog.trailofbits.com/2018/10/19/slither-a-solidity-static-analysis-framework/", + "_description": "slither: Static Analyzer for Solidity", + "_organization": "crytic", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-11-28T00:00:00.000Z", + "_created_at": "2018-09-05T00:00:00.000Z", + "_age_weeks": 223, + "_stars_per_week": 15.78, + "_pop_contributor_count": 96, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "trailofbits" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.79, + "_pop_updated_issues_count": 193, + "_pop_closed_issues_count": 90, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 193.0, + "_pop_comment_count": 305.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 369, + "_pop_score": 51.46, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/crytic/slither/master/README.md", + "_readme_localurl": "crytic~slither~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/crytic/slither/master/setup.py", + "https://raw.githubusercontent.com/crytic/slither/master/pyproject.toml" + ], + "_requirements_localurls": [ + "crytic~slither~setup.py", + "crytic~slither~pyproject.toml" + ] + }, { "index": 616, "category": "testing", @@ -14256,7 +21385,7 @@ "description": null, "_repopath": "spulec/freezegun", "_reponame": "freezegun", - "_stars": 3499, + "_stars": 3510, "_forks": 243, "_watches": 34, "_topics": [], @@ -14264,11 +21393,36 @@ "_homepage": null, "_description": "freezegun: Let your Python tests travel through time", "_organization": "spulec", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-08-12T00:00:00.000Z", "_created_at": "2012-12-11T00:00:00.000Z", - "_age_weeks": 521, + "_age_weeks": 522, "_stars_per_week": 6.71, + "_pop_contributor_count": 106, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "dryft-technologies", + "nordsoftware", + "pioneervalleybooks", + "policystat", + "yipitdata" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.33, + "_pop_updated_issues_count": 22, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 122, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 22.0, + "_pop_comment_count": 15.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 692, + "_pop_score": 49.82, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/spulec/freezegun/master/README.rst", "_readme_localurl": "spulec~freezegun~README.rst", @@ -14288,48 +21442,6 @@ "spulec~freezegun~pyproject.toml" ] }, - { - "index": 309, - "category": "crypto", - "githuburl": "https://github.com/crytic/slither", - "featured": null, - "links": null, - "description": null, - "_repopath": "crytic/slither", - "_reponame": "slither", - "_stars": 3491, - "_forks": 637, - "_watches": 63, - "_topics": [ - "solidity", - "ethereum", - "static-analysis" - ], - "_language": "Python", - "_homepage": "https://blog.trailofbits.com/2018/10/19/slither-a-solidity-static-analysis-framework/", - "_description": "slither: Static Analyzer for Solidity", - "_organization": "crytic", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-28T00:00:00.000Z", - "_created_at": "2018-09-05T00:00:00.000Z", - "_age_weeks": 222, - "_stars_per_week": 15.73, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/crytic/slither/master/README.md", - "_readme_localurl": "crytic~slither~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/crytic/slither/master/setup.py", - "https://raw.githubusercontent.com/crytic/slither/master/pyproject.toml" - ], - "_requirements_localurls": [ - "crytic~slither~setup.py", - "crytic~slither~pyproject.toml" - ] - }, { "index": 770, "category": "data", @@ -14339,8 +21451,8 @@ "description": null, "_repopath": "gristlabs/grist-core", "_reponame": "grist-core", - "_stars": 3487, - "_forks": 162, + "_stars": 3501, + "_forks": 164, "_watches": 40, "_topics": [ "awesome", @@ -14351,11 +21463,32 @@ "_homepage": "https://support.getgrist.com/self-managed/", "_description": "grist-core: Grist is the evolution of spreadsheets.", "_organization": "gristlabs", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2020-05-22T00:00:00.000Z", - "_age_weeks": 132, - "_stars_per_week": 26.27, + "_age_weeks": 134, + "_stars_per_week": 26.04, + "_pop_contributor_count": 20, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "gristlabs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 10.13, + "_pop_updated_issues_count": 117, + "_pop_closed_issues_count": 58, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 117.0, + "_pop_comment_count": 253.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 11, + "_pop_score": 43.84, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/gristlabs/grist-core/master/README.md", "_readme_localurl": "gristlabs~grist-core~README.md", @@ -14372,9 +21505,9 @@ "description": null, "_repopath": "osgeo/gdal", "_reponame": "gdal", - "_stars": 3482, - "_forks": 1946, - "_watches": 170, + "_stars": 3496, + "_forks": 1955, + "_watches": 169, "_topics": [ "raster", "geospatial-data", @@ -14385,11 +21518,34 @@ "_homepage": "https://gdal.org", "_description": "GDAL is an open source MIT licensed translator library for raster and vector geospatial data formats.", "_organization": "osgeo", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2012-10-09T00:00:00.000Z", - "_age_weeks": 530, + "_age_weeks": 531, "_stars_per_week": 6.57, + "_pop_contributor_count": 506, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cadcorp", + "google", + "spatialys" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 47.69, + "_pop_updated_issues_count": 625, + "_pop_closed_issues_count": 575, + "_pop_created_since_days": 124, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 625.0, + "_pop_comment_count": 665.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 6036, + "_pop_score": 74.09, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/osgeo/gdal/master/README.md", "_readme_localurl": "osgeo~gdal~README.md", @@ -14397,44 +21553,6 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, - { - "index": 287, - "category": "gis", - "githuburl": "https://github.com/geopandas/geopandas", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "geopandas/geopandas", - "_reponame": "geopandas", - "_stars": 3443, - "_forks": 770, - "_watches": 105, - "_topics": [], - "_language": "Python", - "_homepage": "http://geopandas.org/", - "_description": "geopandas: Python tools for geographic data", - "_organization": "geopandas", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2013-06-27T00:00:00.000Z", - "_age_weeks": 492, - "_stars_per_week": 6.99, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/geopandas/geopandas/master/README.md", - "_readme_localurl": "geopandas~geopandas~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/geopandas/geopandas/master/setup.py", - "https://raw.githubusercontent.com/geopandas/geopandas/master/pyproject.toml" - ], - "_requirements_localurls": [ - "geopandas~geopandas~setup.py", - "geopandas~geopandas~pyproject.toml" - ] - }, { "index": 280, "category": "nlp", @@ -14444,9 +21562,9 @@ "description": null, "_repopath": "maartengr/bertopic", "_reponame": "BERTopic", - "_stars": 3431, - "_forks": 448, - "_watches": 46, + "_stars": 3488, + "_forks": 455, + "_watches": 45, "_topics": [ "bert", "transformers", @@ -14463,11 +21581,36 @@ "_homepage": "https://maartengr.github.io/BERTopic/", "_description": "BERTopic: Leveraging BERT and c-TF-IDF to create easily interpretable topics. ", "_organization": "maartengr", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-12-06T00:00:00.000Z", "_created_at": "2020-09-22T00:00:00.000Z", - "_age_weeks": 115, - "_stars_per_week": 29.8, + "_age_weeks": 116, + "_stars_per_week": 29.85, + "_pop_contributor_count": 15, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ada", + "expedock", + "iknl", + "mustanganalytics", + "scitedotai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.44, + "_pop_updated_issues_count": 221, + "_pop_closed_issues_count": 136, + "_pop_created_since_days": 27, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 221.0, + "_pop_comment_count": 544.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 0, + "_pop_score": 40.16, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/maartengr/bertopic/master/README.md", "_readme_localurl": "maartengr~bertopic~README.md", @@ -14481,6 +21624,66 @@ "maartengr~bertopic~setup.py" ] }, + { + "index": 287, + "category": "gis", + "githuburl": "https://github.com/geopandas/geopandas", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "geopandas/geopandas", + "_reponame": "geopandas", + "_stars": 3462, + "_forks": 774, + "_watches": 107, + "_topics": [], + "_language": "Python", + "_homepage": "http://geopandas.org/", + "_description": "geopandas: Python tools for geographic data", + "_organization": "geopandas", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-10T00:00:00.000Z", + "_created_at": "2013-06-27T00:00:00.000Z", + "_age_weeks": 494, + "_stars_per_week": 7.0, + "_pop_contributor_count": 183, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "planetlabs", + "udl-ai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.08, + "_pop_updated_issues_count": 204, + "_pop_closed_issues_count": 93, + "_pop_created_since_days": 115, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 204.0, + "_pop_comment_count": 443.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 243, + "_pop_score": 58.66, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/geopandas/geopandas/master/README.md", + "_readme_localurl": "geopandas~geopandas~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/geopandas/geopandas/master/setup.py", + "https://raw.githubusercontent.com/geopandas/geopandas/master/pyproject.toml" + ], + "_requirements_localurls": [ + "geopandas~geopandas~setup.py", + "geopandas~geopandas~pyproject.toml" + ] + }, { "index": 778, "category": "study", @@ -14490,9 +21693,9 @@ "description": null, "_repopath": "nielsrogge/transformers-tutorials", "_reponame": "Transformers-Tutorials", - "_stars": 3414, - "_forks": 505, - "_watches": 76, + "_stars": 3456, + "_forks": 516, + "_watches": 77, "_topics": [ "transformers", "pytorch", @@ -14505,11 +21708,33 @@ "_homepage": "", "_description": "Transformers-Tutorials: This repository contains demos I made with the Transformers library by HuggingFace.", "_organization": "nielsrogge", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-25T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2020-08-31T00:00:00.000Z", - "_age_weeks": 118, - "_stars_per_week": 28.86, + "_age_weeks": 120, + "_stars_per_week": 28.8, + "_pop_contributor_count": 4, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "huggingface", + "roboflow" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.33, + "_pop_updated_issues_count": 63, + "_pop_closed_issues_count": 25, + "_pop_created_since_days": 28, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 63.0, + "_pop_comment_count": 92.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 29.16, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/nielsrogge/transformers-tutorials/master/README.md", "_readme_localurl": "nielsrogge~transformers-tutorials~README.md", @@ -14526,9 +21751,9 @@ "description": null, "_repopath": "jina-ai/discoart", "_reponame": "discoart", - "_stars": 3407, - "_forks": 203, - "_watches": 32, + "_stars": 3428, + "_forks": 204, + "_watches": 33, "_topics": [ "creative-ai", "disco-diffusion", @@ -14550,11 +21775,33 @@ "_homepage": "", "_description": "discoart: \ud83e\udea9 Create Disco Diffusion artworks in one line", "_organization": "jina-ai", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-08-17T00:00:00.000Z", "_created_at": "2022-06-30T00:00:00.000Z", - "_age_weeks": 22, - "_stars_per_week": 149.06, + "_age_weeks": 24, + "_stars_per_week": 139.51, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "jina-ai", + "jinaai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.21, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 6, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 110, + "_pop_recent_releases_estimated_tags": 241, + "_pop_recent_releases_adjusted_count": 110, + "_pop_issue_count": 14.0, + "_pop_comment_count": 19.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 8, + "_pop_score": 30.58, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jina-ai/discoart/master/README.md", "_readme_localurl": "jina-ai~discoart~README.md", @@ -14568,44 +21815,6 @@ "jina-ai~discoart~setup.py" ] }, - { - "index": 462, - "category": "util", - "githuburl": "https://github.com/rspeer/python-ftfy", - "featured": null, - "links": null, - "description": null, - "_repopath": "rspeer/python-ftfy", - "_reponame": "python-ftfy", - "_stars": 3376, - "_forks": 116, - "_watches": 75, - "_topics": [], - "_language": "Python", - "_homepage": "http://ftfy.readthedocs.org", - "_description": "python-ftfy: Fixes mojibake and other glitches in Unicode text, after the fact.", - "_organization": "rspeer", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-10-25T00:00:00.000Z", - "_created_at": "2012-08-24T00:00:00.000Z", - "_age_weeks": 536, - "_stars_per_week": 6.29, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/rspeer/python-ftfy/master/README.md", - "_readme_localurl": "rspeer~python-ftfy~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/rspeer/python-ftfy/master/setup.py", - "https://raw.githubusercontent.com/rspeer/python-ftfy/master/pyproject.toml" - ], - "_requirements_localurls": [ - "rspeer~python-ftfy~setup.py", - "rspeer~python-ftfy~pyproject.toml" - ] - }, { "index": 754, "category": "study", @@ -14615,19 +21824,40 @@ "description": null, "_repopath": "karpathy/micrograd", "_reponame": "micrograd", - "_stars": 3360, - "_forks": 299, - "_watches": 79, + "_stars": 3406, + "_forks": 309, + "_watches": 80, "_topics": [], "_language": "Jupyter Notebook", "_homepage": "", "_description": "micrograd: A tiny scalar-valued autograd engine and a neural net library on top of it with PyTorch-like API", "_organization": "karpathy", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2020-04-18T00:00:00.000Z", "_created_at": "2020-04-13T00:00:00.000Z", - "_age_weeks": 138, - "_stars_per_week": 24.3, + "_age_weeks": 140, + "_stars_per_week": 24.33, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "enscognitique" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 33, + "_pop_updated_since_days": 32, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 8.0, + "_pop_comment_count": 4.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 10.86, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/karpathy/micrograd/master/README.md", "_readme_localurl": "karpathy~micrograd~README.md", @@ -14650,8 +21880,8 @@ "description": null, "_repopath": "pypa/hatch", "_reponame": "hatch", - "_stars": 3349, - "_forks": 157, + "_stars": 3396, + "_forks": 165, "_watches": 49, "_topics": [ "python", @@ -14666,11 +21896,34 @@ "_homepage": "https://hatch.pypa.io/latest/", "_description": "hatch: Modern, extensible Python project management", "_organization": "pypa", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2017-05-31T00:00:00.000Z", - "_age_weeks": 288, - "_stars_per_week": 11.63, + "_age_weeks": 289, + "_stars_per_week": 11.72, + "_pop_contributor_count": 20, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "datadog", + "douban", + "mongodb" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 10.4, + "_pop_updated_issues_count": 164, + "_pop_closed_issues_count": 126, + "_pop_created_since_days": 68, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 82, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 82, + "_pop_issue_count": 164.0, + "_pop_comment_count": 303.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 205, + "_pop_score": 56.42, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pypa/hatch/master/README.md", "_readme_localurl": "pypa~hatch~README.md", @@ -14685,49 +21938,63 @@ ] }, { - "index": 368, - "category": "nlp", - "githuburl": "https://github.com/layout-parser/layout-parser", + "index": 462, + "category": "util", + "githuburl": "https://github.com/rspeer/python-ftfy", "featured": null, "links": null, "description": null, - "_repopath": "layout-parser/layout-parser", - "_reponame": "layout-parser", - "_stars": 3324, - "_forks": 331, - "_watches": 57, - "_topics": [ - "layout-analysis", - "deep-learning", - "object-detection", - "ocr", - "layout-parser", - "detectron2", - "document-layout-analysis", - "computer-vision", - "document-image-processing", - "layout-detection" - ], + "_repopath": "rspeer/python-ftfy", + "_reponame": "python-ftfy", + "_stars": 3387, + "_forks": 116, + "_watches": 74, + "_topics": [], "_language": "Python", - "_homepage": "https://layout-parser.github.io/", - "_description": "layout-parser: A Unified Toolkit for Deep Learning Based Document Image Analysis", - "_organization": "layout-parser", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-08-06T00:00:00.000Z", - "_created_at": "2020-06-10T00:00:00.000Z", - "_age_weeks": 130, - "_stars_per_week": 25.57, + "_homepage": "http://ftfy.readthedocs.org", + "_description": "python-ftfy: Fixes mojibake and other glitches in Unicode text, after the fact.", + "_organization": "rspeer", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-10-25T00:00:00.000Z", + "_created_at": "2012-08-24T00:00:00.000Z", + "_age_weeks": 538, + "_stars_per_week": 6.29, + "_pop_contributor_count": 18, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "elementalcognition", + "luminoso" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.37, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 126, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 3, + "_pop_score": 31.56, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/layout-parser/layout-parser/master/README.md", - "_readme_localurl": "layout-parser~layout-parser~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/rspeer/python-ftfy/master/README.md", + "_readme_localurl": "rspeer~python-ftfy~README.md", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/layout-parser/layout-parser/master/setup.py" + "https://raw.githubusercontent.com/rspeer/python-ftfy/master/setup.py", + "https://raw.githubusercontent.com/rspeer/python-ftfy/master/pyproject.toml" ], "_requirements_localurls": [ - "layout-parser~layout-parser~setup.py" + "rspeer~python-ftfy~setup.py", + "rspeer~python-ftfy~pyproject.toml" ] }, { @@ -14739,19 +22006,40 @@ "description": null, "_repopath": "huggingface/accelerate", "_reponame": "accelerate", - "_stars": 3312, - "_forks": 277, - "_watches": 63, + "_stars": 3380, + "_forks": 286, + "_watches": 65, "_topics": [], "_language": "Python", "_homepage": "https://huggingface.co/docs/accelerate", "_description": "accelerate: \ud83d\ude80 A simple way to train and use PyTorch models with multi-GPU, TPU, mixed-precision", "_organization": "huggingface", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2020-10-30T00:00:00.000Z", - "_age_weeks": 109, - "_stars_per_week": 30.19, + "_age_weeks": 111, + "_stars_per_week": 30.33, + "_pop_contributor_count": 77, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "huggingface" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.46, + "_pop_updated_issues_count": 287, + "_pop_closed_issues_count": 250, + "_pop_created_since_days": 26, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 15, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 287.0, + "_pop_comment_count": 733.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 1206, + "_pop_score": 57.99, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/huggingface/accelerate/master/README.md", "_readme_localurl": "huggingface~accelerate~README.md", @@ -14769,41 +22057,135 @@ ] }, { - "index": 421, - "category": "ml", - "githuburl": "https://github.com/facebookresearch/reagent", + "index": 790, + "category": "diffusion", + "githuburl": "https://github.com/ashawkey/stable-dreamfusion", "featured": null, "links": null, "description": null, - "_repopath": "facebookresearch/reagent", - "_reponame": "ReAgent", - "_stars": 3308, - "_forks": 497, - "_watches": 146, - "_topics": [], + "_repopath": "ashawkey/stable-dreamfusion", + "_reponame": "stable-dreamfusion", + "_stars": 3366, + "_forks": 280, + "_watches": 79, + "_topics": [ + "text-to-3d", + "gui", + "nerf", + "stable-diffusion", + "dreamfusion" + ], "_language": "Python", - "_homepage": "https://reagent.ai", - "_description": "ReAgent: A platform for Reasoning systems (Reinforcement Learning, Contextual Bandits, etc.)", - "_organization": "facebookresearch", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-15T00:00:00.000Z", - "_created_at": "2017-07-27T00:00:00.000Z", - "_age_weeks": 279, - "_stars_per_week": 11.82, + "_homepage": "", + "_description": "stable-dreamfusion: A pytorch implementation of text-to-3D dreamfusion, powered by stable diffusion.", + "_organization": "ashawkey", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2022-10-06T00:00:00.000Z", + "_age_weeks": 10, + "_stars_per_week": 318.41, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ctcmedia", + "pekinguniversity" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.12, + "_pop_updated_issues_count": 114, + "_pop_closed_issues_count": 54, + "_pop_created_since_days": 2, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 114.0, + "_pop_comment_count": 317.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 10, + "_pop_score": 30.75, + "_readme_filename": "readme.md", + "_readme_giturl": "https://raw.githubusercontent.com/ashawkey/stable-dreamfusion/master/readme.md", + "_readme_localurl": "ashawkey~stable-dreamfusion~readme.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/ashawkey/stable-dreamfusion/master/requirements.txt" + ], + "_requirements_localurls": [ + "ashawkey~stable-dreamfusion~requirements.txt" + ] + }, + { + "index": 368, + "category": "nlp", + "githuburl": "https://github.com/layout-parser/layout-parser", + "featured": null, + "links": null, + "description": null, + "_repopath": "layout-parser/layout-parser", + "_reponame": "layout-parser", + "_stars": 3346, + "_forks": 332, + "_watches": 57, + "_topics": [ + "layout-analysis", + "deep-learning", + "object-detection", + "ocr", + "layout-parser", + "detectron2", + "document-layout-analysis", + "computer-vision", + "document-image-processing", + "layout-detection" + ], + "_language": "Python", + "_homepage": "https://layout-parser.github.io/", + "_description": "layout-parser: A Unified Toolkit for Deep Learning Based Document Image Analysis", + "_organization": "layout-parser", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-08-06T00:00:00.000Z", + "_created_at": "2020-06-10T00:00:00.000Z", + "_age_weeks": 131, + "_stars_per_week": 25.4, + "_pop_contributor_count": 8, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazon", + "clinicalmlallenai", + "factminers" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.31, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 16.0, + "_pop_comment_count": 20.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 25.91, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/reagent/master/README.md", - "_readme_localurl": "facebookresearch~reagent~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/layout-parser/layout-parser/master/README.md", + "_readme_localurl": "layout-parser~layout-parser~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/facebookresearch/reagent/master/setup.py", - "https://raw.githubusercontent.com/facebookresearch/reagent/master/pyproject.toml" + "https://raw.githubusercontent.com/layout-parser/layout-parser/master/setup.py" ], "_requirements_localurls": [ - "facebookresearch~reagent~setup.py", - "facebookresearch~reagent~pyproject.toml" + "layout-parser~layout-parser~setup.py" ] }, { @@ -14815,8 +22197,8 @@ "description": null, "_repopath": "adafruit/circuitpython", "_reponame": "circuitpython", - "_stars": 3300, - "_forks": 873, + "_stars": 3320, + "_forks": 877, "_watches": 128, "_topics": [ "circuitpython", @@ -14834,11 +22216,33 @@ "_homepage": "https://circuitpython.org", "_description": "CircuitPython - a Python implementation for teaching coding with microcontrollers", "_organization": "adafruit", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2016-08-20T00:00:00.000Z", - "_age_weeks": 328, - "_stars_per_week": 10.04, + "_age_weeks": 330, + "_stars_per_week": 10.05, + "_pop_contributor_count": 877, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "chickadee-tech", + "unpythonicnetworks" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 37.1, + "_pop_updated_issues_count": 622, + "_pop_closed_issues_count": 448, + "_pop_created_since_days": 77, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 31, + "_pop_recent_releases_estimated_tags": 37, + "_pop_recent_releases_adjusted_count": 31, + "_pop_issue_count": 622.0, + "_pop_comment_count": 1458.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 5191, + "_pop_score": 75.95, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/adafruit/circuitpython/master/README.rst", "_readme_localurl": "adafruit~circuitpython~README.rst", @@ -14846,6 +22250,66 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, + { + "index": 421, + "category": "ml", + "githuburl": "https://github.com/facebookresearch/reagent", + "featured": null, + "links": null, + "description": null, + "_repopath": "facebookresearch/reagent", + "_reponame": "ReAgent", + "_stars": 3311, + "_forks": 498, + "_watches": 146, + "_topics": [], + "_language": "Python", + "_homepage": "https://reagent.ai", + "_description": "ReAgent: A platform for Reasoning systems (Reinforcement Learning, Contextual Bandits, etc.)", + "_organization": "facebookresearch", + "_updated_at": "2022-12-13T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2017-07-27T00:00:00.000Z", + "_age_weeks": 281, + "_stars_per_week": 11.76, + "_pop_contributor_count": 151, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "banditml", + "cornell" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.08, + "_pop_updated_issues_count": 22, + "_pop_closed_issues_count": 15, + "_pop_created_since_days": 66, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 22.0, + "_pop_comment_count": 36.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 587, + "_pop_score": 51.07, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/reagent/master/README.md", + "_readme_localurl": "facebookresearch~reagent~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/facebookresearch/reagent/master/setup.py", + "https://raw.githubusercontent.com/facebookresearch/reagent/master/pyproject.toml" + ], + "_requirements_localurls": [ + "facebookresearch~reagent~setup.py", + "facebookresearch~reagent~pyproject.toml" + ] + }, { "index": 897, "category": "viz", @@ -14855,7 +22319,7 @@ "description": null, "_repopath": "has2k1/plotnine", "_reponame": "plotnine", - "_stars": 3268, + "_stars": 3278, "_forks": 184, "_watches": 65, "_topics": [ @@ -14869,11 +22333,32 @@ "_homepage": "https://plotnine.readthedocs.io/en/stable/", "_description": "plotnine: A grammar of graphics for Python", "_organization": "has2k1", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-11-29T00:00:00.000Z", "_created_at": "2017-04-24T00:00:00.000Z", - "_age_weeks": 293, - "_stars_per_week": 11.14, + "_age_weeks": 295, + "_stars_per_week": 11.11, + "_pop_contributor_count": 99, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "kreuzwerker" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.85, + "_pop_updated_issues_count": 40, + "_pop_closed_issues_count": 22, + "_pop_created_since_days": 69, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 40.0, + "_pop_comment_count": 67.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 34, + "_pop_score": 44.93, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/has2k1/plotnine/master/README.md", "_readme_localurl": "has2k1~plotnine~README.md", @@ -14899,9 +22384,9 @@ "description": null, "_repopath": "aws/aws-sdk-pandas", "_reponame": "aws-sdk-pandas", - "_stars": 3242, - "_forks": 554, - "_watches": 58, + "_stars": 3257, + "_forks": 562, + "_watches": 57, "_topics": [ "python", "aws", @@ -14926,11 +22411,34 @@ "_homepage": "https://aws-sdk-pandas.readthedocs.io", "_description": "aws-sdk-pandas: pandas on AWS - Easy integration with Athena, Glue, Redshift, Timestream, Neptune, OpenSearch, QuickSight, Chime, CloudWatchLogs, DynamoDB, EMR, SecretManager, PostgreSQL, MySQL, SQLServer and S3 (Parquet, CSV, JSON and EXCEL).", "_organization": "aws", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2019-02-26T00:00:00.000Z", - "_age_weeks": 197, - "_stars_per_week": 16.44, + "_age_weeks": 198, + "_stars_per_week": 16.38, + "_pop_contributor_count": 121, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazonwebservices", + "aws", + "vtex" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.17, + "_pop_updated_issues_count": 328, + "_pop_closed_issues_count": 297, + "_pop_created_since_days": 46, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 26, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 328.0, + "_pop_comment_count": 1279.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.9, + "_pop_dependents_count": 0, + "_pop_score": 52.13, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/aws/aws-sdk-pandas/master/README.md", "_readme_localurl": "aws~aws-sdk-pandas~README.md", @@ -14944,47 +22452,6 @@ "aws~aws-sdk-pandas~pyproject.toml" ] }, - { - "index": 790, - "category": "diffusion", - "githuburl": "https://github.com/ashawkey/stable-dreamfusion", - "featured": null, - "links": null, - "description": null, - "_repopath": "ashawkey/stable-dreamfusion", - "_reponame": "stable-dreamfusion", - "_stars": 3229, - "_forks": 264, - "_watches": 74, - "_topics": [ - "text-to-3d", - "gui", - "nerf", - "stable-diffusion", - "dreamfusion" - ], - "_language": "Python", - "_homepage": "", - "_description": "stable-dreamfusion: A pytorch implementation of text-to-3D dreamfusion, powered by stable diffusion.", - "_organization": "ashawkey", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-03T00:00:00.000Z", - "_created_at": "2022-10-06T00:00:00.000Z", - "_age_weeks": 8, - "_stars_per_week": 364.56, - "_readme_filename": "readme.md", - "_readme_giturl": "https://raw.githubusercontent.com/ashawkey/stable-dreamfusion/master/readme.md", - "_readme_localurl": "ashawkey~stable-dreamfusion~readme.md", - "_requirements_filenames": [ - "requirements.txt" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/ashawkey/stable-dreamfusion/master/requirements.txt" - ], - "_requirements_localurls": [ - "ashawkey~stable-dreamfusion~requirements.txt" - ] - }, { "index": 321, "category": "gui", @@ -14994,8 +22461,8 @@ "description": null, "_repopath": "r0x0r/pywebview", "_reponame": "pywebview", - "_stars": 3224, - "_forks": 430, + "_stars": 3247, + "_forks": 433, "_watches": 57, "_topics": [ "python", @@ -15015,11 +22482,32 @@ "_homepage": "https://pywebview.flowrl.com", "_description": "pywebview: Build GUI for your Python program with JavaScript, HTML, and CSS", "_organization": "r0x0r", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-12-05T00:00:00.000Z", "_created_at": "2014-11-20T00:00:00.000Z", - "_age_weeks": 419, - "_stars_per_week": 7.68, + "_age_weeks": 421, + "_stars_per_week": 7.7, + "_pop_contributor_count": 97, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "beeper" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.46, + "_pop_updated_issues_count": 66, + "_pop_closed_issues_count": 46, + "_pop_created_since_days": 98, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 66.0, + "_pop_comment_count": 194.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.9, + "_pop_dependents_count": 43, + "_pop_score": 50.71, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/r0x0r/pywebview/master/README.md", "_readme_localurl": "r0x0r~pywebview~README.md", @@ -15045,7 +22533,7 @@ "description": null, "_repopath": "zeromq/pyzmq", "_reponame": "pyzmq", - "_stars": 3220, + "_stars": 3225, "_forks": 610, "_watches": 102, "_topics": [ @@ -15057,11 +22545,35 @@ "_homepage": "http://zguide.zeromq.org/py:all", "_description": "PyZMQ: Python bindings for zeromq", "_organization": "zeromq", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2010-07-21T00:00:00.000Z", - "_age_weeks": 646, + "_age_weeks": 647, "_stars_per_week": 4.98, + "_pop_contributor_count": 187, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazonwebservices", + "microsoft", + "simularesearchlaboratory", + "universityofcalifornia,berkeley." + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.42, + "_pop_updated_issues_count": 60, + "_pop_closed_issues_count": 48, + "_pop_created_since_days": 151, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 60.0, + "_pop_comment_count": 63.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 604, + "_pop_score": 60.29, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/zeromq/pyzmq/master/README.md", "_readme_localurl": "zeromq~pyzmq~README.md", @@ -15078,6 +22590,82 @@ "zeromq~pyzmq~pyproject.toml" ] }, + { + "index": 895, + "category": "time-series", + "githuburl": "https://github.com/awslabs/gluonts", + "featured": null, + "links": null, + "description": null, + "_repopath": "awslabs/gluonts", + "_reponame": "gluonts", + "_stars": 3224, + "_forks": 652, + "_watches": 69, + "_topics": [ + "time-series", + "deep-learning", + "forecasting", + "neural-networks", + "machine-learning", + "time-series-prediction", + "time-series-forecasting", + "mxnet", + "pytorch", + "aws", + "sagemaker", + "timeseries", + "artificial-intelligence", + "data-science" + ], + "_language": "Python", + "_homepage": "https://ts.gluon.ai", + "_description": "gluonts: Probabilistic time series modeling in Python", + "_organization": "awslabs", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2019-05-15T00:00:00.000Z", + "_age_weeks": 187, + "_stars_per_week": 17.18, + "_pop_contributor_count": 98, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazon", + "awsawsawslabs", + "awslabs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.65, + "_pop_updated_issues_count": 176, + "_pop_closed_issues_count": 121, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 27, + "_pop_recent_releases_estimated_tags": 19, + "_pop_recent_releases_adjusted_count": 27, + "_pop_issue_count": 176.0, + "_pop_comment_count": 224.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 48.37, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/awslabs/gluonts/master/README.md", + "_readme_localurl": "awslabs~gluonts~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/awslabs/gluonts/master/setup.py", + "https://raw.githubusercontent.com/awslabs/gluonts/master/pyproject.toml" + ], + "_requirements_localurls": [ + "awslabs~gluonts~setup.py", + "awslabs~gluonts~pyproject.toml" + ] + }, { "index": 208, "category": "crypto", @@ -15087,19 +22675,40 @@ "description": null, "_repopath": "cyberpunkmetalhead/binance-volatility-trading-bot", "_reponame": "Binance-volatility-trading-bot", - "_stars": 3219, - "_forks": 762, + "_stars": 3222, + "_forks": 763, "_watches": 145, "_topics": [], "_language": "Python", "_homepage": null, "_description": "Binance-volatility-trading-bot: This is a fully functioning Binance trading bot that measures the volatility of every coin on Binance and places trades with the highest gaining coins If you like this project consider donating though the Brave browser to allow me to continuously improve the script.", "_organization": "cyberpunkmetalhead", - "_updated_at": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2021-06-10T00:00:00.000Z", "_created_at": "2021-05-08T00:00:00.000Z", - "_age_weeks": 82, - "_stars_per_week": 38.98, + "_age_weeks": 84, + "_stars_per_week": 38.23, + "_pop_contributor_count": 19, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "mazette!" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 20, + "_pop_updated_since_days": 19, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 12.55, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/cyberpunkmetalhead/binance-volatility-trading-bot/master/README.md", "_readme_localurl": "cyberpunkmetalhead~binance-volatility-trading-bot~README.md", @@ -15122,7 +22731,7 @@ "description": null, "_repopath": "unbit/uwsgi", "_reponame": "uwsgi", - "_stars": 3217, + "_stars": 3218, "_forks": 668, "_watches": 113, "_topics": [], @@ -15130,11 +22739,34 @@ "_homepage": "http://projects.unbit.it/uwsgi", "_description": "uWSGI application server container", "_organization": "unbit", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2022-11-23T00:00:00.000Z", "_created_at": "2011-10-09T00:00:00.000Z", - "_age_weeks": 582, - "_stars_per_week": 5.52, + "_age_weeks": 584, + "_stars_per_week": 5.51, + "_pop_contributor_count": 352, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "20tabsrl", + "menodizero.it", + "unbit" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.52, + "_pop_updated_issues_count": 67, + "_pop_closed_issues_count": 33, + "_pop_created_since_days": 136, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 67.0, + "_pop_comment_count": 85.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 1403, + "_pop_score": 60.1, "_readme_filename": "", "_readme_giturl": "", "_readme_localurl": "", @@ -15157,8 +22789,8 @@ "description": null, "_repopath": "polyaxon/polyaxon", "_reponame": "polyaxon", - "_stars": 3212, - "_forks": 315, + "_stars": 3216, + "_forks": 316, "_watches": 77, "_topics": [ "deep-learning", @@ -15186,11 +22818,30 @@ "_homepage": "https://polyaxon.com", "_description": "polyaxon: MLOps Tools For Managing & Orchestrating The Machine Learning LifeCycle", "_organization": "polyaxon", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-11-11T00:00:00.000Z", "_created_at": "2016-12-26T00:00:00.000Z", - "_age_weeks": 310, - "_stars_per_week": 10.35, + "_age_weeks": 312, + "_stars_per_week": 10.31, + "_pop_contributor_count": 98, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.58, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 73, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 25, + "_pop_recent_releases_adjusted_count": 25, + "_pop_issue_count": 6.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 111, + "_pop_score": 40.38, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/polyaxon/polyaxon/master/README.md", "_readme_localurl": "polyaxon~polyaxon~README.md", @@ -15199,87 +22850,56 @@ "_requirements_localurls": [] }, { - "index": 895, - "category": "time-series", - "githuburl": "https://github.com/awslabs/gluonts", + "index": 319, + "category": "gui", + "githuburl": "https://github.com/dddomodossola/remi", "featured": null, "links": null, "description": null, - "_repopath": "awslabs/gluonts", - "_reponame": "gluonts", - "_stars": 3195, - "_forks": 646, - "_watches": 70, + "_repopath": "dddomodossola/remi", + "_reponame": "remi", + "_stars": 3185, + "_forks": 390, + "_watches": 119, "_topics": [ - "time-series", - "deep-learning", - "forecasting", - "neural-networks", - "machine-learning", - "time-series-prediction", - "time-series-forecasting", - "mxnet", - "pytorch", - "aws", - "sagemaker", - "timeseries", - "artificial-intelligence", - "data-science" - ], - "_language": "Python", - "_homepage": "https://ts.gluon.ai", - "_description": "gluonts: Probabilistic time series modeling in Python", - "_organization": "awslabs", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", - "_created_at": "2019-05-15T00:00:00.000Z", - "_age_weeks": 186, - "_stars_per_week": 17.18, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/awslabs/gluonts/master/README.md", - "_readme_localurl": "awslabs~gluonts~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/awslabs/gluonts/master/setup.py", - "https://raw.githubusercontent.com/awslabs/gluonts/master/pyproject.toml" - ], - "_requirements_localurls": [ - "awslabs~gluonts~setup.py", - "awslabs~gluonts~pyproject.toml" - ] - }, - { - "index": 319, - "category": "gui", - "githuburl": "https://github.com/dddomodossola/remi", - "featured": null, - "links": null, - "description": null, - "_repopath": "dddomodossola/remi", - "_reponame": "remi", - "_stars": 3177, - "_forks": 388, - "_watches": 119, - "_topics": [ - "python", - "gui-library", - "remi", - "platform-independent", - "ui", - "gui" + "python", + "gui-library", + "remi", + "platform-independent", + "ui", + "gui" ], "_language": "Python", "_homepage": "", "_description": "remi: Python REMote Interface library. Platform independent. In about 100 Kbytes, perfect for your diet.", "_organization": "dddomodossola", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-23T00:00:00.000Z", "_created_at": "2014-03-20T00:00:00.000Z", - "_age_weeks": 454, + "_age_weeks": 456, "_stars_per_week": 6.98, + "_pop_contributor_count": 56, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "europeanspallationsourceeric", + "imtssrl" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.71, + "_pop_updated_issues_count": 24, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 106, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 24.0, + "_pop_comment_count": 42.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 471, + "_pop_score": 49.48, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/dddomodossola/remi/master/README.md", "_readme_localurl": "dddomodossola~remi~README.md", @@ -15302,8 +22922,8 @@ "description": null, "_repopath": "executablebooks/jupyter-book", "_reponame": "jupyter-book", - "_stars": 3149, - "_forks": 582, + "_stars": 3163, + "_forks": 587, "_watches": 63, "_topics": [ "jupyter", @@ -15314,11 +22934,34 @@ "_homepage": "http://jupyterbook.org", "_description": "jupyter-book: Create beautiful, publication-quality books and documents from computational content.", "_organization": "executablebooks", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-23T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-09T00:00:00.000Z", "_created_at": "2018-06-14T00:00:00.000Z", - "_age_weeks": 233, - "_stars_per_week": 13.47, + "_age_weeks": 235, + "_stars_per_week": 13.43, + "_pop_contributor_count": 118, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "imperialcollegelondon", + "stanforduniversity", + "ucberkeley" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.63, + "_pop_updated_issues_count": 107, + "_pop_closed_issues_count": 37, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 107.0, + "_pop_comment_count": 197.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 139, + "_pop_score": 53.37, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/executablebooks/jupyter-book/master/README.md", "_readme_localurl": "executablebooks~jupyter-book~README.md", @@ -15332,6 +22975,76 @@ "executablebooks~jupyter-book~pyproject.toml" ] }, + { + "index": 99, + "category": "ml", + "githuburl": "https://github.com/skvark/opencv-python", + "featured": null, + "links": null, + "description": null, + "_repopath": "skvark/opencv-python", + "_reponame": "opencv-python", + "_stars": 3161, + "_forks": 618, + "_watches": 82, + "_topics": [ + "opencv", + "python", + "wheel", + "python-3", + "opencv-python", + "opencv-contrib-python", + "precompiled", + "pypi", + "manylinux" + ], + "_language": "Shell", + "_homepage": "https://pypi.org/project/opencv-python/", + "_description": "opencv-python: Automated CI toolchain to produce precompiled opencv-python, opencv-python-headless, opencv-contrib-python and opencv-contrib-python-headless packages.", + "_organization": "skvark", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", + "_created_at": "2016-04-08T00:00:00.000Z", + "_age_weeks": 349, + "_stars_per_week": 9.05, + "_pop_contributor_count": 40, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "softlandia-ltd", + "xperience.ai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.75, + "_pop_updated_issues_count": 50, + "_pop_closed_issues_count": 30, + "_pop_created_since_days": 82, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 50.0, + "_pop_comment_count": 105.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 1469, + "_pop_score": 53.88, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/skvark/opencv-python/master/README.md", + "_readme_localurl": "skvark~opencv-python~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/skvark/opencv-python/master/setup.py", + "https://raw.githubusercontent.com/skvark/opencv-python/master/pyproject.toml" + ], + "_requirements_localurls": [ + "skvark~opencv-python~setup.py", + "skvark~opencv-python~pyproject.toml" + ] + }, { "index": 804, "category": "util", @@ -15341,8 +23054,8 @@ "description": null, "_repopath": "miguelgrinberg/python-socketio", "_reponame": "python-socketio", - "_stars": 3142, - "_forks": 511, + "_stars": 3151, + "_forks": 512, "_watches": 63, "_topics": [ "socket-io", @@ -15361,11 +23074,32 @@ "_homepage": "", "_description": "python-socketio: Python Socket.IO server and client", "_organization": "miguelgrinberg", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-25T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-08T00:00:00.000Z", "_created_at": "2015-07-15T00:00:00.000Z", - "_age_weeks": 386, - "_stars_per_week": 8.14, + "_age_weeks": 387, + "_stars_per_week": 8.13, + "_pop_contributor_count": 61, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "untienots" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.19, + "_pop_updated_issues_count": 51, + "_pop_closed_issues_count": 43, + "_pop_created_since_days": 90, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 51.0, + "_pop_comment_count": 105.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 285, + "_pop_score": 52.07, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/miguelgrinberg/python-socketio/master/README.md", "_readme_localurl": "miguelgrinberg~python-socketio~README.md", @@ -15382,54 +23116,6 @@ "miguelgrinberg~python-socketio~pyproject.toml" ] }, - { - "index": 99, - "category": "ml", - "githuburl": "https://github.com/skvark/opencv-python", - "featured": null, - "links": null, - "description": null, - "_repopath": "skvark/opencv-python", - "_reponame": "opencv-python", - "_stars": 3140, - "_forks": 616, - "_watches": 82, - "_topics": [ - "opencv", - "python", - "wheel", - "python-3", - "opencv-python", - "opencv-contrib-python", - "precompiled", - "pypi", - "manylinux" - ], - "_language": "Shell", - "_homepage": "https://pypi.org/project/opencv-python/", - "_description": "opencv-python: Automated CI toolchain to produce precompiled opencv-python, opencv-python-headless, opencv-contrib-python and opencv-contrib-python-headless packages.", - "_organization": "skvark", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2016-04-08T00:00:00.000Z", - "_age_weeks": 347, - "_stars_per_week": 9.03, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/skvark/opencv-python/master/README.md", - "_readme_localurl": "skvark~opencv-python~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/skvark/opencv-python/master/setup.py", - "https://raw.githubusercontent.com/skvark/opencv-python/master/pyproject.toml" - ], - "_requirements_localurls": [ - "skvark~opencv-python~setup.py", - "skvark~opencv-python~pyproject.toml" - ] - }, { "index": 250, "category": "web", @@ -15439,8 +23125,8 @@ "description": null, "_repopath": "websocket-client/websocket-client", "_reponame": "websocket-client", - "_stars": 3128, - "_forks": 721, + "_stars": 3133, + "_forks": 724, "_watches": 88, "_topics": [ "websocket", @@ -15454,11 +23140,34 @@ "_homepage": "https://github.com/websocket-client/websocket-client", "_description": "websocket-client: WebSocket client for Python", "_organization": "websocket-client", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-11-04T00:00:00.000Z", "_created_at": "2010-12-28T00:00:00.000Z", - "_age_weeks": 623, - "_stars_per_week": 5.02, + "_age_weeks": 624, + "_stars_per_week": 5.01, + "_pop_contributor_count": 205, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "piclo", + "redhat,inc", + "yacademy" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.96, + "_pop_updated_issues_count": 32, + "_pop_closed_issues_count": 26, + "_pop_created_since_days": 146, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 32.0, + "_pop_comment_count": 57.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 986, + "_pop_score": 56.87, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/websocket-client/websocket-client/master/README.md", "_readme_localurl": "websocket-client~websocket-client~README.md", @@ -15481,7 +23190,7 @@ "description": null, "_repopath": "blaze/blaze", "_reponame": "blaze", - "_stars": 3115, + "_stars": 3118, "_forks": 386, "_watches": 200, "_topics": [], @@ -15489,11 +23198,35 @@ "_homepage": "blaze.pydata.org", "_description": "blaze: NumPy and Pandas interface to Big Data", "_organization": "blaze", - "_updated_at": "2022-11-26T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2019-08-15T00:00:00.000Z", "_created_at": "2012-10-26T00:00:00.000Z", - "_age_weeks": 527, - "_stars_per_week": 5.9, + "_age_weeks": 529, + "_stars_per_week": 5.89, + "_pop_contributor_count": 65, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "awsthinkbox", + "coiled", + "formerlyquantopian", + "voltrondata" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 124, + "_pop_updated_since_days": 41, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 2.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 1860, + "_pop_score": 41.24, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/blaze/blaze/master/README.rst", "_readme_localurl": "blaze~blaze~README.rst", @@ -15507,50 +23240,6 @@ "blaze~blaze~setup.py" ] }, - { - "index": 35, - "category": "data", - "githuburl": "https://github.com/jmcnamara/xlsxwriter", - "featured": null, - "links": null, - "description": null, - "_repopath": "jmcnamara/xlsxwriter", - "_reponame": "XlsxWriter", - "_stars": 3105, - "_forks": 590, - "_watches": 120, - "_topics": [ - "python", - "xlsx-files", - "libxlsxwriter", - "pandas", - "charts", - "spreadsheet", - "xlsx", - "xlsxwriter" - ], - "_language": "Python", - "_homepage": "https://xlsxwriter.readthedocs.io", - "_description": "XlsxWriter: A Python module for creating Excel XLSX files.", - "_organization": "jmcnamara", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-01T00:00:00.000Z", - "_created_at": "2013-01-04T00:00:00.000Z", - "_age_weeks": 517, - "_stars_per_week": 6.0, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/jmcnamara/xlsxwriter/master/README.rst", - "_readme_localurl": "jmcnamara~xlsxwriter~README.rst", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/jmcnamara/xlsxwriter/master/setup.py" - ], - "_requirements_localurls": [ - "jmcnamara~xlsxwriter~setup.py" - ] - }, { "index": 182, "category": "testing", @@ -15560,9 +23249,9 @@ "description": null, "_repopath": "tox-dev/tox", "_reponame": "tox", - "_stars": 3097, - "_forks": 443, - "_watches": 41, + "_stars": 3115, + "_forks": 452, + "_watches": 40, "_topics": [ "testing", "python", @@ -15582,11 +23271,34 @@ "_homepage": "https://tox.wiki", "_description": "tox: Command line driven CI frontend and development task automation tool.", "_organization": "tox-dev", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2016-09-17T00:00:00.000Z", - "_age_weeks": 324, - "_stars_per_week": 9.54, + "_age_weeks": 326, + "_stars_per_week": 9.55, + "_pop_contributor_count": 26, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bloomberglp", + "canonical", + "redhatansible" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.0, + "_pop_updated_issues_count": 283, + "_pop_closed_issues_count": 229, + "_pop_created_since_days": 76, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 26, + "_pop_recent_releases_estimated_tags": 25, + "_pop_recent_releases_adjusted_count": 26, + "_pop_issue_count": 284.0, + "_pop_comment_count": 495.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 6182, + "_pop_score": 62.33, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tox-dev/tox/master/README.md", "_readme_localurl": "tox-dev~tox~README.md", @@ -15603,6 +23315,71 @@ "tox-dev~tox~pyproject.toml" ] }, + { + "index": 35, + "category": "data", + "githuburl": "https://github.com/jmcnamara/xlsxwriter", + "featured": null, + "links": null, + "description": null, + "_repopath": "jmcnamara/xlsxwriter", + "_reponame": "XlsxWriter", + "_stars": 3115, + "_forks": 592, + "_watches": 121, + "_topics": [ + "python", + "xlsx-files", + "libxlsxwriter", + "pandas", + "charts", + "spreadsheet", + "xlsx", + "xlsxwriter" + ], + "_language": "Python", + "_homepage": "https://xlsxwriter.readthedocs.io", + "_description": "XlsxWriter: A Python module for creating Excel XLSX files.", + "_organization": "jmcnamara", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_created_at": "2013-01-04T00:00:00.000Z", + "_age_weeks": 519, + "_stars_per_week": 6.0, + "_pop_contributor_count": 47, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "crunch.io" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.79, + "_pop_updated_issues_count": 32, + "_pop_closed_issues_count": 23, + "_pop_created_since_days": 121, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 32.0, + "_pop_comment_count": 87.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 362, + "_pop_score": 52.53, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/jmcnamara/xlsxwriter/master/README.rst", + "_readme_localurl": "jmcnamara~xlsxwriter~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/jmcnamara/xlsxwriter/master/setup.py" + ], + "_requirements_localurls": [ + "jmcnamara~xlsxwriter~setup.py" + ] + }, { "index": 518, "category": "util", @@ -15612,9 +23389,9 @@ "description": null, "_repopath": "spack/spack", "_reponame": "spack", - "_stars": 3089, - "_forks": 1787, - "_watches": 104, + "_stars": 3102, + "_forks": 1796, + "_watches": 105, "_topics": [ "python", "spack", @@ -15630,11 +23407,34 @@ "_homepage": "https://spack.io", "_description": "spack: A flexible package manager that supports multiple versions, configurations, platforms, and compilers.", "_organization": "spack", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2014-01-08T00:00:00.000Z", - "_age_weeks": 465, - "_stars_per_week": 6.64, + "_age_weeks": 466, + "_stars_per_week": 6.65, + "_pop_contributor_count": 1314, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "llnl", + "np-complete", + "universityofillinoisaturbana-champaign" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 84.79, + "_pop_updated_issues_count": 2517, + "_pop_closed_issues_count": 1844, + "_pop_created_since_days": 109, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 2515.0, + "_pop_comment_count": 5597.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 1578, + "_pop_score": 77.97, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/spack/spack/master/README.md", "_readme_localurl": "spack~spack~README.md", @@ -15657,19 +23457,42 @@ "description": null, "_repopath": "shapely/shapely", "_reponame": "shapely", - "_stars": 3080, - "_forks": 497, + "_stars": 3100, + "_forks": 501, "_watches": 82, "_topics": [], "_language": "Python", "_homepage": "https://shapely.readthedocs.io/en/stable/", "_description": "shapely: Manipulation and analysis of geometric objects", "_organization": "shapely", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2011-12-31T00:00:00.000Z", - "_age_weeks": 570, - "_stars_per_week": 5.4, + "_age_weeks": 572, + "_stars_per_week": 5.42, + "_pop_contributor_count": 140, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "gnsscience", + "nelen&schuurmans", + "planetlabs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.21, + "_pop_updated_issues_count": 221, + "_pop_closed_issues_count": 143, + "_pop_created_since_days": 134, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 221.0, + "_pop_comment_count": 488.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 135, + "_pop_score": 60.43, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/shapely/shapely/master/README.rst", "_readme_localurl": "shapely~shapely~README.rst", @@ -15695,19 +23518,41 @@ "description": null, "_repopath": "andialbrecht/sqlparse", "_reponame": "sqlparse", - "_stars": 3077, - "_forks": 612, + "_stars": 3091, + "_forks": 613, "_watches": 93, "_topics": [], "_language": "Python", "_homepage": "", "_description": "sqlparse: A non-validating SQL parser module for Python", "_organization": "andialbrecht", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-09-23T00:00:00.000Z", "_created_at": "2012-04-18T00:00:00.000Z", - "_age_weeks": 555, - "_stars_per_week": 5.54, + "_age_weeks": 556, + "_stars_per_week": 5.55, + "_pop_contributor_count": 100, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "dyte-in,mafalda-sfu", + "pioneervalleybooks" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.46, + "_pop_updated_issues_count": 27, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 130, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 27.0, + "_pop_comment_count": 36.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 2598, + "_pop_score": 50.67, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/andialbrecht/sqlparse/master/README.rst", "_readme_localurl": "andialbrecht~sqlparse~README.rst", @@ -15730,7 +23575,7 @@ "description": null, "_repopath": "python-markdown/markdown", "_reponame": "markdown", - "_stars": 3071, + "_stars": 3079, "_forks": 789, "_watches": 76, "_topics": [ @@ -15745,11 +23590,33 @@ "_homepage": "https://python-markdown.github.io/", "_description": "markdown: A Python implementation of John Gruber\u2019s Markdown with Extension support.", "_organization": "python-markdown", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-09T00:00:00.000Z", "_created_at": "2010-05-29T00:00:00.000Z", - "_age_weeks": 653, + "_age_weeks": 655, "_stars_per_week": 4.7, + "_pop_contributor_count": 164, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "rangle.io", + "theinterfacefinancialgroup" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.62, + "_pop_updated_issues_count": 25, + "_pop_closed_issues_count": 19, + "_pop_created_since_days": 153, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 25.0, + "_pop_comment_count": 100.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 4.0, + "_pop_dependents_count": 1745, + "_pop_score": 59.49, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/python-markdown/markdown/master/README.md", "_readme_localurl": "python-markdown~markdown~README.md", @@ -15775,8 +23642,8 @@ "description": null, "_repopath": "minimaxir/gpt-2-simple", "_reponame": "gpt-2-simple", - "_stars": 3061, - "_forks": 631, + "_stars": 3070, + "_forks": 633, "_watches": 74, "_topics": [ "text-generation", @@ -15788,11 +23655,33 @@ "_homepage": "", "_description": "gpt-2-simple: Python package to easily retrain OpenAI's GPT-2 text-generating model on new texts", "_organization": "minimaxir", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-05-22T00:00:00.000Z", "_created_at": "2019-04-13T00:00:00.000Z", - "_age_weeks": 190, - "_stars_per_week": 16.06, + "_age_weeks": 192, + "_stars_per_week": 15.97, + "_pop_contributor_count": 21, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "buzzfeed", + "universityofnotredame" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.06, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 45, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 9.0, + "_pop_comment_count": 7.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 26.56, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/minimaxir/gpt-2-simple/master/README.md", "_readme_localurl": "minimaxir~gpt-2-simple~README.md", @@ -15818,8 +23707,8 @@ "description": null, "_repopath": "kubeflow/pipelines", "_reponame": "pipelines", - "_stars": 3054, - "_forks": 1348, + "_stars": 3069, + "_forks": 1358, "_watches": 103, "_topics": [ "kubeflow-pipelines", @@ -15834,11 +23723,32 @@ "_homepage": "https://www.kubeflow.org/docs/components/pipelines/", "_description": "pipelines: Machine Learning Pipelines for Kubeflow", "_organization": "kubeflow", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2018-05-12T00:00:00.000Z", - "_age_weeks": 238, - "_stars_per_week": 12.8, + "_age_weeks": 240, + "_stars_per_week": 12.77, + "_pop_contributor_count": 350, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 14.87, + "_pop_updated_issues_count": 577, + "_pop_closed_issues_count": 245, + "_pop_created_since_days": 56, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 30, + "_pop_recent_releases_estimated_tags": 28, + "_pop_recent_releases_adjusted_count": 30, + "_pop_issue_count": 577.0, + "_pop_comment_count": 1161.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 3456, + "_pop_score": 67.57, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/kubeflow/pipelines/master/README.md", "_readme_localurl": "kubeflow~pipelines~README.md", @@ -15861,8 +23771,8 @@ "description": null, "_repopath": "neuml/txtai", "_reponame": "txtai", - "_stars": 3029, - "_forks": 270, + "_stars": 3059, + "_forks": 273, "_watches": 54, "_topics": [ "python", @@ -15890,11 +23800,33 @@ "_homepage": "https://neuml.github.io/txtai", "_description": "txtai: \ud83d\udca1 Build AI-powered semantic search applications ", "_organization": "neuml", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2020-08-09T00:00:00.000Z", - "_age_weeks": 121, - "_stars_per_week": 24.94, + "_age_weeks": 123, + "_stars_per_week": 24.84, + "_pop_contributor_count": 8, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bigtincan", + "neuml" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.63, + "_pop_updated_issues_count": 68, + "_pop_closed_issues_count": 57, + "_pop_created_since_days": 29, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 68.0, + "_pop_comment_count": 99.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 3, + "_pop_score": 40.01, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/neuml/txtai/master/README.md", "_readme_localurl": "neuml~txtai~README.md", @@ -15920,9 +23852,9 @@ "description": null, "_repopath": "pair-code/lit", "_reponame": "lit", - "_stars": 3023, - "_forks": 318, - "_watches": 72, + "_stars": 3043, + "_forks": 322, + "_watches": 71, "_topics": [ "machine-learning", "natural-language-processing", @@ -15930,13 +23862,35 @@ ], "_language": "TypeScript", "_homepage": "https://pair-code.github.io/lit", - "_description": "lit: The Language Interpretability Tool: Interactively analyze NLP models for model understanding in an extensible and framework agnostic interface.", + "_description": "lit: The Learning Interpretability Tool: Interactively analyze ML models to understand their behavior in an extensible and framework agnostic interface.", "_organization": "pair-code", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-12-02T00:00:00.000Z", "_created_at": "2020-07-28T00:00:00.000Z", - "_age_weeks": 123, - "_stars_per_week": 24.55, + "_age_weeks": 124, + "_stars_per_week": 24.37, + "_pop_contributor_count": 27, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "deepmind", + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.96, + "_pop_updated_issues_count": 168, + "_pop_closed_issues_count": 154, + "_pop_created_since_days": 29, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 168.0, + "_pop_comment_count": 33.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 6, + "_pop_score": 38.02, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pair-code/lit/master/README.md", "_readme_localurl": "pair-code~lit~README.md", @@ -15953,40 +23907,57 @@ "description": null, "_repopath": "seleniumbase/seleniumbase", "_reponame": "SeleniumBase", - "_stars": 3012, - "_forks": 724, + "_stars": 3027, + "_forks": 726, "_watches": 119, "_topics": [ "python", "selenium", "webdriver", "selenium-python", - "testing", - "rpa", "e2e-testing", "seleniumbase", - "awesome-list", "pytest-plugin", "web-automation", "pytest", "behave", - "testing-tools", "chrome", - "firefox", - "recorder", "webkit", - "webautomation", - "chromedriver" + "chromedriver", + "firefox", + "test" ], "_language": "Python", "_homepage": "https://seleniumbase.io", - "_description": "SeleniumBase: Python framework for web automation and testing. Includes a dashboard and a test-generating recorder.", + "_description": "SeleniumBase: Python framework for web automation and testing that extends Selenium.", "_organization": "seleniumbase", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2014-03-04T00:00:00.000Z", - "_age_weeks": 457, - "_stars_per_week": 6.59, + "_age_weeks": 458, + "_stars_per_week": 6.6, + "_pop_contributor_count": 35, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "https://www.iboss.com/", + "nausetconsulting" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 24.38, + "_pop_updated_issues_count": 108, + "_pop_closed_issues_count": 105, + "_pop_created_since_days": 107, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 152, + "_pop_recent_releases_estimated_tags": 86, + "_pop_recent_releases_adjusted_count": 152, + "_pop_issue_count": 108.0, + "_pop_comment_count": 127.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 318, + "_pop_score": 58.31, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/seleniumbase/seleniumbase/master/README.md", "_readme_localurl": "seleniumbase~seleniumbase~README.md", @@ -16012,7 +23983,7 @@ "description": null, "_repopath": "life4/textdistance", "_reponame": "textdistance", - "_stars": 3004, + "_stars": 3015, "_forks": 240, "_watches": 61, "_topics": [ @@ -16034,11 +24005,34 @@ "_homepage": "", "_description": "textdistance: Compute distance between sequences. 30+ algorithms, pure python implementation, common interface, optional external libs usage.", "_organization": "life4", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-09-18T00:00:00.000Z", "_created_at": "2017-05-05T00:00:00.000Z", - "_age_weeks": 291, - "_stars_per_week": 10.3, + "_age_weeks": 293, + "_stars_per_week": 10.28, + "_pop_contributor_count": 13, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "archlinux", + "sendcloud", + "universityofcambridge" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.79, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 68, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 73, + "_pop_score": 32.26, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/life4/textdistance/master/README.md", "_readme_localurl": "life4~textdistance~README.md", @@ -16055,6 +24049,70 @@ "life4~textdistance~pyproject.toml" ] }, + { + "index": 336, + "category": "ml", + "githuburl": "https://github.com/apple/coremltools", + "featured": null, + "links": null, + "description": null, + "_repopath": "apple/coremltools", + "_reponame": "coremltools", + "_stars": 2999, + "_forks": 481, + "_watches": 110, + "_topics": [ + "coremltools", + "tensorflow", + "pytorch", + "coreml", + "machine-learning", + "model-converter", + "model-conversion" + ], + "_language": "Python", + "_homepage": "https://coremltools.readme.io", + "_description": "coremltools: Core ML tools contain supporting tools for Core ML model conversion, editing, and validation.", + "_organization": "apple", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2017-06-30T00:00:00.000Z", + "_age_weeks": 285, + "_stars_per_week": 10.51, + "_pop_contributor_count": 143, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "apple" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.0, + "_pop_updated_issues_count": 312, + "_pop_closed_issues_count": 236, + "_pop_created_since_days": 67, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 312.0, + "_pop_comment_count": 465.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 49, + "_pop_score": 51.2, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/apple/coremltools/master/README.md", + "_readme_localurl": "apple~coremltools~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/apple/coremltools/master/setup.py" + ], + "_requirements_localurls": [ + "apple~coremltools~setup.py" + ] + }, { "index": 698, "category": "util", @@ -16064,8 +24122,8 @@ "description": null, "_repopath": "joblib/joblib", "_reponame": "joblib", - "_stars": 2984, - "_forks": 356, + "_stars": 2994, + "_forks": 357, "_watches": 63, "_topics": [ "python", @@ -16079,11 +24137,33 @@ "_homepage": "http://joblib.readthedocs.org", "_description": "joblib: Computing with Python functions.", "_organization": "joblib", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-11-25T00:00:00.000Z", "_created_at": "2010-05-07T00:00:00.000Z", - "_age_weeks": 656, - "_stars_per_week": 4.54, + "_age_weeks": 658, + "_stars_per_week": 4.55, + "_pop_contributor_count": 113, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "inria", + "inriasaclay-parietalteam" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.9, + "_pop_updated_issues_count": 50, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 154, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 50.0, + "_pop_comment_count": 81.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 1999, + "_pop_score": 55.64, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/joblib/joblib/master/README.rst", "_readme_localurl": "joblib~joblib~README.rst", @@ -16098,46 +24178,75 @@ ] }, { - "index": 336, - "category": "ml", - "githuburl": "https://github.com/apple/coremltools", + "index": 348, + "category": "ml-ops", + "githuburl": "https://github.com/evidentlyai/evidently", "featured": null, "links": null, "description": null, - "_repopath": "apple/coremltools", - "_reponame": "coremltools", - "_stars": 2981, - "_forks": 476, - "_watches": 109, + "_repopath": "evidentlyai/evidently", + "_reponame": "evidently", + "_stars": 2986, + "_forks": 325, + "_watches": 32, "_topics": [ - "coremltools", - "tensorflow", - "pytorch", - "coreml", + "data-drift", + "jupyter-notebook", + "pandas-dataframe", "machine-learning", - "model-converter", - "model-conversion" + "model-monitoring", + "html-report", + "production-machine-learning", + "machine-learning-operations", + "mlops", + "data-science", + "hacktoberfest" ], "_language": "Python", - "_homepage": "https://coremltools.readme.io", - "_description": "coremltools: Core ML tools contain supporting tools for Core ML model conversion, editing, and validation.", - "_organization": "apple", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2017-06-30T00:00:00.000Z", - "_age_weeks": 283, - "_stars_per_week": 10.51, + "_homepage": "", + "_description": "evidently: Evaluate and monitor ML models from validation to production. Join our Discord: https://discord.com/invite/xZjKRaNp8b", + "_organization": "evidentlyai", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_created_at": "2020-11-25T00:00:00.000Z", + "_age_weeks": 107, + "_stars_per_week": 27.72, + "_pop_contributor_count": 31, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "evidentlyai", + "intento,evidentlyai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 20.81, + "_pop_updated_issues_count": 186, + "_pop_closed_issues_count": 152, + "_pop_created_since_days": 25, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 24, + "_pop_recent_releases_estimated_tags": 19, + "_pop_recent_releases_adjusted_count": 24, + "_pop_issue_count": 186.0, + "_pop_comment_count": 203.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 16, + "_pop_score": 49.27, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/apple/coremltools/master/README.md", - "_readme_localurl": "apple~coremltools~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/evidentlyai/evidently/master/README.md", + "_readme_localurl": "evidentlyai~evidently~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/apple/coremltools/master/setup.py" + "https://raw.githubusercontent.com/evidentlyai/evidently/master/requirements.txt", + "https://raw.githubusercontent.com/evidentlyai/evidently/master/setup.py" ], "_requirements_localurls": [ - "apple~coremltools~setup.py" + "evidentlyai~evidently~requirements.txt", + "evidentlyai~evidently~setup.py" ] }, { @@ -16149,9 +24258,9 @@ "description": null, "_repopath": "vispy/vispy", "_reponame": "vispy", - "_stars": 2979, + "_stars": 2985, "_forks": 604, - "_watches": 122, + "_watches": 121, "_topics": [ "hacktoberfest", "python", @@ -16163,11 +24272,35 @@ "_homepage": "http://vispy.org", "_description": "vispy: Main repository for Vispy", "_organization": "vispy", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-14T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2013-03-21T00:00:00.000Z", - "_age_weeks": 506, - "_stars_per_week": 5.88, + "_age_weeks": 508, + "_stars_per_week": 5.87, + "_pop_contributor_count": 182, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "independentsoftwareengineer", + "spacescienceandengineeringcenter(ssec)", + "universityofedinburgh", + "universityofwashington" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.31, + "_pop_updated_issues_count": 79, + "_pop_closed_issues_count": 47, + "_pop_created_since_days": 119, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 79.0, + "_pop_comment_count": 326.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 4.1, + "_pop_dependents_count": 125, + "_pop_score": 61.28, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/vispy/vispy/master/README.rst", "_readme_localurl": "vispy~vispy~README.rst", @@ -16184,51 +24317,6 @@ "vispy~vispy~pyproject.toml" ] }, - { - "index": 272, - "category": "data", - "githuburl": "https://github.com/praw-dev/praw", - "featured": null, - "links": null, - "description": null, - "_repopath": "praw-dev/praw", - "_reponame": "praw", - "_stars": 2956, - "_forks": 449, - "_watches": 72, - "_topics": [ - "python", - "reddit", - "api", - "oauth", - "praw", - "reddit-api" - ], - "_language": "Python", - "_homepage": "http://praw.readthedocs.io/", - "_description": "PRAW, an acronym for \"Python Reddit API Wrapper\", is a python package that allows for simple access to Reddit's API.", - "_organization": "praw-dev", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2010-08-19T00:00:00.000Z", - "_age_weeks": 641, - "_stars_per_week": 4.61, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/praw-dev/praw/master/README.rst", - "_readme_localurl": "praw-dev~praw~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/praw-dev/praw/master/setup.py", - "https://raw.githubusercontent.com/praw-dev/praw/master/pyproject.toml" - ], - "_requirements_localurls": [ - "praw-dev~praw~setup.py", - "praw-dev~praw~pyproject.toml" - ] - }, { "index": 285, "category": "crypto", @@ -16238,19 +24326,41 @@ "description": null, "_repopath": "ethereum/consensus-specs", "_reponame": "consensus-specs", - "_stars": 2952, - "_forks": 740, - "_watches": 245, + "_stars": 2973, + "_forks": 749, + "_watches": 246, "_topics": [], "_language": "Python", "_homepage": "", "_description": "consensus-specs: Ethereum Proof-of-Stake Consensus Specifications", "_organization": "ethereum", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2018-09-20T00:00:00.000Z", - "_age_weeks": 219, - "_stars_per_week": 13.43, + "_age_weeks": 221, + "_stars_per_week": 13.42, + "_pop_contributor_count": 128, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ctrl^t", + "oplabs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 9.48, + "_pop_updated_issues_count": 169, + "_pop_closed_issues_count": 126, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 16, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 169.0, + "_pop_comment_count": 335.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 146, + "_pop_score": 57.49, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ethereum/consensus-specs/master/README.md", "_readme_localurl": "ethereum~consensus-specs~README.md", @@ -16273,9 +24383,9 @@ "description": null, "_repopath": "jupyterlite/jupyterlite", "_reponame": "jupyterlite", - "_stars": 2932, - "_forks": 177, - "_watches": 43, + "_stars": 2973, + "_forks": 186, + "_watches": 44, "_topics": [ "jupyter", "jupyterlab", @@ -16289,11 +24399,32 @@ "_homepage": "https://jupyterlite.rtfd.io/en/latest/try/lab", "_description": "jupyterlite: Wasm powered Jupyter running in the browser \ud83d\udca1", "_organization": "jupyterlite", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2021-03-27T00:00:00.000Z", - "_age_weeks": 88, - "_stars_per_week": 33.1, + "_age_weeks": 90, + "_stars_per_week": 32.93, + "_pop_contributor_count": 41, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "quantstack" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 15.35, + "_pop_updated_issues_count": 137, + "_pop_closed_issues_count": 71, + "_pop_created_since_days": 21, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 22, + "_pop_recent_releases_estimated_tags": 458, + "_pop_recent_releases_adjusted_count": 22, + "_pop_issue_count": 137.0, + "_pop_comment_count": 330.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 25, + "_pop_score": 49.05, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jupyterlite/jupyterlite/master/README.md", "_readme_localurl": "jupyterlite~jupyterlite~README.md", @@ -16308,130 +24439,150 @@ ] }, { - "index": 623, - "category": "util", - "githuburl": "https://github.com/suor/funcy", + "index": 272, + "category": "data", + "githuburl": "https://github.com/praw-dev/praw", "featured": null, "links": null, "description": null, - "_repopath": "suor/funcy", - "_reponame": "funcy", - "_stars": 2919, - "_forks": 133, - "_watches": 73, + "_repopath": "praw-dev/praw", + "_reponame": "praw", + "_stars": 2962, + "_forks": 449, + "_watches": 72, "_topics": [ - "functional-programming", - "utilities", - "python" - ], - "_language": "Python", - "_homepage": "", - "_description": "funcy: A fancy and practical functional tools", - "_organization": "suor", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-08-25T00:00:00.000Z", - "_created_at": "2012-10-13T00:00:00.000Z", - "_age_weeks": 529, - "_stars_per_week": 5.51, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/suor/funcy/master/README.rst", - "_readme_localurl": "suor~funcy~README.rst", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/suor/funcy/master/setup.py" + "python", + "reddit", + "api", + "oauth", + "praw", + "reddit-api" ], - "_requirements_localurls": [ - "suor~funcy~setup.py" - ] - }, - { - "index": 77, - "category": "jupyter", - "githuburl": "https://github.com/quantopian/qgrid", - "featured": null, - "links": null, - "description": null, - "_repopath": "quantopian/qgrid", - "_reponame": "qgrid", - "_stars": 2915, - "_forks": 416, - "_watches": 89, - "_topics": [], "_language": "Python", - "_homepage": "", - "_description": "qgrid: An interactive grid for sorting, filtering, and editing DataFrames in Jupyter notebooks", - "_organization": "quantopian", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2020-04-07T00:00:00.000Z", - "_created_at": "2014-09-30T00:00:00.000Z", - "_age_weeks": 427, - "_stars_per_week": 6.82, + "_homepage": "http://praw.readthedocs.io/", + "_description": "PRAW, an acronym for \"Python Reddit API Wrapper\", is a python package that allows for simple access to Reddit's API.", + "_organization": "praw-dev", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-09T00:00:00.000Z", + "_created_at": "2010-08-19T00:00:00.000Z", + "_age_weeks": 643, + "_stars_per_week": 4.6, + "_pop_contributor_count": 220, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "appfolio", + "billy", + "indeed", + "netflix" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.02, + "_pop_updated_issues_count": 30, + "_pop_closed_issues_count": 24, + "_pop_created_since_days": 150, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 30.0, + "_pop_comment_count": 62.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 541, + "_pop_score": 59.97, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/quantopian/qgrid/master/README.rst", - "_readme_localurl": "quantopian~qgrid~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/praw-dev/praw/master/README.rst", + "_readme_localurl": "praw-dev~praw~README.rst", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/quantopian/qgrid/master/requirements.txt", - "https://raw.githubusercontent.com/quantopian/qgrid/master/setup.py" + "https://raw.githubusercontent.com/praw-dev/praw/master/setup.py", + "https://raw.githubusercontent.com/praw-dev/praw/master/pyproject.toml" ], "_requirements_localurls": [ - "quantopian~qgrid~requirements.txt", - "quantopian~qgrid~setup.py" + "praw-dev~praw~setup.py", + "praw-dev~praw~pyproject.toml" ] }, { - "index": 348, + "index": 715, "category": "ml-ops", - "githuburl": "https://github.com/evidentlyai/evidently", + "githuburl": "https://github.com/flyteorg/flyte", "featured": null, "links": null, "description": null, - "_repopath": "evidentlyai/evidently", - "_reponame": "evidently", - "_stars": 2913, - "_forks": 317, - "_watches": 32, + "_repopath": "flyteorg/flyte", + "_reponame": "flyte", + "_stars": 2930, + "_forks": 305, + "_watches": 266, "_topics": [ - "data-drift", - "jupyter-notebook", - "pandas-dataframe", + "flyte", "machine-learning", - "model-monitoring", - "html-report", - "production-machine-learning", - "machine-learning-operations", - "mlops", + "golang", + "scale", + "workflow", "data-science", + "data-analysis", + "data", + "kubernetes-operator", + "kubernetes", + "orchestration-engine", + "mlops", + "dataops", + "grpc", + "python", + "battle-tested", + "production", + "production-grade", + "declarative", "hacktoberfest" ], "_language": "Python", - "_homepage": "", - "_description": "evidently: Evaluate and monitor ML models from validation to production. Join our Discord: https://discord.com/invite/xZjKRaNp8b", - "_organization": "evidentlyai", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2020-11-25T00:00:00.000Z", - "_age_weeks": 106, - "_stars_per_week": 27.48, + "_homepage": "https://flyte.org", + "_description": "flyte: Kubernetes-native workflow automation platform for complex, mission-critical data and ML processes at scale. It has been battle-tested at Lyft, Spotify, Freenome, and others and is truly open-source.", + "_organization": "flyteorg", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2019-10-21T00:00:00.000Z", + "_age_weeks": 165, + "_stars_per_week": 17.76, + "_pop_contributor_count": 110, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "flyteorg", + "unionai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.98, + "_pop_updated_issues_count": 375, + "_pop_closed_issues_count": 172, + "_pop_created_since_days": 38, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 31, + "_pop_recent_releases_estimated_tags": 25, + "_pop_recent_releases_adjusted_count": 31, + "_pop_issue_count": 376.0, + "_pop_comment_count": 569.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 31, + "_pop_score": 54.34, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/evidentlyai/evidently/master/README.md", - "_readme_localurl": "evidentlyai~evidently~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/flyteorg/flyte/master/README.md", + "_readme_localurl": "flyteorg~flyte~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/evidentlyai/evidently/master/requirements.txt", - "https://raw.githubusercontent.com/evidentlyai/evidently/master/setup.py" + "https://raw.githubusercontent.com/flyteorg/flyte/master/requirements.txt" ], "_requirements_localurls": [ - "evidentlyai~evidently~requirements.txt", - "evidentlyai~evidently~setup.py" + "flyteorg~flyte~requirements.txt" ] }, { @@ -16443,8 +24594,8 @@ "description": null, "_repopath": "aimhubio/aim", "_reponame": "aim", - "_stars": 2903, - "_forks": 178, + "_stars": 2926, + "_forks": 183, "_watches": 35, "_topics": [ "python", @@ -16467,11 +24618,34 @@ "_homepage": "https://aimstack.io", "_description": "Aim \ud83d\udcab \u2014 easy-to-use and performant open-source ML experiment tracker.", "_organization": "aimhubio", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2019-05-31T00:00:00.000Z", - "_age_weeks": 183, - "_stars_per_week": 15.8, + "_age_weeks": 185, + "_stars_per_week": 15.78, + "_pop_contributor_count": 48, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "aimhub", + "aimhubio", + "aimstack" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 13.19, + "_pop_updated_issues_count": 332, + "_pop_closed_issues_count": 236, + "_pop_created_since_days": 43, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 45, + "_pop_recent_releases_estimated_tags": 42, + "_pop_recent_releases_adjusted_count": 45, + "_pop_issue_count": 332.0, + "_pop_comment_count": 521.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 33, + "_pop_score": 55.4, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/aimhubio/aim/master/README.md", "_readme_localurl": "aimhubio~aim~README.md", @@ -16492,59 +24666,181 @@ ] }, { - "index": 715, - "category": "ml-ops", - "githuburl": "https://github.com/flyteorg/flyte", + "index": 623, + "category": "util", + "githuburl": "https://github.com/suor/funcy", "featured": null, "links": null, "description": null, - "_repopath": "flyteorg/flyte", - "_reponame": "flyte", - "_stars": 2896, - "_forks": 304, - "_watches": 266, + "_repopath": "suor/funcy", + "_reponame": "funcy", + "_stars": 2923, + "_forks": 133, + "_watches": 73, "_topics": [ - "flyte", - "machine-learning", - "golang", - "scale", - "workflow", - "data-science", - "data-analysis", - "data", - "kubernetes-operator", - "kubernetes", - "orchestration-engine", - "mlops", - "dataops", - "grpc", - "python", - "battle-tested", - "production", - "production-grade", - "declarative", - "hacktoberfest" + "functional-programming", + "utilities", + "python" ], "_language": "Python", - "_homepage": "https://flyte.org", - "_description": "flyte: Kubernetes-native workflow automation platform for complex, mission-critical data and ML processes at scale. It has been battle-tested at Lyft, Spotify, Freenome, and others and is truly open-source.", - "_organization": "flyteorg", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2019-10-21T00:00:00.000Z", - "_age_weeks": 163, - "_stars_per_week": 17.74, + "_homepage": "", + "_description": "funcy: A fancy and practical functional tools", + "_organization": "suor", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-08-25T00:00:00.000Z", + "_created_at": "2012-10-13T00:00:00.000Z", + "_age_weeks": 531, + "_stars_per_week": 5.5, + "_pop_contributor_count": 31, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "festicket", + "iress", + "obsidian-security" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.12, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 124, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 2.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 110, + "_pop_score": 39.73, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/suor/funcy/master/README.rst", + "_readme_localurl": "suor~funcy~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/suor/funcy/master/setup.py" + ], + "_requirements_localurls": [ + "suor~funcy~setup.py" + ] + }, + { + "index": 77, + "category": "jupyter", + "githuburl": "https://github.com/quantopian/qgrid", + "featured": null, + "links": null, + "description": null, + "_repopath": "quantopian/qgrid", + "_reponame": "qgrid", + "_stars": 2921, + "_forks": 418, + "_watches": 90, + "_topics": [], + "_language": "Python", + "_homepage": "", + "_description": "qgrid: An interactive grid for sorting, filtering, and editing DataFrames in Jupyter notebooks", + "_organization": "quantopian", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2020-04-07T00:00:00.000Z", + "_created_at": "2014-09-30T00:00:00.000Z", + "_age_weeks": 428, + "_stars_per_week": 6.81, + "_pop_contributor_count": 30, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "mongodb", + "sundellopensourceconsultingab" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 100, + "_pop_updated_since_days": 33, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 3.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 18, + "_pop_score": 28.51, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/quantopian/qgrid/master/README.rst", + "_readme_localurl": "quantopian~qgrid~README.rst", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/quantopian/qgrid/master/requirements.txt", + "https://raw.githubusercontent.com/quantopian/qgrid/master/setup.py" + ], + "_requirements_localurls": [ + "quantopian~qgrid~requirements.txt", + "quantopian~qgrid~setup.py" + ] + }, + { + "index": 390, + "category": "diffusion", + "githuburl": "https://github.com/openai/glide-text2im", + "featured": null, + "links": null, + "description": null, + "_repopath": "openai/glide-text2im", + "_reponame": "glide-text2im", + "_stars": 2908, + "_forks": 408, + "_watches": 119, + "_topics": [], + "_language": "Python", + "_homepage": "", + "_description": "glide-text2im: GLIDE: a diffusion-based text-conditional image synthesis model", + "_organization": "openai", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-03-21T00:00:00.000Z", + "_created_at": "2021-12-10T00:00:00.000Z", + "_age_weeks": 53, + "_stars_per_week": 54.43, + "_pop_contributor_count": 4, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "texasa&mcenterforappliedtechnology" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 12, + "_pop_updated_since_days": 9, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 9.04, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/flyteorg/flyte/master/README.md", - "_readme_localurl": "flyteorg~flyte~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/openai/glide-text2im/master/README.md", + "_readme_localurl": "openai~glide-text2im~README.md", "_requirements_filenames": [ - "requirements.txt" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/flyteorg/flyte/master/requirements.txt" + "https://raw.githubusercontent.com/openai/glide-text2im/master/setup.py" ], "_requirements_localurls": [ - "flyteorg~flyte~requirements.txt" + "openai~glide-text2im~setup.py" ] }, { @@ -16556,7 +24852,7 @@ "description": null, "_repopath": "pyeve/cerberus", "_reponame": "cerberus", - "_stars": 2884, + "_stars": 2890, "_forks": 226, "_watches": 48, "_topics": [ @@ -16567,11 +24863,32 @@ "_homepage": "http://python-cerberus.org", "_description": "cerberus: Lightweight, extensible data validation library for Python", "_organization": "pyeve", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2021-05-05T00:00:00.000Z", "_created_at": "2012-10-10T00:00:00.000Z", - "_age_weeks": 530, + "_age_weeks": 531, "_stars_per_week": 5.44, + "_pop_contributor_count": 62, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cir2000" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 124, + "_pop_updated_since_days": 20, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 9.0, + "_pop_comment_count": 9.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 144, + "_pop_score": 35.67, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pyeve/cerberus/master/README.rst", "_readme_localurl": "pyeve~cerberus~README.rst", @@ -16597,9 +24914,9 @@ "description": null, "_repopath": "holoviz/datashader", "_reponame": "datashader", - "_stars": 2882, - "_forks": 360, - "_watches": 94, + "_stars": 2887, + "_forks": 361, + "_watches": 95, "_topics": [ "holoviz", "datashader", @@ -16610,11 +24927,34 @@ "_homepage": "http://datashader.org", "_description": "datashader: Quickly and accurately render even the largest data.", "_organization": "holoviz", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-17T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2015-12-23T00:00:00.000Z", - "_age_weeks": 363, - "_stars_per_week": 7.94, + "_age_weeks": 364, + "_stars_per_week": 7.92, + "_pop_contributor_count": 51, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "anaconda", + "stripe", + "voltrondata" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.56, + "_pop_updated_issues_count": 54, + "_pop_closed_issues_count": 41, + "_pop_created_since_days": 85, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 54.0, + "_pop_comment_count": 53.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 17, + "_pop_score": 46.59, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/holoviz/datashader/master/README.md", "_readme_localurl": "holoviz~datashader~README.md", @@ -16640,19 +24980,40 @@ "description": null, "_repopath": "pytorch/glow", "_reponame": "glow", - "_stars": 2880, - "_forks": 654, + "_stars": 2882, + "_forks": 655, "_watches": 154, "_topics": [], "_language": "C++", "_homepage": null, "_description": "glow: Compiler for Neural Network hardware accelerators", "_organization": "pytorch", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2017-09-29T00:00:00.000Z", - "_age_weeks": 270, - "_stars_per_week": 10.64, + "_age_weeks": 272, + "_stars_per_week": 10.58, + "_pop_contributor_count": 332, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebook" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.33, + "_pop_updated_issues_count": 52, + "_pop_closed_issues_count": 16, + "_pop_created_since_days": 64, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 52.0, + "_pop_comment_count": 95.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 3085, + "_pop_score": 55.66, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pytorch/glow/master/README.md", "_readme_localurl": "pytorch~glow~README.md", @@ -16660,41 +25021,6 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, - { - "index": 390, - "category": "diffusion", - "githuburl": "https://github.com/openai/glide-text2im", - "featured": null, - "links": null, - "description": null, - "_repopath": "openai/glide-text2im", - "_reponame": "glide-text2im", - "_stars": 2878, - "_forks": 401, - "_watches": 116, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "glide-text2im: GLIDE: a diffusion-based text-conditional image synthesis model", - "_organization": "openai", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-03-21T00:00:00.000Z", - "_created_at": "2021-12-10T00:00:00.000Z", - "_age_weeks": 51, - "_stars_per_week": 55.65, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/openai/glide-text2im/master/README.md", - "_readme_localurl": "openai~glide-text2im~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/openai/glide-text2im/master/setup.py" - ], - "_requirements_localurls": [ - "openai~glide-text2im~setup.py" - ] - }, { "index": 366, "category": "ml", @@ -16704,19 +25030,42 @@ "description": null, "_repopath": "facebookresearch/vissl", "_reponame": "vissl", - "_stars": 2866, - "_forks": 299, + "_stars": 2877, + "_forks": 300, "_watches": 53, "_topics": [], "_language": "Jupyter Notebook", "_homepage": "https://vissl.ai", "_description": "VISSL is FAIR's library of extensible, modular and scalable components for SOTA Self-Supervised Learning with images.", "_organization": "facebookresearch", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-10-12T00:00:00.000Z", "_created_at": "2020-04-09T00:00:00.000Z", - "_age_weeks": 138, - "_stars_per_week": 20.64, + "_age_weeks": 140, + "_stars_per_week": 20.47, + "_pop_contributor_count": 34, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "meta", + "mosaicml" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.92, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 33, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 9.0, + "_pop_comment_count": 9.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 429, + "_pop_score": 42.0, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/vissl/master/README.md", "_readme_localurl": "facebookresearch~vissl~README.md", @@ -16742,8 +25091,8 @@ "description": null, "_repopath": "ploomber/ploomber", "_reponame": "ploomber", - "_stars": 2856, - "_forks": 196, + "_stars": 2874, + "_forks": 199, "_watches": 27, "_topics": [ "workflow", @@ -16764,11 +25113,32 @@ "_homepage": "https://ploomber.io", "_description": "ploomber: The fastest \u26a1\ufe0f way to build data pipelines. Develop iteratively, deploy anywhere. \u2601\ufe0f", "_organization": "ploomber", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-22T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2020-01-20T00:00:00.000Z", - "_age_weeks": 150, - "_stars_per_week": 19.0, + "_age_weeks": 152, + "_stars_per_week": 18.91, + "_pop_contributor_count": 70, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ploomber" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 13.5, + "_pop_updated_issues_count": 68, + "_pop_closed_issues_count": 42, + "_pop_created_since_days": 35, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 36, + "_pop_recent_releases_adjusted_count": 36, + "_pop_issue_count": 68.0, + "_pop_comment_count": 95.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 15, + "_pop_score": 48.61, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ploomber/ploomber/master/README.md", "_readme_localurl": "ploomber~ploomber~README.md", @@ -16785,6 +25155,59 @@ "ploomber~ploomber~pyproject.toml" ] }, + { + "index": 765, + "category": "diffusion", + "githuburl": "https://github.com/lkwq007/stablediffusion-infinity", + "featured": null, + "links": null, + "description": null, + "_repopath": "lkwq007/stablediffusion-infinity", + "_reponame": "stablediffusion-infinity", + "_stars": 2832, + "_forks": 220, + "_watches": 29, + "_topics": [ + "outpainting", + "stablediffusion" + ], + "_language": "Python", + "_homepage": "", + "_description": "stablediffusion-infinity: Outpainting with Stable Diffusion on an infinite canvas", + "_organization": "lkwq007", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", + "_created_at": "2022-09-02T00:00:00.000Z", + "_age_weeks": 15, + "_stars_per_week": 183.56, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cuhk" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.29, + "_pop_updated_issues_count": 123, + "_pop_closed_issues_count": 65, + "_pop_created_since_days": 4, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 123.0, + "_pop_comment_count": 352.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.9, + "_pop_dependents_count": 10, + "_pop_score": 35.97, + "_readme_filename": "readme.md", + "_readme_giturl": "https://raw.githubusercontent.com/lkwq007/stablediffusion-infinity/master/readme.md", + "_readme_localurl": "lkwq007~stablediffusion-infinity~readme.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 624, "category": "util", @@ -16794,19 +25217,42 @@ "description": null, "_repopath": "more-itertools/more-itertools", "_reponame": "more-itertools", - "_stars": 2811, - "_forks": 220, - "_watches": 34, + "_stars": 2825, + "_forks": 221, + "_watches": 35, "_topics": [], "_language": "Python", "_homepage": "https://more-itertools.rtfd.io", "_description": "more-itertools: More routines for operating on iterables, beyond itertools", "_organization": "more-itertools", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-12-05T00:00:00.000Z", "_created_at": "2012-04-26T00:00:00.000Z", - "_age_weeks": 553, + "_age_weeks": 555, "_stars_per_week": 5.08, + "_pop_contributor_count": 92, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "mozilla", + "universityofoxford", + "wurlinc" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.31, + "_pop_updated_issues_count": 25, + "_pop_closed_issues_count": 22, + "_pop_created_since_days": 130, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 25.0, + "_pop_comment_count": 30.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 420, + "_pop_score": 53.58, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/more-itertools/more-itertools/master/README.rst", "_readme_localurl": "more-itertools~more-itertools~README.rst", @@ -16832,8 +25278,8 @@ "description": null, "_repopath": "qiskit/qiskit", "_reponame": "qiskit", - "_stars": 2805, - "_forks": 759, + "_stars": 2821, + "_forks": 756, "_watches": 97, "_topics": [ "qiskit", @@ -16845,11 +25291,32 @@ "_homepage": "https://qiskit.org", "_description": "Qiskit is an open-source SDK for working with quantum computers at the level of circuits, algorithms, and application modules.", "_organization": "qiskit", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2018-12-12T00:00:00.000Z", - "_age_weeks": 208, - "_stars_per_week": 13.49, + "_age_weeks": 209, + "_stars_per_week": 13.45, + "_pop_contributor_count": 155, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ibm" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.4, + "_pop_updated_issues_count": 49, + "_pop_closed_issues_count": 37, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 16, + "_pop_recent_releases_estimated_tags": 21, + "_pop_recent_releases_adjusted_count": 16, + "_pop_issue_count": 49.0, + "_pop_comment_count": 53.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 4225, + "_pop_score": 56.83, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/qiskit/qiskit/master/README.md", "_readme_localurl": "qiskit~qiskit~README.md", @@ -16872,8 +25339,8 @@ "description": null, "_repopath": "salesforce/merlion", "_reponame": "Merlion", - "_stars": 2800, - "_forks": 240, + "_stars": 2817, + "_forks": 242, "_watches": 45, "_topics": [ "time-series", @@ -16888,11 +25355,33 @@ "_homepage": "", "_description": "Merlion: A Machine Learning Framework for Time Series Intelligence", "_organization": "salesforce", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-10T00:00:00.000Z", "_created_at": "2021-07-28T00:00:00.000Z", - "_age_weeks": 71, - "_stars_per_week": 39.44, + "_age_weeks": 72, + "_stars_per_week": 38.74, + "_pop_contributor_count": 13, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "salesforce", + "twilio" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.92, + "_pop_updated_issues_count": 18, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 17, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 18.0, + "_pop_comment_count": 22.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 39, + "_pop_score": 39.13, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/salesforce/merlion/master/README.md", "_readme_localurl": "salesforce~merlion~README.md", @@ -16906,6 +25395,79 @@ "salesforce~merlion~setup.py" ] }, + { + "index": 270, + "category": "web", + "githuburl": "https://github.com/strawberry-graphql/strawberry", + "featured": null, + "links": null, + "description": null, + "_repopath": "strawberry-graphql/strawberry", + "_reponame": "strawberry", + "_stars": 2808, + "_forks": 345, + "_watches": 44, + "_topics": [ + "graphql", + "graphql-server", + "python", + "starlette", + "asyncio", + "mypy", + "django", + "graphql-library", + "asgi", + "graphql-schema", + "strawberry", + "hacktoberfest" + ], + "_language": "Python", + "_homepage": "https://strawberry.rocks", + "_description": "strawberry: A GraphQL library for Python that leverages type annotations \ud83c\udf53", + "_organization": "strawberry-graphql", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", + "_created_at": "2018-12-21T00:00:00.000Z", + "_age_weeks": 208, + "_stars_per_week": 13.47, + "_pop_contributor_count": 166, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "apollographql", + "strawberry-graphql" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 12.23, + "_pop_updated_issues_count": 350, + "_pop_closed_issues_count": 210, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 178, + "_pop_recent_releases_estimated_tags": 123, + "_pop_recent_releases_adjusted_count": 178, + "_pop_issue_count": 350.0, + "_pop_comment_count": 691.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 90, + "_pop_score": 59.9, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/README.md", + "_readme_localurl": "strawberry-graphql~strawberry~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/setup.py", + "https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/pyproject.toml" + ], + "_requirements_localurls": [ + "strawberry-graphql~strawberry~setup.py", + "strawberry-graphql~strawberry~pyproject.toml" + ] + }, { "index": 787, "category": "study", @@ -16915,19 +25477,41 @@ "description": null, "_repopath": "cosmicpython/book", "_reponame": "book", - "_stars": 2789, - "_forks": 480, - "_watches": 92, + "_stars": 2806, + "_forks": 481, + "_watches": 93, "_topics": [], "_language": "Python", "_homepage": "https://www.cosmicpython.com", "_description": "book: A Book about Pythonic Application Architecture Patterns for Managing Complexity. Cosmos is the Opposite of Chaos you see. O'R. wouldn't actually let us call it \"Cosmic Python\" tho.", "_organization": "cosmicpython", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-10-03T00:00:00.000Z", "_created_at": "2019-02-05T00:00:00.000Z", - "_age_weeks": 200, - "_stars_per_week": 13.94, + "_age_weeks": 201, + "_stars_per_week": 13.9, + "_pop_contributor_count": 44, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "carbon-re", + "o'reillymedia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.15, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 47, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 6, + "_pop_score": 29.7, "_readme_filename": "Readme.md", "_readme_giturl": "https://raw.githubusercontent.com/cosmicpython/book/master/Readme.md", "_readme_localurl": "cosmicpython~book~Readme.md", @@ -16950,8 +25534,8 @@ "description": null, "_repopath": "adamerose/pandasgui", "_reponame": "PandasGUI", - "_stars": 2786, - "_forks": 189, + "_stars": 2796, + "_forks": 190, "_watches": 53, "_topics": [ "pandas", @@ -16963,11 +25547,32 @@ "_homepage": "", "_description": "PandasGUI: A GUI for Pandas DataFrames", "_organization": "adamerose", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-03-16T00:00:00.000Z", "_created_at": "2019-06-12T00:00:00.000Z", - "_age_weeks": 182, - "_stars_per_week": 15.31, + "_age_weeks": 183, + "_stars_per_week": 15.22, + "_pop_contributor_count": 13, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "dionresearch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.06, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 43, + "_pop_updated_since_days": 9, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 7.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 30, + "_pop_score": 28.19, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/adamerose/pandasgui/master/README.md", "_readme_localurl": "adamerose~pandasgui~README.md", @@ -16985,88 +25590,55 @@ ] }, { - "index": 765, - "category": "diffusion", - "githuburl": "https://github.com/lkwq007/stablediffusion-infinity", + "index": 792, + "category": "ml-dl", + "githuburl": "https://github.com/facebookincubator/aitemplate", "featured": null, "links": null, "description": null, - "_repopath": "lkwq007/stablediffusion-infinity", - "_reponame": "stablediffusion-infinity", - "_stars": 2784, - "_forks": 210, - "_watches": 29, - "_topics": [ - "outpainting", - "stablediffusion" - ], + "_repopath": "facebookincubator/aitemplate", + "_reponame": "AITemplate", + "_stars": 2789, + "_forks": 184, + "_watches": 79, + "_topics": [], "_language": "Python", "_homepage": "", - "_description": "stablediffusion-infinity: Outpainting with Stable Diffusion on an infinite canvas", - "_organization": "lkwq007", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2022-09-02T00:00:00.000Z", - "_age_weeks": 13, - "_stars_per_week": 203.0, - "_readme_filename": "readme.md", - "_readme_giturl": "https://raw.githubusercontent.com/lkwq007/stablediffusion-infinity/master/readme.md", - "_readme_localurl": "lkwq007~stablediffusion-infinity~readme.md", + "_description": "AITemplate is a Python framework which renders neural network into high performance CUDA/HIP C++ code. Specialized for FP16 TensorCore (NVIDIA GPU) and MatrixCore (AMD GPU) inference.", + "_organization": "facebookincubator", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2022-07-15T00:00:00.000Z", + "_age_weeks": 22, + "_stars_per_week": 124.35, + "_pop_contributor_count": 18, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebook" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.56, + "_pop_updated_issues_count": 128, + "_pop_closed_issues_count": 88, + "_pop_created_since_days": 5, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 128.0, + "_pop_comment_count": 328.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 0, + "_pop_score": 29.82, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/facebookincubator/aitemplate/master/README.md", + "_readme_localurl": "facebookincubator~aitemplate~README.md", "_requirements_filenames": [], "_requirements_giturls": [], "_requirements_localurls": [] }, - { - "index": 270, - "category": "web", - "githuburl": "https://github.com/strawberry-graphql/strawberry", - "featured": null, - "links": null, - "description": null, - "_repopath": "strawberry-graphql/strawberry", - "_reponame": "strawberry", - "_stars": 2776, - "_forks": 340, - "_watches": 43, - "_topics": [ - "graphql", - "graphql-server", - "python", - "starlette", - "asyncio", - "mypy", - "django", - "graphql-library", - "asgi", - "graphql-schema", - "strawberry", - "hacktoberfest" - ], - "_language": "Python", - "_homepage": "https://strawberry.rocks", - "_description": "strawberry: A GraphQL library for Python that leverages type annotations \ud83c\udf53", - "_organization": "strawberry-graphql", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2018-12-21T00:00:00.000Z", - "_age_weeks": 206, - "_stars_per_week": 13.43, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/README.md", - "_readme_localurl": "strawberry-graphql~strawberry~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/setup.py", - "https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/pyproject.toml" - ], - "_requirements_localurls": [ - "strawberry-graphql~strawberry~setup.py", - "strawberry-graphql~strawberry~pyproject.toml" - ] - }, { "index": 488, "category": "util", @@ -17076,9 +25648,9 @@ "description": null, "_repopath": "pydata/xarray", "_reponame": "xarray", - "_stars": 2775, - "_forks": 853, - "_watches": 106, + "_stars": 2788, + "_forks": 857, + "_watches": 107, "_topics": [ "python", "netcdf", @@ -17091,11 +25663,34 @@ "_homepage": "https://xarray.dev", "_description": "xarray: N-D labeled arrays and datasets in Python", "_organization": "pydata", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2013-09-30T00:00:00.000Z", - "_age_weeks": 479, - "_stars_per_week": 5.79, + "_age_weeks": 481, + "_stars_per_week": 5.8, + "_pop_contributor_count": 407, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "mathandstatsdepartment", + "ncar" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 9.54, + "_pop_updated_issues_count": 448, + "_pop_closed_issues_count": 256, + "_pop_created_since_days": 112, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 448.0, + "_pop_comment_count": 1120.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 1142, + "_pop_score": 69.12, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pydata/xarray/master/README.md", "_readme_localurl": "pydata~xarray~README.md", @@ -17116,33 +25711,73 @@ ] }, { - "index": 792, + "index": 729, "category": "ml-dl", - "githuburl": "https://github.com/facebookincubator/aitemplate", + "githuburl": "https://github.com/mosaicml/composer", "featured": null, "links": null, "description": null, - "_repopath": "facebookincubator/aitemplate", - "_reponame": "AITemplate", - "_stars": 2764, - "_forks": 180, - "_watches": 78, - "_topics": [], + "_repopath": "mosaicml/composer", + "_reponame": "composer", + "_stars": 2782, + "_forks": 174, + "_watches": 21, + "_topics": [ + "deep-learning", + "pytorch", + "neural-networks", + "ml-systems", + "ml-efficiency", + "ml-training", + "machine-learning", + "neural-network" + ], "_language": "Python", - "_homepage": "", - "_description": "AITemplate is a Python framework which renders neural network into high performance CUDA/HIP C++ code. Specialized for FP16 TensorCore (NVIDIA GPU) and MatrixCore (AMD GPU) inference.", - "_organization": "facebookincubator", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", - "_created_at": "2022-07-15T00:00:00.000Z", - "_age_weeks": 20, - "_stars_per_week": 133.43, + "_homepage": "http://docs.mosaicml.com", + "_description": "composer: Train neural networks up to 7x faster", + "_organization": "mosaicml", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2021-10-12T00:00:00.000Z", + "_age_weeks": 61, + "_stars_per_week": 44.97, + "_pop_contributor_count": 54, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "mosaicml", + "stanford'22" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 24.19, + "_pop_updated_issues_count": 357, + "_pop_closed_issues_count": 327, + "_pop_created_since_days": 14, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 24, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 357.0, + "_pop_comment_count": 326.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 21, + "_pop_score": 49.76, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/facebookincubator/aitemplate/master/README.md", - "_readme_localurl": "facebookincubator~aitemplate~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/mosaicml/composer/master/README.md", + "_readme_localurl": "mosaicml~composer~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/mosaicml/composer/master/setup.py", + "https://raw.githubusercontent.com/mosaicml/composer/master/pyproject.toml" + ], + "_requirements_localurls": [ + "mosaicml~composer~setup.py", + "mosaicml~composer~pyproject.toml" + ] }, { "index": 203, @@ -17153,7 +25788,7 @@ "description": null, "_repopath": "ml-tooling/opyrator", "_reponame": "opyrator", - "_stars": 2749, + "_stars": 2759, "_forks": 132, "_watches": 48, "_topics": [ @@ -17174,11 +25809,30 @@ "_homepage": "https://opyrator-playground.mltooling.org", "_description": "opyrator: \ud83e\ude84 Turns your machine learning code into microservices with web API, interactive GUI, and more.", "_organization": "ml-tooling", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2021-05-06T00:00:00.000Z", "_created_at": "2021-04-06T00:00:00.000Z", - "_age_weeks": 87, - "_stars_per_week": 31.55, + "_age_weeks": 88, + "_stars_per_week": 31.05, + "_pop_contributor_count": 4, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 21, + "_pop_updated_since_days": 20, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 10.0, + "_pop_comment_count": 8.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 7, + "_pop_score": 17.15, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ml-tooling/opyrator/master/README.md", "_readme_localurl": "ml-tooling~opyrator~README.md", @@ -17199,50 +25853,69 @@ ] }, { - "index": 729, - "category": "ml-dl", - "githuburl": "https://github.com/mosaicml/composer", + "index": 156, + "category": "profiling", + "githuburl": "https://github.com/gaogaotiantian/viztracer", "featured": null, "links": null, "description": null, - "_repopath": "mosaicml/composer", - "_reponame": "composer", - "_stars": 2738, - "_forks": 169, - "_watches": 22, + "_repopath": "gaogaotiantian/viztracer", + "_reponame": "viztracer", + "_stars": 2756, + "_forks": 276, + "_watches": 40, "_topics": [ - "deep-learning", - "pytorch", - "neural-networks", - "ml-systems", - "ml-efficiency", - "ml-training", - "machine-learning", - "neural-network" + "tracer", + "python3", + "debugging", + "profiling", + "visualization", + "flamegraph", + "python", + "logging" ], "_language": "Python", - "_homepage": "http://docs.mosaicml.com", - "_description": "composer: Train neural networks up to 7x faster", - "_organization": "mosaicml", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2021-10-12T00:00:00.000Z", - "_age_weeks": 60, - "_stars_per_week": 45.52, + "_homepage": "https://viztracer.readthedocs.io/", + "_description": "VizTracer is a low-overhead logging/debugging/profiling tool that can trace and visualize your python code execution.", + "_organization": "gaogaotiantian", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-08T00:00:00.000Z", + "_created_at": "2020-08-05T00:00:00.000Z", + "_age_weeks": 123, + "_stars_per_week": 22.28, + "_pop_contributor_count": 17, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebookairesearch", + "microsoft" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.21, + "_pop_updated_issues_count": 26, + "_pop_closed_issues_count": 22, + "_pop_created_since_days": 29, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 32, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 26.0, + "_pop_comment_count": 57.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 4, + "_pop_score": 39.25, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/mosaicml/composer/master/README.md", - "_readme_localurl": "mosaicml~composer~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/gaogaotiantian/viztracer/master/README.md", + "_readme_localurl": "gaogaotiantian~viztracer~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/mosaicml/composer/master/setup.py", - "https://raw.githubusercontent.com/mosaicml/composer/master/pyproject.toml" + "https://raw.githubusercontent.com/gaogaotiantian/viztracer/master/setup.py" ], "_requirements_localurls": [ - "mosaicml~composer~setup.py", - "mosaicml~composer~pyproject.toml" + "gaogaotiantian~viztracer~setup.py" ] }, { @@ -17254,19 +25927,41 @@ "description": null, "_repopath": "behave/behave", "_reponame": "behave", - "_stars": 2733, + "_stars": 2739, "_forks": 608, - "_watches": 119, + "_watches": 120, "_topics": [], "_language": "Python", "_homepage": "", "_description": "behave: BDD, Python style.", "_organization": "behave", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-11-23T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-10T00:00:00.000Z", "_created_at": "2011-10-25T00:00:00.000Z", - "_age_weeks": 580, + "_age_weeks": 581, "_stars_per_week": 4.71, + "_pop_contributor_count": 85, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "painless-software", + "smartsgroupmarketsurveillance,nasdaqomx" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.19, + "_pop_updated_issues_count": 62, + "_pop_closed_issues_count": 31, + "_pop_created_since_days": 136, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 62.0, + "_pop_comment_count": 99.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 391, + "_pop_score": 52.77, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/behave/behave/master/README.rst", "_readme_localurl": "behave~behave~README.rst", @@ -17281,47 +25976,66 @@ ] }, { - "index": 156, - "category": "profiling", - "githuburl": "https://github.com/gaogaotiantian/viztracer", - "featured": null, + "index": 709, + "category": "pandas", + "githuburl": "https://github.com/nalepae/pandarallel", + "featured": 1.0, "links": null, "description": null, - "_repopath": "gaogaotiantian/viztracer", - "_reponame": "viztracer", - "_stars": 2732, - "_forks": 275, - "_watches": 37, + "_repopath": "nalepae/pandarallel", + "_reponame": "pandarallel", + "_stars": 2733, + "_forks": 166, + "_watches": 26, "_topics": [ - "tracer", - "python3", - "debugging", - "profiling", - "visualization", - "flamegraph", + "pandas", "python", - "logging" + "parallel" ], "_language": "Python", - "_homepage": "https://viztracer.readthedocs.io/", - "_description": "VizTracer is a low-overhead logging/debugging/profiling tool that can trace and visualize your python code execution.", - "_organization": "gaogaotiantian", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-24T00:00:00.000Z", - "_created_at": "2020-08-05T00:00:00.000Z", - "_age_weeks": 122, - "_stars_per_week": 22.39, + "_homepage": "https://nalepae.github.io/pandarallel", + "_description": "pandarallel: A simple and efficient tool to parallelize Pandas operations on all available\u00a0CPUs", + "_organization": "nalepae", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_created_at": "2019-03-10T00:00:00.000Z", + "_age_weeks": 197, + "_stars_per_week": 13.86, + "_pop_contributor_count": 22, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "boatboatboat", + "caddi", + "https://www.kiln.fi/", + "swissdatasciencecenter" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.87, + "_pop_updated_issues_count": 26, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 46, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 26.0, + "_pop_comment_count": 48.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 4, + "_pop_score": 42.39, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/gaogaotiantian/viztracer/master/README.md", - "_readme_localurl": "gaogaotiantian~viztracer~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nalepae/pandarallel/master/README.md", + "_readme_localurl": "nalepae~pandarallel~README.md", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/gaogaotiantian/viztracer/master/setup.py" + "https://raw.githubusercontent.com/nalepae/pandarallel/master/setup.py" ], "_requirements_localurls": [ - "gaogaotiantian~viztracer~setup.py" + "nalepae~pandarallel~setup.py" ] }, { @@ -17333,9 +26047,9 @@ "description": null, "_repopath": "ourownstory/neural_prophet", "_reponame": "neural_prophet", - "_stars": 2674, - "_forks": 360, - "_watches": 48, + "_stars": 2702, + "_forks": 363, + "_watches": 47, "_topics": [ "forecasting", "time-series", @@ -17362,11 +26076,33 @@ "_homepage": "https://neuralprophet.com", "_description": "neural_prophet: NeuralProphet: A simple forecasting package", "_organization": "ourownstory", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2020-05-04T00:00:00.000Z", - "_age_weeks": 135, - "_stars_per_week": 19.77, + "_age_weeks": 137, + "_stars_per_week": 19.72, + "_pop_contributor_count": 34, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "stanforduniversity", + "technicaluniversityofmunich" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.9, + "_pop_updated_issues_count": 314, + "_pop_closed_issues_count": 251, + "_pop_created_since_days": 32, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 314.0, + "_pop_comment_count": 588.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 19, + "_pop_score": 48.7, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ourownstory/neural_prophet/master/README.md", "_readme_localurl": "ourownstory~neural_prophet~README.md", @@ -17392,8 +26128,8 @@ "description": null, "_repopath": "jbesomi/texthero", "_reponame": "texthero", - "_stars": 2635, - "_forks": 222, + "_stars": 2659, + "_forks": 226, "_watches": 44, "_topics": [ "text-preprocessing", @@ -17411,11 +26147,33 @@ "_homepage": "https://texthero.org", "_description": "texthero: Text preprocessing, representation and visualization from zero to hero.", "_organization": "jbesomi", - "_updated_at": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-10-28T00:00:00.000Z", "_created_at": "2020-04-06T00:00:00.000Z", - "_age_weeks": 139, - "_stars_per_week": 18.92, + "_age_weeks": 141, + "_stars_per_week": 18.86, + "_pop_contributor_count": 20, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "aaltouniversity", + "imctrading" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 33, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 3.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 29, + "_pop_score": 32.26, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jbesomi/texthero/master/README.md", "_readme_localurl": "jbesomi~texthero~README.md", @@ -17438,7 +26196,7 @@ "description": null, "_repopath": "explosion/thinc", "_reponame": "thinc", - "_stars": 2627, + "_stars": 2635, "_forks": 259, "_watches": 85, "_topics": [ @@ -17462,11 +26220,33 @@ "_homepage": "https://thinc.ai", "_description": "thinc: \ud83d\udd2e A refreshing functional take on deep learning, compatible with your favorite libraries", "_organization": "explosion", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2014-10-16T00:00:00.000Z", - "_age_weeks": 424, + "_age_weeks": 426, "_stars_per_week": 6.18, + "_pop_contributor_count": 57, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "explosion&oxykodit", + "founderexplosion" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.29, + "_pop_updated_issues_count": 58, + "_pop_closed_issues_count": 50, + "_pop_created_since_days": 100, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 58.0, + "_pop_comment_count": 67.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 255, + "_pop_score": 53.66, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/explosion/thinc/master/README.md", "_readme_localurl": "explosion~thinc~README.md", @@ -17495,9 +26275,9 @@ "description": null, "_repopath": "huggingface/neuralcoref", "_reponame": "neuralcoref", - "_stars": 2627, - "_forks": 460, - "_watches": 94, + "_stars": 2630, + "_forks": 461, + "_watches": 96, "_topics": [ "python", "machine-learning", @@ -17514,11 +26294,34 @@ "_homepage": "https://huggingface.co/coref/", "_description": "neuralcoref: \u2728Fast Coreference Resolution in spaCy with Neural Networks", "_organization": "huggingface", - "_updated_at": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-12T00:00:00.000Z", "_last_commit_date": "2021-06-22T00:00:00.000Z", "_created_at": "2017-07-03T00:00:00.000Z", - "_age_weeks": 283, - "_stars_per_week": 9.27, + "_age_weeks": 285, + "_stars_per_week": 9.23, + "_pop_contributor_count": 21, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "explosion&oxykodit", + "filamentai", + "huggingface" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 66, + "_pop_updated_since_days": 18, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 7.0, + "_pop_comment_count": 10.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 26, + "_pop_score": 31.49, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/huggingface/neuralcoref/master/README.md", "_readme_localurl": "huggingface~neuralcoref~README.md", @@ -17544,7 +26347,7 @@ "description": null, "_repopath": "teamhg-memex/eli5", "_reponame": "eli5", - "_stars": 2611, + "_stars": 2618, "_forks": 326, "_watches": 68, "_topics": [ @@ -17563,11 +26366,34 @@ "_homepage": "http://eli5.readthedocs.io", "_description": "eli5: A library for debugging/inspecting machine learning classifiers and explaining their predictions", "_organization": "teamhg-memex", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2020-01-22T00:00:00.000Z", "_created_at": "2016-09-15T00:00:00.000Z", - "_age_weeks": 324, - "_stars_per_week": 8.04, + "_age_weeks": 326, + "_stars_per_week": 8.02, + "_pop_contributor_count": 14, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "canva", + "zyte", + "zytedata,scrapinghub" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 76, + "_pop_updated_since_days": 35, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 7.0, + "_pop_comment_count": 4.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 13, + "_pop_score": 27.66, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/teamhg-memex/eli5/master/README.rst", "_readme_localurl": "teamhg-memex~eli5~README.rst", @@ -17584,45 +26410,6 @@ "teamhg-memex~eli5~setup.py" ] }, - { - "index": 709, - "category": "pandas", - "githuburl": "https://github.com/nalepae/pandarallel", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "nalepae/pandarallel", - "_reponame": "pandarallel", - "_stars": 2609, - "_forks": 161, - "_watches": 25, - "_topics": [ - "pandas", - "python", - "parallel" - ], - "_language": "Python", - "_homepage": "https://nalepae.github.io/pandarallel", - "_description": "pandarallel: A simple and efficient tool to parallelize Pandas operations on all available\u00a0CPUs", - "_organization": "nalepae", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2019-03-10T00:00:00.000Z", - "_age_weeks": 195, - "_stars_per_week": 13.35, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nalepae/pandarallel/master/README.md", - "_readme_localurl": "nalepae~pandarallel~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/nalepae/pandarallel/master/setup.py" - ], - "_requirements_localurls": [ - "nalepae~pandarallel~setup.py" - ] - }, { "index": 801, "category": "data", @@ -17632,8 +26419,8 @@ "description": null, "_repopath": "pallets/itsdangerous", "_reponame": "itsdangerous", - "_stars": 2589, - "_forks": 212, + "_stars": 2593, + "_forks": 213, "_watches": 57, "_topics": [ "python", @@ -17647,11 +26434,32 @@ "_homepage": "https://itsdangerous.palletsprojects.com", "_description": "itsdangerous: Safely pass trusted data to untrusted environments and back.", "_organization": "pallets", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-01T00:00:00.000Z", "_created_at": "2011-06-24T00:00:00.000Z", - "_age_weeks": 597, + "_age_weeks": 599, "_stars_per_week": 4.33, + "_pop_contributor_count": 41, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "sentry" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.67, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 140, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 8.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 598, + "_pop_score": 41.34, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pallets/itsdangerous/master/README.rst", "_readme_localurl": "pallets~itsdangerous~README.rst", @@ -17674,8 +26482,8 @@ "description": null, "_repopath": "stellargraph/stellargraph", "_reponame": "stellargraph", - "_stars": 2562, - "_forks": 395, + "_stars": 2572, + "_forks": 396, "_watches": 62, "_topics": [ "graphs", @@ -17702,11 +26510,34 @@ "_homepage": "https://stellargraph.readthedocs.io/", "_description": "StellarGraph - Machine Learning on Graphs", "_organization": "stellargraph", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2021-10-29T00:00:00.000Z", "_created_at": "2018-04-13T00:00:00.000Z", - "_age_weeks": 242, - "_stars_per_week": 10.56, + "_age_weeks": 244, + "_stars_per_week": 10.52, + "_pop_contributor_count": 36, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "data61", + "exoflare", + "xoflare" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 57, + "_pop_updated_since_days": 14, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 12.0, + "_pop_comment_count": 9.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 177, + "_pop_score": 38.24, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/stellargraph/stellargraph/master/README.md", "_readme_localurl": "stellargraph~stellargraph~README.md", @@ -17732,8 +26563,8 @@ "description": null, "_repopath": "huawei-noah/pretrained-language-model", "_reponame": "Pretrained-Language-Model", - "_stars": 2552, - "_forks": 546, + "_stars": 2562, + "_forks": 550, "_watches": 52, "_topics": [ "knowledge-distillation", @@ -17746,11 +26577,32 @@ "_homepage": "", "_description": "Pretrained-Language-Model: Pretrained language model and its related optimization techniques developed by Huawei Noah's Ark Lab.", "_organization": "huawei-noah", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-21T00:00:00.000Z", "_created_at": "2019-12-02T00:00:00.000Z", - "_age_weeks": 157, - "_stars_per_week": 16.23, + "_age_weeks": 159, + "_stars_per_week": 16.11, + "_pop_contributor_count": 19, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "huawei-noah" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.38, + "_pop_updated_issues_count": 23, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 37, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 23.0, + "_pop_comment_count": 20.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 2, + "_pop_score": 27.45, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/huawei-noah/pretrained-language-model/master/README.md", "_readme_localurl": "huawei-noah~pretrained-language-model~README.md", @@ -17767,9 +26619,9 @@ "description": null, "_repopath": "inducer/pudb", "_reponame": "pudb", - "_stars": 2547, - "_forks": 216, - "_watches": 45, + "_stars": 2559, + "_forks": 215, + "_watches": 46, "_topics": [ "python", "debugger", @@ -17785,11 +26637,34 @@ "_homepage": "https://documen.tician.de/pudb/", "_description": "pudb: Full-screen console debugger for Python", "_organization": "inducer", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-11-20T00:00:00.000Z", "_created_at": "2011-05-13T00:00:00.000Z", - "_age_weeks": 603, - "_stars_per_week": 4.22, + "_age_weeks": 605, + "_stars_per_week": 4.23, + "_pop_contributor_count": 91, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "quansight", + "scalableminds", + "scientificcomputing,csuiuc" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.96, + "_pop_updated_issues_count": 24, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 141, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 24.0, + "_pop_comment_count": 35.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 428, + "_pop_score": 51.27, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/inducer/pudb/master/README.rst", "_readme_localurl": "inducer~pudb~README.rst", @@ -17812,7 +26687,7 @@ "description": null, "_repopath": "goldsmith/wikipedia", "_reponame": "Wikipedia", - "_stars": 2528, + "_stars": 2532, "_forks": 514, "_watches": 82, "_topics": [], @@ -17820,11 +26695,33 @@ "_homepage": "https://wikipedia.readthedocs.org/", "_description": "Wikipedia: A Pythonic wrapper for the Wikipedia API", "_organization": "goldsmith", - "_updated_at": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2020-10-09T00:00:00.000Z", "_created_at": "2013-08-20T00:00:00.000Z", - "_age_weeks": 485, - "_stars_per_week": 5.21, + "_age_weeks": 486, + "_stars_per_week": 5.2, + "_pop_contributor_count": 23, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "localkitchens", + "nationalradioastronomyobservatory" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 114, + "_pop_updated_since_days": 27, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 10.0, + "_pop_comment_count": 10.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 81, + "_pop_score": 31.09, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/goldsmith/wikipedia/master/README.rst", "_readme_localurl": "goldsmith~wikipedia~README.rst", @@ -17842,38 +26739,74 @@ ] }, { - "index": 94, - "category": "term", - "githuburl": "https://github.com/urwid/urwid", + "index": 428, + "category": "util", + "githuburl": "https://github.com/pycqa/flake8", "featured": null, "links": null, "description": null, - "_repopath": "urwid/urwid", - "_reponame": "urwid", - "_stars": 2513, - "_forks": 311, - "_watches": 60, - "_topics": [], + "_repopath": "pycqa/flake8", + "_reponame": "flake8", + "_stars": 2524, + "_forks": 255, + "_watches": 33, + "_topics": [ + "python", + "python3", + "static-analysis", + "static-code-analysis", + "linter", + "linter-flake8", + "stylelint", + "styleguide", + "style-guide", + "flake8", + "pep8", + "complexity-analysis" + ], "_language": "Python", - "_homepage": "urwid.org", - "_description": "urwid: Console user interface library for Python (official repo)", - "_organization": "urwid", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-07-12T00:00:00.000Z", - "_created_at": "2010-02-25T00:00:00.000Z", - "_age_weeks": 666, - "_stars_per_week": 3.77, + "_homepage": "https://flake8.pycqa.org", + "_description": "flake8 is a python tool that glues together pycodestyle, pyflakes, mccabe, and third-party plugins to check the style and quality of some python code.", + "_organization": "pycqa", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", + "_created_at": "2014-09-13T00:00:00.000Z", + "_age_weeks": 431, + "_stars_per_week": 5.85, + "_pop_contributor_count": 172, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bloomberg", + "elastic", + "tableau&salesforce" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.38, + "_pop_updated_issues_count": 92, + "_pop_closed_issues_count": 86, + "_pop_created_since_days": 101, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 92.0, + "_pop_comment_count": 141.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 14344, + "_pop_score": 66.0, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/urwid/urwid/master/README.rst", - "_readme_localurl": "urwid~urwid~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pycqa/flake8/master/README.rst", + "_readme_localurl": "pycqa~flake8~README.rst", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/urwid/urwid/master/setup.py" + "https://raw.githubusercontent.com/pycqa/flake8/master/setup.py" ], "_requirements_localurls": [ - "urwid~urwid~setup.py" + "pycqa~flake8~setup.py" ] }, { @@ -17885,8 +26818,8 @@ "description": null, "_repopath": "bytedance/lightseq", "_reponame": "lightseq", - "_stars": 2504, - "_forks": 277, + "_stars": 2518, + "_forks": 281, "_watches": 51, "_topics": [ "inference", @@ -17906,11 +26839,36 @@ "_homepage": "", "_description": "LightSeq: A High Performance Library for Sequence Processing and Generation", "_organization": "bytedance", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-12-07T00:00:00.000Z", "_created_at": "2019-12-06T00:00:00.000Z", - "_age_weeks": 156, - "_stars_per_week": 15.98, + "_age_weeks": 158, + "_stars_per_week": 15.89, + "_pop_contributor_count": 14, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bytedance", + "bytedance,ailab", + "bytedanceailab", + "bytedanceantnlp", + "universityofillinoisaturbana-champaign" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.25, + "_pop_updated_issues_count": 69, + "_pop_closed_issues_count": 35, + "_pop_created_since_days": 37, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 69.0, + "_pop_comment_count": 99.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 2, + "_pop_score": 40.14, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/bytedance/lightseq/master/README.md", "_readme_localurl": "bytedance~lightseq~README.md", @@ -17925,51 +26883,59 @@ ] }, { - "index": 428, - "category": "util", - "githuburl": "https://github.com/pycqa/flake8", + "index": 94, + "category": "term", + "githuburl": "https://github.com/urwid/urwid", "featured": null, "links": null, "description": null, - "_repopath": "pycqa/flake8", - "_reponame": "flake8", - "_stars": 2500, - "_forks": 255, - "_watches": 33, - "_topics": [ - "python", - "python3", - "static-analysis", - "static-code-analysis", - "linter", - "linter-flake8", - "stylelint", - "styleguide", - "style-guide", - "flake8", - "pep8", - "complexity-analysis" - ], + "_repopath": "urwid/urwid", + "_reponame": "urwid", + "_stars": 2518, + "_forks": 310, + "_watches": 60, + "_topics": [], "_language": "Python", - "_homepage": "https://flake8.pycqa.org", - "_description": "flake8 is a python tool that glues together pycodestyle, pyflakes, mccabe, and third-party plugins to check the style and quality of some python code.", - "_organization": "pycqa", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2014-09-13T00:00:00.000Z", - "_age_weeks": 429, - "_stars_per_week": 5.82, + "_homepage": "urwid.org", + "_description": "urwid: Console user interface library for Python (official repo)", + "_organization": "urwid", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-07-12T00:00:00.000Z", + "_created_at": "2010-02-25T00:00:00.000Z", + "_age_weeks": 668, + "_stars_per_week": 3.77, + "_pop_contributor_count": 116, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "newfirepartners,mediwareinc,holmusk,unitio-org,urwid" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 156, + "_pop_updated_since_days": 17, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 8.0, + "_pop_comment_count": 7.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 56, + "_pop_score": 36.42, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pycqa/flake8/master/README.rst", - "_readme_localurl": "pycqa~flake8~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/urwid/urwid/master/README.rst", + "_readme_localurl": "urwid~urwid~README.rst", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pycqa/flake8/master/setup.py" + "https://raw.githubusercontent.com/urwid/urwid/master/setup.py" ], "_requirements_localurls": [ - "pycqa~flake8~setup.py" + "urwid~urwid~setup.py" ] }, { @@ -17981,9 +26947,9 @@ "description": null, "_repopath": "pydata/pandas-datareader", "_reponame": "pandas-datareader", - "_stars": 2496, - "_forks": 616, - "_watches": 133, + "_stars": 2506, + "_forks": 620, + "_watches": 132, "_topics": [ "html", "data-analysis", @@ -18004,11 +26970,30 @@ "_homepage": "https://pydata.github.io/pandas-datareader/stable/index.html", "_description": "pandas-datareader: Extract data from a wide range of Internet sources into a pandas DataFrame.", "_organization": "pydata", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-03-16T00:00:00.000Z", "_created_at": "2015-01-15T00:00:00.000Z", - "_age_weeks": 411, + "_age_weeks": 413, "_stars_per_week": 6.06, + "_pop_contributor_count": 85, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 17, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 96, + "_pop_updated_since_days": 9, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 17.0, + "_pop_comment_count": 32.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 118, + "_pop_score": 35.98, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pydata/pandas-datareader/master/README.md", "_readme_localurl": "pydata~pandas-datareader~README.md", @@ -18034,8 +27019,8 @@ "description": null, "_repopath": "saharmor/dalle-playground", "_reponame": "dalle-playground", - "_stars": 2485, - "_forks": 553, + "_stars": 2500, + "_forks": 561, "_watches": 28, "_topics": [ "dall-e", @@ -18054,11 +27039,34 @@ "_homepage": "", "_description": "dalle-playground: A playground to generate images from any text prompt using Stable Diffusion (past: using DALL-E Mini)", "_organization": "saharmor", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-12-02T00:00:00.000Z", "_created_at": "2021-09-13T00:00:00.000Z", - "_age_weeks": 64, - "_stars_per_week": 38.66, + "_age_weeks": 66, + "_stars_per_week": 37.88, + "_pop_contributor_count": 10, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bitly", + "highfalootintechnologycorp.", + "saamaresearch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.15, + "_pop_updated_issues_count": 21, + "_pop_closed_issues_count": 16, + "_pop_created_since_days": 15, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 21.0, + "_pop_comment_count": 20.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 27.51, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/saharmor/dalle-playground/master/README.md", "_readme_localurl": "saharmor~dalle-playground~README.md", @@ -18075,19 +27083,41 @@ "description": null, "_repopath": "pytorch/botorch", "_reponame": "botorch", - "_stars": 2471, - "_forks": 292, - "_watches": 52, + "_stars": 2477, + "_forks": 295, + "_watches": 51, "_topics": [], "_language": "Jupyter Notebook", "_homepage": "https://botorch.org/", "_description": "botorch: Bayesian optimization in PyTorch", "_organization": "pytorch", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2018-07-30T00:00:00.000Z", - "_age_weeks": 227, - "_stars_per_week": 10.87, + "_age_weeks": 229, + "_stars_per_week": 10.82, + "_pop_contributor_count": 86, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebook", + "meta" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.17, + "_pop_updated_issues_count": 156, + "_pop_closed_issues_count": 116, + "_pop_created_since_days": 53, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 156.0, + "_pop_comment_count": 607.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.9, + "_pop_dependents_count": 1061, + "_pop_score": 61.32, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pytorch/botorch/master/README.md", "_readme_localurl": "pytorch~botorch~README.md", @@ -18116,9 +27146,9 @@ "description": null, "_repopath": "zoomeranalytics/xlwings", "_reponame": "xlwings", - "_stars": 2458, + "_stars": 2466, "_forks": 450, - "_watches": 120, + "_watches": 119, "_topics": [ "python", "excel", @@ -18131,11 +27161,32 @@ "_homepage": "https://www.xlwings.org", "_description": "xlwings is a Python library that makes it easy to call Python from Excel and vice versa. It works with Excel on Windows and macOS as well as with Google Sheets and Excel on the web. ", "_organization": "zoomeranalytics", - "_updated_at": "2022-12-03T00:00:00.000Z", - "_last_commit_date": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2014-03-17T00:00:00.000Z", - "_age_weeks": 455, + "_age_weeks": 457, "_stars_per_week": 5.4, + "_pop_contributor_count": 57, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "xlwings" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.27, + "_pop_updated_issues_count": 122, + "_pop_closed_issues_count": 69, + "_pop_created_since_days": 107, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 27, + "_pop_recent_releases_estimated_tags": 16, + "_pop_recent_releases_adjusted_count": 27, + "_pop_issue_count": 122.0, + "_pop_comment_count": 161.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 55, + "_pop_score": 51.83, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/zoomeranalytics/xlwings/master/README.rst", "_readme_localurl": "zoomeranalytics~xlwings~README.rst", @@ -18161,9 +27212,9 @@ "description": null, "_repopath": "tdameritrade/stumpy", "_reponame": "stumpy", - "_stars": 2452, - "_forks": 237, - "_watches": 50, + "_stars": 2463, + "_forks": 239, + "_watches": 51, "_topics": [ "data-science", "time-series-analysis", @@ -18182,11 +27233,32 @@ "_homepage": "https://stumpy.readthedocs.io/en/latest/", "_description": "STUMPY is a powerful and scalable Python library for modern time series analysis", "_organization": "tdameritrade", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2019-05-03T00:00:00.000Z", - "_age_weeks": 187, - "_stars_per_week": 13.06, + "_age_weeks": 189, + "_stars_per_week": 13.0, + "_pop_contributor_count": 32, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "nvidia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.15, + "_pop_updated_issues_count": 79, + "_pop_closed_issues_count": 58, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 79.0, + "_pop_comment_count": 556.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 7.0, + "_pop_dependents_count": 12, + "_pop_score": 46.93, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/tdameritrade/stumpy/master/README.rst", "_readme_localurl": "tdameritrade~stumpy~README.rst", @@ -18212,9 +27284,9 @@ "description": null, "_repopath": "holoviz/panel", "_reponame": "panel", - "_stars": 2418, + "_stars": 2438, "_forks": 313, - "_watches": 47, + "_watches": 48, "_topics": [ "holoviz", "panel", @@ -18226,11 +27298,34 @@ "_homepage": "https://panel.holoviz.org", "_description": "panel: A high-level app and dashboarding solution for Python", "_organization": "holoviz", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2018-08-23T00:00:00.000Z", - "_age_weeks": 223, - "_stars_per_week": 10.8, + "_age_weeks": 225, + "_stars_per_week": 10.81, + "_pop_contributor_count": 111, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "anaconda", + "cea", + "data,modelsandanalytics" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 13.71, + "_pop_updated_issues_count": 450, + "_pop_closed_issues_count": 272, + "_pop_created_since_days": 53, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 103, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 450.0, + "_pop_comment_count": 654.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 55, + "_pop_score": 56.87, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/holoviz/panel/master/README.md", "_readme_localurl": "holoviz~panel~README.md", @@ -18256,8 +27351,8 @@ "description": null, "_repopath": "giswqs/geemap", "_reponame": "geemap", - "_stars": 2407, - "_forks": 894, + "_stars": 2428, + "_forks": 904, "_watches": 96, "_topics": [ "google-earth-engine", @@ -18285,11 +27380,35 @@ "_homepage": "https://geemap.org", "_description": "geemap: A Python package for interactive mapping with Google Earth Engine, ipyleaflet, and ipywidgets.", "_organization": "giswqs", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-12-05T00:00:00.000Z", "_created_at": "2020-03-08T00:00:00.000Z", - "_age_weeks": 143, - "_stars_per_week": 16.78, + "_age_weeks": 145, + "_stars_per_week": 16.73, + "_pop_contributor_count": 35, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "christianclauss", + "faoopenforis", + "google", + "universityoftennessee" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 8.23, + "_pop_updated_issues_count": 54, + "_pop_closed_issues_count": 51, + "_pop_created_since_days": 34, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 53, + "_pop_recent_releases_estimated_tags": 47, + "_pop_recent_releases_adjusted_count": 53, + "_pop_issue_count": 54.0, + "_pop_comment_count": 102.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 16, + "_pop_score": 51.28, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/giswqs/geemap/master/README.rst", "_readme_localurl": "giswqs~geemap~README.rst", @@ -18315,7 +27434,7 @@ "description": null, "_repopath": "facebookresearch/hiplot", "_reponame": "hiplot", - "_stars": 2378, + "_stars": 2385, "_forks": 120, "_watches": 28, "_topics": [], @@ -18323,11 +27442,32 @@ "_homepage": "https://facebookresearch.github.io/hiplot/", "_description": "HiPlot makes understanding high dimensional data easy", "_organization": "facebookresearch", - "_updated_at": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2022-12-05T00:00:00.000Z", "_created_at": "2019-11-08T00:00:00.000Z", - "_age_weeks": 160, - "_stars_per_week": 14.8, + "_age_weeks": 162, + "_stars_per_week": 14.68, + "_pop_contributor_count": 8, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "opensourcedevrelfacebook" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.48, + "_pop_updated_issues_count": 17, + "_pop_closed_issues_count": 17, + "_pop_created_since_days": 38, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 17.0, + "_pop_comment_count": 15.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 412, + "_pop_score": 41.35, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/hiplot/master/README.md", "_readme_localurl": "facebookresearch~hiplot~README.md", @@ -18341,6 +27481,61 @@ "facebookresearch~hiplot~setup.py" ] }, + { + "index": 886, + "category": "study", + "githuburl": "https://github.com/huggingface/deep-rl-class", + "featured": null, + "links": null, + "description": null, + "_repopath": "huggingface/deep-rl-class", + "_reponame": "deep-rl-class", + "_stars": 2373, + "_forks": 285, + "_watches": 90, + "_topics": [ + "deep-reinforcement-learning", + "reinforcement-learning", + "reinforcement-learning-excercises", + "deep-learning" + ], + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "deep-rl-class: This repo contain the syllabus of the Hugging Face Deep Reinforcement Learning Class.", + "_organization": "huggingface", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_created_at": "2022-04-21T00:00:00.000Z", + "_age_weeks": 34, + "_stars_per_week": 68.64, + "_pop_contributor_count": 35, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "huggingface" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.21, + "_pop_updated_issues_count": 63, + "_pop_closed_issues_count": 43, + "_pop_created_since_days": 8, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 63.0, + "_pop_comment_count": 113.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 5, + "_pop_score": 35.34, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/huggingface/deep-rl-class/master/README.md", + "_readme_localurl": "huggingface~deep-rl-class~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 708, "category": "ml", @@ -18350,9 +27545,9 @@ "description": null, "_repopath": "mljar/mljar-supervised", "_reponame": "mljar-supervised", - "_stars": 2357, - "_forks": 308, - "_watches": 41, + "_stars": 2372, + "_forks": 313, + "_watches": 42, "_topics": [ "automl", "machine-learning", @@ -18379,11 +27574,34 @@ "_homepage": "https://mljar.com", "_description": "mljar-supervised: Python package for AutoML on Tabular Data with Feature Engineering, Hyper-Parameters Tuning, Explanations and Automatic Documentation", "_organization": "mljar", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-03T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2018-11-05T00:00:00.000Z", - "_age_weeks": 213, - "_stars_per_week": 11.05, + "_age_weeks": 215, + "_stars_per_week": 11.03, + "_pop_contributor_count": 20, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bitspilanihyderabadcampus", + "mljar", + "otterclamfinance" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.44, + "_pop_updated_issues_count": 32, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 50, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 32.0, + "_pop_comment_count": 82.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 49, + "_pop_score": 44.47, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/mljar/mljar-supervised/master/README.md", "_readme_localurl": "mljar~mljar-supervised~README.md", @@ -18409,7 +27627,7 @@ "description": null, "_repopath": "liiight/notifiers", "_reponame": "notifiers", - "_stars": 2346, + "_stars": 2351, "_forks": 91, "_watches": 33, "_topics": [ @@ -18424,11 +27642,33 @@ "_homepage": "http://notifiers.readthedocs.io/", "_description": "notifiers: The easy way to send notifications", "_organization": "liiight", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-07-14T00:00:00.000Z", "_created_at": "2017-06-01T00:00:00.000Z", - "_age_weeks": 287, - "_stars_per_week": 8.15, + "_age_weeks": 289, + "_stars_per_week": 8.12, + "_pop_contributor_count": 19, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "pyupio", + "totango" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.31, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 68, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 6, + "_pop_score": 28.53, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/liiight/notifiers/master/README.md", "_readme_localurl": "liiight~notifiers~README.md", @@ -18442,58 +27682,6 @@ "liiight~notifiers~pyproject.toml" ] }, - { - "index": 858, - "category": "jupyter", - "githuburl": "https://github.com/jupyter/nbdime", - "featured": null, - "links": null, - "description": null, - "_repopath": "jupyter/nbdime", - "_reponame": "nbdime", - "_stars": 2334, - "_forks": 151, - "_watches": 43, - "_topics": [ - "jupyterlab-extension", - "jupyter", - "jupyter-notebook", - "diff", - "diffing", - "merge", - "git", - "hg", - "mercurial", - "mergetool", - "merge-driver", - "vcs", - "version-control" - ], - "_language": "Python", - "_homepage": "http://nbdime.readthedocs.io", - "_description": "nbdime: Tools for diffing and merging of Jupyter notebooks.", - "_organization": "jupyter", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-24T00:00:00.000Z", - "_created_at": "2015-11-16T00:00:00.000Z", - "_age_weeks": 368, - "_stars_per_week": 6.34, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/jupyter/nbdime/master/README.md", - "_readme_localurl": "jupyter~nbdime~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/jupyter/nbdime/master/setup.py", - "https://raw.githubusercontent.com/jupyter/nbdime/master/pyproject.toml" - ], - "_requirements_localurls": [ - "jupyter~nbdime~setup.py", - "jupyter~nbdime~pyproject.toml" - ] - }, { "index": 129, "category": "viz", @@ -18503,9 +27691,9 @@ "description": null, "_repopath": "holoviz/holoviews", "_reponame": "holoviews", - "_stars": 2330, + "_stars": 2341, "_forks": 364, - "_watches": 61, + "_watches": 63, "_topics": [ "holoviz", "holoviews", @@ -18515,11 +27703,32 @@ "_homepage": "https://holoviews.org", "_description": "holoviews: With Holoviews, your data visualizes itself.", "_organization": "holoviz", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2014-05-07T00:00:00.000Z", - "_age_weeks": 448, - "_stars_per_week": 5.2, + "_age_weeks": 449, + "_stars_per_week": 5.21, + "_pop_contributor_count": 126, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "anaconda" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.62, + "_pop_updated_issues_count": 237, + "_pop_closed_issues_count": 108, + "_pop_created_since_days": 105, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 41, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 237.0, + "_pop_comment_count": 294.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 40, + "_pop_score": 50.91, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/holoviz/holoviews/master/README.md", "_readme_localurl": "holoviz~holoviews~README.md", @@ -18545,8 +27754,8 @@ "description": null, "_repopath": "ddangelov/top2vec", "_reponame": "Top2Vec", - "_stars": 2329, - "_forks": 320, + "_stars": 2339, + "_forks": 326, "_watches": 39, "_topics": [ "topic-modeling", @@ -18568,11 +27777,30 @@ "_homepage": "", "_description": "Top2Vec learns jointly embedded topic, document and word vectors.", "_organization": "ddangelov", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-04-03T00:00:00.000Z", "_created_at": "2020-03-20T00:00:00.000Z", - "_age_weeks": 141, - "_stars_per_week": 16.43, + "_age_weeks": 143, + "_stars_per_week": 16.31, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.17, + "_pop_updated_issues_count": 53, + "_pop_closed_issues_count": 37, + "_pop_created_since_days": 33, + "_pop_updated_since_days": 9, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 53.0, + "_pop_comment_count": 46.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 21, + "_pop_score": 21.07, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ddangelov/top2vec/master/README.md", "_readme_localurl": "ddangelov~top2vec~README.md", @@ -18590,78 +27818,81 @@ ] }, { - "index": 875, - "category": "perf", - "githuburl": "https://github.com/ipython/ipyparallel", + "index": 858, + "category": "jupyter", + "githuburl": "https://github.com/jupyter/nbdime", "featured": null, "links": null, "description": null, - "_repopath": "ipython/ipyparallel", - "_reponame": "ipyparallel", - "_stars": 2312, - "_forks": 947, - "_watches": 119, + "_repopath": "jupyter/nbdime", + "_reponame": "nbdime", + "_stars": 2339, + "_forks": 154, + "_watches": 43, "_topics": [ - "parallel", + "jupyterlab-extension", "jupyter", - "python" + "jupyter-notebook", + "diff", + "diffing", + "merge", + "git", + "hg", + "mercurial", + "mergetool", + "merge-driver", + "vcs", + "version-control" ], - "_language": "Jupyter Notebook", - "_homepage": "https://ipyparallel.readthedocs.io/", - "_description": "ipyparallel: IPython Parallel: Interactive Parallel Computing in Python", - "_organization": "ipython", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-22T00:00:00.000Z", - "_created_at": "2015-04-09T00:00:00.000Z", - "_age_weeks": 399, - "_stars_per_week": 5.78, + "_language": "Python", + "_homepage": "http://nbdime.readthedocs.io", + "_description": "nbdime: Tools for diffing and merging of Jupyter notebooks.", + "_organization": "jupyter", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-11-24T00:00:00.000Z", + "_created_at": "2015-11-16T00:00:00.000Z", + "_age_weeks": 370, + "_stars_per_week": 6.32, + "_pop_contributor_count": 41, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ibmcodait", + "quantstack", + "simularesearchlaboratory", + "willingconsulting" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 29, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 86, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 29.0, + "_pop_comment_count": 29.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 402, + "_pop_score": 49.23, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/ipython/ipyparallel/master/README.md", - "_readme_localurl": "ipython~ipyparallel~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/jupyter/nbdime/master/README.md", + "_readme_localurl": "jupyter~nbdime~README.md", "_requirements_filenames": [ + "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/ipython/ipyparallel/master/pyproject.toml" + "https://raw.githubusercontent.com/jupyter/nbdime/master/setup.py", + "https://raw.githubusercontent.com/jupyter/nbdime/master/pyproject.toml" ], "_requirements_localurls": [ - "ipython~ipyparallel~pyproject.toml" + "jupyter~nbdime~setup.py", + "jupyter~nbdime~pyproject.toml" ] }, - { - "index": 886, - "category": "study", - "githuburl": "https://github.com/huggingface/deep-rl-class", - "featured": null, - "links": null, - "description": null, - "_repopath": "huggingface/deep-rl-class", - "_reponame": "deep-rl-class", - "_stars": 2300, - "_forks": 263, - "_watches": 93, - "_topics": [ - "deep-reinforcement-learning", - "reinforcement-learning", - "reinforcement-learning-excercises", - "deep-learning" - ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "deep-rl-class: This repo contain the syllabus of the Hugging Face Deep Reinforcement Learning Class.", - "_organization": "huggingface", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2022-04-21T00:00:00.000Z", - "_age_weeks": 32, - "_stars_per_week": 70.0, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/huggingface/deep-rl-class/master/README.md", - "_readme_localurl": "huggingface~deep-rl-class~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 809, "category": "web", @@ -18671,8 +27902,8 @@ "description": null, "_repopath": "fastapi-users/fastapi-users", "_reponame": "fastapi-users", - "_stars": 2299, - "_forks": 236, + "_stars": 2323, + "_forks": 239, "_watches": 33, "_topics": [ "python", @@ -18687,11 +27918,34 @@ "_homepage": "https://fastapi-users.github.io/fastapi-users/", "_description": "fastapi-users: Ready-to-use and customizable users management for FastAPI", "_organization": "fastapi-users", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-04T00:00:00.000Z", "_created_at": "2019-10-05T00:00:00.000Z", - "_age_weeks": 165, + "_age_weeks": 167, "_stars_per_week": 13.89, + "_pop_contributor_count": 53, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "beemydesk", + "fitctuinprague", + "quantstack" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.96, + "_pop_updated_issues_count": 19, + "_pop_closed_issues_count": 19, + "_pop_created_since_days": 39, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 32, + "_pop_recent_releases_estimated_tags": 28, + "_pop_recent_releases_adjusted_count": 32, + "_pop_issue_count": 19.0, + "_pop_comment_count": 20.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 134, + "_pop_score": 49.48, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/fastapi-users/fastapi-users/master/README.md", "_readme_localurl": "fastapi-users~fastapi-users~README.md", @@ -18706,41 +27960,66 @@ ] }, { - "index": 691, - "category": "ml-dl", - "githuburl": "https://github.com/nerdyrodent/vqgan-clip", + "index": 875, + "category": "perf", + "githuburl": "https://github.com/ipython/ipyparallel", "featured": null, "links": null, "description": null, - "_repopath": "nerdyrodent/vqgan-clip", - "_reponame": "VQGAN-CLIP", - "_stars": 2293, - "_forks": 395, - "_watches": 53, + "_repopath": "ipython/ipyparallel", + "_reponame": "ipyparallel", + "_stars": 2319, + "_forks": 949, + "_watches": 119, "_topics": [ - "text2image", - "text-to-image" + "parallel", + "jupyter", + "python" ], - "_language": "Python", - "_homepage": "", - "_description": "VQGAN-CLIP: Just playing with getting VQGAN+CLIP running locally, rather than having to use colab.", - "_organization": "nerdyrodent", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-10-02T00:00:00.000Z", - "_created_at": "2021-07-02T00:00:00.000Z", - "_age_weeks": 74, - "_stars_per_week": 30.69, + "_language": "Jupyter Notebook", + "_homepage": "https://ipyparallel.readthedocs.io/", + "_description": "ipyparallel: IPython Parallel: Interactive Parallel Computing in Python", + "_organization": "ipython", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-11-22T00:00:00.000Z", + "_created_at": "2015-04-09T00:00:00.000Z", + "_age_weeks": 401, + "_stars_per_week": 5.77, + "_pop_contributor_count": 112, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazonwebservices", + "ardoq", + "simularesearchlaboratory", + "universityofcalifornia,berkeley." + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.29, + "_pop_updated_issues_count": 19, + "_pop_closed_issues_count": 16, + "_pop_created_since_days": 94, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 19.0, + "_pop_comment_count": 9.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 318, + "_pop_score": 52.25, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nerdyrodent/vqgan-clip/master/README.md", - "_readme_localurl": "nerdyrodent~vqgan-clip~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/ipython/ipyparallel/master/README.md", + "_readme_localurl": "ipython~ipyparallel~README.md", "_requirements_filenames": [ - "requirements.txt" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/nerdyrodent/vqgan-clip/master/requirements.txt" + "https://raw.githubusercontent.com/ipython/ipyparallel/master/pyproject.toml" ], "_requirements_localurls": [ - "nerdyrodent~vqgan-clip~requirements.txt" + "ipython~ipyparallel~pyproject.toml" ] }, { @@ -18752,19 +28031,41 @@ "description": null, "_repopath": "nedbat/coveragepy", "_reponame": "coveragepy", - "_stars": 2292, - "_forks": 330, - "_watches": 27, + "_stars": 2305, + "_forks": 331, + "_watches": 28, "_topics": [], "_language": "Python", "_homepage": "https://coverage.readthedocs.io", "_description": "coveragepy: The code coverage tool for Python", "_organization": "nedbat", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2018-06-23T00:00:00.000Z", - "_age_weeks": 232, - "_stars_per_week": 9.86, + "_age_weeks": 234, + "_stars_per_week": 9.84, + "_pop_contributor_count": 142, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "freelancer,upforhire", + "shoobx" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 8.65, + "_pop_updated_issues_count": 134, + "_pop_closed_issues_count": 89, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 24, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 134.0, + "_pop_comment_count": 400.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 9969, + "_pop_score": 66.43, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/nedbat/coveragepy/master/README.rst", "_readme_localurl": "nedbat~coveragepy~README.rst", @@ -18782,38 +28083,63 @@ ] }, { - "index": 246, - "category": "util", - "githuburl": "https://github.com/pyston/pyston", + "index": 691, + "category": "ml-dl", + "githuburl": "https://github.com/nerdyrodent/vqgan-clip", "featured": null, "links": null, "description": null, - "_repopath": "pyston/pyston", - "_reponame": "pyston", - "_stars": 2285, - "_forks": 83, - "_watches": 32, - "_topics": [], + "_repopath": "nerdyrodent/vqgan-clip", + "_reponame": "VQGAN-CLIP", + "_stars": 2304, + "_forks": 401, + "_watches": 53, + "_topics": [ + "text2image", + "text-to-image" + ], "_language": "Python", - "_homepage": "https://www.pyston.org/", - "_description": "pyston: A faster and highly-compatible implementation of the Python programming language.", - "_organization": "pyston", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-23T00:00:00.000Z", - "_created_at": "2021-03-01T00:00:00.000Z", - "_age_weeks": 92, - "_stars_per_week": 24.76, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pyston/pyston/master/README.rst", - "_readme_localurl": "pyston~pyston~README.rst", + "_homepage": "", + "_description": "VQGAN-CLIP: Just playing with getting VQGAN+CLIP running locally, rather than having to use colab.", + "_organization": "nerdyrodent", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-10-02T00:00:00.000Z", + "_created_at": "2021-07-02T00:00:00.000Z", + "_age_weeks": 76, + "_stars_per_week": 30.15, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "az\u00e9otropecanada", + "censys" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 18, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 19.58, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nerdyrodent/vqgan-clip/master/README.md", + "_readme_localurl": "nerdyrodent~vqgan-clip~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pyston/pyston/master/setup.py" + "https://raw.githubusercontent.com/nerdyrodent/vqgan-clip/master/requirements.txt" ], "_requirements_localurls": [ - "pyston~pyston~setup.py" + "nerdyrodent~vqgan-clip~requirements.txt" ] }, { @@ -18825,19 +28151,41 @@ "description": null, "_repopath": "openai/mujoco-py", "_reponame": "mujoco-py", - "_stars": 2283, - "_forks": 711, - "_watches": 157, + "_stars": 2300, + "_forks": 715, + "_watches": 161, "_topics": [], "_language": "Cython", "_homepage": "", "_description": "mujoco-py: MuJoCo is a physics engine for detailed, efficient rigid body simulations with contacts. mujoco-py allows using MuJoCo from Python 3.", "_organization": "openai", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-11-17T00:00:00.000Z", "_created_at": "2016-04-24T00:00:00.000Z", - "_age_weeks": 345, - "_stars_per_week": 6.61, + "_age_weeks": 347, + "_stars_per_week": 6.63, + "_pop_contributor_count": 33, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "millionintegrals", + "openai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 33, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 81, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 33.0, + "_pop_comment_count": 23.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 34, + "_pop_score": 37.69, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/openai/mujoco-py/master/README.md", "_readme_localurl": "openai~mujoco-py~README.md", @@ -18857,6 +28205,146 @@ "openai~mujoco-py~pyproject.toml" ] }, + { + "index": 246, + "category": "util", + "githuburl": "https://github.com/pyston/pyston", + "featured": null, + "links": null, + "description": null, + "_repopath": "pyston/pyston", + "_reponame": "pyston", + "_stars": 2295, + "_forks": 83, + "_watches": 32, + "_topics": [], + "_language": "Python", + "_homepage": "https://www.pyston.org/", + "_description": "pyston: A faster and highly-compatible implementation of the Python programming language.", + "_organization": "pyston", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-11-23T00:00:00.000Z", + "_created_at": "2021-03-01T00:00:00.000Z", + "_age_weeks": 94, + "_stars_per_week": 24.41, + "_pop_contributor_count": 1035, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "fzj\u00fclich", + "keepertech", + "microsoft", + "mutableminds" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.1, + "_pop_updated_issues_count": 22, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 22, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 261, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 22.0, + "_pop_comment_count": 30.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 9, + "_pop_score": 50.69, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pyston/pyston/master/README.rst", + "_readme_localurl": "pyston~pyston~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pyston/pyston/master/setup.py" + ], + "_requirements_localurls": [ + "pyston~pyston~setup.py" + ] + }, + { + "index": 866, + "category": "ml-ops", + "githuburl": "https://github.com/mage-ai/mage-ai", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "mage-ai/mage-ai", + "_reponame": "mage-ai", + "_stars": 2287, + "_forks": 203, + "_watches": 40, + "_topics": [ + "machine-learning", + "artificial-intelligence", + "data", + "data-engineering", + "data-science", + "python", + "elt", + "etl", + "pipelines", + "data-pipelines", + "orchestration", + "data-integration", + "sql", + "spark", + "dbt", + "pipeline", + "reverse-etl", + "transformation" + ], + "_language": "Python", + "_homepage": "https://www.mage.ai/", + "_description": "mage-ai: \ud83e\uddd9 A modern replacement for Airflow.", + "_organization": "mage-ai", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_created_at": "2022-05-16T00:00:00.000Z", + "_age_weeks": 31, + "_stars_per_week": 73.77, + "_pop_contributor_count": 19, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "mage" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 37.4, + "_pop_updated_issues_count": 525, + "_pop_closed_issues_count": 488, + "_pop_created_since_days": 7, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 525.0, + "_pop_comment_count": 134.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 18, + "_pop_score": 37.99, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/mage-ai/mage-ai/master/README.md", + "_readme_localurl": "mage-ai~mage-ai~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/mage-ai/mage-ai/master/requirements.txt", + "https://raw.githubusercontent.com/mage-ai/mage-ai/master/setup.py", + "https://raw.githubusercontent.com/mage-ai/mage-ai/master/pyproject.toml" + ], + "_requirements_localurls": [ + "mage-ai~mage-ai~requirements.txt", + "mage-ai~mage-ai~setup.py", + "mage-ai~mage-ai~pyproject.toml" + ] + }, { "index": 696, "category": "ml-dl", @@ -18866,8 +28354,8 @@ "description": null, "_repopath": "deepmind/dm-haiku", "_reponame": "dm-haiku", - "_stars": 2270, - "_forks": 190, + "_stars": 2285, + "_forks": 192, "_watches": 37, "_topics": [ "machine-learning", @@ -18880,11 +28368,33 @@ "_homepage": "https://dm-haiku.readthedocs.io", "_description": "dm-haiku: JAX-based neural network library", "_organization": "deepmind", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-22T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-09T00:00:00.000Z", "_created_at": "2020-02-18T00:00:00.000Z", - "_age_weeks": 146, - "_stars_per_week": 15.53, + "_age_weeks": 147, + "_stars_per_week": 15.45, + "_pop_contributor_count": 68, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "deepmind", + "openai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.69, + "_pop_updated_issues_count": 64, + "_pop_closed_issues_count": 39, + "_pop_created_since_days": 34, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 64.0, + "_pop_comment_count": 40.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 34, + "_pop_score": 44.7, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/deepmind/dm-haiku/master/README.md", "_readme_localurl": "deepmind~dm-haiku~README.md", @@ -18910,8 +28420,8 @@ "description": null, "_repopath": "deepchecks/deepchecks", "_reponame": "deepchecks", - "_stars": 2265, - "_forks": 158, + "_stars": 2282, + "_forks": 159, "_watches": 13, "_topics": [ "machine-learning", @@ -18933,11 +28443,33 @@ "_homepage": "https://docs.deepchecks.com", "_description": "deepchecks: Tests for Continuous Validation of ML Models & Data. Deepchecks is a Python package for comprehensively validating your machine learning models and data with minimal effort.", "_organization": "deepchecks", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2021-10-11T00:00:00.000Z", - "_age_weeks": 60, - "_stars_per_week": 37.57, + "_age_weeks": 62, + "_stars_per_week": 36.81, + "_pop_contributor_count": 37, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "deepchecks", + "starnavi" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 17.17, + "_pop_updated_issues_count": 255, + "_pop_closed_issues_count": 169, + "_pop_created_since_days": 14, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 35, + "_pop_recent_releases_estimated_tags": 42, + "_pop_recent_releases_adjusted_count": 35, + "_pop_issue_count": 255.0, + "_pop_comment_count": 269.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 5, + "_pop_score": 46.64, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/deepchecks/deepchecks/master/README.md", "_readme_localurl": "deepchecks~deepchecks~README.md", @@ -18960,19 +28492,40 @@ "description": null, "_repopath": "nmslib/hnswlib", "_reponame": "hnswlib", - "_stars": 2256, - "_forks": 418, + "_stars": 2269, + "_forks": 419, "_watches": 62, "_topics": [], "_language": "C++", "_homepage": "https://github.com/nmslib/hnswlib", "_description": "hnswlib: Header-only C++/python library for fast approximate nearest neighbors", "_organization": "nmslib", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-04-16T00:00:00.000Z", "_created_at": "2017-07-06T00:00:00.000Z", - "_age_weeks": 282, - "_stars_per_week": 7.98, + "_age_weeks": 284, + "_stars_per_week": 7.97, + "_pop_contributor_count": 56, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "twittercortex" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.25, + "_pop_updated_issues_count": 18, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 66, + "_pop_updated_since_days": 8, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 18.0, + "_pop_comment_count": 27.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 24, + "_pop_score": 34.87, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/nmslib/hnswlib/master/README.md", "_readme_localurl": "nmslib~hnswlib~README.md", @@ -18998,8 +28551,8 @@ "description": null, "_repopath": "ibis-project/ibis", "_reponame": "ibis", - "_stars": 2217, - "_forks": 371, + "_stars": 2231, + "_forks": 375, "_watches": 77, "_topics": [ "python", @@ -19027,11 +28580,33 @@ "_homepage": "http://ibis-project.org", "_description": "ibis: Expressive analytics in Python at any scale.", "_organization": "ibis-project", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2015-04-17T00:00:00.000Z", - "_age_weeks": 398, - "_stars_per_week": 5.56, + "_age_weeks": 400, + "_stars_per_week": 5.57, + "_pop_contributor_count": 121, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "voltron-data/ursa-computing", + "voltrondata" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 43.25, + "_pop_updated_issues_count": 565, + "_pop_closed_issues_count": 501, + "_pop_created_since_days": 93, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 565.0, + "_pop_comment_count": 1237.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 428, + "_pop_score": 64.45, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ibis-project/ibis/master/README.md", "_readme_localurl": "ibis-project~ibis~README.md", @@ -19057,9 +28632,9 @@ "description": null, "_repopath": "legrandin/pycryptodome", "_reponame": "pycryptodome", - "_stars": 2206, - "_forks": 403, - "_watches": 59, + "_stars": 2218, + "_forks": 402, + "_watches": 58, "_topics": [ "cryptography", "security", @@ -19069,11 +28644,33 @@ "_homepage": "https://www.pycryptodome.org", "_description": "pycryptodome: A self-contained cryptographic library for Python", "_organization": "legrandin", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2014-05-02T00:00:00.000Z", - "_age_weeks": 448, + "_age_weeks": 450, "_stars_per_week": 4.92, + "_pop_contributor_count": 130, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "aitaustrianinstituteoftechnology", + "cisco" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.35, + "_pop_updated_issues_count": 75, + "_pop_closed_issues_count": 64, + "_pop_created_since_days": 105, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 75.0, + "_pop_comment_count": 126.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 1485, + "_pop_score": 57.5, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/legrandin/pycryptodome/master/README.rst", "_readme_localurl": "legrandin~pycryptodome~README.rst", @@ -19087,66 +28684,6 @@ "legrandin~pycryptodome~setup.py" ] }, - { - "index": 866, - "category": "ml-ops", - "githuburl": "https://github.com/mage-ai/mage-ai", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "mage-ai/mage-ai", - "_reponame": "mage-ai", - "_stars": 2173, - "_forks": 189, - "_watches": 39, - "_topics": [ - "machine-learning", - "artificial-intelligence", - "data", - "data-engineering", - "data-science", - "python", - "elt", - "etl", - "pipelines", - "data-pipelines", - "orchestration", - "data-integration", - "sql", - "spark", - "dbt", - "pipeline", - "reverse-etl", - "transformation" - ], - "_language": "Python", - "_homepage": "https://www.mage.ai/", - "_description": "mage-ai: \ud83e\uddd9 A modern replacement for Airflow.", - "_organization": "mage-ai", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2022-05-16T00:00:00.000Z", - "_age_weeks": 29, - "_stars_per_week": 74.2, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/mage-ai/mage-ai/master/README.md", - "_readme_localurl": "mage-ai~mage-ai~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/mage-ai/mage-ai/master/requirements.txt", - "https://raw.githubusercontent.com/mage-ai/mage-ai/master/setup.py", - "https://raw.githubusercontent.com/mage-ai/mage-ai/master/pyproject.toml" - ], - "_requirements_localurls": [ - "mage-ai~mage-ai~requirements.txt", - "mage-ai~mage-ai~setup.py", - "mage-ai~mage-ai~pyproject.toml" - ] - }, { "index": 253, "category": "ml", @@ -19156,9 +28693,9 @@ "description": null, "_repopath": "microsoft/flaml", "_reponame": "FLAML", - "_stars": 2158, - "_forks": 328, - "_watches": 37, + "_stars": 2172, + "_forks": 331, + "_watches": 39, "_topics": [ "automl", "hyperparam", @@ -19184,11 +28721,34 @@ "_homepage": "https://microsoft.github.io/FLAML/", "_description": "FLAML: A fast library for AutoML and tuning. Join our Discord: https://discord.gg/Cppx2vSPVP.", "_organization": "microsoft", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2020-08-20T00:00:00.000Z", - "_age_weeks": 119, - "_stars_per_week": 18.0, + "_age_weeks": 121, + "_stars_per_week": 17.87, + "_pop_contributor_count": 59, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "microsoft", + "pennsylvaniastateuniversity", + "stevensinstituteoftechnology" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.04, + "_pop_updated_issues_count": 138, + "_pop_closed_issues_count": 85, + "_pop_created_since_days": 28, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 22, + "_pop_recent_releases_estimated_tags": 21, + "_pop_recent_releases_adjusted_count": 22, + "_pop_issue_count": 138.0, + "_pop_comment_count": 225.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 11, + "_pop_score": 50.03, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/microsoft/flaml/master/README.md", "_readme_localurl": "microsoft~flaml~README.md", @@ -19211,8 +28771,8 @@ "description": null, "_repopath": "jmcarpenter2/swifter", "_reponame": "swifter", - "_stars": 2152, - "_forks": 97, + "_stars": 2161, + "_forks": 98, "_watches": 28, "_topics": [ "pandas", @@ -19226,11 +28786,33 @@ "_homepage": "", "_description": "swifter: A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner", "_organization": "jmcarpenter2", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-08-16T00:00:00.000Z", "_created_at": "2018-04-07T00:00:00.000Z", - "_age_weeks": 243, - "_stars_per_week": 8.84, + "_age_weeks": 245, + "_stars_per_week": 8.81, + "_pop_contributor_count": 17, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "freshrelevance", + "manifoldai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.62, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 57, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 17, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 5.0, + "_pop_comment_count": 4.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 9, + "_pop_score": 33.71, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jmcarpenter2/swifter/master/README.md", "_readme_localurl": "jmcarpenter2~swifter~README.md", @@ -19282,11 +28864,33 @@ "_homepage": "https://testinfra.readthedocs.io", "_description": "pytest-testinfra: Testinfra test your infrastructures", "_organization": "pytest-dev", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-10T00:00:00.000Z", "_created_at": "2015-03-15T00:00:00.000Z", - "_age_weeks": 403, - "_stars_per_week": 5.29, + "_age_weeks": 405, + "_stars_per_week": 5.26, + "_pop_contributor_count": 121, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "lowatt", + "redhatansible" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.54, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 94, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 16.0, + "_pop_comment_count": 18.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 123, + "_pop_score": 49.17, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest-testinfra/master/README.rst", "_readme_localurl": "pytest-dev~pytest-testinfra~README.rst", @@ -19312,7 +28916,7 @@ "description": null, "_repopath": "flipkart-incubator/astra", "_reponame": "Astra", - "_stars": 2126, + "_stars": 2129, "_forks": 356, "_watches": 84, "_topics": [ @@ -19331,11 +28935,33 @@ "_homepage": "", "_description": "Astra: Automated Security Testing For REST API's", "_organization": "flipkart-incubator", - "_updated_at": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2019-04-05T00:00:00.000Z", "_created_at": "2018-01-10T00:00:00.000Z", - "_age_weeks": 256, - "_stars_per_week": 8.3, + "_age_weeks": 257, + "_stars_per_week": 8.26, + "_pop_contributor_count": 11, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "aarhusuni", + "myntradesignspvtltd" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 60, + "_pop_updated_since_days": 45, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 20, + "_pop_score": 22.01, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/flipkart-incubator/astra/master/README.md", "_readme_localurl": "flipkart-incubator~astra~README.md", @@ -19358,19 +28984,40 @@ "description": null, "_repopath": "google/earthengine-api", "_reponame": "earthengine-api", - "_stars": 2082, - "_forks": 888, + "_stars": 2093, + "_forks": 892, "_watches": 204, "_topics": [], "_language": "JavaScript", "_homepage": "", "_description": "earthengine-api: Python and JavaScript bindings for calling the Earth Engine API.", "_organization": "google", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2015-04-22T00:00:00.000Z", - "_age_weeks": 398, - "_stars_per_week": 5.23, + "_age_weeks": 399, + "_stars_per_week": 5.24, + "_pop_contributor_count": 36, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 93, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 32, + "_pop_recent_releases_adjusted_count": 32, + "_pop_issue_count": 7.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 9, + "_pop_score": 38.7, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google/earthengine-api/master/README.md", "_readme_localurl": "google~earthengine-api~README.md", @@ -19378,6 +29025,84 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, + { + "index": 878, + "category": "time-series", + "githuburl": "https://github.com/nixtla/statsforecast", + "featured": null, + "links": null, + "description": null, + "_repopath": "nixtla/statsforecast", + "_reponame": "statsforecast", + "_stars": 2070, + "_forks": 119, + "_watches": 19, + "_topics": [ + "time-series", + "statistics", + "forecasting", + "arima", + "econometrics", + "machine-learning", + "python", + "exponential-smoothing", + "ets", + "baselines", + "predictions", + "naive", + "seasonal-naive", + "fbprophet", + "prophet", + "neuralprophet", + "mstl", + "theta", + "automl", + "data-science" + ], + "_language": "Python", + "_homepage": "https://nixtla.github.io/statsforecast/", + "_description": "statsforecast: Lightning \u26a1\ufe0f fast forecasting with statistical and econometric models.", + "_organization": "nixtla", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2021-11-24T00:00:00.000Z", + "_age_weeks": 55, + "_stars_per_week": 37.15, + "_pop_contributor_count": 16, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "nixtla", + "nubank" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 16.48, + "_pop_updated_issues_count": 124, + "_pop_closed_issues_count": 103, + "_pop_created_since_days": 13, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 22, + "_pop_recent_releases_estimated_tags": 23, + "_pop_recent_releases_adjusted_count": 22, + "_pop_issue_count": 124.0, + "_pop_comment_count": 148.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 28, + "_pop_score": 46.08, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nixtla/statsforecast/master/README.md", + "_readme_localurl": "nixtla~statsforecast~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/nixtla/statsforecast/master/setup.py" + ], + "_requirements_localurls": [ + "nixtla~statsforecast~setup.py" + ] + }, { "index": 222, "category": "data", @@ -19387,7 +29112,7 @@ "description": null, "_repopath": "pynamodb/pynamodb", "_reponame": "PynamoDB", - "_stars": 2048, + "_stars": 2060, "_forks": 411, "_watches": 41, "_topics": [ @@ -19399,11 +29124,33 @@ "_homepage": "http://pynamodb.readthedocs.io", "_description": "PynamoDB: A pythonic interface to Amazon's DynamoDB", "_organization": "pynamodb", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2014-01-20T00:00:00.000Z", - "_age_weeks": 463, - "_stars_per_week": 4.42, + "_age_weeks": 465, + "_stars_per_week": 4.43, + "_pop_contributor_count": 100, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "lyft", + "openeyescientificsoftware" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.87, + "_pop_updated_issues_count": 114, + "_pop_closed_issues_count": 93, + "_pop_created_since_days": 108, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 114.0, + "_pop_comment_count": 177.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 72, + "_pop_score": 53.16, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pynamodb/pynamodb/master/README.rst", "_readme_localurl": "pynamodb~pynamodb~README.rst", @@ -19417,51 +29164,6 @@ "pynamodb~pynamodb~setup.py" ] }, - { - "index": 198, - "category": "ml", - "githuburl": "https://github.com/maif/shapash", - "featured": null, - "links": null, - "description": null, - "_repopath": "maif/shapash", - "_reponame": "shapash", - "_stars": 2044, - "_forks": 251, - "_watches": 38, - "_topics": [ - "python", - "machine-learning", - "explainability", - "explainable-ml", - "transparency", - "ethical-artificial-intelligence", - "shap", - "lime", - "interpretability" - ], - "_language": "Jupyter Notebook", - "_homepage": "https://maif.github.io/shapash/", - "_description": "shapash: \ud83d\udd05 Shapash makes Machine Learning models transparent and understandable by everyone", - "_organization": "maif", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", - "_created_at": "2020-04-29T00:00:00.000Z", - "_age_weeks": 136, - "_stars_per_week": 15.03, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/maif/shapash/master/README.md", - "_readme_localurl": "maif~shapash~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/maif/shapash/master/setup.py" - ], - "_requirements_localurls": [ - "maif~shapash~setup.py" - ] - }, { "index": 268, "category": "jupyter", @@ -19471,9 +29173,9 @@ "description": null, "_repopath": "jupyterlab/jupyterlab-desktop", "_reponame": "jupyterlab-desktop", - "_stars": 2038, - "_forks": 211, - "_watches": 43, + "_stars": 2059, + "_forks": 213, + "_watches": 40, "_topics": [ "jupyterlab", "jupyter", @@ -19483,11 +29185,33 @@ "_homepage": "", "_description": "jupyterlab-desktop: JupyterLab desktop application, based on Electron.", "_organization": "jupyterlab", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2017-05-04T00:00:00.000Z", - "_age_weeks": 291, - "_stars_per_week": 6.98, + "_age_weeks": 293, + "_stars_per_week": 7.01, + "_pop_contributor_count": 33, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "fermiumlabssrl(fermiumlabs)", + "netflix" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.94, + "_pop_updated_issues_count": 66, + "_pop_closed_issues_count": 45, + "_pop_created_since_days": 68, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 66.0, + "_pop_comment_count": 99.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 2, + "_pop_score": 43.75, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jupyterlab/jupyterlab-desktop/master/README.md", "_readme_localurl": "jupyterlab~jupyterlab-desktop~README.md", @@ -19495,48 +29219,6 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, - { - "index": 860, - "category": "jupyter", - "githuburl": "https://github.com/jupyter/nbviewer", - "featured": null, - "links": null, - "description": null, - "_repopath": "jupyter/nbviewer", - "_reponame": "nbviewer", - "_stars": 2031, - "_forks": 530, - "_watches": 92, - "_topics": [ - "jupyter", - "jupyter-notebook", - "nbconvert" - ], - "_language": "Python", - "_homepage": "https://nbviewer.jupyter.org", - "_description": "nbviewer: nbconvert as a web service: Render Jupyter Notebooks as static web pages", - "_organization": "jupyter", - "_updated_at": "2022-11-30T00:00:00.000Z", - "_last_commit_date": "2022-11-07T00:00:00.000Z", - "_created_at": "2012-08-05T00:00:00.000Z", - "_age_weeks": 539, - "_stars_per_week": 3.77, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/jupyter/nbviewer/master/README.md", - "_readme_localurl": "jupyter~nbviewer~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/jupyter/nbviewer/master/requirements.txt", - "https://raw.githubusercontent.com/jupyter/nbviewer/master/setup.py" - ], - "_requirements_localurls": [ - "jupyter~nbviewer~requirements.txt", - "jupyter~nbviewer~setup.py" - ] - }, { "index": 867, "category": "util", @@ -19546,9 +29228,9 @@ "description": null, "_repopath": "dosisod/refurb", "_reponame": "refurb", - "_stars": 2027, - "_forks": 34, - "_watches": 14, + "_stars": 2055, + "_forks": 35, + "_watches": 15, "_topics": [ "cli", "mypy", @@ -19562,11 +29244,34 @@ "_homepage": "", "_description": "refurb: A tool for refurbishing and modernizing Python codebases", "_organization": "dosisod", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2022-07-27T00:00:00.000Z", - "_age_weeks": 19, - "_stars_per_week": 106.68, + "_age_weeks": 20, + "_stars_per_week": 99.21, + "_pop_contributor_count": 8, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "grupoboticario", + "hotjar", + "resgroup" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.46, + "_pop_updated_issues_count": 153, + "_pop_closed_issues_count": 139, + "_pop_created_since_days": 5, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 34, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 153.0, + "_pop_comment_count": 162.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 5, + "_pop_score": 36.99, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/dosisod/refurb/master/README.md", "_readme_localurl": "dosisod~refurb~README.md", @@ -19580,6 +29285,73 @@ "dosisod~refurb~pyproject.toml" ] }, + { + "index": 198, + "category": "ml", + "githuburl": "https://github.com/maif/shapash", + "featured": null, + "links": null, + "description": null, + "_repopath": "maif/shapash", + "_reponame": "shapash", + "_stars": 2053, + "_forks": 253, + "_watches": 37, + "_topics": [ + "python", + "machine-learning", + "explainability", + "explainable-ml", + "transparency", + "ethical-artificial-intelligence", + "shap", + "lime", + "interpretability" + ], + "_language": "Jupyter Notebook", + "_homepage": "https://maif.github.io/shapash/", + "_description": "shapash: \ud83d\udd05 Shapash makes Machine Learning models transparent and understandable by everyone", + "_organization": "maif", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-02T00:00:00.000Z", + "_created_at": "2020-04-29T00:00:00.000Z", + "_age_weeks": 137, + "_stars_per_week": 14.91, + "_pop_contributor_count": 35, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "helsing", + "maif" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.9, + "_pop_updated_issues_count": 34, + "_pop_closed_issues_count": 30, + "_pop_created_since_days": 32, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 34.0, + "_pop_comment_count": 15.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 12, + "_pop_score": 39.96, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/maif/shapash/master/README.md", + "_readme_localurl": "maif~shapash~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/maif/shapash/master/setup.py" + ], + "_requirements_localurls": [ + "maif~shapash~setup.py" + ] + }, { "index": 724, "category": "util", @@ -19589,9 +29361,9 @@ "description": null, "_repopath": "ashleve/lightning-hydra-template", "_reponame": "lightning-hydra-template", - "_stars": 2014, - "_forks": 334, - "_watches": 18, + "_stars": 2051, + "_forks": 343, + "_watches": 19, "_topics": [ "pytorch-lightning", "wandb", @@ -19616,11 +29388,32 @@ "_homepage": "", "_description": "lightning-hydra-template: PyTorch Lightning + Hydra. A very user-friendly template for rapid and reproducible ML experimentation with best practices. \u26a1\ud83d\udd25\u26a1", "_organization": "ashleve", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-11T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2020-11-04T00:00:00.000Z", - "_age_weeks": 109, - "_stars_per_week": 18.48, + "_age_weeks": 110, + "_stars_per_week": 18.53, + "_pop_contributor_count": 26, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "hunanuniversity" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.81, + "_pop_updated_issues_count": 46, + "_pop_closed_issues_count": 38, + "_pop_created_since_days": 26, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 46.0, + "_pop_comment_count": 49.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 7, + "_pop_score": 36.9, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/README.md", "_readme_localurl": "ashleve~lightning-hydra-template~README.md", @@ -19641,59 +29434,69 @@ ] }, { - "index": 878, - "category": "time-series", - "githuburl": "https://github.com/nixtla/statsforecast", + "index": 860, + "category": "jupyter", + "githuburl": "https://github.com/jupyter/nbviewer", "featured": null, "links": null, "description": null, - "_repopath": "nixtla/statsforecast", - "_reponame": "statsforecast", - "_stars": 2009, - "_forks": 117, - "_watches": 20, + "_repopath": "jupyter/nbviewer", + "_reponame": "nbviewer", + "_stars": 2035, + "_forks": 530, + "_watches": 92, "_topics": [ - "time-series", - "statistics", - "forecasting", - "arima", - "econometrics", - "machine-learning", - "python", - "exponential-smoothing", - "auto-arima", - "ets", - "baselines", - "predictions", - "naive", - "seasonal-naive", - "fbprophet", - "prophet", - "neuralprophet", - "autoarima", - "mstl", - "theta" + "jupyter", + "jupyter-notebook", + "nbconvert" ], "_language": "Python", - "_homepage": "https://nixtla.github.io/statsforecast/", - "_description": "statsforecast: Lightning \u26a1\ufe0f fast forecasting with statistical and econometric models.", - "_organization": "nixtla", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2021-11-24T00:00:00.000Z", - "_age_weeks": 54, - "_stars_per_week": 37.2, + "_homepage": "https://nbviewer.jupyter.org", + "_description": "nbviewer: nbconvert as a web service: Render Jupyter Notebooks as static web pages", + "_organization": "jupyter", + "_updated_at": "2022-12-10T00:00:00.000Z", + "_last_commit_date": "2022-11-07T00:00:00.000Z", + "_created_at": "2012-08-05T00:00:00.000Z", + "_age_weeks": 541, + "_stars_per_week": 3.76, + "_pop_contributor_count": 92, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "noteable-io", + "quansight-labs", + "simularesearchlaboratory", + "wearethorn" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.25, + "_pop_updated_issues_count": 22, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 126, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 22.0, + "_pop_comment_count": 21.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 240, + "_pop_score": 48.67, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nixtla/statsforecast/master/README.md", - "_readme_localurl": "nixtla~statsforecast~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/jupyter/nbviewer/master/README.md", + "_readme_localurl": "jupyter~nbviewer~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/nixtla/statsforecast/master/setup.py" + "https://raw.githubusercontent.com/jupyter/nbviewer/master/requirements.txt", + "https://raw.githubusercontent.com/jupyter/nbviewer/master/setup.py" ], "_requirements_localurls": [ - "nixtla~statsforecast~setup.py" + "jupyter~nbviewer~requirements.txt", + "jupyter~nbviewer~setup.py" ] }, { @@ -19705,8 +29508,8 @@ "description": null, "_repopath": "yaml/pyyaml", "_reponame": "pyyaml", - "_stars": 1999, - "_forks": 420, + "_stars": 2007, + "_forks": 423, "_watches": 46, "_topics": [ "python", @@ -19716,11 +29519,34 @@ "_homepage": "", "_description": "pyyaml: Canonical source repository for PyYAML", "_organization": "yaml", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-09-13T00:00:00.000Z", "_created_at": "2011-11-03T00:00:00.000Z", - "_age_weeks": 578, - "_stars_per_week": 3.45, + "_age_weeks": 580, + "_stars_per_week": 3.46, + "_pop_contributor_count": 40, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ansible", + "newfolddigital/bluehost", + "suse" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 36, + "_pop_closed_issues_count": 9, + "_pop_created_since_days": 135, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 36.0, + "_pop_comment_count": 33.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 6927, + "_pop_score": 51.03, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/yaml/pyyaml/master/README.md", "_readme_localurl": "yaml~pyyaml~README.md", @@ -19737,6 +29563,59 @@ "yaml~pyyaml~pyproject.toml" ] }, + { + "index": 748, + "category": "study", + "githuburl": "https://github.com/zhanymkanov/fastapi-best-practices", + "featured": null, + "links": null, + "description": null, + "_repopath": "zhanymkanov/fastapi-best-practices", + "_reponame": "fastapi-best-practices", + "_stars": 2006, + "_forks": 134, + "_watches": 36, + "_topics": [ + "fastapi", + "best-practices" + ], + "_language": null, + "_homepage": "", + "_description": "fastapi-best-practices: FastAPI Best Practices and Conventions we used @ hi.peerlink.me", + "_organization": "zhanymkanov", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-09-16T00:00:00.000Z", + "_created_at": "2022-08-09T00:00:00.000Z", + "_age_weeks": 18, + "_stars_per_week": 106.38, + "_pop_contributor_count": 3, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "viaprotocol" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.81, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 4, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 9.0, + "_pop_comment_count": 25.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 0, + "_pop_score": 17.0, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/zhanymkanov/fastapi-best-practices/master/README.md", + "_readme_localurl": "zhanymkanov~fastapi-best-practices~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 881, "category": "time-series", @@ -19746,7 +29625,7 @@ "description": null, "_repopath": "rjt1990/pyflux", "_reponame": "pyflux", - "_stars": 1998, + "_stars": 2001, "_forks": 233, "_watches": 70, "_topics": [ @@ -19757,11 +29636,33 @@ "_homepage": null, "_description": "pyflux: Open source time series library for Python", "_organization": "rjt1990", - "_updated_at": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2018-12-16T00:00:00.000Z", "_created_at": "2016-02-16T00:00:00.000Z", - "_age_weeks": 355, - "_stars_per_week": 5.63, + "_age_weeks": 356, + "_stars_per_week": 5.61, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "gitter", + "pinseekerinc" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 83, + "_pop_updated_since_days": 49, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 8, + "_pop_score": 19.45, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/rjt1990/pyflux/master/README.md", "_readme_localurl": "rjt1990~pyflux~README.md", @@ -19778,38 +29679,6 @@ "rjt1990~pyflux~setup.py" ] }, - { - "index": 748, - "category": "study", - "githuburl": "https://github.com/zhanymkanov/fastapi-best-practices", - "featured": null, - "links": null, - "description": null, - "_repopath": "zhanymkanov/fastapi-best-practices", - "_reponame": "fastapi-best-practices", - "_stars": 1962, - "_forks": 127, - "_watches": 35, - "_topics": [ - "fastapi", - "best-practices" - ], - "_language": null, - "_homepage": "", - "_description": "fastapi-best-practices: FastAPI Best Practices and Conventions we used @ hi.peerlink.me", - "_organization": "zhanymkanov", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-09-16T00:00:00.000Z", - "_created_at": "2022-08-09T00:00:00.000Z", - "_age_weeks": 17, - "_stars_per_week": 114.45, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/zhanymkanov/fastapi-best-practices/master/README.md", - "_readme_localurl": "zhanymkanov~fastapi-best-practices~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 548, "category": "ml", @@ -19819,8 +29688,8 @@ "description": null, "_repopath": "lightly-ai/lightly", "_reponame": "lightly", - "_stars": 1952, - "_forks": 159, + "_stars": 1976, + "_forks": 164, "_watches": 25, "_topics": [ "deep-learning", @@ -19836,11 +29705,32 @@ "_homepage": "", "_description": "lightly: A python library for self-supervised learning on images.", "_organization": "lightly-ai", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2020-10-13T00:00:00.000Z", - "_age_weeks": 112, - "_stars_per_week": 17.41, + "_age_weeks": 113, + "_stars_per_week": 17.36, + "_pop_contributor_count": 21, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "lightly" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.62, + "_pop_updated_issues_count": 92, + "_pop_closed_issues_count": 78, + "_pop_created_since_days": 27, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 38, + "_pop_recent_releases_estimated_tags": 33, + "_pop_recent_releases_adjusted_count": 38, + "_pop_issue_count": 92.0, + "_pop_comment_count": 133.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 22, + "_pop_score": 44.7, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/lightly-ai/lightly/master/README.md", "_readme_localurl": "lightly-ai~lightly~README.md", @@ -19854,6 +29744,80 @@ "lightly-ai~lightly~setup.py" ] }, + { + "index": 813, + "category": "data", + "githuburl": "https://github.com/datafold/data-diff", + "featured": null, + "links": null, + "description": null, + "_repopath": "datafold/data-diff", + "_reponame": "data-diff", + "_stars": 1953, + "_forks": 88, + "_watches": 14, + "_topics": [ + "database", + "mysql", + "postgresql", + "snowflake", + "rdbms", + "trino", + "data-engineering", + "data-quality", + "data-science", + "data-quality-monitoring", + "databricks-sql", + "dataengineering", + "dataquality", + "oracle-database", + "postgres", + "sql" + ], + "_language": "Python", + "_homepage": "https://www.datafold.com/blog/open-source-data-diff", + "_description": "data-diff: Efficiently diff data in or across relational databases", + "_organization": "datafold", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2022-03-07T00:00:00.000Z", + "_age_weeks": 41, + "_stars_per_week": 47.63, + "_pop_contributor_count": 25, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "datafold", + "webscaleinc" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 13.75, + "_pop_updated_issues_count": 139, + "_pop_closed_issues_count": 117, + "_pop_created_since_days": 10, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 16, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 139.0, + "_pop_comment_count": 220.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 4, + "_pop_score": 43.21, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/datafold/data-diff/master/README.md", + "_readme_localurl": "datafold~data-diff~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/datafold/data-diff/master/pyproject.toml" + ], + "_requirements_localurls": [ + "datafold~data-diff~pyproject.toml" + ] + }, { "index": 323, "category": "gui", @@ -19863,7 +29827,7 @@ "description": null, "_repopath": "wxwidgets/phoenix", "_reponame": "Phoenix", - "_stars": 1905, + "_stars": 1911, "_forks": 488, "_watches": 105, "_topics": [ @@ -19883,11 +29847,32 @@ "_homepage": "http://wxpython.org/", "_description": "Phoenix: wxPython's Project Phoenix. A new implementation of wxPython, better, stronger, faster than he was before.", "_organization": "wxwidgets", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-11-10T00:00:00.000Z", "_created_at": "2012-07-17T00:00:00.000Z", - "_age_weeks": 542, + "_age_weeks": 543, "_stars_per_week": 3.51, + "_pop_contributor_count": 123, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "self;independant" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.96, + "_pop_updated_issues_count": 79, + "_pop_closed_issues_count": 45, + "_pop_created_since_days": 127, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 79.0, + "_pop_comment_count": 141.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 133, + "_pop_score": 49.57, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/wxwidgets/phoenix/master/README.rst", "_readme_localurl": "wxwidgets~phoenix~README.rst", @@ -19913,8 +29898,8 @@ "description": null, "_repopath": "hgrecco/pint", "_reponame": "pint", - "_stars": 1891, - "_forks": 405, + "_stars": 1895, + "_forks": 407, "_watches": 40, "_topics": [ "python", @@ -19925,11 +29910,30 @@ "_homepage": "http://pint.readthedocs.org/", "_description": "pint: Operate and manipulate physical quantities in Python", "_organization": "hgrecco", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-11-29T00:00:00.000Z", "_created_at": "2012-07-13T00:00:00.000Z", - "_age_weeks": 542, + "_age_weeks": 544, "_stars_per_week": 3.48, + "_pop_contributor_count": 181, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.02, + "_pop_updated_issues_count": 135, + "_pop_closed_issues_count": 73, + "_pop_created_since_days": 127, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 135.0, + "_pop_comment_count": 335.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 462, + "_pop_score": 52.75, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/hgrecco/pint/master/README.rst", "_readme_localurl": "hgrecco~pint~README.rst", @@ -19955,7 +29959,7 @@ "description": null, "_repopath": "ethereum/py-evm", "_reponame": "py-evm", - "_stars": 1878, + "_stars": 1886, "_forks": 576, "_watches": 98, "_topics": [ @@ -19968,11 +29972,32 @@ "_homepage": "https://py-evm.readthedocs.io/en/latest/", "_description": "py-evm: A Python implementation of the Ethereum Virtual Machine", "_organization": "ethereum", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-14T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2016-12-27T00:00:00.000Z", - "_age_weeks": 310, - "_stars_per_week": 6.06, + "_age_weeks": 311, + "_stars_per_week": 6.05, + "_pop_contributor_count": 80, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ethereumfoundation" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.71, + "_pop_updated_issues_count": 13, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 73, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 17, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 13.0, + "_pop_comment_count": 4.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 107, + "_pop_score": 44.85, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ethereum/py-evm/master/README.md", "_readme_localurl": "ethereum~py-evm~README.md", @@ -19998,8 +30023,8 @@ "description": null, "_repopath": "seldonio/alibi", "_reponame": "alibi", - "_stars": 1868, - "_forks": 213, + "_stars": 1880, + "_forks": 212, "_watches": 43, "_topics": [ "machine-learning", @@ -20012,11 +30037,32 @@ "_homepage": "https://docs.seldon.io/projects/alibi/en/stable/", "_description": "alibi: Algorithms for explaining machine learning models", "_organization": "seldonio", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-24T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2019-02-26T00:00:00.000Z", - "_age_weeks": 197, - "_stars_per_week": 9.48, + "_age_weeks": 198, + "_stars_per_week": 9.45, + "_pop_contributor_count": 18, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "datascienceseldonio" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.52, + "_pop_updated_issues_count": 84, + "_pop_closed_issues_count": 61, + "_pop_created_since_days": 46, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 84.0, + "_pop_comment_count": 108.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 12, + "_pop_score": 40.8, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/seldonio/alibi/master/README.md", "_readme_localurl": "seldonio~alibi~README.md", @@ -20039,7 +30085,7 @@ "description": null, "_repopath": "rasterio/rasterio", "_reponame": "rasterio", - "_stars": 1853, + "_stars": 1858, "_forks": 490, "_watches": 152, "_topics": [ @@ -20055,11 +30101,34 @@ "_homepage": "https://rasterio.readthedocs.io/", "_description": "Rasterio reads and writes geospatial raster datasets", "_organization": "rasterio", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2013-11-04T00:00:00.000Z", - "_age_weeks": 474, - "_stars_per_week": 3.91, + "_age_weeks": 476, + "_stars_per_week": 3.9, + "_pop_contributor_count": 140, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "astutespruce", + "corteva", + "planetlabs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.12, + "_pop_updated_issues_count": 228, + "_pop_closed_issues_count": 122, + "_pop_created_since_days": 111, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 18, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 228.0, + "_pop_comment_count": 254.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 102, + "_pop_score": 56.91, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/rasterio/rasterio/master/README.rst", "_readme_localurl": "rasterio~rasterio~README.rst", @@ -20080,90 +30149,86 @@ ] }, { - "index": 813, - "category": "data", - "githuburl": "https://github.com/datafold/data-diff", + "index": 755, + "category": "ml", + "githuburl": "https://github.com/marqo-ai/marqo", "featured": null, "links": null, "description": null, - "_repopath": "datafold/data-diff", - "_reponame": "data-diff", - "_stars": 1849, - "_forks": 81, - "_watches": 14, + "_repopath": "marqo-ai/marqo", + "_reponame": "marqo", + "_stars": 1852, + "_forks": 69, + "_watches": 23, "_topics": [ - "database", - "mysql", - "postgresql", - "snowflake", - "rdbms", - "trino", - "data-engineering", - "data-quality", - "data-science", - "data-quality-monitoring", - "databricks-sql", - "dataengineering", - "dataquality", - "oracle-database", - "postgres", - "sql" + "deep-learning", + "search", + "information-retrieval", + "machinelearning", + "vector-search", + "tensor-search", + "clip", + "multi-modal", + "search-engine", + "timm", + "transformers", + "vision-language", + "machine-learning", + "semantic-search", + "visual-search", + "natural-language-processing", + "hnsw", + "knn", + "hacktoberfest", + "hacktoberfest-accepted" ], "_language": "Python", - "_homepage": "https://www.datafold.com/blog/open-source-data-diff", - "_description": "data-diff: Efficiently diff data in or across relational databases", - "_organization": "datafold", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2022-03-07T00:00:00.000Z", - "_age_weeks": 39, - "_stars_per_week": 47.07, + "_homepage": "https://www.marqo.ai/", + "_description": "marqo: Tensor search for humans.", + "_organization": "marqo-ai", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2022-08-01T00:00:00.000Z", + "_age_weeks": 20, + "_stars_per_week": 92.6, + "_pop_contributor_count": 20, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "marqo-ai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 8.88, + "_pop_updated_issues_count": 196, + "_pop_closed_issues_count": 148, + "_pop_created_since_days": 5, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 195.0, + "_pop_comment_count": 147.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 9, + "_pop_score": 37.31, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/datafold/data-diff/master/README.md", - "_readme_localurl": "datafold~data-diff~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/marqo-ai/marqo/master/README.md", + "_readme_localurl": "marqo-ai~marqo~README.md", "_requirements_filenames": [ + "requirements.txt", + "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/datafold/data-diff/master/pyproject.toml" - ], - "_requirements_localurls": [ - "datafold~data-diff~pyproject.toml" - ] - }, - { - "index": 713, - "category": "gis", - "githuburl": "https://github.com/mcordts/cityscapesscripts", - "featured": null, - "links": null, - "description": null, - "_repopath": "mcordts/cityscapesscripts", - "_reponame": "cityscapesScripts", - "_stars": 1832, - "_forks": 565, - "_watches": 46, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "cityscapesScripts: README and scripts for the Cityscapes Dataset", - "_organization": "mcordts", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-10-22T00:00:00.000Z", - "_created_at": "2016-02-20T00:00:00.000Z", - "_age_weeks": 354, - "_stars_per_week": 5.17, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/mcordts/cityscapesscripts/master/README.md", - "_readme_localurl": "mcordts~cityscapesscripts~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/mcordts/cityscapesscripts/master/setup.py" + "https://raw.githubusercontent.com/marqo-ai/marqo/master/requirements.txt", + "https://raw.githubusercontent.com/marqo-ai/marqo/master/setup.py", + "https://raw.githubusercontent.com/marqo-ai/marqo/master/pyproject.toml" ], "_requirements_localurls": [ - "mcordts~cityscapesscripts~setup.py" + "marqo-ai~marqo~requirements.txt", + "marqo-ai~marqo~setup.py", + "marqo-ai~marqo~pyproject.toml" ] }, { @@ -20175,8 +30240,8 @@ "description": null, "_repopath": "pandera-dev/pandera", "_reponame": "pandera", - "_stars": 1829, - "_forks": 155, + "_stars": 1851, + "_forks": 156, "_watches": 12, "_topics": [ "pandas", @@ -20202,11 +30267,35 @@ "_homepage": "https://www.union.ai/pandera", "_description": "pandera: A light-weight, flexible, and expressive statistical data testing library", "_organization": "pandera-dev", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-14T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2018-11-01T00:00:00.000Z", - "_age_weeks": 213, - "_stars_per_week": 8.55, + "_age_weeks": 215, + "_stars_per_week": 8.59, + "_pop_contributor_count": 77, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "auxmoney", + "bcggamma", + "imperialcollegelondon", + "unionai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.23, + "_pop_updated_issues_count": 134, + "_pop_closed_issues_count": 83, + "_pop_created_since_days": 50, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 17, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 134.0, + "_pop_comment_count": 355.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 17, + "_pop_score": 53.8, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pandera-dev/pandera/master/README.md", "_readme_localurl": "pandera-dev~pandera~README.md", @@ -20224,15 +30313,195 @@ ] }, { - "index": 856, - "category": "profiling", + "index": 540, + "category": "nlp", + "githuburl": "https://github.com/salesforce/codegen", + "featured": null, + "links": null, + "description": null, + "_repopath": "salesforce/codegen", + "_reponame": "CodeGen", + "_stars": 1850, + "_forks": 137, + "_watches": 35, + "_topics": [ + "programsynthesis", + "generativemodel", + "codex", + "languagemodel", + "llm", + "tpu-acceleration" + ], + "_language": "Python", + "_homepage": "", + "_description": "CodeGen is an open-source model for program synthesis. Trained on TPU-v4. Competitive with OpenAI Codex.", + "_organization": "salesforce", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_created_at": "2022-03-28T00:00:00.000Z", + "_age_weeks": 38, + "_stars_per_week": 48.68, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "garnercorp" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.83, + "_pop_updated_issues_count": 21, + "_pop_closed_issues_count": 12, + "_pop_created_since_days": 9, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 21.0, + "_pop_comment_count": 47.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 2, + "_pop_score": 24.93, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/salesforce/codegen/master/README.md", + "_readme_localurl": "salesforce~codegen~README.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/salesforce/codegen/master/requirements.txt" + ], + "_requirements_localurls": [ + "salesforce~codegen~requirements.txt" + ] + }, + { + "index": 713, + "category": "gis", + "githuburl": "https://github.com/mcordts/cityscapesscripts", + "featured": null, + "links": null, + "description": null, + "_repopath": "mcordts/cityscapesscripts", + "_reponame": "cityscapesScripts", + "_stars": 1842, + "_forks": 565, + "_watches": 46, + "_topics": [], + "_language": "Python", + "_homepage": null, + "_description": "cityscapesScripts: README and scripts for the Cityscapes Dataset", + "_organization": "mcordts", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-10-22T00:00:00.000Z", + "_created_at": "2016-02-20T00:00:00.000Z", + "_age_weeks": 356, + "_stars_per_week": 5.17, + "_pop_contributor_count": 17, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "daimlerag", + "facebookairesearch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 83, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 7.0, + "_pop_comment_count": 4.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 8, + "_pop_score": 29.71, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/mcordts/cityscapesscripts/master/README.md", + "_readme_localurl": "mcordts~cityscapesscripts~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/mcordts/cityscapesscripts/master/setup.py" + ], + "_requirements_localurls": [ + "mcordts~cityscapesscripts~setup.py" + ] + }, + { + "index": 871, + "category": "profiling", + "githuburl": "https://github.com/reloadware/reloadium", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "reloadware/reloadium", + "_reponame": "reloadium", + "_stars": 1836, + "_forks": 27, + "_watches": 24, + "_topics": [ + "hot-reload", + "hot-reloading", + "python", + "python3", + "edit-and-continue", + "django", + "flask", + "pandas" + ], + "_language": "Python", + "_homepage": "https://reloadium.io", + "_description": "reloadium: Advanced Hot Reloading & Profiling for Python", + "_organization": "reloadware", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-11-29T00:00:00.000Z", + "_created_at": "2022-01-15T00:00:00.000Z", + "_age_weeks": 48, + "_stars_per_week": 38.02, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bytelogics", + "reloadware" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.71, + "_pop_updated_issues_count": 38, + "_pop_closed_issues_count": 31, + "_pop_created_since_days": 11, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 38.0, + "_pop_comment_count": 103.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 0, + "_pop_score": 27.68, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/reloadware/reloadium/master/README.rst", + "_readme_localurl": "reloadware~reloadium~README.rst", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 856, + "category": "profiling", "githuburl": "https://github.com/jiffyclub/snakeviz", "featured": null, "links": null, "description": null, "_repopath": "jiffyclub/snakeviz", "_reponame": "snakeviz", - "_stars": 1823, + "_stars": 1827, "_forks": 128, "_watches": 22, "_topics": [], @@ -20240,11 +30509,34 @@ "_homepage": "https://jiffyclub.github.io/snakeviz/", "_description": "snakeviz: An in-browser Python profile viewer", "_organization": "jiffyclub", - "_updated_at": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2021-10-25T00:00:00.000Z", "_created_at": "2012-06-26T00:00:00.000Z", - "_age_weeks": 545, + "_age_weeks": 546, "_stars_per_week": 3.34, + "_pop_contributor_count": 24, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "nvidia", + "populus-ai", + "universityofwisconsin-madison" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 128, + "_pop_updated_since_days": 14, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 10.0, + "_pop_comment_count": 12.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 24, + "_pop_score": 34.66, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/jiffyclub/snakeviz/master/README.rst", "_readme_localurl": "jiffyclub~snakeviz~README.rst", @@ -20267,19 +30559,41 @@ "description": null, "_repopath": "uqfoundation/dill", "_reponame": "dill", - "_stars": 1814, - "_forks": 149, + "_stars": 1822, + "_forks": 151, "_watches": 22, "_topics": [], "_language": "Python", "_homepage": "http://dill.rtfd.io", "_description": "dill: serialize all of python", "_organization": "uqfoundation", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-10-26T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2013-06-28T00:00:00.000Z", - "_age_weeks": 492, - "_stars_per_week": 3.68, + "_age_weeks": 494, + "_stars_per_week": 3.69, + "_pop_contributor_count": 39, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amphybio-universityofs\u00e3opaulo,medicalschool", + "uqfoundation" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.94, + "_pop_updated_issues_count": 40, + "_pop_closed_issues_count": 19, + "_pop_created_since_days": 115, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 40.0, + "_pop_comment_count": 57.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 514, + "_pop_score": 51.1, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/uqfoundation/dill/master/README.md", "_readme_localurl": "uqfoundation~dill~README.md", @@ -20305,8 +30619,8 @@ "description": null, "_repopath": "maartenbreddels/ipyvolume", "_reponame": "ipyvolume", - "_stars": 1807, - "_forks": 233, + "_stars": 1811, + "_forks": 234, "_watches": 53, "_topics": [ "ipython-widget", @@ -20328,11 +30642,35 @@ "_homepage": "", "_description": "ipyvolume: 3d plotting for Python in the Jupyter notebook based on IPython widgets using WebGL", "_organization": "maartenbreddels", - "_updated_at": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-07-26T00:00:00.000Z", "_created_at": "2016-12-21T00:00:00.000Z", - "_age_weeks": 311, - "_stars_per_week": 5.81, + "_age_weeks": 312, + "_stars_per_week": 5.79, + "_pop_contributor_count": 41, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "imperialcollegelondon", + "maartenbreddels", + "monashuniversity", + "surf" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 73, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 8.0, + "_pop_comment_count": 8.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 97, + "_pop_score": 41.53, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/maartenbreddels/ipyvolume/master/README.md", "_readme_localurl": "maartenbreddels~ipyvolume~README.md", @@ -20349,48 +30687,6 @@ "maartenbreddels~ipyvolume~pyproject.toml" ] }, - { - "index": 540, - "category": "nlp", - "githuburl": "https://github.com/salesforce/codegen", - "featured": null, - "links": null, - "description": null, - "_repopath": "salesforce/codegen", - "_reponame": "CodeGen", - "_stars": 1805, - "_forks": 133, - "_watches": 35, - "_topics": [ - "programsynthesis", - "generativemodel", - "codex", - "languagemodel", - "llm", - "tpu-acceleration" - ], - "_language": "Python", - "_homepage": "", - "_description": "CodeGen is an open-source model for program synthesis. Trained on TPU-v4. Competitive with OpenAI Codex.", - "_organization": "salesforce", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", - "_created_at": "2022-03-28T00:00:00.000Z", - "_age_weeks": 36, - "_stars_per_week": 49.74, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/salesforce/codegen/master/README.md", - "_readme_localurl": "salesforce~codegen~README.md", - "_requirements_filenames": [ - "requirements.txt" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/salesforce/codegen/master/requirements.txt" - ], - "_requirements_localurls": [ - "salesforce~codegen~requirements.txt" - ] - }, { "index": 115, "category": "perf", @@ -20400,19 +30696,43 @@ "description": null, "_repopath": "h5py/h5py", "_reponame": "h5py", - "_stars": 1799, - "_forks": 479, + "_stars": 1806, + "_forks": 478, "_watches": 55, "_topics": [], "_language": "Python", "_homepage": "http://www.h5py.org", "_description": "h5py: HDF5 for Python -- The h5py package is a Pythonic interface to the HDF5 binary data format.", "_organization": "h5py", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-24T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2012-09-21T00:00:00.000Z", - "_age_weeks": 532, + "_age_weeks": 534, "_stars_per_week": 3.38, + "_pop_contributor_count": 190, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "brookhavennationallab", + "departmentofphysicsandastronomy,macquarieuniversity", + "enthought", + "esrf" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.48, + "_pop_updated_issues_count": 70, + "_pop_closed_issues_count": 41, + "_pop_created_since_days": 125, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 70.0, + "_pop_comment_count": 208.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 791, + "_pop_score": 61.34, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/h5py/h5py/master/README.rst", "_readme_localurl": "h5py~h5py~README.rst", @@ -20430,54 +30750,69 @@ ] }, { - "index": 601, - "category": "gis", - "githuburl": "https://github.com/plant99/felicette", + "index": 506, + "category": "ml-ops", + "githuburl": "https://github.com/adap/flower", "featured": null, "links": null, "description": null, - "_repopath": "plant99/felicette", - "_reponame": "felicette", - "_stars": 1792, - "_forks": 86, - "_watches": 38, + "_repopath": "adap/flower", + "_reponame": "flower", + "_stars": 1800, + "_forks": 390, + "_watches": 24, "_topics": [ - "geospatial-data", - "gis", - "geospatial-visualization", - "geospatial", - "python", - "python3", - "geoinformatics", - "earth-observation", - "earth-science", - "satellite-imagery", - "satellite-images", - "satellite-data" + "flower", + "federated-learning", + "federated-learning-framework", + "pytorch-federated-learning", + "tensorflow-federated-learning", + "keras-federated-learning", + "federated-analytics", + "fleet-learning", + "fleet-intelligence" ], "_language": "Python", - "_homepage": "", - "_description": "felicette: Satellite imagery for dummies.", - "_organization": "plant99", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2021-09-08T00:00:00.000Z", - "_created_at": "2020-07-12T00:00:00.000Z", - "_age_weeks": 125, - "_stars_per_week": 14.29, + "_homepage": "https://flower.dev", + "_description": "Flower - A Friendly Federated Learning Framework", + "_organization": "adap", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2020-02-17T00:00:00.000Z", + "_age_weeks": 148, + "_stars_per_week": 12.16, + "_pop_contributor_count": 51, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "adapgmbh" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.63, + "_pop_updated_issues_count": 99, + "_pop_closed_issues_count": 67, + "_pop_created_since_days": 34, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 99.0, + "_pop_comment_count": 59.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 18, + "_pop_score": 42.5, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/plant99/felicette/master/README.md", - "_readme_localurl": "plant99~felicette~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/adap/flower/master/README.md", + "_readme_localurl": "adap~flower~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/plant99/felicette/master/requirements.txt", - "https://raw.githubusercontent.com/plant99/felicette/master/setup.py" + "https://raw.githubusercontent.com/adap/flower/master/pyproject.toml" ], "_requirements_localurls": [ - "plant99~felicette~requirements.txt", - "plant99~felicette~setup.py" + "adap~flower~pyproject.toml" ] }, { @@ -20489,7 +30824,7 @@ "description": null, "_repopath": "grahamdumpleton/wrapt", "_reponame": "wrapt", - "_stars": 1790, + "_stars": 1793, "_forks": 208, "_watches": 45, "_topics": [], @@ -20497,11 +30832,34 @@ "_homepage": "", "_description": "wrapt: A Python module for decorators, wrappers and monkey patching.", "_organization": "grahamdumpleton", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-10-28T00:00:00.000Z", "_created_at": "2013-05-29T00:00:00.000Z", - "_age_weeks": 497, + "_age_weeks": 498, "_stars_per_week": 3.6, + "_pop_contributor_count": 25, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "embl,zellerlab", + "georgiatech", + "scampersand" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.4, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 116, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 5.0, + "_pop_comment_count": 8.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 1101, + "_pop_score": 47.52, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/grahamdumpleton/wrapt/master/README.rst", "_readme_localurl": "grahamdumpleton~wrapt~README.rst", @@ -20516,42 +30874,79 @@ ] }, { - "index": 871, - "category": "profiling", - "githuburl": "https://github.com/reloadware/reloadium", - "featured": 1.0, + "index": 601, + "category": "gis", + "githuburl": "https://github.com/plant99/felicette", + "featured": null, "links": null, "description": null, - "_repopath": "reloadware/reloadium", - "_reponame": "reloadium", - "_stars": 1783, - "_forks": 26, - "_watches": 23, + "_repopath": "plant99/felicette", + "_reponame": "felicette", + "_stars": 1792, + "_forks": 85, + "_watches": 38, "_topics": [ - "hot-reload", - "hot-reloading", + "geospatial-data", + "gis", + "geospatial-visualization", + "geospatial", "python", "python3", - "edit-and-continue", - "django", - "flask", - "pandas" + "geoinformatics", + "earth-observation", + "earth-science", + "satellite-imagery", + "satellite-images", + "satellite-data" ], "_language": "Python", - "_homepage": "https://reloadium.io", - "_description": "reloadium: Advanced Hot Reloading & Profiling for Python", - "_organization": "reloadware", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", - "_created_at": "2022-01-15T00:00:00.000Z", - "_age_weeks": 46, - "_stars_per_week": 38.29, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/reloadware/reloadium/master/README.rst", - "_readme_localurl": "reloadware~reloadium~README.rst", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_homepage": "", + "_description": "felicette: Satellite imagery for dummies.", + "_organization": "plant99", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2021-09-08T00:00:00.000Z", + "_created_at": "2020-07-12T00:00:00.000Z", + "_age_weeks": 127, + "_stars_per_week": 14.09, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "clemsonuniversity", + "financeandeconomicsdepartment,mgimo-odintsovo", + "mattermost", + "tempulsenoirlinuxmulindisourcehaus" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 30, + "_pop_updated_since_days": 16, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 16.71, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/plant99/felicette/master/README.md", + "_readme_localurl": "plant99~felicette~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/plant99/felicette/master/requirements.txt", + "https://raw.githubusercontent.com/plant99/felicette/master/setup.py" + ], + "_requirements_localurls": [ + "plant99~felicette~requirements.txt", + "plant99~felicette~setup.py" + ] }, { "index": 295, @@ -20562,7 +30957,7 @@ "description": null, "_repopath": "pyfilesystem/pyfilesystem2", "_reponame": "pyfilesystem2", - "_stars": 1782, + "_stars": 1785, "_forks": 170, "_watches": 45, "_topics": [ @@ -20579,11 +30974,34 @@ "_homepage": "https://www.pyfilesystem.org", "_description": "pyfilesystem2: Python's Filesystem abstraction layer", "_organization": "pyfilesystem", - "_updated_at": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-12T00:00:00.000Z", "_last_commit_date": "2022-10-18T00:00:00.000Z", "_created_at": "2016-10-14T00:00:00.000Z", - "_age_weeks": 320, - "_stars_per_week": 5.56, + "_age_weeks": 322, + "_stars_per_week": 5.54, + "_pop_contributor_count": 47, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "embl,zellerlab", + "mercatronicsgmbh", + "textualize" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.56, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 75, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 7.0, + "_pop_comment_count": 19.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 47, + "_pop_score": 43.67, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pyfilesystem/pyfilesystem2/master/README.md", "_readme_localurl": "pyfilesystem~pyfilesystem2~README.md", @@ -20597,51 +31015,6 @@ "pyfilesystem~pyfilesystem2~setup.py" ] }, - { - "index": 506, - "category": "ml-ops", - "githuburl": "https://github.com/adap/flower", - "featured": null, - "links": null, - "description": null, - "_repopath": "adap/flower", - "_reponame": "flower", - "_stars": 1776, - "_forks": 378, - "_watches": 24, - "_topics": [ - "flower", - "federated-learning", - "federated-learning-framework", - "pytorch-federated-learning", - "tensorflow-federated-learning", - "keras-federated-learning", - "federated-analytics", - "fleet-learning", - "fleet-intelligence" - ], - "_language": "Python", - "_homepage": "https://flower.dev", - "_description": "Flower - A Friendly Federated Learning Framework", - "_organization": "adap", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2020-02-17T00:00:00.000Z", - "_age_weeks": 146, - "_stars_per_week": 12.14, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/adap/flower/master/README.md", - "_readme_localurl": "adap~flower~README.md", - "_requirements_filenames": [ - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/adap/flower/master/pyproject.toml" - ], - "_requirements_localurls": [ - "adap~flower~pyproject.toml" - ] - }, { "index": 63, "category": "sim", @@ -20651,9 +31024,9 @@ "description": null, "_repopath": "projectmesa/mesa", "_reponame": "mesa", - "_stars": 1774, - "_forks": 756, - "_watches": 90, + "_stars": 1778, + "_forks": 760, + "_watches": 89, "_topics": [ "mesa", "agent-based-modeling", @@ -20671,11 +31044,30 @@ "_homepage": "", "_description": "Mesa is an agent-based modeling framework in Python", "_organization": "projectmesa", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2014-09-19T00:00:00.000Z", - "_age_weeks": 428, - "_stars_per_week": 4.14, + "_age_weeks": 430, + "_stars_per_week": 4.13, + "_pop_contributor_count": 121, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.48, + "_pop_updated_issues_count": 166, + "_pop_closed_issues_count": 136, + "_pop_created_since_days": 100, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 166.0, + "_pop_comment_count": 676.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 4.1, + "_pop_dependents_count": 104, + "_pop_score": 51.2, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/projectmesa/mesa/master/README.rst", "_readme_localurl": "projectmesa~mesa~README.rst", @@ -20693,59 +31085,70 @@ ] }, { - "index": 310, - "category": "data", - "githuburl": "https://github.com/graphistry/pygraphistry", + "index": 749, + "category": "diffusion", + "githuburl": "https://github.com/nateraw/stable-diffusion-videos", "featured": null, "links": null, "description": null, - "_repopath": "graphistry/pygraphistry", - "_reponame": "pygraphistry", - "_stars": 1759, - "_forks": 185, - "_watches": 48, + "_repopath": "nateraw/stable-diffusion-videos", + "_reponame": "stable-diffusion-videos", + "_stars": 1774, + "_forks": 155, + "_watches": 21, "_topics": [ - "graph", - "visualization", - "gpu", - "graphistry", - "python", - "rapids", - "cugraph", - "networkx", - "neo4j", - "tigergraph", - "pandas", - "csv", - "webgl", - "splunk", - "cudf", - "jupyter", - "igraph", - "network-analysis", - "network-visualization", - "graph-visualization" + "ai-art", + "huggingface", + "huggingface-diffusers", + "machine-learning", + "stable-diffusion" ], "_language": "Python", "_homepage": "", - "_description": "PyGraphistry is a Python library to quickly load, shape, embed, and explore big graphs with the GPU-accelerated Graphistry visual graph analyzer", - "_organization": "graphistry", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", - "_created_at": "2015-06-02T00:00:00.000Z", - "_age_weeks": 392, - "_stars_per_week": 4.49, + "_description": "stable-diffusion-videos: Create \ud83d\udd25 videos with Stable Diffusion by exploring the latent space and morphing between text prompts", + "_organization": "nateraw", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_created_at": "2022-09-06T00:00:00.000Z", + "_age_weeks": 14, + "_stars_per_week": 119.4, + "_pop_contributor_count": 10, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "earth", + "huggingface", + "student" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.31, + "_pop_updated_issues_count": 103, + "_pop_closed_issues_count": 83, + "_pop_created_since_days": 3, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 15, + "_pop_recent_releases_estimated_tags": 61, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 103.0, + "_pop_comment_count": 213.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 2, + "_pop_score": 36.85, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/graphistry/pygraphistry/master/README.md", - "_readme_localurl": "graphistry~pygraphistry~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/README.md", + "_readme_localurl": "nateraw~stable-diffusion-videos~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/graphistry/pygraphistry/master/setup.py" + "https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/requirements.txt", + "https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/setup.py" ], "_requirements_localurls": [ - "graphistry~pygraphistry~setup.py" + "nateraw~stable-diffusion-videos~requirements.txt", + "nateraw~stable-diffusion-videos~setup.py" ] }, { @@ -20757,7 +31160,7 @@ "description": null, "_repopath": "jamesturk/jellyfish", "_reponame": "jellyfish", - "_stars": 1759, + "_stars": 1766, "_forks": 148, "_watches": 43, "_topics": [ @@ -20774,11 +31177,34 @@ "_homepage": "https://jamesturk.github.io/jellyfish/", "_description": "jellyfish: \ud83e\udebc a python library for doing approximate and phonetic matching of strings.", "_organization": "jamesturk", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-07T00:00:00.000Z", "_created_at": "2010-07-09T00:00:00.000Z", - "_age_weeks": 647, + "_age_weeks": 649, "_stars_per_week": 2.72, + "_pop_contributor_count": 27, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ibmresearch", + "sunlightlabs", + "utrechtuniversity" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.38, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 152, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 10.0, + "_pop_comment_count": 6.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 92, + "_pop_score": 41.79, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jamesturk/jellyfish/master/README.md", "_readme_localurl": "jamesturk~jellyfish~README.md", @@ -20792,6 +31218,84 @@ "jamesturk~jellyfish~setup.py" ] }, + { + "index": 310, + "category": "data", + "githuburl": "https://github.com/graphistry/pygraphistry", + "featured": null, + "links": null, + "description": null, + "_repopath": "graphistry/pygraphistry", + "_reponame": "pygraphistry", + "_stars": 1764, + "_forks": 185, + "_watches": 48, + "_topics": [ + "graph", + "visualization", + "gpu", + "graphistry", + "python", + "rapids", + "cugraph", + "networkx", + "neo4j", + "tigergraph", + "pandas", + "csv", + "webgl", + "splunk", + "cudf", + "jupyter", + "igraph", + "network-analysis", + "network-visualization", + "graph-visualization" + ], + "_language": "Python", + "_homepage": "", + "_description": "PyGraphistry is a Python library to quickly load, shape, embed, and explore big graphs with the GPU-accelerated Graphistry visual graph analyzer", + "_organization": "graphistry", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", + "_created_at": "2015-06-02T00:00:00.000Z", + "_age_weeks": 393, + "_stars_per_week": 4.48, + "_pop_contributor_count": 31, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "graphistry", + "nvidia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.44, + "_pop_updated_issues_count": 38, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 92, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 22, + "_pop_recent_releases_adjusted_count": 22, + "_pop_issue_count": 38.0, + "_pop_comment_count": 32.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 36, + "_pop_score": 46.83, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/graphistry/pygraphistry/master/README.md", + "_readme_localurl": "graphistry~pygraphistry~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/graphistry/pygraphistry/master/setup.py" + ], + "_requirements_localurls": [ + "graphistry~pygraphistry~setup.py" + ] + }, { "index": 9, "category": "ml", @@ -20818,11 +31322,34 @@ "_homepage": "http://hypertools.readthedocs.io/en/latest/", "_description": "hypertools: A Python toolbox for gaining geometric insights into high-dimensional data", "_organization": "contextlab", - "_updated_at": "2022-11-27T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-02-12T00:00:00.000Z", "_created_at": "2016-09-27T00:00:00.000Z", - "_age_weeks": 323, - "_stars_per_week": 5.43, + "_age_weeks": 324, + "_stars_per_week": 5.4, + "_pop_contributor_count": 21, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "akiliinteractive", + "contextlabcosanlab", + "dartmouthcollege" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.63, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 76, + "_pop_updated_since_days": 10, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 4.0, + "_pop_comment_count": 4.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 25, + "_pop_score": 33.19, "_readme_filename": "readme.md", "_readme_giturl": "https://raw.githubusercontent.com/contextlab/hypertools/master/readme.md", "_readme_localurl": "contextlab~hypertools~readme.md", @@ -20848,19 +31375,41 @@ "description": null, "_repopath": "camelot-dev/camelot", "_reponame": "camelot", - "_stars": 1743, - "_forks": 330, - "_watches": 39, + "_stars": 1752, + "_forks": 329, + "_watches": 40, "_topics": [], "_language": "Python", "_homepage": "https://camelot-py.readthedocs.io", "_description": "camelot: A Python library to extract tabular data from PDFs", "_organization": "camelot-dev", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2021-07-11T00:00:00.000Z", "_created_at": "2019-07-01T00:00:00.000Z", - "_age_weeks": 179, - "_stars_per_week": 9.72, + "_age_weeks": 181, + "_stars_per_week": 9.68, + "_pop_contributor_count": 38, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "01s", + "http://develated.com/" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 42, + "_pop_updated_since_days": 18, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 16.0, + "_pop_comment_count": 15.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 6, + "_pop_score": 30.63, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/camelot-dev/camelot/master/README.md", "_readme_localurl": "camelot-dev~camelot~README.md", @@ -20883,8 +31432,8 @@ "description": null, "_repopath": "aws/sagemaker-python-sdk", "_reponame": "sagemaker-python-sdk", - "_stars": 1740, - "_forks": 899, + "_stars": 1748, + "_forks": 905, "_watches": 131, "_topics": [ "aws", @@ -20900,11 +31449,32 @@ "_homepage": "https://sagemaker.readthedocs.io/", "_description": "sagemaker-python-sdk: A library for training and deploying machine learning models on Amazon SageMaker", "_organization": "aws", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2017-11-14T00:00:00.000Z", - "_age_weeks": 264, - "_stars_per_week": 6.59, + "_age_weeks": 265, + "_stars_per_week": 6.57, + "_pop_contributor_count": 311, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 9.71, + "_pop_updated_issues_count": 275, + "_pop_closed_issues_count": 152, + "_pop_created_since_days": 62, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 74, + "_pop_recent_releases_estimated_tags": 93, + "_pop_recent_releases_adjusted_count": 74, + "_pop_issue_count": 275.0, + "_pop_comment_count": 3020.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 11.0, + "_pop_dependents_count": 133, + "_pop_score": 66.03, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/aws/sagemaker-python-sdk/master/README.rst", "_readme_localurl": "aws~sagemaker-python-sdk~README.rst", @@ -20919,47 +31489,73 @@ ] }, { - "index": 749, - "category": "diffusion", - "githuburl": "https://github.com/nateraw/stable-diffusion-videos", + "index": 297, + "category": "util", + "githuburl": "https://github.com/pyparsing/pyparsing", "featured": null, "links": null, "description": null, - "_repopath": "nateraw/stable-diffusion-videos", - "_reponame": "stable-diffusion-videos", - "_stars": 1722, - "_forks": 151, - "_watches": 19, + "_repopath": "pyparsing/pyparsing", + "_reponame": "pyparsing", + "_stars": 1714, + "_forks": 237, + "_watches": 23, "_topics": [ - "ai-art", - "huggingface", - "huggingface-diffusers", - "machine-learning", - "stable-diffusion" + "python", + "python2", + "python3", + "python-2", + "python-3", + "parser-combinators", + "parsing-expression-grammar", + "parsing", + "parsing-library", + "text-processing", + "peg-parsers" ], "_language": "Python", "_homepage": "", - "_description": "stable-diffusion-videos: Create \ud83d\udd25 videos with Stable Diffusion by exploring the latent space and morphing between text prompts", - "_organization": "nateraw", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2022-09-06T00:00:00.000Z", - "_age_weeks": 13, - "_stars_per_week": 131.02, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/README.md", - "_readme_localurl": "nateraw~stable-diffusion-videos~README.md", + "_description": "pyparsing: Python library for creating PEG parsers", + "_organization": "pyparsing", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", + "_created_at": "2017-05-14T00:00:00.000Z", + "_age_weeks": 292, + "_stars_per_week": 5.87, + "_pop_contributor_count": 52, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "pioneervalleybooks", + "suse" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.69, + "_pop_updated_issues_count": 19, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 68, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 19.0, + "_pop_comment_count": 33.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 2168, + "_pop_score": 54.35, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pyparsing/pyparsing/master/README.rst", + "_readme_localurl": "pyparsing~pyparsing~README.rst", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/requirements.txt", - "https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/setup.py" + "https://raw.githubusercontent.com/pyparsing/pyparsing/master/pyproject.toml" ], "_requirements_localurls": [ - "nateraw~stable-diffusion-videos~requirements.txt", - "nateraw~stable-diffusion-videos~setup.py" + "pyparsing~pyparsing~pyproject.toml" ] }, { @@ -20971,7 +31567,7 @@ "description": null, "_repopath": "google/gin-config", "_reponame": "gin-config", - "_stars": 1705, + "_stars": 1710, "_forks": 107, "_watches": 22, "_topics": [ @@ -20984,11 +31580,33 @@ "_homepage": "", "_description": "gin-config: Gin provides a lightweight configuration framework for Python", "_organization": "google", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-12-05T00:00:00.000Z", "_created_at": "2018-06-27T00:00:00.000Z", - "_age_weeks": 232, - "_stars_per_week": 7.35, + "_age_weeks": 233, + "_stars_per_week": 7.32, + "_pop_contributor_count": 23, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "netguru" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.12, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 54, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 9.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 29.12, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google/gin-config/master/README.md", "_readme_localurl": "google~gin-config~README.md", @@ -21002,53 +31620,6 @@ "google~gin-config~setup.py" ] }, - { - "index": 297, - "category": "util", - "githuburl": "https://github.com/pyparsing/pyparsing", - "featured": null, - "links": null, - "description": null, - "_repopath": "pyparsing/pyparsing", - "_reponame": "pyparsing", - "_stars": 1704, - "_forks": 236, - "_watches": 23, - "_topics": [ - "python", - "python2", - "python3", - "python-2", - "python-3", - "parser-combinators", - "parsing-expression-grammar", - "parsing", - "parsing-library", - "text-processing", - "peg-parsers" - ], - "_language": "Python", - "_homepage": "", - "_description": "pyparsing: Python library for creating PEG parsers", - "_organization": "pyparsing", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-11T00:00:00.000Z", - "_created_at": "2017-05-14T00:00:00.000Z", - "_age_weeks": 290, - "_stars_per_week": 5.87, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pyparsing/pyparsing/master/README.rst", - "_readme_localurl": "pyparsing~pyparsing~README.rst", - "_requirements_filenames": [ - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pyparsing/pyparsing/master/pyproject.toml" - ], - "_requirements_localurls": [ - "pyparsing~pyparsing~pyproject.toml" - ] - }, { "index": 365, "category": "ml", @@ -21058,8 +31629,8 @@ "description": null, "_repopath": "rentruewang/koila", "_reponame": "koila", - "_stars": 1686, - "_forks": 58, + "_stars": 1689, + "_forks": 61, "_watches": 11, "_topics": [ "pytorch", @@ -21076,11 +31647,33 @@ "_homepage": "https://rentruewang.github.io/koila", "_description": "koila: Prevent PyTorch's `CUDA error: out of memory` in just 1 line of code.", "_organization": "rentruewang", - "_updated_at": "2022-12-04T00:00:00.000Z", - "_last_commit_date": "2022-11-26T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-10T00:00:00.000Z", "_created_at": "2021-11-17T00:00:00.000Z", - "_age_weeks": 55, - "_stars_per_week": 30.65, + "_age_weeks": 56, + "_stars_per_week": 29.78, + "_pop_contributor_count": 4, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "collegeofcomputing,georgiatech", + "iprally" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.83, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 13, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 20.26, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/rentruewang/koila/master/README.md", "_readme_localurl": "rentruewang~koila~README.md", @@ -21103,9 +31696,9 @@ "description": null, "_repopath": "python-restx/flask-restx", "_reponame": "flask-restx", - "_stars": 1682, - "_forks": 283, - "_watches": 64, + "_stars": 1689, + "_forks": 285, + "_watches": 65, "_topics": [ "python", "api", @@ -21121,11 +31714,33 @@ "_homepage": "https://flask-restx.readthedocs.io/en/latest/", "_description": "flask-restx: Fork of Flask-RESTPlus: Fully featured framework for fast, easy and documented API development with Flask", "_organization": "python-restx", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-02T00:00:00.000Z", "_created_at": "2020-01-09T00:00:00.000Z", - "_age_weeks": 151, - "_stars_per_week": 11.08, + "_age_weeks": 153, + "_stars_per_week": 11.0, + "_pop_contributor_count": 137, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "apihackers", + "canonical" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.48, + "_pop_updated_issues_count": 85, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 36, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 85.0, + "_pop_comment_count": 67.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 264, + "_pop_score": 45.5, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/python-restx/flask-restx/master/README.rst", "_readme_localurl": "python-restx~flask-restx~README.rst", @@ -21139,6 +31754,72 @@ "python-restx~flask-restx~setup.py" ] }, + { + "index": 543, + "category": "data", + "githuburl": "https://github.com/sqlalchemy/alembic", + "featured": null, + "links": null, + "description": null, + "_repopath": "sqlalchemy/alembic", + "_reponame": "alembic", + "_stars": 1673, + "_forks": 171, + "_watches": 18, + "_topics": [ + "sqlalchemy", + "sql", + "python" + ], + "_language": "Python", + "_homepage": "", + "_description": "alembic: A database migrations tool for SQLAlchemy.", + "_organization": "sqlalchemy", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_created_at": "2018-11-27T00:00:00.000Z", + "_age_weeks": 211, + "_stars_per_week": 7.9, + "_pop_contributor_count": 155, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "helioslite", + "planetarium", + "redhat", + "self-employed" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.33, + "_pop_updated_issues_count": 37, + "_pop_closed_issues_count": 26, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 26, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 37.0, + "_pop_comment_count": 106.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.9, + "_pop_dependents_count": 1101, + "_pop_score": 59.21, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/sqlalchemy/alembic/master/README.rst", + "_readme_localurl": "sqlalchemy~alembic~README.rst", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/sqlalchemy/alembic/master/setup.py", + "https://raw.githubusercontent.com/sqlalchemy/alembic/master/pyproject.toml" + ], + "_requirements_localurls": [ + "sqlalchemy~alembic~setup.py", + "sqlalchemy~alembic~pyproject.toml" + ] + }, { "index": 416, "category": "ml", @@ -21148,7 +31829,7 @@ "description": null, "_repopath": "bmabey/pyldavis", "_reponame": "pyLDAvis", - "_stars": 1667, + "_stars": 1671, "_forks": 340, "_watches": 57, "_topics": [], @@ -21156,11 +31837,33 @@ "_homepage": "", "_description": "pyLDAvis: Python library for interactive topic model visualization. Port of the R LDAvis package.", "_organization": "bmabey", - "_updated_at": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2021-03-24T00:00:00.000Z", "_created_at": "2015-04-09T00:00:00.000Z", - "_age_weeks": 399, - "_stars_per_week": 4.17, + "_age_weeks": 401, + "_stars_per_week": 4.16, + "_pop_contributor_count": 32, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "zalandose" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 13, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 94, + "_pop_updated_since_days": 21, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 13.0, + "_pop_comment_count": 6.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 15, + "_pop_score": 30.39, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/bmabey/pyldavis/master/README.rst", "_readme_localurl": "bmabey~pyldavis~README.rst", @@ -21183,48 +31886,6 @@ "bmabey~pyldavis~Pipfile" ] }, - { - "index": 543, - "category": "data", - "githuburl": "https://github.com/sqlalchemy/alembic", - "featured": null, - "links": null, - "description": null, - "_repopath": "sqlalchemy/alembic", - "_reponame": "alembic", - "_stars": 1659, - "_forks": 170, - "_watches": 18, - "_topics": [ - "sqlalchemy", - "sql", - "python" - ], - "_language": "Python", - "_homepage": "", - "_description": "alembic: A database migrations tool for SQLAlchemy.", - "_organization": "sqlalchemy", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-28T00:00:00.000Z", - "_created_at": "2018-11-27T00:00:00.000Z", - "_age_weeks": 210, - "_stars_per_week": 7.89, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/sqlalchemy/alembic/master/README.rst", - "_readme_localurl": "sqlalchemy~alembic~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/sqlalchemy/alembic/master/setup.py", - "https://raw.githubusercontent.com/sqlalchemy/alembic/master/pyproject.toml" - ], - "_requirements_localurls": [ - "sqlalchemy~alembic~setup.py", - "sqlalchemy~alembic~pyproject.toml" - ] - }, { "index": 217, "category": "ml", @@ -21234,7 +31895,7 @@ "description": null, "_repopath": "linkedin/greykite", "_reponame": "greykite", - "_stars": 1648, + "_stars": 1654, "_forks": 87, "_watches": 37, "_topics": [], @@ -21242,11 +31903,33 @@ "_homepage": "", "_description": "greykite: A flexible, intuitive and fast forecasting library", "_organization": "linkedin", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-08-31T00:00:00.000Z", "_created_at": "2021-04-27T00:00:00.000Z", - "_age_weeks": 84, - "_stars_per_week": 19.59, + "_age_weeks": 85, + "_stars_per_week": 19.26, + "_pop_contributor_count": 8, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "linkedin", + "pepsico" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.08, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 20, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 3.0, + "_pop_comment_count": 9.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 12, + "_pop_score": 28.27, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/linkedin/greykite/master/README.rst", "_readme_localurl": "linkedin~greykite~README.rst", @@ -21260,51 +31943,6 @@ "linkedin~greykite~setup.py" ] }, - { - "index": 330, - "category": "nlp", - "githuburl": "https://github.com/franck-dernoncourt/neuroner", - "featured": null, - "links": null, - "description": null, - "_repopath": "franck-dernoncourt/neuroner", - "_reponame": "NeuroNER", - "_stars": 1637, - "_forks": 482, - "_watches": 84, - "_topics": [ - "nlp", - "machine-learning", - "neural-networks", - "named-entity-recognition", - "deep-learning", - "tensorflow" - ], - "_language": "Python", - "_homepage": "http://neuroner.com", - "_description": "NeuroNER: Named-entity recognition using neural networks. Easy-to-use and state-of-the-art results.", - "_organization": "franck-dernoncourt", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2019-10-02T00:00:00.000Z", - "_created_at": "2017-03-07T00:00:00.000Z", - "_age_weeks": 300, - "_stars_per_week": 5.45, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/README.md", - "_readme_localurl": "franck-dernoncourt~neuroner~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/requirements.txt", - "https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/setup.py" - ], - "_requirements_localurls": [ - "franck-dernoncourt~neuroner~requirements.txt", - "franck-dernoncourt~neuroner~setup.py" - ] - }, { "index": 302, "category": "template", @@ -21314,9 +31952,9 @@ "description": null, "_repopath": "pyscaffold/pyscaffold", "_reponame": "pyscaffold", - "_stars": 1636, - "_forks": 169, - "_watches": 39, + "_stars": 1649, + "_forks": 170, + "_watches": 40, "_topics": [ "python", "release-automation", @@ -21331,11 +31969,34 @@ "_homepage": "https://pyscaffold.org", "_description": "pyscaffold: \ud83d\udee0 Python project template generator with batteries included", "_organization": "pyscaffold", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-28T00:00:00.000Z", "_created_at": "2014-04-02T00:00:00.000Z", - "_age_weeks": 453, - "_stars_per_week": 3.61, + "_age_weeks": 454, + "_stars_per_week": 3.63, + "_pop_contributor_count": 53, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "inovex", + "karlsruheinstituteoftechnology", + "universityofbristol" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.98, + "_pop_updated_issues_count": 18, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 106, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 22, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 18.0, + "_pop_comment_count": 22.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 105, + "_pop_score": 49.78, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pyscaffold/pyscaffold/master/README.rst", "_readme_localurl": "pyscaffold~pyscaffold~README.rst", @@ -21361,8 +32022,8 @@ "description": null, "_repopath": "amanchadha/coursera-deep-learning-specialization", "_reponame": "coursera-deep-learning-specialization", - "_stars": 1634, - "_forks": 1442, + "_stars": 1649, + "_forks": 1451, "_watches": 16, "_topics": [ "deep-learning", @@ -21390,11 +32051,33 @@ "_homepage": "", "_description": "coursera-deep-learning-specialization: Notes, programming assignments and quizzes from all courses within the Coursera Deep Learning specialization offered by deeplearning.ai: (i) Neural Networks and Deep Learning; (ii) Improving Deep Neural Networks: Hyperparameter tuning, Regularization and Optimization; (iii) Structuring Machine Learning Projects; (iv) Convolutional Neural Networks; (v) Sequence Models", "_organization": "amanchadha", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-02-07T00:00:00.000Z", "_created_at": "2020-06-24T00:00:00.000Z", - "_age_weeks": 128, - "_stars_per_week": 12.77, + "_age_weeks": 129, + "_stars_per_week": 12.71, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazon/stanforduniversity", + "readytocollaborateonaiprojects" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 30, + "_pop_updated_since_days": 10, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 17.16, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/amanchadha/coursera-deep-learning-specialization/master/README.md", "_readme_localurl": "amanchadha~coursera-deep-learning-specialization~README.md", @@ -21411,8 +32094,8 @@ "description": null, "_repopath": "gotcha/ipdb", "_reponame": "ipdb", - "_stars": 1633, - "_forks": 143, + "_stars": 1640, + "_forks": 145, "_watches": 27, "_topics": [ "python", @@ -21423,84 +32106,114 @@ "_homepage": "", "_description": "ipdb: Integration of IPython pdb", "_organization": "gotcha", - "_updated_at": "2022-12-02T00:00:00.000Z", - "_last_commit_date": "2021-12-30T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2011-01-15T00:00:00.000Z", - "_age_weeks": 620, - "_stars_per_week": 2.63, + "_age_weeks": 622, + "_stars_per_week": 2.64, + "_pop_contributor_count": 54, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bubblenet", + "let'sdelivery", + "locatee" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.29, + "_pop_updated_issues_count": 20, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 145, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 20.0, + "_pop_comment_count": 29.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 915, + "_pop_score": 52.46, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/gotcha/ipdb/master/README.rst", "_readme_localurl": "gotcha~ipdb~README.rst", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/gotcha/ipdb/master/setup.py" + "https://raw.githubusercontent.com/gotcha/ipdb/master/setup.py", + "https://raw.githubusercontent.com/gotcha/ipdb/master/pyproject.toml" ], "_requirements_localurls": [ - "gotcha~ipdb~setup.py" + "gotcha~ipdb~setup.py", + "gotcha~ipdb~pyproject.toml" ] }, { - "index": 755, - "category": "ml", - "githuburl": "https://github.com/marqo-ai/marqo", + "index": 330, + "category": "nlp", + "githuburl": "https://github.com/franck-dernoncourt/neuroner", "featured": null, "links": null, "description": null, - "_repopath": "marqo-ai/marqo", - "_reponame": "marqo", - "_stars": 1624, - "_forks": 61, - "_watches": 19, + "_repopath": "franck-dernoncourt/neuroner", + "_reponame": "NeuroNER", + "_stars": 1640, + "_forks": 483, + "_watches": 84, "_topics": [ - "deep-learning", - "search", - "information-retrieval", - "machinelearning", - "vector-search", - "tensor-search", - "clip", - "multi-modal", - "search-engine", - "timm", - "transformers", - "vision-language", + "nlp", "machine-learning", - "semantic-search", - "visual-search", - "natural-language-processing", - "hnsw", - "knn", - "hacktoberfest", - "hacktoberfest-accepted" + "neural-networks", + "named-entity-recognition", + "deep-learning", + "tensorflow" ], "_language": "Python", - "_homepage": "https://www.marqo.ai/", - "_description": "marqo: Tensor search for humans.", - "_organization": "marqo-ai", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2022-08-01T00:00:00.000Z", - "_age_weeks": 18, - "_stars_per_week": 88.81, + "_homepage": "http://neuroner.com", + "_description": "NeuroNER: Named-entity recognition using neural networks. Easy-to-use and state-of-the-art results.", + "_organization": "franck-dernoncourt", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2019-10-02T00:00:00.000Z", + "_created_at": "2017-03-07T00:00:00.000Z", + "_age_weeks": 301, + "_stars_per_week": 5.43, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "mit" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 70, + "_pop_updated_since_days": 39, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 13.86, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/marqo-ai/marqo/master/README.md", - "_readme_localurl": "marqo-ai~marqo~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/README.md", + "_readme_localurl": "franck-dernoncourt~neuroner~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/marqo-ai/marqo/master/requirements.txt", - "https://raw.githubusercontent.com/marqo-ai/marqo/master/setup.py", - "https://raw.githubusercontent.com/marqo-ai/marqo/master/pyproject.toml" + "https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/requirements.txt", + "https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/setup.py" ], "_requirements_localurls": [ - "marqo-ai~marqo~requirements.txt", - "marqo-ai~marqo~setup.py", - "marqo-ai~marqo~pyproject.toml" + "franck-dernoncourt~neuroner~requirements.txt", + "franck-dernoncourt~neuroner~setup.py" ] }, { @@ -21512,7 +32225,7 @@ "description": null, "_repopath": "grantjenks/python-diskcache", "_reponame": "python-diskcache", - "_stars": 1617, + "_stars": 1627, "_forks": 106, "_watches": 18, "_topics": [ @@ -21526,11 +32239,32 @@ "_homepage": "http://www.grantjenks.com/docs/diskcache/", "_description": "python-diskcache: Python disk-backed cache (Django-compatible). Faster than Redis and Memcached. Pure-Python.", "_organization": "grantjenks", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-02-20T00:00:00.000Z", "_created_at": "2016-02-03T00:00:00.000Z", - "_age_weeks": 357, - "_stars_per_week": 4.53, + "_age_weeks": 358, + "_stars_per_week": 4.54, + "_pop_contributor_count": 24, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "canonical" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.15, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 84, + "_pop_updated_since_days": 10, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 9.0, + "_pop_comment_count": 16.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 65, + "_pop_score": 36.94, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/grantjenks/python-diskcache/master/README.rst", "_readme_localurl": "grantjenks~python-diskcache~README.rst", @@ -21556,9 +32290,9 @@ "description": null, "_repopath": "bmoscon/cryptofeed", "_reponame": "cryptofeed", - "_stars": 1605, - "_forks": 517, - "_watches": 75, + "_stars": 1610, + "_forks": 518, + "_watches": 74, "_topics": [ "python", "trading", @@ -21584,11 +32318,30 @@ "_homepage": "", "_description": "cryptofeed: Cryptocurrency Exchange Websocket Data Feed Handler", "_organization": "bmoscon", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2017-12-16T00:00:00.000Z", - "_age_weeks": 259, - "_stars_per_week": 6.18, + "_age_weeks": 261, + "_stars_per_week": 6.16, + "_pop_contributor_count": 104, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.71, + "_pop_updated_issues_count": 32, + "_pop_closed_issues_count": 20, + "_pop_created_since_days": 61, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 32.0, + "_pop_comment_count": 33.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 173, + "_pop_score": 46.04, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/bmoscon/cryptofeed/master/README.md", "_readme_localurl": "bmoscon~cryptofeed~README.md", @@ -21608,6 +32361,67 @@ "bmoscon~cryptofeed~pyproject.toml" ] }, + { + "index": 383, + "category": "nlp", + "githuburl": "https://github.com/minimaxir/aitextgen", + "featured": null, + "links": null, + "description": null, + "_repopath": "minimaxir/aitextgen", + "_reponame": "aitextgen", + "_stars": 1603, + "_forks": 182, + "_watches": 36, + "_topics": [], + "_language": "Python", + "_homepage": "https://docs.aitextgen.io", + "_description": "aitextgen: A robust Python tool for text-based AI training and generation using GPT-2.", + "_organization": "minimaxir", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-08-09T00:00:00.000Z", + "_created_at": "2019-12-29T00:00:00.000Z", + "_age_weeks": 155, + "_stars_per_week": 10.33, + "_pop_contributor_count": 9, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "buzzfeed", + "lightning-ai", + "quantcopy" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 36, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 8.0, + "_pop_comment_count": 13.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 25.52, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/minimaxir/aitextgen/master/README.md", + "_readme_localurl": "minimaxir~aitextgen~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/minimaxir/aitextgen/master/requirements.txt", + "https://raw.githubusercontent.com/minimaxir/aitextgen/master/setup.py" + ], + "_requirements_localurls": [ + "minimaxir~aitextgen~requirements.txt", + "minimaxir~aitextgen~setup.py" + ] + }, { "index": 779, "category": "nlp", @@ -21617,8 +32431,8 @@ "description": null, "_repopath": "deepset-ai/farm", "_reponame": "FARM", - "_stars": 1598, - "_forks": 231, + "_stars": 1602, + "_forks": 232, "_watches": 56, "_topics": [ "language-models", @@ -21640,11 +32454,32 @@ "_homepage": "https://farm.deepset.ai", "_description": "FARM: :house_with_garden: Fast & easy transfer learning for NLP. Harvesting language models for the industry. Focus on Question Answering.", "_organization": "deepset-ai", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2022-08-31T00:00:00.000Z", "_created_at": "2019-07-17T00:00:00.000Z", - "_age_weeks": 177, - "_stars_per_week": 9.03, + "_age_weeks": 178, + "_stars_per_week": 8.96, + "_pop_contributor_count": 37, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "deepset" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 42, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 39, + "_pop_score": 29.6, "_readme_filename": "readme.rst", "_readme_giturl": "https://raw.githubusercontent.com/deepset-ai/farm/master/readme.rst", "_readme_localurl": "deepset-ai~farm~readme.rst", @@ -21662,90 +32497,195 @@ ] }, { - "index": 383, - "category": "nlp", - "githuburl": "https://github.com/minimaxir/aitextgen", + "index": 509, + "category": "ml", + "githuburl": "https://github.com/tensorflow/addons", "featured": null, "links": null, "description": null, - "_repopath": "minimaxir/aitextgen", - "_reponame": "aitextgen", - "_stars": 1593, - "_forks": 181, - "_watches": 37, - "_topics": [], + "_repopath": "tensorflow/addons", + "_reponame": "addons", + "_stars": 1596, + "_forks": 597, + "_watches": 58, + "_topics": [ + "machine-learning", + "deep-learning", + "tensorflow", + "neural-network", + "tensorflow-addons", + "python" + ], "_language": "Python", - "_homepage": "https://docs.aitextgen.io", - "_description": "aitextgen: A robust Python tool for text-based AI training and generation using GPT-2.", - "_organization": "minimaxir", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-08-09T00:00:00.000Z", - "_created_at": "2019-12-29T00:00:00.000Z", - "_age_weeks": 153, - "_stars_per_week": 10.38, + "_homepage": "", + "_description": "addons: Useful extra functionality for TensorFlow 2.x maintained by SIG-addons", + "_organization": "tensorflow", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", + "_created_at": "2018-11-26T00:00:00.000Z", + "_age_weeks": 212, + "_stars_per_week": 7.53, + "_pop_contributor_count": 200, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "aws", + "googlers", + "preligens", + "systran" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.27, + "_pop_updated_issues_count": 53, + "_pop_closed_issues_count": 31, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 53.0, + "_pop_comment_count": 111.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 2373, + "_pop_score": 60.9, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/minimaxir/aitextgen/master/README.md", - "_readme_localurl": "minimaxir~aitextgen~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/tensorflow/addons/master/README.md", + "_readme_localurl": "tensorflow~addons~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/minimaxir/aitextgen/master/requirements.txt", - "https://raw.githubusercontent.com/minimaxir/aitextgen/master/setup.py" + "https://raw.githubusercontent.com/tensorflow/addons/master/requirements.txt", + "https://raw.githubusercontent.com/tensorflow/addons/master/setup.py", + "https://raw.githubusercontent.com/tensorflow/addons/master/pyproject.toml" ], "_requirements_localurls": [ - "minimaxir~aitextgen~requirements.txt", - "minimaxir~aitextgen~setup.py" + "tensorflow~addons~requirements.txt", + "tensorflow~addons~setup.py", + "tensorflow~addons~pyproject.toml" ] }, { - "index": 509, - "category": "ml", - "githuburl": "https://github.com/tensorflow/addons", + "index": 825, + "category": "study", + "githuburl": "https://github.com/alirezadir/machine-learning-interview-enlightener", + "featured": null, + "links": null, + "description": null, + "_repopath": "alirezadir/machine-learning-interview-enlightener", + "_reponame": "machine-learning-interview-enlightener", + "_stars": 1586, + "_forks": 327, + "_watches": 47, + "_topics": [ + "machine-learning", + "machine-learning-algorithms", + "ai", + "deep-learning", + "system-design", + "scalable-applications", + "interview", + "interview-preparation", + "interview-practice", + "interviews" + ], + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "machine-learning-interview-enlightener: This repo is meant to serve as a guide for Machine Learning/AI technical interviews. ", + "_organization": "alirezadir", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-05-25T00:00:00.000Z", + "_created_at": "2021-01-31T00:00:00.000Z", + "_age_weeks": 98, + "_stars_per_week": 16.16, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "meta", + "sdeliveramp" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.12, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 23, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 14.13, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/alirezadir/machine-learning-interview-enlightener/master/README.md", + "_readme_localurl": "alirezadir~machine-learning-interview-enlightener~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 767, + "category": "study", + "githuburl": "https://github.com/fluentpython/example-code-2e", "featured": null, "links": null, "description": null, - "_repopath": "tensorflow/addons", - "_reponame": "addons", - "_stars": 1587, - "_forks": 594, - "_watches": 57, + "_repopath": "fluentpython/example-code-2e", + "_reponame": "example-code-2e", + "_stars": 1584, + "_forks": 464, + "_watches": 52, "_topics": [ - "machine-learning", - "deep-learning", - "tensorflow", - "neural-network", - "tensorflow-addons", - "python" + "python", + "python3", + "concurrency", + "iterators", + "metaprogramming", + "special-methods" ], "_language": "Python", - "_homepage": "", - "_description": "addons: Useful extra functionality for TensorFlow 2.x maintained by SIG-addons", - "_organization": "tensorflow", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-23T00:00:00.000Z", - "_created_at": "2018-11-26T00:00:00.000Z", - "_age_weeks": 210, - "_stars_per_week": 7.55, + "_homepage": "https://amzn.to/3J48u2J", + "_description": "example-code-2e: Example code for Fluent Python, 2nd edition (O'Reilly 2022) ", + "_organization": "fluentpython", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-04-24T00:00:00.000Z", + "_created_at": "2019-03-21T00:00:00.000Z", + "_age_weeks": 195, + "_stars_per_week": 8.1, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "thoughtworksthoughtworksinc" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.19, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 46, + "_pop_updated_since_days": 8, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 35, + "_pop_score": 21.99, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/tensorflow/addons/master/README.md", - "_readme_localurl": "tensorflow~addons~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/tensorflow/addons/master/requirements.txt", - "https://raw.githubusercontent.com/tensorflow/addons/master/setup.py", - "https://raw.githubusercontent.com/tensorflow/addons/master/pyproject.toml" - ], - "_requirements_localurls": [ - "tensorflow~addons~requirements.txt", - "tensorflow~addons~setup.py", - "tensorflow~addons~pyproject.toml" - ] + "_readme_giturl": "https://raw.githubusercontent.com/fluentpython/example-code-2e/master/README.md", + "_readme_localurl": "fluentpython~example-code-2e~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { "index": 768, @@ -21756,9 +32696,9 @@ "description": null, "_repopath": "fepegar/torchio", "_reponame": "torchio", - "_stars": 1570, - "_forks": 195, - "_watches": 14, + "_stars": 1577, + "_forks": 196, + "_watches": 15, "_topics": [ "pytorch", "medical-image-computing", @@ -21777,11 +32717,32 @@ "_homepage": "http://www.torchio.org", "_description": "torchio: Medical imaging toolkit for deep learning", "_organization": "fepegar", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-19T00:00:00.000Z", "_created_at": "2019-11-26T00:00:00.000Z", - "_age_weeks": 158, - "_stars_per_week": 9.93, + "_age_weeks": 159, + "_stars_per_week": 9.87, + "_pop_contributor_count": 41, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "microsoftuclkcl-bmeis" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.33, + "_pop_updated_issues_count": 47, + "_pop_closed_issues_count": 33, + "_pop_created_since_days": 37, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 83, + "_pop_recent_releases_adjusted_count": 83, + "_pop_issue_count": 47.0, + "_pop_comment_count": 115.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 14, + "_pop_score": 44.04, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/fepegar/torchio/master/README.md", "_readme_localurl": "fepegar~torchio~README.md", @@ -21795,42 +32756,6 @@ "fepegar~torchio~pyproject.toml" ] }, - { - "index": 767, - "category": "study", - "githuburl": "https://github.com/fluentpython/example-code-2e", - "featured": null, - "links": null, - "description": null, - "_repopath": "fluentpython/example-code-2e", - "_reponame": "example-code-2e", - "_stars": 1566, - "_forks": 458, - "_watches": 52, - "_topics": [ - "python", - "python3", - "concurrency", - "iterators", - "metaprogramming", - "special-methods" - ], - "_language": "Python", - "_homepage": "https://amzn.to/3J48u2J", - "_description": "example-code-2e: Example code for Fluent Python, 2nd edition (O'Reilly 2022) ", - "_organization": "fluentpython", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-04-24T00:00:00.000Z", - "_created_at": "2019-03-21T00:00:00.000Z", - "_age_weeks": 193, - "_stars_per_week": 8.08, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/fluentpython/example-code-2e/master/README.md", - "_readme_localurl": "fluentpython~example-code-2e~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 195, "category": "sim", @@ -21840,19 +32765,40 @@ "description": null, "_repopath": "pettingzoo-team/pettingzoo", "_reponame": "PettingZoo", - "_stars": 1560, - "_forks": 249, + "_stars": 1576, + "_forks": 250, "_watches": 16, "_topics": [], "_language": "Python", "_homepage": "https://pettingzoo.farama.org", "_description": "PettingZoo: Gymnasium for multi-agent reinforcement learning", "_organization": "pettingzoo-team", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-11-15T00:00:00.000Z", "_created_at": "2020-01-20T00:00:00.000Z", - "_age_weeks": 150, - "_stars_per_week": 10.38, + "_age_weeks": 152, + "_stars_per_week": 10.37, + "_pop_contributor_count": 79, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "morganstanley" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 10.38, + "_pop_updated_issues_count": 87, + "_pop_closed_issues_count": 70, + "_pop_created_since_days": 35, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 87.0, + "_pop_comment_count": 116.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 40, + "_pop_score": 47.54, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pettingzoo-team/pettingzoo/master/README.md", "_readme_localurl": "pettingzoo-team~pettingzoo~README.md", @@ -21878,19 +32824,43 @@ "description": null, "_repopath": "quantecon/quantecon.py", "_reponame": "QuantEcon.py", - "_stars": 1560, - "_forks": 2100, - "_watches": 150, + "_stars": 1566, + "_forks": 2108, + "_watches": 151, "_topics": [], "_language": "Python", "_homepage": "https://quantecon.org/quantecon-py/", "_description": "QuantEcon.py: A community based Python library for quantitative economics", "_organization": "quantecon", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2013-03-22T00:00:00.000Z", - "_age_weeks": 506, + "_age_weeks": 508, "_stars_per_week": 3.08, + "_pop_contributor_count": 40, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "australiannationaluniversity", + "kingabdullahuniversityofscienceandtechnology", + "umaprotocol", + "universityoftokyo" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.73, + "_pop_updated_issues_count": 66, + "_pop_closed_issues_count": 37, + "_pop_created_since_days": 119, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 66.0, + "_pop_comment_count": 168.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 932, + "_pop_score": 56.56, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/quantecon/quantecon.py/master/README.md", "_readme_localurl": "quantecon~quantecon.py~README.md", @@ -21904,46 +32874,6 @@ "quantecon~quantecon.py~pyproject.toml" ] }, - { - "index": 825, - "category": "study", - "githuburl": "https://github.com/alirezadir/machine-learning-interview-enlightener", - "featured": null, - "links": null, - "description": null, - "_repopath": "alirezadir/machine-learning-interview-enlightener", - "_reponame": "machine-learning-interview-enlightener", - "_stars": 1557, - "_forks": 327, - "_watches": 47, - "_topics": [ - "machine-learning", - "machine-learning-algorithms", - "ai", - "deep-learning", - "system-design", - "scalable-applications", - "interview", - "interview-preparation", - "interview-practice", - "interviews" - ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "machine-learning-interview-enlightener: This repo is meant to serve as a guide for Machine Learning/AI technical interviews. ", - "_organization": "alirezadir", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-05-25T00:00:00.000Z", - "_created_at": "2021-01-31T00:00:00.000Z", - "_age_weeks": 96, - "_stars_per_week": 16.15, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/alirezadir/machine-learning-interview-enlightener/master/README.md", - "_readme_localurl": "alirezadir~machine-learning-interview-enlightener~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 597, "category": "time-series", @@ -21953,9 +32883,9 @@ "description": null, "_repopath": "uber/orbit", "_reponame": "orbit", - "_stars": 1553, - "_forks": 115, - "_watches": 31, + "_stars": 1562, + "_forks": 117, + "_watches": 32, "_topics": [ "python", "forecasting", @@ -21982,11 +32912,32 @@ "_homepage": "https://orbit-ml.readthedocs.io/en/stable/", "_description": "orbit: A Python package for Bayesian forecasting with object-oriented design and probabilistic models under the hood.", "_organization": "uber", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-11-30T00:00:00.000Z", "_created_at": "2020-01-07T00:00:00.000Z", - "_age_weeks": 152, - "_stars_per_week": 10.21, + "_age_weeks": 153, + "_stars_per_week": 10.15, + "_pop_contributor_count": 18, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "uber" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.6, + "_pop_updated_issues_count": 15, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 36, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 15.0, + "_pop_comment_count": 11.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 22, + "_pop_score": 34.74, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/uber/orbit/master/README.md", "_readme_localurl": "uber~orbit~README.md", @@ -22015,8 +32966,8 @@ "description": null, "_repopath": "jalammar/ecco", "_reponame": "ecco", - "_stars": 1549, - "_forks": 108, + "_stars": 1556, + "_forks": 111, "_watches": 20, "_topics": [ "nlp", @@ -22030,11 +32981,34 @@ "_homepage": "https://ecco.readthedocs.io", "_description": "ecco: Explain, analyze, and visualize NLP language models. Ecco creates interactive visualizations directly in Jupyter notebooks explaining the behavior of Transformer-based language models (like GPT2, BERT, RoBERTA, T5, and T0).", "_organization": "jalammar", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-01-18T00:00:00.000Z", "_created_at": "2020-11-07T00:00:00.000Z", - "_age_weeks": 108, - "_stars_per_week": 14.27, + "_age_weeks": 110, + "_stars_per_week": 14.11, + "_pop_contributor_count": 10, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cohere-ai", + "outsystems", + "truefoundry" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.62, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 26, + "_pop_updated_since_days": 11, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 9.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 3, + "_pop_score": 26.12, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/jalammar/ecco/master/README.rst", "_readme_localurl": "jalammar~ecco~README.rst", @@ -22051,6 +33025,62 @@ "jalammar~ecco~setup.py" ] }, + { + "index": 299, + "category": "util", + "githuburl": "https://github.com/julienpalard/pipe", + "featured": null, + "links": null, + "description": null, + "_repopath": "julienpalard/pipe", + "_reponame": "Pipe", + "_stars": 1544, + "_forks": 101, + "_watches": 26, + "_topics": [], + "_language": "Python", + "_homepage": "", + "_description": "Pipe: A Python library to use infix notation in Python", + "_organization": "julienpalard", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-11-16T00:00:00.000Z", + "_created_at": "2010-04-08T00:00:00.000Z", + "_age_weeks": 662, + "_stars_per_week": 2.33, + "_pop_contributor_count": 25, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "sumologic" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.37, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 155, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 2.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 2, + "_pop_score": 30.39, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/julienpalard/pipe/master/README.md", + "_readme_localurl": "julienpalard~pipe~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/julienpalard/pipe/master/pyproject.toml" + ], + "_requirements_localurls": [ + "julienpalard~pipe~pyproject.toml" + ] + }, { "index": 143, "category": "nlp", @@ -22060,7 +33090,7 @@ "description": null, "_repopath": "plasticityai/magnitude", "_reponame": "magnitude", - "_stars": 1542, + "_stars": 1544, "_forks": 113, "_watches": 37, "_topics": [ @@ -22083,11 +33113,32 @@ "_homepage": null, "_description": "magnitude: A fast, efficient universal vector embedding utility package.", "_organization": "plasticityai", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-12T00:00:00.000Z", "_last_commit_date": "2020-07-17T00:00:00.000Z", "_created_at": "2018-02-24T00:00:00.000Z", - "_age_weeks": 249, - "_stars_per_week": 6.18, + "_age_weeks": 251, + "_stars_per_week": 6.14, + "_pop_contributor_count": 4, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "plasticityai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 59, + "_pop_updated_since_days": 29, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 29, + "_pop_recent_releases_adjusted_count": 29, + "_pop_issue_count": 2.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 6, + "_pop_score": 21.4, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/plasticityai/magnitude/master/README.md", "_readme_localurl": "plasticityai~magnitude~README.md", @@ -22104,41 +33155,6 @@ "plasticityai~magnitude~setup.py" ] }, - { - "index": 299, - "category": "util", - "githuburl": "https://github.com/julienpalard/pipe", - "featured": null, - "links": null, - "description": null, - "_repopath": "julienpalard/pipe", - "_reponame": "Pipe", - "_stars": 1540, - "_forks": 101, - "_watches": 25, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "Pipe: A Python library to use infix notation in Python", - "_organization": "julienpalard", - "_updated_at": "2022-12-04T00:00:00.000Z", - "_last_commit_date": "2022-11-16T00:00:00.000Z", - "_created_at": "2010-04-08T00:00:00.000Z", - "_age_weeks": 660, - "_stars_per_week": 2.33, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/julienpalard/pipe/master/README.md", - "_readme_localurl": "julienpalard~pipe~README.md", - "_requirements_filenames": [ - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/julienpalard/pipe/master/pyproject.toml" - ], - "_requirements_localurls": [ - "julienpalard~pipe~pyproject.toml" - ] - }, { "index": 596, "category": "data", @@ -22148,7 +33164,7 @@ "description": null, "_repopath": "uber/petastorm", "_reponame": "petastorm", - "_stars": 1536, + "_stars": 1543, "_forks": 265, "_watches": 41, "_topics": [ @@ -22166,11 +33182,34 @@ "_homepage": "", "_description": "Petastorm library enables single machine or distributed training and evaluation of deep learning models from datasets in Apache Parquet format. It supports ML frameworks such as Tensorflow, Pytorch, and PySpark and can be used from pure Python code.", "_organization": "uber", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-09-14T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2018-06-15T00:00:00.000Z", - "_age_weeks": 233, - "_stars_per_week": 6.57, + "_age_weeks": 235, + "_stars_per_week": 6.55, + "_pop_contributor_count": 46, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "databricks", + "netflix", + "uber" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.46, + "_pop_updated_issues_count": 13, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 25, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 13.0, + "_pop_comment_count": 27.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 10, + "_pop_score": 44.55, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/uber/petastorm/master/README.rst", "_readme_localurl": "uber~petastorm~README.rst", @@ -22193,7 +33232,7 @@ "description": null, "_repopath": "linkedin/shiv", "_reponame": "shiv", - "_stars": 1530, + "_stars": 1532, "_forks": 84, "_watches": 26, "_topics": [], @@ -22201,11 +33240,34 @@ "_homepage": "", "_description": "shiv is a command line utility for building fully self contained Python zipapps as outlined in PEP 441, but with all their dependencies included.", "_organization": "linkedin", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2022-11-04T00:00:00.000Z", "_created_at": "2018-03-13T00:00:00.000Z", - "_age_weeks": 247, - "_stars_per_week": 6.19, + "_age_weeks": 248, + "_stars_per_week": 6.16, + "_pop_contributor_count": 39, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "lincolnloop", + "linkedin", + "mam-dev" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.21, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 58, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 4.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 8, + "_pop_score": 35.4, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/linkedin/shiv/master/README.md", "_readme_localurl": "linkedin~shiv~README.md", @@ -22219,6 +33281,62 @@ "linkedin~shiv~pyproject.toml" ] }, + { + "index": 662, + "category": "util", + "githuburl": "https://github.com/numba/llvmlite", + "featured": null, + "links": null, + "description": null, + "_repopath": "numba/llvmlite", + "_reponame": "llvmlite", + "_stars": 1526, + "_forks": 289, + "_watches": 54, + "_topics": [], + "_language": "Python", + "_homepage": "http://llvmlite.pydata.org/", + "_description": "llvmlite: A lightweight LLVM python binding for writing JIT compilers", + "_organization": "numba", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_created_at": "2014-08-07T00:00:00.000Z", + "_age_weeks": 436, + "_stars_per_week": 3.5, + "_pop_contributor_count": 81, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "anaconda" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.71, + "_pop_updated_issues_count": 30, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 102, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 30.0, + "_pop_comment_count": 87.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.9, + "_pop_dependents_count": 458, + "_pop_score": 54.36, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/numba/llvmlite/master/README.rst", + "_readme_localurl": "numba~llvmlite~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/numba/llvmlite/master/setup.py" + ], + "_requirements_localurls": [ + "numba~llvmlite~setup.py" + ] + }, { "index": 635, "category": "debug", @@ -22228,7 +33346,7 @@ "description": null, "_repopath": "alexmojaki/birdseye", "_reponame": "birdseye", - "_stars": 1522, + "_stars": 1524, "_forks": 76, "_watches": 43, "_topics": [ @@ -22243,11 +33361,34 @@ "_homepage": "https://birdseye.readthedocs.io", "_description": "birdseye: Graphical Python debugger which lets you easily view the values of all evaluated expressions", "_organization": "alexmojaki", - "_updated_at": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-05-18T00:00:00.000Z", "_created_at": "2017-07-22T00:00:00.000Z", - "_age_weeks": 280, - "_stars_per_week": 5.42, + "_age_weeks": 282, + "_stars_per_week": 5.4, + "_pop_contributor_count": 10, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "actcommodities", + "cybernetica", + "skelevilletechnologysolutions" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 66, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 2.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 8, + "_pop_score": 26.84, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/alexmojaki/birdseye/master/README.rst", "_readme_localurl": "alexmojaki~birdseye~README.rst", @@ -22265,77 +33406,71 @@ ] }, { - "index": 662, - "category": "util", - "githuburl": "https://github.com/numba/llvmlite", - "featured": null, - "links": null, - "description": null, - "_repopath": "numba/llvmlite", - "_reponame": "llvmlite", - "_stars": 1514, - "_forks": 285, - "_watches": 55, - "_topics": [], - "_language": "Python", - "_homepage": "http://llvmlite.pydata.org/", - "_description": "llvmlite: A lightweight LLVM python binding for writing JIT compilers", - "_organization": "numba", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2014-08-07T00:00:00.000Z", - "_age_weeks": 434, - "_stars_per_week": 3.48, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/numba/llvmlite/master/README.rst", - "_readme_localurl": "numba~llvmlite~README.rst", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/numba/llvmlite/master/setup.py" - ], - "_requirements_localurls": [ - "numba~llvmlite~setup.py" - ] - }, - { - "index": 205, - "category": "debug", - "githuburl": "https://github.com/alexmojaki/heartrate", + "index": 795, + "category": "web", + "githuburl": "https://github.com/starlite-api/starlite", "featured": null, "links": null, "description": null, - "_repopath": "alexmojaki/heartrate", - "_reponame": "heartrate", - "_stars": 1498, - "_forks": 120, - "_watches": 30, + "_repopath": "starlite-api/starlite", + "_reponame": "starlite", + "_stars": 1520, + "_forks": 141, + "_watches": 22, "_topics": [ "python", - "visualization", - "debugger" + "api", + "rest", + "mypy", + "pydantic", + "types", + "asgi", + "json", + "openapi", + "redoc", + "starlette" ], "_language": "Python", - "_homepage": null, - "_description": "heartrate: Simple real time visualisation of the execution of a Python program.", - "_organization": "alexmojaki", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2021-11-13T00:00:00.000Z", - "_created_at": "2019-04-24T00:00:00.000Z", - "_age_weeks": 189, - "_stars_per_week": 7.93, + "_homepage": "https://starlite-api.github.io/starlite/", + "_description": "starlite: Light, Flexible and Extensible ASGI API framework", + "_organization": "starlite-api", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_created_at": "2021-12-06T00:00:00.000Z", + "_age_weeks": 54, + "_stars_per_week": 28.15, + "_pop_contributor_count": 71, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "safehousetechnologies" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 19.87, + "_pop_updated_issues_count": 437, + "_pop_closed_issues_count": 412, + "_pop_created_since_days": 13, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 119, + "_pop_recent_releases_estimated_tags": 112, + "_pop_recent_releases_adjusted_count": 119, + "_pop_issue_count": 437.0, + "_pop_comment_count": 889.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 78, + "_pop_score": 53.6, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/alexmojaki/heartrate/master/README.md", - "_readme_localurl": "alexmojaki~heartrate~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/starlite-api/starlite/master/README.md", + "_readme_localurl": "starlite-api~starlite~README.md", "_requirements_filenames": [ - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/alexmojaki/heartrate/master/setup.py" + "https://raw.githubusercontent.com/starlite-api/starlite/master/pyproject.toml" ], "_requirements_localurls": [ - "alexmojaki~heartrate~setup.py" + "starlite-api~starlite~pyproject.toml" ] }, { @@ -22347,9 +33482,9 @@ "description": null, "_repopath": "pallets/quart", "_reponame": "quart", - "_stars": 1497, - "_forks": 88, - "_watches": 25, + "_stars": 1509, + "_forks": 93, + "_watches": 24, "_topics": [ "asyncio", "python", @@ -22361,11 +33496,32 @@ "_homepage": "https://quart.palletsprojects.com", "_description": "quart: An async Python micro framework for building web applications. ", "_organization": "pallets", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-14T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2017-11-10T00:00:00.000Z", - "_age_weeks": 264, + "_age_weeks": 266, "_stars_per_week": 5.66, + "_pop_contributor_count": 80, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "none" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.81, + "_pop_updated_issues_count": 28, + "_pop_closed_issues_count": 25, + "_pop_created_since_days": 62, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 28.0, + "_pop_comment_count": 29.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 18, + "_pop_score": 44.54, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pallets/quart/master/README.rst", "_readme_localurl": "pallets~quart~README.rst", @@ -22388,9 +33544,9 @@ "description": null, "_repopath": "nebuly-ai/nebullvm", "_reponame": "nebullvm", - "_stars": 1495, - "_forks": 68, - "_watches": 17, + "_stars": 1504, + "_forks": 70, + "_watches": 16, "_topics": [ "deep-learning", "pytorch", @@ -22403,17 +33559,44 @@ "huggingface", "compiler", "computing", - "inference" + "inference", + "neural-network", + "pypi", + "quantization" ], "_language": "Python", "_homepage": "", - "_description": "nebullvm: Accelerate AI models inference leveraging best-of-breed optimization techniques \ud83d\ude80", + "_description": "nebullvm: Accelerate AI models leveraging best-of-breed optimization techniques \ud83d\ude80", "_organization": "nebuly-ai", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2022-02-12T00:00:00.000Z", - "_age_weeks": 42, - "_stars_per_week": 35.12, + "_age_weeks": 44, + "_stars_per_week": 33.96, + "_pop_contributor_count": 11, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "nebuly", + "nebuly-ai", + "nebuly|epfl", + "nebuly|ethzurich" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.23, + "_pop_updated_issues_count": 48, + "_pop_closed_issues_count": 30, + "_pop_created_since_days": 10, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 16, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 48.0, + "_pop_comment_count": 19.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 2, + "_pop_score": 35.81, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/nebuly-ai/nebullvm/master/README.md", "_readme_localurl": "nebuly-ai~nebullvm~README.md", @@ -22430,6 +33613,64 @@ "nebuly-ai~nebullvm~setup.py" ] }, + { + "index": 205, + "category": "debug", + "githuburl": "https://github.com/alexmojaki/heartrate", + "featured": null, + "links": null, + "description": null, + "_repopath": "alexmojaki/heartrate", + "_reponame": "heartrate", + "_stars": 1499, + "_forks": 120, + "_watches": 30, + "_topics": [ + "python", + "visualization", + "debugger" + ], + "_language": "Python", + "_homepage": null, + "_description": "heartrate: Simple real time visualisation of the execution of a Python program.", + "_organization": "alexmojaki", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2021-11-13T00:00:00.000Z", + "_created_at": "2019-04-24T00:00:00.000Z", + "_age_weeks": 190, + "_stars_per_week": 7.86, + "_pop_contributor_count": 3, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 13, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 6.69, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/alexmojaki/heartrate/master/README.md", + "_readme_localurl": "alexmojaki~heartrate~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/alexmojaki/heartrate/master/setup.py" + ], + "_requirements_localurls": [ + "alexmojaki~heartrate~setup.py" + ] + }, { "index": 612, "category": "testing", @@ -22439,9 +33680,9 @@ "description": null, "_repopath": "pytest-dev/pytest-mock", "_reponame": "pytest-mock", - "_stars": 1488, - "_forks": 118, - "_watches": 33, + "_stars": 1493, + "_forks": 119, + "_watches": 34, "_topics": [ "pytest", "mock", @@ -22451,11 +33692,35 @@ "_homepage": "https://pytest-mock.readthedocs.io/en/latest/", "_description": "pytest-mock: Thin-wrapper around the mock package for easier use with pytest", "_organization": "pytest-dev", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2014-07-17T00:00:00.000Z", - "_age_weeks": 437, + "_age_weeks": 439, "_stars_per_week": 3.4, + "_pop_contributor_count": 64, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "esss", + "freelancer,upforhire", + "nordsoftware", + "wayfair" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.08, + "_pop_updated_issues_count": 26, + "_pop_closed_issues_count": 26, + "_pop_created_since_days": 103, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 26.0, + "_pop_comment_count": 27.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 3125, + "_pop_score": 57.46, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest-mock/master/README.rst", "_readme_localurl": "pytest-dev~pytest-mock~README.rst", @@ -22469,35 +33734,6 @@ "pytest-dev~pytest-mock~setup.py" ] }, - { - "index": 498, - "category": "ml-dl", - "githuburl": "https://github.com/vt-vl-lab/fgvc", - "featured": null, - "links": null, - "description": null, - "_repopath": "vt-vl-lab/fgvc", - "_reponame": "FGVC", - "_stars": 1472, - "_forks": 237, - "_watches": 68, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "FGVC: [ECCV 2020] Flow-edge Guided Video Completion ", - "_organization": "vt-vl-lab", - "_updated_at": "2022-12-02T00:00:00.000Z", - "_last_commit_date": "2021-12-14T00:00:00.000Z", - "_created_at": "2020-09-09T00:00:00.000Z", - "_age_weeks": 117, - "_stars_per_week": 12.58, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/vt-vl-lab/fgvc/master/README.md", - "_readme_localurl": "vt-vl-lab~fgvc~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 224, "category": "sim", @@ -22507,8 +33743,8 @@ "description": null, "_repopath": "google/brax", "_reponame": "brax", - "_stars": 1471, - "_forks": 146, + "_stars": 1479, + "_forks": 148, "_watches": 31, "_topics": [ "jax", @@ -22520,11 +33756,33 @@ "_homepage": "", "_description": "brax: Massively parallel rigidbody physics simulation on accelerator hardware.", "_organization": "google", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-10-13T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2021-06-02T00:00:00.000Z", - "_age_weeks": 79, - "_stars_per_week": 18.62, + "_age_weeks": 80, + "_stars_per_week": 18.32, + "_pop_contributor_count": 25, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "drexeluniversity", + "instadeep" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.4, + "_pop_updated_issues_count": 41, + "_pop_closed_issues_count": 23, + "_pop_created_since_days": 19, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 41.0, + "_pop_comment_count": 79.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 11, + "_pop_score": 39.54, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google/brax/master/README.md", "_readme_localurl": "google~brax~README.md", @@ -22539,51 +33797,55 @@ ] }, { - "index": 795, - "category": "web", - "githuburl": "https://github.com/starlite-api/starlite", + "index": 498, + "category": "ml-dl", + "githuburl": "https://github.com/vt-vl-lab/fgvc", "featured": null, "links": null, "description": null, - "_repopath": "starlite-api/starlite", - "_reponame": "starlite", - "_stars": 1469, - "_forks": 130, - "_watches": 22, - "_topics": [ - "python", - "api", - "rest", - "mypy", - "pydantic", - "types", - "asgi", - "json", - "openapi", - "redoc", - "starlette" - ], + "_repopath": "vt-vl-lab/fgvc", + "_reponame": "FGVC", + "_stars": 1473, + "_forks": 237, + "_watches": 68, + "_topics": [], "_language": "Python", - "_homepage": "https://starlite-api.github.io/starlite/", - "_description": "starlite: Light, Flexible and Extensible ASGI API framework", - "_organization": "starlite-api", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2021-12-06T00:00:00.000Z", - "_age_weeks": 52, - "_stars_per_week": 28.1, + "_homepage": null, + "_description": "FGVC: [ECCV 2020] Flow-edge Guided Video Completion ", + "_organization": "vt-vl-lab", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2021-12-14T00:00:00.000Z", + "_created_at": "2020-09-09T00:00:00.000Z", + "_age_weeks": 118, + "_stars_per_week": 12.41, + "_pop_contributor_count": 3, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "meta", + "virginiatech" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 28, + "_pop_updated_since_days": 12, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 16.4, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/starlite-api/starlite/master/README.md", - "_readme_localurl": "starlite-api~starlite~README.md", - "_requirements_filenames": [ - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/starlite-api/starlite/master/pyproject.toml" - ], - "_requirements_localurls": [ - "starlite-api~starlite~pyproject.toml" - ] + "_readme_giturl": "https://raw.githubusercontent.com/vt-vl-lab/fgvc/master/README.md", + "_readme_localurl": "vt-vl-lab~fgvc~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { "index": 436, @@ -22594,8 +33856,8 @@ "description": null, "_repopath": "recognai/rubrix", "_reponame": "argilla", - "_stars": 1454, - "_forks": 133, + "_stars": 1469, + "_forks": 134, "_watches": 18, "_topics": [ "python", @@ -22623,11 +33885,35 @@ "_homepage": "https://docs.argilla.io", "_description": "argilla: \u2728 Open-source tool for data-centric NLP. Argilla helps domain experts and data teams to build better NLP datasets in less time.", "_organization": "recognai", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2021-04-28T00:00:00.000Z", - "_age_weeks": 84, - "_stars_per_week": 17.31, + "_age_weeks": 85, + "_stars_per_week": 17.14, + "_pop_contributor_count": 33, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "aarhusuniversity,vestas", + "argilla.io", + "maxplanckcomputing&datafacility", + "recogai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 10.4, + "_pop_updated_issues_count": 364, + "_pop_closed_issues_count": 231, + "_pop_created_since_days": 20, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 30, + "_pop_recent_releases_estimated_tags": 52, + "_pop_recent_releases_adjusted_count": 30, + "_pop_issue_count": 369.0, + "_pop_comment_count": 470.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 4, + "_pop_score": 49.39, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/recognai/rubrix/master/README.md", "_readme_localurl": "recognai~rubrix~README.md", @@ -22653,8 +33939,8 @@ "description": null, "_repopath": "neuralmagic/sparseml", "_reponame": "sparseml", - "_stars": 1443, - "_forks": 103, + "_stars": 1455, + "_forks": 104, "_watches": 36, "_topics": [ "pytorch", @@ -22682,11 +33968,32 @@ "_homepage": "", "_description": "sparseml: Libraries for applying sparsification recipes to neural networks with a few lines of code, enabling faster and smaller models", "_organization": "neuralmagic", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2020-12-11T00:00:00.000Z", - "_age_weeks": 103, - "_stars_per_week": 13.91, + "_age_weeks": 105, + "_stars_per_week": 13.8, + "_pop_contributor_count": 36, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "neuralmagic" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 8.13, + "_pop_updated_issues_count": 242, + "_pop_closed_issues_count": 216, + "_pop_created_since_days": 25, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 242.0, + "_pop_comment_count": 161.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 9, + "_pop_score": 43.6, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/neuralmagic/sparseml/master/README.md", "_readme_localurl": "neuralmagic~sparseml~README.md", @@ -22704,47 +34011,63 @@ ] }, { - "index": 638, - "category": "perf", - "githuburl": "https://github.com/dask/distributed", + "index": 703, + "category": "util", + "githuburl": "https://github.com/openai/openai-python", "featured": null, "links": null, "description": null, - "_repopath": "dask/distributed", - "_reponame": "distributed", - "_stars": 1427, - "_forks": 664, - "_watches": 59, - "_topics": [ - "pydata", - "dask", - "distributed-computing", - "python", - "hacktoberfest" - ], + "_repopath": "openai/openai-python", + "_reponame": "openai-python", + "_stars": 1433, + "_forks": 345, + "_watches": 52, + "_topics": [], "_language": "Python", - "_homepage": "https://distributed.dask.org", - "_description": "distributed: A distributed task scheduler for Dask", - "_organization": "dask", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2015-09-13T00:00:00.000Z", - "_age_weeks": 377, - "_stars_per_week": 3.78, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/dask/distributed/master/README.rst", - "_readme_localurl": "dask~distributed~README.rst", + "_homepage": null, + "_description": "openai/openai-python", + "_organization": "openai", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_created_at": "2020-10-25T00:00:00.000Z", + "_age_weeks": 112, + "_stars_per_week": 12.78, + "_pop_contributor_count": 26, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "microsoft", + "openai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.87, + "_pop_updated_issues_count": 38, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 26, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 17, + "_pop_recent_releases_estimated_tags": 20, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 38.0, + "_pop_comment_count": 35.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 12, + "_pop_score": 40.79, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/openai/openai-python/master/README.md", + "_readme_localurl": "openai~openai-python~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/dask/distributed/master/requirements.txt", - "https://raw.githubusercontent.com/dask/distributed/master/setup.py" + "https://raw.githubusercontent.com/openai/openai-python/master/setup.py", + "https://raw.githubusercontent.com/openai/openai-python/master/pyproject.toml" ], "_requirements_localurls": [ - "dask~distributed~requirements.txt", - "dask~distributed~setup.py" + "openai~openai-python~setup.py", + "openai~openai-python~pyproject.toml" ] }, { @@ -22756,9 +34079,9 @@ "description": null, "_repopath": "buuntu/fastapi-react", "_reponame": "fastapi-react", - "_stars": 1415, - "_forks": 233, - "_watches": 34, + "_stars": 1428, + "_forks": 241, + "_watches": 35, "_topics": [ "fastapi", "postgres", @@ -22778,11 +34101,33 @@ "_homepage": "", "_description": "fastapi-react: \ud83d\ude80 Cookiecutter Template for FastAPI + React Projects. Using PostgreSQL, SQLAlchemy, and Docker", "_organization": "buuntu", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-02-18T00:00:00.000Z", "_created_at": "2020-03-21T00:00:00.000Z", - "_age_weeks": 141, - "_stars_per_week": 9.99, + "_age_weeks": 143, + "_stars_per_week": 9.97, + "_pop_contributor_count": 13, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebook", + "jasonhoku" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 33, + "_pop_updated_since_days": 10, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 2.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 7, + "_pop_score": 24.15, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/buuntu/fastapi-react/master/README.md", "_readme_localurl": "buuntu~fastapi-react~README.md", @@ -22790,6 +34135,71 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, + { + "index": 638, + "category": "perf", + "githuburl": "https://github.com/dask/distributed", + "featured": null, + "links": null, + "description": null, + "_repopath": "dask/distributed", + "_reponame": "distributed", + "_stars": 1428, + "_forks": 666, + "_watches": 59, + "_topics": [ + "pydata", + "dask", + "distributed-computing", + "python", + "hacktoberfest" + ], + "_language": "Python", + "_homepage": "https://distributed.dask.org", + "_description": "distributed: A distributed task scheduler for Dask", + "_organization": "dask", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2015-09-13T00:00:00.000Z", + "_age_weeks": 379, + "_stars_per_week": 3.77, + "_pop_contributor_count": 301, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "coiled" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 15.67, + "_pop_updated_issues_count": 479, + "_pop_closed_issues_count": 300, + "_pop_created_since_days": 88, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 26, + "_pop_recent_releases_adjusted_count": 26, + "_pop_issue_count": 479.0, + "_pop_comment_count": 1204.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 3056, + "_pop_score": 68.77, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/dask/distributed/master/README.rst", + "_readme_localurl": "dask~distributed~README.rst", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/dask/distributed/master/requirements.txt", + "https://raw.githubusercontent.com/dask/distributed/master/setup.py" + ], + "_requirements_localurls": [ + "dask~distributed~requirements.txt", + "dask~distributed~setup.py" + ] + }, { "index": 861, "category": "jupyter", @@ -22799,7 +34209,7 @@ "description": null, "_repopath": "jupyter/nbconvert", "_reponame": "nbconvert", - "_stars": 1415, + "_stars": 1423, "_forks": 509, "_watches": 50, "_topics": [], @@ -22807,11 +34217,35 @@ "_homepage": "https://nbconvert.readthedocs.io/", "_description": "nbconvert: Jupyter Notebook Conversion", "_organization": "jupyter", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2015-04-09T00:00:00.000Z", - "_age_weeks": 399, + "_age_weeks": 401, "_stars_per_week": 3.54, + "_pop_contributor_count": 254, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "netflix", + "quansight-labs", + "simularesearchlaboratory" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.06, + "_pop_updated_issues_count": 93, + "_pop_closed_issues_count": 44, + "_pop_created_since_days": 94, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 19, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 19, + "_pop_issue_count": 93.0, + "_pop_comment_count": 119.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 4472, + "_pop_score": 66.48, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jupyter/nbconvert/master/README.md", "_readme_localurl": "jupyter~nbconvert~README.md", @@ -22834,9 +34268,9 @@ "description": null, "_repopath": "pyupio/safety", "_reponame": "safety", - "_stars": 1413, - "_forks": 122, - "_watches": 31, + "_stars": 1421, + "_forks": 123, + "_watches": 32, "_topics": [ "python", "security", @@ -22849,11 +34283,33 @@ "_homepage": "https://pyup.io/safety/", "_description": "Safety checks Python dependencies for known security vulnerabilities and suggests the proper remediations for vulnerabilities detected.", "_organization": "pyupio", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-28T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-08T00:00:00.000Z", "_created_at": "2016-10-19T00:00:00.000Z", - "_age_weeks": 320, + "_age_weeks": 321, "_stars_per_week": 4.42, + "_pop_contributor_count": 40, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "pyupio", + "syncsketch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.06, + "_pop_updated_issues_count": 63, + "_pop_closed_issues_count": 44, + "_pop_created_since_days": 75, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 63.0, + "_pop_comment_count": 38.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 1197, + "_pop_score": 52.82, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pyupio/safety/master/README.md", "_readme_localurl": "pyupio~safety~README.md", @@ -22876,7 +34332,7 @@ "description": null, "_repopath": "nficano/python-lambda", "_reponame": "python-lambda", - "_stars": 1413, + "_stars": 1415, "_forks": 227, "_watches": 31, "_topics": [ @@ -22890,11 +34346,33 @@ "_homepage": "", "_description": "python-lambda: A toolkit for developing and deploying serverless Python code in AWS Lambda. ", "_organization": "nficano", - "_updated_at": "2022-11-27T00:00:00.000Z", + "_updated_at": "2022-12-10T00:00:00.000Z", "_last_commit_date": "2022-06-03T00:00:00.000Z", "_created_at": "2016-02-26T00:00:00.000Z", - "_age_weeks": 353, - "_stars_per_week": 3.99, + "_age_weeks": 355, + "_stars_per_week": 3.98, + "_pop_contributor_count": 48, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "charliehealth", + "gemovationlabs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 83, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 2.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 61, + "_pop_score": 35.74, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/nficano/python-lambda/master/README.md", "_readme_localurl": "nficano~python-lambda~README.md", @@ -22920,8 +34398,8 @@ "description": null, "_repopath": "oegedijk/explainerdashboard", "_reponame": "explainerdashboard", - "_stars": 1396, - "_forks": 182, + "_stars": 1405, + "_forks": 184, "_watches": 15, "_topics": [ "dash", @@ -22943,11 +34421,33 @@ "_homepage": "http://explainerdashboard.readthedocs.io", "_description": "explainerdashboard: Quickly build Explainable AI dashboards that show the inner workings of so-called \"blackbox\" machine learning models.", "_organization": "oegedijk", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-06-16T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-09T00:00:00.000Z", "_created_at": "2019-10-30T00:00:00.000Z", - "_age_weeks": 162, - "_stars_per_week": 8.62, + "_age_weeks": 163, + "_stars_per_week": 8.58, + "_pop_contributor_count": 16, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "dtn", + "thoughtworks" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.15, + "_pop_updated_issues_count": 15, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 38, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 23, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 15.0, + "_pop_comment_count": 30.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 151, + "_pop_score": 43.4, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/oegedijk/explainerdashboard/master/README.md", "_readme_localurl": "oegedijk~explainerdashboard~README.md", @@ -22973,8 +34473,8 @@ "description": null, "_repopath": "jupyter-lsp/jupyterlab-lsp", "_reponame": "jupyterlab-lsp", - "_stars": 1381, - "_forks": 115, + "_stars": 1388, + "_forks": 116, "_watches": 16, "_topics": [ "jupyterlab", @@ -22996,11 +34496,34 @@ "_homepage": "", "_description": "jupyterlab-lsp: Coding assistance for JupyterLab (code navigation + hover suggestions + linters + autocompletion + rename) using Language Server Protocol", "_organization": "jupyter-lsp", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-09-28T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2019-08-17T00:00:00.000Z", - "_age_weeks": 172, - "_stars_per_week": 8.0, + "_age_weeks": 174, + "_stars_per_week": 7.96, + "_pop_contributor_count": 45, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "quantstack", + "universityofoxford" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.71, + "_pop_updated_issues_count": 49, + "_pop_closed_issues_count": 29, + "_pop_created_since_days": 41, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 49.0, + "_pop_comment_count": 76.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 4, + "_pop_score": 44.05, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jupyter-lsp/jupyterlab-lsp/master/README.md", "_readme_localurl": "jupyter-lsp~jupyterlab-lsp~README.md", @@ -23009,42 +34532,71 @@ "_requirements_localurls": [] }, { - "index": 284, - "category": "data", - "githuburl": "https://github.com/sdispater/orator", + "index": 683, + "category": "util", + "githuburl": "https://github.com/spotify/basic-pitch", "featured": null, "links": null, "description": null, - "_repopath": "sdispater/orator", - "_reponame": "orator", - "_stars": 1371, - "_forks": 166, - "_watches": 46, + "_repopath": "spotify/basic-pitch", + "_reponame": "basic-pitch", + "_stars": 1377, + "_forks": 68, + "_watches": 25, "_topics": [ + "lightweight", + "machine-learning", + "midi", + "music", + "pitch-detection", + "polyphonic", + "transcription", + "audio", "python", - "orm", - "database" + "typescript" ], "_language": "Python", - "_homepage": "https://orator-orm.com", - "_description": "orator: The Orator ORM provides a simple yet beautiful ActiveRecord implementation.", - "_organization": "sdispater", - "_updated_at": "2022-11-27T00:00:00.000Z", - "_last_commit_date": "2022-03-13T00:00:00.000Z", - "_created_at": "2015-05-24T00:00:00.000Z", - "_age_weeks": 393, - "_stars_per_week": 3.48, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/sdispater/orator/master/README.rst", - "_readme_localurl": "sdispater~orator~README.rst", + "_homepage": "https://basicpitch.io", + "_description": "basic-pitch: A lightweight yet powerful audio-to-MIDI converter with pitch bend detection", + "_organization": "spotify", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-08-30T00:00:00.000Z", + "_created_at": "2022-05-03T00:00:00.000Z", + "_age_weeks": 32, + "_stars_per_week": 41.91, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "christianclauss", + "spotify" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.58, + "_pop_updated_issues_count": 15, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 8, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 15.0, + "_pop_comment_count": 14.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 19.34, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/spotify/basic-pitch/master/README.md", + "_readme_localurl": "spotify~basic-pitch~README.md", "_requirements_filenames": [ - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/sdispater/orator/master/pyproject.toml" + "https://raw.githubusercontent.com/spotify/basic-pitch/master/setup.py" ], "_requirements_localurls": [ - "sdispater~orator~pyproject.toml" + "spotify~basic-pitch~setup.py" ] }, { @@ -23056,8 +34608,8 @@ "description": null, "_repopath": "simple-salesforce/simple-salesforce", "_reponame": "simple-salesforce", - "_stars": 1368, - "_forks": 604, + "_stars": 1375, + "_forks": 606, "_watches": 88, "_topics": [ "salesforce", @@ -23069,11 +34621,33 @@ "_homepage": null, "_description": "simple-salesforce: A very simple Salesforce.com REST API client for Python", "_organization": "simple-salesforce", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-10-26T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-07T00:00:00.000Z", "_created_at": "2013-01-17T00:00:00.000Z", - "_age_weeks": 515, - "_stars_per_week": 2.65, + "_age_weeks": 517, + "_stars_per_week": 2.66, + "_pop_contributor_count": 75, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + ":+1:", + "salesforce" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.21, + "_pop_updated_issues_count": 29, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 121, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 29.0, + "_pop_comment_count": 46.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 25, + "_pop_score": 46.6, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/simple-salesforce/simple-salesforce/master/README.rst", "_readme_localurl": "simple-salesforce~simple-salesforce~README.rst", @@ -23088,43 +34662,64 @@ ] }, { - "index": 267, - "category": "nlp", - "githuburl": "https://github.com/arxiv-vanity/arxiv-vanity", + "index": 284, + "category": "data", + "githuburl": "https://github.com/sdispater/orator", "featured": null, "links": null, "description": null, - "_repopath": "arxiv-vanity/arxiv-vanity", - "_reponame": "arxiv-vanity", - "_stars": 1363, - "_forks": 87, - "_watches": 22, + "_repopath": "sdispater/orator", + "_reponame": "orator", + "_stars": 1373, + "_forks": 165, + "_watches": 46, "_topics": [ - "latex", - "academic-publishing", - "science", - "arxiv" + "python", + "orm", + "database" ], "_language": "Python", - "_homepage": "https://www.arxiv-vanity.com", - "_description": "arxiv-vanity: Renders papers from arXiv as responsive web pages so you don't have to squint at a PDF.", - "_organization": "arxiv-vanity", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-01-18T00:00:00.000Z", - "_created_at": "2017-08-12T00:00:00.000Z", - "_age_weeks": 277, - "_stars_per_week": 4.91, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/arxiv-vanity/arxiv-vanity/master/README.md", - "_readme_localurl": "arxiv-vanity~arxiv-vanity~README.md", + "_homepage": "https://orator-orm.com", + "_description": "orator: The Orator ORM provides a simple yet beautiful ActiveRecord implementation.", + "_organization": "sdispater", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-03-13T00:00:00.000Z", + "_created_at": "2015-05-24T00:00:00.000Z", + "_age_weeks": 395, + "_stars_per_week": 3.47, + "_pop_contributor_count": 32, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bellawatt", + "masoniteframework" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 92, + "_pop_updated_since_days": 9, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 4, + "_pop_score": 27.07, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/sdispater/orator/master/README.rst", + "_readme_localurl": "sdispater~orator~README.rst", "_requirements_filenames": [ - "requirements.txt" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/arxiv-vanity/arxiv-vanity/master/requirements.txt" + "https://raw.githubusercontent.com/sdispater/orator/master/pyproject.toml" ], "_requirements_localurls": [ - "arxiv-vanity~arxiv-vanity~requirements.txt" + "sdispater~orator~pyproject.toml" ] }, { @@ -23136,8 +34731,8 @@ "description": null, "_repopath": "giswqs/leafmap", "_reponame": "leafmap", - "_stars": 1361, - "_forks": 162, + "_stars": 1371, + "_forks": 165, "_watches": 40, "_topics": [ "ipyleaflet", @@ -23164,11 +34759,34 @@ "_homepage": "https://leafmap.org", "_description": "leafmap: A Python package for interactive mapping and geospatial analysis with minimal coding in a Jupyter environment", "_organization": "giswqs", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-11T00:00:00.000Z", "_created_at": "2021-03-10T00:00:00.000Z", - "_age_weeks": 91, - "_stars_per_week": 14.96, + "_age_weeks": 92, + "_stars_per_week": 14.79, + "_pop_contributor_count": 19, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "germanaerospacecenter(dlr)", + "naxa", + "universityoftennessee" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.79, + "_pop_updated_issues_count": 40, + "_pop_closed_issues_count": 37, + "_pop_created_since_days": 22, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 42, + "_pop_recent_releases_estimated_tags": 35, + "_pop_recent_releases_adjusted_count": 42, + "_pop_issue_count": 40.0, + "_pop_comment_count": 85.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 4, + "_pop_score": 44.68, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/giswqs/leafmap/master/README.md", "_readme_localurl": "giswqs~leafmap~README.md", @@ -23186,41 +34804,64 @@ ] }, { - "index": 613, - "category": "testing", - "githuburl": "https://github.com/pytest-dev/pytest-cov", + "index": 267, + "category": "nlp", + "githuburl": "https://github.com/arxiv-vanity/arxiv-vanity", "featured": null, "links": null, "description": null, - "_repopath": "pytest-dev/pytest-cov", - "_reponame": "pytest-cov", - "_stars": 1353, - "_forks": 188, - "_watches": 33, + "_repopath": "arxiv-vanity/arxiv-vanity", + "_reponame": "arxiv-vanity", + "_stars": 1366, + "_forks": 87, + "_watches": 22, "_topics": [ - "pytest", - "python" + "latex", + "academic-publishing", + "science", + "arxiv" ], "_language": "Python", - "_homepage": "", - "_description": "pytest-cov: Coverage plugin for pytest.", - "_organization": "pytest-dev", - "_updated_at": "2022-12-02T00:00:00.000Z", - "_last_commit_date": "2022-12-03T00:00:00.000Z", - "_created_at": "2014-04-17T00:00:00.000Z", - "_age_weeks": 450, - "_stars_per_week": 3.0, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest-cov/master/README.rst", - "_readme_localurl": "pytest-dev~pytest-cov~README.rst", + "_homepage": "https://www.arxiv-vanity.com", + "_description": "arxiv-vanity: Renders papers from arXiv as responsive web pages so you don't have to squint at a PDF.", + "_organization": "arxiv-vanity", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-01-18T00:00:00.000Z", + "_created_at": "2017-08-12T00:00:00.000Z", + "_age_weeks": 279, + "_stars_per_week": 4.89, + "_pop_contributor_count": 9, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "replicate" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.13, + "_pop_updated_issues_count": 26, + "_pop_closed_issues_count": 15, + "_pop_created_since_days": 65, + "_pop_updated_since_days": 11, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 26.0, + "_pop_comment_count": 18.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 3, + "_pop_score": 23.08, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/arxiv-vanity/arxiv-vanity/master/README.md", + "_readme_localurl": "arxiv-vanity~arxiv-vanity~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pytest-dev/pytest-cov/master/setup.py" + "https://raw.githubusercontent.com/arxiv-vanity/arxiv-vanity/master/requirements.txt" ], "_requirements_localurls": [ - "pytest-dev~pytest-cov~setup.py" + "arxiv-vanity~arxiv-vanity~requirements.txt" ] }, { @@ -23232,7 +34873,7 @@ "description": null, "_repopath": "omry/omegaconf", "_reponame": "omegaconf", - "_stars": 1353, + "_stars": 1360, "_forks": 71, "_watches": 17, "_topics": [ @@ -23248,11 +34889,34 @@ "_homepage": "", "_description": "omegaconf: Flexible Python configuration system. The last one you will ever need.", "_organization": "omry", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2018-09-03T00:00:00.000Z", - "_age_weeks": 222, - "_stars_per_week": 6.09, + "_age_weeks": 224, + "_stars_per_week": 6.07, + "_pop_contributor_count": 28, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ceph", + "facebook", + "facebookairesearch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.33, + "_pop_updated_issues_count": 51, + "_pop_closed_issues_count": 35, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 51.0, + "_pop_comment_count": 34.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 58, + "_pop_score": 45.53, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/omry/omegaconf/master/README.md", "_readme_localurl": "omry~omegaconf~README.md", @@ -23278,8 +34942,8 @@ "description": null, "_repopath": "blankly-finance/blankly", "_reponame": "blankly", - "_stars": 1341, - "_forks": 172, + "_stars": 1357, + "_forks": 173, "_watches": 28, "_topics": [ "cryptocurrency", @@ -23304,11 +34968,33 @@ "_homepage": "https://package.blankly.finance", "_description": "blankly: \ud83d\ude80 \ud83d\udcb8 Easily build, backtest and deploy your algo in just a few lines of code. Trade stocks, cryptos, and forex across exchanges w/ one package.", "_organization": "blankly-finance", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-24T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-08T00:00:00.000Z", "_created_at": "2021-03-09T00:00:00.000Z", - "_age_weeks": 91, - "_stars_per_week": 14.71, + "_age_weeks": 92, + "_stars_per_week": 14.61, + "_pop_contributor_count": 16, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazonwebservices", + "student" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 10.13, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 22, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 16.0, + "_pop_comment_count": 29.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 4, + "_pop_score": 39.08, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/blankly-finance/blankly/master/README.md", "_readme_localurl": "blankly-finance~blankly~README.md", @@ -23322,6 +35008,66 @@ "blankly-finance~blankly~setup.py" ] }, + { + "index": 613, + "category": "testing", + "githuburl": "https://github.com/pytest-dev/pytest-cov", + "featured": null, + "links": null, + "description": null, + "_repopath": "pytest-dev/pytest-cov", + "_reponame": "pytest-cov", + "_stars": 1356, + "_forks": 190, + "_watches": 34, + "_topics": [ + "pytest", + "python" + ], + "_language": "Python", + "_homepage": "", + "_description": "pytest-cov: Coverage plugin for pytest.", + "_organization": "pytest-dev", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-03T00:00:00.000Z", + "_created_at": "2014-04-17T00:00:00.000Z", + "_age_weeks": 452, + "_stars_per_week": 3.0, + "_pop_contributor_count": 81, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "freelancer,upforhire", + "nordsoftware" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.73, + "_pop_updated_issues_count": 39, + "_pop_closed_issues_count": 18, + "_pop_created_since_days": 106, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 39.0, + "_pop_comment_count": 78.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 6181, + "_pop_score": 56.35, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest-cov/master/README.rst", + "_readme_localurl": "pytest-dev~pytest-cov~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pytest-dev/pytest-cov/master/setup.py" + ], + "_requirements_localurls": [ + "pytest-dev~pytest-cov~setup.py" + ] + }, { "index": 478, "category": "ml-dl", @@ -23331,19 +35077,41 @@ "description": null, "_repopath": "tensorflow/mesh", "_reponame": "mesh", - "_stars": 1340, - "_forks": 233, - "_watches": 43, + "_stars": 1344, + "_forks": 235, + "_watches": 44, "_topics": [], "_language": "Python", "_homepage": "", "_description": "Mesh TensorFlow: Model Parallelism Made Easier", "_organization": "tensorflow", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2022-10-04T00:00:00.000Z", "_created_at": "2018-09-20T00:00:00.000Z", - "_age_weeks": 219, - "_stars_per_week": 6.09, + "_age_weeks": 221, + "_stars_per_week": 6.07, + "_pop_contributor_count": 48, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "uncandhuggingface" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.13, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 1.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 40, + "_pop_score": 34.48, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tensorflow/mesh/master/README.md", "_readme_localurl": "tensorflow~mesh~README.md", @@ -23366,8 +35134,8 @@ "description": null, "_repopath": "pythonarcade/arcade", "_reponame": "arcade", - "_stars": 1338, - "_forks": 253, + "_stars": 1343, + "_forks": 252, "_watches": 56, "_topics": [ "python3", @@ -23383,11 +35151,35 @@ "_homepage": "http://arcade.academy", "_description": "arcade: Easy to use Python library for creating 2D arcade games.", "_organization": "pythonarcade", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2016-01-04T00:00:00.000Z", - "_age_weeks": 361, + "_age_weeks": 363, "_stars_per_week": 3.7, + "_pop_contributor_count": 131, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "freelance,opentofull-timeemployment", + "optimizely", + "vw-dilab", + "zetta.io" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 15.96, + "_pop_updated_issues_count": 135, + "_pop_closed_issues_count": 102, + "_pop_created_since_days": 85, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 18, + "_pop_recent_releases_adjusted_count": 18, + "_pop_issue_count": 135.0, + "_pop_comment_count": 153.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 112, + "_pop_score": 60.61, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pythonarcade/arcade/master/README.rst", "_readme_localurl": "pythonarcade~arcade~README.rst", @@ -23404,52 +35196,6 @@ "pythonarcade~arcade~setup.py" ] }, - { - "index": 683, - "category": "util", - "githuburl": "https://github.com/spotify/basic-pitch", - "featured": null, - "links": null, - "description": null, - "_repopath": "spotify/basic-pitch", - "_reponame": "basic-pitch", - "_stars": 1334, - "_forks": 62, - "_watches": 24, - "_topics": [ - "lightweight", - "machine-learning", - "midi", - "music", - "pitch-detection", - "polyphonic", - "transcription", - "audio", - "python", - "typescript" - ], - "_language": "Python", - "_homepage": "https://basicpitch.io", - "_description": "basic-pitch: A lightweight yet powerful audio-to-MIDI converter with pitch bend detection", - "_organization": "spotify", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-08-30T00:00:00.000Z", - "_created_at": "2022-05-03T00:00:00.000Z", - "_age_weeks": 31, - "_stars_per_week": 42.83, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/spotify/basic-pitch/master/README.md", - "_readme_localurl": "spotify~basic-pitch~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/spotify/basic-pitch/master/setup.py" - ], - "_requirements_localurls": [ - "spotify~basic-pitch~setup.py" - ] - }, { "index": 460, "category": "nlp", @@ -23459,9 +35205,9 @@ "description": null, "_repopath": "google-research/language", "_reponame": "language", - "_stars": 1333, + "_stars": 1339, "_forks": 311, - "_watches": 64, + "_watches": 65, "_topics": [ "natural-language-processing", "machine-learning", @@ -23471,11 +35217,34 @@ "_homepage": "https://ai.google/research/teams/language/", "_description": "language: Shared repository for open-sourced projects from the Google AI Language team.", "_organization": "google-research", - "_updated_at": "2022-11-28T00:00:00.000Z", - "_last_commit_date": "2022-10-17T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2018-10-16T00:00:00.000Z", - "_age_weeks": 216, - "_stars_per_week": 6.17, + "_age_weeks": 217, + "_stars_per_week": 6.15, + "_pop_contributor_count": 10, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "googleresearch", + "universityofwashington" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 51, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 16.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 20, + "_pop_score": 32.43, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google-research/language/master/README.md", "_readme_localurl": "google-research~language~README.md", @@ -23489,6 +35258,63 @@ "google-research~language~setup.py" ] }, + { + "index": 876, + "category": "study", + "githuburl": "https://github.com/rasbt/machine-learning-book", + "featured": null, + "links": null, + "description": null, + "_repopath": "rasbt/machine-learning-book", + "_reponame": "machine-learning-book", + "_stars": 1332, + "_forks": 496, + "_watches": 27, + "_topics": [ + "machine-learning", + "scikit-learn", + "deep-learning", + "neural-networks", + "pytorch" + ], + "_language": "Jupyter Notebook", + "_homepage": "https://sebastianraschka.com/books/#machine-learning-with-pytorch-and-scikit-learn", + "_description": "machine-learning-book: Code Repository for Machine Learning with PyTorch and Scikit-Learn", + "_organization": "rasbt", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-11-30T00:00:00.000Z", + "_created_at": "2021-12-19T00:00:00.000Z", + "_age_weeks": 52, + "_stars_per_week": 25.55, + "_pop_contributor_count": 9, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "lightning-ai,universityofwisconsin-madison" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.19, + "_pop_updated_issues_count": 31, + "_pop_closed_issues_count": 23, + "_pop_created_since_days": 12, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 31.0, + "_pop_comment_count": 31.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 10, + "_pop_score": 32.11, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/rasbt/machine-learning-book/master/README.md", + "_readme_localurl": "rasbt~machine-learning-book~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 659, "category": "ml", @@ -23498,7 +35324,7 @@ "description": null, "_repopath": "tensorly/tensorly", "_reponame": "tensorly", - "_stars": 1332, + "_stars": 1331, "_forks": 261, "_watches": 45, "_topics": [ @@ -23525,11 +35351,36 @@ "_homepage": "http://tensorly.org", "_description": "TensorLy: Tensor Learning in Python.", "_organization": "tensorly", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-22T00:00:00.000Z", + "_updated_at": "2022-12-10T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2016-10-21T00:00:00.000Z", - "_age_weeks": 319, - "_stars_per_week": 4.17, + "_age_weeks": 321, + "_stars_per_week": 4.14, + "_pop_contributor_count": 57, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "inria", + "nvidiaai", + "quansight", + "simulametropolitan", + "universityofcalifornia,losangeles" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.83, + "_pop_updated_issues_count": 33, + "_pop_closed_issues_count": 22, + "_pop_created_since_days": 75, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 33.0, + "_pop_comment_count": 47.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 8377, + "_pop_score": 60.62, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/tensorly/tensorly/master/README.rst", "_readme_localurl": "tensorly~tensorly~README.rst", @@ -23555,9 +35406,9 @@ "description": null, "_repopath": "hi-primus/optimus", "_reponame": "optimus", - "_stars": 1320, + "_stars": 1325, "_forks": 223, - "_watches": 40, + "_watches": 41, "_topics": [ "spark", "pyspark", @@ -23583,11 +35434,35 @@ "_homepage": "https://hi-optimus.com", "_description": "optimus: :truck: Agile Data Preparation Workflows made\u00a0easy with Pandas, Dask, cuDF, Dask-cuDF, Vaex and PySpark", "_organization": "hi-primus", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-10-17T00:00:00.000Z", "_created_at": "2017-07-13T00:00:00.000Z", - "_age_weeks": 281, - "_stars_per_week": 4.68, + "_age_weeks": 283, + "_stars_per_week": 4.67, + "_pop_contributor_count": 24, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "boitas", + "bumblebee", + "life", + "pyupio" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.33, + "_pop_updated_issues_count": 22, + "_pop_closed_issues_count": 16, + "_pop_created_since_days": 66, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 23, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 22.0, + "_pop_comment_count": 8.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 7, + "_pop_score": 41.25, "_readme_filename": "", "_readme_giturl": "", "_readme_localurl": "", @@ -23595,6 +35470,69 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, + { + "index": 317, + "category": "gamedev", + "githuburl": "https://github.com/pyglet/pyglet", + "featured": null, + "links": null, + "description": null, + "_repopath": "pyglet/pyglet", + "_reponame": "pyglet", + "_stars": 1318, + "_forks": 248, + "_watches": 29, + "_topics": [ + "pyglet", + "python", + "opengl", + "gamedev", + "scientific-visualization" + ], + "_language": "Python", + "_homepage": "http://pyglet.org", + "_description": "pyglet is a cross-platform windowing and multimedia library for Python, for developing games and other visually rich applications.", + "_organization": "pyglet", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2019-06-09T00:00:00.000Z", + "_age_weeks": 184, + "_stars_per_week": 7.16, + "_pop_contributor_count": 140, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "itv", + "tomtom-international" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.25, + "_pop_updated_issues_count": 92, + "_pop_closed_issues_count": 65, + "_pop_created_since_days": 43, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 92.0, + "_pop_comment_count": 261.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 225, + "_pop_score": 56.82, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pyglet/pyglet/master/README.md", + "_readme_localurl": "pyglet~pyglet~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pyglet/pyglet/master/setup.py" + ], + "_requirements_localurls": [ + "pyglet~pyglet~setup.py" + ] + }, { "index": 450, "category": "gis", @@ -23604,7 +35542,7 @@ "description": null, "_repopath": "jupyter-widgets/ipyleaflet", "_reponame": "ipyleaflet", - "_stars": 1314, + "_stars": 1316, "_forks": 348, "_watches": 61, "_topics": [ @@ -23617,11 +35555,34 @@ "_homepage": "https://ipyleaflet.readthedocs.io", "_description": "ipyleaflet: A Jupyter - Leaflet.js bridge", "_organization": "jupyter-widgets", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2022-10-27T00:00:00.000Z", "_created_at": "2014-05-07T00:00:00.000Z", - "_age_weeks": 448, + "_age_weeks": 449, "_stars_per_week": 2.93, + "_pop_contributor_count": 81, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazonwebservices", + "databricks", + "quantstack" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.98, + "_pop_updated_issues_count": 40, + "_pop_closed_issues_count": 22, + "_pop_created_since_days": 105, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 40.0, + "_pop_comment_count": 72.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 13, + "_pop_score": 46.28, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jupyter-widgets/ipyleaflet/master/README.md", "_readme_localurl": "jupyter-widgets~ipyleaflet~README.md", @@ -23638,82 +35599,6 @@ "jupyter-widgets~ipyleaflet~pyproject.toml" ] }, - { - "index": 876, - "category": "study", - "githuburl": "https://github.com/rasbt/machine-learning-book", - "featured": null, - "links": null, - "description": null, - "_repopath": "rasbt/machine-learning-book", - "_reponame": "machine-learning-book", - "_stars": 1310, - "_forks": 482, - "_watches": 26, - "_topics": [ - "machine-learning", - "scikit-learn", - "deep-learning", - "neural-networks", - "pytorch" - ], - "_language": "Jupyter Notebook", - "_homepage": "https://sebastianraschka.com/books/#machine-learning-with-pytorch-and-scikit-learn", - "_description": "machine-learning-book: Code Repository for Machine Learning with PyTorch and Scikit-Learn", - "_organization": "rasbt", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", - "_created_at": "2021-12-19T00:00:00.000Z", - "_age_weeks": 50, - "_stars_per_week": 25.98, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/rasbt/machine-learning-book/master/README.md", - "_readme_localurl": "rasbt~machine-learning-book~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, - { - "index": 317, - "category": "gamedev", - "githuburl": "https://github.com/pyglet/pyglet", - "featured": null, - "links": null, - "description": null, - "_repopath": "pyglet/pyglet", - "_reponame": "pyglet", - "_stars": 1304, - "_forks": 247, - "_watches": 29, - "_topics": [ - "pyglet", - "python", - "opengl", - "gamedev", - "scientific-visualization" - ], - "_language": "Python", - "_homepage": "http://pyglet.org", - "_description": "pyglet is a cross-platform windowing and multimedia library for Python, for developing games and other visually rich applications.", - "_organization": "pyglet", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", - "_created_at": "2019-06-09T00:00:00.000Z", - "_age_weeks": 182, - "_stars_per_week": 7.15, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pyglet/pyglet/master/README.md", - "_readme_localurl": "pyglet~pyglet~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pyglet/pyglet/master/setup.py" - ], - "_requirements_localurls": [ - "pyglet~pyglet~setup.py" - ] - }, { "index": 877, "category": "time-series", @@ -23723,8 +35608,8 @@ "description": null, "_repopath": "alkaline-ml/pmdarima", "_reponame": "pmdarima", - "_stars": 1282, - "_forks": 222, + "_stars": 1290, + "_forks": 223, "_watches": 36, "_topics": [ "arima", @@ -23741,11 +35626,35 @@ "_homepage": "https://www.alkaline-ml.com/pmdarima", "_description": "pmdarima: A statistical library designed to fill the void in Python's time series analysis capabilities, including the equivalent of R's auto.arima function.", "_organization": "alkaline-ml", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-03T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2017-03-30T00:00:00.000Z", - "_age_weeks": 296, + "_age_weeks": 298, "_stars_per_week": 4.32, + "_pop_contributor_count": 22, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "chivalrysoftware", + "microsoft", + "sevcosecurity", + "toyota-connected" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.46, + "_pop_updated_issues_count": 21, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 70, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 21.0, + "_pop_comment_count": 13.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 11, + "_pop_score": 41.37, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/alkaline-ml/pmdarima/master/README.md", "_readme_localurl": "alkaline-ml~pmdarima~README.md", @@ -23771,19 +35680,38 @@ "description": null, "_repopath": "divamgupta/stable-diffusion-tensorflow", "_reponame": "stable-diffusion-tensorflow", - "_stars": 1276, - "_forks": 167, + "_stars": 1288, + "_forks": 172, "_watches": 19, "_topics": [], "_language": "Python", "_homepage": "", "_description": "stable-diffusion-tensorflow: Stable Diffusion in TensorFlow / Keras", "_organization": "divamgupta", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-22T00:00:00.000Z", "_created_at": "2022-09-15T00:00:00.000Z", - "_age_weeks": 11, - "_stars_per_week": 107.61, + "_age_weeks": 13, + "_stars_per_week": 94.91, + "_pop_contributor_count": 13, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.79, + "_pop_updated_issues_count": 56, + "_pop_closed_issues_count": 34, + "_pop_created_since_days": 3, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 56.0, + "_pop_comment_count": 94.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 4, + "_pop_score": 23.09, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/divamgupta/stable-diffusion-tensorflow/master/README.md", "_readme_localurl": "divamgupta~stable-diffusion-tensorflow~README.md", @@ -23809,8 +35737,8 @@ "description": null, "_repopath": "apache/incubator-sedona", "_reponame": "incubator-sedona", - "_stars": 1269, - "_forks": 532, + "_stars": 1282, + "_forks": 536, "_watches": 101, "_topics": [ "cluster-computing", @@ -23826,11 +35754,35 @@ "_homepage": "http://sedona.apache.org/", "_description": "incubator-sedona: A cluster computing framework for processing large-scale geospatial data", "_organization": "apache", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2015-04-24T00:00:00.000Z", - "_age_weeks": 397, - "_stars_per_week": 3.19, + "_age_weeks": 399, + "_stars_per_week": 3.21, + "_pop_contributor_count": 91, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bloomberg", + "grab", + "nttdata", + "wherobots" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.79, + "_pop_updated_issues_count": 52, + "_pop_closed_issues_count": 46, + "_pop_created_since_days": 93, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 52.0, + "_pop_comment_count": 62.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 45.42, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/apache/incubator-sedona/master/README.md", "_readme_localurl": "apache~incubator-sedona~README.md", @@ -23847,7 +35799,7 @@ "description": null, "_repopath": "mchong6/jojogan", "_reponame": "JoJoGAN", - "_stars": 1264, + "_stars": 1272, "_forks": 185, "_watches": 24, "_topics": [ @@ -23859,11 +35811,32 @@ "_homepage": "", "_description": "Official PyTorch repo for JoJoGAN: One Shot Face Stylization", "_organization": "mchong6", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-02-05T00:00:00.000Z", "_created_at": "2021-12-17T00:00:00.000Z", - "_age_weeks": 50, - "_stars_per_week": 24.92, + "_age_weeks": 52, + "_stars_per_week": 24.26, + "_pop_contributor_count": 3, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "huggingface" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.48, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 12, + "_pop_updated_since_days": 11, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 12, + "_pop_score": 14.76, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/mchong6/jojogan/master/README.md", "_readme_localurl": "mchong6~jojogan~README.md", @@ -23871,6 +35844,78 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, + { + "index": 465, + "category": "ml-dl", + "githuburl": "https://github.com/pytorch/torchrec", + "featured": null, + "links": null, + "description": null, + "_repopath": "pytorch/torchrec", + "_reponame": "torchrec", + "_stars": 1254, + "_forks": 206, + "_watches": 24, + "_topics": [ + "pytorch", + "gpu", + "deep-learning", + "cuda", + "recommender-system", + "recommendation-system", + "sharding" + ], + "_language": "Python", + "_homepage": "", + "_description": "torchrec: Pytorch domain library for recommendation systems", + "_organization": "pytorch", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_created_at": "2021-07-12T00:00:00.000Z", + "_age_weeks": 75, + "_stars_per_week": 16.72, + "_pop_contributor_count": 132, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebook", + "facebookai", + "pytorch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 15.67, + "_pop_updated_issues_count": 312, + "_pop_closed_issues_count": 272, + "_pop_created_since_days": 17, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 312.0, + "_pop_comment_count": 699.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 568, + "_pop_score": 59.54, + "_readme_filename": "", + "_readme_giturl": "", + "_readme_localurl": "", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pytorch/torchrec/master/requirements.txt", + "https://raw.githubusercontent.com/pytorch/torchrec/master/setup.py", + "https://raw.githubusercontent.com/pytorch/torchrec/master/pyproject.toml" + ], + "_requirements_localurls": [ + "pytorch~torchrec~requirements.txt", + "pytorch~torchrec~setup.py", + "pytorch~torchrec~pyproject.toml" + ] + }, { "index": 514, "category": "data", @@ -23880,19 +35925,40 @@ "description": null, "_repopath": "agronholm/sqlacodegen", "_reponame": "sqlacodegen", - "_stars": 1235, - "_forks": 195, + "_stars": 1243, + "_forks": 194, "_watches": 20, "_topics": [], "_language": "Python", "_homepage": "", "_description": "sqlacodegen: Automatic model code generator for SQLAlchemy", "_organization": "agronholm", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-11-23T00:00:00.000Z", "_created_at": "2016-12-28T00:00:00.000Z", - "_age_weeks": 310, - "_stars_per_week": 3.98, + "_age_weeks": 311, + "_stars_per_week": 3.99, + "_pop_contributor_count": 16, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "nextdaysolutionsoy" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.04, + "_pop_updated_issues_count": 20, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 73, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 20.0, + "_pop_comment_count": 50.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 3, + "_pop_score": 35.2, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/agronholm/sqlacodegen/master/README.rst", "_readme_localurl": "agronholm~sqlacodegen~README.rst", @@ -23907,52 +35973,72 @@ ] }, { - "index": 465, + "index": 581, "category": "ml-dl", - "githuburl": "https://github.com/pytorch/torchrec", + "githuburl": "https://github.com/alpa-projects/alpa", "featured": null, "links": null, "description": null, - "_repopath": "pytorch/torchrec", - "_reponame": "torchrec", - "_stars": 1231, - "_forks": 200, - "_watches": 24, + "_repopath": "alpa-projects/alpa", + "_reponame": "alpa", + "_stars": 1234, + "_forks": 138, + "_watches": 20, "_topics": [ - "pytorch", - "gpu", "deep-learning", - "cuda", - "recommender-system", - "recommendation-system", - "sharding" + "machine-learning", + "compiler", + "distributed-training", + "high-performance-computing", + "alpa", + "jax", + "distributed-computing", + "llm", + "auto-parallelization" ], "_language": "Python", - "_homepage": "", - "_description": "torchrec: Pytorch domain library for recommendation systems", - "_organization": "pytorch", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2021-07-12T00:00:00.000Z", - "_age_weeks": 73, - "_stars_per_week": 16.8, - "_readme_filename": "", - "_readme_giturl": "", - "_readme_localurl": "", + "_homepage": "https://alpa.ai", + "_description": "alpa: Training and serving large-scale neural networks", + "_organization": "alpa-projects", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2021-02-22T00:00:00.000Z", + "_age_weeks": 95, + "_stars_per_week": 12.99, + "_pop_contributor_count": 26, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "carnegiemellonuniversity", + "pekinguniversity", + "ucberkeley" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.83, + "_pop_updated_issues_count": 128, + "_pop_closed_issues_count": 101, + "_pop_created_since_days": 22, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 127.0, + "_pop_comment_count": 225.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 19, + "_pop_score": 47.97, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/alpa-projects/alpa/master/README.md", + "_readme_localurl": "alpa-projects~alpa~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pytorch/torchrec/master/requirements.txt", - "https://raw.githubusercontent.com/pytorch/torchrec/master/setup.py", - "https://raw.githubusercontent.com/pytorch/torchrec/master/pyproject.toml" + "https://raw.githubusercontent.com/alpa-projects/alpa/master/setup.py" ], "_requirements_localurls": [ - "pytorch~torchrec~requirements.txt", - "pytorch~torchrec~setup.py", - "pytorch~torchrec~pyproject.toml" + "alpa-projects~alpa~setup.py" ] }, { @@ -23964,9 +36050,9 @@ "description": null, "_repopath": "aistream-peelout/flow-forecast", "_reponame": "flow-forecast", - "_stars": 1218, - "_forks": 207, - "_watches": 19, + "_stars": 1231, + "_forks": 209, + "_watches": 20, "_topics": [ "deep-learning", "pytorch", @@ -23984,29 +36070,230 @@ "hacktoberfest" ], "_language": "Python", - "_homepage": "https://flow-forecast.atlassian.net/wiki/spaces/FF/overview", - "_description": "flow-forecast: Deep learning PyTorch library for time series forecasting, classification, and anomaly detection (originally for flood forecasting).", - "_organization": "aistream-peelout", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2019-08-15T00:00:00.000Z", - "_age_weeks": 172, - "_stars_per_week": 7.05, + "_homepage": "https://flow-forecast.atlassian.net/wiki/spaces/FF/overview", + "_description": "flow-forecast: Deep learning PyTorch library for time series forecasting, classification, and anomaly detection (originally for flood forecasting).", + "_organization": "aistream-peelout", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_created_at": "2019-08-15T00:00:00.000Z", + "_age_weeks": 174, + "_stars_per_week": 7.05, + "_pop_contributor_count": 14, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "okratechnologies" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.37, + "_pop_updated_issues_count": 35, + "_pop_closed_issues_count": 26, + "_pop_created_since_days": 41, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 35.0, + "_pop_comment_count": 29.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 61, + "_pop_score": 40.68, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/README.md", + "_readme_localurl": "aistream-peelout~flow-forecast~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/requirements.txt", + "https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/setup.py" + ], + "_requirements_localurls": [ + "aistream-peelout~flow-forecast~requirements.txt", + "aistream-peelout~flow-forecast~setup.py" + ] + }, + { + "index": 372, + "category": "gis", + "githuburl": "https://github.com/microsoft/torchgeo", + "featured": null, + "links": null, + "description": null, + "_repopath": "microsoft/torchgeo", + "_reponame": "torchgeo", + "_stars": 1230, + "_forks": 144, + "_watches": 33, + "_topics": [ + "pytorch", + "torchvision", + "datasets", + "models", + "transforms", + "remote-sensing", + "deep-learning", + "earth-observation" + ], + "_language": "Python", + "_homepage": "https://torchgeo.rtfd.io", + "_description": "TorchGeo: datasets, samplers, transforms, and pre-trained models for geospatial data", + "_organization": "microsoft", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2021-05-21T00:00:00.000Z", + "_age_weeks": 82, + "_stars_per_week": 14.92, + "_pop_contributor_count": 27, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "dronebase", + "microsoft", + "universityofillinoisaturbana-champaign" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.88, + "_pop_updated_issues_count": 202, + "_pop_closed_issues_count": 160, + "_pop_created_since_days": 19, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 202.0, + "_pop_comment_count": 309.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 13, + "_pop_score": 46.07, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/microsoft/torchgeo/master/README.md", + "_readme_localurl": "microsoft~torchgeo~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/microsoft/torchgeo/master/pyproject.toml" + ], + "_requirements_localurls": [ + "microsoft~torchgeo~pyproject.toml" + ] + }, + { + "index": 829, + "category": "study", + "githuburl": "https://github.com/huggingface/diffusion-models-class", + "featured": null, + "links": null, + "description": null, + "_repopath": "huggingface/diffusion-models-class", + "_reponame": "diffusion-models-class", + "_stars": 1220, + "_forks": 97, + "_watches": 61, + "_topics": [], + "_language": "Jupyter Notebook", + "_homepage": null, + "_description": "diffusion-models-class: Materials for the Hugging Face Diffusion Models Course", + "_organization": "huggingface", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_created_at": "2022-10-13T00:00:00.000Z", + "_age_weeks": 9, + "_stars_per_week": 127.46, + "_pop_contributor_count": 10, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "drcfsorg", + "huggingface", + "relx" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.31, + "_pop_updated_issues_count": 27, + "_pop_closed_issues_count": 25, + "_pop_created_since_days": 2, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 27.0, + "_pop_comment_count": 38.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 25.81, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/huggingface/diffusion-models-class/master/README.md", + "_readme_localurl": "huggingface~diffusion-models-class~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 178, + "category": "nlp", + "githuburl": "https://github.com/explosion/spacy-models", + "featured": null, + "links": null, + "description": null, + "_repopath": "explosion/spacy-models", + "_reponame": "spacy-models", + "_stars": 1217, + "_forks": 275, + "_watches": 48, + "_topics": [ + "spacy", + "nlp", + "natural-language-processing", + "machine-learning", + "models", + "machine-learning-models", + "statistical-models", + "spacy-models" + ], + "_language": "Python", + "_homepage": "https://spacy.io", + "_description": "spacy-models: \ud83d\udcab Models for the spaCy Natural Language Processing (NLP) library", + "_organization": "explosion", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_created_at": "2017-03-14T00:00:00.000Z", + "_age_weeks": 300, + "_stars_per_week": 4.05, + "_pop_contributor_count": 14, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cotonoha", + "explosion", + "founderexplosion" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.63, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 70, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 166, + "_pop_recent_releases_estimated_tags": 128, + "_pop_recent_releases_adjusted_count": 166, + "_pop_issue_count": 5.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 68, + "_pop_score": 43.17, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/README.md", - "_readme_localurl": "aistream-peelout~flow-forecast~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/requirements.txt", - "https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/setup.py" - ], - "_requirements_localurls": [ - "aistream-peelout~flow-forecast~requirements.txt", - "aistream-peelout~flow-forecast~setup.py" - ] + "_readme_giturl": "https://raw.githubusercontent.com/explosion/spacy-models/master/README.md", + "_readme_localurl": "explosion~spacy-models~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { "index": 414, @@ -24017,8 +36304,8 @@ "description": null, "_repopath": "chrismattmann/tika-python", "_reponame": "tika-python", - "_stars": 1213, - "_forks": 222, + "_stars": 1215, + "_forks": 223, "_watches": 37, "_topics": [ "tika-server", @@ -24046,11 +36333,32 @@ "_homepage": "", "_description": "Tika-Python is a Python binding to the Apache Tika\u2122 REST services allowing Tika to be called natively in the Python community.", "_organization": "chrismattmann", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2021-06-07T00:00:00.000Z", "_created_at": "2014-06-26T00:00:00.000Z", - "_age_weeks": 440, + "_age_weeks": 442, "_stars_per_week": 2.75, + "_pop_contributor_count": 63, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "nasa" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 103, + "_pop_updated_since_days": 19, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 10.0, + "_pop_comment_count": 14.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 37, + "_pop_score": 33.55, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/chrismattmann/tika-python/master/README.md", "_readme_localurl": "chrismattmann~tika-python~README.md", @@ -24067,90 +36375,6 @@ "chrismattmann~tika-python~setup.py" ] }, - { - "index": 178, - "category": "nlp", - "githuburl": "https://github.com/explosion/spacy-models", - "featured": null, - "links": null, - "description": null, - "_repopath": "explosion/spacy-models", - "_reponame": "spacy-models", - "_stars": 1211, - "_forks": 271, - "_watches": 47, - "_topics": [ - "spacy", - "nlp", - "natural-language-processing", - "machine-learning", - "models", - "machine-learning-models", - "statistical-models", - "spacy-models" - ], - "_language": "Python", - "_homepage": "https://spacy.io", - "_description": "spacy-models: \ud83d\udcab Models for the spaCy Natural Language Processing (NLP) library", - "_organization": "explosion", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", - "_created_at": "2017-03-14T00:00:00.000Z", - "_age_weeks": 299, - "_stars_per_week": 4.05, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/explosion/spacy-models/master/README.md", - "_readme_localurl": "explosion~spacy-models~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, - { - "index": 581, - "category": "ml-dl", - "githuburl": "https://github.com/alpa-projects/alpa", - "featured": null, - "links": null, - "description": null, - "_repopath": "alpa-projects/alpa", - "_reponame": "alpa", - "_stars": 1203, - "_forks": 130, - "_watches": 20, - "_topics": [ - "deep-learning", - "machine-learning", - "compiler", - "distributed-training", - "high-performance-computing", - "alpa", - "jax", - "distributed-computing", - "llm", - "auto-parallelization" - ], - "_language": "Python", - "_homepage": "https://alpa.ai", - "_description": "alpa: Training and serving large-scale neural networks", - "_organization": "alpa-projects", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2021-02-22T00:00:00.000Z", - "_age_weeks": 93, - "_stars_per_week": 12.9, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/alpa-projects/alpa/master/README.md", - "_readme_localurl": "alpa-projects~alpa~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/alpa-projects/alpa/master/setup.py" - ], - "_requirements_localurls": [ - "alpa-projects~alpa~setup.py" - ] - }, { "index": 474, "category": "nlp", @@ -24160,9 +36384,9 @@ "description": null, "_repopath": "neuralmagic/deepsparse", "_reponame": "deepsparse", - "_stars": 1183, - "_forks": 71, - "_watches": 36, + "_stars": 1196, + "_forks": 73, + "_watches": 37, "_topics": [ "ml", "machinelearning", @@ -24189,11 +36413,32 @@ "_homepage": "", "_description": "deepsparse: Inference runtime offering GPU-class performance on CPUs and APIs to integrate ML into your application", "_organization": "neuralmagic", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2020-12-14T00:00:00.000Z", - "_age_weeks": 103, - "_stars_per_week": 11.45, + "_age_weeks": 105, + "_stars_per_week": 11.39, + "_pop_contributor_count": 29, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "neuralmagic" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.83, + "_pop_updated_issues_count": 179, + "_pop_closed_issues_count": 159, + "_pop_created_since_days": 24, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 179.0, + "_pop_comment_count": 111.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 37.86, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/neuralmagic/deepsparse/master/README.md", "_readme_localurl": "neuralmagic~deepsparse~README.md", @@ -24210,6 +36455,81 @@ "neuralmagic~deepsparse~pyproject.toml" ] }, + { + "index": 435, + "category": "data", + "githuburl": "https://github.com/sdv-dev/sdv", + "featured": null, + "links": null, + "description": null, + "_repopath": "sdv-dev/sdv", + "_reponame": "SDV", + "_stars": 1187, + "_forks": 189, + "_watches": 40, + "_topics": [ + "synthetic-data", + "machine-learning", + "relational-datasets", + "multi-table", + "time-series", + "synthetic-data-generation", + "sdv", + "data-generation", + "generative-adversarial-network", + "gan", + "gans", + "deep-learning", + "generative-ai", + "generative-model" + ], + "_language": "Python", + "_homepage": "https://sdv.dev/SDV", + "_description": "SDV: Synthetic Data Generation for tabular, relational and time series data.", + "_organization": "sdv-dev", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_created_at": "2018-05-11T00:00:00.000Z", + "_age_weeks": 240, + "_stars_per_week": 4.94, + "_pop_contributor_count": 41, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "precognit", + "pythiac" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.85, + "_pop_updated_issues_count": 160, + "_pop_closed_issues_count": 113, + "_pop_created_since_days": 56, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 160.0, + "_pop_comment_count": 131.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 7, + "_pop_score": 44.85, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/sdv-dev/sdv/master/README.md", + "_readme_localurl": "sdv-dev~sdv~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/sdv-dev/sdv/master/requirements.txt", + "https://raw.githubusercontent.com/sdv-dev/sdv/master/setup.py" + ], + "_requirements_localurls": [ + "sdv-dev~sdv~requirements.txt", + "sdv-dev~sdv~setup.py" + ] + }, { "index": 162, "category": "nlp", @@ -24219,8 +36539,8 @@ "description": null, "_repopath": "explosion/spacy-transformers", "_reponame": "spacy-transformers", - "_stars": 1177, - "_forks": 152, + "_stars": 1184, + "_forks": 154, "_watches": 30, "_topics": [ "spacy", @@ -24245,11 +36565,34 @@ "_homepage": "https://spacy.io/usage/embeddings-transformers", "_description": "spacy-transformers: \ud83d\udef8 Use pretrained transformers like BERT, XLNet and GPT-2 in spaCy", "_organization": "explosion", - "_updated_at": "2022-12-03T00:00:00.000Z", - "_last_commit_date": "2022-11-17T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2019-07-26T00:00:00.000Z", - "_age_weeks": 175, - "_stars_per_week": 6.7, + "_age_weeks": 177, + "_stars_per_week": 6.67, + "_pop_contributor_count": 19, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "explosion&oxykodit", + "founderexplosion", + "indeedeng" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.58, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 12, + "_pop_created_since_days": 41, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 14.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 14, + "_pop_score": 38.15, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/explosion/spacy-transformers/master/README.md", "_readme_localurl": "explosion~spacy-transformers~README.md", @@ -24278,8 +36621,8 @@ "description": null, "_repopath": "collerek/ormar", "_reponame": "ormar", - "_stars": 1173, - "_forks": 60, + "_stars": 1182, + "_forks": 61, "_watches": 15, "_topics": [ "orm", @@ -24295,11 +36638,34 @@ "_homepage": "https://collerek.github.io/ormar/", "_description": "ormar: python async orm with fastapi in mind and pydantic validation", "_organization": "collerek", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-23T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2020-08-02T00:00:00.000Z", - "_age_weeks": 122, - "_stars_per_week": 9.58, + "_age_weeks": 124, + "_stars_per_week": 9.52, + "_pop_contributor_count": 30, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "kaizentech", + "leyantech", + "wheel-me" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.63, + "_pop_updated_issues_count": 121, + "_pop_closed_issues_count": 100, + "_pop_created_since_days": 29, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 31, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 121.0, + "_pop_comment_count": 131.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 130, + "_pop_score": 49.96, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/collerek/ormar/master/README.md", "_readme_localurl": "collerek~ormar~README.md", @@ -24313,59 +36679,6 @@ "collerek~ormar~pyproject.toml" ] }, - { - "index": 435, - "category": "data", - "githuburl": "https://github.com/sdv-dev/sdv", - "featured": null, - "links": null, - "description": null, - "_repopath": "sdv-dev/sdv", - "_reponame": "SDV", - "_stars": 1169, - "_forks": 188, - "_watches": 39, - "_topics": [ - "synthetic-data", - "machine-learning", - "relational-datasets", - "multi-table", - "time-series", - "synthetic-data-generation", - "sdv", - "data-generation", - "generative-adversarial-network", - "gan", - "gans", - "deep-learning", - "generative-ai", - "generative-model" - ], - "_language": "Python", - "_homepage": "https://sdv.dev/SDV", - "_description": "SDV: Synthetic Data Generation for tabular, relational and time series data.", - "_organization": "sdv-dev", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2018-05-11T00:00:00.000Z", - "_age_weeks": 238, - "_stars_per_week": 4.9, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/sdv-dev/sdv/master/README.md", - "_readme_localurl": "sdv-dev~sdv~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/sdv-dev/sdv/master/requirements.txt", - "https://raw.githubusercontent.com/sdv-dev/sdv/master/setup.py" - ], - "_requirements_localurls": [ - "sdv-dev~sdv~requirements.txt", - "sdv-dev~sdv~setup.py" - ] - }, { "index": 566, "category": "gis", @@ -24375,8 +36688,8 @@ "description": null, "_repopath": "gboeing/osmnx-examples", "_reponame": "osmnx-examples", - "_stars": 1165, - "_forks": 433, + "_stars": 1179, + "_forks": 434, "_watches": 54, "_topics": [ "street-networks", @@ -24402,11 +36715,32 @@ "_homepage": "https://github.com/gboeing/osmnx", "_description": "osmnx-examples: Usage examples, demos, and tutorials for OSMnx.", "_organization": "gboeing", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-08-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2017-07-22T00:00:00.000Z", - "_age_weeks": 280, - "_stars_per_week": 4.15, + "_age_weeks": 282, + "_stars_per_week": 4.18, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "universityofsoutherncalifornia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.31, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 66, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 2.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 3, + "_pop_score": 23.77, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/gboeing/osmnx-examples/master/README.md", "_readme_localurl": "gboeing~osmnx-examples~README.md", @@ -24415,47 +36749,70 @@ "_requirements_localurls": [] }, { - "index": 372, - "category": "gis", - "githuburl": "https://github.com/microsoft/torchgeo", + "index": 451, + "category": "util", + "githuburl": "https://github.com/imageio/imageio", "featured": null, "links": null, "description": null, - "_repopath": "microsoft/torchgeo", - "_reponame": "torchgeo", - "_stars": 1162, - "_forks": 137, - "_watches": 32, + "_repopath": "imageio/imageio", + "_reponame": "imageio", + "_stars": 1168, + "_forks": 235, + "_watches": 31, "_topics": [ - "pytorch", - "torchvision", - "datasets", - "models", - "transforms", - "remote-sensing", - "deep-learning", - "earth-observation" + "python", + "imageio", + "animated-gif", + "video", + "webcam-capture", + "scientific-formats", + "dicom" ], "_language": "Python", - "_homepage": "https://torchgeo.rtfd.io", - "_description": "TorchGeo: datasets, samplers, transforms, and pre-trained models for geospatial data", - "_organization": "microsoft", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2021-05-21T00:00:00.000Z", - "_age_weeks": 80, - "_stars_per_week": 14.4, + "_homepage": "https://imageio.readthedocs.io", + "_description": "imageio: Python library for reading and writing image data", + "_organization": "imageio", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2013-05-04T00:00:00.000Z", + "_age_weeks": 502, + "_stars_per_week": 2.33, + "_pop_contributor_count": 95, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "actions", + "independentsoftwareengineer", + "mongodb", + "usr-lab" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.46, + "_pop_updated_issues_count": 52, + "_pop_closed_issues_count": 36, + "_pop_created_since_days": 117, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 26, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 26, + "_pop_issue_count": 52.0, + "_pop_comment_count": 155.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 2463, + "_pop_score": 65.33, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/microsoft/torchgeo/master/README.md", - "_readme_localurl": "microsoft~torchgeo~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/imageio/imageio/master/README.md", + "_readme_localurl": "imageio~imageio~README.md", "_requirements_filenames": [ - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/microsoft/torchgeo/master/pyproject.toml" + "https://raw.githubusercontent.com/imageio/imageio/master/setup.py" ], "_requirements_localurls": [ - "microsoft~torchgeo~pyproject.toml" + "imageio~imageio~setup.py" ] }, { @@ -24467,19 +36824,41 @@ "description": null, "_repopath": "pytables/pytables", "_reponame": "PyTables", - "_stars": 1161, - "_forks": 235, + "_stars": 1163, + "_forks": 236, "_watches": 59, "_topics": [], "_language": "Python", "_homepage": "http://www.pytables.org", "_description": "PyTables: A Python package to manage extremely large amounts of data", "_organization": "pytables", - "_updated_at": "2022-12-01T00:00:00.000Z", - "_last_commit_date": "2022-11-17T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2011-06-03T00:00:00.000Z", - "_age_weeks": 600, + "_age_weeks": 602, "_stars_per_week": 1.93, + "_pop_contributor_count": 110, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "coornhertgymnasium", + "francescalted" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.96, + "_pop_updated_issues_count": 36, + "_pop_closed_issues_count": 22, + "_pop_created_since_days": 141, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 36.0, + "_pop_comment_count": 105.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.9, + "_pop_dependents_count": 132, + "_pop_score": 53.64, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pytables/pytables/master/README.rst", "_readme_localurl": "pytables~pytables~README.rst", @@ -24500,47 +36879,67 @@ ] }, { - "index": 451, - "category": "util", - "githuburl": "https://github.com/imageio/imageio", + "index": 304, + "category": "nlp", + "githuburl": "https://github.com/featureform/embeddinghub", "featured": null, "links": null, "description": null, - "_repopath": "imageio/imageio", - "_reponame": "imageio", - "_stars": 1155, - "_forks": 232, - "_watches": 31, + "_repopath": "featureform/embeddinghub", + "_reponame": "featureform", + "_stars": 1162, + "_forks": 42, + "_watches": 12, "_topics": [ - "python", - "imageio", - "animated-gif", - "video", - "webcam-capture", - "scientific-formats", - "dicom" + "machine-learning", + "data-science", + "vector-database", + "embeddings-similarity", + "embeddings", + "hacktoberfest", + "feature-store", + "mlops", + "data-quality", + "feature-engineering", + "ml", + "python" ], - "_language": "Python", - "_homepage": "https://imageio.readthedocs.io", - "_description": "imageio: Python library for reading and writing image data", - "_organization": "imageio", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", - "_created_at": "2013-05-04T00:00:00.000Z", - "_age_weeks": 500, - "_stars_per_week": 2.31, + "_language": "Go", + "_homepage": "https://www.featureform.com", + "_description": "featureform: The Virtual Feature Store. Turn your existing data infrastructure into a feature store.", + "_organization": "featureform", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_created_at": "2020-10-16T00:00:00.000Z", + "_age_weeks": 113, + "_stars_per_week": 10.24, + "_pop_contributor_count": 18, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "featureform" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 47.98, + "_pop_updated_issues_count": 124, + "_pop_closed_issues_count": 103, + "_pop_created_since_days": 26, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 124.0, + "_pop_comment_count": 103.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 9, + "_pop_score": 42.88, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/imageio/imageio/master/README.md", - "_readme_localurl": "imageio~imageio~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/imageio/imageio/master/setup.py" - ], - "_requirements_localurls": [ - "imageio~imageio~setup.py" - ] + "_readme_giturl": "https://raw.githubusercontent.com/featureform/embeddinghub/master/README.md", + "_readme_localurl": "featureform~embeddinghub~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { "index": 494, @@ -24551,8 +36950,8 @@ "description": null, "_repopath": "hysts/pytorch_image_classification", "_reponame": "pytorch_image_classification", - "_stars": 1154, - "_forks": 291, + "_stars": 1159, + "_forks": 289, "_watches": 27, "_topics": [ "pytorch", @@ -24565,11 +36964,30 @@ "_homepage": "", "_description": "pytorch_image_classification: PyTorch implementation of image classification models for CIFAR-10/CIFAR-100/MNIST/FashionMNIST/Kuzushiji-MNIST/ImageNet", "_organization": "hysts", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2021-12-12T00:00:00.000Z", "_created_at": "2017-12-09T00:00:00.000Z", - "_age_weeks": 260, - "_stars_per_week": 4.43, + "_age_weeks": 262, + "_stars_per_week": 4.42, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 61, + "_pop_updated_since_days": 12, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 5.75, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/hysts/pytorch_image_classification/master/README.md", "_readme_localurl": "hysts~pytorch_image_classification~README.md", @@ -24583,48 +37001,6 @@ "hysts~pytorch_image_classification~requirements.txt" ] }, - { - "index": 304, - "category": "nlp", - "githuburl": "https://github.com/featureform/embeddinghub", - "featured": null, - "links": null, - "description": null, - "_repopath": "featureform/embeddinghub", - "_reponame": "featureform", - "_stars": 1150, - "_forks": 42, - "_watches": 12, - "_topics": [ - "machine-learning", - "data-science", - "vector-database", - "embeddings-similarity", - "embeddings", - "hacktoberfest", - "feature-store", - "mlops", - "data-quality", - "feature-engineering", - "ml", - "python" - ], - "_language": "Go", - "_homepage": "https://www.featureform.com", - "_description": "featureform: The Virtual Feature Store. Turn your existing data infrastructure into a feature store.", - "_organization": "featureform", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2020-10-16T00:00:00.000Z", - "_age_weeks": 111, - "_stars_per_week": 10.29, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/featureform/embeddinghub/master/README.md", - "_readme_localurl": "featureform~embeddinghub~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 725, "category": "typing", @@ -24634,7 +37010,7 @@ "description": null, "_repopath": "patrick-kidger/torchtyping", "_reponame": "torchtyping", - "_stars": 1149, + "_stars": 1153, "_forks": 27, "_watches": 13, "_topics": [ @@ -24649,11 +37025,34 @@ "_homepage": "", "_description": "torchtyping: Type annotations and dynamic checking for a tensor's shape, dtype, names, etc.", "_organization": "patrick-kidger", - "_updated_at": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2022-07-11T00:00:00.000Z", "_created_at": "2021-03-28T00:00:00.000Z", - "_age_weeks": 88, - "_stars_per_week": 12.99, + "_age_weeks": 90, + "_stars_per_week": 12.79, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "avatarify", + "googlex", + "irtsaint-exup\u00e9ry" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 21, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 10.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 2, + "_pop_score": 24.31, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/patrick-kidger/torchtyping/master/README.md", "_readme_localurl": "patrick-kidger~torchtyping~README.md", @@ -24679,8 +37078,8 @@ "description": null, "_repopath": "jupyter/nbgrader", "_reponame": "nbgrader", - "_stars": 1148, - "_forks": 314, + "_stars": 1151, + "_forks": 315, "_watches": 43, "_topics": [ "nbgrader", @@ -24694,11 +37093,32 @@ "_homepage": "https://nbgrader.readthedocs.io/", "_description": "nbgrader: A system for assigning and grading notebooks", "_organization": "jupyter", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-11-30T00:00:00.000Z", "_created_at": "2014-09-13T00:00:00.000Z", - "_age_weeks": 429, + "_age_weeks": 431, "_stars_per_week": 2.67, + "_pop_contributor_count": 98, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "quantstack" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.96, + "_pop_updated_issues_count": 67, + "_pop_closed_issues_count": 24, + "_pop_created_since_days": 101, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 67.0, + "_pop_comment_count": 135.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 74, + "_pop_score": 48.72, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jupyter/nbgrader/master/README.md", "_readme_localurl": "jupyter~nbgrader~README.md", @@ -24718,48 +37138,6 @@ "jupyter~nbgrader~pyproject.toml" ] }, - { - "index": 16, - "category": "perf", - "githuburl": "https://github.com/eventlet/eventlet", - "featured": null, - "links": null, - "description": null, - "_repopath": "eventlet/eventlet", - "_reponame": "eventlet", - "_stars": 1138, - "_forks": 295, - "_watches": 62, - "_topics": [ - "python", - "concurrency", - "network", - "c10k", - "greenlet", - "production-ready" - ], - "_language": "Python", - "_homepage": "https://eventlet.net", - "_description": "eventlet: Concurrent networking library for Python", - "_organization": "eventlet", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-11-17T00:00:00.000Z", - "_created_at": "2012-12-11T00:00:00.000Z", - "_age_weeks": 521, - "_stars_per_week": 2.18, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/eventlet/eventlet/master/README.rst", - "_readme_localurl": "eventlet~eventlet~README.rst", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/eventlet/eventlet/master/setup.py" - ], - "_requirements_localurls": [ - "eventlet~eventlet~setup.py" - ] - }, { "index": 636, "category": "util", @@ -24769,9 +37147,9 @@ "description": null, "_repopath": "pygments/pygments", "_reponame": "pygments", - "_stars": 1137, + "_stars": 1148, "_forks": 484, - "_watches": 26, + "_watches": 27, "_topics": [ "python", "syntax-highlighting" @@ -24780,11 +37158,34 @@ "_homepage": "http://pygments.org/", "_description": "Pygments is a generic syntax highlighter written in Python", "_organization": "pygments", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2019-08-31T00:00:00.000Z", - "_age_weeks": 170, - "_stars_per_week": 6.67, + "_age_weeks": 172, + "_stars_per_week": 6.66, + "_pop_contributor_count": 757, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amd", + "fzj\u00fclich", + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.58, + "_pop_updated_issues_count": 133, + "_pop_closed_issues_count": 67, + "_pop_created_since_days": 40, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 17, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 133.0, + "_pop_comment_count": 184.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 7530, + "_pop_score": 67.1, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pygments/pygments/master/README.rst", "_readme_localurl": "pygments~pygments~README.rst", @@ -24813,8 +37214,8 @@ "description": null, "_repopath": "scitools/cartopy", "_reponame": "cartopy", - "_stars": 1137, - "_forks": 334, + "_stars": 1145, + "_forks": 333, "_watches": 55, "_topics": [ "cartopy", @@ -24829,11 +37230,34 @@ "_homepage": "https://scitools.org.uk/cartopy/docs/latest", "_description": "Cartopy - a cartographic python library with matplotlib support", "_organization": "scitools", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2012-08-03T00:00:00.000Z", - "_age_weeks": 539, + "_age_weeks": 541, "_stars_per_week": 2.11, + "_pop_contributor_count": 118, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "lasp/lasp/swxtrec", + "metoffice", + "ucar/unidata" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.4, + "_pop_updated_issues_count": 46, + "_pop_closed_issues_count": 26, + "_pop_created_since_days": 126, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 46.0, + "_pop_comment_count": 135.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.9, + "_pop_dependents_count": 284, + "_pop_score": 56.98, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/scitools/cartopy/master/README.md", "_readme_localurl": "scitools~cartopy~README.md", @@ -24850,48 +37274,6 @@ "scitools~cartopy~pyproject.toml" ] }, - { - "index": 338, - "category": "perf", - "githuburl": "https://github.com/tlkh/asitop", - "featured": null, - "links": null, - "description": null, - "_repopath": "tlkh/asitop", - "_reponame": "asitop", - "_stars": 1133, - "_forks": 67, - "_watches": 13, - "_topics": [ - "cpu", - "gpu", - "cli", - "macos", - "m1", - "apple-silicon" - ], - "_language": "Python", - "_homepage": "https://tlkh.github.io/asitop/", - "_description": "asitop: Perf monitoring CLI tool for Apple Silicon", - "_organization": "tlkh", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-08-20T00:00:00.000Z", - "_created_at": "2021-10-27T00:00:00.000Z", - "_age_weeks": 58, - "_stars_per_week": 19.53, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/tlkh/asitop/master/README.md", - "_readme_localurl": "tlkh~asitop~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/tlkh/asitop/master/setup.py" - ], - "_requirements_localurls": [ - "tlkh~asitop~setup.py" - ] - }, { "index": 194, "category": "web", @@ -24901,9 +37283,9 @@ "description": null, "_repopath": "jordaneremieff/mangum", "_reponame": "mangum", - "_stars": 1128, + "_stars": 1144, "_forks": 78, - "_watches": 15, + "_watches": 16, "_topics": [ "asgi", "aws", @@ -24924,11 +37306,33 @@ "_homepage": "https://mangum.io/", "_description": "mangum: AWS Lambda support for ASGI applications", "_organization": "jordaneremieff", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-27T00:00:00.000Z", "_created_at": "2019-01-14T00:00:00.000Z", - "_age_weeks": 203, - "_stars_per_week": 5.55, + "_age_weeks": 205, + "_stars_per_week": 5.58, + "_pop_contributor_count": 29, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "resurety", + "tractabletractableai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.56, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 48, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 11.0, + "_pop_comment_count": 14.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 16, + "_pop_score": 39.16, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jordaneremieff/mangum/master/README.md", "_readme_localurl": "jordaneremieff~mangum~README.md", @@ -24946,50 +37350,127 @@ ] }, { - "index": 720, - "category": "math", - "githuburl": "https://github.com/facebookresearch/theseus", + "index": 338, + "category": "perf", + "githuburl": "https://github.com/tlkh/asitop", "featured": null, "links": null, "description": null, - "_repopath": "facebookresearch/theseus", - "_reponame": "theseus", - "_stars": 1125, - "_forks": 74, - "_watches": 28, + "_repopath": "tlkh/asitop", + "_reponame": "asitop", + "_stars": 1142, + "_forks": 69, + "_watches": 14, "_topics": [ - "differentiable-optimization", - "robotics", - "embodied-ai", - "nonlinear-least-squares", - "pytorch", - "deep-learning", - "computer-vision", - "gauss-newton", - "levenberg-marquardt", - "implicit-differentiation", - "bilevel-optimization" + "cpu", + "gpu", + "cli", + "macos", + "m1", + "apple-silicon" ], "_language": "Python", - "_homepage": "", - "_description": "theseus: A library for differentiable nonlinear optimization", - "_organization": "facebookresearch", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2021-11-18T00:00:00.000Z", - "_age_weeks": 54, - "_stars_per_week": 20.51, + "_homepage": "https://tlkh.github.io/asitop/", + "_description": "asitop: Perf monitoring CLI tool for Apple Silicon", + "_organization": "tlkh", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-08-20T00:00:00.000Z", + "_created_at": "2021-10-27T00:00:00.000Z", + "_age_weeks": 59, + "_stars_per_week": 19.12, + "_pop_contributor_count": 8, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "singaporeuniversityoftechnologyanddesign" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.27, + "_pop_updated_issues_count": 13, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 14, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 13.0, + "_pop_comment_count": 65.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 5.0, + "_pop_dependents_count": 0, + "_pop_score": 22.96, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/theseus/master/README.md", - "_readme_localurl": "facebookresearch~theseus~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/tlkh/asitop/master/README.md", + "_readme_localurl": "tlkh~asitop~README.md", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/facebookresearch/theseus/master/setup.py" + "https://raw.githubusercontent.com/tlkh/asitop/master/setup.py" ], "_requirements_localurls": [ - "facebookresearch~theseus~setup.py" + "tlkh~asitop~setup.py" + ] + }, + { + "index": 16, + "category": "perf", + "githuburl": "https://github.com/eventlet/eventlet", + "featured": null, + "links": null, + "description": null, + "_repopath": "eventlet/eventlet", + "_reponame": "eventlet", + "_stars": 1139, + "_forks": 295, + "_watches": 62, + "_topics": [ + "python", + "concurrency", + "network", + "c10k", + "greenlet", + "production-ready" + ], + "_language": "Python", + "_homepage": "https://eventlet.net", + "_description": "eventlet: Concurrent networking library for Python", + "_organization": "eventlet", + "_updated_at": "2022-12-08T00:00:00.000Z", + "_last_commit_date": "2022-11-17T00:00:00.000Z", + "_created_at": "2012-12-11T00:00:00.000Z", + "_age_weeks": 522, + "_stars_per_week": 2.18, + "_pop_contributor_count": 181, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.15, + "_pop_updated_issues_count": 18, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 122, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 18.0, + "_pop_comment_count": 26.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 2749, + "_pop_score": 49.06, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/eventlet/eventlet/master/README.rst", + "_readme_localurl": "eventlet~eventlet~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/eventlet/eventlet/master/setup.py" + ], + "_requirements_localurls": [ + "eventlet~eventlet~setup.py" ] }, { @@ -25001,7 +37482,7 @@ "description": null, "_repopath": "agronholm/anyio", "_reponame": "anyio", - "_stars": 1125, + "_stars": 1134, "_forks": 95, "_watches": 24, "_topics": [ @@ -25014,11 +37495,34 @@ "_homepage": "", "_description": "anyio: High level asynchronous concurrency and networking framework that works on top of either trio or asyncio", "_organization": "agronholm", - "_updated_at": "2022-12-01T00:00:00.000Z", - "_last_commit_date": "2022-11-26T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2018-08-19T00:00:00.000Z", - "_age_weeks": 224, + "_age_weeks": 226, "_stars_per_week": 5.01, + "_pop_contributor_count": 38, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "andrewjayichlabucsb", + "nextdaysolutionsoy", + "norisnetworkag" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.38, + "_pop_updated_issues_count": 64, + "_pop_closed_issues_count": 43, + "_pop_created_since_days": 53, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 64.0, + "_pop_comment_count": 117.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 553, + "_pop_score": 54.25, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/agronholm/anyio/master/README.rst", "_readme_localurl": "agronholm~anyio~README.rst", @@ -25033,51 +37537,72 @@ ] }, { - "index": 545, - "category": "ml", - "githuburl": "https://github.com/borealisai/advertorch", + "index": 720, + "category": "math", + "githuburl": "https://github.com/facebookresearch/theseus", "featured": null, "links": null, "description": null, - "_repopath": "borealisai/advertorch", - "_reponame": "advertorch", - "_stars": 1119, - "_forks": 178, - "_watches": 27, + "_repopath": "facebookresearch/theseus", + "_reponame": "theseus", + "_stars": 1132, + "_forks": 76, + "_watches": 29, "_topics": [ + "differentiable-optimization", + "robotics", + "embodied-ai", + "nonlinear-least-squares", "pytorch", - "adversarial-examples", - "adversarial-example", - "adversarial-perturbations", - "adversarial-attacks", - "adversarial-machine-learning", - "adversarial-learning", - "robustness", - "toolbox", - "security", - "machine-learning", - "benchmarking" + "deep-learning", + "computer-vision", + "gauss-newton", + "levenberg-marquardt", + "implicit-differentiation", + "bilevel-optimization" ], - "_language": "Jupyter Notebook", - "_homepage": null, - "_description": "advertorch: A Toolbox for Adversarial Robustness Research", - "_organization": "borealisai", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-05-29T00:00:00.000Z", - "_created_at": "2018-11-29T00:00:00.000Z", - "_age_weeks": 209, - "_stars_per_week": 5.33, + "_language": "Python", + "_homepage": "", + "_description": "theseus: A library for differentiable nonlinear optimization", + "_organization": "facebookresearch", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2021-11-18T00:00:00.000Z", + "_age_weeks": 56, + "_stars_per_week": 20.01, + "_pop_contributor_count": 19, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebookairesearchfacebookresearch", + "metaai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.25, + "_pop_updated_issues_count": 107, + "_pop_closed_issues_count": 84, + "_pop_created_since_days": 13, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 107.0, + "_pop_comment_count": 64.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 34.46, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/borealisai/advertorch/master/README.md", - "_readme_localurl": "borealisai~advertorch~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/theseus/master/README.md", + "_readme_localurl": "facebookresearch~theseus~README.md", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/borealisai/advertorch/master/setup.py" + "https://raw.githubusercontent.com/facebookresearch/theseus/master/setup.py" ], "_requirements_localurls": [ - "borealisai~advertorch~setup.py" + "facebookresearch~theseus~setup.py" ] }, { @@ -25089,9 +37614,9 @@ "description": null, "_repopath": "open-telemetry/opentelemetry-python", "_reponame": "opentelemetry-python", - "_stars": 1113, + "_stars": 1125, "_forks": 402, - "_watches": 36, + "_watches": 35, "_topics": [ "python", "opentelemetry", @@ -25106,11 +37631,35 @@ "_homepage": "https://opentelemetry.io", "_description": "opentelemetry-python: OpenTelemetry Python API and SDK ", "_organization": "open-telemetry", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-09T00:00:00.000Z", "_created_at": "2019-05-07T00:00:00.000Z", - "_age_weeks": 187, - "_stars_per_week": 5.95, + "_age_weeks": 188, + "_stars_per_week": 5.96, + "_pop_contributor_count": 172, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "lightstep", + "microsoftcorporation", + "signoz.io" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.42, + "_pop_updated_issues_count": 206, + "_pop_closed_issues_count": 128, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 206.0, + "_pop_comment_count": 374.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 128, + "_pop_score": 59.19, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/open-telemetry/opentelemetry-python/master/README.md", "_readme_localurl": "open-telemetry~opentelemetry-python~README.md", @@ -25125,41 +37674,73 @@ ] }, { - "index": 726, - "category": "perf", - "githuburl": "https://github.com/omyyyy/pycom", + "index": 545, + "category": "ml", + "githuburl": "https://github.com/borealisai/advertorch", "featured": null, "links": null, "description": null, - "_repopath": "omyyyy/pycom", - "_reponame": "pycom", - "_stars": 1097, - "_forks": 21, - "_watches": 17, - "_topics": [], - "_language": "C++", - "_homepage": "", - "_description": "pycom: A Python compiler, down to native code, using C++", - "_organization": "omyyyy", - "_updated_at": "2022-12-01T00:00:00.000Z", - "_last_commit_date": "2022-08-31T00:00:00.000Z", - "_created_at": "2022-07-16T00:00:00.000Z", - "_age_weeks": 20, - "_stars_per_week": 53.33, + "_repopath": "borealisai/advertorch", + "_reponame": "advertorch", + "_stars": 1119, + "_forks": 178, + "_watches": 27, + "_topics": [ + "pytorch", + "adversarial-examples", + "adversarial-example", + "adversarial-perturbations", + "adversarial-attacks", + "adversarial-machine-learning", + "adversarial-learning", + "robustness", + "toolbox", + "security", + "machine-learning", + "benchmarking" + ], + "_language": "Jupyter Notebook", + "_homepage": null, + "_description": "advertorch: A Toolbox for Adversarial Robustness Research", + "_organization": "borealisai", + "_updated_at": "2022-12-13T00:00:00.000Z", + "_last_commit_date": "2022-05-29T00:00:00.000Z", + "_created_at": "2018-11-29T00:00:00.000Z", + "_age_weeks": 211, + "_stars_per_week": 5.29, + "_pop_contributor_count": 21, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "borealisai", + "ecopiaai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.31, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 2, + "_pop_score": 23.4, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/omyyyy/pycom/master/README.md", - "_readme_localurl": "omyyyy~pycom~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/borealisai/advertorch/master/README.md", + "_readme_localurl": "borealisai~advertorch~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/omyyyy/pycom/master/requirements.txt", - "https://raw.githubusercontent.com/omyyyy/pycom/master/setup.py" + "https://raw.githubusercontent.com/borealisai/advertorch/master/setup.py" ], "_requirements_localurls": [ - "omyyyy~pycom~requirements.txt", - "omyyyy~pycom~setup.py" + "borealisai~advertorch~setup.py" ] }, { @@ -25171,19 +37752,41 @@ "description": null, "_repopath": "pytest-dev/pytest-bdd", "_reponame": "pytest-bdd", - "_stars": 1096, + "_stars": 1102, "_forks": 186, - "_watches": 53, + "_watches": 54, "_topics": [], "_language": "Python", "_homepage": "https://pytest-bdd.readthedocs.io/en/latest/", "_description": "pytest-bdd: BDD library for the py.test runner", "_organization": "pytest-dev", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2013-03-29T00:00:00.000Z", - "_age_weeks": 505, + "_age_weeks": 507, "_stars_per_week": 2.17, + "_pop_contributor_count": 52, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bruhinsoftware", + "fareharbor" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.33, + "_pop_updated_issues_count": 38, + "_pop_closed_issues_count": 28, + "_pop_created_since_days": 118, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 38.0, + "_pop_comment_count": 63.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 232, + "_pop_score": 51.74, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest-bdd/master/README.rst", "_readme_localurl": "pytest-dev~pytest-bdd~README.rst", @@ -25206,9 +37809,9 @@ "description": null, "_repopath": "neoteroi/blacksheep", "_reponame": "BlackSheep", - "_stars": 1095, - "_forks": 49, - "_watches": 24, + "_stars": 1100, + "_forks": 50, + "_watches": 23, "_topics": [ "asyncio", "server", @@ -25225,11 +37828,30 @@ "_homepage": "https://www.neoteroi.dev/blacksheep/", "_description": "BlackSheep: Fast ASGI web framework for Python", "_organization": "neoteroi", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-11-20T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2018-11-22T00:00:00.000Z", - "_age_weeks": 210, - "_stars_per_week": 5.19, + "_age_weeks": 212, + "_stars_per_week": 5.17, + "_pop_contributor_count": 10, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.6, + "_pop_updated_issues_count": 17, + "_pop_closed_issues_count": 12, + "_pop_created_since_days": 50, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 17.0, + "_pop_comment_count": 39.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 30, + "_pop_score": 35.53, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/neoteroi/blacksheep/master/README.md", "_readme_localurl": "neoteroi~blacksheep~README.md", @@ -25247,38 +37869,131 @@ ] }, { - "index": 656, - "category": "web", - "githuburl": "https://github.com/magicstack/httptools", + "index": 726, + "category": "perf", + "githuburl": "https://github.com/omyyyy/pycom", "featured": null, "links": null, "description": null, - "_repopath": "magicstack/httptools", - "_reponame": "httptools", - "_stars": 1081, - "_forks": 69, - "_watches": 40, + "_repopath": "omyyyy/pycom", + "_reponame": "pycom", + "_stars": 1094, + "_forks": 21, + "_watches": 17, "_topics": [], - "_language": "Python", + "_language": "C++", "_homepage": "", - "_description": "httptools: Fast HTTP parser", - "_organization": "magicstack", - "_updated_at": "2022-11-29T00:00:00.000Z", - "_last_commit_date": "2022-09-13T00:00:00.000Z", - "_created_at": "2016-04-25T00:00:00.000Z", - "_age_weeks": 345, - "_stars_per_week": 3.13, + "_description": "pycom: A Python compiler, down to native code, using C++", + "_organization": "omyyyy", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-08-31T00:00:00.000Z", + "_created_at": "2022-07-16T00:00:00.000Z", + "_age_weeks": 22, + "_stars_per_week": 49.09, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "marcelpetrick.it", + "universityofcalgary" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.71, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 5, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 2.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 17.11, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/magicstack/httptools/master/README.md", - "_readme_localurl": "magicstack~httptools~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/omyyyy/pycom/master/README.md", + "_readme_localurl": "omyyyy~pycom~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/magicstack/httptools/master/setup.py" + "https://raw.githubusercontent.com/omyyyy/pycom/master/requirements.txt", + "https://raw.githubusercontent.com/omyyyy/pycom/master/setup.py" ], "_requirements_localurls": [ - "magicstack~httptools~setup.py" + "omyyyy~pycom~requirements.txt", + "omyyyy~pycom~setup.py" + ] + }, + { + "index": 900, + "category": "ml", + "githuburl": "https://github.com/shankarpandala/lazypredict", + "featured": null, + "links": null, + "description": null, + "_repopath": "shankarpandala/lazypredict", + "_reponame": "lazypredict", + "_stars": 1090, + "_forks": 123, + "_watches": 16, + "_topics": [ + "machine-learning", + "automl", + "regression", + "classification" + ], + "_language": "Python", + "_homepage": "", + "_description": "lazypredict: Lazy Predict help build a lot of basic models without much code and helps understand which models works better without any parameter tuning", + "_organization": "shankarpandala", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-09-28T00:00:00.000Z", + "_created_at": "2019-11-16T00:00:00.000Z", + "_age_weeks": 161, + "_stars_per_week": 6.76, + "_pop_contributor_count": 18, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "appliedmaterials", + "fiolabs-internal", + "pyupio", + "streamlit", + "wildlife-studios" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.6, + "_pop_updated_issues_count": 24, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 38, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 24.0, + "_pop_comment_count": 22.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 3, + "_pop_score": 33.22, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/shankarpandala/lazypredict/master/README.rst", + "_readme_localurl": "shankarpandala~lazypredict~README.rst", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/shankarpandala/lazypredict/master/requirements.txt", + "https://raw.githubusercontent.com/shankarpandala/lazypredict/master/setup.py" + ], + "_requirements_localurls": [ + "shankarpandala~lazypredict~requirements.txt", + "shankarpandala~lazypredict~setup.py" ] }, { @@ -25290,19 +38005,42 @@ "description": null, "_repopath": "pysal/pysal", "_reponame": "pysal", - "_stars": 1080, - "_forks": 283, + "_stars": 1084, + "_forks": 287, "_watches": 81, "_topics": [], "_language": "Jupyter Notebook", "_homepage": "http://pysal.org/pysal", "_description": "PySAL: Python Spatial Analysis Library Meta-Package", "_organization": "pysal", - "_updated_at": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-07-23T00:00:00.000Z", "_created_at": "2013-02-19T00:00:00.000Z", - "_age_weeks": 511, + "_age_weeks": 512, "_stars_per_week": 2.11, + "_pop_contributor_count": 77, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "centerforopengeographicalscience", + "geoda/asu", + "usgsastrogeology" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.65, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 120, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 2.0, + "_pop_comment_count": 6.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 1349, + "_pop_score": 50.58, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pysal/pysal/master/README.md", "_readme_localurl": "pysal~pysal~README.md", @@ -25319,6 +38057,63 @@ "pysal~pysal~setup.py" ] }, + { + "index": 656, + "category": "web", + "githuburl": "https://github.com/magicstack/httptools", + "featured": null, + "links": null, + "description": null, + "_repopath": "magicstack/httptools", + "_reponame": "httptools", + "_stars": 1082, + "_forks": 69, + "_watches": 40, + "_topics": [], + "_language": "Python", + "_homepage": "", + "_description": "httptools: Fast HTTP parser", + "_organization": "magicstack", + "_updated_at": "2022-12-13T00:00:00.000Z", + "_last_commit_date": "2022-09-13T00:00:00.000Z", + "_created_at": "2016-04-25T00:00:00.000Z", + "_age_weeks": 347, + "_stars_per_week": 3.12, + "_pop_contributor_count": 13, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "edgedb", + "enix" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.12, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 81, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 3.0, + "_pop_comment_count": 6.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 245, + "_pop_score": 38.21, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/magicstack/httptools/master/README.md", + "_readme_localurl": "magicstack~httptools~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/magicstack/httptools/master/setup.py" + ], + "_requirements_localurls": [ + "magicstack~httptools~setup.py" + ] + }, { "index": 798, "category": "data", @@ -25328,8 +38123,8 @@ "description": null, "_repopath": "jsonpickle/jsonpickle", "_reponame": "jsonpickle", - "_stars": 1078, - "_forks": 152, + "_stars": 1079, + "_forks": 153, "_watches": 31, "_topics": [ "json", @@ -25344,11 +38139,35 @@ "_homepage": "https://jsonpickle.github.io", "_description": "jsonpickle: Python library for serializing any arbitrary object graph into JSON. It can take almost any Python object and turn the object into JSON. Additionally, it can reconstitute the object back into Python.", "_organization": "jsonpickle", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2009-12-10T00:00:00.000Z", - "_age_weeks": 677, + "_age_weeks": 679, "_stars_per_week": 1.59, + "_pop_contributor_count": 68, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "3dhubs", + "equium-io", + "google", + "waltdisneyanimationstudios" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.25, + "_pop_updated_issues_count": 29, + "_pop_closed_issues_count": 22, + "_pop_created_since_days": 159, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 29.0, + "_pop_comment_count": 56.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 170, + "_pop_score": 54.09, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/jsonpickle/jsonpickle/master/README.rst", "_readme_localurl": "jsonpickle~jsonpickle~README.rst", @@ -25374,19 +38193,40 @@ "description": null, "_repopath": "google/tensorstore", "_reponame": "tensorstore", - "_stars": 1065, - "_forks": 77, + "_stars": 1074, + "_forks": 79, "_watches": 30, "_topics": [], "_language": "C++", "_homepage": "https://google.github.io/tensorstore/", "_description": "tensorstore: Library for reading and writing large multi-dimensional arrays.", "_organization": "google", - "_updated_at": "2022-12-03T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2020-03-30T00:00:00.000Z", - "_age_weeks": 140, - "_stars_per_week": 7.59, + "_age_weeks": 142, + "_stars_per_week": 7.56, + "_pop_contributor_count": 10, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.65, + "_pop_updated_issues_count": 35, + "_pop_closed_issues_count": 23, + "_pop_created_since_days": 33, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 35.0, + "_pop_comment_count": 195.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 5.6, + "_pop_dependents_count": 29, + "_pop_score": 45.11, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google/tensorstore/master/README.md", "_readme_localurl": "google~tensorstore~README.md", @@ -25403,41 +38243,6 @@ "google~tensorstore~pyproject.toml" ] }, - { - "index": 512, - "category": "typing", - "githuburl": "https://github.com/agronholm/typeguard", - "featured": null, - "links": null, - "description": null, - "_repopath": "agronholm/typeguard", - "_reponame": "typeguard", - "_stars": 1064, - "_forks": 79, - "_watches": 17, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "typeguard: Run-time type checker for Python", - "_organization": "agronholm", - "_updated_at": "2022-12-03T00:00:00.000Z", - "_last_commit_date": "2022-10-11T00:00:00.000Z", - "_created_at": "2015-12-27T00:00:00.000Z", - "_age_weeks": 362, - "_stars_per_week": 2.94, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/agronholm/typeguard/master/README.rst", - "_readme_localurl": "agronholm~typeguard~README.rst", - "_requirements_filenames": [ - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/agronholm/typeguard/master/pyproject.toml" - ], - "_requirements_localurls": [ - "agronholm~typeguard~pyproject.toml" - ] - }, { "index": 417, "category": "pandas", @@ -25447,9 +38252,9 @@ "description": null, "_repopath": "pyjanitor-devs/pyjanitor", "_reponame": "pyjanitor", - "_stars": 1063, - "_forks": 159, - "_watches": 20, + "_stars": 1070, + "_forks": 160, + "_watches": 21, "_topics": [ "pandas", "dataframe", @@ -25463,11 +38268,34 @@ "_homepage": "https://pyjanitor-devs.github.io/pyjanitor", "_description": "pyjanitor: Clean APIs for data cleaning. Python implementation of R package Janitor", "_organization": "pyjanitor-devs", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-30T00:00:00.000Z", "_created_at": "2018-03-04T00:00:00.000Z", - "_age_weeks": 248, + "_age_weeks": 250, "_stars_per_week": 4.28, + "_pop_contributor_count": 106, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amdi", + "datajanitor", + "springdiscovery" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.77, + "_pop_updated_issues_count": 81, + "_pop_closed_issues_count": 60, + "_pop_created_since_days": 58, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 81.0, + "_pop_comment_count": 193.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 2, + "_pop_score": 45.28, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/README.rst", "_readme_localurl": "pyjanitor-devs~pyjanitor~README.rst", @@ -25487,35 +38315,6 @@ "pyjanitor-devs~pyjanitor~pyproject.toml" ] }, - { - "index": 829, - "category": "study", - "githuburl": "https://github.com/huggingface/diffusion-models-class", - "featured": null, - "links": null, - "description": null, - "_repopath": "huggingface/diffusion-models-class", - "_reponame": "diffusion-models-class", - "_stars": 1059, - "_forks": 75, - "_watches": 64, - "_topics": [], - "_language": "Jupyter Notebook", - "_homepage": null, - "_description": "diffusion-models-class: Materials for the Hugging Face Diffusion Models Course", - "_organization": "huggingface", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2022-10-13T00:00:00.000Z", - "_age_weeks": 7, - "_stars_per_week": 134.78, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/huggingface/diffusion-models-class/master/README.md", - "_readme_localurl": "huggingface~diffusion-models-class~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 651, "category": "profiling", @@ -25525,7 +38324,7 @@ "description": null, "_repopath": "p403n1x87/austin", "_reponame": "austin", - "_stars": 1058, + "_stars": 1065, "_forks": 35, "_watches": 14, "_topics": [ @@ -25538,11 +38337,34 @@ "_homepage": "", "_description": "austin: Python frame stack sampler for CPython", "_organization": "p403n1x87", - "_updated_at": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-10-28T00:00:00.000Z", "_created_at": "2018-09-20T00:00:00.000Z", - "_age_weeks": 219, + "_age_weeks": 221, "_stars_per_week": 4.81, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "datadog", + "madalgo", + "microsoft" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.02, + "_pop_updated_issues_count": 28, + "_pop_closed_issues_count": 24, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 28.0, + "_pop_comment_count": 44.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 29, + "_pop_score": 39.65, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/p403n1x87/austin/master/README.md", "_readme_localurl": "p403n1x87~austin~README.md", @@ -25550,6 +38372,63 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, + { + "index": 512, + "category": "typing", + "githuburl": "https://github.com/agronholm/typeguard", + "featured": null, + "links": null, + "description": null, + "_repopath": "agronholm/typeguard", + "_reponame": "typeguard", + "_stars": 1065, + "_forks": 79, + "_watches": 17, + "_topics": [], + "_language": "Python", + "_homepage": null, + "_description": "typeguard: Run-time type checker for Python", + "_organization": "agronholm", + "_updated_at": "2022-12-12T00:00:00.000Z", + "_last_commit_date": "2022-10-11T00:00:00.000Z", + "_created_at": "2015-12-27T00:00:00.000Z", + "_age_weeks": 364, + "_stars_per_week": 2.92, + "_pop_contributor_count": 21, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "nextdaysolutionsoy", + "salesforce.org" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.35, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 85, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 10.0, + "_pop_comment_count": 6.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 265, + "_pop_score": 40.92, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/agronholm/typeguard/master/README.rst", + "_readme_localurl": "agronholm~typeguard~README.rst", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/agronholm/typeguard/master/pyproject.toml" + ], + "_requirements_localurls": [ + "agronholm~typeguard~pyproject.toml" + ] + }, { "index": 626, "category": "viz", @@ -25559,7 +38438,7 @@ "description": null, "_repopath": "enthought/mayavi", "_reponame": "mayavi", - "_stars": 1054, + "_stars": 1060, "_forks": 264, "_watches": 93, "_topics": [], @@ -25567,11 +38446,34 @@ "_homepage": "http://docs.enthought.com/mayavi/mayavi/", "_description": "mayavi: 3D visualization of scientific data in Python", "_organization": "enthought", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-10-18T00:00:00.000Z", "_created_at": "2011-01-24T00:00:00.000Z", - "_age_weeks": 619, - "_stars_per_week": 1.7, + "_age_weeks": 621, + "_stars_per_week": 1.71, + "_pop_contributor_count": 93, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "astrazenecauk", + "enthought", + "iitbombay" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.19, + "_pop_updated_issues_count": 44, + "_pop_closed_issues_count": 25, + "_pop_created_since_days": 145, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 44.0, + "_pop_comment_count": 82.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 119, + "_pop_score": 50.21, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/enthought/mayavi/master/README.rst", "_readme_localurl": "enthought~mayavi~README.rst", @@ -25588,44 +38490,6 @@ "enthought~mayavi~pyproject.toml" ] }, - { - "index": 703, - "category": "util", - "githuburl": "https://github.com/openai/openai-python", - "featured": null, - "links": null, - "description": null, - "_repopath": "openai/openai-python", - "_reponame": "openai-python", - "_stars": 1053, - "_forks": 296, - "_watches": 47, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "openai/openai-python", - "_organization": "openai", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-17T00:00:00.000Z", - "_created_at": "2020-10-25T00:00:00.000Z", - "_age_weeks": 110, - "_stars_per_week": 9.54, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/openai/openai-python/master/README.md", - "_readme_localurl": "openai~openai-python~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/openai/openai-python/master/setup.py", - "https://raw.githubusercontent.com/openai/openai-python/master/pyproject.toml" - ], - "_requirements_localurls": [ - "openai~openai-python~setup.py", - "openai~openai-python~pyproject.toml" - ] - }, { "index": 627, "category": "data", @@ -25635,7 +38499,7 @@ "description": null, "_repopath": "zarr-developers/zarr-python", "_reponame": "zarr-python", - "_stars": 1052, + "_stars": 1059, "_forks": 210, "_watches": 43, "_topics": [ @@ -25649,11 +38513,34 @@ "_homepage": "http://zarr.readthedocs.io/", "_description": "zarr-python: An implementation of chunked, compressed, N-dimensional arrays for Python.", "_organization": "zarr-developers", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2015-12-15T00:00:00.000Z", - "_age_weeks": 364, + "_age_weeks": 365, "_stars_per_week": 2.89, + "_pop_contributor_count": 77, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "openmicroscopy", + "quansight-labs", + "weomesangerinstitute" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.62, + "_pop_updated_issues_count": 207, + "_pop_closed_issues_count": 115, + "_pop_created_since_days": 85, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 207.0, + "_pop_comment_count": 692.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.3, + "_pop_dependents_count": 75, + "_pop_score": 57.87, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/zarr-developers/zarr-python/master/README.md", "_readme_localurl": "zarr-developers~zarr-python~README.md", @@ -25676,19 +38563,41 @@ "description": null, "_repopath": "pytest-dev/pytest-asyncio", "_reponame": "pytest-asyncio", - "_stars": 1050, - "_forks": 115, - "_watches": 34, + "_stars": 1056, + "_forks": 116, + "_watches": 35, "_topics": [], "_language": "Python", "_homepage": "https://pytest-asyncio.readthedocs.io", "_description": "pytest-asyncio: Asyncio support for pytest", "_organization": "pytest-dev", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2015-04-11T00:00:00.000Z", - "_age_weeks": 399, + "_age_weeks": 401, "_stars_per_week": 2.63, + "_pop_contributor_count": 40, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "neu.ro", + "pocketzworld" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.27, + "_pop_updated_issues_count": 80, + "_pop_closed_issues_count": 66, + "_pop_created_since_days": 94, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 15, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 80.0, + "_pop_comment_count": 80.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 2129, + "_pop_score": 56.86, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/master/README.rst", "_readme_localurl": "pytest-dev~pytest-asyncio~README.rst", @@ -25711,7 +38620,7 @@ "description": null, "_repopath": "simonw/sqlite-utils", "_reponame": "sqlite-utils", - "_stars": 1043, + "_stars": 1055, "_forks": 81, "_watches": 17, "_topics": [ @@ -25728,11 +38637,34 @@ "_homepage": "https://sqlite-utils.datasette.io", "_description": "sqlite-utils: Python CLI utility and library for manipulating SQLite databases", "_organization": "simonw", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-10T00:00:00.000Z", "_created_at": "2018-07-14T00:00:00.000Z", - "_age_weeks": 229, - "_stars_per_week": 4.54, + "_age_weeks": 231, + "_stars_per_week": 4.56, + "_pop_contributor_count": 27, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "datasette", + "stanforduniversity", + "usatodaynetwork/glasseyemedia/homicidewatch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.17, + "_pop_updated_issues_count": 39, + "_pop_closed_issues_count": 22, + "_pop_created_since_days": 54, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 26, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 39.0, + "_pop_comment_count": 93.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 123, + "_pop_score": 52.02, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/simonw/sqlite-utils/master/README.md", "_readme_localurl": "simonw~sqlite-utils~README.md", @@ -25755,9 +38687,9 @@ "description": null, "_repopath": "pytest-dev/pytest-xdist", "_reponame": "pytest-xdist", - "_stars": 1038, + "_stars": 1045, "_forks": 185, - "_watches": 45, + "_watches": 46, "_topics": [ "hacktoberfest", "pytest", @@ -25767,11 +38699,35 @@ "_homepage": "https://pytest-xdist.readthedocs.io", "_description": "pytest-xdist: pytest plugin for distributed testing and loop-on-failures testing modes. ", "_organization": "pytest-dev", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2015-09-01T00:00:00.000Z", - "_age_weeks": 379, + "_age_weeks": 380, "_stars_per_week": 2.74, + "_pop_contributor_count": 86, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "esss", + "merlinux", + "nordsoftware", + "redhatinsights" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.25, + "_pop_updated_issues_count": 56, + "_pop_closed_issues_count": 37, + "_pop_created_since_days": 89, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 56.0, + "_pop_comment_count": 128.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 1467, + "_pop_score": 60.02, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest-xdist/master/README.rst", "_readme_localurl": "pytest-dev~pytest-xdist~README.rst", @@ -25786,84 +38742,63 @@ ] }, { - "index": 644, - "category": "util", - "githuburl": "https://github.com/metachris/logzero", + "index": 666, + "category": "ml", + "githuburl": "https://github.com/huggingface/evaluate", "featured": null, "links": null, "description": null, - "_repopath": "metachris/logzero", - "_reponame": "logzero", - "_stars": 1035, - "_forks": 70, - "_watches": 26, - "_topics": [ - "python", - "logging", - "logzero", - "logfiles" - ], - "_language": "Python", - "_homepage": "https://logzero.readthedocs.io", - "_description": "logzero: Robust and effective logging for Python 2 and 3.", - "_organization": "metachris", - "_updated_at": "2022-12-04T00:00:00.000Z", - "_last_commit_date": "2021-03-17T00:00:00.000Z", - "_created_at": "2017-06-12T00:00:00.000Z", - "_age_weeks": 286, - "_stars_per_week": 3.62, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/metachris/logzero/master/README.md", - "_readme_localurl": "metachris~logzero~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/metachris/logzero/master/setup.py" - ], - "_requirements_localurls": [ - "metachris~logzero~setup.py" - ] - }, - { - "index": 449, - "category": "gis", - "githuburl": "https://github.com/residentmario/geoplot", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "residentmario/geoplot", - "_reponame": "geoplot", - "_stars": 1030, - "_forks": 90, - "_watches": 35, + "_repopath": "huggingface/evaluate", + "_reponame": "evaluate", + "_stars": 1038, + "_forks": 85, + "_watches": 39, "_topics": [ - "geospatial-visualization", - "geospatial-data", - "matplotlib", - "geopandas", - "spatial-analysis" + "evaluation", + "machine-learning" ], "_language": "Python", - "_homepage": "https://residentmario.github.io/geoplot/index.html", - "_description": "geoplot: High-level geospatial data visualization library for Python.", - "_organization": "residentmario", - "_updated_at": "2022-12-01T00:00:00.000Z", - "_last_commit_date": "2022-03-18T00:00:00.000Z", - "_created_at": "2016-06-29T00:00:00.000Z", - "_age_weeks": 336, - "_stars_per_week": 3.07, + "_homepage": "https://huggingface.co/docs/evaluate", + "_description": "\ud83e\udd17 Evaluate: A library for easily evaluating machine learning models and datasets.", + "_organization": "huggingface", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", + "_created_at": "2022-03-30T00:00:00.000Z", + "_age_weeks": 37, + "_stars_per_week": 27.52, + "_pop_contributor_count": 111, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "huggingface", + "huggingfaceaiinnova" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 8.37, + "_pop_updated_issues_count": 117, + "_pop_closed_issues_count": 82, + "_pop_created_since_days": 9, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 117.0, + "_pop_comment_count": 290.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 644, + "_pop_score": 55.07, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/residentmario/geoplot/master/README.md", - "_readme_localurl": "residentmario~geoplot~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/huggingface/evaluate/master/README.md", + "_readme_localurl": "huggingface~evaluate~README.md", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/residentmario/geoplot/master/setup.py" + "https://raw.githubusercontent.com/huggingface/evaluate/master/setup.py" ], "_requirements_localurls": [ - "residentmario~geoplot~setup.py" + "huggingface~evaluate~setup.py" ] }, { @@ -25875,8 +38810,8 @@ "description": null, "_repopath": "awslabs/dgl-ke", "_reponame": "dgl-ke", - "_stars": 1030, - "_forks": 174, + "_stars": 1035, + "_forks": 176, "_watches": 23, "_topics": [ "machine-learning", @@ -25889,11 +38824,34 @@ "_homepage": "https://dglke.dgl.ai/doc/", "_description": "dgl-ke: High performance, easy-to-use, and scalable package for learning large-scale knowledge graph embeddings.", "_organization": "awslabs", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-11-18T00:00:00.000Z", "_created_at": "2020-03-03T00:00:00.000Z", - "_age_weeks": 144, - "_stars_per_week": 7.15, + "_age_weeks": 145, + "_stars_per_week": 7.1, + "_pop_contributor_count": 25, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazon", + "aws", + "kwai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 34, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 16.0, + "_pop_comment_count": 20.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 31.04, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/awslabs/dgl-ke/master/README.md", "_readme_localurl": "awslabs~dgl-ke~README.md", @@ -25910,7 +38868,7 @@ "description": null, "_repopath": "calculatedcontent/weightwatcher", "_reponame": "WeightWatcher", - "_stars": 1029, + "_stars": 1033, "_forks": 94, "_watches": 29, "_topics": [], @@ -25918,11 +38876,34 @@ "_homepage": null, "_description": "WeightWatcher: The WeightWatcher tool for predicting the accuracy of Deep Neural Networks", "_organization": "calculatedcontent", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2018-11-28T00:00:00.000Z", - "_age_weeks": 210, - "_stars_per_week": 4.9, + "_age_weeks": 211, + "_stars_per_week": 4.88, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "calculationconsulting", + "etalab", + "ozminerals" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.88, + "_pop_updated_issues_count": 66, + "_pop_closed_issues_count": 55, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 66.0, + "_pop_comment_count": 107.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 24, + "_pop_score": 41.91, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/calculatedcontent/weightwatcher/master/README.md", "_readme_localurl": "calculatedcontent~weightwatcher~README.md", @@ -25936,6 +38917,69 @@ "calculatedcontent~weightwatcher~setup.py" ] }, + { + "index": 644, + "category": "util", + "githuburl": "https://github.com/metachris/logzero", + "featured": null, + "links": null, + "description": null, + "_repopath": "metachris/logzero", + "_reponame": "logzero", + "_stars": 1033, + "_forks": 70, + "_watches": 26, + "_topics": [ + "python", + "logging", + "logzero", + "logfiles" + ], + "_language": "Python", + "_homepage": "https://logzero.readthedocs.io", + "_description": "logzero: Robust and effective logging for Python 2 and 3.", + "_organization": "metachris", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2021-03-17T00:00:00.000Z", + "_created_at": "2017-06-12T00:00:00.000Z", + "_age_weeks": 288, + "_stars_per_week": 3.59, + "_pop_contributor_count": 12, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "canva", + "flashbots", + "pyupio" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 17, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 67, + "_pop_updated_since_days": 21, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 17.0, + "_pop_comment_count": 11.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 4, + "_pop_score": 27.72, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/metachris/logzero/master/README.md", + "_readme_localurl": "metachris~logzero~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/metachris/logzero/master/setup.py" + ], + "_requirements_localurls": [ + "metachris~logzero~setup.py" + ] + }, { "index": 654, "category": "profiling", @@ -25945,7 +38989,7 @@ "description": null, "_repopath": "sumerc/yappi", "_reponame": "yappi", - "_stars": 1026, + "_stars": 1031, "_forks": 57, "_watches": 13, "_topics": [ @@ -25968,11 +39012,35 @@ "_homepage": "", "_description": "yappi: Yet Another Python Profiler, but this time multithreading, asyncio and gevent aware.", "_organization": "sumerc", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-25T00:00:00.000Z", "_created_at": "2009-10-07T00:00:00.000Z", - "_age_weeks": 687, - "_stars_per_week": 1.49, + "_age_weeks": 688, + "_stars_per_week": 1.5, + "_pop_contributor_count": 28, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "dara.network", + "mongodb", + "nutanix", + "redhat" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.65, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 161, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 11.0, + "_pop_comment_count": 13.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 404, + "_pop_score": 47.42, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/sumerc/yappi/master/README.md", "_readme_localurl": "sumerc~yappi~README.md", @@ -25989,6 +39057,69 @@ "sumerc~yappi~pyproject.toml" ] }, + { + "index": 449, + "category": "gis", + "githuburl": "https://github.com/residentmario/geoplot", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "residentmario/geoplot", + "_reponame": "geoplot", + "_stars": 1029, + "_forks": 90, + "_watches": 35, + "_topics": [ + "geospatial-visualization", + "geospatial-data", + "matplotlib", + "geopandas", + "spatial-analysis" + ], + "_language": "Python", + "_homepage": "https://residentmario.github.io/geoplot/index.html", + "_description": "geoplot: High-level geospatial data visualization library for Python.", + "_organization": "residentmario", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-03-18T00:00:00.000Z", + "_created_at": "2016-06-29T00:00:00.000Z", + "_age_weeks": 337, + "_stars_per_week": 3.05, + "_pop_contributor_count": 5, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "quiltdata", + "udl-ai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.31, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 79, + "_pop_updated_since_days": 9, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 3.0, + "_pop_comment_count": 4.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 18, + "_pop_score": 28.11, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/residentmario/geoplot/master/README.md", + "_readme_localurl": "residentmario~geoplot~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/residentmario/geoplot/master/setup.py" + ], + "_requirements_localurls": [ + "residentmario~geoplot~setup.py" + ] + }, { "index": 580, "category": "util", @@ -25998,7 +39129,7 @@ "description": null, "_repopath": "lidatong/dataclasses-json", "_reponame": "dataclasses-json", - "_stars": 1011, + "_stars": 1024, "_forks": 114, "_watches": 9, "_topics": [ @@ -26010,11 +39141,32 @@ "_homepage": "", "_description": "dataclasses-json: Easily serialize Data Classes to and from JSON", "_organization": "lidatong", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2022-08-14T00:00:00.000Z", "_created_at": "2018-04-21T00:00:00.000Z", - "_age_weeks": 241, - "_stars_per_week": 4.19, + "_age_weeks": 243, + "_stars_per_week": 4.21, + "_pop_contributor_count": 46, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "quantenna" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.13, + "_pop_updated_issues_count": 35, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 57, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 35.0, + "_pop_comment_count": 18.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 172, + "_pop_score": 36.04, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/lidatong/dataclasses-json/master/README.md", "_readme_localurl": "lidatong~dataclasses-json~README.md", @@ -26043,8 +39195,8 @@ "description": null, "_repopath": "uber/fiber", "_reponame": "fiber", - "_stars": 994, - "_forks": 112, + "_stars": 995, + "_forks": 113, "_watches": 21, "_topics": [ "python", @@ -26057,11 +39209,34 @@ "_homepage": "https://uber.github.io/fiber/", "_description": "fiber: Distributed Computing for AI Made Simple", "_organization": "uber", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2021-03-15T00:00:00.000Z", "_created_at": "2020-01-07T00:00:00.000Z", - "_age_weeks": 152, - "_stars_per_week": 6.53, + "_age_weeks": 153, + "_stars_per_week": 6.47, + "_pop_contributor_count": 5, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "delltechnologies", + "litesgroup", + "nvidia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 36, + "_pop_updated_since_days": 21, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 3.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 3, + "_pop_score": 17.71, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/uber/fiber/master/README.md", "_readme_localurl": "uber~fiber~README.md", @@ -26078,44 +39253,6 @@ "uber~fiber~setup.py" ] }, - { - "index": 666, - "category": "ml", - "githuburl": "https://github.com/huggingface/evaluate", - "featured": null, - "links": null, - "description": null, - "_repopath": "huggingface/evaluate", - "_reponame": "evaluate", - "_stars": 994, - "_forks": 79, - "_watches": 36, - "_topics": [ - "evaluation", - "machine-learning" - ], - "_language": "Python", - "_homepage": "https://huggingface.co/docs/evaluate", - "_description": "\ud83e\udd17 Evaluate: A library for easily evaluating machine learning models and datasets.", - "_organization": "huggingface", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2022-03-30T00:00:00.000Z", - "_age_weeks": 36, - "_stars_per_week": 27.61, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/huggingface/evaluate/master/README.md", - "_readme_localurl": "huggingface~evaluate~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/huggingface/evaluate/master/setup.py" - ], - "_requirements_localurls": [ - "huggingface~evaluate~setup.py" - ] - }, { "index": 406, "category": "perf", @@ -26125,7 +39262,7 @@ "description": null, "_repopath": "pympler/pympler", "_reponame": "pympler", - "_stars": 989, + "_stars": 994, "_forks": 82, "_watches": 10, "_topics": [], @@ -26133,11 +39270,33 @@ "_homepage": null, "_description": "pympler: Development tool to measure, monitor and analyze the memory behavior of Python objects in a running Python application.", "_organization": "pympler", - "_updated_at": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-07-24T00:00:00.000Z", "_created_at": "2012-10-04T00:00:00.000Z", - "_age_weeks": 530, - "_stars_per_week": 1.86, + "_age_weeks": 532, + "_stars_per_week": 1.87, + "_pop_contributor_count": 29, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ableton", + "finceptiv" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.12, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 124, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 5.0, + "_pop_comment_count": 8.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 71, + "_pop_score": 37.75, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pympler/pympler/master/README.md", "_readme_localurl": "pympler~pympler~README.md", @@ -26163,19 +39322,40 @@ "description": null, "_repopath": "geospatialpython/pyshp", "_reponame": "pyshp", - "_stars": 984, + "_stars": 987, "_forks": 258, - "_watches": 63, + "_watches": 64, "_topics": [], "_language": "Python", "_homepage": null, "_description": "pyshp: This library reads and writes ESRI Shapefiles in pure Python.", "_organization": "geospatialpython", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2022-07-28T00:00:00.000Z", "_created_at": "2014-03-04T00:00:00.000Z", - "_age_weeks": 457, + "_age_weeks": 458, "_stars_per_week": 2.15, + "_pop_contributor_count": 42, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "geospatialpython.com" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.92, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 107, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 4.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 107, + "_pop_score": 36.17, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/geospatialpython/pyshp/master/README.md", "_readme_localurl": "geospatialpython~pyshp~README.md", @@ -26201,7 +39381,7 @@ "description": null, "_repopath": "toblerity/fiona", "_reponame": "Fiona", - "_stars": 977, + "_stars": 983, "_forks": 190, "_watches": 49, "_topics": [ @@ -26217,11 +39397,33 @@ "_homepage": "https://fiona.readthedocs.io/", "_description": "Fiona reads and writes geographic data files", "_organization": "toblerity", - "_updated_at": "2022-11-24T00:00:00.000Z", - "_last_commit_date": "2022-03-01T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2011-12-31T00:00:00.000Z", - "_age_weeks": 570, - "_stars_per_week": 1.71, + "_age_weeks": 572, + "_stars_per_week": 1.72, + "_pop_contributor_count": 64, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "gnsscience", + "planetlabs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.4, + "_pop_updated_issues_count": 58, + "_pop_closed_issues_count": 42, + "_pop_created_since_days": 134, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 58.0, + "_pop_comment_count": 109.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 115, + "_pop_score": 52.11, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/toblerity/fiona/master/README.rst", "_readme_localurl": "toblerity~fiona~README.rst", @@ -26241,6 +39443,72 @@ "toblerity~fiona~pyproject.toml" ] }, + { + "index": 739, + "category": "pandas", + "githuburl": "https://github.com/machow/siuba", + "featured": null, + "links": null, + "description": null, + "_repopath": "machow/siuba", + "_reponame": "siuba", + "_stars": 975, + "_forks": 40, + "_watches": 20, + "_topics": [ + "data-analysis", + "python", + "pandas", + "sql", + "dplyr" + ], + "_language": "Python", + "_homepage": "https://siuba.org", + "_description": "siuba: Python library for using dplyr like syntax with pandas and SQL", + "_organization": "machow", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2022-11-16T00:00:00.000Z", + "_created_at": "2019-02-09T00:00:00.000Z", + "_age_weeks": 201, + "_stars_per_week": 4.84, + "_pop_contributor_count": 10, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "flatiron-school", + "rstudio" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.5, + "_pop_updated_issues_count": 46, + "_pop_closed_issues_count": 34, + "_pop_created_since_days": 47, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 15, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 46.0, + "_pop_comment_count": 39.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 3, + "_pop_score": 37.41, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/machow/siuba/master/README.md", + "_readme_localurl": "machow~siuba~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/machow/siuba/master/requirements.txt", + "https://raw.githubusercontent.com/machow/siuba/master/setup.py" + ], + "_requirements_localurls": [ + "machow~siuba~requirements.txt", + "machow~siuba~setup.py" + ] + }, { "index": 447, "category": "ml", @@ -26250,7 +39518,7 @@ "description": null, "_repopath": "csinva/imodels", "_reponame": "imodels", - "_stars": 971, + "_stars": 975, "_forks": 97, "_watches": 22, "_topics": [ @@ -26277,11 +39545,33 @@ "_homepage": "https://csinva.io/imodels", "_description": "imodels: Interpretable ML package \ud83d\udd0d for concise, transparent, and accurate predictive modeling (sklearn-compatible).", "_organization": "csinva", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2019-07-04T00:00:00.000Z", - "_age_weeks": 178, - "_stars_per_week": 5.43, + "_age_weeks": 180, + "_stars_per_week": 5.4, + "_pop_contributor_count": 15, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "berkeleyairesearchlab", + "seniorresearcher" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.0, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 42, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 16.0, + "_pop_comment_count": 23.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 25, + "_pop_score": 42.46, "_readme_filename": "readme.md", "_readme_giturl": "https://raw.githubusercontent.com/csinva/imodels/master/readme.md", "_readme_localurl": "csinva~imodels~readme.md", @@ -26295,50 +39585,6 @@ "csinva~imodels~setup.py" ] }, - { - "index": 739, - "category": "pandas", - "githuburl": "https://github.com/machow/siuba", - "featured": null, - "links": null, - "description": null, - "_repopath": "machow/siuba", - "_reponame": "siuba", - "_stars": 970, - "_forks": 40, - "_watches": 20, - "_topics": [ - "data-analysis", - "python", - "pandas", - "sql", - "dplyr" - ], - "_language": "Python", - "_homepage": "https://siuba.org", - "_description": "siuba: Python library for using dplyr like syntax with pandas and SQL", - "_organization": "machow", - "_updated_at": "2022-12-03T00:00:00.000Z", - "_last_commit_date": "2022-11-16T00:00:00.000Z", - "_created_at": "2019-02-09T00:00:00.000Z", - "_age_weeks": 199, - "_stars_per_week": 4.86, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/machow/siuba/master/README.md", - "_readme_localurl": "machow~siuba~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/machow/siuba/master/requirements.txt", - "https://raw.githubusercontent.com/machow/siuba/master/setup.py" - ], - "_requirements_localurls": [ - "machow~siuba~requirements.txt", - "machow~siuba~setup.py" - ] - }, { "index": 707, "category": "util", @@ -26348,7 +39594,7 @@ "description": null, "_repopath": "brandon-rhodes/python-patterns", "_reponame": "python-patterns", - "_stars": 965, + "_stars": 972, "_forks": 88, "_watches": 247, "_topics": [], @@ -26356,11 +39602,32 @@ "_homepage": null, "_description": "python-patterns: Source code behind the python-patterns.guide site by Brandon Rhodes", "_organization": "brandon-rhodes", - "_updated_at": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2021-01-05T00:00:00.000Z", "_created_at": "2018-01-31T00:00:00.000Z", - "_age_weeks": 253, - "_stars_per_week": 3.81, + "_age_weeks": 254, + "_stars_per_week": 3.82, + "_pop_contributor_count": 4, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bccentreforexcellenceinhiv/aids" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 59, + "_pop_updated_since_days": 24, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 9.99, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/brandon-rhodes/python-patterns/master/README.md", "_readme_localurl": "brandon-rhodes~python-patterns~README.md", @@ -26383,8 +39650,8 @@ "description": null, "_repopath": "teemu/pytest-sugar", "_reponame": "pytest-sugar", - "_stars": 954, - "_forks": 67, + "_stars": 961, + "_forks": 68, "_watches": 17, "_topics": [ "pytest", @@ -26397,11 +39664,35 @@ "_homepage": "", "_description": "pytest-sugar: a plugin for py.test that changes the default look and feel of py.test (e.g. progressbar, show tests that fail instantly)", "_organization": "teemu", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-11T00:00:00.000Z", "_created_at": "2013-06-25T00:00:00.000Z", - "_age_weeks": 493, - "_stars_per_week": 1.93, + "_age_weeks": 494, + "_stars_per_week": 1.94, + "_pop_contributor_count": 45, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "adobe", + "falcony-io", + "freelancer,upforhire", + "wolt" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.83, + "_pop_updated_issues_count": 54, + "_pop_closed_issues_count": 48, + "_pop_created_since_days": 115, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 54.0, + "_pop_comment_count": 94.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 303, + "_pop_score": 52.32, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/teemu/pytest-sugar/master/README.md", "_readme_localurl": "teemu~pytest-sugar~README.md", @@ -26424,9 +39715,9 @@ "description": null, "_repopath": "sentinel-hub/eo-learn", "_reponame": "eo-learn", - "_stars": 948, - "_forks": 275, - "_watches": 51, + "_stars": 949, + "_forks": 276, + "_watches": 50, "_topics": [ "machine-learning", "eo-data", @@ -26437,11 +39728,35 @@ "_homepage": null, "_description": "eo-learn: Earth observation processing framework for machine learning in Python", "_organization": "sentinel-hub", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2022-11-23T00:00:00.000Z", "_created_at": "2018-05-31T00:00:00.000Z", - "_age_weeks": 235, - "_stars_per_week": 4.02, + "_age_weeks": 237, + "_stars_per_week": 3.99, + "_pop_contributor_count": 49, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "eoresearchteamsinergise", + "google", + "sinergise", + "sinergisesentinel-hub" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.48, + "_pop_updated_issues_count": 56, + "_pop_closed_issues_count": 51, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 56.0, + "_pop_comment_count": 54.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 83, + "_pop_score": 50.75, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/sentinel-hub/eo-learn/master/README.md", "_readme_localurl": "sentinel-hub~eo-learn~README.md", @@ -26467,7 +39782,7 @@ "description": null, "_repopath": "pyca/bcrypt", "_reponame": "bcrypt", - "_stars": 941, + "_stars": 945, "_forks": 134, "_watches": 29, "_topics": [ @@ -26477,11 +39792,33 @@ "_homepage": "", "_description": "bcrypt: Modern(-ish) password hashing for your software and your servers", "_organization": "pyca", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2013-05-11T00:00:00.000Z", - "_age_weeks": 499, - "_stars_per_week": 1.88, + "_age_weeks": 501, + "_stars_per_week": 1.89, + "_pop_contributor_count": 31, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "datadog", + "pioneervalleybooks" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.85, + "_pop_updated_issues_count": 56, + "_pop_closed_issues_count": 49, + "_pop_created_since_days": 117, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 59.0, + "_pop_comment_count": 37.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 399, + "_pop_score": 49.16, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pyca/bcrypt/master/README.rst", "_readme_localurl": "pyca~bcrypt~README.rst", @@ -26496,9 +39833,71 @@ "https://raw.githubusercontent.com/pyca/bcrypt/master/pyproject.toml" ], "_requirements_localurls": [ - "pyca~bcrypt~requirements.txt", - "pyca~bcrypt~setup.py", - "pyca~bcrypt~pyproject.toml" + "pyca~bcrypt~requirements.txt", + "pyca~bcrypt~setup.py", + "pyca~bcrypt~pyproject.toml" + ] + }, + { + "index": 740, + "category": "ml", + "githuburl": "https://github.com/koaning/scikit-lego", + "featured": null, + "links": null, + "description": null, + "_repopath": "koaning/scikit-lego", + "_reponame": "scikit-lego", + "_stars": 936, + "_forks": 99, + "_watches": 18, + "_topics": [ + "scikit-learn", + "machine-learning", + "common-sense" + ], + "_language": "Python", + "_homepage": "https://scikit-lego.netlify.app", + "_description": "scikit-lego: Extra blocks for scikit-learn pipelines.", + "_organization": "koaning", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-11-02T00:00:00.000Z", + "_created_at": "2019-01-21T00:00:00.000Z", + "_age_weeks": 204, + "_stars_per_week": 4.59, + "_pop_contributor_count": 56, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "explosion", + "m-gate", + "xcceleratedpydataamsterdam" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.48, + "_pop_updated_issues_count": 28, + "_pop_closed_issues_count": 17, + "_pop_created_since_days": 48, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 28.0, + "_pop_comment_count": 77.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 19, + "_pop_score": 44.05, + "_readme_filename": "readme.md", + "_readme_giturl": "https://raw.githubusercontent.com/koaning/scikit-lego/master/readme.md", + "_readme_localurl": "koaning~scikit-lego~readme.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/koaning/scikit-lego/master/setup.py" + ], + "_requirements_localurls": [ + "koaning~scikit-lego~setup.py" ] }, { @@ -26510,8 +39909,8 @@ "description": null, "_repopath": "pyca/pynacl", "_reponame": "pynacl", - "_stars": 935, - "_forks": 220, + "_stars": 936, + "_forks": 219, "_watches": 28, "_topics": [ "cryptography", @@ -26523,11 +39922,32 @@ "_homepage": "https://pynacl.readthedocs.io/", "_description": "pynacl: Python binding to the Networking and Cryptography (NaCl) library", "_organization": "pyca", - "_updated_at": "2022-12-04T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-11T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2013-02-22T00:00:00.000Z", - "_age_weeks": 510, + "_age_weeks": 512, "_stars_per_week": 1.83, + "_pop_contributor_count": 64, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "datadog" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.48, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 120, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 9.0, + "_pop_comment_count": 14.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 169, + "_pop_score": 45.62, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pyca/pynacl/master/README.rst", "_readme_localurl": "pyca~pynacl~README.rst", @@ -26544,45 +39964,6 @@ "pyca~pynacl~pyproject.toml" ] }, - { - "index": 740, - "category": "ml", - "githuburl": "https://github.com/koaning/scikit-lego", - "featured": null, - "links": null, - "description": null, - "_repopath": "koaning/scikit-lego", - "_reponame": "scikit-lego", - "_stars": 932, - "_forks": 99, - "_watches": 18, - "_topics": [ - "scikit-learn", - "machine-learning", - "common-sense" - ], - "_language": "Python", - "_homepage": "https://scikit-lego.netlify.app", - "_description": "scikit-lego: Extra blocks for scikit-learn pipelines.", - "_organization": "koaning", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-11-02T00:00:00.000Z", - "_created_at": "2019-01-21T00:00:00.000Z", - "_age_weeks": 202, - "_stars_per_week": 4.61, - "_readme_filename": "readme.md", - "_readme_giturl": "https://raw.githubusercontent.com/koaning/scikit-lego/master/readme.md", - "_readme_localurl": "koaning~scikit-lego~readme.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/koaning/scikit-lego/master/setup.py" - ], - "_requirements_localurls": [ - "koaning~scikit-lego~setup.py" - ] - }, { "index": 271, "category": "crypto", @@ -26592,8 +39973,8 @@ "description": null, "_repopath": "man-c/pycoingecko", "_reponame": "pycoingecko", - "_stars": 931, - "_forks": 242, + "_stars": 933, + "_forks": 245, "_watches": 32, "_topics": [ "python3", @@ -26611,11 +39992,30 @@ "_homepage": "", "_description": "pycoingecko: Python wrapper for the CoinGecko API", "_organization": "man-c", - "_updated_at": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-10-26T00:00:00.000Z", "_created_at": "2018-08-24T00:00:00.000Z", - "_age_weeks": 223, - "_stars_per_week": 4.16, + "_age_weeks": 225, + "_stars_per_week": 4.14, + "_pop_contributor_count": 14, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.29, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 53, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 5.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 180, + "_pop_score": 32.46, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/man-c/pycoingecko/master/README.md", "_readme_localurl": "man-c~pycoingecko~README.md", @@ -26638,7 +40038,7 @@ "description": null, "_repopath": "facultyai/dash-bootstrap-components", "_reponame": "dash-bootstrap-components", - "_stars": 925, + "_stars": 930, "_forks": 201, "_watches": 21, "_topics": [ @@ -26653,11 +40053,33 @@ "_homepage": "https://dash-bootstrap-components.opensource.faculty.ai/", "_description": "dash-bootstrap-components: Bootstrap components for Plotly Dash", "_organization": "facultyai", - "_updated_at": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2022-08-03T00:00:00.000Z", "_created_at": "2018-09-21T00:00:00.000Z", - "_age_weeks": 219, - "_stars_per_week": 4.21, + "_age_weeks": 221, + "_stars_per_week": 4.2, + "_pop_contributor_count": 29, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebook", + "facultyai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.17, + "_pop_updated_issues_count": 29, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 33, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 29.0, + "_pop_comment_count": 20.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 41, + "_pop_score": 39.1, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facultyai/dash-bootstrap-components/master/README.md", "_readme_localurl": "facultyai~dash-bootstrap-components~README.md", @@ -26674,99 +40096,6 @@ "facultyai~dash-bootstrap-components~pyproject.toml" ] }, - { - "index": 236, - "category": "sim", - "githuburl": "https://github.com/salesforce/ai-economist", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "salesforce/ai-economist", - "_reponame": "ai-economist", - "_stars": 913, - "_forks": 189, - "_watches": 44, - "_topics": [ - "ai", - "ml", - "multi-agent", - "multi-agent-reinforcement-learning", - "deep-reinforcement-learning", - "reinforcement-learning-environments", - "simulation-framework", - "python-3", - "economics" - ], - "_language": "Python", - "_homepage": "https://www.einstein.ai/the-ai-economist", - "_description": "ai-economist: Foundation is a flexible, modular, and composable framework to model socio-economic behaviors and dynamics with both agents and governments. This framework can be used in conjunction with reinforcement learning to learn optimal economic policies,\u00a0as done by the AI Economist (https://www.einstein.ai/the-ai-economist).", - "_organization": "salesforce", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-05-09T00:00:00.000Z", - "_created_at": "2020-07-02T00:00:00.000Z", - "_age_weeks": 126, - "_stars_per_week": 7.2, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/salesforce/ai-economist/master/README.md", - "_readme_localurl": "salesforce~ai-economist~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/salesforce/ai-economist/master/requirements.txt", - "https://raw.githubusercontent.com/salesforce/ai-economist/master/setup.py" - ], - "_requirements_localurls": [ - "salesforce~ai-economist~requirements.txt", - "salesforce~ai-economist~setup.py" - ] - }, - { - "index": 88, - "category": "testing", - "githuburl": "https://github.com/taverntesting/tavern", - "featured": null, - "links": null, - "description": null, - "_repopath": "taverntesting/tavern", - "_reponame": "tavern", - "_stars": 908, - "_forks": 179, - "_watches": 28, - "_topics": [ - "python", - "pytest", - "testing", - "test-automation", - "mqtt", - "http" - ], - "_language": "Python", - "_homepage": "https://taverntesting.github.io/", - "_description": "tavern: A command-line tool and Python library and Pytest plugin for automated testing of RESTful APIs, with a simple, concise and flexible YAML-based syntax", - "_organization": "taverntesting", - "_updated_at": "2022-12-01T00:00:00.000Z", - "_last_commit_date": "2022-11-27T00:00:00.000Z", - "_created_at": "2017-11-01T00:00:00.000Z", - "_age_weeks": 266, - "_stars_per_week": 3.41, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/taverntesting/tavern/master/README.rst", - "_readme_localurl": "taverntesting~tavern~README.rst", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/taverntesting/tavern/master/requirements.txt", - "https://raw.githubusercontent.com/taverntesting/tavern/master/setup.py" - ], - "_requirements_localurls": [ - "taverntesting~tavern~requirements.txt", - "taverntesting~tavern~setup.py" - ] - }, { "index": 379, "category": "ml-interpretability", @@ -26776,8 +40105,8 @@ "description": null, "_repopath": "cdpierse/transformers-interpret", "_reponame": "transformers-interpret", - "_stars": 907, - "_forks": 80, + "_stars": 924, + "_forks": 81, "_watches": 16, "_topics": [ "nlp", @@ -26797,11 +40126,35 @@ "_homepage": "", "_description": "transformers-interpret: Model explainability that works seamlessly with \ud83e\udd17 transformers. Explain your transformers model in just 2 lines of code. ", "_organization": "cdpierse", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-17T00:00:00.000Z", "_created_at": "2020-05-27T00:00:00.000Z", - "_age_weeks": 132, - "_stars_per_week": 6.87, + "_age_weeks": 133, + "_stars_per_week": 6.91, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "dfki/universit\u00e4tdessaarlandes", + "mavenoid;omnimodular", + "oraikatechnologies", + "quantcopy" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.98, + "_pop_updated_issues_count": 17, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 17.0, + "_pop_comment_count": 22.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 11, + "_pop_score": 35.7, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/README.md", "_readme_localurl": "cdpierse~transformers-interpret~README.md", @@ -26821,6 +40174,133 @@ "cdpierse~transformers-interpret~pyproject.toml" ] }, + { + "index": 212, + "category": "data", + "githuburl": "https://github.com/sfu-db/connector-x", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "sfu-db/connector-x", + "_reponame": "connector-x", + "_stars": 919, + "_forks": 66, + "_watches": 23, + "_topics": [ + "rust", + "python", + "database", + "sql", + "dataframe" + ], + "_language": "Rust", + "_homepage": "https://sfu-db.github.io/connector-x/intro.html", + "_description": "connector-x: Fastest library to load data from DB to DataFrames in Rust and Python", + "_organization": "sfu-db", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-08T00:00:00.000Z", + "_created_at": "2021-01-13T00:00:00.000Z", + "_age_weeks": 100, + "_stars_per_week": 9.12, + "_pop_contributor_count": 29, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "redhatofficial", + "sfu-db" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.38, + "_pop_updated_issues_count": 68, + "_pop_closed_issues_count": 33, + "_pop_created_since_days": 23, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 68.0, + "_pop_comment_count": 79.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 20, + "_pop_score": 43.1, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/sfu-db/connector-x/master/README.md", + "_readme_localurl": "sfu-db~connector-x~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 236, + "category": "sim", + "githuburl": "https://github.com/salesforce/ai-economist", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "salesforce/ai-economist", + "_reponame": "ai-economist", + "_stars": 918, + "_forks": 192, + "_watches": 44, + "_topics": [ + "ai", + "ml", + "multi-agent", + "multi-agent-reinforcement-learning", + "deep-reinforcement-learning", + "reinforcement-learning-environments", + "simulation-framework", + "python-3", + "economics" + ], + "_language": "Python", + "_homepage": "https://www.einstein.ai/the-ai-economist", + "_description": "ai-economist: Foundation is a flexible, modular, and composable framework to model socio-economic behaviors and dynamics with both agents and governments. This framework can be used in conjunction with reinforcement learning to learn optimal economic policies,\u00a0as done by the AI Economist (https://www.einstein.ai/the-ai-economist).", + "_organization": "salesforce", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-05-09T00:00:00.000Z", + "_created_at": "2020-07-02T00:00:00.000Z", + "_age_weeks": 128, + "_stars_per_week": 7.14, + "_pop_contributor_count": 8, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "apple", + "salesforceresearch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.42, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 30, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 18.21, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/salesforce/ai-economist/master/README.md", + "_readme_localurl": "salesforce~ai-economist~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/salesforce/ai-economist/master/requirements.txt", + "https://raw.githubusercontent.com/salesforce/ai-economist/master/setup.py" + ], + "_requirements_localurls": [ + "salesforce~ai-economist~requirements.txt", + "salesforce~ai-economist~setup.py" + ] + }, { "index": 541, "category": "util", @@ -26830,7 +40310,7 @@ "description": null, "_repopath": "pdoc3/pdoc", "_reponame": "pdoc", - "_stars": 905, + "_stars": 911, "_forks": 136, "_watches": 8, "_topics": [ @@ -26854,11 +40334,32 @@ "_homepage": "https://pdoc3.github.io/pdoc/", "_description": "pdoc: :snake: :arrow_right: :scroll: Auto-generate API documentation for Python projects", "_organization": "pdoc3", - "_updated_at": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-10-29T00:00:00.000Z", "_created_at": "2019-01-02T00:00:00.000Z", - "_age_weeks": 205, + "_age_weeks": 206, "_stars_per_week": 4.41, + "_pop_contributor_count": 58, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "salesforce" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 15, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 48, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 15.0, + "_pop_comment_count": 13.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 183, + "_pop_score": 41.9, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pdoc3/pdoc/master/README.md", "_readme_localurl": "pdoc3~pdoc~README.md", @@ -26872,41 +40373,6 @@ "pdoc3~pdoc~setup.py" ] }, - { - "index": 212, - "category": "data", - "githuburl": "https://github.com/sfu-db/connector-x", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "sfu-db/connector-x", - "_reponame": "connector-x", - "_stars": 901, - "_forks": 66, - "_watches": 24, - "_topics": [ - "rust", - "python", - "database", - "sql", - "dataframe" - ], - "_language": "Rust", - "_homepage": "https://sfu-db.github.io/connector-x/intro.html", - "_description": "connector-x: Fastest library to load data from DB to DataFrames in Rust and Python", - "_organization": "sfu-db", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2021-01-13T00:00:00.000Z", - "_age_weeks": 99, - "_stars_per_week": 9.1, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/sfu-db/connector-x/master/README.md", - "_readme_localurl": "sfu-db~connector-x~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 251, "category": "ml-dl", @@ -26916,9 +40382,9 @@ "description": null, "_repopath": "tensorflow/similarity", "_reponame": "similarity", - "_stars": 900, - "_forks": 84, - "_watches": 27, + "_stars": 910, + "_forks": 86, + "_watches": 28, "_topics": [ "similarity-learning", "metric-learning", @@ -26943,11 +40409,32 @@ "_homepage": "", "_description": "similarity: TensorFlow Similarity is a python package focused on making similarity learning quick and easy.", "_organization": "tensorflow", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-12-02T00:00:00.000Z", "_created_at": "2020-06-15T00:00:00.000Z", - "_age_weeks": 129, - "_stars_per_week": 6.96, + "_age_weeks": 131, + "_stars_per_week": 6.95, + "_pop_contributor_count": 23, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.1, + "_pop_updated_issues_count": 24, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 24.0, + "_pop_comment_count": 37.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 29, + "_pop_score": 36.24, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tensorflow/similarity/master/README.md", "_readme_localurl": "tensorflow~similarity~README.md", @@ -26965,41 +40452,71 @@ ] }, { - "index": 622, - "category": "util", - "githuburl": "https://github.com/pytoolz/cytoolz", + "index": 88, + "category": "testing", + "githuburl": "https://github.com/taverntesting/tavern", "featured": null, "links": null, "description": null, - "_repopath": "pytoolz/cytoolz", - "_reponame": "cytoolz", - "_stars": 890, - "_forks": 67, - "_watches": 23, - "_topics": [], + "_repopath": "taverntesting/tavern", + "_reponame": "tavern", + "_stars": 909, + "_forks": 179, + "_watches": 28, + "_topics": [ + "python", + "pytest", + "testing", + "test-automation", + "mqtt", + "http" + ], "_language": "Python", - "_homepage": "", - "_description": "cytoolz: Cython implementation of Toolz: High performance functional utilities", - "_organization": "pytoolz", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-06T00:00:00.000Z", - "_created_at": "2014-04-04T00:00:00.000Z", - "_age_weeks": 452, - "_stars_per_week": 1.97, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pytoolz/cytoolz/master/README.rst", - "_readme_localurl": "pytoolz~cytoolz~README.rst", + "_homepage": "https://taverntesting.github.io/", + "_description": "tavern: A command-line tool and Python library and Pytest plugin for automated testing of RESTful APIs, with a simple, concise and flexible YAML-based syntax", + "_organization": "taverntesting", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_created_at": "2017-11-01T00:00:00.000Z", + "_age_weeks": 267, + "_stars_per_week": 3.4, + "_pop_contributor_count": 56, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "atlassian", + "forgerock", + "zalando" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.38, + "_pop_updated_issues_count": 34, + "_pop_closed_issues_count": 25, + "_pop_created_since_days": 62, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 37, + "_pop_recent_releases_adjusted_count": 37, + "_pop_issue_count": 34.0, + "_pop_comment_count": 34.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 38, + "_pop_score": 49.71, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/taverntesting/tavern/master/README.md", + "_readme_localurl": "taverntesting~tavern~README.md", "_requirements_filenames": [ - "setup.py", + "requirements.txt", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pytoolz/cytoolz/master/setup.py", - "https://raw.githubusercontent.com/pytoolz/cytoolz/master/pyproject.toml" + "https://raw.githubusercontent.com/taverntesting/tavern/master/requirements.txt", + "https://raw.githubusercontent.com/taverntesting/tavern/master/pyproject.toml" ], "_requirements_localurls": [ - "pytoolz~cytoolz~setup.py", - "pytoolz~cytoolz~pyproject.toml" + "taverntesting~tavern~requirements.txt", + "taverntesting~tavern~pyproject.toml" ] }, { @@ -27011,8 +40528,8 @@ "description": null, "_repopath": "shivam5992/textstat", "_reponame": "textstat", - "_stars": 889, - "_forks": 145, + "_stars": 892, + "_forks": 144, "_watches": 17, "_topics": [ "python", @@ -27026,11 +40543,32 @@ "_homepage": "https://textstat.org", "_description": "textstat: :memo: python package to calculate readability statistics of a text object - paragraphs, sentences, articles.", "_organization": "shivam5992", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-07-08T00:00:00.000Z", "_created_at": "2014-06-18T00:00:00.000Z", - "_age_weeks": 442, + "_age_weeks": 443, "_stars_per_week": 2.01, + "_pop_contributor_count": 46, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "tessian" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 104, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 4.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 19, + "_pop_score": 33.24, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/shivam5992/textstat/master/README.md", "_readme_localurl": "shivam5992~textstat~README.md", @@ -27050,6 +40588,68 @@ "shivam5992~textstat~Pipfile" ] }, + { + "index": 622, + "category": "util", + "githuburl": "https://github.com/pytoolz/cytoolz", + "featured": null, + "links": null, + "description": null, + "_repopath": "pytoolz/cytoolz", + "_reponame": "cytoolz", + "_stars": 890, + "_forks": 67, + "_watches": 23, + "_topics": [], + "_language": "Python", + "_homepage": "", + "_description": "cytoolz: Cython implementation of Toolz: High performance functional utilities", + "_organization": "pytoolz", + "_updated_at": "2022-12-06T00:00:00.000Z", + "_last_commit_date": "2022-11-06T00:00:00.000Z", + "_created_at": "2014-04-04T00:00:00.000Z", + "_age_weeks": 454, + "_stars_per_week": 1.96, + "_pop_contributor_count": 20, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "coiled", + "formerlyquantopian", + "lynkertechnologies", + "voltrondata" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.52, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 106, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 10.0, + "_pop_comment_count": 6.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 28, + "_pop_score": 39.05, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pytoolz/cytoolz/master/README.rst", + "_readme_localurl": "pytoolz~cytoolz~README.rst", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pytoolz/cytoolz/master/setup.py", + "https://raw.githubusercontent.com/pytoolz/cytoolz/master/pyproject.toml" + ], + "_requirements_localurls": [ + "pytoolz~cytoolz~setup.py", + "pytoolz~cytoolz~pyproject.toml" + ] + }, { "index": 504, "category": "gis", @@ -27059,8 +40659,8 @@ "description": null, "_repopath": "anitagraser/movingpandas", "_reponame": "movingpandas", - "_stars": 888, - "_forks": 164, + "_stars": 889, + "_forks": 165, "_watches": 36, "_topics": [ "geopandas", @@ -27074,11 +40674,33 @@ "_homepage": "http://movingpandas.org", "_description": "movingpandas: Implementation of Trajectory classes and functions built on top of GeoPandas", "_organization": "anitagraser", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2018-12-16T00:00:00.000Z", - "_age_weeks": 207, - "_stars_per_week": 4.28, + "_age_weeks": 209, + "_stars_per_week": 4.25, + "_pop_contributor_count": 29, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "dtn", + "universityofliverpool" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.29, + "_pop_updated_issues_count": 35, + "_pop_closed_issues_count": 20, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 35.0, + "_pop_comment_count": 55.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 25, + "_pop_score": 44.08, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/anitagraser/movingpandas/master/README.md", "_readme_localurl": "anitagraser~movingpandas~README.md", @@ -27101,19 +40723,41 @@ "description": null, "_repopath": "markshannon/faster-cpython", "_reponame": "faster-cpython", - "_stars": 883, - "_forks": 20, + "_stars": 888, + "_forks": 21, "_watches": 83, "_topics": [], "_language": null, "_homepage": null, "_description": "faster-cpython: How to make CPython faster.", "_organization": "markshannon", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2020-10-28T00:00:00.000Z", "_created_at": "2020-10-19T00:00:00.000Z", - "_age_weeks": 111, - "_stars_per_week": 7.93, + "_age_weeks": 113, + "_stars_per_week": 7.86, + "_pop_contributor_count": 4, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "colgateuniversity", + "microsoft" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 26, + "_pop_updated_since_days": 26, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 13.05, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/markshannon/faster-cpython/master/README.md", "_readme_localurl": "markshannon~faster-cpython~README.md", @@ -27121,52 +40765,6 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, - { - "index": 630, - "category": "gis", - "githuburl": "https://github.com/pytroll/satpy", - "featured": null, - "links": null, - "description": null, - "_repopath": "pytroll/satpy", - "_reponame": "satpy", - "_stars": 880, - "_forks": 255, - "_watches": 32, - "_topics": [ - "python", - "satellite", - "weather", - "hacktoberfest", - "dask", - "xarray", - "closember" - ], - "_language": "Python", - "_homepage": "http://satpy.readthedocs.org/en/latest/", - "_description": "satpy: Python package for earth-observing satellite data processing", - "_organization": "pytroll", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2016-02-09T00:00:00.000Z", - "_age_weeks": 356, - "_stars_per_week": 2.47, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pytroll/satpy/master/README.rst", - "_readme_localurl": "pytroll~satpy~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pytroll/satpy/master/setup.py", - "https://raw.githubusercontent.com/pytroll/satpy/master/pyproject.toml" - ], - "_requirements_localurls": [ - "pytroll~satpy~setup.py", - "pytroll~satpy~pyproject.toml" - ] - }, { "index": 402, "category": "perf", @@ -27176,7 +40774,7 @@ "description": null, "_repopath": "tiangolo/asyncer", "_reponame": "asyncer", - "_stars": 878, + "_stars": 886, "_forks": 40, "_watches": 14, "_topics": [ @@ -27190,11 +40788,32 @@ "_homepage": "https://asyncer.tiangolo.com/", "_description": "Asyncer, async and await, focused on developer experience.", "_organization": "tiangolo", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-11-14T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2022-01-04T00:00:00.000Z", - "_age_weeks": 48, - "_stars_per_week": 18.24, + "_age_weeks": 49, + "_stars_per_week": 17.77, + "_pop_contributor_count": 10, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "snok,intility" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.69, + "_pop_updated_issues_count": 30, + "_pop_closed_issues_count": 26, + "_pop_created_since_days": 12, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 30.0, + "_pop_comment_count": 38.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 28.15, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tiangolo/asyncer/master/README.md", "_readme_localurl": "tiangolo~asyncer~README.md", @@ -27209,44 +40828,73 @@ ] }, { - "index": 750, - "category": "data", - "githuburl": "https://github.com/pytorch/data", + "index": 630, + "category": "gis", + "githuburl": "https://github.com/pytroll/satpy", "featured": null, "links": null, "description": null, - "_repopath": "pytorch/data", - "_reponame": "data", - "_stars": 865, - "_forks": 100, - "_watches": 26, - "_topics": [], + "_repopath": "pytroll/satpy", + "_reponame": "satpy", + "_stars": 881, + "_forks": 256, + "_watches": 31, + "_topics": [ + "python", + "satellite", + "weather", + "hacktoberfest", + "dask", + "xarray", + "closember" + ], "_language": "Python", - "_homepage": "", - "_description": "data: A PyTorch repo for data loading and utilities to be shared by the PyTorch domain libraries.", - "_organization": "pytorch", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2021-05-12T00:00:00.000Z", - "_age_weeks": 82, - "_stars_per_week": 10.55, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pytorch/data/master/README.md", - "_readme_localurl": "pytorch~data~README.md", + "_homepage": "http://satpy.readthedocs.org/en/latest/", + "_description": "satpy: Python package for earth-observing satellite data processing", + "_organization": "pytroll", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_created_at": "2016-02-09T00:00:00.000Z", + "_age_weeks": 357, + "_stars_per_week": 2.46, + "_pop_contributor_count": 132, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "deutscherwetterdienst", + "dwd", + "smhi", + "spacescienceandengineeringcenter(ssec)" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 21.56, + "_pop_updated_issues_count": 174, + "_pop_closed_issues_count": 107, + "_pop_created_since_days": 83, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 174.0, + "_pop_comment_count": 595.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.4, + "_pop_dependents_count": 12, + "_pop_score": 58.74, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pytroll/satpy/master/README.rst", + "_readme_localurl": "pytroll~satpy~README.rst", "_requirements_filenames": [ - "requirements.txt", "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pytorch/data/master/requirements.txt", - "https://raw.githubusercontent.com/pytorch/data/master/setup.py", - "https://raw.githubusercontent.com/pytorch/data/master/pyproject.toml" + "https://raw.githubusercontent.com/pytroll/satpy/master/setup.py", + "https://raw.githubusercontent.com/pytroll/satpy/master/pyproject.toml" ], "_requirements_localurls": [ - "pytorch~data~requirements.txt", - "pytorch~data~setup.py", - "pytorch~data~pyproject.toml" + "pytroll~satpy~setup.py", + "pytroll~satpy~pyproject.toml" ] }, { @@ -27258,7 +40906,7 @@ "description": null, "_repopath": "tezromach/python-package-template", "_reponame": "python-package-template", - "_stars": 865, + "_stars": 873, "_forks": 85, "_watches": 6, "_topics": [ @@ -27277,11 +40925,30 @@ "_homepage": "", "_description": "python-package-template: \ud83d\ude80 Your next Python package needs a bleeding-edge project structure.", "_organization": "tezromach", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-05-18T00:00:00.000Z", "_created_at": "2020-04-15T00:00:00.000Z", - "_age_weeks": 138, - "_stars_per_week": 6.27, + "_age_weeks": 139, + "_stars_per_week": 6.25, + "_pop_contributor_count": 13, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 111, + "_pop_closed_issues_count": 71, + "_pop_created_since_days": 33, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 111.0, + "_pop_comment_count": 73.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 18, + "_pop_score": 28.54, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tezromach/python-package-template/master/README.md", "_readme_localurl": "tezromach~python-package-template~README.md", @@ -27295,6 +40962,69 @@ "tezromach~python-package-template~pyproject.toml" ] }, + { + "index": 750, + "category": "data", + "githuburl": "https://github.com/pytorch/data", + "featured": null, + "links": null, + "description": null, + "_repopath": "pytorch/data", + "_reponame": "data", + "_stars": 870, + "_forks": 102, + "_watches": 25, + "_topics": [], + "_language": "Python", + "_homepage": "", + "_description": "data: A PyTorch repo for data loading and utilities to be shared by the PyTorch domain libraries.", + "_organization": "pytorch", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2021-05-12T00:00:00.000Z", + "_age_weeks": 83, + "_stars_per_week": 10.39, + "_pop_contributor_count": 60, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebook", + "quansight" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.5, + "_pop_updated_issues_count": 194, + "_pop_closed_issues_count": 146, + "_pop_created_since_days": 20, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 194.0, + "_pop_comment_count": 491.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 1663, + "_pop_score": 56.55, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pytorch/data/master/README.md", + "_readme_localurl": "pytorch~data~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pytorch/data/master/requirements.txt", + "https://raw.githubusercontent.com/pytorch/data/master/setup.py", + "https://raw.githubusercontent.com/pytorch/data/master/pyproject.toml" + ], + "_requirements_localurls": [ + "pytorch~data~requirements.txt", + "pytorch~data~setup.py", + "pytorch~data~pyproject.toml" + ] + }, { "index": 341, "category": "term", @@ -27304,7 +41034,7 @@ "description": null, "_repopath": "jquast/blessed", "_reponame": "blessed", - "_stars": 863, + "_stars": 867, "_forks": 67, "_watches": 24, "_topics": [ @@ -27316,11 +41046,33 @@ "_homepage": "http://pypi.python.org/pypi/blessed", "_description": "Blessed is an easy, practical library for making python terminal apps", "_organization": "jquast", - "_updated_at": "2022-11-30T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2022-09-27T00:00:00.000Z", "_created_at": "2014-03-01T00:00:00.000Z", - "_age_weeks": 457, + "_age_weeks": 459, "_stars_per_week": 1.89, + "_pop_contributor_count": 24, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "dalibo", + "mozilla" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 107, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 7.0, + "_pop_comment_count": 10.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 11, + "_pop_score": 34.13, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/jquast/blessed/master/README.rst", "_readme_localurl": "jquast~blessed~README.rst", @@ -27346,8 +41098,8 @@ "description": null, "_repopath": "tkrabel/bamboolib", "_reponame": "bamboolib", - "_stars": 854, - "_forks": 92, + "_stars": 858, + "_forks": 93, "_watches": 31, "_topics": [ "pandas", @@ -27360,11 +41112,34 @@ "_homepage": "https://bamboolib.com", "_description": "bamboolib - a GUI for pandas DataFrames", "_organization": "tkrabel", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-09-27T00:00:00.000Z", "_created_at": "2019-05-29T00:00:00.000Z", - "_age_weeks": 184, - "_stars_per_week": 4.64, + "_age_weeks": 185, + "_stars_per_week": 4.62, + "_pop_contributor_count": 4, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "8080labs", + "bamboolib", + "databricks" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.21, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 43, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 8, + "_pop_score": 21.39, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tkrabel/bamboolib/master/README.md", "_readme_localurl": "tkrabel~bamboolib~README.md", @@ -27381,7 +41156,7 @@ "description": null, "_repopath": "alexmojaki/snoop", "_reponame": "snoop", - "_stars": 848, + "_stars": 856, "_forks": 29, "_watches": 16, "_topics": [ @@ -27395,11 +41170,32 @@ "_homepage": "", "_description": "snoop: A powerful set of Python debugging tools, based on PySnooper", "_organization": "alexmojaki", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-12-05T00:00:00.000Z", "_created_at": "2019-05-13T00:00:00.000Z", - "_age_weeks": 186, + "_age_weeks": 188, "_stars_per_week": 4.55, + "_pop_contributor_count": 22, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.15, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 6.0, + "_pop_comment_count": 15.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 5, + "_pop_score": 33.51, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/alexmojaki/snoop/master/README.md", "_readme_localurl": "alexmojaki~snoop~README.md", @@ -27425,8 +41221,8 @@ "description": null, "_repopath": "intel/scikit-learn-intelex", "_reponame": "scikit-learn-intelex", - "_stars": 847, - "_forks": 135, + "_stars": 854, + "_forks": 136, "_watches": 28, "_topics": [ "oneapi", @@ -27448,27 +41244,108 @@ "_homepage": "https://intel.github.io/scikit-learn-intelex/", "_description": "scikit-learn-intelex: Intel(R) Extension for Scikit-learn is a seamless way to speed up your Scikit-learn application", "_organization": "intel", - "_updated_at": "2022-12-04T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2018-08-07T00:00:00.000Z", - "_age_weeks": 226, + "_age_weeks": 227, "_stars_per_week": 3.75, + "_pop_contributor_count": 62, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "intel", + "intelcorporation" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.63, + "_pop_updated_issues_count": 118, + "_pop_closed_issues_count": 82, + "_pop_created_since_days": 53, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 118.0, + "_pop_comment_count": 80.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 39.35, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/intel/scikit-learn-intelex/master/README.md", "_readme_localurl": "intel~scikit-learn-intelex~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/intel/scikit-learn-intelex/master/requirements.txt", "https://raw.githubusercontent.com/intel/scikit-learn-intelex/master/setup.py" ], "_requirements_localurls": [ - "intel~scikit-learn-intelex~requirements.txt", "intel~scikit-learn-intelex~setup.py" ] }, + { + "index": 772, + "category": "nlp", + "githuburl": "https://github.com/huggingface/setfit", + "featured": null, + "links": null, + "description": null, + "_repopath": "huggingface/setfit", + "_reponame": "setfit", + "_stars": 850, + "_forks": 74, + "_watches": 15, + "_topics": [ + "few-shot-learning", + "nlp", + "sentence-transformers" + ], + "_language": "Python", + "_homepage": "", + "_description": "setfit: Efficient few-shot learning with Sentence Transformers", + "_organization": "huggingface", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2022-06-30T00:00:00.000Z", + "_age_weeks": 24, + "_stars_per_week": 34.59, + "_pop_contributor_count": 29, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "huggingface", + "nervanasystems", + "telekom" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.46, + "_pop_updated_issues_count": 187, + "_pop_closed_issues_count": 132, + "_pop_created_since_days": 6, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 18, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 187.0, + "_pop_comment_count": 415.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 2, + "_pop_score": 41.76, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/huggingface/setfit/master/README.md", + "_readme_localurl": "huggingface~setfit~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/huggingface/setfit/master/setup.py" + ], + "_requirements_localurls": [ + "huggingface~setfit~setup.py" + ] + }, { "index": 347, "category": "nlp", @@ -27478,7 +41355,7 @@ "description": null, "_repopath": "norskregnesentral/skweak", "_reponame": "skweak", - "_stars": 845, + "_stars": 847, "_forks": 67, "_watches": 27, "_topics": [ @@ -27496,11 +41373,35 @@ "_homepage": "", "_description": "skweak: A software toolkit for weak supervision applied to NLP tasks", "_organization": "norskregnesentral", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-12T00:00:00.000Z", "_last_commit_date": "2022-11-08T00:00:00.000Z", "_created_at": "2021-03-16T00:00:00.000Z", - "_age_weeks": 90, - "_stars_per_week": 9.37, + "_age_weeks": 91, + "_stars_per_week": 9.22, + "_pop_contributor_count": 11, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "norwegiancomputingcentre", + "palinode", + "universityofoslo", + "universityofthebasquecountryupv/ehu" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.46, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 21, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 7.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 13, + "_pop_score": 32.18, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/norskregnesentral/skweak/master/README.md", "_readme_localurl": "norskregnesentral~skweak~README.md", @@ -27526,7 +41427,7 @@ "description": null, "_repopath": "intake/intake", "_reponame": "intake", - "_stars": 841, + "_stars": 844, "_forks": 125, "_watches": 41, "_topics": [ @@ -27538,11 +41439,34 @@ "_homepage": "https://intake.readthedocs.io/", "_description": "Intake is a lightweight package for finding, investigating, loading and disseminating data.", "_organization": "intake", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-12T00:00:00.000Z", "_last_commit_date": "2022-12-02T00:00:00.000Z", "_created_at": "2017-08-14T00:00:00.000Z", - "_age_weeks": 277, + "_age_weeks": 279, "_stars_per_week": 3.03, + "_pop_contributor_count": 79, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "anaconda", + "azavea", + "brookhavennationallab" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.98, + "_pop_updated_issues_count": 22, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 65, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 22.0, + "_pop_comment_count": 41.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 392, + "_pop_score": 51.62, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/intake/intake/master/README.md", "_readme_localurl": "intake~intake~README.md", @@ -27568,7 +41492,7 @@ "description": null, "_repopath": "sentinelsat/sentinelsat", "_reponame": "sentinelsat", - "_stars": 833, + "_stars": 836, "_forks": 225, "_watches": 59, "_topics": [ @@ -27585,11 +41509,34 @@ "_homepage": "https://sentinelsat.readthedocs.io", "_description": "sentinelsat: Search and download Copernicus Sentinel satellite images", "_organization": "sentinelsat", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2022-11-03T00:00:00.000Z", "_created_at": "2015-05-22T00:00:00.000Z", - "_age_weeks": 393, - "_stars_per_week": 2.12, + "_age_weeks": 395, + "_stars_per_week": 2.11, + "_pop_contributor_count": 42, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "deloitte", + "developmentseed", + "milremrobotics" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.15, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 92, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 9.0, + "_pop_comment_count": 45.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 5.0, + "_pop_dependents_count": 7, + "_pop_score": 41.12, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/README.rst", "_readme_localurl": "sentinelsat~sentinelsat~README.rst", @@ -27609,43 +41556,6 @@ "sentinelsat~sentinelsat~pyproject.toml" ] }, - { - "index": 639, - "category": "ml", - "githuburl": "https://github.com/dask/dask-ml", - "featured": null, - "links": null, - "description": null, - "_repopath": "dask/dask-ml", - "_reponame": "dask-ml", - "_stars": 832, - "_forks": 236, - "_watches": 40, - "_topics": [ - "hacktoberfest" - ], - "_language": "Python", - "_homepage": "http://ml.dask.org", - "_description": "dask-ml: Scalable Machine Learning with Dask", - "_organization": "dask", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-10-19T00:00:00.000Z", - "_created_at": "2017-06-15T00:00:00.000Z", - "_age_weeks": 285, - "_stars_per_week": 2.91, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/dask/dask-ml/master/README.rst", - "_readme_localurl": "dask~dask-ml~README.rst", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/dask/dask-ml/master/setup.py" - ], - "_requirements_localurls": [ - "dask~dask-ml~setup.py" - ] - }, { "index": 697, "category": "data", @@ -27655,8 +41565,8 @@ "description": null, "_repopath": "scholarly-python-package/scholarly", "_reponame": "scholarly", - "_stars": 830, - "_forks": 249, + "_stars": 834, + "_forks": 250, "_watches": 24, "_topics": [ "scholar", @@ -27676,11 +41586,34 @@ "_homepage": "https://scholarly.readthedocs.io/", "_description": "scholarly: Retrieve author and publication information from Google Scholar in a friendly, Pythonic way without having to worry about CAPTCHAs!", "_organization": "scholarly-python-package", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2014-12-02T00:00:00.000Z", - "_age_weeks": 418, - "_stars_per_week": 1.98, + "_age_weeks": 419, + "_stars_per_week": 1.99, + "_pop_contributor_count": 43, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "newyorkuniversity", + "princetonuniversity", + "universityofalberta" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.44, + "_pop_updated_issues_count": 28, + "_pop_closed_issues_count": 24, + "_pop_created_since_days": 98, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 28.0, + "_pop_comment_count": 68.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 3, + "_pop_score": 46.71, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/README.md", "_readme_localurl": "scholarly-python-package~scholarly~README.md", @@ -27700,6 +41633,66 @@ "scholarly-python-package~scholarly~pyproject.toml" ] }, + { + "index": 639, + "category": "ml", + "githuburl": "https://github.com/dask/dask-ml", + "featured": null, + "links": null, + "description": null, + "_repopath": "dask/dask-ml", + "_reponame": "dask-ml", + "_stars": 833, + "_forks": 236, + "_watches": 40, + "_topics": [ + "hacktoberfest" + ], + "_language": "Python", + "_homepage": "http://ml.dask.org", + "_description": "dask-ml: Scalable Machine Learning with Dask", + "_organization": "dask", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2022-10-19T00:00:00.000Z", + "_created_at": "2017-06-15T00:00:00.000Z", + "_age_weeks": 287, + "_stars_per_week": 2.9, + "_pop_contributor_count": 76, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "coiled", + "microsoft", + "voltrondata" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.21, + "_pop_updated_issues_count": 22, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 67, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 22.0, + "_pop_comment_count": 28.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 68, + "_pop_score": 42.99, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/dask/dask-ml/master/README.rst", + "_readme_localurl": "dask~dask-ml~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/dask/dask-ml/master/setup.py" + ], + "_requirements_localurls": [ + "dask~dask-ml~setup.py" + ] + }, { "index": 445, "category": "gis", @@ -27709,8 +41702,8 @@ "description": null, "_repopath": "pyproj4/pyproj", "_reponame": "pyproj", - "_stars": 824, - "_forks": 188, + "_stars": 828, + "_forks": 189, "_watches": 30, "_topics": [ "geospatial", @@ -27725,11 +41718,32 @@ "_homepage": "https://pyproj4.github.io/pyproj", "_description": "pyproj: Python interface to PROJ (cartographic projections and coordinate transformations library)", "_organization": "pyproj4", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2014-12-29T00:00:00.000Z", - "_age_weeks": 414, + "_age_weeks": 416, "_stars_per_week": 1.99, + "_pop_contributor_count": 58, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "corteva" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.6, + "_pop_updated_issues_count": 56, + "_pop_closed_issues_count": 40, + "_pop_created_since_days": 97, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 56.0, + "_pop_comment_count": 144.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 523, + "_pop_score": 53.82, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pyproj4/pyproj/master/README.md", "_readme_localurl": "pyproj4~pyproj~README.md", @@ -27746,70 +41760,6 @@ "pyproj4~pyproj~pyproject.toml" ] }, - { - "index": 887, - "category": "sim", - "githuburl": "https://github.com/pyscf/pyscf", - "featured": null, - "links": null, - "description": null, - "_repopath": "pyscf/pyscf", - "_reponame": "pyscf", - "_stars": 816, - "_forks": 436, - "_watches": 77, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "pyscf: Python module for quantum chemistry", - "_organization": "pyscf", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", - "_created_at": "2014-05-02T00:00:00.000Z", - "_age_weeks": 448, - "_stars_per_week": 1.82, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pyscf/pyscf/master/README.md", - "_readme_localurl": "pyscf~pyscf~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pyscf/pyscf/master/setup.py" - ], - "_requirements_localurls": [ - "pyscf~pyscf~setup.py" - ] - }, - { - "index": 712, - "category": "ml", - "githuburl": "https://github.com/google-research/deeplab2", - "featured": null, - "links": null, - "description": null, - "_repopath": "google-research/deeplab2", - "_reponame": "deeplab2", - "_stars": 813, - "_forks": 137, - "_watches": 19, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "DeepLab2 is a TensorFlow library for deep labeling, aiming to provide a unified and state-of-the-art TensorFlow codebase for dense pixel labeling tasks.", - "_organization": "google-research", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-05T00:00:00.000Z", - "_created_at": "2021-05-12T00:00:00.000Z", - "_age_weeks": 82, - "_stars_per_week": 9.91, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/google-research/deeplab2/master/README.md", - "_readme_localurl": "google-research~deeplab2~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 468, "category": "ml", @@ -27819,9 +41769,9 @@ "description": null, "_repopath": "huggingface/optimum", "_reponame": "optimum", - "_stars": 808, - "_forks": 98, - "_watches": 35, + "_stars": 825, + "_forks": 105, + "_watches": 39, "_topics": [ "onnx", "pytorch", @@ -27839,11 +41789,32 @@ "_homepage": "https://huggingface.co/docs/optimum/", "_description": "optimum: \ud83c\udfce\ufe0f Accelerate training and inference of \ud83e\udd17 Transformers with easy to use hardware optimization tools", "_organization": "huggingface", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2021-07-20T00:00:00.000Z", - "_age_weeks": 72, - "_stars_per_week": 11.2, + "_age_weeks": 73, + "_stars_per_week": 11.17, + "_pop_contributor_count": 37, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "huggingface" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.21, + "_pop_updated_issues_count": 260, + "_pop_closed_issues_count": 187, + "_pop_created_since_days": 17, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 260.0, + "_pop_comment_count": 642.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 679, + "_pop_score": 52.95, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/huggingface/optimum/master/README.md", "_readme_localurl": "huggingface~optimum~README.md", @@ -27861,43 +41832,111 @@ ] }, { - "index": 772, - "category": "nlp", - "githuburl": "https://github.com/huggingface/setfit", + "index": 887, + "category": "sim", + "githuburl": "https://github.com/pyscf/pyscf", "featured": null, "links": null, "description": null, - "_repopath": "huggingface/setfit", - "_reponame": "setfit", - "_stars": 796, - "_forks": 68, - "_watches": 13, - "_topics": [ - "few-shot-learning", - "nlp", - "sentence-transformers" + "_repopath": "pyscf/pyscf", + "_reponame": "pyscf", + "_stars": 823, + "_forks": 439, + "_watches": 75, + "_topics": [], + "_language": "Python", + "_homepage": "", + "_description": "pyscf: Python module for quantum chemistry", + "_organization": "pyscf", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", + "_created_at": "2014-05-02T00:00:00.000Z", + "_age_weeks": 450, + "_stars_per_week": 1.83, + "_pop_contributor_count": 137, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "simuneatomisticss.l.", + "theohiostateuniversity" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.52, + "_pop_updated_issues_count": 148, + "_pop_closed_issues_count": 70, + "_pop_created_since_days": 105, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 148.0, + "_pop_comment_count": 217.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 660, + "_pop_score": 57.53, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pyscf/pyscf/master/README.md", + "_readme_localurl": "pyscf~pyscf~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pyscf/pyscf/master/setup.py" ], + "_requirements_localurls": [ + "pyscf~pyscf~setup.py" + ] + }, + { + "index": 712, + "category": "ml", + "githuburl": "https://github.com/google-research/deeplab2", + "featured": null, + "links": null, + "description": null, + "_repopath": "google-research/deeplab2", + "_reponame": "deeplab2", + "_stars": 820, + "_forks": 138, + "_watches": 20, + "_topics": [], "_language": "Python", "_homepage": "", - "_description": "setfit: Efficient few-shot learning with Sentence Transformers", - "_organization": "huggingface", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2022-06-30T00:00:00.000Z", - "_age_weeks": 22, - "_stars_per_week": 34.83, + "_description": "DeepLab2 is a TensorFlow library for deep labeling, aiming to provide a unified and state-of-the-art TensorFlow codebase for dense pixel labeling tasks.", + "_organization": "google-research", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-11-05T00:00:00.000Z", + "_created_at": "2021-05-12T00:00:00.000Z", + "_age_weeks": 83, + "_stars_per_week": 9.8, + "_pop_contributor_count": 11, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "johnshopkinsuniversity" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.83, + "_pop_updated_issues_count": 24, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 20, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 24.0, + "_pop_comment_count": 44.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 3, + "_pop_score": 27.48, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/huggingface/setfit/master/README.md", - "_readme_localurl": "huggingface~setfit~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/huggingface/setfit/master/setup.py" - ], - "_requirements_localurls": [ - "huggingface~setfit~setup.py" - ] + "_readme_giturl": "https://raw.githubusercontent.com/google-research/deeplab2/master/README.md", + "_readme_localurl": "google-research~deeplab2~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { "index": 850, @@ -27908,7 +41947,7 @@ "description": null, "_repopath": "wolph/python-progressbar", "_reponame": "python-progressbar", - "_stars": 792, + "_stars": 795, "_forks": 95, "_watches": 22, "_topics": [ @@ -27931,11 +41970,32 @@ "_homepage": "http://progressbar-2.readthedocs.org/en/latest/", "_description": "python-progressbar: Progressbar 2 - A progress bar for Python 2 and Python 3 - \"pip install progressbar2\"", "_organization": "wolph", - "_updated_at": "2022-12-01T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-08T00:00:00.000Z", "_created_at": "2012-02-20T00:00:00.000Z", - "_age_weeks": 563, + "_age_weeks": 565, "_stars_per_week": 1.41, + "_pop_contributor_count": 42, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cslab" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.13, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 132, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 14.0, + "_pop_comment_count": 45.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.2, + "_pop_dependents_count": 381, + "_pop_score": 50.05, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/wolph/python-progressbar/master/README.rst", "_readme_localurl": "wolph~python-progressbar~README.rst", @@ -27958,9 +42018,9 @@ "description": null, "_repopath": "emmett-framework/emmett", "_reponame": "emmett", - "_stars": 792, + "_stars": 794, "_forks": 63, - "_watches": 29, + "_watches": 30, "_topics": [ "python", "web-framework", @@ -27972,24 +42032,44 @@ "_homepage": "", "_description": "emmett: The web framework for inventors", "_organization": "emmett-framework", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-10T00:00:00.000Z", "_last_commit_date": "2022-11-24T00:00:00.000Z", "_created_at": "2014-10-20T00:00:00.000Z", - "_age_weeks": 424, - "_stars_per_week": 1.87, + "_age_weeks": 426, + "_stars_per_week": 1.86, + "_pop_contributor_count": 21, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cashbee-team", + "lawstudent", + "ostrovok.ru" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.83, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 99, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 8.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 12, + "_pop_score": 38.9, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/emmett-framework/emmett/master/README.md", "_readme_localurl": "emmett-framework~emmett~README.md", "_requirements_filenames": [ - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/emmett-framework/emmett/master/setup.py", "https://raw.githubusercontent.com/emmett-framework/emmett/master/pyproject.toml" ], "_requirements_localurls": [ - "emmett-framework~emmett~setup.py", "emmett-framework~emmett~pyproject.toml" ] }, @@ -28002,7 +42082,7 @@ "description": null, "_repopath": "luispedro/mahotas", "_reponame": "mahotas", - "_stars": 783, + "_stars": 788, "_forks": 149, "_watches": 47, "_topics": [ @@ -28017,11 +42097,33 @@ "_homepage": "https://mahotas.rtfd.io", "_description": "mahotas: Computer Vision in Python", "_organization": "luispedro", - "_updated_at": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-11-14T00:00:00.000Z", "_created_at": "2010-01-31T00:00:00.000Z", - "_age_weeks": 670, + "_age_weeks": 672, "_stars_per_week": 1.17, + "_pop_contributor_count": 32, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "fudanuniversity", + "theexclosure" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.15, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 157, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 3.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 52, + "_pop_score": 38.88, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/luispedro/mahotas/master/README.md", "_readme_localurl": "luispedro~mahotas~README.md", @@ -28038,6 +42140,66 @@ "luispedro~mahotas~setup.py" ] }, + { + "index": 891, + "category": "util", + "githuburl": "https://github.com/xl0/lovely-tensors", + "featured": null, + "links": null, + "description": null, + "_repopath": "xl0/lovely-tensors", + "_reponame": "lovely-tensors", + "_stars": 788, + "_forks": 11, + "_watches": 6, + "_topics": [ + "deep-learning", + "library", + "pytorch", + "statistics", + "visualization" + ], + "_language": "Jupyter Notebook", + "_homepage": "https://xl0.github.io/lovely-tensors", + "_description": "lovely-tensors: Tensors, ready for human consumption", + "_organization": "xl0", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_created_at": "2022-10-07T00:00:00.000Z", + "_age_weeks": 10, + "_stars_per_week": 75.56, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.48, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 2, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 79, + "_pop_recent_releases_adjusted_count": 79, + "_pop_issue_count": 14.0, + "_pop_comment_count": 80.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 5.7, + "_pop_dependents_count": 0, + "_pop_score": 23.5, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/xl0/lovely-tensors/master/README.md", + "_readme_localurl": "xl0~lovely-tensors~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/xl0/lovely-tensors/master/setup.py" + ], + "_requirements_localurls": [ + "xl0~lovely-tensors~setup.py" + ] + }, { "index": 226, "category": "sim", @@ -28047,7 +42209,7 @@ "description": null, "_repopath": "facebookresearch/droidlet", "_reponame": "fairo", - "_stars": 783, + "_stars": 785, "_forks": 80, "_watches": 38, "_topics": [], @@ -28055,11 +42217,32 @@ "_homepage": "", "_description": "fairo: A modular embodied agent architecture and platform for building embodied agents", "_organization": "facebookresearch", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-12T00:00:00.000Z", "_last_commit_date": "2022-12-02T00:00:00.000Z", "_created_at": "2020-11-02T00:00:00.000Z", - "_age_weeks": 109, - "_stars_per_week": 7.16, + "_age_weeks": 111, + "_stars_per_week": 7.07, + "_pop_contributor_count": 43, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebookairesearch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 9.77, + "_pop_updated_issues_count": 41, + "_pop_closed_issues_count": 27, + "_pop_created_since_days": 26, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 41.0, + "_pop_comment_count": 86.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 108, + "_pop_score": 42.38, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/droidlet/master/README.md", "_readme_localurl": "facebookresearch~droidlet~README.md", @@ -28079,6 +42262,79 @@ "facebookresearch~droidlet~pyproject.toml" ] }, + { + "index": 351, + "category": "ml", + "githuburl": "https://github.com/jina-ai/finetuner", + "featured": null, + "links": null, + "description": null, + "_repopath": "jina-ai/finetuner", + "_reponame": "finetuner", + "_stars": 771, + "_forks": 39, + "_watches": 21, + "_topics": [ + "fine-tuning", + "pretrained-models", + "few-shot-learning", + "negative-sampling", + "metric-learning", + "siamese-network", + "triplet-loss", + "transfer-learning", + "jina", + "neural-search", + "finetuning", + "similarity-learning" + ], + "_language": "Python", + "_homepage": "https://finetuner.jina.ai", + "_description": "finetuner: :dart: Task-oriented finetuning for better embeddings on neural search", + "_organization": "jina-ai", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_created_at": "2021-08-11T00:00:00.000Z", + "_age_weeks": 70, + "_stars_per_week": 10.9, + "_pop_contributor_count": 32, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "jina-ai", + "jinaai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.73, + "_pop_updated_issues_count": 99, + "_pop_closed_issues_count": 89, + "_pop_created_since_days": 16, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 24, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 99.0, + "_pop_comment_count": 117.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 39.18, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/jina-ai/finetuner/master/README.md", + "_readme_localurl": "jina-ai~finetuner~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/jina-ai/finetuner/master/setup.py", + "https://raw.githubusercontent.com/jina-ai/finetuner/master/pyproject.toml" + ], + "_requirements_localurls": [ + "jina-ai~finetuner~setup.py", + "jina-ai~finetuner~pyproject.toml" + ] + }, { "index": 738, "category": "perf", @@ -28088,7 +42344,7 @@ "description": null, "_repopath": "zerointensity/pointers.py", "_reponame": "pointers.py", - "_stars": 765, + "_stars": 766, "_forks": 9, "_watches": 3, "_topics": [ @@ -28100,11 +42356,32 @@ "_homepage": "https://pointers.zintensity.dev/", "_description": "pointers.py: Bringing the hell of pointers to Python.", "_organization": "zerointensity", - "_updated_at": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-08T00:00:00.000Z", "_last_commit_date": "2022-11-30T00:00:00.000Z", "_created_at": "2022-03-09T00:00:00.000Z", - "_age_weeks": 39, - "_stars_per_week": 19.62, + "_age_weeks": 40, + "_stars_per_week": 18.81, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "royalbankofcanada" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.21, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 9, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 3.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 2, + "_pop_score": 25.84, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/zerointensity/pointers.py/master/README.md", "_readme_localurl": "zerointensity~pointers.py~README.md", @@ -28133,7 +42410,7 @@ "description": null, "_repopath": "neo4j/neo4j-python-driver", "_reponame": "neo4j-python-driver", - "_stars": 757, + "_stars": 759, "_forks": 167, "_watches": 99, "_topics": [ @@ -28152,11 +42429,33 @@ "_homepage": "https://neo4j.com/docs/api/python-driver/current/", "_description": "neo4j-python-driver: Neo4j Bolt driver for Python", "_organization": "neo4j", - "_updated_at": "2022-11-29T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2015-05-05T00:00:00.000Z", - "_age_weeks": 396, + "_age_weeks": 397, "_stars_per_week": 1.91, + "_pop_contributor_count": 41, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "elastic", + "neo4j" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.94, + "_pop_updated_issues_count": 80, + "_pop_closed_issues_count": 75, + "_pop_created_since_days": 93, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 17, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 80.0, + "_pop_comment_count": 48.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 74, + "_pop_score": 50.12, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/neo4j/neo4j-python-driver/master/README.rst", "_readme_localurl": "neo4j~neo4j-python-driver~README.rst", @@ -28176,95 +42475,6 @@ "neo4j~neo4j-python-driver~pyproject.toml" ] }, - { - "index": 351, - "category": "ml", - "githuburl": "https://github.com/jina-ai/finetuner", - "featured": null, - "links": null, - "description": null, - "_repopath": "jina-ai/finetuner", - "_reponame": "finetuner", - "_stars": 754, - "_forks": 37, - "_watches": 21, - "_topics": [ - "fine-tuning", - "pretrained-models", - "few-shot-learning", - "negative-sampling", - "metric-learning", - "siamese-network", - "triplet-loss", - "transfer-learning", - "jina", - "neural-search", - "finetuning", - "similarity-learning" - ], - "_language": "Python", - "_homepage": "https://finetuner.jina.ai", - "_description": "finetuner: :dart: Task-oriented finetuning for better embeddings on neural search", - "_organization": "jina-ai", - "_updated_at": "2022-12-03T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2021-08-11T00:00:00.000Z", - "_age_weeks": 69, - "_stars_per_week": 10.93, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/jina-ai/finetuner/master/README.md", - "_readme_localurl": "jina-ai~finetuner~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/jina-ai/finetuner/master/setup.py", - "https://raw.githubusercontent.com/jina-ai/finetuner/master/pyproject.toml" - ], - "_requirements_localurls": [ - "jina-ai~finetuner~setup.py", - "jina-ai~finetuner~pyproject.toml" - ] - }, - { - "index": 334, - "category": "util", - "githuburl": "https://github.com/clarete/forbiddenfruit", - "featured": null, - "links": null, - "description": null, - "_repopath": "clarete/forbiddenfruit", - "_reponame": "forbiddenfruit", - "_stars": 748, - "_forks": 50, - "_watches": 28, - "_topics": [ - "python", - "monkey-patching" - ], - "_language": "Python", - "_homepage": "https://clarete.li/forbiddenfruit/", - "_description": "forbiddenfruit: Patch built-in python objects", - "_organization": "clarete", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-03-12T00:00:00.000Z", - "_created_at": "2013-04-03T00:00:00.000Z", - "_age_weeks": 505, - "_stars_per_week": 1.48, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/clarete/forbiddenfruit/master/README.md", - "_readme_localurl": "clarete~forbiddenfruit~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/clarete/forbiddenfruit/master/setup.py" - ], - "_requirements_localurls": [ - "clarete~forbiddenfruit~setup.py" - ] - }, { "index": 146, "category": "util", @@ -28274,8 +42484,8 @@ "description": null, "_repopath": "zenodo/zenodo", "_reponame": "zenodo", - "_stars": 747, - "_forks": 224, + "_stars": 752, + "_forks": 225, "_watches": 38, "_topics": [ "zenodo", @@ -28297,11 +42507,34 @@ "_homepage": "https://zenodo.org", "_description": "zenodo: Research. Shared.", "_organization": "zenodo", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2013-02-11T00:00:00.000Z", - "_age_weeks": 512, + "_age_weeks": 514, "_stars_per_week": 1.46, + "_pop_contributor_count": 65, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cern", + "protonmail", + "skribble" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.52, + "_pop_updated_issues_count": 66, + "_pop_closed_issues_count": 36, + "_pop_created_since_days": 120, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 42, + "_pop_recent_releases_adjusted_count": 42, + "_pop_issue_count": 66.0, + "_pop_comment_count": 44.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 150, + "_pop_score": 54.24, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/zenodo/zenodo/master/README.rst", "_readme_localurl": "zenodo~zenodo~README.rst", @@ -28327,7 +42560,7 @@ "description": null, "_repopath": "rasbt/watermark", "_reponame": "watermark", - "_stars": 747, + "_stars": 750, "_forks": 83, "_watches": 13, "_topics": [ @@ -28340,11 +42573,35 @@ "_homepage": null, "_description": "watermark: An IPython magic extension for printing date and time stamps, version numbers, and hardware information", "_organization": "rasbt", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-09-13T00:00:00.000Z", "_created_at": "2014-07-30T00:00:00.000Z", - "_age_weeks": 436, + "_age_weeks": 437, "_stars_per_week": 1.71, + "_pop_contributor_count": 17, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "brabantwater", + "capgeminiengineering", + "drivendata", + "lightning-ai,universityofwisconsin-madison" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.12, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 102, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 2.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 94, + "_pop_score": 38.82, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/rasbt/watermark/master/README.md", "_readme_localurl": "rasbt~watermark~README.md", @@ -28359,46 +42616,63 @@ ] }, { - "index": 634, - "category": "profiling", - "githuburl": "https://github.com/csurfer/pyheat", + "index": 334, + "category": "util", + "githuburl": "https://github.com/clarete/forbiddenfruit", "featured": null, "links": null, "description": null, - "_repopath": "csurfer/pyheat", - "_reponame": "pyheat", - "_stars": 734, - "_forks": 41, - "_watches": 13, + "_repopath": "clarete/forbiddenfruit", + "_reponame": "forbiddenfruit", + "_stars": 750, + "_forks": 50, + "_watches": 28, "_topics": [ - "profiling", "python", - "heatmap", - "matplotlib" + "monkey-patching" ], "_language": "Python", - "_homepage": "", - "_description": "pyheat: pprofile + matplotlib = Python program profiled as an awesome heatmap!", - "_organization": "csurfer", - "_updated_at": "2022-11-30T00:00:00.000Z", - "_last_commit_date": "2021-09-18T00:00:00.000Z", - "_created_at": "2017-02-04T00:00:00.000Z", - "_age_weeks": 304, - "_stars_per_week": 2.41, + "_homepage": "https://clarete.li/forbiddenfruit/", + "_description": "forbiddenfruit: Patch built-in python objects", + "_organization": "clarete", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2022-03-12T00:00:00.000Z", + "_created_at": "2013-04-03T00:00:00.000Z", + "_age_weeks": 506, + "_stars_per_week": 1.48, + "_pop_contributor_count": 15, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bitdeli", + "django,djangolondon" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 118, + "_pop_updated_since_days": 14, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 3.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 0, + "_pop_score": 21.92, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/csurfer/pyheat/master/README.md", - "_readme_localurl": "csurfer~pyheat~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/clarete/forbiddenfruit/master/README.md", + "_readme_localurl": "clarete~forbiddenfruit~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/csurfer/pyheat/master/requirements.txt", - "https://raw.githubusercontent.com/csurfer/pyheat/master/setup.py" + "https://raw.githubusercontent.com/clarete/forbiddenfruit/master/setup.py" ], "_requirements_localurls": [ - "csurfer~pyheat~requirements.txt", - "csurfer~pyheat~setup.py" + "clarete~forbiddenfruit~setup.py" ] }, { @@ -28410,7 +42684,7 @@ "description": null, "_repopath": "viblo/pymunk", "_reponame": "pymunk", - "_stars": 729, + "_stars": 733, "_forks": 179, "_watches": 21, "_topics": [ @@ -28427,11 +42701,34 @@ "_homepage": "http://www.pymunk.org", "_description": "Pymunk is a easy-to-use pythonic 2d physics library that can be used whenever you need 2d rigid body physics from Python", "_organization": "viblo", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-12-05T00:00:00.000Z", "_created_at": "2013-10-02T00:00:00.000Z", - "_age_weeks": 479, + "_age_weeks": 480, "_stars_per_week": 1.52, + "_pop_contributor_count": 17, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "blksail", + "google", + "skamrahlitsolutions" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.02, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 112, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 7.0, + "_pop_comment_count": 18.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 22, + "_pop_score": 43.47, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/viblo/pymunk/master/README.rst", "_readme_localurl": "viblo~pymunk~README.rst", @@ -28448,6 +42745,71 @@ "viblo~pymunk~pyproject.toml" ] }, + { + "index": 634, + "category": "profiling", + "githuburl": "https://github.com/csurfer/pyheat", + "featured": null, + "links": null, + "description": null, + "_repopath": "csurfer/pyheat", + "_reponame": "pyheat", + "_stars": 733, + "_forks": 41, + "_watches": 13, + "_topics": [ + "profiling", + "python", + "heatmap", + "matplotlib" + ], + "_language": "Python", + "_homepage": "", + "_description": "pyheat: pprofile + matplotlib = Python program profiled as an awesome heatmap!", + "_organization": "csurfer", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2021-09-18T00:00:00.000Z", + "_created_at": "2017-02-04T00:00:00.000Z", + "_age_weeks": 306, + "_stars_per_week": 2.39, + "_pop_contributor_count": 5, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "citrix", + "lyft" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 71, + "_pop_updated_since_days": 15, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 14.03, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/csurfer/pyheat/master/README.md", + "_readme_localurl": "csurfer~pyheat~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/csurfer/pyheat/master/requirements.txt", + "https://raw.githubusercontent.com/csurfer/pyheat/master/setup.py" + ], + "_requirements_localurls": [ + "csurfer~pyheat~requirements.txt", + "csurfer~pyheat~setup.py" + ] + }, { "index": 853, "category": "data", @@ -28457,7 +42819,7 @@ "description": null, "_repopath": "eliasdabbas/advertools", "_reponame": "advertools", - "_stars": 727, + "_stars": 732, "_forks": 158, "_watches": 33, "_topics": [ @@ -28486,11 +42848,34 @@ "_homepage": "https://advertools.readthedocs.io", "_description": "advertools - online marketing productivity and analysis tools", "_organization": "eliasdabbas", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-11-25T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2017-05-14T00:00:00.000Z", - "_age_weeks": 290, - "_stars_per_week": 2.5, + "_age_weeks": 292, + "_stars_per_week": 2.51, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "github", + "pyupio", + "themediasupermarket" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.17, + "_pop_updated_issues_count": 19, + "_pop_closed_issues_count": 16, + "_pop_created_since_days": 68, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 19.0, + "_pop_comment_count": 32.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 71, + "_pop_score": 44.28, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/eliasdabbas/advertools/master/README.rst", "_readme_localurl": "eliasdabbas~advertools~README.rst", @@ -28508,87 +42893,60 @@ ] }, { - "index": 900, - "category": "ml", - "githuburl": "https://github.com/shankarpandala/lazypredict", + "index": 828, + "category": "sim", + "githuburl": "https://github.com/farama-foundation/gymnasium", "featured": null, "links": null, "description": null, - "_repopath": "shankarpandala/lazypredict", - "_reponame": "lazypredict", - "_stars": 721, - "_forks": 101, - "_watches": 12, - "_topics": [ - "machine-learning", - "automl", - "regression", - "classification" - ], + "_repopath": "farama-foundation/gymnasium", + "_reponame": "Gymnasium", + "_stars": 725, + "_forks": 87, + "_watches": 11, + "_topics": [], "_language": "Python", - "_homepage": "", - "_description": "lazypredict: Lazy Predict help build a lot of basic models without much code and helps understand which models works better without any parameter tuning", - "_organization": "shankarpandala", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-09-28T00:00:00.000Z", - "_created_at": "2019-11-16T00:00:00.000Z", - "_age_weeks": 159, - "_stars_per_week": 4.52, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/shankarpandala/lazypredict/master/README.rst", - "_readme_localurl": "shankarpandala~lazypredict~README.rst", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/shankarpandala/lazypredict/master/requirements.txt", - "https://raw.githubusercontent.com/shankarpandala/lazypredict/master/setup.py" - ], - "_requirements_localurls": [ - "shankarpandala~lazypredict~requirements.txt", - "shankarpandala~lazypredict~setup.py" - ] - }, - { - "index": 891, - "category": "util", - "githuburl": "https://github.com/xl0/lovely-tensors", - "featured": null, - "links": null, - "description": null, - "_repopath": "xl0/lovely-tensors", - "_reponame": "lovely-tensors", - "_stars": 715, - "_forks": 9, - "_watches": 5, - "_topics": [ - "deep-learning", - "library", - "pytorch", - "statistics", - "visualization" - ], - "_language": "Jupyter Notebook", - "_homepage": "https://xl0.github.io/lovely-tensors", - "_description": "lovely-tensors: Tensors, ready for human consumption", - "_organization": "xl0", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2022-10-07T00:00:00.000Z", - "_age_weeks": 8, - "_stars_per_week": 82.05, + "_homepage": "https://gymnasium.farama.org", + "_description": "Gymnasium: A standard API for reinforcement learning and a diverse set of reference environments (formerly Gym)", + "_organization": "farama-foundation", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_created_at": "2022-09-08T00:00:00.000Z", + "_age_weeks": 14, + "_stars_per_week": 49.75, + "_pop_contributor_count": 395, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 8.46, + "_pop_updated_issues_count": 208, + "_pop_closed_issues_count": 170, + "_pop_created_since_days": 3, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 20, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 208.0, + "_pop_comment_count": 322.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 4, + "_pop_score": 40.96, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/xl0/lovely-tensors/master/README.md", - "_readme_localurl": "xl0~lovely-tensors~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/farama-foundation/gymnasium/master/README.md", + "_readme_localurl": "farama-foundation~gymnasium~README.md", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/xl0/lovely-tensors/master/setup.py" + "https://raw.githubusercontent.com/farama-foundation/gymnasium/master/setup.py", + "https://raw.githubusercontent.com/farama-foundation/gymnasium/master/pyproject.toml" ], "_requirements_localurls": [ - "xl0~lovely-tensors~setup.py" + "farama-foundation~gymnasium~setup.py", + "farama-foundation~gymnasium~pyproject.toml" ] }, { @@ -28600,8 +42958,8 @@ "description": null, "_repopath": "stitchfix/hamilton", "_reponame": "hamilton", - "_stars": 713, - "_forks": 35, + "_stars": 719, + "_forks": 36, "_watches": 21, "_topics": [ "python", @@ -28627,11 +42985,33 @@ "_homepage": "https://hamilton-docs.gitbook.io/docs/", "_description": "hamilton: A scalable general purpose micro-framework for defining dataflows. You can use it to build dataframes, numpy matrices, python objects, ML models, etc.", "_organization": "stitchfix", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2020-05-26T00:00:00.000Z", - "_age_weeks": 132, - "_stars_per_week": 5.4, + "_age_weeks": 133, + "_stars_per_week": 5.37, + "_pop_contributor_count": 14, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "spothero", + "stitchfix" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.1, + "_pop_updated_issues_count": 83, + "_pop_closed_issues_count": 41, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 83.0, + "_pop_comment_count": 122.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 4, + "_pop_score": 41.15, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/stitchfix/hamilton/master/README.md", "_readme_localurl": "stitchfix~hamilton~README.md", @@ -28648,39 +43028,6 @@ "stitchfix~hamilton~setup.py" ] }, - { - "index": 358, - "category": "data", - "githuburl": "https://github.com/hyperqueryhq/whale", - "featured": null, - "links": null, - "description": null, - "_repopath": "hyperqueryhq/whale", - "_reponame": "whale", - "_stars": 711, - "_forks": 39, - "_watches": 42, - "_topics": [ - "data-documentation", - "data-catalog", - "data-discovery" - ], - "_language": "Python", - "_homepage": "https://rsyi.gitbook.io/whale", - "_description": "whale: \ud83d\udc33 The stupidly simple CLI workspace for your data warehouse.", - "_organization": "hyperqueryhq", - "_updated_at": "2022-11-21T00:00:00.000Z", - "_last_commit_date": "2022-10-13T00:00:00.000Z", - "_created_at": "2020-05-27T00:00:00.000Z", - "_age_weeks": 132, - "_stars_per_week": 5.39, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/hyperqueryhq/whale/master/README.md", - "_readme_localurl": "hyperqueryhq~whale~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 621, "category": "testing", @@ -28690,7 +43037,7 @@ "description": null, "_repopath": "wolever/parameterized", "_reponame": "parameterized", - "_stars": 708, + "_stars": 713, "_forks": 94, "_watches": 18, "_topics": [], @@ -28698,11 +43045,32 @@ "_homepage": "", "_description": "Parameterized testing with any Python test framework", "_organization": "wolever", - "_updated_at": "2022-11-29T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2021-01-09T00:00:00.000Z", "_created_at": "2012-03-10T00:00:00.000Z", - "_age_weeks": 560, - "_stars_per_week": 1.26, + "_age_weeks": 562, + "_stars_per_week": 1.27, + "_pop_contributor_count": 24, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "sheertex" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 131, + "_pop_updated_since_days": 24, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 3.0, + "_pop_comment_count": 4.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 89, + "_pop_score": 30.44, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/wolever/parameterized/master/README.rst", "_readme_localurl": "wolever~parameterized~README.rst", @@ -28716,6 +43084,138 @@ "wolever~parameterized~setup.py" ] }, + { + "index": 559, + "category": "jupyter", + "githuburl": "https://github.com/vizzuhq/ipyvizzu", + "featured": null, + "links": null, + "description": null, + "_repopath": "vizzuhq/ipyvizzu", + "_reponame": "ipyvizzu", + "_stars": 711, + "_forks": 58, + "_watches": 16, + "_topics": [ + "jupyter", + "jupyter-notebook", + "python", + "plotting", + "graphs", + "data-visualization", + "graphing", + "ipython", + "chart", + "charts", + "dataviz", + "animation", + "storytelling", + "charting", + "vizzu" + ], + "_language": "Python", + "_homepage": "https://ipyvizzu.vizzuhq.com", + "_description": "ipyvizzu: Build animated charts in Jupyter Notebook and in many other environments with a simple Python syntax.", + "_organization": "vizzuhq", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2022-01-05T00:00:00.000Z", + "_age_weeks": 49, + "_stars_per_week": 14.3, + "_pop_contributor_count": 10, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "oneidentity(balabit)", + "vizzuhq" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 9.17, + "_pop_updated_issues_count": 22, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 12, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 18, + "_pop_recent_releases_estimated_tags": 18, + "_pop_recent_releases_adjusted_count": 18, + "_pop_issue_count": 22.0, + "_pop_comment_count": 16.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 11, + "_pop_score": 38.21, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/README.md", + "_readme_localurl": "vizzuhq~ipyvizzu~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/requirements.txt", + "https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/setup.py" + ], + "_requirements_localurls": [ + "vizzuhq~ipyvizzu~requirements.txt", + "vizzuhq~ipyvizzu~setup.py" + ] + }, + { + "index": 358, + "category": "data", + "githuburl": "https://github.com/hyperqueryhq/whale", + "featured": null, + "links": null, + "description": null, + "_repopath": "hyperqueryhq/whale", + "_reponame": "whale", + "_stars": 711, + "_forks": 40, + "_watches": 42, + "_topics": [ + "data-documentation", + "data-catalog", + "data-discovery" + ], + "_language": "Python", + "_homepage": "https://rsyi.gitbook.io/whale", + "_description": "whale: \ud83d\udc33 The stupidly simple CLI workspace for your data warehouse.", + "_organization": "hyperqueryhq", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-10-13T00:00:00.000Z", + "_created_at": "2020-05-27T00:00:00.000Z", + "_age_weeks": 133, + "_stars_per_week": 5.32, + "_pop_contributor_count": 17, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "dataframe", + "nttcommunications", + "shopify" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.17, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 6.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 29.16, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/hyperqueryhq/whale/master/README.md", + "_readme_localurl": "hyperqueryhq~whale~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 419, "category": "util", @@ -28725,7 +43225,7 @@ "description": null, "_repopath": "sethmmorton/natsort", "_reponame": "natsort", - "_stars": 706, + "_stars": 709, "_forks": 40, "_watches": 14, "_topics": [ @@ -28739,11 +43239,35 @@ "_homepage": "https://pypi.org/project/natsort/", "_description": "natsort: Simple yet flexible natural sorting in Python.", "_organization": "sethmmorton", - "_updated_at": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2022-09-01T00:00:00.000Z", "_created_at": "2012-05-03T00:00:00.000Z", - "_age_weeks": 552, + "_age_weeks": 554, "_stars_per_week": 1.28, + "_pop_contributor_count": 20, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "dapulse", + "nordsoftware", + "pioneervalleybooks", + "siasol" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.37, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 129, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 3.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 178, + "_pop_score": 41.81, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/sethmmorton/natsort/master/README.rst", "_readme_localurl": "sethmmorton~natsort~README.rst", @@ -28757,60 +43281,6 @@ "sethmmorton~natsort~setup.py" ] }, - { - "index": 559, - "category": "jupyter", - "githuburl": "https://github.com/vizzuhq/ipyvizzu", - "featured": null, - "links": null, - "description": null, - "_repopath": "vizzuhq/ipyvizzu", - "_reponame": "ipyvizzu", - "_stars": 706, - "_forks": 56, - "_watches": 14, - "_topics": [ - "jupyter", - "jupyter-notebook", - "python", - "plotting", - "graphs", - "data-visualization", - "graphing", - "ipython", - "chart", - "charts", - "dataviz", - "animation", - "storytelling", - "charting", - "vizzu" - ], - "_language": "Python", - "_homepage": "https://ipyvizzu.vizzuhq.com", - "_description": "ipyvizzu: Build animated charts in Jupyter Notebook and in many other environments with a simple Python syntax.", - "_organization": "vizzuhq", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2022-01-05T00:00:00.000Z", - "_age_weeks": 48, - "_stars_per_week": 14.71, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/README.md", - "_readme_localurl": "vizzuhq~ipyvizzu~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/requirements.txt", - "https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/setup.py" - ], - "_requirements_localurls": [ - "vizzuhq~ipyvizzu~requirements.txt", - "vizzuhq~ipyvizzu~setup.py" - ] - }, { "index": 23, "category": "math", @@ -28820,9 +43290,9 @@ "description": null, "_repopath": "fredrik-johansson/mpmath", "_reponame": "mpmath", - "_stars": 702, + "_stars": 707, "_forks": 148, - "_watches": 39, + "_watches": 40, "_topics": [ "python", "arbitrary-precision", @@ -28840,11 +43310,33 @@ "_homepage": "http://mpmath.org", "_description": "mpmath: Python library for arbitrary-precision floating-point arithmetic", "_organization": "fredrik-johansson", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-11-07T00:00:00.000Z", "_created_at": "2011-12-07T00:00:00.000Z", - "_age_weeks": 574, - "_stars_per_week": 1.22, + "_age_weeks": 575, + "_stars_per_week": 1.23, + "_pop_contributor_count": 47, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "inria&institutdemath\u00e9matiquesdebordeaux", + "quansight" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.27, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 134, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 9.0, + "_pop_comment_count": 7.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 75, + "_pop_score": 40.6, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/fredrik-johansson/mpmath/master/README.rst", "_readme_localurl": "fredrik-johansson~mpmath~README.rst", @@ -28867,8 +43359,8 @@ "description": null, "_repopath": "matplotlib/basemap", "_reponame": "basemap", - "_stars": 701, - "_forks": 395, + "_stars": 703, + "_forks": 396, "_watches": 60, "_topics": [ "gis", @@ -28879,11 +43371,33 @@ "_homepage": "", "_description": "basemap: Plot on map projections (with coastlines and political boundaries) using matplotlib", "_organization": "matplotlib", - "_updated_at": "2022-11-23T00:00:00.000Z", + "_updated_at": "2022-12-12T00:00:00.000Z", "_last_commit_date": "2022-11-29T00:00:00.000Z", "_created_at": "2011-02-19T00:00:00.000Z", - "_age_weeks": 615, + "_age_weeks": 617, "_stars_per_week": 1.14, + "_pop_contributor_count": 69, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "eccc", + "germanaerospacecenter(dlr)" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.77, + "_pop_updated_issues_count": 24, + "_pop_closed_issues_count": 19, + "_pop_created_since_days": 144, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 24.0, + "_pop_comment_count": 40.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 606, + "_pop_score": 53.56, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/matplotlib/basemap/master/README.md", "_readme_localurl": "matplotlib~basemap~README.md", @@ -28900,9 +43414,9 @@ "description": null, "_repopath": "pythonspeed/filprofiler", "_reponame": "filprofiler", - "_stars": 690, - "_forks": 20, - "_watches": 8, + "_stars": 700, + "_forks": 21, + "_watches": 9, "_topics": [ "python", "memory-profiler", @@ -28918,11 +43432,34 @@ "_homepage": "https://pythonspeed.com/products/filmemoryprofiler/", "_description": "filprofiler: A Python memory profiler for data processing and scientific computing applications", "_organization": "pythonspeed", - "_updated_at": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-12-05T00:00:00.000Z", "_created_at": "2020-06-18T00:00:00.000Z", - "_age_weeks": 128, - "_stars_per_week": 5.35, + "_age_weeks": 130, + "_stars_per_week": 5.36, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "algolia", + "hyphenatedenterprises", + "whalesalad" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.08, + "_pop_updated_issues_count": 61, + "_pop_closed_issues_count": 46, + "_pop_created_since_days": 30, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 25, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 61.0, + "_pop_comment_count": 58.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 6, + "_pop_score": 39.77, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pythonspeed/filprofiler/master/README.md", "_readme_localurl": "pythonspeed~filprofiler~README.md", @@ -28948,8 +43485,8 @@ "description": null, "_repopath": "trailofbits/pip-audit", "_reponame": "pip-audit", - "_stars": 686, - "_forks": 39, + "_stars": 696, + "_forks": 44, "_watches": 19, "_topics": [ "security", @@ -28962,11 +43499,34 @@ "_homepage": "https://pypi.org/project/pip-audit/", "_description": "pip-audit: Audits Python environments and dependency trees for known vulnerabilities", "_organization": "trailofbits", - "_updated_at": "2022-12-03T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2021-09-02T00:00:00.000Z", - "_age_weeks": 65, - "_stars_per_week": 10.42, + "_age_weeks": 67, + "_stars_per_week": 10.3, + "_pop_contributor_count": 18, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "digitalr00ts", + "google", + "trailofbits" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.63, + "_pop_updated_issues_count": 77, + "_pop_closed_issues_count": 64, + "_pop_created_since_days": 16, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 22, + "_pop_recent_releases_estimated_tags": 30, + "_pop_recent_releases_adjusted_count": 22, + "_pop_issue_count": 77.0, + "_pop_comment_count": 183.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 95, + "_pop_score": 49.36, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/trailofbits/pip-audit/master/README.md", "_readme_localurl": "trailofbits~pip-audit~README.md", @@ -28980,51 +43540,6 @@ "trailofbits~pip-audit~pyproject.toml" ] }, - { - "index": 168, - "category": "gis", - "githuburl": "https://github.com/openeventdata/mordecai", - "featured": null, - "links": null, - "description": null, - "_repopath": "openeventdata/mordecai", - "_reponame": "mordecai", - "_stars": 685, - "_forks": 94, - "_watches": 35, - "_topics": [ - "geoparsing", - "geonames", - "nlp", - "geocoding", - "spacy", - "toponym-resolution" - ], - "_language": "Python", - "_homepage": "", - "_description": "mordecai: Full text geoparsing as a Python library", - "_organization": "openeventdata", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2021-02-01T00:00:00.000Z", - "_created_at": "2016-06-23T00:00:00.000Z", - "_age_weeks": 336, - "_stars_per_week": 2.03, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/openeventdata/mordecai/master/README.md", - "_readme_localurl": "openeventdata~mordecai~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/openeventdata/mordecai/master/requirements.txt", - "https://raw.githubusercontent.com/openeventdata/mordecai/master/setup.py" - ], - "_requirements_localurls": [ - "openeventdata~mordecai~requirements.txt", - "openeventdata~mordecai~setup.py" - ] - }, { "index": 477, "category": "pandas", @@ -29034,9 +43549,9 @@ "description": null, "_repopath": "holoviz/hvplot", "_reponame": "hvplot", - "_stars": 682, - "_forks": 77, - "_watches": 23, + "_stars": 688, + "_forks": 78, + "_watches": 24, "_topics": [ "holoviz", "holoviews", @@ -29047,11 +43562,33 @@ "_homepage": "https://hvplot.holoviz.org", "_description": "hvplot: A high-level plotting API for pandas, dask, xarray, and networkx built on HoloViews", "_organization": "holoviz", - "_updated_at": "2022-12-04T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2018-03-19T00:00:00.000Z", - "_age_weeks": 246, + "_age_weeks": 248, "_stars_per_week": 2.77, + "_pop_contributor_count": 39, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "anaconda", + "azavea" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.21, + "_pop_updated_issues_count": 269, + "_pop_closed_issues_count": 74, + "_pop_created_since_days": 58, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 22, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 269.0, + "_pop_comment_count": 239.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 10, + "_pop_score": 43.91, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/holoviz/hvplot/master/README.md", "_readme_localurl": "holoviz~hvplot~README.md", @@ -29077,19 +43614,40 @@ "description": null, "_repopath": "tensorflow/data-validation", "_reponame": "data-validation", - "_stars": 682, - "_forks": 142, - "_watches": 47, + "_stars": 686, + "_forks": 144, + "_watches": 48, "_topics": [], "_language": "Python", "_homepage": "", "_description": "data-validation: Library for exploring and validating machine learning data", "_organization": "tensorflow", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2018-07-02T00:00:00.000Z", - "_age_weeks": 231, - "_stars_per_week": 2.95, + "_age_weeks": 233, + "_stars_per_week": 2.94, + "_pop_contributor_count": 25, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.98, + "_pop_updated_issues_count": 19, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 54, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 19.0, + "_pop_comment_count": 26.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 572, + "_pop_score": 47.29, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tensorflow/data-validation/master/README.md", "_readme_localurl": "tensorflow~data-validation~README.md", @@ -29106,6 +43664,75 @@ "tensorflow~data-validation~pyproject.toml" ] }, + { + "index": 168, + "category": "gis", + "githuburl": "https://github.com/openeventdata/mordecai", + "featured": null, + "links": null, + "description": null, + "_repopath": "openeventdata/mordecai", + "_reponame": "mordecai", + "_stars": 684, + "_forks": 94, + "_watches": 35, + "_topics": [ + "geoparsing", + "geonames", + "nlp", + "geocoding", + "spacy", + "toponym-resolution" + ], + "_language": "Python", + "_homepage": "", + "_description": "mordecai: Full text geoparsing as a Python library", + "_organization": "openeventdata", + "_updated_at": "2022-12-08T00:00:00.000Z", + "_last_commit_date": "2021-02-01T00:00:00.000Z", + "_created_at": "2016-06-23T00:00:00.000Z", + "_age_weeks": 338, + "_stars_per_week": 2.02, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "github", + "maxar", + "msupoliticalscience", + "phillymedia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 79, + "_pop_updated_since_days": 23, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 2.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 4, + "_pop_score": 24.05, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/openeventdata/mordecai/master/README.md", + "_readme_localurl": "openeventdata~mordecai~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/openeventdata/mordecai/master/requirements.txt", + "https://raw.githubusercontent.com/openeventdata/mordecai/master/setup.py" + ], + "_requirements_localurls": [ + "openeventdata~mordecai~requirements.txt", + "openeventdata~mordecai~setup.py" + ] + }, { "index": 572, "category": "gis", @@ -29126,8 +43753,32 @@ "_updated_at": "2022-12-07T00:00:00.000Z", "_last_commit_date": "2018-07-30T00:00:00.000Z", "_created_at": "2014-08-01T00:00:00.000Z", - "_age_weeks": 435, + "_age_weeks": 437, "_stars_per_week": 1.56, + "_pop_contributor_count": 24, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cloud-gov(work)+personalprojects;", + "developmentseed", + "element84", + "ledgy" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 102, + "_pop_updated_since_days": 53, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 11, + "_pop_score": 24.79, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/developmentseed/landsat-util/master/README.rst", "_readme_localurl": "developmentseed~landsat-util~README.rst", @@ -29153,7 +43804,7 @@ "description": null, "_repopath": "klen/py-frameworks-bench", "_reponame": "py-frameworks-bench", - "_stars": 670, + "_stars": 673, "_forks": 78, "_watches": 28, "_topics": [ @@ -29164,11 +43815,33 @@ "_homepage": "https://klen.github.io/py-frameworks-bench/", "_description": "py-frameworks-bench: Another benchmark for some python frameworks", "_organization": "klen", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-11T00:00:00.000Z", "_last_commit_date": "2022-03-14T00:00:00.000Z", "_created_at": "2015-04-30T00:00:00.000Z", - "_age_weeks": 396, + "_age_weeks": 398, "_stars_per_week": 1.69, + "_pop_contributor_count": 10, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "get-post-technology", + "home" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.44, + "_pop_updated_issues_count": 17, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 93, + "_pop_updated_since_days": 9, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 17.0, + "_pop_comment_count": 9.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 25.98, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/klen/py-frameworks-bench/master/README.md", "_readme_localurl": "klen~py-frameworks-bench~README.md", @@ -29185,7 +43858,7 @@ "description": null, "_repopath": "explosion/spacy-stanza", "_reponame": "spacy-stanza", - "_stars": 661, + "_stars": 662, "_forks": 50, "_watches": 25, "_topics": [ @@ -29205,11 +43878,34 @@ "_homepage": "", "_description": "spacy-stanza: \ud83d\udca5 Use the latest Stanza (StanfordNLP) research models directly in spaCy", "_organization": "explosion", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-09T00:00:00.000Z", "_last_commit_date": "2022-05-27T00:00:00.000Z", "_created_at": "2019-01-31T00:00:00.000Z", - "_age_weeks": 200, - "_stars_per_week": 3.29, + "_age_weeks": 202, + "_stars_per_week": 3.27, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "founderexplosion", + "graphext", + "lt3kuleuven" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.06, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 47, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 18.28, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/explosion/spacy-stanza/master/README.md", "_readme_localurl": "explosion~spacy-stanza~README.md", @@ -29235,9 +43931,9 @@ "description": null, "_repopath": "sentinel-hub/sentinelhub-py", "_reponame": "sentinelhub-py", - "_stars": 654, - "_forks": 211, - "_watches": 49, + "_stars": 655, + "_forks": 213, + "_watches": 48, "_topics": [ "python-library", "sentinel-hub", @@ -29249,11 +43945,34 @@ "_homepage": "http://sentinelhub-py.readthedocs.io/en/latest/", "_description": "sentinelhub-py: Download and process satellite imagery in Python using Sentinel Hub services.", "_organization": "sentinel-hub", - "_updated_at": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-11T00:00:00.000Z", "_last_commit_date": "2022-10-06T00:00:00.000Z", "_created_at": "2017-05-17T00:00:00.000Z", - "_age_weeks": 290, - "_stars_per_week": 2.26, + "_age_weeks": 291, + "_stars_per_week": 2.25, + "_pop_contributor_count": 40, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "eoresearchteamsinergise", + "google", + "sinergise" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.83, + "_pop_updated_issues_count": 29, + "_pop_closed_issues_count": 27, + "_pop_created_since_days": 68, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 29.0, + "_pop_comment_count": 18.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 335, + "_pop_score": 49.09, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/sentinel-hub/sentinelhub-py/master/README.md", "_readme_localurl": "sentinel-hub~sentinelhub-py~README.md", @@ -29282,19 +44001,40 @@ "description": null, "_repopath": "automl/tabpfn", "_reponame": "TabPFN", - "_stars": 644, + "_stars": 654, "_forks": 44, - "_watches": 16, + "_watches": 15, "_topics": [], "_language": "Python", "_homepage": "https://arxiv.org/abs/2207.01848", "_description": "TabPFN: Official implementation of the TabPFN and the tabpfn package.", "_organization": "automl", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-17T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-09T00:00:00.000Z", "_created_at": "2022-07-01T00:00:00.000Z", - "_age_weeks": 22, - "_stars_per_week": 28.35, + "_age_weeks": 24, + "_stars_per_week": 26.77, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "automl.org" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.31, + "_pop_updated_issues_count": 23, + "_pop_closed_issues_count": 22, + "_pop_created_since_days": 6, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 23.0, + "_pop_comment_count": 45.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 24.61, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/automl/tabpfn/master/README.md", "_readme_localurl": "automl~tabpfn~README.md", @@ -29315,47 +44055,77 @@ ] }, { - "index": 882, - "category": "time-series", - "githuburl": "https://github.com/winedarksea/autots", + "index": 620, + "category": "jupyter", + "githuburl": "https://github.com/nbqa-dev/nbqa", "featured": null, "links": null, "description": null, - "_repopath": "winedarksea/autots", - "_reponame": "AutoTS", - "_stars": 638, - "_forks": 58, - "_watches": 13, + "_repopath": "nbqa-dev/nbqa", + "_reponame": "nbQA", + "_stars": 646, + "_forks": 36, + "_watches": 7, "_topics": [ - "time-series", - "machine-learning", - "automl", - "autots", - "forecasting", - "deep-learning", - "preprocessing", - "feature-engineering" + "python", + "jupyter-notebook", + "pre-commit", + "codequality", + "lint", + "isort", + "black", + "flake8", + "doctest", + "pyupgrade", + "pylint", + "mypy", + "yapf", + "pre-commit-hook" ], "_language": "Python", - "_homepage": "", - "_description": "AutoTS: Automated Time Series Forecasting", - "_organization": "winedarksea", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-15T00:00:00.000Z", - "_created_at": "2019-11-26T00:00:00.000Z", - "_age_weeks": 158, - "_stars_per_week": 4.03, + "_homepage": "https://nbqa.readthedocs.io/en/latest/index.html", + "_description": "nbQA: Run isort, pyupgrade, mypy, pylint, flake8, and more on Jupyter Notebooks", + "_organization": "nbqa-dev", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2022-12-11T00:00:00.000Z", + "_created_at": "2020-07-11T00:00:00.000Z", + "_age_weeks": 127, + "_stars_per_week": 5.08, + "_pop_contributor_count": 22, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "quansight" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.19, + "_pop_updated_issues_count": 36, + "_pop_closed_issues_count": 31, + "_pop_created_since_days": 30, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 33, + "_pop_recent_releases_adjusted_count": 33, + "_pop_issue_count": 36.0, + "_pop_comment_count": 56.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 674, + "_pop_score": 48.33, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/winedarksea/autots/master/README.md", - "_readme_localurl": "winedarksea~autots~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nbqa-dev/nbqa/master/README.md", + "_readme_localurl": "nbqa-dev~nbqa~README.md", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/winedarksea/autots/master/setup.py" + "https://raw.githubusercontent.com/nbqa-dev/nbqa/master/setup.py", + "https://raw.githubusercontent.com/nbqa-dev/nbqa/master/pyproject.toml" ], "_requirements_localurls": [ - "winedarksea~autots~setup.py" + "nbqa-dev~nbqa~setup.py", + "nbqa-dev~nbqa~pyproject.toml" ] }, { @@ -29367,7 +44137,7 @@ "description": null, "_repopath": "makepath/xarray-spatial", "_reponame": "xarray-spatial", - "_stars": 638, + "_stars": 645, "_forks": 73, "_watches": 25, "_topics": [ @@ -29382,11 +44152,33 @@ "_homepage": "https://xarray-spatial.org", "_description": "xarray-spatial: Raster-based Spatial Analytics for Python", "_organization": "makepath", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-06-22T00:00:00.000Z", "_created_at": "2020-02-08T00:00:00.000Z", - "_age_weeks": 147, + "_age_weeks": 149, "_stars_per_week": 4.32, + "_pop_contributor_count": 28, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "anaconda", + "makepath" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.52, + "_pop_updated_issues_count": 82, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 35, + "_pop_updated_since_days": 6, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 82.0, + "_pop_comment_count": 11.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.1, + "_pop_dependents_count": 12, + "_pop_score": 33.41, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/makepath/xarray-spatial/master/README.md", "_readme_localurl": "makepath~xarray-spatial~README.md", @@ -29406,6 +44198,69 @@ "makepath~xarray-spatial~pyproject.toml" ] }, + { + "index": 882, + "category": "time-series", + "githuburl": "https://github.com/winedarksea/autots", + "featured": null, + "links": null, + "description": null, + "_repopath": "winedarksea/autots", + "_reponame": "AutoTS", + "_stars": 643, + "_forks": 60, + "_watches": 13, + "_topics": [ + "time-series", + "machine-learning", + "automl", + "autots", + "forecasting", + "deep-learning", + "preprocessing", + "feature-engineering" + ], + "_language": "Python", + "_homepage": "", + "_description": "AutoTS: Automated Time Series Forecasting", + "_organization": "winedarksea", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", + "_created_at": "2019-11-26T00:00:00.000Z", + "_age_weeks": 159, + "_stars_per_week": 4.02, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.35, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 37, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 5.0, + "_pop_comment_count": 14.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 5, + "_pop_score": 28.04, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/winedarksea/autots/master/README.md", + "_readme_localurl": "winedarksea~autots~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/winedarksea/autots/master/setup.py" + ], + "_requirements_localurls": [ + "winedarksea~autots~setup.py" + ] + }, { "index": 475, "category": "viz", @@ -29415,7 +44270,7 @@ "description": null, "_repopath": "holoviz/holoviz", "_reponame": "holoviz", - "_stars": 635, + "_stars": 636, "_forks": 114, "_watches": 35, "_topics": [ @@ -29431,11 +44286,33 @@ "_homepage": "https://holoviz.org/", "_description": "holoviz: High-level tools to simplify visualization in Python.", "_organization": "holoviz", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-12-07T00:00:00.000Z", "_created_at": "2017-09-22T00:00:00.000Z", - "_age_weeks": 271, - "_stars_per_week": 2.34, + "_age_weeks": 273, + "_stars_per_week": 2.33, + "_pop_contributor_count": 21, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "anaconda", + "azavea" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.46, + "_pop_updated_issues_count": 18, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 64, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 18.0, + "_pop_comment_count": 54.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 2, + "_pop_score": 40.93, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/holoviz/holoviz/master/README.md", "_readme_localurl": "holoviz~holoviz~README.md", @@ -29453,98 +44330,65 @@ ] }, { - "index": 620, - "category": "jupyter", - "githuburl": "https://github.com/nbqa-dev/nbqa", + "index": 741, + "category": "data", + "githuburl": "https://github.com/koaning/human-learn", "featured": null, "links": null, "description": null, - "_repopath": "nbqa-dev/nbqa", - "_reponame": "nbQA", - "_stars": 634, - "_forks": 36, - "_watches": 6, + "_repopath": "koaning/human-learn", + "_reponame": "human-learn", + "_stars": 635, + "_forks": 51, + "_watches": 13, "_topics": [ - "python", - "jupyter-notebook", - "pre-commit", - "codequality", - "lint", - "isort", - "black", - "flake8", - "doctest", - "pyupgrade", - "pylint", - "mypy", - "yapf", - "pre-commit-hook" + "scikit-learn", + "machine-learning", + "benchmark" ], - "_language": "Python", - "_homepage": "https://nbqa.readthedocs.io/en/latest/index.html", - "_description": "nbQA: Run isort, pyupgrade, mypy, pylint, flake8, and more on Jupyter Notebooks", - "_organization": "nbqa-dev", - "_updated_at": "2022-12-04T00:00:00.000Z", - "_last_commit_date": "2022-11-21T00:00:00.000Z", + "_language": "Jupyter Notebook", + "_homepage": "https://koaning.github.io/human-learn/", + "_description": "human-learn: Natural Intelligence is still a pretty good idea.", + "_organization": "koaning", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2021-10-05T00:00:00.000Z", "_created_at": "2020-07-11T00:00:00.000Z", - "_age_weeks": 125, - "_stars_per_week": 5.05, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nbqa-dev/nbqa/master/README.md", - "_readme_localurl": "nbqa-dev~nbqa~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/nbqa-dev/nbqa/master/setup.py", - "https://raw.githubusercontent.com/nbqa-dev/nbqa/master/pyproject.toml" - ], - "_requirements_localurls": [ - "nbqa-dev~nbqa~setup.py", - "nbqa-dev~nbqa~pyproject.toml" - ] - }, - { - "index": 637, - "category": "util", - "githuburl": "https://github.com/samuelcolvin/python-devtools", - "featured": null, - "links": null, - "description": null, - "_repopath": "samuelcolvin/python-devtools", - "_reponame": "python-devtools", - "_stars": 627, - "_forks": 31, - "_watches": 8, - "_topics": [ - "python-devtools", - "python", - "devtools" - ], - "_language": "Python", - "_homepage": "https://python-devtools.helpmanual.io/", - "_description": "python-devtools: Dev tools for python", - "_organization": "samuelcolvin", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-28T00:00:00.000Z", - "_created_at": "2017-08-20T00:00:00.000Z", - "_age_weeks": 276, - "_stars_per_week": 2.27, + "_age_weeks": 127, + "_stars_per_week": 4.99, + "_pop_contributor_count": 5, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "explosion", + "floryn", + "nttdatabusinesssolutions" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 30, + "_pop_updated_since_days": 15, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 13.37, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/samuelcolvin/python-devtools/master/README.md", - "_readme_localurl": "samuelcolvin~python-devtools~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/koaning/human-learn/master/README.md", + "_readme_localurl": "koaning~human-learn~README.md", "_requirements_filenames": [ - "requirements.txt", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/samuelcolvin/python-devtools/master/requirements.txt", - "https://raw.githubusercontent.com/samuelcolvin/python-devtools/master/pyproject.toml" + "https://raw.githubusercontent.com/koaning/human-learn/master/setup.py" ], "_requirements_localurls": [ - "samuelcolvin~python-devtools~requirements.txt", - "samuelcolvin~python-devtools~pyproject.toml" + "koaning~human-learn~setup.py" ] }, { @@ -29556,8 +44400,8 @@ "description": null, "_repopath": "scikit-hep/awkward-1.0", "_reponame": "awkward", - "_stars": 625, - "_forks": 63, + "_stars": 632, + "_forks": 64, "_watches": 17, "_topics": [ "json", @@ -29577,11 +44421,33 @@ "_homepage": "https://awkward-array.org", "_description": "awkward: Manipulate JSON-like data with NumPy-like idioms.", "_organization": "scikit-hep", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2019-08-14T00:00:00.000Z", - "_age_weeks": 173, - "_stars_per_week": 3.61, + "_age_weeks": 174, + "_stars_per_week": 3.62, + "_pop_contributor_count": 35, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "princeton,iris-hep,pyhep,scikit-hep", + "purdueuniversity" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 10.04, + "_pop_updated_issues_count": 362, + "_pop_closed_issues_count": 309, + "_pop_created_since_days": 41, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 42, + "_pop_recent_releases_estimated_tags": 61, + "_pop_recent_releases_adjusted_count": 42, + "_pop_issue_count": 362.0, + "_pop_comment_count": 923.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 26, + "_pop_score": 53.69, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/scikit-hep/awkward-1.0/master/README.md", "_readme_localurl": "scikit-hep~awkward-1.0~README.md", @@ -29595,6 +44461,70 @@ "scikit-hep~awkward-1.0~pyproject.toml" ] }, + { + "index": 637, + "category": "util", + "githuburl": "https://github.com/samuelcolvin/python-devtools", + "featured": null, + "links": null, + "description": null, + "_repopath": "samuelcolvin/python-devtools", + "_reponame": "python-devtools", + "_stars": 631, + "_forks": 31, + "_watches": 8, + "_topics": [ + "python-devtools", + "python", + "devtools" + ], + "_language": "Python", + "_homepage": "https://python-devtools.helpmanual.io/", + "_description": "python-devtools: Dev tools for python", + "_organization": "samuelcolvin", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2022-11-28T00:00:00.000Z", + "_created_at": "2017-08-20T00:00:00.000Z", + "_age_weeks": 278, + "_stars_per_week": 2.27, + "_pop_contributor_count": 10, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "pydantic", + "pyupio" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.29, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 65, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 10.0, + "_pop_comment_count": 20.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 85, + "_pop_score": 38.4, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/samuelcolvin/python-devtools/master/README.md", + "_readme_localurl": "samuelcolvin~python-devtools~README.md", + "_requirements_filenames": [ + "requirements.txt", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/samuelcolvin/python-devtools/master/requirements.txt", + "https://raw.githubusercontent.com/samuelcolvin/python-devtools/master/pyproject.toml" + ], + "_requirements_localurls": [ + "samuelcolvin~python-devtools~requirements.txt", + "samuelcolvin~python-devtools~pyproject.toml" + ] + }, { "index": 640, "category": "data", @@ -29604,7 +44534,7 @@ "description": null, "_repopath": "dask/fastparquet", "_reponame": "fastparquet", - "_stars": 623, + "_stars": 624, "_forks": 161, "_watches": 18, "_topics": [ @@ -29614,11 +44544,35 @@ "_homepage": null, "_description": "fastparquet: python implementation of the parquet columnar file format.", "_organization": "dask", - "_updated_at": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2022-12-05T00:00:00.000Z", "_created_at": "2015-11-06T00:00:00.000Z", - "_age_weeks": 369, - "_stars_per_week": 1.69, + "_age_weeks": 371, + "_stars_per_week": 1.68, + "_pop_contributor_count": 86, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "anaconda", + "coiled", + "confluentinc", + "steminc" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.06, + "_pop_updated_issues_count": 31, + "_pop_closed_issues_count": 25, + "_pop_created_since_days": 87, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 31.0, + "_pop_comment_count": 104.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.4, + "_pop_dependents_count": 75, + "_pop_score": 54.34, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/dask/fastparquet/master/README.rst", "_readme_localurl": "dask~fastparquet~README.rst", @@ -29666,8 +44620,30 @@ "_updated_at": "2022-10-28T00:00:00.000Z", "_last_commit_date": "2022-08-12T00:00:00.000Z", "_created_at": "2015-02-03T00:00:00.000Z", - "_age_weeks": 409, - "_stars_per_week": 1.52, + "_age_weeks": 410, + "_stars_per_week": 1.51, + "_pop_contributor_count": 13, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "faceapp", + "home" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.15, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 96, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 42, + "_pop_recent_releases_adjusted_count": 42, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 14, + "_pop_score": 30.93, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/klen/muffin/master/README.rst", "_readme_localurl": "klen~muffin~README.rst", @@ -29690,8 +44666,8 @@ "description": null, "_repopath": "fsspec/s3fs", "_reponame": "s3fs", - "_stars": 615, - "_forks": 207, + "_stars": 621, + "_forks": 208, "_watches": 21, "_topics": [ "hacktoberfest" @@ -29700,11 +44676,36 @@ "_homepage": "http://s3fs.readthedocs.io/en/latest/", "_description": "s3fs: S3 Filesystem ", "_organization": "fsspec", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2016-03-16T00:00:00.000Z", - "_age_weeks": 351, - "_stars_per_week": 1.75, + "_age_weeks": 352, + "_stars_per_week": 1.76, + "_pop_contributor_count": 108, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "anaconda", + "coiled", + "fal-ai", + "microsoft", + "voltrondata" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.88, + "_pop_updated_issues_count": 30, + "_pop_closed_issues_count": 17, + "_pop_created_since_days": 82, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 30.0, + "_pop_comment_count": 77.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 58, + "_pop_score": 54.7, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/fsspec/s3fs/master/README.rst", "_readme_localurl": "fsspec~s3fs~README.rst", @@ -29721,45 +44722,6 @@ "fsspec~s3fs~setup.py" ] }, - { - "index": 741, - "category": "data", - "githuburl": "https://github.com/koaning/human-learn", - "featured": null, - "links": null, - "description": null, - "_repopath": "koaning/human-learn", - "_reponame": "human-learn", - "_stars": 612, - "_forks": 51, - "_watches": 13, - "_topics": [ - "scikit-learn", - "machine-learning", - "benchmark" - ], - "_language": "Jupyter Notebook", - "_homepage": "https://koaning.github.io/human-learn/", - "_description": "human-learn: Natural Intelligence is still a pretty good idea.", - "_organization": "koaning", - "_updated_at": "2022-12-02T00:00:00.000Z", - "_last_commit_date": "2021-10-05T00:00:00.000Z", - "_created_at": "2020-07-11T00:00:00.000Z", - "_age_weeks": 125, - "_stars_per_week": 4.87, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/koaning/human-learn/master/README.md", - "_readme_localurl": "koaning~human-learn~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/koaning/human-learn/master/setup.py" - ], - "_requirements_localurls": [ - "koaning~human-learn~setup.py" - ] - }, { "index": 760, "category": "study", @@ -29769,8 +44731,8 @@ "description": null, "_repopath": "jackhidary/quantumcomputingbook", "_reponame": "quantumcomputingbook", - "_stars": 611, - "_forks": 186, + "_stars": 614, + "_forks": 187, "_watches": 54, "_topics": [ "quantum", @@ -29789,11 +44751,32 @@ "_homepage": "", "_description": "quantumcomputingbook: Companion site for the textbook Quantum Computing: An Applied Approach", "_organization": "jackhidary", - "_updated_at": "2022-11-23T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2021-10-14T00:00:00.000Z", "_created_at": "2019-02-28T00:00:00.000Z", - "_age_weeks": 196, - "_stars_per_week": 3.1, + "_age_weeks": 198, + "_stars_per_week": 3.09, + "_pop_contributor_count": 8, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 46, + "_pop_updated_since_days": 14, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 6, + "_pop_score": 21.38, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jackhidary/quantumcomputingbook/master/README.md", "_readme_localurl": "jackhidary~quantumcomputingbook~README.md", @@ -29810,9 +44793,9 @@ "description": null, "_repopath": "explosion/spacy-streamlit", "_reponame": "spacy-streamlit", - "_stars": 605, + "_stars": 613, "_forks": 102, - "_watches": 17, + "_watches": 18, "_topics": [ "spacy", "nlp", @@ -29833,11 +44816,33 @@ "_homepage": "https://share.streamlit.io/ines/spacy-streamlit-demo/master/app.py", "_description": "spacy-streamlit: \ud83d\udc51 spaCy building blocks and visualizers for Streamlit apps", "_organization": "explosion", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-08-23T00:00:00.000Z", "_created_at": "2020-06-23T00:00:00.000Z", - "_age_weeks": 128, + "_age_weeks": 129, "_stars_per_week": 4.72, + "_pop_contributor_count": 12, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "explosion", + "founderexplosion" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.56, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 30, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 1.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 23.09, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/explosion/spacy-streamlit/master/README.md", "_readme_localurl": "explosion~spacy-streamlit~README.md", @@ -29863,8 +44868,8 @@ "description": null, "_repopath": "idanya/algo-trader", "_reponame": "algo-trader", - "_stars": 604, - "_forks": 55, + "_stars": 610, + "_forks": 57, "_watches": 21, "_topics": [ "algorithmic-trading", @@ -29879,11 +44884,33 @@ "_homepage": "", "_description": "algo-trader: Trading bot with support for realtime trading, backtesting, custom strategies and much more.", "_organization": "idanya", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2021-09-14T00:00:00.000Z", - "_age_weeks": 64, - "_stars_per_week": 9.42, + "_age_weeks": 65, + "_stars_per_week": 9.26, + "_pop_contributor_count": 4, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "fireblocks", + "scott'sdevelopment" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.5, + "_pop_updated_issues_count": 21, + "_pop_closed_issues_count": 17, + "_pop_created_since_days": 15, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 21.0, + "_pop_comment_count": 45.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 0, + "_pop_score": 26.26, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/idanya/algo-trader/master/README.md", "_readme_localurl": "idanya~algo-trader~README.md", @@ -29906,8 +44933,8 @@ "description": null, "_repopath": "uber/h3-py", "_reponame": "h3-py", - "_stars": 593, - "_forks": 112, + "_stars": 601, + "_forks": 113, "_watches": 34, "_topics": [ "uber", @@ -29922,11 +44949,34 @@ "_homepage": "https://uber.github.io/h3-py", "_description": "h3-py: Python bindings for H3, a hierarchical hexagonal geospatial indexing system", "_organization": "uber", - "_updated_at": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-24T00:00:00.000Z", "_created_at": "2018-06-12T00:00:00.000Z", - "_age_weeks": 234, - "_stars_per_week": 2.53, + "_age_weeks": 235, + "_stars_per_week": 2.55, + "_pop_contributor_count": 16, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "alantech", + "softwareengineer,uber", + "unfoldedinc" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.52, + "_pop_updated_issues_count": 22, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 22.0, + "_pop_comment_count": 50.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 149, + "_pop_score": 44.47, "_readme_filename": "readme.md", "_readme_giturl": "https://raw.githubusercontent.com/uber/h3-py/master/readme.md", "_readme_localurl": "uber~h3-py~readme.md", @@ -29952,7 +45002,7 @@ "description": null, "_repopath": "lukasschwab/arxiv.py", "_reponame": "arxiv.py", - "_stars": 583, + "_stars": 588, "_forks": 76, "_watches": 16, "_topics": [ @@ -29965,11 +45015,30 @@ "_homepage": "", "_description": "arxiv.py: Python wrapper for the arXiv API", "_organization": "lukasschwab", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-12T00:00:00.000Z", "_last_commit_date": "2022-09-12T00:00:00.000Z", "_created_at": "2015-11-25T00:00:00.000Z", - "_age_weeks": 367, + "_age_weeks": 368, "_stars_per_week": 1.59, + "_pop_contributor_count": 13, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.08, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 86, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 3.0, + "_pop_comment_count": 4.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 383, + "_pop_score": 32.61, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/lukasschwab/arxiv.py/master/README.md", "_readme_localurl": "lukasschwab~arxiv.py~README.md", @@ -29995,7 +45064,7 @@ "description": null, "_repopath": "westhealth/pyvis", "_reponame": "pyvis", - "_stars": 577, + "_stars": 582, "_forks": 109, "_watches": 13, "_topics": [ @@ -30007,11 +45076,33 @@ "_homepage": "http://pyvis.readthedocs.io/en/latest/", "_description": "pyvis: Python package for creating and visualizing interactive network graphs.", "_organization": "westhealth", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-11-04T00:00:00.000Z", "_created_at": "2018-05-10T00:00:00.000Z", - "_age_weeks": 238, + "_age_weeks": 240, "_stars_per_week": 2.42, + "_pop_contributor_count": 31, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "westhealth", + "westhealthinstitute" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.58, + "_pop_updated_issues_count": 37, + "_pop_closed_issues_count": 12, + "_pop_created_since_days": 56, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 37.0, + "_pop_comment_count": 28.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 24, + "_pop_score": 38.98, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/westhealth/pyvis/master/README.md", "_readme_localurl": "westhealth~pyvis~README.md", @@ -30028,47 +45119,6 @@ "westhealth~pyvis~setup.py" ] }, - { - "index": 117, - "category": "nlp", - "githuburl": "https://github.com/iclrandd/blackstone", - "featured": null, - "links": null, - "description": null, - "_repopath": "iclrandd/blackstone", - "_reponame": "Blackstone", - "_stars": 573, - "_forks": 93, - "_watches": 37, - "_topics": [ - "law", - "caselaw", - "nlp", - "spacy-models", - "legaltech" - ], - "_language": "Python", - "_homepage": "https://research.iclr.co.uk", - "_description": "Blackstone: :black_circle: A spaCy pipeline and model for NLP on unstructured legal text.", - "_organization": "iclrandd", - "_updated_at": "2022-11-27T00:00:00.000Z", - "_last_commit_date": "2021-01-31T00:00:00.000Z", - "_created_at": "2019-03-25T00:00:00.000Z", - "_age_weeks": 193, - "_stars_per_week": 2.96, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/iclrandd/blackstone/master/README.md", - "_readme_localurl": "iclrandd~blackstone~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/iclrandd/blackstone/master/setup.py" - ], - "_requirements_localurls": [ - "iclrandd~blackstone~setup.py" - ] - }, { "index": 505, "category": "gis", @@ -30078,7 +45128,7 @@ "description": null, "_repopath": "scikit-mobility/scikit-mobility", "_reponame": "scikit-mobility", - "_stars": 571, + "_stars": 573, "_forks": 130, "_watches": 29, "_topics": [ @@ -30098,11 +45148,33 @@ "_homepage": "https://scikit-mobility.github.io/scikit-mobility/", "_description": "scikit-mobility: mobility analysis in Python", "_organization": "scikit-mobility", - "_updated_at": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-06-13T00:00:00.000Z", "_created_at": "2019-04-30T00:00:00.000Z", - "_age_weeks": 188, - "_stars_per_week": 3.03, + "_age_weeks": 189, + "_stars_per_week": 3.02, + "_pop_contributor_count": 21, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "argonnenationallaboratory", + "isti-cnr" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.67, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 6, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 10.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 20, + "_pop_score": 30.83, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/scikit-mobility/scikit-mobility/master/README.md", "_readme_localurl": "scikit-mobility~scikit-mobility~README.md", @@ -30119,6 +45191,68 @@ "scikit-mobility~scikit-mobility~pyproject.toml" ] }, + { + "index": 117, + "category": "nlp", + "githuburl": "https://github.com/iclrandd/blackstone", + "featured": null, + "links": null, + "description": null, + "_repopath": "iclrandd/blackstone", + "_reponame": "Blackstone", + "_stars": 573, + "_forks": 93, + "_watches": 37, + "_topics": [ + "law", + "caselaw", + "nlp", + "spacy-models", + "legaltech" + ], + "_language": "Python", + "_homepage": "https://research.iclr.co.uk", + "_description": "Blackstone: :black_circle: A spaCy pipeline and model for NLP on unstructured legal text.", + "_organization": "iclrandd", + "_updated_at": "2022-11-27T00:00:00.000Z", + "_last_commit_date": "2021-01-31T00:00:00.000Z", + "_created_at": "2019-03-25T00:00:00.000Z", + "_age_weeks": 195, + "_stars_per_week": 2.94, + "_pop_contributor_count": 8, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "theincorporatedcounciloflawreportingforenglandandwales" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 45, + "_pop_updated_since_days": 23, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 11.07, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/iclrandd/blackstone/master/README.md", + "_readme_localurl": "iclrandd~blackstone~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/iclrandd/blackstone/master/setup.py" + ], + "_requirements_localurls": [ + "iclrandd~blackstone~setup.py" + ] + }, { "index": 831, "category": "typing", @@ -30128,9 +45262,9 @@ "description": null, "_repopath": "python-attrs/cattrs", "_reponame": "cattrs", - "_stars": 568, - "_forks": 81, - "_watches": 16, + "_stars": 570, + "_forks": 82, + "_watches": 15, "_topics": [ "attrs", "deserialization", @@ -30140,60 +45274,178 @@ "_homepage": null, "_description": "cattrs: Complex custom class converters for attrs.", "_organization": "python-attrs", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-09T00:00:00.000Z", "_created_at": "2016-08-28T00:00:00.000Z", - "_age_weeks": 327, + "_age_weeks": 329, "_stars_per_week": 1.73, + "_pop_contributor_count": 44, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "pocketzworld" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.77, + "_pop_updated_issues_count": 33, + "_pop_closed_issues_count": 18, + "_pop_created_since_days": 77, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 33.0, + "_pop_comment_count": 90.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 73, + "_pop_score": 49.46, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/python-attrs/cattrs/master/README.rst", "_readme_localurl": "python-attrs~cattrs~README.rst", "_requirements_filenames": [ - "pyproject.toml" + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/python-attrs/cattrs/master/pyproject.toml" + ], + "_requirements_localurls": [ + "python-attrs~cattrs~pyproject.toml" + ] + }, + { + "index": 752, + "category": "diffusion", + "githuburl": "https://github.com/sharonzhou/long_stable_diffusion", + "featured": null, + "links": null, + "description": null, + "_repopath": "sharonzhou/long_stable_diffusion", + "_reponame": "long_stable_diffusion", + "_stars": 569, + "_forks": 44, + "_watches": 13, + "_topics": [], + "_language": "Python", + "_homepage": "", + "_description": "long_stable_diffusion: Long-form text-to-images generation, using a pipeline of deep generative models (GPT-3 and Stable Diffusion)", + "_organization": "sharonzhou", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-10-30T00:00:00.000Z", + "_created_at": "2022-09-04T00:00:00.000Z", + "_age_weeks": 15, + "_stars_per_week": 37.58, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "stanford" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.44, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 4, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 0, + "_pop_score": 11.14, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/sharonzhou/long_stable_diffusion/master/README.md", + "_readme_localurl": "sharonzhou~long_stable_diffusion~README.md", + "_requirements_filenames": [ + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/python-attrs/cattrs/master/pyproject.toml" + "https://raw.githubusercontent.com/sharonzhou/long_stable_diffusion/master/requirements.txt" ], "_requirements_localurls": [ - "python-attrs~cattrs~pyproject.toml" + "sharonzhou~long_stable_diffusion~requirements.txt" ] }, { - "index": 828, - "category": "sim", - "githuburl": "https://github.com/farama-foundation/gymnasium", + "index": 808, + "category": "web", + "githuburl": "https://github.com/s3rius/fastapi-template", "featured": null, "links": null, "description": null, - "_repopath": "farama-foundation/gymnasium", - "_reponame": "Gymnasium", - "_stars": 561, - "_forks": 71, - "_watches": 9, - "_topics": [], + "_repopath": "s3rius/fastapi-template", + "_reponame": "FastAPI-template", + "_stars": 569, + "_forks": 51, + "_watches": 11, + "_topics": [ + "fastapi", + "cookiecutter", + "cookiecutter-template", + "cookiecutter-python3", + "sqlalchemy-orm", + "asynchronous", + "ormar", + "tortoise-orm", + "aerich", + "alembic", + "python3", + "asyncio", + "graphql", + "strawberry-graphql", + "opentelemetry", + "prometheus", + "sentry", + "fastapi-template", + "fastapi-boilerplate" + ], "_language": "Python", - "_homepage": "https://gymnasium.farama.org", - "_description": "Gymnasium: A standard API for reinforcement learning and a diverse set of reference environments (formerly Gym)", - "_organization": "farama-foundation", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2022-09-08T00:00:00.000Z", - "_age_weeks": 12, - "_stars_per_week": 43.63, + "_homepage": "", + "_description": "FastAPI-template: Feature rich robust FastAPI template.", + "_organization": "s3rius", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2020-10-05T00:00:00.000Z", + "_age_weeks": 115, + "_stars_per_week": 4.95, + "_pop_contributor_count": 12, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "fyndiq", + "gazprom-media", + "infosec" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.06, + "_pop_updated_issues_count": 26, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 27, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 26.0, + "_pop_comment_count": 63.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 0, + "_pop_score": 37.61, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/farama-foundation/gymnasium/master/README.md", - "_readme_localurl": "farama-foundation~gymnasium~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/s3rius/fastapi-template/master/README.md", + "_readme_localurl": "s3rius~fastapi-template~README.md", "_requirements_filenames": [ - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/farama-foundation/gymnasium/master/setup.py", - "https://raw.githubusercontent.com/farama-foundation/gymnasium/master/pyproject.toml" + "https://raw.githubusercontent.com/s3rius/fastapi-template/master/pyproject.toml" ], "_requirements_localurls": [ - "farama-foundation~gymnasium~setup.py", - "farama-foundation~gymnasium~pyproject.toml" + "s3rius~fastapi-template~pyproject.toml" ] }, { @@ -30205,8 +45457,8 @@ "description": null, "_repopath": "pyfpdf/fpdf2", "_reponame": "fpdf2", - "_stars": 560, - "_forks": 150, + "_stars": 568, + "_forks": 152, "_watches": 16, "_topics": [ "pdf-generation", @@ -30224,11 +45476,34 @@ "_homepage": "https://pyfpdf.github.io/fpdf2/", "_description": "fpdf2: Simple PDF generation for Python", "_organization": "pyfpdf", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2017-03-15T00:00:00.000Z", - "_age_weeks": 299, - "_stars_per_week": 1.87, + "_age_weeks": 300, + "_stars_per_week": 1.89, + "_pop_contributor_count": 81, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "lymaconsulting", + "onapsis", + "sncfconnect&techvoyages-sncf-technologies" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.46, + "_pop_updated_issues_count": 87, + "_pop_closed_issues_count": 69, + "_pop_created_since_days": 70, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 87.0, + "_pop_comment_count": 296.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.4, + "_pop_dependents_count": 0, + "_pop_score": 49.03, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pyfpdf/fpdf2/master/README.md", "_readme_localurl": "pyfpdf~fpdf2~README.md", @@ -30251,8 +45526,8 @@ "description": null, "_repopath": "osgeo/grass", "_reponame": "grass", - "_stars": 559, - "_forks": 208, + "_stars": 562, + "_forks": 209, "_watches": 47, "_topics": [ "osgeo", @@ -30274,11 +45549,34 @@ "_homepage": "https://grass.osgeo.org", "_description": "GRASS GIS - free and open source Geographic Information System (GIS)", "_organization": "osgeo", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2019-05-17T00:00:00.000Z", - "_age_weeks": 185, - "_stars_per_week": 3.01, + "_age_weeks": 187, + "_stars_per_week": 3.0, + "_pop_contributor_count": 93, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "czechtechnicaluniversityinprague", + "mundialis", + "ncsu" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.92, + "_pop_updated_issues_count": 198, + "_pop_closed_issues_count": 117, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 15, + "_pop_recent_releases_estimated_tags": 37, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 198.0, + "_pop_comment_count": 394.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 187, + "_pop_score": 58.16, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/osgeo/grass/master/README.md", "_readme_localurl": "osgeo~grass~README.md", @@ -30301,7 +45599,7 @@ "description": null, "_repopath": "lexpredict/lexpredict-lexnlp", "_reponame": "lexpredict-lexnlp", - "_stars": 556, + "_stars": 557, "_forks": 153, "_watches": 49, "_topics": [ @@ -30319,11 +45617,32 @@ "_homepage": null, "_description": "lexpredict-lexnlp: LexNLP by LexPredict", "_organization": "lexpredict", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-08-10T00:00:00.000Z", "_created_at": "2017-09-30T00:00:00.000Z", - "_age_weeks": 270, + "_age_weeks": 272, "_stars_per_week": 2.05, + "_pop_contributor_count": 8, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bommaritoconsulting" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.06, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 64, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 5.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 17, + "_pop_score": 23.71, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/lexpredict/lexpredict-lexnlp/master/README.md", "_readme_localurl": "lexpredict~lexpredict-lexnlp~README.md", @@ -30337,97 +45656,6 @@ "lexpredict~lexpredict-lexnlp~setup.py" ] }, - { - "index": 752, - "category": "diffusion", - "githuburl": "https://github.com/sharonzhou/long_stable_diffusion", - "featured": null, - "links": null, - "description": null, - "_repopath": "sharonzhou/long_stable_diffusion", - "_reponame": "long_stable_diffusion", - "_stars": 553, - "_forks": 43, - "_watches": 13, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "long_stable_diffusion: Long-form text-to-images generation, using a pipeline of deep generative models (GPT-3 and Stable Diffusion)", - "_organization": "sharonzhou", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-10-30T00:00:00.000Z", - "_created_at": "2022-09-04T00:00:00.000Z", - "_age_weeks": 13, - "_stars_per_week": 41.18, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/sharonzhou/long_stable_diffusion/master/README.md", - "_readme_localurl": "sharonzhou~long_stable_diffusion~README.md", - "_requirements_filenames": [ - "requirements.txt" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/sharonzhou/long_stable_diffusion/master/requirements.txt" - ], - "_requirements_localurls": [ - "sharonzhou~long_stable_diffusion~requirements.txt" - ] - }, - { - "index": 808, - "category": "web", - "githuburl": "https://github.com/s3rius/fastapi-template", - "featured": null, - "links": null, - "description": null, - "_repopath": "s3rius/fastapi-template", - "_reponame": "FastAPI-template", - "_stars": 552, - "_forks": 47, - "_watches": 9, - "_topics": [ - "fastapi", - "cookiecutter", - "cookiecutter-template", - "cookiecutter-python3", - "sqlalchemy-orm", - "asynchronous", - "ormar", - "tortoise-orm", - "aerich", - "alembic", - "python3", - "asyncio", - "graphql", - "strawberry-graphql", - "opentelemetry", - "prometheus", - "sentry", - "fastapi-template", - "fastapi-boilerplate", - "hacktoberfest" - ], - "_language": "Python", - "_homepage": "", - "_description": "FastAPI-template: Feature rich robust FastAPI template.", - "_organization": "s3rius", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-04T00:00:00.000Z", - "_created_at": "2020-10-05T00:00:00.000Z", - "_age_weeks": 113, - "_stars_per_week": 4.87, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/s3rius/fastapi-template/master/README.md", - "_readme_localurl": "s3rius~fastapi-template~README.md", - "_requirements_filenames": [ - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/s3rius/fastapi-template/master/pyproject.toml" - ], - "_requirements_localurls": [ - "s3rius~fastapi-template~pyproject.toml" - ] - }, { "index": 567, "category": "sim", @@ -30437,8 +45665,8 @@ "description": null, "_repopath": "gboeing/pynamical", "_reponame": "pynamical", - "_stars": 550, - "_forks": 107, + "_stars": 551, + "_forks": 108, "_watches": 32, "_topics": [ "chaos", @@ -30466,11 +45694,32 @@ "_homepage": "https://geoffboeing.com/publications/nonlinear-chaos-fractals-prediction/", "_description": "Pynamical is a Python package for modeling and visualizing discrete nonlinear dynamical systems, chaos, and fractals.", "_organization": "gboeing", - "_updated_at": "2022-11-25T00:00:00.000Z", + "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2022-05-24T00:00:00.000Z", "_created_at": "2014-09-28T00:00:00.000Z", - "_age_weeks": 427, - "_stars_per_week": 1.29, + "_age_weeks": 429, + "_stars_per_week": 1.28, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "universityofsoutherncalifornia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.13, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 100, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 12.98, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/gboeing/pynamical/master/README.md", "_readme_localurl": "gboeing~pynamical~README.md", @@ -30525,11 +45774,32 @@ "_homepage": "", "_description": "crypto-whale-watching-app: Python Dash app that tracks whale activity in cryptocurrency markets.", "_organization": "pmaji", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-26T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-12-08T00:00:00.000Z", "_created_at": "2018-01-23T00:00:00.000Z", - "_age_weeks": 254, - "_stars_per_week": 2.16, + "_age_weeks": 255, + "_stars_per_week": 2.14, + "_pop_contributor_count": 8, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "capitalone" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.06, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 60, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 21.17, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pmaji/crypto-whale-watching-app/master/README.md", "_readme_localurl": "pmaji~crypto-whale-watching-app~README.md", @@ -30552,9 +45822,9 @@ "description": null, "_repopath": "salesforce/codet5", "_reponame": "CodeT5", - "_stars": 534, - "_forks": 103, - "_watches": 17, + "_stars": 547, + "_forks": 105, + "_watches": 18, "_topics": [ "language-model", "code-intelligence", @@ -30566,11 +45836,32 @@ "_homepage": "https://arxiv.org/abs/2109.00859", "_description": "Code for CodeT5: a new code-aware pre-trained encoder-decoder model.", "_organization": "salesforce", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-07-08T00:00:00.000Z", "_created_at": "2021-08-16T00:00:00.000Z", - "_age_weeks": 68, - "_stars_per_week": 7.82, + "_age_weeks": 70, + "_stars_per_week": 7.81, + "_pop_contributor_count": 3, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "salesforceresearch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 16, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 10.0, + "_pop_comment_count": 4.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 13.99, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/salesforce/codet5/master/README.md", "_readme_localurl": "salesforce~codet5~README.md", @@ -30587,9 +45878,9 @@ "description": null, "_repopath": "ipython/ipykernel", "_reponame": "ipykernel", - "_stars": 528, - "_forks": 332, - "_watches": 32, + "_stars": 529, + "_forks": 335, + "_watches": 33, "_topics": [ "ipython", "ipython-kernel", @@ -30603,11 +45894,35 @@ "_homepage": "https://ipython.readthedocs.io/en/stable/", "_description": "ipykernel: IPython Kernel for Jupyter", "_organization": "ipython", - "_updated_at": "2022-12-02T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2015-04-09T00:00:00.000Z", - "_age_weeks": 399, + "_age_weeks": 401, "_stars_per_week": 1.32, + "_pop_contributor_count": 161, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazonwebservices", + "mongodb", + "quansight-labs", + "simularesearchlaboratory" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.9, + "_pop_updated_issues_count": 77, + "_pop_closed_issues_count": 59, + "_pop_created_since_days": 94, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 29, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 29, + "_pop_issue_count": 77.0, + "_pop_comment_count": 132.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 1683, + "_pop_score": 65.4, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ipython/ipykernel/master/README.md", "_readme_localurl": "ipython~ipykernel~README.md", @@ -30622,38 +45937,67 @@ ] }, { - "index": 516, - "category": "ml-dl", - "githuburl": "https://github.com/kakaobrain/rq-vae-transformer", + "index": 160, + "category": "nlp", + "githuburl": "https://github.com/nipunsadvilkar/pysbd", "featured": null, "links": null, "description": null, - "_repopath": "kakaobrain/rq-vae-transformer", - "_reponame": "rq-vae-transformer", - "_stars": 521, - "_forks": 60, - "_watches": 15, - "_topics": [], - "_language": "Jupyter Notebook", + "_repopath": "nipunsadvilkar/pysbd", + "_reponame": "pySBD", + "_stars": 528, + "_forks": 63, + "_watches": 10, + "_topics": [ + "sentence-boundary-detection", + "python", + "segmentation", + "rule-based", + "sentence-tokenizer", + "sentence" + ], + "_language": "Python", "_homepage": "", - "_description": "rq-vae-transformer: The official implementation of Autoregressive Image Generation using Residual Quantization (CVPR '22)", - "_organization": "kakaobrain", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-08-18T00:00:00.000Z", - "_created_at": "2022-03-03T00:00:00.000Z", - "_age_weeks": 39, - "_stars_per_week": 13.07, + "_description": "pySBD: \ud83d\udc0d\ud83d\udcafpySBD (Python Sentence Boundary Disambiguation) is a rule-based sentence boundary detection that works out-of-the-box.", + "_organization": "nipunsadvilkar", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2021-02-11T00:00:00.000Z", + "_created_at": "2017-06-11T00:00:00.000Z", + "_age_weeks": 288, + "_stars_per_week": 1.83, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "explosion", + "gerulatatechnologies" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 67, + "_pop_updated_since_days": 22, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 2.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 5, + "_pop_score": 23.76, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/kakaobrain/rq-vae-transformer/master/README.md", - "_readme_localurl": "kakaobrain~rq-vae-transformer~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nipunsadvilkar/pysbd/master/README.md", + "_readme_localurl": "nipunsadvilkar~pysbd~README.md", "_requirements_filenames": [ - "requirements.txt" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/kakaobrain/rq-vae-transformer/master/requirements.txt" + "https://raw.githubusercontent.com/nipunsadvilkar/pysbd/master/setup.py" ], "_requirements_localurls": [ - "kakaobrain~rq-vae-transformer~requirements.txt" + "nipunsadvilkar~pysbd~setup.py" ] }, { @@ -30665,8 +46009,8 @@ "description": null, "_repopath": "scitools/iris", "_reponame": "iris", - "_stars": 520, - "_forks": 258, + "_stars": 527, + "_forks": 259, "_watches": 44, "_topics": [ "iris", @@ -30684,11 +46028,32 @@ "_homepage": "https://scitools-iris.readthedocs.io/en/latest/", "_description": "iris: A powerful, format-agnostic, and community-driven Python package for analysing and visualising Earth science data", "_organization": "scitools", - "_updated_at": "2022-12-01T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2012-08-06T00:00:00.000Z", - "_age_weeks": 539, - "_stars_per_week": 0.96, + "_age_weeks": 541, + "_stars_per_week": 0.97, + "_pop_contributor_count": 99, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "metoffice" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.63, + "_pop_updated_issues_count": 257, + "_pop_closed_issues_count": 160, + "_pop_created_since_days": 126, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 257.0, + "_pop_comment_count": 387.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 46, + "_pop_score": 53.76, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/scitools/iris/master/README.md", "_readme_localurl": "scitools~iris~README.md", @@ -30706,45 +46071,181 @@ ] }, { - "index": 160, - "category": "nlp", - "githuburl": "https://github.com/nipunsadvilkar/pysbd", + "index": 516, + "category": "ml-dl", + "githuburl": "https://github.com/kakaobrain/rq-vae-transformer", "featured": null, "links": null, "description": null, - "_repopath": "nipunsadvilkar/pysbd", - "_reponame": "pySBD", - "_stars": 519, - "_forks": 63, - "_watches": 10, - "_topics": [ - "sentence-boundary-detection", - "python", - "segmentation", - "rule-based", - "sentence-tokenizer", - "sentence" + "_repopath": "kakaobrain/rq-vae-transformer", + "_reponame": "rq-vae-transformer", + "_stars": 521, + "_forks": 60, + "_watches": 15, + "_topics": [], + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "rq-vae-transformer: The official implementation of Autoregressive Image Generation using Residual Quantization (CVPR '22)", + "_organization": "kakaobrain", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2022-08-18T00:00:00.000Z", + "_created_at": "2022-03-03T00:00:00.000Z", + "_age_weeks": 41, + "_stars_per_week": 12.53, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "kakaobrain" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.08, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 10, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 4.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 12.63, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/kakaobrain/rq-vae-transformer/master/README.md", + "_readme_localurl": "kakaobrain~rq-vae-transformer~README.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/kakaobrain/rq-vae-transformer/master/requirements.txt" ], + "_requirements_localurls": [ + "kakaobrain~rq-vae-transformer~requirements.txt" + ] + }, + { + "index": 685, + "category": "ml", + "githuburl": "https://github.com/nvidia/cuda-python", + "featured": null, + "links": null, + "description": null, + "_repopath": "nvidia/cuda-python", + "_reponame": "cuda-python", + "_stars": 520, + "_forks": 39, + "_watches": 22, + "_topics": [], "_language": "Python", - "_homepage": "", - "_description": "pySBD: \ud83d\udc0d\ud83d\udcafpySBD (Python Sentence Boundary Disambiguation) is a rule-based sentence boundary detection that works out-of-the-box.", - "_organization": "nipunsadvilkar", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2021-02-11T00:00:00.000Z", - "_created_at": "2017-06-11T00:00:00.000Z", - "_age_weeks": 286, - "_stars_per_week": 1.81, + "_homepage": "https://nvidia.github.io/cuda-python/", + "_description": "cuda-python: CUDA Python Low-level Bindings", + "_organization": "nvidia", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-09T00:00:00.000Z", + "_created_at": "2021-06-28T00:00:00.000Z", + "_age_weeks": 77, + "_stars_per_week": 6.75, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "nvidia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.23, + "_pop_updated_issues_count": 18, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 18, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 18.0, + "_pop_comment_count": 27.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 3, + "_pop_score": 28.0, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nipunsadvilkar/pysbd/master/README.md", - "_readme_localurl": "nipunsadvilkar~pysbd~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nvidia/cuda-python/master/README.md", + "_readme_localurl": "nvidia~cuda-python~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/nipunsadvilkar/pysbd/master/setup.py" + "https://raw.githubusercontent.com/nvidia/cuda-python/master/requirements.txt", + "https://raw.githubusercontent.com/nvidia/cuda-python/master/setup.py" ], "_requirements_localurls": [ - "nipunsadvilkar~pysbd~setup.py" + "nvidia~cuda-python~requirements.txt", + "nvidia~cuda-python~setup.py" + ] + }, + { + "index": 576, + "category": "util", + "githuburl": "https://github.com/fsspec/filesystem_spec", + "featured": null, + "links": null, + "description": null, + "_repopath": "fsspec/filesystem_spec", + "_reponame": "filesystem_spec", + "_stars": 520, + "_forks": 226, + "_watches": 21, + "_topics": [], + "_language": "Python", + "_homepage": null, + "_description": "filesystem_spec: A specification that python filesystems should adhere to.", + "_organization": "fsspec", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", + "_created_at": "2018-04-23T00:00:00.000Z", + "_age_weeks": 243, + "_stars_per_week": 2.14, + "_pop_contributor_count": 165, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "abcellerabiologics", + "anaconda", + "fal-ai", + "microsoft", + "nvidia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.67, + "_pop_updated_issues_count": 118, + "_pop_closed_issues_count": 84, + "_pop_created_since_days": 57, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 118.0, + "_pop_comment_count": 314.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 209, + "_pop_score": 61.43, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/fsspec/filesystem_spec/master/README.md", + "_readme_localurl": "fsspec~filesystem_spec~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/fsspec/filesystem_spec/master/setup.py", + "https://raw.githubusercontent.com/fsspec/filesystem_spec/master/pyproject.toml" + ], + "_requirements_localurls": [ + "fsspec~filesystem_spec~setup.py", + "fsspec~filesystem_spec~pyproject.toml" ] }, { @@ -30767,8 +46268,29 @@ "_updated_at": "2022-11-30T00:00:00.000Z", "_last_commit_date": "2020-05-01T00:00:00.000Z", "_created_at": "2020-01-20T00:00:00.000Z", - "_age_weeks": 150, - "_stars_per_week": 3.45, + "_age_weeks": 152, + "_stars_per_week": 3.41, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "lightning-ai,universityofwisconsin-madison" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 35, + "_pop_updated_since_days": 32, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 6, + "_pop_score": 11.98, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/rasbt/stat453-deep-learning-ss20/master/README.md", "_readme_localurl": "rasbt~stat453-deep-learning-ss20~README.md", @@ -30777,41 +46299,60 @@ "_requirements_localurls": [] }, { - "index": 576, - "category": "util", - "githuburl": "https://github.com/fsspec/filesystem_spec", + "index": 306, + "category": "crypto", + "githuburl": "https://github.com/palkeo/panoramix", "featured": null, "links": null, "description": null, - "_repopath": "fsspec/filesystem_spec", - "_reponame": "filesystem_spec", - "_stars": 517, - "_forks": 225, - "_watches": 21, + "_repopath": "palkeo/panoramix", + "_reponame": "panoramix", + "_stars": 516, + "_forks": 142, + "_watches": 31, "_topics": [], "_language": "Python", - "_homepage": null, - "_description": "filesystem_spec: A specification that python filesystems should adhere to.", - "_organization": "fsspec", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", - "_created_at": "2018-04-23T00:00:00.000Z", - "_age_weeks": 241, - "_stars_per_week": 2.14, + "_homepage": "", + "_description": "panoramix: Ethereum decompiler", + "_organization": "palkeo", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2020-08-22T00:00:00.000Z", + "_created_at": "2020-02-17T00:00:00.000Z", + "_age_weeks": 148, + "_stars_per_week": 3.49, + "_pop_contributor_count": 4, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ethereum", + "eveem.org" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 34, + "_pop_updated_since_days": 28, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 5.0, + "_pop_comment_count": 4.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 16.02, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/fsspec/filesystem_spec/master/README.md", - "_readme_localurl": "fsspec~filesystem_spec~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/palkeo/panoramix/master/README.md", + "_readme_localurl": "palkeo~panoramix~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/fsspec/filesystem_spec/master/setup.py", - "https://raw.githubusercontent.com/fsspec/filesystem_spec/master/pyproject.toml" + "https://raw.githubusercontent.com/palkeo/panoramix/master/setup.py" ], "_requirements_localurls": [ - "fsspec~filesystem_spec~setup.py", - "fsspec~filesystem_spec~pyproject.toml" + "palkeo~panoramix~setup.py" ] }, { @@ -30823,7 +46364,7 @@ "description": null, "_repopath": "toblerity/rtree", "_reponame": "rtree", - "_stars": 514, + "_stars": 515, "_forks": 123, "_watches": 30, "_topics": [], @@ -30831,11 +46372,35 @@ "_homepage": "https://rtree.readthedocs.io/en/latest/", "_description": "Rtree: spatial index for Python GIS \u00b6", "_organization": "toblerity", - "_updated_at": "2022-12-03T00:00:00.000Z", - "_last_commit_date": "2022-11-04T00:00:00.000Z", + "_updated_at": "2022-12-07T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2011-06-19T00:00:00.000Z", - "_age_weeks": 598, + "_age_weeks": 600, "_stars_per_week": 0.86, + "_pop_contributor_count": 39, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "hobu", + "planetlabs", + "universityofillinoisaturbana-champaign", + "universityofutah" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.75, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 140, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 11.0, + "_pop_comment_count": 26.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 25, + "_pop_score": 47.17, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/toblerity/rtree/master/README.md", "_readme_localurl": "toblerity~rtree~README.md", @@ -30852,44 +46417,6 @@ "toblerity~rtree~pyproject.toml" ] }, - { - "index": 685, - "category": "ml", - "githuburl": "https://github.com/nvidia/cuda-python", - "featured": null, - "links": null, - "description": null, - "_repopath": "nvidia/cuda-python", - "_reponame": "cuda-python", - "_stars": 514, - "_forks": 38, - "_watches": 23, - "_topics": [], - "_language": "Python", - "_homepage": "https://nvidia.github.io/cuda-python/", - "_description": "cuda-python: CUDA Python Low-level Bindings", - "_organization": "nvidia", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-04T00:00:00.000Z", - "_created_at": "2021-06-28T00:00:00.000Z", - "_age_weeks": 75, - "_stars_per_week": 6.83, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nvidia/cuda-python/master/README.md", - "_readme_localurl": "nvidia~cuda-python~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/nvidia/cuda-python/master/requirements.txt", - "https://raw.githubusercontent.com/nvidia/cuda-python/master/setup.py" - ], - "_requirements_localurls": [ - "nvidia~cuda-python~requirements.txt", - "nvidia~cuda-python~setup.py" - ] - }, { "index": 883, "category": "time-series", @@ -30899,7 +46426,7 @@ "description": null, "_repopath": "autoviml/auto_ts", "_reponame": "Auto_TS", - "_stars": 510, + "_stars": 514, "_forks": 92, "_watches": 16, "_topics": [ @@ -30922,11 +46449,32 @@ "_homepage": "", "_description": "Auto_TS: Automatically build ARIMA, SARIMAX, VAR, FB Prophet and XGBoost Models on Time Series data sets with a Single Line of Code. Now updated with Dask to handle millions of rows.", "_organization": "autoviml", - "_updated_at": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2022-08-16T00:00:00.000Z", "_created_at": "2020-02-15T00:00:00.000Z", - "_age_weeks": 146, - "_stars_per_week": 3.48, + "_age_weeks": 148, + "_stars_per_week": 3.47, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "o9solutions" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.27, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 35, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 8.0, + "_pop_comment_count": 12.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 26, + "_pop_score": 27.54, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/autoviml/auto_ts/master/README.md", "_readme_localurl": "autoviml~auto_ts~README.md", @@ -30943,41 +46491,6 @@ "autoviml~auto_ts~setup.py" ] }, - { - "index": 306, - "category": "crypto", - "githuburl": "https://github.com/palkeo/panoramix", - "featured": null, - "links": null, - "description": null, - "_repopath": "palkeo/panoramix", - "_reponame": "panoramix", - "_stars": 509, - "_forks": 140, - "_watches": 30, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "panoramix: Ethereum decompiler", - "_organization": "palkeo", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2020-08-22T00:00:00.000Z", - "_created_at": "2020-02-17T00:00:00.000Z", - "_age_weeks": 146, - "_stars_per_week": 3.48, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/palkeo/panoramix/master/README.md", - "_readme_localurl": "palkeo~panoramix~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/palkeo/panoramix/master/setup.py" - ], - "_requirements_localurls": [ - "palkeo~panoramix~setup.py" - ] - }, { "index": 589, "category": "ml-ops", @@ -30987,8 +46500,8 @@ "description": null, "_repopath": "kedro-org/kedro-viz", "_reponame": "kedro-viz", - "_stars": 506, - "_forks": 83, + "_stars": 510, + "_forks": 84, "_watches": 9, "_topics": [ "kedro", @@ -31003,11 +46516,33 @@ "_homepage": "https://demo.kedro.org/", "_description": "kedro-viz: Visualise your Kedro data and machine-learning pipelines and track your experiments. ", "_organization": "kedro-org", - "_updated_at": "2022-12-04T00:00:00.000Z", - "_last_commit_date": "2022-11-18T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2019-05-09T00:00:00.000Z", - "_age_weeks": 186, - "_stars_per_week": 2.71, + "_age_weeks": 188, + "_stars_per_week": 2.7, + "_pop_contributor_count": 38, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "kedro-org,quantumblacklabs", + "medshr" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.83, + "_pop_updated_issues_count": 149, + "_pop_closed_issues_count": 116, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 149.0, + "_pop_comment_count": 204.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 2, + "_pop_score": 44.86, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/kedro-org/kedro-viz/master/README.md", "_readme_localurl": "kedro-org~kedro-viz~README.md", @@ -31024,7 +46559,7 @@ "description": null, "_repopath": "bastibe/python-soundfile", "_reponame": "python-soundfile", - "_stars": 503, + "_stars": 507, "_forks": 85, "_watches": 17, "_topics": [], @@ -31032,11 +46567,33 @@ "_homepage": "", "_description": "python-soundfile: SoundFile is an audio library based on libsndfile, CFFI, and NumPy", "_organization": "bastibe", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-09-27T00:00:00.000Z", "_created_at": "2013-08-27T00:00:00.000Z", - "_age_weeks": 484, + "_age_weeks": 485, "_stars_per_week": 1.04, + "_pop_contributor_count": 28, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "quantco", + "self" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.37, + "_pop_updated_issues_count": 30, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 113, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 30.0, + "_pop_comment_count": 99.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.3, + "_pop_dependents_count": 0, + "_pop_score": 37.3, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/bastibe/python-soundfile/master/README.rst", "_readme_localurl": "bastibe~python-soundfile~README.rst", @@ -31059,19 +46616,38 @@ "description": null, "_repopath": "google/ml-metadata", "_reponame": "ml-metadata", - "_stars": 500, - "_forks": 113, + "_stars": 502, + "_forks": 114, "_watches": 27, "_topics": [], "_language": "C++", "_homepage": "https://www.tensorflow.org/tfx/guide/mlmd", "_description": "ml-metadata: For recording and retrieving metadata associated with ML developer and data scientist workflows.", "_organization": "google", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2019-01-15T00:00:00.000Z", - "_age_weeks": 203, - "_stars_per_week": 2.46, + "_age_weeks": 204, + "_stars_per_week": 2.45, + "_pop_contributor_count": 15, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.56, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 48, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 4.0, + "_pop_comment_count": 28.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 7.0, + "_pop_dependents_count": 20, + "_pop_score": 37.83, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google/ml-metadata/master/README.md", "_readme_localurl": "google~ml-metadata~README.md", @@ -31097,7 +46673,7 @@ "description": null, "_repopath": "apple/ml-ane-transformers", "_reponame": "ml-ane-transformers", - "_stars": 488, + "_stars": 494, "_forks": 26, "_watches": 26, "_topics": [], @@ -31105,11 +46681,30 @@ "_homepage": "", "_description": "ml-ane-transformers: Reference implementation of the Transformer architecture optimized for Apple Neural Engine (ANE)", "_organization": "apple", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2022-08-09T00:00:00.000Z", "_created_at": "2022-06-03T00:00:00.000Z", - "_age_weeks": 26, - "_stars_per_week": 18.27, + "_age_weeks": 28, + "_stars_per_week": 17.38, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 7, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 5.7, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/apple/ml-ane-transformers/master/README.md", "_readme_localurl": "apple~ml-ane-transformers~README.md", @@ -31135,7 +46730,7 @@ "description": null, "_repopath": "microsoft/focal-transformer", "_reponame": "Focal-Transformer", - "_stars": 486, + "_stars": 487, "_forks": 57, "_watches": 17, "_topics": [], @@ -31143,11 +46738,32 @@ "_homepage": "", "_description": "Focal-Transformer: [NeurIPS 2021 Spotlight] Official code for \"Focal Self-attention for Local-Global Interactions in Vision Transformers\"", "_organization": "microsoft", - "_updated_at": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2022-03-27T00:00:00.000Z", "_created_at": "2021-07-10T00:00:00.000Z", - "_age_weeks": 73, - "_stars_per_week": 6.61, + "_age_weeks": 75, + "_stars_per_week": 6.47, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "microsoft" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 18, + "_pop_updated_since_days": 9, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 2, + "_pop_score": 12.53, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/microsoft/focal-transformer/master/README.md", "_readme_localurl": "microsoft~focal-transformer~README.md", @@ -31155,6 +46771,63 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, + { + "index": 673, + "category": "perf", + "githuburl": "https://github.com/brandtbucher/specialist", + "featured": null, + "links": null, + "description": null, + "_repopath": "brandtbucher/specialist", + "_reponame": "specialist", + "_stars": 485, + "_forks": 9, + "_watches": 9, + "_topics": [], + "_language": "Python", + "_homepage": "", + "_description": "specialist: Visualize CPython 3.11's specializing, adaptive interpreter. :fire:", + "_organization": "brandtbucher", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_created_at": "2022-06-01T00:00:00.000Z", + "_age_weeks": 28, + "_stars_per_week": 16.89, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "christianclauss", + "microsoft" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.0, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 7, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 17, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 3.0, + "_pop_comment_count": 11.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.7, + "_pop_dependents_count": 0, + "_pop_score": 26.99, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/brandtbucher/specialist/master/README.md", + "_readme_localurl": "brandtbucher~specialist~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/brandtbucher/specialist/master/setup.py" + ], + "_requirements_localurls": [ + "brandtbucher~specialist~setup.py" + ] + }, { "index": 797, "category": "ml-interpretability", @@ -31164,9 +46837,9 @@ "description": null, "_repopath": "selfexplainml/piml-toolbox", "_reponame": "PiML-Toolbox", - "_stars": 482, + "_stars": 485, "_forks": 52, - "_watches": 12, + "_watches": 14, "_topics": [ "interpretable-machine-learning", "low-code", @@ -31177,11 +46850,32 @@ "_homepage": "https://selfexplainml.github.io/PiML-Toolbox", "_description": "PiML-Toolbox: PiML (Python Interpretable Machine Learning) toolbox for model development and model validation", "_organization": "selfexplainml", - "_updated_at": "2022-12-04T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2022-04-29T00:00:00.000Z", - "_age_weeks": 31, - "_stars_per_week": 15.2, + "_age_weeks": 33, + "_stars_per_week": 14.51, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cityuniversityofhongkong" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.02, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 8, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 15, + "_pop_recent_releases_estimated_tags": 24, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 16.0, + "_pop_comment_count": 24.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 5, + "_pop_score": 32.74, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/selfexplainml/piml-toolbox/master/README.md", "_readme_localurl": "selfexplainml~piml-toolbox~README.md", @@ -31189,42 +46883,6 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, - { - "index": 794, - "category": "gis", - "githuburl": "https://github.com/kvos/coastsat", - "featured": null, - "links": null, - "description": null, - "_repopath": "kvos/coastsat", - "_reponame": "CoastSat", - "_stars": 477, - "_forks": 194, - "_watches": 23, - "_topics": [ - "google-earth-engine", - "earth-engine", - "remote-sensing", - "satellite-images", - "coastal-engineering", - "shoreline-detection" - ], - "_language": "Jupyter Notebook", - "_homepage": "http://coastsat.wrl.unsw.edu.au/", - "_description": "CoastSat: Global shoreline mapping tool from satellite imagery", - "_organization": "kvos", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-11T00:00:00.000Z", - "_created_at": "2018-09-28T00:00:00.000Z", - "_age_weeks": 218, - "_stars_per_week": 2.18, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/kvos/coastsat/master/README.md", - "_readme_localurl": "kvos~coastsat~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 216, "category": "ml-ops", @@ -31234,8 +46892,8 @@ "description": null, "_repopath": "nccr-itmo/fedot", "_reponame": "FEDOT", - "_stars": 476, - "_forks": 61, + "_stars": 481, + "_forks": 63, "_watches": 9, "_topics": [ "automl", @@ -31254,11 +46912,34 @@ "_homepage": "https://fedot.readthedocs.io", "_description": "FEDOT: Automated modeling and machine learning framework FEDOT", "_organization": "nccr-itmo", - "_updated_at": "2022-12-04T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2020-01-13T00:00:00.000Z", - "_age_weeks": 151, - "_stars_per_week": 3.15, + "_age_weeks": 153, + "_stars_per_week": 3.14, + "_pop_contributor_count": 26, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "itmouniversity", + "mail.rugroup", + "wiredhut" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.02, + "_pop_updated_issues_count": 175, + "_pop_closed_issues_count": 137, + "_pop_created_since_days": 36, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 175.0, + "_pop_comment_count": 167.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 40.61, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/nccr-itmo/fedot/master/README.rst", "_readme_localurl": "nccr-itmo~fedot~README.rst", @@ -31275,6 +46956,67 @@ "nccr-itmo~fedot~setup.py" ] }, + { + "index": 794, + "category": "gis", + "githuburl": "https://github.com/kvos/coastsat", + "featured": null, + "links": null, + "description": null, + "_repopath": "kvos/coastsat", + "_reponame": "CoastSat", + "_stars": 480, + "_forks": 195, + "_watches": 23, + "_topics": [ + "google-earth-engine", + "earth-engine", + "remote-sensing", + "satellite-images", + "coastal-engineering", + "shoreline-detection" + ], + "_language": "Jupyter Notebook", + "_homepage": "http://coastsat.wrl.unsw.edu.au/", + "_description": "CoastSat: Global shoreline mapping tool from satellite imagery", + "_organization": "kvos", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_created_at": "2018-09-28T00:00:00.000Z", + "_age_weeks": 220, + "_stars_per_week": 2.18, + "_pop_contributor_count": 14, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "sacramentostate", + "unswsydney", + "usaceerdc-fieldresearchfacility", + "waterresearchlaboratory", + "waterresearchlaboratory(unsw)" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.4, + "_pop_updated_issues_count": 53, + "_pop_closed_issues_count": 36, + "_pop_created_since_days": 51, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 53.0, + "_pop_comment_count": 109.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 17, + "_pop_score": 45.16, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/kvos/coastsat/master/README.md", + "_readme_localurl": "kvos~coastsat~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 47, "category": "data", @@ -31284,7 +47026,7 @@ "description": null, "_repopath": "macbre/sql-metadata", "_reponame": "sql-metadata", - "_stars": 468, + "_stars": 478, "_forks": 84, "_watches": 15, "_topics": [ @@ -31304,11 +47046,33 @@ "_homepage": "https://pypi.python.org/pypi/sql-metadata", "_description": "sql-metadata: Uses tokenized query returned by python-sqlparse and generates query metadata", "_organization": "macbre", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-03T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2017-06-06T00:00:00.000Z", - "_age_weeks": 287, - "_stars_per_week": 1.63, + "_age_weeks": 288, + "_stars_per_week": 1.65, + "_pop_contributor_count": 13, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "automattic", + "kaizentech" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.0, + "_pop_updated_issues_count": 21, + "_pop_closed_issues_count": 15, + "_pop_created_since_days": 67, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 21.0, + "_pop_comment_count": 10.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 27, + "_pop_score": 38.43, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/macbre/sql-metadata/master/README.md", "_readme_localurl": "macbre~sql-metadata~README.md", @@ -31350,11 +47114,35 @@ "_homepage": "https://www.fatiando.org/verde", "_description": "verde: Processing and interpolating spatial data with a twist of machine learning", "_organization": "fatiando", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-12-09T00:00:00.000Z", "_created_at": "2018-04-25T00:00:00.000Z", - "_age_weeks": 241, - "_stars_per_week": 1.94, + "_age_weeks": 242, + "_stars_per_week": 1.92, + "_pop_contributor_count": 13, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "fatiando", + "fatiandoubcgifcompgeolabgeolatinas", + "spacescienceandengineeringcenter(ssec)", + "universityofliverpool" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.56, + "_pop_updated_issues_count": 29, + "_pop_closed_issues_count": 26, + "_pop_created_since_days": 57, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 29.0, + "_pop_comment_count": 21.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 15, + "_pop_score": 38.99, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/fatiando/verde/master/README.md", "_readme_localurl": "fatiando~verde~README.md", @@ -31368,41 +47156,6 @@ "fatiando~verde~pyproject.toml" ] }, - { - "index": 673, - "category": "perf", - "githuburl": "https://github.com/brandtbucher/specialist", - "featured": null, - "links": null, - "description": null, - "_repopath": "brandtbucher/specialist", - "_reponame": "specialist", - "_stars": 465, - "_forks": 9, - "_watches": 8, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "specialist: Visualize CPython 3.11's specializing, adaptive interpreter. :fire:", - "_organization": "brandtbucher", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", - "_created_at": "2022-06-01T00:00:00.000Z", - "_age_weeks": 27, - "_stars_per_week": 17.22, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/brandtbucher/specialist/master/README.md", - "_readme_localurl": "brandtbucher~specialist~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/brandtbucher/specialist/master/setup.py" - ], - "_requirements_localurls": [ - "brandtbucher~specialist~setup.py" - ] - }, { "index": 211, "category": "time-series", @@ -31412,7 +47165,7 @@ "description": null, "_repopath": "firmai/atspy", "_reponame": "atspy", - "_stars": 462, + "_stars": 464, "_forks": 88, "_watches": 21, "_topics": [ @@ -31428,11 +47181,33 @@ "_homepage": "https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3580631", "_description": "AtsPy: Automated Time Series Models in Python (by @firmai)", "_organization": "firmai", - "_updated_at": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2021-12-18T00:00:00.000Z", "_created_at": "2020-01-28T00:00:00.000Z", - "_age_weeks": 149, - "_stars_per_week": 3.1, + "_age_weeks": 150, + "_stars_per_week": 3.08, + "_pop_contributor_count": 5, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "alanturinginstitute,firmai", + "ddosify" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 35, + "_pop_updated_since_days": 12, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 12, + "_pop_score": 19.99, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/firmai/atspy/master/README.md", "_readme_localurl": "firmai~atspy~README.md", @@ -31458,7 +47233,7 @@ "description": null, "_repopath": "facebookresearch/ppuda", "_reponame": "ppuda", - "_stars": 457, + "_stars": 459, "_forks": 61, "_watches": 17, "_topics": [], @@ -31466,11 +47241,32 @@ "_homepage": null, "_description": "ppuda: Code for Parameter Prediction for Unseen Deep Architectures (NeurIPS 2021)", "_organization": "facebookresearch", - "_updated_at": "2022-11-19T00:00:00.000Z", + "_updated_at": "2022-12-10T00:00:00.000Z", "_last_commit_date": "2022-07-26T00:00:00.000Z", "_created_at": "2021-10-21T00:00:00.000Z", - "_age_weeks": 58, - "_stars_per_week": 7.76, + "_age_weeks": 60, + "_stars_per_week": 7.58, + "_pop_contributor_count": 3, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "samsung-saitailab,montreal" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.29, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 14, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 0, + "_pop_score": 16.27, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/ppuda/master/README.md", "_readme_localurl": "facebookresearch~ppuda~README.md", @@ -31499,7 +47295,7 @@ "description": null, "_repopath": "mcahny/deep-video-inpainting", "_reponame": "Deep-Video-Inpainting", - "_stars": 445, + "_stars": 448, "_forks": 86, "_watches": 13, "_topics": [], @@ -31507,11 +47303,32 @@ "_homepage": "", "_description": "Deep-Video-Inpainting: Official pytorch implementation for \"Deep Video Inpainting\" (CVPR 2019)", "_organization": "mcahny", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-12T00:00:00.000Z", "_last_commit_date": "2020-12-10T00:00:00.000Z", "_created_at": "2019-05-22T00:00:00.000Z", - "_age_weeks": 185, - "_stars_per_week": 2.41, + "_age_weeks": 186, + "_stars_per_week": 2.4, + "_pop_contributor_count": 3, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "kentech" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 25, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 2, + "_pop_score": 12.62, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/mcahny/deep-video-inpainting/master/README.md", "_readme_localurl": "mcahny~deep-video-inpainting~README.md", @@ -31528,7 +47345,7 @@ "description": null, "_repopath": "polyaxon/datatile", "_reponame": "datatile", - "_stars": 443, + "_stars": 447, "_forks": 40, "_watches": 13, "_topics": [ @@ -31557,11 +47374,33 @@ "_homepage": "", "_description": "datatile: A library for managing, validating, summarizing, and visualizing data", "_organization": "polyaxon", - "_updated_at": "2022-11-24T00:00:00.000Z", - "_last_commit_date": "2022-11-09T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2016-03-25T00:00:00.000Z", - "_age_weeks": 349, + "_age_weeks": 351, "_stars_per_week": 1.27, + "_pop_contributor_count": 10, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "hospiq", + "sidhulabs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.48, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 82, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 23.52, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/polyaxon/datatile/master/README.md", "_readme_localurl": "polyaxon~datatile~README.md", @@ -31569,6 +47408,66 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, + { + "index": 375, + "category": "viz", + "githuburl": "https://github.com/vhranger/nodevectors", + "featured": null, + "links": null, + "description": null, + "_repopath": "vhranger/nodevectors", + "_reponame": "nodevectors", + "_stars": 445, + "_forks": 52, + "_watches": 11, + "_topics": [], + "_language": "Python", + "_homepage": "", + "_description": "nodevectors: Fastest network node embeddings in the west", + "_organization": "vhranger", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2021-11-06T00:00:00.000Z", + "_created_at": "2019-07-25T00:00:00.000Z", + "_age_weeks": 177, + "_stars_per_week": 2.51, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "harvardmedicalschool", + "sap" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 41, + "_pop_updated_since_days": 14, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 16.92, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/vhranger/nodevectors/master/README.md", + "_readme_localurl": "vhranger~nodevectors~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/vhranger/nodevectors/master/requirements.txt", + "https://raw.githubusercontent.com/vhranger/nodevectors/master/setup.py" + ], + "_requirements_localurls": [ + "vhranger~nodevectors~requirements.txt", + "vhranger~nodevectors~setup.py" + ] + }, { "index": 479, "category": "gis", @@ -31578,8 +47477,8 @@ "description": null, "_repopath": "holoviz/geoviews", "_reponame": "geoviews", - "_stars": 441, - "_forks": 69, + "_stars": 442, + "_forks": 67, "_watches": 30, "_topics": [ "holoviz", @@ -31593,11 +47492,32 @@ "_homepage": "http://geoviews.org", "_description": "geoviews: Simple, concise geographical visualization in Python", "_organization": "holoviz", - "_updated_at": "2022-11-18T00:00:00.000Z", - "_last_commit_date": "2022-11-18T00:00:00.000Z", + "_updated_at": "2022-12-12T00:00:00.000Z", + "_last_commit_date": "2022-12-07T00:00:00.000Z", "_created_at": "2016-04-19T00:00:00.000Z", - "_age_weeks": 346, + "_age_weeks": 347, "_stars_per_week": 1.27, + "_pop_contributor_count": 28, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "anaconda" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.69, + "_pop_updated_issues_count": 19, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 81, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 19.0, + "_pop_comment_count": 20.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 10, + "_pop_score": 38.11, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/holoviz/geoviews/master/README.md", "_readme_localurl": "holoviz~geoviews~README.md", @@ -31615,41 +47535,70 @@ ] }, { - "index": 375, - "category": "viz", - "githuburl": "https://github.com/vhranger/nodevectors", + "index": 872, + "category": "pandas", + "githuburl": "https://github.com/eventual-inc/daft", "featured": null, "links": null, "description": null, - "_repopath": "vhranger/nodevectors", - "_reponame": "nodevectors", - "_stars": 440, - "_forks": 52, - "_watches": 11, - "_topics": [], + "_repopath": "eventual-inc/daft", + "_reponame": "Daft", + "_stars": 437, + "_forks": 12, + "_watches": 6, + "_topics": [ + "image-processing", + "machine-learning", + "python", + "data-engineering", + "data-science", + "dataframe", + "deep-learning", + "distributed-computing" + ], "_language": "Python", "_homepage": "", - "_description": "nodevectors: Fastest network node embeddings in the west", - "_organization": "vhranger", - "_updated_at": "2022-11-29T00:00:00.000Z", - "_last_commit_date": "2021-11-06T00:00:00.000Z", - "_created_at": "2019-07-25T00:00:00.000Z", - "_age_weeks": 175, - "_stars_per_week": 2.5, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/vhranger/nodevectors/master/README.md", - "_readme_localurl": "vhranger~nodevectors~README.md", + "_description": "Daft: The Python DataFrame for Complex Data", + "_organization": "eventual-inc", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2022-04-25T00:00:00.000Z", + "_age_weeks": 34, + "_stars_per_week": 12.85, + "_pop_contributor_count": 5, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "eventual-inc", + "freenome", + "lyft" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 9.44, + "_pop_updated_issues_count": 199, + "_pop_closed_issues_count": 173, + "_pop_created_since_days": 8, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 27, + "_pop_recent_releases_adjusted_count": 27, + "_pop_issue_count": 199.0, + "_pop_comment_count": 41.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 7, + "_pop_score": 38.74, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/eventual-inc/daft/master/README.rst", + "_readme_localurl": "eventual-inc~daft~README.rst", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/vhranger/nodevectors/master/requirements.txt", - "https://raw.githubusercontent.com/vhranger/nodevectors/master/setup.py" + "https://raw.githubusercontent.com/eventual-inc/daft/master/pyproject.toml" ], "_requirements_localurls": [ - "vhranger~nodevectors~requirements.txt", - "vhranger~nodevectors~setup.py" + "eventual-inc~daft~pyproject.toml" ] }, { @@ -31661,7 +47610,7 @@ "description": null, "_repopath": "koaning/whatlies", "_reponame": "whatlies", - "_stars": 435, + "_stars": 436, "_forks": 49, "_watches": 13, "_topics": [ @@ -31673,11 +47622,35 @@ "_homepage": "https://koaning.github.io/whatlies/", "_description": "whatlies: Toolkit to help understand \"what lies\" in word embeddings. Also benchmarking! ", "_organization": "koaning", - "_updated_at": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2022-07-28T00:00:00.000Z", "_created_at": "2020-02-22T00:00:00.000Z", - "_age_weeks": 145, - "_stars_per_week": 2.99, + "_age_weeks": 147, + "_stars_per_week": 2.96, + "_pop_contributor_count": 13, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "explosion", + "kpmgnetherlands", + "motain", + "zalandose" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.27, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 34, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 1.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 26.78, "_readme_filename": "readme.md", "_readme_giturl": "https://raw.githubusercontent.com/koaning/whatlies/master/readme.md", "_readme_localurl": "koaning~whatlies~readme.md", @@ -31700,7 +47673,7 @@ "description": null, "_repopath": "developmentseed/label-maker", "_reponame": "label-maker", - "_stars": 434, + "_stars": 436, "_forks": 113, "_watches": 50, "_topics": [ @@ -31715,11 +47688,35 @@ "_homepage": "http://devseed.com/label-maker/", "_description": "label-maker: Data Preparation for Satellite Machine Learning", "_organization": "developmentseed", - "_updated_at": "2022-11-19T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2020-11-19T00:00:00.000Z", "_created_at": "2018-01-10T00:00:00.000Z", - "_age_weeks": 256, - "_stars_per_week": 1.7, + "_age_weeks": 257, + "_stars_per_week": 1.69, + "_pop_contributor_count": 15, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cloud-gov(work)+personalprojects;", + "developmentseed", + "planetlabs", + "regrow" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 60, + "_pop_updated_since_days": 25, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 2.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 9, + "_pop_score": 27.21, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/developmentseed/label-maker/master/README.md", "_readme_localurl": "developmentseed~label-maker~README.md", @@ -31736,6 +47733,82 @@ "developmentseed~label-maker~setup.py" ] }, + { + "index": 582, + "category": "gis", + "githuburl": "https://github.com/developmentseed/titiler", + "featured": null, + "links": null, + "description": null, + "_repopath": "developmentseed/titiler", + "_reponame": "titiler", + "_stars": 436, + "_forks": 99, + "_watches": 18, + "_topics": [ + "fastapi", + "cog", + "aws-cdk", + "aws-lambda", + "stac", + "cogeotiff", + "mosaicjson", + "raster", + "dynamic", + "server", + "rest", + "gdal", + "rasterio", + "tile", + "map-tile-server", + "map-tiles" + ], + "_language": "Python", + "_homepage": "https://developmentseed.org/titiler/", + "_description": "titiler: Build your own Raster dynamic map tile services", + "_organization": "developmentseed", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_created_at": "2019-06-28T00:00:00.000Z", + "_age_weeks": 181, + "_stars_per_week": 2.4, + "_pop_contributor_count": 28, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "developmentseed", + "ozminerals", + "satellogic", + "terradue" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.0, + "_pop_updated_issues_count": 31, + "_pop_closed_issues_count": 26, + "_pop_created_since_days": 42, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 31.0, + "_pop_comment_count": 39.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 13, + "_pop_score": 46.18, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/developmentseed/titiler/master/README.md", + "_readme_localurl": "developmentseed~titiler~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/developmentseed/titiler/master/setup.py" + ], + "_requirements_localurls": [ + "developmentseed~titiler~setup.py" + ] + }, { "index": 837, "category": "gis", @@ -31756,8 +47829,32 @@ "_updated_at": "2022-12-07T00:00:00.000Z", "_last_commit_date": "2022-10-18T00:00:00.000Z", "_created_at": "2013-09-18T00:00:00.000Z", - "_age_weeks": 481, + "_age_weeks": 482, "_stars_per_week": 0.9, + "_pop_contributor_count": 30, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "aiddata", + "ouranos", + "satellogic", + "southernmethodistuniversity" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.12, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 113, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 9.0, + "_pop_comment_count": 12.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 50, + "_pop_score": 40.67, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/README.rst", "_readme_localurl": "perrygeo~python-rasterstats~README.rst", @@ -31786,7 +47883,7 @@ "description": null, "_repopath": "joblib/loky", "_reponame": "loky", - "_stars": 432, + "_stars": 433, "_forks": 41, "_watches": 9, "_topics": [ @@ -31797,11 +47894,35 @@ "_homepage": "http://loky.readthedocs.io/en/stable/", "_description": "loky: Robust and reusable Executor for joblib", "_organization": "joblib", - "_updated_at": "2022-11-25T00:00:00.000Z", + "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2022-09-15T00:00:00.000Z", "_created_at": "2015-12-25T00:00:00.000Z", - "_age_weeks": 362, + "_age_weeks": 364, "_stars_per_week": 1.19, + "_pop_contributor_count": 16, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "inria", + "inriasaclay-parietalteam", + "scikit-learninriafoundation", + "ucl" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.0, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 85, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 6.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 59, + "_pop_score": 38.19, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/joblib/loky/master/README.md", "_readme_localurl": "joblib~loky~README.md", @@ -31815,102 +47936,6 @@ "joblib~loky~setup.py" ] }, - { - "index": 872, - "category": "pandas", - "githuburl": "https://github.com/eventual-inc/daft", - "featured": null, - "links": null, - "description": null, - "_repopath": "eventual-inc/daft", - "_reponame": "Daft", - "_stars": 431, - "_forks": 12, - "_watches": 6, - "_topics": [ - "image-processing", - "machine-learning", - "python", - "data-engineering", - "data-science", - "dataframe", - "deep-learning", - "distributed-computing" - ], - "_language": "Python", - "_homepage": "", - "_description": "Daft: The Python DataFrame for Complex Data", - "_organization": "eventual-inc", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2022-04-25T00:00:00.000Z", - "_age_weeks": 32, - "_stars_per_week": 13.35, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/eventual-inc/daft/master/README.rst", - "_readme_localurl": "eventual-inc~daft~README.rst", - "_requirements_filenames": [ - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/eventual-inc/daft/master/pyproject.toml" - ], - "_requirements_localurls": [ - "eventual-inc~daft~pyproject.toml" - ] - }, - { - "index": 582, - "category": "gis", - "githuburl": "https://github.com/developmentseed/titiler", - "featured": null, - "links": null, - "description": null, - "_repopath": "developmentseed/titiler", - "_reponame": "titiler", - "_stars": 430, - "_forks": 98, - "_watches": 18, - "_topics": [ - "fastapi", - "cog", - "aws-cdk", - "aws-lambda", - "stac", - "cogeotiff", - "mosaicjson", - "raster", - "dynamic", - "server", - "rest", - "gdal", - "rasterio", - "tile", - "map-tile-server", - "map-tiles" - ], - "_language": "Python", - "_homepage": "https://developmentseed.org/titiler/", - "_description": "titiler: Build your own Raster dynamic map tile services", - "_organization": "developmentseed", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2019-06-28T00:00:00.000Z", - "_age_weeks": 179, - "_stars_per_week": 2.39, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/developmentseed/titiler/master/README.md", - "_readme_localurl": "developmentseed~titiler~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/developmentseed/titiler/master/setup.py" - ], - "_requirements_localurls": [ - "developmentseed~titiler~setup.py" - ] - }, { "index": 863, "category": "ml-ops", @@ -31920,8 +47945,8 @@ "description": null, "_repopath": "astronomer/astronomer", "_reponame": "astronomer", - "_stars": 430, - "_forks": 77, + "_stars": 431, + "_forks": 78, "_watches": 43, "_topics": [ "apache-airflow", @@ -31933,11 +47958,33 @@ "_homepage": "https://www.astronomer.io", "_description": "astronomer: Helm Charts for the Astronomer Platform, Apache Airflow as a Service on Kubernetes", "_organization": "astronomer", - "_updated_at": "2022-11-29T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2018-01-15T00:00:00.000Z", - "_age_weeks": 255, + "_age_weeks": 257, "_stars_per_week": 1.68, + "_pop_contributor_count": 70, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "astronomer", + "cerebral" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 8.96, + "_pop_updated_issues_count": 113, + "_pop_closed_issues_count": 109, + "_pop_created_since_days": 60, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 29, + "_pop_recent_releases_estimated_tags": 69, + "_pop_recent_releases_adjusted_count": 29, + "_pop_issue_count": 112.0, + "_pop_comment_count": 78.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 133, + "_pop_score": 54.6, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/astronomer/astronomer/master/README.md", "_readme_localurl": "astronomer~astronomer~README.md", @@ -31945,41 +47992,6 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, - { - "index": 481, - "category": "sim", - "githuburl": "https://github.com/udst/urbansim", - "featured": null, - "links": null, - "description": null, - "_repopath": "udst/urbansim", - "_reponame": "urbansim", - "_stars": 419, - "_forks": 124, - "_watches": 78, - "_topics": [], - "_language": "Python", - "_homepage": "https://udst.github.io/urbansim/", - "_description": "urbansim: Platform for building statistical models of cities and regions", - "_organization": "udst", - "_updated_at": "2022-12-03T00:00:00.000Z", - "_last_commit_date": "2020-05-11T00:00:00.000Z", - "_created_at": "2013-08-15T00:00:00.000Z", - "_age_weeks": 485, - "_stars_per_week": 0.86, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/udst/urbansim/master/README.rst", - "_readme_localurl": "udst~urbansim~README.rst", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/udst/urbansim/master/setup.py" - ], - "_requirements_localurls": [ - "udst~urbansim~setup.py" - ] - }, { "index": 292, "category": "util", @@ -31989,8 +48001,8 @@ "description": null, "_repopath": "fastai/ghapi", "_reponame": "ghapi", - "_stars": 419, - "_forks": 44, + "_stars": 421, + "_forks": 45, "_watches": 8, "_topics": [ "github-api", @@ -32003,11 +48015,35 @@ "_homepage": "https://ghapi.fast.ai/", "_description": "ghapi: A delightful and complete interface to GitHub's amazing API", "_organization": "fastai", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-09-27T00:00:00.000Z", "_created_at": "2020-11-21T00:00:00.000Z", - "_age_weeks": 106, - "_stars_per_week": 3.93, + "_age_weeks": 108, + "_stars_per_week": 3.89, + "_pop_contributor_count": 16, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "fastai", + "github", + "huggingface", + "streamlit" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.17, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 25, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 10.0, + "_pop_comment_count": 7.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 21, + "_pop_score": 35.51, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/fastai/ghapi/master/README.md", "_readme_localurl": "fastai~ghapi~README.md", @@ -32021,6 +48057,66 @@ "fastai~ghapi~setup.py" ] }, + { + "index": 481, + "category": "sim", + "githuburl": "https://github.com/udst/urbansim", + "featured": null, + "links": null, + "description": null, + "_repopath": "udst/urbansim", + "_reponame": "urbansim", + "_stars": 418, + "_forks": 124, + "_watches": 78, + "_topics": [], + "_language": "Python", + "_homepage": "https://udst.github.io/urbansim/", + "_description": "urbansim: Platform for building statistical models of cities and regions", + "_organization": "udst", + "_updated_at": "2022-12-08T00:00:00.000Z", + "_last_commit_date": "2020-05-11T00:00:00.000Z", + "_created_at": "2013-08-15T00:00:00.000Z", + "_age_weeks": 487, + "_stars_per_week": 0.86, + "_pop_contributor_count": 20, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "applemontechnologies", + "google", + "populus-ai", + "populus-aimapcraftlabsoaklandanalytics", + "urbansim" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 114, + "_pop_updated_since_days": 32, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 40, + "_pop_score": 28.16, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/udst/urbansim/master/README.rst", + "_readme_localurl": "udst~urbansim~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/udst/urbansim/master/setup.py" + ], + "_requirements_localurls": [ + "udst~urbansim~setup.py" + ] + }, { "index": 188, "category": "math", @@ -32030,7 +48126,7 @@ "description": null, "_repopath": "dit/dit", "_reponame": "dit", - "_stars": 415, + "_stars": 417, "_forks": 77, "_watches": 24, "_topics": [ @@ -32041,11 +48137,32 @@ "_homepage": "http://docs.dit.io", "_description": "dit: Python package for information theory.", "_organization": "dit", - "_updated_at": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2022-07-25T00:00:00.000Z", "_created_at": "2013-09-29T00:00:00.000Z", - "_age_weeks": 479, + "_age_weeks": 481, "_stars_per_week": 0.87, + "_pop_contributor_count": 20, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.92, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 112, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 4.0, + "_pop_comment_count": 7.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 269, + "_pop_score": 36.88, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/dit/dit/master/README.rst", "_readme_localurl": "dit~dit~README.rst", @@ -32074,7 +48191,7 @@ "description": null, "_repopath": "earthlab/earthpy", "_reponame": "earthpy", - "_stars": 409, + "_stars": 412, "_forks": 149, "_watches": 22, "_topics": [ @@ -32088,11 +48205,35 @@ "_homepage": "https://earthpy.readthedocs.io", "_description": "earthpy: A package built to support working with spatial data using open source python", "_organization": "earthlab", - "_updated_at": "2022-11-27T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2021-12-20T00:00:00.000Z", "_created_at": "2018-02-20T00:00:00.000Z", - "_age_weeks": 250, + "_age_weeks": 251, "_stars_per_week": 1.64, + "_pop_contributor_count": 41, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "hydrosat", + "nvidia", + "pyupio", + "silviaterra" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 28, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 59, + "_pop_updated_since_days": 12, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 28.0, + "_pop_comment_count": 43.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 60, + "_pop_score": 41.4, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/earthlab/earthpy/master/README.md", "_readme_localurl": "earthlab~earthpy~README.md", @@ -32118,8 +48259,8 @@ "description": null, "_repopath": "bodywork-ml/bodywork-core", "_reponame": "bodywork-core", - "_stars": 407, - "_forks": 19, + "_stars": 406, + "_forks": 18, "_watches": 9, "_topics": [ "mlops", @@ -32140,11 +48281,33 @@ "_homepage": "https://bodywork.readthedocs.io/en/latest/", "_description": "bodywork-core: ML pipeline orchestration and model deployments on Kubernetes, made really easy.", "_organization": "bodywork-ml", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2022-07-04T00:00:00.000Z", "_created_at": "2020-11-17T00:00:00.000Z", - "_age_weeks": 107, - "_stars_per_week": 3.8, + "_age_weeks": 108, + "_stars_per_week": 3.73, + "_pop_contributor_count": 4, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bodywork-mllloydsbankinggroup", + "bodyworkmachinelearning" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.73, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 25, + "_pop_updated_since_days": 6, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 29, + "_pop_recent_releases_adjusted_count": 29, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 8, + "_pop_score": 25.12, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/bodywork-ml/bodywork-core/master/README.md", "_readme_localurl": "bodywork-ml~bodywork-core~README.md", @@ -32167,7 +48330,7 @@ "description": null, "_repopath": "google-research/byt5", "_reponame": "byt5", - "_stars": 403, + "_stars": 405, "_forks": 25, "_watches": 11, "_topics": [], @@ -32175,11 +48338,30 @@ "_homepage": null, "_description": "google-research/byt5", "_organization": "google-research", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-11T00:00:00.000Z", "_last_commit_date": "2022-03-02T00:00:00.000Z", "_created_at": "2021-05-26T00:00:00.000Z", - "_age_weeks": 80, - "_stars_per_week": 5.04, + "_age_weeks": 81, + "_stars_per_week": 4.96, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 19, + "_pop_updated_since_days": 10, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 5.05, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google-research/byt5/master/README.md", "_readme_localurl": "google-research~byt5~README.md", @@ -32196,19 +48378,41 @@ "description": null, "_repopath": "ethtx/ethtx", "_reponame": "ethtx", - "_stars": 391, - "_forks": 61, + "_stars": 397, + "_forks": 60, "_watches": 16, "_topics": [], "_language": "Python", "_homepage": "https://www.ethtx.info", "_description": "ethtx: Python package with core transaction decoding functions.", "_organization": "ethtx", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-12-01T00:00:00.000Z", "_created_at": "2021-06-28T00:00:00.000Z", - "_age_weeks": 75, - "_stars_per_week": 5.19, + "_age_weeks": 77, + "_stars_per_week": 5.16, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "py-world", + "tokenflowinsights" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.37, + "_pop_updated_issues_count": 23, + "_pop_closed_issues_count": 22, + "_pop_created_since_days": 18, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 17, + "_pop_recent_releases_estimated_tags": 24, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 23.0, + "_pop_comment_count": 9.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 28.7, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ethtx/ethtx/master/README.md", "_readme_localurl": "ethtx~ethtx~README.md", @@ -32234,8 +48438,8 @@ "description": null, "_repopath": "computationalmodelling/nbval", "_reponame": "nbval", - "_stars": 391, - "_forks": 51, + "_stars": 393, + "_forks": 50, "_watches": 10, "_topics": [ "ipython-notebook", @@ -32249,11 +48453,32 @@ "_homepage": "", "_description": "nbval: A py.test plugin to validate Jupyter notebooks", "_organization": "computationalmodelling", - "_updated_at": "2022-11-23T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-09-17T00:00:00.000Z", "_created_at": "2015-04-09T00:00:00.000Z", - "_age_weeks": 399, + "_age_weeks": 401, "_stars_per_week": 0.98, + "_pop_contributor_count": 31, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "mpsd&universityofsouthampton" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.21, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 94, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 5.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 44, + "_pop_score": 33.0, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/computationalmodelling/nbval/master/README.md", "_readme_localurl": "computationalmodelling~nbval~README.md", @@ -32276,7 +48501,7 @@ "description": null, "_repopath": "noxdafox/pebble", "_reponame": "pebble", - "_stars": 387, + "_stars": 389, "_forks": 45, "_watches": 10, "_topics": [ @@ -32291,11 +48516,32 @@ "_homepage": "", "_description": "pebble: Multi threading and processing eye-candy.", "_organization": "noxdafox", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-15T00:00:00.000Z", "_created_at": "2013-10-16T00:00:00.000Z", - "_age_weeks": 477, + "_age_weeks": 478, "_stars_per_week": 0.81, + "_pop_contributor_count": 14, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "getcujo" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.08, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 112, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 11.0, + "_pop_comment_count": 35.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.2, + "_pop_dependents_count": 322, + "_pop_score": 44.78, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/noxdafox/pebble/master/README.rst", "_readme_localurl": "noxdafox~pebble~README.rst", @@ -32333,8 +48579,30 @@ "_updated_at": "2022-12-05T00:00:00.000Z", "_last_commit_date": "2021-06-23T00:00:00.000Z", "_created_at": "2018-02-02T00:00:00.000Z", - "_age_weeks": 252, - "_stars_per_week": 1.53, + "_age_weeks": 254, + "_stars_per_week": 1.52, + "_pop_contributor_count": 14, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "https://snorkel.ai/", + "numbersstationai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 59, + "_pop_updated_since_days": 18, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 23, + "_pop_score": 24.86, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/hazyresearch/fonduer/master/README.rst", "_readme_localurl": "hazyresearch~fonduer~README.rst", @@ -32357,7 +48625,7 @@ "description": null, "_repopath": "carlospuenteg/file-injector", "_reponame": "File-Injector", - "_stars": 380, + "_stars": 383, "_forks": 17, "_watches": 6, "_topics": [ @@ -32382,11 +48650,30 @@ "_homepage": "", "_description": "File-Injector: File Injector is a script that allows you to store any file in an image using steganography", "_organization": "carlospuenteg", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-11-18T00:00:00.000Z", "_created_at": "2022-10-22T00:00:00.000Z", - "_age_weeks": 6, - "_stars_per_week": 57.83, + "_age_weeks": 8, + "_stars_per_week": 46.22, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.77, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 2, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 79, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 8.59, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/carlospuenteg/file-injector/master/README.md", "_readme_localurl": "carlospuenteg~file-injector~README.md", @@ -32400,45 +48687,6 @@ "carlospuenteg~file-injector~requirements.txt" ] }, - { - "index": 12, - "category": "nlp", - "githuburl": "https://github.com/dialogflow/dialogflow-python-client-v2", - "featured": null, - "links": null, - "description": null, - "_repopath": "dialogflow/dialogflow-python-client-v2", - "_reponame": "python-dialogflow", - "_stars": 378, - "_forks": 146, - "_watches": 53, - "_topics": [ - "python", - "machine-learning", - "dialogflow" - ], - "_language": "Python", - "_homepage": "https://dialogflow.com/", - "_description": "python-dialogflow: Python client for Dialogflow: Design and integrate a conversational user interface into your applications and devices.", - "_organization": "dialogflow", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-26T00:00:00.000Z", - "_created_at": "2017-10-24T00:00:00.000Z", - "_age_weeks": 267, - "_stars_per_week": 1.41, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/dialogflow/dialogflow-python-client-v2/master/README.rst", - "_readme_localurl": "dialogflow~dialogflow-python-client-v2~README.rst", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/dialogflow/dialogflow-python-client-v2/master/setup.py" - ], - "_requirements_localurls": [ - "dialogflow~dialogflow-python-client-v2~setup.py" - ] - }, { "index": 254, "category": "ml", @@ -32448,7 +48696,7 @@ "description": null, "_repopath": "amzn/pecos", "_reponame": "pecos", - "_stars": 374, + "_stars": 383, "_forks": 84, "_watches": 18, "_topics": [ @@ -32462,11 +48710,33 @@ "_homepage": "https://libpecos.org/", "_description": "PECOS - Prediction for Enormous and Correlated Spaces", "_organization": "amzn", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2020-08-12T00:00:00.000Z", - "_age_weeks": 121, - "_stars_per_week": 3.09, + "_age_weeks": 122, + "_stars_per_week": 3.12, + "_pop_contributor_count": 25, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazon", + "amazonsearchandai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.15, + "_pop_updated_issues_count": 35, + "_pop_closed_issues_count": 34, + "_pop_created_since_days": 29, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 35.0, + "_pop_comment_count": 13.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 32.36, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/amzn/pecos/master/README.md", "_readme_localurl": "amzn~pecos~README.md", @@ -32480,6 +48750,68 @@ "amzn~pecos~setup.py" ] }, + { + "index": 12, + "category": "nlp", + "githuburl": "https://github.com/dialogflow/dialogflow-python-client-v2", + "featured": null, + "links": null, + "description": null, + "_repopath": "dialogflow/dialogflow-python-client-v2", + "_reponame": "python-dialogflow", + "_stars": 379, + "_forks": 146, + "_watches": 53, + "_topics": [ + "python", + "machine-learning", + "dialogflow" + ], + "_language": "Python", + "_homepage": "https://dialogflow.com/", + "_description": "python-dialogflow: Python client for Dialogflow: Design and integrate a conversational user interface into your applications and devices.", + "_organization": "dialogflow", + "_updated_at": "2022-12-09T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_created_at": "2017-10-24T00:00:00.000Z", + "_age_weeks": 268, + "_stars_per_week": 1.41, + "_pop_contributor_count": 34, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "googleapis", + "googlecloud", + "mend" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.13, + "_pop_updated_issues_count": 31, + "_pop_closed_issues_count": 27, + "_pop_created_since_days": 63, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 31.0, + "_pop_comment_count": 27.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 49, + "_pop_score": 47.91, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/dialogflow/dialogflow-python-client-v2/master/README.rst", + "_readme_localurl": "dialogflow~dialogflow-python-client-v2~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/dialogflow/dialogflow-python-client-v2/master/setup.py" + ], + "_requirements_localurls": [ + "dialogflow~dialogflow-python-client-v2~setup.py" + ] + }, { "index": 331, "category": "ml", @@ -32489,8 +48821,8 @@ "description": null, "_repopath": "jacopotagliabue/reclist", "_reponame": "reclist", - "_stars": 369, - "_forks": 19, + "_stars": 370, + "_forks": 20, "_watches": 8, "_topics": [ "recommender-system", @@ -32501,11 +48833,33 @@ "_homepage": "", "_description": "reclist: Behavioral \"black-box\" testing for recommender systems", "_organization": "jacopotagliabue", - "_updated_at": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2022-11-03T00:00:00.000Z", "_created_at": "2021-11-08T00:00:00.000Z", - "_age_weeks": 56, - "_stars_per_week": 6.56, + "_age_weeks": 58, + "_stars_per_week": 6.38, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "digitalgreenorg", + "stanforduniversity" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.71, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 14, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 6.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 10, + "_pop_score": 27.79, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/jacopotagliabue/reclist/master/README.rst", "_readme_localurl": "jacopotagliabue~reclist~README.rst", @@ -32519,57 +48873,6 @@ "jacopotagliabue~reclist~setup.py" ] }, - { - "index": 561, - "category": "gis", - "githuburl": "https://github.com/geopandas/contextily", - "featured": null, - "links": null, - "description": null, - "_repopath": "geopandas/contextily", - "_reponame": "contextily", - "_stars": 366, - "_forks": 66, - "_watches": 14, - "_topics": [ - "tiles", - "stamen", - "openstreetmap", - "python", - "tile", - "mapping", - "webtiles", - "geography", - "cartography", - "matplotlib", - "osm", - "stamen-maps" - ], - "_language": "Jupyter Notebook", - "_homepage": "https://contextily.readthedocs.io/en/latest/", - "_description": "contextily: Context geo-tiles in Python", - "_organization": "geopandas", - "_updated_at": "2022-11-22T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", - "_created_at": "2016-09-08T00:00:00.000Z", - "_age_weeks": 325, - "_stars_per_week": 1.12, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/geopandas/contextily/master/README.md", - "_readme_localurl": "geopandas~contextily~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/geopandas/contextily/master/requirements.txt", - "https://raw.githubusercontent.com/geopandas/contextily/master/setup.py" - ], - "_requirements_localurls": [ - "geopandas~contextily~requirements.txt", - "geopandas~contextily~setup.py" - ] - }, { "index": 803, "category": "util", @@ -32579,19 +48882,43 @@ "description": null, "_repopath": "open-telemetry/opentelemetry-python-contrib", "_reponame": "opentelemetry-python-contrib", - "_stars": 363, - "_forks": 275, + "_stars": 369, + "_forks": 277, "_watches": 14, "_topics": [], "_language": "Python", "_homepage": "https://opentelemetry.io", "_description": "opentelemetry-python-contrib: OpenTelemetry instrumentation for Python modules", "_organization": "open-telemetry", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2019-11-08T00:00:00.000Z", - "_age_weeks": 160, - "_stars_per_week": 2.26, + "_age_weeks": 162, + "_stars_per_week": 2.27, + "_pop_contributor_count": 167, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "lightstep", + "microsoftcorporation", + "signoz.io", + "splunk" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.38, + "_pop_updated_issues_count": 246, + "_pop_closed_issues_count": 164, + "_pop_created_since_days": 38, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 246.0, + "_pop_comment_count": 335.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 35, + "_pop_score": 56.1, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/open-telemetry/opentelemetry-python-contrib/master/README.md", "_readme_localurl": "open-telemetry~opentelemetry-python-contrib~README.md", @@ -32614,8 +48941,8 @@ "description": null, "_repopath": "cogeotiff/rio-tiler", "_reponame": "rio-tiler", - "_stars": 362, - "_forks": 84, + "_stars": 369, + "_forks": 86, "_watches": 65, "_topics": [ "satellite", @@ -32634,11 +48961,34 @@ "_homepage": "https://cogeotiff.github.io/rio-tiler/", "_description": "rio-tiler: User friendly Rasterio plugin to read raster datasets.", "_organization": "cogeotiff", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-11-28T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2017-10-06T00:00:00.000Z", - "_age_weeks": 269, - "_stars_per_week": 1.34, + "_age_weeks": 271, + "_stars_per_week": 1.36, + "_pop_contributor_count": 21, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amskepler", + "angloamerican", + "developmentseed" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.19, + "_pop_updated_issues_count": 47, + "_pop_closed_issues_count": 46, + "_pop_created_since_days": 63, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 23, + "_pop_recent_releases_adjusted_count": 23, + "_pop_issue_count": 47.0, + "_pop_comment_count": 50.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 10, + "_pop_score": 45.33, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/cogeotiff/rio-tiler/master/README.md", "_readme_localurl": "cogeotiff~rio-tiler~README.md", @@ -32656,43 +49006,200 @@ ] }, { - "index": 185, - "category": "math", - "githuburl": "https://github.com/willianfuks/tfcausalimpact", + "index": 185, + "category": "math", + "githuburl": "https://github.com/willianfuks/tfcausalimpact", + "featured": null, + "links": null, + "description": null, + "_repopath": "willianfuks/tfcausalimpact", + "_reponame": "tfcausalimpact", + "_stars": 366, + "_forks": 51, + "_watches": 10, + "_topics": [ + "causalimpact", + "tensorflow-probability", + "python", + "causal-inference" + ], + "_language": "Python", + "_homepage": "", + "_description": "tfcausalimpact: Python Causal Impact Implementation Based on Google's R Package. Built using TensorFlow Probability.", + "_organization": "willianfuks", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-10-07T00:00:00.000Z", + "_created_at": "2020-08-17T00:00:00.000Z", + "_age_weeks": 122, + "_stars_per_week": 3.0, + "_pop_contributor_count": 3, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "epfl" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.19, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 28, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 7.0, + "_pop_comment_count": 17.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 0, + "_pop_score": 24.39, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/willianfuks/tfcausalimpact/master/README.md", + "_readme_localurl": "willianfuks~tfcausalimpact~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/willianfuks/tfcausalimpact/master/setup.py" + ], + "_requirements_localurls": [ + "willianfuks~tfcausalimpact~setup.py" + ] + }, + { + "index": 561, + "category": "gis", + "githuburl": "https://github.com/geopandas/contextily", + "featured": null, + "links": null, + "description": null, + "_repopath": "geopandas/contextily", + "_reponame": "contextily", + "_stars": 366, + "_forks": 66, + "_watches": 14, + "_topics": [ + "tiles", + "stamen", + "openstreetmap", + "python", + "tile", + "mapping", + "webtiles", + "geography", + "cartography", + "matplotlib", + "osm", + "stamen-maps" + ], + "_language": "Jupyter Notebook", + "_homepage": "https://contextily.readthedocs.io/en/latest/", + "_description": "contextily: Context geo-tiles in Python", + "_organization": "geopandas", + "_updated_at": "2022-11-22T00:00:00.000Z", + "_last_commit_date": "2022-11-30T00:00:00.000Z", + "_created_at": "2016-09-08T00:00:00.000Z", + "_age_weeks": 327, + "_stars_per_week": 1.12, + "_pop_contributor_count": 18, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "geogbristol", + "nordsoftware", + "ornl" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.08, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 76, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 7.0, + "_pop_comment_count": 6.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 3, + "_pop_score": 32.38, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/geopandas/contextily/master/README.md", + "_readme_localurl": "geopandas~contextily~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/geopandas/contextily/master/requirements.txt", + "https://raw.githubusercontent.com/geopandas/contextily/master/setup.py" + ], + "_requirements_localurls": [ + "geopandas~contextily~requirements.txt", + "geopandas~contextily~setup.py" + ] + }, + { + "index": 522, + "category": "gis", + "githuburl": "https://github.com/pygeos/pygeos", "featured": null, "links": null, "description": null, - "_repopath": "willianfuks/tfcausalimpact", - "_reponame": "tfcausalimpact", + "_repopath": "pygeos/pygeos", + "_reponame": "pygeos", "_stars": 361, - "_forks": 49, - "_watches": 9, - "_topics": [ - "causalimpact", - "tensorflow-probability", - "python", - "causal-inference" - ], + "_forks": 37, + "_watches": 16, + "_topics": [], "_language": "Python", - "_homepage": "", - "_description": "tfcausalimpact: Python Causal Impact Implementation Based on Google's R Package. Built using TensorFlow Probability.", - "_organization": "willianfuks", - "_updated_at": "2022-11-25T00:00:00.000Z", - "_last_commit_date": "2022-10-07T00:00:00.000Z", - "_created_at": "2020-08-17T00:00:00.000Z", - "_age_weeks": 120, - "_stars_per_week": 3.0, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/willianfuks/tfcausalimpact/master/README.md", - "_readme_localurl": "willianfuks~tfcausalimpact~README.md", + "_homepage": "https://pygeos.readthedocs.io", + "_description": "pygeos: Wraps GEOS geometry functions in numpy ufuncs.", + "_organization": "pygeos", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", + "_created_at": "2019-06-10T00:00:00.000Z", + "_age_weeks": 184, + "_stars_per_week": 1.96, + "_pop_contributor_count": 13, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "adonmo(adonmo)", + "astutespruce", + "gnsscience", + "nelen&schuurmans" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.19, + "_pop_updated_issues_count": 21, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 43, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 21.0, + "_pop_comment_count": 14.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 321, + "_pop_score": 43.6, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pygeos/pygeos/master/README.rst", + "_readme_localurl": "pygeos~pygeos~README.rst", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/willianfuks/tfcausalimpact/master/setup.py" + "https://raw.githubusercontent.com/pygeos/pygeos/master/setup.py", + "https://raw.githubusercontent.com/pygeos/pygeos/master/pyproject.toml" ], "_requirements_localurls": [ - "willianfuks~tfcausalimpact~setup.py" + "pygeos~pygeos~setup.py", + "pygeos~pygeos~pyproject.toml" ] }, { @@ -32718,11 +49225,33 @@ "_homepage": "https://foss.heptapod.net/pypy/pypy", "_description": "pypy: The unofficial GitHub mirror of PyPy", "_organization": "mozillazg", - "_updated_at": "2022-12-03T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2015-08-03T00:00:00.000Z", - "_age_weeks": 383, + "_age_weeks": 385, "_stars_per_week": 0.93, + "_pop_contributor_count": 374, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "pypy,baroquesoftware", + "quansightlabs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 13.0, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 90, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 22, + "_pop_recent_releases_adjusted_count": 22, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 3, + "_pop_score": 45.88, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/mozillazg/pypy/master/README.rst", "_readme_localurl": "mozillazg~pypy~README.rst", @@ -32736,44 +49265,6 @@ "mozillazg~pypy~requirements.txt" ] }, - { - "index": 522, - "category": "gis", - "githuburl": "https://github.com/pygeos/pygeos", - "featured": null, - "links": null, - "description": null, - "_repopath": "pygeos/pygeos", - "_reponame": "pygeos", - "_stars": 358, - "_forks": 37, - "_watches": 15, - "_topics": [], - "_language": "Python", - "_homepage": "https://pygeos.readthedocs.io", - "_description": "pygeos: Wraps GEOS geometry functions in numpy ufuncs.", - "_organization": "pygeos", - "_updated_at": "2022-12-04T00:00:00.000Z", - "_last_commit_date": "2022-08-25T00:00:00.000Z", - "_created_at": "2019-06-10T00:00:00.000Z", - "_age_weeks": 182, - "_stars_per_week": 1.96, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pygeos/pygeos/master/README.rst", - "_readme_localurl": "pygeos~pygeos~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pygeos/pygeos/master/setup.py", - "https://raw.githubusercontent.com/pygeos/pygeos/master/pyproject.toml" - ], - "_requirements_localurls": [ - "pygeos~pygeos~setup.py", - "pygeos~pygeos~pyproject.toml" - ] - }, { "index": 496, "category": "ml", @@ -32783,7 +49274,7 @@ "description": null, "_repopath": "linkedin/fasttreeshap", "_reponame": "FastTreeSHAP", - "_stars": 354, + "_stars": 358, "_forks": 22, "_watches": 6, "_topics": [ @@ -32799,11 +49290,32 @@ "_homepage": "", "_description": "FastTreeSHAP: Fast SHAP value computation for interpreting tree-based models", "_organization": "linkedin", - "_updated_at": "2022-11-29T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-11-29T00:00:00.000Z", "_created_at": "2022-01-24T00:00:00.000Z", - "_age_weeks": 45, - "_stars_per_week": 7.82, + "_age_weeks": 47, + "_stars_per_week": 7.62, + "_pop_contributor_count": 3, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "linkedincorporation" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.23, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 11, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 7.0, + "_pop_comment_count": 11.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 20.7, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/linkedin/fasttreeshap/master/README.md", "_readme_localurl": "linkedin~fasttreeshap~README.md", @@ -32832,8 +49344,8 @@ "description": null, "_repopath": "researchmm/sttn", "_reponame": "STTN", - "_stars": 354, - "_forks": 69, + "_stars": 355, + "_forks": 70, "_watches": 20, "_topics": [ "video-inpainting", @@ -32845,11 +49357,30 @@ "_homepage": "https://arxiv.org/abs/2007.10247", "_description": "[ECCV'2020] STTN: Learning Joint Spatial-Temporal Transformations for Video Inpainting", "_organization": "researchmm", - "_updated_at": "2022-11-30T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2021-07-26T00:00:00.000Z", "_created_at": "2020-07-10T00:00:00.000Z", - "_age_weeks": 125, - "_stars_per_week": 2.82, + "_age_weeks": 127, + "_stars_per_week": 2.79, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 30, + "_pop_updated_since_days": 17, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 7.79, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/researchmm/sttn/master/README.md", "_readme_localurl": "researchmm~sttn~README.md", @@ -32867,7 +49398,7 @@ "_repopath": "scikit-geometry/scikit-geometry", "_reponame": "scikit-geometry", "_stars": 354, - "_forks": 47, + "_forks": 49, "_watches": 13, "_topics": [ "cgal", @@ -32883,8 +49414,33 @@ "_updated_at": "2022-11-28T00:00:00.000Z", "_last_commit_date": "2022-10-14T00:00:00.000Z", "_created_at": "2016-03-28T00:00:00.000Z", - "_age_weeks": 349, + "_age_weeks": 351, "_stars_per_week": 1.01, + "_pop_contributor_count": 15, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ambirobotics", + "leipziguniversity", + "prefix.devgmbh", + "resonance", + "westpac" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 82, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 6.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 4, + "_pop_score": 31.19, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/scikit-geometry/scikit-geometry/master/README.md", "_readme_localurl": "scikit-geometry~scikit-geometry~README.md", @@ -32907,8 +49463,8 @@ "description": null, "_repopath": "samuela/git-re-basin", "_reponame": "git-re-basin", - "_stars": 344, - "_forks": 27, + "_stars": 349, + "_forks": 29, "_watches": 4, "_topics": [ "deep-learning", @@ -32921,11 +49477,30 @@ "_homepage": "https://arxiv.org/abs/2209.04836", "_description": "git-re-basin: Code release for \"Git Re-Basin: Merging Models modulo Permutation Symmetries\"", "_organization": "samuela", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-10-12T00:00:00.000Z", "_created_at": "2022-09-13T00:00:00.000Z", - "_age_weeks": 12, - "_stars_per_week": 28.33, + "_age_weeks": 13, + "_stars_per_week": 25.19, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.44, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 3, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 8.0, + "_pop_comment_count": 52.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 6.5, + "_pop_dependents_count": 0, + "_pop_score": 13.79, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/samuela/git-re-basin/master/README.md", "_readme_localurl": "samuela~git-re-basin~README.md", @@ -32942,7 +49517,7 @@ "description": null, "_repopath": "paperswithcode/axcell", "_reponame": "axcell", - "_stars": 343, + "_stars": 344, "_forks": 51, "_watches": 13, "_topics": [], @@ -32950,11 +49525,33 @@ "_homepage": "", "_description": "axcell: Tools for extracting tables and results from Machine Learning papers", "_organization": "paperswithcode", - "_updated_at": "2022-11-30T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2021-06-23T00:00:00.000Z", "_created_at": "2019-06-27T00:00:00.000Z", - "_age_weeks": 179, - "_stars_per_week": 1.91, + "_age_weeks": 181, + "_stars_per_week": 1.89, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ukplab,tudarmstadt", + "xyzlab" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 42, + "_pop_updated_since_days": 18, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 13.62, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/paperswithcode/axcell/master/README.md", "_readme_localurl": "paperswithcode~axcell~README.md", @@ -32977,7 +49574,7 @@ "description": null, "_repopath": "pysal/momepy", "_reponame": "momepy", - "_stars": 341, + "_stars": 343, "_forks": 46, "_watches": 16, "_topics": [ @@ -32992,11 +49589,33 @@ "_homepage": "https://docs.momepy.org", "_description": "momepy: Urban Morphology Measuring Toolkit", "_organization": "pysal", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-10-17T00:00:00.000Z", "_created_at": "2018-03-30T00:00:00.000Z", - "_age_weeks": 244, + "_age_weeks": 246, "_stars_per_week": 1.39, + "_pop_contributor_count": 10, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ornl", + "udl-ai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.1, + "_pop_updated_issues_count": 29, + "_pop_closed_issues_count": 19, + "_pop_created_since_days": 57, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 29.0, + "_pop_comment_count": 68.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 39, + "_pop_score": 39.12, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pysal/momepy/master/README.md", "_readme_localurl": "pysal~momepy~README.md", @@ -33017,91 +49636,137 @@ ] }, { - "index": 340, - "category": "term", - "githuburl": "https://github.com/federicoceratto/dashing", + "index": 560, + "category": "gis", + "githuburl": "https://github.com/corteva/rioxarray", "featured": null, "links": null, "description": null, - "_repopath": "federicoceratto/dashing", - "_reponame": "dashing", - "_stars": 337, - "_forks": 30, - "_watches": 9, + "_repopath": "corteva/rioxarray", + "_reponame": "rioxarray", + "_stars": 342, + "_forks": 56, + "_watches": 12, "_topics": [ + "gis", + "rasterio", + "xarray", + "geospatial", "python", - "python3", - "terminal", - "dashboard", - "terminal-based", - "gauges", - "charts" + "gdal", + "raster", + "netcdf", + "hacktoberfest" ], "_language": "Python", - "_homepage": "https://dashing.readthedocs.io/en/latest/", - "_description": "dashing: Terminal dashboards for Python", - "_organization": "federicoceratto", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2020-09-06T00:00:00.000Z", - "_created_at": "2017-06-03T00:00:00.000Z", - "_age_weeks": 287, - "_stars_per_week": 1.17, - "_readme_filename": "README.adoc", - "_readme_giturl": "https://raw.githubusercontent.com/federicoceratto/dashing/master/README.adoc", - "_readme_localurl": "federicoceratto~dashing~README.adoc", + "_homepage": "https://corteva.github.io/rioxarray", + "_description": "rioxarray: geospatial xarray extension powered by rasterio", + "_organization": "corteva", + "_updated_at": "2022-12-13T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", + "_created_at": "2019-04-16T00:00:00.000Z", + "_age_weeks": 191, + "_stars_per_week": 1.78, + "_pop_contributor_count": 26, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "corteva", + "dtn", + "gnsscience", + "quantstack", + "smhi" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.5, + "_pop_updated_issues_count": 43, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 45, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 16, + "_pop_recent_releases_estimated_tags": 16, + "_pop_recent_releases_adjusted_count": 16, + "_pop_issue_count": 43.0, + "_pop_comment_count": 75.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 3, + "_pop_score": 45.93, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/corteva/rioxarray/master/README.rst", + "_readme_localurl": "corteva~rioxarray~README.rst", "_requirements_filenames": [ - "requirements.txt", "setup.py", - "Pipfile" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/federicoceratto/dashing/master/requirements.txt", - "https://raw.githubusercontent.com/federicoceratto/dashing/master/setup.py", - "https://raw.githubusercontent.com/federicoceratto/dashing/master/Pipfile" + "https://raw.githubusercontent.com/corteva/rioxarray/master/setup.py", + "https://raw.githubusercontent.com/corteva/rioxarray/master/pyproject.toml" ], "_requirements_localurls": [ - "federicoceratto~dashing~requirements.txt", - "federicoceratto~dashing~setup.py", - "federicoceratto~dashing~Pipfile" + "corteva~rioxarray~setup.py", + "corteva~rioxarray~pyproject.toml" ] }, { - "index": 563, - "category": "gis", - "githuburl": "https://github.com/geopandas/dask-geopandas", + "index": 786, + "category": "util", + "githuburl": "https://github.com/gefyrahq/gefyra", "featured": null, "links": null, "description": null, - "_repopath": "geopandas/dask-geopandas", - "_reponame": "dask-geopandas", - "_stars": 336, - "_forks": 32, - "_watches": 23, - "_topics": [], - "_language": "Python", - "_homepage": "https://dask-geopandas.readthedocs.io/", - "_description": "dask-geopandas: Parallel GeoPandas with Dask", - "_organization": "geopandas", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-08-28T00:00:00.000Z", - "_created_at": "2020-02-13T00:00:00.000Z", - "_age_weeks": 146, - "_stars_per_week": 2.29, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/geopandas/dask-geopandas/master/README.rst", - "_readme_localurl": "geopandas~dask-geopandas~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/geopandas/dask-geopandas/master/setup.py", - "https://raw.githubusercontent.com/geopandas/dask-geopandas/master/pyproject.toml" + "_repopath": "gefyrahq/gefyra", + "_reponame": "gefyra", + "_stars": 339, + "_forks": 22, + "_watches": 6, + "_topics": [ + "kubernetes", + "development", + "developer-tool", + "containers", + "coding", + "tunnel", + "docker", + "k8s" ], - "_requirements_localurls": [ - "geopandas~dask-geopandas~setup.py", - "geopandas~dask-geopandas~pyproject.toml" - ] + "_language": "Python", + "_homepage": "https://gefyra.dev", + "_description": "gefyra: Blazingly-fast :rocket:, rock-solid, local application development :arrow_right: with Kubernetes.", + "_organization": "gefyrahq", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2021-11-18T00:00:00.000Z", + "_age_weeks": 56, + "_stars_per_week": 5.99, + "_pop_contributor_count": 13, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "blueshoe", + "blueshoeunikubehq" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.1, + "_pop_updated_issues_count": 131, + "_pop_closed_issues_count": 114, + "_pop_created_since_days": 13, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 44, + "_pop_recent_releases_estimated_tags": 47, + "_pop_recent_releases_adjusted_count": 44, + "_pop_issue_count": 131.0, + "_pop_comment_count": 200.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 3, + "_pop_score": 41.62, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/gefyrahq/gefyra/master/README.md", + "_readme_localurl": "gefyrahq~gefyra~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { "index": 335, @@ -33112,8 +49777,8 @@ "description": null, "_repopath": "mrdbourke/m1-machine-learning-test", "_reponame": "m1-machine-learning-test", - "_stars": 336, - "_forks": 99, + "_stars": 339, + "_forks": 101, "_watches": 12, "_topics": [ "tensorflow", @@ -33125,11 +49790,30 @@ "_homepage": "", "_description": "m1-machine-learning-test: Code for testing various M1 Chip benchmarks with TensorFlow.", "_organization": "mrdbourke", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-07-16T00:00:00.000Z", "_created_at": "2021-11-14T00:00:00.000Z", - "_age_weeks": 55, - "_stars_per_week": 6.06, + "_age_weeks": 57, + "_stars_per_week": 5.93, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.06, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 13, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 12, + "_pop_score": 10.29, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/mrdbourke/m1-machine-learning-test/master/README.md", "_readme_localurl": "mrdbourke~m1-machine-learning-test~README.md", @@ -33137,6 +49821,140 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, + { + "index": 848, + "category": "gis", + "githuburl": "https://github.com/mapbox/mercantile", + "featured": null, + "links": null, + "description": null, + "_repopath": "mapbox/mercantile", + "_reponame": "mercantile", + "_stars": 338, + "_forks": 62, + "_watches": 116, + "_topics": [ + "satellite", + "pxm", + "imagery" + ], + "_language": "Python", + "_homepage": null, + "_description": "mercantile: Spherical mercator tile and coordinate utilities", + "_organization": "mapbox", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2021-10-22T00:00:00.000Z", + "_created_at": "2014-02-12T00:00:00.000Z", + "_age_weeks": 461, + "_stars_per_week": 0.73, + "_pop_contributor_count": 20, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "planetlabs", + "tudresden" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 108, + "_pop_updated_since_days": 14, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 3.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 111, + "_pop_score": 30.96, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/mapbox/mercantile/master/README.rst", + "_readme_localurl": "mapbox~mercantile~README.rst", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/mapbox/mercantile/master/requirements.txt", + "https://raw.githubusercontent.com/mapbox/mercantile/master/setup.py" + ], + "_requirements_localurls": [ + "mapbox~mercantile~requirements.txt", + "mapbox~mercantile~setup.py" + ] + }, + { + "index": 340, + "category": "term", + "githuburl": "https://github.com/federicoceratto/dashing", + "featured": null, + "links": null, + "description": null, + "_repopath": "federicoceratto/dashing", + "_reponame": "dashing", + "_stars": 338, + "_forks": 30, + "_watches": 9, + "_topics": [ + "python", + "python3", + "terminal", + "dashboard", + "terminal-based", + "gauges", + "charts" + ], + "_language": "Python", + "_homepage": "https://dashing.readthedocs.io/en/latest/", + "_description": "dashing: Terminal dashboards for Python", + "_organization": "federicoceratto", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2020-09-06T00:00:00.000Z", + "_created_at": "2017-06-03T00:00:00.000Z", + "_age_weeks": 289, + "_stars_per_week": 1.17, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ooni/torproject/debian" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 67, + "_pop_updated_since_days": 28, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 9.0, + "_readme_filename": "README.adoc", + "_readme_giturl": "https://raw.githubusercontent.com/federicoceratto/dashing/master/README.adoc", + "_readme_localurl": "federicoceratto~dashing~README.adoc", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "Pipfile" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/federicoceratto/dashing/master/requirements.txt", + "https://raw.githubusercontent.com/federicoceratto/dashing/master/setup.py", + "https://raw.githubusercontent.com/federicoceratto/dashing/master/Pipfile" + ], + "_requirements_localurls": [ + "federicoceratto~dashing~requirements.txt", + "federicoceratto~dashing~setup.py", + "federicoceratto~dashing~Pipfile" + ] + }, { "index": 158, "category": "jupyter", @@ -33146,7 +49964,7 @@ "description": null, "_repopath": "nteract/testbook", "_reponame": "testbook", - "_stars": 335, + "_stars": 336, "_forks": 34, "_watches": 15, "_topics": [ @@ -33161,11 +49979,35 @@ "_homepage": "https://testbook.readthedocs.io", "_description": "testbook: \ud83e\uddea \ud83d\udcd7 Unit test your Jupyter Notebooks the right way", "_organization": "nteract", - "_updated_at": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2022-11-29T00:00:00.000Z", "_created_at": "2020-02-26T00:00:00.000Z", - "_age_weeks": 145, - "_stars_per_week": 2.31, + "_age_weeks": 146, + "_stars_per_week": 2.29, + "_pop_contributor_count": 15, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "noteable-io", + "quantstack", + "seaspancorporation", + "willingconsulting" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 34, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 5.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 5, + "_pop_score": 33.99, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/nteract/testbook/master/README.md", "_readme_localurl": "nteract~testbook~README.md", @@ -33186,93 +50028,65 @@ ] }, { - "index": 848, - "category": "gis", - "githuburl": "https://github.com/mapbox/mercantile", - "featured": null, - "links": null, - "description": null, - "_repopath": "mapbox/mercantile", - "_reponame": "mercantile", - "_stars": 334, - "_forks": 62, - "_watches": 117, - "_topics": [ - "satellite", - "pxm", - "imagery" - ], - "_language": "Python", - "_homepage": null, - "_description": "mercantile: Spherical mercator tile and coordinate utilities", - "_organization": "mapbox", - "_updated_at": "2022-12-02T00:00:00.000Z", - "_last_commit_date": "2021-10-22T00:00:00.000Z", - "_created_at": "2014-02-12T00:00:00.000Z", - "_age_weeks": 460, - "_stars_per_week": 0.73, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/mapbox/mercantile/master/README.rst", - "_readme_localurl": "mapbox~mercantile~README.rst", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/mapbox/mercantile/master/requirements.txt", - "https://raw.githubusercontent.com/mapbox/mercantile/master/setup.py" - ], - "_requirements_localurls": [ - "mapbox~mercantile~requirements.txt", - "mapbox~mercantile~setup.py" - ] - }, - { - "index": 560, + "index": 563, "category": "gis", - "githuburl": "https://github.com/corteva/rioxarray", + "githuburl": "https://github.com/geopandas/dask-geopandas", "featured": null, "links": null, "description": null, - "_repopath": "corteva/rioxarray", - "_reponame": "rioxarray", - "_stars": 333, - "_forks": 56, - "_watches": 12, - "_topics": [ - "gis", - "rasterio", - "xarray", - "geospatial", - "python", - "gdal", - "raster", - "netcdf", - "hacktoberfest" - ], + "_repopath": "geopandas/dask-geopandas", + "_reponame": "dask-geopandas", + "_stars": 336, + "_forks": 34, + "_watches": 23, + "_topics": [], "_language": "Python", - "_homepage": "https://corteva.github.io/rioxarray", - "_description": "rioxarray: geospatial xarray extension powered by rasterio", - "_organization": "corteva", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", - "_created_at": "2019-04-16T00:00:00.000Z", - "_age_weeks": 190, - "_stars_per_week": 1.75, + "_homepage": "https://dask-geopandas.readthedocs.io/", + "_description": "dask-geopandas: Parallel GeoPandas with Dask", + "_organization": "geopandas", + "_updated_at": "2022-12-12T00:00:00.000Z", + "_last_commit_date": "2022-08-28T00:00:00.000Z", + "_created_at": "2020-02-13T00:00:00.000Z", + "_age_weeks": 148, + "_stars_per_week": 2.26, + "_pop_contributor_count": 16, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "azavea", + "mr", + "sylveraio", + "udl-ai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.1, + "_pop_updated_issues_count": 13, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 35, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 13.0, + "_pop_comment_count": 23.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 32.69, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/corteva/rioxarray/master/README.rst", - "_readme_localurl": "corteva~rioxarray~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/geopandas/dask-geopandas/master/README.rst", + "_readme_localurl": "geopandas~dask-geopandas~README.rst", "_requirements_filenames": [ "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/corteva/rioxarray/master/setup.py", - "https://raw.githubusercontent.com/corteva/rioxarray/master/pyproject.toml" + "https://raw.githubusercontent.com/geopandas/dask-geopandas/master/setup.py", + "https://raw.githubusercontent.com/geopandas/dask-geopandas/master/pyproject.toml" ], "_requirements_localurls": [ - "corteva~rioxarray~setup.py", - "corteva~rioxarray~pyproject.toml" + "geopandas~dask-geopandas~setup.py", + "geopandas~dask-geopandas~pyproject.toml" ] }, { @@ -33284,19 +50098,40 @@ "description": null, "_repopath": "dmarx/psaw", "_reponame": "psaw", - "_stars": 331, - "_forks": 45, + "_stars": 333, + "_forks": 46, "_watches": 9, "_topics": [], "_language": "Python", "_homepage": null, "_description": "psaw: Python Pushshift.io API Wrapper (for comment/submission search)", "_organization": "dmarx", - "_updated_at": "2022-11-17T00:00:00.000Z", + "_updated_at": "2022-12-12T00:00:00.000Z", "_last_commit_date": "2022-07-09T00:00:00.000Z", "_created_at": "2018-04-15T00:00:00.000Z", - "_age_weeks": 242, - "_stars_per_week": 1.37, + "_age_weeks": 244, + "_stars_per_week": 1.36, + "_pop_contributor_count": 8, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "stability.ai,eleuther.ai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 57, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 4, + "_pop_score": 18.47, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/dmarx/psaw/master/README.rst", "_readme_localurl": "dmarx~psaw~README.rst", @@ -33320,7 +50155,7 @@ "_repopath": "sciunto-org/python-bibtexparser", "_reponame": "python-bibtexparser", "_stars": 330, - "_forks": 116, + "_forks": 117, "_watches": 16, "_topics": [ "bibtex", @@ -33333,11 +50168,35 @@ "_homepage": "https://bibtexparser.readthedocs.io", "_description": "python-bibtexparser: Bibtex parser for Python 3", "_organization": "sciunto-org", - "_updated_at": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2022-10-20T00:00:00.000Z", "_created_at": "2013-01-05T00:00:00.000Z", - "_age_weeks": 517, + "_age_weeks": 519, "_stars_per_week": 0.64, + "_pop_contributor_count": 45, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "paris-saclayuniversity", + "quicksign", + "ruhruniversitybochum", + "universit\u00e0dellasvizzeraitaliana(testingautomated-usi)" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.6, + "_pop_updated_issues_count": 41, + "_pop_closed_issues_count": 24, + "_pop_created_since_days": 121, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 41.0, + "_pop_comment_count": 37.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 35, + "_pop_score": 44.26, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/sciunto-org/python-bibtexparser/master/README.rst", "_readme_localurl": "sciunto-org~python-bibtexparser~README.rst", @@ -33363,8 +50222,8 @@ "description": null, "_repopath": "salesforce/warp-drive", "_reponame": "warp-drive", - "_stars": 328, - "_forks": 57, + "_stars": 329, + "_forks": 58, "_watches": 12, "_topics": [ "reinforcement-learning", @@ -33380,11 +50239,32 @@ "_homepage": "", "_description": "warp-drive: Extremely Fast End-to-End Deep Multi-Agent Reinforcement Learning Framework on a GPU", "_organization": "salesforce", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-12-02T00:00:00.000Z", "_created_at": "2021-08-25T00:00:00.000Z", - "_age_weeks": 67, - "_stars_per_week": 4.9, + "_age_weeks": 68, + "_stars_per_week": 4.79, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "salesforceresearch" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.21, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 16, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 14.0, + "_pop_comment_count": 11.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 15, + "_pop_score": 29.49, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/salesforce/warp-drive/master/README.md", "_readme_localurl": "salesforce~warp-drive~README.md", @@ -33410,19 +50290,40 @@ "description": null, "_repopath": "rasbt/stat451-machine-learning-fs20", "_reponame": "stat451-machine-learning-fs20", - "_stars": 326, - "_forks": 177, + "_stars": 327, + "_forks": 176, "_watches": 18, "_topics": [], "_language": "Jupyter Notebook", "_homepage": null, "_description": "stat451-machine-learning-fs20: STAT 451: Intro to Machine Learning @ UW-Madison (Fall 2020)", "_organization": "rasbt", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-07T00:00:00.000Z", "_last_commit_date": "2020-12-03T00:00:00.000Z", "_created_at": "2020-08-06T00:00:00.000Z", - "_age_weeks": 121, - "_stars_per_week": 2.68, + "_age_weeks": 123, + "_stars_per_week": 2.65, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "lightning-ai,universityofwisconsin-madison" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 29, + "_pop_updated_since_days": 25, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 2, + "_pop_score": 7.64, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/rasbt/stat451-machine-learning-fs20/master/README.md", "_readme_localurl": "rasbt~stat451-machine-learning-fs20~README.md", @@ -33430,44 +50331,6 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, - { - "index": 786, - "category": "util", - "githuburl": "https://github.com/gefyrahq/gefyra", - "featured": null, - "links": null, - "description": null, - "_repopath": "gefyrahq/gefyra", - "_reponame": "gefyra", - "_stars": 326, - "_forks": 22, - "_watches": 6, - "_topics": [ - "kubernetes", - "development", - "developer-tool", - "containers", - "coding", - "tunnel", - "docker", - "k8s" - ], - "_language": "Python", - "_homepage": "https://gefyra.dev", - "_description": "gefyra: Blazingly-fast :rocket:, rock-solid, local application development :arrow_right: with Kubernetes.", - "_organization": "gefyrahq", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-11-27T00:00:00.000Z", - "_created_at": "2021-11-18T00:00:00.000Z", - "_age_weeks": 54, - "_stars_per_week": 5.94, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/gefyrahq/gefyra/master/README.md", - "_readme_localurl": "gefyrahq~gefyra~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 747, "category": "study", @@ -33477,7 +50340,7 @@ "description": null, "_repopath": "bayesianmodelingandcomputationinpython/bookcode_edition1", "_reponame": "BookCode_Edition1", - "_stars": 324, + "_stars": 326, "_forks": 75, "_watches": 13, "_topics": [], @@ -33485,11 +50348,33 @@ "_homepage": "https://www.bayesiancomputationbook.com", "_description": "bayesianmodelingandcomputationinpython/bookcode_edition1", "_organization": "bayesianmodelingandcomputationinpython", - "_updated_at": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-09-20T00:00:00.000Z", "_created_at": "2021-08-17T00:00:00.000Z", - "_age_weeks": 68, - "_stars_per_week": 4.75, + "_age_weeks": 69, + "_stars_per_week": 4.67, + "_pop_contributor_count": 10, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "imasl-conicet" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.69, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 16, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 8.0, + "_pop_comment_count": 7.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 22.25, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/bayesianmodelingandcomputationinpython/bookcode_edition1/master/README.md", "_readme_localurl": "bayesianmodelingandcomputationinpython~bookcode_edition1~README.md", @@ -33506,7 +50391,7 @@ "description": null, "_repopath": "kubeflow/fairing", "_reponame": "fairing", - "_stars": 324, + "_stars": 325, "_forks": 146, "_watches": 40, "_topics": [], @@ -33514,11 +50399,33 @@ "_homepage": "", "_description": "fairing: Python SDK for building, training, and deploying ML models", "_organization": "kubeflow", - "_updated_at": "2022-11-24T00:00:00.000Z", + "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2021-08-26T00:00:00.000Z", "_created_at": "2018-09-03T00:00:00.000Z", - "_age_weeks": 222, - "_stars_per_week": 1.46, + "_age_weeks": 224, + "_stars_per_week": 1.45, + "_pop_contributor_count": 41, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "ibm" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 16, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 1.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 113, + "_pop_score": 31.65, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/kubeflow/fairing/master/README.md", "_readme_localurl": "kubeflow~fairing~README.md", @@ -33553,15 +50460,38 @@ "blosc", "compression" ], - "_language": "C", + "_language": "Python", "_homepage": "https://www.blosc.org/python-blosc/python-blosc.html", "_description": "python-blosc: A Python wrapper for the extremely fast Blosc compression library ", "_organization": "blosc", - "_updated_at": "2022-11-30T00:00:00.000Z", - "_last_commit_date": "2022-11-10T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2010-09-30T00:00:00.000Z", - "_age_weeks": 635, + "_age_weeks": 637, "_stars_per_week": 0.51, + "_pop_contributor_count": 43, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "anaconda", + "cea", + "francescalted" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.92, + "_pop_updated_issues_count": 43, + "_pop_closed_issues_count": 41, + "_pop_created_since_days": 149, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 43.0, + "_pop_comment_count": 66.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 167, + "_pop_score": 49.64, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/blosc/python-blosc/master/README.rst", "_readme_localurl": "blosc~python-blosc~README.rst", @@ -33590,19 +50520,43 @@ "description": null, "_repopath": "weecology/deepforest", "_reponame": "DeepForest", - "_stars": 319, - "_forks": 120, + "_stars": 321, + "_forks": 122, "_watches": 15, "_topics": [], "_language": "JavaScript", "_homepage": "https://deepforest.readthedocs.io/", "_description": "DeepForest: Python Package for Tree Crown Detection in Airborne RGB imagery", "_organization": "weecology", - "_updated_at": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2022-12-02T00:00:00.000Z", "_created_at": "2018-03-07T00:00:00.000Z", - "_age_weeks": 248, + "_age_weeks": 249, "_stars_per_week": 1.29, + "_pop_contributor_count": 11, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "rbccapitalmarkets", + "universityofflorida", + "weecology", + "weecology,univofflorida" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.71, + "_pop_updated_issues_count": 29, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 58, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 29.0, + "_pop_comment_count": 53.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 119, + "_pop_score": 45.86, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/weecology/deepforest/master/README.md", "_readme_localurl": "weecology~deepforest~README.md", @@ -33625,7 +50579,7 @@ "description": null, "_repopath": "geopython/owslib", "_reponame": "OWSLib", - "_stars": 313, + "_stars": 315, "_forks": 257, "_watches": 31, "_topics": [], @@ -33633,11 +50587,34 @@ "_homepage": "https://geopython.github.io/OWSLib", "_description": "OWSLib is a Python package for client programming with Open Geospatial Consortium (OGC) web service (hence OWS) interface standards, and their related content models.", "_organization": "geopython", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2012-01-13T00:00:00.000Z", - "_age_weeks": 568, + "_age_weeks": 570, "_stars_per_week": 0.55, + "_pop_contributor_count": 138, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "geopythonwmo-imopengeospatial", + "opensourcegeospatialfoundation", + "planetlabs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.9, + "_pop_updated_issues_count": 20, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 133, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 20.0, + "_pop_comment_count": 28.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 308, + "_pop_score": 53.7, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/geopython/owslib/master/README.rst", "_readme_localurl": "geopython~owslib~README.rst", @@ -33663,8 +50640,8 @@ "description": null, "_repopath": "leondgarse/keras_cv_attention_models", "_reponame": "keras_cv_attention_models", - "_stars": 307, - "_forks": 49, + "_stars": 313, + "_forks": 51, "_watches": 16, "_topics": [ "tensorflow", @@ -33684,11 +50661,34 @@ "_homepage": "", "_description": "keras_cv_attention_models: Keras/Tensorflow models including beit,botnet,CMT,CoaT,CoAtNet,convnext,cotnet,davit,efficientdet,edgenext,efficientformer,efficientnet,fbnet,gcvit,ghostnetv2,gmlp,halonet,hornet,lcnet,levit,maxvit,mlp-mixer,mobilevit,nat,nfnets,regnet,resmlp,resnest,resnext,resnetd,swin,tinynet,uniformer,volo,wavemlp,yolor,yolov7,yolox", "_organization": "leondgarse", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2022-12-04T00:00:00.000Z", "_created_at": "2021-08-02T00:00:00.000Z", - "_age_weeks": 70, - "_stars_per_week": 4.37, + "_age_weeks": 72, + "_stars_per_week": 4.35, + "_pop_contributor_count": 4, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "koala-team", + "resmonicsag", + "wandb" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.21, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 17, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 19, + "_pop_recent_releases_estimated_tags": 68, + "_pop_recent_releases_adjusted_count": 19, + "_pop_issue_count": 14.0, + "_pop_comment_count": 35.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 0, + "_pop_score": 36.28, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/leondgarse/keras_cv_attention_models/master/README.md", "_readme_localurl": "leondgarse~keras_cv_attention_models~README.md", @@ -33711,7 +50711,7 @@ "description": null, "_repopath": "nyandwi/modernconvnets", "_reponame": "ModernConvNets", - "_stars": 306, + "_stars": 304, "_forks": 31, "_watches": 7, "_topics": [ @@ -33729,11 +50729,32 @@ "_homepage": "", "_description": "ModernConvNets: Revisions and implementations of modern Convolutional Neural Networks architectures in TensorFlow and Keras", "_organization": "nyandwi", - "_updated_at": "2022-11-30T00:00:00.000Z", + "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2022-10-05T00:00:00.000Z", "_created_at": "2022-02-10T00:00:00.000Z", - "_age_weeks": 42, - "_stars_per_week": 7.14, + "_age_weeks": 44, + "_stars_per_week": 6.82, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cargeniemellon" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.6, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 10, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 9.3, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/nyandwi/modernconvnets/master/README.md", "_readme_localurl": "nyandwi~modernconvnets~README.md", @@ -33750,19 +50771,40 @@ "description": null, "_repopath": "googlecloudplatform/practical-ml-vision-book", "_reponame": "practical-ml-vision-book", - "_stars": 300, - "_forks": 137, + "_stars": 304, + "_forks": 138, "_watches": 18, "_topics": [], "_language": "Jupyter Notebook", "_homepage": null, "_description": "googlecloudplatform/practical-ml-vision-book", "_organization": "googlecloudplatform", - "_updated_at": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-11-21T00:00:00.000Z", "_created_at": "2020-11-18T00:00:00.000Z", - "_age_weeks": 107, + "_age_weeks": 108, "_stars_per_week": 2.8, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 25, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 9, + "_pop_score": 19.36, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/googlecloudplatform/practical-ml-vision-book/master/README.md", "_readme_localurl": "googlecloudplatform~practical-ml-vision-book~README.md", @@ -33794,8 +50836,31 @@ "_updated_at": "2022-11-11T00:00:00.000Z", "_last_commit_date": "2022-07-18T00:00:00.000Z", "_created_at": "2018-08-14T00:00:00.000Z", - "_age_weeks": 225, - "_stars_per_week": 1.31, + "_age_weeks": 226, + "_stars_per_week": 1.3, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "imec-idlab,departmentofinformationtechnology,ghentuniversity,belgium", + "researchscientistatnvidia", + "sundellopensourceconsultingab" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 53, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 23.24, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/chaoleili/jupyterlab_tensorboard/master/README.md", "_readme_localurl": "chaoleili~jupyterlab_tensorboard~README.md", @@ -33821,8 +50886,8 @@ "description": null, "_repopath": "mynameisfiber/high_performance_python_2e", "_reponame": "high_performance_python_2e", - "_stars": 288, - "_forks": 89, + "_stars": 291, + "_forks": 88, "_watches": 6, "_topics": [ "python", @@ -33835,11 +50900,33 @@ "_homepage": "", "_description": "high_performance_python_2e: Code for the book \"High Performance Python 2e\" by Micha Gorelick and Ian Ozsvald with OReilly ", "_organization": "mynameisfiber", - "_updated_at": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2021-01-15T00:00:00.000Z", "_created_at": "2020-04-12T00:00:00.000Z", - "_age_weeks": 138, + "_age_weeks": 140, "_stars_per_week": 2.08, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "http://morconsulting.com/", + "occrp,the-markup" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 33, + "_pop_updated_since_days": 23, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 9.28, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/mynameisfiber/high_performance_python_2e/master/README.md", "_readme_localurl": "mynameisfiber~high_performance_python_2e~README.md", @@ -33856,7 +50943,7 @@ "description": null, "_repopath": "developmentseed/geolambda", "_reponame": "geolambda", - "_stars": 277, + "_stars": 278, "_forks": 84, "_watches": 50, "_topics": [], @@ -33864,11 +50951,33 @@ "_homepage": null, "_description": "geolambda: Create and deploy Geospatial AWS Lambda functions", "_organization": "developmentseed", - "_updated_at": "2022-10-26T00:00:00.000Z", + "_updated_at": "2022-12-09T00:00:00.000Z", "_last_commit_date": "2021-02-16T00:00:00.000Z", "_created_at": "2017-05-02T00:00:00.000Z", - "_age_weeks": 292, + "_age_weeks": 293, "_stars_per_week": 0.95, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "developmentseed", + "element84" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 69, + "_pop_updated_since_days": 22, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 3, + "_pop_score": 17.22, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/developmentseed/geolambda/master/README.md", "_readme_localurl": "developmentseed~geolambda~README.md", @@ -33885,7 +50994,7 @@ "description": null, "_repopath": "venth/aws-adfs", "_reponame": "aws-adfs", - "_stars": 276, + "_stars": 277, "_forks": 91, "_watches": 11, "_topics": [ @@ -33901,11 +51010,33 @@ "_homepage": "", "_description": "aws-adfs: Command line tool to ease aws cli authentication against ADFS (multi factor authentication with active directory)", "_organization": "venth", - "_updated_at": "2022-12-01T00:00:00.000Z", - "_last_commit_date": "2022-10-29T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2016-06-25T00:00:00.000Z", - "_age_weeks": 336, + "_age_weeks": 338, "_stars_per_week": 0.82, + "_pop_contributor_count": 46, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "claranet", + "rancher" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.67, + "_pop_updated_issues_count": 47, + "_pop_closed_issues_count": 44, + "_pop_created_since_days": 79, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 29, + "_pop_recent_releases_estimated_tags": 18, + "_pop_recent_releases_adjusted_count": 29, + "_pop_issue_count": 47.0, + "_pop_comment_count": 37.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 5, + "_pop_score": 45.88, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/venth/aws-adfs/master/README.md", "_readme_localurl": "venth~aws-adfs~README.md", @@ -33928,7 +51059,7 @@ "description": null, "_repopath": "pastas/pastas", "_reponame": "pastas", - "_stars": 274, + "_stars": 276, "_forks": 54, "_watches": 15, "_topics": [ @@ -33943,11 +51074,35 @@ "_homepage": "http://pastas.readthedocs.io/", "_description": "pastas: :spaghetti: Pastas is an open-source Python framework for the analysis of groundwater time series.", "_organization": "pastas", - "_updated_at": "2022-11-22T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-08-02T00:00:00.000Z", "_created_at": "2016-04-15T00:00:00.000Z", - "_age_weeks": 346, + "_age_weeks": 348, "_stars_per_week": 0.79, + "_pop_contributor_count": 17, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "artesia-water", + "artesiawater", + "karl-franzensuniversityofgraz", + "tudelft" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.88, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 81, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 12.0, + "_pop_comment_count": 30.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 6069, + "_pop_score": 50.62, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pastas/pastas/master/README.rst", "_readme_localurl": "pastas~pastas~README.rst", @@ -33961,6 +51116,63 @@ "pastas~pastas~setup.py" ] }, + { + "index": 727, + "category": "web", + "githuburl": "https://github.com/rstudio/py-shiny", + "featured": null, + "links": null, + "description": null, + "_repopath": "rstudio/py-shiny", + "_reponame": "py-shiny", + "_stars": 275, + "_forks": 14, + "_watches": 18, + "_topics": [], + "_language": "JavaScript", + "_homepage": "https://shiny.rstudio.com/py/", + "_description": "py-shiny: Shiny for Python", + "_organization": "rstudio", + "_updated_at": "2022-12-13T00:00:00.000Z", + "_last_commit_date": "2022-12-09T00:00:00.000Z", + "_created_at": "2021-07-27T00:00:00.000Z", + "_age_weeks": 72, + "_stars_per_week": 3.77, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "freelance", + "rstudio" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 11.27, + "_pop_updated_issues_count": 54, + "_pop_closed_issues_count": 32, + "_pop_created_since_days": 17, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 54.0, + "_pop_comment_count": 57.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 2, + "_pop_score": 36.72, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/rstudio/py-shiny/master/README.md", + "_readme_localurl": "rstudio~py-shiny~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/rstudio/py-shiny/master/setup.py" + ], + "_requirements_localurls": [ + "rstudio~py-shiny~setup.py" + ] + }, { "index": 827, "category": "gis", @@ -33970,9 +51182,9 @@ "description": null, "_repopath": "datasystemslab/geotorch", "_reponame": "GeoTorch", - "_stars": 271, - "_forks": 14, - "_watches": 7, + "_stars": 272, + "_forks": 15, + "_watches": 8, "_topics": [ "classification-model", "convlstm-pytorch", @@ -33995,11 +51207,33 @@ "_homepage": "https://kanchanchy.github.io/geotorch/", "_description": "GeoTorch: A Spatiotemporal Deep Learning Framework", "_organization": "datasystemslab", - "_updated_at": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2022-11-27T00:00:00.000Z", "_created_at": "2022-05-23T00:00:00.000Z", - "_age_weeks": 28, - "_stars_per_week": 9.58, + "_age_weeks": 30, + "_stars_per_week": 9.07, + "_pop_contributor_count": 4, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amberit", + "wherobots" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.96, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 7, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 6.0, + "_pop_comment_count": 9.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 2, + "_pop_score": 23.14, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/datasystemslab/geotorch/master/README.md", "_readme_localurl": "datasystemslab~geotorch~README.md", @@ -34013,41 +51247,6 @@ "datasystemslab~geotorch~setup.py" ] }, - { - "index": 727, - "category": "web", - "githuburl": "https://github.com/rstudio/py-shiny", - "featured": null, - "links": null, - "description": null, - "_repopath": "rstudio/py-shiny", - "_reponame": "py-shiny", - "_stars": 271, - "_forks": 14, - "_watches": 18, - "_topics": [], - "_language": "JavaScript", - "_homepage": "https://shiny.rstudio.com/py/", - "_description": "py-shiny: Shiny for Python", - "_organization": "rstudio", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-06T00:00:00.000Z", - "_created_at": "2021-07-27T00:00:00.000Z", - "_age_weeks": 71, - "_stars_per_week": 3.81, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/rstudio/py-shiny/master/README.md", - "_readme_localurl": "rstudio~py-shiny~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/rstudio/py-shiny/master/setup.py" - ], - "_requirements_localurls": [ - "rstudio~py-shiny~setup.py" - ] - }, { "index": 123, "category": "util", @@ -34057,7 +51256,7 @@ "description": null, "_repopath": "mgedmin/check-manifest", "_reponame": "check-manifest", - "_stars": 269, + "_stars": 268, "_forks": 37, "_watches": 7, "_topics": [], @@ -34065,11 +51264,35 @@ "_homepage": "https://pypi.org/p/check-manifest", "_description": "check-manifest: Tool to check the completeness of MANIFEST.in for Python packages", "_organization": "mgedmin", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-12-11T00:00:00.000Z", "_created_at": "2013-03-05T00:00:00.000Z", - "_age_weeks": 509, - "_stars_per_week": 0.53, + "_age_weeks": 510, + "_stars_per_week": 0.52, + "_pop_contributor_count": 22, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "nordsoftware", + "pioneervalleybooks", + "programmersofvilnius", + "zestsoftware" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.6, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 119, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 4.0, + "_pop_comment_count": 8.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 789, + "_pop_score": 51.42, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/mgedmin/check-manifest/master/README.rst", "_readme_localurl": "mgedmin~check-manifest~README.rst", @@ -34100,11 +51323,32 @@ "_homepage": null, "_description": "hstream: Hyper Stream", "_organization": "conradbez", - "_updated_at": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-12T00:00:00.000Z", "_last_commit_date": "2022-11-24T00:00:00.000Z", "_created_at": "2022-11-03T00:00:00.000Z", - "_age_weeks": 4, - "_stars_per_week": 54.35, + "_age_weeks": 6, + "_stars_per_week": 40.17, + "_pop_contributor_count": 5, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "streamlit" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.79, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 9, + "_pop_created_since_days": 2, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 9.0, + "_pop_comment_count": 8.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 16.24, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/conradbez/hstream/master/README.md", "_readme_localurl": "conradbez~hstream~README.md", @@ -34118,6 +51362,69 @@ "conradbez~hstream~setup.py" ] }, + { + "index": 210, + "category": "util", + "githuburl": "https://github.com/tiangolo/poetry-version-plugin", + "featured": null, + "links": null, + "description": null, + "_repopath": "tiangolo/poetry-version-plugin", + "_reponame": "poetry-version-plugin", + "_stars": 263, + "_forks": 24, + "_watches": 5, + "_topics": [ + "python-poetry", + "packaging", + "python", + "python3", + "pypi", + "packaging-for-pypi" + ], + "_language": "Python", + "_homepage": "", + "_description": "poetry-version-plugin: Poetry plugin for dynamically extracting the package version from a __version__ variable or a Git tag.", + "_organization": "tiangolo", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2021-05-28T00:00:00.000Z", + "_created_at": "2021-05-27T00:00:00.000Z", + "_age_weeks": 81, + "_stars_per_week": 3.22, + "_pop_contributor_count": 3, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "belike" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 19, + "_pop_updated_since_days": 19, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 8.95, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/tiangolo/poetry-version-plugin/master/README.md", + "_readme_localurl": "tiangolo~poetry-version-plugin~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/tiangolo/poetry-version-plugin/master/pyproject.toml" + ], + "_requirements_localurls": [ + "tiangolo~poetry-version-plugin~pyproject.toml" + ] + }, { "index": 307, "category": "crypto", @@ -34128,8 +51435,8 @@ "_repopath": "ethereum/eth-utils", "_reponame": "eth-utils", "_stars": 263, - "_forks": 141, - "_watches": 19, + "_forks": 140, + "_watches": 18, "_topics": [ "ethereum", "python", @@ -34142,8 +51449,30 @@ "_updated_at": "2022-12-03T00:00:00.000Z", "_last_commit_date": "2022-11-17T00:00:00.000Z", "_created_at": "2017-02-07T00:00:00.000Z", - "_age_weeks": 304, + "_age_weeks": 305, "_stars_per_week": 0.86, + "_pop_contributor_count": 31, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ethereum", + "ethereumfoundation" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.31, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 71, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 12.0, + "_pop_comment_count": 15.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 92, + "_pop_score": 43.01, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ethereum/eth-utils/master/README.md", "_readme_localurl": "ethereum~eth-utils~README.md", @@ -34160,44 +51489,6 @@ "ethereum~eth-utils~pyproject.toml" ] }, - { - "index": 385, - "category": "nlp", - "githuburl": "https://github.com/kootenpv/contractions", - "featured": null, - "links": null, - "description": null, - "_repopath": "kootenpv/contractions", - "_reponame": "contractions", - "_stars": 262, - "_forks": 35, - "_watches": 7, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "contractions: Fixes contractions such as `you're` to you `are`", - "_organization": "kootenpv", - "_updated_at": "2022-12-02T00:00:00.000Z", - "_last_commit_date": "2022-11-15T00:00:00.000Z", - "_created_at": "2016-12-25T00:00:00.000Z", - "_age_weeks": 310, - "_stars_per_week": 0.84, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/kootenpv/contractions/master/README.md", - "_readme_localurl": "kootenpv~contractions~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/kootenpv/contractions/master/requirements.txt", - "https://raw.githubusercontent.com/kootenpv/contractions/master/setup.py" - ], - "_requirements_localurls": [ - "kootenpv~contractions~requirements.txt", - "kootenpv~contractions~setup.py" - ] - }, { "index": 342, "category": "term", @@ -34207,7 +51498,7 @@ "description": null, "_repopath": "rockhopper-technologies/enlighten", "_reponame": "enlighten", - "_stars": 262, + "_stars": 263, "_forks": 19, "_watches": 4, "_topics": [ @@ -34217,11 +51508,32 @@ "_homepage": "https://python-enlighten.readthedocs.io", "_description": "Enlighten Progress Bar for Python Console Apps", "_organization": "rockhopper-technologies", - "_updated_at": "2022-11-28T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_created_at": "2017-09-22T00:00:00.000Z", - "_age_weeks": 271, + "_age_weeks": 273, "_stars_per_week": 0.96, + "_pop_contributor_count": 5, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "micaeljarniac" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.54, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 64, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 4.0, + "_pop_comment_count": 15.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.8, + "_pop_dependents_count": 5, + "_pop_score": 33.22, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/rockhopper-technologies/enlighten/master/README.rst", "_readme_localurl": "rockhopper-technologies~enlighten~README.rst", @@ -34239,45 +51551,63 @@ ] }, { - "index": 210, - "category": "util", - "githuburl": "https://github.com/tiangolo/poetry-version-plugin", + "index": 385, + "category": "nlp", + "githuburl": "https://github.com/kootenpv/contractions", "featured": null, "links": null, "description": null, - "_repopath": "tiangolo/poetry-version-plugin", - "_reponame": "poetry-version-plugin", - "_stars": 261, - "_forks": 23, - "_watches": 5, - "_topics": [ - "python-poetry", - "packaging", - "python", - "python3", - "pypi", - "packaging-for-pypi" - ], + "_repopath": "kootenpv/contractions", + "_reponame": "contractions", + "_stars": 263, + "_forks": 35, + "_watches": 7, + "_topics": [], "_language": "Python", - "_homepage": "", - "_description": "poetry-version-plugin: Poetry plugin for dynamically extracting the package version from a __version__ variable or a Git tag.", - "_organization": "tiangolo", - "_updated_at": "2022-12-03T00:00:00.000Z", - "_last_commit_date": "2021-05-28T00:00:00.000Z", - "_created_at": "2021-05-27T00:00:00.000Z", - "_age_weeks": 79, - "_stars_per_week": 3.27, + "_homepage": null, + "_description": "contractions: Fixes contractions such as `you're` to you `are`", + "_organization": "kootenpv", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-11-15T00:00:00.000Z", + "_created_at": "2016-12-25T00:00:00.000Z", + "_age_weeks": 312, + "_stars_per_week": 0.84, + "_pop_contributor_count": 14, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "japan", + "vankootenaisolutions/mgnr.io" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.23, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 73, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 16, + "_pop_score": 29.64, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/tiangolo/poetry-version-plugin/master/README.md", - "_readme_localurl": "tiangolo~poetry-version-plugin~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/kootenpv/contractions/master/README.md", + "_readme_localurl": "kootenpv~contractions~README.md", "_requirements_filenames": [ - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/tiangolo/poetry-version-plugin/master/pyproject.toml" + "https://raw.githubusercontent.com/kootenpv/contractions/master/requirements.txt", + "https://raw.githubusercontent.com/kootenpv/contractions/master/setup.py" ], "_requirements_localurls": [ - "tiangolo~poetry-version-plugin~pyproject.toml" + "kootenpv~contractions~requirements.txt", + "kootenpv~contractions~setup.py" ] }, { @@ -34289,19 +51619,40 @@ "description": null, "_repopath": "facebookresearch/mephisto", "_reponame": "Mephisto", - "_stars": 257, - "_forks": 58, + "_stars": 258, + "_forks": 57, "_watches": 14, "_topics": [], "_language": "JavaScript", "_homepage": "https://mephisto.ai/", "_description": "Mephisto: A suite of tools for managing crowdsourcing tasks from the inception through to data packaging for research use. ", "_organization": "facebookresearch", - "_updated_at": "2022-11-23T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-12T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2019-08-19T00:00:00.000Z", - "_age_weeks": 172, - "_stars_per_week": 1.49, + "_age_weeks": 174, + "_stars_per_week": 1.48, + "_pop_contributor_count": 33, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "spectatorpublishingcorrelation-one" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 16.15, + "_pop_updated_issues_count": 76, + "_pop_closed_issues_count": 64, + "_pop_created_since_days": 41, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 76.0, + "_pop_comment_count": 85.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 80, + "_pop_score": 47.53, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/mephisto/master/README.md", "_readme_localurl": "facebookresearch~mephisto~README.md", @@ -34324,7 +51675,7 @@ "description": null, "_repopath": "airbnb/ottr", "_reponame": "ottr", - "_stars": 256, + "_stars": 257, "_forks": 27, "_watches": 8, "_topics": [], @@ -34332,11 +51683,32 @@ "_homepage": "", "_description": "ottr: Serverless Public Key Infrastructure Framework", "_organization": "airbnb", - "_updated_at": "2022-11-05T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-01-04T00:00:00.000Z", "_created_at": "2021-08-27T00:00:00.000Z", - "_age_weeks": 66, - "_stars_per_week": 3.84, + "_age_weeks": 68, + "_stars_per_week": 3.76, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "coinbase" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 16, + "_pop_updated_since_days": 12, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 7.13, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/airbnb/ottr/master/README.md", "_readme_localurl": "airbnb~ottr~README.md", @@ -34359,7 +51731,7 @@ "description": null, "_repopath": "zsailer/pandas_flavor", "_reponame": "pandas_flavor", - "_stars": 254, + "_stars": 256, "_forks": 17, "_watches": 6, "_topics": [ @@ -34369,11 +51741,33 @@ "_homepage": "https://zsailer.github.io/software/pandas-flavor/", "_description": "pandas_flavor: The easy way to write your own flavor of Pandas", "_organization": "zsailer", - "_updated_at": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-12T00:00:00.000Z", "_last_commit_date": "2022-04-17T00:00:00.000Z", "_created_at": "2018-01-25T00:00:00.000Z", - "_age_weeks": 253, + "_age_weeks": 255, "_stars_per_week": 1.0, + "_pop_contributor_count": 5, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "apple", + "bigabid" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.38, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 60, + "_pop_updated_since_days": 8, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 18.06, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/zsailer/pandas_flavor/master/README.md", "_readme_localurl": "zsailer~pandas_flavor~README.md", @@ -34390,44 +51784,6 @@ "zsailer~pandas_flavor~pyproject.toml" ] }, - { - "index": 693, - "category": "data", - "githuburl": "https://github.com/paperswithcode/sota-extractor", - "featured": null, - "links": null, - "description": null, - "_repopath": "paperswithcode/sota-extractor", - "_reponame": "sota-extractor", - "_stars": 251, - "_forks": 27, - "_watches": 13, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "sota-extractor: The SOTA extractor pipeline", - "_organization": "paperswithcode", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-03-09T00:00:00.000Z", - "_created_at": "2018-12-07T00:00:00.000Z", - "_age_weeks": 208, - "_stars_per_week": 1.2, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/README.md", - "_readme_localurl": "paperswithcode~sota-extractor~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/requirements.txt", - "https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/setup.py" - ], - "_requirements_localurls": [ - "paperswithcode~sota-extractor~requirements.txt", - "paperswithcode~sota-extractor~setup.py" - ] - }, { "index": 670, "category": "gis", @@ -34437,7 +51793,7 @@ "description": null, "_repopath": "cgal/cgal-swig-bindings", "_reponame": "cgal-swig-bindings", - "_stars": 251, + "_stars": 252, "_forks": 78, "_watches": 26, "_topics": [], @@ -34445,11 +51801,32 @@ "_homepage": "", "_description": "cgal-swig-bindings: CGAL bindings using SWIG", "_organization": "cgal", - "_updated_at": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2022-10-19T00:00:00.000Z", "_created_at": "2015-03-14T00:00:00.000Z", - "_age_weeks": 403, + "_age_weeks": 405, "_stars_per_week": 0.62, + "_pop_contributor_count": 21, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "geometryfactory" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.4, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 95, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 12.0, + "_pop_comment_count": 8.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 4, + "_pop_score": 33.34, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/cgal/cgal-swig-bindings/master/README.md", "_readme_localurl": "cgal~cgal-swig-bindings~README.md", @@ -34464,38 +51841,63 @@ ] }, { - "index": 374, + "index": 693, "category": "data", - "githuburl": "https://github.com/ndrplz/google-drive-downloader", + "githuburl": "https://github.com/paperswithcode/sota-extractor", "featured": null, "links": null, "description": null, - "_repopath": "ndrplz/google-drive-downloader", - "_reponame": "google-drive-downloader", - "_stars": 249, - "_forks": 63, - "_watches": 11, + "_repopath": "paperswithcode/sota-extractor", + "_reponame": "sota-extractor", + "_stars": 251, + "_forks": 27, + "_watches": 13, "_topics": [], "_language": "Python", "_homepage": null, - "_description": "google-drive-downloader: Minimal class to download shared files from Google Drive.", - "_organization": "ndrplz", - "_updated_at": "2022-11-15T00:00:00.000Z", - "_last_commit_date": "2019-02-09T00:00:00.000Z", - "_created_at": "2017-12-08T00:00:00.000Z", - "_age_weeks": 260, - "_stars_per_week": 0.96, + "_description": "sota-extractor: The SOTA extractor pipeline", + "_organization": "paperswithcode", + "_updated_at": "2022-12-06T00:00:00.000Z", + "_last_commit_date": "2022-03-09T00:00:00.000Z", + "_created_at": "2018-12-07T00:00:00.000Z", + "_age_weeks": 210, + "_stars_per_week": 1.19, + "_pop_contributor_count": 8, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "https://alefnula.io", + "metaai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 9, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 2.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 21.31, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/ndrplz/google-drive-downloader/master/README.md", - "_readme_localurl": "ndrplz~google-drive-downloader~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/README.md", + "_readme_localurl": "paperswithcode~sota-extractor~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/ndrplz/google-drive-downloader/master/setup.py" + "https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/requirements.txt", + "https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/setup.py" ], "_requirements_localurls": [ - "ndrplz~google-drive-downloader~setup.py" + "paperswithcode~sota-extractor~requirements.txt", + "paperswithcode~sota-extractor~setup.py" ] }, { @@ -34508,7 +51910,7 @@ "_repopath": "merantix-momentum/squirrel-core", "_reponame": "squirrel-core", "_stars": 249, - "_forks": 4, + "_forks": 6, "_watches": 14, "_topics": [ "python", @@ -34539,8 +51941,31 @@ "_updated_at": "2022-12-07T00:00:00.000Z", "_last_commit_date": "2022-11-17T00:00:00.000Z", "_created_at": "2022-02-11T00:00:00.000Z", - "_age_weeks": 42, - "_stars_per_week": 5.83, + "_age_weeks": 44, + "_stars_per_week": 5.6, + "_pop_contributor_count": 12, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "idealointernetgmbh", + "merantix&pw-solutions", + "merantixlabs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.87, + "_pop_updated_issues_count": 17, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 10, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 17.0, + "_pop_comment_count": 21.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 31.65, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/merantix-momentum/squirrel-core/master/README.md", "_readme_localurl": "merantix-momentum~squirrel-core~README.md", @@ -34560,6 +51985,118 @@ "merantix-momentum~squirrel-core~pyproject.toml" ] }, + { + "index": 374, + "category": "data", + "githuburl": "https://github.com/ndrplz/google-drive-downloader", + "featured": null, + "links": null, + "description": null, + "_repopath": "ndrplz/google-drive-downloader", + "_reponame": "google-drive-downloader", + "_stars": 249, + "_forks": 63, + "_watches": 11, + "_topics": [], + "_language": "Python", + "_homepage": null, + "_description": "google-drive-downloader: Minimal class to download shared files from Google Drive.", + "_organization": "ndrplz", + "_updated_at": "2022-11-15T00:00:00.000Z", + "_last_commit_date": "2019-02-09T00:00:00.000Z", + "_created_at": "2017-12-08T00:00:00.000Z", + "_age_weeks": 262, + "_stars_per_week": 0.95, + "_pop_contributor_count": 4, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "nomitri-perceptionaiformobile" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 61, + "_pop_updated_since_days": 47, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 0, + "_pop_score": 10.84, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/ndrplz/google-drive-downloader/master/README.md", + "_readme_localurl": "ndrplz~google-drive-downloader~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/ndrplz/google-drive-downloader/master/setup.py" + ], + "_requirements_localurls": [ + "ndrplz~google-drive-downloader~setup.py" + ] + }, + { + "index": 300, + "category": "nlp", + "githuburl": "https://github.com/openai/grade-school-math", + "featured": null, + "links": null, + "description": null, + "_repopath": "openai/grade-school-math", + "_reponame": "grade-school-math", + "_stars": 248, + "_forks": 47, + "_watches": 7, + "_topics": [], + "_language": "Python", + "_homepage": null, + "_description": "openai/grade-school-math", + "_organization": "openai", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2021-11-19T00:00:00.000Z", + "_created_at": "2021-10-20T00:00:00.000Z", + "_age_weeks": 60, + "_stars_per_week": 4.08, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "openai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 14, + "_pop_updated_since_days": 13, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 2, + "_pop_score": 9.05, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/openai/grade-school-math/master/README.md", + "_readme_localurl": "openai~grade-school-math~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/openai/grade-school-math/master/setup.py" + ], + "_requirements_localurls": [ + "openai~grade-school-math~setup.py" + ] + }, { "index": 248, "category": "util", @@ -34590,8 +52127,30 @@ "_updated_at": "2022-10-23T00:00:00.000Z", "_last_commit_date": "2019-11-13T00:00:00.000Z", "_created_at": "2016-09-07T00:00:00.000Z", - "_age_weeks": 326, - "_stars_per_week": 0.76, + "_age_weeks": 327, + "_stars_per_week": 0.75, + "_pop_contributor_count": 23, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "avira", + "engineeringstableauto" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 76, + "_pop_updated_since_days": 38, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 15.84, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/rpgreen/apilogs/master/README.rst", "_readme_localurl": "rpgreen~apilogs~README.rst", @@ -34606,76 +52165,70 @@ ] }, { - "index": 300, - "category": "nlp", - "githuburl": "https://github.com/openai/grade-school-math", + "index": 714, + "category": "ml-ops", + "githuburl": "https://github.com/unionai-oss/unionml", "featured": null, "links": null, "description": null, - "_repopath": "openai/grade-school-math", - "_reponame": "grade-school-math", - "_stars": 244, - "_forks": 45, - "_watches": 7, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "openai/grade-school-math", - "_organization": "openai", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2021-11-19T00:00:00.000Z", - "_created_at": "2021-10-20T00:00:00.000Z", - "_age_weeks": 59, - "_stars_per_week": 4.14, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/openai/grade-school-math/master/README.md", - "_readme_localurl": "openai~grade-school-math~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/openai/grade-school-math/master/setup.py" + "_repopath": "unionai-oss/unionml", + "_reponame": "unionml", + "_stars": 246, + "_forks": 38, + "_watches": 4, + "_topics": [ + "machine-learning", + "mlops", + "hacktoberfest" ], - "_requirements_localurls": [ - "openai~grade-school-math~setup.py" - ] - }, - { - "index": 454, - "category": "gis", - "githuburl": "https://github.com/openaddresses/pyesridump", - "featured": null, - "links": null, - "description": null, - "_repopath": "openaddresses/pyesridump", - "_reponame": "pyesridump", - "_stars": 243, - "_forks": 59, - "_watches": 16, - "_topics": [], "_language": "Python", - "_homepage": null, - "_description": "pyesridump: Scrapes an ESRI MapServer REST endpoint to spit out more generally-usable geodata.", - "_organization": "openaddresses", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-06-19T00:00:00.000Z", - "_created_at": "2013-12-06T00:00:00.000Z", - "_age_weeks": 469, - "_stars_per_week": 0.52, + "_homepage": "https://www.union.ai/unionml", + "_description": "UnionML: the easiest way to build and deploy machine learning microservices", + "_organization": "unionai-oss", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2021-11-17T00:00:00.000Z", + "_age_weeks": 56, + "_stars_per_week": 4.34, + "_pop_contributor_count": 15, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "letsopen-source", + "unionai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.79, + "_pop_updated_issues_count": 76, + "_pop_closed_issues_count": 46, + "_pop_created_since_days": 13, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 17, + "_pop_recent_releases_estimated_tags": 16, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 76.0, + "_pop_comment_count": 127.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 2, + "_pop_score": 39.52, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/openaddresses/pyesridump/master/README.md", - "_readme_localurl": "openaddresses~pyesridump~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/unionai-oss/unionml/master/README.md", + "_readme_localurl": "unionai-oss~unionml~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py", - "Pipfile" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/openaddresses/pyesridump/master/setup.py", - "https://raw.githubusercontent.com/openaddresses/pyesridump/master/Pipfile" + "https://raw.githubusercontent.com/unionai-oss/unionml/master/requirements.txt", + "https://raw.githubusercontent.com/unionai-oss/unionml/master/setup.py", + "https://raw.githubusercontent.com/unionai-oss/unionml/master/pyproject.toml" ], "_requirements_localurls": [ - "openaddresses~pyesridump~setup.py", - "openaddresses~pyesridump~Pipfile" + "unionai-oss~unionml~requirements.txt", + "unionai-oss~unionml~setup.py", + "unionai-oss~unionml~pyproject.toml" ] }, { @@ -34687,9 +52240,9 @@ "description": null, "_repopath": "holoviz/spatialpandas", "_reponame": "spatialpandas", - "_stars": 243, - "_forks": 20, - "_watches": 21, + "_stars": 245, + "_forks": 21, + "_watches": 22, "_topics": [ "holoviz", "spatialpandas", @@ -34701,11 +52254,34 @@ "_homepage": "", "_description": "spatialpandas: Pandas extension arrays for spatial/geometric operations", "_organization": "holoviz", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-11-22T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2019-10-28T00:00:00.000Z", - "_age_weeks": 162, - "_stars_per_week": 1.5, + "_age_weeks": 164, + "_stars_per_week": 1.49, + "_pop_contributor_count": 9, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "anaconda", + "datum-tech", + "hextechnologies" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.31, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 38, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 8.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 2, + "_pop_score": 30.27, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/holoviz/spatialpandas/master/README.md", "_readme_localurl": "holoviz~spatialpandas~README.md", @@ -34723,48 +52299,64 @@ ] }, { - "index": 714, - "category": "ml-ops", - "githuburl": "https://github.com/unionai-oss/unionml", + "index": 454, + "category": "gis", + "githuburl": "https://github.com/openaddresses/pyesridump", "featured": null, "links": null, "description": null, - "_repopath": "unionai-oss/unionml", - "_reponame": "unionml", - "_stars": 242, - "_forks": 38, - "_watches": 4, - "_topics": [ - "machine-learning", - "mlops", - "hacktoberfest" - ], + "_repopath": "openaddresses/pyesridump", + "_reponame": "pyesridump", + "_stars": 243, + "_forks": 59, + "_watches": 16, + "_topics": [], "_language": "Python", - "_homepage": "https://www.union.ai/unionml", - "_description": "UnionML: the easiest way to build and deploy machine learning microservices", - "_organization": "unionai-oss", + "_homepage": null, + "_description": "pyesridump: Scrapes an ESRI MapServer REST endpoint to spit out more generally-usable geodata.", + "_organization": "openaddresses", "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", - "_created_at": "2021-11-17T00:00:00.000Z", - "_age_weeks": 55, - "_stars_per_week": 4.4, + "_last_commit_date": "2022-06-19T00:00:00.000Z", + "_created_at": "2013-12-06T00:00:00.000Z", + "_age_weeks": 471, + "_stars_per_week": 0.52, + "_pop_contributor_count": 12, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "datamade", + "nlt", + "openaddressesdevelopmentseed" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.38, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 110, + "_pop_updated_since_days": 6, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 3.0, + "_pop_comment_count": 7.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 28.48, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/unionai-oss/unionml/master/README.md", - "_readme_localurl": "unionai-oss~unionml~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/openaddresses/pyesridump/master/README.md", + "_readme_localurl": "openaddresses~pyesridump~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py", - "pyproject.toml" + "Pipfile" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/unionai-oss/unionml/master/requirements.txt", - "https://raw.githubusercontent.com/unionai-oss/unionml/master/setup.py", - "https://raw.githubusercontent.com/unionai-oss/unionml/master/pyproject.toml" + "https://raw.githubusercontent.com/openaddresses/pyesridump/master/setup.py", + "https://raw.githubusercontent.com/openaddresses/pyesridump/master/Pipfile" ], "_requirements_localurls": [ - "unionai-oss~unionml~requirements.txt", - "unionai-oss~unionml~setup.py", - "unionai-oss~unionml~pyproject.toml" + "openaddresses~pyesridump~setup.py", + "openaddresses~pyesridump~Pipfile" ] }, { @@ -34777,18 +52369,40 @@ "_repopath": "ethtx/ethtx_ce", "_reponame": "ethtx_ce", "_stars": 239, - "_forks": 59, + "_forks": 60, "_watches": 13, "_topics": [], "_language": "Python", "_homepage": "https://ethtx.info", "_description": "ethtx_ce: Ethereum transaction decoder (community version).", "_organization": "ethtx", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2022-12-05T00:00:00.000Z", "_created_at": "2021-07-26T00:00:00.000Z", - "_age_weeks": 71, - "_stars_per_week": 3.35, + "_age_weeks": 73, + "_stars_per_week": 3.27, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "py-world", + "tokenflowinsights" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.71, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 9, + "_pop_created_since_days": 17, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 9.0, + "_pop_comment_count": 8.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 25.04, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ethtx/ethtx_ce/master/README.md", "_readme_localurl": "ethtx~ethtx_ce~README.md", @@ -34802,6 +52416,63 @@ "ethtx~ethtx_ce~Pipfile" ] }, + { + "index": 864, + "category": "ml-ops", + "githuburl": "https://github.com/astronomer/airflow-chart", + "featured": null, + "links": null, + "description": null, + "_repopath": "astronomer/airflow-chart", + "_reponame": "airflow-chart", + "_stars": 239, + "_forks": 87, + "_watches": 44, + "_topics": [ + "helm-chart", + "airflow", + "apache-airflow", + "kubernetes" + ], + "_language": "Python", + "_homepage": null, + "_description": "airflow-chart: A Helm chart to install Apache Airflow on Kubernetes", + "_organization": "astronomer", + "_updated_at": "2022-12-13T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2020-01-22T00:00:00.000Z", + "_age_weeks": 151, + "_stars_per_week": 1.58, + "_pop_contributor_count": 48, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "astronomer", + "cerebral", + "mandolin-dev" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.58, + "_pop_updated_issues_count": 29, + "_pop_closed_issues_count": 29, + "_pop_created_since_days": 35, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 18, + "_pop_recent_releases_estimated_tags": 29, + "_pop_recent_releases_adjusted_count": 18, + "_pop_issue_count": 29.0, + "_pop_comment_count": 14.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 14, + "_pop_score": 44.49, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/astronomer/airflow-chart/master/README.md", + "_readme_localurl": "astronomer~airflow-chart~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 277, "category": "data", @@ -34811,7 +52482,7 @@ "description": null, "_repopath": "airbnb/omniduct", "_reponame": "omniduct", - "_stars": 237, + "_stars": 238, "_forks": 47, "_watches": 30, "_topics": [], @@ -34819,11 +52490,33 @@ "_homepage": "", "_description": "omniduct: A toolkit providing a uniform interface for connecting to and extracting data from a wide variety of (potentially remote) data stores (including HDFS, Hive, Presto, MySQL, etc).", "_organization": "airbnb", - "_updated_at": "2022-10-16T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2022-05-09T00:00:00.000Z", "_created_at": "2017-02-22T00:00:00.000Z", - "_age_weeks": 302, + "_age_weeks": 303, "_stars_per_week": 0.78, + "_pop_contributor_count": 12, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "airbnb", + "datascientistatnetflix" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 71, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 19.17, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/airbnb/omniduct/master/README.md", "_readme_localurl": "airbnb~omniduct~README.md", @@ -34838,38 +52531,64 @@ ] }, { - "index": 864, - "category": "ml-ops", - "githuburl": "https://github.com/astronomer/airflow-chart", + "index": 588, + "category": "data", + "githuburl": "https://github.com/tokern/data-lineage", "featured": null, "links": null, "description": null, - "_repopath": "astronomer/airflow-chart", - "_reponame": "airflow-chart", - "_stars": 236, - "_forks": 86, - "_watches": 44, + "_repopath": "tokern/data-lineage", + "_reponame": "data-lineage", + "_stars": 235, + "_forks": 27, + "_watches": 8, "_topics": [ - "helm-chart", - "airflow", - "apache-airflow", - "kubernetes" + "data-lineage", + "data-governance", + "python", + "postgresql", + "jupyter" ], "_language": "Python", - "_homepage": null, - "_description": "airflow-chart: A Helm chart to install Apache Airflow on Kubernetes", - "_organization": "astronomer", - "_updated_at": "2022-11-29T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2020-01-22T00:00:00.000Z", - "_age_weeks": 150, - "_stars_per_week": 1.57, + "_homepage": "https://tokern.io/data-lineage/", + "_description": "data-lineage: Generate and Visualize Data Lineage from query history", + "_organization": "tokern", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-05-02T00:00:00.000Z", + "_created_at": "2020-03-17T00:00:00.000Z", + "_age_weeks": 143, + "_stars_per_week": 1.63, + "_pop_contributor_count": 4, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.06, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 34, + "_pop_updated_since_days": 8, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 8.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 14.93, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/astronomer/airflow-chart/master/README.md", - "_readme_localurl": "astronomer~airflow-chart~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/tokern/data-lineage/master/README.md", + "_readme_localurl": "tokern~data-lineage~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/tokern/data-lineage/master/pyproject.toml" + ], + "_requirements_localurls": [ + "tokern~data-lineage~pyproject.toml" + ] }, { "index": 657, @@ -34888,11 +52607,34 @@ "_homepage": "https://www.makotemplates.org", "_description": "Mako Templates for Python", "_organization": "sqlalchemy", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-07T00:00:00.000Z", "_last_commit_date": "2022-12-01T00:00:00.000Z", "_created_at": "2018-11-26T00:00:00.000Z", - "_age_weeks": 210, - "_stars_per_week": 1.11, + "_age_weeks": 212, + "_stars_per_week": 1.1, + "_pop_contributor_count": 59, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "iter8ve", + "mozilla", + "redhat" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.67, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 16, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 7.0, + "_pop_comment_count": 17.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 1216, + "_pop_score": 50.88, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/sqlalchemy/mako/master/README.rst", "_readme_localurl": "sqlalchemy~mako~README.rst", @@ -34918,19 +52660,40 @@ "description": null, "_repopath": "infer-actively/pymdp", "_reponame": "pymdp", - "_stars": 232, - "_forks": 37, + "_stars": 233, + "_forks": 36, "_watches": 23, "_topics": [], "_language": "Python", "_homepage": "", "_description": "pymdp: A Python implementation of active inference for Markov Decision Processes", "_organization": "infer-actively", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-10-26T00:00:00.000Z", + "_updated_at": "2022-12-10T00:00:00.000Z", + "_last_commit_date": "2022-12-08T00:00:00.000Z", "_created_at": "2019-11-27T00:00:00.000Z", - "_age_weeks": 158, - "_stars_per_week": 1.47, + "_age_weeks": 159, + "_stars_per_week": 1.46, + "_pop_contributor_count": 12, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "thoughtmachine" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.54, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 37, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 7.0, + "_pop_comment_count": 9.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 8, + "_pop_score": 34.12, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/infer-actively/pymdp/master/README.md", "_readme_localurl": "infer-actively~pymdp~README.md", @@ -34948,44 +52711,68 @@ ] }, { - "index": 588, + "index": 515, "category": "data", - "githuburl": "https://github.com/tokern/data-lineage", + "githuburl": "https://github.com/jovianml/opendatasets", "featured": null, "links": null, "description": null, - "_repopath": "tokern/data-lineage", - "_reponame": "data-lineage", - "_stars": 231, - "_forks": 27, - "_watches": 8, + "_repopath": "jovianml/opendatasets", + "_reponame": "opendatasets", + "_stars": 233, + "_forks": 109, + "_watches": 14, "_topics": [ - "data-lineage", - "data-governance", - "python", - "postgresql", - "jupyter" + "data-science", + "machine-learning", + "datasets", + "python" ], "_language": "Python", - "_homepage": "https://tokern.io/data-lineage/", - "_description": "data-lineage: Generate and Visualize Data Lineage from query history", - "_organization": "tokern", - "_updated_at": "2022-12-01T00:00:00.000Z", - "_last_commit_date": "2022-05-02T00:00:00.000Z", - "_created_at": "2020-03-17T00:00:00.000Z", - "_age_weeks": 142, - "_stars_per_week": 1.63, + "_homepage": "", + "_description": "opendatasets: A Python library for downloading datasets from Kaggle, Google Drive, and other online sources.", + "_organization": "jovianml", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-11-01T00:00:00.000Z", + "_created_at": "2020-09-17T00:00:00.000Z", + "_age_weeks": 117, + "_stars_per_week": 1.98, + "_pop_contributor_count": 3, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "jovian", + "jovianml" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.13, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 27, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 3, + "_pop_score": 18.15, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/tokern/data-lineage/master/README.md", - "_readme_localurl": "tokern~data-lineage~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/jovianml/opendatasets/master/README.md", + "_readme_localurl": "jovianml~opendatasets~README.md", "_requirements_filenames": [ - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/tokern/data-lineage/master/pyproject.toml" + "https://raw.githubusercontent.com/jovianml/opendatasets/master/requirements.txt", + "https://raw.githubusercontent.com/jovianml/opendatasets/master/setup.py" ], "_requirements_localurls": [ - "tokern~data-lineage~pyproject.toml" + "jovianml~opendatasets~requirements.txt", + "jovianml~opendatasets~setup.py" ] }, { @@ -34997,7 +52784,7 @@ "description": null, "_repopath": "microsoft/genalog", "_reponame": "genalog", - "_stars": 231, + "_stars": 232, "_forks": 23, "_watches": 10, "_topics": [ @@ -35016,11 +52803,32 @@ "_homepage": "https://microsoft.github.io/genalog/", "_description": "Genalog is an open source, cross-platform python package allowing generation of synthetic document images with custom degradations and text alignment capabilities.", "_organization": "microsoft", - "_updated_at": "2022-11-29T00:00:00.000Z", + "_updated_at": "2022-12-11T00:00:00.000Z", "_last_commit_date": "2022-09-13T00:00:00.000Z", "_created_at": "2020-06-15T00:00:00.000Z", - "_age_weeks": 129, - "_stars_per_week": 1.79, + "_age_weeks": 131, + "_stars_per_week": 1.77, + "_pop_contributor_count": 5, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "microsoft" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 16.92, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/microsoft/genalog/master/README.md", "_readme_localurl": "microsoft~genalog~README.md", @@ -35038,46 +52846,69 @@ ] }, { - "index": 515, - "category": "data", - "githuburl": "https://github.com/jovianml/opendatasets", + "index": 737, + "category": "ml-ops", + "githuburl": "https://github.com/skops-dev/skops", "featured": null, "links": null, "description": null, - "_repopath": "jovianml/opendatasets", - "_reponame": "opendatasets", - "_stars": 230, - "_forks": 110, - "_watches": 14, + "_repopath": "skops-dev/skops", + "_reponame": "skops", + "_stars": 227, + "_forks": 32, + "_watches": 7, "_topics": [ - "data-science", + "huggingface", "machine-learning", - "datasets", - "python" + "mlops", + "scikit-learn", + "hacktoberfest" ], "_language": "Python", - "_homepage": "", - "_description": "opendatasets: A Python library for downloading datasets from Kaggle, Google Drive, and other online sources.", - "_organization": "jovianml", - "_updated_at": "2022-12-03T00:00:00.000Z", - "_last_commit_date": "2022-11-01T00:00:00.000Z", - "_created_at": "2020-09-17T00:00:00.000Z", - "_age_weeks": 115, - "_stars_per_week": 1.99, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/jovianml/opendatasets/master/README.md", - "_readme_localurl": "jovianml~opendatasets~README.md", + "_homepage": "https://skops.readthedocs.io/en/stable/", + "_description": "skops is a Python library helping you share your scikit-learn based models and put them in production", + "_organization": "skops-dev", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2022-05-04T00:00:00.000Z", + "_age_weeks": 32, + "_stars_per_week": 6.94, + "_pop_contributor_count": 9, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "huggingface", + "jsainsburyplc,sainsburys-tech" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.48, + "_pop_updated_issues_count": 138, + "_pop_closed_issues_count": 104, + "_pop_created_since_days": 8, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 138.0, + "_pop_comment_count": 530.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.8, + "_pop_dependents_count": 4, + "_pop_score": 38.3, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/skops-dev/skops/master/README.rst", + "_readme_localurl": "skops-dev~skops~README.rst", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/jovianml/opendatasets/master/requirements.txt", - "https://raw.githubusercontent.com/jovianml/opendatasets/master/setup.py" + "https://raw.githubusercontent.com/skops-dev/skops/master/setup.py", + "https://raw.githubusercontent.com/skops-dev/skops/master/pyproject.toml" ], "_requirements_localurls": [ - "jovianml~opendatasets~requirements.txt", - "jovianml~opendatasets~setup.py" + "skops-dev~skops~setup.py", + "skops-dev~skops~pyproject.toml" ] }, { @@ -35089,19 +52920,40 @@ "description": null, "_repopath": "stan-dev/pystan", "_reponame": "pystan", - "_stars": 219, - "_forks": 43, + "_stars": 226, + "_forks": 45, "_watches": 12, "_topics": [], "_language": "Python", "_homepage": "", "_description": "PyStan, a Python interface to Stan, a platform for statistical modeling. Documentation: https://pystan.readthedocs.io", "_organization": "stan-dev", - "_updated_at": "2022-11-28T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-11-26T00:00:00.000Z", "_created_at": "2017-09-17T00:00:00.000Z", - "_age_weeks": 272, - "_stars_per_week": 0.8, + "_age_weeks": 274, + "_stars_per_week": 0.82, + "_pop_contributor_count": 11, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "lumoanalytics" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.48, + "_pop_updated_issues_count": 23, + "_pop_closed_issues_count": 16, + "_pop_created_since_days": 64, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 23.0, + "_pop_comment_count": 58.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 26, + "_pop_score": 37.72, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/stan-dev/pystan/master/README.rst", "_readme_localurl": "stan-dev~pystan~README.rst", @@ -35124,7 +52976,7 @@ "description": null, "_repopath": "amzn/ion-python", "_reponame": "ion-python", - "_stars": 213, + "_stars": 215, "_forks": 49, "_watches": 23, "_topics": [], @@ -35132,11 +52984,33 @@ "_homepage": "http://amzn.github.io/ion-docs/", "_description": "ion-python: A Python implementation of Amazon Ion.", "_organization": "amzn", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-08-19T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2016-04-07T00:00:00.000Z", - "_age_weeks": 347, - "_stars_per_week": 0.61, + "_age_weeks": 349, + "_stars_per_week": 0.62, + "_pop_contributor_count": 25, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazon", + "amzn" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.33, + "_pop_updated_issues_count": 13, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 82, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 13.0, + "_pop_comment_count": 6.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 16, + "_pop_score": 38.05, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/amzn/ion-python/master/README.md", "_readme_localurl": "amzn~ion-python~README.md", @@ -35153,50 +53027,6 @@ "amzn~ion-python~setup.py" ] }, - { - "index": 737, - "category": "ml-ops", - "githuburl": "https://github.com/skops-dev/skops", - "featured": null, - "links": null, - "description": null, - "_repopath": "skops-dev/skops", - "_reponame": "skops", - "_stars": 213, - "_forks": 31, - "_watches": 9, - "_topics": [ - "huggingface", - "machine-learning", - "mlops", - "scikit-learn", - "hacktoberfest" - ], - "_language": "Python", - "_homepage": "https://skops.readthedocs.io/en/stable/", - "_description": "skops is a Python library helping you share your scikit-learn based models and put them in production", - "_organization": "skops-dev", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2022-05-04T00:00:00.000Z", - "_age_weeks": 31, - "_stars_per_week": 6.87, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/skops-dev/skops/master/README.rst", - "_readme_localurl": "skops-dev~skops~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/skops-dev/skops/master/setup.py", - "https://raw.githubusercontent.com/skops-dev/skops/master/pyproject.toml" - ], - "_requirements_localurls": [ - "skops-dev~skops~setup.py", - "skops-dev~skops~pyproject.toml" - ] - }, { "index": 491, "category": "gis", @@ -35206,7 +53036,7 @@ "description": null, "_repopath": "cogeotiff/rio-cogeo", "_reponame": "rio-cogeo", - "_stars": 212, + "_stars": 213, "_forks": 30, "_watches": 44, "_topics": [ @@ -35220,11 +53050,34 @@ "_homepage": "https://cogeotiff.github.io/rio-cogeo/", "_description": "rio-cogeo: Cloud Optimized GeoTIFF creation and validation plugin for rasterio", "_organization": "cogeotiff", - "_updated_at": "2022-11-16T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-10-26T00:00:00.000Z", "_created_at": "2018-03-09T00:00:00.000Z", - "_age_weeks": 247, - "_stars_per_week": 0.86, + "_age_weeks": 249, + "_stars_per_week": 0.85, + "_pop_contributor_count": 13, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "developmentseed", + "regrowag", + "uav4geo" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.63, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 58, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 4.0, + "_pop_comment_count": 6.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 11, + "_pop_score": 37.22, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/cogeotiff/rio-cogeo/master/README.md", "_readme_localurl": "cogeotiff~rio-cogeo~README.md", @@ -35238,6 +53091,60 @@ "cogeotiff~rio-cogeo~pyproject.toml" ] }, + { + "index": 888, + "category": "study", + "githuburl": "https://github.com/amaargiru/pyroad", + "featured": null, + "links": null, + "description": null, + "_repopath": "amaargiru/pyroad", + "_reponame": "pyroad", + "_stars": 205, + "_forks": 26, + "_watches": 5, + "_topics": [ + "python", + "roadmap", + "tutorial" + ], + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "pyroad: Detailed Python developer roadmap", + "_organization": "amaargiru", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", + "_created_at": "2022-11-03T00:00:00.000Z", + "_age_weeks": 6, + "_stars_per_week": 31.2, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "oznadigitalsolutions" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.92, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 2, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 4.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 14.54, + "_readme_filename": "readme.md", + "_readme_giturl": "https://raw.githubusercontent.com/amaargiru/pyroad/master/readme.md", + "_readme_localurl": "amaargiru~pyroad~readme.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 249, "category": "sim", @@ -35247,7 +53154,7 @@ "description": null, "_repopath": "bilhim/trafficsimulator", "_reponame": "trafficSimulator", - "_stars": 203, + "_stars": 204, "_forks": 77, "_watches": 13, "_topics": [], @@ -35255,11 +53162,30 @@ "_homepage": null, "_description": "bilhim/trafficsimulator", "_organization": "bilhim", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-12T00:00:00.000Z", "_last_commit_date": "2021-09-07T00:00:00.000Z", "_created_at": "2021-09-05T00:00:00.000Z", - "_age_weeks": 65, - "_stars_per_week": 3.1, + "_age_weeks": 67, + "_stars_per_week": 3.04, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 16, + "_pop_updated_since_days": 16, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 4, + "_pop_score": 5.92, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/bilhim/trafficsimulator/master/README.md", "_readme_localurl": "bilhim~trafficsimulator~README.md", @@ -35273,39 +53199,6 @@ "bilhim~trafficsimulator~requirements.txt" ] }, - { - "index": 888, - "category": "study", - "githuburl": "https://github.com/amaargiru/pyroad", - "featured": null, - "links": null, - "description": null, - "_repopath": "amaargiru/pyroad", - "_reponame": "pyroad", - "_stars": 199, - "_forks": 25, - "_watches": 5, - "_topics": [ - "python", - "roadmap", - "tutorial" - ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "pyroad: Detailed Python developer roadmap", - "_organization": "amaargiru", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", - "_created_at": "2022-11-03T00:00:00.000Z", - "_age_weeks": 4, - "_stars_per_week": 40.97, - "_readme_filename": "readme.md", - "_readme_giturl": "https://raw.githubusercontent.com/amaargiru/pyroad/master/readme.md", - "_readme_localurl": "amaargiru~pyroad~readme.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 243, "category": "ml", @@ -35315,8 +53208,8 @@ "description": null, "_repopath": "carla-recourse/carla", "_reponame": "CARLA", - "_stars": 197, - "_forks": 41, + "_stars": 198, + "_forks": 42, "_watches": 5, "_topics": [ "python", @@ -35339,11 +53232,32 @@ "_homepage": "", "_description": "CARLA: A Python Library to Benchmark Algorithmic Recourse and Counterfactual Explanation Algorithms", "_organization": "carla-recourse", - "_updated_at": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-09-07T00:00:00.000Z", "_created_at": "2020-12-09T00:00:00.000Z", - "_age_weeks": 104, - "_stars_per_week": 1.89, + "_age_weeks": 105, + "_stars_per_week": 1.87, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bezerocarbon" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.81, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 25, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 15.23, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/carla-recourse/carla/master/README.md", "_readme_localurl": "carla-recourse~carla~README.md", @@ -35366,7 +53280,7 @@ "description": null, "_repopath": "nv-tlabs/gamegan_code", "_reponame": "GameGAN_code", - "_stars": 197, + "_stars": 198, "_forks": 32, "_watches": 9, "_topics": [], @@ -35374,11 +53288,30 @@ "_homepage": null, "_description": "GameGAN_code: Learning to Simulate Dynamic Environments with GameGAN (CVPR 2020)", "_organization": "nv-tlabs", - "_updated_at": "2022-12-04T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2021-11-11T00:00:00.000Z", "_created_at": "2020-12-11T00:00:00.000Z", - "_age_weeks": 103, - "_stars_per_week": 1.9, + "_age_weeks": 105, + "_stars_per_week": 1.88, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 25, + "_pop_updated_since_days": 13, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 2, + "_pop_score": 6.52, "_readme_filename": "readme.md", "_readme_giturl": "https://raw.githubusercontent.com/nv-tlabs/gamegan_code/master/readme.md", "_readme_localurl": "nv-tlabs~gamegan_code~readme.md", @@ -35401,8 +53334,8 @@ "description": null, "_repopath": "astronomer/astro-sdk", "_reponame": "astro-sdk", - "_stars": 195, - "_forks": 26, + "_stars": 197, + "_forks": 27, "_watches": 13, "_topics": [ "python", @@ -35427,11 +53360,33 @@ "_homepage": "https://docs.astronomer.io/learn/astro-python-sdk-etl", "_description": "astro-sdk: Astro SDK allows rapid and clean development of {Extract, Load, Transform} workflows using Python and SQL, powered by Apache Airflow.", "_organization": "astronomer", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2021-12-06T00:00:00.000Z", - "_age_weeks": 52, - "_stars_per_week": 3.73, + "_age_weeks": 54, + "_stars_per_week": 3.65, + "_pop_contributor_count": 32, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "astronomer", + "astronomerio" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 13.54, + "_pop_updated_issues_count": 677, + "_pop_closed_issues_count": 489, + "_pop_created_since_days": 13, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 42, + "_pop_recent_releases_estimated_tags": 49, + "_pop_recent_releases_adjusted_count": 42, + "_pop_issue_count": 677.0, + "_pop_comment_count": 784.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 112, + "_pop_score": 52.57, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/astronomer/astro-sdk/master/README.md", "_readme_localurl": "astronomer~astro-sdk~README.md", @@ -35448,7 +53403,7 @@ "description": null, "_repopath": "r-barnes/richdem", "_reponame": "richdem", - "_stars": 194, + "_stars": 195, "_forks": 57, "_watches": 14, "_topics": [ @@ -35463,11 +53418,33 @@ "_homepage": "", "_description": "richdem: High-performance Terrain and Hydrology Analysis ", "_organization": "r-barnes", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2022-11-18T00:00:00.000Z", "_created_at": "2013-01-06T00:00:00.000Z", - "_age_weeks": 517, - "_stars_per_week": 0.37, + "_age_weeks": 519, + "_stars_per_week": 0.38, + "_pop_contributor_count": 4, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "universityofcolorado", + "universityofidaho" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.79, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 121, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 9.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 84, + "_pop_score": 34.88, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/r-barnes/richdem/master/README.md", "_readme_localurl": "r-barnes~richdem~README.md", @@ -35513,8 +53490,30 @@ "_updated_at": "2022-12-02T00:00:00.000Z", "_last_commit_date": "2022-11-05T00:00:00.000Z", "_created_at": "2020-04-01T00:00:00.000Z", - "_age_weeks": 140, - "_stars_per_week": 1.39, + "_age_weeks": 141, + "_stars_per_week": 1.37, + "_pop_contributor_count": 10, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "carnegiemellonuniversity", + "universityofcambridge" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.85, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 33, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 8.0, + "_pop_comment_count": 27.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.4, + "_pop_dependents_count": 12, + "_pop_score": 34.9, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/autonlab/auton-survival/master/README.md", "_readme_localurl": "autonlab~auton-survival~README.md", @@ -35546,10 +53545,34 @@ "_description": "nbformat: Reference implementation of the Jupyter Notebook format", "_organization": "jupyter", "_updated_at": "2022-12-01T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", "_created_at": "2015-04-09T00:00:00.000Z", - "_age_weeks": 399, + "_age_weeks": 401, "_stars_per_week": 0.48, + "_pop_contributor_count": 70, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "mongodb", + "noteable-io", + "quansight-labs", + "simularesearchlaboratory" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.35, + "_pop_updated_issues_count": 40, + "_pop_closed_issues_count": 30, + "_pop_created_since_days": 94, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 40.0, + "_pop_comment_count": 40.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 1138, + "_pop_score": 57.95, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jupyter/nbformat/master/README.md", "_readme_localurl": "jupyter~nbformat~README.md", @@ -35572,7 +53595,7 @@ "description": null, "_repopath": "graal-research/deepparse", "_reponame": "deepparse", - "_stars": 186, + "_stars": 190, "_forks": 23, "_watches": 4, "_topics": [ @@ -35584,11 +53607,32 @@ "_homepage": "https://deepparse.org/", "_description": "Deepparse is a state-of-the-art library for parsing multinational street addresses using deep learning", "_organization": "graal-research", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-12-01T00:00:00.000Z", "_created_at": "2020-07-01T00:00:00.000Z", - "_age_weeks": 127, - "_stars_per_week": 1.46, + "_age_weeks": 128, + "_stars_per_week": 1.48, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "baseline.qu\u00e9bec" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.54, + "_pop_updated_issues_count": 17, + "_pop_closed_issues_count": 15, + "_pop_created_since_days": 30, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 20, + "_pop_recent_releases_estimated_tags": 18, + "_pop_recent_releases_adjusted_count": 20, + "_pop_issue_count": 17.0, + "_pop_comment_count": 15.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 34, + "_pop_score": 36.86, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/graal-research/deepparse/master/README.md", "_readme_localurl": "graal-research~deepparse~README.md", @@ -35617,7 +53661,7 @@ "description": null, "_repopath": "mrabarnett/mrab-regex", "_reponame": "mrab-regex", - "_stars": 183, + "_stars": 189, "_forks": 24, "_watches": 5, "_topics": [], @@ -35625,11 +53669,33 @@ "_homepage": null, "_description": "mrabarnett/mrab-regex", "_organization": "mrabarnett", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-10-31T00:00:00.000Z", "_created_at": "2020-11-02T00:00:00.000Z", - "_age_weeks": 109, - "_stars_per_week": 1.67, + "_age_weeks": 111, + "_stars_per_week": 1.7, + "_pop_contributor_count": 9, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "facebook", + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.31, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 26, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 7.0, + "_pop_comment_count": 15.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 2311, + "_pop_score": 42.54, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/mrabarnett/mrab-regex/master/README.rst", "_readme_localurl": "mrabarnett~mrab-regex~README.rst", @@ -35652,8 +53718,8 @@ "description": null, "_repopath": "pysal/spopt", "_reponame": "spopt", - "_stars": 182, - "_forks": 30, + "_stars": 184, + "_forks": 32, "_watches": 13, "_topics": [ "spatial-optimization", @@ -35671,11 +53737,34 @@ "_homepage": "https://pysal.org/spopt/", "_description": "spopt: Spatial Optimization", "_organization": "pysal", - "_updated_at": "2022-11-27T00:00:00.000Z", - "_last_commit_date": "2022-11-21T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2019-03-01T00:00:00.000Z", - "_age_weeks": 196, + "_age_weeks": 198, "_stars_per_week": 0.93, + "_pop_contributor_count": 15, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "center-for-open-geographical-science", + "centerforopengeographicalscience", + "ornl" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.38, + "_pop_updated_issues_count": 75, + "_pop_closed_issues_count": 58, + "_pop_created_since_days": 46, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 75.0, + "_pop_comment_count": 73.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 104, + "_pop_score": 46.88, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pysal/spopt/master/README.md", "_readme_localurl": "pysal~spopt~README.md", @@ -35701,19 +53790,41 @@ "description": null, "_repopath": "aws/aws-lambda-python-runtime-interface-client", "_reponame": "aws-lambda-python-runtime-interface-client", - "_stars": 178, - "_forks": 41, - "_watches": 12, + "_stars": 181, + "_forks": 42, + "_watches": 13, "_topics": [], "_language": "Python", "_homepage": null, "_description": "aws/aws-lambda-python-runtime-interface-client", "_organization": "aws", - "_updated_at": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-08-16T00:00:00.000Z", "_created_at": "2020-09-02T00:00:00.000Z", - "_age_weeks": 118, + "_age_weeks": 119, "_stars_per_week": 1.51, + "_pop_contributor_count": 21, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "356", + "amazonwebservices" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.31, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 28, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 7.0, + "_pop_comment_count": 6.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 2, + "_pop_score": 27.78, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/aws/aws-lambda-python-runtime-interface-client/master/README.md", "_readme_localurl": "aws~aws-lambda-python-runtime-interface-client~README.md", @@ -35727,6 +53838,147 @@ "aws~aws-lambda-python-runtime-interface-client~setup.py" ] }, + { + "index": 467, + "category": "math", + "githuburl": "https://github.com/lukaszahradnik/pyneuralogic", + "featured": null, + "links": null, + "description": null, + "_repopath": "lukaszahradnik/pyneuralogic", + "_reponame": "PyNeuraLogic", + "_stars": 181, + "_forks": 14, + "_watches": 5, + "_topics": [ + "machine-learning", + "deep-learning", + "graph-neural-networks", + "relational-learning", + "python", + "geometric-deep-learning", + "pytorch", + "logic-programming", + "differentiable-programming" + ], + "_language": "Python", + "_homepage": "https://pyneuralogic.readthedocs.io/", + "_description": "PyNeuraLogic lets you use Python to create Differentiable Logic Programs", + "_organization": "lukaszahradnik", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_created_at": "2020-12-06T00:00:00.000Z", + "_age_weeks": 106, + "_stars_per_week": 1.71, + "_pop_contributor_count": 3, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "adevinta", + "czechtechnicaluniversity" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.31, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 25, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 16, + "_pop_recent_releases_estimated_tags": 17, + "_pop_recent_releases_adjusted_count": 16, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 26.83, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/README.md", + "_readme_localurl": "lukaszahradnik~pyneuralogic~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/requirements.txt", + "https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/setup.py", + "https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/pyproject.toml" + ], + "_requirements_localurls": [ + "lukaszahradnik~pyneuralogic~requirements.txt", + "lukaszahradnik~pyneuralogic~setup.py", + "lukaszahradnik~pyneuralogic~pyproject.toml" + ] + }, + { + "index": 899, + "category": "gis", + "githuburl": "https://github.com/kuanb/peartree", + "featured": null, + "links": null, + "description": null, + "_repopath": "kuanb/peartree", + "_reponame": "peartree", + "_stars": 181, + "_forks": 16, + "_watches": 13, + "_topics": [ + "network-analysis", + "transit", + "graphs", + "gtfs", + "spatial-analysis", + "gis", + "modeling" + ], + "_language": "Python", + "_homepage": "", + "_description": "peartree: A library for converting transit data into a directed graph for sketch network analysis.", + "_organization": "kuanb", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2021-01-18T00:00:00.000Z", + "_created_at": "2017-11-12T00:00:00.000Z", + "_age_weeks": 266, + "_stars_per_week": 0.68, + "_pop_contributor_count": 5, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "eradb", + "mapbox" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 62, + "_pop_updated_since_days": 23, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 15.66, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/kuanb/peartree/master/README.rst", + "_readme_localurl": "kuanb~peartree~README.rst", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/kuanb/peartree/master/requirements.txt", + "https://raw.githubusercontent.com/kuanb/peartree/master/setup.py" + ], + "_requirements_localurls": [ + "kuanb~peartree~requirements.txt", + "kuanb~peartree~setup.py" + ] + }, { "index": 520, "category": "gis", @@ -35736,8 +53988,8 @@ "description": null, "_repopath": "lydorn/polygonization-by-frame-field-learning", "_reponame": "Polygonization-by-Frame-Field-Learning", - "_stars": 177, - "_forks": 50, + "_stars": 179, + "_forks": 51, "_watches": 11, "_topics": [ "segmentation", @@ -35751,11 +54003,30 @@ "_homepage": "", "_description": "Polygonization-by-Frame-Field-Learning: This repository contains the code for our fast polygonal building extraction from overhead images pipeline.", "_organization": "lydorn", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2021-07-08T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2022-12-09T00:00:00.000Z", "_created_at": "2020-05-26T00:00:00.000Z", - "_age_weeks": 132, + "_age_weeks": 133, "_stars_per_week": 1.34, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.13, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 11.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 5.5, + "_pop_dependents_count": 0, + "_pop_score": 19.33, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/lydorn/polygonization-by-frame-field-learning/master/README.md", "_readme_localurl": "lydorn~polygonization-by-frame-field-learning~README.md", @@ -35781,7 +54052,7 @@ "description": null, "_repopath": "spatialucr/geosnap", "_reponame": "geosnap", - "_stars": 175, + "_stars": 176, "_forks": 28, "_watches": 17, "_topics": [], @@ -35789,11 +54060,36 @@ "_homepage": "https://spatialucr.github.io/geosnap-guide", "_description": "geosnap: The Geospatial Neighborhood Analysis Package", "_organization": "spatialucr", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-08T00:00:00.000Z", "_last_commit_date": "2022-10-24T00:00:00.000Z", "_created_at": "2018-09-19T00:00:00.000Z", - "_age_weeks": 220, - "_stars_per_week": 0.8, + "_age_weeks": 221, + "_stars_per_week": 0.79, + "_pop_contributor_count": 9, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "center-for-open-geographical-science", + "centerforopengeographicalscience", + "mansueto-institute", + "ornl", + "universityofnorthtexas" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.94, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 4.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 16, + "_pop_score": 33.92, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/spatialucr/geosnap/master/README.md", "_readme_localurl": "spatialucr~geosnap~README.md", @@ -35819,7 +54115,7 @@ "description": null, "_repopath": "bowenc0221/boundary-iou-api", "_reponame": "boundary-iou-api", - "_stars": 174, + "_stars": 175, "_forks": 17, "_watches": 8, "_topics": [], @@ -35827,11 +54123,30 @@ "_homepage": "", "_description": "boundary-iou-api: Boundary IoU API (Beta version)", "_organization": "bowenc0221", - "_updated_at": "2022-11-25T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2021-04-05T00:00:00.000Z", "_created_at": "2021-03-29T00:00:00.000Z", - "_age_weeks": 88, - "_stars_per_week": 1.97, + "_age_weeks": 90, + "_stars_per_week": 1.94, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 21, + "_pop_updated_since_days": 21, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 3.03, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/bowenc0221/boundary-iou-api/master/README.md", "_readme_localurl": "bowenc0221~boundary-iou-api~README.md", @@ -35846,54 +54161,64 @@ ] }, { - "index": 467, - "category": "math", - "githuburl": "https://github.com/lukaszahradnik/pyneuralogic", + "index": 266, + "category": "nlp", + "githuburl": "https://github.com/allenai/s2orc-doc2json", "featured": null, "links": null, "description": null, - "_repopath": "lukaszahradnik/pyneuralogic", - "_reponame": "PyNeuraLogic", - "_stars": 173, - "_forks": 13, - "_watches": 4, - "_topics": [ - "machine-learning", - "deep-learning", - "graph-neural-networks", - "relational-learning", - "python", - "geometric-deep-learning", - "pytorch", - "logic-programming", - "differentiable-programming" - ], + "_repopath": "allenai/s2orc-doc2json", + "_reponame": "s2orc-doc2json", + "_stars": 174, + "_forks": 30, + "_watches": 6, + "_topics": [], "_language": "Python", - "_homepage": "https://pyneuralogic.readthedocs.io/", - "_description": "PyNeuraLogic lets you use Python to create Differentiable Logic Programs", - "_organization": "lukaszahradnik", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2020-12-06T00:00:00.000Z", - "_age_weeks": 104, - "_stars_per_week": 1.66, + "_homepage": "", + "_description": "s2orc-doc2json: Parsers for scientific papers (PDF2JSON, TEX2JSON, JATS2JSON)", + "_organization": "allenai", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-09T00:00:00.000Z", + "_created_at": "2020-12-10T00:00:00.000Z", + "_age_weeks": 105, + "_stars_per_week": 1.65, + "_pop_contributor_count": 9, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "allenai", + "castedo.com", + "kafkodersfrontiersin" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.13, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 25, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 6.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 0, + "_pop_score": 25.06, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/README.md", - "_readme_localurl": "lukaszahradnik~pyneuralogic~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/README.md", + "_readme_localurl": "allenai~s2orc-doc2json~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/requirements.txt", - "https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/setup.py", - "https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/pyproject.toml" + "https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/requirements.txt", + "https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/setup.py" ], "_requirements_localurls": [ - "lukaszahradnik~pyneuralogic~requirements.txt", - "lukaszahradnik~pyneuralogic~setup.py", - "lukaszahradnik~pyneuralogic~pyproject.toml" + "allenai~s2orc-doc2json~requirements.txt", + "allenai~s2orc-doc2json~setup.py" ] }, { @@ -35921,8 +54246,30 @@ "_updated_at": "2022-12-01T00:00:00.000Z", "_last_commit_date": "2020-09-09T00:00:00.000Z", "_created_at": "2018-12-05T00:00:00.000Z", - "_age_weeks": 209, - "_stars_per_week": 0.82, + "_age_weeks": 210, + "_stars_per_week": 0.81, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "deceptiveai", + "monash-mercpay-baymax" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 28, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 0, + "_pop_score": 15.84, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jasonrig/address-net/master/README.md", "_readme_localurl": "jasonrig~address-net~README.md", @@ -35936,44 +54283,6 @@ "jasonrig~address-net~setup.py" ] }, - { - "index": 266, - "category": "nlp", - "githuburl": "https://github.com/allenai/s2orc-doc2json", - "featured": null, - "links": null, - "description": null, - "_repopath": "allenai/s2orc-doc2json", - "_reponame": "s2orc-doc2json", - "_stars": 170, - "_forks": 29, - "_watches": 8, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "s2orc-doc2json: Parsers for scientific papers (PDF2JSON, TEX2JSON, JATS2JSON)", - "_organization": "allenai", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-18T00:00:00.000Z", - "_created_at": "2020-12-10T00:00:00.000Z", - "_age_weeks": 103, - "_stars_per_week": 1.64, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/README.md", - "_readme_localurl": "allenai~s2orc-doc2json~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/requirements.txt", - "https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/setup.py" - ], - "_requirements_localurls": [ - "allenai~s2orc-doc2json~requirements.txt", - "allenai~s2orc-doc2json~setup.py" - ] - }, { "index": 461, "category": "nlp", @@ -35983,19 +54292,38 @@ "description": null, "_repopath": "yoadtew/zero-shot-image-to-text", "_reponame": "zero-shot-image-to-text", - "_stars": 164, - "_forks": 22, + "_stars": 165, + "_forks": 23, "_watches": 7, "_topics": [], "_language": "Python", "_homepage": "", "_description": "zero-shot-image-to-text: Implementation of Zero-Shot Image-to-Text Generation for Visual-Semantic Arithmetic", "_organization": "yoadtew", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-11T00:00:00.000Z", "_last_commit_date": "2022-09-17T00:00:00.000Z", "_created_at": "2021-11-26T00:00:00.000Z", - "_age_weeks": 53, - "_stars_per_week": 3.05, + "_age_weeks": 55, + "_stars_per_week": 2.98, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.12, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 13, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 7.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.1, + "_pop_dependents_count": 0, + "_pop_score": 11.24, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/yoadtew/zero-shot-image-to-text/master/README.md", "_readme_localurl": "yoadtew~zero-shot-image-to-text~README.md", @@ -36013,117 +54341,74 @@ ] }, { - "index": 339, - "category": "perf", - "githuburl": "https://github.com/tlkh/tf-metal-experiments", + "index": 415, + "category": "ml-dl", + "githuburl": "https://github.com/rafiqhasan/auto-tensorflow", "featured": null, "links": null, "description": null, - "_repopath": "tlkh/tf-metal-experiments", - "_reponame": "tf-metal-experiments", - "_stars": 160, - "_forks": 17, - "_watches": 9, + "_repopath": "rafiqhasan/auto-tensorflow", + "_reponame": "auto-tensorflow", + "_stars": 163, + "_forks": 33, + "_watches": 12, "_topics": [ - "gpu", - "deep-learning", "tensorflow", - "m1", - "m1-max", - "benchmark", - "bert" - ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "tf-metal-experiments: TensorFlow Metal Backend on Apple Silicon Experiments (just for fun)", - "_organization": "tlkh", - "_updated_at": "2022-11-30T00:00:00.000Z", - "_last_commit_date": "2021-11-15T00:00:00.000Z", - "_created_at": "2021-10-26T00:00:00.000Z", - "_age_weeks": 58, - "_stars_per_week": 2.75, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/tlkh/tf-metal-experiments/master/README.md", - "_readme_localurl": "tlkh~tf-metal-experiments~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, - { - "index": 899, - "category": "gis", - "githuburl": "https://github.com/kuanb/peartree", - "featured": null, - "links": null, - "description": null, - "_repopath": "kuanb/peartree", - "_reponame": "peartree", - "_stars": 160, - "_forks": 13, - "_watches": 11, - "_topics": [ - "network-analysis", - "transit", - "graphs", - "gtfs", - "spatial-analysis", - "gis", - "modeling" + "deeplearning", + "neural-networks", + "machinelearning", + "tfx", + "machine-learning", + "automl", + "auto-tensorflow", + "autotensorflow" ], "_language": "Python", "_homepage": "", - "_description": "peartree: A library for converting transit data into a directed graph for sketch network analysis.", - "_organization": "kuanb", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2021-01-18T00:00:00.000Z", - "_created_at": "2017-11-12T00:00:00.000Z", - "_age_weeks": 264, - "_stars_per_week": 0.61, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/kuanb/peartree/master/README.rst", - "_readme_localurl": "kuanb~peartree~README.rst", + "_description": "auto-tensorflow: Build Low Code Automated Tensorflow explainable models in just 3 lines of code. Library created by: Hasan Rafiq - https://www.linkedin.com/in/sam04/", + "_organization": "rafiqhasan", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-09T00:00:00.000Z", + "_created_at": "2021-07-05T00:00:00.000Z", + "_age_weeks": 76, + "_stars_per_week": 2.14, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 18, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 14.66, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/rafiqhasan/auto-tensorflow/master/README.md", + "_readme_localurl": "rafiqhasan~auto-tensorflow~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/kuanb/peartree/master/requirements.txt", - "https://raw.githubusercontent.com/kuanb/peartree/master/setup.py" + "https://raw.githubusercontent.com/rafiqhasan/auto-tensorflow/master/setup.py", + "https://raw.githubusercontent.com/rafiqhasan/auto-tensorflow/master/pyproject.toml" ], "_requirements_localurls": [ - "kuanb~peartree~requirements.txt", - "kuanb~peartree~setup.py" + "rafiqhasan~auto-tensorflow~setup.py", + "rafiqhasan~auto-tensorflow~pyproject.toml" ] }, - { - "index": 743, - "category": "study", - "githuburl": "https://github.com/koaning/calm-notebooks", - "featured": null, - "links": null, - "description": null, - "_repopath": "koaning/calm-notebooks", - "_reponame": "calm-notebooks", - "_stars": 157, - "_forks": 133, - "_watches": 7, - "_topics": [], - "_language": "Jupyter Notebook", - "_homepage": "https://calmcode.io", - "_description": "calm-notebooks: notebooks that are used at calmcode.io", - "_organization": "koaning", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2021-10-21T00:00:00.000Z", - "_created_at": "2020-03-01T00:00:00.000Z", - "_age_weeks": 144, - "_stars_per_week": 1.09, - "_readme_filename": "readme.md", - "_readme_giturl": "https://raw.githubusercontent.com/koaning/calm-notebooks/master/readme.md", - "_readme_localurl": "koaning~calm-notebooks~readme.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 819, "category": "time-series", @@ -36133,7 +54418,7 @@ "description": null, "_repopath": "salesforce/deeptime", "_reponame": "DeepTime", - "_stars": 155, + "_stars": 161, "_forks": 22, "_watches": 5, "_topics": [ @@ -36149,11 +54434,30 @@ "_homepage": "", "_description": "PyTorch code for DeepTime: Deep Time-Index Meta-Learning for Non-Stationary Time-Series Forecasting", "_organization": "salesforce", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-11-03T00:00:00.000Z", "_created_at": "2022-06-27T00:00:00.000Z", - "_age_weeks": 23, - "_stars_per_week": 6.66, + "_age_weeks": 25, + "_stars_per_week": 6.44, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.21, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 6, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 9.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 0, + "_pop_score": 12.76, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/salesforce/deeptime/master/README.md", "_readme_localurl": "salesforce~deeptime~README.md", @@ -36167,6 +54471,64 @@ "salesforce~deeptime~requirements.txt" ] }, + { + "index": 339, + "category": "perf", + "githuburl": "https://github.com/tlkh/tf-metal-experiments", + "featured": null, + "links": null, + "description": null, + "_repopath": "tlkh/tf-metal-experiments", + "_reponame": "tf-metal-experiments", + "_stars": 160, + "_forks": 17, + "_watches": 9, + "_topics": [ + "gpu", + "deep-learning", + "tensorflow", + "m1", + "m1-max", + "benchmark", + "bert" + ], + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "tf-metal-experiments: TensorFlow Metal Backend on Apple Silicon Experiments (just for fun)", + "_organization": "tlkh", + "_updated_at": "2022-11-30T00:00:00.000Z", + "_last_commit_date": "2021-11-15T00:00:00.000Z", + "_created_at": "2021-10-26T00:00:00.000Z", + "_age_weeks": 59, + "_stars_per_week": 2.67, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "singaporeuniversityoftechnologyanddesign" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 14, + "_pop_updated_since_days": 13, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 7.56, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/tlkh/tf-metal-experiments/master/README.md", + "_readme_localurl": "tlkh~tf-metal-experiments~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 890, "category": "graph", @@ -36176,7 +54538,7 @@ "description": null, "_repopath": "h4kor/graph-force", "_reponame": "graph-force", - "_stars": 152, + "_stars": 159, "_forks": 0, "_watches": 9, "_topics": [ @@ -36189,11 +54551,30 @@ "_homepage": "https://pypi.org/project/graph-force/", "_description": "graph-force: Python library for embedding large graphs in 2D space, using force-directed layouts.", "_organization": "h4kor", - "_updated_at": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2022-11-28T00:00:00.000Z", "_created_at": "2022-11-28T00:00:00.000Z", - "_age_weeks": 1, - "_stars_per_week": 118.22, + "_age_weeks": 3, + "_stars_per_week": 53.0, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.77, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 1, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 5.12, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/h4kor/graph-force/master/README.md", "_readme_localurl": "h4kor~graph-force~README.md", @@ -36210,6 +54591,56 @@ "h4kor~graph-force~pyproject.toml" ] }, + { + "index": 743, + "category": "study", + "githuburl": "https://github.com/koaning/calm-notebooks", + "featured": null, + "links": null, + "description": null, + "_repopath": "koaning/calm-notebooks", + "_reponame": "calm-notebooks", + "_stars": 158, + "_forks": 135, + "_watches": 7, + "_topics": [], + "_language": "Jupyter Notebook", + "_homepage": "https://calmcode.io", + "_description": "calm-notebooks: notebooks that are used at calmcode.io", + "_organization": "koaning", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2021-10-21T00:00:00.000Z", + "_created_at": "2020-03-01T00:00:00.000Z", + "_age_weeks": 146, + "_stars_per_week": 1.08, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "explosion" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 34, + "_pop_updated_since_days": 14, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 5, + "_pop_score": 10.61, + "_readme_filename": "readme.md", + "_readme_giturl": "https://raw.githubusercontent.com/koaning/calm-notebooks/master/readme.md", + "_readme_localurl": "koaning~calm-notebooks~readme.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 775, "category": "sim", @@ -36219,9 +54650,9 @@ "description": null, "_repopath": "activitysim/activitysim", "_reponame": "activitysim", - "_stars": 143, + "_stars": 145, "_forks": 86, - "_watches": 42, + "_watches": 43, "_topics": [ "python", "travel-modeling", @@ -36234,11 +54665,36 @@ "_homepage": "https://activitysim.github.io", "_description": "activitysim: An Open Platform for Activity-Based Travel Modeling", "_organization": "activitysim", - "_updated_at": "2022-10-29T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2022-09-14T00:00:00.000Z", "_created_at": "2014-06-18T00:00:00.000Z", - "_age_weeks": 442, - "_stars_per_week": 0.32, + "_age_weeks": 443, + "_stars_per_week": 0.33, + "_pop_contributor_count": 25, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cambridgesystematics|georgiatech", + "populus-ai", + "populus-aimapcraftlabsoaklandanalytics", + "ptvgroup", + "rsginc" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.9, + "_pop_updated_issues_count": 43, + "_pop_closed_issues_count": 19, + "_pop_created_since_days": 104, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 43.0, + "_pop_comment_count": 68.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 28, + "_pop_score": 45.77, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/activitysim/activitysim/master/README.md", "_readme_localurl": "activitysim~activitysim~README.md", @@ -36255,54 +54711,6 @@ "activitysim~activitysim~pyproject.toml" ] }, - { - "index": 415, - "category": "ml-dl", - "githuburl": "https://github.com/rafiqhasan/auto-tensorflow", - "featured": null, - "links": null, - "description": null, - "_repopath": "rafiqhasan/auto-tensorflow", - "_reponame": "auto-tensorflow", - "_stars": 141, - "_forks": 31, - "_watches": 12, - "_topics": [ - "tensorflow", - "deeplearning", - "neural-networks", - "machinelearning", - "tfx", - "machine-learning", - "automl", - "auto-tensorflow", - "autotensorflow" - ], - "_language": "Python", - "_homepage": "", - "_description": "auto-tensorflow: Build Low Code Automated Tensorflow explainable models in just 3 lines of code. Library created by: Hasan Rafiq - https://www.linkedin.com/in/sam04/", - "_organization": "rafiqhasan", - "_updated_at": "2022-11-09T00:00:00.000Z", - "_last_commit_date": "2022-10-31T00:00:00.000Z", - "_created_at": "2021-07-05T00:00:00.000Z", - "_age_weeks": 74, - "_stars_per_week": 1.9, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/rafiqhasan/auto-tensorflow/master/README.md", - "_readme_localurl": "rafiqhasan~auto-tensorflow~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/rafiqhasan/auto-tensorflow/master/setup.py", - "https://raw.githubusercontent.com/rafiqhasan/auto-tensorflow/master/pyproject.toml" - ], - "_requirements_localurls": [ - "rafiqhasan~auto-tensorflow~setup.py", - "rafiqhasan~auto-tensorflow~pyproject.toml" - ] - }, { "index": 606, "category": "util", @@ -36312,19 +54720,40 @@ "description": null, "_repopath": "pyscript/pyscript-cli", "_reponame": "pyscript-cli", - "_stars": 140, + "_stars": 142, "_forks": 14, - "_watches": 11, + "_watches": 12, "_topics": [], "_language": "Python", "_homepage": null, "_description": "pyscript-cli: A CLI for PyScript", "_organization": "pyscript", - "_updated_at": "2022-11-17T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2022-05-01T00:00:00.000Z", - "_age_weeks": 31, - "_stars_per_week": 4.45, + "_age_weeks": 33, + "_stars_per_week": 4.28, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "anaconda" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.35, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 8, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 5.0, + "_pop_comment_count": 4.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 24.94, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pyscript/pyscript-cli/master/README.md", "_readme_localurl": "pyscript~pyscript-cli~README.md", @@ -36347,7 +54776,7 @@ "description": null, "_repopath": "hugovk/pypistats", "_reponame": "pypistats", - "_stars": 137, + "_stars": 138, "_forks": 25, "_watches": 4, "_topics": [ @@ -36367,11 +54796,32 @@ "_homepage": "https://pypistats.org/api/", "_description": "pypistats: Command-line interface to PyPI Stats API to get download stats for Python packages", "_organization": "hugovk", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2022-12-03T00:00:00.000Z", "_created_at": "2018-09-22T00:00:00.000Z", - "_age_weeks": 219, + "_age_weeks": 221, "_stars_per_week": 0.62, + "_pop_contributor_count": 12, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "nordsoftware" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.42, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 14.0, + "_pop_comment_count": 11.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 8, + "_pop_score": 34.33, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/hugovk/pypistats/master/README.md", "_readme_localurl": "hugovk~pypistats~README.md", @@ -36388,6 +54838,66 @@ "hugovk~pypistats~pyproject.toml" ] }, + { + "index": 901, + "category": "gis", + "githuburl": "https://github.com/amazon-science/earth-forecasting-transformer", + "featured": null, + "links": null, + "description": null, + "_repopath": "amazon-science/earth-forecasting-transformer", + "_reponame": "earth-forecasting-transformer", + "_stars": 137, + "_forks": 20, + "_watches": 7, + "_topics": [], + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "earth-forecasting-transformer: Official implementation of Earthformer", + "_organization": "amazon-science", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_created_at": "2022-09-12T00:00:00.000Z", + "_age_weeks": 14, + "_stars_per_week": 9.79, + "_pop_contributor_count": 5, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazon", + "amazonai", + "amazonwebservices", + "hongkonguniversityofscienceandtechnology", + "universityoftennessee" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.71, + "_pop_updated_issues_count": 39, + "_pop_closed_issues_count": 38, + "_pop_created_since_days": 3, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 39.0, + "_pop_comment_count": 46.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 26.48, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/amazon-science/earth-forecasting-transformer/master/README.md", + "_readme_localurl": "amazon-science~earth-forecasting-transformer~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/amazon-science/earth-forecasting-transformer/master/setup.py" + ], + "_requirements_localurls": [ + "amazon-science~earth-forecasting-transformer~setup.py" + ] + }, { "index": 231, "category": "template", @@ -36397,7 +54907,7 @@ "description": null, "_repopath": "crmne/cookiecutter-modern-datascience", "_reponame": "cookiecutter-modern-datascience", - "_stars": 134, + "_stars": 136, "_forks": 27, "_watches": 3, "_topics": [ @@ -36411,11 +54921,32 @@ "_homepage": "", "_description": "cookiecutter-modern-datascience: Start a data science project with modern tools", "_organization": "crmne", - "_updated_at": "2022-12-03T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2022-06-10T00:00:00.000Z", "_created_at": "2020-07-06T00:00:00.000Z", - "_age_weeks": 126, + "_age_weeks": 128, "_stars_per_week": 1.06, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "freshflowai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 30, + "_pop_updated_since_days": 6, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 12.95, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/crmne/cookiecutter-modern-datascience/master/README.md", "_readme_localurl": "crmne~cookiecutter-modern-datascience~README.md", @@ -36429,6 +54960,119 @@ "crmne~cookiecutter-modern-datascience~Pipfile" ] }, + { + "index": 826, + "category": "diffusion", + "githuburl": "https://github.com/thereforegames/unprompted", + "featured": null, + "links": null, + "description": null, + "_repopath": "thereforegames/unprompted", + "_reponame": "unprompted", + "_stars": 134, + "_forks": 10, + "_watches": 4, + "_topics": [], + "_language": "Python", + "_homepage": null, + "_description": "unprompted: Text generator written for Stable Diffusion workflows.", + "_organization": "thereforegames", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", + "_created_at": "2022-10-31T00:00:00.000Z", + "_age_weeks": 7, + "_stars_per_week": 19.14, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "awesomehamster" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.29, + "_pop_updated_issues_count": 22, + "_pop_closed_issues_count": 16, + "_pop_created_since_days": 2, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 22.0, + "_pop_comment_count": 74.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.4, + "_pop_dependents_count": 0, + "_pop_score": 20.95, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/thereforegames/unprompted/master/README.md", + "_readme_localurl": "thereforegames~unprompted~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 564, + "category": "gis", + "githuburl": "https://github.com/geopandas/pyogrio", + "featured": null, + "links": null, + "description": null, + "_repopath": "geopandas/pyogrio", + "_reponame": "pyogrio", + "_stars": 134, + "_forks": 8, + "_watches": 8, + "_topics": [], + "_language": "Python", + "_homepage": "https://pyogrio.readthedocs.io", + "_description": "pyogrio: Vectorized vector I/O using OGR", + "_organization": "geopandas", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_created_at": "2020-03-27T00:00:00.000Z", + "_age_weeks": 142, + "_stars_per_week": 0.94, + "_pop_contributor_count": 8, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "astutespruce", + "udl-ai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.87, + "_pop_updated_issues_count": 43, + "_pop_closed_issues_count": 29, + "_pop_created_since_days": 33, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 43.0, + "_pop_comment_count": 84.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 5, + "_pop_score": 38.22, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/geopandas/pyogrio/master/README.md", + "_readme_localurl": "geopandas~pyogrio~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml", + "Pipfile" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/geopandas/pyogrio/master/setup.py", + "https://raw.githubusercontent.com/geopandas/pyogrio/master/pyproject.toml", + "https://raw.githubusercontent.com/geopandas/pyogrio/master/Pipfile" + ], + "_requirements_localurls": [ + "geopandas~pyogrio~setup.py", + "geopandas~pyogrio~pyproject.toml", + "geopandas~pyogrio~Pipfile" + ] + }, { "index": 147, "category": "graph", @@ -36454,8 +55098,27 @@ "_updated_at": "2022-11-15T00:00:00.000Z", "_last_commit_date": "2018-12-11T00:00:00.000Z", "_created_at": "2017-09-27T00:00:00.000Z", - "_age_weeks": 271, - "_stars_per_week": 0.49, + "_age_weeks": 272, + "_stars_per_week": 0.48, + "_pop_contributor_count": 3, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 64, + "_pop_updated_since_days": 49, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 7.43, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/guyallard/markov_clustering/master/README.md", "_readme_localurl": "guyallard~markov_clustering~README.md", @@ -36482,7 +55145,7 @@ "_repopath": "openfisca/openfisca-core", "_reponame": "openfisca-core", "_stars": 131, - "_forks": 72, + "_forks": 71, "_watches": 24, "_topics": [ "legislation-as-code", @@ -36495,10 +55158,31 @@ "_description": "openfisca-core: OpenFisca core engine. See other repositories for countries-specific code & data.", "_organization": "openfisca", "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2013-12-29T00:00:00.000Z", - "_age_weeks": 466, + "_age_weeks": 468, "_stars_per_week": 0.28, + "_pop_contributor_count": 58, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "codeworksfrance" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.31, + "_pop_updated_issues_count": 61, + "_pop_closed_issues_count": 35, + "_pop_created_since_days": 109, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 43, + "_pop_recent_releases_adjusted_count": 43, + "_pop_issue_count": 62.0, + "_pop_comment_count": 83.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 53, + "_pop_score": 50.58, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/openfisca/openfisca-core/master/README.md", "_readme_localurl": "openfisca~openfisca-core~README.md", @@ -36512,76 +55196,6 @@ "openfisca~openfisca-core~setup.py" ] }, - { - "index": 826, - "category": "diffusion", - "githuburl": "https://github.com/thereforegames/unprompted", - "featured": null, - "links": null, - "description": null, - "_repopath": "thereforegames/unprompted", - "_reponame": "unprompted", - "_stars": 129, - "_forks": 10, - "_watches": 4, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "unprompted: Text generator written for Stable Diffusion workflows.", - "_organization": "thereforegames", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2022-10-31T00:00:00.000Z", - "_age_weeks": 5, - "_stars_per_week": 24.41, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/thereforegames/unprompted/master/README.md", - "_readme_localurl": "thereforegames~unprompted~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, - { - "index": 564, - "category": "gis", - "githuburl": "https://github.com/geopandas/pyogrio", - "featured": null, - "links": null, - "description": null, - "_repopath": "geopandas/pyogrio", - "_reponame": "pyogrio", - "_stars": 129, - "_forks": 8, - "_watches": 8, - "_topics": [], - "_language": "Python", - "_homepage": "https://pyogrio.readthedocs.io", - "_description": "pyogrio: Vectorized vector I/O using OGR", - "_organization": "geopandas", - "_updated_at": "2022-11-30T00:00:00.000Z", - "_last_commit_date": "2022-11-14T00:00:00.000Z", - "_created_at": "2020-03-27T00:00:00.000Z", - "_age_weeks": 140, - "_stars_per_week": 0.92, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/geopandas/pyogrio/master/README.md", - "_readme_localurl": "geopandas~pyogrio~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml", - "Pipfile" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/geopandas/pyogrio/master/setup.py", - "https://raw.githubusercontent.com/geopandas/pyogrio/master/pyproject.toml", - "https://raw.githubusercontent.com/geopandas/pyogrio/master/Pipfile" - ], - "_requirements_localurls": [ - "geopandas~pyogrio~setup.py", - "geopandas~pyogrio~pyproject.toml", - "geopandas~pyogrio~Pipfile" - ] - }, { "index": 785, "category": "util", @@ -36591,7 +55205,7 @@ "description": null, "_repopath": "brokenloop/jsontopydantic", "_reponame": "jsontopydantic", - "_stars": 126, + "_stars": 128, "_forks": 7, "_watches": 3, "_topics": [], @@ -36599,11 +55213,30 @@ "_homepage": "https://jsontopydantic.com", "_description": "jsontopydantic: Web tool for generating Pydantic models from JSON objects", "_organization": "brokenloop", - "_updated_at": "2022-11-29T00:00:00.000Z", + "_updated_at": "2022-12-12T00:00:00.000Z", "_last_commit_date": "2022-05-13T00:00:00.000Z", "_created_at": "2020-11-28T00:00:00.000Z", - "_age_weeks": 105, + "_age_weeks": 107, "_stars_per_week": 1.19, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.08, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 25, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 6.82, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/brokenloop/jsontopydantic/master/README.md", "_readme_localurl": "brokenloop~jsontopydantic~README.md", @@ -36620,7 +55253,7 @@ "description": null, "_repopath": "eugeneyan/python-collab-template", "_reponame": "python-collab-template", - "_stars": 124, + "_stars": 125, "_forks": 35, "_watches": 4, "_topics": [ @@ -36637,11 +55270,32 @@ "_homepage": "https://eugeneyan.com/writing/setting-up-python-project-for-automation-and-collaboration/", "_description": "python-collab-template: \ud83d\udee0 Python project template with unit tests, code coverage, linting, type checking, Makefile wrapper, and GitHub Actions.", "_organization": "eugeneyan", - "_updated_at": "2022-11-28T00:00:00.000Z", + "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2022-07-02T00:00:00.000Z", "_created_at": "2020-06-21T00:00:00.000Z", - "_age_weeks": 128, - "_stars_per_week": 0.97, + "_age_weeks": 130, + "_stars_per_week": 0.96, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amzn" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 30, + "_pop_updated_since_days": 6, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 10.15, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/eugeneyan/python-collab-template/master/README.md", "_readme_localurl": "eugeneyan~python-collab-template~README.md", @@ -36649,41 +55303,6 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, - { - "index": 305, - "category": "util", - "githuburl": "https://github.com/xrudelis/pytrait", - "featured": null, - "links": null, - "description": null, - "_repopath": "xrudelis/pytrait", - "_reponame": "pytrait", - "_stars": 121, - "_forks": 3, - "_watches": 3, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "pytrait: Traits for Python3", - "_organization": "xrudelis", - "_updated_at": "2022-11-15T00:00:00.000Z", - "_last_commit_date": "2021-11-27T00:00:00.000Z", - "_created_at": "2021-11-21T00:00:00.000Z", - "_age_weeks": 54, - "_stars_per_week": 2.22, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/xrudelis/pytrait/master/README.md", - "_readme_localurl": "xrudelis~pytrait~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/xrudelis/pytrait/master/setup.py" - ], - "_requirements_localurls": [ - "xrudelis~pytrait~setup.py" - ] - }, { "index": 583, "category": "web", @@ -36710,8 +55329,29 @@ "_updated_at": "2022-04-08T00:00:00.000Z", "_last_commit_date": "2020-02-10T00:00:00.000Z", "_created_at": "2019-07-01T00:00:00.000Z", - "_age_weeks": 179, + "_age_weeks": 181, "_stars_per_week": 0.67, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cloud-gov(work)+personalprojects;" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 42, + "_pop_updated_since_days": 35, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 6.87, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/developmentseed/fastai-serving/master/README.md", "_readme_localurl": "developmentseed~fastai-serving~README.md", @@ -36719,6 +55359,60 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, + { + "index": 305, + "category": "util", + "githuburl": "https://github.com/xrudelis/pytrait", + "featured": null, + "links": null, + "description": null, + "_repopath": "xrudelis/pytrait", + "_reponame": "pytrait", + "_stars": 121, + "_forks": 3, + "_watches": 3, + "_topics": [], + "_language": "Python", + "_homepage": null, + "_description": "pytrait: Traits for Python3", + "_organization": "xrudelis", + "_updated_at": "2022-11-15T00:00:00.000Z", + "_last_commit_date": "2021-11-27T00:00:00.000Z", + "_created_at": "2021-11-21T00:00:00.000Z", + "_age_weeks": 56, + "_stars_per_week": 2.16, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 13, + "_pop_updated_since_days": 13, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 3.03, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/xrudelis/pytrait/master/README.md", + "_readme_localurl": "xrudelis~pytrait~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/xrudelis/pytrait/master/setup.py" + ], + "_requirements_localurls": [ + "xrudelis~pytrait~setup.py" + ] + }, { "index": 555, "category": "ml", @@ -36736,11 +55430,34 @@ "_homepage": "https://torch-points3d.readthedocs.io/en/latest/", "_description": "torch-points3d: Pytorch framework for doing deep learning on point clouds.", "_organization": "nicolas-chaulet", - "_updated_at": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-12T00:00:00.000Z", "_last_commit_date": "2021-12-10T00:00:00.000Z", "_created_at": "2022-01-09T00:00:00.000Z", - "_age_weeks": 47, - "_stars_per_week": 2.49, + "_age_weeks": 49, + "_stars_per_week": 2.4, + "_pop_contributor_count": 29, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "canoapbc", + "grid.ai|pytorchlightning", + "universityoftexasatdallas" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 11, + "_pop_updated_since_days": 12, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 38, + "_pop_score": 27.01, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/nicolas-chaulet/torch-points3d/master/README.md", "_readme_localurl": "nicolas-chaulet~torch-points3d~README.md", @@ -36777,8 +55494,29 @@ "_updated_at": "2022-11-22T00:00:00.000Z", "_last_commit_date": "2022-11-15T00:00:00.000Z", "_created_at": "2019-06-30T00:00:00.000Z", - "_age_weeks": 179, + "_age_weeks": 181, "_stars_per_week": 0.65, + "_pop_contributor_count": 4, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "closedlooplabs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.44, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 42, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 4.0, + "_pop_comment_count": 6.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 8, + "_pop_score": 29.76, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/irmen/pyminiaudio/master/README.md", "_readme_localurl": "irmen~pyminiaudio~README.md", @@ -36814,10 +55552,33 @@ "_description": "geojson-pydantic: Pydantic data models for the GeoJSON spec", "_organization": "developmentseed", "_updated_at": "2022-11-29T00:00:00.000Z", - "_last_commit_date": "2022-11-02T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2020-05-21T00:00:00.000Z", - "_age_weeks": 132, - "_stars_per_week": 0.85, + "_age_weeks": 134, + "_stars_per_week": 0.84, + "_pop_contributor_count": 19, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "bigbear.ai", + "cloud-gov(work)+personalprojects;", + "developmentseed" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.21, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 4.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 5, + "_pop_score": 35.7, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/developmentseed/geojson-pydantic/master/README.md", "_readme_localurl": "developmentseed~geojson-pydantic~README.md", @@ -36831,41 +55592,6 @@ "developmentseed~geojson-pydantic~pyproject.toml" ] }, - { - "index": 901, - "category": "gis", - "githuburl": "https://github.com/amazon-science/earth-forecasting-transformer", - "featured": null, - "links": null, - "description": null, - "_repopath": "amazon-science/earth-forecasting-transformer", - "_reponame": "earth-forecasting-transformer", - "_stars": 111, - "_forks": 19, - "_watches": 7, - "_topics": [], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "earth-forecasting-transformer: Official implementation of Earthformer", - "_organization": "amazon-science", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", - "_created_at": "2022-09-12T00:00:00.000Z", - "_age_weeks": 12, - "_stars_per_week": 9.03, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/amazon-science/earth-forecasting-transformer/master/README.md", - "_readme_localurl": "amazon-science~earth-forecasting-transformer~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/amazon-science/earth-forecasting-transformer/master/setup.py" - ], - "_requirements_localurls": [ - "amazon-science~earth-forecasting-transformer~setup.py" - ] - }, { "index": 893, "category": "sim", @@ -36875,7 +55601,7 @@ "description": null, "_repopath": "crowdbotp/socialways", "_reponame": "socialways", - "_stars": 109, + "_stars": 110, "_forks": 45, "_watches": 9, "_topics": [ @@ -36899,11 +55625,33 @@ "_homepage": "", "_description": "socialways: Social Ways: Learning Multi-Modal Distributions of Pedestrian Trajectories with GANs (CVPR 2019)", "_organization": "crowdbotp", - "_updated_at": "2022-12-02T00:00:00.000Z", + "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2020-03-20T00:00:00.000Z", "_created_at": "2019-04-23T00:00:00.000Z", - "_age_weeks": 189, + "_age_weeks": 190, "_stars_per_week": 0.58, + "_pop_contributor_count": 3, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cimat", + "inriaresearchcenter" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 33, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 9.91, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/crowdbotp/socialways/master/README.md", "_readme_localurl": "crowdbotp~socialways~README.md", @@ -36920,7 +55668,7 @@ "description": null, "_repopath": "google/weather-tools", "_reponame": "weather-tools", - "_stars": 108, + "_stars": 109, "_forks": 23, "_watches": 12, "_topics": [ @@ -36932,11 +55680,32 @@ "_homepage": "https://weather-tools.readthedocs.io/", "_description": "weather-tools: Apache Beam pipelines to make weather data accessible and useful.", "_organization": "google", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-12-13T00:00:00.000Z", "_created_at": "2021-11-22T00:00:00.000Z", - "_age_weeks": 54, - "_stars_per_week": 1.99, + "_age_weeks": 56, + "_stars_per_week": 1.95, + "_pop_contributor_count": 25, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "infocuspinnovationspvt.ltd." + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.19, + "_pop_updated_issues_count": 48, + "_pop_closed_issues_count": 25, + "_pop_created_since_days": 13, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 48.0, + "_pop_comment_count": 29.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 31.7, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google/weather-tools/master/README.md", "_readme_localurl": "google~weather-tools~README.md", @@ -36976,8 +55745,29 @@ "_updated_at": "2022-11-08T00:00:00.000Z", "_last_commit_date": "2022-04-18T00:00:00.000Z", "_created_at": "2021-12-29T00:00:00.000Z", - "_age_weeks": 49, - "_stars_per_week": 2.14, + "_age_weeks": 50, + "_stars_per_week": 2.07, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "argilla" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.27, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 12, + "_pop_updated_since_days": 8, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 7.74, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/infinitylogesh/mutate/master/README.md", "_readme_localurl": "infinitylogesh~mutate~README.md", @@ -37004,18 +55794,37 @@ "_repopath": "psycoguana/subredditmediadownloader", "_reponame": "SubredditMediaDownloader", "_stars": 102, - "_forks": 6, + "_forks": 7, "_watches": 3, "_topics": [], "_language": "Python", "_homepage": null, "_description": "SubredditMediaDownloader: Simple Python script to download images and videos from public subreddits without using Reddit's API \ud83d\ude0e", "_organization": "psycoguana", - "_updated_at": "2022-12-06T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-11-20T00:00:00.000Z", "_created_at": "2022-02-18T00:00:00.000Z", - "_age_weeks": 41, - "_stars_per_week": 2.45, + "_age_weeks": 43, + "_stars_per_week": 2.35, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.4, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 10, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 7.0, + "_pop_comment_count": 21.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 0, + "_pop_score": 16.54, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/psycoguana/subredditmediadownloader/master/README.md", "_readme_localurl": "psycoguana~subredditmediadownloader~README.md", @@ -37038,7 +55847,7 @@ "description": null, "_repopath": "hazyresearch/domino", "_reponame": "domino", - "_stars": 98, + "_stars": 99, "_forks": 14, "_watches": 20, "_topics": [], @@ -37046,11 +55855,30 @@ "_homepage": null, "_description": "hazyresearch/domino", "_organization": "hazyresearch", - "_updated_at": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-08-02T00:00:00.000Z", "_created_at": "2021-11-29T00:00:00.000Z", - "_age_weeks": 53, - "_stars_per_week": 1.84, + "_age_weeks": 55, + "_stars_per_week": 1.8, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.19, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 13, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 4.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 6, + "_pop_score": 15.11, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/hazyresearch/domino/master/README.md", "_readme_localurl": "hazyresearch~domino~README.md", @@ -37074,7 +55902,7 @@ "_repopath": "remotesensinglab/raster4ml", "_reponame": "raster4ml", "_stars": 97, - "_forks": 11, + "_forks": 12, "_watches": 4, "_topics": [ "agriculture-research", @@ -37093,8 +55921,29 @@ "_updated_at": "2022-12-04T00:00:00.000Z", "_last_commit_date": "2022-11-01T00:00:00.000Z", "_created_at": "2022-07-11T00:00:00.000Z", - "_age_weeks": 21, - "_stars_per_week": 4.56, + "_age_weeks": 23, + "_stars_per_week": 4.22, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "saintlouisuniversity" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.96, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 5, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 9.4, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/remotesensinglab/raster4ml/master/README.md", "_readme_localurl": "remotesensinglab~raster4ml~README.md", @@ -37111,6 +55960,56 @@ "remotesensinglab~raster4ml~setup.py" ] }, + { + "index": 533, + "category": "gis", + "githuburl": "https://github.com/gdaosu/lod2buildingmodel", + "featured": null, + "links": null, + "description": null, + "_repopath": "gdaosu/lod2buildingmodel", + "_reponame": "LOD2BuildingModel", + "_stars": 96, + "_forks": 23, + "_watches": 9, + "_topics": [], + "_language": "Python", + "_homepage": "", + "_description": "LOD2BuildingModel: SAT2LoD2: Automated LoD-2 Model Reconstruction from Satellite-derived DSM and Orthophoto", + "_organization": "gdaosu", + "_updated_at": "2022-12-06T00:00:00.000Z", + "_last_commit_date": "2022-07-21T00:00:00.000Z", + "_created_at": "2021-08-30T00:00:00.000Z", + "_age_weeks": 68, + "_stars_per_week": 1.41, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ohiostateuniversity" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.85, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 16, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 13.46, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/gdaosu/lod2buildingmodel/master/README.md", + "_readme_localurl": "gdaosu~lod2buildingmodel~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 529, "category": "nlp", @@ -37131,8 +56030,31 @@ "_updated_at": "2022-12-01T00:00:00.000Z", "_last_commit_date": "2020-05-27T00:00:00.000Z", "_created_at": "2018-03-23T00:00:00.000Z", - "_age_weeks": 245, + "_age_weeks": 247, "_stars_per_week": 0.39, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "https://snorkel.ai/", + "numbersstationai", + "vodafone" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 58, + "_pop_updated_since_days": 31, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 16.15, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/hazyresearch/fonduer-tutorials/master/README.md", "_readme_localurl": "hazyresearch~fonduer-tutorials~README.md", @@ -37147,33 +56069,64 @@ ] }, { - "index": 533, - "category": "gis", - "githuburl": "https://github.com/gdaosu/lod2buildingmodel", + "index": 457, + "category": "nlp", + "githuburl": "https://github.com/coastalcph/lex-glue", "featured": null, "links": null, "description": null, - "_repopath": "gdaosu/lod2buildingmodel", - "_reponame": "LOD2BuildingModel", - "_stars": 96, - "_forks": 23, - "_watches": 9, - "_topics": [], + "_repopath": "coastalcph/lex-glue", + "_reponame": "lex-glue", + "_stars": 95, + "_forks": 22, + "_watches": 6, + "_topics": [ + "legal", + "nlp", + "benchmark", + "legaltech", + "lawtech" + ], "_language": "Python", "_homepage": "", - "_description": "LOD2BuildingModel: SAT2LoD2: Automated LoD-2 Model Reconstruction from Satellite-derived DSM and Orthophoto", - "_organization": "gdaosu", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-07-21T00:00:00.000Z", - "_created_at": "2021-08-30T00:00:00.000Z", - "_age_weeks": 66, - "_stars_per_week": 1.45, + "_description": "lex-glue: LexGLUE: A Benchmark Dataset for Legal Language Understanding in English", + "_organization": "coastalcph", + "_updated_at": "2022-12-08T00:00:00.000Z", + "_last_commit_date": "2022-11-04T00:00:00.000Z", + "_created_at": "2021-09-27T00:00:00.000Z", + "_age_weeks": 64, + "_stars_per_week": 1.48, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.6, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 15, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 11.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 8, + "_pop_score": 20.76, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/gdaosu/lod2buildingmodel/master/README.md", - "_readme_localurl": "gdaosu~lod2buildingmodel~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/coastalcph/lex-glue/master/README.md", + "_readme_localurl": "coastalcph~lex-glue~README.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/coastalcph/lex-glue/master/requirements.txt" + ], + "_requirements_localurls": [ + "coastalcph~lex-glue~requirements.txt" + ] }, { "index": 781, @@ -37213,8 +56166,33 @@ "_updated_at": "2022-11-07T00:00:00.000Z", "_last_commit_date": "2022-08-23T00:00:00.000Z", "_created_at": "2016-12-01T00:00:00.000Z", - "_age_weeks": 313, + "_age_weeks": 315, "_stars_per_week": 0.3, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cirad", + "faoopenforis", + "lancasteruniversity", + "uiuc", + "weecology,univofflorida" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.56, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 74, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 22, + "_pop_score": 28.9, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/ghislainv/forestatrisk/master/README.rst", "_readme_localurl": "ghislainv~forestatrisk~README.rst", @@ -37231,47 +56209,6 @@ "ghislainv~forestatrisk~setup.py" ] }, - { - "index": 457, - "category": "nlp", - "githuburl": "https://github.com/coastalcph/lex-glue", - "featured": null, - "links": null, - "description": null, - "_repopath": "coastalcph/lex-glue", - "_reponame": "lex-glue", - "_stars": 94, - "_forks": 22, - "_watches": 6, - "_topics": [ - "legal", - "nlp", - "benchmark", - "legaltech", - "lawtech" - ], - "_language": "Python", - "_homepage": "", - "_description": "lex-glue: LexGLUE: A Benchmark Dataset for Legal Language Understanding in English", - "_organization": "coastalcph", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-04T00:00:00.000Z", - "_created_at": "2021-09-27T00:00:00.000Z", - "_age_weeks": 62, - "_stars_per_week": 1.51, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/coastalcph/lex-glue/master/README.md", - "_readme_localurl": "coastalcph~lex-glue~README.md", - "_requirements_filenames": [ - "requirements.txt" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/coastalcph/lex-glue/master/requirements.txt" - ], - "_requirements_localurls": [ - "coastalcph~lex-glue~requirements.txt" - ] - }, { "index": 558, "category": "gis", @@ -37282,7 +56219,7 @@ "_repopath": "darribas/gds_env", "_reponame": "gds_env", "_stars": 93, - "_forks": 36, + "_forks": 37, "_watches": 10, "_topics": [ "geographic-data-science", @@ -37297,10 +56234,33 @@ "_description": "gds_env: A containerised platform for Geographic Data Science", "_organization": "darribas", "_updated_at": "2022-11-16T00:00:00.000Z", - "_last_commit_date": "2022-06-08T00:00:00.000Z", + "_last_commit_date": "2022-12-09T00:00:00.000Z", "_created_at": "2016-08-12T00:00:00.000Z", - "_age_weeks": 329, + "_age_weeks": 331, "_stars_per_week": 0.28, + "_pop_contributor_count": 8, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "actions", + "udl-ai", + "universityofliverpool" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.83, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 77, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 3.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 79, + "_pop_score": 35.75, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/darribas/gds_env/master/README.md", "_readme_localurl": "darribas~gds_env~README.md", @@ -37308,6 +56268,67 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, + { + "index": 835, + "category": "typing", + "githuburl": "https://github.com/jellezijlstra/autotyping", + "featured": null, + "links": null, + "description": null, + "_repopath": "jellezijlstra/autotyping", + "_reponame": "autotyping", + "_stars": 91, + "_forks": 8, + "_watches": 3, + "_topics": [], + "_language": "Python", + "_homepage": null, + "_description": "jellezijlstra/autotyping", + "_organization": "jellezijlstra", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_created_at": "2021-06-25T00:00:00.000Z", + "_age_weeks": 77, + "_stars_per_week": 1.18, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "quora", + "sendcloud", + "softformance" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.25, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 18, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 12.0, + "_pop_comment_count": 23.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 3, + "_pop_score": 31.95, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/jellezijlstra/autotyping/master/README.md", + "_readme_localurl": "jellezijlstra~autotyping~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/jellezijlstra/autotyping/master/setup.py", + "https://raw.githubusercontent.com/jellezijlstra/autotyping/master/pyproject.toml" + ], + "_requirements_localurls": [ + "jellezijlstra~autotyping~setup.py", + "jellezijlstra~autotyping~pyproject.toml" + ] + }, { "index": 534, "category": "ml-dl", @@ -37318,7 +56339,7 @@ "_repopath": "benedekrozemberczki/tigerlily", "_reponame": "tigerlily", "_stars": 90, - "_forks": 9, + "_forks": 10, "_watches": 1, "_topics": [ "node", @@ -37346,10 +56367,31 @@ "_description": "TigerLily: Finding drug interactions in silico with the Graph.", "_organization": "benedekrozemberczki", "_updated_at": "2022-09-11T00:00:00.000Z", - "_last_commit_date": "2022-11-06T00:00:00.000Z", + "_last_commit_date": "2022-12-17T00:00:00.000Z", "_created_at": "2022-02-28T00:00:00.000Z", - "_age_weeks": 40, - "_stars_per_week": 2.23, + "_age_weeks": 42, + "_stars_per_week": 2.14, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "isomorphiclabs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.98, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 10, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 14.29, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/benedekrozemberczki/tigerlily/master/README.md", "_readme_localurl": "benedekrozemberczki~tigerlily~README.md", @@ -37367,42 +56409,52 @@ ] }, { - "index": 835, - "category": "typing", - "githuburl": "https://github.com/jellezijlstra/autotyping", + "index": 667, + "category": "gis", + "githuburl": "https://github.com/zorzi-s/polyworldpretrainednetwork", "featured": null, "links": null, "description": null, - "_repopath": "jellezijlstra/autotyping", - "_reponame": "autotyping", - "_stars": 88, - "_forks": 7, - "_watches": 3, + "_repopath": "zorzi-s/polyworldpretrainednetwork", + "_reponame": "PolyWorldPretrainedNetwork", + "_stars": 90, + "_forks": 13, + "_watches": 7, "_topics": [], "_language": "Python", "_homepage": null, - "_description": "jellezijlstra/autotyping", - "_organization": "jellezijlstra", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-10-13T00:00:00.000Z", - "_created_at": "2021-06-25T00:00:00.000Z", - "_age_weeks": 75, - "_stars_per_week": 1.16, + "_description": "PolyWorldPretrainedNetwork: PolyWorld: Polygonal Building Extraction with Graph Neural Networks in Satellite Images", + "_organization": "zorzi-s", + "_updated_at": "2022-12-17T00:00:00.000Z", + "_last_commit_date": "2022-11-10T00:00:00.000Z", + "_created_at": "2022-03-23T00:00:00.000Z", + "_age_weeks": 38, + "_stars_per_week": 2.32, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.4, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 9, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 7.0, + "_pop_comment_count": 19.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 0, + "_pop_score": 14.18, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/jellezijlstra/autotyping/master/README.md", - "_readme_localurl": "jellezijlstra~autotyping~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/jellezijlstra/autotyping/master/setup.py", - "https://raw.githubusercontent.com/jellezijlstra/autotyping/master/pyproject.toml" - ], - "_requirements_localurls": [ - "jellezijlstra~autotyping~setup.py", - "jellezijlstra~autotyping~pyproject.toml" - ] + "_readme_giturl": "https://raw.githubusercontent.com/zorzi-s/polyworldpretrainednetwork/master/README.md", + "_readme_localurl": "zorzi-s~polyworldpretrainednetwork~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { "index": 744, @@ -37422,10 +56474,32 @@ "_description": "AIQC: End-to-end deep learning on your desktop or server.", "_organization": "aiqc", "_updated_at": "2022-11-21T00:00:00.000Z", - "_last_commit_date": "2022-11-23T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2020-12-02T00:00:00.000Z", - "_age_weeks": 105, - "_stars_per_week": 0.84, + "_age_weeks": 106, + "_stars_per_week": 0.82, + "_pop_contributor_count": 8, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "aiqc", + "deuteronomyworks" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 8.5, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 25, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 2, + "_pop_score": 25.26, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/aiqc/aiqc/master/README.md", "_readme_localurl": "aiqc~aiqc~README.md", @@ -37442,35 +56516,6 @@ "aiqc~aiqc~setup.py" ] }, - { - "index": 667, - "category": "gis", - "githuburl": "https://github.com/zorzi-s/polyworldpretrainednetwork", - "featured": null, - "links": null, - "description": null, - "_repopath": "zorzi-s/polyworldpretrainednetwork", - "_reponame": "PolyWorldPretrainedNetwork", - "_stars": 88, - "_forks": 13, - "_watches": 7, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "PolyWorldPretrainedNetwork: PolyWorld: Polygonal Building Extraction with Graph Neural Networks in Satellite Images", - "_organization": "zorzi-s", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-10T00:00:00.000Z", - "_created_at": "2022-03-23T00:00:00.000Z", - "_age_weeks": 37, - "_stars_per_week": 2.38, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/zorzi-s/polyworldpretrainednetwork/master/README.md", - "_readme_localurl": "zorzi-s~polyworldpretrainednetwork~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 485, "category": "gis", @@ -37480,7 +56525,7 @@ "description": null, "_repopath": "scisco/area", "_reponame": "area", - "_stars": 86, + "_stars": 87, "_forks": 19, "_watches": 3, "_topics": [], @@ -37488,11 +56533,30 @@ "_homepage": null, "_description": "area: Calculate the area inside of any GeoJSON geometry. This is a port of Mapbox's geojson-area for Python", "_organization": "scisco", - "_updated_at": "2022-10-27T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2018-10-31T00:00:00.000Z", "_created_at": "2015-11-25T00:00:00.000Z", - "_age_weeks": 367, - "_stars_per_week": 0.23, + "_age_weeks": 368, + "_stars_per_week": 0.24, + "_pop_contributor_count": 3, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 86, + "_pop_updated_since_days": 50, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 5.14, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/scisco/area/master/README.rst", "_readme_localurl": "scisco~area~README.rst", @@ -37533,8 +56597,31 @@ "_updated_at": "2022-11-26T00:00:00.000Z", "_last_commit_date": "2021-06-26T00:00:00.000Z", "_created_at": "2016-05-17T00:00:00.000Z", - "_age_weeks": 342, + "_age_weeks": 343, "_stars_per_week": 0.24, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "deepsourcelabs", + "investnext", + "quantifiedcode" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 80, + "_pop_updated_since_days": 18, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 16.1, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/deeplook/sparklines/master/README.rst", "_readme_localurl": "deeplook~sparklines~README.rst", @@ -37548,41 +56635,6 @@ "deeplook~sparklines~setup.py" ] }, - { - "index": 562, - "category": "gis", - "githuburl": "https://github.com/geopandas/xyzservices", - "featured": null, - "links": null, - "description": null, - "_repopath": "geopandas/xyzservices", - "_reponame": "xyzservices", - "_stars": 81, - "_forks": 19, - "_watches": 11, - "_topics": [], - "_language": "Python", - "_homepage": "https://xyzservices.readthedocs.io/", - "_description": "xyzservices: Source of XYZ tiles providers", - "_organization": "geopandas", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", - "_created_at": "2021-05-21T00:00:00.000Z", - "_age_weeks": 80, - "_stars_per_week": 1.0, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/geopandas/xyzservices/master/README.md", - "_readme_localurl": "geopandas~xyzservices~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/geopandas/xyzservices/master/setup.py" - ], - "_requirements_localurls": [ - "geopandas~xyzservices~setup.py" - ] - }, { "index": 746, "category": "data", @@ -37592,7 +56644,7 @@ "description": null, "_repopath": "ktrueda/parquet-tools", "_reponame": "parquet-tools", - "_stars": 81, + "_stars": 82, "_forks": 10, "_watches": 3, "_topics": [ @@ -37604,11 +56656,33 @@ "_homepage": "", "_description": "parquet-tools: easy install parquet-tools", "_organization": "ktrueda", - "_updated_at": "2022-11-26T00:00:00.000Z", + "_updated_at": "2022-12-07T00:00:00.000Z", "_last_commit_date": "2022-06-14T00:00:00.000Z", "_created_at": "2020-05-02T00:00:00.000Z", - "_age_weeks": 135, + "_age_weeks": 137, "_stars_per_week": 0.6, + "_pop_contributor_count": 10, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "discogs", + "shopify" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 32, + "_pop_updated_since_days": 6, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 5, + "_pop_score": 21.91, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ktrueda/parquet-tools/master/README.md", "_readme_localurl": "ktrueda~parquet-tools~README.md", @@ -37622,6 +56696,63 @@ "ktrueda~parquet-tools~pyproject.toml" ] }, + { + "index": 562, + "category": "gis", + "githuburl": "https://github.com/geopandas/xyzservices", + "featured": null, + "links": null, + "description": null, + "_repopath": "geopandas/xyzservices", + "_reponame": "xyzservices", + "_stars": 81, + "_forks": 19, + "_watches": 11, + "_topics": [], + "_language": "Python", + "_homepage": "https://xyzservices.readthedocs.io/", + "_description": "xyzservices: Source of XYZ tiles providers", + "_organization": "geopandas", + "_updated_at": "2022-12-06T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_created_at": "2021-05-21T00:00:00.000Z", + "_age_weeks": 82, + "_stars_per_week": 0.98, + "_pop_contributor_count": 17, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "quantstack", + "udl-ai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.13, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 19, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 9.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 30.65, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/geopandas/xyzservices/master/README.md", + "_readme_localurl": "geopandas~xyzservices~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/geopandas/xyzservices/master/setup.py" + ], + "_requirements_localurls": [ + "geopandas~xyzservices~setup.py" + ] + }, { "index": 668, "category": "gis", @@ -37642,8 +56773,27 @@ "_updated_at": "2022-11-10T00:00:00.000Z", "_last_commit_date": "2021-09-17T00:00:00.000Z", "_created_at": "2021-05-18T00:00:00.000Z", - "_age_weeks": 81, - "_stars_per_week": 0.99, + "_age_weeks": 82, + "_stars_per_week": 0.97, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 19, + "_pop_updated_since_days": 15, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 2.46, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/zorzi-s/projectregularization/master/README.md", "_readme_localurl": "zorzi-s~projectregularization~README.md", @@ -37673,10 +56823,32 @@ "_description": "AutoProfiler: Automatically profile dataframes in the Jupyter sidebar", "_organization": "cmudig", "_updated_at": "2022-12-04T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_created_at": "2022-03-24T00:00:00.000Z", - "_age_weeks": 36, - "_stars_per_week": 2.14, + "_age_weeks": 38, + "_stars_per_week": 2.05, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "cmu", + "cmu,apple" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.58, + "_pop_updated_issues_count": 94, + "_pop_closed_issues_count": 70, + "_pop_created_since_days": 9, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 94.0, + "_pop_comment_count": 41.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 24.18, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/cmudig/autoprofiler/master/README.md", "_readme_localurl": "cmudig~autoprofiler~README.md", @@ -37705,7 +56877,7 @@ "description": null, "_repopath": "praw-dev/asyncpraw", "_reponame": "asyncpraw", - "_stars": 78, + "_stars": 79, "_forks": 14, "_watches": 3, "_topics": [ @@ -37722,11 +56894,35 @@ "_homepage": "https://asyncpraw.readthedocs.io", "_description": "asyncpraw: Async PRAW, an abbreviation for \"Asynchronous Python Reddit API Wrapper\", is a python package that allows for simple access to Reddit's API.", "_organization": "praw-dev", - "_updated_at": "2022-12-04T00:00:00.000Z", - "_last_commit_date": "2022-11-28T00:00:00.000Z", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-12-09T00:00:00.000Z", "_created_at": "2019-02-05T00:00:00.000Z", - "_age_weeks": 200, + "_age_weeks": 201, "_stars_per_week": 0.39, + "_pop_contributor_count": 226, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "appfolio", + "billy", + "indeed", + "netflix" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.1, + "_pop_updated_issues_count": 29, + "_pop_closed_issues_count": 26, + "_pop_created_since_days": 47, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 29.0, + "_pop_comment_count": 12.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 14, + "_pop_score": 48.02, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/praw-dev/asyncpraw/master/README.rst", "_readme_localurl": "praw-dev~asyncpraw~README.rst", @@ -37752,8 +56948,8 @@ "description": null, "_repopath": "sonatype-nexus-community/jake", "_reponame": "jake", - "_stars": 74, - "_forks": 18, + "_stars": 75, + "_forks": 19, "_watches": 8, "_topics": [ "python", @@ -37767,11 +56963,34 @@ "_homepage": "https://jake.readthedocs.io/", "_description": "jake: Check your Python environments for vulnerable Open Source packages with OSS Index or Sonatype Nexus Lifecycle.", "_organization": "sonatype-nexus-community", - "_updated_at": "2022-12-05T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-12-14T00:00:00.000Z", "_created_at": "2019-10-10T00:00:00.000Z", - "_age_weeks": 164, + "_age_weeks": 166, "_stars_per_week": 0.45, + "_pop_contributor_count": 15, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "nginxinc", + "sonatype", + "sonatypecyclonedx" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.0, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 39, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 41, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 5.0, + "_pop_comment_count": 8.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 30, + "_pop_score": 41.83, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/sonatype-nexus-community/jake/master/README.md", "_readme_localurl": "sonatype-nexus-community~jake~README.md", @@ -37785,6 +57004,62 @@ "sonatype-nexus-community~jake~pyproject.toml" ] }, + { + "index": 851, + "category": "profiling", + "githuburl": "https://github.com/kshitij12345/torchnnprofiler", + "featured": null, + "links": null, + "description": null, + "_repopath": "kshitij12345/torchnnprofiler", + "_reponame": "torchnnprofiler", + "_stars": 72, + "_forks": 2, + "_watches": 4, + "_topics": [], + "_language": "Python", + "_homepage": null, + "_description": "torchnnprofiler: Context Manager to profile the forward and backward times of PyTorch's nn.Module", + "_organization": "kshitij12345", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-11-02T00:00:00.000Z", + "_created_at": "2022-10-22T00:00:00.000Z", + "_age_weeks": 8, + "_stars_per_week": 8.69, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "quansight" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.96, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 2, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 6.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 2, + "_pop_score": 11.51, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/kshitij12345/torchnnprofiler/master/README.md", + "_readme_localurl": "kshitij12345~torchnnprofiler~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/kshitij12345/torchnnprofiler/master/setup.py" + ], + "_requirements_localurls": [ + "kshitij12345~torchnnprofiler~setup.py" + ] + }, { "index": 530, "category": "ml", @@ -37805,8 +57080,30 @@ "_updated_at": "2022-09-23T00:00:00.000Z", "_last_commit_date": "2020-02-02T00:00:00.000Z", "_created_at": "2019-09-29T00:00:00.000Z", - "_age_weeks": 166, + "_age_weeks": 168, "_stars_per_week": 0.43, + "_pop_contributor_count": 3, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "azerbaijanpug", + "tum,imperialcollege,openmined" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 39, + "_pop_updated_since_days": 35, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 11, + "_pop_score": 16.81, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/brohrer/cottonwood/master/README.md", "_readme_localurl": "brohrer~cottonwood~README.md", @@ -37820,41 +57117,6 @@ "brohrer~cottonwood~setup.py" ] }, - { - "index": 851, - "category": "profiling", - "githuburl": "https://github.com/kshitij12345/torchnnprofiler", - "featured": null, - "links": null, - "description": null, - "_repopath": "kshitij12345/torchnnprofiler", - "_reponame": "torchnnprofiler", - "_stars": 70, - "_forks": 2, - "_watches": 4, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "torchnnprofiler: Context Manager to profile the forward and backward times of PyTorch's nn.Module", - "_organization": "kshitij12345", - "_updated_at": "2022-11-28T00:00:00.000Z", - "_last_commit_date": "2022-11-02T00:00:00.000Z", - "_created_at": "2022-10-22T00:00:00.000Z", - "_age_weeks": 6, - "_stars_per_week": 10.65, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/kshitij12345/torchnnprofiler/master/README.md", - "_readme_localurl": "kshitij12345~torchnnprofiler~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/kshitij12345/torchnnprofiler/master/setup.py" - ], - "_requirements_localurls": [ - "kshitij12345~torchnnprofiler~setup.py" - ] - }, { "index": 584, "category": "gis", @@ -37864,7 +57126,7 @@ "description": null, "_repopath": "developmentseed/cogeo-mosaic", "_reponame": "cogeo-mosaic", - "_stars": 69, + "_stars": 70, "_forks": 19, "_watches": 8, "_topics": [], @@ -37872,11 +57134,34 @@ "_homepage": "https://developmentseed.org/cogeo-mosaic/", "_description": "cogeo-mosaic: Create and use COG mosaic based on mosaicJSON", "_organization": "developmentseed", - "_updated_at": "2022-11-30T00:00:00.000Z", + "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2022-11-21T00:00:00.000Z", "_created_at": "2019-05-14T00:00:00.000Z", - "_age_weeks": 186, + "_age_weeks": 187, "_stars_per_week": 0.37, + "_pop_contributor_count": 8, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "developmentseed", + "regrowag", + "satellogic" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.44, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 7.0, + "_pop_comment_count": 7.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 6, + "_pop_score": 34.78, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/developmentseed/cogeo-mosaic/master/README.md", "_readme_localurl": "developmentseed~cogeo-mosaic~README.md", @@ -37919,8 +57204,30 @@ "_updated_at": "2022-11-17T00:00:00.000Z", "_last_commit_date": "2022-04-01T00:00:00.000Z", "_created_at": "2019-09-17T00:00:00.000Z", - "_age_weeks": 168, - "_stars_per_week": 0.39, + "_age_weeks": 169, + "_stars_per_week": 0.38, + "_pop_contributor_count": 35, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "blockchains", + "sni" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.81, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 40, + "_pop_updated_since_days": 9, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 28, + "_pop_recent_releases_adjusted_count": 28, + "_pop_issue_count": 2.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 3, + "_pop_score": 33.49, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/blockchainsllc/in3/master/README.md", "_readme_localurl": "blockchainsllc~in3~README.md", @@ -37937,7 +57244,7 @@ "description": null, "_repopath": "gboeing/street-network-models", "_reponame": "street-network-models", - "_stars": 62, + "_stars": 64, "_forks": 4, "_watches": 2, "_topics": [], @@ -37945,11 +57252,32 @@ "_homepage": "https://osf.io/f2dqc", "_description": "street-network-models: Street network models and indicators for every urban area in the world", "_organization": "gboeing", - "_updated_at": "2022-11-15T00:00:00.000Z", + "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2021-03-05T00:00:00.000Z", "_created_at": "2020-04-13T00:00:00.000Z", - "_age_weeks": 138, - "_stars_per_week": 0.45, + "_age_weeks": 140, + "_stars_per_week": 0.46, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "universityofsoutherncalifornia" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 33, + "_pop_updated_since_days": 22, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 2, + "_pop_score": 8.24, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/gboeing/street-network-models/master/README.md", "_readme_localurl": "gboeing~street-network-models~README.md", @@ -37977,8 +57305,31 @@ "_updated_at": "2022-11-08T00:00:00.000Z", "_last_commit_date": "2022-11-29T00:00:00.000Z", "_created_at": "2021-02-04T00:00:00.000Z", - "_age_weeks": 95, - "_stars_per_week": 0.64, + "_age_weeks": 97, + "_stars_per_week": 0.63, + "_pop_contributor_count": 5, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "calthorpeanalytics", + "carto", + "google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.79, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 23, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 6.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 4, + "_pop_score": 28.22, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/googlecloudplatform/dataflow-geobeam/master/README.md", "_readme_localurl": "googlecloudplatform~dataflow-geobeam~README.md", @@ -38023,8 +57374,31 @@ "_updated_at": "2022-11-26T00:00:00.000Z", "_last_commit_date": "2022-08-07T00:00:00.000Z", "_created_at": "2022-01-20T00:00:00.000Z", - "_age_weeks": 45, - "_stars_per_week": 1.24, + "_age_weeks": 47, + "_stars_per_week": 1.2, + "_pop_contributor_count": 3, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "emcdestudent", + "regrowag", + "rsc4earth|universityofleipzig" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.06, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 11, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 15.25, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/cloudsen12/easystac/master/README.md", "_readme_localurl": "cloudsen12~easystac~README.md", @@ -38038,6 +57412,54 @@ "cloudsen12~easystac~setup.py" ] }, + { + "index": 521, + "category": "gis", + "githuburl": "https://github.com/lydorn/mapalignment", + "featured": null, + "links": null, + "description": null, + "_repopath": "lydorn/mapalignment", + "_reponame": "mapalignment", + "_stars": 55, + "_forks": 14, + "_watches": 4, + "_topics": [], + "_language": "Python", + "_homepage": "", + "_description": "mapalignment: Aligning and Updating Cadaster Maps with Remote Sensing Images", + "_organization": "lydorn", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2020-09-03T00:00:00.000Z", + "_created_at": "2018-09-05T00:00:00.000Z", + "_age_weeks": 223, + "_stars_per_week": 0.25, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 28, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 4.99, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/lydorn/mapalignment/master/README.md", + "_readme_localurl": "lydorn~mapalignment~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 854, "category": "util", @@ -38068,8 +57490,29 @@ "_updated_at": "2022-11-16T00:00:00.000Z", "_last_commit_date": "2022-09-22T00:00:00.000Z", "_created_at": "2019-09-18T00:00:00.000Z", - "_age_weeks": 168, - "_stars_per_week": 0.33, + "_age_weeks": 169, + "_stars_per_week": 0.32, + "_pop_contributor_count": 10, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "backticktechnologies" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.33, + "_pop_updated_issues_count": 13, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 40, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 13.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 0, + "_pop_score": 22.05, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/backtick-se/cowait/master/README.md", "_readme_localurl": "backtick-se~cowait~README.md", @@ -38090,33 +57533,71 @@ ] }, { - "index": 521, - "category": "gis", - "githuburl": "https://github.com/lydorn/mapalignment", + "index": 816, + "category": "util", + "githuburl": "https://github.com/aws-samples/sagemaker-ssh-helper", "featured": null, "links": null, "description": null, - "_repopath": "lydorn/mapalignment", - "_reponame": "mapalignment", - "_stars": 54, - "_forks": 14, - "_watches": 4, - "_topics": [], + "_repopath": "aws-samples/sagemaker-ssh-helper", + "_reponame": "sagemaker-ssh-helper", + "_stars": 51, + "_forks": 7, + "_watches": 6, + "_topics": [ + "amazon-sagemaker", + "aws", + "aws-systems-manager", + "machine-learning", + "pycharm", + "sagemaker", + "sagemaker-studio", + "ssh", + "vscode" + ], "_language": "Python", "_homepage": "", - "_description": "mapalignment: Aligning and Updating Cadaster Maps with Remote Sensing Images", - "_organization": "lydorn", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2020-09-03T00:00:00.000Z", - "_created_at": "2018-09-05T00:00:00.000Z", - "_age_weeks": 222, - "_stars_per_week": 0.24, + "_description": "sagemaker-ssh-helper: A helper library to connect into Amazon SageMaker with AWS Systems Manager and SSH", + "_organization": "aws-samples", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_created_at": "2022-10-14T00:00:00.000Z", + "_age_weeks": 9, + "_stars_per_week": 5.41, + "_pop_contributor_count": 4, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "amazon", + "amazonwebservices(aws)" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.5, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 2, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 18, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 9.0, + "_pop_comment_count": 16.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 22.89, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/lydorn/mapalignment/master/README.md", - "_readme_localurl": "lydorn~mapalignment~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/aws-samples/sagemaker-ssh-helper/master/README.md", + "_readme_localurl": "aws-samples~sagemaker-ssh-helper~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/aws-samples/sagemaker-ssh-helper/master/setup.py" + ], + "_requirements_localurls": [ + "aws-samples~sagemaker-ssh-helper~setup.py" + ] }, { "index": 326, @@ -38128,7 +57609,7 @@ "_repopath": "snyk-labs/pysnyk", "_reponame": "pysnyk", "_stars": 50, - "_forks": 89, + "_forks": 91, "_watches": 10, "_topics": [ "snyk", @@ -38140,10 +57621,33 @@ "_description": "pysnyk: A Python client for the Snyk API.", "_organization": "snyk-labs", "_updated_at": "2022-11-04T00:00:00.000Z", - "_last_commit_date": "2022-05-26T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2019-02-03T00:00:00.000Z", - "_age_weeks": 200, + "_age_weeks": 202, "_stars_per_week": 0.25, + "_pop_contributor_count": 22, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "gitpod-io", + "replicated.com", + "snyk" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.29, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 47, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 10.0, + "_pop_comment_count": 4.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 4, + "_pop_score": 35.76, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/snyk-labs/pysnyk/master/README.md", "_readme_localurl": "snyk-labs~pysnyk~README.md", @@ -38157,51 +57661,6 @@ "snyk-labs~pysnyk~pyproject.toml" ] }, - { - "index": 816, - "category": "util", - "githuburl": "https://github.com/aws-samples/sagemaker-ssh-helper", - "featured": null, - "links": null, - "description": null, - "_repopath": "aws-samples/sagemaker-ssh-helper", - "_reponame": "sagemaker-ssh-helper", - "_stars": 50, - "_forks": 5, - "_watches": 6, - "_topics": [ - "amazon-sagemaker", - "aws", - "aws-systems-manager", - "machine-learning", - "pycharm", - "sagemaker", - "sagemaker-studio", - "ssh", - "vscode" - ], - "_language": "Python", - "_homepage": "", - "_description": "sagemaker-ssh-helper: A helper library to connect into Amazon SageMaker with AWS Systems Manager and SSH", - "_organization": "aws-samples", - "_updated_at": "2022-12-04T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2022-10-14T00:00:00.000Z", - "_age_weeks": 7, - "_stars_per_week": 6.48, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/aws-samples/sagemaker-ssh-helper/master/README.md", - "_readme_localurl": "aws-samples~sagemaker-ssh-helper~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/aws-samples/sagemaker-ssh-helper/master/setup.py" - ], - "_requirements_localurls": [ - "aws-samples~sagemaker-ssh-helper~setup.py" - ] - }, { "index": 400, "category": "study", @@ -38211,7 +57670,7 @@ "description": null, "_repopath": "dylanhogg/crazy-awesome-python", "_reponame": "crazy-awesome-python", - "_stars": 46, + "_stars": 47, "_forks": 8, "_watches": 3, "_topics": [ @@ -38230,11 +57689,30 @@ "_homepage": "https://www.awesomepython.org/", "_description": "crazy-awesome-python: A curated list of awesome Python frameworks, with a bias towards data and machine learning", "_organization": "dylanhogg", - "_updated_at": "2022-11-11T00:00:00.000Z", - "_last_commit_date": "2022-11-26T00:00:00.000Z", + "_updated_at": "2022-12-09T00:00:00.000Z", + "_last_commit_date": "2022-12-10T00:00:00.000Z", "_created_at": "2020-06-20T00:00:00.000Z", - "_age_weeks": 128, + "_age_weeks": 130, "_stars_per_week": 0.36, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.62, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 30, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 6.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 17.75, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/dylanhogg/crazy-awesome-python/master/README.md", "_readme_localurl": "dylanhogg~crazy-awesome-python~README.md", @@ -38257,8 +57735,8 @@ "description": null, "_repopath": "dylanhogg/crazy-awesome-crypto", "_reponame": "crazy-awesome-crypto", - "_stars": 42, - "_forks": 12, + "_stars": 43, + "_forks": 13, "_watches": 4, "_topics": [ "crypto", @@ -38276,11 +57754,30 @@ "_homepage": "https://www.awesomecrypto.xyz/", "_description": "crazy-awesome-crypto: A list of awesome crypto and blockchain projects", "_organization": "dylanhogg", - "_updated_at": "2022-11-14T00:00:00.000Z", - "_last_commit_date": "2022-10-30T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", + "_last_commit_date": "2022-12-10T00:00:00.000Z", "_created_at": "2021-09-27T00:00:00.000Z", - "_age_weeks": 62, + "_age_weeks": 64, "_stars_per_week": 0.67, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.63, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 15, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 11.51, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/dylanhogg/crazy-awesome-crypto/master/README.md", "_readme_localurl": "dylanhogg~crazy-awesome-crypto~README.md", @@ -38294,6 +57791,62 @@ "dylanhogg~crazy-awesome-crypto~requirements.txt" ] }, + { + "index": 202, + "category": "crypto", + "githuburl": "https://github.com/nerolation/ethereum-datafarm", + "featured": null, + "links": null, + "description": null, + "_repopath": "nerolation/ethereum-datafarm", + "_reponame": "ethereum-datafarm", + "_stars": 37, + "_forks": 8, + "_watches": 1, + "_topics": [], + "_language": "Python", + "_homepage": null, + "_description": "ethereum-datafarm: Scrap blockchain data from the public API of Etherscan.io", + "_organization": "nerolation", + "_updated_at": "2022-12-18T00:00:00.000Z", + "_last_commit_date": "2022-11-19T00:00:00.000Z", + "_created_at": "2021-03-13T00:00:00.000Z", + "_age_weeks": 92, + "_stars_per_week": 0.4, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "viennauniversityofeconomicsandbusiness(wu)" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.71, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 22, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 13.0, + "_readme_filename": "Readme.md", + "_readme_giturl": "https://raw.githubusercontent.com/nerolation/ethereum-datafarm/master/Readme.md", + "_readme_localurl": "nerolation~ethereum-datafarm~Readme.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/nerolation/ethereum-datafarm/master/requirements.txt" + ], + "_requirements_localurls": [ + "nerolation~ethereum-datafarm~requirements.txt" + ] + }, { "index": 776, "category": "sim", @@ -38321,8 +57874,30 @@ "_updated_at": "2022-08-23T00:00:00.000Z", "_last_commit_date": "2021-11-19T00:00:00.000Z", "_created_at": "2017-02-14T00:00:00.000Z", - "_age_weeks": 303, + "_age_weeks": 304, "_stars_per_week": 0.12, + "_pop_contributor_count": 9, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ptvgroup", + "rsginc" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 71, + "_pop_updated_since_days": 13, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 1.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 0, + "_pop_score": 23.37, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/activitysim/populationsim/master/README.md", "_readme_localurl": "activitysim~populationsim~README.md", @@ -38336,6 +57911,60 @@ "activitysim~populationsim~setup.py" ] }, + { + "index": 821, + "category": "pandas", + "githuburl": "https://github.com/ddelange/mapply", + "featured": null, + "links": null, + "description": null, + "_repopath": "ddelange/mapply", + "_reponame": "mapply", + "_stars": 35, + "_forks": 2, + "_watches": 3, + "_topics": [], + "_language": "Python", + "_homepage": "", + "_description": "mapply: Sensible multi-core apply function for Pandas", + "_organization": "ddelange", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_created_at": "2020-10-26T00:00:00.000Z", + "_age_weeks": 112, + "_stars_per_week": 0.31, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.29, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 26, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 7.0, + "_pop_comment_count": 12.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 21.63, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/ddelange/mapply/master/README.md", + "_readme_localurl": "ddelange~mapply~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/ddelange/mapply/master/setup.py" + ], + "_requirements_localurls": [ + "ddelange~mapply~setup.py" + ] + }, { "index": 386, "category": "nlp", @@ -38365,8 +57994,27 @@ "_updated_at": "2022-10-19T00:00:00.000Z", "_last_commit_date": "2022-09-28T00:00:00.000Z", "_created_at": "2020-11-19T00:00:00.000Z", - "_age_weeks": 106, - "_stars_per_week": 0.33, + "_age_weeks": 108, + "_stars_per_week": 0.32, + "_pop_contributor_count": 4, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.17, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 25, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 2.0, + "_pop_comment_count": 13.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 6.5, + "_pop_dependents_count": 0, + "_pop_score": 21.05, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ferdinandzhong/punctuator/master/README.md", "_readme_localurl": "ferdinandzhong~punctuator~README.md", @@ -38383,76 +58031,6 @@ "ferdinandzhong~punctuator~setup.py" ] }, - { - "index": 202, - "category": "crypto", - "githuburl": "https://github.com/nerolation/ethereum-datafarm", - "featured": null, - "links": null, - "description": null, - "_repopath": "nerolation/ethereum-datafarm", - "_reponame": "ethereum-datafarm", - "_stars": 34, - "_forks": 8, - "_watches": 1, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "ethereum-datafarm: Scrap blockchain data from the public API of Etherscan.io", - "_organization": "nerolation", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-19T00:00:00.000Z", - "_created_at": "2021-03-13T00:00:00.000Z", - "_age_weeks": 90, - "_stars_per_week": 0.38, - "_readme_filename": "Readme.md", - "_readme_giturl": "https://raw.githubusercontent.com/nerolation/ethereum-datafarm/master/Readme.md", - "_readme_localurl": "nerolation~ethereum-datafarm~Readme.md", - "_requirements_filenames": [ - "requirements.txt" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/nerolation/ethereum-datafarm/master/requirements.txt" - ], - "_requirements_localurls": [ - "nerolation~ethereum-datafarm~requirements.txt" - ] - }, - { - "index": 821, - "category": "pandas", - "githuburl": "https://github.com/ddelange/mapply", - "featured": null, - "links": null, - "description": null, - "_repopath": "ddelange/mapply", - "_reponame": "mapply", - "_stars": 33, - "_forks": 2, - "_watches": 3, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "mapply: Sensible multi-core apply function for Pandas", - "_organization": "ddelange", - "_updated_at": "2022-11-04T00:00:00.000Z", - "_last_commit_date": "2022-11-22T00:00:00.000Z", - "_created_at": "2020-10-26T00:00:00.000Z", - "_age_weeks": 110, - "_stars_per_week": 0.3, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/ddelange/mapply/master/README.md", - "_readme_localurl": "ddelange~mapply~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/ddelange/mapply/master/setup.py" - ], - "_requirements_localurls": [ - "ddelange~mapply~setup.py" - ] - }, { "index": 333, "category": "util", @@ -38480,8 +58058,29 @@ "_updated_at": "2022-11-16T00:00:00.000Z", "_last_commit_date": "2022-11-16T00:00:00.000Z", "_created_at": "2021-12-16T00:00:00.000Z", - "_age_weeks": 50, - "_stars_per_week": 0.63, + "_age_weeks": 52, + "_stars_per_week": 0.61, + "_pop_contributor_count": 4, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "epfl" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.98, + "_pop_updated_issues_count": 27, + "_pop_closed_issues_count": 20, + "_pop_created_since_days": 12, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 27.0, + "_pop_comment_count": 38.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 25.43, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/gondolav/pyfuncol/master/README.md", "_readme_localurl": "gondolav~pyfuncol~README.md", @@ -38518,8 +58117,29 @@ "_updated_at": "2022-10-27T00:00:00.000Z", "_last_commit_date": "2021-06-28T00:00:00.000Z", "_created_at": "2019-10-24T00:00:00.000Z", - "_age_weeks": 162, + "_age_weeks": 164, "_stars_per_week": 0.18, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "argonnenationallaboratory" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 38, + "_pop_updated_since_days": 18, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 1.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 16.4, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/artelys/geonetworkx/master/README.md", "_readme_localurl": "artelys~geonetworkx~README.md", @@ -38564,8 +58184,29 @@ "_updated_at": "2022-12-06T00:00:00.000Z", "_last_commit_date": "2022-12-03T00:00:00.000Z", "_created_at": "2021-05-21T00:00:00.000Z", - "_age_weeks": 80, - "_stars_per_week": 0.35, + "_age_weeks": 82, + "_stars_per_week": 0.34, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "gafag" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.17, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 19, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 14.89, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/gregorhd/mapcompare/master/README.md", "_readme_localurl": "gregorhd~mapcompare~README.md", @@ -38588,7 +58229,7 @@ "description": null, "_repopath": "crowddynamics/crowddynamics", "_reponame": "crowddynamics", - "_stars": 26, + "_stars": 27, "_forks": 9, "_watches": 9, "_topics": [ @@ -38601,11 +58242,33 @@ "_homepage": "https://jaantollander.com/post/how-to-implement-continuous-time-multi-agent-crowd-simulation/", "_description": "crowddynamics: Continuous-time multi-agent crowd simulation engine implemented in Python using Numba and Numpy for performance.", "_organization": "crowddynamics", - "_updated_at": "2022-12-01T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2020-01-02T00:00:00.000Z", "_created_at": "2016-03-22T00:00:00.000Z", - "_age_weeks": 350, - "_stars_per_week": 0.07, + "_age_weeks": 351, + "_stars_per_week": 0.08, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "aaltouniversity", + "pyupio" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 82, + "_pop_updated_since_days": 36, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 13.12, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/crowddynamics/crowddynamics/master/README.md", "_readme_localurl": "crowddynamics~crowddynamics~README.md", @@ -38647,8 +58310,29 @@ "_updated_at": "2022-11-26T00:00:00.000Z", "_last_commit_date": "2022-06-06T00:00:00.000Z", "_created_at": "2022-03-22T00:00:00.000Z", - "_age_weeks": 37, - "_stars_per_week": 0.62, + "_age_weeks": 38, + "_stars_per_week": 0.59, + "_pop_contributor_count": 3, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "mit-ibmwatsonailab" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.31, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 9, + "_pop_updated_since_days": 6, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 9.8, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jerryyli/valhalla-nmt/master/README.md", "_readme_localurl": "jerryyli~valhalla-nmt~README.md", @@ -38676,8 +58360,27 @@ "_updated_at": "2022-11-02T00:00:00.000Z", "_last_commit_date": "2022-11-02T00:00:00.000Z", "_created_at": "2014-08-04T00:00:00.000Z", - "_age_weeks": 435, + "_age_weeks": 437, "_stars_per_week": 0.05, + "_pop_contributor_count": 8, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 102, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 5, + "_pop_score": 18.5, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jszymon/pacal/master/README.md", "_readme_localurl": "jszymon~pacal~README.md", @@ -38720,8 +58423,30 @@ "_updated_at": "2022-08-14T00:00:00.000Z", "_last_commit_date": "2021-12-01T00:00:00.000Z", "_created_at": "2020-11-17T00:00:00.000Z", - "_age_weeks": 107, + "_age_weeks": 108, "_stars_per_week": 0.17, + "_pop_contributor_count": 7, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "google", + "ibmcodait" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 25, + "_pop_updated_since_days": 13, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 7.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 16.56, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/codait/pardata/master/README.rst", "_readme_localurl": "codait~pardata~README.rst", @@ -38755,8 +58480,29 @@ "_updated_at": "2022-11-15T00:00:00.000Z", "_last_commit_date": "2022-01-30T00:00:00.000Z", "_created_at": "2021-12-04T00:00:00.000Z", - "_age_weeks": 52, - "_stars_per_week": 0.32, + "_age_weeks": 54, + "_stars_per_week": 0.31, + "_pop_contributor_count": 10, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "adobe" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 13, + "_pop_updated_since_days": 11, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 31, + "_pop_score": 21.96, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/matthewdeanmartin/terminaltables/master/README.md", "_readme_localurl": "matthewdeanmartin~terminaltables~README.md", @@ -38800,8 +58546,27 @@ "_updated_at": "2022-12-02T00:00:00.000Z", "_last_commit_date": "2022-12-06T00:00:00.000Z", "_created_at": "2021-01-21T00:00:00.000Z", - "_age_weeks": 97, + "_age_weeks": 99, "_stars_per_week": 0.16, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.48, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 23, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 1.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 17.36, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/markhershey/arxiv-dl/master/README.md", "_readme_localurl": "markhershey~arxiv-dl~README.md", @@ -38838,8 +58603,27 @@ "_updated_at": "2022-12-06T00:00:00.000Z", "_last_commit_date": "2021-05-17T00:00:00.000Z", "_created_at": "2020-07-30T00:00:00.000Z", - "_age_weeks": 122, + "_age_weeks": 124, "_stars_per_week": 0.13, + "_pop_contributor_count": 1, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 29, + "_pop_updated_since_days": 19, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 2.91, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/zorzi-s/maprepair/master/README.md", "_readme_localurl": "zorzi-s~maprepair~README.md", @@ -38856,19 +58640,45 @@ "description": null, "_repopath": "pyodide/micropip", "_reponame": "micropip", - "_stars": 11, - "_forks": 3, + "_stars": 10, + "_forks": 4, "_watches": 5, - "_topics": [], + "_topics": [ + "package-installer", + "pyodide", + "python", + "webassembly" + ], "_language": "Python", "_homepage": "https://micropip.pyodide.org", "_description": "micropip: A lightweight Python package installer for Pyodide", "_organization": "pyodide", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", + "_updated_at": "2022-12-15T00:00:00.000Z", + "_last_commit_date": "2022-12-12T00:00:00.000Z", "_created_at": "2022-09-15T00:00:00.000Z", - "_age_weeks": 11, - "_stars_per_week": 0.93, + "_age_weeks": 13, + "_stars_per_week": 0.74, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "mitmathdepartment" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.54, + "_pop_updated_issues_count": 37, + "_pop_closed_issues_count": 27, + "_pop_created_since_days": 3, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 37.0, + "_pop_comment_count": 70.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 3, + "_pop_score": 28.65, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pyodide/micropip/master/README.md", "_readme_localurl": "pyodide~micropip~README.md", @@ -38899,11 +58709,30 @@ "_homepage": "", "_description": "wikinet: Python library for exploring networks of hyperlinked Wikipedia articles", "_organization": "harangju", - "_updated_at": "2022-01-17T00:00:00.000Z", + "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-01-25T00:00:00.000Z", "_created_at": "2019-08-05T00:00:00.000Z", - "_age_weeks": 174, + "_age_weeks": 176, "_stars_per_week": 0.06, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 41, + "_pop_updated_since_days": 11, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 9, + "_pop_score": 12.74, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/harangju/wikinet/master/README.md", "_readme_localurl": "harangju~wikinet~README.md", @@ -38940,8 +58769,30 @@ "_updated_at": "2022-01-02T00:00:00.000Z", "_last_commit_date": "2022-01-02T00:00:00.000Z", "_created_at": "2018-11-02T00:00:00.000Z", - "_age_weeks": 213, + "_age_weeks": 215, "_stars_per_week": 0.03, + "_pop_contributor_count": 6, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "timeintermedia(timedia)", + "unist" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 50, + "_pop_updated_since_days": 12, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 8, + "_pop_score": 21.32, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/tk0miya/docutils-stubs/master/README.rst", "_readme_localurl": "tk0miya~docutils-stubs~README.rst", @@ -38975,8 +58826,27 @@ "_updated_at": "2021-09-24T00:00:00.000Z", "_last_commit_date": "2018-09-28T00:00:00.000Z", "_created_at": "2014-09-12T00:00:00.000Z", - "_age_weeks": 429, + "_age_weeks": 431, "_stars_per_week": 0.01, + "_pop_contributor_count": 5, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 101, + "_pop_updated_since_days": 51, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 3, + "_pop_score": 9.09, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/artemyk/dynpy/master/README.md", "_readme_localurl": "artemyk~dynpy~README.md", @@ -39010,8 +58880,27 @@ "_updated_at": "2022-07-19T00:00:00.000Z", "_last_commit_date": "2020-11-21T00:00:00.000Z", "_created_at": "2020-06-30T00:00:00.000Z", - "_age_weeks": 127, + "_age_weeks": 128, "_stars_per_week": 0.02, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 30, + "_pop_updated_since_days": 25, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 5.43, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/lycantropos/wagyu/master/README.md", "_readme_localurl": "lycantropos~wagyu~README.md", @@ -39048,8 +58937,29 @@ "_updated_at": "2022-12-07T00:00:00.000Z", "_last_commit_date": "2022-09-29T00:00:00.000Z", "_created_at": "2022-07-29T00:00:00.000Z", - "_age_weeks": 18, - "_stars_per_week": 0.11, + "_age_weeks": 20, + "_stars_per_week": 0.1, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [ + "ethzurich" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 5, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 7.59, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/edomel/boundaryvt/master/README.md", "_readme_localurl": "edomel~boundaryvt~README.md", @@ -39082,8 +58992,27 @@ "_updated_at": "2022-08-19T00:00:00.000Z", "_last_commit_date": "2022-08-19T00:00:00.000Z", "_created_at": "2020-02-12T00:00:00.000Z", - "_age_weeks": 147, + "_age_weeks": 148, "_stars_per_week": 0.01, + "_pop_contributor_count": 2, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 35, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 9.76, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/dylanhogg/python-project-template/master/README.md", "_readme_localurl": "dylanhogg~python-project-template~README.md", diff --git a/github_data.min.json b/github_data.min.json index 6a51f01..4a6cb19 100644 --- a/github_data.min.json +++ b/github_data.min.json @@ -1 +1 @@ -{"schema":{"fields":[{"name":"index","type":"integer"},{"name":"category","type":"string"},{"name":"githuburl","type":"string"},{"name":"featured","type":"number"},{"name":"links","type":"string"},{"name":"description","type":"number"},{"name":"_repopath","type":"string"},{"name":"_reponame","type":"string"},{"name":"_stars","type":"integer"},{"name":"_forks","type":"integer"},{"name":"_watches","type":"integer"},{"name":"_topics","type":"string"},{"name":"_language","type":"string"},{"name":"_homepage","type":"string"},{"name":"_description","type":"string"},{"name":"_organization","type":"string"},{"name":"_updated_at","type":"string"},{"name":"_last_commit_date","type":"string"},{"name":"_created_at","type":"string"},{"name":"_age_weeks","type":"integer"},{"name":"_stars_per_week","type":"number"},{"name":"_readme_filename","type":"string"},{"name":"_readme_giturl","type":"string"},{"name":"_readme_localurl","type":"string"},{"name":"_requirements_filenames","type":"string"},{"name":"_requirements_giturls","type":"string"},{"name":"_requirements_localurls","type":"string"}],"primaryKey":["index"],"pandas_version":"0.20.0"},"data":[{"index":89,"category":"ml-dl","githuburl":"https://github.com/tensorflow/tensorflow","featured":null,"links":null,"description":null,"_repopath":"tensorflow/tensorflow","_reponame":"tensorflow","_stars":169543,"_forks":87524,"_watches":7795,"_topics":["tensorflow","machine-learning","python","deep-learning","deep-neural-networks","neural-network","ml","distributed"],"_language":"C++","_homepage":"https://tensorflow.org","_description":"tensorflow: An Open Source Machine Learning Framework for Everyone","_organization":"tensorflow","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2015-11-07T00:00:00.000Z","_age_weeks":369,"_stars_per_week":458.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/tensorflow/master/README.md","_readme_localurl":"tensorflow~tensorflow~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":405,"category":"study","githuburl":"https://github.com/thealgorithms/python","featured":null,"links":null,"description":null,"_repopath":"thealgorithms/python","_reponame":"Python","_stars":149666,"_forks":38442,"_watches":5936,"_topics":["python","algorithm","algorithms-implemented","algorithm-competitions","algos","sorts","searches","sorting-algorithms","education","learn","practice","community-driven","interview","hacktoberfest"],"_language":"Python","_homepage":"https://the-algorithms.com/","_description":"Python: All Algorithms implemented in Python","_organization":"thealgorithms","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2016-07-16T00:00:00.000Z","_age_weeks":333,"_stars_per_week":448.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/thealgorithms/python/master/README.md","_readme_localurl":"thealgorithms~python~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/thealgorithms/python/master/requirements.txt","https://raw.githubusercontent.com/thealgorithms/python/master/pyproject.toml"],"_requirements_localurls":["thealgorithms~python~requirements.txt","thealgorithms~python~pyproject.toml"]},{"index":112,"category":"nlp","githuburl":"https://github.com/huggingface/transformers","featured":null,"links":null,"description":null,"_repopath":"huggingface/transformers","_reponame":"transformers","_stars":75566,"_forks":17147,"_watches":860,"_topics":["nlp","natural-language-processing","pytorch","language-model","tensorflow","bert","language-models","pytorch-transformers","nlp-library","transformer","model-hub","pretrained-models","jax","flax","seq2seq","speech-recognition","hacktoberfest","python","machine-learning","deep-learning"],"_language":"Python","_homepage":"https://huggingface.co/transformers","_description":"\ud83e\udd17 Transformers: State-of-the-art Machine Learning for Pytorch, TensorFlow, and JAX.","_organization":"huggingface","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2018-10-29T00:00:00.000Z","_age_weeks":214,"_stars_per_week":352.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/transformers/master/README.md","_readme_localurl":"huggingface~transformers~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/transformers/master/setup.py","https://raw.githubusercontent.com/huggingface/transformers/master/pyproject.toml"],"_requirements_localurls":["huggingface~transformers~setup.py","huggingface~transformers~pyproject.toml"]},{"index":14,"category":"web","githuburl":"https://github.com/django/django","featured":null,"links":null,"description":null,"_repopath":"django/django","_reponame":"django","_stars":67603,"_forks":28283,"_watches":2267,"_topics":["python","django","web","framework","orm","templates","models","views","apps"],"_language":"Python","_homepage":"https://www.djangoproject.com/","_description":"django: The Web framework for perfectionists with deadlines.","_organization":"django","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2012-04-28T00:00:00.000Z","_age_weeks":553,"_stars_per_week":122.12,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/django/django/master/README.rst","_readme_localurl":"django~django~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/django/django/master/setup.py","https://raw.githubusercontent.com/django/django/master/pyproject.toml"],"_requirements_localurls":["django~django~setup.py","django~django~pyproject.toml"]},{"index":57,"category":"web","githuburl":"https://github.com/pallets/flask","featured":null,"links":null,"description":null,"_repopath":"pallets/flask","_reponame":"flask","_stars":61266,"_forks":15345,"_watches":2147,"_topics":["python","flask","wsgi","web-framework","werkzeug","jinja","pallets"],"_language":"Python","_homepage":"https://flask.palletsprojects.com","_description":"flask: The Python micro framework for building web applications.","_organization":"pallets","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-25T00:00:00.000Z","_created_at":"2010-04-06T00:00:00.000Z","_age_weeks":661,"_stars_per_week":92.67,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/flask/master/README.rst","_readme_localurl":"pallets~flask~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/flask/master/setup.py"],"_requirements_localurls":["pallets~flask~setup.py"]},{"index":76,"category":"ml-dl","githuburl":"https://github.com/pytorch/pytorch","featured":null,"links":null,"description":null,"_repopath":"pytorch/pytorch","_reponame":"pytorch","_stars":60819,"_forks":16942,"_watches":1624,"_topics":["neural-network","autograd","gpu","numpy","deep-learning","tensor","python","machine-learning"],"_language":"C++","_homepage":"https://pytorch.org","_description":"pytorch: Tensors and Dynamic neural networks in Python with strong GPU acceleration","_organization":"pytorch","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2016-08-13T00:00:00.000Z","_age_weeks":329,"_stars_per_week":184.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/pytorch/master/README.md","_readme_localurl":"pytorch~pytorch~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/pytorch/master/requirements.txt","https://raw.githubusercontent.com/pytorch/pytorch/master/setup.py","https://raw.githubusercontent.com/pytorch/pytorch/master/pyproject.toml"],"_requirements_localurls":["pytorch~pytorch~requirements.txt","pytorch~pytorch~setup.py","pytorch~pytorch~pyproject.toml"]},{"index":40,"category":"ml-dl","githuburl":"https://github.com/keras-team/keras","featured":null,"links":null,"description":null,"_repopath":"keras-team/keras","_reponame":"keras","_stars":56789,"_forks":19224,"_watches":1937,"_topics":["deep-learning","tensorflow","neural-networks","machine-learning","data-science","python"],"_language":"Python","_homepage":"http://keras.io/","_description":"keras: Deep Learning for humans","_organization":"keras-team","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2015-03-28T00:00:00.000Z","_age_weeks":401,"_stars_per_week":141.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/keras-team/keras/master/README.md","_readme_localurl":"keras-team~keras~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/keras-team/keras/master/requirements.txt"],"_requirements_localurls":["keras-team~keras~requirements.txt"]},{"index":189,"category":"util","githuburl":"https://github.com/home-assistant/core","featured":null,"links":null,"description":null,"_repopath":"home-assistant/core","_reponame":"core","_stars":56473,"_forks":20808,"_watches":1345,"_topics":["python","home-automation","iot","internet-of-things","mqtt","raspberry-pi","asyncio","hacktoberfest"],"_language":"Python","_homepage":"https://www.home-assistant.io","_description":"core: :house_with_garden: Open source home automation that puts local control and privacy first.","_organization":"home-assistant","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2013-09-17T00:00:00.000Z","_age_weeks":481,"_stars_per_week":117.37,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/home-assistant/core/master/README.rst","_readme_localurl":"home-assistant~core~README.rst","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/home-assistant/core/master/requirements.txt","https://raw.githubusercontent.com/home-assistant/core/master/pyproject.toml"],"_requirements_localurls":["home-assistant~core~requirements.txt","home-assistant~core~pyproject.toml"]},{"index":78,"category":"ml","githuburl":"https://github.com/scikit-learn/scikit-learn","featured":null,"links":null,"description":null,"_repopath":"scikit-learn/scikit-learn","_reponame":"scikit-learn","_stars":52254,"_forks":23758,"_watches":2170,"_topics":["machine-learning","python","statistics","data-science","data-analysis"],"_language":"Python","_homepage":"https://scikit-learn.org","_description":"scikit-learn: machine learning in Python","_organization":"scikit-learn","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2010-08-17T00:00:00.000Z","_age_weeks":642,"_stars_per_week":81.37,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/scikit-learn/scikit-learn/master/README.rst","_readme_localurl":"scikit-learn~scikit-learn~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scikit-learn/scikit-learn/master/setup.py","https://raw.githubusercontent.com/scikit-learn/scikit-learn/master/pyproject.toml"],"_requirements_localurls":["scikit-learn~scikit-learn~setup.py","scikit-learn~scikit-learn~pyproject.toml"]},{"index":135,"category":"web","githuburl":"https://github.com/tiangolo/fastapi","featured":1.0,"links":null,"description":null,"_repopath":"tiangolo/fastapi","_reponame":"fastapi","_stars":52245,"_forks":4281,"_watches":601,"_topics":["python","json","swagger-ui","redoc","starlette","openapi","api","openapi3","framework","async","asyncio","uvicorn","python3","python-types","pydantic","json-schema","fastapi","swagger","rest","web"],"_language":"Python","_homepage":"https://fastapi.tiangolo.com/","_description":"FastAPI framework, high performance, easy to learn, fast to code, ready for production","_organization":"tiangolo","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2018-12-08T00:00:00.000Z","_age_weeks":208,"_stars_per_week":250.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/fastapi/master/README.md","_readme_localurl":"tiangolo~fastapi~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tiangolo/fastapi/master/pyproject.toml"],"_requirements_localurls":["tiangolo~fastapi~pyproject.toml"]},{"index":399,"category":"util","githuburl":"https://github.com/python/cpython","featured":null,"links":null,"description":null,"_repopath":"python/cpython","_reponame":"cpython","_stars":49336,"_forks":25142,"_watches":1461,"_topics":[],"_language":"Python","_homepage":"https://www.python.org/","_description":"cpython: The Python programming language","_organization":"python","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2017-02-10T00:00:00.000Z","_age_weeks":303,"_stars_per_week":162.44,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/python/cpython/master/README.rst","_readme_localurl":"python~cpython~README.rst","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":177,"category":"web","githuburl":"https://github.com/psf/requests","featured":null,"links":null,"description":null,"_repopath":"psf/requests","_reponame":"requests","_stars":48656,"_forks":8921,"_watches":1360,"_topics":["python","http","forhumans","requests","python-requests","client","humans","cookies"],"_language":"Python","_homepage":"https://requests.readthedocs.io/en/latest/","_description":"requests: A simple, yet elegant, HTTP library.","_organization":"psf","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-21T00:00:00.000Z","_created_at":"2011-02-13T00:00:00.000Z","_age_weeks":616,"_stars_per_week":78.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/psf/requests/master/README.md","_readme_localurl":"psf~requests~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/psf/requests/master/setup.py","https://raw.githubusercontent.com/psf/requests/master/pyproject.toml"],"_requirements_localurls":["psf~requests~setup.py","psf~requests~pyproject.toml"]},{"index":80,"category":"data","githuburl":"https://github.com/scrapy/scrapy","featured":null,"links":null,"description":null,"_repopath":"scrapy/scrapy","_reponame":"scrapy","_stars":45297,"_forks":9798,"_watches":1787,"_topics":["python","scraping","crawling","framework","crawler","hacktoberfest"],"_language":"Python","_homepage":"https://scrapy.org","_description":"Scrapy, a fast high-level web crawling & scraping framework for Python.","_organization":"scrapy","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2010-02-22T00:00:00.000Z","_age_weeks":667,"_stars_per_week":67.88,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/scrapy/scrapy/master/README.rst","_readme_localurl":"scrapy~scrapy~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/scrapy/scrapy/master/setup.py"],"_requirements_localurls":["scrapy~scrapy~setup.py"]},{"index":695,"category":"ml-dl","githuburl":"https://github.com/deepfakes/faceswap","featured":null,"links":null,"description":null,"_repopath":"deepfakes/faceswap","_reponame":"faceswap","_stars":42917,"_forks":12004,"_watches":1504,"_topics":["faceswap","face-swap","deep-learning","deeplearning","deep-neural-networks","deepfakes","deepface","deep-face-swap","fakeapp","neural-networks","neural-nets","openfaceswap","myfakeapp","machine-learning"],"_language":"Python","_homepage":"https://www.faceswap.dev","_description":"faceswap: Deepfakes Software For All","_organization":"deepfakes","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-22T00:00:00.000Z","_created_at":"2017-12-19T00:00:00.000Z","_age_weeks":259,"_stars_per_week":165.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/deepfakes/faceswap/master/README.md","_readme_localurl":"deepfakes~faceswap~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/deepfakes/faceswap/master/setup.py"],"_requirements_localurls":["deepfakes~faceswap~setup.py"]},{"index":179,"category":"term","githuburl":"https://github.com/willmcgugan/rich","featured":null,"links":null,"description":null,"_repopath":"willmcgugan/rich","_reponame":"rich","_stars":40996,"_forks":1434,"_watches":541,"_topics":["python","python3","python-library","terminal","terminal-color","markdown","tables","syntax-highlighting","ansi-colors","progress-bar-python","progress-bar","traceback","rich","tracebacks-rich","emoji","tui"],"_language":"Python","_homepage":"https://rich.readthedocs.io/en/latest/","_description":"Rich is a Python library for rich text and beautiful formatting in the terminal.","_organization":"willmcgugan","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2019-11-10T00:00:00.000Z","_age_weeks":160,"_stars_per_week":255.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/willmcgugan/rich/master/README.md","_readme_localurl":"willmcgugan~rich~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/willmcgugan/rich/master/setup.py","https://raw.githubusercontent.com/willmcgugan/rich/master/pyproject.toml"],"_requirements_localurls":["willmcgugan~rich~setup.py","willmcgugan~rich~pyproject.toml"]},{"index":262,"category":"web","githuburl":"https://github.com/sherlock-project/sherlock","featured":null,"links":null,"description":null,"_repopath":"sherlock-project/sherlock","_reponame":"sherlock","_stars":37642,"_forks":4443,"_watches":962,"_topics":["osint","reconnaissance","linux","macos","cli","sherlock","python3","windows","redteam","tools","information-gathering","hacktoberfest","hacktoberfest2022","python"],"_language":"Python","_homepage":"http://sherlock-project.github.io","_description":"sherlock: \ud83d\udd0e Hunt down social media accounts by username across social networks","_organization":"sherlock-project","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-21T00:00:00.000Z","_created_at":"2018-12-24T00:00:00.000Z","_age_weeks":206,"_stars_per_week":182.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sherlock-project/sherlock/master/README.md","_readme_localurl":"sherlock-project~sherlock~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/sherlock-project/sherlock/master/requirements.txt"],"_requirements_localurls":["sherlock-project~sherlock~requirements.txt"]},{"index":432,"category":"study","githuburl":"https://github.com/jakevdp/pythondatasciencehandbook","featured":null,"links":null,"description":null,"_repopath":"jakevdp/pythondatasciencehandbook","_reponame":"PythonDataScienceHandbook","_stars":36745,"_forks":16232,"_watches":1768,"_topics":["scikit-learn","numpy","python","jupyter-notebook","matplotlib","pandas"],"_language":"Jupyter Notebook","_homepage":"http://jakevdp.github.io/PythonDataScienceHandbook","_description":"PythonDataScienceHandbook: Python Data Science Handbook: full text in Jupyter Notebooks","_organization":"jakevdp","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2018-11-30T00:00:00.000Z","_created_at":"2016-08-10T00:00:00.000Z","_age_weeks":330,"_stars_per_week":111.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jakevdp/pythondatasciencehandbook/master/README.md","_readme_localurl":"jakevdp~pythondatasciencehandbook~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/jakevdp/pythondatasciencehandbook/master/requirements.txt"],"_requirements_localurls":["jakevdp~pythondatasciencehandbook~requirements.txt"]},{"index":736,"category":"diffusion","githuburl":"https://github.com/compvis/stable-diffusion","featured":null,"links":null,"description":null,"_repopath":"compvis/stable-diffusion","_reponame":"stable-diffusion","_stars":36523,"_forks":5617,"_watches":348,"_topics":[],"_language":"Jupyter Notebook","_homepage":"https://ommer-lab.com/research/latent-diffusion-models/","_description":"stable-diffusion: A latent text-to-image diffusion model","_organization":"compvis","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-16T00:00:00.000Z","_created_at":"2022-08-10T00:00:00.000Z","_age_weeks":17,"_stars_per_week":2148.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/compvis/stable-diffusion/master/README.md","_readme_localurl":"compvis~stable-diffusion~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/compvis/stable-diffusion/master/setup.py"],"_requirements_localurls":["compvis~stable-diffusion~setup.py"]},{"index":59,"category":"pandas","githuburl":"https://github.com/pandas-dev/pandas","featured":1.0,"links":null,"description":null,"_repopath":"pandas-dev/pandas","_reponame":"pandas","_stars":36168,"_forks":15473,"_watches":1118,"_topics":["data-analysis","pandas","flexible","alignment","python","data-science"],"_language":"Python","_homepage":"https://pandas.pydata.org","_description":"pandas: Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more","_organization":"pandas-dev","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2010-08-24T00:00:00.000Z","_age_weeks":641,"_stars_per_week":56.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pandas-dev/pandas/master/README.md","_readme_localurl":"pandas-dev~pandas~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pandas-dev/pandas/master/setup.py","https://raw.githubusercontent.com/pandas-dev/pandas/master/pyproject.toml"],"_requirements_localurls":["pandas-dev~pandas~setup.py","pandas-dev~pandas~pyproject.toml"]},{"index":694,"category":"ml-dl","githuburl":"https://github.com/iperov/deepfacelab","featured":null,"links":null,"description":null,"_repopath":"iperov/deepfacelab","_reponame":"DeepFaceLab","_stars":36022,"_forks":8114,"_watches":1049,"_topics":["faceswap","face-swap","deep-learning","deeplearning","deep-neural-networks","deepfakes","deepface","deep-face-swap","fakeapp","neural-networks","neural-nets","deepfacelab","creating-deepfakes","arxiv","machine-learning"],"_language":"Python","_homepage":"","_description":"DeepFaceLab is the leading software for creating deepfakes.","_organization":"iperov","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-31T00:00:00.000Z","_created_at":"2018-06-04T00:00:00.000Z","_age_weeks":235,"_stars_per_week":153.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/iperov/deepfacelab/master/README.md","_readme_localurl":"iperov~deepfacelab~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":64,"category":"util","githuburl":"https://github.com/psf/black","featured":null,"links":null,"description":null,"_repopath":"psf/black","_reponame":"black","_stars":30382,"_forks":1946,"_watches":226,"_topics":["python","code","formatter","codeformatter","gofmt","yapf","autopep8","pre-commit-hook","hacktoberfest"],"_language":"Python","_homepage":"https://black.readthedocs.io/en/stable/","_description":"black: The uncompromising Python code formatter","_organization":"psf","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-21T00:00:00.000Z","_created_at":"2018-03-14T00:00:00.000Z","_age_weeks":247,"_stars_per_week":123.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/psf/black/master/README.md","_readme_localurl":"psf~black~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/psf/black/master/pyproject.toml"],"_requirements_localurls":["psf~black~pyproject.toml"]},{"index":220,"category":"util","githuburl":"https://github.com/pyenv/pyenv","featured":null,"links":null,"description":null,"_repopath":"pyenv/pyenv","_reponame":"pyenv","_stars":29759,"_forks":2642,"_watches":382,"_topics":["python","shell"],"_language":"Roff","_homepage":"","_description":"pyenv: Simple Python version management","_organization":"pyenv","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2012-08-31T00:00:00.000Z","_age_weeks":535,"_stars_per_week":55.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyenv/pyenv/master/README.md","_readme_localurl":"pyenv~pyenv~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":55,"category":"sim","githuburl":"https://github.com/openai/gym","featured":null,"links":null,"description":null,"_repopath":"openai/gym","_reponame":"gym","_stars":29220,"_forks":8087,"_watches":992,"_topics":[],"_language":"Python","_homepage":"https://www.gymlibrary.dev","_description":"gym: A toolkit for developing and comparing reinforcement learning algorithms.","_organization":"openai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-25T00:00:00.000Z","_created_at":"2016-04-27T00:00:00.000Z","_age_weeks":345,"_stars_per_week":84.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/gym/master/README.md","_readme_localurl":"openai~gym~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/gym/master/requirements.txt","https://raw.githubusercontent.com/openai/gym/master/setup.py","https://raw.githubusercontent.com/openai/gym/master/pyproject.toml"],"_requirements_localurls":["openai~gym~requirements.txt","openai~gym~setup.py","openai~gym~pyproject.toml"]},{"index":118,"category":"ml-ops","githuburl":"https://github.com/apache/airflow","featured":null,"links":null,"description":null,"_repopath":"apache/airflow","_reponame":"airflow","_stars":28369,"_forks":11636,"_watches":766,"_topics":["airflow","apache","apache-airflow","python","scheduler","workflow","hacktoberfest"],"_language":"Python","_homepage":"https://airflow.apache.org/","_description":"airflow: Apache Airflow - A platform to programmatically author, schedule, and monitor workflows","_organization":"apache","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2015-04-13T00:00:00.000Z","_age_weeks":399,"_stars_per_week":71.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apache/airflow/master/README.md","_readme_localurl":"apache~airflow~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/apache/airflow/master/setup.py","https://raw.githubusercontent.com/apache/airflow/master/pyproject.toml"],"_requirements_localurls":["apache~airflow~setup.py","apache~airflow~pyproject.toml"]},{"index":592,"category":"util","githuburl":"https://github.com/mingrammer/diagrams","featured":null,"links":null,"description":null,"_repopath":"mingrammer/diagrams","_reponame":"diagrams","_stars":27356,"_forks":1669,"_watches":348,"_topics":["diagram","diagram-as-code","architecture","graphviz"],"_language":"Python","_homepage":"https://diagrams.mingrammer.com","_description":"diagrams: :art: Diagram as Code for prototyping cloud system architectures","_organization":"mingrammer","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-27T00:00:00.000Z","_created_at":"2020-02-02T00:00:00.000Z","_age_weeks":148,"_stars_per_week":184.3,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mingrammer/diagrams/master/README.md","_readme_localurl":"mingrammer~diagrams~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mingrammer/diagrams/master/pyproject.toml"],"_requirements_localurls":["mingrammer~diagrams~pyproject.toml"]},{"index":257,"category":"crypto","githuburl":"https://github.com/ccxt/ccxt","featured":null,"links":null,"description":null,"_repopath":"ccxt/ccxt","_reponame":"ccxt","_stars":26569,"_forks":6498,"_watches":929,"_topics":["altcoin","api","arbitrage","bitcoin","bot","cryptocurrency","crypto","e-commerce","ethereum","exchange","invest","library","strategy","trading","btc","eth","trade","merchant","market-data"],"_language":"JavaScript","_homepage":"","_description":"ccxt: A JavaScript / Python / PHP cryptocurrency trading API with support for more than 100 bitcoin/altcoin exchanges","_organization":"ccxt","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2017-05-14T00:00:00.000Z","_age_weeks":290,"_stars_per_week":91.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ccxt/ccxt/master/README.md","_readme_localurl":"ccxt~ccxt~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":677,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/detectron","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/detectron","_reponame":"Detectron","_stars":25445,"_forks":5480,"_watches":959,"_topics":[],"_language":"Python","_homepage":"","_description":"Detectron: FAIR's research platform for object detection research, implementing popular algorithms like Mask R-CNN and RetinaNet.","_organization":"facebookresearch","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2021-03-27T00:00:00.000Z","_created_at":"2017-10-05T00:00:00.000Z","_age_weeks":269,"_stars_per_week":94.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/detectron/master/README.md","_readme_localurl":"facebookresearch~detectron~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/detectron/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/detectron/master/setup.py"],"_requirements_localurls":["facebookresearch~detectron~requirements.txt","facebookresearch~detectron~setup.py"]},{"index":245,"category":"ml","githuburl":"https://github.com/tencentarc/gfpgan","featured":null,"links":null,"description":null,"_repopath":"tencentarc/gfpgan","_reponame":"GFPGAN","_stars":24990,"_forks":3771,"_watches":368,"_topics":["pytorch","gan","deep-learning","super-resolution","face-restoration","image-restoration","gfpgan"],"_language":"Python","_homepage":"","_description":"GFPGAN aims at developing Practical Algorithms for Real-world Face Restoration.","_organization":"tencentarc","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-09-16T00:00:00.000Z","_created_at":"2021-03-19T00:00:00.000Z","_age_weeks":89,"_stars_per_week":278.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tencentarc/gfpgan/master/README.md","_readme_localurl":"tencentarc~gfpgan~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tencentarc/gfpgan/master/requirements.txt","https://raw.githubusercontent.com/tencentarc/gfpgan/master/setup.py"],"_requirements_localurls":["tencentarc~gfpgan~requirements.txt","tencentarc~gfpgan~setup.py"]},{"index":17,"category":"nlp","githuburl":"https://github.com/explosion/spacy","featured":null,"links":null,"description":null,"_repopath":"explosion/spacy","_reponame":"spaCy","_stars":24716,"_forks":3984,"_watches":547,"_topics":["natural-language-processing","data-science","machine-learning","python","cython","nlp","artificial-intelligence","ai","spacy","nlp-library","neural-network","neural-networks","deep-learning","named-entity-recognition","entity-linking","text-classification","tokenization"],"_language":"Python","_homepage":"https://spacy.io","_description":"spaCy: \ud83d\udcab Industrial-strength Natural Language Processing (NLP) in Python","_organization":"explosion","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2014-07-03T00:00:00.000Z","_age_weeks":439,"_stars_per_week":56.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/spacy/master/README.md","_readme_localurl":"explosion~spacy~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/explosion/spacy/master/requirements.txt","https://raw.githubusercontent.com/explosion/spacy/master/setup.py","https://raw.githubusercontent.com/explosion/spacy/master/pyproject.toml"],"_requirements_localurls":["explosion~spacy~requirements.txt","explosion~spacy~setup.py","explosion~spacy~pyproject.toml"]},{"index":838,"category":"diffusion","githuburl":"https://github.com/automatic1111/stable-diffusion-webui","featured":null,"links":null,"description":null,"_repopath":"automatic1111/stable-diffusion-webui","_reponame":"stable-diffusion-webui","_stars":23958,"_forks":4338,"_watches":245,"_topics":[],"_language":"Python","_homepage":null,"_description":"stable-diffusion-webui: Stable Diffusion web UI","_organization":"automatic1111","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2022-08-22T00:00:00.000Z","_age_weeks":15,"_stars_per_week":1567.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/automatic1111/stable-diffusion-webui/master/README.md","_readme_localurl":"automatic1111~stable-diffusion-webui~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/automatic1111/stable-diffusion-webui/master/requirements.txt"],"_requirements_localurls":["automatic1111~stable-diffusion-webui~requirements.txt"]},{"index":501,"category":"ml","githuburl":"https://github.com/ageron/handson-ml2","featured":null,"links":null,"description":null,"_repopath":"ageron/handson-ml2","_reponame":"handson-ml2","_stars":23637,"_forks":11425,"_watches":621,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"handson-ml2: A series of Jupyter notebooks that walk you through the fundamentals of Machine Learning and Deep Learning in Python using Scikit-Learn, Keras and TensorFlow 2.","_organization":"ageron","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-08T00:00:00.000Z","_created_at":"2019-01-08T00:00:00.000Z","_age_weeks":204,"_stars_per_week":115.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ageron/handson-ml2/master/README.md","_readme_localurl":"ageron~handson-ml2~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/ageron/handson-ml2/master/requirements.txt"],"_requirements_localurls":["ageron~handson-ml2~requirements.txt"]},{"index":103,"category":"ml","githuburl":"https://github.com/dmlc/xgboost","featured":null,"links":null,"description":null,"_repopath":"dmlc/xgboost","_reponame":"xgboost","_stars":23534,"_forks":8529,"_watches":931,"_topics":["gbdt","gbrt","gbm","distributed-systems","xgboost","machine-learning"],"_language":"C++","_homepage":"https://xgboost.ai/","_description":"xgboost: Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library, for Python, R, Java, Scala, C++ and more. Runs on single machine, Hadoop, Spark, Dask, Flink and DataFlow","_organization":"dmlc","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2014-02-06T00:00:00.000Z","_age_weeks":460,"_stars_per_week":51.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dmlc/xgboost/master/README.md","_readme_localurl":"dmlc~xgboost~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":163,"category":"term","githuburl":"https://github.com/tqdm/tqdm","featured":1.0,"links":null,"description":null,"_repopath":"tqdm/tqdm","_reponame":"tqdm","_stars":23501,"_forks":1195,"_watches":207,"_topics":["progressbar","progressmeter","progress-bar","meter","rate","console","terminal","time","progress","gui","python","parallel","cli","utilities","jupyter","discord","telegram","pandas","keras","closember"],"_language":"Python","_homepage":"https://tqdm.github.io","_description":"tqdm: A Fast, Extensible Progress Bar for Python and CLI","_organization":"tqdm","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-09-03T00:00:00.000Z","_created_at":"2015-06-03T00:00:00.000Z","_age_weeks":392,"_stars_per_week":59.95,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/tqdm/tqdm/master/README.rst","_readme_localurl":"tqdm~tqdm~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tqdm/tqdm/master/setup.py","https://raw.githubusercontent.com/tqdm/tqdm/master/pyproject.toml"],"_requirements_localurls":["tqdm~tqdm~setup.py","tqdm~tqdm~pyproject.toml"]},{"index":26,"category":"term","githuburl":"https://github.com/google/python-fire","featured":null,"links":null,"description":null,"_repopath":"google/python-fire","_reponame":"python-fire","_stars":23437,"_forks":1353,"_watches":380,"_topics":["python","cli"],"_language":"Python","_homepage":"","_description":"python-fire: Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object.","_organization":"google","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2017-02-21T00:00:00.000Z","_age_weeks":302,"_stars_per_week":77.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/python-fire/master/README.md","_readme_localurl":"google~python-fire~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/python-fire/master/requirements.txt","https://raw.githubusercontent.com/google/python-fire/master/setup.py"],"_requirements_localurls":["google~python-fire~requirements.txt","google~python-fire~setup.py"]},{"index":678,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/detectron2","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/detectron2","_reponame":"detectron2","_stars":23038,"_forks":6272,"_watches":365,"_topics":[],"_language":"Python","_homepage":"https://detectron2.readthedocs.io/en/latest/","_description":"Detectron2 is a platform for object detection, segmentation and other visual recognition tasks.","_organization":"facebookresearch","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-09-05T00:00:00.000Z","_age_weeks":169,"_stars_per_week":135.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/detectron2/master/README.md","_readme_localurl":"facebookresearch~detectron2~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/detectron2/master/setup.py"],"_requirements_localurls":["facebookresearch~detectron2~setup.py"]},{"index":646,"category":"util","githuburl":"https://github.com/python-poetry/poetry","featured":null,"links":null,"description":null,"_repopath":"python-poetry/poetry","_reponame":"poetry","_stars":22845,"_forks":1849,"_watches":185,"_topics":["python","dependency-manager","package-manager","packaging","poetry"],"_language":"Python","_homepage":"https://python-poetry.org","_description":"poetry: Python packaging and dependency management made easy","_organization":"python-poetry","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2018-02-28T00:00:00.000Z","_age_weeks":249,"_stars_per_week":91.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python-poetry/poetry/master/README.md","_readme_localurl":"python-poetry~poetry~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-poetry/poetry/master/pyproject.toml"],"_requirements_localurls":["python-poetry~poetry~pyproject.toml"]},{"index":689,"category":"ml-dl","githuburl":"https://github.com/matterport/mask_rcnn","featured":null,"links":null,"description":null,"_repopath":"matterport/mask_rcnn","_reponame":"Mask_RCNN","_stars":22482,"_forks":11162,"_watches":599,"_topics":["mask-rcnn","tensorflow","object-detection","instance-segmentation","keras"],"_language":"Python","_homepage":null,"_description":"Mask_RCNN: Mask R-CNN for object detection and instance segmentation on Keras and TensorFlow","_organization":"matterport","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2019-03-31T00:00:00.000Z","_created_at":"2017-10-19T00:00:00.000Z","_age_weeks":267,"_stars_per_week":83.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/matterport/mask_rcnn/master/README.md","_readme_localurl":"matterport~mask_rcnn~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/matterport/mask_rcnn/master/requirements.txt","https://raw.githubusercontent.com/matterport/mask_rcnn/master/setup.py"],"_requirements_localurls":["matterport~mask_rcnn~requirements.txt","matterport~mask_rcnn~setup.py"]},{"index":289,"category":"ml-dl","githuburl":"https://github.com/rwightman/pytorch-image-models","featured":null,"links":null,"description":null,"_repopath":"rwightman/pytorch-image-models","_reponame":"pytorch-image-models","_stars":22389,"_forks":3729,"_watches":290,"_topics":["pytorch","imagenet-classifier","resnet","dual-path-networks","cnn-classification","pretrained-models","pretrained-weights","distributed-training","mobile-deep-learning","mobilenet-v2","mnasnet","mobilenetv3","efficientnet","augmix","randaugment","mixnet","efficientnet-training","vision-transformer-models","nfnets","normalization-free-training"],"_language":"Python","_homepage":"https://huggingface.co/docs/timm","_description":"pytorch-image-models: PyTorch image models, scripts, pretrained weights -- ResNet, ResNeXT, EfficientNet, EfficientNetV2, NFNet, Vision Transformer, MixNet, MobileNet-V3/V2, RegNet, DPN, CSPNet, and more","_organization":"rwightman","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2019-02-02T00:00:00.000Z","_age_weeks":200,"_stars_per_week":111.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rwightman/pytorch-image-models/master/README.md","_readme_localurl":"rwightman~pytorch-image-models~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rwightman/pytorch-image-models/master/requirements.txt","https://raw.githubusercontent.com/rwightman/pytorch-image-models/master/setup.py"],"_requirements_localurls":["rwightman~pytorch-image-models~requirements.txt","rwightman~pytorch-image-models~setup.py"]},{"index":550,"category":"ml","githuburl":"https://github.com/open-mmlab/mmdetection","featured":null,"links":null,"description":null,"_repopath":"open-mmlab/mmdetection","_reponame":"mmdetection","_stars":22303,"_forks":8115,"_watches":362,"_topics":["object-detection","instance-segmentation","rpn","fast-rcnn","faster-rcnn","mask-rcnn","cascade-rcnn","ssd","retinanet","pytorch"],"_language":"Python","_homepage":"https://mmdetection.readthedocs.io","_description":"mmdetection: OpenMMLab Detection Toolbox and Benchmark","_organization":"open-mmlab","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2018-08-22T00:00:00.000Z","_age_weeks":224,"_stars_per_week":99.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-mmlab/mmdetection/master/README.md","_readme_localurl":"open-mmlab~mmdetection~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/open-mmlab/mmdetection/master/requirements.txt","https://raw.githubusercontent.com/open-mmlab/mmdetection/master/setup.py"],"_requirements_localurls":["open-mmlab~mmdetection~requirements.txt","open-mmlab~mmdetection~setup.py"]},{"index":54,"category":"math","githuburl":"https://github.com/numpy/numpy","featured":1.0,"links":null,"description":null,"_repopath":"numpy/numpy","_reponame":"numpy","_stars":22137,"_forks":7583,"_watches":569,"_topics":["numpy","python","closember"],"_language":"Python","_homepage":"https://numpy.org","_description":"numpy: The fundamental package for scientific computing with Python.","_organization":"numpy","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2010-09-13T00:00:00.000Z","_age_weeks":638,"_stars_per_week":34.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/numpy/numpy/master/README.md","_readme_localurl":"numpy~numpy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/numpy/numpy/master/setup.py","https://raw.githubusercontent.com/numpy/numpy/master/pyproject.toml"],"_requirements_localurls":["numpy~numpy~setup.py","numpy~numpy~pyproject.toml"]},{"index":649,"category":"util","githuburl":"https://github.com/keon/algorithms","featured":null,"links":null,"description":null,"_repopath":"keon/algorithms","_reponame":"algorithms","_stars":21904,"_forks":4420,"_watches":642,"_topics":["algorithm","python","competitive-programming","data-structure","algorithms","sort","search","tree","graph"],"_language":"Python","_homepage":"","_description":"algorithms: Minimal examples of data structures and algorithms in Python","_organization":"keon","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-12T00:00:00.000Z","_created_at":"2016-11-17T00:00:00.000Z","_age_weeks":315,"_stars_per_week":69.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/keon/algorithms/master/README.md","_readme_localurl":"keon~algorithms~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/keon/algorithms/master/setup.py"],"_requirements_localurls":["keon~algorithms~setup.py"]},{"index":86,"category":"viz","githuburl":"https://github.com/streamlit/streamlit","featured":null,"links":null,"description":null,"_repopath":"streamlit/streamlit","_reponame":"streamlit","_stars":21706,"_forks":1948,"_watches":283,"_topics":["python","machine-learning","data-science","deep-learning","data-visualization","streamlit","data-analysis","developer-tools"],"_language":"Python","_homepage":"https://streamlit.io","_description":"Streamlit \u2014 The fastest way to build data apps in Python","_organization":"streamlit","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2019-08-24T00:00:00.000Z","_age_weeks":171,"_stars_per_week":126.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/streamlit/streamlit/master/README.md","_readme_localurl":"streamlit~streamlit~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":183,"category":"ml","githuburl":"https://github.com/google/jax","featured":null,"links":null,"description":null,"_repopath":"google/jax","_reponame":"jax","_stars":21094,"_forks":1969,"_watches":288,"_topics":["jax"],"_language":"Python","_homepage":"http://jax.readthedocs.io/","_description":"jax: Composable transformations of Python+NumPy programs: differentiate, vectorize, JIT to GPU/TPU, and more","_organization":"google","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2018-10-25T00:00:00.000Z","_age_weeks":214,"_stars_per_week":98.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/jax/master/README.md","_readme_localurl":"google~jax~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/jax/master/setup.py"],"_requirements_localurls":["google~jax~setup.py"]},{"index":90,"category":"web","githuburl":"https://github.com/tornadoweb/tornado","featured":1.0,"links":null,"description":null,"_repopath":"tornadoweb/tornado","_reponame":"tornado","_stars":20892,"_forks":5484,"_watches":1007,"_topics":["python","asynchronous"],"_language":"Python","_homepage":"http://www.tornadoweb.org/","_description":"Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.","_organization":"tornadoweb","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2009-09-09T00:00:00.000Z","_age_weeks":691,"_stars_per_week":30.23,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/tornadoweb/tornado/master/README.rst","_readme_localurl":"tornadoweb~tornado~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tornadoweb/tornado/master/setup.py","https://raw.githubusercontent.com/tornadoweb/tornado/master/pyproject.toml"],"_requirements_localurls":["tornadoweb~tornado~setup.py","tornadoweb~tornado~pyproject.toml"]},{"index":252,"category":"ml-dl","githuburl":"https://github.com/pytorchlightning/pytorch-lightning","featured":1.0,"links":null,"description":null,"_repopath":"pytorchlightning/pytorch-lightning","_reponame":"lightning","_stars":20867,"_forks":2662,"_watches":229,"_topics":["python","deep-learning","artificial-intelligence","ai","pytorch","data-science","machine-learning"],"_language":"Python","_homepage":"https://lightning.ai","_description":"lightning: Build and train PyTorch models and connect them to the ML lifecycle using Lightning App templates, without handling DIY infrastructure, cost management, scaling, and other headaches.","_organization":"pytorchlightning","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2019-03-31T00:00:00.000Z","_age_weeks":192,"_stars_per_week":108.44,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorchlightning/pytorch-lightning/master/README.md","_readme_localurl":"pytorchlightning~pytorch-lightning~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorchlightning/pytorch-lightning/master/requirements.txt","https://raw.githubusercontent.com/pytorchlightning/pytorch-lightning/master/setup.py","https://raw.githubusercontent.com/pytorchlightning/pytorch-lightning/master/pyproject.toml"],"_requirements_localurls":["pytorchlightning~pytorch-lightning~requirements.txt","pytorchlightning~pytorch-lightning~setup.py","pytorchlightning~pytorch-lightning~pyproject.toml"]},{"index":8,"category":"perf","githuburl":"https://github.com/celery/celery","featured":null,"links":null,"description":null,"_repopath":"celery/celery","_reponame":"celery","_stars":20619,"_forks":4394,"_watches":477,"_topics":["python","task-manager","task-scheduler","task-runner","queue-workers","queued-jobs","queue-tasks","amqp","redis","sqs","sqs-queue","python3","python-library","redis-queue"],"_language":"Python","_homepage":"https://docs.celeryq.dev","_description":"celery: Distributed Task Queue (development branch)","_organization":"celery","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2009-04-24T00:00:00.000Z","_age_weeks":710,"_stars_per_week":29.01,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/celery/celery/master/README.rst","_readme_localurl":"celery~celery~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/celery/celery/master/setup.py","https://raw.githubusercontent.com/celery/celery/master/pyproject.toml"],"_requirements_localurls":["celery~celery~setup.py","celery~celery~pyproject.toml"]},{"index":45,"category":"testing","githuburl":"https://github.com/locustio/locust","featured":1.0,"links":null,"description":null,"_repopath":"locustio/locust","_reponame":"locust","_stars":20265,"_forks":2592,"_watches":430,"_topics":["locust","python","load-testing","performance-testing","http","benchmarking","load-generator"],"_language":"Python","_homepage":"","_description":"locust: Scalable load testing tool written in Python","_organization":"locustio","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2011-02-17T00:00:00.000Z","_age_weeks":615,"_stars_per_week":32.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/locustio/locust/master/README.md","_readme_localurl":"locustio~locust~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/locustio/locust/master/setup.py","https://raw.githubusercontent.com/locustio/locust/master/pyproject.toml"],"_requirements_localurls":["locustio~locust~setup.py","locustio~locust~pyproject.toml"]},{"index":2,"category":"ml-dl","githuburl":"https://github.com/apache/incubator-mxnet","featured":null,"links":null,"description":null,"_repopath":"apache/incubator-mxnet","_reponame":"mxnet","_stars":20178,"_forks":6877,"_watches":1089,"_topics":["mxnet"],"_language":"C++","_homepage":"https://mxnet.apache.org","_description":"mxnet: Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler; for Python, R, Julia, Scala, Go, Javascript and more","_organization":"apache","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-09-26T00:00:00.000Z","_created_at":"2015-04-30T00:00:00.000Z","_age_weeks":396,"_stars_per_week":50.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apache/incubator-mxnet/master/README.md","_readme_localurl":"apache~incubator-mxnet~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":75,"category":"nlp","githuburl":"https://github.com/pytorch/fairseq","featured":null,"links":null,"description":null,"_repopath":"pytorch/fairseq","_reponame":"fairseq","_stars":20065,"_forks":5058,"_watches":354,"_topics":["python","pytorch","artificial-intelligence"],"_language":"Python","_homepage":null,"_description":"fairseq: Facebook AI Research Sequence-to-Sequence Toolkit written in Python.","_organization":"pytorch","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2017-08-29T00:00:00.000Z","_age_weeks":275,"_stars_per_week":72.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/fairseq/master/README.md","_readme_localurl":"pytorch~fairseq~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/fairseq/master/setup.py","https://raw.githubusercontent.com/pytorch/fairseq/master/pyproject.toml"],"_requirements_localurls":["pytorch~fairseq~setup.py","pytorch~fairseq~pyproject.toml"]},{"index":255,"category":"crypto","githuburl":"https://github.com/freqtrade/freqtrade","featured":null,"links":null,"description":null,"_repopath":"freqtrade/freqtrade","_reponame":"freqtrade","_stars":20030,"_forks":4243,"_watches":591,"_topics":["python","cryptocurrencies","trading-bot","telegram-bot","bitcoin","trade","cryptocurrency","algorithmic-trading","freqtrade"],"_language":"Python","_homepage":"https://www.freqtrade.io","_description":"freqtrade: Free, open source crypto trading bot","_organization":"freqtrade","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2017-05-17T00:00:00.000Z","_age_weeks":290,"_stars_per_week":69.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/freqtrade/freqtrade/master/README.md","_readme_localurl":"freqtrade~freqtrade~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/freqtrade/freqtrade/master/requirements.txt","https://raw.githubusercontent.com/freqtrade/freqtrade/master/setup.py","https://raw.githubusercontent.com/freqtrade/freqtrade/master/pyproject.toml"],"_requirements_localurls":["freqtrade~freqtrade~requirements.txt","freqtrade~freqtrade~setup.py","freqtrade~freqtrade~pyproject.toml"]},{"index":273,"category":"ml","githuburl":"https://github.com/google/mediapipe","featured":null,"links":null,"description":null,"_repopath":"google/mediapipe","_reponame":"mediapipe","_stars":19623,"_forks":4132,"_watches":495,"_topics":["mediapipe","c-plus-plus","computer-vision","deep-learning","android","video-processing","audio-processing","mobile-development","machine-learning","inference","graph-framework","graph-based","calculator","framework","pipeline-framework","stream-processing","perception"],"_language":"C++","_homepage":"https://mediapipe.dev","_description":"mediapipe: Cross-platform, customizable ML solutions for live and streaming media.","_organization":"google","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2019-06-13T00:00:00.000Z","_age_weeks":181,"_stars_per_week":107.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/mediapipe/master/README.md","_readme_localurl":"google~mediapipe~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/mediapipe/master/requirements.txt","https://raw.githubusercontent.com/google/mediapipe/master/setup.py"],"_requirements_localurls":["google~mediapipe~requirements.txt","google~mediapipe~setup.py"]},{"index":409,"category":"perf","githuburl":"https://github.com/google/flatbuffers","featured":null,"links":null,"description":null,"_repopath":"google/flatbuffers","_reponame":"flatbuffers","_stars":19486,"_forks":2968,"_watches":648,"_topics":["flatbuffers","serialization","serialization-library","json-parser","marshalling","rpc","zero-copy","mmap","cross-platform","c-plus-plus","java","c-sharp","go","python","rust","javascript","typescript","grpc","c","protobuf"],"_language":"C++","_homepage":"http://google.github.io/flatbuffers/","_description":"FlatBuffers: Memory Efficient Serialization Library","_organization":"google","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2014-05-19T00:00:00.000Z","_age_weeks":446,"_stars_per_week":43.66,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/google/flatbuffers/master/readme.md","_readme_localurl":"google~flatbuffers~readme.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":607,"category":"util","githuburl":"https://github.com/norvig/pytudes","featured":null,"links":null,"description":null,"_repopath":"norvig/pytudes","_reponame":"pytudes","_stars":19392,"_forks":2231,"_watches":712,"_topics":["python","python-3","programming","practice","demonstrate-skills"],"_language":"Jupyter Notebook","_homepage":"","_description":"pytudes: Python programs, usually short, of considerable difficulty, to perfect particular skills.","_organization":"norvig","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2017-03-01T00:00:00.000Z","_age_weeks":301,"_stars_per_week":64.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/norvig/pytudes/master/README.md","_readme_localurl":"norvig~pytudes~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/norvig/pytudes/master/requirements.txt"],"_requirements_localurls":["norvig~pytudes~requirements.txt"]},{"index":350,"category":"ml-dl","githuburl":"https://github.com/paddlepaddle/paddle","featured":null,"links":null,"description":null,"_repopath":"paddlepaddle/paddle","_reponame":"Paddle","_stars":19267,"_forks":4815,"_watches":733,"_topics":["paddlepaddle","deep-learning","scalability","machine-learning","neural-network","python","efficiency","distributed-training"],"_language":"C++","_homepage":"http://www.paddlepaddle.org/","_description":"Paddle: PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice \uff08\u300e\u98de\u6868\u300f\u6838\u5fc3\u6846\u67b6\uff0c\u6df1\u5ea6\u5b66\u4e60&\u673a\u5668\u5b66\u4e60\u9ad8\u6027\u80fd\u5355\u673a\u3001\u5206\u5e03\u5f0f\u8bad\u7ec3\u548c\u8de8\u5e73\u53f0\u90e8\u7f72\uff09","_organization":"paddlepaddle","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2016-08-15T00:00:00.000Z","_age_weeks":329,"_stars_per_week":58.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/paddlepaddle/paddle/master/README.md","_readme_localurl":"paddlepaddle~paddle~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":232,"category":"template","githuburl":"https://github.com/cookiecutter/cookiecutter","featured":null,"links":null,"description":null,"_repopath":"cookiecutter/cookiecutter","_reponame":"cookiecutter","_stars":18527,"_forks":1759,"_watches":237,"_topics":["python","cookiecutter"],"_language":"Python","_homepage":"https://pypi.org/project/cookiecutter/","_description":"cookiecutter: A cross-platform command-line utility that creates projects from cookiecutters (project templates), e.g. Python package projects, C projects.","_organization":"cookiecutter","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-09-09T00:00:00.000Z","_created_at":"2013-07-14T00:00:00.000Z","_age_weeks":490,"_stars_per_week":37.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cookiecutter/cookiecutter/master/README.md","_readme_localurl":"cookiecutter~cookiecutter~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cookiecutter/cookiecutter/master/setup.py","https://raw.githubusercontent.com/cookiecutter/cookiecutter/master/pyproject.toml"],"_requirements_localurls":["cookiecutter~cookiecutter~setup.py","cookiecutter~cookiecutter~pyproject.toml"]},{"index":789,"category":"study","githuburl":"https://github.com/wesm/pydata-book","featured":null,"links":null,"description":null,"_repopath":"wesm/pydata-book","_reponame":"pydata-book","_stars":18470,"_forks":13769,"_watches":1453,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"pydata-book: Materials and IPython notebooks for \"Python for Data Analysis\" by Wes McKinney, published by O'Reilly Media","_organization":"wesm","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-03T00:00:00.000Z","_created_at":"2012-06-30T00:00:00.000Z","_age_weeks":544,"_stars_per_week":33.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/wesm/pydata-book/master/README.md","_readme_localurl":"wesm~pydata-book~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/wesm/pydata-book/master/requirements.txt"],"_requirements_localurls":["wesm~pydata-book~requirements.txt"]},{"index":186,"category":"ml","githuburl":"https://github.com/harisiqbal88/plotneuralnet","featured":null,"links":null,"description":null,"_repopath":"harisiqbal88/plotneuralnet","_reponame":"PlotNeuralNet","_stars":18387,"_forks":2528,"_watches":219,"_topics":["latex","deep-neural-networks"],"_language":"TeX","_homepage":null,"_description":"PlotNeuralNet: Latex code for making neural networks diagrams","_organization":"harisiqbal88","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2020-11-06T00:00:00.000Z","_created_at":"2018-07-24T00:00:00.000Z","_age_weeks":228,"_stars_per_week":80.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/harisiqbal88/plotneuralnet/master/README.md","_readme_localurl":"harisiqbal88~plotneuralnet~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":187,"category":"ml-interpretability","githuburl":"https://github.com/slundberg/shap","featured":null,"links":null,"description":null,"_repopath":"slundberg/shap","_reponame":"shap","_stars":18096,"_forks":2722,"_watches":260,"_topics":["interpretability","machine-learning","deep-learning","gradient-boosting","shap","shapley","explainability"],"_language":"Jupyter Notebook","_homepage":"","_description":"shap: A game theoretic approach to explain the output of any machine learning model.","_organization":"slundberg","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-06-16T00:00:00.000Z","_created_at":"2016-11-22T00:00:00.000Z","_age_weeks":315,"_stars_per_week":57.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/slundberg/shap/master/README.md","_readme_localurl":"slundberg~shap~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/slundberg/shap/master/requirements.txt","https://raw.githubusercontent.com/slundberg/shap/master/setup.py","https://raw.githubusercontent.com/slundberg/shap/master/pyproject.toml"],"_requirements_localurls":["slundberg~shap~requirements.txt","slundberg~shap~setup.py","slundberg~shap~pyproject.toml"]},{"index":61,"category":"viz","githuburl":"https://github.com/plotly/dash","featured":null,"links":null,"description":null,"_repopath":"plotly/dash","_reponame":"dash","_stars":17753,"_forks":1811,"_watches":408,"_topics":["dash","plotly","data-visualization","data-science","gui-framework","flask","react","python","finance","bioinformatics","technical-computing","charting","plotly-dash","web-app","productivity","modeling","r","rstats","jupyter","julia"],"_language":"Python","_homepage":"https://plotly.com/dash","_description":"dash: Analytical Web Apps for Python, R, Julia, and Jupyter. No JavaScript Required.","_organization":"plotly","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2015-04-10T00:00:00.000Z","_age_weeks":399,"_stars_per_week":44.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/plotly/dash/master/README.md","_readme_localurl":"plotly~dash~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/plotly/dash/master/setup.py"],"_requirements_localurls":["plotly~dash~setup.py"]},{"index":6,"category":"viz","githuburl":"https://github.com/bokeh/bokeh","featured":null,"links":null,"description":null,"_repopath":"bokeh/bokeh","_reponame":"bokeh","_stars":16967,"_forks":4007,"_watches":453,"_topics":["bokeh","python","interactive-plots","javascript","visualization","plotting","plots","data-visualisation","notebooks","jupyter","visualisation","numfocus"],"_language":"Python","_homepage":"https://bokeh.org","_description":"bokeh: Interactive Data Visualization in the browser, from Python","_organization":"bokeh","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2012-03-26T00:00:00.000Z","_age_weeks":558,"_stars_per_week":30.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bokeh/bokeh/master/README.md","_readme_localurl":"bokeh~bokeh~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/bokeh/bokeh/master/setup.py","https://raw.githubusercontent.com/bokeh/bokeh/master/pyproject.toml"],"_requirements_localurls":["bokeh~bokeh~setup.py","bokeh~bokeh~pyproject.toml"]},{"index":107,"category":"sim","githuburl":"https://github.com/atsushisakai/pythonrobotics","featured":null,"links":null,"description":null,"_repopath":"atsushisakai/pythonrobotics","_reponame":"PythonRobotics","_stars":16924,"_forks":5359,"_watches":502,"_topics":["python","robotics","algorithm","path-planning","control","animation","localization","slam","cvxpy","ekf","autonomous-vehicles","autonomous-driving","mapping","autonomous-navigation","robot","hacktoberfest"],"_language":"Python","_homepage":"https://atsushisakai.github.io/PythonRobotics/","_description":"PythonRobotics: Python sample codes for robotics algorithms.","_organization":"atsushisakai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2016-03-21T00:00:00.000Z","_age_weeks":350,"_stars_per_week":48.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/atsushisakai/pythonrobotics/master/README.md","_readme_localurl":"atsushisakai~pythonrobotics~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":349,"category":"ml","githuburl":"https://github.com/jina-ai/jina","featured":null,"links":null,"description":null,"_repopath":"jina-ai/jina","_reponame":"jina","_stars":16835,"_forks":1992,"_watches":183,"_topics":["neural-search","cloud-native","deep-learning","machine-learning","framework","vector-search-engine","grpc","kubernetes","microservices","semantic-search","multimodal","crossmodal","creative-ai","aiops","mlops","pipeline","workflow","airflow","fastapi","generative-ai"],"_language":"Python","_homepage":"https://docs.jina.ai","_description":"jina: \ud83d\udd2e Build multimodal AI services via cloud native technologies \u00b7 Neural Search \u00b7 Generative AI \u00b7 Cloud Native","_organization":"jina-ai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2020-02-13T00:00:00.000Z","_age_weeks":146,"_stars_per_week":114.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jina-ai/jina/master/README.md","_readme_localurl":"jina-ai~jina~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jina-ai/jina/master/requirements.txt","https://raw.githubusercontent.com/jina-ai/jina/master/setup.py","https://raw.githubusercontent.com/jina-ai/jina/master/pyproject.toml"],"_requirements_localurls":["jina-ai~jina~requirements.txt","jina-ai~jina~setup.py","jina-ai~jina~pyproject.toml"]},{"index":763,"category":"ml-dl","githuburl":"https://github.com/xinntao/real-esrgan","featured":null,"links":null,"description":null,"_repopath":"xinntao/real-esrgan","_reponame":"Real-ESRGAN","_stars":16801,"_forks":1792,"_watches":182,"_topics":["esrgan","pytorch","real-esrgan","super-resolution","image-restoration","denoise","jpeg-compression","amine"],"_language":"Python","_homepage":"","_description":"Real-ESRGAN aims at developing Practical Algorithms for General Image/Video Restoration.","_organization":"xinntao","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-09-20T00:00:00.000Z","_created_at":"2021-07-19T00:00:00.000Z","_age_weeks":72,"_stars_per_week":232.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/xinntao/real-esrgan/master/README.md","_readme_localurl":"xinntao~real-esrgan~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/xinntao/real-esrgan/master/requirements.txt","https://raw.githubusercontent.com/xinntao/real-esrgan/master/setup.py"],"_requirements_localurls":["xinntao~real-esrgan~requirements.txt","xinntao~real-esrgan~setup.py"]},{"index":30,"category":"web","githuburl":"https://github.com/huge-success/sanic","featured":null,"links":null,"description":null,"_repopath":"huge-success/sanic","_reponame":"sanic","_stars":16668,"_forks":1481,"_watches":413,"_topics":["python","framework","asyncio","api-server","web","web-server","web-framework","asgi","sanic"],"_language":"Python","_homepage":"https://sanic.dev","_description":"sanic: Next generation Python web server/framework | Build fast. Run fast.","_organization":"huge-success","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2016-05-26T00:00:00.000Z","_age_weeks":340,"_stars_per_week":48.9,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/huge-success/sanic/master/README.rst","_readme_localurl":"huge-success~sanic~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huge-success/sanic/master/setup.py","https://raw.githubusercontent.com/huge-success/sanic/master/pyproject.toml"],"_requirements_localurls":["huge-success~sanic~setup.py","huge-success~sanic~pyproject.toml"]},{"index":48,"category":"viz","githuburl":"https://github.com/matplotlib/matplotlib","featured":null,"links":null,"description":null,"_repopath":"matplotlib/matplotlib","_reponame":"matplotlib","_stars":16508,"_forks":6629,"_watches":586,"_topics":["matplotlib","data-visualization","data-science","python","qt","wx","gtk","plotting","tk","hacktoberfest"],"_language":"Python","_homepage":"https://matplotlib.org/stable/","_description":"matplotlib: plotting with Python","_organization":"matplotlib","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2011-02-19T00:00:00.000Z","_age_weeks":615,"_stars_per_week":26.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/matplotlib/matplotlib/master/README.md","_readme_localurl":"matplotlib~matplotlib~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/matplotlib/matplotlib/master/setup.py","https://raw.githubusercontent.com/matplotlib/matplotlib/master/pyproject.toml"],"_requirements_localurls":["matplotlib~matplotlib~setup.py","matplotlib~matplotlib~pyproject.toml"]},{"index":31,"category":"data","githuburl":"https://github.com/jaidedai/easyocr","featured":null,"links":null,"description":null,"_repopath":"jaidedai/easyocr","_reponame":"EasyOCR","_stars":16464,"_forks":2375,"_watches":282,"_topics":["ocr","deep-learning","crnn","pytorch","lstm","machine-learning","scene-text","scene-text-recognition","optical-character-recognition","cnn","data-mining","image-processing","python","easyocr","information-retrieval"],"_language":"Python","_homepage":"https://www.jaided.ai","_description":"EasyOCR: Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc.","_organization":"jaidedai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-18T00:00:00.000Z","_created_at":"2020-03-14T00:00:00.000Z","_age_weeks":142,"_stars_per_week":115.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jaidedai/easyocr/master/README.md","_readme_localurl":"jaidedai~easyocr~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jaidedai/easyocr/master/requirements.txt","https://raw.githubusercontent.com/jaidedai/easyocr/master/setup.py"],"_requirements_localurls":["jaidedai~easyocr~requirements.txt","jaidedai~easyocr~setup.py"]},{"index":228,"category":"term","githuburl":"https://github.com/willmcgugan/textual","featured":null,"links":null,"description":null,"_repopath":"willmcgugan/textual","_reponame":"textual","_stars":16321,"_forks":470,"_watches":151,"_topics":["terminal","python","tui","rich","cli","framework"],"_language":"Python","_homepage":"https://textual.textualize.io/","_description":"Textual is a TUI (Text User Interface) framework for Python inspired by modern web development.","_organization":"willmcgugan","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2021-04-08T00:00:00.000Z","_age_weeks":86,"_stars_per_week":187.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/willmcgugan/textual/master/README.md","_readme_localurl":"willmcgugan~textual~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/willmcgugan/textual/master/pyproject.toml"],"_requirements_localurls":["willmcgugan~textual~pyproject.toml"]},{"index":373,"category":"ml-dl","githuburl":"https://github.com/pyg-team/pytorch_geometric","featured":null,"links":null,"description":null,"_repopath":"pyg-team/pytorch_geometric","_reponame":"pytorch_geometric","_stars":16304,"_forks":2971,"_watches":245,"_topics":["pytorch","geometric-deep-learning","graph-neural-networks","deep-learning","graph-convolutional-networks"],"_language":"Python","_homepage":"https://pytorch-geometric.readthedocs.io/","_description":"pytorch_geometric: Graph Neural Network Library for PyTorch","_organization":"pyg-team","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2017-10-06T00:00:00.000Z","_age_weeks":269,"_stars_per_week":60.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyg-team/pytorch_geometric/master/README.md","_readme_localurl":"pyg-team~pytorch_geometric~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyg-team/pytorch_geometric/master/setup.py"],"_requirements_localurls":["pyg-team~pytorch_geometric~setup.py"]},{"index":102,"category":"ml-ops","githuburl":"https://github.com/spotify/luigi","featured":null,"links":null,"description":null,"_repopath":"spotify/luigi","_reponame":"luigi","_stars":16176,"_forks":2353,"_watches":485,"_topics":["python","luigi","orchestration-framework","scheduling","hadoop"],"_language":"Python","_homepage":null,"_description":"Luigi is a Python module that helps you build complex pipelines of batch jobs. It handles dependency resolution, workflow management, visualization etc. It also comes with Hadoop support built in. ","_organization":"spotify","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2012-09-20T00:00:00.000Z","_age_weeks":532,"_stars_per_week":30.36,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/spotify/luigi/master/README.rst","_readme_localurl":"spotify~luigi~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/spotify/luigi/master/setup.py"],"_requirements_localurls":["spotify~luigi~setup.py"]},{"index":426,"category":"study","githuburl":"https://github.com/fchollet/deep-learning-with-python-notebooks","featured":null,"links":null,"description":null,"_repopath":"fchollet/deep-learning-with-python-notebooks","_reponame":"deep-learning-with-python-notebooks","_stars":16123,"_forks":7893,"_watches":647,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"deep-learning-with-python-notebooks: Jupyter notebooks for the code samples of the book \"Deep Learning with Python\"","_organization":"fchollet","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-02-10T00:00:00.000Z","_created_at":"2017-09-05T00:00:00.000Z","_age_weeks":274,"_stars_per_week":58.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fchollet/deep-learning-with-python-notebooks/master/README.md","_readme_localurl":"fchollet~deep-learning-with-python-notebooks~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":144,"category":"nlp","githuburl":"https://github.com/openai/gpt-2","featured":null,"links":null,"description":null,"_repopath":"openai/gpt-2","_reponame":"gpt-2","_stars":15784,"_forks":3983,"_watches":585,"_topics":["paper"],"_language":"Python","_homepage":"https://openai.com/blog/better-language-models/","_description":"gpt-2: Code for the paper \"Language Models are Unsupervised Multitask Learners\"","_organization":"openai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2020-12-02T00:00:00.000Z","_created_at":"2019-02-11T00:00:00.000Z","_age_weeks":199,"_stars_per_week":79.2,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/gpt-2/master/README.md","_readme_localurl":"openai~gpt-2~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/gpt-2/master/requirements.txt"],"_requirements_localurls":["openai~gpt-2~requirements.txt"]},{"index":109,"category":"data","githuburl":"https://github.com/binux/pyspider","featured":null,"links":null,"description":null,"_repopath":"binux/pyspider","_reponame":"pyspider","_stars":15669,"_forks":3662,"_watches":906,"_topics":["python","crawler"],"_language":"Python","_homepage":"http://docs.pyspider.org/","_description":"pyspider: A Powerful Spider(Web Crawler) System in Python.","_organization":"binux","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2020-08-02T00:00:00.000Z","_created_at":"2014-02-21T00:00:00.000Z","_age_weeks":458,"_stars_per_week":34.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/binux/pyspider/master/README.md","_readme_localurl":"binux~pyspider~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/binux/pyspider/master/requirements.txt","https://raw.githubusercontent.com/binux/pyspider/master/setup.py"],"_requirements_localurls":["binux~pyspider~requirements.txt","binux~pyspider~setup.py"]},{"index":873,"category":"util","githuburl":"https://github.com/ipython/ipython","featured":null,"links":null,"description":null,"_repopath":"ipython/ipython","_reponame":"ipython","_stars":15605,"_forks":4401,"_watches":775,"_topics":["ipython","jupyter","data-science","notebook","python","repl","closember","hacktoberfest"],"_language":"Python","_homepage":"https://ipython.readthedocs.org","_description":"ipython: Official repository for IPython itself. Other repos in the IPython organization contain things like the website, documentation builds, etc.","_organization":"ipython","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2010-05-10T00:00:00.000Z","_age_weeks":656,"_stars_per_week":23.78,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/ipython/ipython/master/README.rst","_readme_localurl":"ipython~ipython~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ipython/ipython/master/setup.py","https://raw.githubusercontent.com/ipython/ipython/master/pyproject.toml"],"_requirements_localurls":["ipython~ipython~setup.py","ipython~ipython~pyproject.toml"]},{"index":834,"category":"util","githuburl":"https://github.com/micropython/micropython","featured":null,"links":null,"description":null,"_repopath":"micropython/micropython","_reponame":"micropython","_stars":15566,"_forks":5981,"_watches":728,"_topics":["micropython","python","embedded","microcontroller"],"_language":"C","_homepage":"https://micropython.org","_description":"MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems","_organization":"micropython","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2013-12-20T00:00:00.000Z","_age_weeks":467,"_stars_per_week":33.28,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/micropython/micropython/master/README.md","_readme_localurl":"micropython~micropython~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":493,"category":"ml-dl","githuburl":"https://github.com/rasbt/deeplearning-models","featured":null,"links":null,"description":null,"_repopath":"rasbt/deeplearning-models","_reponame":"deeplearning-models","_stars":15461,"_forks":3826,"_watches":598,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"deeplearning-models: A collection of various deep learning architectures, models, and tips","_organization":"rasbt","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-16T00:00:00.000Z","_created_at":"2019-06-05T00:00:00.000Z","_age_weeks":183,"_stars_per_week":84.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/deeplearning-models/master/README.md","_readme_localurl":"rasbt~deeplearning-models~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":176,"category":"debug","githuburl":"https://github.com/cool-rr/pysnooper","featured":1.0,"links":null,"description":null,"_repopath":"cool-rr/pysnooper","_reponame":"PySnooper","_stars":15426,"_forks":931,"_watches":234,"_topics":["python","debug","debugger","introspection","logging"],"_language":"Python","_homepage":"","_description":"PySnooper: Never use print for debugging again","_organization":"cool-rr","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-04-02T00:00:00.000Z","_created_at":"2019-04-18T00:00:00.000Z","_age_weeks":189,"_stars_per_week":81.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cool-rr/pysnooper/master/README.md","_readme_localurl":"cool-rr~pysnooper~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/cool-rr/pysnooper/master/requirements.txt","https://raw.githubusercontent.com/cool-rr/pysnooper/master/setup.py"],"_requirements_localurls":["cool-rr~pysnooper~requirements.txt","cool-rr~pysnooper~setup.py"]},{"index":469,"category":"util","githuburl":"https://github.com/alievk/avatarify-python","featured":null,"links":null,"description":null,"_repopath":"alievk/avatarify-python","_reponame":"avatarify-python","_stars":15282,"_forks":2354,"_watches":305,"_topics":[],"_language":"Python","_homepage":"","_description":"avatarify-python: Avatars for Zoom, Skype and other video-conferencing apps.","_organization":"alievk","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-11T00:00:00.000Z","_created_at":"2020-04-06T00:00:00.000Z","_age_weeks":139,"_stars_per_week":109.72,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alievk/avatarify-python/master/README.md","_readme_localurl":"alievk~avatarify-python~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/alievk/avatarify-python/master/requirements.txt"],"_requirements_localurls":["alievk~avatarify-python~requirements.txt"]},{"index":41,"category":"util","githuburl":"https://github.com/kivy/kivy","featured":null,"links":null,"description":null,"_repopath":"kivy/kivy","_reponame":"kivy","_stars":15268,"_forks":2961,"_watches":616,"_topics":["python","ui","windows","ios","android","macos","linux","app","kivy"],"_language":"Python","_homepage":"https://kivy.org","_description":"kivy: Open source UI framework written in Python, running on Windows, Linux, macOS, Android and iOS","_organization":"kivy","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2010-11-03T00:00:00.000Z","_age_weeks":631,"_stars_per_week":24.2,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kivy/kivy/master/README.md","_readme_localurl":"kivy~kivy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/kivy/kivy/master/setup.py","https://raw.githubusercontent.com/kivy/kivy/master/pyproject.toml"],"_requirements_localurls":["kivy~kivy~setup.py","kivy~kivy~pyproject.toml"]},{"index":19,"category":"time-series","githuburl":"https://github.com/facebook/prophet","featured":1.0,"links":null,"description":null,"_repopath":"facebook/prophet","_reponame":"prophet","_stars":15239,"_forks":4336,"_watches":426,"_topics":["forecasting","r","python"],"_language":"Python","_homepage":"https://facebook.github.io/prophet","_description":"prophet: Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth.","_organization":"facebook","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-09-21T00:00:00.000Z","_created_at":"2016-11-16T00:00:00.000Z","_age_weeks":316,"_stars_per_week":48.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebook/prophet/master/README.md","_readme_localurl":"facebook~prophet~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":328,"category":"security","githuburl":"https://github.com/aquasecurity/trivy","featured":null,"links":null,"description":null,"_repopath":"aquasecurity/trivy","_reponame":"trivy","_stars":15142,"_forks":1463,"_watches":144,"_topics":["security","security-tools","docker","containers","vulnerability-scanners","vulnerability-detection","vulnerability","golang","go","kubernetes","hacktoberfest","devsecops","misconfiguration","infrastructure-as-code","iac"],"_language":"Go","_homepage":"https://trivy.dev","_description":"trivy: Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more","_organization":"aquasecurity","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2019-04-11T00:00:00.000Z","_age_weeks":190,"_stars_per_week":79.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aquasecurity/trivy/master/README.md","_readme_localurl":"aquasecurity~trivy~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":36,"category":"data","githuburl":"https://github.com/joke2k/faker","featured":null,"links":null,"description":null,"_repopath":"joke2k/faker","_reponame":"faker","_stars":15138,"_forks":1702,"_watches":222,"_topics":["python","fake","testing","dataset","fake-data","test-data","test-data-generator"],"_language":"Python","_homepage":"http://faker.rtfd.org","_description":"Faker is a Python package that generates fake data for you.","_organization":"joke2k","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2012-11-12T00:00:00.000Z","_age_weeks":525,"_stars_per_week":28.82,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/joke2k/faker/master/README.rst","_readme_localurl":"joke2k~faker~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/joke2k/faker/master/setup.py"],"_requirements_localurls":["joke2k~faker~setup.py"]},{"index":604,"category":"web","githuburl":"https://github.com/pyscript/pyscript","featured":null,"links":null,"description":null,"_repopath":"pyscript/pyscript","_reponame":"pyscript","_stars":15047,"_forks":1104,"_watches":179,"_topics":["python","html","javascript"],"_language":"Python","_homepage":"https://community.anaconda.cloud/c/tech-topics/pyscript","_description":"pyscript: Home Page: https://pyscript.net Examples: https://pyscript.net/examples","_organization":"pyscript","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2022-02-21T00:00:00.000Z","_age_weeks":41,"_stars_per_week":364.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyscript/pyscript/master/README.md","_readme_localurl":"pyscript~pyscript~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":137,"category":"nlp","githuburl":"https://github.com/huggingface/datasets","featured":null,"links":null,"description":null,"_repopath":"huggingface/datasets","_reponame":"datasets","_stars":14856,"_forks":1932,"_watches":256,"_topics":["nlp","datasets","metrics","evaluation","pytorch","tensorflow","pandas","numpy","natural-language-processing","computer-vision","machine-learning","deep-learning","speech","hacktoberfest"],"_language":"Python","_homepage":"https://huggingface.co/docs/datasets","_description":"datasets: \ud83e\udd17 The largest hub of ready-to-use datasets for ML models with fast, easy-to-use and efficient data manipulation tools","_organization":"huggingface","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2020-03-26T00:00:00.000Z","_age_weeks":140,"_stars_per_week":105.47,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/datasets/master/README.md","_readme_localurl":"huggingface~datasets~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/datasets/master/setup.py","https://raw.githubusercontent.com/huggingface/datasets/master/pyproject.toml"],"_requirements_localurls":["huggingface~datasets~setup.py","huggingface~datasets~pyproject.toml"]},{"index":74,"category":"typing","githuburl":"https://github.com/python/mypy","featured":null,"links":null,"description":null,"_repopath":"python/mypy","_reponame":"mypy","_stars":14283,"_forks":2374,"_watches":223,"_topics":["python","types","typing","typechecker","linter"],"_language":"Python","_homepage":"http://www.mypy-lang.org/","_description":"mypy: Optional static typing for Python","_organization":"python","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2012-12-07T00:00:00.000Z","_age_weeks":521,"_stars_per_week":27.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python/mypy/master/README.md","_readme_localurl":"python~mypy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python/mypy/master/setup.py","https://raw.githubusercontent.com/python/mypy/master/pyproject.toml"],"_requirements_localurls":["python~mypy~setup.py","python~mypy~pyproject.toml"]},{"index":148,"category":"data","githuburl":"https://github.com/twintproject/twint","featured":null,"links":null,"description":null,"_repopath":"twintproject/twint","_reponame":"twint","_stars":14151,"_forks":2429,"_watches":310,"_topics":["osint","twitter","python","scrape","tweets","elasticsearch","kibana","scrape-followers","scrape-likes","scrape-following","twint","tweep"],"_language":"Python","_homepage":"","_description":"twint: An advanced Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API, allowing you to scrape a user's followers, following, Tweets and more while evading most API limitations.","_organization":"twintproject","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2021-03-02T00:00:00.000Z","_created_at":"2017-06-10T00:00:00.000Z","_age_weeks":286,"_stars_per_week":49.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/twintproject/twint/master/README.md","_readme_localurl":"twintproject~twint~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/twintproject/twint/master/requirements.txt","https://raw.githubusercontent.com/twintproject/twint/master/setup.py"],"_requirements_localurls":["twintproject~twint~requirements.txt","twintproject~twint~setup.py"]},{"index":104,"category":"nlp","githuburl":"https://github.com/rare-technologies/gensim","featured":null,"links":null,"description":null,"_repopath":"rare-technologies/gensim","_reponame":"gensim","_stars":13764,"_forks":4294,"_watches":432,"_topics":["gensim","topic-modeling","information-retrieval","machine-learning","natural-language-processing","nlp","data-science","python","data-mining","word2vec","word-embeddings","neural-network","document-similarity","word-similarity","fasttext"],"_language":"Python","_homepage":"https://radimrehurek.com/gensim","_description":"gensim: Topic Modelling for Humans","_organization":"rare-technologies","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2011-02-10T00:00:00.000Z","_age_weeks":616,"_stars_per_week":22.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rare-technologies/gensim/master/README.md","_readme_localurl":"rare-technologies~gensim~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rare-technologies/gensim/master/setup.py"],"_requirements_localurls":["rare-technologies~gensim~setup.py"]},{"index":124,"category":"ml","githuburl":"https://github.com/onnx/onnx","featured":null,"links":null,"description":null,"_repopath":"onnx/onnx","_reponame":"onnx","_stars":13753,"_forks":3199,"_watches":430,"_topics":["deep-learning","deep-neural-networks","neural-network","onnx","pytorch","mxnet","tensorflow","keras","scikit-learn","ml","machine-learning","dnn"],"_language":"Python","_homepage":"https://onnx.ai/","_description":"onnx: Open standard for machine learning interoperability","_organization":"onnx","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2017-09-07T00:00:00.000Z","_age_weeks":273,"_stars_per_week":50.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/onnx/onnx/master/README.md","_readme_localurl":"onnx~onnx~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/onnx/onnx/master/requirements.txt","https://raw.githubusercontent.com/onnx/onnx/master/setup.py","https://raw.githubusercontent.com/onnx/onnx/master/pyproject.toml"],"_requirements_localurls":["onnx~onnx~requirements.txt","onnx~onnx~setup.py","onnx~onnx~pyproject.toml"]},{"index":332,"category":"sim","githuburl":"https://github.com/unity-technologies/ml-agents","featured":null,"links":null,"description":null,"_repopath":"unity-technologies/ml-agents","_reponame":"ml-agents","_stars":13737,"_forks":3625,"_watches":539,"_topics":["reinforcement-learning","unity3d","deep-learning","unity","deep-reinforcement-learning","neural-networks","machine-learning"],"_language":"C#","_homepage":"https://unity.com/products/machine-learning-agents","_description":"ml-agents: The Unity Machine Learning Agents Toolkit (ML-Agents) is an open-source project that enables games and simulations to serve as environments for training intelligent agents using deep reinforcement learning and imitation learning.","_organization":"unity-technologies","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2017-09-08T00:00:00.000Z","_age_weeks":273,"_stars_per_week":50.19,"_readme_filename":"","_readme_giturl":"","_readme_localurl":"","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":175,"category":"util","githuburl":"https://github.com/delgan/loguru","featured":1.0,"links":null,"description":null,"_repopath":"delgan/loguru","_reponame":"loguru","_stars":13525,"_forks":569,"_watches":119,"_topics":["python","logging","logger","log"],"_language":"Python","_homepage":"","_description":"loguru: Python logging made (stupidly) simple","_organization":"delgan","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2017-08-15T00:00:00.000Z","_age_weeks":277,"_stars_per_week":48.8,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/delgan/loguru/master/README.rst","_readme_localurl":"delgan~loguru~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/delgan/loguru/master/setup.py"],"_requirements_localurls":["delgan~loguru~setup.py"]},{"index":674,"category":"ml-dl","githuburl":"https://github.com/borisdayma/dalle-mini","featured":null,"links":null,"description":null,"_repopath":"borisdayma/dalle-mini","_reponame":"dalle-mini","_stars":13392,"_forks":1006,"_watches":105,"_topics":[],"_language":"Python","_homepage":"https://www.craiyon.com","_description":"dalle-mini: DALL\u00b7E Mini - Generate images from a text prompt","_organization":"borisdayma","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-09T00:00:00.000Z","_created_at":"2021-07-03T00:00:00.000Z","_age_weeks":74,"_stars_per_week":179.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/borisdayma/dalle-mini/master/README.md","_readme_localurl":"borisdayma~dalle-mini~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/borisdayma/dalle-mini/master/setup.py","https://raw.githubusercontent.com/borisdayma/dalle-mini/master/pyproject.toml"],"_requirements_localurls":["borisdayma~dalle-mini~setup.py","borisdayma~dalle-mini~pyproject.toml"]},{"index":56,"category":"term","githuburl":"https://github.com/pallets/click","featured":null,"links":null,"description":null,"_repopath":"pallets/click","_reponame":"click","_stars":13247,"_forks":1298,"_watches":181,"_topics":["python","cli","click","pallets"],"_language":"Python","_homepage":"https://click.palletsprojects.com","_description":"click: Python composable command line interface toolkit","_organization":"pallets","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-01T00:00:00.000Z","_created_at":"2014-04-24T00:00:00.000Z","_age_weeks":449,"_stars_per_week":29.45,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/click/master/README.rst","_readme_localurl":"pallets~click~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/click/master/setup.py"],"_requirements_localurls":["pallets~click~setup.py"]},{"index":544,"category":"ml","githuburl":"https://github.com/aleju/imgaug","featured":null,"links":null,"description":null,"_repopath":"aleju/imgaug","_reponame":"imgaug","_stars":13162,"_forks":2334,"_watches":228,"_topics":["image-augmentation","machine-learning","augmentation","deep-learning","images","affine-transformation","polygon","heatmap","segmentation-maps","keypoints","bounding-boxes","augment-images","crop","contrast"],"_language":"Python","_homepage":"http://imgaug.readthedocs.io","_description":"imgaug: Image augmentation for machine learning experiments.","_organization":"aleju","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2020-06-01T00:00:00.000Z","_created_at":"2015-07-10T00:00:00.000Z","_age_weeks":386,"_stars_per_week":34.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aleju/imgaug/master/README.md","_readme_localurl":"aleju~imgaug~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aleju/imgaug/master/requirements.txt","https://raw.githubusercontent.com/aleju/imgaug/master/setup.py"],"_requirements_localurls":["aleju~imgaug~requirements.txt","aleju~imgaug~setup.py"]},{"index":119,"category":"ml-ops","githuburl":"https://github.com/mlflow/mlflow","featured":null,"links":null,"description":null,"_repopath":"mlflow/mlflow","_reponame":"mlflow","_stars":13162,"_forks":3070,"_watches":286,"_topics":["machine-learning","ai","ml","mlflow","apache-spark","model-management"],"_language":"Python","_homepage":"https://mlflow.org","_description":"mlflow: Open source platform for the machine learning lifecycle","_organization":"mlflow","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2018-06-05T00:00:00.000Z","_age_weeks":235,"_stars_per_week":55.97,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mlflow/mlflow/master/README.rst","_readme_localurl":"mlflow~mlflow~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mlflow/mlflow/master/setup.py","https://raw.githubusercontent.com/mlflow/mlflow/master/pyproject.toml"],"_requirements_localurls":["mlflow~mlflow~setup.py","mlflow~mlflow~pyproject.toml"]},{"index":408,"category":"web","githuburl":"https://github.com/aio-libs/aiohttp","featured":null,"links":null,"description":null,"_repopath":"aio-libs/aiohttp","_reponame":"aiohttp","_stars":13079,"_forks":1833,"_watches":228,"_topics":["aiohttp","asyncio","python","http","http-server","http-client","async","hacktoberfest"],"_language":"Python","_homepage":"https://docs.aiohttp.org","_description":"aiohttp: Asynchronous HTTP client/server framework for asyncio and Python","_organization":"aio-libs","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2013-10-01T00:00:00.000Z","_age_weeks":479,"_stars_per_week":27.3,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/aio-libs/aiohttp/master/README.rst","_readme_localurl":"aio-libs~aiohttp~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/aio-libs/aiohttp/master/setup.py","https://raw.githubusercontent.com/aio-libs/aiohttp/master/pyproject.toml"],"_requirements_localurls":["aio-libs~aiohttp~setup.py","aio-libs~aiohttp~pyproject.toml"]},{"index":554,"category":"ml-ops","githuburl":"https://github.com/horovod/horovod","featured":null,"links":null,"description":null,"_repopath":"horovod/horovod","_reponame":"horovod","_stars":12875,"_forks":2143,"_watches":331,"_topics":["tensorflow","uber","machine-learning","machinelearning","mpi","baidu","deep-learning","deeplearning","keras","pytorch","mxnet","spark","ray"],"_language":"Python","_homepage":"http://horovod.ai","_description":"horovod: Distributed training framework for TensorFlow, Keras, PyTorch, and Apache MXNet.","_organization":"horovod","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2017-08-09T00:00:00.000Z","_age_weeks":278,"_stars_per_week":46.31,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/horovod/horovod/master/README.rst","_readme_localurl":"horovod~horovod~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/horovod/horovod/master/setup.py"],"_requirements_localurls":["horovod~horovod~setup.py"]},{"index":507,"category":"ml","githuburl":"https://github.com/tensorflow/tensor2tensor","featured":null,"links":null,"description":null,"_repopath":"tensorflow/tensor2tensor","_reponame":"tensor2tensor","_stars":12814,"_forks":3145,"_watches":457,"_topics":["machine-learning","machine-translation","deep-learning","reinforcement-learning","tpu"],"_language":"Python","_homepage":"","_description":"tensor2tensor: Library of deep learning models and datasets designed to make deep learning more accessible and accelerate ML research.","_organization":"tensorflow","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-24T00:00:00.000Z","_created_at":"2017-06-15T00:00:00.000Z","_age_weeks":285,"_stars_per_week":44.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/tensor2tensor/master/README.md","_readme_localurl":"tensorflow~tensor2tensor~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorflow/tensor2tensor/master/setup.py"],"_requirements_localurls":["tensorflow~tensor2tensor~setup.py"]},{"index":812,"category":"nlp","githuburl":"https://github.com/gunthercox/chatterbot","featured":null,"links":null,"description":null,"_repopath":"gunthercox/chatterbot","_reponame":"ChatterBot","_stars":12704,"_forks":4181,"_watches":553,"_topics":["chatterbot","machine-learning","chatbot","python","conversation","language","bot"],"_language":"Python","_homepage":"https://chatterbot.readthedocs.io","_description":"ChatterBot is a machine learning, conversational dialog engine for creating chat bots","_organization":"gunthercox","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2021-06-01T00:00:00.000Z","_created_at":"2014-09-28T00:00:00.000Z","_age_weeks":427,"_stars_per_week":29.72,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gunthercox/chatterbot/master/README.md","_readme_localurl":"gunthercox~chatterbot~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gunthercox/chatterbot/master/requirements.txt","https://raw.githubusercontent.com/gunthercox/chatterbot/master/setup.py"],"_requirements_localurls":["gunthercox~chatterbot~requirements.txt","gunthercox~chatterbot~setup.py"]},{"index":62,"category":"viz","githuburl":"https://github.com/plotly/plotly.py","featured":null,"links":null,"description":null,"_repopath":"plotly/plotly.py","_reponame":"plotly.py","_stars":12566,"_forks":2248,"_watches":274,"_topics":["python","d3","plotly","plotlyjs","webgl","dashboard","visualization","graph-library","plotly-dash","jupyter-notebook","sparkles","regl","declarative","interactive"],"_language":"Python","_homepage":"https://plotly.com/python/","_description":"plotly.py: The interactive graphing library for Python (includes Plotly Express) :sparkles:","_organization":"plotly","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-27T00:00:00.000Z","_created_at":"2013-11-21T00:00:00.000Z","_age_weeks":471,"_stars_per_week":26.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/plotly/plotly.py/master/README.md","_readme_localurl":"plotly~plotly.py~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/plotly/plotly.py/master/setup.py","https://raw.githubusercontent.com/plotly/plotly.py/master/pyproject.toml"],"_requirements_localurls":["plotly~plotly.py~setup.py","plotly~plotly.py~pyproject.toml"]},{"index":39,"category":"jupyter","githuburl":"https://github.com/jupyterlab/jupyterlab","featured":null,"links":null,"description":null,"_repopath":"jupyterlab/jupyterlab","_reponame":"jupyterlab","_stars":12496,"_forks":2506,"_watches":312,"_topics":["jupyterlab","jupyter"],"_language":"TypeScript","_homepage":"https://jupyterlab.readthedocs.io/","_description":"JupyterLab computational environment.","_organization":"jupyterlab","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2016-06-03T00:00:00.000Z","_age_weeks":339,"_stars_per_week":36.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyterlab/jupyterlab/master/README.md","_readme_localurl":"jupyterlab~jupyterlab~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyterlab/jupyterlab/master/setup.py","https://raw.githubusercontent.com/jupyterlab/jupyterlab/master/pyproject.toml"],"_requirements_localurls":["jupyterlab~jupyterlab~setup.py","jupyterlab~jupyterlab~pyproject.toml"]},{"index":127,"category":"ml","githuburl":"https://github.com/microsoft/nni","featured":null,"links":null,"description":null,"_repopath":"microsoft/nni","_reponame":"nni","_stars":12291,"_forks":1725,"_watches":281,"_topics":["automl","deep-learning","neural-architecture-search","hyperparameter-optimization","distributed","bayesian-optimization","automated-machine-learning","machine-learning","machine-learning-algorithms","data-science","tensorflow","pytorch","neural-network","deep-neural-network","model-compression","feature-engineering","nas","python","hyperparameter-tuning","mlops"],"_language":"Python","_homepage":"https://nni.readthedocs.io","_description":"nni: An open source AutoML toolkit for automate machine learning lifecycle, including feature engineering, neural architecture search, model compression and hyper-parameter tuning.","_organization":"microsoft","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2018-06-01T00:00:00.000Z","_age_weeks":235,"_stars_per_week":52.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/nni/master/README.md","_readme_localurl":"microsoft~nni~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/nni/master/setup.py"],"_requirements_localurls":["microsoft~nni~setup.py"]},{"index":152,"category":"nlp","githuburl":"https://github.com/flairnlp/flair","featured":null,"links":null,"description":null,"_repopath":"flairnlp/flair","_reponame":"flair","_stars":12280,"_forks":1972,"_watches":204,"_topics":["pytorch","nlp","named-entity-recognition","sequence-labeling","semantic-role-labeling","word-embeddings","natural-language-processing","machine-learning"],"_language":"Python","_homepage":"","_description":"flair: A very simple framework for state-of-the-art Natural Language Processing (NLP)","_organization":"flairnlp","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2018-06-11T00:00:00.000Z","_age_weeks":234,"_stars_per_week":52.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/flairnlp/flair/master/README.md","_readme_localurl":"flairnlp~flair~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/flairnlp/flair/master/requirements.txt","https://raw.githubusercontent.com/flairnlp/flair/master/setup.py","https://raw.githubusercontent.com/flairnlp/flair/master/pyproject.toml","https://raw.githubusercontent.com/flairnlp/flair/master/Pipfile"],"_requirements_localurls":["flairnlp~flair~requirements.txt","flairnlp~flair~setup.py","flairnlp~flair~pyproject.toml","flairnlp~flair~Pipfile"]},{"index":575,"category":"perf","githuburl":"https://github.com/pybind/pybind11","featured":null,"links":null,"description":null,"_repopath":"pybind/pybind11","_reponame":"pybind11","_stars":11937,"_forks":1727,"_watches":247,"_topics":["python","bindings"],"_language":"C++","_homepage":"https://pybind11.readthedocs.io/","_description":"pybind11: Seamless operability between C++11 and Python","_organization":"pybind","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2015-07-05T00:00:00.000Z","_age_weeks":387,"_stars_per_week":30.81,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pybind/pybind11/master/README.rst","_readme_localurl":"pybind~pybind11~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pybind/pybind11/master/setup.py","https://raw.githubusercontent.com/pybind/pybind11/master/pyproject.toml"],"_requirements_localurls":["pybind~pybind11~setup.py","pybind~pybind11~pyproject.toml"]},{"index":281,"category":"util","githuburl":"https://github.com/squidfunk/mkdocs-material","featured":null,"links":null,"description":null,"_repopath":"squidfunk/mkdocs-material","_reponame":"mkdocs-material","_stars":11935,"_forks":2641,"_watches":112,"_topics":["mkdocs","theme","documentation","material-design","template","static"],"_language":"TypeScript","_homepage":"https://squidfunk.github.io/mkdocs-material/","_description":"mkdocs-material: Documentation that simply works","_organization":"squidfunk","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2016-01-28T00:00:00.000Z","_age_weeks":357,"_stars_per_week":33.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/README.md","_readme_localurl":"squidfunk~mkdocs-material~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/requirements.txt","https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/setup.py","https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/pyproject.toml"],"_requirements_localurls":["squidfunk~mkdocs-material~requirements.txt","squidfunk~mkdocs-material~setup.py","squidfunk~mkdocs-material~pyproject.toml"]},{"index":52,"category":"graph","githuburl":"https://github.com/networkx/networkx","featured":null,"links":null,"description":null,"_repopath":"networkx/networkx","_reponame":"networkx","_stars":11918,"_forks":2797,"_watches":276,"_topics":["python","complex-networks","graph-theory","graph-algorithms","graph-analysis","graph-generation","graph-visualization"],"_language":"Python","_homepage":"https://networkx.org","_description":"networkx: Network Analysis in Python","_organization":"networkx","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2010-09-06T00:00:00.000Z","_age_weeks":639,"_stars_per_week":18.64,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/networkx/networkx/master/README.rst","_readme_localurl":"networkx~networkx~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/networkx/networkx/master/setup.py"],"_requirements_localurls":["networkx~networkx~setup.py"]},{"index":314,"category":"util","githuburl":"https://github.com/samuelcolvin/pydantic","featured":null,"links":null,"description":null,"_repopath":"samuelcolvin/pydantic","_reponame":"pydantic","_stars":11851,"_forks":1103,"_watches":89,"_topics":["validation","parsing","json-schema","python37","python38","pydantic","python39","python","hints","python310","python311"],"_language":"Python","_homepage":"https://docs.pydantic.dev","_description":"pydantic: Data parsing and validation using Python type hints","_organization":"samuelcolvin","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2017-05-03T00:00:00.000Z","_age_weeks":292,"_stars_per_week":40.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/samuelcolvin/pydantic/master/README.md","_readme_localurl":"samuelcolvin~pydantic~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/samuelcolvin/pydantic/master/setup.py","https://raw.githubusercontent.com/samuelcolvin/pydantic/master/pyproject.toml"],"_requirements_localurls":["samuelcolvin~pydantic~setup.py","samuelcolvin~pydantic~pyproject.toml"]},{"index":114,"category":"nlp","githuburl":"https://github.com/allenai/allennlp","featured":null,"links":null,"description":null,"_repopath":"allenai/allennlp","_reponame":"allennlp","_stars":11320,"_forks":2230,"_watches":280,"_topics":["pytorch","nlp","natural-language-processing","deep-learning","data-science","python"],"_language":"Python","_homepage":"http://www.allennlp.org","_description":"allennlp: An open-source NLP research library, built on PyTorch.","_organization":"allenai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-22T00:00:00.000Z","_created_at":"2017-05-15T00:00:00.000Z","_age_weeks":290,"_stars_per_week":39.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/allenai/allennlp/master/README.md","_readme_localurl":"allenai~allennlp~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/allenai/allennlp/master/setup.py","https://raw.githubusercontent.com/allenai/allennlp/master/pyproject.toml"],"_requirements_localurls":["allenai~allennlp~setup.py","allenai~allennlp~pyproject.toml"]},{"index":105,"category":"nlp","githuburl":"https://github.com/nltk/nltk","featured":null,"links":null,"description":null,"_repopath":"nltk/nltk","_reponame":"nltk","_stars":11291,"_forks":2665,"_watches":469,"_topics":["nltk","python","nlp","natural-language-processing","machine-learning"],"_language":"Python","_homepage":"https://www.nltk.org","_description":"NLTK Source","_organization":"nltk","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2009-09-07T00:00:00.000Z","_age_weeks":691,"_stars_per_week":16.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nltk/nltk/master/README.md","_readme_localurl":"nltk~nltk~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nltk/nltk/master/setup.py"],"_requirements_localurls":["nltk~nltk~setup.py"]},{"index":425,"category":"ml-dl","githuburl":"https://github.com/albumentations-team/albumentations","featured":null,"links":null,"description":null,"_repopath":"albumentations-team/albumentations","_reponame":"albumentations","_stars":11273,"_forks":1442,"_watches":124,"_topics":["image-augmentation","machine-learning","augmentation","deep-learning","detection","fast-augmentations","segmentation","image-segmentation","image-processing","image-classification","python","object-detection"],"_language":"Python","_homepage":"https://albumentations.ai","_description":"albumentations: Fast image augmentation library and an easy-to-use wrapper around other libraries. Documentation: https://albumentations.ai/docs/ Paper about the library: https://www.mdpi.com/2078-2489/11/2/125","_organization":"albumentations-team","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2018-06-06T00:00:00.000Z","_age_weeks":235,"_stars_per_week":47.97,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/albumentations-team/albumentations/master/README.md","_readme_localurl":"albumentations-team~albumentations~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/albumentations-team/albumentations/master/setup.py"],"_requirements_localurls":["albumentations-team~albumentations~setup.py"]},{"index":242,"category":"ml","githuburl":"https://github.com/deepmind/deepmind-research","featured":null,"links":null,"description":null,"_repopath":"deepmind/deepmind-research","_reponame":"deepmind-research","_stars":11153,"_forks":2291,"_watches":322,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"deepmind-research: This repository contains implementations and illustrative code to accompany DeepMind publications","_organization":"deepmind","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-24T00:00:00.000Z","_created_at":"2019-01-15T00:00:00.000Z","_age_weeks":203,"_stars_per_week":54.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/deepmind/deepmind-research/master/README.md","_readme_localurl":"deepmind~deepmind-research~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":346,"category":"viz","githuburl":"https://github.com/gradio-app/gradio","featured":null,"links":null,"description":null,"_repopath":"gradio-app/gradio","_reponame":"gradio","_stars":11064,"_forks":697,"_watches":87,"_topics":["machine-learning","models","ui","ui-components","interface","python","data-science","data-visualization","deep-learning","data-analysis","gradio","gradio-interface","python-notebook","deploy"],"_language":"HTML","_homepage":"http://www.gradio.app","_description":"gradio: Create UIs for your machine learning model in Python in 3 minutes","_organization":"gradio-app","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2018-12-19T00:00:00.000Z","_age_weeks":207,"_stars_per_week":53.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gradio-app/gradio/master/README.md","_readme_localurl":"gradio-app~gradio~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gradio-app/gradio/master/setup.py"],"_requirements_localurls":["gradio-app~gradio~setup.py"]},{"index":320,"category":"gui","githuburl":"https://github.com/pysimplegui/pysimplegui","featured":1.0,"links":null,"description":null,"_repopath":"pysimplegui/pysimplegui","_reponame":"PySimpleGUI","_stars":10910,"_forks":1623,"_watches":219,"_topics":["pysimplegui","gui-framework","python","tkinter","tkinter-python","tkinter-gui","wxpython","pyside2","qt","qt-gui","remi","gui","gui-window","gui-programming","datavisualization","games","beginner-friendly","systemtray","python-gui","user-interface"],"_language":"Python","_homepage":"","_description":"PySimpleGUI: Launched in 2018. It's 2022 and PySimpleGUI is actively developed & supported. Create complex windows simply. Supports tkinter, Qt, WxPython, Remi (in browser). Create GUI applications trivially with a full set of widgets. Multi-Window applications are also simple. 3.4 to 3.11 supported. 325+ Demo programs & Cookbook for rapid start. Extensive documentation. Examples for Machine Learning(OpenCV Integration, Chatterbot), Rainmeter-like Desktop Widgets, Matplotlib + Pyplot integration, add GUI to command line scripts, PDF & Image Viewer. For both beginning and advanced programmers. docs - PySimpleGUI.org GitHub - PySimpleGUI.com. The Minecraft of GUIs - simple to complex... does them all.","_organization":"pysimplegui","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2018-07-11T00:00:00.000Z","_age_weeks":230,"_stars_per_week":47.43,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/pysimplegui/pysimplegui/master/readme.md","_readme_localurl":"pysimplegui~pysimplegui~readme.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pysimplegui/pysimplegui/master/setup.py"],"_requirements_localurls":["pysimplegui~pysimplegui~setup.py"]},{"index":190,"category":"ml-dl","githuburl":"https://github.com/dmlc/dgl","featured":null,"links":null,"description":null,"_repopath":"dmlc/dgl","_reponame":"dgl","_stars":10816,"_forks":2633,"_watches":175,"_topics":["deep-learning","graph-neural-networks"],"_language":"Python","_homepage":"http://dgl.ai","_description":"dgl: Python package built to ease deep learning on graph, on top of existing DL frameworks.","_organization":"dmlc","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2018-04-20T00:00:00.000Z","_age_weeks":241,"_stars_per_week":44.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dmlc/dgl/master/README.md","_readme_localurl":"dmlc~dgl~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dmlc/dgl/master/pyproject.toml"],"_requirements_localurls":["dmlc~dgl~pyproject.toml"]},{"index":1,"category":"data","githuburl":"https://github.com/apache/arrow","featured":null,"links":null,"description":null,"_repopath":"apache/arrow","_reponame":"arrow","_stars":10747,"_forks":2638,"_watches":345,"_topics":["arrow"],"_language":"C++","_homepage":"https://arrow.apache.org/","_description":"arrow: Apache Arrow is a multi-language toolbox for accelerated data interchange and in-memory processing","_organization":"apache","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2016-02-17T00:00:00.000Z","_age_weeks":355,"_stars_per_week":30.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apache/arrow/master/README.md","_readme_localurl":"apache~arrow~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":122,"category":"data","githuburl":"https://github.com/iterative/dvc","featured":null,"links":null,"description":null,"_repopath":"iterative/dvc","_reponame":"dvc","_stars":10746,"_forks":1006,"_watches":136,"_topics":["data-science","machine-learning","reproducibility","data-version-control","git","developer-tools","collaboration","ai","python","hacktoberfest"],"_language":"Python","_homepage":"https://dvc.org","_description":"dvc: \ud83e\udd89Data Version Control | Git for Data & Models | ML Experiments Management","_organization":"iterative","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2017-03-04T00:00:00.000Z","_age_weeks":300,"_stars_per_week":35.75,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/iterative/dvc/master/README.rst","_readme_localurl":"iterative~dvc~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/iterative/dvc/master/setup.py","https://raw.githubusercontent.com/iterative/dvc/master/pyproject.toml"],"_requirements_localurls":["iterative~dvc~setup.py","iterative~dvc~pyproject.toml"]},{"index":120,"category":"ml-ops","githuburl":"https://github.com/prefecthq/prefect","featured":null,"links":null,"description":null,"_repopath":"prefecthq/prefect","_reponame":"prefect","_stars":10618,"_forks":1069,"_watches":153,"_topics":["python","workflow","data-engineering","data-science","workflow-engine","prefect","infrastructure","ml-ops","data-ops","automation","orchestration","orion","data","observability","pipeline"],"_language":"Python","_homepage":"https://prefect.io","_description":"prefect: The easiest way to coordinate your dataflow","_organization":"prefecthq","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2018-06-29T00:00:00.000Z","_age_weeks":231,"_stars_per_week":45.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/prefecthq/prefect/master/README.md","_readme_localurl":"prefecthq~prefect~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/prefecthq/prefect/master/requirements.txt","https://raw.githubusercontent.com/prefecthq/prefect/master/setup.py","https://raw.githubusercontent.com/prefecthq/prefect/master/pyproject.toml"],"_requirements_localurls":["prefecthq~prefect~requirements.txt","prefecthq~prefect~setup.py","prefecthq~prefect~pyproject.toml"]},{"index":79,"category":"ml","githuburl":"https://github.com/scipy/scipy","featured":null,"links":null,"description":null,"_repopath":"scipy/scipy","_reponame":"scipy","_stars":10560,"_forks":4498,"_watches":339,"_topics":["python","scipy","algorithms","closember","scientific-computing"],"_language":"Python","_homepage":"https://scipy.org","_description":"SciPy library main repository","_organization":"scipy","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2011-03-09T00:00:00.000Z","_age_weeks":613,"_stars_per_week":17.23,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/scipy/scipy/master/README.rst","_readme_localurl":"scipy~scipy~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scipy/scipy/master/setup.py","https://raw.githubusercontent.com/scipy/scipy/master/pyproject.toml"],"_requirements_localurls":["scipy~scipy~setup.py","scipy~scipy~pyproject.toml"]},{"index":218,"category":"ml","githuburl":"https://github.com/spotify/annoy","featured":null,"links":null,"description":null,"_repopath":"spotify/annoy","_reponame":"annoy","_stars":10540,"_forks":1062,"_watches":325,"_topics":["c-plus-plus","python","nearest-neighbor-search","locality-sensitive-hashing","approximate-nearest-neighbor-search","golang","lua"],"_language":"C++","_homepage":null,"_description":"annoy: Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk","_organization":"spotify","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-27T00:00:00.000Z","_created_at":"2013-04-01T00:00:00.000Z","_age_weeks":505,"_stars_per_week":20.86,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/spotify/annoy/master/README.rst","_readme_localurl":"spotify~annoy~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/spotify/annoy/master/setup.py"],"_requirements_localurls":["spotify~annoy~setup.py"]},{"index":11,"category":"perf","githuburl":"https://github.com/dask/dask","featured":null,"links":null,"description":null,"_repopath":"dask/dask","_reponame":"dask","_stars":10538,"_forks":1567,"_watches":217,"_topics":["dask","python","pydata","numpy","pandas","scikit-learn","scipy"],"_language":"Python","_homepage":"https://dask.org","_description":"dask: Parallel computing with task scheduling","_organization":"dask","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2015-01-04T00:00:00.000Z","_age_weeks":413,"_stars_per_week":25.49,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dask/dask/master/README.rst","_readme_localurl":"dask~dask~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dask/dask/master/setup.py"],"_requirements_localurls":["dask~dask~setup.py"]},{"index":192,"category":"template","githuburl":"https://github.com/tiangolo/full-stack-fastapi-postgresql","featured":null,"links":null,"description":null,"_repopath":"tiangolo/full-stack-fastapi-postgresql","_reponame":"full-stack-fastapi-postgresql","_stars":10525,"_forks":1908,"_watches":171,"_topics":["python","python3","json","json-schema","docker","postgresql","frontend","backend","fastapi","traefik","letsencrypt","swagger","celery","jwt","vue","vuex","cookiecutter","openapi","openapi3","pgadmin"],"_language":"Python","_homepage":null,"_description":"full-stack-fastapi-postgresql: Full stack, modern web application generator. Using FastAPI, PostgreSQL as database, Docker, automatic HTTPS and more.","_organization":"tiangolo","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2020-06-05T00:00:00.000Z","_created_at":"2019-02-23T00:00:00.000Z","_age_weeks":197,"_stars_per_week":53.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/full-stack-fastapi-postgresql/master/README.md","_readme_localurl":"tiangolo~full-stack-fastapi-postgresql~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":857,"category":"viz","githuburl":"https://github.com/visgl/deck.gl","featured":null,"links":null,"description":null,"_repopath":"visgl/deck.gl","_reponame":"deck.gl","_stars":10454,"_forks":1876,"_watches":1730,"_topics":["webgl","data-visualization","javascript","visualization","python","geospatial-analysis","maps"],"_language":"JavaScript","_homepage":"https://deck.gl","_description":"deck.gl: WebGL2 powered visualization framework","_organization":"visgl","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2015-12-15T00:00:00.000Z","_age_weeks":364,"_stars_per_week":28.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/visgl/deck.gl/master/README.md","_readme_localurl":"visgl~deck.gl~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":72,"category":"util","githuburl":"https://github.com/python-pillow/pillow","featured":null,"links":null,"description":null,"_repopath":"python-pillow/pillow","_reponame":"Pillow","_stars":10351,"_forks":1951,"_watches":218,"_topics":["c","cross-platform","pil","pillow","python","python-3","image-processing","image"],"_language":"Python","_homepage":"https://python-pillow.org","_description":"Pillow: The friendly PIL fork (Python Imaging Library)","_organization":"python-pillow","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2012-07-24T00:00:00.000Z","_age_weeks":541,"_stars_per_week":19.13,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python-pillow/pillow/master/README.md","_readme_localurl":"python-pillow~pillow~README.md","_requirements_filenames":["setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/python-pillow/pillow/master/setup.py","https://raw.githubusercontent.com/python-pillow/pillow/master/Pipfile"],"_requirements_localurls":["python-pillow~pillow~setup.py","python-pillow~pillow~Pipfile"]},{"index":110,"category":"ml-interpretability","githuburl":"https://github.com/marcotcr/lime","featured":null,"links":null,"description":null,"_repopath":"marcotcr/lime","_reponame":"lime","_stars":10276,"_forks":1685,"_watches":272,"_topics":[],"_language":"JavaScript","_homepage":"","_description":"Lime: Explaining the predictions of any machine learning classifier","_organization":"marcotcr","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2021-07-29T00:00:00.000Z","_created_at":"2016-03-15T00:00:00.000Z","_age_weeks":351,"_stars_per_week":29.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/marcotcr/lime/master/README.md","_readme_localurl":"marcotcr~lime~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/marcotcr/lime/master/setup.py"],"_requirements_localurls":["marcotcr~lime~setup.py"]},{"index":427,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/detr","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/detr","_reponame":"detr","_stars":10186,"_forks":1844,"_watches":145,"_topics":[],"_language":"Python","_homepage":null,"_description":"detr: End-to-End Object Detection with Transformers","_organization":"facebookresearch","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-03-07T00:00:00.000Z","_created_at":"2020-05-26T00:00:00.000Z","_age_weeks":132,"_stars_per_week":77.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/detr/master/README.md","_readme_localurl":"facebookresearch~detr~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/detr/master/requirements.txt"],"_requirements_localurls":["facebookresearch~detr~requirements.txt"]},{"index":50,"category":"viz","githuburl":"https://github.com/mwaskom/seaborn","featured":null,"links":null,"description":null,"_repopath":"mwaskom/seaborn","_reponame":"seaborn","_stars":10146,"_forks":1677,"_watches":252,"_topics":["python","data-visualization","data-science","matplotlib","pandas"],"_language":"Python","_homepage":"https://seaborn.pydata.org","_description":"seaborn: Statistical data visualization in Python","_organization":"mwaskom","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2012-06-18T00:00:00.000Z","_age_weeks":546,"_stars_per_week":18.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mwaskom/seaborn/master/README.md","_readme_localurl":"mwaskom~seaborn~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mwaskom/seaborn/master/pyproject.toml"],"_requirements_localurls":["mwaskom~seaborn~pyproject.toml"]},{"index":166,"category":"sim","githuburl":"https://github.com/bulletphysics/bullet3","featured":null,"links":null,"description":null,"_repopath":"bulletphysics/bullet3","_reponame":"bullet3","_stars":10020,"_forks":2617,"_watches":406,"_topics":["simulation","robotics","kinematics","virtual-reality","reinforcement-learning","computer-animation","game-development","simulator","pybullet"],"_language":"C++","_homepage":"http://bulletphysics.org","_description":"bullet3: Bullet Physics SDK: real-time collision detection and multi-physics simulation for VR, games, visual effects, robotics, machine learning etc.","_organization":"bulletphysics","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-09-25T00:00:00.000Z","_created_at":"2011-04-12T00:00:00.000Z","_age_weeks":608,"_stars_per_week":16.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bulletphysics/bullet3/master/README.md","_readme_localurl":"bulletphysics~bullet3~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bulletphysics/bullet3/master/setup.py"],"_requirements_localurls":["bulletphysics~bullet3~setup.py"]},{"index":24,"category":"ml","githuburl":"https://github.com/google/dopamine","featured":null,"links":null,"description":null,"_repopath":"google/dopamine","_reponame":"dopamine","_stars":9944,"_forks":1336,"_watches":441,"_topics":["rl","ml","ai","google","tensorflow"],"_language":"Jupyter Notebook","_homepage":"https://github.com/google/dopamine","_description":"Dopamine is a research framework for fast prototyping of reinforcement learning algorithms. ","_organization":"google","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2018-07-26T00:00:00.000Z","_age_weeks":227,"_stars_per_week":43.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/dopamine/master/README.md","_readme_localurl":"google~dopamine~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/dopamine/master/requirements.txt","https://raw.githubusercontent.com/google/dopamine/master/setup.py"],"_requirements_localurls":["google~dopamine~requirements.txt","google~dopamine~setup.py"]},{"index":173,"category":"term","githuburl":"https://github.com/tiangolo/typer","featured":1.0,"links":null,"description":null,"_repopath":"tiangolo/typer","_reponame":"typer","_stars":9902,"_forks":396,"_watches":66,"_topics":["cli","click","python3","typehints","terminal","shell","python","typer"],"_language":"Python","_homepage":"https://typer.tiangolo.com/","_description":"Typer, build great CLIs. Easy to code. Based on Python type hints.","_organization":"tiangolo","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-14T00:00:00.000Z","_created_at":"2019-12-24T00:00:00.000Z","_age_weeks":154,"_stars_per_week":64.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/typer/master/README.md","_readme_localurl":"tiangolo~typer~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tiangolo/typer/master/pyproject.toml"],"_requirements_localurls":["tiangolo~typer~pyproject.toml"]},{"index":60,"category":"pandas","githuburl":"https://github.com/pandas-profiling/pandas-profiling","featured":1.0,"links":null,"description":null,"_repopath":"pandas-profiling/pandas-profiling","_reponame":"pandas-profiling","_stars":9891,"_forks":1410,"_watches":152,"_topics":["pandas-profiling","pandas-dataframe","statistics","jupyter-notebook","exploration","data-science","python","pandas","machine-learning","deep-learning","exploratory-data-analysis","eda","data-quality","html-report","data-exploration","data-analysis","jupyter","big-data-analytics","data-profiling","hacktoberfest"],"_language":"Python","_homepage":"https://pandas-profiling.ydata.ai","_description":"pandas-profiling: Create HTML profiling reports from pandas DataFrame objects","_organization":"pandas-profiling","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2016-01-09T00:00:00.000Z","_age_weeks":360,"_stars_per_week":27.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pandas-profiling/pandas-profiling/master/README.md","_readme_localurl":"pandas-profiling~pandas-profiling~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pandas-profiling/pandas-profiling/master/requirements.txt","https://raw.githubusercontent.com/pandas-profiling/pandas-profiling/master/setup.py"],"_requirements_localurls":["pandas-profiling~pandas-profiling~requirements.txt","pandas-profiling~pandas-profiling~setup.py"]},{"index":87,"category":"math","githuburl":"https://github.com/sympy/sympy","featured":1.0,"links":null,"description":null,"_repopath":"sympy/sympy","_reponame":"sympy","_stars":9861,"_forks":3781,"_watches":281,"_topics":["python","math","computer-algebra","science","hacktoberfest"],"_language":"Python","_homepage":"https://sympy.org/","_description":"sympy: A computer algebra system written in pure Python","_organization":"sympy","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2010-04-30T00:00:00.000Z","_age_weeks":657,"_stars_per_week":14.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sympy/sympy/master/README.md","_readme_localurl":"sympy~sympy~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sympy/sympy/master/setup.py"],"_requirements_localurls":["sympy~sympy~setup.py"]},{"index":645,"category":"util","githuburl":"https://github.com/pyinstaller/pyinstaller","featured":null,"links":null,"description":null,"_repopath":"pyinstaller/pyinstaller","_reponame":"pyinstaller","_stars":9805,"_forks":1846,"_watches":233,"_topics":["python","python-3","bundle","package","pyinstaller","python-to-exe","py2exe","py2app"],"_language":"Python","_homepage":"http://www.pyinstaller.org","_description":"pyinstaller: Freeze (package) Python programs into stand-alone executables","_organization":"pyinstaller","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2011-11-23T00:00:00.000Z","_age_weeks":576,"_stars_per_week":17.02,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyinstaller/pyinstaller/master/README.rst","_readme_localurl":"pyinstaller~pyinstaller~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyinstaller/pyinstaller/master/requirements.txt","https://raw.githubusercontent.com/pyinstaller/pyinstaller/master/setup.py","https://raw.githubusercontent.com/pyinstaller/pyinstaller/master/pyproject.toml"],"_requirements_localurls":["pyinstaller~pyinstaller~requirements.txt","pyinstaller~pyinstaller~setup.py","pyinstaller~pyinstaller~pyproject.toml"]},{"index":805,"category":"web","githuburl":"https://github.com/encode/httpx","featured":null,"links":null,"description":null,"_repopath":"encode/httpx","_reponame":"httpx","_stars":9742,"_forks":636,"_watches":105,"_topics":["python","http","trio","asyncio"],"_language":"Python","_homepage":"https://www.python-httpx.org/","_description":"httpx: A next generation HTTP client for Python. \ud83e\udd8b","_organization":"encode","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-04-04T00:00:00.000Z","_age_weeks":191,"_stars_per_week":50.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/encode/httpx/master/README.md","_readme_localurl":"encode~httpx~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/encode/httpx/master/requirements.txt","https://raw.githubusercontent.com/encode/httpx/master/setup.py","https://raw.githubusercontent.com/encode/httpx/master/pyproject.toml"],"_requirements_localurls":["encode~httpx~requirements.txt","encode~httpx~setup.py","encode~httpx~pyproject.toml"]},{"index":536,"category":"profiling","githuburl":"https://github.com/bloomberg/memray","featured":1.0,"links":null,"description":null,"_repopath":"bloomberg/memray","_reponame":"memray","_stars":9649,"_forks":263,"_watches":53,"_topics":["memory","memory-leak","memory-leak-detection","memory-profiler","profiler","python","python3","hacktoberfest"],"_language":"Python","_homepage":"https://bloomberg.github.io/memray/","_description":"Memray is a memory profiler for Python","_organization":"bloomberg","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2022-04-08T00:00:00.000Z","_age_weeks":34,"_stars_per_week":277.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bloomberg/memray/master/README.md","_readme_localurl":"bloomberg~memray~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/bloomberg/memray/master/setup.py","https://raw.githubusercontent.com/bloomberg/memray/master/pyproject.toml"],"_requirements_localurls":["bloomberg~memray~setup.py","bloomberg~memray~pyproject.toml"]},{"index":22,"category":"nlp","githuburl":"https://github.com/facebookresearch/parlai","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/parlai","_reponame":"ParlAI","_stars":9643,"_forks":1970,"_watches":289,"_topics":[],"_language":"Python","_homepage":"https://parl.ai","_description":"ParlAI: A framework for training and evaluating AI models on a variety of openly available dialogue datasets.","_organization":"facebookresearch","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2017-04-24T00:00:00.000Z","_age_weeks":293,"_stars_per_week":32.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/parlai/master/README.md","_readme_localurl":"facebookresearch~parlai~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/parlai/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/parlai/master/setup.py","https://raw.githubusercontent.com/facebookresearch/parlai/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~parlai~requirements.txt","facebookresearch~parlai~setup.py","facebookresearch~parlai~pyproject.toml"]},{"index":38,"category":"jupyter","githuburl":"https://github.com/jupyter/notebook","featured":null,"links":null,"description":null,"_repopath":"jupyter/notebook","_reponame":"notebook","_stars":9602,"_forks":3982,"_watches":319,"_topics":["closember","jupyter","jupyter-notebook","notebook"],"_language":"Jupyter Notebook","_homepage":"https://jupyter-notebook.readthedocs.io/","_description":"notebook: Jupyter Interactive Notebook","_organization":"jupyter","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":399,"_stars_per_week":24.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/notebook/master/README.md","_readme_localurl":"jupyter~notebook~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/notebook/master/setup.py","https://raw.githubusercontent.com/jupyter/notebook/master/pyproject.toml"],"_requirements_localurls":["jupyter~notebook~setup.py","jupyter~notebook~pyproject.toml"]},{"index":718,"category":"perf","githuburl":"https://github.com/pola-rs/polars","featured":1.0,"links":null,"description":null,"_repopath":"pola-rs/polars","_reponame":"polars","_stars":9575,"_forks":532,"_watches":98,"_topics":["dataframe-library","dataframe","dataframes","rust","arrow","python","out-of-core"],"_language":"Rust","_homepage":"https://pola.rs/","_description":"polars: Fast multi-threaded, hybrid-streaming DataFrame library in Rust | Python | Node.js","_organization":"pola-rs","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2020-05-13T00:00:00.000Z","_age_weeks":134,"_stars_per_week":71.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pola-rs/polars/master/README.md","_readme_localurl":"pola-rs~polars~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":71,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest","_reponame":"pytest","_stars":9564,"_forks":2210,"_watches":194,"_topics":["unit-testing","test","testing","python","hacktoberfest"],"_language":"Python","_homepage":"https://pytest.org","_description":"pytest: The pytest framework makes it easy to write small tests, yet scales to support complex functional testing","_organization":"pytest-dev","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2015-06-15T00:00:00.000Z","_age_weeks":390,"_stars_per_week":24.51,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest/master/README.rst","_readme_localurl":"pytest-dev~pytest~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest/master/setup.py","https://raw.githubusercontent.com/pytest-dev/pytest/master/pyproject.toml"],"_requirements_localurls":["pytest-dev~pytest~setup.py","pytest-dev~pytest~pyproject.toml"]},{"index":653,"category":"profiling","githuburl":"https://github.com/benfred/py-spy","featured":null,"links":null,"description":null,"_repopath":"benfred/py-spy","_reponame":"py-spy","_stars":9415,"_forks":341,"_watches":107,"_topics":["profiler","python","performance-analysis","profiling"],"_language":"Rust","_homepage":"","_description":"py-spy: Sampling profiler for Python programs","_organization":"benfred","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2018-08-01T00:00:00.000Z","_age_weeks":227,"_stars_per_week":41.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/benfred/py-spy/master/README.md","_readme_localurl":"benfred~py-spy~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/benfred/py-spy/master/pyproject.toml"],"_requirements_localurls":["benfred~py-spy~pyproject.toml"]},{"index":225,"category":"util","githuburl":"https://github.com/pyodide/pyodide","featured":null,"links":null,"description":null,"_repopath":"pyodide/pyodide","_reponame":"pyodide","_stars":9376,"_forks":613,"_watches":124,"_topics":["python","webassembly"],"_language":"Python","_homepage":"https://pyodide.org/en/stable/","_description":"Pyodide is a Python distribution for the browser and Node.js based on WebAssembly","_organization":"pyodide","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2018-02-23T00:00:00.000Z","_age_weeks":249,"_stars_per_week":37.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyodide/pyodide/master/README.md","_readme_localurl":"pyodide~pyodide~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyodide/pyodide/master/requirements.txt","https://raw.githubusercontent.com/pyodide/pyodide/master/pyproject.toml"],"_requirements_localurls":["pyodide~pyodide~requirements.txt","pyodide~pyodide~pyproject.toml"]},{"index":412,"category":"util","githuburl":"https://github.com/pre-commit/pre-commit","featured":null,"links":null,"description":null,"_repopath":"pre-commit/pre-commit","_reponame":"pre-commit","_stars":9296,"_forks":686,"_watches":82,"_topics":["git","pre-commit","python","linter","refactoring"],"_language":"Python","_homepage":"https://pre-commit.com","_description":"pre-commit: A framework for managing and maintaining multi-language pre-commit hooks.","_organization":"pre-commit","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2014-03-13T00:00:00.000Z","_age_weeks":455,"_stars_per_week":20.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pre-commit/pre-commit/master/README.md","_readme_localurl":"pre-commit~pre-commit~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pre-commit/pre-commit/master/setup.py"],"_requirements_localurls":["pre-commit~pre-commit~setup.py"]},{"index":155,"category":"data","githuburl":"https://github.com/s0md3v/photon","featured":null,"links":null,"description":null,"_repopath":"s0md3v/photon","_reponame":"Photon","_stars":9197,"_forks":1358,"_watches":324,"_topics":["crawler","spider","python","osint","information-gathering"],"_language":"Python","_homepage":"","_description":"Photon: Incredibly fast crawler designed for OSINT.","_organization":"s0md3v","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-03-16T00:00:00.000Z","_created_at":"2018-03-30T00:00:00.000Z","_age_weeks":244,"_stars_per_week":37.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/s0md3v/photon/master/README.md","_readme_localurl":"s0md3v~photon~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/s0md3v/photon/master/requirements.txt"],"_requirements_localurls":["s0md3v~photon~requirements.txt"]},{"index":315,"category":"gui","githuburl":"https://github.com/hoffstadt/dearpygui","featured":null,"links":null,"description":null,"_repopath":"hoffstadt/dearpygui","_reponame":"DearPyGui","_stars":9195,"_forks":487,"_watches":135,"_topics":["cpp","python","imgui","toolkit","native","tools","gui","graphics","macos","linux","ui","python-gui","cross-platform","windows","dearpygui"],"_language":"C++","_homepage":"https://dearpygui.readthedocs.io/en/latest/","_description":"DearPyGui: Dear PyGui: A fast and powerful Graphical User Interface Toolkit for Python with minimal dependencies","_organization":"hoffstadt","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2020-05-28T00:00:00.000Z","_age_weeks":131,"_stars_per_week":69.73,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hoffstadt/dearpygui/master/README.md","_readme_localurl":"hoffstadt~dearpygui~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hoffstadt/dearpygui/master/setup.py"],"_requirements_localurls":["hoffstadt~dearpygui~setup.py"]},{"index":655,"category":"util","githuburl":"https://github.com/magicstack/uvloop","featured":null,"links":null,"description":null,"_repopath":"magicstack/uvloop","_reponame":"uvloop","_stars":9053,"_forks":522,"_watches":225,"_topics":["asyncio","async-await","async","high-performance","libuv","python","python-3","event-loop","networking","async-python"],"_language":"Cython","_homepage":"","_description":"uvloop: Ultra fast asyncio event loop.","_organization":"magicstack","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-09-14T00:00:00.000Z","_created_at":"2015-11-08T00:00:00.000Z","_age_weeks":369,"_stars_per_week":24.51,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/magicstack/uvloop/master/README.rst","_readme_localurl":"magicstack~uvloop~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/magicstack/uvloop/master/setup.py"],"_requirements_localurls":["magicstack~uvloop~setup.py"]},{"index":238,"category":"data","githuburl":"https://github.com/tiangolo/sqlmodel","featured":1.0,"links":null,"description":null,"_repopath":"tiangolo/sqlmodel","_reponame":"sqlmodel","_stars":9026,"_forks":385,"_watches":114,"_topics":["python","sql","sqlalchemy","pydantic","fastapi","json","json-schema"],"_language":"Python","_homepage":"https://sqlmodel.tiangolo.com/","_description":"sqlmodel: SQL databases in Python, designed for simplicity, compatibility, and robustness.","_organization":"tiangolo","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-12T00:00:00.000Z","_created_at":"2021-08-24T00:00:00.000Z","_age_weeks":67,"_stars_per_week":134.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/sqlmodel/master/README.md","_readme_localurl":"tiangolo~sqlmodel~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tiangolo/sqlmodel/master/pyproject.toml"],"_requirements_localurls":["tiangolo~sqlmodel~pyproject.toml"]},{"index":398,"category":"web","githuburl":"https://github.com/falconry/falcon","featured":null,"links":null,"description":null,"_repopath":"falconry/falcon","_reponame":"falcon","_stars":8965,"_forks":897,"_watches":266,"_topics":["python","framework","rest","microservices","web","api","http","wsgi","asgi","api-rest","hacktoberfest-accepted","hacktoberfest2022","hacktoberfest"],"_language":"Python","_homepage":"https://falcon.readthedocs.io/en/stable/","_description":"falcon: The no-magic web data plane API and microservices framework for Python developers, with a focus on reliability, correctness, and performance at scale.","_organization":"falconry","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2012-12-06T00:00:00.000Z","_age_weeks":521,"_stars_per_week":17.18,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/falconry/falcon/master/README.rst","_readme_localurl":"falconry~falcon~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/falconry/falcon/master/setup.py","https://raw.githubusercontent.com/falconry/falcon/master/pyproject.toml"],"_requirements_localurls":["falconry~falcon~setup.py","falconry~falcon~pyproject.toml"]},{"index":142,"category":"nlp","githuburl":"https://github.com/ukplab/sentence-transformers","featured":null,"links":null,"description":null,"_repopath":"ukplab/sentence-transformers","_reponame":"sentence-transformers","_stars":8954,"_forks":1784,"_watches":117,"_topics":[],"_language":"Python","_homepage":"https://www.SBERT.net","_description":"sentence-transformers: Multilingual Sentence & Image Embeddings with BERT","_organization":"ukplab","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2019-07-24T00:00:00.000Z","_age_weeks":176,"_stars_per_week":50.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ukplab/sentence-transformers/master/README.md","_readme_localurl":"ukplab~sentence-transformers~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ukplab/sentence-transformers/master/requirements.txt","https://raw.githubusercontent.com/ukplab/sentence-transformers/master/setup.py"],"_requirements_localurls":["ukplab~sentence-transformers~requirements.txt","ukplab~sentence-transformers~setup.py"]},{"index":157,"category":"util","githuburl":"https://github.com/pallets/jinja","featured":null,"links":null,"description":null,"_repopath":"pallets/jinja","_reponame":"jinja","_stars":8921,"_forks":1525,"_watches":254,"_topics":["python","template-engine","jinja","jinja2","templates","pallets"],"_language":"Python","_homepage":"https://jinja.palletsprojects.com","_description":"jinja: A very fast and expressive template engine.","_organization":"pallets","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-01T00:00:00.000Z","_created_at":"2010-10-17T00:00:00.000Z","_age_weeks":633,"_stars_per_week":14.08,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/jinja/master/README.rst","_readme_localurl":"pallets~jinja~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/jinja/master/setup.py"],"_requirements_localurls":["pallets~jinja~setup.py"]},{"index":371,"category":"viz","githuburl":"https://github.com/marceloprates/prettymaps","featured":null,"links":null,"description":null,"_repopath":"marceloprates/prettymaps","_reponame":"prettymaps","_stars":8917,"_forks":430,"_watches":78,"_topics":["matplotlib","jupyter-notebook","python","generative-art","cartography","maps","openstreetmap"],"_language":"Jupyter Notebook","_homepage":"","_description":"prettymaps: A small set of Python functions to draw pretty maps from OpenStreetMap data. Based on osmnx, matplotlib and shapely libraries.","_organization":"marceloprates","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-16T00:00:00.000Z","_created_at":"2021-03-05T00:00:00.000Z","_age_weeks":91,"_stars_per_week":97.23,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/marceloprates/prettymaps/master/README.md","_readme_localurl":"marceloprates~prettymaps~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/marceloprates/prettymaps/master/requirements.txt","https://raw.githubusercontent.com/marceloprates/prettymaps/master/setup.py"],"_requirements_localurls":["marceloprates~prettymaps~requirements.txt","marceloprates~prettymaps~setup.py"]},{"index":517,"category":"typing","githuburl":"https://github.com/microsoft/pyright","featured":null,"links":null,"description":null,"_repopath":"microsoft/pyright","_reponame":"pyright","_stars":8852,"_forks":612,"_watches":77,"_topics":[],"_language":"Python","_homepage":"","_description":"pyright: Static type checker for Python","_organization":"microsoft","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2019-03-12T00:00:00.000Z","_age_weeks":195,"_stars_per_week":45.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/pyright/master/README.md","_readme_localurl":"microsoft~pyright~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":244,"category":"util","githuburl":"https://github.com/aws/serverless-application-model","featured":null,"links":null,"description":null,"_repopath":"aws/serverless-application-model","_reponame":"serverless-application-model","_stars":8842,"_forks":2270,"_watches":310,"_topics":["serverless","aws","lambda","aws-sam","sam","sam-specification","serverless-applications","serverless-application-model"],"_language":"Python","_homepage":"https://aws.amazon.com/serverless/sam","_description":"serverless-application-model: The AWS Serverless Application Model (AWS SAM) transform is a AWS CloudFormation macro that transforms SAM templates into CloudFormation templates.","_organization":"aws","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2016-10-10T00:00:00.000Z","_age_weeks":321,"_stars_per_week":27.52,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aws/serverless-application-model/master/README.md","_readme_localurl":"aws~serverless-application-model~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/aws/serverless-application-model/master/setup.py","https://raw.githubusercontent.com/aws/serverless-application-model/master/pyproject.toml"],"_requirements_localurls":["aws~serverless-application-model~setup.py","aws~serverless-application-model~pyproject.toml"]},{"index":132,"category":"ml","githuburl":"https://github.com/epistasislab/tpot","featured":null,"links":null,"description":null,"_repopath":"epistasislab/tpot","_reponame":"tpot","_stars":8829,"_forks":1503,"_watches":292,"_topics":["machine-learning","python","data-science","automl","automation","scikit-learn","hyperparameter-optimization","model-selection","parameter-tuning","automated-machine-learning","random-forest","gradient-boosting","feature-engineering","aiml","alzheimer","alzheimers","nia","u01ag066833","ag066833","adsp"],"_language":"Python","_homepage":"http://epistasislab.github.io/tpot/","_description":"tpot: A Python Automated Machine Learning tool that optimizes machine learning pipelines using genetic programming.","_organization":"epistasislab","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-07-29T00:00:00.000Z","_created_at":"2015-11-03T00:00:00.000Z","_age_weeks":370,"_stars_per_week":23.85,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/epistasislab/tpot/master/README.md","_readme_localurl":"epistasislab~tpot~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/epistasislab/tpot/master/requirements.txt","https://raw.githubusercontent.com/epistasislab/tpot/master/setup.py"],"_requirements_localurls":["epistasislab~tpot~requirements.txt","epistasislab~tpot~setup.py"]},{"index":134,"category":"ml-dl","githuburl":"https://github.com/keras-team/autokeras","featured":null,"links":null,"description":null,"_repopath":"keras-team/autokeras","_reponame":"autokeras","_stars":8668,"_forks":1385,"_watches":305,"_topics":["automl","neural-architecture-search","automated-machine-learning","python","deep-learning","machine-learning","autodl","tensorflow","keras"],"_language":"Python","_homepage":"http://autokeras.com/","_description":"autokeras: AutoML library for deep learning","_organization":"keras-team","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2017-11-19T00:00:00.000Z","_age_weeks":263,"_stars_per_week":32.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/keras-team/autokeras/master/README.md","_readme_localurl":"keras-team~autokeras~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/keras-team/autokeras/master/setup.py"],"_requirements_localurls":["keras-team~autokeras~setup.py"]},{"index":5,"category":"web","githuburl":"https://github.com/benoitc/gunicorn","featured":null,"links":null,"description":null,"_repopath":"benoitc/gunicorn","_reponame":"gunicorn","_stars":8665,"_forks":1616,"_watches":235,"_topics":["http-server","http","python","wsgi-server","wsgi"],"_language":"Python","_homepage":"http://www.gunicorn.org","_description":"gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications.","_organization":"benoitc","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2009-11-30T00:00:00.000Z","_age_weeks":679,"_stars_per_week":12.76,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/benoitc/gunicorn/master/README.rst","_readme_localurl":"benoitc~gunicorn~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/benoitc/gunicorn/master/setup.py"],"_requirements_localurls":["benoitc~gunicorn~setup.py"]},{"index":92,"category":"ml-ops","githuburl":"https://github.com/uber/ludwig","featured":null,"links":null,"description":null,"_repopath":"uber/ludwig","_reponame":"ludwig","_stars":8645,"_forks":1020,"_watches":181,"_topics":["deep-learning","deeplearning","deep","learning","machine-learning","machinelearning","machine","natural-language-processing","natural-language","computer-vision","data-centric","data-science","python","pytorch","neural-network","ml","datascience"],"_language":"Python","_homepage":"http://ludwig.ai","_description":"ludwig: Data-centric declarative deep learning framework","_organization":"uber","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2018-12-27T00:00:00.000Z","_age_weeks":205,"_stars_per_week":42.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/uber/ludwig/master/README.md","_readme_localurl":"uber~ludwig~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/ludwig/master/requirements.txt","https://raw.githubusercontent.com/uber/ludwig/master/setup.py","https://raw.githubusercontent.com/uber/ludwig/master/pyproject.toml"],"_requirements_localurls":["uber~ludwig~requirements.txt","uber~ludwig~setup.py","uber~ludwig~pyproject.toml"]},{"index":523,"category":"ml-dl","githuburl":"https://github.com/lucidrains/dalle2-pytorch","featured":null,"links":null,"description":null,"_repopath":"lucidrains/dalle2-pytorch","_reponame":"DALLE2-pytorch","_stars":8421,"_forks":685,"_watches":112,"_topics":["artificial-intelligence","deep-learning","text-to-image"],"_language":"Python","_homepage":"","_description":"DALLE2-pytorch: Implementation of DALL-E 2, OpenAI's updated text-to-image synthesis neural network, in Pytorch","_organization":"lucidrains","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2022-04-07T00:00:00.000Z","_age_weeks":34,"_stars_per_week":241.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lucidrains/dalle2-pytorch/master/README.md","_readme_localurl":"lucidrains~dalle2-pytorch~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lucidrains/dalle2-pytorch/master/setup.py"],"_requirements_localurls":["lucidrains~dalle2-pytorch~setup.py"]},{"index":151,"category":"nlp","githuburl":"https://github.com/sloria/textblob","featured":null,"links":null,"description":null,"_repopath":"sloria/textblob","_reponame":"TextBlob","_stars":8377,"_forks":1097,"_watches":270,"_topics":["nlp","nltk","pattern","python","python-3","python-2","natural-language-processing"],"_language":"Python","_homepage":"https://textblob.readthedocs.io/","_description":"TextBlob: Simple, Pythonic, text processing--Sentiment analysis, part-of-speech tagging, noun phrase extraction, translation, and more.","_organization":"sloria","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2021-10-22T00:00:00.000Z","_created_at":"2013-06-30T00:00:00.000Z","_age_weeks":492,"_stars_per_week":17.01,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sloria/textblob/master/README.rst","_readme_localurl":"sloria~textblob~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sloria/textblob/master/setup.py"],"_requirements_localurls":["sloria~textblob~setup.py"]},{"index":780,"category":"diffusion","githuburl":"https://github.com/huggingface/diffusers","featured":null,"links":null,"description":null,"_repopath":"huggingface/diffusers","_reponame":"diffusers","_stars":8376,"_forks":1378,"_watches":92,"_topics":["deep-learning","diffusion","image-generation","pytorch","score-based-generative-modeling","image2image","text2image","stable-diffusion","hacktoberfest"],"_language":"Python","_homepage":"https://huggingface.co/docs/diffusers","_description":"\ud83e\udd17 Diffusers: State-of-the-art diffusion models for image and audio generation in PyTorch","_organization":"huggingface","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2022-05-30T00:00:00.000Z","_age_weeks":27,"_stars_per_week":306.97,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/diffusers/master/README.md","_readme_localurl":"huggingface~diffusers~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/diffusers/master/setup.py","https://raw.githubusercontent.com/huggingface/diffusers/master/pyproject.toml"],"_requirements_localurls":["huggingface~diffusers~setup.py","huggingface~diffusers~pyproject.toml"]},{"index":100,"category":"nlp","githuburl":"https://github.com/clips/pattern","featured":null,"links":null,"description":null,"_repopath":"clips/pattern","_reponame":"pattern","_stars":8358,"_forks":1593,"_watches":548,"_topics":["python","machine-learning","natural-language-processing","web-mining","wordnet","sentiment-analysis","network-analysis"],"_language":"Python","_homepage":"https://github.com/clips/pattern/wiki","_description":"pattern: Web mining module for Python, with tools for scraping, natural language processing, machine learning, network analysis and visualization.","_organization":"clips","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2020-04-25T00:00:00.000Z","_created_at":"2011-05-03T00:00:00.000Z","_age_weeks":605,"_stars_per_week":13.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/clips/pattern/master/README.md","_readme_localurl":"clips~pattern~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/clips/pattern/master/setup.py"],"_requirements_localurls":["clips~pattern~setup.py"]},{"index":126,"category":"ml-dl","githuburl":"https://github.com/microsoft/deepspeed","featured":null,"links":null,"description":null,"_repopath":"microsoft/deepspeed","_reponame":"DeepSpeed","_stars":8276,"_forks":968,"_watches":142,"_topics":["deep-learning","pytorch","gpu","machine-learning","billion-parameters","data-parallelism","model-parallelism","inference","pipeline-parallelism","compression","mixture-of-experts","trillion-parameters","zero"],"_language":"Python","_homepage":"https://www.deepspeed.ai/","_description":"DeepSpeed is a deep learning optimization library that makes distributed training and inference easy, efficient, and effective.","_organization":"microsoft","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2020-01-23T00:00:00.000Z","_age_weeks":149,"_stars_per_week":55.23,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/deepspeed/master/README.md","_readme_localurl":"microsoft~deepspeed~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/deepspeed/master/setup.py"],"_requirements_localurls":["microsoft~deepspeed~setup.py"]},{"index":282,"category":"util","githuburl":"https://github.com/arrow-py/arrow","featured":null,"links":null,"description":null,"_repopath":"arrow-py/arrow","_reponame":"arrow","_stars":8149,"_forks":634,"_watches":134,"_topics":["python","arrow","datetime","date","time","timestamp","timezones","hacktoberfest"],"_language":"Python","_homepage":"https://arrow.readthedocs.io","_description":"arrow: \ud83c\udff9 Better dates & times for Python","_organization":"arrow-py","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-15T00:00:00.000Z","_created_at":"2012-11-18T00:00:00.000Z","_age_weeks":524,"_stars_per_week":15.54,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/arrow-py/arrow/master/README.rst","_readme_localurl":"arrow-py~arrow~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/arrow-py/arrow/master/setup.py"],"_requirements_localurls":["arrow-py~arrow~setup.py"]},{"index":125,"category":"perf","githuburl":"https://github.com/modin-project/modin","featured":null,"links":null,"description":null,"_repopath":"modin-project/modin","_reponame":"modin","_stars":8115,"_forks":582,"_watches":109,"_topics":["dataframe","pandas","distributed","datascience","modin","sql","python","analytics","data-science","hacktoberfest"],"_language":"Python","_homepage":"http://modin.readthedocs.io","_description":"Modin: Scale your Pandas workflows by changing a single line of code","_organization":"modin-project","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2018-06-21T00:00:00.000Z","_age_weeks":232,"_stars_per_week":34.85,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/modin-project/modin/master/README.md","_readme_localurl":"modin-project~modin~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/modin-project/modin/master/setup.py"],"_requirements_localurls":["modin-project~modin~setup.py"]},{"index":53,"category":"perf","githuburl":"https://github.com/numba/numba","featured":null,"links":null,"description":null,"_repopath":"numba/numba","_reponame":"numba","_stars":8047,"_forks":982,"_watches":207,"_topics":["python","numpy","llvm","compiler","cuda","parallel"],"_language":"Python","_homepage":"http://numba.pydata.org/","_description":"numba: NumPy aware dynamic Python compiler using LLVM","_organization":"numba","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2012-03-08T00:00:00.000Z","_age_weeks":560,"_stars_per_week":14.35,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/numba/numba/master/README.rst","_readme_localurl":"numba~numba~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/numba/numba/master/requirements.txt","https://raw.githubusercontent.com/numba/numba/master/setup.py"],"_requirements_localurls":["numba~numba~requirements.txt","numba~numba~setup.py"]},{"index":294,"category":"util","githuburl":"https://github.com/paramiko/paramiko","featured":null,"links":null,"description":null,"_repopath":"paramiko/paramiko","_reponame":"paramiko","_stars":8018,"_forks":1885,"_watches":320,"_topics":[],"_language":"Python","_homepage":"http://paramiko.org","_description":"paramiko: The leading native Python SSHv2 protocol library.","_organization":"paramiko","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2009-02-02T00:00:00.000Z","_age_weeks":722,"_stars_per_week":11.1,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/paramiko/paramiko/master/README.rst","_readme_localurl":"paramiko~paramiko~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/paramiko/paramiko/master/setup.py"],"_requirements_localurls":["paramiko~paramiko~setup.py"]},{"index":84,"category":"ml","githuburl":"https://github.com/statsmodels/statsmodels","featured":null,"links":null,"description":null,"_repopath":"statsmodels/statsmodels","_reponame":"statsmodels","_stars":7967,"_forks":2619,"_watches":271,"_topics":["python","statistics","econometrics","data-analysis","generalized-linear-models","timeseries-analysis","regression-models","count-model","data-science","forecasting","hypothesis-testing","prediction","robust-estimation"],"_language":"Python","_homepage":"http://www.statsmodels.org/devel/","_description":"Statsmodels: statistical modeling and econometrics in Python","_organization":"statsmodels","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2011-06-12T00:00:00.000Z","_age_weeks":599,"_stars_per_week":13.29,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/statsmodels/statsmodels/master/README.rst","_readme_localurl":"statsmodels~statsmodels~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/statsmodels/statsmodels/master/requirements.txt","https://raw.githubusercontent.com/statsmodels/statsmodels/master/setup.py","https://raw.githubusercontent.com/statsmodels/statsmodels/master/pyproject.toml"],"_requirements_localurls":["statsmodels~statsmodels~requirements.txt","statsmodels~statsmodels~setup.py","statsmodels~statsmodels~pyproject.toml"]},{"index":128,"category":"viz","githuburl":"https://github.com/altair-viz/altair","featured":null,"links":null,"description":null,"_repopath":"altair-viz/altair","_reponame":"altair","_stars":7913,"_forks":708,"_watches":150,"_topics":[],"_language":"Python","_homepage":"https://altair-viz.github.io/","_description":"altair: Declarative statistical visualization library for Python","_organization":"altair-viz","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2015-09-19T00:00:00.000Z","_age_weeks":376,"_stars_per_week":21.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/altair-viz/altair/master/README.md","_readme_localurl":"altair-viz~altair~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/altair-viz/altair/master/requirements.txt","https://raw.githubusercontent.com/altair-viz/altair/master/setup.py","https://raw.githubusercontent.com/altair-viz/altair/master/pyproject.toml"],"_requirements_localurls":["altair-viz~altair~requirements.txt","altair-viz~altair~setup.py","altair-viz~altair~pyproject.toml"]},{"index":116,"category":"ml-ops","githuburl":"https://github.com/kedro-org/kedro","featured":null,"links":"From: https://github.com/quantumblacklabs/kedro","description":null,"_repopath":"kedro-org/kedro","_reponame":"kedro","_stars":7871,"_forks":739,"_watches":103,"_topics":["pipeline","kedro","hacktoberfest","mlops","experiment-tracking","python","machine-learning"],"_language":"Python","_homepage":"https://kedro.org","_description":"kedro: A Python framework for creating reproducible, maintainable and modular data science code.","_organization":"kedro-org","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-04-18T00:00:00.000Z","_age_weeks":189,"_stars_per_week":41.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kedro-org/kedro/master/README.md","_readme_localurl":"kedro-org~kedro~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/kedro-org/kedro/master/setup.py","https://raw.githubusercontent.com/kedro-org/kedro/master/pyproject.toml"],"_requirements_localurls":["kedro-org~kedro~setup.py","kedro-org~kedro~pyproject.toml"]},{"index":706,"category":"sim","githuburl":"https://github.com/isl-org/open3d","featured":null,"links":null,"description":null,"_repopath":"isl-org/open3d","_reponame":"Open3D","_stars":7773,"_forks":1830,"_watches":171,"_topics":["mesh-processing","computer-graphics","opengl","cpp","python","reconstruction","odometry","visualization","registration","machine-learning","3d","pointcloud","rendering","gui","3d-perception","gpu","arm","cuda","pytorch","tensorflow"],"_language":"C++","_homepage":"http://www.open3d.org","_description":"Open3D: A Modern Library for 3D Data Processing","_organization":"isl-org","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2016-12-02T00:00:00.000Z","_age_weeks":313,"_stars_per_week":24.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/isl-org/open3d/master/README.md","_readme_localurl":"isl-org~open3d~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":7,"category":"util","githuburl":"https://github.com/boto/boto3","featured":null,"links":null,"description":null,"_repopath":"boto/boto3","_reponame":"boto3","_stars":7751,"_forks":1685,"_watches":238,"_topics":["python","aws","cloud","cloud-management","aws-sdk"],"_language":"Python","_homepage":"https://aws.amazon.com/sdk-for-python/","_description":"boto3: AWS SDK for Python","_organization":"boto","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2014-10-03T00:00:00.000Z","_age_weeks":426,"_stars_per_week":18.16,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/boto/boto3/master/README.rst","_readme_localurl":"boto~boto3~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/boto/boto3/master/requirements.txt","https://raw.githubusercontent.com/boto/boto3/master/setup.py","https://raw.githubusercontent.com/boto/boto3/master/pyproject.toml"],"_requirements_localurls":["boto~boto3~requirements.txt","boto~boto3~setup.py","boto~boto3~pyproject.toml"]},{"index":29,"category":"ml-ops","githuburl":"https://github.com/great-expectations/great_expectations","featured":null,"links":null,"description":null,"_repopath":"great-expectations/great_expectations","_reponame":"great_expectations","_stars":7712,"_forks":1144,"_watches":70,"_topics":["pipeline-tests","dataquality","datacleaning","datacleaner","data-science","data-profiling","pipeline","pipeline-testing","cleandata","dataunittest","data-unit-tests","eda","exploratory-data-analysis","exploratory-analysis","exploratorydataanalysis","data-quality","data-engineering","pipeline-debt","data-profilers","mlops"],"_language":"Python","_homepage":"https://docs.greatexpectations.io/","_description":"great_expectations: Always know what to expect from your data.","_organization":"great-expectations","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2017-09-11T00:00:00.000Z","_age_weeks":273,"_stars_per_week":28.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/great-expectations/great_expectations/master/README.md","_readme_localurl":"great-expectations~great_expectations~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/great-expectations/great_expectations/master/requirements.txt","https://raw.githubusercontent.com/great-expectations/great_expectations/master/setup.py","https://raw.githubusercontent.com/great-expectations/great_expectations/master/pyproject.toml"],"_requirements_localurls":["great-expectations~great_expectations~requirements.txt","great-expectations~great_expectations~setup.py","great-expectations~great_expectations~pyproject.toml"]},{"index":422,"category":"ml-dl","githuburl":"https://github.com/pyro-ppl/pyro","featured":null,"links":null,"description":null,"_repopath":"pyro-ppl/pyro","_reponame":"pyro","_stars":7698,"_forks":939,"_watches":203,"_topics":["python","pytorch","machine-learning","bayesian","probabilistic-programming","bayesian-inference","variational-inference","probabilistic-modeling","deep-learning"],"_language":"Python","_homepage":"http://pyro.ai","_description":"pyro: Deep universal probabilistic programming with Python and PyTorch","_organization":"pyro-ppl","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2017-06-16T00:00:00.000Z","_age_weeks":285,"_stars_per_week":26.94,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyro-ppl/pyro/master/README.md","_readme_localurl":"pyro-ppl~pyro~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyro-ppl/pyro/master/setup.py"],"_requirements_localurls":["pyro-ppl~pyro~setup.py"]},{"index":394,"category":"web","githuburl":"https://github.com/encode/starlette","featured":null,"links":null,"description":null,"_repopath":"encode/starlette","_reponame":"starlette","_stars":7651,"_forks":689,"_watches":110,"_topics":["python","async","websockets","graphql","http"],"_language":"Python","_homepage":"https://www.starlette.io/","_description":"starlette: The little ASGI framework that shines. \ud83c\udf1f","_organization":"encode","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2018-06-25T00:00:00.000Z","_age_weeks":232,"_stars_per_week":32.94,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/encode/starlette/master/README.md","_readme_localurl":"encode~starlette~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/encode/starlette/master/requirements.txt","https://raw.githubusercontent.com/encode/starlette/master/setup.py","https://raw.githubusercontent.com/encode/starlette/master/pyproject.toml"],"_requirements_localurls":["encode~starlette~requirements.txt","encode~starlette~setup.py","encode~starlette~pyproject.toml"]},{"index":367,"category":"ml","githuburl":"https://github.com/megvii-basedetection/yolox","featured":null,"links":null,"description":null,"_repopath":"megvii-basedetection/yolox","_reponame":"YOLOX","_stars":7636,"_forks":1828,"_watches":72,"_topics":["yolox","yolov3","onnx","tensorrt","ncnn","openvino","pytorch","megengine","object-detection","yolo","deep-learning"],"_language":"Python","_homepage":"","_description":"YOLOX is a high-performance anchor-free YOLO, exceeding yolov3~v5 with MegEngine, ONNX, TensorRT, ncnn, and OpenVINO supported. Documentation: https://yolox.readthedocs.io/","_organization":"megvii-basedetection","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2021-07-17T00:00:00.000Z","_age_weeks":72,"_stars_per_week":105.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/megvii-basedetection/yolox/master/README.md","_readme_localurl":"megvii-basedetection~yolox~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/megvii-basedetection/yolox/master/requirements.txt","https://raw.githubusercontent.com/megvii-basedetection/yolox/master/setup.py"],"_requirements_localurls":["megvii-basedetection~yolox~requirements.txt","megvii-basedetection~yolox~setup.py"]},{"index":615,"category":"testing","githuburl":"https://github.com/robotframework/robotframework","featured":null,"links":null,"description":null,"_repopath":"robotframework/robotframework","_reponame":"robotframework","_stars":7608,"_forks":2047,"_watches":483,"_topics":["robotframework","testing","automation","testautomation","attd","bdd","rpa","python"],"_language":"Python","_homepage":"http://robotframework.org","_description":"robotframework: Generic automation framework for acceptance testing and RPA","_organization":"robotframework","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-20T00:00:00.000Z","_created_at":"2014-06-27T00:00:00.000Z","_age_weeks":440,"_stars_per_week":17.26,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/robotframework/robotframework/master/README.rst","_readme_localurl":"robotframework~robotframework~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/robotframework/robotframework/master/setup.py"],"_requirements_localurls":["robotframework~robotframework~setup.py"]},{"index":815,"category":"ml-dl","githuburl":"https://github.com/danielgatis/rembg","featured":null,"links":null,"description":null,"_repopath":"danielgatis/rembg","_reponame":"rembg","_stars":7549,"_forks":955,"_watches":99,"_topics":["image-processing","background-removal","python"],"_language":"Python","_homepage":"","_description":"Rembg is a tool to remove images background.","_organization":"danielgatis","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2020-08-10T00:00:00.000Z","_age_weeks":121,"_stars_per_week":62.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/danielgatis/rembg/master/README.md","_readme_localurl":"danielgatis~rembg~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/danielgatis/rembg/master/requirements.txt","https://raw.githubusercontent.com/danielgatis/rembg/master/setup.py","https://raw.githubusercontent.com/danielgatis/rembg/master/pyproject.toml"],"_requirements_localurls":["danielgatis~rembg~requirements.txt","danielgatis~rembg~setup.py","danielgatis~rembg~pyproject.toml"]},{"index":495,"category":"data","githuburl":"https://github.com/duckdb/duckdb","featured":1.0,"links":null,"description":null,"_repopath":"duckdb/duckdb","_reponame":"duckdb","_stars":7538,"_forks":716,"_watches":114,"_topics":["sql","database","olap","analytics","embedded-database"],"_language":"C++","_homepage":"http://www.duckdb.org","_description":"DuckDB is an in-process SQL OLAP Database Management System","_organization":"duckdb","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2018-06-26T00:00:00.000Z","_age_weeks":232,"_stars_per_week":32.47,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/duckdb/duckdb/master/README.md","_readme_localurl":"duckdb~duckdb~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":10,"category":"util","githuburl":"https://github.com/cython/cython","featured":null,"links":null,"description":null,"_repopath":"cython/cython","_reponame":"cython","_stars":7498,"_forks":1343,"_watches":230,"_topics":["python","cython","cpython","cpython-extensions","c","cpp","performance","big-data"],"_language":"Python","_homepage":"https://cython.org","_description":"cython: The most widely used Python to C compiler","_organization":"cython","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2010-11-21T00:00:00.000Z","_age_weeks":628,"_stars_per_week":11.93,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/cython/cython/master/README.rst","_readme_localurl":"cython~cython~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/cython/cython/master/setup.py"],"_requirements_localurls":["cython~cython~setup.py"]},{"index":322,"category":"web","githuburl":"https://github.com/graphql-python/graphene","featured":null,"links":null,"description":null,"_repopath":"graphql-python/graphene","_reponame":"graphene","_stars":7484,"_forks":803,"_watches":146,"_topics":["graphql","python","relay","framework","graphene"],"_language":"Python","_homepage":"http://graphene-python.org/","_description":"graphene: GraphQL framework for Python","_organization":"graphql-python","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2015-09-24T00:00:00.000Z","_age_weeks":375,"_stars_per_week":19.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/graphql-python/graphene/master/README.md","_readme_localurl":"graphql-python~graphene~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/graphql-python/graphene/master/setup.py"],"_requirements_localurls":["graphql-python~graphene~setup.py"]},{"index":440,"category":"ml-dl","githuburl":"https://github.com/kornia/kornia","featured":null,"links":null,"description":null,"_repopath":"kornia/kornia","_reponame":"kornia","_stars":7480,"_forks":750,"_watches":118,"_topics":["computer-vision","image-processing","machine-learning","pytorch","deep-learning","neural-network","python","artificial-intelligence"],"_language":"Python","_homepage":"https://kornia.github.io/kornia/","_description":"kornia: Open Source Differentiable Computer Vision Library","_organization":"kornia","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2018-08-22T00:00:00.000Z","_age_weeks":224,"_stars_per_week":33.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kornia/kornia/master/README.md","_readme_localurl":"kornia~kornia~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/kornia/kornia/master/setup.py","https://raw.githubusercontent.com/kornia/kornia/master/pyproject.toml"],"_requirements_localurls":["kornia~kornia~setup.py","kornia~kornia~pyproject.toml"]},{"index":759,"category":"diffusion","githuburl":"https://github.com/invoke-ai/invokeai","featured":null,"links":null,"description":null,"_repopath":"invoke-ai/invokeai","_reponame":"InvokeAI","_stars":7444,"_forks":843,"_watches":82,"_topics":["ai-art","artificial-intelligence","generative-art","image-generation","img2img","inpainting","latent-diffusion","linux","macos","outpainting","txt2img","windows","stable-diffusion"],"_language":"Jupyter Notebook","_homepage":"https://invoke-ai.github.io/InvokeAI/","_description":"InvokeAI: This version of Stable Diffusion features a slick WebGUI, an interactive command-line script that combines text2img and img2img functionality in a \"dream bot\" style interface, and multiple features and other enhancements. For more info, see the website link below.","_organization":"invoke-ai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2022-08-17T00:00:00.000Z","_age_weeks":16,"_stars_per_week":465.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/invoke-ai/invokeai/master/README.md","_readme_localurl":"invoke-ai~invokeai~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/invoke-ai/invokeai/master/setup.py"],"_requirements_localurls":["invoke-ai~invokeai~setup.py"]},{"index":95,"category":"perf","githuburl":"https://github.com/vaexio/vaex","featured":null,"links":null,"description":null,"_repopath":"vaexio/vaex","_reponame":"vaex","_stars":7435,"_forks":573,"_watches":141,"_topics":["dataframe","python","bigdata","tabular-data","visualization","memory-mapped-file","hdf5","machine-learning","machinelearning","data-science","pyarrow"],"_language":"Python","_homepage":"https://vaex.io","_description":"vaex: Out-of-Core hybrid Apache Arrow/NumPy DataFrame for Python, ML, visualization and exploration of big tabular data at a billion rows per second \ud83d\ude80","_organization":"vaexio","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2014-09-27T00:00:00.000Z","_age_weeks":427,"_stars_per_week":17.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vaexio/vaex/master/README.md","_readme_localurl":"vaexio~vaex~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/vaexio/vaex/master/setup.py"],"_requirements_localurls":["vaexio~vaex~setup.py"]},{"index":470,"category":"nlp","githuburl":"https://github.com/microsoft/unilm","featured":null,"links":null,"description":null,"_repopath":"microsoft/unilm","_reponame":"unilm","_stars":7384,"_forks":1354,"_watches":177,"_topics":["nlp","language-understanding","language-generation","pre-trained-model","small-pre-trained-model","unilm","minilm","layoutlm","infoxlm","multimodal-pre-trained-model","layoutxlm","beit","document-ai","trocr","wavlm","beit-3","foundation-models","xlm-e","deepnet","document-foundation-model"],"_language":"Python","_homepage":"https://aka.ms/nlpagi","_description":"unilm: Large-scale Self-supervised Pre-training Across Tasks, Languages, and Modalities","_organization":"microsoft","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2019-07-23T00:00:00.000Z","_age_weeks":176,"_stars_per_week":41.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/unilm/master/README.md","_readme_localurl":"microsoft~unilm~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":547,"category":"ml","githuburl":"https://github.com/optuna/optuna","featured":null,"links":null,"description":null,"_repopath":"optuna/optuna","_reponame":"optuna","_stars":7264,"_forks":784,"_watches":122,"_topics":["python","machine-learning","parallel","distributed","hyperparameter-optimization","hacktoberfest"],"_language":"Python","_homepage":"https://optuna.org","_description":"optuna: A hyperparameter optimization framework","_organization":"optuna","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2018-02-21T00:00:00.000Z","_age_weeks":250,"_stars_per_week":29.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/optuna/optuna/master/README.md","_readme_localurl":"optuna~optuna~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/optuna/optuna/master/setup.py","https://raw.githubusercontent.com/optuna/optuna/master/pyproject.toml"],"_requirements_localurls":["optuna~optuna~setup.py","optuna~optuna~pyproject.toml"]},{"index":28,"category":"ml-dl","githuburl":"https://github.com/google/trax","featured":null,"links":null,"description":null,"_repopath":"google/trax","_reponame":"trax","_stars":7203,"_forks":751,"_watches":145,"_topics":["jax","numpy","deep-learning","deep-reinforcement-learning","machine-learning","transformer","reinforcement-learning"],"_language":"Python","_homepage":"","_description":"Trax \u2014 Deep Learning with Clear Code and Speed","_organization":"google","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-09T00:00:00.000Z","_created_at":"2019-10-05T00:00:00.000Z","_age_weeks":165,"_stars_per_week":43.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/trax/master/README.md","_readme_localurl":"google~trax~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/trax/master/setup.py"],"_requirements_localurls":["google~trax~setup.py"]},{"index":70,"category":"ml","githuburl":"https://github.com/pymc-devs/pymc3","featured":null,"links":null,"description":null,"_repopath":"pymc-devs/pymc3","_reponame":"pymc","_stars":7175,"_forks":1705,"_watches":224,"_topics":["python","statistical-analysis","bayesian-inference","mcmc","variational-inference","probabilistic-programming","aesara","hacktoberfest","pytensor"],"_language":"Python","_homepage":"https://docs.pymc.io/","_description":"pymc: Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with PyTensor","_organization":"pymc-devs","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2009-05-05T00:00:00.000Z","_age_weeks":709,"_stars_per_week":10.12,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pymc-devs/pymc3/master/README.rst","_readme_localurl":"pymc-devs~pymc3~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pymc-devs/pymc3/master/requirements.txt","https://raw.githubusercontent.com/pymc-devs/pymc3/master/setup.py","https://raw.githubusercontent.com/pymc-devs/pymc3/master/pyproject.toml"],"_requirements_localurls":["pymc-devs~pymc3~requirements.txt","pymc-devs~pymc3~setup.py","pymc-devs~pymc3~pyproject.toml"]},{"index":455,"category":"ml-dl","githuburl":"https://github.com/tensorlayer/tensorlayer","featured":null,"links":null,"description":null,"_repopath":"tensorlayer/tensorlayer","_reponame":"TensorLayer","_stars":7119,"_forks":1609,"_watches":462,"_topics":["tensorlayer","deep-learning","tensorflow","neural-network","reinforcement-learning","artificial-intelligence","gan","a3c","tensorflow-tutorials","dqn","object-detection","chatbot","python","tensorflow-tutorial","imagenet","google"],"_language":"Python","_homepage":"http://tensorlayer.org","_description":"TensorLayer: Deep Learning and Reinforcement Learning Library for Scientists and Engineers ","_organization":"tensorlayer","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-04-23T00:00:00.000Z","_created_at":"2016-06-07T00:00:00.000Z","_age_weeks":339,"_stars_per_week":20.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorlayer/tensorlayer/master/README.md","_readme_localurl":"tensorlayer~tensorlayer~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorlayer/tensorlayer/master/setup.py"],"_requirements_localurls":["tensorlayer~tensorlayer~setup.py"]},{"index":165,"category":"nlp","githuburl":"https://github.com/doccano/doccano","featured":null,"links":null,"description":null,"_repopath":"doccano/doccano","_reponame":"doccano","_stars":7013,"_forks":1445,"_watches":121,"_topics":["natural-language-processing","machine-learning","annotation-tool","python","datasets","dataset","data-labeling","text-annotation","nuxtjs","vue","vuejs","nuxt"],"_language":"Python","_homepage":"https://doccano.herokuapp.com","_description":"doccano: Open source annotation tool for machine learning practitioners.","_organization":"doccano","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2018-05-09T00:00:00.000Z","_age_weeks":239,"_stars_per_week":29.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/doccano/doccano/master/README.md","_readme_localurl":"doccano~doccano~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":846,"category":"time-series","githuburl":"https://github.com/blue-yonder/tsfresh","featured":null,"links":null,"description":null,"_repopath":"blue-yonder/tsfresh","_reponame":"tsfresh","_stars":6919,"_forks":1086,"_watches":159,"_topics":["data-science","feature-extraction","time-series"],"_language":"Jupyter Notebook","_homepage":"http://tsfresh.readthedocs.io","_description":"tsfresh: Automatic extraction of relevant features from time series:","_organization":"blue-yonder","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-18T00:00:00.000Z","_created_at":"2016-10-26T00:00:00.000Z","_age_weeks":319,"_stars_per_week":21.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/blue-yonder/tsfresh/master/README.md","_readme_localurl":"blue-yonder~tsfresh~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":868,"category":"ml-dl","githuburl":"https://github.com/hpcaitech/colossalai","featured":null,"links":null,"description":null,"_repopath":"hpcaitech/colossalai","_reponame":"ColossalAI","_stars":6901,"_forks":649,"_watches":88,"_topics":["deep-learning","hpc","large-scale","data-parallelism","pipeline-parallelism","model-parallelism","ai","big-model","distributed-computing","inference","heterogeneous-training"],"_language":"Python","_homepage":"https://www.colossalai.org/","_description":"ColossalAI: Colossal-AI: A Unified Deep Learning System for Big Model Era","_organization":"hpcaitech","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2021-10-28T00:00:00.000Z","_age_weeks":57,"_stars_per_week":119.28,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hpcaitech/colossalai/master/README.md","_readme_localurl":"hpcaitech~colossalai~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hpcaitech/colossalai/master/setup.py"],"_requirements_localurls":["hpcaitech~colossalai~setup.py"]},{"index":150,"category":"ml","githuburl":"https://github.com/catboost/catboost","featured":null,"links":null,"description":null,"_repopath":"catboost/catboost","_reponame":"catboost","_stars":6830,"_forks":1067,"_watches":194,"_topics":["machine-learning","decision-trees","gradient-boosting","gbm","gbdt","python","r","kaggle","gpu-computing","catboost","tutorial","categorical-features","gpu","coreml","data-science","big-data","cuda","data-mining"],"_language":"C","_homepage":"https://catboost.ai","_description":"catboost: A fast, scalable, high performance Gradient Boosting on Decision Trees library, used for ranking, classification, regression and other machine learning tasks for Python, R, Java, C++. Supports computation on CPU and GPU.","_organization":"catboost","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2017-07-18T00:00:00.000Z","_age_weeks":281,"_stars_per_week":24.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/catboost/catboost/master/README.md","_readme_localurl":"catboost~catboost~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":758,"category":"diffusion","githuburl":"https://github.com/divamgupta/diffusionbee-stable-diffusion-ui","featured":null,"links":null,"description":null,"_repopath":"divamgupta/diffusionbee-stable-diffusion-ui","_reponame":"diffusionbee-stable-diffusion-ui","_stars":6794,"_forks":263,"_watches":67,"_topics":["electron-app","macos","stable-diffusion"],"_language":"JavaScript","_homepage":"https://diffusionbee.com","_description":"diffusionbee-stable-diffusion-ui: Diffusion Bee is the easiest way to run Stable Diffusion locally on your M1 Mac. Comes with a one-click installer. No dependencies or technical knowledge needed.","_organization":"divamgupta","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2022-09-06T00:00:00.000Z","_age_weeks":13,"_stars_per_week":516.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/divamgupta/diffusionbee-stable-diffusion-ui/master/README.md","_readme_localurl":"divamgupta~diffusionbee-stable-diffusion-ui~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":171,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/pytorch3d","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/pytorch3d","_reponame":"pytorch3d","_stars":6781,"_forks":1026,"_watches":140,"_topics":[],"_language":"Python","_homepage":"https://pytorch3d.org/","_description":"PyTorch3D is FAIR's library of reusable components for deep learning with 3D data","_organization":"facebookresearch","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2019-10-25T00:00:00.000Z","_age_weeks":162,"_stars_per_week":41.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/pytorch3d/master/README.md","_readme_localurl":"facebookresearch~pytorch3d~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/pytorch3d/master/setup.py"],"_requirements_localurls":["facebookresearch~pytorch3d~setup.py"]},{"index":650,"category":"profiling","githuburl":"https://github.com/plasma-umass/scalene","featured":1.0,"links":null,"description":null,"_repopath":"plasma-umass/scalene","_reponame":"scalene","_stars":6772,"_forks":232,"_watches":67,"_topics":["python","profiling","performance-analysis","cpu-profiling","profiler","python-profilers","gpu-programming","scalene","profiles-memory","performance-cpu","cpu","memory-allocation","gpu","memory-consumption"],"_language":"JavaScript","_homepage":"","_description":"Scalene: a high-performance, high-precision CPU, GPU, and memory profiler for Python","_organization":"plasma-umass","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2019-12-17T00:00:00.000Z","_age_weeks":155,"_stars_per_week":43.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/plasma-umass/scalene/master/README.md","_readme_localurl":"plasma-umass~scalene~README.md","_requirements_filenames":["requirements.txt","setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/plasma-umass/scalene/master/requirements.txt","https://raw.githubusercontent.com/plasma-umass/scalene/master/setup.py","https://raw.githubusercontent.com/plasma-umass/scalene/master/Pipfile"],"_requirements_localurls":["plasma-umass~scalene~requirements.txt","plasma-umass~scalene~setup.py","plasma-umass~scalene~Pipfile"]},{"index":286,"category":"data","githuburl":"https://github.com/simonw/datasette","featured":1.0,"links":null,"description":null,"_repopath":"simonw/datasette","_reponame":"datasette","_stars":6729,"_forks":470,"_watches":99,"_topics":["sqlite","python","datasets","json","docker","datasette","automatic-api","asgi","csv","datasette-io","sql"],"_language":"Python","_homepage":"https://datasette.io","_description":"datasette: An open source multi-tool for exploring and publishing data","_organization":"simonw","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2017-10-23T00:00:00.000Z","_age_weeks":267,"_stars_per_week":25.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/simonw/datasette/master/README.md","_readme_localurl":"simonw~datasette~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/simonw/datasette/master/setup.py"],"_requirements_localurls":["simonw~datasette~setup.py"]},{"index":131,"category":"ml","githuburl":"https://github.com/automl/auto-sklearn","featured":null,"links":null,"description":null,"_repopath":"automl/auto-sklearn","_reponame":"auto-sklearn","_stars":6650,"_forks":1208,"_watches":213,"_topics":["automl","scikit-learn","automated-machine-learning","hyperparameter-optimization","hyperparameter-tuning","hyperparameter-search","bayesian-optimization","metalearning","meta-learning","smac"],"_language":"Python","_homepage":"https://automl.github.io/auto-sklearn","_description":"auto-sklearn: Automated Machine Learning with scikit-learn","_organization":"automl","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2015-07-02T00:00:00.000Z","_age_weeks":387,"_stars_per_week":17.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/automl/auto-sklearn/master/README.md","_readme_localurl":"automl~auto-sklearn~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/automl/auto-sklearn/master/requirements.txt","https://raw.githubusercontent.com/automl/auto-sklearn/master/setup.py","https://raw.githubusercontent.com/automl/auto-sklearn/master/pyproject.toml"],"_requirements_localurls":["automl~auto-sklearn~requirements.txt","automl~auto-sklearn~setup.py","automl~auto-sklearn~pyproject.toml"]},{"index":824,"category":"study","githuburl":"https://github.com/firmai/industry-machine-learning","featured":null,"links":null,"description":null,"_repopath":"firmai/industry-machine-learning","_reponame":"industry-machine-learning","_stars":6646,"_forks":1120,"_watches":392,"_topics":["machine-learning","jupyter-notebook","datascience","example","python","practical-machine-learning","data-science","firmai"],"_language":"Jupyter Notebook","_homepage":"https://www.linkedin.com/company/firmai","_description":"industry-machine-learning: A curated list of applied machine learning and data science notebooks and libraries across different industries (by @firmai)","_organization":"firmai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2021-12-18T00:00:00.000Z","_created_at":"2019-05-03T00:00:00.000Z","_age_weeks":187,"_stars_per_week":35.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/firmai/industry-machine-learning/master/README.md","_readme_localurl":"firmai~industry-machine-learning~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":65,"category":"ml","githuburl":"https://github.com/pycaret/pycaret","featured":null,"links":null,"description":null,"_repopath":"pycaret/pycaret","_reponame":"pycaret","_stars":6625,"_forks":1514,"_watches":124,"_topics":["data-science","citizen-data-scientists","python","machine-learning","pycaret","ml","gpu","time-series","regression","classification","anomaly-detection","nlp","clustering"],"_language":"Jupyter Notebook","_homepage":"https://www.pycaret.org","_description":"pycaret: An open-source, low-code machine learning library in Python","_organization":"pycaret","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-11-23T00:00:00.000Z","_age_weeks":158,"_stars_per_week":41.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pycaret/pycaret/master/README.md","_readme_localurl":"pycaret~pycaret~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pycaret/pycaret/master/requirements.txt","https://raw.githubusercontent.com/pycaret/pycaret/master/setup.py"],"_requirements_localurls":["pycaret~pycaret~requirements.txt","pycaret~pycaret~setup.py"]},{"index":197,"category":"nlp","githuburl":"https://github.com/eleutherai/gpt-neo","featured":null,"links":null,"description":null,"_repopath":"eleutherai/gpt-neo","_reponame":"gpt-neo","_stars":6582,"_forks":579,"_watches":159,"_topics":["language-model","transformers","gpt","gpt-2","gpt-3"],"_language":"Python","_homepage":"https://www.eleuther.ai","_description":"gpt-neo: An implementation of model parallel GPT-2 and GPT-3-style models using the mesh-tensorflow library.","_organization":"eleutherai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-02-25T00:00:00.000Z","_created_at":"2020-07-05T00:00:00.000Z","_age_weeks":126,"_stars_per_week":52.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/eleutherai/gpt-neo/master/README.md","_readme_localurl":"eleutherai~gpt-neo~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/eleutherai/gpt-neo/master/requirements.txt"],"_requirements_localurls":["eleutherai~gpt-neo~requirements.txt"]},{"index":532,"category":"util","githuburl":"https://github.com/facebookresearch/hydra","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/hydra","_reponame":"hydra","_stars":6572,"_forks":524,"_watches":81,"_topics":[],"_language":"Python","_homepage":"https://hydra.cc","_description":"Hydra is a framework for elegantly configuring complex applications","_organization":"facebookresearch","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-06-12T00:00:00.000Z","_age_weeks":182,"_stars_per_week":36.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/hydra/master/README.md","_readme_localurl":"facebookresearch~hydra~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/hydra/master/setup.py","https://raw.githubusercontent.com/facebookresearch/hydra/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~hydra~setup.py","facebookresearch~hydra~pyproject.toml"]},{"index":67,"category":"web","githuburl":"https://github.com/pyeve/eve","featured":null,"links":null,"description":null,"_repopath":"pyeve/eve","_reponame":"eve","_stars":6563,"_forks":752,"_watches":228,"_topics":["python","rest","flask","mongodb"],"_language":"Python","_homepage":"https://python-eve.org","_description":"eve: REST API framework designed for human beings","_organization":"pyeve","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-11-10T00:00:00.000Z","_created_at":"2012-10-22T00:00:00.000Z","_age_weeks":528,"_stars_per_week":12.42,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyeve/eve/master/README.rst","_readme_localurl":"pyeve~eve~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyeve/eve/master/setup.py","https://raw.githubusercontent.com/pyeve/eve/master/pyproject.toml"],"_requirements_localurls":["pyeve~eve~setup.py","pyeve~eve~pyproject.toml"]},{"index":389,"category":"data","githuburl":"https://github.com/yzhao062/pyod","featured":null,"links":null,"description":null,"_repopath":"yzhao062/pyod","_reponame":"pyod","_stars":6529,"_forks":1214,"_watches":150,"_topics":["outlier-detection","anomaly-detection","outlier-ensembles","outliers","anomaly","python","machine-learning","data-mining","unsupervised-learning","python2","python3","fraud-detection","autoencoder","neural-networks","deep-learning","data-science","data-analysis","novelty-detection","out-of-distribution-detection"],"_language":"Python","_homepage":"http://pyod.readthedocs.io","_description":"pyod: A Comprehensive and Scalable Python Library for Outlier Detection (Anomaly Detection)","_organization":"yzhao062","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-24T00:00:00.000Z","_created_at":"2017-10-03T00:00:00.000Z","_age_weeks":270,"_stars_per_week":24.17,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/yzhao062/pyod/master/README.rst","_readme_localurl":"yzhao062~pyod~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/yzhao062/pyod/master/requirements.txt","https://raw.githubusercontent.com/yzhao062/pyod/master/setup.py"],"_requirements_localurls":["yzhao062~pyod~requirements.txt","yzhao062~pyod~setup.py"]},{"index":133,"category":"ml","githuburl":"https://github.com/hyperopt/hyperopt","featured":null,"links":null,"description":null,"_repopath":"hyperopt/hyperopt","_reponame":"hyperopt","_stars":6496,"_forks":1001,"_watches":126,"_topics":[],"_language":"Python","_homepage":"http://hyperopt.github.io/hyperopt","_description":"hyperopt: Distributed Asynchronous Hyperparameter Optimization in Python","_organization":"hyperopt","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2021-11-29T00:00:00.000Z","_created_at":"2011-09-06T00:00:00.000Z","_age_weeks":587,"_stars_per_week":11.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hyperopt/hyperopt/master/README.md","_readme_localurl":"hyperopt~hyperopt~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hyperopt/hyperopt/master/setup.py"],"_requirements_localurls":["hyperopt~hyperopt~setup.py"]},{"index":215,"category":"debug","githuburl":"https://github.com/gruns/icecream","featured":null,"links":null,"description":null,"_repopath":"gruns/icecream","_reponame":"icecream","_stars":6449,"_forks":134,"_watches":50,"_topics":["python","python3","library","inspects","debug","debugging","debugging-tool","print"],"_language":"Python","_homepage":"","_description":"icecream: \ud83c\udf66 Never use print() to debug again.","_organization":"gruns","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2018-02-13T00:00:00.000Z","_age_weeks":251,"_stars_per_week":25.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gruns/icecream/master/README.md","_readme_localurl":"gruns~icecream~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gruns/icecream/master/setup.py"],"_requirements_localurls":["gruns~icecream~setup.py"]},{"index":716,"category":"util","githuburl":"https://github.com/jazzband/pip-tools","featured":null,"links":null,"description":null,"_repopath":"jazzband/pip-tools","_reponame":"pip-tools","_stars":6442,"_forks":551,"_watches":105,"_topics":["python","packaging","pip","pip-tools","pip-compile","setuptools","requirements","lockfile","hashes"],"_language":"Python","_homepage":"https://pip-tools.rtfd.io","_description":"pip-tools: A set of tools to keep your pinned Python dependencies fresh.","_organization":"jazzband","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2012-09-10T00:00:00.000Z","_age_weeks":534,"_stars_per_week":12.06,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jazzband/pip-tools/master/README.rst","_readme_localurl":"jazzband~pip-tools~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jazzband/pip-tools/master/setup.py","https://raw.githubusercontent.com/jazzband/pip-tools/master/pyproject.toml"],"_requirements_localurls":["jazzband~pip-tools~setup.py","jazzband~pip-tools~pyproject.toml"]},{"index":82,"category":"data","githuburl":"https://github.com/sqlalchemy/sqlalchemy","featured":null,"links":null,"description":null,"_repopath":"sqlalchemy/sqlalchemy","_reponame":"sqlalchemy","_stars":6408,"_forks":1022,"_watches":95,"_topics":["sqlalchemy","sql","python"],"_language":"Python","_homepage":"https://www.sqlalchemy.org","_description":"sqlalchemy: The Database Toolkit for Python","_organization":"sqlalchemy","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2018-11-27T00:00:00.000Z","_age_weeks":210,"_stars_per_week":30.49,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sqlalchemy/sqlalchemy/master/README.rst","_readme_localurl":"sqlalchemy~sqlalchemy~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sqlalchemy/sqlalchemy/master/setup.py","https://raw.githubusercontent.com/sqlalchemy/sqlalchemy/master/pyproject.toml"],"_requirements_localurls":["sqlalchemy~sqlalchemy~setup.py","sqlalchemy~sqlalchemy~pyproject.toml"]},{"index":141,"category":"ml","githuburl":"https://github.com/featurelabs/featuretools","featured":1.0,"links":null,"description":null,"_repopath":"featurelabs/featuretools","_reponame":"featuretools","_stars":6406,"_forks":834,"_watches":158,"_topics":["feature-engineering","machine-learning","data-science","automated-machine-learning","automl","python","scikit-learn","automated-feature-engineering"],"_language":"Python","_homepage":"https://www.featuretools.com","_description":"featuretools: An open source python library for automated feature engineering","_organization":"featurelabs","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2017-09-08T00:00:00.000Z","_age_weeks":273,"_stars_per_week":23.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/featurelabs/featuretools/master/README.md","_readme_localurl":"featurelabs~featuretools~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/featurelabs/featuretools/master/pyproject.toml"],"_requirements_localurls":["featurelabs~featuretools~pyproject.toml"]},{"index":288,"category":"testing","githuburl":"https://github.com/hypothesisworks/hypothesis","featured":1.0,"links":null,"description":null,"_repopath":"hypothesisworks/hypothesis","_reponame":"hypothesis","_stars":6373,"_forks":537,"_watches":69,"_topics":["python","testing","fuzzing","property-based-testing"],"_language":"Python","_homepage":"https://hypothesis.works","_description":"Hypothesis is a powerful, flexible, and easy to use library for property-based testing.","_organization":"hypothesisworks","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2013-03-10T00:00:00.000Z","_age_weeks":508,"_stars_per_week":12.53,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/hypothesisworks/hypothesis/master/README.rst","_readme_localurl":"hypothesisworks~hypothesis~README.rst","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":153,"category":"util","githuburl":"https://github.com/marshmallow-code/marshmallow","featured":null,"links":null,"description":null,"_repopath":"marshmallow-code/marshmallow","_reponame":"marshmallow","_stars":6348,"_forks":622,"_watches":82,"_topics":["serialization","deserialization","validation","python","marshalling","python-3","serde","schema","hacktoberfest"],"_language":"Python","_homepage":"https://marshmallow.readthedocs.io/","_description":"marshmallow: A lightweight library for converting complex objects to and from simple Python datatypes.","_organization":"marshmallow-code","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2013-11-10T00:00:00.000Z","_age_weeks":473,"_stars_per_week":13.41,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/marshmallow-code/marshmallow/master/README.rst","_readme_localurl":"marshmallow-code~marshmallow~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/marshmallow-code/marshmallow/master/setup.py","https://raw.githubusercontent.com/marshmallow-code/marshmallow/master/pyproject.toml"],"_requirements_localurls":["marshmallow-code~marshmallow~setup.py","marshmallow-code~marshmallow~pyproject.toml"]},{"index":230,"category":"template","githuburl":"https://github.com/drivendata/cookiecutter-data-science","featured":1.0,"links":null,"description":null,"_repopath":"drivendata/cookiecutter-data-science","_reponame":"cookiecutter-data-science","_stars":6292,"_forks":2007,"_watches":112,"_topics":["cookiecutter-data-science","cookiecutter","cookiecutter-template","data-science","machine-learning","ai"],"_language":"Python","_homepage":"http://drivendata.github.io/cookiecutter-data-science/","_description":"cookiecutter-data-science: A logical, reasonably standardized, but flexible project structure for doing and sharing data science work.","_organization":"drivendata","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-03-11T00:00:00.000Z","_created_at":"2015-10-30T00:00:00.000Z","_age_weeks":370,"_stars_per_week":16.97,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/drivendata/cookiecutter-data-science/master/README.md","_readme_localurl":"drivendata~cookiecutter-data-science~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/drivendata/cookiecutter-data-science/master/requirements.txt"],"_requirements_localurls":["drivendata~cookiecutter-data-science~requirements.txt"]},{"index":602,"category":"testing","githuburl":"https://github.com/newsapps/beeswithmachineguns","featured":null,"links":null,"description":null,"_repopath":"newsapps/beeswithmachineguns","_reponame":"beeswithmachineguns","_stars":6260,"_forks":663,"_watches":227,"_topics":[],"_language":"Python","_homepage":"http://apps.chicagotribune.com/","_description":"beeswithmachineguns: A utility for arming (creating) many bees (micro EC2 instances) to attack (load test) targets (web applications).","_organization":"newsapps","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2017-12-20T00:00:00.000Z","_created_at":"2010-06-29T00:00:00.000Z","_age_weeks":649,"_stars_per_week":9.64,"_readme_filename":"","_readme_giturl":"","_readme_localurl":"","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/newsapps/beeswithmachineguns/master/requirements.txt","https://raw.githubusercontent.com/newsapps/beeswithmachineguns/master/setup.py"],"_requirements_localurls":["newsapps~beeswithmachineguns~requirements.txt","newsapps~beeswithmachineguns~setup.py"]},{"index":800,"category":"web","githuburl":"https://github.com/pallets/werkzeug","featured":null,"links":null,"description":null,"_repopath":"pallets/werkzeug","_reponame":"werkzeug","_stars":6226,"_forks":1663,"_watches":227,"_topics":["python","wsgi","werkzeug","http","pallets"],"_language":"Python","_homepage":"https://werkzeug.palletsprojects.com","_description":"werkzeug: The comprehensive WSGI web application library.","_organization":"pallets","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-01T00:00:00.000Z","_created_at":"2010-10-18T00:00:00.000Z","_age_weeks":633,"_stars_per_week":9.83,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/werkzeug/master/README.rst","_readme_localurl":"pallets~werkzeug~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/werkzeug/master/setup.py"],"_requirements_localurls":["pallets~werkzeug~setup.py"]},{"index":356,"category":"ml-ops","githuburl":"https://github.com/netflix/metaflow","featured":null,"links":null,"description":null,"_repopath":"netflix/metaflow","_reponame":"metaflow","_stars":6193,"_forks":577,"_watches":239,"_topics":["machine-learning","data-science","productivity","model-management","ai","ml","ml-platform","ml-infrastructure","python","r","rstats","reproducible-research","r-package","mlops","datascience","cli","high-performance-computing","kubernetes"],"_language":"Python","_homepage":"https://metaflow.org","_description":"metaflow: :rocket: Build and manage real-life data science projects with ease!","_organization":"netflix","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-09-17T00:00:00.000Z","_age_weeks":168,"_stars_per_week":36.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/netflix/metaflow/master/README.md","_readme_localurl":"netflix~metaflow~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/netflix/metaflow/master/setup.py"],"_requirements_localurls":["netflix~metaflow~setup.py"]},{"index":20,"category":"typing","githuburl":"https://github.com/facebook/pyre-check","featured":null,"links":null,"description":null,"_repopath":"facebook/pyre-check","_reponame":"pyre-check","_stars":6156,"_forks":405,"_watches":107,"_topics":["python","typechecker","type-check","static-analysis","ocaml","code-quality","abstract-interpretation","security","program-analysis","taint-analysis","control-flow-analysis"],"_language":"OCaml","_homepage":"https://pyre-check.org/","_description":"pyre-check: Performant type-checking for python.","_organization":"facebook","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2017-11-10T00:00:00.000Z","_age_weeks":264,"_stars_per_week":23.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebook/pyre-check/master/README.md","_readme_localurl":"facebook~pyre-check~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebook/pyre-check/master/requirements.txt","https://raw.githubusercontent.com/facebook/pyre-check/master/pyproject.toml"],"_requirements_localurls":["facebook~pyre-check~requirements.txt","facebook~pyre-check~pyproject.toml"]},{"index":382,"category":"ml-ops","githuburl":"https://github.com/deepset-ai/haystack","featured":null,"links":null,"description":null,"_repopath":"deepset-ai/haystack","_reponame":"haystack","_stars":6155,"_forks":955,"_watches":89,"_topics":["nlp","question-answering","bert","transfer-learning","language-model","pytorch","semantic-search","neural-search","squad","elasticsearch","dpr","information-retrieval","summarization","search-engine","transformers","natural-language-processing","machine-learning","ai","python"],"_language":"Python","_homepage":"https://deepset.ai/haystack","_description":"haystack: :mag: Haystack is an open source NLP framework that leverages pre-trained Transformer models. It enables developers to quickly implement production-ready semantic search, question answering, summarization and document ranking for a wide range of NLP applications.","_organization":"deepset-ai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2019-11-14T00:00:00.000Z","_age_weeks":159,"_stars_per_week":38.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/deepset-ai/haystack/master/README.md","_readme_localurl":"deepset-ai~haystack~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/deepset-ai/haystack/master/pyproject.toml"],"_requirements_localurls":["deepset-ai~haystack~pyproject.toml"]},{"index":459,"category":"ml-ops","githuburl":"https://github.com/dbt-labs/dbt-core","featured":null,"links":null,"description":null,"_repopath":"dbt-labs/dbt-core","_reponame":"dbt-core","_stars":6151,"_forks":1084,"_watches":128,"_topics":["dbt-viewpoint","slack","pypa","data-modeling","business-intelligence","analytics","elt"],"_language":"Python","_homepage":"https://getdbt.com","_description":"dbt-core: dbt enables data analysts and engineers to transform their data using the same practices that software engineers use to build applications.","_organization":"dbt-labs","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2016-03-10T00:00:00.000Z","_age_weeks":351,"_stars_per_week":17.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dbt-labs/dbt-core/master/README.md","_readme_localurl":"dbt-labs~dbt-core~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dbt-labs/dbt-core/master/requirements.txt","https://raw.githubusercontent.com/dbt-labs/dbt-core/master/setup.py"],"_requirements_localurls":["dbt-labs~dbt-core~requirements.txt","dbt-labs~dbt-core~setup.py"]},{"index":556,"category":"ml-dl","githuburl":"https://github.com/arogozhnikov/einops","featured":null,"links":null,"description":null,"_repopath":"arogozhnikov/einops","_reponame":"einops","_stars":6099,"_forks":264,"_watches":62,"_topics":["deep-learning","pytorch","tensorflow","numpy","gluon","cupy","chainer","keras","tensor","jax"],"_language":"Python","_homepage":"https://einops.rocks","_description":"einops: Deep learning operations reinvented (for pytorch, tensorflow, jax and others)","_organization":"arogozhnikov","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2018-09-22T00:00:00.000Z","_age_weeks":219,"_stars_per_week":27.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/arogozhnikov/einops/master/README.md","_readme_localurl":"arogozhnikov~einops~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/arogozhnikov/einops/master/pyproject.toml"],"_requirements_localurls":["arogozhnikov~einops~pyproject.toml"]},{"index":681,"category":"ml","githuburl":"https://github.com/hips/autograd","featured":null,"links":null,"description":null,"_repopath":"hips/autograd","_reponame":"autograd","_stars":6097,"_forks":842,"_watches":215,"_topics":[],"_language":"Python","_homepage":"","_description":"autograd: Efficiently computes derivatives of numpy code.","_organization":"hips","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-09-29T00:00:00.000Z","_created_at":"2014-11-24T00:00:00.000Z","_age_weeks":419,"_stars_per_week":14.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hips/autograd/master/README.md","_readme_localurl":"hips~autograd~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hips/autograd/master/setup.py"],"_requirements_localurls":["hips~autograd~setup.py"]},{"index":73,"category":"gis","githuburl":"https://github.com/python-visualization/folium","featured":null,"links":null,"description":null,"_repopath":"python-visualization/folium","_reponame":"folium","_stars":6008,"_forks":2154,"_watches":166,"_topics":["closember","data-science","data-visualization","javascript","maps","python"],"_language":"Python","_homepage":"https://python-visualization.github.io/folium/","_description":"folium: Python Data. Leaflet.js Maps. ","_organization":"python-visualization","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2013-05-09T00:00:00.000Z","_age_weeks":499,"_stars_per_week":12.02,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/python-visualization/folium/master/README.rst","_readme_localurl":"python-visualization~folium~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-visualization/folium/master/requirements.txt","https://raw.githubusercontent.com/python-visualization/folium/master/setup.py","https://raw.githubusercontent.com/python-visualization/folium/master/pyproject.toml"],"_requirements_localurls":["python-visualization~folium~requirements.txt","python-visualization~folium~setup.py","python-visualization~folium~pyproject.toml"]},{"index":121,"category":"ml-ops","githuburl":"https://github.com/dagster-io/dagster","featured":null,"links":null,"description":null,"_repopath":"dagster-io/dagster","_reponame":"dagster","_stars":5988,"_forks":743,"_watches":87,"_topics":["data-pipelines","dagster","workflow","data-science","workflow-automation","python","scheduler","data-orchestrator","etl","analytics","data-engineering","mlops","orchestration","data-integration","metadata"],"_language":"Python","_homepage":"https://dagster.io","_description":"dagster: An orchestration platform for the development, production, and observation of data assets.","_organization":"dagster-io","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2018-04-30T00:00:00.000Z","_age_weeks":240,"_stars_per_week":24.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dagster-io/dagster/master/README.md","_readme_localurl":"dagster-io~dagster~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dagster-io/dagster/master/pyproject.toml"],"_requirements_localurls":["dagster-io~dagster~pyproject.toml"]},{"index":879,"category":"time-series","githuburl":"https://github.com/sktime/sktime","featured":1.0,"links":null,"description":null,"_repopath":"sktime/sktime","_reponame":"sktime","_stars":5958,"_forks":974,"_watches":109,"_topics":["time-series","machine-learning","scikit-learn","time-series-classification","time-series-regression","forecasting","time-series-analysis","data-science","data-mining"],"_language":"Python","_homepage":"https://sktime.org","_description":"sktime: A unified framework for machine learning with time series","_organization":"sktime","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2018-11-06T00:00:00.000Z","_age_weeks":213,"_stars_per_week":27.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sktime/sktime/master/README.md","_readme_localurl":"sktime~sktime~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sktime/sktime/master/pyproject.toml"],"_requirements_localurls":["sktime~sktime~pyproject.toml"]},{"index":44,"category":"ml","githuburl":"https://github.com/lmcinnes/umap","featured":null,"links":null,"description":null,"_repopath":"lmcinnes/umap","_reponame":"umap","_stars":5939,"_forks":692,"_watches":125,"_topics":["umap","dimensionality-reduction","visualization","machine-learning","topological-data-analysis"],"_language":"Python","_homepage":null,"_description":"umap: Uniform Manifold Approximation and Projection","_organization":"lmcinnes","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-11T00:00:00.000Z","_created_at":"2017-07-02T00:00:00.000Z","_age_weeks":283,"_stars_per_week":20.95,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/lmcinnes/umap/master/README.rst","_readme_localurl":"lmcinnes~umap~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lmcinnes/umap/master/requirements.txt","https://raw.githubusercontent.com/lmcinnes/umap/master/setup.py"],"_requirements_localurls":["lmcinnes~umap~requirements.txt","lmcinnes~umap~setup.py"]},{"index":410,"category":"web","githuburl":"https://github.com/encode/uvicorn","featured":null,"links":null,"description":null,"_repopath":"encode/uvicorn","_reponame":"uvicorn","_stars":5925,"_forks":524,"_watches":86,"_topics":["python","asyncio","asgi","http","http-server"],"_language":"Python","_homepage":"https://www.uvicorn.org/","_description":"uvicorn: An ASGI web server, for Python. \ud83e\udd84","_organization":"encode","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2017-05-31T00:00:00.000Z","_age_weeks":288,"_stars_per_week":20.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/encode/uvicorn/master/README.md","_readme_localurl":"encode~uvicorn~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/encode/uvicorn/master/requirements.txt","https://raw.githubusercontent.com/encode/uvicorn/master/setup.py","https://raw.githubusercontent.com/encode/uvicorn/master/pyproject.toml"],"_requirements_localurls":["encode~uvicorn~requirements.txt","encode~uvicorn~setup.py","encode~uvicorn~pyproject.toml"]},{"index":599,"category":"gis","githuburl":"https://github.com/domlysz/blendergis","featured":null,"links":null,"description":null,"_repopath":"domlysz/blendergis","_reponame":"BlenderGIS","_stars":5848,"_forks":1087,"_watches":244,"_topics":["blender","addon","geospatial","gis","shapefile","delaunay-triangulation","raster","openstreetmap","python","dem","3dgis","map","geodata","georeferencing","importexport","3d","terrain-model","basemap","3d-map"],"_language":"Python","_homepage":"","_description":"BlenderGIS: Blender addons to make the bridge between Blender and geographic data","_organization":"domlysz","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-05-31T00:00:00.000Z","_created_at":"2014-05-08T00:00:00.000Z","_age_weeks":447,"_stars_per_week":13.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/domlysz/blendergis/master/README.md","_readme_localurl":"domlysz~blendergis~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":537,"category":"nlp","githuburl":"https://github.com/espnet/espnet","featured":null,"links":null,"description":null,"_repopath":"espnet/espnet","_reponame":"espnet","_stars":5797,"_forks":1779,"_watches":183,"_topics":["deep-learning","end-to-end","chainer","pytorch","kaldi","speech-recognition","speech-synthesis","speech-translation","machine-translation","voice-conversion","speech-enhancement","speech-separation","singing-voice-synthesis","speaker-diarization","spoken-language-understanding"],"_language":"Python","_homepage":"https://espnet.github.io/espnet/","_description":"espnet: End-to-End Speech Processing Toolkit","_organization":"espnet","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2017-12-13T00:00:00.000Z","_age_weeks":260,"_stars_per_week":22.3,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/espnet/espnet/master/README.md","_readme_localurl":"espnet~espnet~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/espnet/espnet/master/setup.py"],"_requirements_localurls":["espnet~espnet~setup.py"]},{"index":313,"category":"util","githuburl":"https://github.com/pypa/pipx","featured":null,"links":null,"description":null,"_repopath":"pypa/pipx","_reponame":"pipx","_stars":5769,"_forks":265,"_watches":65,"_topics":["pip","cli","pypi","venv","hacktoberfest","python"],"_language":"Python","_homepage":"https://pypa.github.io/pipx/","_description":"pipx: Install and Run Python Applications in Isolated Environments","_organization":"pypa","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2018-10-06T00:00:00.000Z","_age_weeks":217,"_stars_per_week":26.52,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pypa/pipx/master/README.md","_readme_localurl":"pypa~pipx~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pypa/pipx/master/pyproject.toml"],"_requirements_localurls":["pypa~pipx~pyproject.toml"]},{"index":345,"category":"jupyter","githuburl":"https://github.com/mwouts/jupytext","featured":null,"links":null,"description":null,"_repopath":"mwouts/jupytext","_reponame":"jupytext","_stars":5695,"_forks":361,"_watches":70,"_topics":["jupyter-notebook","jupyterlab-extension","version-control","knitr","rstudio","markdown","rmarkdown","python","hydrogen","notebooks","jupyterlab"],"_language":"Python","_homepage":"https://jupytext.readthedocs.io","_description":"jupytext: Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts","_organization":"mwouts","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-12T00:00:00.000Z","_created_at":"2018-06-15T00:00:00.000Z","_age_weeks":233,"_stars_per_week":24.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mwouts/jupytext/master/README.md","_readme_localurl":"mwouts~jupytext~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mwouts/jupytext/master/requirements.txt","https://raw.githubusercontent.com/mwouts/jupytext/master/setup.py","https://raw.githubusercontent.com/mwouts/jupytext/master/pyproject.toml"],"_requirements_localurls":["mwouts~jupytext~requirements.txt","mwouts~jupytext~setup.py","mwouts~jupytext~pyproject.toml"]},{"index":777,"category":"util","githuburl":"https://github.com/google/latexify_py","featured":null,"links":null,"description":null,"_repopath":"google/latexify_py","_reponame":"latexify_py","_stars":5679,"_forks":310,"_watches":51,"_topics":[],"_language":"Python","_homepage":"","_description":"latexify_py: A library to generate LaTeX expression from Python code.","_organization":"google","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2020-07-25T00:00:00.000Z","_age_weeks":123,"_stars_per_week":45.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/latexify_py/master/README.md","_readme_localurl":"google~latexify_py~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/google/latexify_py/master/pyproject.toml"],"_requirements_localurls":["google~latexify_py~pyproject.toml"]},{"index":730,"category":"ml","githuburl":"https://github.com/cleverhans-lab/cleverhans","featured":null,"links":null,"description":null,"_repopath":"cleverhans-lab/cleverhans","_reponame":"cleverhans","_stars":5661,"_forks":1377,"_watches":190,"_topics":["machine-learning","security","benchmarking"],"_language":"Jupyter Notebook","_homepage":"","_description":"cleverhans: An adversarial example library for constructing attacks, building defenses, and benchmarking both","_organization":"cleverhans-lab","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2021-09-23T00:00:00.000Z","_created_at":"2016-09-15T00:00:00.000Z","_age_weeks":324,"_stars_per_week":17.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cleverhans-lab/cleverhans/master/README.md","_readme_localurl":"cleverhans-lab~cleverhans~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/cleverhans-lab/cleverhans/master/setup.py"],"_requirements_localurls":["cleverhans-lab~cleverhans~setup.py"]},{"index":69,"category":"util","githuburl":"https://github.com/pygithub/pygithub","featured":null,"links":null,"description":null,"_repopath":"pygithub/pygithub","_reponame":"PyGithub","_stars":5646,"_forks":1554,"_watches":113,"_topics":["pygithub","python","github","github-api"],"_language":"Python","_homepage":"https://pygithub.readthedocs.io/","_description":"PyGithub: Typed interactions with the GitHub API v3","_organization":"pygithub","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-09T00:00:00.000Z","_created_at":"2012-02-25T00:00:00.000Z","_age_weeks":562,"_stars_per_week":10.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pygithub/pygithub/master/README.md","_readme_localurl":"pygithub~pygithub~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pygithub/pygithub/master/requirements.txt","https://raw.githubusercontent.com/pygithub/pygithub/master/setup.py"],"_requirements_localurls":["pygithub~pygithub~requirements.txt","pygithub~pygithub~setup.py"]},{"index":106,"category":"ml","githuburl":"https://github.com/nicolashug/surprise","featured":null,"links":null,"description":null,"_repopath":"nicolashug/surprise","_reponame":"Surprise","_stars":5623,"_forks":960,"_watches":149,"_topics":["recommender","systems","recommendation","svd","matrix","factorization","machine-learning"],"_language":"Python","_homepage":"http://surpriselib.com","_description":"Surprise: A Python scikit for building and analyzing recommender systems","_organization":"nicolashug","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-10-31T00:00:00.000Z","_created_at":"2016-10-23T00:00:00.000Z","_age_weeks":319,"_stars_per_week":17.6,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nicolashug/surprise/master/README.md","_readme_localurl":"nicolashug~surprise~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nicolashug/surprise/master/requirements.txt","https://raw.githubusercontent.com/nicolashug/surprise/master/setup.py"],"_requirements_localurls":["nicolashug~surprise~requirements.txt","nicolashug~surprise~setup.py"]},{"index":68,"category":"gamedev","githuburl":"https://github.com/pygame/pygame","featured":1.0,"links":null,"description":null,"_repopath":"pygame/pygame","_reponame":"pygame","_stars":5518,"_forks":2415,"_watches":160,"_topics":["python","pygame","sdl2","sdl","game-development","gamedev","game-dev"],"_language":"C","_homepage":"https://www.pygame.org","_description":"pygame: \ud83d\udc0d\ud83c\udfae pygame (the library) is a Free and Open Source python programming language library for making multimedia applications like games built on top of the excellent SDL library. C, Python, Native, OpenGL.","_organization":"pygame","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2017-03-26T00:00:00.000Z","_age_weeks":297,"_stars_per_week":18.55,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pygame/pygame/master/README.rst","_readme_localurl":"pygame~pygame~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pygame/pygame/master/setup.py"],"_requirements_localurls":["pygame~pygame~setup.py"]},{"index":439,"category":"perf","githuburl":"https://github.com/mher/flower","featured":null,"links":null,"description":null,"_repopath":"mher/flower","_reponame":"flower","_stars":5476,"_forks":978,"_watches":144,"_topics":["celery","task-queue","monitoring","administration","workers","rabbitmq","redis","python","asynchronous"],"_language":"Python","_homepage":"https://flower.readthedocs.io","_description":"flower: Real-time monitor and web admin for Celery distributed task queue","_organization":"mher","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-14T00:00:00.000Z","_created_at":"2012-07-08T00:00:00.000Z","_age_weeks":543,"_stars_per_week":10.08,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mher/flower/master/README.rst","_readme_localurl":"mher~flower~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mher/flower/master/setup.py"],"_requirements_localurls":["mher~flower~setup.py"]},{"index":643,"category":"util","githuburl":"https://github.com/theskumar/python-dotenv","featured":null,"links":null,"description":null,"_repopath":"theskumar/python-dotenv","_reponame":"python-dotenv","_stars":5470,"_forks":353,"_watches":33,"_topics":["python","devops-tools","dotenv","12-factor-app","configuration","env","environment-variables"],"_language":"Python","_homepage":"https://saurabh-kumar.com/python-dotenv/","_description":"python-dotenv: Reads key-value pairs from a .env file and can set them as environment variables. It helps in developing applications following the 12-factor principles.","_organization":"theskumar","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-25T00:00:00.000Z","_created_at":"2014-09-06T00:00:00.000Z","_age_weeks":430,"_stars_per_week":12.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/theskumar/python-dotenv/master/README.md","_readme_localurl":"theskumar~python-dotenv~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/theskumar/python-dotenv/master/requirements.txt","https://raw.githubusercontent.com/theskumar/python-dotenv/master/setup.py"],"_requirements_localurls":["theskumar~python-dotenv~requirements.txt","theskumar~python-dotenv~setup.py"]},{"index":723,"category":"ml","githuburl":"https://github.com/py-why/dowhy","featured":null,"links":null,"description":null,"_repopath":"py-why/dowhy","_reponame":"dowhy","_stars":5445,"_forks":766,"_watches":135,"_topics":["causal-inference","machine-learning","graphical-models","bayesian-networks","data-science","python3","causality","causal-models","treatment-effects","do-calculus","causal-machine-learning"],"_language":"Python","_homepage":"https://www.pywhy.org/dowhy","_description":"DoWhy is a Python library for causal inference that supports explicit modeling and testing of causal assumptions. DoWhy is based on a unified language for causal inference, combining causal graphical models and potential outcomes frameworks. ","_organization":"py-why","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2018-05-31T00:00:00.000Z","_age_weeks":235,"_stars_per_week":23.09,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/py-why/dowhy/master/README.rst","_readme_localurl":"py-why~dowhy~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/py-why/dowhy/master/pyproject.toml"],"_requirements_localurls":["py-why~dowhy~pyproject.toml"]},{"index":193,"category":"util","githuburl":"https://github.com/pycqa/isort","featured":null,"links":null,"description":null,"_repopath":"pycqa/isort","_reponame":"isort","_stars":5393,"_forks":498,"_watches":42,"_topics":["auto-formatter","isort","sorting-imports","python-utility","cli","linter","cleaner","formatter","python","python3","hacktoberfest"],"_language":"Python","_homepage":"https://pycqa.github.io/isort/","_description":"isort: A Python utility / library to sort imports.","_organization":"pycqa","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-05-20T00:00:00.000Z","_created_at":"2013-09-02T00:00:00.000Z","_age_weeks":483,"_stars_per_week":11.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pycqa/isort/master/README.md","_readme_localurl":"pycqa~isort~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pycqa/isort/master/pyproject.toml"],"_requirements_localurls":["pycqa~isort~pyproject.toml"]},{"index":682,"category":"diffusion","githuburl":"https://github.com/compvis/latent-diffusion","featured":null,"links":null,"description":null,"_repopath":"compvis/latent-diffusion","_reponame":"latent-diffusion","_stars":5350,"_forks":690,"_watches":70,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"latent-diffusion: High-Resolution Image Synthesis with Latent Diffusion Models","_organization":"compvis","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-07-26T00:00:00.000Z","_created_at":"2021-12-20T00:00:00.000Z","_age_weeks":50,"_stars_per_week":106.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/compvis/latent-diffusion/master/README.md","_readme_localurl":"compvis~latent-diffusion~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/compvis/latent-diffusion/master/setup.py"],"_requirements_localurls":["compvis~latent-diffusion~setup.py"]},{"index":96,"category":"data","githuburl":"https://github.com/vi3k6i5/flashtext","featured":null,"links":null,"description":null,"_repopath":"vi3k6i5/flashtext","_reponame":"flashtext","_stars":5321,"_forks":598,"_watches":139,"_topics":["search-in-text","keyword-extraction","nlp","word2vec","data-extraction"],"_language":"Python","_homepage":null,"_description":"flashtext: Extract Keywords from sentence or Replace keywords in sentences.","_organization":"vi3k6i5","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2020-05-03T00:00:00.000Z","_created_at":"2017-08-15T00:00:00.000Z","_age_weeks":277,"_stars_per_week":19.2,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/vi3k6i5/flashtext/master/README.rst","_readme_localurl":"vi3k6i5~flashtext~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/vi3k6i5/flashtext/master/setup.py"],"_requirements_localurls":["vi3k6i5~flashtext~setup.py"]},{"index":773,"category":"ml-dl","githuburl":"https://github.com/sanster/lama-cleaner","featured":null,"links":null,"description":null,"_repopath":"sanster/lama-cleaner","_reponame":"lama-cleaner","_stars":5278,"_forks":415,"_watches":42,"_topics":["inpainting","pytorch","lama","latent-diffusion","mat","zits","stable-diffusion"],"_language":"Python","_homepage":"","_description":"lama-cleaner: Image inpainting tool powered by SOTA AI Model. Remove any unwanted object, defect, people from your pictures or erase and replace(powered by stable diffusion) any thing on your pictures.","_organization":"sanster","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2021-11-15T00:00:00.000Z","_age_weeks":55,"_stars_per_week":95.47,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sanster/lama-cleaner/master/README.md","_readme_localurl":"sanster~lama-cleaner~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sanster/lama-cleaner/master/requirements.txt","https://raw.githubusercontent.com/sanster/lama-cleaner/master/setup.py"],"_requirements_localurls":["sanster~lama-cleaner~requirements.txt","sanster~lama-cleaner~setup.py"]},{"index":579,"category":"ml","githuburl":"https://github.com/probml/pyprobml","featured":null,"links":null,"description":null,"_repopath":"probml/pyprobml","_reponame":"pyprobml","_stars":5256,"_forks":1243,"_watches":173,"_topics":["jupyter-notebooks","machine-learning","colab","pml","probabilistic-programming","jax","tensorflow","pytorch","pymc3","numpyro","flax","pyro","blackjax"],"_language":"Jupyter Notebook","_homepage":"","_description":"pyprobml: Python code for \"Probabilistic Machine learning\" book by Kevin Murphy","_organization":"probml","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-26T00:00:00.000Z","_created_at":"2016-08-17T00:00:00.000Z","_age_weeks":329,"_stars_per_week":15.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/probml/pyprobml/master/README.md","_readme_localurl":"probml~pyprobml~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/probml/pyprobml/master/requirements.txt","https://raw.githubusercontent.com/probml/pyprobml/master/pyproject.toml"],"_requirements_localurls":["probml~pyprobml~requirements.txt","probml~pyprobml~pyproject.toml"]},{"index":278,"category":"data","githuburl":"https://github.com/airbnb/knowledge-repo","featured":null,"links":null,"description":null,"_repopath":"airbnb/knowledge-repo","_reponame":"knowledge-repo","_stars":5229,"_forks":704,"_watches":180,"_topics":["data","data-science","knowledge","data-analysis"],"_language":"Python","_homepage":"","_description":"knowledge-repo: A next-generation curated knowledge sharing platform for data scientists and other technical professions.","_organization":"airbnb","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2016-08-17T00:00:00.000Z","_age_weeks":329,"_stars_per_week":15.89,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/airbnb/knowledge-repo/master/README.md","_readme_localurl":"airbnb~knowledge-repo~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/airbnb/knowledge-repo/master/requirements.txt","https://raw.githubusercontent.com/airbnb/knowledge-repo/master/setup.py"],"_requirements_localurls":["airbnb~knowledge-repo~requirements.txt","airbnb~knowledge-repo~setup.py"]},{"index":511,"category":"ml","githuburl":"https://github.com/google/automl","featured":null,"links":null,"description":null,"_repopath":"google/automl","_reponame":"automl","_stars":5209,"_forks":1382,"_watches":150,"_topics":["automl","efficientdet","object-detection","efficientnet","efficientnetv2"],"_language":"Jupyter Notebook","_homepage":"","_description":"automl: Google Brain AutoML","_organization":"google","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-09T00:00:00.000Z","_created_at":"2020-03-12T00:00:00.000Z","_age_weeks":142,"_stars_per_week":36.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/automl/master/README.md","_readme_localurl":"google~automl~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":632,"category":"util","githuburl":"https://github.com/pyca/cryptography","featured":null,"links":null,"description":null,"_repopath":"pyca/cryptography","_reponame":"cryptography","_stars":5207,"_forks":1099,"_watches":119,"_topics":["python","cryptography"],"_language":"Python","_homepage":"https://cryptography.io","_description":"cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.","_organization":"pyca","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2013-08-07T00:00:00.000Z","_age_weeks":487,"_stars_per_week":10.69,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyca/cryptography/master/README.rst","_readme_localurl":"pyca~cryptography~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyca/cryptography/master/setup.py","https://raw.githubusercontent.com/pyca/cryptography/master/pyproject.toml"],"_requirements_localurls":["pyca~cryptography~setup.py","pyca~cryptography~pyproject.toml"]},{"index":283,"category":"util","githuburl":"https://github.com/sdispater/pendulum","featured":null,"links":null,"description":null,"_repopath":"sdispater/pendulum","_reponame":"pendulum","_stars":5204,"_forks":308,"_watches":63,"_topics":["python","datetime","date","time","python3","timezones"],"_language":"Python","_homepage":"https://pendulum.eustace.io","_description":"pendulum: Python datetimes made easy","_organization":"sdispater","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2016-06-27T00:00:00.000Z","_age_weeks":336,"_stars_per_week":15.47,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sdispater/pendulum/master/README.rst","_readme_localurl":"sdispater~pendulum~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sdispater/pendulum/master/pyproject.toml"],"_requirements_localurls":["sdispater~pendulum~pyproject.toml"]},{"index":434,"category":"util","githuburl":"https://github.com/scikit-image/scikit-image","featured":null,"links":null,"description":null,"_repopath":"scikit-image/scikit-image","_reponame":"scikit-image","_stars":5153,"_forks":2076,"_watches":187,"_topics":["image-processing","python","computer-vision","hacktoberfest","closember"],"_language":"Python","_homepage":"https://scikit-image.org","_description":"scikit-image: Image processing in Python","_organization":"scikit-image","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2011-07-07T00:00:00.000Z","_age_weeks":595,"_stars_per_week":8.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scikit-image/scikit-image/master/README.md","_readme_localurl":"scikit-image~scikit-image~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scikit-image/scikit-image/master/requirements.txt","https://raw.githubusercontent.com/scikit-image/scikit-image/master/setup.py","https://raw.githubusercontent.com/scikit-image/scikit-image/master/pyproject.toml"],"_requirements_localurls":["scikit-image~scikit-image~requirements.txt","scikit-image~scikit-image~setup.py","scikit-image~scikit-image~pyproject.toml"]},{"index":538,"category":"nlp","githuburl":"https://github.com/nvidia/nemo","featured":null,"links":null,"description":null,"_repopath":"nvidia/nemo","_reponame":"NeMo","_stars":5145,"_forks":1284,"_watches":137,"_topics":["deep-learning","speech-recognition","nlp","nlp-machine-learning","neural-network","machine-translation","speech-synthesis","speech-to-text","text-to-speech","nmt","language-model","speaker-diarization","speaker-recognition","text-normalization","asr","tts"],"_language":"Python","_homepage":"https://nvidia.github.io/NeMo/","_description":"NeMo: a toolkit for conversational AI","_organization":"nvidia","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2019-08-05T00:00:00.000Z","_age_weeks":174,"_stars_per_week":29.52,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/nvidia/nemo/master/README.rst","_readme_localurl":"nvidia~nemo~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nvidia/nemo/master/setup.py"],"_requirements_localurls":["nvidia~nemo~setup.py"]},{"index":3,"category":"ml","githuburl":"https://github.com/awslabs/autogluon","featured":null,"links":null,"description":null,"_repopath":"awslabs/autogluon","_reponame":"autogluon","_stars":5124,"_forks":672,"_watches":96,"_topics":["automl","machine-learning","data-science","deep-learning","ensemble-learning","image-classification","computer-vision","natural-language-processing","structured-data","object-detection","gluon","transfer-learning","pytorch","automated-machine-learning","scikit-learn","autogluon","tabular-data","hyperparameter-optimization","time-series"],"_language":"Python","_homepage":"https://auto.gluon.ai/","_description":"AutoGluon: AutoML for Image, Text, Time Series, and Tabular Data","_organization":"awslabs","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2019-07-29T00:00:00.000Z","_age_weeks":175,"_stars_per_week":29.23,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/awslabs/autogluon/master/README.md","_readme_localurl":"awslabs~autogluon~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/awslabs/autogluon/master/pyproject.toml"],"_requirements_localurls":["awslabs~autogluon~pyproject.toml"]},{"index":880,"category":"time-series","githuburl":"https://github.com/unit8co/darts","featured":null,"links":null,"description":null,"_repopath":"unit8co/darts","_reponame":"darts","_stars":5102,"_forks":551,"_watches":41,"_topics":["python","time-series","forecasting","machine-learning","deep-learning"],"_language":"Python","_homepage":"https://unit8co.github.io/darts/","_description":"darts: A python library for easy manipulation and forecasting of time series.","_organization":"unit8co","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2018-09-13T00:00:00.000Z","_age_weeks":220,"_stars_per_week":23.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/unit8co/darts/master/README.md","_readme_localurl":"unit8co~darts~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/unit8co/darts/master/setup.py","https://raw.githubusercontent.com/unit8co/darts/master/pyproject.toml"],"_requirements_localurls":["unit8co~darts~setup.py","unit8co~darts~pyproject.toml"]},{"index":546,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/mmf","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/mmf","_reponame":"mmf","_stars":5084,"_forks":895,"_watches":117,"_topics":["pytorch","vqa","pretrained-models","multimodal","deep-learning","captioning","dialog","textvqa","hateful-memes","multi-tasking"],"_language":"Python","_homepage":"https://mmf.sh/","_description":"mmf: A modular framework for vision & language multimodal research from Facebook AI Research (FAIR)","_organization":"facebookresearch","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-19T00:00:00.000Z","_created_at":"2018-06-27T00:00:00.000Z","_age_weeks":232,"_stars_per_week":21.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/mmf/master/README.md","_readme_localurl":"facebookresearch~mmf~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/mmf/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/mmf/master/setup.py","https://raw.githubusercontent.com/facebookresearch/mmf/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~mmf~requirements.txt","facebookresearch~mmf~setup.py","facebookresearch~mmf~pyproject.toml"]},{"index":352,"category":"ml-ops","githuburl":"https://github.com/activeloopai/hub","featured":null,"links":null,"description":null,"_repopath":"activeloopai/hub","_reponame":"deeplake","_stars":5059,"_forks":409,"_watches":63,"_topics":["datasets","deep-learning","machine-learning","data-science","pytorch","tensorflow","data-version-control","python","ai","ml","mlops","computer-vision","cv","data-processing","image-processing","data-centric","jupyter-notebook","datalake","lakehouse"],"_language":"Python","_homepage":"https://activeloop.ai","_description":"deeplake: Data Lake for Deep Learning. Build, manage, query, version, & visualize datasets. Stream data real-time to PyTorch/TensorFlow. https://activeloop.ai ","_organization":"activeloopai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-08-09T00:00:00.000Z","_age_weeks":173,"_stars_per_week":29.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/activeloopai/hub/master/README.md","_readme_localurl":"activeloopai~hub~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/activeloopai/hub/master/requirements.txt","https://raw.githubusercontent.com/activeloopai/hub/master/setup.py"],"_requirements_localurls":["activeloopai~hub~requirements.txt","activeloopai~hub~setup.py"]},{"index":301,"category":"data","githuburl":"https://github.com/kaggle/kaggle-api","featured":null,"links":null,"description":null,"_repopath":"kaggle/kaggle-api","_reponame":"kaggle-api","_stars":5054,"_forks":979,"_watches":188,"_topics":[],"_language":"Python","_homepage":"","_description":"kaggle-api: Official Kaggle API","_organization":"kaggle","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2021-03-15T00:00:00.000Z","_created_at":"2018-01-25T00:00:00.000Z","_age_weeks":253,"_stars_per_week":19.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kaggle/kaggle-api/master/README.md","_readme_localurl":"kaggle~kaggle-api~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kaggle/kaggle-api/master/setup.py"],"_requirements_localurls":["kaggle~kaggle-api~setup.py"]},{"index":161,"category":"ml","githuburl":"https://github.com/wandb/client","featured":null,"links":null,"description":null,"_repopath":"wandb/client","_reponame":"wandb","_stars":5051,"_forks":385,"_watches":39,"_topics":["machine-learning","experiment-track","deep-learning","keras","tensorflow","pytorch","hyperparameter-search","reinforcement-learning","mlops","data-science","collaboration","hyperparameter-optimization","reproducibility","hyperparameter-tuning","data-versioning","model-versioning","ml-platform"],"_language":"Python","_homepage":"https://wandb.ai","_description":"wandb: \ud83d\udd25 A tool for visualizing and tracking your machine learning experiments. This repo contains the CLI and Python API.","_organization":"wandb","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2017-03-24T00:00:00.000Z","_age_weeks":297,"_stars_per_week":16.97,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/wandb/client/master/README.md","_readme_localurl":"wandb~client~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/wandb/client/master/requirements.txt","https://raw.githubusercontent.com/wandb/client/master/setup.py","https://raw.githubusercontent.com/wandb/client/master/pyproject.toml"],"_requirements_localurls":["wandb~client~requirements.txt","wandb~client~setup.py","wandb~client~pyproject.toml"]},{"index":81,"category":"util","githuburl":"https://github.com/sphinx-doc/sphinx","featured":null,"links":null,"description":null,"_repopath":"sphinx-doc/sphinx","_reponame":"sphinx","_stars":5031,"_forks":1801,"_watches":140,"_topics":["python","documentation","documentation-tool","sphinx","markdown","restructuredtext"],"_language":"Python","_homepage":"https://www.sphinx-doc.org/","_description":"sphinx: The Sphinx documentation generator","_organization":"sphinx-doc","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2015-01-02T00:00:00.000Z","_age_weeks":413,"_stars_per_week":12.16,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sphinx-doc/sphinx/master/README.rst","_readme_localurl":"sphinx-doc~sphinx~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sphinx-doc/sphinx/master/pyproject.toml"],"_requirements_localurls":["sphinx-doc~sphinx~pyproject.toml"]},{"index":279,"category":"jupyter","githuburl":"https://github.com/nteract/papermill","featured":null,"links":null,"description":null,"_repopath":"nteract/papermill","_reponame":"papermill","_stars":5021,"_forks":378,"_watches":91,"_topics":["jupyter","notebooks","notebook-generator","nteract","publishing","pipeline","notebook","python","r","julia","scala"],"_language":"Python","_homepage":"http://papermill.readthedocs.io/en/latest/","_description":"papermill: \ud83d\udcda Parameterize, execute, and analyze notebooks","_organization":"nteract","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-10-18T00:00:00.000Z","_created_at":"2017-07-06T00:00:00.000Z","_age_weeks":282,"_stars_per_week":17.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nteract/papermill/master/README.md","_readme_localurl":"nteract~papermill~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nteract/papermill/master/requirements.txt","https://raw.githubusercontent.com/nteract/papermill/master/setup.py","https://raw.githubusercontent.com/nteract/papermill/master/pyproject.toml"],"_requirements_localurls":["nteract~papermill~requirements.txt","nteract~papermill~setup.py","nteract~papermill~pyproject.toml"]},{"index":404,"category":"perf","githuburl":"https://github.com/python-trio/trio","featured":null,"links":null,"description":null,"_repopath":"python-trio/trio","_reponame":"trio","_stars":5010,"_forks":290,"_watches":87,"_topics":["python","async","async-await","networking","io","trio","structured-concurrency"],"_language":"Python","_homepage":"https://trio.readthedocs.io","_description":"Trio \u2013 a friendly Python library for async concurrency and I/O","_organization":"python-trio","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2017-01-16T00:00:00.000Z","_age_weeks":307,"_stars_per_week":16.3,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/python-trio/trio/master/README.rst","_readme_localurl":"python-trio~trio~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-trio/trio/master/setup.py","https://raw.githubusercontent.com/python-trio/trio/master/pyproject.toml"],"_requirements_localurls":["python-trio~trio~setup.py","python-trio~trio~pyproject.toml"]},{"index":605,"category":"jupyter","githuburl":"https://github.com/connorferster/handcalcs","featured":null,"links":null,"description":null,"_repopath":"connorferster/handcalcs","_reponame":"handcalcs","_stars":4975,"_forks":391,"_watches":76,"_topics":[],"_language":"CSS","_homepage":null,"_description":"handcalcs: Python library for converting Python calculations into rendered latex.","_organization":"connorferster","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-09-28T00:00:00.000Z","_created_at":"2020-02-19T00:00:00.000Z","_age_weeks":146,"_stars_per_week":34.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/connorferster/handcalcs/master/README.md","_readme_localurl":"connorferster~handcalcs~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/connorferster/handcalcs/master/requirements.txt","https://raw.githubusercontent.com/connorferster/handcalcs/master/pyproject.toml"],"_requirements_localurls":["connorferster~handcalcs~requirements.txt","connorferster~handcalcs~pyproject.toml"]},{"index":214,"category":"nlp","githuburl":"https://github.com/speechbrain/speechbrain","featured":null,"links":null,"description":null,"_repopath":"speechbrain/speechbrain","_reponame":"speechbrain","_stars":4960,"_forks":957,"_watches":109,"_topics":["speech-recognition","speech-toolkit","speaker-recognition","speech-to-text","speech-enhancement","speech-separation","audio","audio-processing","speech-processing","speechrecognition","asr","voice-recognition","spoken-language-understanding","speaker-diarization","speaker-verification","pytorch","huggingface","transformers","language-model","deep-learning"],"_language":"Python","_homepage":"http://speechbrain.github.io","_description":"speechbrain: A PyTorch-based Speech Toolkit","_organization":"speechbrain","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2020-04-28T00:00:00.000Z","_age_weeks":136,"_stars_per_week":36.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/speechbrain/speechbrain/master/README.md","_readme_localurl":"speechbrain~speechbrain~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/speechbrain/speechbrain/master/requirements.txt","https://raw.githubusercontent.com/speechbrain/speechbrain/master/setup.py","https://raw.githubusercontent.com/speechbrain/speechbrain/master/pyproject.toml"],"_requirements_localurls":["speechbrain~speechbrain~requirements.txt","speechbrain~speechbrain~setup.py","speechbrain~speechbrain~pyproject.toml"]},{"index":686,"category":"util","githuburl":"https://github.com/py-pdf/pypdf2","featured":null,"links":null,"description":null,"_repopath":"py-pdf/pypdf2","_reponame":"PyPDF2","_stars":4943,"_forks":1135,"_watches":139,"_topics":["pypdf2","pdf","python","pdf-parser","pdf-parsing","pdf-manipulation","pdf-documents","help-wanted"],"_language":"Python","_homepage":"https://pypdf2.readthedocs.io/en/latest/","_description":"PyPDF2: A pure-python PDF library capable of splitting, merging, cropping, and transforming the pages of PDF files","_organization":"py-pdf","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2012-01-06T00:00:00.000Z","_age_weeks":569,"_stars_per_week":8.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/py-pdf/pypdf2/master/README.md","_readme_localurl":"py-pdf~pypdf2~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/py-pdf/pypdf2/master/pyproject.toml"],"_requirements_localurls":["py-pdf~pypdf2~pyproject.toml"]},{"index":652,"category":"profiling","githuburl":"https://github.com/joerick/pyinstrument","featured":null,"links":null,"description":null,"_repopath":"joerick/pyinstrument","_reponame":"pyinstrument","_stars":4934,"_forks":218,"_watches":52,"_topics":["python","django","profiler","performance","profile","async"],"_language":"Python","_homepage":"https://pyinstrument.readthedocs.io/","_description":"pyinstrument: \ud83d\udeb4\u00a0Call stack profiler for Python. Shows you why your code is slow!","_organization":"joerick","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2014-03-13T00:00:00.000Z","_age_weeks":455,"_stars_per_week":10.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/joerick/pyinstrument/master/README.md","_readme_localurl":"joerick~pyinstrument~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/joerick/pyinstrument/master/setup.py","https://raw.githubusercontent.com/joerick/pyinstrument/master/pyproject.toml"],"_requirements_localurls":["joerick~pyinstrument~setup.py","joerick~pyinstrument~pyproject.toml"]},{"index":471,"category":"util","githuburl":"https://github.com/parthjadhav/tkinter-designer","featured":null,"links":null,"description":null,"_repopath":"parthjadhav/tkinter-designer","_reponame":"Tkinter-Designer","_stars":4889,"_forks":461,"_watches":51,"_topics":["tkinter","tkinter-gui","tkinter-python","tkinter-graphic-interface","python3","tkinter-widgets","gui-application","python-script","drag-and-drop","easy","easy-to-use","fast","gui","tkinter-designer","figma","python","automatic","collaborate","learn","hacktoberfest"],"_language":"Python","_homepage":"","_description":"Tkinter-Designer: An easy and fast way to create a Python GUI \ud83d\udc0d","_organization":"parthjadhav","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2021-05-18T00:00:00.000Z","_age_weeks":81,"_stars_per_week":60.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/parthjadhav/tkinter-designer/master/README.md","_readme_localurl":"parthjadhav~tkinter-designer~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/parthjadhav/tkinter-designer/master/requirements.txt","https://raw.githubusercontent.com/parthjadhav/tkinter-designer/master/pyproject.toml"],"_requirements_localurls":["parthjadhav~tkinter-designer~requirements.txt","parthjadhav~tkinter-designer~pyproject.toml"]},{"index":552,"category":"ml","githuburl":"https://github.com/open-mmlab/mmsegmentation","featured":null,"links":null,"description":null,"_repopath":"open-mmlab/mmsegmentation","_reponame":"mmsegmentation","_stars":4880,"_forks":1803,"_watches":50,"_topics":["semantic-segmentation","pytorch","pspnet","deeplabv3","transformer","swin-transformer","realtime-segmentation","vessel-segmentation","retinal-vessel-segmentation","image-segmentation","medical-image-segmentation"],"_language":"Python","_homepage":"https://mmsegmentation.readthedocs.io/en/latest/","_description":"mmsegmentation: OpenMMLab Semantic Segmentation Toolbox and Benchmark.","_organization":"open-mmlab","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2020-06-14T00:00:00.000Z","_age_weeks":129,"_stars_per_week":37.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-mmlab/mmsegmentation/master/README.md","_readme_localurl":"open-mmlab~mmsegmentation~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/open-mmlab/mmsegmentation/master/requirements.txt","https://raw.githubusercontent.com/open-mmlab/mmsegmentation/master/setup.py"],"_requirements_localurls":["open-mmlab~mmsegmentation~requirements.txt","open-mmlab~mmsegmentation~setup.py"]},{"index":15,"category":"ml-dl","githuburl":"https://github.com/skorch-dev/skorch","featured":null,"links":null,"description":null,"_repopath":"skorch-dev/skorch","_reponame":"skorch","_stars":4879,"_forks":328,"_watches":80,"_topics":["scikit-learn","pytorch","machine-learning","hacktoberfest"],"_language":"Jupyter Notebook","_homepage":"","_description":"skorch: A scikit-learn compatible neural network library that wraps PyTorch","_organization":"skorch-dev","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2017-07-18T00:00:00.000Z","_age_weeks":281,"_stars_per_week":17.35,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/skorch-dev/skorch/master/README.rst","_readme_localurl":"skorch-dev~skorch~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/skorch-dev/skorch/master/requirements.txt","https://raw.githubusercontent.com/skorch-dev/skorch/master/setup.py"],"_requirements_localurls":["skorch-dev~skorch~requirements.txt","skorch-dev~skorch~setup.py"]},{"index":569,"category":"ml","githuburl":"https://github.com/mdbloice/augmentor","featured":null,"links":null,"description":null,"_repopath":"mdbloice/augmentor","_reponame":"Augmentor","_stars":4833,"_forks":850,"_watches":123,"_topics":["augmentation","machine-learning","deep-learning","neural-networks"],"_language":"Python","_homepage":"https://augmentor.readthedocs.io/en/stable","_description":"Augmentor: Image augmentation library in Python for machine learning.","_organization":"mdbloice","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-09-23T00:00:00.000Z","_created_at":"2016-03-01T00:00:00.000Z","_age_weeks":353,"_stars_per_week":13.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mdbloice/augmentor/master/README.md","_readme_localurl":"mdbloice~augmentor~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mdbloice/augmentor/master/requirements.txt","https://raw.githubusercontent.com/mdbloice/augmentor/master/setup.py"],"_requirements_localurls":["mdbloice~augmentor~requirements.txt","mdbloice~augmentor~setup.py"]},{"index":169,"category":"nlp","githuburl":"https://github.com/minimaxir/textgenrnn","featured":null,"links":null,"description":null,"_repopath":"minimaxir/textgenrnn","_reponame":"textgenrnn","_stars":4817,"_forks":752,"_watches":138,"_topics":["keras","deep-learning","text-generation","tensorflow","python"],"_language":"Python","_homepage":"","_description":"textgenrnn: Easily train your own text-generating neural network of any size and complexity on any text dataset with a few lines of code.","_organization":"minimaxir","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2020-07-14T00:00:00.000Z","_created_at":"2017-08-07T00:00:00.000Z","_age_weeks":278,"_stars_per_week":17.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/minimaxir/textgenrnn/master/README.md","_readme_localurl":"minimaxir~textgenrnn~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/minimaxir/textgenrnn/master/requirements.txt","https://raw.githubusercontent.com/minimaxir/textgenrnn/master/setup.py"],"_requirements_localurls":["minimaxir~textgenrnn~requirements.txt","minimaxir~textgenrnn~setup.py"]},{"index":661,"category":"study","githuburl":"https://github.com/udacity/deep-learning-v2-pytorch","featured":null,"links":null,"description":null,"_repopath":"udacity/deep-learning-v2-pytorch","_reponame":"deep-learning-v2-pytorch","_stars":4781,"_forks":5167,"_watches":172,"_topics":["deep-learning","neural-network","convolutional-networks","pytorch","recurrent-networks","style-transfer","sentiment-analysis"],"_language":"Jupyter Notebook","_homepage":null,"_description":"deep-learning-v2-pytorch: Projects and exercises for the latest Deep Learning ND program https://www.udacity.com/course/deep-learning-nanodegree--nd101","_organization":"udacity","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-03T00:00:00.000Z","_created_at":"2018-09-04T00:00:00.000Z","_age_weeks":222,"_stars_per_week":21.52,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/udacity/deep-learning-v2-pytorch/master/README.md","_readme_localurl":"udacity~deep-learning-v2-pytorch~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/udacity/deep-learning-v2-pytorch/master/requirements.txt"],"_requirements_localurls":["udacity~deep-learning-v2-pytorch~requirements.txt"]},{"index":380,"category":"data","githuburl":"https://github.com/alirezamika/autoscraper","featured":null,"links":null,"description":null,"_repopath":"alirezamika/autoscraper","_reponame":"autoscraper","_stars":4756,"_forks":510,"_watches":124,"_topics":["scraping","scraper","scrape","webscraping","crawler","web-scraping","ai","artificial-intelligence","python","webautomation","automation","machine-learning"],"_language":"Python","_homepage":"","_description":"autoscraper: A Smart, Automatic, Fast and Lightweight Web Scraper for Python","_organization":"alirezamika","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-07-17T00:00:00.000Z","_created_at":"2020-08-31T00:00:00.000Z","_age_weeks":118,"_stars_per_week":40.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alirezamika/autoscraper/master/README.md","_readme_localurl":"alirezamika~autoscraper~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/alirezamika/autoscraper/master/setup.py"],"_requirements_localurls":["alirezamika~autoscraper~setup.py"]},{"index":642,"category":"util","githuburl":"https://github.com/pycqa/pycodestyle","featured":null,"links":null,"description":null,"_repopath":"pycqa/pycodestyle","_reponame":"pycodestyle","_stars":4730,"_forks":683,"_watches":119,"_topics":["python","pep8","styleguide","style-guide","linter-plugin","linter-flake8","flake8-plugin"],"_language":"Python","_homepage":"https://pycodestyle.pycqa.org","_description":"pycodestyle: Simple Python style checker in one Python file","_organization":"pycqa","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2009-10-02T00:00:00.000Z","_age_weeks":687,"_stars_per_week":6.88,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pycqa/pycodestyle/master/README.rst","_readme_localurl":"pycqa~pycodestyle~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pycqa/pycodestyle/master/setup.py"],"_requirements_localurls":["pycqa~pycodestyle~setup.py"]},{"index":181,"category":"security","githuburl":"https://github.com/pycqa/bandit","featured":null,"links":null,"description":null,"_repopath":"pycqa/bandit","_reponame":"bandit","_stars":4722,"_forks":493,"_watches":59,"_topics":["linter","bandit","security-tools","security-scanner","security","static-code-analysis","python"],"_language":"Python","_homepage":"https://bandit.readthedocs.io","_description":"Bandit is a tool designed to find common security issues in Python code.","_organization":"pycqa","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-28T00:00:00.000Z","_created_at":"2018-04-26T00:00:00.000Z","_age_weeks":240,"_stars_per_week":19.6,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pycqa/bandit/master/README.rst","_readme_localurl":"pycqa~bandit~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pycqa/bandit/master/requirements.txt","https://raw.githubusercontent.com/pycqa/bandit/master/setup.py"],"_requirements_localurls":["pycqa~bandit~requirements.txt","pycqa~bandit~setup.py"]},{"index":687,"category":"util","githuburl":"https://github.com/bndr/pipreqs","featured":null,"links":null,"description":null,"_repopath":"bndr/pipreqs","_reponame":"pipreqs","_stars":4715,"_forks":320,"_watches":59,"_topics":[],"_language":"Python","_homepage":"","_description":"pipreqs - Generate pip requirements.txt file based on imports of any project. Looking for maintainers to move this project forward.","_organization":"bndr","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2015-04-22T00:00:00.000Z","_age_weeks":398,"_stars_per_week":11.85,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/bndr/pipreqs/master/README.rst","_readme_localurl":"bndr~pipreqs~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bndr/pipreqs/master/requirements.txt","https://raw.githubusercontent.com/bndr/pipreqs/master/setup.py"],"_requirements_localurls":["bndr~pipreqs~requirements.txt","bndr~pipreqs~setup.py"]},{"index":513,"category":"util","githuburl":"https://github.com/agronholm/apscheduler","featured":null,"links":null,"description":null,"_repopath":"agronholm/apscheduler","_reponame":"apscheduler","_stars":4695,"_forks":603,"_watches":125,"_topics":[],"_language":"Python","_homepage":"","_description":"apscheduler: Task scheduling library for Python","_organization":"agronholm","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2016-03-27T00:00:00.000Z","_age_weeks":349,"_stars_per_week":13.44,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/agronholm/apscheduler/master/README.rst","_readme_localurl":"agronholm~apscheduler~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/agronholm/apscheduler/master/pyproject.toml"],"_requirements_localurls":["agronholm~apscheduler~pyproject.toml"]},{"index":265,"category":"util","githuburl":"https://github.com/pytransitions/transitions","featured":null,"links":null,"description":null,"_repopath":"pytransitions/transitions","_reponame":"transitions","_stars":4676,"_forks":511,"_watches":94,"_topics":["python","state-machine","nested-states","hierarchical-state-machine","state-diagram"],"_language":"Python","_homepage":"","_description":"transitions: A lightweight, object-oriented finite state machine implementation in Python with many extensions","_organization":"pytransitions","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-08T00:00:00.000Z","_created_at":"2014-10-12T00:00:00.000Z","_age_weeks":425,"_stars_per_week":10.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytransitions/transitions/master/README.md","_readme_localurl":"pytransitions~transitions~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pytransitions/transitions/master/requirements.txt","https://raw.githubusercontent.com/pytransitions/transitions/master/setup.py"],"_requirements_localurls":["pytransitions~transitions~requirements.txt","pytransitions~transitions~setup.py"]},{"index":223,"category":"nlp","githuburl":"https://github.com/kingoflolz/mesh-transformer-jax","featured":1.0,"links":null,"description":null,"_repopath":"kingoflolz/mesh-transformer-jax","_reponame":"mesh-transformer-jax","_stars":4626,"_forks":651,"_watches":74,"_topics":[],"_language":"Python","_homepage":"","_description":"mesh-transformer-jax: Model parallel transformers in JAX and Haiku","_organization":"kingoflolz","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-01-28T00:00:00.000Z","_created_at":"2021-03-13T00:00:00.000Z","_age_weeks":90,"_stars_per_week":51.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/README.md","_readme_localurl":"kingoflolz~mesh-transformer-jax~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/requirements.txt","https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/setup.py"],"_requirements_localurls":["kingoflolz~mesh-transformer-jax~requirements.txt","kingoflolz~mesh-transformer-jax~setup.py"]},{"index":213,"category":"data","githuburl":"https://github.com/facebookresearch/augly","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/augly","_reponame":"AugLy","_stars":4618,"_forks":265,"_watches":61,"_topics":[],"_language":"Python","_homepage":"https://ai.facebook.com/blog/augly-a-new-data-augmentation-library-to-help-build-more-robust-ai-models/","_description":"AugLy: A data augmentations library for audio, image, text, and video.","_organization":"facebookresearch","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2021-06-09T00:00:00.000Z","_age_weeks":78,"_stars_per_week":59.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/augly/master/README.md","_readme_localurl":"facebookresearch~augly~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/augly/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/augly/master/setup.py"],"_requirements_localurls":["facebookresearch~augly~requirements.txt","facebookresearch~augly~setup.py"]},{"index":551,"category":"ml","githuburl":"https://github.com/open-mmlab/mmcv","featured":null,"links":null,"description":null,"_repopath":"open-mmlab/mmcv","_reponame":"mmcv","_stars":4560,"_forks":1308,"_watches":83,"_topics":[],"_language":"Python","_homepage":"https://mmcv.readthedocs.io/en/latest/","_description":"mmcv: OpenMMLab Computer Vision Foundation","_organization":"open-mmlab","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2018-08-22T00:00:00.000Z","_age_weeks":224,"_stars_per_week":20.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-mmlab/mmcv/master/README.md","_readme_localurl":"open-mmlab~mmcv~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/open-mmlab/mmcv/master/requirements.txt","https://raw.githubusercontent.com/open-mmlab/mmcv/master/setup.py"],"_requirements_localurls":["open-mmlab~mmcv~requirements.txt","open-mmlab~mmcv~setup.py"]},{"index":830,"category":"typing","githuburl":"https://github.com/python-attrs/attrs","featured":1.0,"links":null,"description":null,"_repopath":"python-attrs/attrs","_reponame":"attrs","_stars":4537,"_forks":319,"_watches":57,"_topics":["python","boilerplate","classes","oop","attributes","srp"],"_language":"Python","_homepage":"https://www.attrs.org/","_description":"attrs: Python Classes Without Boilerplate","_organization":"python-attrs","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2015-01-27T00:00:00.000Z","_age_weeks":410,"_stars_per_week":11.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python-attrs/attrs/master/README.md","_readme_localurl":"python-attrs~attrs~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-attrs/attrs/master/setup.py","https://raw.githubusercontent.com/python-attrs/attrs/master/pyproject.toml"],"_requirements_localurls":["python-attrs~attrs~setup.py","python-attrs~attrs~pyproject.toml"]},{"index":784,"category":"diffusion","githuburl":"https://github.com/xavierxiao/dreambooth-stable-diffusion","featured":null,"links":null,"description":null,"_repopath":"xavierxiao/dreambooth-stable-diffusion","_reponame":"Dreambooth-Stable-Diffusion","_stars":4516,"_forks":494,"_watches":70,"_topics":["pytorch","pytorch-lightning","stable-diffusion","text-to-image"],"_language":"Jupyter Notebook","_homepage":"","_description":"Dreambooth-Stable-Diffusion: Implementation of Dreambooth (https://arxiv.org/abs/2208.12242) with Stable Diffusion","_organization":"xavierxiao","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-09-21T00:00:00.000Z","_created_at":"2022-09-06T00:00:00.000Z","_age_weeks":13,"_stars_per_week":343.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/xavierxiao/dreambooth-stable-diffusion/master/README.md","_readme_localurl":"xavierxiao~dreambooth-stable-diffusion~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/xavierxiao/dreambooth-stable-diffusion/master/setup.py"],"_requirements_localurls":["xavierxiao~dreambooth-stable-diffusion~setup.py"]},{"index":247,"category":"util","githuburl":"https://github.com/jorgebastida/awslogs","featured":null,"links":null,"description":null,"_repopath":"jorgebastida/awslogs","_reponame":"awslogs","_stars":4498,"_forks":325,"_watches":61,"_topics":[],"_language":"Python","_homepage":null,"_description":"awslogs: AWS CloudWatch logs for Humans\u2122","_organization":"jorgebastida","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2020-07-10T00:00:00.000Z","_created_at":"2015-01-21T00:00:00.000Z","_age_weeks":411,"_stars_per_week":10.94,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jorgebastida/awslogs/master/README.rst","_readme_localurl":"jorgebastida~awslogs~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jorgebastida/awslogs/master/setup.py"],"_requirements_localurls":["jorgebastida~awslogs~setup.py"]},{"index":97,"category":"jupyter","githuburl":"https://github.com/voila-dashboards/voila","featured":null,"links":null,"description":null,"_repopath":"voila-dashboards/voila","_reponame":"voila","_stars":4472,"_forks":448,"_watches":77,"_topics":["jupyter","jupyter-notebook","jupyterlab-extension","dashboarding"],"_language":"Python","_homepage":"https://voila.readthedocs.io","_description":"voila: Voil\u00e0 turns Jupyter notebooks into standalone web applications","_organization":"voila-dashboards","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2018-08-21T00:00:00.000Z","_age_weeks":224,"_stars_per_week":19.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/voila-dashboards/voila/master/README.md","_readme_localurl":"voila-dashboards~voila~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/voila-dashboards/voila/master/setup.py","https://raw.githubusercontent.com/voila-dashboards/voila/master/pyproject.toml"],"_requirements_localurls":["voila-dashboards~voila~setup.py","voila-dashboards~voila~pyproject.toml"]},{"index":312,"category":"util","githuburl":"https://github.com/indygreg/pyoxidizer","featured":null,"links":null,"description":null,"_repopath":"indygreg/pyoxidizer","_reponame":"PyOxidizer","_stars":4406,"_forks":190,"_watches":59,"_topics":[],"_language":"Rust","_homepage":"","_description":"PyOxidizer: A modern Python application packaging and distribution tool","_organization":"indygreg","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-20T00:00:00.000Z","_created_at":"2018-12-18T00:00:00.000Z","_age_weeks":207,"_stars_per_week":21.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/indygreg/pyoxidizer/master/README.md","_readme_localurl":"indygreg~pyoxidizer~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/indygreg/pyoxidizer/master/setup.py"],"_requirements_localurls":["indygreg~pyoxidizer~setup.py"]},{"index":66,"category":"util","githuburl":"https://github.com/pycqa/pylint","featured":null,"links":null,"description":null,"_repopath":"pycqa/pylint","_reponame":"pylint","_stars":4371,"_forks":942,"_watches":72,"_topics":["static-analysis","linter","static-code-analysis","code-quality","pep8","closember","hacktoberfest"],"_language":"Python","_homepage":"http://pylint.pycqa.org","_description":"pylint: It's not just a linter that annoys you!","_organization":"pycqa","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2015-12-09T00:00:00.000Z","_age_weeks":365,"_stars_per_week":11.98,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pycqa/pylint/master/README.rst","_readme_localurl":"pycqa~pylint~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pycqa/pylint/master/pyproject.toml"],"_requirements_localurls":["pycqa~pylint~pyproject.toml"]},{"index":206,"category":"ml","githuburl":"https://github.com/lucidrains/deep-daze","featured":null,"links":null,"description":null,"_repopath":"lucidrains/deep-daze","_reponame":"deep-daze","_stars":4365,"_forks":326,"_watches":76,"_topics":["artificial-intelligence","deep-learning","transformers","siren","implicit-neural-representation","text-to-image","multi-modality"],"_language":"Python","_homepage":"","_description":"deep-daze: Simple command line tool for text to image generation using OpenAI's CLIP and Siren (Implicit neural representation network). Technique was originally created by https://twitter.com/advadnoun","_organization":"lucidrains","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-03-13T00:00:00.000Z","_created_at":"2021-01-17T00:00:00.000Z","_age_weeks":98,"_stars_per_week":44.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lucidrains/deep-daze/master/README.md","_readme_localurl":"lucidrains~deep-daze~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lucidrains/deep-daze/master/setup.py"],"_requirements_localurls":["lucidrains~deep-daze~setup.py"]},{"index":196,"category":"viz","githuburl":"https://github.com/lux-org/lux","featured":null,"links":null,"description":null,"_repopath":"lux-org/lux","_reponame":"lux","_stars":4317,"_forks":336,"_watches":86,"_topics":["visualization-tools","jupyter","python","data-science","exploratory-data-analysis","visualization","pandas"],"_language":"Python","_homepage":"","_description":"lux: Automatically visualize your pandas dataframe via a single print! \ud83d\udcca \ud83d\udca1","_organization":"lux-org","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-05-21T00:00:00.000Z","_created_at":"2020-01-08T00:00:00.000Z","_age_weeks":152,"_stars_per_week":28.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lux-org/lux/master/README.md","_readme_localurl":"lux-org~lux~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/lux-org/lux/master/requirements.txt","https://raw.githubusercontent.com/lux-org/lux/master/setup.py","https://raw.githubusercontent.com/lux-org/lux/master/pyproject.toml"],"_requirements_localurls":["lux-org~lux~requirements.txt","lux-org~lux~setup.py","lux-org~lux~pyproject.toml"]},{"index":21,"category":"nlp","githuburl":"https://github.com/facebookresearch/drqa","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/drqa","_reponame":"DrQA","_stars":4313,"_forks":899,"_watches":165,"_topics":[],"_language":"Python","_homepage":null,"_description":"DrQA: Reading Wikipedia to Answer Open-Domain Questions","_organization":"facebookresearch","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2021-05-18T00:00:00.000Z","_created_at":"2017-07-07T00:00:00.000Z","_age_weeks":282,"_stars_per_week":15.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/drqa/master/README.md","_readme_localurl":"facebookresearch~drqa~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/drqa/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/drqa/master/setup.py"],"_requirements_localurls":["facebookresearch~drqa~requirements.txt","facebookresearch~drqa~setup.py"]},{"index":570,"category":"util","githuburl":"https://github.com/jd/tenacity","featured":null,"links":null,"description":null,"_repopath":"jd/tenacity","_reponame":"tenacity","_stars":4294,"_forks":215,"_watches":43,"_topics":["python","failure","retry","retry-library","hacktoberfest"],"_language":"Python","_homepage":"http://tenacity.readthedocs.io","_description":"tenacity: Retrying library for Python","_organization":"jd","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-09-21T00:00:00.000Z","_created_at":"2016-08-11T00:00:00.000Z","_age_weeks":329,"_stars_per_week":13.02,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jd/tenacity/master/README.rst","_readme_localurl":"jd~tenacity~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jd/tenacity/master/setup.py","https://raw.githubusercontent.com/jd/tenacity/master/pyproject.toml"],"_requirements_localurls":["jd~tenacity~setup.py","jd~tenacity~pyproject.toml"]},{"index":603,"category":"ml","githuburl":"https://github.com/cleanlab/cleanlab","featured":null,"links":null,"description":null,"_repopath":"cleanlab/cleanlab","_reponame":"cleanlab","_stars":4269,"_forks":394,"_watches":63,"_topics":["weak-supervision","machine-learning","confident-learning","robust-machine-learning","learning-with-confident-examples","learning-with-noisy-labels","noisy-data","data-cleaning","audio-classification","classification","data-quality","data-science","exploratory-data-analysis","image-classification","label-errors","noisy-labels","text-classification","data-centric-ai","data-centric-machine-learning"],"_language":"Python","_homepage":"https://cleanlab.ai","_description":"cleanlab: The standard data-centric AI package for data quality and machine learning with messy, real-world data and labels.","_organization":"cleanlab","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2018-05-11T00:00:00.000Z","_age_weeks":238,"_stars_per_week":17.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cleanlab/cleanlab/master/README.md","_readme_localurl":"cleanlab~cleanlab~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cleanlab/cleanlab/master/setup.py","https://raw.githubusercontent.com/cleanlab/cleanlab/master/pyproject.toml"],"_requirements_localurls":["cleanlab~cleanlab~setup.py","cleanlab~cleanlab~pyproject.toml"]},{"index":717,"category":"data","githuburl":"https://github.com/jazzband/tablib","featured":null,"links":null,"description":null,"_repopath":"jazzband/tablib","_reponame":"tablib","_stars":4197,"_forks":568,"_watches":141,"_topics":[],"_language":"Python","_homepage":"https://tablib.readthedocs.io/","_description":"tablib: Python Module for Tabular Datasets in XLS, CSV, JSON, YAML, &c.","_organization":"jazzband","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-31T00:00:00.000Z","_created_at":"2011-03-28T00:00:00.000Z","_age_weeks":610,"_stars_per_week":6.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jazzband/tablib/master/README.md","_readme_localurl":"jazzband~tablib~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jazzband/tablib/master/setup.py","https://raw.githubusercontent.com/jazzband/tablib/master/pyproject.toml"],"_requirements_localurls":["jazzband~tablib~setup.py","jazzband~tablib~pyproject.toml"]},{"index":101,"category":"ml","githuburl":"https://github.com/rasbt/mlxtend","featured":null,"links":null,"description":null,"_repopath":"rasbt/mlxtend","_reponame":"mlxtend","_stars":4171,"_forks":795,"_watches":121,"_topics":["python","machine-learning","data-science","data-mining","association-rules","supervised-learning","unsupervised-learning"],"_language":"Python","_homepage":"http://rasbt.github.io/mlxtend/","_description":"mlxtend: A library of extension and helper modules for Python's data analysis and machine learning libraries.","_organization":"rasbt","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2014-08-14T00:00:00.000Z","_age_weeks":433,"_stars_per_week":9.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/mlxtend/master/README.md","_readme_localurl":"rasbt~mlxtend~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rasbt/mlxtend/master/requirements.txt","https://raw.githubusercontent.com/rasbt/mlxtend/master/setup.py"],"_requirements_localurls":["rasbt~mlxtend~requirements.txt","rasbt~mlxtend~setup.py"]},{"index":764,"category":"ml-dl","githuburl":"https://github.com/xpixelgroup/basicsr","featured":null,"links":null,"description":null,"_repopath":"xpixelgroup/basicsr","_reponame":"BasicSR","_stars":4137,"_forks":859,"_watches":85,"_topics":["basicsr","esrgan","edsr","rcan","edvr","srresnet","srgan","super-resolution","restoration","pytorch","stylegan2","dfdnet","basicvsr","swinir","ecbsr"],"_language":"Python","_homepage":"https://basicsr.readthedocs.io/en/latest/","_description":"BasicSR: Open Source Image and Video Restoration Toolbox for Super-resolution, Denoise, Deblurring, etc. Currently, it includes EDSR, RCAN, SRResNet, SRGAN, ESRGAN, EDVR, BasicVSR, SwinIR, ECBSR, etc. Also support StyleGAN2, DFDNet.","_organization":"xpixelgroup","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-06T00:00:00.000Z","_created_at":"2018-04-19T00:00:00.000Z","_age_weeks":241,"_stars_per_week":17.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/xpixelgroup/basicsr/master/README.md","_readme_localurl":"xpixelgroup~basicsr~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/xpixelgroup/basicsr/master/requirements.txt","https://raw.githubusercontent.com/xpixelgroup/basicsr/master/setup.py"],"_requirements_localurls":["xpixelgroup~basicsr~requirements.txt","xpixelgroup~basicsr~setup.py"]},{"index":734,"category":"ml-dl","githuburl":"https://github.com/pytorch/ignite","featured":1.0,"links":null,"description":null,"_repopath":"pytorch/ignite","_reponame":"ignite","_stars":4136,"_forks":562,"_watches":59,"_topics":["pytorch","neural-network","python","machine-learning","deep-learning","metrics","hacktoberfest","closember"],"_language":"Python","_homepage":"https://pytorch-ignite.ai","_description":"ignite: High-level library to help with training and evaluating neural networks in PyTorch flexibly and transparently.","_organization":"pytorch","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2017-11-23T00:00:00.000Z","_age_weeks":262,"_stars_per_week":15.73,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/ignite/master/README.md","_readme_localurl":"pytorch~ignite~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/ignite/master/setup.py","https://raw.githubusercontent.com/pytorch/ignite/master/pyproject.toml"],"_requirements_localurls":["pytorch~ignite~setup.py","pytorch~ignite~pyproject.toml"]},{"index":370,"category":"time-series","githuburl":"https://github.com/facebookresearch/kats","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/kats","_reponame":"Kats","_stars":4107,"_forks":430,"_watches":70,"_topics":[],"_language":"Python","_homepage":"","_description":"Kats, a kit to analyze time series data, a lightweight, easy-to-use, generalizable, and extendable framework to perform time series analysis, from understanding the key statistics and characteristics, detecting change points and anomalies, to forecasting future trends. ","_organization":"facebookresearch","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2021-02-25T00:00:00.000Z","_age_weeks":92,"_stars_per_week":44.23,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/kats/master/README.md","_readme_localurl":"facebookresearch~kats~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/kats/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/kats/master/setup.py"],"_requirements_localurls":["facebookresearch~kats~requirements.txt","facebookresearch~kats~setup.py"]},{"index":293,"category":"util","githuburl":"https://github.com/pytoolz/toolz","featured":null,"links":null,"description":null,"_repopath":"pytoolz/toolz","_reponame":"toolz","_stars":4094,"_forks":243,"_watches":82,"_topics":[],"_language":"Python","_homepage":"http://toolz.readthedocs.org/","_description":"toolz: A functional standard library for Python.","_organization":"pytoolz","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-03T00:00:00.000Z","_created_at":"2013-09-13T00:00:00.000Z","_age_weeks":481,"_stars_per_week":8.5,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytoolz/toolz/master/README.rst","_readme_localurl":"pytoolz~toolz~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pytoolz/toolz/master/setup.py"],"_requirements_localurls":["pytoolz~toolz~setup.py"]},{"index":27,"category":"typing","githuburl":"https://github.com/google/pytype","featured":null,"links":null,"description":null,"_repopath":"google/pytype","_reponame":"pytype","_stars":4006,"_forks":259,"_watches":55,"_topics":["python","typing","typechecker","linter","types","static-analysis","static-code-analysis"],"_language":"Python","_homepage":"https://google.github.io/pytype","_description":"pytype: A static type analyzer for Python code","_organization":"google","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2015-03-18T00:00:00.000Z","_age_weeks":403,"_stars_per_week":9.94,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/pytype/master/README.md","_readme_localurl":"google~pytype~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/google/pytype/master/requirements.txt","https://raw.githubusercontent.com/google/pytype/master/setup.py","https://raw.githubusercontent.com/google/pytype/master/pyproject.toml"],"_requirements_localurls":["google~pytype~requirements.txt","google~pytype~setup.py","google~pytype~pyproject.toml"]},{"index":565,"category":"gis","githuburl":"https://github.com/gboeing/osmnx","featured":null,"links":null,"description":null,"_repopath":"gboeing/osmnx","_reponame":"osmnx","_stars":3948,"_forks":731,"_watches":123,"_topics":["openstreetmap","gis","street-networks","overpass-api","networkx","spatial-analysis","geospatial","urban-planning","transportation","geography","osmnx","networks","spatial-data","urban","osm","spatial","python","transport","mapping","routing"],"_language":"Python","_homepage":"https://geoffboeing.com/publications/osmnx-complex-street-networks/","_description":"OSMnx: Python for street networks. Retrieve, model, analyze, and visualize street networks and other spatial data from OpenStreetMap.","_organization":"gboeing","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2016-07-24T00:00:00.000Z","_age_weeks":332,"_stars_per_week":11.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gboeing/osmnx/master/README.md","_readme_localurl":"gboeing~osmnx~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gboeing/osmnx/master/requirements.txt","https://raw.githubusercontent.com/gboeing/osmnx/master/setup.py"],"_requirements_localurls":["gboeing~osmnx~requirements.txt","gboeing~osmnx~setup.py"]},{"index":542,"category":"util","githuburl":"https://github.com/mamba-org/mamba","featured":null,"links":null,"description":null,"_repopath":"mamba-org/mamba","_reponame":"mamba","_stars":3944,"_forks":226,"_watches":39,"_topics":[],"_language":"C++","_homepage":"https://mamba.readthedocs.io","_description":"mamba: The Fast Cross-Platform Package Manager","_organization":"mamba-org","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-03-05T00:00:00.000Z","_age_weeks":196,"_stars_per_week":20.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mamba-org/mamba/master/README.md","_readme_localurl":"mamba-org~mamba~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mamba-org/mamba/master/pyproject.toml"],"_requirements_localurls":["mamba-org~mamba~pyproject.toml"]},{"index":227,"category":"ml","githuburl":"https://github.com/online-ml/river","featured":1.0,"links":null,"description":null,"_repopath":"online-ml/river","_reponame":"river","_stars":3915,"_forks":432,"_watches":82,"_topics":["incremental-learning","machine-learning","python","online-learning","online-statistics","data-science","streaming","online-machine-learning","streaming-data","concept-drift","real-time-processing","stream-processing"],"_language":"Python","_homepage":"https://riverml.xyz","_description":"river: \ud83c\udf0a Online machine learning in Python","_organization":"online-ml","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-01-24T00:00:00.000Z","_age_weeks":201,"_stars_per_week":19.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/online-ml/river/master/README.md","_readme_localurl":"online-ml~river~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/online-ml/river/master/setup.py","https://raw.githubusercontent.com/online-ml/river/master/pyproject.toml"],"_requirements_localurls":["online-ml~river~setup.py","online-ml~river~pyproject.toml"]},{"index":258,"category":"crypto","githuburl":"https://github.com/ethereum/web3.py","featured":1.0,"links":null,"description":null,"_repopath":"ethereum/web3.py","_reponame":"web3.py","_stars":3896,"_forks":1223,"_watches":117,"_topics":[],"_language":"Python","_homepage":"http://web3py.readthedocs.io","_description":"web3.py: A python interface for interacting with the Ethereum blockchain and ecosystem.","_organization":"ethereum","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2016-04-14T00:00:00.000Z","_age_weeks":346,"_stars_per_week":11.23,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethereum/web3.py/master/README.md","_readme_localurl":"ethereum~web3.py~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ethereum/web3.py/master/setup.py","https://raw.githubusercontent.com/ethereum/web3.py/master/pyproject.toml"],"_requirements_localurls":["ethereum~web3.py~setup.py","ethereum~web3.py~pyproject.toml"]},{"index":13,"category":"ml","githuburl":"https://github.com/districtdatalabs/yellowbrick","featured":null,"links":null,"description":null,"_repopath":"districtdatalabs/yellowbrick","_reponame":"yellowbrick","_stars":3861,"_forks":538,"_watches":102,"_topics":["machine-learning","visual-analysis","model-selection","visualization","scikit-learn","visualizer","matplotlib","python","estimator","anaconda"],"_language":"Python","_homepage":"http://www.scikit-yb.org/","_description":"yellowbrick: Visual analysis and diagnostic tools to facilitate machine learning model selection.","_organization":"districtdatalabs","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2016-05-18T00:00:00.000Z","_age_weeks":342,"_stars_per_week":11.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/districtdatalabs/yellowbrick/master/README.md","_readme_localurl":"districtdatalabs~yellowbrick~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/districtdatalabs/yellowbrick/master/requirements.txt","https://raw.githubusercontent.com/districtdatalabs/yellowbrick/master/setup.py"],"_requirements_localurls":["districtdatalabs~yellowbrick~requirements.txt","districtdatalabs~yellowbrick~setup.py"]},{"index":549,"category":"ml","githuburl":"https://github.com/open-mmlab/mmediting","featured":null,"links":null,"description":null,"_repopath":"open-mmlab/mmediting","_reponame":"mmediting","_stars":3839,"_forks":685,"_watches":83,"_topics":["super-resolution","inpainting","matting","image-generation","generative-adversarial-network","pytorch","deep-learning","video-interpolation","video-frame-interpolation","video-super-resolution","computer-vision","image-editing","image-processing","image-synthesis"],"_language":"Python","_homepage":"https://mmediting.readthedocs.io/en/latest/","_description":"mmediting: OpenMMLab Image and Video Restoration, Editing and Generation Toolbox","_organization":"open-mmlab","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2019-08-23T00:00:00.000Z","_age_weeks":171,"_stars_per_week":22.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-mmlab/mmediting/master/README.md","_readme_localurl":"open-mmlab~mmediting~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/open-mmlab/mmediting/master/requirements.txt","https://raw.githubusercontent.com/open-mmlab/mmediting/master/setup.py"],"_requirements_localurls":["open-mmlab~mmediting~requirements.txt","open-mmlab~mmediting~setup.py"]},{"index":43,"category":"data","githuburl":"https://github.com/lk-geimfari/mimesis","featured":null,"links":null,"description":null,"_repopath":"lk-geimfari/mimesis","_reponame":"mimesis","_stars":3822,"_forks":303,"_watches":64,"_topics":["mimesis","fake","data","generator","fixtures","dummy","json","schema","testing","python","json-generator","faker","mock","synthetic-data","datascience","api-mock"],"_language":"Python","_homepage":"https://mimesis.name","_description":"Mimesis is a high-performance fake data generator for Python, which provides data for a variety of purposes in a variety of languages. ","_organization":"lk-geimfari","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-10-27T00:00:00.000Z","_created_at":"2016-09-09T00:00:00.000Z","_age_weeks":325,"_stars_per_week":11.73,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/lk-geimfari/mimesis/master/README.rst","_readme_localurl":"lk-geimfari~mimesis~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/lk-geimfari/mimesis/master/pyproject.toml"],"_requirements_localurls":["lk-geimfari~mimesis~pyproject.toml"]},{"index":362,"category":"ml-ops","githuburl":"https://github.com/allegroai/clearml","featured":null,"links":null,"description":null,"_repopath":"allegroai/clearml","_reponame":"clearml","_stars":3816,"_forks":516,"_watches":80,"_topics":["version-control","experiment-manager","version","control","experiment","deeplearning","deep-learning","machine-learning","machinelearning","ai","trains","trainsai","clearml","k8s","devops","mlops"],"_language":"Python","_homepage":"https://clear.ml/docs","_description":"ClearML - Auto-Magical CI/CD to streamline your ML workflow. Experiment Manager, MLOps and Data-Management","_organization":"allegroai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-06-10T00:00:00.000Z","_age_weeks":182,"_stars_per_week":20.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/allegroai/clearml/master/README.md","_readme_localurl":"allegroai~clearml~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/allegroai/clearml/master/requirements.txt","https://raw.githubusercontent.com/allegroai/clearml/master/setup.py"],"_requirements_localurls":["allegroai~clearml~requirements.txt","allegroai~clearml~setup.py"]},{"index":355,"category":"ml-ops","githuburl":"https://github.com/feast-dev/feast","featured":null,"links":null,"description":null,"_repopath":"feast-dev/feast","_reponame":"feast","_stars":3798,"_forks":708,"_watches":74,"_topics":["machine-learning","features","ml","big-data","feature-store","python","mlops","data-engineering","data-science","data-quality"],"_language":"Python","_homepage":"https://feast.dev","_description":"feast: Feature Store for Machine Learning","_organization":"feast-dev","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2018-12-10T00:00:00.000Z","_age_weeks":208,"_stars_per_week":18.23,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/feast-dev/feast/master/README.md","_readme_localurl":"feast-dev~feast~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/feast-dev/feast/master/setup.py","https://raw.githubusercontent.com/feast-dev/feast/master/pyproject.toml"],"_requirements_localurls":["feast-dev~feast~setup.py","feast-dev~feast~pyproject.toml"]},{"index":184,"category":"ml-dl","githuburl":"https://github.com/google/flax","featured":null,"links":null,"description":null,"_repopath":"google/flax","_reponame":"flax","_stars":3788,"_forks":437,"_watches":74,"_topics":["jax"],"_language":"Python","_homepage":"https://flax.readthedocs.io","_description":"Flax is a neural network library for JAX that is designed for flexibility.","_organization":"google","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2020-01-10T00:00:00.000Z","_age_weeks":151,"_stars_per_week":24.97,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/flax/master/README.md","_readme_localurl":"google~flax~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/flax/master/setup.py"],"_requirements_localurls":["google~flax~setup.py"]},{"index":376,"category":"util","githuburl":"https://github.com/spotify/pedalboard","featured":null,"links":null,"description":null,"_repopath":"spotify/pedalboard","_reponame":"pedalboard","_stars":3756,"_forks":145,"_watches":44,"_topics":["vst3","vst3-host","python","juce","tensorflow","audio-unit","pybind11","audio-processing","audio-production","audio-research","audio"],"_language":"C++","_homepage":"","_description":"pedalboard: \ud83c\udf9b \ud83d\udd0a A Python library for working with audio.","_organization":"spotify","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2021-07-06T00:00:00.000Z","_age_weeks":74,"_stars_per_week":50.66,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/spotify/pedalboard/master/README.md","_readme_localurl":"spotify~pedalboard~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/spotify/pedalboard/master/requirements.txt","https://raw.githubusercontent.com/spotify/pedalboard/master/setup.py","https://raw.githubusercontent.com/spotify/pedalboard/master/pyproject.toml"],"_requirements_localurls":["spotify~pedalboard~requirements.txt","spotify~pedalboard~setup.py","spotify~pedalboard~pyproject.toml"]},{"index":199,"category":"viz","githuburl":"https://github.com/man-group/dtale","featured":null,"links":null,"description":null,"_repopath":"man-group/dtale","_reponame":"dtale","_stars":3754,"_forks":315,"_watches":67,"_topics":["python27","python3","react","flask","pandas","ipython","jupyter-notebook","react-virtualized","data-analysis","data-visualization","visualization","plotly-dash","data-science","xarray"],"_language":"TypeScript","_homepage":"http://alphatechadmin.pythonanywhere.com","_description":"dtale: Visualizer for pandas data structures","_organization":"man-group","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2019-07-15T00:00:00.000Z","_age_weeks":177,"_stars_per_week":21.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/man-group/dtale/master/README.md","_readme_localurl":"man-group~dtale~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/man-group/dtale/master/requirements.txt","https://raw.githubusercontent.com/man-group/dtale/master/setup.py"],"_requirements_localurls":["man-group~dtale~requirements.txt","man-group~dtale~setup.py"]},{"index":896,"category":"diffusion","githuburl":"https://github.com/apple/ml-stable-diffusion","featured":null,"links":null,"description":null,"_repopath":"apple/ml-stable-diffusion","_reponame":"ml-stable-diffusion","_stars":3725,"_forks":128,"_watches":46,"_topics":[],"_language":"Python","_homepage":"","_description":"ml-stable-diffusion: Stable Diffusion with Core ML on Apple Silicon","_organization":"apple","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2022-11-16T00:00:00.000Z","_age_weeks":3,"_stars_per_week":1241.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/README.md","_readme_localurl":"apple~ml-stable-diffusion~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/requirements.txt","https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/setup.py"],"_requirements_localurls":["apple~ml-stable-diffusion~requirements.txt","apple~ml-stable-diffusion~setup.py"]},{"index":343,"category":"web","githuburl":"https://github.com/vitalik/django-ninja","featured":null,"links":null,"description":null,"_repopath":"vitalik/django-ninja","_reponame":"django-ninja","_stars":3725,"_forks":231,"_watches":62,"_topics":["python","django","rest-api","openapi","pydantic","swagger","swagger-ui","django-ninja"],"_language":"Python","_homepage":"https://django-ninja.rest-framework.com","_description":"django-ninja: \ud83d\udca8 Fast, Async-ready, Openapi, type hints based framework for building APIs","_organization":"vitalik","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-20T00:00:00.000Z","_created_at":"2020-05-19T00:00:00.000Z","_age_weeks":133,"_stars_per_week":27.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vitalik/django-ninja/master/README.md","_readme_localurl":"vitalik~django-ninja~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/vitalik/django-ninja/master/setup.py","https://raw.githubusercontent.com/vitalik/django-ninja/master/pyproject.toml"],"_requirements_localurls":["vitalik~django-ninja~setup.py","vitalik~django-ninja~pyproject.toml"]},{"index":753,"category":"study","githuburl":"https://github.com/karpathy/nn-zero-to-hero","featured":null,"links":null,"description":null,"_repopath":"karpathy/nn-zero-to-hero","_reponame":"nn-zero-to-hero","_stars":3708,"_forks":252,"_watches":151,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"nn-zero-to-hero: Neural Networks: Zero to Hero","_organization":"karpathy","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-21T00:00:00.000Z","_created_at":"2022-09-08T00:00:00.000Z","_age_weeks":12,"_stars_per_week":288.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/karpathy/nn-zero-to-hero/master/README.md","_readme_localurl":"karpathy~nn-zero-to-hero~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":388,"category":"nlp","githuburl":"https://github.com/makcedward/nlpaug","featured":null,"links":null,"description":null,"_repopath":"makcedward/nlpaug","_reponame":"nlpaug","_stars":3672,"_forks":419,"_watches":38,"_topics":["nlp","augmentation","machine-learning","artificial-intelligence","data-science","natural-language-processing","adversarial-attacks","adversarial-example","ai","ml"],"_language":"Jupyter Notebook","_homepage":"https://makcedward.github.io/","_description":"nlpaug: Data augmentation for NLP ","_organization":"makcedward","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-07-07T00:00:00.000Z","_created_at":"2019-03-21T00:00:00.000Z","_age_weeks":193,"_stars_per_week":18.94,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/makcedward/nlpaug/master/README.md","_readme_localurl":"makcedward~nlpaug~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/makcedward/nlpaug/master/requirements.txt","https://raw.githubusercontent.com/makcedward/nlpaug/master/setup.py"],"_requirements_localurls":["makcedward~nlpaug~requirements.txt","makcedward~nlpaug~setup.py"]},{"index":855,"category":"profiling","githuburl":"https://github.com/pythonprofilers/memory_profiler","featured":null,"links":null,"description":null,"_repopath":"pythonprofilers/memory_profiler","_reponame":"memory_profiler","_stars":3671,"_forks":363,"_watches":76,"_topics":[],"_language":"Python","_homepage":"http://pypi.python.org/pypi/memory_profiler","_description":"memory_profiler: Monitor Memory usage of Python code","_organization":"pythonprofilers","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2011-10-14T00:00:00.000Z","_age_weeks":581,"_stars_per_week":6.31,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pythonprofilers/memory_profiler/master/README.rst","_readme_localurl":"pythonprofilers~memory_profiler~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pythonprofilers/memory_profiler/master/setup.py","https://raw.githubusercontent.com/pythonprofilers/memory_profiler/master/pyproject.toml"],"_requirements_localurls":["pythonprofilers~memory_profiler~setup.py","pythonprofilers~memory_profiler~pyproject.toml"]},{"index":357,"category":"data","githuburl":"https://github.com/amundsen-io/amundsen","featured":null,"links":null,"description":null,"_repopath":"amundsen-io/amundsen","_reponame":"amundsen","_stars":3661,"_forks":888,"_watches":245,"_topics":["amundsen","metadata","data-catalog","data-discovery","linuxfoundation"],"_language":"Python","_homepage":"https://www.amundsen.io/amundsen/","_description":"Amundsen is a metadata driven application for improving the productivity of data analysts, data scientists and engineers when interacting with data.","_organization":"amundsen-io","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-05-14T00:00:00.000Z","_age_weeks":186,"_stars_per_week":19.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/amundsen-io/amundsen/master/README.md","_readme_localurl":"amundsen-io~amundsen~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/amundsen-io/amundsen/master/requirements.txt"],"_requirements_localurls":["amundsen-io~amundsen~requirements.txt"]},{"index":822,"category":"ml","githuburl":"https://github.com/project-monai/monai","featured":null,"links":null,"description":null,"_repopath":"project-monai/monai","_reponame":"MONAI","_stars":3633,"_forks":683,"_watches":89,"_topics":["healthcare-imaging","deep-learning","medical-image-computing","medical-image-processing","pytorch","python3","monai"],"_language":"Python","_homepage":"https://monai.io/","_description":"MONAI: AI Toolkit for Healthcare Imaging","_organization":"project-monai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-10-11T00:00:00.000Z","_age_weeks":164,"_stars_per_week":22.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/project-monai/monai/master/README.md","_readme_localurl":"project-monai~monai~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/project-monai/monai/master/requirements.txt","https://raw.githubusercontent.com/project-monai/monai/master/setup.py","https://raw.githubusercontent.com/project-monai/monai/master/pyproject.toml"],"_requirements_localurls":["project-monai~monai~requirements.txt","project-monai~monai~setup.py","project-monai~monai~pyproject.toml"]},{"index":91,"category":"ml","githuburl":"https://github.com/uber/causalml","featured":null,"links":null,"description":null,"_repopath":"uber/causalml","_reponame":"causalml","_stars":3618,"_forks":575,"_watches":76,"_topics":["incubation","machine-learning","causal-inference","uplift-modeling"],"_language":"Python","_homepage":"","_description":"causalml: Uplift modeling and causal inference with machine learning algorithms","_organization":"uber","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-10T00:00:00.000Z","_created_at":"2019-07-09T00:00:00.000Z","_age_weeks":178,"_stars_per_week":20.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/uber/causalml/master/README.md","_readme_localurl":"uber~causalml~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/causalml/master/requirements.txt","https://raw.githubusercontent.com/uber/causalml/master/setup.py","https://raw.githubusercontent.com/uber/causalml/master/pyproject.toml"],"_requirements_localurls":["uber~causalml~requirements.txt","uber~causalml~setup.py","uber~causalml~pyproject.toml"]},{"index":354,"category":"ml-interpretability","githuburl":"https://github.com/pytorch/captum","featured":null,"links":null,"description":null,"_repopath":"pytorch/captum","_reponame":"captum","_stars":3615,"_forks":388,"_watches":212,"_topics":["interpretability","interpretable-ai","interpretable-ml","feature-importance","feature-attribution"],"_language":"Python","_homepage":"https://captum.ai","_description":"captum: Model interpretability and understanding for PyTorch","_organization":"pytorch","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-18T00:00:00.000Z","_created_at":"2019-08-27T00:00:00.000Z","_age_weeks":171,"_stars_per_week":21.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/captum/master/README.md","_readme_localurl":"pytorch~captum~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/captum/master/setup.py","https://raw.githubusercontent.com/pytorch/captum/master/pyproject.toml"],"_requirements_localurls":["pytorch~captum~setup.py","pytorch~captum~pyproject.toml"]},{"index":762,"category":"sim","githuburl":"https://github.com/quantumlib/cirq","featured":null,"links":null,"description":null,"_repopath":"quantumlib/cirq","_reponame":"Cirq","_stars":3606,"_forks":813,"_watches":176,"_topics":["quantum-circuits","nisq","quantum-algorithms","quantum-computing","cirq"],"_language":"Python","_homepage":"","_description":"Cirq: A python framework for creating, editing, and invoking Noisy Intermediate Scale Quantum (NISQ) circuits.","_organization":"quantumlib","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-22T00:00:00.000Z","_created_at":"2017-12-14T00:00:00.000Z","_age_weeks":259,"_stars_per_week":13.88,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/quantumlib/cirq/master/README.rst","_readme_localurl":"quantumlib~cirq~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/quantumlib/cirq/master/setup.py","https://raw.githubusercontent.com/quantumlib/cirq/master/pyproject.toml"],"_requirements_localurls":["quantumlib~cirq~setup.py","quantumlib~cirq~pyproject.toml"]},{"index":58,"category":"gamedev","githuburl":"https://github.com/panda3d/panda3d","featured":null,"links":null,"description":null,"_repopath":"panda3d/panda3d","_reponame":"panda3d","_stars":3594,"_forks":732,"_watches":193,"_topics":["game-engine","open-source","panda3d","cross-platform","python","panda3d-game-engine","game-development","opengl","multi-platform","gamedev","c-plus-plus"],"_language":"C++","_homepage":"https://www.panda3d.org/","_description":"panda3d: Powerful, mature open-source cross-platform game engine for Python and C++, developed by Disney and CMU","_organization":"panda3d","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2013-09-30T00:00:00.000Z","_age_weeks":479,"_stars_per_week":7.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/panda3d/panda3d/master/README.md","_readme_localurl":"panda3d~panda3d~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":793,"category":"ml-ops","githuburl":"https://github.com/orchest/orchest","featured":null,"links":null,"description":null,"_repopath":"orchest/orchest","_reponame":"orchest","_stars":3565,"_forks":208,"_watches":37,"_topics":["data-science","machine-learning","pipelines","ide","jupyter","cloud","self-hosted","jupyterlab","notebooks","docker","python","data-pipelines","orchest","deployment","kubernetes","airflow","dag","etl","etl-pipeline"],"_language":"TypeScript","_homepage":"https://orchest.io","_description":"orchest: Build data pipelines, the easy way \ud83d\udee0\ufe0f","_organization":"orchest","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2020-05-21T00:00:00.000Z","_age_weeks":132,"_stars_per_week":26.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/orchest/orchest/master/README.md","_readme_localurl":"orchest~orchest~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/orchest/orchest/master/pyproject.toml"],"_requirements_localurls":["orchest~orchest~pyproject.toml"]},{"index":423,"category":"util","githuburl":"https://github.com/tebelorg/rpa-python","featured":null,"links":null,"description":null,"_repopath":"tebelorg/rpa-python","_reponame":"RPA-Python","_stars":3552,"_forks":521,"_watches":99,"_topics":["rpa","python","opencv","tesseract","tagui","sikuli","cross-platform"],"_language":"Python","_homepage":"","_description":"RPA-Python: Python package for doing RPA","_organization":"tebelorg","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-09-07T00:00:00.000Z","_created_at":"2019-03-30T00:00:00.000Z","_age_weeks":192,"_stars_per_week":18.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tebelorg/rpa-python/master/README.md","_readme_localurl":"tebelorg~rpa-python~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tebelorg/rpa-python/master/setup.py"],"_requirements_localurls":["tebelorg~rpa-python~setup.py"]},{"index":783,"category":"diffusion","githuburl":"https://github.com/carson-katri/dream-textures","featured":null,"links":null,"description":null,"_repopath":"carson-katri/dream-textures","_reponame":"dream-textures","_stars":3545,"_forks":167,"_watches":70,"_topics":["ai","blender","blender-addon","image-generation","stable-diffusion"],"_language":"Python","_homepage":"","_description":"dream-textures: Stable Diffusion built-in to the Blender shader editor","_organization":"carson-katri","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2022-09-08T00:00:00.000Z","_age_weeks":12,"_stars_per_week":275.72,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/carson-katri/dream-textures/master/README.md","_readme_localurl":"carson-katri~dream-textures~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":209,"category":"web","githuburl":"https://github.com/pywebio/pywebio","featured":null,"links":null,"description":null,"_repopath":"pywebio/pywebio","_reponame":"PyWebIO","_stars":3527,"_forks":314,"_watches":44,"_topics":["pywebio"],"_language":"Python","_homepage":"https://pywebio.readthedocs.io","_description":"PyWebIO: Write interactive web app in script way.","_organization":"pywebio","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-26T00:00:00.000Z","_created_at":"2020-02-29T00:00:00.000Z","_age_weeks":144,"_stars_per_week":24.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pywebio/pywebio/master/README.md","_readme_localurl":"pywebio~pywebio~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pywebio/pywebio/master/requirements.txt","https://raw.githubusercontent.com/pywebio/pywebio/master/setup.py"],"_requirements_localurls":["pywebio~pywebio~requirements.txt","pywebio~pywebio~setup.py"]},{"index":616,"category":"testing","githuburl":"https://github.com/spulec/freezegun","featured":null,"links":null,"description":null,"_repopath":"spulec/freezegun","_reponame":"freezegun","_stars":3499,"_forks":243,"_watches":34,"_topics":[],"_language":"Python","_homepage":null,"_description":"freezegun: Let your Python tests travel through time","_organization":"spulec","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-08-12T00:00:00.000Z","_created_at":"2012-12-11T00:00:00.000Z","_age_weeks":521,"_stars_per_week":6.71,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/spulec/freezegun/master/README.rst","_readme_localurl":"spulec~freezegun~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/spulec/freezegun/master/requirements.txt","https://raw.githubusercontent.com/spulec/freezegun/master/setup.py","https://raw.githubusercontent.com/spulec/freezegun/master/pyproject.toml"],"_requirements_localurls":["spulec~freezegun~requirements.txt","spulec~freezegun~setup.py","spulec~freezegun~pyproject.toml"]},{"index":309,"category":"crypto","githuburl":"https://github.com/crytic/slither","featured":null,"links":null,"description":null,"_repopath":"crytic/slither","_reponame":"slither","_stars":3491,"_forks":637,"_watches":63,"_topics":["solidity","ethereum","static-analysis"],"_language":"Python","_homepage":"https://blog.trailofbits.com/2018/10/19/slither-a-solidity-static-analysis-framework/","_description":"slither: Static Analyzer for Solidity","_organization":"crytic","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2018-09-05T00:00:00.000Z","_age_weeks":222,"_stars_per_week":15.73,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/crytic/slither/master/README.md","_readme_localurl":"crytic~slither~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/crytic/slither/master/setup.py","https://raw.githubusercontent.com/crytic/slither/master/pyproject.toml"],"_requirements_localurls":["crytic~slither~setup.py","crytic~slither~pyproject.toml"]},{"index":770,"category":"data","githuburl":"https://github.com/gristlabs/grist-core","featured":null,"links":null,"description":null,"_repopath":"gristlabs/grist-core","_reponame":"grist-core","_stars":3487,"_forks":162,"_watches":40,"_topics":["awesome","database","spreadsheet"],"_language":"TypeScript","_homepage":"https://support.getgrist.com/self-managed/","_description":"grist-core: Grist is the evolution of spreadsheets.","_organization":"gristlabs","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2020-05-22T00:00:00.000Z","_age_weeks":132,"_stars_per_week":26.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gristlabs/grist-core/master/README.md","_readme_localurl":"gristlabs~grist-core~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":442,"category":"gis","githuburl":"https://github.com/osgeo/gdal","featured":null,"links":null,"description":null,"_repopath":"osgeo/gdal","_reponame":"gdal","_stars":3482,"_forks":1946,"_watches":170,"_topics":["raster","geospatial-data","vector","remote-sensing"],"_language":"C++","_homepage":"https://gdal.org","_description":"GDAL is an open source MIT licensed translator library for raster and vector geospatial data formats.","_organization":"osgeo","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2012-10-09T00:00:00.000Z","_age_weeks":530,"_stars_per_week":6.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/osgeo/gdal/master/README.md","_readme_localurl":"osgeo~gdal~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":287,"category":"gis","githuburl":"https://github.com/geopandas/geopandas","featured":1.0,"links":null,"description":null,"_repopath":"geopandas/geopandas","_reponame":"geopandas","_stars":3443,"_forks":770,"_watches":105,"_topics":[],"_language":"Python","_homepage":"http://geopandas.org/","_description":"geopandas: Python tools for geographic data","_organization":"geopandas","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2013-06-27T00:00:00.000Z","_age_weeks":492,"_stars_per_week":6.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/geopandas/geopandas/master/README.md","_readme_localurl":"geopandas~geopandas~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/geopandas/geopandas/master/setup.py","https://raw.githubusercontent.com/geopandas/geopandas/master/pyproject.toml"],"_requirements_localurls":["geopandas~geopandas~setup.py","geopandas~geopandas~pyproject.toml"]},{"index":280,"category":"nlp","githuburl":"https://github.com/maartengr/bertopic","featured":null,"links":null,"description":null,"_repopath":"maartengr/bertopic","_reponame":"BERTopic","_stars":3431,"_forks":448,"_watches":46,"_topics":["bert","transformers","topic-modeling","sentence-embeddings","nlp","machine-learning","topic","ldavis","topic-modelling","topic-models"],"_language":"Python","_homepage":"https://maartengr.github.io/BERTopic/","_description":"BERTopic: Leveraging BERT and c-TF-IDF to create easily interpretable topics. ","_organization":"maartengr","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2020-09-22T00:00:00.000Z","_age_weeks":115,"_stars_per_week":29.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/maartengr/bertopic/master/README.md","_readme_localurl":"maartengr~bertopic~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/maartengr/bertopic/master/setup.py"],"_requirements_localurls":["maartengr~bertopic~setup.py"]},{"index":778,"category":"study","githuburl":"https://github.com/nielsrogge/transformers-tutorials","featured":null,"links":null,"description":null,"_repopath":"nielsrogge/transformers-tutorials","_reponame":"Transformers-Tutorials","_stars":3414,"_forks":505,"_watches":76,"_topics":["transformers","pytorch","bert","vision-transformer","layoutlm","gpt-2"],"_language":"Jupyter Notebook","_homepage":"","_description":"Transformers-Tutorials: This repository contains demos I made with the Transformers library by HuggingFace.","_organization":"nielsrogge","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-25T00:00:00.000Z","_created_at":"2020-08-31T00:00:00.000Z","_age_weeks":118,"_stars_per_week":28.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nielsrogge/transformers-tutorials/master/README.md","_readme_localurl":"nielsrogge~transformers-tutorials~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":782,"category":"diffusion","githuburl":"https://github.com/jina-ai/discoart","featured":null,"links":null,"description":null,"_repopath":"jina-ai/discoart","_reponame":"discoart","_stars":3407,"_forks":203,"_watches":32,"_topics":["creative-ai","disco-diffusion","cross-modal","dalle","generative-art","multimodal","diffusion","prompts","midjourney","imgen","discodiffusion","creative-art","clip-guided-diffusion","latent-diffusion","stable-diffusion"],"_language":"Python","_homepage":"","_description":"discoart: \ud83e\udea9 Create Disco Diffusion artworks in one line","_organization":"jina-ai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-08-17T00:00:00.000Z","_created_at":"2022-06-30T00:00:00.000Z","_age_weeks":22,"_stars_per_week":149.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jina-ai/discoart/master/README.md","_readme_localurl":"jina-ai~discoart~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jina-ai/discoart/master/setup.py"],"_requirements_localurls":["jina-ai~discoart~setup.py"]},{"index":462,"category":"util","githuburl":"https://github.com/rspeer/python-ftfy","featured":null,"links":null,"description":null,"_repopath":"rspeer/python-ftfy","_reponame":"python-ftfy","_stars":3376,"_forks":116,"_watches":75,"_topics":[],"_language":"Python","_homepage":"http://ftfy.readthedocs.org","_description":"python-ftfy: Fixes mojibake and other glitches in Unicode text, after the fact.","_organization":"rspeer","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-25T00:00:00.000Z","_created_at":"2012-08-24T00:00:00.000Z","_age_weeks":536,"_stars_per_week":6.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rspeer/python-ftfy/master/README.md","_readme_localurl":"rspeer~python-ftfy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/rspeer/python-ftfy/master/setup.py","https://raw.githubusercontent.com/rspeer/python-ftfy/master/pyproject.toml"],"_requirements_localurls":["rspeer~python-ftfy~setup.py","rspeer~python-ftfy~pyproject.toml"]},{"index":754,"category":"study","githuburl":"https://github.com/karpathy/micrograd","featured":null,"links":null,"description":null,"_repopath":"karpathy/micrograd","_reponame":"micrograd","_stars":3360,"_forks":299,"_watches":79,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"micrograd: A tiny scalar-valued autograd engine and a neural net library on top of it with PyTorch-like API","_organization":"karpathy","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2020-04-18T00:00:00.000Z","_created_at":"2020-04-13T00:00:00.000Z","_age_weeks":138,"_stars_per_week":24.3,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/karpathy/micrograd/master/README.md","_readme_localurl":"karpathy~micrograd~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/karpathy/micrograd/master/setup.py"],"_requirements_localurls":["karpathy~micrograd~setup.py"]},{"index":757,"category":"util","githuburl":"https://github.com/pypa/hatch","featured":null,"links":null,"description":null,"_repopath":"pypa/hatch","_reponame":"hatch","_stars":3349,"_forks":157,"_watches":49,"_topics":["python","cli","virtualenv","packaging","versioning","build","plugin"],"_language":"Python","_homepage":"https://hatch.pypa.io/latest/","_description":"hatch: Modern, extensible Python project management","_organization":"pypa","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2017-05-31T00:00:00.000Z","_age_weeks":288,"_stars_per_week":11.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pypa/hatch/master/README.md","_readme_localurl":"pypa~hatch~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pypa/hatch/master/pyproject.toml"],"_requirements_localurls":["pypa~hatch~pyproject.toml"]},{"index":368,"category":"nlp","githuburl":"https://github.com/layout-parser/layout-parser","featured":null,"links":null,"description":null,"_repopath":"layout-parser/layout-parser","_reponame":"layout-parser","_stars":3324,"_forks":331,"_watches":57,"_topics":["layout-analysis","deep-learning","object-detection","ocr","layout-parser","detectron2","document-layout-analysis","computer-vision","document-image-processing","layout-detection"],"_language":"Python","_homepage":"https://layout-parser.github.io/","_description":"layout-parser: A Unified Toolkit for Deep Learning Based Document Image Analysis","_organization":"layout-parser","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-08-06T00:00:00.000Z","_created_at":"2020-06-10T00:00:00.000Z","_age_weeks":130,"_stars_per_week":25.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/layout-parser/layout-parser/master/README.md","_readme_localurl":"layout-parser~layout-parser~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/layout-parser/layout-parser/master/setup.py"],"_requirements_localurls":["layout-parser~layout-parser~setup.py"]},{"index":200,"category":"ml","githuburl":"https://github.com/huggingface/accelerate","featured":null,"links":null,"description":null,"_repopath":"huggingface/accelerate","_reponame":"accelerate","_stars":3312,"_forks":277,"_watches":63,"_topics":[],"_language":"Python","_homepage":"https://huggingface.co/docs/accelerate","_description":"accelerate: \ud83d\ude80 A simple way to train and use PyTorch models with multi-GPU, TPU, mixed-precision","_organization":"huggingface","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2020-10-30T00:00:00.000Z","_age_weeks":109,"_stars_per_week":30.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/accelerate/master/README.md","_readme_localurl":"huggingface~accelerate~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/accelerate/master/setup.py","https://raw.githubusercontent.com/huggingface/accelerate/master/pyproject.toml"],"_requirements_localurls":["huggingface~accelerate~setup.py","huggingface~accelerate~pyproject.toml"]},{"index":421,"category":"ml","githuburl":"https://github.com/facebookresearch/reagent","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/reagent","_reponame":"ReAgent","_stars":3308,"_forks":497,"_watches":146,"_topics":[],"_language":"Python","_homepage":"https://reagent.ai","_description":"ReAgent: A platform for Reasoning systems (Reinforcement Learning, Contextual Bandits, etc.)","_organization":"facebookresearch","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-15T00:00:00.000Z","_created_at":"2017-07-27T00:00:00.000Z","_age_weeks":279,"_stars_per_week":11.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/reagent/master/README.md","_readme_localurl":"facebookresearch~reagent~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/reagent/master/setup.py","https://raw.githubusercontent.com/facebookresearch/reagent/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~reagent~setup.py","facebookresearch~reagent~pyproject.toml"]},{"index":833,"category":"util","githuburl":"https://github.com/adafruit/circuitpython","featured":null,"links":null,"description":null,"_repopath":"adafruit/circuitpython","_reponame":"circuitpython","_stars":3300,"_forks":873,"_watches":128,"_topics":["circuitpython","micropython","python","embedded","microcontroller","education","beginner","cpython","python3","hacktoberfest"],"_language":"C","_homepage":"https://circuitpython.org","_description":"CircuitPython - a Python implementation for teaching coding with microcontrollers","_organization":"adafruit","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2016-08-20T00:00:00.000Z","_age_weeks":328,"_stars_per_week":10.04,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/adafruit/circuitpython/master/README.rst","_readme_localurl":"adafruit~circuitpython~README.rst","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":897,"category":"viz","githuburl":"https://github.com/has2k1/plotnine","featured":null,"links":null,"description":null,"_repopath":"has2k1/plotnine","_reponame":"plotnine","_stars":3268,"_forks":184,"_watches":65,"_topics":["plotting","grammar","graphics","python","data-analysis"],"_language":"Python","_homepage":"https://plotnine.readthedocs.io/en/stable/","_description":"plotnine: A grammar of graphics for Python","_organization":"has2k1","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2017-04-24T00:00:00.000Z","_age_weeks":293,"_stars_per_week":11.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/has2k1/plotnine/master/README.md","_readme_localurl":"has2k1~plotnine~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/has2k1/plotnine/master/setup.py","https://raw.githubusercontent.com/has2k1/plotnine/master/pyproject.toml"],"_requirements_localurls":["has2k1~plotnine~setup.py","has2k1~plotnine~pyproject.toml"]},{"index":4,"category":"pandas","githuburl":"https://github.com/aws/aws-sdk-pandas","featured":1.0,"links":null,"description":null,"_repopath":"aws/aws-sdk-pandas","_reponame":"aws-sdk-pandas","_stars":3242,"_forks":554,"_watches":58,"_topics":["python","aws","pandas","apache-arrow","apache-parquet","data-engineering","etl","data-science","redshift","athena","lambda","aws-lambda","aws-glue","emr","amazon-athena","glue-catalog","mysql","amazon-sagemaker-notebook"],"_language":"Python","_homepage":"https://aws-sdk-pandas.readthedocs.io","_description":"aws-sdk-pandas: pandas on AWS - Easy integration with Athena, Glue, Redshift, Timestream, Neptune, OpenSearch, QuickSight, Chime, CloudWatchLogs, DynamoDB, EMR, SecretManager, PostgreSQL, MySQL, SQLServer and S3 (Parquet, CSV, JSON and EXCEL).","_organization":"aws","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2019-02-26T00:00:00.000Z","_age_weeks":197,"_stars_per_week":16.44,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aws/aws-sdk-pandas/master/README.md","_readme_localurl":"aws~aws-sdk-pandas~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/aws/aws-sdk-pandas/master/pyproject.toml"],"_requirements_localurls":["aws~aws-sdk-pandas~pyproject.toml"]},{"index":790,"category":"diffusion","githuburl":"https://github.com/ashawkey/stable-dreamfusion","featured":null,"links":null,"description":null,"_repopath":"ashawkey/stable-dreamfusion","_reponame":"stable-dreamfusion","_stars":3229,"_forks":264,"_watches":74,"_topics":["text-to-3d","gui","nerf","stable-diffusion","dreamfusion"],"_language":"Python","_homepage":"","_description":"stable-dreamfusion: A pytorch implementation of text-to-3D dreamfusion, powered by stable diffusion.","_organization":"ashawkey","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2022-10-06T00:00:00.000Z","_age_weeks":8,"_stars_per_week":364.56,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/ashawkey/stable-dreamfusion/master/readme.md","_readme_localurl":"ashawkey~stable-dreamfusion~readme.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/ashawkey/stable-dreamfusion/master/requirements.txt"],"_requirements_localurls":["ashawkey~stable-dreamfusion~requirements.txt"]},{"index":321,"category":"gui","githuburl":"https://github.com/r0x0r/pywebview","featured":null,"links":null,"description":null,"_repopath":"r0x0r/pywebview","_reponame":"pywebview","_stars":3224,"_forks":430,"_watches":57,"_topics":["python","webkit","gtk","linux","windows","gui","osx","cocoa","html","javascript","qt","cef"],"_language":"Python","_homepage":"https://pywebview.flowrl.com","_description":"pywebview: Build GUI for your Python program with JavaScript, HTML, and CSS","_organization":"r0x0r","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2014-11-20T00:00:00.000Z","_age_weeks":419,"_stars_per_week":7.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/r0x0r/pywebview/master/README.md","_readme_localurl":"r0x0r~pywebview~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/r0x0r/pywebview/master/requirements.txt","https://raw.githubusercontent.com/r0x0r/pywebview/master/setup.py"],"_requirements_localurls":["r0x0r~pywebview~requirements.txt","r0x0r~pywebview~setup.py"]},{"index":663,"category":"util","githuburl":"https://github.com/zeromq/pyzmq","featured":null,"links":null,"description":null,"_repopath":"zeromq/pyzmq","_reponame":"pyzmq","_stars":3220,"_forks":610,"_watches":102,"_topics":["cython","python","zeromq"],"_language":"Python","_homepage":"http://zguide.zeromq.org/py:all","_description":"PyZMQ: Python bindings for zeromq","_organization":"zeromq","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2010-07-21T00:00:00.000Z","_age_weeks":646,"_stars_per_week":4.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zeromq/pyzmq/master/README.md","_readme_localurl":"zeromq~pyzmq~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/zeromq/pyzmq/master/setup.py","https://raw.githubusercontent.com/zeromq/pyzmq/master/pyproject.toml"],"_requirements_localurls":["zeromq~pyzmq~setup.py","zeromq~pyzmq~pyproject.toml"]},{"index":208,"category":"crypto","githuburl":"https://github.com/cyberpunkmetalhead/binance-volatility-trading-bot","featured":null,"links":null,"description":null,"_repopath":"cyberpunkmetalhead/binance-volatility-trading-bot","_reponame":"Binance-volatility-trading-bot","_stars":3219,"_forks":762,"_watches":145,"_topics":[],"_language":"Python","_homepage":null,"_description":"Binance-volatility-trading-bot: This is a fully functioning Binance trading bot that measures the volatility of every coin on Binance and places trades with the highest gaining coins If you like this project consider donating though the Brave browser to allow me to continuously improve the script.","_organization":"cyberpunkmetalhead","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2021-06-10T00:00:00.000Z","_created_at":"2021-05-08T00:00:00.000Z","_age_weeks":82,"_stars_per_week":38.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cyberpunkmetalhead/binance-volatility-trading-bot/master/README.md","_readme_localurl":"cyberpunkmetalhead~binance-volatility-trading-bot~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/cyberpunkmetalhead/binance-volatility-trading-bot/master/requirements.txt"],"_requirements_localurls":["cyberpunkmetalhead~binance-volatility-trading-bot~requirements.txt"]},{"index":93,"category":"web","githuburl":"https://github.com/unbit/uwsgi","featured":null,"links":null,"description":null,"_repopath":"unbit/uwsgi","_reponame":"uwsgi","_stars":3217,"_forks":668,"_watches":113,"_topics":[],"_language":"C","_homepage":"http://projects.unbit.it/uwsgi","_description":"uWSGI application server container","_organization":"unbit","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2011-10-09T00:00:00.000Z","_age_weeks":582,"_stars_per_week":5.52,"_readme_filename":"","_readme_giturl":"","_readme_localurl":"","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/unbit/uwsgi/master/setup.py"],"_requirements_localurls":["unbit~uwsgi~setup.py"]},{"index":361,"category":"ml-ops","githuburl":"https://github.com/polyaxon/polyaxon","featured":null,"links":null,"description":null,"_repopath":"polyaxon/polyaxon","_reponame":"polyaxon","_stars":3212,"_forks":315,"_watches":77,"_topics":["deep-learning","machine-learning","artificial-intelligence","data-science","reinforcement-learning","kubernetes","tensorflow","pytorch","keras","mxnet","caffe","ml","k8s","jupyter","notebook","jupyterlab","pipelines","workflow","mlops","hyperparameter-optimization"],"_language":"Python","_homepage":"https://polyaxon.com","_description":"polyaxon: MLOps Tools For Managing & Orchestrating The Machine Learning LifeCycle","_organization":"polyaxon","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-11T00:00:00.000Z","_created_at":"2016-12-26T00:00:00.000Z","_age_weeks":310,"_stars_per_week":10.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/polyaxon/polyaxon/master/README.md","_readme_localurl":"polyaxon~polyaxon~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":895,"category":"time-series","githuburl":"https://github.com/awslabs/gluonts","featured":null,"links":null,"description":null,"_repopath":"awslabs/gluonts","_reponame":"gluonts","_stars":3195,"_forks":646,"_watches":70,"_topics":["time-series","deep-learning","forecasting","neural-networks","machine-learning","time-series-prediction","time-series-forecasting","mxnet","pytorch","aws","sagemaker","timeseries","artificial-intelligence","data-science"],"_language":"Python","_homepage":"https://ts.gluon.ai","_description":"gluonts: Probabilistic time series modeling in Python","_organization":"awslabs","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2019-05-15T00:00:00.000Z","_age_weeks":186,"_stars_per_week":17.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/awslabs/gluonts/master/README.md","_readme_localurl":"awslabs~gluonts~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/awslabs/gluonts/master/setup.py","https://raw.githubusercontent.com/awslabs/gluonts/master/pyproject.toml"],"_requirements_localurls":["awslabs~gluonts~setup.py","awslabs~gluonts~pyproject.toml"]},{"index":319,"category":"gui","githuburl":"https://github.com/dddomodossola/remi","featured":null,"links":null,"description":null,"_repopath":"dddomodossola/remi","_reponame":"remi","_stars":3177,"_forks":388,"_watches":119,"_topics":["python","gui-library","remi","platform-independent","ui","gui"],"_language":"Python","_homepage":"","_description":"remi: Python REMote Interface library. Platform independent. In about 100 Kbytes, perfect for your diet.","_organization":"dddomodossola","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2014-03-20T00:00:00.000Z","_age_weeks":454,"_stars_per_week":6.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dddomodossola/remi/master/README.md","_readme_localurl":"dddomodossola~remi~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dddomodossola/remi/master/setup.py"],"_requirements_localurls":["dddomodossola~remi~setup.py"]},{"index":557,"category":"jupyter","githuburl":"https://github.com/executablebooks/jupyter-book","featured":null,"links":null,"description":null,"_repopath":"executablebooks/jupyter-book","_reponame":"jupyter-book","_stars":3149,"_forks":582,"_watches":63,"_topics":["jupyter","sphinx-doc","documentation-generator"],"_language":"Python","_homepage":"http://jupyterbook.org","_description":"jupyter-book: Create beautiful, publication-quality books and documents from computational content.","_organization":"executablebooks","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2018-06-14T00:00:00.000Z","_age_weeks":233,"_stars_per_week":13.47,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/executablebooks/jupyter-book/master/README.md","_readme_localurl":"executablebooks~jupyter-book~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/executablebooks/jupyter-book/master/pyproject.toml"],"_requirements_localurls":["executablebooks~jupyter-book~pyproject.toml"]},{"index":804,"category":"util","githuburl":"https://github.com/miguelgrinberg/python-socketio","featured":null,"links":null,"description":null,"_repopath":"miguelgrinberg/python-socketio","_reponame":"python-socketio","_stars":3142,"_forks":511,"_watches":63,"_topics":["socket-io","socketio","socketio-server","websocket","long-polling","low-latency","web-server","python","asyncio","eventlet","gevent"],"_language":"Python","_homepage":"","_description":"python-socketio: Python Socket.IO server and client","_organization":"miguelgrinberg","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-25T00:00:00.000Z","_created_at":"2015-07-15T00:00:00.000Z","_age_weeks":386,"_stars_per_week":8.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/miguelgrinberg/python-socketio/master/README.md","_readme_localurl":"miguelgrinberg~python-socketio~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/miguelgrinberg/python-socketio/master/setup.py","https://raw.githubusercontent.com/miguelgrinberg/python-socketio/master/pyproject.toml"],"_requirements_localurls":["miguelgrinberg~python-socketio~setup.py","miguelgrinberg~python-socketio~pyproject.toml"]},{"index":99,"category":"ml","githuburl":"https://github.com/skvark/opencv-python","featured":null,"links":null,"description":null,"_repopath":"skvark/opencv-python","_reponame":"opencv-python","_stars":3140,"_forks":616,"_watches":82,"_topics":["opencv","python","wheel","python-3","opencv-python","opencv-contrib-python","precompiled","pypi","manylinux"],"_language":"Shell","_homepage":"https://pypi.org/project/opencv-python/","_description":"opencv-python: Automated CI toolchain to produce precompiled opencv-python, opencv-python-headless, opencv-contrib-python and opencv-contrib-python-headless packages.","_organization":"skvark","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2016-04-08T00:00:00.000Z","_age_weeks":347,"_stars_per_week":9.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/skvark/opencv-python/master/README.md","_readme_localurl":"skvark~opencv-python~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/skvark/opencv-python/master/setup.py","https://raw.githubusercontent.com/skvark/opencv-python/master/pyproject.toml"],"_requirements_localurls":["skvark~opencv-python~setup.py","skvark~opencv-python~pyproject.toml"]},{"index":250,"category":"web","githuburl":"https://github.com/websocket-client/websocket-client","featured":null,"links":null,"description":null,"_repopath":"websocket-client/websocket-client","_reponame":"websocket-client","_stars":3128,"_forks":721,"_watches":88,"_topics":["websocket","websockets","websocket-client","websockets-client","python","rfc-6455"],"_language":"Python","_homepage":"https://github.com/websocket-client/websocket-client","_description":"websocket-client: WebSocket client for Python","_organization":"websocket-client","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2010-12-28T00:00:00.000Z","_age_weeks":623,"_stars_per_week":5.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/websocket-client/websocket-client/master/README.md","_readme_localurl":"websocket-client~websocket-client~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/websocket-client/websocket-client/master/setup.py"],"_requirements_localurls":["websocket-client~websocket-client~setup.py"]},{"index":832,"category":"pandas","githuburl":"https://github.com/blaze/blaze","featured":null,"links":null,"description":null,"_repopath":"blaze/blaze","_reponame":"blaze","_stars":3115,"_forks":386,"_watches":200,"_topics":[],"_language":"Python","_homepage":"blaze.pydata.org","_description":"blaze: NumPy and Pandas interface to Big Data","_organization":"blaze","_updated_at":"2022-11-26T00:00:00.000Z","_last_commit_date":"2019-08-15T00:00:00.000Z","_created_at":"2012-10-26T00:00:00.000Z","_age_weeks":527,"_stars_per_week":5.9,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/blaze/blaze/master/README.rst","_readme_localurl":"blaze~blaze~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/blaze/blaze/master/setup.py"],"_requirements_localurls":["blaze~blaze~setup.py"]},{"index":35,"category":"data","githuburl":"https://github.com/jmcnamara/xlsxwriter","featured":null,"links":null,"description":null,"_repopath":"jmcnamara/xlsxwriter","_reponame":"XlsxWriter","_stars":3105,"_forks":590,"_watches":120,"_topics":["python","xlsx-files","libxlsxwriter","pandas","charts","spreadsheet","xlsx","xlsxwriter"],"_language":"Python","_homepage":"https://xlsxwriter.readthedocs.io","_description":"XlsxWriter: A Python module for creating Excel XLSX files.","_organization":"jmcnamara","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-01T00:00:00.000Z","_created_at":"2013-01-04T00:00:00.000Z","_age_weeks":517,"_stars_per_week":6.0,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jmcnamara/xlsxwriter/master/README.rst","_readme_localurl":"jmcnamara~xlsxwriter~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jmcnamara/xlsxwriter/master/setup.py"],"_requirements_localurls":["jmcnamara~xlsxwriter~setup.py"]},{"index":182,"category":"testing","githuburl":"https://github.com/tox-dev/tox","featured":null,"links":null,"description":null,"_repopath":"tox-dev/tox","_reponame":"tox","_stars":3097,"_forks":443,"_watches":41,"_topics":["testing","python","virtualenv","continuous-integration","cli","automation","venv","travis","appveyor","gitlab","circleci","azure-pipelines","hacktoberfest"],"_language":"Python","_homepage":"https://tox.wiki","_description":"tox: Command line driven CI frontend and development task automation tool.","_organization":"tox-dev","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2016-09-17T00:00:00.000Z","_age_weeks":324,"_stars_per_week":9.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tox-dev/tox/master/README.md","_readme_localurl":"tox-dev~tox~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tox-dev/tox/master/setup.py","https://raw.githubusercontent.com/tox-dev/tox/master/pyproject.toml"],"_requirements_localurls":["tox-dev~tox~setup.py","tox-dev~tox~pyproject.toml"]},{"index":518,"category":"util","githuburl":"https://github.com/spack/spack","featured":null,"links":null,"description":null,"_repopath":"spack/spack","_reponame":"spack","_stars":3089,"_forks":1787,"_watches":104,"_topics":["python","spack","package-manager","hpc","build-tools","radiuss","scientific-computing","macos","linux"],"_language":"Python","_homepage":"https://spack.io","_description":"spack: A flexible package manager that supports multiple versions, configurations, platforms, and compilers.","_organization":"spack","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2014-01-08T00:00:00.000Z","_age_weeks":465,"_stars_per_week":6.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/spack/spack/master/README.md","_readme_localurl":"spack~spack~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/spack/spack/master/pyproject.toml"],"_requirements_localurls":["spack~spack~pyproject.toml"]},{"index":443,"category":"gis","githuburl":"https://github.com/shapely/shapely","featured":1.0,"links":null,"description":null,"_repopath":"shapely/shapely","_reponame":"shapely","_stars":3080,"_forks":497,"_watches":82,"_topics":[],"_language":"Python","_homepage":"https://shapely.readthedocs.io/en/stable/","_description":"shapely: Manipulation and analysis of geometric objects","_organization":"shapely","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2011-12-31T00:00:00.000Z","_age_weeks":570,"_stars_per_week":5.4,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/shapely/shapely/master/README.rst","_readme_localurl":"shapely~shapely~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/shapely/shapely/master/setup.py","https://raw.githubusercontent.com/shapely/shapely/master/pyproject.toml"],"_requirements_localurls":["shapely~shapely~setup.py","shapely~shapely~pyproject.toml"]},{"index":0,"category":"data","githuburl":"https://github.com/andialbrecht/sqlparse","featured":null,"links":null,"description":null,"_repopath":"andialbrecht/sqlparse","_reponame":"sqlparse","_stars":3077,"_forks":612,"_watches":93,"_topics":[],"_language":"Python","_homepage":"","_description":"sqlparse: A non-validating SQL parser module for Python","_organization":"andialbrecht","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-09-23T00:00:00.000Z","_created_at":"2012-04-18T00:00:00.000Z","_age_weeks":555,"_stars_per_week":5.54,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/andialbrecht/sqlparse/master/README.rst","_readme_localurl":"andialbrecht~sqlparse~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/andialbrecht/sqlparse/master/setup.py"],"_requirements_localurls":["andialbrecht~sqlparse~setup.py"]},{"index":260,"category":"util","githuburl":"https://github.com/python-markdown/markdown","featured":null,"links":null,"description":null,"_repopath":"python-markdown/markdown","_reponame":"markdown","_stars":3071,"_forks":789,"_watches":76,"_topics":["python-markdown","markdown","markdown-parser","markdown-to-html","python","python3"],"_language":"Python","_homepage":"https://python-markdown.github.io/","_description":"markdown: A Python implementation of John Gruber\u2019s Markdown with Extension support.","_organization":"python-markdown","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2010-05-29T00:00:00.000Z","_age_weeks":653,"_stars_per_week":4.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python-markdown/markdown/master/README.md","_readme_localurl":"python-markdown~markdown~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-markdown/markdown/master/setup.py","https://raw.githubusercontent.com/python-markdown/markdown/master/pyproject.toml"],"_requirements_localurls":["python-markdown~markdown~setup.py","python-markdown~markdown~pyproject.toml"]},{"index":384,"category":"nlp","githuburl":"https://github.com/minimaxir/gpt-2-simple","featured":null,"links":null,"description":null,"_repopath":"minimaxir/gpt-2-simple","_reponame":"gpt-2-simple","_stars":3061,"_forks":631,"_watches":74,"_topics":["text-generation","tensorflow","openai","textgenrnn"],"_language":"Python","_homepage":"","_description":"gpt-2-simple: Python package to easily retrain OpenAI's GPT-2 text-generating model on new texts","_organization":"minimaxir","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-05-22T00:00:00.000Z","_created_at":"2019-04-13T00:00:00.000Z","_age_weeks":190,"_stars_per_week":16.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/minimaxir/gpt-2-simple/master/README.md","_readme_localurl":"minimaxir~gpt-2-simple~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/minimaxir/gpt-2-simple/master/requirements.txt","https://raw.githubusercontent.com/minimaxir/gpt-2-simple/master/setup.py"],"_requirements_localurls":["minimaxir~gpt-2-simple~requirements.txt","minimaxir~gpt-2-simple~setup.py"]},{"index":363,"category":"ml-ops","githuburl":"https://github.com/kubeflow/pipelines","featured":null,"links":null,"description":null,"_repopath":"kubeflow/pipelines","_reponame":"pipelines","_stars":3054,"_forks":1348,"_watches":103,"_topics":["kubeflow-pipelines","mlops","kubeflow","machine-learning","kubernetes","pipeline","data-science"],"_language":"Python","_homepage":"https://www.kubeflow.org/docs/components/pipelines/","_description":"pipelines: Machine Learning Pipelines for Kubeflow","_organization":"kubeflow","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2018-05-12T00:00:00.000Z","_age_weeks":238,"_stars_per_week":12.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kubeflow/pipelines/master/README.md","_readme_localurl":"kubeflow~pipelines~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/kubeflow/pipelines/master/requirements.txt"],"_requirements_localurls":["kubeflow~pipelines~requirements.txt"]},{"index":140,"category":"nlp","githuburl":"https://github.com/neuml/txtai","featured":null,"links":null,"description":null,"_repopath":"neuml/txtai","_reponame":"txtai","_stars":3029,"_forks":270,"_watches":54,"_topics":["python","search","machine-learning","nlp","deep-learning","document-search","audio-search","image-search","video-search","semantic-search","similarity-search","neural-search","contextual-search","vector-search","machine-learning-workflows","machine-learning-pipelines","microservice","api","cloud-native","txtai"],"_language":"Python","_homepage":"https://neuml.github.io/txtai","_description":"txtai: \ud83d\udca1 Build AI-powered semantic search applications ","_organization":"neuml","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2020-08-09T00:00:00.000Z","_age_weeks":121,"_stars_per_week":24.94,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/neuml/txtai/master/README.md","_readme_localurl":"neuml~txtai~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/neuml/txtai/master/setup.py","https://raw.githubusercontent.com/neuml/txtai/master/pyproject.toml"],"_requirements_localurls":["neuml~txtai~setup.py","neuml~txtai~pyproject.toml"]},{"index":138,"category":"ml-interpretability","githuburl":"https://github.com/pair-code/lit","featured":1.0,"links":null,"description":null,"_repopath":"pair-code/lit","_reponame":"lit","_stars":3023,"_forks":318,"_watches":72,"_topics":["machine-learning","natural-language-processing","visualization"],"_language":"TypeScript","_homepage":"https://pair-code.github.io/lit","_description":"lit: The Language Interpretability Tool: Interactively analyze NLP models for model understanding in an extensible and framework agnostic interface.","_organization":"pair-code","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2020-07-28T00:00:00.000Z","_age_weeks":123,"_stars_per_week":24.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pair-code/lit/master/README.md","_readme_localurl":"pair-code~lit~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":610,"category":"testing","githuburl":"https://github.com/seleniumbase/seleniumbase","featured":null,"links":null,"description":null,"_repopath":"seleniumbase/seleniumbase","_reponame":"SeleniumBase","_stars":3012,"_forks":724,"_watches":119,"_topics":["python","selenium","webdriver","selenium-python","testing","rpa","e2e-testing","seleniumbase","awesome-list","pytest-plugin","web-automation","pytest","behave","testing-tools","chrome","firefox","recorder","webkit","webautomation","chromedriver"],"_language":"Python","_homepage":"https://seleniumbase.io","_description":"SeleniumBase: Python framework for web automation and testing. Includes a dashboard and a test-generating recorder.","_organization":"seleniumbase","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2014-03-04T00:00:00.000Z","_age_weeks":457,"_stars_per_week":6.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/seleniumbase/seleniumbase/master/README.md","_readme_localurl":"seleniumbase~seleniumbase~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/seleniumbase/seleniumbase/master/requirements.txt","https://raw.githubusercontent.com/seleniumbase/seleniumbase/master/setup.py"],"_requirements_localurls":["seleniumbase~seleniumbase~requirements.txt","seleniumbase~seleniumbase~setup.py"]},{"index":42,"category":"nlp","githuburl":"https://github.com/life4/textdistance","featured":null,"links":null,"description":null,"_repopath":"life4/textdistance","_reponame":"textdistance","_stars":3004,"_forks":240,"_watches":61,"_topics":["distance","algorithm","python","textdistance","hamming-distance","levenshtein-distance","damerau-levenshtein","damerau-levenshtein-distance","algorithms","distance-calculation","jellyfish","diff","levenshtein"],"_language":"Python","_homepage":"","_description":"textdistance: Compute distance between sequences. 30+ algorithms, pure python implementation, common interface, optional external libs usage.","_organization":"life4","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-09-18T00:00:00.000Z","_created_at":"2017-05-05T00:00:00.000Z","_age_weeks":291,"_stars_per_week":10.3,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/life4/textdistance/master/README.md","_readme_localurl":"life4~textdistance~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/life4/textdistance/master/setup.py","https://raw.githubusercontent.com/life4/textdistance/master/pyproject.toml"],"_requirements_localurls":["life4~textdistance~setup.py","life4~textdistance~pyproject.toml"]},{"index":698,"category":"util","githuburl":"https://github.com/joblib/joblib","featured":null,"links":null,"description":null,"_repopath":"joblib/joblib","_reponame":"joblib","_stars":2984,"_forks":356,"_watches":63,"_topics":["python","parallel-computing","caching","multiprocessing","threading","memoization"],"_language":"Python","_homepage":"http://joblib.readthedocs.org","_description":"joblib: Computing with Python functions.","_organization":"joblib","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-25T00:00:00.000Z","_created_at":"2010-05-07T00:00:00.000Z","_age_weeks":656,"_stars_per_week":4.54,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/joblib/joblib/master/README.rst","_readme_localurl":"joblib~joblib~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/joblib/joblib/master/setup.py"],"_requirements_localurls":["joblib~joblib~setup.py"]},{"index":336,"category":"ml","githuburl":"https://github.com/apple/coremltools","featured":null,"links":null,"description":null,"_repopath":"apple/coremltools","_reponame":"coremltools","_stars":2981,"_forks":476,"_watches":109,"_topics":["coremltools","tensorflow","pytorch","coreml","machine-learning","model-converter","model-conversion"],"_language":"Python","_homepage":"https://coremltools.readme.io","_description":"coremltools: Core ML tools contain supporting tools for Core ML model conversion, editing, and validation.","_organization":"apple","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2017-06-30T00:00:00.000Z","_age_weeks":283,"_stars_per_week":10.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apple/coremltools/master/README.md","_readme_localurl":"apple~coremltools~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/apple/coremltools/master/setup.py"],"_requirements_localurls":["apple~coremltools~setup.py"]},{"index":139,"category":"viz","githuburl":"https://github.com/vispy/vispy","featured":null,"links":null,"description":null,"_repopath":"vispy/vispy","_reponame":"vispy","_stars":2979,"_forks":604,"_watches":122,"_topics":["hacktoberfest","python","opengl","visualization","closember"],"_language":"Python","_homepage":"http://vispy.org","_description":"vispy: Main repository for Vispy","_organization":"vispy","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-14T00:00:00.000Z","_created_at":"2013-03-21T00:00:00.000Z","_age_weeks":506,"_stars_per_week":5.88,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/vispy/vispy/master/README.rst","_readme_localurl":"vispy~vispy~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/vispy/vispy/master/setup.py","https://raw.githubusercontent.com/vispy/vispy/master/pyproject.toml"],"_requirements_localurls":["vispy~vispy~setup.py","vispy~vispy~pyproject.toml"]},{"index":272,"category":"data","githuburl":"https://github.com/praw-dev/praw","featured":null,"links":null,"description":null,"_repopath":"praw-dev/praw","_reponame":"praw","_stars":2956,"_forks":449,"_watches":72,"_topics":["python","reddit","api","oauth","praw","reddit-api"],"_language":"Python","_homepage":"http://praw.readthedocs.io/","_description":"PRAW, an acronym for \"Python Reddit API Wrapper\", is a python package that allows for simple access to Reddit's API.","_organization":"praw-dev","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2010-08-19T00:00:00.000Z","_age_weeks":641,"_stars_per_week":4.61,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/praw-dev/praw/master/README.rst","_readme_localurl":"praw-dev~praw~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/praw-dev/praw/master/setup.py","https://raw.githubusercontent.com/praw-dev/praw/master/pyproject.toml"],"_requirements_localurls":["praw-dev~praw~setup.py","praw-dev~praw~pyproject.toml"]},{"index":285,"category":"crypto","githuburl":"https://github.com/ethereum/consensus-specs","featured":null,"links":null,"description":null,"_repopath":"ethereum/consensus-specs","_reponame":"consensus-specs","_stars":2952,"_forks":740,"_watches":245,"_topics":[],"_language":"Python","_homepage":"","_description":"consensus-specs: Ethereum Proof-of-Stake Consensus Specifications","_organization":"ethereum","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2018-09-20T00:00:00.000Z","_age_weeks":219,"_stars_per_week":13.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethereum/consensus-specs/master/README.md","_readme_localurl":"ethereum~consensus-specs~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ethereum/consensus-specs/master/setup.py"],"_requirements_localurls":["ethereum~consensus-specs~setup.py"]},{"index":221,"category":"jupyter","githuburl":"https://github.com/jupyterlite/jupyterlite","featured":null,"links":null,"description":null,"_repopath":"jupyterlite/jupyterlite","_reponame":"jupyterlite","_stars":2932,"_forks":177,"_watches":43,"_topics":["jupyter","jupyterlab","jupyterlab-extension","lite","webassembly","wasm","pyodide"],"_language":"Python","_homepage":"https://jupyterlite.rtfd.io/en/latest/try/lab","_description":"jupyterlite: Wasm powered Jupyter running in the browser \ud83d\udca1","_organization":"jupyterlite","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2021-03-27T00:00:00.000Z","_age_weeks":88,"_stars_per_week":33.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyterlite/jupyterlite/master/README.md","_readme_localurl":"jupyterlite~jupyterlite~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyterlite/jupyterlite/master/pyproject.toml"],"_requirements_localurls":["jupyterlite~jupyterlite~pyproject.toml"]},{"index":623,"category":"util","githuburl":"https://github.com/suor/funcy","featured":null,"links":null,"description":null,"_repopath":"suor/funcy","_reponame":"funcy","_stars":2919,"_forks":133,"_watches":73,"_topics":["functional-programming","utilities","python"],"_language":"Python","_homepage":"","_description":"funcy: A fancy and practical functional tools","_organization":"suor","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-08-25T00:00:00.000Z","_created_at":"2012-10-13T00:00:00.000Z","_age_weeks":529,"_stars_per_week":5.51,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/suor/funcy/master/README.rst","_readme_localurl":"suor~funcy~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/suor/funcy/master/setup.py"],"_requirements_localurls":["suor~funcy~setup.py"]},{"index":77,"category":"jupyter","githuburl":"https://github.com/quantopian/qgrid","featured":null,"links":null,"description":null,"_repopath":"quantopian/qgrid","_reponame":"qgrid","_stars":2915,"_forks":416,"_watches":89,"_topics":[],"_language":"Python","_homepage":"","_description":"qgrid: An interactive grid for sorting, filtering, and editing DataFrames in Jupyter notebooks","_organization":"quantopian","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2020-04-07T00:00:00.000Z","_created_at":"2014-09-30T00:00:00.000Z","_age_weeks":427,"_stars_per_week":6.82,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/quantopian/qgrid/master/README.rst","_readme_localurl":"quantopian~qgrid~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/quantopian/qgrid/master/requirements.txt","https://raw.githubusercontent.com/quantopian/qgrid/master/setup.py"],"_requirements_localurls":["quantopian~qgrid~requirements.txt","quantopian~qgrid~setup.py"]},{"index":348,"category":"ml-ops","githuburl":"https://github.com/evidentlyai/evidently","featured":null,"links":null,"description":null,"_repopath":"evidentlyai/evidently","_reponame":"evidently","_stars":2913,"_forks":317,"_watches":32,"_topics":["data-drift","jupyter-notebook","pandas-dataframe","machine-learning","model-monitoring","html-report","production-machine-learning","machine-learning-operations","mlops","data-science","hacktoberfest"],"_language":"Python","_homepage":"","_description":"evidently: Evaluate and monitor ML models from validation to production. Join our Discord: https://discord.com/invite/xZjKRaNp8b","_organization":"evidentlyai","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2020-11-25T00:00:00.000Z","_age_weeks":106,"_stars_per_week":27.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/evidentlyai/evidently/master/README.md","_readme_localurl":"evidentlyai~evidently~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/evidentlyai/evidently/master/requirements.txt","https://raw.githubusercontent.com/evidentlyai/evidently/master/setup.py"],"_requirements_localurls":["evidentlyai~evidently~requirements.txt","evidentlyai~evidently~setup.py"]},{"index":381,"category":"ml-ops","githuburl":"https://github.com/aimhubio/aim","featured":null,"links":null,"description":null,"_repopath":"aimhubio/aim","_reponame":"aim","_stars":2903,"_forks":178,"_watches":35,"_topics":["python","ai","data-science","data-visualization","experiment-tracking","machine-learning","metadata","metadata-tracking","ml","mlflow","mlops","pytorch","tensorboard","tensorflow","visualization"],"_language":"TypeScript","_homepage":"https://aimstack.io","_description":"Aim \ud83d\udcab \u2014 easy-to-use and performant open-source ML experiment tracker.","_organization":"aimhubio","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-05-31T00:00:00.000Z","_age_weeks":183,"_stars_per_week":15.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aimhubio/aim/master/README.md","_readme_localurl":"aimhubio~aim~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/aimhubio/aim/master/requirements.txt","https://raw.githubusercontent.com/aimhubio/aim/master/setup.py","https://raw.githubusercontent.com/aimhubio/aim/master/pyproject.toml"],"_requirements_localurls":["aimhubio~aim~requirements.txt","aimhubio~aim~setup.py","aimhubio~aim~pyproject.toml"]},{"index":715,"category":"ml-ops","githuburl":"https://github.com/flyteorg/flyte","featured":null,"links":null,"description":null,"_repopath":"flyteorg/flyte","_reponame":"flyte","_stars":2896,"_forks":304,"_watches":266,"_topics":["flyte","machine-learning","golang","scale","workflow","data-science","data-analysis","data","kubernetes-operator","kubernetes","orchestration-engine","mlops","dataops","grpc","python","battle-tested","production","production-grade","declarative","hacktoberfest"],"_language":"Python","_homepage":"https://flyte.org","_description":"flyte: Kubernetes-native workflow automation platform for complex, mission-critical data and ML processes at scale. It has been battle-tested at Lyft, Spotify, Freenome, and others and is truly open-source.","_organization":"flyteorg","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2019-10-21T00:00:00.000Z","_age_weeks":163,"_stars_per_week":17.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/flyteorg/flyte/master/README.md","_readme_localurl":"flyteorg~flyte~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/flyteorg/flyte/master/requirements.txt"],"_requirements_localurls":["flyteorg~flyte~requirements.txt"]},{"index":704,"category":"data","githuburl":"https://github.com/pyeve/cerberus","featured":null,"links":null,"description":null,"_repopath":"pyeve/cerberus","_reponame":"cerberus","_stars":2884,"_forks":226,"_watches":48,"_topics":["python","data-validation"],"_language":"Python","_homepage":"http://python-cerberus.org","_description":"cerberus: Lightweight, extensible data validation library for Python","_organization":"pyeve","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2021-05-05T00:00:00.000Z","_created_at":"2012-10-10T00:00:00.000Z","_age_weeks":530,"_stars_per_week":5.44,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyeve/cerberus/master/README.rst","_readme_localurl":"pyeve~cerberus~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyeve/cerberus/master/setup.py","https://raw.githubusercontent.com/pyeve/cerberus/master/pyproject.toml"],"_requirements_localurls":["pyeve~cerberus~setup.py","pyeve~cerberus~pyproject.toml"]},{"index":476,"category":"gis","githuburl":"https://github.com/holoviz/datashader","featured":1.0,"links":null,"description":null,"_repopath":"holoviz/datashader","_reponame":"datashader","_stars":2882,"_forks":360,"_watches":94,"_topics":["holoviz","datashader","data-visualizations","rasterization"],"_language":"Python","_homepage":"http://datashader.org","_description":"datashader: Quickly and accurately render even the largest data.","_organization":"holoviz","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-17T00:00:00.000Z","_created_at":"2015-12-23T00:00:00.000Z","_age_weeks":363,"_stars_per_week":7.94,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/datashader/master/README.md","_readme_localurl":"holoviz~datashader~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/datashader/master/setup.py","https://raw.githubusercontent.com/holoviz/datashader/master/pyproject.toml"],"_requirements_localurls":["holoviz~datashader~setup.py","holoviz~datashader~pyproject.toml"]},{"index":660,"category":"ml","githuburl":"https://github.com/pytorch/glow","featured":null,"links":null,"description":null,"_repopath":"pytorch/glow","_reponame":"glow","_stars":2880,"_forks":654,"_watches":154,"_topics":[],"_language":"C++","_homepage":null,"_description":"glow: Compiler for Neural Network hardware accelerators","_organization":"pytorch","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2017-09-29T00:00:00.000Z","_age_weeks":270,"_stars_per_week":10.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/glow/master/README.md","_readme_localurl":"pytorch~glow~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":390,"category":"diffusion","githuburl":"https://github.com/openai/glide-text2im","featured":null,"links":null,"description":null,"_repopath":"openai/glide-text2im","_reponame":"glide-text2im","_stars":2878,"_forks":401,"_watches":116,"_topics":[],"_language":"Python","_homepage":"","_description":"glide-text2im: GLIDE: a diffusion-based text-conditional image synthesis model","_organization":"openai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-03-21T00:00:00.000Z","_created_at":"2021-12-10T00:00:00.000Z","_age_weeks":51,"_stars_per_week":55.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/glide-text2im/master/README.md","_readme_localurl":"openai~glide-text2im~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/glide-text2im/master/setup.py"],"_requirements_localurls":["openai~glide-text2im~setup.py"]},{"index":366,"category":"ml","githuburl":"https://github.com/facebookresearch/vissl","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/vissl","_reponame":"vissl","_stars":2866,"_forks":299,"_watches":53,"_topics":[],"_language":"Jupyter Notebook","_homepage":"https://vissl.ai","_description":"VISSL is FAIR's library of extensible, modular and scalable components for SOTA Self-Supervised Learning with images.","_organization":"facebookresearch","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-12T00:00:00.000Z","_created_at":"2020-04-09T00:00:00.000Z","_age_weeks":138,"_stars_per_week":20.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/vissl/master/README.md","_readme_localurl":"facebookresearch~vissl~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/vissl/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/vissl/master/setup.py"],"_requirements_localurls":["facebookresearch~vissl~requirements.txt","facebookresearch~vissl~setup.py"]},{"index":811,"category":"ml-ops","githuburl":"https://github.com/ploomber/ploomber","featured":null,"links":null,"description":null,"_repopath":"ploomber/ploomber","_reponame":"ploomber","_stars":2856,"_forks":196,"_watches":27,"_topics":["workflow","machine-learning","data-science","data-engineering","mlops","papermill","jupyter","jupyter-notebooks","pipelines","vscode","pycharm","notebooks","hacktoberfest"],"_language":"Python","_homepage":"https://ploomber.io","_description":"ploomber: The fastest \u26a1\ufe0f way to build data pipelines. Develop iteratively, deploy anywhere. \u2601\ufe0f","_organization":"ploomber","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-22T00:00:00.000Z","_created_at":"2020-01-20T00:00:00.000Z","_age_weeks":150,"_stars_per_week":19.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ploomber/ploomber/master/README.md","_readme_localurl":"ploomber~ploomber~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ploomber/ploomber/master/setup.py","https://raw.githubusercontent.com/ploomber/ploomber/master/pyproject.toml"],"_requirements_localurls":["ploomber~ploomber~setup.py","ploomber~ploomber~pyproject.toml"]},{"index":624,"category":"util","githuburl":"https://github.com/more-itertools/more-itertools","featured":null,"links":null,"description":null,"_repopath":"more-itertools/more-itertools","_reponame":"more-itertools","_stars":2811,"_forks":220,"_watches":34,"_topics":[],"_language":"Python","_homepage":"https://more-itertools.rtfd.io","_description":"more-itertools: More routines for operating on iterables, beyond itertools","_organization":"more-itertools","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2012-04-26T00:00:00.000Z","_age_weeks":553,"_stars_per_week":5.08,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/more-itertools/more-itertools/master/README.rst","_readme_localurl":"more-itertools~more-itertools~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/more-itertools/more-itertools/master/setup.py","https://raw.githubusercontent.com/more-itertools/more-itertools/master/pyproject.toml"],"_requirements_localurls":["more-itertools~more-itertools~setup.py","more-itertools~more-itertools~pyproject.toml"]},{"index":761,"category":"sim","githuburl":"https://github.com/qiskit/qiskit","featured":null,"links":null,"description":null,"_repopath":"qiskit/qiskit","_reponame":"qiskit","_stars":2805,"_forks":759,"_watches":97,"_topics":["qiskit","quantum-computing","quantum-programming-language","documentation"],"_language":"OpenQASM","_homepage":"https://qiskit.org","_description":"Qiskit is an open-source SDK for working with quantum computers at the level of circuits, algorithms, and application modules.","_organization":"qiskit","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2018-12-12T00:00:00.000Z","_age_weeks":208,"_stars_per_week":13.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/qiskit/qiskit/master/README.md","_readme_localurl":"qiskit~qiskit~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/qiskit/qiskit/master/setup.py"],"_requirements_localurls":["qiskit~qiskit~setup.py"]},{"index":261,"category":"time-series","githuburl":"https://github.com/salesforce/merlion","featured":null,"links":null,"description":null,"_repopath":"salesforce/merlion","_reponame":"Merlion","_stars":2800,"_forks":240,"_watches":45,"_topics":["time-series","anomaly-detection","forecasting","machine-learning","benchmarking","automl","ensemble-learning"],"_language":"Python","_homepage":"","_description":"Merlion: A Machine Learning Framework for Time Series Intelligence","_organization":"salesforce","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2021-07-28T00:00:00.000Z","_age_weeks":71,"_stars_per_week":39.44,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/merlion/master/README.md","_readme_localurl":"salesforce~merlion~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/salesforce/merlion/master/setup.py"],"_requirements_localurls":["salesforce~merlion~setup.py"]},{"index":787,"category":"study","githuburl":"https://github.com/cosmicpython/book","featured":null,"links":null,"description":null,"_repopath":"cosmicpython/book","_reponame":"book","_stars":2789,"_forks":480,"_watches":92,"_topics":[],"_language":"Python","_homepage":"https://www.cosmicpython.com","_description":"book: A Book about Pythonic Application Architecture Patterns for Managing Complexity. Cosmos is the Opposite of Chaos you see. O'R. wouldn't actually let us call it \"Cosmic Python\" tho.","_organization":"cosmicpython","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-10-03T00:00:00.000Z","_created_at":"2019-02-05T00:00:00.000Z","_age_weeks":200,"_stars_per_week":13.94,"_readme_filename":"Readme.md","_readme_giturl":"https://raw.githubusercontent.com/cosmicpython/book/master/Readme.md","_readme_localurl":"cosmicpython~book~Readme.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/cosmicpython/book/master/requirements.txt"],"_requirements_localurls":["cosmicpython~book~requirements.txt"]},{"index":154,"category":"pandas","githuburl":"https://github.com/adamerose/pandasgui","featured":null,"links":null,"description":null,"_repopath":"adamerose/pandasgui","_reponame":"PandasGUI","_stars":2786,"_forks":189,"_watches":53,"_topics":["pandas","dataframe","gui","viewer"],"_language":"Python","_homepage":"","_description":"PandasGUI: A GUI for Pandas DataFrames","_organization":"adamerose","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-03-16T00:00:00.000Z","_created_at":"2019-06-12T00:00:00.000Z","_age_weeks":182,"_stars_per_week":15.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/adamerose/pandasgui/master/README.md","_readme_localurl":"adamerose~pandasgui~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/adamerose/pandasgui/master/requirements.txt","https://raw.githubusercontent.com/adamerose/pandasgui/master/setup.py"],"_requirements_localurls":["adamerose~pandasgui~requirements.txt","adamerose~pandasgui~setup.py"]},{"index":765,"category":"diffusion","githuburl":"https://github.com/lkwq007/stablediffusion-infinity","featured":null,"links":null,"description":null,"_repopath":"lkwq007/stablediffusion-infinity","_reponame":"stablediffusion-infinity","_stars":2784,"_forks":210,"_watches":29,"_topics":["outpainting","stablediffusion"],"_language":"Python","_homepage":"","_description":"stablediffusion-infinity: Outpainting with Stable Diffusion on an infinite canvas","_organization":"lkwq007","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2022-09-02T00:00:00.000Z","_age_weeks":13,"_stars_per_week":203.0,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/lkwq007/stablediffusion-infinity/master/readme.md","_readme_localurl":"lkwq007~stablediffusion-infinity~readme.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":270,"category":"web","githuburl":"https://github.com/strawberry-graphql/strawberry","featured":null,"links":null,"description":null,"_repopath":"strawberry-graphql/strawberry","_reponame":"strawberry","_stars":2776,"_forks":340,"_watches":43,"_topics":["graphql","graphql-server","python","starlette","asyncio","mypy","django","graphql-library","asgi","graphql-schema","strawberry","hacktoberfest"],"_language":"Python","_homepage":"https://strawberry.rocks","_description":"strawberry: A GraphQL library for Python that leverages type annotations \ud83c\udf53","_organization":"strawberry-graphql","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2018-12-21T00:00:00.000Z","_age_weeks":206,"_stars_per_week":13.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/README.md","_readme_localurl":"strawberry-graphql~strawberry~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/setup.py","https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/pyproject.toml"],"_requirements_localurls":["strawberry-graphql~strawberry~setup.py","strawberry-graphql~strawberry~pyproject.toml"]},{"index":488,"category":"util","githuburl":"https://github.com/pydata/xarray","featured":null,"links":null,"description":null,"_repopath":"pydata/xarray","_reponame":"xarray","_stars":2775,"_forks":853,"_watches":106,"_topics":["python","netcdf","numpy","pandas","xarray","dask"],"_language":"Python","_homepage":"https://xarray.dev","_description":"xarray: N-D labeled arrays and datasets in Python","_organization":"pydata","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2013-09-30T00:00:00.000Z","_age_weeks":479,"_stars_per_week":5.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pydata/xarray/master/README.md","_readme_localurl":"pydata~xarray~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pydata/xarray/master/requirements.txt","https://raw.githubusercontent.com/pydata/xarray/master/setup.py","https://raw.githubusercontent.com/pydata/xarray/master/pyproject.toml"],"_requirements_localurls":["pydata~xarray~requirements.txt","pydata~xarray~setup.py","pydata~xarray~pyproject.toml"]},{"index":792,"category":"ml-dl","githuburl":"https://github.com/facebookincubator/aitemplate","featured":null,"links":null,"description":null,"_repopath":"facebookincubator/aitemplate","_reponame":"AITemplate","_stars":2764,"_forks":180,"_watches":78,"_topics":[],"_language":"Python","_homepage":"","_description":"AITemplate is a Python framework which renders neural network into high performance CUDA/HIP C++ code. Specialized for FP16 TensorCore (NVIDIA GPU) and MatrixCore (AMD GPU) inference.","_organization":"facebookincubator","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2022-07-15T00:00:00.000Z","_age_weeks":20,"_stars_per_week":133.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookincubator/aitemplate/master/README.md","_readme_localurl":"facebookincubator~aitemplate~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":203,"category":"viz","githuburl":"https://github.com/ml-tooling/opyrator","featured":null,"links":null,"description":null,"_repopath":"ml-tooling/opyrator","_reponame":"opyrator","_stars":2749,"_forks":132,"_watches":48,"_topics":["fastapi","streamlit","pydantic","python","microservices","serverless","faas","functions","python-functions","machine-learning","deployment","type-hints"],"_language":"Python","_homepage":"https://opyrator-playground.mltooling.org","_description":"opyrator: \ud83e\ude84 Turns your machine learning code into microservices with web API, interactive GUI, and more.","_organization":"ml-tooling","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2021-05-06T00:00:00.000Z","_created_at":"2021-04-06T00:00:00.000Z","_age_weeks":87,"_stars_per_week":31.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ml-tooling/opyrator/master/README.md","_readme_localurl":"ml-tooling~opyrator~README.md","_requirements_filenames":["setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/ml-tooling/opyrator/master/setup.py","https://raw.githubusercontent.com/ml-tooling/opyrator/master/pyproject.toml","https://raw.githubusercontent.com/ml-tooling/opyrator/master/Pipfile"],"_requirements_localurls":["ml-tooling~opyrator~setup.py","ml-tooling~opyrator~pyproject.toml","ml-tooling~opyrator~Pipfile"]},{"index":729,"category":"ml-dl","githuburl":"https://github.com/mosaicml/composer","featured":null,"links":null,"description":null,"_repopath":"mosaicml/composer","_reponame":"composer","_stars":2738,"_forks":169,"_watches":22,"_topics":["deep-learning","pytorch","neural-networks","ml-systems","ml-efficiency","ml-training","machine-learning","neural-network"],"_language":"Python","_homepage":"http://docs.mosaicml.com","_description":"composer: Train neural networks up to 7x faster","_organization":"mosaicml","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2021-10-12T00:00:00.000Z","_age_weeks":60,"_stars_per_week":45.52,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mosaicml/composer/master/README.md","_readme_localurl":"mosaicml~composer~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mosaicml/composer/master/setup.py","https://raw.githubusercontent.com/mosaicml/composer/master/pyproject.toml"],"_requirements_localurls":["mosaicml~composer~setup.py","mosaicml~composer~pyproject.toml"]},{"index":641,"category":"testing","githuburl":"https://github.com/behave/behave","featured":null,"links":null,"description":null,"_repopath":"behave/behave","_reponame":"behave","_stars":2733,"_forks":608,"_watches":119,"_topics":[],"_language":"Python","_homepage":"","_description":"behave: BDD, Python style.","_organization":"behave","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2011-10-25T00:00:00.000Z","_age_weeks":580,"_stars_per_week":4.71,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/behave/behave/master/README.rst","_readme_localurl":"behave~behave~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/behave/behave/master/setup.py"],"_requirements_localurls":["behave~behave~setup.py"]},{"index":156,"category":"profiling","githuburl":"https://github.com/gaogaotiantian/viztracer","featured":null,"links":null,"description":null,"_repopath":"gaogaotiantian/viztracer","_reponame":"viztracer","_stars":2732,"_forks":275,"_watches":37,"_topics":["tracer","python3","debugging","profiling","visualization","flamegraph","python","logging"],"_language":"Python","_homepage":"https://viztracer.readthedocs.io/","_description":"VizTracer is a low-overhead logging/debugging/profiling tool that can trace and visualize your python code execution.","_organization":"gaogaotiantian","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2020-08-05T00:00:00.000Z","_age_weeks":122,"_stars_per_week":22.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gaogaotiantian/viztracer/master/README.md","_readme_localurl":"gaogaotiantian~viztracer~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gaogaotiantian/viztracer/master/setup.py"],"_requirements_localurls":["gaogaotiantian~viztracer~setup.py"]},{"index":170,"category":"ml","githuburl":"https://github.com/ourownstory/neural_prophet","featured":null,"links":null,"description":null,"_repopath":"ourownstory/neural_prophet","_reponame":"neural_prophet","_stars":2674,"_forks":360,"_watches":48,"_topics":["forecasting","time-series","machine-learning","fbprophet","prophet","forecast","artificial-intelligence","prediction","trend","seasonality","autoregression","pytorch","timeseries","forecasting-algorithm","forecasting-model","neuralprophet","neural","neural-network","python","deep-learning"],"_language":"Python","_homepage":"https://neuralprophet.com","_description":"neural_prophet: NeuralProphet: A simple forecasting package","_organization":"ourownstory","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2020-05-04T00:00:00.000Z","_age_weeks":135,"_stars_per_week":19.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ourownstory/neural_prophet/master/README.md","_readme_localurl":"ourownstory~neural_prophet~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ourownstory/neural_prophet/master/setup.py","https://raw.githubusercontent.com/ourownstory/neural_prophet/master/pyproject.toml"],"_requirements_localurls":["ourownstory~neural_prophet~setup.py","ourownstory~neural_prophet~pyproject.toml"]},{"index":34,"category":"nlp","githuburl":"https://github.com/jbesomi/texthero","featured":null,"links":null,"description":null,"_repopath":"jbesomi/texthero","_reponame":"texthero","_stars":2635,"_forks":222,"_watches":44,"_topics":["text-preprocessing","text-representation","text-visualization","nlp","word-embeddings","machine-learning","text-mining","nlp-pipeline","text-clustering","texthero"],"_language":"Python","_homepage":"https://texthero.org","_description":"texthero: Text preprocessing, representation and visualization from zero to hero.","_organization":"jbesomi","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-10-28T00:00:00.000Z","_created_at":"2020-04-06T00:00:00.000Z","_age_weeks":139,"_stars_per_week":18.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jbesomi/texthero/master/README.md","_readme_localurl":"jbesomi~texthero~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jbesomi/texthero/master/setup.py"],"_requirements_localurls":["jbesomi~texthero~setup.py"]},{"index":130,"category":"ml-dl","githuburl":"https://github.com/explosion/thinc","featured":null,"links":null,"description":null,"_repopath":"explosion/thinc","_reponame":"thinc","_stars":2627,"_forks":259,"_watches":85,"_topics":["machine-learning","deep-learning","artificial-intelligence","ai","python","nlp","natural-language-processing","spacy","machine-learning-library","type-checking","functional-programming","pytorch","tensorflow","mxnet","jax"],"_language":"Python","_homepage":"https://thinc.ai","_description":"thinc: \ud83d\udd2e A refreshing functional take on deep learning, compatible with your favorite libraries","_organization":"explosion","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2014-10-16T00:00:00.000Z","_age_weeks":424,"_stars_per_week":6.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/thinc/master/README.md","_readme_localurl":"explosion~thinc~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/explosion/thinc/master/requirements.txt","https://raw.githubusercontent.com/explosion/thinc/master/setup.py","https://raw.githubusercontent.com/explosion/thinc/master/pyproject.toml"],"_requirements_localurls":["explosion~thinc~requirements.txt","explosion~thinc~setup.py","explosion~thinc~pyproject.toml"]},{"index":113,"category":"nlp","githuburl":"https://github.com/huggingface/neuralcoref","featured":null,"links":null,"description":null,"_repopath":"huggingface/neuralcoref","_reponame":"neuralcoref","_stars":2627,"_forks":460,"_watches":94,"_topics":["python","machine-learning","coreference","spacy","coreference-resolution","spacy-extension","spacy-pipeline","nlp","neural-networks","pytorch"],"_language":"C","_homepage":"https://huggingface.co/coref/","_description":"neuralcoref: \u2728Fast Coreference Resolution in spaCy with Neural Networks","_organization":"huggingface","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2021-06-22T00:00:00.000Z","_created_at":"2017-07-03T00:00:00.000Z","_age_weeks":283,"_stars_per_week":9.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/neuralcoref/master/README.md","_readme_localurl":"huggingface~neuralcoref~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/neuralcoref/master/requirements.txt","https://raw.githubusercontent.com/huggingface/neuralcoref/master/setup.py"],"_requirements_localurls":["huggingface~neuralcoref~requirements.txt","huggingface~neuralcoref~setup.py"]},{"index":111,"category":"ml","githuburl":"https://github.com/teamhg-memex/eli5","featured":null,"links":null,"description":null,"_repopath":"teamhg-memex/eli5","_reponame":"eli5","_stars":2611,"_forks":326,"_watches":68,"_topics":["scikit-learn","machine-learning","xgboost","lightgbm","crfsuite","inspection","explanation","nlp","data-science","python"],"_language":"Jupyter Notebook","_homepage":"http://eli5.readthedocs.io","_description":"eli5: A library for debugging/inspecting machine learning classifiers and explaining their predictions","_organization":"teamhg-memex","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2020-01-22T00:00:00.000Z","_created_at":"2016-09-15T00:00:00.000Z","_age_weeks":324,"_stars_per_week":8.04,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/teamhg-memex/eli5/master/README.rst","_readme_localurl":"teamhg-memex~eli5~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/teamhg-memex/eli5/master/requirements.txt","https://raw.githubusercontent.com/teamhg-memex/eli5/master/setup.py"],"_requirements_localurls":["teamhg-memex~eli5~requirements.txt","teamhg-memex~eli5~setup.py"]},{"index":709,"category":"pandas","githuburl":"https://github.com/nalepae/pandarallel","featured":1.0,"links":null,"description":null,"_repopath":"nalepae/pandarallel","_reponame":"pandarallel","_stars":2609,"_forks":161,"_watches":25,"_topics":["pandas","python","parallel"],"_language":"Python","_homepage":"https://nalepae.github.io/pandarallel","_description":"pandarallel: A simple and efficient tool to parallelize Pandas operations on all available\u00a0CPUs","_organization":"nalepae","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-03-10T00:00:00.000Z","_age_weeks":195,"_stars_per_week":13.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nalepae/pandarallel/master/README.md","_readme_localurl":"nalepae~pandarallel~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nalepae/pandarallel/master/setup.py"],"_requirements_localurls":["nalepae~pandarallel~setup.py"]},{"index":801,"category":"data","githuburl":"https://github.com/pallets/itsdangerous","featured":null,"links":null,"description":null,"_repopath":"pallets/itsdangerous","_reponame":"itsdangerous","_stars":2589,"_forks":212,"_watches":57,"_topics":["python","security","hmac","serialization","itsdangerous","pallets"],"_language":"Python","_homepage":"https://itsdangerous.palletsprojects.com","_description":"itsdangerous: Safely pass trusted data to untrusted environments and back.","_organization":"pallets","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-01T00:00:00.000Z","_created_at":"2011-06-24T00:00:00.000Z","_age_weeks":597,"_stars_per_week":4.33,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/itsdangerous/master/README.rst","_readme_localurl":"pallets~itsdangerous~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/itsdangerous/master/setup.py"],"_requirements_localurls":["pallets~itsdangerous~setup.py"]},{"index":85,"category":"graph","githuburl":"https://github.com/stellargraph/stellargraph","featured":null,"links":null,"description":null,"_repopath":"stellargraph/stellargraph","_reponame":"stellargraph","_stars":2562,"_forks":395,"_watches":62,"_topics":["graphs","machine-learning","machine-learning-algorithms","graph-convolutional-networks","networkx","geometric-deep-learning","saliency-map","interpretability","heterogeneous-networks","graph-neural-networks","graph-analysis","graph-machine-learning","gcn","link-prediction","stellargraph-library","graph-data","python","deep-learning","data-science"],"_language":"Python","_homepage":"https://stellargraph.readthedocs.io/","_description":"StellarGraph - Machine Learning on Graphs","_organization":"stellargraph","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2021-10-29T00:00:00.000Z","_created_at":"2018-04-13T00:00:00.000Z","_age_weeks":242,"_stars_per_week":10.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/stellargraph/stellargraph/master/README.md","_readme_localurl":"stellargraph~stellargraph~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/stellargraph/stellargraph/master/requirements.txt","https://raw.githubusercontent.com/stellargraph/stellargraph/master/setup.py"],"_requirements_localurls":["stellargraph~stellargraph~requirements.txt","stellargraph~stellargraph~setup.py"]},{"index":539,"category":"nlp","githuburl":"https://github.com/huawei-noah/pretrained-language-model","featured":null,"links":null,"description":null,"_repopath":"huawei-noah/pretrained-language-model","_reponame":"Pretrained-Language-Model","_stars":2552,"_forks":546,"_watches":52,"_topics":["knowledge-distillation","model-compression","quantization","pretrained-models","large-scale-distributed"],"_language":"Python","_homepage":"","_description":"Pretrained-Language-Model: Pretrained language model and its related optimization techniques developed by Huawei Noah's Ark Lab.","_organization":"huawei-noah","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-21T00:00:00.000Z","_created_at":"2019-12-02T00:00:00.000Z","_age_weeks":157,"_stars_per_week":16.23,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huawei-noah/pretrained-language-model/master/README.md","_readme_localurl":"huawei-noah~pretrained-language-model~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":611,"category":"debug","githuburl":"https://github.com/inducer/pudb","featured":null,"links":null,"description":null,"_repopath":"inducer/pudb","_reponame":"pudb","_stars":2547,"_forks":216,"_watches":45,"_topics":["python","debugger","pytest","pytest-plugin","pdb","ipython","bpython","urwid","debug"],"_language":"Python","_homepage":"https://documen.tician.de/pudb/","_description":"pudb: Full-screen console debugger for Python","_organization":"inducer","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-20T00:00:00.000Z","_created_at":"2011-05-13T00:00:00.000Z","_age_weeks":603,"_stars_per_week":4.22,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/inducer/pudb/master/README.rst","_readme_localurl":"inducer~pudb~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/inducer/pudb/master/setup.py"],"_requirements_localurls":["inducer~pudb~setup.py"]},{"index":159,"category":"data","githuburl":"https://github.com/goldsmith/wikipedia","featured":null,"links":null,"description":null,"_repopath":"goldsmith/wikipedia","_reponame":"Wikipedia","_stars":2528,"_forks":514,"_watches":82,"_topics":[],"_language":"Python","_homepage":"https://wikipedia.readthedocs.org/","_description":"Wikipedia: A Pythonic wrapper for the Wikipedia API","_organization":"goldsmith","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2020-10-09T00:00:00.000Z","_created_at":"2013-08-20T00:00:00.000Z","_age_weeks":485,"_stars_per_week":5.21,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/goldsmith/wikipedia/master/README.rst","_readme_localurl":"goldsmith~wikipedia~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/goldsmith/wikipedia/master/requirements.txt","https://raw.githubusercontent.com/goldsmith/wikipedia/master/setup.py"],"_requirements_localurls":["goldsmith~wikipedia~requirements.txt","goldsmith~wikipedia~setup.py"]},{"index":94,"category":"term","githuburl":"https://github.com/urwid/urwid","featured":null,"links":null,"description":null,"_repopath":"urwid/urwid","_reponame":"urwid","_stars":2513,"_forks":311,"_watches":60,"_topics":[],"_language":"Python","_homepage":"urwid.org","_description":"urwid: Console user interface library for Python (official repo)","_organization":"urwid","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-07-12T00:00:00.000Z","_created_at":"2010-02-25T00:00:00.000Z","_age_weeks":666,"_stars_per_week":3.77,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/urwid/urwid/master/README.rst","_readme_localurl":"urwid~urwid~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/urwid/urwid/master/setup.py"],"_requirements_localurls":["urwid~urwid~setup.py"]},{"index":369,"category":"nlp","githuburl":"https://github.com/bytedance/lightseq","featured":null,"links":null,"description":null,"_repopath":"bytedance/lightseq","_reponame":"lightseq","_stars":2504,"_forks":277,"_watches":51,"_topics":["inference","transformer","beam-search","bert","cuda","sampling","diverse-decoding","multilingual-nmt","training","bart","gpt","accelerate"],"_language":"C++","_homepage":"","_description":"LightSeq: A High Performance Library for Sequence Processing and Generation","_organization":"bytedance","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2019-12-06T00:00:00.000Z","_age_weeks":156,"_stars_per_week":15.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bytedance/lightseq/master/README.md","_readme_localurl":"bytedance~lightseq~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bytedance/lightseq/master/setup.py"],"_requirements_localurls":["bytedance~lightseq~setup.py"]},{"index":428,"category":"util","githuburl":"https://github.com/pycqa/flake8","featured":null,"links":null,"description":null,"_repopath":"pycqa/flake8","_reponame":"flake8","_stars":2500,"_forks":255,"_watches":33,"_topics":["python","python3","static-analysis","static-code-analysis","linter","linter-flake8","stylelint","styleguide","style-guide","flake8","pep8","complexity-analysis"],"_language":"Python","_homepage":"https://flake8.pycqa.org","_description":"flake8 is a python tool that glues together pycodestyle, pyflakes, mccabe, and third-party plugins to check the style and quality of some python code.","_organization":"pycqa","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2014-09-13T00:00:00.000Z","_age_weeks":429,"_stars_per_week":5.82,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pycqa/flake8/master/README.rst","_readme_localurl":"pycqa~flake8~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pycqa/flake8/master/setup.py"],"_requirements_localurls":["pycqa~flake8~setup.py"]},{"index":433,"category":"pandas","githuburl":"https://github.com/pydata/pandas-datareader","featured":null,"links":null,"description":null,"_repopath":"pydata/pandas-datareader","_reponame":"pandas-datareader","_stars":2496,"_forks":616,"_watches":133,"_topics":["html","data-analysis","data","dataset","stock-data","finance","financial-data","python","pydata","pandas","econdb","fama-french","economic-data","fred"],"_language":"Python","_homepage":"https://pydata.github.io/pandas-datareader/stable/index.html","_description":"pandas-datareader: Extract data from a wide range of Internet sources into a pandas DataFrame.","_organization":"pydata","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-03-16T00:00:00.000Z","_created_at":"2015-01-15T00:00:00.000Z","_age_weeks":411,"_stars_per_week":6.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pydata/pandas-datareader/master/README.md","_readme_localurl":"pydata~pandas-datareader~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pydata/pandas-datareader/master/requirements.txt","https://raw.githubusercontent.com/pydata/pandas-datareader/master/setup.py"],"_requirements_localurls":["pydata~pandas-datareader~requirements.txt","pydata~pandas-datareader~setup.py"]},{"index":675,"category":"ml-dl","githuburl":"https://github.com/saharmor/dalle-playground","featured":null,"links":null,"description":null,"_repopath":"saharmor/dalle-playground","_reponame":"dalle-playground","_stars":2485,"_forks":553,"_watches":28,"_topics":["dall-e","openai","gan","text-to-image","transformers","artificial","artificial-intelligence","machine-learning","dalle","dalle-mini","stable-diffusion"],"_language":"Jupyter Notebook","_homepage":"","_description":"dalle-playground: A playground to generate images from any text prompt using Stable Diffusion (past: using DALL-E Mini)","_organization":"saharmor","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2021-09-13T00:00:00.000Z","_age_weeks":64,"_stars_per_week":38.66,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/saharmor/dalle-playground/master/README.md","_readme_localurl":"saharmor~dalle-playground~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":553,"category":"ml-dl","githuburl":"https://github.com/pytorch/botorch","featured":null,"links":null,"description":null,"_repopath":"pytorch/botorch","_reponame":"botorch","_stars":2471,"_forks":292,"_watches":52,"_topics":[],"_language":"Jupyter Notebook","_homepage":"https://botorch.org/","_description":"botorch: Bayesian optimization in PyTorch","_organization":"pytorch","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2018-07-30T00:00:00.000Z","_age_weeks":227,"_stars_per_week":10.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/botorch/master/README.md","_readme_localurl":"pytorch~botorch~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/botorch/master/requirements.txt","https://raw.githubusercontent.com/pytorch/botorch/master/setup.py","https://raw.githubusercontent.com/pytorch/botorch/master/pyproject.toml"],"_requirements_localurls":["pytorch~botorch~requirements.txt","pytorch~botorch~setup.py","pytorch~botorch~pyproject.toml"]},{"index":98,"category":"data","githuburl":"https://github.com/zoomeranalytics/xlwings","featured":null,"links":null,"description":null,"_repopath":"zoomeranalytics/xlwings","_reponame":"xlwings","_stars":2458,"_forks":450,"_watches":120,"_topics":["python","excel","reporting","automation","googlesheets","google-sheets"],"_language":"Python","_homepage":"https://www.xlwings.org","_description":"xlwings is a Python library that makes it easy to call Python from Excel and vice versa. It works with Excel on Windows and macOS as well as with Google Sheets and Excel on the web. ","_organization":"zoomeranalytics","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2014-03-17T00:00:00.000Z","_age_weeks":455,"_stars_per_week":5.4,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/zoomeranalytics/xlwings/master/README.rst","_readme_localurl":"zoomeranalytics~xlwings~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/zoomeranalytics/xlwings/master/setup.py","https://raw.githubusercontent.com/zoomeranalytics/xlwings/master/pyproject.toml"],"_requirements_localurls":["zoomeranalytics~xlwings~setup.py","zoomeranalytics~xlwings~pyproject.toml"]},{"index":845,"category":"time-series","githuburl":"https://github.com/tdameritrade/stumpy","featured":null,"links":null,"description":null,"_repopath":"tdameritrade/stumpy","_reponame":"stumpy","_stars":2452,"_forks":237,"_watches":50,"_topics":["data-science","time-series-analysis","dask","numba","python","anomaly-detection","pattern-matching","pydata","matrix-profile","motif-discovery","time-series-segmentation","time-series-data-mining"],"_language":"Python","_homepage":"https://stumpy.readthedocs.io/en/latest/","_description":"STUMPY is a powerful and scalable Python library for modern time series analysis","_organization":"tdameritrade","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-05-03T00:00:00.000Z","_age_weeks":187,"_stars_per_week":13.06,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/tdameritrade/stumpy/master/README.rst","_readme_localurl":"tdameritrade~stumpy~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tdameritrade/stumpy/master/requirements.txt","https://raw.githubusercontent.com/tdameritrade/stumpy/master/setup.py"],"_requirements_localurls":["tdameritrade~stumpy~requirements.txt","tdameritrade~stumpy~setup.py"]},{"index":431,"category":"viz","githuburl":"https://github.com/holoviz/panel","featured":null,"links":null,"description":null,"_repopath":"holoviz/panel","_reponame":"panel","_stars":2418,"_forks":313,"_watches":47,"_topics":["holoviz","panel","dashboards","control-panels","gui"],"_language":"Python","_homepage":"https://panel.holoviz.org","_description":"panel: A high-level app and dashboarding solution for Python","_organization":"holoviz","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2018-08-23T00:00:00.000Z","_age_weeks":223,"_stars_per_week":10.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/panel/master/README.md","_readme_localurl":"holoviz~panel~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/panel/master/setup.py","https://raw.githubusercontent.com/holoviz/panel/master/pyproject.toml"],"_requirements_localurls":["holoviz~panel~setup.py","holoviz~panel~pyproject.toml"]},{"index":600,"category":"gis","githuburl":"https://github.com/giswqs/geemap","featured":null,"links":null,"description":null,"_repopath":"giswqs/geemap","_reponame":"geemap","_stars":2407,"_forks":894,"_watches":96,"_topics":["google-earth-engine","gis","remote-sensing","image-processing","python","jupyter-notebook","ipyleaflet","mapping","earth-engine","ipywidgets","folium","jupyter","colab","geospatial","landsat","dataviz","data-science","streamlit","streamlit-webapp","earthengine"],"_language":"Python","_homepage":"https://geemap.org","_description":"geemap: A Python package for interactive mapping with Google Earth Engine, ipyleaflet, and ipywidgets.","_organization":"giswqs","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2020-03-08T00:00:00.000Z","_age_weeks":143,"_stars_per_week":16.78,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/giswqs/geemap/master/README.rst","_readme_localurl":"giswqs~geemap~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/giswqs/geemap/master/requirements.txt","https://raw.githubusercontent.com/giswqs/geemap/master/setup.py"],"_requirements_localurls":["giswqs~geemap~requirements.txt","giswqs~geemap~setup.py"]},{"index":172,"category":"viz","githuburl":"https://github.com/facebookresearch/hiplot","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/hiplot","_reponame":"hiplot","_stars":2378,"_forks":120,"_watches":28,"_topics":[],"_language":"TypeScript","_homepage":"https://facebookresearch.github.io/hiplot/","_description":"HiPlot makes understanding high dimensional data easy","_organization":"facebookresearch","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2019-11-08T00:00:00.000Z","_age_weeks":160,"_stars_per_week":14.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/hiplot/master/README.md","_readme_localurl":"facebookresearch~hiplot~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/hiplot/master/setup.py"],"_requirements_localurls":["facebookresearch~hiplot~setup.py"]},{"index":708,"category":"ml","githuburl":"https://github.com/mljar/mljar-supervised","featured":null,"links":null,"description":null,"_repopath":"mljar/mljar-supervised","_reponame":"mljar-supervised","_stars":2357,"_forks":308,"_watches":41,"_topics":["automl","machine-learning","automatic-machine-learning","mljar","data-science","scikit-learn","hyperparameter-optimization","feature-engineering","xgboost","random-forest","neural-network","lightgbm","catboost","ensemble","tuning-algorithm","models-tuning","hyper-parameters","decision-tree","shap","automated-machine-learning"],"_language":"Python","_homepage":"https://mljar.com","_description":"mljar-supervised: Python package for AutoML on Tabular Data with Feature Engineering, Hyper-Parameters Tuning, Explanations and Automatic Documentation","_organization":"mljar","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-03T00:00:00.000Z","_created_at":"2018-11-05T00:00:00.000Z","_age_weeks":213,"_stars_per_week":11.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mljar/mljar-supervised/master/README.md","_readme_localurl":"mljar~mljar-supervised~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mljar/mljar-supervised/master/requirements.txt","https://raw.githubusercontent.com/mljar/mljar-supervised/master/setup.py"],"_requirements_localurls":["mljar~mljar-supervised~requirements.txt","mljar~mljar-supervised~setup.py"]},{"index":174,"category":"util","githuburl":"https://github.com/liiight/notifiers","featured":null,"links":null,"description":null,"_repopath":"liiight/notifiers","_reponame":"notifiers","_stars":2346,"_forks":91,"_watches":33,"_topics":["python","notifications","notifier","notification-service","python3","pypi"],"_language":"Python","_homepage":"http://notifiers.readthedocs.io/","_description":"notifiers: The easy way to send notifications","_organization":"liiight","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-07-14T00:00:00.000Z","_created_at":"2017-06-01T00:00:00.000Z","_age_weeks":287,"_stars_per_week":8.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/liiight/notifiers/master/README.md","_readme_localurl":"liiight~notifiers~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/liiight/notifiers/master/pyproject.toml"],"_requirements_localurls":["liiight~notifiers~pyproject.toml"]},{"index":858,"category":"jupyter","githuburl":"https://github.com/jupyter/nbdime","featured":null,"links":null,"description":null,"_repopath":"jupyter/nbdime","_reponame":"nbdime","_stars":2334,"_forks":151,"_watches":43,"_topics":["jupyterlab-extension","jupyter","jupyter-notebook","diff","diffing","merge","git","hg","mercurial","mergetool","merge-driver","vcs","version-control"],"_language":"Python","_homepage":"http://nbdime.readthedocs.io","_description":"nbdime: Tools for diffing and merging of Jupyter notebooks.","_organization":"jupyter","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2015-11-16T00:00:00.000Z","_age_weeks":368,"_stars_per_week":6.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/nbdime/master/README.md","_readme_localurl":"jupyter~nbdime~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/nbdime/master/setup.py","https://raw.githubusercontent.com/jupyter/nbdime/master/pyproject.toml"],"_requirements_localurls":["jupyter~nbdime~setup.py","jupyter~nbdime~pyproject.toml"]},{"index":129,"category":"viz","githuburl":"https://github.com/holoviz/holoviews","featured":null,"links":null,"description":null,"_repopath":"holoviz/holoviews","_reponame":"holoviews","_stars":2330,"_forks":364,"_watches":61,"_topics":["holoviz","holoviews","plotting"],"_language":"Python","_homepage":"https://holoviews.org","_description":"holoviews: With Holoviews, your data visualizes itself.","_organization":"holoviz","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2014-05-07T00:00:00.000Z","_age_weeks":448,"_stars_per_week":5.2,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/holoviews/master/README.md","_readme_localurl":"holoviz~holoviews~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/holoviews/master/setup.py","https://raw.githubusercontent.com/holoviz/holoviews/master/pyproject.toml"],"_requirements_localurls":["holoviz~holoviews~setup.py","holoviz~holoviews~pyproject.toml"]},{"index":136,"category":"nlp","githuburl":"https://github.com/ddangelov/top2vec","featured":null,"links":null,"description":null,"_repopath":"ddangelov/top2vec","_reponame":"Top2Vec","_stars":2329,"_forks":320,"_watches":39,"_topics":["topic-modeling","word-embeddings","document-embedding","topic-vector","topic-search","text-search","text-semantic-similarity","topic-modelling","semantic-search","bert","top2vec","sentence-transformers","sentence-encoder","pre-trained-language-models"],"_language":"Python","_homepage":"","_description":"Top2Vec learns jointly embedded topic, document and word vectors.","_organization":"ddangelov","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-04-03T00:00:00.000Z","_created_at":"2020-03-20T00:00:00.000Z","_age_weeks":141,"_stars_per_week":16.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ddangelov/top2vec/master/README.md","_readme_localurl":"ddangelov~top2vec~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ddangelov/top2vec/master/requirements.txt","https://raw.githubusercontent.com/ddangelov/top2vec/master/setup.py"],"_requirements_localurls":["ddangelov~top2vec~requirements.txt","ddangelov~top2vec~setup.py"]},{"index":875,"category":"perf","githuburl":"https://github.com/ipython/ipyparallel","featured":null,"links":null,"description":null,"_repopath":"ipython/ipyparallel","_reponame":"ipyparallel","_stars":2312,"_forks":947,"_watches":119,"_topics":["parallel","jupyter","python"],"_language":"Jupyter Notebook","_homepage":"https://ipyparallel.readthedocs.io/","_description":"ipyparallel: IPython Parallel: Interactive Parallel Computing in Python","_organization":"ipython","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-22T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":399,"_stars_per_week":5.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ipython/ipyparallel/master/README.md","_readme_localurl":"ipython~ipyparallel~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ipython/ipyparallel/master/pyproject.toml"],"_requirements_localurls":["ipython~ipyparallel~pyproject.toml"]},{"index":886,"category":"study","githuburl":"https://github.com/huggingface/deep-rl-class","featured":null,"links":null,"description":null,"_repopath":"huggingface/deep-rl-class","_reponame":"deep-rl-class","_stars":2300,"_forks":263,"_watches":93,"_topics":["deep-reinforcement-learning","reinforcement-learning","reinforcement-learning-excercises","deep-learning"],"_language":"Jupyter Notebook","_homepage":"","_description":"deep-rl-class: This repo contain the syllabus of the Hugging Face Deep Reinforcement Learning Class.","_organization":"huggingface","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2022-04-21T00:00:00.000Z","_age_weeks":32,"_stars_per_week":70.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/deep-rl-class/master/README.md","_readme_localurl":"huggingface~deep-rl-class~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":809,"category":"web","githuburl":"https://github.com/fastapi-users/fastapi-users","featured":null,"links":null,"description":null,"_repopath":"fastapi-users/fastapi-users","_reponame":"fastapi-users","_stars":2299,"_forks":236,"_watches":33,"_topics":["python","starlette","fastapi","async","asyncio","users","fastapi-users"],"_language":"Python","_homepage":"https://fastapi-users.github.io/fastapi-users/","_description":"fastapi-users: Ready-to-use and customizable users management for FastAPI","_organization":"fastapi-users","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2019-10-05T00:00:00.000Z","_age_weeks":165,"_stars_per_week":13.89,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fastapi-users/fastapi-users/master/README.md","_readme_localurl":"fastapi-users~fastapi-users~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/fastapi-users/fastapi-users/master/pyproject.toml"],"_requirements_localurls":["fastapi-users~fastapi-users~pyproject.toml"]},{"index":691,"category":"ml-dl","githuburl":"https://github.com/nerdyrodent/vqgan-clip","featured":null,"links":null,"description":null,"_repopath":"nerdyrodent/vqgan-clip","_reponame":"VQGAN-CLIP","_stars":2293,"_forks":395,"_watches":53,"_topics":["text2image","text-to-image"],"_language":"Python","_homepage":"","_description":"VQGAN-CLIP: Just playing with getting VQGAN+CLIP running locally, rather than having to use colab.","_organization":"nerdyrodent","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-10-02T00:00:00.000Z","_created_at":"2021-07-02T00:00:00.000Z","_age_weeks":74,"_stars_per_week":30.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nerdyrodent/vqgan-clip/master/README.md","_readme_localurl":"nerdyrodent~vqgan-clip~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/nerdyrodent/vqgan-clip/master/requirements.txt"],"_requirements_localurls":["nerdyrodent~vqgan-clip~requirements.txt"]},{"index":51,"category":"testing","githuburl":"https://github.com/nedbat/coveragepy","featured":null,"links":null,"description":null,"_repopath":"nedbat/coveragepy","_reponame":"coveragepy","_stars":2292,"_forks":330,"_watches":27,"_topics":[],"_language":"Python","_homepage":"https://coverage.readthedocs.io","_description":"coveragepy: The code coverage tool for Python","_organization":"nedbat","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2018-06-23T00:00:00.000Z","_age_weeks":232,"_stars_per_week":9.86,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/nedbat/coveragepy/master/README.rst","_readme_localurl":"nedbat~coveragepy~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nedbat/coveragepy/master/setup.py","https://raw.githubusercontent.com/nedbat/coveragepy/master/pyproject.toml"],"_requirements_localurls":["nedbat~coveragepy~setup.py","nedbat~coveragepy~pyproject.toml"]},{"index":246,"category":"util","githuburl":"https://github.com/pyston/pyston","featured":null,"links":null,"description":null,"_repopath":"pyston/pyston","_reponame":"pyston","_stars":2285,"_forks":83,"_watches":32,"_topics":[],"_language":"Python","_homepage":"https://www.pyston.org/","_description":"pyston: A faster and highly-compatible implementation of the Python programming language.","_organization":"pyston","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2021-03-01T00:00:00.000Z","_age_weeks":92,"_stars_per_week":24.76,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyston/pyston/master/README.rst","_readme_localurl":"pyston~pyston~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyston/pyston/master/setup.py"],"_requirements_localurls":["pyston~pyston~setup.py"]},{"index":296,"category":"sim","githuburl":"https://github.com/openai/mujoco-py","featured":null,"links":null,"description":null,"_repopath":"openai/mujoco-py","_reponame":"mujoco-py","_stars":2283,"_forks":711,"_watches":157,"_topics":[],"_language":"Cython","_homepage":"","_description":"mujoco-py: MuJoCo is a physics engine for detailed, efficient rigid body simulations with contacts. mujoco-py allows using MuJoCo from Python 3.","_organization":"openai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-17T00:00:00.000Z","_created_at":"2016-04-24T00:00:00.000Z","_age_weeks":345,"_stars_per_week":6.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/mujoco-py/master/README.md","_readme_localurl":"openai~mujoco-py~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/mujoco-py/master/requirements.txt","https://raw.githubusercontent.com/openai/mujoco-py/master/setup.py","https://raw.githubusercontent.com/openai/mujoco-py/master/pyproject.toml"],"_requirements_localurls":["openai~mujoco-py~requirements.txt","openai~mujoco-py~setup.py","openai~mujoco-py~pyproject.toml"]},{"index":696,"category":"ml-dl","githuburl":"https://github.com/deepmind/dm-haiku","featured":null,"links":null,"description":null,"_repopath":"deepmind/dm-haiku","_reponame":"dm-haiku","_stars":2270,"_forks":190,"_watches":37,"_topics":["machine-learning","neural-networks","jax","deep-learning","deep-neural-networks"],"_language":"Python","_homepage":"https://dm-haiku.readthedocs.io","_description":"dm-haiku: JAX-based neural network library","_organization":"deepmind","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-22T00:00:00.000Z","_created_at":"2020-02-18T00:00:00.000Z","_age_weeks":146,"_stars_per_week":15.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/deepmind/dm-haiku/master/README.md","_readme_localurl":"deepmind~dm-haiku~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/deepmind/dm-haiku/master/requirements.txt","https://raw.githubusercontent.com/deepmind/dm-haiku/master/setup.py"],"_requirements_localurls":["deepmind~dm-haiku~requirements.txt","deepmind~dm-haiku~setup.py"]},{"index":814,"category":"data","githuburl":"https://github.com/deepchecks/deepchecks","featured":null,"links":null,"description":null,"_repopath":"deepchecks/deepchecks","_reponame":"deepchecks","_stars":2265,"_forks":158,"_watches":13,"_topics":["machine-learning","ml","model-validation","data-validation","mlops","data-science","python","jupyter-notebook","model-monitoring","data-drift","html-report","deep-learning","pytorch","pandas-dataframe"],"_language":"Python","_homepage":"https://docs.deepchecks.com","_description":"deepchecks: Tests for Continuous Validation of ML Models & Data. Deepchecks is a Python package for comprehensively validating your machine learning models and data with minimal effort.","_organization":"deepchecks","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2021-10-11T00:00:00.000Z","_age_weeks":60,"_stars_per_week":37.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/deepchecks/deepchecks/master/README.md","_readme_localurl":"deepchecks~deepchecks~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/deepchecks/deepchecks/master/setup.py"],"_requirements_localurls":["deepchecks~deepchecks~setup.py"]},{"index":145,"category":"ml","githuburl":"https://github.com/nmslib/hnswlib","featured":null,"links":null,"description":null,"_repopath":"nmslib/hnswlib","_reponame":"hnswlib","_stars":2256,"_forks":418,"_watches":62,"_topics":[],"_language":"C++","_homepage":"https://github.com/nmslib/hnswlib","_description":"hnswlib: Header-only C++/python library for fast approximate nearest neighbors","_organization":"nmslib","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-04-16T00:00:00.000Z","_created_at":"2017-07-06T00:00:00.000Z","_age_weeks":282,"_stars_per_week":7.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nmslib/hnswlib/master/README.md","_readme_localurl":"nmslib~hnswlib~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nmslib/hnswlib/master/setup.py","https://raw.githubusercontent.com/nmslib/hnswlib/master/pyproject.toml"],"_requirements_localurls":["nmslib~hnswlib~setup.py","nmslib~hnswlib~pyproject.toml"]},{"index":735,"category":"data","githuburl":"https://github.com/ibis-project/ibis","featured":1.0,"links":null,"description":null,"_repopath":"ibis-project/ibis","_reponame":"ibis","_stars":2217,"_forks":371,"_watches":77,"_topics":["python","impala","pandas","spark","database","clickhouse","postgresql","sqlite","mysql","datafusion","sql","pyspark","dask","duckdb","bigquery","sqlalchemy","pyarrow","arrow","mssql","polars"],"_language":"Python","_homepage":"http://ibis-project.org","_description":"ibis: Expressive analytics in Python at any scale.","_organization":"ibis-project","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2015-04-17T00:00:00.000Z","_age_weeks":398,"_stars_per_week":5.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ibis-project/ibis/master/README.md","_readme_localurl":"ibis-project~ibis~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ibis-project/ibis/master/requirements.txt","https://raw.githubusercontent.com/ibis-project/ibis/master/pyproject.toml"],"_requirements_localurls":["ibis-project~ibis~requirements.txt","ibis-project~ibis~pyproject.toml"]},{"index":308,"category":"util","githuburl":"https://github.com/legrandin/pycryptodome","featured":null,"links":null,"description":null,"_repopath":"legrandin/pycryptodome","_reponame":"pycryptodome","_stars":2206,"_forks":403,"_watches":59,"_topics":["cryptography","security","python"],"_language":"C","_homepage":"https://www.pycryptodome.org","_description":"pycryptodome: A self-contained cryptographic library for Python","_organization":"legrandin","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2014-05-02T00:00:00.000Z","_age_weeks":448,"_stars_per_week":4.92,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/legrandin/pycryptodome/master/README.rst","_readme_localurl":"legrandin~pycryptodome~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/legrandin/pycryptodome/master/setup.py"],"_requirements_localurls":["legrandin~pycryptodome~setup.py"]},{"index":866,"category":"ml-ops","githuburl":"https://github.com/mage-ai/mage-ai","featured":1.0,"links":null,"description":null,"_repopath":"mage-ai/mage-ai","_reponame":"mage-ai","_stars":2173,"_forks":189,"_watches":39,"_topics":["machine-learning","artificial-intelligence","data","data-engineering","data-science","python","elt","etl","pipelines","data-pipelines","orchestration","data-integration","sql","spark","dbt","pipeline","reverse-etl","transformation"],"_language":"Python","_homepage":"https://www.mage.ai/","_description":"mage-ai: \ud83e\uddd9 A modern replacement for Airflow.","_organization":"mage-ai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2022-05-16T00:00:00.000Z","_age_weeks":29,"_stars_per_week":74.2,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mage-ai/mage-ai/master/README.md","_readme_localurl":"mage-ai~mage-ai~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mage-ai/mage-ai/master/requirements.txt","https://raw.githubusercontent.com/mage-ai/mage-ai/master/setup.py","https://raw.githubusercontent.com/mage-ai/mage-ai/master/pyproject.toml"],"_requirements_localurls":["mage-ai~mage-ai~requirements.txt","mage-ai~mage-ai~setup.py","mage-ai~mage-ai~pyproject.toml"]},{"index":253,"category":"ml","githuburl":"https://github.com/microsoft/flaml","featured":null,"links":null,"description":null,"_repopath":"microsoft/flaml","_reponame":"FLAML","_stars":2158,"_forks":328,"_watches":37,"_topics":["automl","hyperparam","automated-machine-learning","machine-learning","data-science","python","jupyter-notebook","hyperparameter-optimization","random-forest","scikit-learn","deep-learning","natural-language-processing","natural-language-generation","timeseries-forecasting","classification","regression","tuning","finetuning","tabular-data"],"_language":"Jupyter Notebook","_homepage":"https://microsoft.github.io/FLAML/","_description":"FLAML: A fast library for AutoML and tuning. Join our Discord: https://discord.gg/Cppx2vSPVP.","_organization":"microsoft","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2020-08-20T00:00:00.000Z","_age_weeks":119,"_stars_per_week":18.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/flaml/master/README.md","_readme_localurl":"microsoft~flaml~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/flaml/master/setup.py"],"_requirements_localurls":["microsoft~flaml~setup.py"]},{"index":710,"category":"pandas","githuburl":"https://github.com/jmcarpenter2/swifter","featured":null,"links":null,"description":null,"_repopath":"jmcarpenter2/swifter","_reponame":"swifter","_stars":2152,"_forks":97,"_watches":28,"_topics":["pandas","pandas-dataframe","parallel-computing","parallelization","dask","modin"],"_language":"Python","_homepage":"","_description":"swifter: A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner","_organization":"jmcarpenter2","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-08-16T00:00:00.000Z","_created_at":"2018-04-07T00:00:00.000Z","_age_weeks":243,"_stars_per_week":8.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jmcarpenter2/swifter/master/README.md","_readme_localurl":"jmcarpenter2~swifter~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jmcarpenter2/swifter/master/requirements.txt","https://raw.githubusercontent.com/jmcarpenter2/swifter/master/setup.py"],"_requirements_localurls":["jmcarpenter2~swifter~requirements.txt","jmcarpenter2~swifter~setup.py"]},{"index":617,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-testinfra","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-testinfra","_reponame":"pytest-testinfra","_stars":2133,"_forks":312,"_watches":82,"_topics":["python","testing","infrastructure-as-code","devops","tdd","nagios","docker","tdd-utilities","testing-tools","devops-tools","infrastructure-testing","saltstack","chef","puppet","ansible","kubernetes","pytest-plugin"],"_language":"Python","_homepage":"https://testinfra.readthedocs.io","_description":"pytest-testinfra: Testinfra test your infrastructures","_organization":"pytest-dev","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2015-03-15T00:00:00.000Z","_age_weeks":403,"_stars_per_week":5.29,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-testinfra/master/README.rst","_readme_localurl":"pytest-dev~pytest-testinfra~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-testinfra/master/setup.py","https://raw.githubusercontent.com/pytest-dev/pytest-testinfra/master/pyproject.toml"],"_requirements_localurls":["pytest-dev~pytest-testinfra~setup.py","pytest-dev~pytest-testinfra~pyproject.toml"]},{"index":807,"category":"web","githuburl":"https://github.com/flipkart-incubator/astra","featured":null,"links":null,"description":null,"_repopath":"flipkart-incubator/astra","_reponame":"Astra","_stars":2126,"_forks":356,"_watches":84,"_topics":["security","restapiautomation","python","owasp","penetration-testing-framework","postman-collection","ci-cd","sdlc","penetration-testing","security-automation"],"_language":"Python","_homepage":"","_description":"Astra: Automated Security Testing For REST API's","_organization":"flipkart-incubator","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2019-04-05T00:00:00.000Z","_created_at":"2018-01-10T00:00:00.000Z","_age_weeks":256,"_stars_per_week":8.3,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/flipkart-incubator/astra/master/README.md","_readme_localurl":"flipkart-incubator~astra~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/flipkart-incubator/astra/master/requirements.txt"],"_requirements_localurls":["flipkart-incubator~astra~requirements.txt"]},{"index":503,"category":"gis","githuburl":"https://github.com/google/earthengine-api","featured":null,"links":null,"description":null,"_repopath":"google/earthengine-api","_reponame":"earthengine-api","_stars":2082,"_forks":888,"_watches":204,"_topics":[],"_language":"JavaScript","_homepage":"","_description":"earthengine-api: Python and JavaScript bindings for calling the Earth Engine API.","_organization":"google","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2015-04-22T00:00:00.000Z","_age_weeks":398,"_stars_per_week":5.23,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/earthengine-api/master/README.md","_readme_localurl":"google~earthengine-api~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":222,"category":"data","githuburl":"https://github.com/pynamodb/pynamodb","featured":1.0,"links":null,"description":null,"_repopath":"pynamodb/pynamodb","_reponame":"PynamoDB","_stars":2048,"_forks":411,"_watches":41,"_topics":["python","dynamodb","aws"],"_language":"Python","_homepage":"http://pynamodb.readthedocs.io","_description":"PynamoDB: A pythonic interface to Amazon's DynamoDB","_organization":"pynamodb","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2014-01-20T00:00:00.000Z","_age_weeks":463,"_stars_per_week":4.42,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pynamodb/pynamodb/master/README.rst","_readme_localurl":"pynamodb~pynamodb~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pynamodb/pynamodb/master/setup.py"],"_requirements_localurls":["pynamodb~pynamodb~setup.py"]},{"index":198,"category":"ml","githuburl":"https://github.com/maif/shapash","featured":null,"links":null,"description":null,"_repopath":"maif/shapash","_reponame":"shapash","_stars":2044,"_forks":251,"_watches":38,"_topics":["python","machine-learning","explainability","explainable-ml","transparency","ethical-artificial-intelligence","shap","lime","interpretability"],"_language":"Jupyter Notebook","_homepage":"https://maif.github.io/shapash/","_description":"shapash: \ud83d\udd05 Shapash makes Machine Learning models transparent and understandable by everyone","_organization":"maif","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2020-04-29T00:00:00.000Z","_age_weeks":136,"_stars_per_week":15.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/maif/shapash/master/README.md","_readme_localurl":"maif~shapash~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/maif/shapash/master/setup.py"],"_requirements_localurls":["maif~shapash~setup.py"]},{"index":268,"category":"jupyter","githuburl":"https://github.com/jupyterlab/jupyterlab-desktop","featured":null,"links":null,"description":null,"_repopath":"jupyterlab/jupyterlab-desktop","_reponame":"jupyterlab-desktop","_stars":2038,"_forks":211,"_watches":43,"_topics":["jupyterlab","jupyter","jupyter-notebook"],"_language":"TypeScript","_homepage":"","_description":"jupyterlab-desktop: JupyterLab desktop application, based on Electron.","_organization":"jupyterlab","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2017-05-04T00:00:00.000Z","_age_weeks":291,"_stars_per_week":6.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyterlab/jupyterlab-desktop/master/README.md","_readme_localurl":"jupyterlab~jupyterlab-desktop~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":860,"category":"jupyter","githuburl":"https://github.com/jupyter/nbviewer","featured":null,"links":null,"description":null,"_repopath":"jupyter/nbviewer","_reponame":"nbviewer","_stars":2031,"_forks":530,"_watches":92,"_topics":["jupyter","jupyter-notebook","nbconvert"],"_language":"Python","_homepage":"https://nbviewer.jupyter.org","_description":"nbviewer: nbconvert as a web service: Render Jupyter Notebooks as static web pages","_organization":"jupyter","_updated_at":"2022-11-30T00:00:00.000Z","_last_commit_date":"2022-11-07T00:00:00.000Z","_created_at":"2012-08-05T00:00:00.000Z","_age_weeks":539,"_stars_per_week":3.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/nbviewer/master/README.md","_readme_localurl":"jupyter~nbviewer~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/nbviewer/master/requirements.txt","https://raw.githubusercontent.com/jupyter/nbviewer/master/setup.py"],"_requirements_localurls":["jupyter~nbviewer~requirements.txt","jupyter~nbviewer~setup.py"]},{"index":867,"category":"util","githuburl":"https://github.com/dosisod/refurb","featured":1.0,"links":null,"description":null,"_repopath":"dosisod/refurb","_reponame":"refurb","_stars":2027,"_forks":34,"_watches":14,"_topics":["cli","mypy","python","python310","testing","gplv3","hacktoberfest"],"_language":"Python","_homepage":"","_description":"refurb: A tool for refurbishing and modernizing Python codebases","_organization":"dosisod","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2022-07-27T00:00:00.000Z","_age_weeks":19,"_stars_per_week":106.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dosisod/refurb/master/README.md","_readme_localurl":"dosisod~refurb~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dosisod/refurb/master/pyproject.toml"],"_requirements_localurls":["dosisod~refurb~pyproject.toml"]},{"index":724,"category":"util","githuburl":"https://github.com/ashleve/lightning-hydra-template","featured":null,"links":null,"description":null,"_repopath":"ashleve/lightning-hydra-template","_reponame":"lightning-hydra-template","_stars":2014,"_forks":334,"_watches":18,"_topics":["pytorch-lightning","wandb","project-structure","config","deep-learning","hydra","template","pytorch","research","experiments","reproducibility","experiment-tracking","best-practices","neptune","mlflow","tensorboard","comet","mlops"],"_language":"Python","_homepage":"","_description":"lightning-hydra-template: PyTorch Lightning + Hydra. A very user-friendly template for rapid and reproducible ML experimentation with best practices. \u26a1\ud83d\udd25\u26a1","_organization":"ashleve","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-11T00:00:00.000Z","_created_at":"2020-11-04T00:00:00.000Z","_age_weeks":109,"_stars_per_week":18.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/README.md","_readme_localurl":"ashleve~lightning-hydra-template~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/requirements.txt","https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/setup.py","https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/pyproject.toml"],"_requirements_localurls":["ashleve~lightning-hydra-template~requirements.txt","ashleve~lightning-hydra-template~setup.py","ashleve~lightning-hydra-template~pyproject.toml"]},{"index":878,"category":"time-series","githuburl":"https://github.com/nixtla/statsforecast","featured":null,"links":null,"description":null,"_repopath":"nixtla/statsforecast","_reponame":"statsforecast","_stars":2009,"_forks":117,"_watches":20,"_topics":["time-series","statistics","forecasting","arima","econometrics","machine-learning","python","exponential-smoothing","auto-arima","ets","baselines","predictions","naive","seasonal-naive","fbprophet","prophet","neuralprophet","autoarima","mstl","theta"],"_language":"Python","_homepage":"https://nixtla.github.io/statsforecast/","_description":"statsforecast: Lightning \u26a1\ufe0f fast forecasting with statistical and econometric models.","_organization":"nixtla","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2021-11-24T00:00:00.000Z","_age_weeks":54,"_stars_per_week":37.2,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nixtla/statsforecast/master/README.md","_readme_localurl":"nixtla~statsforecast~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nixtla/statsforecast/master/setup.py"],"_requirements_localurls":["nixtla~statsforecast~setup.py"]},{"index":411,"category":"util","githuburl":"https://github.com/yaml/pyyaml","featured":null,"links":null,"description":null,"_repopath":"yaml/pyyaml","_reponame":"pyyaml","_stars":1999,"_forks":420,"_watches":46,"_topics":["python","yaml"],"_language":"Python","_homepage":"","_description":"pyyaml: Canonical source repository for PyYAML","_organization":"yaml","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-09-13T00:00:00.000Z","_created_at":"2011-11-03T00:00:00.000Z","_age_weeks":578,"_stars_per_week":3.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/yaml/pyyaml/master/README.md","_readme_localurl":"yaml~pyyaml~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/yaml/pyyaml/master/setup.py","https://raw.githubusercontent.com/yaml/pyyaml/master/pyproject.toml"],"_requirements_localurls":["yaml~pyyaml~setup.py","yaml~pyyaml~pyproject.toml"]},{"index":881,"category":"time-series","githuburl":"https://github.com/rjt1990/pyflux","featured":null,"links":null,"description":null,"_repopath":"rjt1990/pyflux","_reponame":"pyflux","_stars":1998,"_forks":233,"_watches":70,"_topics":["statistics","time-series"],"_language":"Python","_homepage":null,"_description":"pyflux: Open source time series library for Python","_organization":"rjt1990","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2018-12-16T00:00:00.000Z","_created_at":"2016-02-16T00:00:00.000Z","_age_weeks":355,"_stars_per_week":5.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rjt1990/pyflux/master/README.md","_readme_localurl":"rjt1990~pyflux~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rjt1990/pyflux/master/requirements.txt","https://raw.githubusercontent.com/rjt1990/pyflux/master/setup.py"],"_requirements_localurls":["rjt1990~pyflux~requirements.txt","rjt1990~pyflux~setup.py"]},{"index":748,"category":"study","githuburl":"https://github.com/zhanymkanov/fastapi-best-practices","featured":null,"links":null,"description":null,"_repopath":"zhanymkanov/fastapi-best-practices","_reponame":"fastapi-best-practices","_stars":1962,"_forks":127,"_watches":35,"_topics":["fastapi","best-practices"],"_language":null,"_homepage":"","_description":"fastapi-best-practices: FastAPI Best Practices and Conventions we used @ hi.peerlink.me","_organization":"zhanymkanov","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-09-16T00:00:00.000Z","_created_at":"2022-08-09T00:00:00.000Z","_age_weeks":17,"_stars_per_week":114.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zhanymkanov/fastapi-best-practices/master/README.md","_readme_localurl":"zhanymkanov~fastapi-best-practices~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":548,"category":"ml","githuburl":"https://github.com/lightly-ai/lightly","featured":null,"links":null,"description":null,"_repopath":"lightly-ai/lightly","_reponame":"lightly","_stars":1952,"_forks":159,"_watches":25,"_topics":["deep-learning","self-supervised-learning","machine-learning","computer-vision","pytorch","embeddings","contrastive-learning","active-learning"],"_language":"Python","_homepage":"","_description":"lightly: A python library for self-supervised learning on images.","_organization":"lightly-ai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2020-10-13T00:00:00.000Z","_age_weeks":112,"_stars_per_week":17.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lightly-ai/lightly/master/README.md","_readme_localurl":"lightly-ai~lightly~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lightly-ai/lightly/master/setup.py"],"_requirements_localurls":["lightly-ai~lightly~setup.py"]},{"index":323,"category":"gui","githuburl":"https://github.com/wxwidgets/phoenix","featured":null,"links":null,"description":null,"_repopath":"wxwidgets/phoenix","_reponame":"Phoenix","_stars":1905,"_forks":488,"_watches":105,"_topics":["python","cross-platform","gui-framework","gui-toolkit","gui","windows","macosx","linux","awesome","wxwidgets","wxpython"],"_language":"Python","_homepage":"http://wxpython.org/","_description":"Phoenix: wxPython's Project Phoenix. A new implementation of wxPython, better, stronger, faster than he was before.","_organization":"wxwidgets","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-10T00:00:00.000Z","_created_at":"2012-07-17T00:00:00.000Z","_age_weeks":542,"_stars_per_week":3.51,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/wxwidgets/phoenix/master/README.rst","_readme_localurl":"wxwidgets~phoenix~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/wxwidgets/phoenix/master/requirements.txt","https://raw.githubusercontent.com/wxwidgets/phoenix/master/setup.py"],"_requirements_localurls":["wxwidgets~phoenix~requirements.txt","wxwidgets~phoenix~setup.py"]},{"index":590,"category":"util","githuburl":"https://github.com/hgrecco/pint","featured":null,"links":null,"description":null,"_repopath":"hgrecco/pint","_reponame":"pint","_stars":1891,"_forks":405,"_watches":40,"_topics":["python","science","units"],"_language":"Python","_homepage":"http://pint.readthedocs.org/","_description":"pint: Operate and manipulate physical quantities in Python","_organization":"hgrecco","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2012-07-13T00:00:00.000Z","_age_weeks":542,"_stars_per_week":3.48,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/hgrecco/pint/master/README.rst","_readme_localurl":"hgrecco~pint~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/hgrecco/pint/master/setup.py","https://raw.githubusercontent.com/hgrecco/pint/master/pyproject.toml"],"_requirements_localurls":["hgrecco~pint~setup.py","hgrecco~pint~pyproject.toml"]},{"index":233,"category":"crypto","githuburl":"https://github.com/ethereum/py-evm","featured":null,"links":null,"description":null,"_repopath":"ethereum/py-evm","_reponame":"py-evm","_stars":1878,"_forks":576,"_watches":98,"_topics":["evm","ethereum","python","ethereum-virtual-machine"],"_language":"Python","_homepage":"https://py-evm.readthedocs.io/en/latest/","_description":"py-evm: A Python implementation of the Ethereum Virtual Machine","_organization":"ethereum","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-14T00:00:00.000Z","_created_at":"2016-12-27T00:00:00.000Z","_age_weeks":310,"_stars_per_week":6.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethereum/py-evm/master/README.md","_readme_localurl":"ethereum~py-evm~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ethereum/py-evm/master/setup.py","https://raw.githubusercontent.com/ethereum/py-evm/master/pyproject.toml"],"_requirements_localurls":["ethereum~py-evm~setup.py","ethereum~py-evm~pyproject.toml"]},{"index":353,"category":"ml-interpretability","githuburl":"https://github.com/seldonio/alibi","featured":null,"links":null,"description":null,"_repopath":"seldonio/alibi","_reponame":"alibi","_stars":1868,"_forks":213,"_watches":43,"_topics":["machine-learning","explanations","interpretability","counterfactual","xai"],"_language":"Python","_homepage":"https://docs.seldon.io/projects/alibi/en/stable/","_description":"alibi: Algorithms for explaining machine learning models","_organization":"seldonio","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2019-02-26T00:00:00.000Z","_age_weeks":197,"_stars_per_week":9.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/seldonio/alibi/master/README.md","_readme_localurl":"seldonio~alibi~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/seldonio/alibi/master/setup.py"],"_requirements_localurls":["seldonio~alibi~setup.py"]},{"index":441,"category":"gis","githuburl":"https://github.com/rasterio/rasterio","featured":1.0,"links":null,"description":null,"_repopath":"rasterio/rasterio","_reponame":"rasterio","_stars":1853,"_forks":490,"_watches":152,"_topics":["python","gis","raster","gdal","cli","cython","mapbox-satellite-oss"],"_language":"Python","_homepage":"https://rasterio.readthedocs.io/","_description":"Rasterio reads and writes geospatial raster datasets","_organization":"rasterio","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2013-11-04T00:00:00.000Z","_age_weeks":474,"_stars_per_week":3.91,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/rasterio/rasterio/master/README.rst","_readme_localurl":"rasterio~rasterio~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/rasterio/rasterio/master/requirements.txt","https://raw.githubusercontent.com/rasterio/rasterio/master/setup.py","https://raw.githubusercontent.com/rasterio/rasterio/master/pyproject.toml"],"_requirements_localurls":["rasterio~rasterio~requirements.txt","rasterio~rasterio~setup.py","rasterio~rasterio~pyproject.toml"]},{"index":813,"category":"data","githuburl":"https://github.com/datafold/data-diff","featured":null,"links":null,"description":null,"_repopath":"datafold/data-diff","_reponame":"data-diff","_stars":1849,"_forks":81,"_watches":14,"_topics":["database","mysql","postgresql","snowflake","rdbms","trino","data-engineering","data-quality","data-science","data-quality-monitoring","databricks-sql","dataengineering","dataquality","oracle-database","postgres","sql"],"_language":"Python","_homepage":"https://www.datafold.com/blog/open-source-data-diff","_description":"data-diff: Efficiently diff data in or across relational databases","_organization":"datafold","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2022-03-07T00:00:00.000Z","_age_weeks":39,"_stars_per_week":47.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/datafold/data-diff/master/README.md","_readme_localurl":"datafold~data-diff~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/datafold/data-diff/master/pyproject.toml"],"_requirements_localurls":["datafold~data-diff~pyproject.toml"]},{"index":713,"category":"gis","githuburl":"https://github.com/mcordts/cityscapesscripts","featured":null,"links":null,"description":null,"_repopath":"mcordts/cityscapesscripts","_reponame":"cityscapesScripts","_stars":1832,"_forks":565,"_watches":46,"_topics":[],"_language":"Python","_homepage":null,"_description":"cityscapesScripts: README and scripts for the Cityscapes Dataset","_organization":"mcordts","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-22T00:00:00.000Z","_created_at":"2016-02-20T00:00:00.000Z","_age_weeks":354,"_stars_per_week":5.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mcordts/cityscapesscripts/master/README.md","_readme_localurl":"mcordts~cityscapesscripts~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mcordts/cityscapesscripts/master/setup.py"],"_requirements_localurls":["mcordts~cityscapesscripts~setup.py"]},{"index":452,"category":"pandas","githuburl":"https://github.com/pandera-dev/pandera","featured":1.0,"links":null,"description":null,"_repopath":"pandera-dev/pandera","_reponame":"pandera","_stars":1829,"_forks":155,"_watches":12,"_topics":["pandas","validation","schema","dataframes","testing","pandas-validation","pandas-dataframe","data-validation","data-cleaning","data-check","testing-tools","assertions","data-assertions","data-verification","dataframe-schema","hypothesis-testing","pandas-validator","data-processing"],"_language":"Python","_homepage":"https://www.union.ai/pandera","_description":"pandera: A light-weight, flexible, and expressive statistical data testing library","_organization":"pandera-dev","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-14T00:00:00.000Z","_created_at":"2018-11-01T00:00:00.000Z","_age_weeks":213,"_stars_per_week":8.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pandera-dev/pandera/master/README.md","_readme_localurl":"pandera-dev~pandera~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pandera-dev/pandera/master/setup.py","https://raw.githubusercontent.com/pandera-dev/pandera/master/pyproject.toml"],"_requirements_localurls":["pandera-dev~pandera~setup.py","pandera-dev~pandera~pyproject.toml"]},{"index":856,"category":"profiling","githuburl":"https://github.com/jiffyclub/snakeviz","featured":null,"links":null,"description":null,"_repopath":"jiffyclub/snakeviz","_reponame":"snakeviz","_stars":1823,"_forks":128,"_watches":22,"_topics":[],"_language":"Python","_homepage":"https://jiffyclub.github.io/snakeviz/","_description":"snakeviz: An in-browser Python profile viewer","_organization":"jiffyclub","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2021-10-25T00:00:00.000Z","_created_at":"2012-06-26T00:00:00.000Z","_age_weeks":545,"_stars_per_week":3.34,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jiffyclub/snakeviz/master/README.rst","_readme_localurl":"jiffyclub~snakeviz~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jiffyclub/snakeviz/master/setup.py"],"_requirements_localurls":["jiffyclub~snakeviz~setup.py"]},{"index":823,"category":"data","githuburl":"https://github.com/uqfoundation/dill","featured":1.0,"links":null,"description":null,"_repopath":"uqfoundation/dill","_reponame":"dill","_stars":1814,"_forks":149,"_watches":22,"_topics":[],"_language":"Python","_homepage":"http://dill.rtfd.io","_description":"dill: serialize all of python","_organization":"uqfoundation","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-10-26T00:00:00.000Z","_created_at":"2013-06-28T00:00:00.000Z","_age_weeks":492,"_stars_per_week":3.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/uqfoundation/dill/master/README.md","_readme_localurl":"uqfoundation~dill~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/uqfoundation/dill/master/setup.py","https://raw.githubusercontent.com/uqfoundation/dill/master/pyproject.toml"],"_requirements_localurls":["uqfoundation~dill~setup.py","uqfoundation~dill~pyproject.toml"]},{"index":46,"category":"jupyter","githuburl":"https://github.com/maartenbreddels/ipyvolume","featured":null,"links":null,"description":null,"_repopath":"maartenbreddels/ipyvolume","_reponame":"ipyvolume","_stars":1807,"_forks":233,"_watches":53,"_topics":["ipython-widget","jupyter","jupyter-notebook","python","visualisation","volume-rendering","virtual-reality","plotting","dataviz","scientific-visualization","webgl","threejs","rendering-3d-volumes","quiver"],"_language":"TypeScript","_homepage":"","_description":"ipyvolume: 3d plotting for Python in the Jupyter notebook based on IPython widgets using WebGL","_organization":"maartenbreddels","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-07-26T00:00:00.000Z","_created_at":"2016-12-21T00:00:00.000Z","_age_weeks":311,"_stars_per_week":5.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/maartenbreddels/ipyvolume/master/README.md","_readme_localurl":"maartenbreddels~ipyvolume~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/maartenbreddels/ipyvolume/master/setup.py","https://raw.githubusercontent.com/maartenbreddels/ipyvolume/master/pyproject.toml"],"_requirements_localurls":["maartenbreddels~ipyvolume~setup.py","maartenbreddels~ipyvolume~pyproject.toml"]},{"index":540,"category":"nlp","githuburl":"https://github.com/salesforce/codegen","featured":null,"links":null,"description":null,"_repopath":"salesforce/codegen","_reponame":"CodeGen","_stars":1805,"_forks":133,"_watches":35,"_topics":["programsynthesis","generativemodel","codex","languagemodel","llm","tpu-acceleration"],"_language":"Python","_homepage":"","_description":"CodeGen is an open-source model for program synthesis. Trained on TPU-v4. Competitive with OpenAI Codex.","_organization":"salesforce","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2022-03-28T00:00:00.000Z","_age_weeks":36,"_stars_per_week":49.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/codegen/master/README.md","_readme_localurl":"salesforce~codegen~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/salesforce/codegen/master/requirements.txt"],"_requirements_localurls":["salesforce~codegen~requirements.txt"]},{"index":115,"category":"perf","githuburl":"https://github.com/h5py/h5py","featured":null,"links":null,"description":null,"_repopath":"h5py/h5py","_reponame":"h5py","_stars":1799,"_forks":479,"_watches":55,"_topics":[],"_language":"Python","_homepage":"http://www.h5py.org","_description":"h5py: HDF5 for Python -- The h5py package is a Pythonic interface to the HDF5 binary data format.","_organization":"h5py","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2012-09-21T00:00:00.000Z","_age_weeks":532,"_stars_per_week":3.38,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/h5py/h5py/master/README.rst","_readme_localurl":"h5py~h5py~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/h5py/h5py/master/setup.py","https://raw.githubusercontent.com/h5py/h5py/master/pyproject.toml"],"_requirements_localurls":["h5py~h5py~setup.py","h5py~h5py~pyproject.toml"]},{"index":601,"category":"gis","githuburl":"https://github.com/plant99/felicette","featured":null,"links":null,"description":null,"_repopath":"plant99/felicette","_reponame":"felicette","_stars":1792,"_forks":86,"_watches":38,"_topics":["geospatial-data","gis","geospatial-visualization","geospatial","python","python3","geoinformatics","earth-observation","earth-science","satellite-imagery","satellite-images","satellite-data"],"_language":"Python","_homepage":"","_description":"felicette: Satellite imagery for dummies.","_organization":"plant99","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2021-09-08T00:00:00.000Z","_created_at":"2020-07-12T00:00:00.000Z","_age_weeks":125,"_stars_per_week":14.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/plant99/felicette/master/README.md","_readme_localurl":"plant99~felicette~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/plant99/felicette/master/requirements.txt","https://raw.githubusercontent.com/plant99/felicette/master/setup.py"],"_requirements_localurls":["plant99~felicette~requirements.txt","plant99~felicette~setup.py"]},{"index":648,"category":"util","githuburl":"https://github.com/grahamdumpleton/wrapt","featured":null,"links":null,"description":null,"_repopath":"grahamdumpleton/wrapt","_reponame":"wrapt","_stars":1790,"_forks":208,"_watches":45,"_topics":[],"_language":"Python","_homepage":"","_description":"wrapt: A Python module for decorators, wrappers and monkey patching.","_organization":"grahamdumpleton","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-10-28T00:00:00.000Z","_created_at":"2013-05-29T00:00:00.000Z","_age_weeks":497,"_stars_per_week":3.6,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/grahamdumpleton/wrapt/master/README.rst","_readme_localurl":"grahamdumpleton~wrapt~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/grahamdumpleton/wrapt/master/setup.py"],"_requirements_localurls":["grahamdumpleton~wrapt~setup.py"]},{"index":871,"category":"profiling","githuburl":"https://github.com/reloadware/reloadium","featured":1.0,"links":null,"description":null,"_repopath":"reloadware/reloadium","_reponame":"reloadium","_stars":1783,"_forks":26,"_watches":23,"_topics":["hot-reload","hot-reloading","python","python3","edit-and-continue","django","flask","pandas"],"_language":"Python","_homepage":"https://reloadium.io","_description":"reloadium: Advanced Hot Reloading & Profiling for Python","_organization":"reloadware","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2022-01-15T00:00:00.000Z","_age_weeks":46,"_stars_per_week":38.29,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/reloadware/reloadium/master/README.rst","_readme_localurl":"reloadware~reloadium~README.rst","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":295,"category":"util","githuburl":"https://github.com/pyfilesystem/pyfilesystem2","featured":null,"links":null,"description":null,"_repopath":"pyfilesystem/pyfilesystem2","_reponame":"pyfilesystem2","_stars":1782,"_forks":170,"_watches":45,"_topics":["filesystem","pyfilesystem","pyfilesystem2","python","ftp","tar","zip","filesystem-library"],"_language":"Python","_homepage":"https://www.pyfilesystem.org","_description":"pyfilesystem2: Python's Filesystem abstraction layer","_organization":"pyfilesystem","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2022-10-18T00:00:00.000Z","_created_at":"2016-10-14T00:00:00.000Z","_age_weeks":320,"_stars_per_week":5.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyfilesystem/pyfilesystem2/master/README.md","_readme_localurl":"pyfilesystem~pyfilesystem2~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyfilesystem/pyfilesystem2/master/setup.py"],"_requirements_localurls":["pyfilesystem~pyfilesystem2~setup.py"]},{"index":506,"category":"ml-ops","githuburl":"https://github.com/adap/flower","featured":null,"links":null,"description":null,"_repopath":"adap/flower","_reponame":"flower","_stars":1776,"_forks":378,"_watches":24,"_topics":["flower","federated-learning","federated-learning-framework","pytorch-federated-learning","tensorflow-federated-learning","keras-federated-learning","federated-analytics","fleet-learning","fleet-intelligence"],"_language":"Python","_homepage":"https://flower.dev","_description":"Flower - A Friendly Federated Learning Framework","_organization":"adap","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2020-02-17T00:00:00.000Z","_age_weeks":146,"_stars_per_week":12.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/adap/flower/master/README.md","_readme_localurl":"adap~flower~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/adap/flower/master/pyproject.toml"],"_requirements_localurls":["adap~flower~pyproject.toml"]},{"index":63,"category":"sim","githuburl":"https://github.com/projectmesa/mesa","featured":null,"links":null,"description":null,"_repopath":"projectmesa/mesa","_reponame":"mesa","_stars":1774,"_forks":756,"_watches":90,"_topics":["mesa","agent-based-modeling","agent-based-simulation","simulation-framework","simulation","simulation-environment","complex-systems","complexity-analysis","modeling-agents","spatial-models","gis"],"_language":"Python","_homepage":"","_description":"Mesa is an agent-based modeling framework in Python","_organization":"projectmesa","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2014-09-19T00:00:00.000Z","_age_weeks":428,"_stars_per_week":4.14,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/projectmesa/mesa/master/README.rst","_readme_localurl":"projectmesa~mesa~README.rst","_requirements_filenames":["setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/projectmesa/mesa/master/setup.py","https://raw.githubusercontent.com/projectmesa/mesa/master/Pipfile"],"_requirements_localurls":["projectmesa~mesa~setup.py","projectmesa~mesa~Pipfile"]},{"index":310,"category":"data","githuburl":"https://github.com/graphistry/pygraphistry","featured":null,"links":null,"description":null,"_repopath":"graphistry/pygraphistry","_reponame":"pygraphistry","_stars":1759,"_forks":185,"_watches":48,"_topics":["graph","visualization","gpu","graphistry","python","rapids","cugraph","networkx","neo4j","tigergraph","pandas","csv","webgl","splunk","cudf","jupyter","igraph","network-analysis","network-visualization","graph-visualization"],"_language":"Python","_homepage":"","_description":"PyGraphistry is a Python library to quickly load, shape, embed, and explore big graphs with the GPU-accelerated Graphistry visual graph analyzer","_organization":"graphistry","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2015-06-02T00:00:00.000Z","_age_weeks":392,"_stars_per_week":4.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/graphistry/pygraphistry/master/README.md","_readme_localurl":"graphistry~pygraphistry~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/graphistry/pygraphistry/master/setup.py"],"_requirements_localurls":["graphistry~pygraphistry~setup.py"]},{"index":32,"category":"nlp","githuburl":"https://github.com/jamesturk/jellyfish","featured":null,"links":null,"description":null,"_repopath":"jamesturk/jellyfish","_reponame":"jellyfish","_stars":1759,"_forks":148,"_watches":43,"_topics":["python","levenshtein","soundex","hamming","metaphone","jaro-winkler","fuzzy-search","hacktoberfest"],"_language":"Python","_homepage":"https://jamesturk.github.io/jellyfish/","_description":"jellyfish: \ud83e\udebc a python library for doing approximate and phonetic matching of strings.","_organization":"jamesturk","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-07T00:00:00.000Z","_created_at":"2010-07-09T00:00:00.000Z","_age_weeks":647,"_stars_per_week":2.72,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jamesturk/jellyfish/master/README.md","_readme_localurl":"jamesturk~jellyfish~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jamesturk/jellyfish/master/setup.py"],"_requirements_localurls":["jamesturk~jellyfish~setup.py"]},{"index":9,"category":"ml","githuburl":"https://github.com/contextlab/hypertools","featured":null,"links":null,"description":null,"_repopath":"contextlab/hypertools","_reponame":"hypertools","_stars":1754,"_forks":159,"_watches":60,"_topics":["data-visualization","high-dimensional-data","python","topic-modeling","text-vectorization","data-wrangling","visualization","time-series"],"_language":"Python","_homepage":"http://hypertools.readthedocs.io/en/latest/","_description":"hypertools: A Python toolbox for gaining geometric insights into high-dimensional data","_organization":"contextlab","_updated_at":"2022-11-27T00:00:00.000Z","_last_commit_date":"2022-02-12T00:00:00.000Z","_created_at":"2016-09-27T00:00:00.000Z","_age_weeks":323,"_stars_per_week":5.43,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/contextlab/hypertools/master/readme.md","_readme_localurl":"contextlab~hypertools~readme.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/contextlab/hypertools/master/requirements.txt","https://raw.githubusercontent.com/contextlab/hypertools/master/setup.py"],"_requirements_localurls":["contextlab~hypertools~requirements.txt","contextlab~hypertools~setup.py"]},{"index":201,"category":"util","githuburl":"https://github.com/camelot-dev/camelot","featured":null,"links":null,"description":null,"_repopath":"camelot-dev/camelot","_reponame":"camelot","_stars":1743,"_forks":330,"_watches":39,"_topics":[],"_language":"Python","_homepage":"https://camelot-py.readthedocs.io","_description":"camelot: A Python library to extract tabular data from PDFs","_organization":"camelot-dev","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2021-07-11T00:00:00.000Z","_created_at":"2019-07-01T00:00:00.000Z","_age_weeks":179,"_stars_per_week":9.72,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/camelot-dev/camelot/master/README.md","_readme_localurl":"camelot-dev~camelot~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/camelot-dev/camelot/master/setup.py"],"_requirements_localurls":["camelot-dev~camelot~setup.py"]},{"index":843,"category":"ml","githuburl":"https://github.com/aws/sagemaker-python-sdk","featured":null,"links":null,"description":null,"_repopath":"aws/sagemaker-python-sdk","_reponame":"sagemaker-python-sdk","_stars":1740,"_forks":899,"_watches":131,"_topics":["aws","mxnet","tensorflow","machine-learning","python","pytorch","sagemaker","huggingface"],"_language":"Python","_homepage":"https://sagemaker.readthedocs.io/","_description":"sagemaker-python-sdk: A library for training and deploying machine learning models on Amazon SageMaker","_organization":"aws","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2017-11-14T00:00:00.000Z","_age_weeks":264,"_stars_per_week":6.59,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/aws/sagemaker-python-sdk/master/README.rst","_readme_localurl":"aws~sagemaker-python-sdk~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aws/sagemaker-python-sdk/master/setup.py"],"_requirements_localurls":["aws~sagemaker-python-sdk~setup.py"]},{"index":749,"category":"diffusion","githuburl":"https://github.com/nateraw/stable-diffusion-videos","featured":null,"links":null,"description":null,"_repopath":"nateraw/stable-diffusion-videos","_reponame":"stable-diffusion-videos","_stars":1722,"_forks":151,"_watches":19,"_topics":["ai-art","huggingface","huggingface-diffusers","machine-learning","stable-diffusion"],"_language":"Python","_homepage":"","_description":"stable-diffusion-videos: Create \ud83d\udd25 videos with Stable Diffusion by exploring the latent space and morphing between text prompts","_organization":"nateraw","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2022-09-06T00:00:00.000Z","_age_weeks":13,"_stars_per_week":131.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/README.md","_readme_localurl":"nateraw~stable-diffusion-videos~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/requirements.txt","https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/setup.py"],"_requirements_localurls":["nateraw~stable-diffusion-videos~requirements.txt","nateraw~stable-diffusion-videos~setup.py"]},{"index":25,"category":"util","githuburl":"https://github.com/google/gin-config","featured":null,"links":null,"description":null,"_repopath":"google/gin-config","_reponame":"gin-config","_stars":1705,"_forks":107,"_watches":22,"_topics":["python","configuration-management","tensorflow","tensorflow-experiments"],"_language":"Python","_homepage":"","_description":"gin-config: Gin provides a lightweight configuration framework for Python","_organization":"google","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2018-06-27T00:00:00.000Z","_age_weeks":232,"_stars_per_week":7.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/gin-config/master/README.md","_readme_localurl":"google~gin-config~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/gin-config/master/setup.py"],"_requirements_localurls":["google~gin-config~setup.py"]},{"index":297,"category":"util","githuburl":"https://github.com/pyparsing/pyparsing","featured":null,"links":null,"description":null,"_repopath":"pyparsing/pyparsing","_reponame":"pyparsing","_stars":1704,"_forks":236,"_watches":23,"_topics":["python","python2","python3","python-2","python-3","parser-combinators","parsing-expression-grammar","parsing","parsing-library","text-processing","peg-parsers"],"_language":"Python","_homepage":"","_description":"pyparsing: Python library for creating PEG parsers","_organization":"pyparsing","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-11T00:00:00.000Z","_created_at":"2017-05-14T00:00:00.000Z","_age_weeks":290,"_stars_per_week":5.87,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyparsing/pyparsing/master/README.rst","_readme_localurl":"pyparsing~pyparsing~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyparsing/pyparsing/master/pyproject.toml"],"_requirements_localurls":["pyparsing~pyparsing~pyproject.toml"]},{"index":365,"category":"ml","githuburl":"https://github.com/rentruewang/koila","featured":null,"links":null,"description":null,"_repopath":"rentruewang/koila","_reponame":"koila","_stars":1686,"_forks":58,"_watches":11,"_topics":["pytorch","lazy-evaluation","out-of-memory","python","machine-learning","deep-learning","memory-management","gradient-accumulation","neural-network"],"_language":"Python","_homepage":"https://rentruewang.github.io/koila","_description":"koila: Prevent PyTorch's `CUDA error: out of memory` in just 1 line of code.","_organization":"rentruewang","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-11-26T00:00:00.000Z","_created_at":"2021-11-17T00:00:00.000Z","_age_weeks":55,"_stars_per_week":30.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rentruewang/koila/master/README.md","_readme_localurl":"rentruewang~koila~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/rentruewang/koila/master/pyproject.toml"],"_requirements_localurls":["rentruewang~koila~pyproject.toml"]},{"index":806,"category":"web","githuburl":"https://github.com/python-restx/flask-restx","featured":null,"links":null,"description":null,"_repopath":"python-restx/flask-restx","_reponame":"flask-restx","_stars":1682,"_forks":283,"_watches":64,"_topics":["python","api","swagger","flask","rest","json","restful","restplus","restx"],"_language":"Python","_homepage":"https://flask-restx.readthedocs.io/en/latest/","_description":"flask-restx: Fork of Flask-RESTPlus: Fully featured framework for fast, easy and documented API development with Flask","_organization":"python-restx","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-02T00:00:00.000Z","_created_at":"2020-01-09T00:00:00.000Z","_age_weeks":151,"_stars_per_week":11.08,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/python-restx/flask-restx/master/README.rst","_readme_localurl":"python-restx~flask-restx~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/python-restx/flask-restx/master/setup.py"],"_requirements_localurls":["python-restx~flask-restx~setup.py"]},{"index":416,"category":"ml","githuburl":"https://github.com/bmabey/pyldavis","featured":null,"links":null,"description":null,"_repopath":"bmabey/pyldavis","_reponame":"pyLDAvis","_stars":1667,"_forks":340,"_watches":57,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"pyLDAvis: Python library for interactive topic model visualization. Port of the R LDAvis package.","_organization":"bmabey","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2021-03-24T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":399,"_stars_per_week":4.17,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/bmabey/pyldavis/master/README.rst","_readme_localurl":"bmabey~pyldavis~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/bmabey/pyldavis/master/requirements.txt","https://raw.githubusercontent.com/bmabey/pyldavis/master/setup.py","https://raw.githubusercontent.com/bmabey/pyldavis/master/pyproject.toml","https://raw.githubusercontent.com/bmabey/pyldavis/master/Pipfile"],"_requirements_localurls":["bmabey~pyldavis~requirements.txt","bmabey~pyldavis~setup.py","bmabey~pyldavis~pyproject.toml","bmabey~pyldavis~Pipfile"]},{"index":543,"category":"data","githuburl":"https://github.com/sqlalchemy/alembic","featured":null,"links":null,"description":null,"_repopath":"sqlalchemy/alembic","_reponame":"alembic","_stars":1659,"_forks":170,"_watches":18,"_topics":["sqlalchemy","sql","python"],"_language":"Python","_homepage":"","_description":"alembic: A database migrations tool for SQLAlchemy.","_organization":"sqlalchemy","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2018-11-27T00:00:00.000Z","_age_weeks":210,"_stars_per_week":7.89,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sqlalchemy/alembic/master/README.rst","_readme_localurl":"sqlalchemy~alembic~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sqlalchemy/alembic/master/setup.py","https://raw.githubusercontent.com/sqlalchemy/alembic/master/pyproject.toml"],"_requirements_localurls":["sqlalchemy~alembic~setup.py","sqlalchemy~alembic~pyproject.toml"]},{"index":217,"category":"ml","githuburl":"https://github.com/linkedin/greykite","featured":1.0,"links":null,"description":null,"_repopath":"linkedin/greykite","_reponame":"greykite","_stars":1648,"_forks":87,"_watches":37,"_topics":[],"_language":"Python","_homepage":"","_description":"greykite: A flexible, intuitive and fast forecasting library","_organization":"linkedin","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-08-31T00:00:00.000Z","_created_at":"2021-04-27T00:00:00.000Z","_age_weeks":84,"_stars_per_week":19.59,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/linkedin/greykite/master/README.rst","_readme_localurl":"linkedin~greykite~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/linkedin/greykite/master/setup.py"],"_requirements_localurls":["linkedin~greykite~setup.py"]},{"index":330,"category":"nlp","githuburl":"https://github.com/franck-dernoncourt/neuroner","featured":null,"links":null,"description":null,"_repopath":"franck-dernoncourt/neuroner","_reponame":"NeuroNER","_stars":1637,"_forks":482,"_watches":84,"_topics":["nlp","machine-learning","neural-networks","named-entity-recognition","deep-learning","tensorflow"],"_language":"Python","_homepage":"http://neuroner.com","_description":"NeuroNER: Named-entity recognition using neural networks. Easy-to-use and state-of-the-art results.","_organization":"franck-dernoncourt","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2019-10-02T00:00:00.000Z","_created_at":"2017-03-07T00:00:00.000Z","_age_weeks":300,"_stars_per_week":5.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/README.md","_readme_localurl":"franck-dernoncourt~neuroner~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/requirements.txt","https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/setup.py"],"_requirements_localurls":["franck-dernoncourt~neuroner~requirements.txt","franck-dernoncourt~neuroner~setup.py"]},{"index":302,"category":"template","githuburl":"https://github.com/pyscaffold/pyscaffold","featured":null,"links":null,"description":null,"_repopath":"pyscaffold/pyscaffold","_reponame":"pyscaffold","_stars":1636,"_forks":169,"_watches":39,"_topics":["python","release-automation","git","distribution","package-creation","template-project","project-template","package"],"_language":"Python","_homepage":"https://pyscaffold.org","_description":"pyscaffold: \ud83d\udee0 Python project template generator with batteries included","_organization":"pyscaffold","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2014-04-02T00:00:00.000Z","_age_weeks":453,"_stars_per_week":3.61,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyscaffold/pyscaffold/master/README.rst","_readme_localurl":"pyscaffold~pyscaffold~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyscaffold/pyscaffold/master/setup.py","https://raw.githubusercontent.com/pyscaffold/pyscaffold/master/pyproject.toml"],"_requirements_localurls":["pyscaffold~pyscaffold~setup.py","pyscaffold~pyscaffold~pyproject.toml"]},{"index":732,"category":"study","githuburl":"https://github.com/amanchadha/coursera-deep-learning-specialization","featured":null,"links":null,"description":null,"_repopath":"amanchadha/coursera-deep-learning-specialization","_reponame":"coursera-deep-learning-specialization","_stars":1634,"_forks":1442,"_watches":16,"_topics":["deep-learning","coursera","coursera-assignment","coursera-specialization","coursera-machine-learning","andrew-ng","andrew-ng-course","convolutional-neural-networks","cnns","recurrent-neural-networks","rnns","convolutional-neural-network","recurrent-neural-network","hyperparameter-optimization","hyperparameter-tuning","neural-network","neural-networks","neural-machine-translation","neural-style-transfer","regularization"],"_language":"Jupyter Notebook","_homepage":"","_description":"coursera-deep-learning-specialization: Notes, programming assignments and quizzes from all courses within the Coursera Deep Learning specialization offered by deeplearning.ai: (i) Neural Networks and Deep Learning; (ii) Improving Deep Neural Networks: Hyperparameter tuning, Regularization and Optimization; (iii) Structuring Machine Learning Projects; (iv) Convolutional Neural Networks; (v) Sequence Models","_organization":"amanchadha","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-02-07T00:00:00.000Z","_created_at":"2020-06-24T00:00:00.000Z","_age_weeks":128,"_stars_per_week":12.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/amanchadha/coursera-deep-learning-specialization/master/README.md","_readme_localurl":"amanchadha~coursera-deep-learning-specialization~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":424,"category":"debug","githuburl":"https://github.com/gotcha/ipdb","featured":null,"links":null,"description":null,"_repopath":"gotcha/ipdb","_reponame":"ipdb","_stars":1633,"_forks":143,"_watches":27,"_topics":["python","ipython","debugger"],"_language":"Python","_homepage":"","_description":"ipdb: Integration of IPython pdb","_organization":"gotcha","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2021-12-30T00:00:00.000Z","_created_at":"2011-01-15T00:00:00.000Z","_age_weeks":620,"_stars_per_week":2.63,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/gotcha/ipdb/master/README.rst","_readme_localurl":"gotcha~ipdb~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gotcha/ipdb/master/setup.py"],"_requirements_localurls":["gotcha~ipdb~setup.py"]},{"index":755,"category":"ml","githuburl":"https://github.com/marqo-ai/marqo","featured":null,"links":null,"description":null,"_repopath":"marqo-ai/marqo","_reponame":"marqo","_stars":1624,"_forks":61,"_watches":19,"_topics":["deep-learning","search","information-retrieval","machinelearning","vector-search","tensor-search","clip","multi-modal","search-engine","timm","transformers","vision-language","machine-learning","semantic-search","visual-search","natural-language-processing","hnsw","knn","hacktoberfest","hacktoberfest-accepted"],"_language":"Python","_homepage":"https://www.marqo.ai/","_description":"marqo: Tensor search for humans.","_organization":"marqo-ai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2022-08-01T00:00:00.000Z","_age_weeks":18,"_stars_per_week":88.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/marqo-ai/marqo/master/README.md","_readme_localurl":"marqo-ai~marqo~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/marqo-ai/marqo/master/requirements.txt","https://raw.githubusercontent.com/marqo-ai/marqo/master/setup.py","https://raw.githubusercontent.com/marqo-ai/marqo/master/pyproject.toml"],"_requirements_localurls":["marqo-ai~marqo~requirements.txt","marqo-ai~marqo~setup.py","marqo-ai~marqo~pyproject.toml"]},{"index":699,"category":"util","githuburl":"https://github.com/grantjenks/python-diskcache","featured":null,"links":null,"description":null,"_repopath":"grantjenks/python-diskcache","_reponame":"python-diskcache","_stars":1617,"_forks":106,"_watches":18,"_topics":["python","cache","persistence","key-value-store","filesystem"],"_language":"Python","_homepage":"http://www.grantjenks.com/docs/diskcache/","_description":"python-diskcache: Python disk-backed cache (Django-compatible). Faster than Redis and Memcached. Pure-Python.","_organization":"grantjenks","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-02-20T00:00:00.000Z","_created_at":"2016-02-03T00:00:00.000Z","_age_weeks":357,"_stars_per_week":4.53,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/grantjenks/python-diskcache/master/README.rst","_readme_localurl":"grantjenks~python-diskcache~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/grantjenks/python-diskcache/master/requirements.txt","https://raw.githubusercontent.com/grantjenks/python-diskcache/master/setup.py"],"_requirements_localurls":["grantjenks~python-diskcache~requirements.txt","grantjenks~python-diskcache~setup.py"]},{"index":256,"category":"crypto","githuburl":"https://github.com/bmoscon/cryptofeed","featured":null,"links":null,"description":null,"_repopath":"bmoscon/cryptofeed","_reponame":"cryptofeed","_stars":1605,"_forks":517,"_watches":75,"_topics":["python","trading","market-data","cryptocurrency","bitcoin","exchange","websockets","coinbase","binance","influxdb","asyncio","websocket","ftx-exchange","trading-platform","ethereum","cryptocurrencies","btc","crypto","coinbase-api"],"_language":"Python","_homepage":"","_description":"cryptofeed: Cryptocurrency Exchange Websocket Data Feed Handler","_organization":"bmoscon","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2017-12-16T00:00:00.000Z","_age_weeks":259,"_stars_per_week":6.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bmoscon/cryptofeed/master/README.md","_readme_localurl":"bmoscon~cryptofeed~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/bmoscon/cryptofeed/master/requirements.txt","https://raw.githubusercontent.com/bmoscon/cryptofeed/master/setup.py","https://raw.githubusercontent.com/bmoscon/cryptofeed/master/pyproject.toml"],"_requirements_localurls":["bmoscon~cryptofeed~requirements.txt","bmoscon~cryptofeed~setup.py","bmoscon~cryptofeed~pyproject.toml"]},{"index":779,"category":"nlp","githuburl":"https://github.com/deepset-ai/farm","featured":null,"links":null,"description":null,"_repopath":"deepset-ai/farm","_reponame":"FARM","_stars":1598,"_forks":231,"_watches":56,"_topics":["language-models","bert","nlp","deep-learning","transfer-learning","pytorch","nlp-library","nlp-framework","xlnet-pytorch","ner","question-answering","pretrained-models","roberta","germanbert"],"_language":"Python","_homepage":"https://farm.deepset.ai","_description":"FARM: :house_with_garden: Fast & easy transfer learning for NLP. Harvesting language models for the industry. Focus on Question Answering.","_organization":"deepset-ai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-08-31T00:00:00.000Z","_created_at":"2019-07-17T00:00:00.000Z","_age_weeks":177,"_stars_per_week":9.03,"_readme_filename":"readme.rst","_readme_giturl":"https://raw.githubusercontent.com/deepset-ai/farm/master/readme.rst","_readme_localurl":"deepset-ai~farm~readme.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/deepset-ai/farm/master/requirements.txt","https://raw.githubusercontent.com/deepset-ai/farm/master/setup.py"],"_requirements_localurls":["deepset-ai~farm~requirements.txt","deepset-ai~farm~setup.py"]},{"index":383,"category":"nlp","githuburl":"https://github.com/minimaxir/aitextgen","featured":null,"links":null,"description":null,"_repopath":"minimaxir/aitextgen","_reponame":"aitextgen","_stars":1593,"_forks":181,"_watches":37,"_topics":[],"_language":"Python","_homepage":"https://docs.aitextgen.io","_description":"aitextgen: A robust Python tool for text-based AI training and generation using GPT-2.","_organization":"minimaxir","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-08-09T00:00:00.000Z","_created_at":"2019-12-29T00:00:00.000Z","_age_weeks":153,"_stars_per_week":10.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/minimaxir/aitextgen/master/README.md","_readme_localurl":"minimaxir~aitextgen~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/minimaxir/aitextgen/master/requirements.txt","https://raw.githubusercontent.com/minimaxir/aitextgen/master/setup.py"],"_requirements_localurls":["minimaxir~aitextgen~requirements.txt","minimaxir~aitextgen~setup.py"]},{"index":509,"category":"ml","githuburl":"https://github.com/tensorflow/addons","featured":null,"links":null,"description":null,"_repopath":"tensorflow/addons","_reponame":"addons","_stars":1587,"_forks":594,"_watches":57,"_topics":["machine-learning","deep-learning","tensorflow","neural-network","tensorflow-addons","python"],"_language":"Python","_homepage":"","_description":"addons: Useful extra functionality for TensorFlow 2.x maintained by SIG-addons","_organization":"tensorflow","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2018-11-26T00:00:00.000Z","_age_weeks":210,"_stars_per_week":7.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/addons/master/README.md","_readme_localurl":"tensorflow~addons~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorflow/addons/master/requirements.txt","https://raw.githubusercontent.com/tensorflow/addons/master/setup.py","https://raw.githubusercontent.com/tensorflow/addons/master/pyproject.toml"],"_requirements_localurls":["tensorflow~addons~requirements.txt","tensorflow~addons~setup.py","tensorflow~addons~pyproject.toml"]},{"index":768,"category":"ml-dl","githuburl":"https://github.com/fepegar/torchio","featured":null,"links":null,"description":null,"_repopath":"fepegar/torchio","_reponame":"torchio","_stars":1570,"_forks":195,"_watches":14,"_topics":["pytorch","medical-image-computing","deep-learning","data-augmentation","medical-images","machine-learning","python","medical-image-processing","medical-image-analysis","medical-imaging-datasets","medical-imaging-with-deep-learning","augmentation"],"_language":"Python","_homepage":"http://www.torchio.org","_description":"torchio: Medical imaging toolkit for deep learning","_organization":"fepegar","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-19T00:00:00.000Z","_created_at":"2019-11-26T00:00:00.000Z","_age_weeks":158,"_stars_per_week":9.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fepegar/torchio/master/README.md","_readme_localurl":"fepegar~torchio~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/fepegar/torchio/master/pyproject.toml"],"_requirements_localurls":["fepegar~torchio~pyproject.toml"]},{"index":767,"category":"study","githuburl":"https://github.com/fluentpython/example-code-2e","featured":null,"links":null,"description":null,"_repopath":"fluentpython/example-code-2e","_reponame":"example-code-2e","_stars":1566,"_forks":458,"_watches":52,"_topics":["python","python3","concurrency","iterators","metaprogramming","special-methods"],"_language":"Python","_homepage":"https://amzn.to/3J48u2J","_description":"example-code-2e: Example code for Fluent Python, 2nd edition (O'Reilly 2022) ","_organization":"fluentpython","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-04-24T00:00:00.000Z","_created_at":"2019-03-21T00:00:00.000Z","_age_weeks":193,"_stars_per_week":8.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fluentpython/example-code-2e/master/README.md","_readme_localurl":"fluentpython~example-code-2e~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":195,"category":"sim","githuburl":"https://github.com/pettingzoo-team/pettingzoo","featured":null,"links":null,"description":null,"_repopath":"pettingzoo-team/pettingzoo","_reponame":"PettingZoo","_stars":1560,"_forks":249,"_watches":16,"_topics":[],"_language":"Python","_homepage":"https://pettingzoo.farama.org","_description":"PettingZoo: Gymnasium for multi-agent reinforcement learning","_organization":"pettingzoo-team","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-15T00:00:00.000Z","_created_at":"2020-01-20T00:00:00.000Z","_age_weeks":150,"_stars_per_week":10.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pettingzoo-team/pettingzoo/master/README.md","_readme_localurl":"pettingzoo-team~pettingzoo~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pettingzoo-team/pettingzoo/master/setup.py","https://raw.githubusercontent.com/pettingzoo-team/pettingzoo/master/pyproject.toml"],"_requirements_localurls":["pettingzoo-team~pettingzoo~setup.py","pettingzoo-team~pettingzoo~pyproject.toml"]},{"index":263,"category":"sim","githuburl":"https://github.com/quantecon/quantecon.py","featured":null,"links":null,"description":null,"_repopath":"quantecon/quantecon.py","_reponame":"QuantEcon.py","_stars":1560,"_forks":2100,"_watches":150,"_topics":[],"_language":"Python","_homepage":"https://quantecon.org/quantecon-py/","_description":"QuantEcon.py: A community based Python library for quantitative economics","_organization":"quantecon","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2013-03-22T00:00:00.000Z","_age_weeks":506,"_stars_per_week":3.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/quantecon/quantecon.py/master/README.md","_readme_localurl":"quantecon~quantecon.py~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/quantecon/quantecon.py/master/pyproject.toml"],"_requirements_localurls":["quantecon~quantecon.py~pyproject.toml"]},{"index":825,"category":"study","githuburl":"https://github.com/alirezadir/machine-learning-interview-enlightener","featured":null,"links":null,"description":null,"_repopath":"alirezadir/machine-learning-interview-enlightener","_reponame":"machine-learning-interview-enlightener","_stars":1557,"_forks":327,"_watches":47,"_topics":["machine-learning","machine-learning-algorithms","ai","deep-learning","system-design","scalable-applications","interview","interview-preparation","interview-practice","interviews"],"_language":"Jupyter Notebook","_homepage":"","_description":"machine-learning-interview-enlightener: This repo is meant to serve as a guide for Machine Learning/AI technical interviews. ","_organization":"alirezadir","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-05-25T00:00:00.000Z","_created_at":"2021-01-31T00:00:00.000Z","_age_weeks":96,"_stars_per_week":16.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alirezadir/machine-learning-interview-enlightener/master/README.md","_readme_localurl":"alirezadir~machine-learning-interview-enlightener~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":597,"category":"time-series","githuburl":"https://github.com/uber/orbit","featured":null,"links":null,"description":null,"_repopath":"uber/orbit","_reponame":"orbit","_stars":1553,"_forks":115,"_watches":31,"_topics":["python","forecasting","bayesian","exponential-smoothing","pyro","stan","pystan","probabilistic-programming","probabilistic","forecast","orbit","time-series","regression","arima","changepoint","bayesian-methods","bayesian-statistics","machine-learning","regression-models","pytorch"],"_language":"Python","_homepage":"https://orbit-ml.readthedocs.io/en/stable/","_description":"orbit: A Python package for Bayesian forecasting with object-oriented design and probabilistic models under the hood.","_organization":"uber","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2020-01-07T00:00:00.000Z","_age_weeks":152,"_stars_per_week":10.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/uber/orbit/master/README.md","_readme_localurl":"uber~orbit~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/orbit/master/requirements.txt","https://raw.githubusercontent.com/uber/orbit/master/setup.py","https://raw.githubusercontent.com/uber/orbit/master/pyproject.toml"],"_requirements_localurls":["uber~orbit~requirements.txt","uber~orbit~setup.py","uber~orbit~pyproject.toml"]},{"index":377,"category":"ml-interpretability","githuburl":"https://github.com/jalammar/ecco","featured":null,"links":null,"description":null,"_repopath":"jalammar/ecco","_reponame":"ecco","_stars":1549,"_forks":108,"_watches":20,"_topics":["nlp","visualization","explorables","natural-language-processing","pytorch","language-models"],"_language":"Jupyter Notebook","_homepage":"https://ecco.readthedocs.io","_description":"ecco: Explain, analyze, and visualize NLP language models. Ecco creates interactive visualizations directly in Jupyter notebooks explaining the behavior of Transformer-based language models (like GPT2, BERT, RoBERTA, T5, and T0).","_organization":"jalammar","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-01-18T00:00:00.000Z","_created_at":"2020-11-07T00:00:00.000Z","_age_weeks":108,"_stars_per_week":14.27,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jalammar/ecco/master/README.rst","_readme_localurl":"jalammar~ecco~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jalammar/ecco/master/requirements.txt","https://raw.githubusercontent.com/jalammar/ecco/master/setup.py"],"_requirements_localurls":["jalammar~ecco~requirements.txt","jalammar~ecco~setup.py"]},{"index":143,"category":"nlp","githuburl":"https://github.com/plasticityai/magnitude","featured":null,"links":null,"description":null,"_repopath":"plasticityai/magnitude","_reponame":"magnitude","_stars":1542,"_forks":113,"_watches":37,"_topics":["python","natural-language-processing","nlp","machine-learning","vectors","embeddings","word2vec","fasttext","glove","gensim","fast","memory-efficient","machine-learning-library","word-embeddings"],"_language":"Python","_homepage":null,"_description":"magnitude: A fast, efficient universal vector embedding utility package.","_organization":"plasticityai","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2020-07-17T00:00:00.000Z","_created_at":"2018-02-24T00:00:00.000Z","_age_weeks":249,"_stars_per_week":6.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/plasticityai/magnitude/master/README.md","_readme_localurl":"plasticityai~magnitude~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/plasticityai/magnitude/master/requirements.txt","https://raw.githubusercontent.com/plasticityai/magnitude/master/setup.py"],"_requirements_localurls":["plasticityai~magnitude~requirements.txt","plasticityai~magnitude~setup.py"]},{"index":299,"category":"util","githuburl":"https://github.com/julienpalard/pipe","featured":null,"links":null,"description":null,"_repopath":"julienpalard/pipe","_reponame":"Pipe","_stars":1540,"_forks":101,"_watches":25,"_topics":[],"_language":"Python","_homepage":"","_description":"Pipe: A Python library to use infix notation in Python","_organization":"julienpalard","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-11-16T00:00:00.000Z","_created_at":"2010-04-08T00:00:00.000Z","_age_weeks":660,"_stars_per_week":2.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/julienpalard/pipe/master/README.md","_readme_localurl":"julienpalard~pipe~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/julienpalard/pipe/master/pyproject.toml"],"_requirements_localurls":["julienpalard~pipe~pyproject.toml"]},{"index":596,"category":"data","githuburl":"https://github.com/uber/petastorm","featured":null,"links":null,"description":null,"_repopath":"uber/petastorm","_reponame":"petastorm","_stars":1536,"_forks":265,"_watches":41,"_topics":["tensorflow","pytorch","deep-learning","machine-learning","sysml","pyspark","pyarrow","parquet","parquet-files"],"_language":"Python","_homepage":"","_description":"Petastorm library enables single machine or distributed training and evaluation of deep learning models from datasets in Apache Parquet format. It supports ML frameworks such as Tensorflow, Pytorch, and PySpark and can be used from pure Python code.","_organization":"uber","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-09-14T00:00:00.000Z","_created_at":"2018-06-15T00:00:00.000Z","_age_weeks":233,"_stars_per_week":6.57,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/uber/petastorm/master/README.rst","_readme_localurl":"uber~petastorm~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/petastorm/master/setup.py"],"_requirements_localurls":["uber~petastorm~setup.py"]},{"index":311,"category":"util","githuburl":"https://github.com/linkedin/shiv","featured":null,"links":null,"description":null,"_repopath":"linkedin/shiv","_reponame":"shiv","_stars":1530,"_forks":84,"_watches":26,"_topics":[],"_language":"Python","_homepage":"","_description":"shiv is a command line utility for building fully self contained Python zipapps as outlined in PEP 441, but with all their dependencies included.","_organization":"linkedin","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2018-03-13T00:00:00.000Z","_age_weeks":247,"_stars_per_week":6.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/linkedin/shiv/master/README.md","_readme_localurl":"linkedin~shiv~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/linkedin/shiv/master/pyproject.toml"],"_requirements_localurls":["linkedin~shiv~pyproject.toml"]},{"index":635,"category":"debug","githuburl":"https://github.com/alexmojaki/birdseye","featured":null,"links":null,"description":null,"_repopath":"alexmojaki/birdseye","_reponame":"birdseye","_stars":1522,"_forks":76,"_watches":43,"_topics":["python-debugger","python","debugger","debugging","birdseye","ast"],"_language":"JavaScript","_homepage":"https://birdseye.readthedocs.io","_description":"birdseye: Graphical Python debugger which lets you easily view the values of all evaluated expressions","_organization":"alexmojaki","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-05-18T00:00:00.000Z","_created_at":"2017-07-22T00:00:00.000Z","_age_weeks":280,"_stars_per_week":5.42,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/alexmojaki/birdseye/master/README.rst","_readme_localurl":"alexmojaki~birdseye~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/alexmojaki/birdseye/master/setup.py","https://raw.githubusercontent.com/alexmojaki/birdseye/master/pyproject.toml"],"_requirements_localurls":["alexmojaki~birdseye~setup.py","alexmojaki~birdseye~pyproject.toml"]},{"index":662,"category":"util","githuburl":"https://github.com/numba/llvmlite","featured":null,"links":null,"description":null,"_repopath":"numba/llvmlite","_reponame":"llvmlite","_stars":1514,"_forks":285,"_watches":55,"_topics":[],"_language":"Python","_homepage":"http://llvmlite.pydata.org/","_description":"llvmlite: A lightweight LLVM python binding for writing JIT compilers","_organization":"numba","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2014-08-07T00:00:00.000Z","_age_weeks":434,"_stars_per_week":3.48,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/numba/llvmlite/master/README.rst","_readme_localurl":"numba~llvmlite~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/numba/llvmlite/master/setup.py"],"_requirements_localurls":["numba~llvmlite~setup.py"]},{"index":205,"category":"debug","githuburl":"https://github.com/alexmojaki/heartrate","featured":null,"links":null,"description":null,"_repopath":"alexmojaki/heartrate","_reponame":"heartrate","_stars":1498,"_forks":120,"_watches":30,"_topics":["python","visualization","debugger"],"_language":"Python","_homepage":null,"_description":"heartrate: Simple real time visualisation of the execution of a Python program.","_organization":"alexmojaki","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2021-11-13T00:00:00.000Z","_created_at":"2019-04-24T00:00:00.000Z","_age_weeks":189,"_stars_per_week":7.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alexmojaki/heartrate/master/README.md","_readme_localurl":"alexmojaki~heartrate~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/alexmojaki/heartrate/master/setup.py"],"_requirements_localurls":["alexmojaki~heartrate~setup.py"]},{"index":799,"category":"web","githuburl":"https://github.com/pallets/quart","featured":null,"links":null,"description":null,"_repopath":"pallets/quart","_reponame":"quart","_stars":1497,"_forks":88,"_watches":25,"_topics":["asyncio","python","http-server","asgi","quart"],"_language":"Python","_homepage":"https://quart.palletsprojects.com","_description":"quart: An async Python micro framework for building web applications. ","_organization":"pallets","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-14T00:00:00.000Z","_created_at":"2017-11-10T00:00:00.000Z","_age_weeks":264,"_stars_per_week":5.66,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/quart/master/README.rst","_readme_localurl":"pallets~quart~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/quart/master/pyproject.toml"],"_requirements_localurls":["pallets~quart~pyproject.toml"]},{"index":458,"category":"ml-dl","githuburl":"https://github.com/nebuly-ai/nebullvm","featured":null,"links":null,"description":null,"_repopath":"nebuly-ai/nebullvm","_reponame":"nebullvm","_stars":1495,"_forks":68,"_watches":17,"_topics":["deep-learning","pytorch","onnx","machine-learning","tensorflow","tvm","openvino","tensorrt","huggingface","compiler","computing","inference"],"_language":"Python","_homepage":"","_description":"nebullvm: Accelerate AI models inference leveraging best-of-breed optimization techniques \ud83d\ude80","_organization":"nebuly-ai","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2022-02-12T00:00:00.000Z","_age_weeks":42,"_stars_per_week":35.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nebuly-ai/nebullvm/master/README.md","_readme_localurl":"nebuly-ai~nebullvm~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nebuly-ai/nebullvm/master/requirements.txt","https://raw.githubusercontent.com/nebuly-ai/nebullvm/master/setup.py"],"_requirements_localurls":["nebuly-ai~nebullvm~requirements.txt","nebuly-ai~nebullvm~setup.py"]},{"index":612,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-mock","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-mock","_reponame":"pytest-mock","_stars":1488,"_forks":118,"_watches":33,"_topics":["pytest","mock","hacktoberfest"],"_language":"Python","_homepage":"https://pytest-mock.readthedocs.io/en/latest/","_description":"pytest-mock: Thin-wrapper around the mock package for easier use with pytest","_organization":"pytest-dev","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2014-07-17T00:00:00.000Z","_age_weeks":437,"_stars_per_week":3.4,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-mock/master/README.rst","_readme_localurl":"pytest-dev~pytest-mock~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-mock/master/setup.py"],"_requirements_localurls":["pytest-dev~pytest-mock~setup.py"]},{"index":498,"category":"ml-dl","githuburl":"https://github.com/vt-vl-lab/fgvc","featured":null,"links":null,"description":null,"_repopath":"vt-vl-lab/fgvc","_reponame":"FGVC","_stars":1472,"_forks":237,"_watches":68,"_topics":[],"_language":"Python","_homepage":null,"_description":"FGVC: [ECCV 2020] Flow-edge Guided Video Completion ","_organization":"vt-vl-lab","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2021-12-14T00:00:00.000Z","_created_at":"2020-09-09T00:00:00.000Z","_age_weeks":117,"_stars_per_week":12.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vt-vl-lab/fgvc/master/README.md","_readme_localurl":"vt-vl-lab~fgvc~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":224,"category":"sim","githuburl":"https://github.com/google/brax","featured":null,"links":null,"description":null,"_repopath":"google/brax","_reponame":"brax","_stars":1471,"_forks":146,"_watches":31,"_topics":["jax","reinforcement-learning","robotics","physics-simulation"],"_language":"Jupyter Notebook","_homepage":"","_description":"brax: Massively parallel rigidbody physics simulation on accelerator hardware.","_organization":"google","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-13T00:00:00.000Z","_created_at":"2021-06-02T00:00:00.000Z","_age_weeks":79,"_stars_per_week":18.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/brax/master/README.md","_readme_localurl":"google~brax~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/brax/master/setup.py"],"_requirements_localurls":["google~brax~setup.py"]},{"index":795,"category":"web","githuburl":"https://github.com/starlite-api/starlite","featured":null,"links":null,"description":null,"_repopath":"starlite-api/starlite","_reponame":"starlite","_stars":1469,"_forks":130,"_watches":22,"_topics":["python","api","rest","mypy","pydantic","types","asgi","json","openapi","redoc","starlette"],"_language":"Python","_homepage":"https://starlite-api.github.io/starlite/","_description":"starlite: Light, Flexible and Extensible ASGI API framework","_organization":"starlite-api","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2021-12-06T00:00:00.000Z","_age_weeks":52,"_stars_per_week":28.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/starlite-api/starlite/master/README.md","_readme_localurl":"starlite-api~starlite~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/starlite-api/starlite/master/pyproject.toml"],"_requirements_localurls":["starlite-api~starlite~pyproject.toml"]},{"index":436,"category":"nlp","githuburl":"https://github.com/recognai/rubrix","featured":null,"links":null,"description":null,"_repopath":"recognai/rubrix","_reponame":"argilla","_stars":1454,"_forks":133,"_watches":18,"_topics":["python","data-science","human-in-the-loop","natural-language-processing","mlops","artificial-intelligence","knowledge-graph","developer-tools","text-labeling","annotation-tool","nlp","machine-learning","active-learning","weak-supervision","weakly-supervised-learning","spacy","text-classification","dataops","text-annotation","hacktoberfest"],"_language":"Python","_homepage":"https://docs.argilla.io","_description":"argilla: \u2728 Open-source tool for data-centric NLP. Argilla helps domain experts and data teams to build better NLP datasets in less time.","_organization":"recognai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2021-04-28T00:00:00.000Z","_age_weeks":84,"_stars_per_week":17.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/recognai/rubrix/master/README.md","_readme_localurl":"recognai~rubrix~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/recognai/rubrix/master/setup.py","https://raw.githubusercontent.com/recognai/rubrix/master/pyproject.toml"],"_requirements_localurls":["recognai~rubrix~setup.py","recognai~rubrix~pyproject.toml"]},{"index":531,"category":"ml-dl","githuburl":"https://github.com/neuralmagic/sparseml","featured":null,"links":null,"description":null,"_repopath":"neuralmagic/sparseml","_reponame":"sparseml","_stars":1443,"_forks":103,"_watches":36,"_topics":["pytorch","keras","model-sparsification","sparsification-recipes","tensorflow","smaller-models","deep-learning-library","deep-learning-algorithms","deep-learning-models","automl","pruning-algorithms","sparsity","sparsification","recipe-driven-approaches","pruning","computer-vision-algorithms","object-detection","image-classification","nlp","onnx"],"_language":"Python","_homepage":"","_description":"sparseml: Libraries for applying sparsification recipes to neural networks with a few lines of code, enabling faster and smaller models","_organization":"neuralmagic","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2020-12-11T00:00:00.000Z","_age_weeks":103,"_stars_per_week":13.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/neuralmagic/sparseml/master/README.md","_readme_localurl":"neuralmagic~sparseml~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/neuralmagic/sparseml/master/setup.py","https://raw.githubusercontent.com/neuralmagic/sparseml/master/pyproject.toml"],"_requirements_localurls":["neuralmagic~sparseml~setup.py","neuralmagic~sparseml~pyproject.toml"]},{"index":638,"category":"perf","githuburl":"https://github.com/dask/distributed","featured":null,"links":null,"description":null,"_repopath":"dask/distributed","_reponame":"distributed","_stars":1427,"_forks":664,"_watches":59,"_topics":["pydata","dask","distributed-computing","python","hacktoberfest"],"_language":"Python","_homepage":"https://distributed.dask.org","_description":"distributed: A distributed task scheduler for Dask","_organization":"dask","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2015-09-13T00:00:00.000Z","_age_weeks":377,"_stars_per_week":3.78,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dask/distributed/master/README.rst","_readme_localurl":"dask~distributed~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dask/distributed/master/requirements.txt","https://raw.githubusercontent.com/dask/distributed/master/setup.py"],"_requirements_localurls":["dask~distributed~requirements.txt","dask~distributed~setup.py"]},{"index":591,"category":"template","githuburl":"https://github.com/buuntu/fastapi-react","featured":null,"links":null,"description":null,"_repopath":"buuntu/fastapi-react","_reponame":"fastapi-react","_stars":1415,"_forks":233,"_watches":34,"_topics":["fastapi","postgres","cookiecutter","react","react-admin","nginx","boilerplate","full-stack","typescript","sqlalchemy","jwt","oauth2","docker"],"_language":"Python","_homepage":"","_description":"fastapi-react: \ud83d\ude80 Cookiecutter Template for FastAPI + React Projects. Using PostgreSQL, SQLAlchemy, and Docker","_organization":"buuntu","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-02-18T00:00:00.000Z","_created_at":"2020-03-21T00:00:00.000Z","_age_weeks":141,"_stars_per_week":9.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/buuntu/fastapi-react/master/README.md","_readme_localurl":"buuntu~fastapi-react~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":861,"category":"jupyter","githuburl":"https://github.com/jupyter/nbconvert","featured":null,"links":null,"description":null,"_repopath":"jupyter/nbconvert","_reponame":"nbconvert","_stars":1415,"_forks":509,"_watches":50,"_topics":[],"_language":"Python","_homepage":"https://nbconvert.readthedocs.io/","_description":"nbconvert: Jupyter Notebook Conversion","_organization":"jupyter","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":399,"_stars_per_week":3.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/nbconvert/master/README.md","_readme_localurl":"jupyter~nbconvert~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/nbconvert/master/pyproject.toml"],"_requirements_localurls":["jupyter~nbconvert~pyproject.toml"]},{"index":324,"category":"security","githuburl":"https://github.com/pyupio/safety","featured":null,"links":null,"description":null,"_repopath":"pyupio/safety","_reponame":"safety","_stars":1413,"_forks":122,"_watches":31,"_topics":["python","security","security-vulnerability","travis","vulnerability-scanners","vulnerability-detection"],"_language":"Python","_homepage":"https://pyup.io/safety/","_description":"Safety checks Python dependencies for known security vulnerabilities and suggests the proper remediations for vulnerabilities detected.","_organization":"pyupio","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2016-10-19T00:00:00.000Z","_age_weeks":320,"_stars_per_week":4.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyupio/safety/master/README.md","_readme_localurl":"pyupio~safety~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyupio/safety/master/pyproject.toml"],"_requirements_localurls":["pyupio~safety~pyproject.toml"]},{"index":108,"category":"util","githuburl":"https://github.com/nficano/python-lambda","featured":null,"links":null,"description":null,"_repopath":"nficano/python-lambda","_reponame":"python-lambda","_stars":1413,"_forks":227,"_watches":31,"_topics":["python","aws","aws-lambda","microservices","serverless"],"_language":"Python","_homepage":"","_description":"python-lambda: A toolkit for developing and deploying serverless Python code in AWS Lambda. ","_organization":"nficano","_updated_at":"2022-11-27T00:00:00.000Z","_last_commit_date":"2022-06-03T00:00:00.000Z","_created_at":"2016-02-26T00:00:00.000Z","_age_weeks":353,"_stars_per_week":3.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nficano/python-lambda/master/README.md","_readme_localurl":"nficano~python-lambda~README.md","_requirements_filenames":["setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/nficano/python-lambda/master/setup.py","https://raw.githubusercontent.com/nficano/python-lambda/master/Pipfile"],"_requirements_localurls":["nficano~python-lambda~setup.py","nficano~python-lambda~Pipfile"]},{"index":378,"category":"ml-interpretability","githuburl":"https://github.com/oegedijk/explainerdashboard","featured":null,"links":null,"description":null,"_repopath":"oegedijk/explainerdashboard","_reponame":"explainerdashboard","_stars":1396,"_forks":182,"_watches":15,"_topics":["dash","shap-values","dashboard","model-predictions","data-scientists","explainer","interactive-dashboards","permutation-importances","shap","plotly","inner-workings","interactive-plots","xai-library","xai"],"_language":"Python","_homepage":"http://explainerdashboard.readthedocs.io","_description":"explainerdashboard: Quickly build Explainable AI dashboards that show the inner workings of so-called \"blackbox\" machine learning models.","_organization":"oegedijk","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-06-16T00:00:00.000Z","_created_at":"2019-10-30T00:00:00.000Z","_age_weeks":162,"_stars_per_week":8.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/oegedijk/explainerdashboard/master/README.md","_readme_localurl":"oegedijk~explainerdashboard~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/oegedijk/explainerdashboard/master/requirements.txt","https://raw.githubusercontent.com/oegedijk/explainerdashboard/master/setup.py"],"_requirements_localurls":["oegedijk~explainerdashboard~requirements.txt","oegedijk~explainerdashboard~setup.py"]},{"index":429,"category":"jupyter","githuburl":"https://github.com/jupyter-lsp/jupyterlab-lsp","featured":null,"links":null,"description":null,"_repopath":"jupyter-lsp/jupyterlab-lsp","_reponame":"jupyterlab-lsp","_stars":1381,"_forks":115,"_watches":16,"_topics":["jupyterlab","jupyterlab-extension","language-server-protocol","jupyter-lab","lsp","linter","jupyter","jupyter-notebook","notebook","notebook-jupyter","ipython","autocompletion","julia-language","r"],"_language":"TypeScript","_homepage":"","_description":"jupyterlab-lsp: Coding assistance for JupyterLab (code navigation + hover suggestions + linters + autocompletion + rename) using Language Server Protocol","_organization":"jupyter-lsp","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-09-28T00:00:00.000Z","_created_at":"2019-08-17T00:00:00.000Z","_age_weeks":172,"_stars_per_week":8.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter-lsp/jupyterlab-lsp/master/README.md","_readme_localurl":"jupyter-lsp~jupyterlab-lsp~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":284,"category":"data","githuburl":"https://github.com/sdispater/orator","featured":null,"links":null,"description":null,"_repopath":"sdispater/orator","_reponame":"orator","_stars":1371,"_forks":166,"_watches":46,"_topics":["python","orm","database"],"_language":"Python","_homepage":"https://orator-orm.com","_description":"orator: The Orator ORM provides a simple yet beautiful ActiveRecord implementation.","_organization":"sdispater","_updated_at":"2022-11-27T00:00:00.000Z","_last_commit_date":"2022-03-13T00:00:00.000Z","_created_at":"2015-05-24T00:00:00.000Z","_age_weeks":393,"_stars_per_week":3.48,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sdispater/orator/master/README.rst","_readme_localurl":"sdispater~orator~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sdispater/orator/master/pyproject.toml"],"_requirements_localurls":["sdispater~orator~pyproject.toml"]},{"index":149,"category":"data","githuburl":"https://github.com/simple-salesforce/simple-salesforce","featured":null,"links":null,"description":null,"_repopath":"simple-salesforce/simple-salesforce","_reponame":"simple-salesforce","_stars":1368,"_forks":604,"_watches":88,"_topics":["salesforce","api","api-client","python"],"_language":"Python","_homepage":null,"_description":"simple-salesforce: A very simple Salesforce.com REST API client for Python","_organization":"simple-salesforce","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-10-26T00:00:00.000Z","_created_at":"2013-01-17T00:00:00.000Z","_age_weeks":515,"_stars_per_week":2.65,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/simple-salesforce/simple-salesforce/master/README.rst","_readme_localurl":"simple-salesforce~simple-salesforce~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/simple-salesforce/simple-salesforce/master/setup.py"],"_requirements_localurls":["simple-salesforce~simple-salesforce~setup.py"]},{"index":267,"category":"nlp","githuburl":"https://github.com/arxiv-vanity/arxiv-vanity","featured":null,"links":null,"description":null,"_repopath":"arxiv-vanity/arxiv-vanity","_reponame":"arxiv-vanity","_stars":1363,"_forks":87,"_watches":22,"_topics":["latex","academic-publishing","science","arxiv"],"_language":"Python","_homepage":"https://www.arxiv-vanity.com","_description":"arxiv-vanity: Renders papers from arXiv as responsive web pages so you don't have to squint at a PDF.","_organization":"arxiv-vanity","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-01-18T00:00:00.000Z","_created_at":"2017-08-12T00:00:00.000Z","_age_weeks":277,"_stars_per_week":4.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/arxiv-vanity/arxiv-vanity/master/README.md","_readme_localurl":"arxiv-vanity~arxiv-vanity~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/arxiv-vanity/arxiv-vanity/master/requirements.txt"],"_requirements_localurls":["arxiv-vanity~arxiv-vanity~requirements.txt"]},{"index":438,"category":"gis","githuburl":"https://github.com/giswqs/leafmap","featured":null,"links":null,"description":null,"_repopath":"giswqs/leafmap","_reponame":"leafmap","_stars":1361,"_forks":162,"_watches":40,"_topics":["ipyleaflet","folium","mapping","python","geopython","jupyter-notebook","jupyter","gis","dataviz","data-science","whiteboxtools","geospatial","geospatial-analysis","leafmap","streamlit","streamlit-webapp","plotly","pydeck","keplergl"],"_language":"Python","_homepage":"https://leafmap.org","_description":"leafmap: A Python package for interactive mapping and geospatial analysis with minimal coding in a Jupyter environment","_organization":"giswqs","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2021-03-10T00:00:00.000Z","_age_weeks":91,"_stars_per_week":14.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/giswqs/leafmap/master/README.md","_readme_localurl":"giswqs~leafmap~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/giswqs/leafmap/master/requirements.txt","https://raw.githubusercontent.com/giswqs/leafmap/master/setup.py"],"_requirements_localurls":["giswqs~leafmap~requirements.txt","giswqs~leafmap~setup.py"]},{"index":613,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-cov","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-cov","_reponame":"pytest-cov","_stars":1353,"_forks":188,"_watches":33,"_topics":["pytest","python"],"_language":"Python","_homepage":"","_description":"pytest-cov: Coverage plugin for pytest.","_organization":"pytest-dev","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2014-04-17T00:00:00.000Z","_age_weeks":450,"_stars_per_week":3.0,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-cov/master/README.rst","_readme_localurl":"pytest-dev~pytest-cov~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-cov/master/setup.py"],"_requirements_localurls":["pytest-dev~pytest-cov~setup.py"]},{"index":721,"category":"util","githuburl":"https://github.com/omry/omegaconf","featured":null,"links":null,"description":null,"_repopath":"omry/omegaconf","_reponame":"omegaconf","_stars":1353,"_forks":71,"_watches":17,"_topics":["python","yaml","yaml-configuration","configuration-files","configuration-loader","python-types","schema-validator"],"_language":"Python","_homepage":"","_description":"omegaconf: Flexible Python configuration system. The last one you will ever need.","_organization":"omry","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2018-09-03T00:00:00.000Z","_age_weeks":222,"_stars_per_week":6.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/omry/omegaconf/master/README.md","_readme_localurl":"omry~omegaconf~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/omry/omegaconf/master/setup.py","https://raw.githubusercontent.com/omry/omegaconf/master/pyproject.toml"],"_requirements_localurls":["omry~omegaconf~setup.py","omry~omegaconf~pyproject.toml"]},{"index":298,"category":"crypto","githuburl":"https://github.com/blankly-finance/blankly","featured":null,"links":null,"description":null,"_repopath":"blankly-finance/blankly","_reponame":"blankly","_stars":1341,"_forks":172,"_watches":28,"_topics":["cryptocurrency","bot-framework","investment","bots","bot","coinbase","binance","blankly","stocks","platform","framework","trading","trading-bot","trading-strategies","python","crypto","algotrading"],"_language":"Python","_homepage":"https://package.blankly.finance","_description":"blankly: \ud83d\ude80 \ud83d\udcb8 Easily build, backtest and deploy your algo in just a few lines of code. Trade stocks, cryptos, and forex across exchanges w/ one package.","_organization":"blankly-finance","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2021-03-09T00:00:00.000Z","_age_weeks":91,"_stars_per_week":14.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/blankly-finance/blankly/master/README.md","_readme_localurl":"blankly-finance~blankly~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/blankly-finance/blankly/master/setup.py"],"_requirements_localurls":["blankly-finance~blankly~setup.py"]},{"index":478,"category":"ml-dl","githuburl":"https://github.com/tensorflow/mesh","featured":null,"links":null,"description":null,"_repopath":"tensorflow/mesh","_reponame":"mesh","_stars":1340,"_forks":233,"_watches":43,"_topics":[],"_language":"Python","_homepage":"","_description":"Mesh TensorFlow: Model Parallelism Made Easier","_organization":"tensorflow","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-10-04T00:00:00.000Z","_created_at":"2018-09-20T00:00:00.000Z","_age_weeks":219,"_stars_per_week":6.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/mesh/master/README.md","_readme_localurl":"tensorflow~mesh~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorflow/mesh/master/setup.py"],"_requirements_localurls":["tensorflow~mesh~setup.py"]},{"index":318,"category":"gamedev","githuburl":"https://github.com/pythonarcade/arcade","featured":1.0,"links":null,"description":null,"_repopath":"pythonarcade/arcade","_reponame":"arcade","_stars":1338,"_forks":253,"_watches":56,"_topics":["python3","python","arcade-framework","arcade-api","arcade-learning-environment","opengl","educational-technology","educational-resources"],"_language":"Python","_homepage":"http://arcade.academy","_description":"arcade: Easy to use Python library for creating 2D arcade games.","_organization":"pythonarcade","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2016-01-04T00:00:00.000Z","_age_weeks":361,"_stars_per_week":3.7,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pythonarcade/arcade/master/README.rst","_readme_localurl":"pythonarcade~arcade~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pythonarcade/arcade/master/requirements.txt","https://raw.githubusercontent.com/pythonarcade/arcade/master/setup.py"],"_requirements_localurls":["pythonarcade~arcade~requirements.txt","pythonarcade~arcade~setup.py"]},{"index":683,"category":"util","githuburl":"https://github.com/spotify/basic-pitch","featured":null,"links":null,"description":null,"_repopath":"spotify/basic-pitch","_reponame":"basic-pitch","_stars":1334,"_forks":62,"_watches":24,"_topics":["lightweight","machine-learning","midi","music","pitch-detection","polyphonic","transcription","audio","python","typescript"],"_language":"Python","_homepage":"https://basicpitch.io","_description":"basic-pitch: A lightweight yet powerful audio-to-MIDI converter with pitch bend detection","_organization":"spotify","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-08-30T00:00:00.000Z","_created_at":"2022-05-03T00:00:00.000Z","_age_weeks":31,"_stars_per_week":42.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/spotify/basic-pitch/master/README.md","_readme_localurl":"spotify~basic-pitch~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/spotify/basic-pitch/master/setup.py"],"_requirements_localurls":["spotify~basic-pitch~setup.py"]},{"index":460,"category":"nlp","githuburl":"https://github.com/google-research/language","featured":null,"links":null,"description":null,"_repopath":"google-research/language","_reponame":"language","_stars":1333,"_forks":311,"_watches":64,"_topics":["natural-language-processing","machine-learning","research"],"_language":"Python","_homepage":"https://ai.google/research/teams/language/","_description":"language: Shared repository for open-sourced projects from the Google AI Language team.","_organization":"google-research","_updated_at":"2022-11-28T00:00:00.000Z","_last_commit_date":"2022-10-17T00:00:00.000Z","_created_at":"2018-10-16T00:00:00.000Z","_age_weeks":216,"_stars_per_week":6.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google-research/language/master/README.md","_readme_localurl":"google-research~language~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google-research/language/master/setup.py"],"_requirements_localurls":["google-research~language~setup.py"]},{"index":659,"category":"ml","githuburl":"https://github.com/tensorly/tensorly","featured":null,"links":null,"description":null,"_repopath":"tensorly/tensorly","_reponame":"tensorly","_stars":1332,"_forks":261,"_watches":45,"_topics":["machine-learning","tensor","decomposition","tensor-algebra","tensorly","tensor-learning","python","tensor-methods","pytorch","mxnet","jax","tensorflow","cupy","numpy","tensor-decomposition","tensor-factorization","tensor-regression","regression"],"_language":"Python","_homepage":"http://tensorly.org","_description":"TensorLy: Tensor Learning in Python.","_organization":"tensorly","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-22T00:00:00.000Z","_created_at":"2016-10-21T00:00:00.000Z","_age_weeks":319,"_stars_per_week":4.17,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/tensorly/tensorly/master/README.rst","_readme_localurl":"tensorly~tensorly~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorly/tensorly/master/requirements.txt","https://raw.githubusercontent.com/tensorly/tensorly/master/setup.py"],"_requirements_localurls":["tensorly~tensorly~requirements.txt","tensorly~tensorly~setup.py"]},{"index":898,"category":"ml-ops","githuburl":"https://github.com/hi-primus/optimus","featured":null,"links":null,"description":null,"_repopath":"hi-primus/optimus","_reponame":"optimus","_stars":1320,"_forks":223,"_watches":40,"_topics":["spark","pyspark","data-wrangling","bigdata","big-data-cleaning","data-science","data-cleansing","data-cleaner","data-transformation","machine-learning","data-profiling","data-extraction","data-exploration","data-analysis","data-preparation","cudf","dask","dask-cudf","data-cleaning"],"_language":"Python","_homepage":"https://hi-optimus.com","_description":"optimus: :truck: Agile Data Preparation Workflows made\u00a0easy with Pandas, Dask, cuDF, Dask-cuDF, Vaex and PySpark","_organization":"hi-primus","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-17T00:00:00.000Z","_created_at":"2017-07-13T00:00:00.000Z","_age_weeks":281,"_stars_per_week":4.68,"_readme_filename":"","_readme_giturl":"","_readme_localurl":"","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":450,"category":"gis","githuburl":"https://github.com/jupyter-widgets/ipyleaflet","featured":null,"links":null,"description":null,"_repopath":"jupyter-widgets/ipyleaflet","_reponame":"ipyleaflet","_stars":1314,"_forks":348,"_watches":61,"_topics":["jupyterlab-extension","leaflet","visualization","jupyter"],"_language":"JavaScript","_homepage":"https://ipyleaflet.readthedocs.io","_description":"ipyleaflet: A Jupyter - Leaflet.js bridge","_organization":"jupyter-widgets","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-27T00:00:00.000Z","_created_at":"2014-05-07T00:00:00.000Z","_age_weeks":448,"_stars_per_week":2.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter-widgets/ipyleaflet/master/README.md","_readme_localurl":"jupyter-widgets~ipyleaflet~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter-widgets/ipyleaflet/master/setup.py","https://raw.githubusercontent.com/jupyter-widgets/ipyleaflet/master/pyproject.toml"],"_requirements_localurls":["jupyter-widgets~ipyleaflet~setup.py","jupyter-widgets~ipyleaflet~pyproject.toml"]},{"index":876,"category":"study","githuburl":"https://github.com/rasbt/machine-learning-book","featured":null,"links":null,"description":null,"_repopath":"rasbt/machine-learning-book","_reponame":"machine-learning-book","_stars":1310,"_forks":482,"_watches":26,"_topics":["machine-learning","scikit-learn","deep-learning","neural-networks","pytorch"],"_language":"Jupyter Notebook","_homepage":"https://sebastianraschka.com/books/#machine-learning-with-pytorch-and-scikit-learn","_description":"machine-learning-book: Code Repository for Machine Learning with PyTorch and Scikit-Learn","_organization":"rasbt","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2021-12-19T00:00:00.000Z","_age_weeks":50,"_stars_per_week":25.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/machine-learning-book/master/README.md","_readme_localurl":"rasbt~machine-learning-book~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":317,"category":"gamedev","githuburl":"https://github.com/pyglet/pyglet","featured":null,"links":null,"description":null,"_repopath":"pyglet/pyglet","_reponame":"pyglet","_stars":1304,"_forks":247,"_watches":29,"_topics":["pyglet","python","opengl","gamedev","scientific-visualization"],"_language":"Python","_homepage":"http://pyglet.org","_description":"pyglet is a cross-platform windowing and multimedia library for Python, for developing games and other visually rich applications.","_organization":"pyglet","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2019-06-09T00:00:00.000Z","_age_weeks":182,"_stars_per_week":7.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyglet/pyglet/master/README.md","_readme_localurl":"pyglet~pyglet~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyglet/pyglet/master/setup.py"],"_requirements_localurls":["pyglet~pyglet~setup.py"]},{"index":877,"category":"time-series","githuburl":"https://github.com/alkaline-ml/pmdarima","featured":null,"links":null,"description":null,"_repopath":"alkaline-ml/pmdarima","_reponame":"pmdarima","_stars":1282,"_forks":222,"_watches":36,"_topics":["arima","time-series","forecasting","forecasting-models","python","econometrics","pmdarima","machine-learning","sarimax"],"_language":"Python","_homepage":"https://www.alkaline-ml.com/pmdarima","_description":"pmdarima: A statistical library designed to fill the void in Python's time series analysis capabilities, including the equivalent of R's auto.arima function.","_organization":"alkaline-ml","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-03T00:00:00.000Z","_created_at":"2017-03-30T00:00:00.000Z","_age_weeks":296,"_stars_per_week":4.32,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alkaline-ml/pmdarima/master/README.md","_readme_localurl":"alkaline-ml~pmdarima~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/alkaline-ml/pmdarima/master/requirements.txt","https://raw.githubusercontent.com/alkaline-ml/pmdarima/master/setup.py"],"_requirements_localurls":["alkaline-ml~pmdarima~requirements.txt","alkaline-ml~pmdarima~setup.py"]},{"index":766,"category":"diffusion","githuburl":"https://github.com/divamgupta/stable-diffusion-tensorflow","featured":null,"links":null,"description":null,"_repopath":"divamgupta/stable-diffusion-tensorflow","_reponame":"stable-diffusion-tensorflow","_stars":1276,"_forks":167,"_watches":19,"_topics":[],"_language":"Python","_homepage":"","_description":"stable-diffusion-tensorflow: Stable Diffusion in TensorFlow / Keras","_organization":"divamgupta","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-22T00:00:00.000Z","_created_at":"2022-09-15T00:00:00.000Z","_age_weeks":11,"_stars_per_week":107.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/divamgupta/stable-diffusion-tensorflow/master/README.md","_readme_localurl":"divamgupta~stable-diffusion-tensorflow~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/divamgupta/stable-diffusion-tensorflow/master/requirements.txt","https://raw.githubusercontent.com/divamgupta/stable-diffusion-tensorflow/master/setup.py"],"_requirements_localurls":["divamgupta~stable-diffusion-tensorflow~requirements.txt","divamgupta~stable-diffusion-tensorflow~setup.py"]},{"index":676,"category":"gis","githuburl":"https://github.com/apache/incubator-sedona","featured":null,"links":null,"description":null,"_repopath":"apache/incubator-sedona","_reponame":"incubator-sedona","_stars":1269,"_forks":532,"_watches":101,"_topics":["cluster-computing","spatial-sql","geospatial","spatial-analysis","spatial-query","scala","java","python"],"_language":"Java","_homepage":"http://sedona.apache.org/","_description":"incubator-sedona: A cluster computing framework for processing large-scale geospatial data","_organization":"apache","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2015-04-24T00:00:00.000Z","_age_weeks":397,"_stars_per_week":3.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apache/incubator-sedona/master/README.md","_readme_localurl":"apache~incubator-sedona~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":391,"category":"data","githuburl":"https://github.com/mchong6/jojogan","featured":null,"links":null,"description":null,"_repopath":"mchong6/jojogan","_reponame":"JoJoGAN","_stars":1264,"_forks":185,"_watches":24,"_topics":["image-translation","gans","anime"],"_language":"Jupyter Notebook","_homepage":"","_description":"Official PyTorch repo for JoJoGAN: One Shot Face Stylization","_organization":"mchong6","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-02-05T00:00:00.000Z","_created_at":"2021-12-17T00:00:00.000Z","_age_weeks":50,"_stars_per_week":24.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mchong6/jojogan/master/README.md","_readme_localurl":"mchong6~jojogan~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":514,"category":"data","githuburl":"https://github.com/agronholm/sqlacodegen","featured":null,"links":null,"description":null,"_repopath":"agronholm/sqlacodegen","_reponame":"sqlacodegen","_stars":1235,"_forks":195,"_watches":20,"_topics":[],"_language":"Python","_homepage":"","_description":"sqlacodegen: Automatic model code generator for SQLAlchemy","_organization":"agronholm","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2016-12-28T00:00:00.000Z","_age_weeks":310,"_stars_per_week":3.98,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/agronholm/sqlacodegen/master/README.rst","_readme_localurl":"agronholm~sqlacodegen~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/agronholm/sqlacodegen/master/pyproject.toml"],"_requirements_localurls":["agronholm~sqlacodegen~pyproject.toml"]},{"index":465,"category":"ml-dl","githuburl":"https://github.com/pytorch/torchrec","featured":null,"links":null,"description":null,"_repopath":"pytorch/torchrec","_reponame":"torchrec","_stars":1231,"_forks":200,"_watches":24,"_topics":["pytorch","gpu","deep-learning","cuda","recommender-system","recommendation-system","sharding"],"_language":"Python","_homepage":"","_description":"torchrec: Pytorch domain library for recommendation systems","_organization":"pytorch","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2021-07-12T00:00:00.000Z","_age_weeks":73,"_stars_per_week":16.8,"_readme_filename":"","_readme_giturl":"","_readme_localurl":"","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/torchrec/master/requirements.txt","https://raw.githubusercontent.com/pytorch/torchrec/master/setup.py","https://raw.githubusercontent.com/pytorch/torchrec/master/pyproject.toml"],"_requirements_localurls":["pytorch~torchrec~requirements.txt","pytorch~torchrec~setup.py","pytorch~torchrec~pyproject.toml"]},{"index":885,"category":"time-series","githuburl":"https://github.com/aistream-peelout/flow-forecast","featured":null,"links":null,"description":null,"_repopath":"aistream-peelout/flow-forecast","_reponame":"flow-forecast","_stars":1218,"_forks":207,"_watches":19,"_topics":["deep-learning","pytorch","time-series-forecasting","time-series","transfer-learning","deep-neural-networks","transformer","forecasting","lstm","time-series-regression","state-of-the-art-models","anomaly-detection","time-series-analysis","hacktoberfest"],"_language":"Python","_homepage":"https://flow-forecast.atlassian.net/wiki/spaces/FF/overview","_description":"flow-forecast: Deep learning PyTorch library for time series forecasting, classification, and anomaly detection (originally for flood forecasting).","_organization":"aistream-peelout","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-08-15T00:00:00.000Z","_age_weeks":172,"_stars_per_week":7.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/README.md","_readme_localurl":"aistream-peelout~flow-forecast~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/requirements.txt","https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/setup.py"],"_requirements_localurls":["aistream-peelout~flow-forecast~requirements.txt","aistream-peelout~flow-forecast~setup.py"]},{"index":414,"category":"nlp","githuburl":"https://github.com/chrismattmann/tika-python","featured":null,"links":null,"description":null,"_repopath":"chrismattmann/tika-python","_reponame":"tika-python","_stars":1213,"_forks":222,"_watches":37,"_topics":["tika-server","python","tika-python","tika-server-jar","parser-interface","parse","translation-interface","usc","text-extraction","mime","buffer","memex","text-recognition","detection","recognition","nlp","nlp-machine-learning","nlp-library","covid-19","extraction"],"_language":"Python","_homepage":"","_description":"Tika-Python is a Python binding to the Apache Tika\u2122 REST services allowing Tika to be called natively in the Python community.","_organization":"chrismattmann","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2021-06-07T00:00:00.000Z","_created_at":"2014-06-26T00:00:00.000Z","_age_weeks":440,"_stars_per_week":2.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/chrismattmann/tika-python/master/README.md","_readme_localurl":"chrismattmann~tika-python~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/chrismattmann/tika-python/master/requirements.txt","https://raw.githubusercontent.com/chrismattmann/tika-python/master/setup.py"],"_requirements_localurls":["chrismattmann~tika-python~requirements.txt","chrismattmann~tika-python~setup.py"]},{"index":178,"category":"nlp","githuburl":"https://github.com/explosion/spacy-models","featured":null,"links":null,"description":null,"_repopath":"explosion/spacy-models","_reponame":"spacy-models","_stars":1211,"_forks":271,"_watches":47,"_topics":["spacy","nlp","natural-language-processing","machine-learning","models","machine-learning-models","statistical-models","spacy-models"],"_language":"Python","_homepage":"https://spacy.io","_description":"spacy-models: \ud83d\udcab Models for the spaCy Natural Language Processing (NLP) library","_organization":"explosion","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2017-03-14T00:00:00.000Z","_age_weeks":299,"_stars_per_week":4.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/spacy-models/master/README.md","_readme_localurl":"explosion~spacy-models~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":581,"category":"ml-dl","githuburl":"https://github.com/alpa-projects/alpa","featured":null,"links":null,"description":null,"_repopath":"alpa-projects/alpa","_reponame":"alpa","_stars":1203,"_forks":130,"_watches":20,"_topics":["deep-learning","machine-learning","compiler","distributed-training","high-performance-computing","alpa","jax","distributed-computing","llm","auto-parallelization"],"_language":"Python","_homepage":"https://alpa.ai","_description":"alpa: Training and serving large-scale neural networks","_organization":"alpa-projects","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2021-02-22T00:00:00.000Z","_age_weeks":93,"_stars_per_week":12.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alpa-projects/alpa/master/README.md","_readme_localurl":"alpa-projects~alpa~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/alpa-projects/alpa/master/setup.py"],"_requirements_localurls":["alpa-projects~alpa~setup.py"]},{"index":474,"category":"nlp","githuburl":"https://github.com/neuralmagic/deepsparse","featured":null,"links":null,"description":null,"_repopath":"neuralmagic/deepsparse","_reponame":"deepsparse","_stars":1183,"_forks":71,"_watches":36,"_topics":["ml","machinelearning","pytorch","tensorflow","onnx","deepsparse-engine","sparsified-models","sparsification-recipe","inference","computer-vision","object-detection","pruning","quantization","pretrained-models","nlp","auto-ml","cpus","yolov3","sparsification","cpu-inference-api"],"_language":"Python","_homepage":"","_description":"deepsparse: Inference runtime offering GPU-class performance on CPUs and APIs to integrate ML into your application","_organization":"neuralmagic","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2020-12-14T00:00:00.000Z","_age_weeks":103,"_stars_per_week":11.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/neuralmagic/deepsparse/master/README.md","_readme_localurl":"neuralmagic~deepsparse~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/neuralmagic/deepsparse/master/setup.py","https://raw.githubusercontent.com/neuralmagic/deepsparse/master/pyproject.toml"],"_requirements_localurls":["neuralmagic~deepsparse~setup.py","neuralmagic~deepsparse~pyproject.toml"]},{"index":162,"category":"nlp","githuburl":"https://github.com/explosion/spacy-transformers","featured":null,"links":null,"description":null,"_repopath":"explosion/spacy-transformers","_reponame":"spacy-transformers","_stars":1177,"_forks":152,"_watches":30,"_topics":["spacy","spacy-pipeline","spacy-extension","nlp","natural-language-processing","natural-language-understanding","pytorch","bert","google","pytorch-model","openai","language-model","machine-learning","huggingface","transfer-learning","xlnet","gpt-2"],"_language":"Python","_homepage":"https://spacy.io/usage/embeddings-transformers","_description":"spacy-transformers: \ud83d\udef8 Use pretrained transformers like BERT, XLNet and GPT-2 in spaCy","_organization":"explosion","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-11-17T00:00:00.000Z","_created_at":"2019-07-26T00:00:00.000Z","_age_weeks":175,"_stars_per_week":6.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/spacy-transformers/master/README.md","_readme_localurl":"explosion~spacy-transformers~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/explosion/spacy-transformers/master/requirements.txt","https://raw.githubusercontent.com/explosion/spacy-transformers/master/setup.py","https://raw.githubusercontent.com/explosion/spacy-transformers/master/pyproject.toml"],"_requirements_localurls":["explosion~spacy-transformers~requirements.txt","explosion~spacy-transformers~setup.py","explosion~spacy-transformers~pyproject.toml"]},{"index":264,"category":"data","githuburl":"https://github.com/collerek/ormar","featured":null,"links":null,"description":null,"_repopath":"collerek/ormar","_reponame":"ormar","_stars":1173,"_forks":60,"_watches":15,"_topics":["orm","sqlalchemy","async-orm","python-orm","fastapi","pydantic","alembic","databases"],"_language":"Python","_homepage":"https://collerek.github.io/ormar/","_description":"ormar: python async orm with fastapi in mind and pydantic validation","_organization":"collerek","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2020-08-02T00:00:00.000Z","_age_weeks":122,"_stars_per_week":9.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/collerek/ormar/master/README.md","_readme_localurl":"collerek~ormar~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/collerek/ormar/master/pyproject.toml"],"_requirements_localurls":["collerek~ormar~pyproject.toml"]},{"index":435,"category":"data","githuburl":"https://github.com/sdv-dev/sdv","featured":null,"links":null,"description":null,"_repopath":"sdv-dev/sdv","_reponame":"SDV","_stars":1169,"_forks":188,"_watches":39,"_topics":["synthetic-data","machine-learning","relational-datasets","multi-table","time-series","synthetic-data-generation","sdv","data-generation","generative-adversarial-network","gan","gans","deep-learning","generative-ai","generative-model"],"_language":"Python","_homepage":"https://sdv.dev/SDV","_description":"SDV: Synthetic Data Generation for tabular, relational and time series data.","_organization":"sdv-dev","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2018-05-11T00:00:00.000Z","_age_weeks":238,"_stars_per_week":4.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sdv-dev/sdv/master/README.md","_readme_localurl":"sdv-dev~sdv~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sdv-dev/sdv/master/requirements.txt","https://raw.githubusercontent.com/sdv-dev/sdv/master/setup.py"],"_requirements_localurls":["sdv-dev~sdv~requirements.txt","sdv-dev~sdv~setup.py"]},{"index":566,"category":"gis","githuburl":"https://github.com/gboeing/osmnx-examples","featured":null,"links":null,"description":null,"_repopath":"gboeing/osmnx-examples","_reponame":"osmnx-examples","_stars":1165,"_forks":433,"_watches":54,"_topics":["street-networks","binder","jupyter-notebook","notebooks","urban-planning","city","cities","openstreetmap","network-analysis","transport","transportation","accessibility","urban-data-science","urban-analytics","public-transport","python","transit","urban-design"],"_language":"Jupyter Notebook","_homepage":"https://github.com/gboeing/osmnx","_description":"osmnx-examples: Usage examples, demos, and tutorials for OSMnx.","_organization":"gboeing","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-08-05T00:00:00.000Z","_created_at":"2017-07-22T00:00:00.000Z","_age_weeks":280,"_stars_per_week":4.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gboeing/osmnx-examples/master/README.md","_readme_localurl":"gboeing~osmnx-examples~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":372,"category":"gis","githuburl":"https://github.com/microsoft/torchgeo","featured":null,"links":null,"description":null,"_repopath":"microsoft/torchgeo","_reponame":"torchgeo","_stars":1162,"_forks":137,"_watches":32,"_topics":["pytorch","torchvision","datasets","models","transforms","remote-sensing","deep-learning","earth-observation"],"_language":"Python","_homepage":"https://torchgeo.rtfd.io","_description":"TorchGeo: datasets, samplers, transforms, and pre-trained models for geospatial data","_organization":"microsoft","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2021-05-21T00:00:00.000Z","_age_weeks":80,"_stars_per_week":14.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/torchgeo/master/README.md","_readme_localurl":"microsoft~torchgeo~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/torchgeo/master/pyproject.toml"],"_requirements_localurls":["microsoft~torchgeo~pyproject.toml"]},{"index":647,"category":"data","githuburl":"https://github.com/pytables/pytables","featured":null,"links":null,"description":null,"_repopath":"pytables/pytables","_reponame":"PyTables","_stars":1161,"_forks":235,"_watches":59,"_topics":[],"_language":"Python","_homepage":"http://www.pytables.org","_description":"PyTables: A Python package to manage extremely large amounts of data","_organization":"pytables","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-11-17T00:00:00.000Z","_created_at":"2011-06-03T00:00:00.000Z","_age_weeks":600,"_stars_per_week":1.93,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytables/pytables/master/README.rst","_readme_localurl":"pytables~pytables~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytables/pytables/master/requirements.txt","https://raw.githubusercontent.com/pytables/pytables/master/setup.py","https://raw.githubusercontent.com/pytables/pytables/master/pyproject.toml"],"_requirements_localurls":["pytables~pytables~requirements.txt","pytables~pytables~setup.py","pytables~pytables~pyproject.toml"]},{"index":451,"category":"util","githuburl":"https://github.com/imageio/imageio","featured":null,"links":null,"description":null,"_repopath":"imageio/imageio","_reponame":"imageio","_stars":1155,"_forks":232,"_watches":31,"_topics":["python","imageio","animated-gif","video","webcam-capture","scientific-formats","dicom"],"_language":"Python","_homepage":"https://imageio.readthedocs.io","_description":"imageio: Python library for reading and writing image data","_organization":"imageio","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2013-05-04T00:00:00.000Z","_age_weeks":500,"_stars_per_week":2.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/imageio/imageio/master/README.md","_readme_localurl":"imageio~imageio~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/imageio/imageio/master/setup.py"],"_requirements_localurls":["imageio~imageio~setup.py"]},{"index":494,"category":"ml-dl","githuburl":"https://github.com/hysts/pytorch_image_classification","featured":null,"links":null,"description":null,"_repopath":"hysts/pytorch_image_classification","_reponame":"pytorch_image_classification","_stars":1154,"_forks":291,"_watches":27,"_topics":["pytorch","computer-vision","cifar10","fashion-mnist","imagenet"],"_language":"Python","_homepage":"","_description":"pytorch_image_classification: PyTorch implementation of image classification models for CIFAR-10/CIFAR-100/MNIST/FashionMNIST/Kuzushiji-MNIST/ImageNet","_organization":"hysts","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2021-12-12T00:00:00.000Z","_created_at":"2017-12-09T00:00:00.000Z","_age_weeks":260,"_stars_per_week":4.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hysts/pytorch_image_classification/master/README.md","_readme_localurl":"hysts~pytorch_image_classification~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/hysts/pytorch_image_classification/master/requirements.txt"],"_requirements_localurls":["hysts~pytorch_image_classification~requirements.txt"]},{"index":304,"category":"nlp","githuburl":"https://github.com/featureform/embeddinghub","featured":null,"links":null,"description":null,"_repopath":"featureform/embeddinghub","_reponame":"featureform","_stars":1150,"_forks":42,"_watches":12,"_topics":["machine-learning","data-science","vector-database","embeddings-similarity","embeddings","hacktoberfest","feature-store","mlops","data-quality","feature-engineering","ml","python"],"_language":"Go","_homepage":"https://www.featureform.com","_description":"featureform: The Virtual Feature Store. Turn your existing data infrastructure into a feature store.","_organization":"featureform","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2020-10-16T00:00:00.000Z","_age_weeks":111,"_stars_per_week":10.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/featureform/embeddinghub/master/README.md","_readme_localurl":"featureform~embeddinghub~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":725,"category":"typing","githuburl":"https://github.com/patrick-kidger/torchtyping","featured":null,"links":null,"description":null,"_repopath":"patrick-kidger/torchtyping","_reponame":"torchtyping","_stars":1149,"_forks":27,"_watches":13,"_topics":["tensors","named-tensors","shape","pytorch","typing","python-typing"],"_language":"Python","_homepage":"","_description":"torchtyping: Type annotations and dynamic checking for a tensor's shape, dtype, names, etc.","_organization":"patrick-kidger","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-07-11T00:00:00.000Z","_created_at":"2021-03-28T00:00:00.000Z","_age_weeks":88,"_stars_per_week":12.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/patrick-kidger/torchtyping/master/README.md","_readme_localurl":"patrick-kidger~torchtyping~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/patrick-kidger/torchtyping/master/setup.py","https://raw.githubusercontent.com/patrick-kidger/torchtyping/master/pyproject.toml"],"_requirements_localurls":["patrick-kidger~torchtyping~setup.py","patrick-kidger~torchtyping~pyproject.toml"]},{"index":862,"category":"jupyter","githuburl":"https://github.com/jupyter/nbgrader","featured":null,"links":null,"description":null,"_repopath":"jupyter/nbgrader","_reponame":"nbgrader","_stars":1148,"_forks":314,"_watches":43,"_topics":["nbgrader","jupyter","jupyter-notebook","jupyterhub","teaching","grading"],"_language":"Python","_homepage":"https://nbgrader.readthedocs.io/","_description":"nbgrader: A system for assigning and grading notebooks","_organization":"jupyter","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2014-09-13T00:00:00.000Z","_age_weeks":429,"_stars_per_week":2.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/nbgrader/master/README.md","_readme_localurl":"jupyter~nbgrader~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/nbgrader/master/requirements.txt","https://raw.githubusercontent.com/jupyter/nbgrader/master/setup.py","https://raw.githubusercontent.com/jupyter/nbgrader/master/pyproject.toml"],"_requirements_localurls":["jupyter~nbgrader~requirements.txt","jupyter~nbgrader~setup.py","jupyter~nbgrader~pyproject.toml"]},{"index":16,"category":"perf","githuburl":"https://github.com/eventlet/eventlet","featured":null,"links":null,"description":null,"_repopath":"eventlet/eventlet","_reponame":"eventlet","_stars":1138,"_forks":295,"_watches":62,"_topics":["python","concurrency","network","c10k","greenlet","production-ready"],"_language":"Python","_homepage":"https://eventlet.net","_description":"eventlet: Concurrent networking library for Python","_organization":"eventlet","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-17T00:00:00.000Z","_created_at":"2012-12-11T00:00:00.000Z","_age_weeks":521,"_stars_per_week":2.18,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/eventlet/eventlet/master/README.rst","_readme_localurl":"eventlet~eventlet~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/eventlet/eventlet/master/setup.py"],"_requirements_localurls":["eventlet~eventlet~setup.py"]},{"index":636,"category":"util","githuburl":"https://github.com/pygments/pygments","featured":null,"links":null,"description":null,"_repopath":"pygments/pygments","_reponame":"pygments","_stars":1137,"_forks":484,"_watches":26,"_topics":["python","syntax-highlighting"],"_language":"Python","_homepage":"http://pygments.org/","_description":"Pygments is a generic syntax highlighter written in Python","_organization":"pygments","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2019-08-31T00:00:00.000Z","_age_weeks":170,"_stars_per_week":6.67,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pygments/pygments/master/README.rst","_readme_localurl":"pygments~pygments~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pygments/pygments/master/requirements.txt","https://raw.githubusercontent.com/pygments/pygments/master/setup.py","https://raw.githubusercontent.com/pygments/pygments/master/pyproject.toml"],"_requirements_localurls":["pygments~pygments~requirements.txt","pygments~pygments~setup.py","pygments~pygments~pyproject.toml"]},{"index":489,"category":"gis","githuburl":"https://github.com/scitools/cartopy","featured":null,"links":null,"description":null,"_repopath":"scitools/cartopy","_reponame":"cartopy","_stars":1137,"_forks":334,"_watches":55,"_topics":["cartopy","matplotlib","python","geometry","maps","spatial","projections"],"_language":"Python","_homepage":"https://scitools.org.uk/cartopy/docs/latest","_description":"Cartopy - a cartographic python library with matplotlib support","_organization":"scitools","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2012-08-03T00:00:00.000Z","_age_weeks":539,"_stars_per_week":2.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scitools/cartopy/master/README.md","_readme_localurl":"scitools~cartopy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scitools/cartopy/master/setup.py","https://raw.githubusercontent.com/scitools/cartopy/master/pyproject.toml"],"_requirements_localurls":["scitools~cartopy~setup.py","scitools~cartopy~pyproject.toml"]},{"index":338,"category":"perf","githuburl":"https://github.com/tlkh/asitop","featured":null,"links":null,"description":null,"_repopath":"tlkh/asitop","_reponame":"asitop","_stars":1133,"_forks":67,"_watches":13,"_topics":["cpu","gpu","cli","macos","m1","apple-silicon"],"_language":"Python","_homepage":"https://tlkh.github.io/asitop/","_description":"asitop: Perf monitoring CLI tool for Apple Silicon","_organization":"tlkh","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-08-20T00:00:00.000Z","_created_at":"2021-10-27T00:00:00.000Z","_age_weeks":58,"_stars_per_week":19.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tlkh/asitop/master/README.md","_readme_localurl":"tlkh~asitop~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tlkh/asitop/master/setup.py"],"_requirements_localurls":["tlkh~asitop~setup.py"]},{"index":194,"category":"web","githuburl":"https://github.com/jordaneremieff/mangum","featured":null,"links":null,"description":null,"_repopath":"jordaneremieff/mangum","_reponame":"mangum","_stars":1128,"_forks":78,"_watches":15,"_topics":["asgi","aws","lambda","serverless","python","asyncio","api-gateway","starlette","fastapi","quart","django","sanic","aws-lambda","python3"],"_language":"Python","_homepage":"https://mangum.io/","_description":"mangum: AWS Lambda support for ASGI applications","_organization":"jordaneremieff","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-27T00:00:00.000Z","_created_at":"2019-01-14T00:00:00.000Z","_age_weeks":203,"_stars_per_week":5.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jordaneremieff/mangum/master/README.md","_readme_localurl":"jordaneremieff~mangum~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jordaneremieff/mangum/master/requirements.txt","https://raw.githubusercontent.com/jordaneremieff/mangum/master/setup.py"],"_requirements_localurls":["jordaneremieff~mangum~requirements.txt","jordaneremieff~mangum~setup.py"]},{"index":720,"category":"math","githuburl":"https://github.com/facebookresearch/theseus","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/theseus","_reponame":"theseus","_stars":1125,"_forks":74,"_watches":28,"_topics":["differentiable-optimization","robotics","embodied-ai","nonlinear-least-squares","pytorch","deep-learning","computer-vision","gauss-newton","levenberg-marquardt","implicit-differentiation","bilevel-optimization"],"_language":"Python","_homepage":"","_description":"theseus: A library for differentiable nonlinear optimization","_organization":"facebookresearch","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2021-11-18T00:00:00.000Z","_age_weeks":54,"_stars_per_week":20.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/theseus/master/README.md","_readme_localurl":"facebookresearch~theseus~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/theseus/master/setup.py"],"_requirements_localurls":["facebookresearch~theseus~setup.py"]},{"index":403,"category":"perf","githuburl":"https://github.com/agronholm/anyio","featured":null,"links":null,"description":null,"_repopath":"agronholm/anyio","_reponame":"anyio","_stars":1125,"_forks":95,"_watches":24,"_topics":["async-await","trio","asyncio","curio"],"_language":"Python","_homepage":"","_description":"anyio: High level asynchronous concurrency and networking framework that works on top of either trio or asyncio","_organization":"agronholm","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-11-26T00:00:00.000Z","_created_at":"2018-08-19T00:00:00.000Z","_age_weeks":224,"_stars_per_week":5.01,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/agronholm/anyio/master/README.rst","_readme_localurl":"agronholm~anyio~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/agronholm/anyio/master/pyproject.toml"],"_requirements_localurls":["agronholm~anyio~pyproject.toml"]},{"index":545,"category":"ml","githuburl":"https://github.com/borealisai/advertorch","featured":null,"links":null,"description":null,"_repopath":"borealisai/advertorch","_reponame":"advertorch","_stars":1119,"_forks":178,"_watches":27,"_topics":["pytorch","adversarial-examples","adversarial-example","adversarial-perturbations","adversarial-attacks","adversarial-machine-learning","adversarial-learning","robustness","toolbox","security","machine-learning","benchmarking"],"_language":"Jupyter Notebook","_homepage":null,"_description":"advertorch: A Toolbox for Adversarial Robustness Research","_organization":"borealisai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-05-29T00:00:00.000Z","_created_at":"2018-11-29T00:00:00.000Z","_age_weeks":209,"_stars_per_week":5.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/borealisai/advertorch/master/README.md","_readme_localurl":"borealisai~advertorch~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/borealisai/advertorch/master/setup.py"],"_requirements_localurls":["borealisai~advertorch~setup.py"]},{"index":802,"category":"util","githuburl":"https://github.com/open-telemetry/opentelemetry-python","featured":null,"links":null,"description":null,"_repopath":"open-telemetry/opentelemetry-python","_reponame":"opentelemetry-python","_stars":1113,"_forks":402,"_watches":36,"_topics":["python","opentelemetry","tracecontext","correlationcontext","distributed-tracing","logging","metrics","sdk"],"_language":"Python","_homepage":"https://opentelemetry.io","_description":"opentelemetry-python: OpenTelemetry Python API and SDK ","_organization":"open-telemetry","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-05-07T00:00:00.000Z","_age_weeks":187,"_stars_per_week":5.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-telemetry/opentelemetry-python/master/README.md","_readme_localurl":"open-telemetry~opentelemetry-python~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/open-telemetry/opentelemetry-python/master/pyproject.toml"],"_requirements_localurls":["open-telemetry~opentelemetry-python~pyproject.toml"]},{"index":726,"category":"perf","githuburl":"https://github.com/omyyyy/pycom","featured":null,"links":null,"description":null,"_repopath":"omyyyy/pycom","_reponame":"pycom","_stars":1097,"_forks":21,"_watches":17,"_topics":[],"_language":"C++","_homepage":"","_description":"pycom: A Python compiler, down to native code, using C++","_organization":"omyyyy","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-08-31T00:00:00.000Z","_created_at":"2022-07-16T00:00:00.000Z","_age_weeks":20,"_stars_per_week":53.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/omyyyy/pycom/master/README.md","_readme_localurl":"omyyyy~pycom~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/omyyyy/pycom/master/requirements.txt","https://raw.githubusercontent.com/omyyyy/pycom/master/setup.py"],"_requirements_localurls":["omyyyy~pycom~requirements.txt","omyyyy~pycom~setup.py"]},{"index":618,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-bdd","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-bdd","_reponame":"pytest-bdd","_stars":1096,"_forks":186,"_watches":53,"_topics":[],"_language":"Python","_homepage":"https://pytest-bdd.readthedocs.io/en/latest/","_description":"pytest-bdd: BDD library for the py.test runner","_organization":"pytest-dev","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2013-03-29T00:00:00.000Z","_age_weeks":505,"_stars_per_week":2.17,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-bdd/master/README.rst","_readme_localurl":"pytest-dev~pytest-bdd~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-bdd/master/pyproject.toml"],"_requirements_localurls":["pytest-dev~pytest-bdd~pyproject.toml"]},{"index":396,"category":"web","githuburl":"https://github.com/neoteroi/blacksheep","featured":null,"links":null,"description":null,"_repopath":"neoteroi/blacksheep","_reponame":"BlackSheep","_stars":1095,"_forks":49,"_watches":24,"_topics":["asyncio","server","http","asgi","blacksheep","python","http-server","rest","web","framework"],"_language":"Python","_homepage":"https://www.neoteroi.dev/blacksheep/","_description":"BlackSheep: Fast ASGI web framework for Python","_organization":"neoteroi","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-20T00:00:00.000Z","_created_at":"2018-11-22T00:00:00.000Z","_age_weeks":210,"_stars_per_week":5.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/neoteroi/blacksheep/master/README.md","_readme_localurl":"neoteroi~blacksheep~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/neoteroi/blacksheep/master/requirements.txt","https://raw.githubusercontent.com/neoteroi/blacksheep/master/setup.py"],"_requirements_localurls":["neoteroi~blacksheep~requirements.txt","neoteroi~blacksheep~setup.py"]},{"index":656,"category":"web","githuburl":"https://github.com/magicstack/httptools","featured":null,"links":null,"description":null,"_repopath":"magicstack/httptools","_reponame":"httptools","_stars":1081,"_forks":69,"_watches":40,"_topics":[],"_language":"Python","_homepage":"","_description":"httptools: Fast HTTP parser","_organization":"magicstack","_updated_at":"2022-11-29T00:00:00.000Z","_last_commit_date":"2022-09-13T00:00:00.000Z","_created_at":"2016-04-25T00:00:00.000Z","_age_weeks":345,"_stars_per_week":3.13,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/magicstack/httptools/master/README.md","_readme_localurl":"magicstack~httptools~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/magicstack/httptools/master/setup.py"],"_requirements_localurls":["magicstack~httptools~setup.py"]},{"index":448,"category":"gis","githuburl":"https://github.com/pysal/pysal","featured":1.0,"links":null,"description":null,"_repopath":"pysal/pysal","_reponame":"pysal","_stars":1080,"_forks":283,"_watches":81,"_topics":[],"_language":"Jupyter Notebook","_homepage":"http://pysal.org/pysal","_description":"PySAL: Python Spatial Analysis Library Meta-Package","_organization":"pysal","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-07-23T00:00:00.000Z","_created_at":"2013-02-19T00:00:00.000Z","_age_weeks":511,"_stars_per_week":2.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pysal/pysal/master/README.md","_readme_localurl":"pysal~pysal~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pysal/pysal/master/requirements.txt","https://raw.githubusercontent.com/pysal/pysal/master/setup.py"],"_requirements_localurls":["pysal~pysal~requirements.txt","pysal~pysal~setup.py"]},{"index":798,"category":"data","githuburl":"https://github.com/jsonpickle/jsonpickle","featured":null,"links":null,"description":null,"_repopath":"jsonpickle/jsonpickle","_reponame":"jsonpickle","_stars":1078,"_forks":152,"_watches":31,"_topics":["json","python","serialization","pickle","deserialization","objectstorage","bsd-3-clause"],"_language":"Python","_homepage":"https://jsonpickle.github.io","_description":"jsonpickle: Python library for serializing any arbitrary object graph into JSON. It can take almost any Python object and turn the object into JSON. Additionally, it can reconstitute the object back into Python.","_organization":"jsonpickle","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2009-12-10T00:00:00.000Z","_age_weeks":677,"_stars_per_week":1.59,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jsonpickle/jsonpickle/master/README.rst","_readme_localurl":"jsonpickle~jsonpickle~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jsonpickle/jsonpickle/master/setup.py","https://raw.githubusercontent.com/jsonpickle/jsonpickle/master/pyproject.toml"],"_requirements_localurls":["jsonpickle~jsonpickle~setup.py","jsonpickle~jsonpickle~pyproject.toml"]},{"index":771,"category":"data","githuburl":"https://github.com/google/tensorstore","featured":null,"links":null,"description":null,"_repopath":"google/tensorstore","_reponame":"tensorstore","_stars":1065,"_forks":77,"_watches":30,"_topics":[],"_language":"C++","_homepage":"https://google.github.io/tensorstore/","_description":"tensorstore: Library for reading and writing large multi-dimensional arrays.","_organization":"google","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2020-03-30T00:00:00.000Z","_age_weeks":140,"_stars_per_week":7.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/tensorstore/master/README.md","_readme_localurl":"google~tensorstore~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/google/tensorstore/master/setup.py","https://raw.githubusercontent.com/google/tensorstore/master/pyproject.toml"],"_requirements_localurls":["google~tensorstore~setup.py","google~tensorstore~pyproject.toml"]},{"index":512,"category":"typing","githuburl":"https://github.com/agronholm/typeguard","featured":null,"links":null,"description":null,"_repopath":"agronholm/typeguard","_reponame":"typeguard","_stars":1064,"_forks":79,"_watches":17,"_topics":[],"_language":"Python","_homepage":null,"_description":"typeguard: Run-time type checker for Python","_organization":"agronholm","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-10-11T00:00:00.000Z","_created_at":"2015-12-27T00:00:00.000Z","_age_weeks":362,"_stars_per_week":2.94,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/agronholm/typeguard/master/README.rst","_readme_localurl":"agronholm~typeguard~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/agronholm/typeguard/master/pyproject.toml"],"_requirements_localurls":["agronholm~typeguard~pyproject.toml"]},{"index":417,"category":"pandas","githuburl":"https://github.com/pyjanitor-devs/pyjanitor","featured":1.0,"links":null,"description":null,"_repopath":"pyjanitor-devs/pyjanitor","_reponame":"pyjanitor","_stars":1063,"_forks":159,"_watches":20,"_topics":["pandas","dataframe","data","cleaning-data","data-engineering","pydata","hacktoberfest"],"_language":"Python","_homepage":"https://pyjanitor-devs.github.io/pyjanitor","_description":"pyjanitor: Clean APIs for data cleaning. Python implementation of R package Janitor","_organization":"pyjanitor-devs","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2018-03-04T00:00:00.000Z","_age_weeks":248,"_stars_per_week":4.28,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/README.rst","_readme_localurl":"pyjanitor-devs~pyjanitor~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/requirements.txt","https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/setup.py","https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/pyproject.toml"],"_requirements_localurls":["pyjanitor-devs~pyjanitor~requirements.txt","pyjanitor-devs~pyjanitor~setup.py","pyjanitor-devs~pyjanitor~pyproject.toml"]},{"index":829,"category":"study","githuburl":"https://github.com/huggingface/diffusion-models-class","featured":null,"links":null,"description":null,"_repopath":"huggingface/diffusion-models-class","_reponame":"diffusion-models-class","_stars":1059,"_forks":75,"_watches":64,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"diffusion-models-class: Materials for the Hugging Face Diffusion Models Course","_organization":"huggingface","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2022-10-13T00:00:00.000Z","_age_weeks":7,"_stars_per_week":134.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/diffusion-models-class/master/README.md","_readme_localurl":"huggingface~diffusion-models-class~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":651,"category":"profiling","githuburl":"https://github.com/p403n1x87/austin","featured":null,"links":null,"description":null,"_repopath":"p403n1x87/austin","_reponame":"austin","_stars":1058,"_forks":35,"_watches":14,"_topics":["python","profiling","performance","debugging-tools"],"_language":"C","_homepage":"","_description":"austin: Python frame stack sampler for CPython","_organization":"p403n1x87","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-10-28T00:00:00.000Z","_created_at":"2018-09-20T00:00:00.000Z","_age_weeks":219,"_stars_per_week":4.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/p403n1x87/austin/master/README.md","_readme_localurl":"p403n1x87~austin~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":626,"category":"viz","githuburl":"https://github.com/enthought/mayavi","featured":null,"links":null,"description":null,"_repopath":"enthought/mayavi","_reponame":"mayavi","_stars":1054,"_forks":264,"_watches":93,"_topics":[],"_language":"Python","_homepage":"http://docs.enthought.com/mayavi/mayavi/","_description":"mayavi: 3D visualization of scientific data in Python","_organization":"enthought","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-10-18T00:00:00.000Z","_created_at":"2011-01-24T00:00:00.000Z","_age_weeks":619,"_stars_per_week":1.7,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/enthought/mayavi/master/README.rst","_readme_localurl":"enthought~mayavi~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/enthought/mayavi/master/setup.py","https://raw.githubusercontent.com/enthought/mayavi/master/pyproject.toml"],"_requirements_localurls":["enthought~mayavi~setup.py","enthought~mayavi~pyproject.toml"]},{"index":703,"category":"util","githuburl":"https://github.com/openai/openai-python","featured":null,"links":null,"description":null,"_repopath":"openai/openai-python","_reponame":"openai-python","_stars":1053,"_forks":296,"_watches":47,"_topics":[],"_language":"Python","_homepage":null,"_description":"openai/openai-python","_organization":"openai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-17T00:00:00.000Z","_created_at":"2020-10-25T00:00:00.000Z","_age_weeks":110,"_stars_per_week":9.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/openai-python/master/README.md","_readme_localurl":"openai~openai-python~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/openai-python/master/setup.py","https://raw.githubusercontent.com/openai/openai-python/master/pyproject.toml"],"_requirements_localurls":["openai~openai-python~setup.py","openai~openai-python~pyproject.toml"]},{"index":627,"category":"data","githuburl":"https://github.com/zarr-developers/zarr-python","featured":null,"links":null,"description":null,"_repopath":"zarr-developers/zarr-python","_reponame":"zarr-python","_stars":1052,"_forks":210,"_watches":43,"_topics":["hacktoberfest","zarr","ndimensional-arrays","compressed","python"],"_language":"Python","_homepage":"http://zarr.readthedocs.io/","_description":"zarr-python: An implementation of chunked, compressed, N-dimensional arrays for Python.","_organization":"zarr-developers","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2015-12-15T00:00:00.000Z","_age_weeks":364,"_stars_per_week":2.89,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zarr-developers/zarr-python/master/README.md","_readme_localurl":"zarr-developers~zarr-python~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/zarr-developers/zarr-python/master/pyproject.toml"],"_requirements_localurls":["zarr-developers~zarr-python~pyproject.toml"]},{"index":619,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-asyncio","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-asyncio","_reponame":"pytest-asyncio","_stars":1050,"_forks":115,"_watches":34,"_topics":[],"_language":"Python","_homepage":"https://pytest-asyncio.readthedocs.io","_description":"pytest-asyncio: Asyncio support for pytest","_organization":"pytest-dev","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2015-04-11T00:00:00.000Z","_age_weeks":399,"_stars_per_week":2.63,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/master/README.rst","_readme_localurl":"pytest-dev~pytest-asyncio~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/master/pyproject.toml"],"_requirements_localurls":["pytest-dev~pytest-asyncio~pyproject.toml"]},{"index":239,"category":"data","githuburl":"https://github.com/simonw/sqlite-utils","featured":null,"links":null,"description":null,"_repopath":"simonw/sqlite-utils","_reponame":"sqlite-utils","_stars":1043,"_forks":81,"_watches":17,"_topics":["sqlite","python","datasette","sqlite-database","click","cli","datasette-io","datasette-tool"],"_language":"Python","_homepage":"https://sqlite-utils.datasette.io","_description":"sqlite-utils: Python CLI utility and library for manipulating SQLite databases","_organization":"simonw","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2018-07-14T00:00:00.000Z","_age_weeks":229,"_stars_per_week":4.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/simonw/sqlite-utils/master/README.md","_readme_localurl":"simonw~sqlite-utils~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/simonw/sqlite-utils/master/setup.py"],"_requirements_localurls":["simonw~sqlite-utils~setup.py"]},{"index":609,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-xdist","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-xdist","_reponame":"pytest-xdist","_stars":1038,"_forks":185,"_watches":45,"_topics":["hacktoberfest","pytest","pytest-plugin"],"_language":"Python","_homepage":"https://pytest-xdist.readthedocs.io","_description":"pytest-xdist: pytest plugin for distributed testing and loop-on-failures testing modes. ","_organization":"pytest-dev","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2015-09-01T00:00:00.000Z","_age_weeks":379,"_stars_per_week":2.74,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-xdist/master/README.rst","_readme_localurl":"pytest-dev~pytest-xdist~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-xdist/master/pyproject.toml"],"_requirements_localurls":["pytest-dev~pytest-xdist~pyproject.toml"]},{"index":644,"category":"util","githuburl":"https://github.com/metachris/logzero","featured":null,"links":null,"description":null,"_repopath":"metachris/logzero","_reponame":"logzero","_stars":1035,"_forks":70,"_watches":26,"_topics":["python","logging","logzero","logfiles"],"_language":"Python","_homepage":"https://logzero.readthedocs.io","_description":"logzero: Robust and effective logging for Python 2 and 3.","_organization":"metachris","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2021-03-17T00:00:00.000Z","_created_at":"2017-06-12T00:00:00.000Z","_age_weeks":286,"_stars_per_week":3.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/metachris/logzero/master/README.md","_readme_localurl":"metachris~logzero~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/metachris/logzero/master/setup.py"],"_requirements_localurls":["metachris~logzero~setup.py"]},{"index":449,"category":"gis","githuburl":"https://github.com/residentmario/geoplot","featured":1.0,"links":null,"description":null,"_repopath":"residentmario/geoplot","_reponame":"geoplot","_stars":1030,"_forks":90,"_watches":35,"_topics":["geospatial-visualization","geospatial-data","matplotlib","geopandas","spatial-analysis"],"_language":"Python","_homepage":"https://residentmario.github.io/geoplot/index.html","_description":"geoplot: High-level geospatial data visualization library for Python.","_organization":"residentmario","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-03-18T00:00:00.000Z","_created_at":"2016-06-29T00:00:00.000Z","_age_weeks":336,"_stars_per_week":3.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/residentmario/geoplot/master/README.md","_readme_localurl":"residentmario~geoplot~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/residentmario/geoplot/master/setup.py"],"_requirements_localurls":["residentmario~geoplot~setup.py"]},{"index":191,"category":"ml","githuburl":"https://github.com/awslabs/dgl-ke","featured":null,"links":null,"description":null,"_repopath":"awslabs/dgl-ke","_reponame":"dgl-ke","_stars":1030,"_forks":174,"_watches":23,"_topics":["machine-learning","knowledge-graph","knowledge-graphs-embeddings","graph-learning","dgl"],"_language":"Python","_homepage":"https://dglke.dgl.ai/doc/","_description":"dgl-ke: High performance, easy-to-use, and scalable package for learning large-scale knowledge graph embeddings.","_organization":"awslabs","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-18T00:00:00.000Z","_created_at":"2020-03-03T00:00:00.000Z","_age_weeks":144,"_stars_per_week":7.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/awslabs/dgl-ke/master/README.md","_readme_localurl":"awslabs~dgl-ke~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":817,"category":"ml-dl","githuburl":"https://github.com/calculatedcontent/weightwatcher","featured":null,"links":null,"description":null,"_repopath":"calculatedcontent/weightwatcher","_reponame":"WeightWatcher","_stars":1029,"_forks":94,"_watches":29,"_topics":[],"_language":"Python","_homepage":null,"_description":"WeightWatcher: The WeightWatcher tool for predicting the accuracy of Deep Neural Networks","_organization":"calculatedcontent","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2018-11-28T00:00:00.000Z","_age_weeks":210,"_stars_per_week":4.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/calculatedcontent/weightwatcher/master/README.md","_readme_localurl":"calculatedcontent~weightwatcher~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/calculatedcontent/weightwatcher/master/setup.py"],"_requirements_localurls":["calculatedcontent~weightwatcher~setup.py"]},{"index":654,"category":"profiling","githuburl":"https://github.com/sumerc/yappi","featured":null,"links":null,"description":null,"_repopath":"sumerc/yappi","_reponame":"yappi","_stars":1026,"_forks":57,"_watches":13,"_topics":["profilers","multi-threaded-applications","coroutine","asynchronous","python","asyncio","performance","profile","asgi","cpu","thread","gevent","greenlet","multithreading"],"_language":"Python","_homepage":"","_description":"yappi: Yet Another Python Profiler, but this time multithreading, asyncio and gevent aware.","_organization":"sumerc","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-25T00:00:00.000Z","_created_at":"2009-10-07T00:00:00.000Z","_age_weeks":687,"_stars_per_week":1.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sumerc/yappi/master/README.md","_readme_localurl":"sumerc~yappi~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sumerc/yappi/master/setup.py","https://raw.githubusercontent.com/sumerc/yappi/master/pyproject.toml"],"_requirements_localurls":["sumerc~yappi~setup.py","sumerc~yappi~pyproject.toml"]},{"index":580,"category":"util","githuburl":"https://github.com/lidatong/dataclasses-json","featured":null,"links":null,"description":null,"_repopath":"lidatong/dataclasses-json","_reponame":"dataclasses-json","_stars":1011,"_forks":114,"_watches":9,"_topics":["dataclasses","json","python"],"_language":"Python","_homepage":"","_description":"dataclasses-json: Easily serialize Data Classes to and from JSON","_organization":"lidatong","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-08-14T00:00:00.000Z","_created_at":"2018-04-21T00:00:00.000Z","_age_weeks":241,"_stars_per_week":4.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lidatong/dataclasses-json/master/README.md","_readme_localurl":"lidatong~dataclasses-json~README.md","_requirements_filenames":["setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/lidatong/dataclasses-json/master/setup.py","https://raw.githubusercontent.com/lidatong/dataclasses-json/master/pyproject.toml","https://raw.githubusercontent.com/lidatong/dataclasses-json/master/Pipfile"],"_requirements_localurls":["lidatong~dataclasses-json~setup.py","lidatong~dataclasses-json~pyproject.toml","lidatong~dataclasses-json~Pipfile"]},{"index":598,"category":"data","githuburl":"https://github.com/uber/fiber","featured":null,"links":null,"description":null,"_repopath":"uber/fiber","_reponame":"fiber","_stars":994,"_forks":112,"_watches":21,"_topics":["python","distributed-computing","multiprocessing","sandbox","machine-learning"],"_language":"Python","_homepage":"https://uber.github.io/fiber/","_description":"fiber: Distributed Computing for AI Made Simple","_organization":"uber","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2021-03-15T00:00:00.000Z","_created_at":"2020-01-07T00:00:00.000Z","_age_weeks":152,"_stars_per_week":6.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/uber/fiber/master/README.md","_readme_localurl":"uber~fiber~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/fiber/master/requirements.txt","https://raw.githubusercontent.com/uber/fiber/master/setup.py"],"_requirements_localurls":["uber~fiber~requirements.txt","uber~fiber~setup.py"]},{"index":666,"category":"ml","githuburl":"https://github.com/huggingface/evaluate","featured":null,"links":null,"description":null,"_repopath":"huggingface/evaluate","_reponame":"evaluate","_stars":994,"_forks":79,"_watches":36,"_topics":["evaluation","machine-learning"],"_language":"Python","_homepage":"https://huggingface.co/docs/evaluate","_description":"\ud83e\udd17 Evaluate: A library for easily evaluating machine learning models and datasets.","_organization":"huggingface","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2022-03-30T00:00:00.000Z","_age_weeks":36,"_stars_per_week":27.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/evaluate/master/README.md","_readme_localurl":"huggingface~evaluate~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/evaluate/master/setup.py"],"_requirements_localurls":["huggingface~evaluate~setup.py"]},{"index":406,"category":"perf","githuburl":"https://github.com/pympler/pympler","featured":null,"links":null,"description":null,"_repopath":"pympler/pympler","_reponame":"pympler","_stars":989,"_forks":82,"_watches":10,"_topics":[],"_language":"Python","_homepage":null,"_description":"pympler: Development tool to measure, monitor and analyze the memory behavior of Python objects in a running Python application.","_organization":"pympler","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-07-24T00:00:00.000Z","_created_at":"2012-10-04T00:00:00.000Z","_age_weeks":530,"_stars_per_week":1.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pympler/pympler/master/README.md","_readme_localurl":"pympler~pympler~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pympler/pympler/master/setup.py","https://raw.githubusercontent.com/pympler/pympler/master/pyproject.toml"],"_requirements_localurls":["pympler~pympler~setup.py","pympler~pympler~pyproject.toml"]},{"index":728,"category":"gis","githuburl":"https://github.com/geospatialpython/pyshp","featured":null,"links":null,"description":null,"_repopath":"geospatialpython/pyshp","_reponame":"pyshp","_stars":984,"_forks":258,"_watches":63,"_topics":[],"_language":"Python","_homepage":null,"_description":"pyshp: This library reads and writes ESRI Shapefiles in pure Python.","_organization":"geospatialpython","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-07-28T00:00:00.000Z","_created_at":"2014-03-04T00:00:00.000Z","_age_weeks":457,"_stars_per_week":2.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/geospatialpython/pyshp/master/README.md","_readme_localurl":"geospatialpython~pyshp~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/geospatialpython/pyshp/master/setup.py","https://raw.githubusercontent.com/geospatialpython/pyshp/master/pyproject.toml"],"_requirements_localurls":["geospatialpython~pyshp~setup.py","geospatialpython~pyshp~pyproject.toml"]},{"index":444,"category":"gis","githuburl":"https://github.com/toblerity/fiona","featured":null,"links":null,"description":null,"_repopath":"toblerity/fiona","_reponame":"Fiona","_stars":977,"_forks":190,"_watches":49,"_topics":["python","gis","vector","gdal","ogr","cli","cython"],"_language":"Python","_homepage":"https://fiona.readthedocs.io/","_description":"Fiona reads and writes geographic data files","_organization":"toblerity","_updated_at":"2022-11-24T00:00:00.000Z","_last_commit_date":"2022-03-01T00:00:00.000Z","_created_at":"2011-12-31T00:00:00.000Z","_age_weeks":570,"_stars_per_week":1.71,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/toblerity/fiona/master/README.rst","_readme_localurl":"toblerity~fiona~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/toblerity/fiona/master/requirements.txt","https://raw.githubusercontent.com/toblerity/fiona/master/setup.py","https://raw.githubusercontent.com/toblerity/fiona/master/pyproject.toml"],"_requirements_localurls":["toblerity~fiona~requirements.txt","toblerity~fiona~setup.py","toblerity~fiona~pyproject.toml"]},{"index":447,"category":"ml","githuburl":"https://github.com/csinva/imodels","featured":null,"links":null,"description":null,"_repopath":"csinva/imodels","_reponame":"imodels","_stars":971,"_forks":97,"_watches":22,"_topics":["interpretability","machine-learning","data-science","artificial-intelligence","ml","ai","statistics","scikit-learn","python","optimal-classification-tree","rulefit","imodels","rule-learning","supervised-learning","explainable-ml","explainable-ai","rules","bayesian-rule-list"],"_language":"Jupyter Notebook","_homepage":"https://csinva.io/imodels","_description":"imodels: Interpretable ML package \ud83d\udd0d for concise, transparent, and accurate predictive modeling (sklearn-compatible).","_organization":"csinva","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-07-04T00:00:00.000Z","_age_weeks":178,"_stars_per_week":5.43,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/csinva/imodels/master/readme.md","_readme_localurl":"csinva~imodels~readme.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/csinva/imodels/master/setup.py"],"_requirements_localurls":["csinva~imodels~setup.py"]},{"index":739,"category":"pandas","githuburl":"https://github.com/machow/siuba","featured":null,"links":null,"description":null,"_repopath":"machow/siuba","_reponame":"siuba","_stars":970,"_forks":40,"_watches":20,"_topics":["data-analysis","python","pandas","sql","dplyr"],"_language":"Python","_homepage":"https://siuba.org","_description":"siuba: Python library for using dplyr like syntax with pandas and SQL","_organization":"machow","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-11-16T00:00:00.000Z","_created_at":"2019-02-09T00:00:00.000Z","_age_weeks":199,"_stars_per_week":4.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/machow/siuba/master/README.md","_readme_localurl":"machow~siuba~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/machow/siuba/master/requirements.txt","https://raw.githubusercontent.com/machow/siuba/master/setup.py"],"_requirements_localurls":["machow~siuba~requirements.txt","machow~siuba~setup.py"]},{"index":707,"category":"util","githuburl":"https://github.com/brandon-rhodes/python-patterns","featured":null,"links":null,"description":null,"_repopath":"brandon-rhodes/python-patterns","_reponame":"python-patterns","_stars":965,"_forks":88,"_watches":247,"_topics":[],"_language":"Python","_homepage":null,"_description":"python-patterns: Source code behind the python-patterns.guide site by Brandon Rhodes","_organization":"brandon-rhodes","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2021-01-05T00:00:00.000Z","_created_at":"2018-01-31T00:00:00.000Z","_age_weeks":253,"_stars_per_week":3.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/brandon-rhodes/python-patterns/master/README.md","_readme_localurl":"brandon-rhodes~python-patterns~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/brandon-rhodes/python-patterns/master/requirements.txt"],"_requirements_localurls":["brandon-rhodes~python-patterns~requirements.txt"]},{"index":614,"category":"testing","githuburl":"https://github.com/teemu/pytest-sugar","featured":null,"links":null,"description":null,"_repopath":"teemu/pytest-sugar","_reponame":"pytest-sugar","_stars":954,"_forks":67,"_watches":17,"_topics":["pytest","pytest-sugar","python","testing","pytest-plugin"],"_language":"Python","_homepage":"","_description":"pytest-sugar: a plugin for py.test that changes the default look and feel of py.test (e.g. progressbar, show tests that fail instantly)","_organization":"teemu","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2013-06-25T00:00:00.000Z","_age_weeks":493,"_stars_per_week":1.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/teemu/pytest-sugar/master/README.md","_readme_localurl":"teemu~pytest-sugar~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/teemu/pytest-sugar/master/setup.py"],"_requirements_localurls":["teemu~pytest-sugar~setup.py"]},{"index":482,"category":"gis","githuburl":"https://github.com/sentinel-hub/eo-learn","featured":null,"links":null,"description":null,"_repopath":"sentinel-hub/eo-learn","_reponame":"eo-learn","_stars":948,"_forks":275,"_watches":51,"_topics":["machine-learning","eo-data","eo-research","python-package"],"_language":"Python","_homepage":null,"_description":"eo-learn: Earth observation processing framework for machine learning in Python","_organization":"sentinel-hub","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2018-05-31T00:00:00.000Z","_age_weeks":235,"_stars_per_week":4.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sentinel-hub/eo-learn/master/README.md","_readme_localurl":"sentinel-hub~eo-learn~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sentinel-hub/eo-learn/master/setup.py","https://raw.githubusercontent.com/sentinel-hub/eo-learn/master/pyproject.toml"],"_requirements_localurls":["sentinel-hub~eo-learn~setup.py","sentinel-hub~eo-learn~pyproject.toml"]},{"index":631,"category":"util","githuburl":"https://github.com/pyca/bcrypt","featured":null,"links":null,"description":null,"_repopath":"pyca/bcrypt","_reponame":"bcrypt","_stars":941,"_forks":134,"_watches":29,"_topics":["python"],"_language":"Python","_homepage":"","_description":"bcrypt: Modern(-ish) password hashing for your software and your servers","_organization":"pyca","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2013-05-11T00:00:00.000Z","_age_weeks":499,"_stars_per_week":1.88,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyca/bcrypt/master/README.rst","_readme_localurl":"pyca~bcrypt~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyca/bcrypt/master/requirements.txt","https://raw.githubusercontent.com/pyca/bcrypt/master/setup.py","https://raw.githubusercontent.com/pyca/bcrypt/master/pyproject.toml"],"_requirements_localurls":["pyca~bcrypt~requirements.txt","pyca~bcrypt~setup.py","pyca~bcrypt~pyproject.toml"]},{"index":633,"category":"util","githuburl":"https://github.com/pyca/pynacl","featured":null,"links":null,"description":null,"_repopath":"pyca/pynacl","_reponame":"pynacl","_stars":935,"_forks":220,"_watches":28,"_topics":["cryptography","libsodium","nacl","python"],"_language":"C","_homepage":"https://pynacl.readthedocs.io/","_description":"pynacl: Python binding to the Networking and Cryptography (NaCl) library","_organization":"pyca","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2013-02-22T00:00:00.000Z","_age_weeks":510,"_stars_per_week":1.83,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyca/pynacl/master/README.rst","_readme_localurl":"pyca~pynacl~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyca/pynacl/master/setup.py","https://raw.githubusercontent.com/pyca/pynacl/master/pyproject.toml"],"_requirements_localurls":["pyca~pynacl~setup.py","pyca~pynacl~pyproject.toml"]},{"index":740,"category":"ml","githuburl":"https://github.com/koaning/scikit-lego","featured":null,"links":null,"description":null,"_repopath":"koaning/scikit-lego","_reponame":"scikit-lego","_stars":932,"_forks":99,"_watches":18,"_topics":["scikit-learn","machine-learning","common-sense"],"_language":"Python","_homepage":"https://scikit-lego.netlify.app","_description":"scikit-lego: Extra blocks for scikit-learn pipelines.","_organization":"koaning","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-02T00:00:00.000Z","_created_at":"2019-01-21T00:00:00.000Z","_age_weeks":202,"_stars_per_week":4.61,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/koaning/scikit-lego/master/readme.md","_readme_localurl":"koaning~scikit-lego~readme.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/koaning/scikit-lego/master/setup.py"],"_requirements_localurls":["koaning~scikit-lego~setup.py"]},{"index":271,"category":"crypto","githuburl":"https://github.com/man-c/pycoingecko","featured":null,"links":null,"description":null,"_repopath":"man-c/pycoingecko","_reponame":"pycoingecko","_stars":931,"_forks":242,"_watches":32,"_topics":["python3","api-wrapper","api","wrapper","cryptocurrency","crypto","coingecko","python","nft","nfts"],"_language":"Python","_homepage":"","_description":"pycoingecko: Python wrapper for the CoinGecko API","_organization":"man-c","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-10-26T00:00:00.000Z","_created_at":"2018-08-24T00:00:00.000Z","_age_weeks":223,"_stars_per_week":4.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/man-c/pycoingecko/master/README.md","_readme_localurl":"man-c~pycoingecko~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/man-c/pycoingecko/master/setup.py"],"_requirements_localurls":["man-c~pycoingecko~setup.py"]},{"index":820,"category":"viz","githuburl":"https://github.com/facultyai/dash-bootstrap-components","featured":null,"links":null,"description":null,"_repopath":"facultyai/dash-bootstrap-components","_reponame":"dash-bootstrap-components","_stars":925,"_forks":201,"_watches":21,"_topics":["bootstrap","plotly-dash","python","dashboards","r","julia"],"_language":"JavaScript","_homepage":"https://dash-bootstrap-components.opensource.faculty.ai/","_description":"dash-bootstrap-components: Bootstrap components for Plotly Dash","_organization":"facultyai","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-08-03T00:00:00.000Z","_created_at":"2018-09-21T00:00:00.000Z","_age_weeks":219,"_stars_per_week":4.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facultyai/dash-bootstrap-components/master/README.md","_readme_localurl":"facultyai~dash-bootstrap-components~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facultyai/dash-bootstrap-components/master/setup.py","https://raw.githubusercontent.com/facultyai/dash-bootstrap-components/master/pyproject.toml"],"_requirements_localurls":["facultyai~dash-bootstrap-components~setup.py","facultyai~dash-bootstrap-components~pyproject.toml"]},{"index":236,"category":"sim","githuburl":"https://github.com/salesforce/ai-economist","featured":1.0,"links":null,"description":null,"_repopath":"salesforce/ai-economist","_reponame":"ai-economist","_stars":913,"_forks":189,"_watches":44,"_topics":["ai","ml","multi-agent","multi-agent-reinforcement-learning","deep-reinforcement-learning","reinforcement-learning-environments","simulation-framework","python-3","economics"],"_language":"Python","_homepage":"https://www.einstein.ai/the-ai-economist","_description":"ai-economist: Foundation is a flexible, modular, and composable framework to model socio-economic behaviors and dynamics with both agents and governments. This framework can be used in conjunction with reinforcement learning to learn optimal economic policies,\u00a0as done by the AI Economist (https://www.einstein.ai/the-ai-economist).","_organization":"salesforce","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-05-09T00:00:00.000Z","_created_at":"2020-07-02T00:00:00.000Z","_age_weeks":126,"_stars_per_week":7.2,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/ai-economist/master/README.md","_readme_localurl":"salesforce~ai-economist~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/salesforce/ai-economist/master/requirements.txt","https://raw.githubusercontent.com/salesforce/ai-economist/master/setup.py"],"_requirements_localurls":["salesforce~ai-economist~requirements.txt","salesforce~ai-economist~setup.py"]},{"index":88,"category":"testing","githuburl":"https://github.com/taverntesting/tavern","featured":null,"links":null,"description":null,"_repopath":"taverntesting/tavern","_reponame":"tavern","_stars":908,"_forks":179,"_watches":28,"_topics":["python","pytest","testing","test-automation","mqtt","http"],"_language":"Python","_homepage":"https://taverntesting.github.io/","_description":"tavern: A command-line tool and Python library and Pytest plugin for automated testing of RESTful APIs, with a simple, concise and flexible YAML-based syntax","_organization":"taverntesting","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-11-27T00:00:00.000Z","_created_at":"2017-11-01T00:00:00.000Z","_age_weeks":266,"_stars_per_week":3.41,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/taverntesting/tavern/master/README.rst","_readme_localurl":"taverntesting~tavern~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/taverntesting/tavern/master/requirements.txt","https://raw.githubusercontent.com/taverntesting/tavern/master/setup.py"],"_requirements_localurls":["taverntesting~tavern~requirements.txt","taverntesting~tavern~setup.py"]},{"index":379,"category":"ml-interpretability","githuburl":"https://github.com/cdpierse/transformers-interpret","featured":null,"links":null,"description":null,"_repopath":"cdpierse/transformers-interpret","_reponame":"transformers-interpret","_stars":907,"_forks":80,"_watches":16,"_topics":["nlp","machine-learning","natural-language-processing","explainable-ai","transformers","model-explainability","transformers-model","captum","deep-learning","neural-network","interpretability","computer-vision"],"_language":"Jupyter Notebook","_homepage":"","_description":"transformers-interpret: Model explainability that works seamlessly with \ud83e\udd17 transformers. Explain your transformers model in just 2 lines of code. ","_organization":"cdpierse","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-17T00:00:00.000Z","_created_at":"2020-05-27T00:00:00.000Z","_age_weeks":132,"_stars_per_week":6.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/README.md","_readme_localurl":"cdpierse~transformers-interpret~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/requirements.txt","https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/setup.py","https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/pyproject.toml"],"_requirements_localurls":["cdpierse~transformers-interpret~requirements.txt","cdpierse~transformers-interpret~setup.py","cdpierse~transformers-interpret~pyproject.toml"]},{"index":541,"category":"util","githuburl":"https://github.com/pdoc3/pdoc","featured":null,"links":null,"description":null,"_repopath":"pdoc3/pdoc","_reponame":"pdoc","_stars":905,"_forks":136,"_watches":8,"_topics":["documentation","generator","documentation-generator","documentation-tool","documentation-dumper","api-documentation","python","python3","docs","docs-generator","docstrings","docstring","docstring-documentation","pdoc","hacktoberfest"],"_language":"Python","_homepage":"https://pdoc3.github.io/pdoc/","_description":"pdoc: :snake: :arrow_right: :scroll: Auto-generate API documentation for Python projects","_organization":"pdoc3","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-10-29T00:00:00.000Z","_created_at":"2019-01-02T00:00:00.000Z","_age_weeks":205,"_stars_per_week":4.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pdoc3/pdoc/master/README.md","_readme_localurl":"pdoc3~pdoc~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pdoc3/pdoc/master/setup.py"],"_requirements_localurls":["pdoc3~pdoc~setup.py"]},{"index":212,"category":"data","githuburl":"https://github.com/sfu-db/connector-x","featured":1.0,"links":null,"description":null,"_repopath":"sfu-db/connector-x","_reponame":"connector-x","_stars":901,"_forks":66,"_watches":24,"_topics":["rust","python","database","sql","dataframe"],"_language":"Rust","_homepage":"https://sfu-db.github.io/connector-x/intro.html","_description":"connector-x: Fastest library to load data from DB to DataFrames in Rust and Python","_organization":"sfu-db","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2021-01-13T00:00:00.000Z","_age_weeks":99,"_stars_per_week":9.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sfu-db/connector-x/master/README.md","_readme_localurl":"sfu-db~connector-x~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":251,"category":"ml-dl","githuburl":"https://github.com/tensorflow/similarity","featured":null,"links":null,"description":null,"_repopath":"tensorflow/similarity","_reponame":"similarity","_stars":900,"_forks":84,"_watches":27,"_topics":["similarity-learning","metric-learning","similarity-search","nearest-neighbor-search","nearest-neighbors","deep-learning","tensorflow","contrastive-learning","machine-learning","unsupervised-learning","clustering","python","simclr","simclr2","barlow-twins","simsiam","cosine-similarity","knn"],"_language":"Python","_homepage":"","_description":"similarity: TensorFlow Similarity is a python package focused on making similarity learning quick and easy.","_organization":"tensorflow","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2020-06-15T00:00:00.000Z","_age_weeks":129,"_stars_per_week":6.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/similarity/master/README.md","_readme_localurl":"tensorflow~similarity~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorflow/similarity/master/setup.py","https://raw.githubusercontent.com/tensorflow/similarity/master/pyproject.toml"],"_requirements_localurls":["tensorflow~similarity~setup.py","tensorflow~similarity~pyproject.toml"]},{"index":622,"category":"util","githuburl":"https://github.com/pytoolz/cytoolz","featured":null,"links":null,"description":null,"_repopath":"pytoolz/cytoolz","_reponame":"cytoolz","_stars":890,"_forks":67,"_watches":23,"_topics":[],"_language":"Python","_homepage":"","_description":"cytoolz: Cython implementation of Toolz: High performance functional utilities","_organization":"pytoolz","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-06T00:00:00.000Z","_created_at":"2014-04-04T00:00:00.000Z","_age_weeks":452,"_stars_per_week":1.97,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytoolz/cytoolz/master/README.rst","_readme_localurl":"pytoolz~cytoolz~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytoolz/cytoolz/master/setup.py","https://raw.githubusercontent.com/pytoolz/cytoolz/master/pyproject.toml"],"_requirements_localurls":["pytoolz~cytoolz~setup.py","pytoolz~cytoolz~pyproject.toml"]},{"index":387,"category":"nlp","githuburl":"https://github.com/shivam5992/textstat","featured":null,"links":null,"description":null,"_repopath":"shivam5992/textstat","_reponame":"textstat","_stars":889,"_forks":145,"_watches":17,"_topics":["python","textstat","readability","flesch-kincaid-grade","smog","flesch-reading-ease"],"_language":"Python","_homepage":"https://textstat.org","_description":"textstat: :memo: python package to calculate readability statistics of a text object - paragraphs, sentences, articles.","_organization":"shivam5992","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-07-08T00:00:00.000Z","_created_at":"2014-06-18T00:00:00.000Z","_age_weeks":442,"_stars_per_week":2.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/shivam5992/textstat/master/README.md","_readme_localurl":"shivam5992~textstat~README.md","_requirements_filenames":["requirements.txt","setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/shivam5992/textstat/master/requirements.txt","https://raw.githubusercontent.com/shivam5992/textstat/master/setup.py","https://raw.githubusercontent.com/shivam5992/textstat/master/Pipfile"],"_requirements_localurls":["shivam5992~textstat~requirements.txt","shivam5992~textstat~setup.py","shivam5992~textstat~Pipfile"]},{"index":504,"category":"gis","githuburl":"https://github.com/anitagraser/movingpandas","featured":null,"links":null,"description":null,"_repopath":"anitagraser/movingpandas","_reponame":"movingpandas","_stars":888,"_forks":164,"_watches":36,"_topics":["geopandas","trajectory","movement-data","trajectory-analysis","python","spatial-data-analysis"],"_language":"Python","_homepage":"http://movingpandas.org","_description":"movingpandas: Implementation of Trajectory classes and functions built on top of GeoPandas","_organization":"anitagraser","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2018-12-16T00:00:00.000Z","_age_weeks":207,"_stars_per_week":4.28,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/anitagraser/movingpandas/master/README.md","_readme_localurl":"anitagraser~movingpandas~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/anitagraser/movingpandas/master/setup.py"],"_requirements_localurls":["anitagraser~movingpandas~setup.py"]},{"index":672,"category":"perf","githuburl":"https://github.com/markshannon/faster-cpython","featured":null,"links":null,"description":null,"_repopath":"markshannon/faster-cpython","_reponame":"faster-cpython","_stars":883,"_forks":20,"_watches":83,"_topics":[],"_language":null,"_homepage":null,"_description":"faster-cpython: How to make CPython faster.","_organization":"markshannon","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2020-10-28T00:00:00.000Z","_created_at":"2020-10-19T00:00:00.000Z","_age_weeks":111,"_stars_per_week":7.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/markshannon/faster-cpython/master/README.md","_readme_localurl":"markshannon~faster-cpython~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":630,"category":"gis","githuburl":"https://github.com/pytroll/satpy","featured":null,"links":null,"description":null,"_repopath":"pytroll/satpy","_reponame":"satpy","_stars":880,"_forks":255,"_watches":32,"_topics":["python","satellite","weather","hacktoberfest","dask","xarray","closember"],"_language":"Python","_homepage":"http://satpy.readthedocs.org/en/latest/","_description":"satpy: Python package for earth-observing satellite data processing","_organization":"pytroll","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2016-02-09T00:00:00.000Z","_age_weeks":356,"_stars_per_week":2.47,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytroll/satpy/master/README.rst","_readme_localurl":"pytroll~satpy~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytroll/satpy/master/setup.py","https://raw.githubusercontent.com/pytroll/satpy/master/pyproject.toml"],"_requirements_localurls":["pytroll~satpy~setup.py","pytroll~satpy~pyproject.toml"]},{"index":402,"category":"perf","githuburl":"https://github.com/tiangolo/asyncer","featured":null,"links":null,"description":null,"_repopath":"tiangolo/asyncer","_reponame":"asyncer","_stars":878,"_forks":40,"_watches":14,"_topics":["python","async","asyncio","trio","anyio"],"_language":"Python","_homepage":"https://asyncer.tiangolo.com/","_description":"Asyncer, async and await, focused on developer experience.","_organization":"tiangolo","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-14T00:00:00.000Z","_created_at":"2022-01-04T00:00:00.000Z","_age_weeks":48,"_stars_per_week":18.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/asyncer/master/README.md","_readme_localurl":"tiangolo~asyncer~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tiangolo/asyncer/master/pyproject.toml"],"_requirements_localurls":["tiangolo~asyncer~pyproject.toml"]},{"index":750,"category":"data","githuburl":"https://github.com/pytorch/data","featured":null,"links":null,"description":null,"_repopath":"pytorch/data","_reponame":"data","_stars":865,"_forks":100,"_watches":26,"_topics":[],"_language":"Python","_homepage":"","_description":"data: A PyTorch repo for data loading and utilities to be shared by the PyTorch domain libraries.","_organization":"pytorch","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2021-05-12T00:00:00.000Z","_age_weeks":82,"_stars_per_week":10.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/data/master/README.md","_readme_localurl":"pytorch~data~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/data/master/requirements.txt","https://raw.githubusercontent.com/pytorch/data/master/setup.py","https://raw.githubusercontent.com/pytorch/data/master/pyproject.toml"],"_requirements_localurls":["pytorch~data~requirements.txt","pytorch~data~setup.py","pytorch~data~pyproject.toml"]},{"index":219,"category":"template","githuburl":"https://github.com/tezromach/python-package-template","featured":1.0,"links":null,"description":null,"_repopath":"tezromach/python-package-template","_reponame":"python-package-template","_stars":865,"_forks":85,"_watches":6,"_topics":["python","cookiecutter","best-practices","semantic-versions","python-packages","codestyle","formatters","makefile","poetry","template"],"_language":"Python","_homepage":"","_description":"python-package-template: \ud83d\ude80 Your next Python package needs a bleeding-edge project structure.","_organization":"tezromach","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-05-18T00:00:00.000Z","_created_at":"2020-04-15T00:00:00.000Z","_age_weeks":138,"_stars_per_week":6.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tezromach/python-package-template/master/README.md","_readme_localurl":"tezromach~python-package-template~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tezromach/python-package-template/master/pyproject.toml"],"_requirements_localurls":["tezromach~python-package-template~pyproject.toml"]},{"index":341,"category":"term","githuburl":"https://github.com/jquast/blessed","featured":null,"links":null,"description":null,"_repopath":"jquast/blessed","_reponame":"blessed","_stars":863,"_forks":67,"_watches":24,"_topics":["terminal","curses","cli"],"_language":"Python","_homepage":"http://pypi.python.org/pypi/blessed","_description":"Blessed is an easy, practical library for making python terminal apps","_organization":"jquast","_updated_at":"2022-11-30T00:00:00.000Z","_last_commit_date":"2022-09-27T00:00:00.000Z","_created_at":"2014-03-01T00:00:00.000Z","_age_weeks":457,"_stars_per_week":1.89,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jquast/blessed/master/README.rst","_readme_localurl":"jquast~blessed~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jquast/blessed/master/requirements.txt","https://raw.githubusercontent.com/jquast/blessed/master/setup.py"],"_requirements_localurls":["jquast~blessed~requirements.txt","jquast~blessed~setup.py"]},{"index":392,"category":"pandas","githuburl":"https://github.com/tkrabel/bamboolib","featured":null,"links":null,"description":null,"_repopath":"tkrabel/bamboolib","_reponame":"bamboolib","_stars":854,"_forks":92,"_watches":31,"_topics":["pandas","pandas-dataframes","jupyter-notebook","jupyterlab","python"],"_language":"Jupyter Notebook","_homepage":"https://bamboolib.com","_description":"bamboolib - a GUI for pandas DataFrames","_organization":"tkrabel","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-09-27T00:00:00.000Z","_created_at":"2019-05-29T00:00:00.000Z","_age_weeks":184,"_stars_per_week":4.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tkrabel/bamboolib/master/README.md","_readme_localurl":"tkrabel~bamboolib~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":204,"category":"debug","githuburl":"https://github.com/alexmojaki/snoop","featured":null,"links":null,"description":null,"_repopath":"alexmojaki/snoop","_reponame":"snoop","_stars":848,"_forks":29,"_watches":16,"_topics":["python","debugging","debugger","debugging-tools","logging"],"_language":"Python","_homepage":"","_description":"snoop: A powerful set of Python debugging tools, based on PySnooper","_organization":"alexmojaki","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2019-05-13T00:00:00.000Z","_age_weeks":186,"_stars_per_week":4.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alexmojaki/snoop/master/README.md","_readme_localurl":"alexmojaki~snoop~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/alexmojaki/snoop/master/setup.py","https://raw.githubusercontent.com/alexmojaki/snoop/master/pyproject.toml"],"_requirements_localurls":["alexmojaki~snoop~setup.py","alexmojaki~snoop~pyproject.toml"]},{"index":700,"category":"perf","githuburl":"https://github.com/intel/scikit-learn-intelex","featured":null,"links":null,"description":null,"_repopath":"intel/scikit-learn-intelex","_reponame":"scikit-learn-intelex","_stars":847,"_forks":135,"_watches":28,"_topics":["oneapi","scikit-learn","machine-learning-algorithms","data-analysis","machine-learning","python","swrepo","ai-machine-learning","big-data","analytics","ai-training","ai-inference","gpu","intel"],"_language":"Python","_homepage":"https://intel.github.io/scikit-learn-intelex/","_description":"scikit-learn-intelex: Intel(R) Extension for Scikit-learn is a seamless way to speed up your Scikit-learn application","_organization":"intel","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2018-08-07T00:00:00.000Z","_age_weeks":226,"_stars_per_week":3.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/intel/scikit-learn-intelex/master/README.md","_readme_localurl":"intel~scikit-learn-intelex~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/intel/scikit-learn-intelex/master/requirements.txt","https://raw.githubusercontent.com/intel/scikit-learn-intelex/master/setup.py"],"_requirements_localurls":["intel~scikit-learn-intelex~requirements.txt","intel~scikit-learn-intelex~setup.py"]},{"index":347,"category":"nlp","githuburl":"https://github.com/norskregnesentral/skweak","featured":null,"links":null,"description":null,"_repopath":"norskregnesentral/skweak","_reponame":"skweak","_stars":845,"_forks":67,"_watches":27,"_topics":["weak-supervision","nlp-machine-learning","distant-supervision","nlp-library","spacy","python","data-science","training-data","natural-language-processing"],"_language":"Python","_homepage":"","_description":"skweak: A software toolkit for weak supervision applied to NLP tasks","_organization":"norskregnesentral","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-08T00:00:00.000Z","_created_at":"2021-03-16T00:00:00.000Z","_age_weeks":90,"_stars_per_week":9.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/norskregnesentral/skweak/master/README.md","_readme_localurl":"norskregnesentral~skweak~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/norskregnesentral/skweak/master/requirements.txt","https://raw.githubusercontent.com/norskregnesentral/skweak/master/setup.py"],"_requirements_localurls":["norskregnesentral~skweak~requirements.txt","norskregnesentral~skweak~setup.py"]},{"index":628,"category":"data","githuburl":"https://github.com/intake/intake","featured":null,"links":null,"description":null,"_repopath":"intake/intake","_reponame":"intake","_stars":841,"_forks":125,"_watches":41,"_topics":["python","data-access","data-catalog"],"_language":"Python","_homepage":"https://intake.readthedocs.io/","_description":"Intake is a lightweight package for finding, investigating, loading and disseminating data.","_organization":"intake","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2017-08-14T00:00:00.000Z","_age_weeks":277,"_stars_per_week":3.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/intake/intake/master/README.md","_readme_localurl":"intake~intake~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/intake/intake/master/requirements.txt","https://raw.githubusercontent.com/intake/intake/master/setup.py"],"_requirements_localurls":["intake~intake~requirements.txt","intake~intake~setup.py"]},{"index":484,"category":"gis","githuburl":"https://github.com/sentinelsat/sentinelsat","featured":null,"links":null,"description":null,"_repopath":"sentinelsat/sentinelsat","_reponame":"sentinelsat","_stars":833,"_forks":225,"_watches":59,"_topics":["sentinel","copernicus","esa","remote-sensing","satellite-imagery","geographic-data","open-data","hacktoberfest"],"_language":"Python","_homepage":"https://sentinelsat.readthedocs.io","_description":"sentinelsat: Search and download Copernicus Sentinel satellite images","_organization":"sentinelsat","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-03T00:00:00.000Z","_created_at":"2015-05-22T00:00:00.000Z","_age_weeks":393,"_stars_per_week":2.12,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/README.rst","_readme_localurl":"sentinelsat~sentinelsat~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/requirements.txt","https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/setup.py","https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/pyproject.toml"],"_requirements_localurls":["sentinelsat~sentinelsat~requirements.txt","sentinelsat~sentinelsat~setup.py","sentinelsat~sentinelsat~pyproject.toml"]},{"index":639,"category":"ml","githuburl":"https://github.com/dask/dask-ml","featured":null,"links":null,"description":null,"_repopath":"dask/dask-ml","_reponame":"dask-ml","_stars":832,"_forks":236,"_watches":40,"_topics":["hacktoberfest"],"_language":"Python","_homepage":"http://ml.dask.org","_description":"dask-ml: Scalable Machine Learning with Dask","_organization":"dask","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-10-19T00:00:00.000Z","_created_at":"2017-06-15T00:00:00.000Z","_age_weeks":285,"_stars_per_week":2.91,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dask/dask-ml/master/README.rst","_readme_localurl":"dask~dask-ml~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dask/dask-ml/master/setup.py"],"_requirements_localurls":["dask~dask-ml~setup.py"]},{"index":697,"category":"data","githuburl":"https://github.com/scholarly-python-package/scholarly","featured":null,"links":null,"description":null,"_repopath":"scholarly-python-package/scholarly","_reponame":"scholarly","_stars":830,"_forks":249,"_watches":24,"_topics":["scholar","googlescholar","scholarly-articles","scholarly-communications","python3","python-3","python","citation-network","citation-analysis","citations","citation-index","publication-data"],"_language":"Python","_homepage":"https://scholarly.readthedocs.io/","_description":"scholarly: Retrieve author and publication information from Google Scholar in a friendly, Pythonic way without having to worry about CAPTCHAs!","_organization":"scholarly-python-package","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2014-12-02T00:00:00.000Z","_age_weeks":418,"_stars_per_week":1.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/README.md","_readme_localurl":"scholarly-python-package~scholarly~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/requirements.txt","https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/setup.py","https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/pyproject.toml"],"_requirements_localurls":["scholarly-python-package~scholarly~requirements.txt","scholarly-python-package~scholarly~setup.py","scholarly-python-package~scholarly~pyproject.toml"]},{"index":445,"category":"gis","githuburl":"https://github.com/pyproj4/pyproj","featured":null,"links":null,"description":null,"_repopath":"pyproj4/pyproj","_reponame":"pyproj","_stars":824,"_forks":188,"_watches":30,"_topics":["geospatial","python","coordinate-systems","coordinate-transformation","cartographic-projection","geodesic","hacktoberfest"],"_language":"Python","_homepage":"https://pyproj4.github.io/pyproj","_description":"pyproj: Python interface to PROJ (cartographic projections and coordinate transformations library)","_organization":"pyproj4","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2014-12-29T00:00:00.000Z","_age_weeks":414,"_stars_per_week":1.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyproj4/pyproj/master/README.md","_readme_localurl":"pyproj4~pyproj~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyproj4/pyproj/master/setup.py","https://raw.githubusercontent.com/pyproj4/pyproj/master/pyproject.toml"],"_requirements_localurls":["pyproj4~pyproj~setup.py","pyproj4~pyproj~pyproject.toml"]},{"index":887,"category":"sim","githuburl":"https://github.com/pyscf/pyscf","featured":null,"links":null,"description":null,"_repopath":"pyscf/pyscf","_reponame":"pyscf","_stars":816,"_forks":436,"_watches":77,"_topics":[],"_language":"Python","_homepage":"","_description":"pyscf: Python module for quantum chemistry","_organization":"pyscf","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2014-05-02T00:00:00.000Z","_age_weeks":448,"_stars_per_week":1.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyscf/pyscf/master/README.md","_readme_localurl":"pyscf~pyscf~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyscf/pyscf/master/setup.py"],"_requirements_localurls":["pyscf~pyscf~setup.py"]},{"index":712,"category":"ml","githuburl":"https://github.com/google-research/deeplab2","featured":null,"links":null,"description":null,"_repopath":"google-research/deeplab2","_reponame":"deeplab2","_stars":813,"_forks":137,"_watches":19,"_topics":[],"_language":"Python","_homepage":"","_description":"DeepLab2 is a TensorFlow library for deep labeling, aiming to provide a unified and state-of-the-art TensorFlow codebase for dense pixel labeling tasks.","_organization":"google-research","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-05T00:00:00.000Z","_created_at":"2021-05-12T00:00:00.000Z","_age_weeks":82,"_stars_per_week":9.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google-research/deeplab2/master/README.md","_readme_localurl":"google-research~deeplab2~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":468,"category":"ml","githuburl":"https://github.com/huggingface/optimum","featured":null,"links":null,"description":null,"_repopath":"huggingface/optimum","_reponame":"optimum","_stars":808,"_forks":98,"_watches":35,"_topics":["onnx","pytorch","inference","training","intel","graphcore","onnxruntime","transformers","quantization","habana","optimization"],"_language":"Python","_homepage":"https://huggingface.co/docs/optimum/","_description":"optimum: \ud83c\udfce\ufe0f Accelerate training and inference of \ud83e\udd17 Transformers with easy to use hardware optimization tools","_organization":"huggingface","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2021-07-20T00:00:00.000Z","_age_weeks":72,"_stars_per_week":11.2,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/optimum/master/README.md","_readme_localurl":"huggingface~optimum~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/optimum/master/setup.py","https://raw.githubusercontent.com/huggingface/optimum/master/pyproject.toml"],"_requirements_localurls":["huggingface~optimum~setup.py","huggingface~optimum~pyproject.toml"]},{"index":772,"category":"nlp","githuburl":"https://github.com/huggingface/setfit","featured":null,"links":null,"description":null,"_repopath":"huggingface/setfit","_reponame":"setfit","_stars":796,"_forks":68,"_watches":13,"_topics":["few-shot-learning","nlp","sentence-transformers"],"_language":"Python","_homepage":"","_description":"setfit: Efficient few-shot learning with Sentence Transformers","_organization":"huggingface","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2022-06-30T00:00:00.000Z","_age_weeks":22,"_stars_per_week":34.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/setfit/master/README.md","_readme_localurl":"huggingface~setfit~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/setfit/master/setup.py"],"_requirements_localurls":["huggingface~setfit~setup.py"]},{"index":850,"category":"util","githuburl":"https://github.com/wolph/python-progressbar","featured":null,"links":null,"description":null,"_repopath":"wolph/python-progressbar","_reponame":"python-progressbar","_stars":792,"_forks":95,"_watches":22,"_topics":["python","progressbar","progress-bar","rate","eta","percentage","console","terminal","time","progress","bar","cli","gui","library"],"_language":"Python","_homepage":"http://progressbar-2.readthedocs.org/en/latest/","_description":"python-progressbar: Progressbar 2 - A progress bar for Python 2 and Python 3 - \"pip install progressbar2\"","_organization":"wolph","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2012-02-20T00:00:00.000Z","_age_weeks":563,"_stars_per_week":1.41,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/wolph/python-progressbar/master/README.rst","_readme_localurl":"wolph~python-progressbar~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/wolph/python-progressbar/master/setup.py"],"_requirements_localurls":["wolph~python-progressbar~setup.py"]},{"index":395,"category":"web","githuburl":"https://github.com/emmett-framework/emmett","featured":null,"links":null,"description":null,"_repopath":"emmett-framework/emmett","_reponame":"emmett","_stars":792,"_forks":63,"_watches":29,"_topics":["python","web-framework","asgi","asyncio","emmett"],"_language":"Python","_homepage":"","_description":"emmett: The web framework for inventors","_organization":"emmett-framework","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2014-10-20T00:00:00.000Z","_age_weeks":424,"_stars_per_week":1.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/emmett-framework/emmett/master/README.md","_readme_localurl":"emmett-framework~emmett~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/emmett-framework/emmett/master/setup.py","https://raw.githubusercontent.com/emmett-framework/emmett/master/pyproject.toml"],"_requirements_localurls":["emmett-framework~emmett~setup.py","emmett-framework~emmett~pyproject.toml"]},{"index":490,"category":"viz","githuburl":"https://github.com/luispedro/mahotas","featured":null,"links":null,"description":null,"_repopath":"luispedro/mahotas","_reponame":"mahotas","_stars":783,"_forks":149,"_watches":47,"_topics":["computer-vision","numpy","python","c-plus-plus","python-2","python-3"],"_language":"Python","_homepage":"https://mahotas.rtfd.io","_description":"mahotas: Computer Vision in Python","_organization":"luispedro","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-11-14T00:00:00.000Z","_created_at":"2010-01-31T00:00:00.000Z","_age_weeks":670,"_stars_per_week":1.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/luispedro/mahotas/master/README.md","_readme_localurl":"luispedro~mahotas~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/luispedro/mahotas/master/requirements.txt","https://raw.githubusercontent.com/luispedro/mahotas/master/setup.py"],"_requirements_localurls":["luispedro~mahotas~requirements.txt","luispedro~mahotas~setup.py"]},{"index":226,"category":"sim","githuburl":"https://github.com/facebookresearch/droidlet","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/droidlet","_reponame":"fairo","_stars":783,"_forks":80,"_watches":38,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"fairo: A modular embodied agent architecture and platform for building embodied agents","_organization":"facebookresearch","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2020-11-02T00:00:00.000Z","_age_weeks":109,"_stars_per_week":7.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/droidlet/master/README.md","_readme_localurl":"facebookresearch~droidlet~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/droidlet/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/droidlet/master/setup.py","https://raw.githubusercontent.com/facebookresearch/droidlet/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~droidlet~requirements.txt","facebookresearch~droidlet~setup.py","facebookresearch~droidlet~pyproject.toml"]},{"index":738,"category":"perf","githuburl":"https://github.com/zerointensity/pointers.py","featured":null,"links":null,"description":null,"_repopath":"zerointensity/pointers.py","_reponame":"pointers.py","_stars":765,"_forks":9,"_watches":3,"_topics":["python","pointers","python-pointers"],"_language":"Python","_homepage":"https://pointers.zintensity.dev/","_description":"pointers.py: Bringing the hell of pointers to Python.","_organization":"zerointensity","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2022-03-09T00:00:00.000Z","_age_weeks":39,"_stars_per_week":19.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zerointensity/pointers.py/master/README.md","_readme_localurl":"zerointensity~pointers.py~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/zerointensity/pointers.py/master/requirements.txt","https://raw.githubusercontent.com/zerointensity/pointers.py/master/setup.py","https://raw.githubusercontent.com/zerointensity/pointers.py/master/pyproject.toml"],"_requirements_localurls":["zerointensity~pointers.py~requirements.txt","zerointensity~pointers.py~setup.py","zerointensity~pointers.py~pyproject.toml"]},{"index":810,"category":"data","githuburl":"https://github.com/neo4j/neo4j-python-driver","featured":null,"links":null,"description":null,"_repopath":"neo4j/neo4j-python-driver","_reponame":"neo4j-python-driver","_stars":757,"_forks":167,"_watches":99,"_topics":["python","graph-database","driver","neo4j","database-driver","protocol","cypher","query-language","python3","binary-protocol"],"_language":"Python","_homepage":"https://neo4j.com/docs/api/python-driver/current/","_description":"neo4j-python-driver: Neo4j Bolt driver for Python","_organization":"neo4j","_updated_at":"2022-11-29T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2015-05-05T00:00:00.000Z","_age_weeks":396,"_stars_per_week":1.91,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/neo4j/neo4j-python-driver/master/README.rst","_readme_localurl":"neo4j~neo4j-python-driver~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/neo4j/neo4j-python-driver/master/requirements.txt","https://raw.githubusercontent.com/neo4j/neo4j-python-driver/master/setup.py","https://raw.githubusercontent.com/neo4j/neo4j-python-driver/master/pyproject.toml"],"_requirements_localurls":["neo4j~neo4j-python-driver~requirements.txt","neo4j~neo4j-python-driver~setup.py","neo4j~neo4j-python-driver~pyproject.toml"]},{"index":351,"category":"ml","githuburl":"https://github.com/jina-ai/finetuner","featured":null,"links":null,"description":null,"_repopath":"jina-ai/finetuner","_reponame":"finetuner","_stars":754,"_forks":37,"_watches":21,"_topics":["fine-tuning","pretrained-models","few-shot-learning","negative-sampling","metric-learning","siamese-network","triplet-loss","transfer-learning","jina","neural-search","finetuning","similarity-learning"],"_language":"Python","_homepage":"https://finetuner.jina.ai","_description":"finetuner: :dart: Task-oriented finetuning for better embeddings on neural search","_organization":"jina-ai","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2021-08-11T00:00:00.000Z","_age_weeks":69,"_stars_per_week":10.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jina-ai/finetuner/master/README.md","_readme_localurl":"jina-ai~finetuner~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jina-ai/finetuner/master/setup.py","https://raw.githubusercontent.com/jina-ai/finetuner/master/pyproject.toml"],"_requirements_localurls":["jina-ai~finetuner~setup.py","jina-ai~finetuner~pyproject.toml"]},{"index":334,"category":"util","githuburl":"https://github.com/clarete/forbiddenfruit","featured":null,"links":null,"description":null,"_repopath":"clarete/forbiddenfruit","_reponame":"forbiddenfruit","_stars":748,"_forks":50,"_watches":28,"_topics":["python","monkey-patching"],"_language":"Python","_homepage":"https://clarete.li/forbiddenfruit/","_description":"forbiddenfruit: Patch built-in python objects","_organization":"clarete","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-03-12T00:00:00.000Z","_created_at":"2013-04-03T00:00:00.000Z","_age_weeks":505,"_stars_per_week":1.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/clarete/forbiddenfruit/master/README.md","_readme_localurl":"clarete~forbiddenfruit~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/clarete/forbiddenfruit/master/setup.py"],"_requirements_localurls":["clarete~forbiddenfruit~setup.py"]},{"index":146,"category":"util","githuburl":"https://github.com/zenodo/zenodo","featured":null,"links":null,"description":null,"_repopath":"zenodo/zenodo","_reponame":"zenodo","_stars":747,"_forks":224,"_watches":38,"_topics":["zenodo","invenio","python","research-data-repository","research-data-management","flask","digital-library","open-science","open-access","scientific-publications","library-management","elasticsearch","postgresql","inveniosoftware"],"_language":"Python","_homepage":"https://zenodo.org","_description":"zenodo: Research. Shared.","_organization":"zenodo","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2013-02-11T00:00:00.000Z","_age_weeks":512,"_stars_per_week":1.46,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/zenodo/zenodo/master/README.rst","_readme_localurl":"zenodo~zenodo~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/zenodo/zenodo/master/requirements.txt","https://raw.githubusercontent.com/zenodo/zenodo/master/setup.py"],"_requirements_localurls":["zenodo~zenodo~requirements.txt","zenodo~zenodo~setup.py"]},{"index":658,"category":"util","githuburl":"https://github.com/rasbt/watermark","featured":null,"links":null,"description":null,"_repopath":"rasbt/watermark","_reponame":"watermark","_stars":747,"_forks":83,"_watches":13,"_topics":["python","magic-extension","jupyter","ipython"],"_language":"Python","_homepage":null,"_description":"watermark: An IPython magic extension for printing date and time stamps, version numbers, and hardware information","_organization":"rasbt","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-09-13T00:00:00.000Z","_created_at":"2014-07-30T00:00:00.000Z","_age_weeks":436,"_stars_per_week":1.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/watermark/master/README.md","_readme_localurl":"rasbt~watermark~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rasbt/watermark/master/setup.py"],"_requirements_localurls":["rasbt~watermark~setup.py"]},{"index":634,"category":"profiling","githuburl":"https://github.com/csurfer/pyheat","featured":null,"links":null,"description":null,"_repopath":"csurfer/pyheat","_reponame":"pyheat","_stars":734,"_forks":41,"_watches":13,"_topics":["profiling","python","heatmap","matplotlib"],"_language":"Python","_homepage":"","_description":"pyheat: pprofile + matplotlib = Python program profiled as an awesome heatmap!","_organization":"csurfer","_updated_at":"2022-11-30T00:00:00.000Z","_last_commit_date":"2021-09-18T00:00:00.000Z","_created_at":"2017-02-04T00:00:00.000Z","_age_weeks":304,"_stars_per_week":2.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/csurfer/pyheat/master/README.md","_readme_localurl":"csurfer~pyheat~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/csurfer/pyheat/master/requirements.txt","https://raw.githubusercontent.com/csurfer/pyheat/master/setup.py"],"_requirements_localurls":["csurfer~pyheat~requirements.txt","csurfer~pyheat~setup.py"]},{"index":791,"category":"sim","githuburl":"https://github.com/viblo/pymunk","featured":1.0,"links":null,"description":null,"_repopath":"viblo/pymunk","_reponame":"pymunk","_stars":729,"_forks":179,"_watches":21,"_topics":["python","physics-2d","library","pygame","pyglet","physics-engine","physics-simulation","python-library"],"_language":"Python","_homepage":"http://www.pymunk.org","_description":"Pymunk is a easy-to-use pythonic 2d physics library that can be used whenever you need 2d rigid body physics from Python","_organization":"viblo","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2013-10-02T00:00:00.000Z","_age_weeks":479,"_stars_per_week":1.52,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/viblo/pymunk/master/README.rst","_readme_localurl":"viblo~pymunk~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/viblo/pymunk/master/setup.py","https://raw.githubusercontent.com/viblo/pymunk/master/pyproject.toml"],"_requirements_localurls":["viblo~pymunk~setup.py","viblo~pymunk~pyproject.toml"]},{"index":853,"category":"data","githuburl":"https://github.com/eliasdabbas/advertools","featured":null,"links":null,"description":null,"_repopath":"eliasdabbas/advertools","_reponame":"advertools","_stars":727,"_forks":158,"_watches":33,"_topics":["marketing","advertising","adwords","python","digital-marketing","online-marketing","keywords","search-engine-marketing","twitter-api","search-engine-optimization","seo","serp","social-media","youtube","robots-txt","scrapy","seo-crawler","log-analysis","google-ads","logfile-parser"],"_language":"Python","_homepage":"https://advertools.readthedocs.io","_description":"advertools - online marketing productivity and analysis tools","_organization":"eliasdabbas","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-25T00:00:00.000Z","_created_at":"2017-05-14T00:00:00.000Z","_age_weeks":290,"_stars_per_week":2.5,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/eliasdabbas/advertools/master/README.rst","_readme_localurl":"eliasdabbas~advertools~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/eliasdabbas/advertools/master/setup.py","https://raw.githubusercontent.com/eliasdabbas/advertools/master/pyproject.toml"],"_requirements_localurls":["eliasdabbas~advertools~setup.py","eliasdabbas~advertools~pyproject.toml"]},{"index":900,"category":"ml","githuburl":"https://github.com/shankarpandala/lazypredict","featured":null,"links":null,"description":null,"_repopath":"shankarpandala/lazypredict","_reponame":"lazypredict","_stars":721,"_forks":101,"_watches":12,"_topics":["machine-learning","automl","regression","classification"],"_language":"Python","_homepage":"","_description":"lazypredict: Lazy Predict help build a lot of basic models without much code and helps understand which models works better without any parameter tuning","_organization":"shankarpandala","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-09-28T00:00:00.000Z","_created_at":"2019-11-16T00:00:00.000Z","_age_weeks":159,"_stars_per_week":4.52,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/shankarpandala/lazypredict/master/README.rst","_readme_localurl":"shankarpandala~lazypredict~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/shankarpandala/lazypredict/master/requirements.txt","https://raw.githubusercontent.com/shankarpandala/lazypredict/master/setup.py"],"_requirements_localurls":["shankarpandala~lazypredict~requirements.txt","shankarpandala~lazypredict~setup.py"]},{"index":891,"category":"util","githuburl":"https://github.com/xl0/lovely-tensors","featured":null,"links":null,"description":null,"_repopath":"xl0/lovely-tensors","_reponame":"lovely-tensors","_stars":715,"_forks":9,"_watches":5,"_topics":["deep-learning","library","pytorch","statistics","visualization"],"_language":"Jupyter Notebook","_homepage":"https://xl0.github.io/lovely-tensors","_description":"lovely-tensors: Tensors, ready for human consumption","_organization":"xl0","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2022-10-07T00:00:00.000Z","_age_weeks":8,"_stars_per_week":82.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/xl0/lovely-tensors/master/README.md","_readme_localurl":"xl0~lovely-tensors~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/xl0/lovely-tensors/master/setup.py"],"_requirements_localurls":["xl0~lovely-tensors~setup.py"]},{"index":291,"category":"pandas","githuburl":"https://github.com/stitchfix/hamilton","featured":null,"links":null,"description":null,"_repopath":"stitchfix/hamilton","_reponame":"hamilton","_stars":713,"_forks":35,"_watches":21,"_topics":["python","pandas","dag","data-science","data-engineering","numpy","software-engineering","etl-framework","etl-pipeline","etl","feature-engineering","featurization","dataframe","stitch-fix","data-platform","hamilton","hamiltonian","machine-learning"],"_language":"Python","_homepage":"https://hamilton-docs.gitbook.io/docs/","_description":"hamilton: A scalable general purpose micro-framework for defining dataflows. You can use it to build dataframes, numpy matrices, python objects, ML models, etc.","_organization":"stitchfix","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2020-05-26T00:00:00.000Z","_age_weeks":132,"_stars_per_week":5.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/stitchfix/hamilton/master/README.md","_readme_localurl":"stitchfix~hamilton~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/stitchfix/hamilton/master/requirements.txt","https://raw.githubusercontent.com/stitchfix/hamilton/master/setup.py"],"_requirements_localurls":["stitchfix~hamilton~requirements.txt","stitchfix~hamilton~setup.py"]},{"index":358,"category":"data","githuburl":"https://github.com/hyperqueryhq/whale","featured":null,"links":null,"description":null,"_repopath":"hyperqueryhq/whale","_reponame":"whale","_stars":711,"_forks":39,"_watches":42,"_topics":["data-documentation","data-catalog","data-discovery"],"_language":"Python","_homepage":"https://rsyi.gitbook.io/whale","_description":"whale: \ud83d\udc33 The stupidly simple CLI workspace for your data warehouse.","_organization":"hyperqueryhq","_updated_at":"2022-11-21T00:00:00.000Z","_last_commit_date":"2022-10-13T00:00:00.000Z","_created_at":"2020-05-27T00:00:00.000Z","_age_weeks":132,"_stars_per_week":5.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hyperqueryhq/whale/master/README.md","_readme_localurl":"hyperqueryhq~whale~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":621,"category":"testing","githuburl":"https://github.com/wolever/parameterized","featured":null,"links":null,"description":null,"_repopath":"wolever/parameterized","_reponame":"parameterized","_stars":708,"_forks":94,"_watches":18,"_topics":[],"_language":"Python","_homepage":"","_description":"Parameterized testing with any Python test framework","_organization":"wolever","_updated_at":"2022-11-29T00:00:00.000Z","_last_commit_date":"2021-01-09T00:00:00.000Z","_created_at":"2012-03-10T00:00:00.000Z","_age_weeks":560,"_stars_per_week":1.26,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/wolever/parameterized/master/README.rst","_readme_localurl":"wolever~parameterized~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/wolever/parameterized/master/setup.py"],"_requirements_localurls":["wolever~parameterized~setup.py"]},{"index":419,"category":"util","githuburl":"https://github.com/sethmmorton/natsort","featured":null,"links":null,"description":null,"_repopath":"sethmmorton/natsort","_reponame":"natsort","_stars":706,"_forks":40,"_watches":14,"_topics":["python","natural-sort","sorting-interface","sorting","natsort"],"_language":"Python","_homepage":"https://pypi.org/project/natsort/","_description":"natsort: Simple yet flexible natural sorting in Python.","_organization":"sethmmorton","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2022-09-01T00:00:00.000Z","_created_at":"2012-05-03T00:00:00.000Z","_age_weeks":552,"_stars_per_week":1.28,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sethmmorton/natsort/master/README.rst","_readme_localurl":"sethmmorton~natsort~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sethmmorton/natsort/master/setup.py"],"_requirements_localurls":["sethmmorton~natsort~setup.py"]},{"index":559,"category":"jupyter","githuburl":"https://github.com/vizzuhq/ipyvizzu","featured":null,"links":null,"description":null,"_repopath":"vizzuhq/ipyvizzu","_reponame":"ipyvizzu","_stars":706,"_forks":56,"_watches":14,"_topics":["jupyter","jupyter-notebook","python","plotting","graphs","data-visualization","graphing","ipython","chart","charts","dataviz","animation","storytelling","charting","vizzu"],"_language":"Python","_homepage":"https://ipyvizzu.vizzuhq.com","_description":"ipyvizzu: Build animated charts in Jupyter Notebook and in many other environments with a simple Python syntax.","_organization":"vizzuhq","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2022-01-05T00:00:00.000Z","_age_weeks":48,"_stars_per_week":14.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/README.md","_readme_localurl":"vizzuhq~ipyvizzu~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/requirements.txt","https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/setup.py"],"_requirements_localurls":["vizzuhq~ipyvizzu~requirements.txt","vizzuhq~ipyvizzu~setup.py"]},{"index":23,"category":"math","githuburl":"https://github.com/fredrik-johansson/mpmath","featured":null,"links":null,"description":null,"_repopath":"fredrik-johansson/mpmath","_reponame":"mpmath","_stars":702,"_forks":148,"_watches":39,"_topics":["python","arbitrary-precision","multiprecision","floating-point","special-functions","numerical-integration","numerical-methods","plotting","complex-numbers","ordinary-differential-equations","numerical-optimization"],"_language":"Python","_homepage":"http://mpmath.org","_description":"mpmath: Python library for arbitrary-precision floating-point arithmetic","_organization":"fredrik-johansson","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-07T00:00:00.000Z","_created_at":"2011-12-07T00:00:00.000Z","_age_weeks":574,"_stars_per_week":1.22,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/fredrik-johansson/mpmath/master/README.rst","_readme_localurl":"fredrik-johansson~mpmath~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/fredrik-johansson/mpmath/master/setup.py"],"_requirements_localurls":["fredrik-johansson~mpmath~setup.py"]},{"index":593,"category":"gis","githuburl":"https://github.com/matplotlib/basemap","featured":null,"links":null,"description":null,"_repopath":"matplotlib/basemap","_reponame":"basemap","_stars":701,"_forks":395,"_watches":60,"_topics":["gis","maps","plots"],"_language":"Python","_homepage":"","_description":"basemap: Plot on map projections (with coastlines and political boundaries) using matplotlib","_organization":"matplotlib","_updated_at":"2022-11-23T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2011-02-19T00:00:00.000Z","_age_weeks":615,"_stars_per_week":1.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/matplotlib/basemap/master/README.md","_readme_localurl":"matplotlib~basemap~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":701,"category":"profiling","githuburl":"https://github.com/pythonspeed/filprofiler","featured":null,"links":null,"description":null,"_repopath":"pythonspeed/filprofiler","_reponame":"filprofiler","_stars":690,"_forks":20,"_watches":8,"_topics":["python","memory-profiler","memory-profiling","memory-leak","memory-leaks","memory-leak-detection","memory-leak-finder","memory","memory-"],"_language":"Rust","_homepage":"https://pythonspeed.com/products/filmemoryprofiler/","_description":"filprofiler: A Python memory profiler for data processing and scientific computing applications","_organization":"pythonspeed","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2020-06-18T00:00:00.000Z","_age_weeks":128,"_stars_per_week":5.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pythonspeed/filprofiler/master/README.md","_readme_localurl":"pythonspeed~filprofiler~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pythonspeed/filprofiler/master/setup.py","https://raw.githubusercontent.com/pythonspeed/filprofiler/master/pyproject.toml"],"_requirements_localurls":["pythonspeed~filprofiler~setup.py","pythonspeed~filprofiler~pyproject.toml"]},{"index":325,"category":"security","githuburl":"https://github.com/trailofbits/pip-audit","featured":null,"links":null,"description":null,"_repopath":"trailofbits/pip-audit","_reponame":"pip-audit","_stars":686,"_forks":39,"_watches":19,"_topics":["security","security-audit","python","pip","supply-chain"],"_language":"Python","_homepage":"https://pypi.org/project/pip-audit/","_description":"pip-audit: Audits Python environments and dependency trees for known vulnerabilities","_organization":"trailofbits","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2021-09-02T00:00:00.000Z","_age_weeks":65,"_stars_per_week":10.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/trailofbits/pip-audit/master/README.md","_readme_localurl":"trailofbits~pip-audit~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/trailofbits/pip-audit/master/pyproject.toml"],"_requirements_localurls":["trailofbits~pip-audit~pyproject.toml"]},{"index":168,"category":"gis","githuburl":"https://github.com/openeventdata/mordecai","featured":null,"links":null,"description":null,"_repopath":"openeventdata/mordecai","_reponame":"mordecai","_stars":685,"_forks":94,"_watches":35,"_topics":["geoparsing","geonames","nlp","geocoding","spacy","toponym-resolution"],"_language":"Python","_homepage":"","_description":"mordecai: Full text geoparsing as a Python library","_organization":"openeventdata","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2021-02-01T00:00:00.000Z","_created_at":"2016-06-23T00:00:00.000Z","_age_weeks":336,"_stars_per_week":2.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openeventdata/mordecai/master/README.md","_readme_localurl":"openeventdata~mordecai~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/openeventdata/mordecai/master/requirements.txt","https://raw.githubusercontent.com/openeventdata/mordecai/master/setup.py"],"_requirements_localurls":["openeventdata~mordecai~requirements.txt","openeventdata~mordecai~setup.py"]},{"index":477,"category":"pandas","githuburl":"https://github.com/holoviz/hvplot","featured":null,"links":null,"description":null,"_repopath":"holoviz/hvplot","_reponame":"hvplot","_stars":682,"_forks":77,"_watches":23,"_topics":["holoviz","holoviews","plotting","datashader"],"_language":"Python","_homepage":"https://hvplot.holoviz.org","_description":"hvplot: A high-level plotting API for pandas, dask, xarray, and networkx built on HoloViews","_organization":"holoviz","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2018-03-19T00:00:00.000Z","_age_weeks":246,"_stars_per_week":2.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/hvplot/master/README.md","_readme_localurl":"holoviz~hvplot~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/hvplot/master/setup.py","https://raw.githubusercontent.com/holoviz/hvplot/master/pyproject.toml"],"_requirements_localurls":["holoviz~hvplot~setup.py","holoviz~hvplot~pyproject.toml"]},{"index":360,"category":"ml-ops","githuburl":"https://github.com/tensorflow/data-validation","featured":null,"links":null,"description":null,"_repopath":"tensorflow/data-validation","_reponame":"data-validation","_stars":682,"_forks":142,"_watches":47,"_topics":[],"_language":"Python","_homepage":"","_description":"data-validation: Library for exploring and validating machine learning data","_organization":"tensorflow","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2018-07-02T00:00:00.000Z","_age_weeks":231,"_stars_per_week":2.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/data-validation/master/README.md","_readme_localurl":"tensorflow~data-validation~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorflow/data-validation/master/setup.py","https://raw.githubusercontent.com/tensorflow/data-validation/master/pyproject.toml"],"_requirements_localurls":["tensorflow~data-validation~setup.py","tensorflow~data-validation~pyproject.toml"]},{"index":572,"category":"gis","githuburl":"https://github.com/developmentseed/landsat-util","featured":null,"links":null,"description":null,"_repopath":"developmentseed/landsat-util","_reponame":"landsat-util","_stars":681,"_forks":155,"_watches":125,"_topics":[],"_language":"Python","_homepage":null,"_description":"landsat-util: A utility to search, download and process Landsat 8 satellite imagery","_organization":"developmentseed","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2018-07-30T00:00:00.000Z","_created_at":"2014-08-01T00:00:00.000Z","_age_weeks":435,"_stars_per_week":1.56,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/landsat-util/master/README.rst","_readme_localurl":"developmentseed~landsat-util~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/developmentseed/landsat-util/master/requirements.txt","https://raw.githubusercontent.com/developmentseed/landsat-util/master/setup.py"],"_requirements_localurls":["developmentseed~landsat-util~requirements.txt","developmentseed~landsat-util~setup.py"]},{"index":393,"category":"perf","githuburl":"https://github.com/klen/py-frameworks-bench","featured":null,"links":null,"description":null,"_repopath":"klen/py-frameworks-bench","_reponame":"py-frameworks-bench","_stars":670,"_forks":78,"_watches":28,"_topics":["benchmark","python-frameworks"],"_language":"Python","_homepage":"https://klen.github.io/py-frameworks-bench/","_description":"py-frameworks-bench: Another benchmark for some python frameworks","_organization":"klen","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-03-14T00:00:00.000Z","_created_at":"2015-04-30T00:00:00.000Z","_age_weeks":396,"_stars_per_week":1.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/klen/py-frameworks-bench/master/README.md","_readme_localurl":"klen~py-frameworks-bench~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":164,"category":"nlp","githuburl":"https://github.com/explosion/spacy-stanza","featured":null,"links":null,"description":null,"_repopath":"explosion/spacy-stanza","_reponame":"spacy-stanza","_stars":661,"_forks":50,"_watches":25,"_topics":["nlp","natural-language-processing","machine-learning","data-science","spacy","spacy-pipeline","stanford-nlp","stanford-corenlp","stanford-machine-learning","corenlp","stanza"],"_language":"Python","_homepage":"","_description":"spacy-stanza: \ud83d\udca5 Use the latest Stanza (StanfordNLP) research models directly in spaCy","_organization":"explosion","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-05-27T00:00:00.000Z","_created_at":"2019-01-31T00:00:00.000Z","_age_weeks":200,"_stars_per_week":3.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/spacy-stanza/master/README.md","_readme_localurl":"explosion~spacy-stanza~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/explosion/spacy-stanza/master/requirements.txt","https://raw.githubusercontent.com/explosion/spacy-stanza/master/setup.py"],"_requirements_localurls":["explosion~spacy-stanza~requirements.txt","explosion~spacy-stanza~setup.py"]},{"index":483,"category":"gis","githuburl":"https://github.com/sentinel-hub/sentinelhub-py","featured":null,"links":null,"description":null,"_repopath":"sentinel-hub/sentinelhub-py","_reponame":"sentinelhub-py","_stars":654,"_forks":211,"_watches":49,"_topics":["python-library","sentinel-hub","aws","ogc-services","satellite-imagery"],"_language":"Python","_homepage":"http://sentinelhub-py.readthedocs.io/en/latest/","_description":"sentinelhub-py: Download and process satellite imagery in Python using Sentinel Hub services.","_organization":"sentinel-hub","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2022-10-06T00:00:00.000Z","_created_at":"2017-05-17T00:00:00.000Z","_age_weeks":290,"_stars_per_week":2.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sentinel-hub/sentinelhub-py/master/README.md","_readme_localurl":"sentinel-hub~sentinelhub-py~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sentinel-hub/sentinelhub-py/master/requirements.txt","https://raw.githubusercontent.com/sentinel-hub/sentinelhub-py/master/setup.py","https://raw.githubusercontent.com/sentinel-hub/sentinelhub-py/master/pyproject.toml"],"_requirements_localurls":["sentinel-hub~sentinelhub-py~requirements.txt","sentinel-hub~sentinelhub-py~setup.py","sentinel-hub~sentinelhub-py~pyproject.toml"]},{"index":818,"category":"ml","githuburl":"https://github.com/automl/tabpfn","featured":null,"links":null,"description":null,"_repopath":"automl/tabpfn","_reponame":"TabPFN","_stars":644,"_forks":44,"_watches":16,"_topics":[],"_language":"Python","_homepage":"https://arxiv.org/abs/2207.01848","_description":"TabPFN: Official implementation of the TabPFN and the tabpfn package.","_organization":"automl","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-17T00:00:00.000Z","_created_at":"2022-07-01T00:00:00.000Z","_age_weeks":22,"_stars_per_week":28.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/automl/tabpfn/master/README.md","_readme_localurl":"automl~tabpfn~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/automl/tabpfn/master/requirements.txt","https://raw.githubusercontent.com/automl/tabpfn/master/setup.py","https://raw.githubusercontent.com/automl/tabpfn/master/pyproject.toml"],"_requirements_localurls":["automl~tabpfn~requirements.txt","automl~tabpfn~setup.py","automl~tabpfn~pyproject.toml"]},{"index":882,"category":"time-series","githuburl":"https://github.com/winedarksea/autots","featured":null,"links":null,"description":null,"_repopath":"winedarksea/autots","_reponame":"AutoTS","_stars":638,"_forks":58,"_watches":13,"_topics":["time-series","machine-learning","automl","autots","forecasting","deep-learning","preprocessing","feature-engineering"],"_language":"Python","_homepage":"","_description":"AutoTS: Automated Time Series Forecasting","_organization":"winedarksea","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-15T00:00:00.000Z","_created_at":"2019-11-26T00:00:00.000Z","_age_weeks":158,"_stars_per_week":4.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/winedarksea/autots/master/README.md","_readme_localurl":"winedarksea~autots~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/winedarksea/autots/master/setup.py"],"_requirements_localurls":["winedarksea~autots~setup.py"]},{"index":629,"category":"gis","githuburl":"https://github.com/makepath/xarray-spatial","featured":null,"links":null,"description":null,"_repopath":"makepath/xarray-spatial","_reponame":"xarray-spatial","_stars":638,"_forks":73,"_watches":25,"_topics":["python","raster-analysis","spatial-analysis","numba","datashader","xarray"],"_language":"Python","_homepage":"https://xarray-spatial.org","_description":"xarray-spatial: Raster-based Spatial Analytics for Python","_organization":"makepath","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-06-22T00:00:00.000Z","_created_at":"2020-02-08T00:00:00.000Z","_age_weeks":147,"_stars_per_week":4.32,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/makepath/xarray-spatial/master/README.md","_readme_localurl":"makepath~xarray-spatial~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/makepath/xarray-spatial/master/requirements.txt","https://raw.githubusercontent.com/makepath/xarray-spatial/master/setup.py","https://raw.githubusercontent.com/makepath/xarray-spatial/master/pyproject.toml"],"_requirements_localurls":["makepath~xarray-spatial~requirements.txt","makepath~xarray-spatial~setup.py","makepath~xarray-spatial~pyproject.toml"]},{"index":475,"category":"viz","githuburl":"https://github.com/holoviz/holoviz","featured":1.0,"links":null,"description":null,"_repopath":"holoviz/holoviz","_reponame":"holoviz","_stars":635,"_forks":114,"_watches":35,"_topics":["holoviz","holoviews","geoviews","datashader","panel","hvplot","colorcet"],"_language":"Python","_homepage":"https://holoviz.org/","_description":"holoviz: High-level tools to simplify visualization in Python.","_organization":"holoviz","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2017-09-22T00:00:00.000Z","_age_weeks":271,"_stars_per_week":2.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/holoviz/master/README.md","_readme_localurl":"holoviz~holoviz~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/holoviz/master/setup.py","https://raw.githubusercontent.com/holoviz/holoviz/master/pyproject.toml"],"_requirements_localurls":["holoviz~holoviz~setup.py","holoviz~holoviz~pyproject.toml"]},{"index":620,"category":"jupyter","githuburl":"https://github.com/nbqa-dev/nbqa","featured":null,"links":null,"description":null,"_repopath":"nbqa-dev/nbqa","_reponame":"nbQA","_stars":634,"_forks":36,"_watches":6,"_topics":["python","jupyter-notebook","pre-commit","codequality","lint","isort","black","flake8","doctest","pyupgrade","pylint","mypy","yapf","pre-commit-hook"],"_language":"Python","_homepage":"https://nbqa.readthedocs.io/en/latest/index.html","_description":"nbQA: Run isort, pyupgrade, mypy, pylint, flake8, and more on Jupyter Notebooks","_organization":"nbqa-dev","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-11-21T00:00:00.000Z","_created_at":"2020-07-11T00:00:00.000Z","_age_weeks":125,"_stars_per_week":5.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nbqa-dev/nbqa/master/README.md","_readme_localurl":"nbqa-dev~nbqa~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nbqa-dev/nbqa/master/setup.py","https://raw.githubusercontent.com/nbqa-dev/nbqa/master/pyproject.toml"],"_requirements_localurls":["nbqa-dev~nbqa~setup.py","nbqa-dev~nbqa~pyproject.toml"]},{"index":637,"category":"util","githuburl":"https://github.com/samuelcolvin/python-devtools","featured":null,"links":null,"description":null,"_repopath":"samuelcolvin/python-devtools","_reponame":"python-devtools","_stars":627,"_forks":31,"_watches":8,"_topics":["python-devtools","python","devtools"],"_language":"Python","_homepage":"https://python-devtools.helpmanual.io/","_description":"python-devtools: Dev tools for python","_organization":"samuelcolvin","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2017-08-20T00:00:00.000Z","_age_weeks":276,"_stars_per_week":2.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/samuelcolvin/python-devtools/master/README.md","_readme_localurl":"samuelcolvin~python-devtools~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/samuelcolvin/python-devtools/master/requirements.txt","https://raw.githubusercontent.com/samuelcolvin/python-devtools/master/pyproject.toml"],"_requirements_localurls":["samuelcolvin~python-devtools~requirements.txt","samuelcolvin~python-devtools~pyproject.toml"]},{"index":344,"category":"data","githuburl":"https://github.com/scikit-hep/awkward-1.0","featured":null,"links":null,"description":null,"_repopath":"scikit-hep/awkward-1.0","_reponame":"awkward","_stars":625,"_forks":63,"_watches":17,"_topics":["json","numpy","data-analysis","jagged-array","ragged-array","columnar-format","pandas","numba","apache-arrow","cern-root","scikit-hep","python"],"_language":"Python","_homepage":"https://awkward-array.org","_description":"awkward: Manipulate JSON-like data with NumPy-like idioms.","_organization":"scikit-hep","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-08-14T00:00:00.000Z","_age_weeks":173,"_stars_per_week":3.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scikit-hep/awkward-1.0/master/README.md","_readme_localurl":"scikit-hep~awkward-1.0~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scikit-hep/awkward-1.0/master/pyproject.toml"],"_requirements_localurls":["scikit-hep~awkward-1.0~pyproject.toml"]},{"index":640,"category":"data","githuburl":"https://github.com/dask/fastparquet","featured":null,"links":null,"description":null,"_repopath":"dask/fastparquet","_reponame":"fastparquet","_stars":623,"_forks":161,"_watches":18,"_topics":["hacktoberfest"],"_language":"Python","_homepage":null,"_description":"fastparquet: python implementation of the parquet columnar file format.","_organization":"dask","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2015-11-06T00:00:00.000Z","_age_weeks":369,"_stars_per_week":1.69,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dask/fastparquet/master/README.rst","_readme_localurl":"dask~fastparquet~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dask/fastparquet/master/requirements.txt","https://raw.githubusercontent.com/dask/fastparquet/master/setup.py","https://raw.githubusercontent.com/dask/fastparquet/master/pyproject.toml"],"_requirements_localurls":["dask~fastparquet~requirements.txt","dask~fastparquet~setup.py","dask~fastparquet~pyproject.toml"]},{"index":397,"category":"web","githuburl":"https://github.com/klen/muffin","featured":null,"links":null,"description":null,"_repopath":"klen/muffin","_reponame":"muffin","_stars":621,"_forks":25,"_watches":31,"_topics":["python","asyncio","trio","asgi","webframework","muffin","curio"],"_language":"Python","_homepage":"","_description":"Muffin is a fast, simple and asyncronous web-framework for Python 3","_organization":"klen","_updated_at":"2022-10-28T00:00:00.000Z","_last_commit_date":"2022-08-12T00:00:00.000Z","_created_at":"2015-02-03T00:00:00.000Z","_age_weeks":409,"_stars_per_week":1.52,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/klen/muffin/master/README.rst","_readme_localurl":"klen~muffin~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/klen/muffin/master/setup.py"],"_requirements_localurls":["klen~muffin~setup.py"]},{"index":849,"category":"util","githuburl":"https://github.com/fsspec/s3fs","featured":null,"links":null,"description":null,"_repopath":"fsspec/s3fs","_reponame":"s3fs","_stars":615,"_forks":207,"_watches":21,"_topics":["hacktoberfest"],"_language":"Python","_homepage":"http://s3fs.readthedocs.io/en/latest/","_description":"s3fs: S3 Filesystem ","_organization":"fsspec","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2016-03-16T00:00:00.000Z","_age_weeks":351,"_stars_per_week":1.75,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/fsspec/s3fs/master/README.rst","_readme_localurl":"fsspec~s3fs~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/fsspec/s3fs/master/requirements.txt","https://raw.githubusercontent.com/fsspec/s3fs/master/setup.py"],"_requirements_localurls":["fsspec~s3fs~requirements.txt","fsspec~s3fs~setup.py"]},{"index":741,"category":"data","githuburl":"https://github.com/koaning/human-learn","featured":null,"links":null,"description":null,"_repopath":"koaning/human-learn","_reponame":"human-learn","_stars":612,"_forks":51,"_watches":13,"_topics":["scikit-learn","machine-learning","benchmark"],"_language":"Jupyter Notebook","_homepage":"https://koaning.github.io/human-learn/","_description":"human-learn: Natural Intelligence is still a pretty good idea.","_organization":"koaning","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2021-10-05T00:00:00.000Z","_created_at":"2020-07-11T00:00:00.000Z","_age_weeks":125,"_stars_per_week":4.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/koaning/human-learn/master/README.md","_readme_localurl":"koaning~human-learn~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/koaning/human-learn/master/setup.py"],"_requirements_localurls":["koaning~human-learn~setup.py"]},{"index":760,"category":"study","githuburl":"https://github.com/jackhidary/quantumcomputingbook","featured":null,"links":null,"description":null,"_repopath":"jackhidary/quantumcomputingbook","_reponame":"quantumcomputingbook","_stars":611,"_forks":186,"_watches":54,"_topics":["quantum","quantum-computing","cirq","qiskit","rigetti","quantum-processor","sycamore","quantum-supremacy","quantum-information","quantum-information-science","google-quantum"],"_language":"Jupyter Notebook","_homepage":"","_description":"quantumcomputingbook: Companion site for the textbook Quantum Computing: An Applied Approach","_organization":"jackhidary","_updated_at":"2022-11-23T00:00:00.000Z","_last_commit_date":"2021-10-14T00:00:00.000Z","_created_at":"2019-02-28T00:00:00.000Z","_age_weeks":196,"_stars_per_week":3.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jackhidary/quantumcomputingbook/master/README.md","_readme_localurl":"jackhidary~quantumcomputingbook~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":18,"category":"nlp","githuburl":"https://github.com/explosion/spacy-streamlit","featured":null,"links":null,"description":null,"_repopath":"explosion/spacy-streamlit","_reponame":"spacy-streamlit","_stars":605,"_forks":102,"_watches":17,"_topics":["spacy","nlp","natural-language-processing","visualizers","dependency-parsing","part-of-speech-tagging","named-entity-recognition","ner","streamlit","visualizer","text-classification","word-vectors","tokenization","machine-learning"],"_language":"Python","_homepage":"https://share.streamlit.io/ines/spacy-streamlit-demo/master/app.py","_description":"spacy-streamlit: \ud83d\udc51 spaCy building blocks and visualizers for Streamlit apps","_organization":"explosion","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-08-23T00:00:00.000Z","_created_at":"2020-06-23T00:00:00.000Z","_age_weeks":128,"_stars_per_week":4.72,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/spacy-streamlit/master/README.md","_readme_localurl":"explosion~spacy-streamlit~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/explosion/spacy-streamlit/master/requirements.txt","https://raw.githubusercontent.com/explosion/spacy-streamlit/master/setup.py"],"_requirements_localurls":["explosion~spacy-streamlit~requirements.txt","explosion~spacy-streamlit~setup.py"]},{"index":839,"category":"util","githuburl":"https://github.com/idanya/algo-trader","featured":null,"links":null,"description":null,"_repopath":"idanya/algo-trader","_reponame":"algo-trader","_stars":604,"_forks":55,"_watches":21,"_topics":["algorithmic-trading","backtesting","crypto-bot","python","technical-analysis","trading-bot","trading-strategies"],"_language":"Python","_homepage":"","_description":"algo-trader: Trading bot with support for realtime trading, backtesting, custom strategies and much more.","_organization":"idanya","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2021-09-14T00:00:00.000Z","_age_weeks":64,"_stars_per_week":9.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/idanya/algo-trader/master/README.md","_readme_localurl":"idanya~algo-trader~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/idanya/algo-trader/master/requirements.txt"],"_requirements_localurls":["idanya~algo-trader~requirements.txt"]},{"index":595,"category":"gis","githuburl":"https://github.com/uber/h3-py","featured":null,"links":null,"description":null,"_repopath":"uber/h3-py","_reponame":"h3-py","_stars":593,"_forks":112,"_watches":34,"_topics":["uber","python","hexagonal-architecture","h3","geospatial","geocoding","gis"],"_language":"Python","_homepage":"https://uber.github.io/h3-py","_description":"h3-py: Python bindings for H3, a hierarchical hexagonal geospatial indexing system","_organization":"uber","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2018-06-12T00:00:00.000Z","_age_weeks":234,"_stars_per_week":2.53,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/uber/h3-py/master/readme.md","_readme_localurl":"uber~h3-py~readme.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/h3-py/master/setup.py","https://raw.githubusercontent.com/uber/h3-py/master/pyproject.toml"],"_requirements_localurls":["uber~h3-py~setup.py","uber~h3-py~pyproject.toml"]},{"index":680,"category":"util","githuburl":"https://github.com/lukasschwab/arxiv.py","featured":null,"links":null,"description":null,"_repopath":"lukasschwab/arxiv.py","_reponame":"arxiv.py","_stars":583,"_forks":76,"_watches":16,"_topics":["arxiv","arxiv-api","python-wrapper","pdf"],"_language":"Python","_homepage":"","_description":"arxiv.py: Python wrapper for the arXiv API","_organization":"lukasschwab","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-09-12T00:00:00.000Z","_created_at":"2015-11-25T00:00:00.000Z","_age_weeks":367,"_stars_per_week":1.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lukasschwab/arxiv.py/master/README.md","_readme_localurl":"lukasschwab~arxiv.py~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lukasschwab/arxiv.py/master/requirements.txt","https://raw.githubusercontent.com/lukasschwab/arxiv.py/master/setup.py"],"_requirements_localurls":["lukasschwab~arxiv.py~requirements.txt","lukasschwab~arxiv.py~setup.py"]},{"index":796,"category":"graph","githuburl":"https://github.com/westhealth/pyvis","featured":null,"links":null,"description":null,"_repopath":"westhealth/pyvis","_reponame":"pyvis","_stars":577,"_forks":109,"_watches":13,"_topics":["network-visualization","python","networkx"],"_language":"HTML","_homepage":"http://pyvis.readthedocs.io/en/latest/","_description":"pyvis: Python package for creating and visualizing interactive network graphs.","_organization":"westhealth","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2018-05-10T00:00:00.000Z","_age_weeks":238,"_stars_per_week":2.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/westhealth/pyvis/master/README.md","_readme_localurl":"westhealth~pyvis~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/westhealth/pyvis/master/requirements.txt","https://raw.githubusercontent.com/westhealth/pyvis/master/setup.py"],"_requirements_localurls":["westhealth~pyvis~requirements.txt","westhealth~pyvis~setup.py"]},{"index":117,"category":"nlp","githuburl":"https://github.com/iclrandd/blackstone","featured":null,"links":null,"description":null,"_repopath":"iclrandd/blackstone","_reponame":"Blackstone","_stars":573,"_forks":93,"_watches":37,"_topics":["law","caselaw","nlp","spacy-models","legaltech"],"_language":"Python","_homepage":"https://research.iclr.co.uk","_description":"Blackstone: :black_circle: A spaCy pipeline and model for NLP on unstructured legal text.","_organization":"iclrandd","_updated_at":"2022-11-27T00:00:00.000Z","_last_commit_date":"2021-01-31T00:00:00.000Z","_created_at":"2019-03-25T00:00:00.000Z","_age_weeks":193,"_stars_per_week":2.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/iclrandd/blackstone/master/README.md","_readme_localurl":"iclrandd~blackstone~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/iclrandd/blackstone/master/setup.py"],"_requirements_localurls":["iclrandd~blackstone~setup.py"]},{"index":505,"category":"gis","githuburl":"https://github.com/scikit-mobility/scikit-mobility","featured":null,"links":null,"description":null,"_repopath":"scikit-mobility/scikit-mobility","_reponame":"scikit-mobility","_stars":571,"_forks":130,"_watches":29,"_topics":["data-science","data-analysis","human-mobility","complex-systems","network-science","statistics","scikit-mobility","mobility-analysis","risk-assessment","mobility-flows","synthetic-flows"],"_language":"Python","_homepage":"https://scikit-mobility.github.io/scikit-mobility/","_description":"scikit-mobility: mobility analysis in Python","_organization":"scikit-mobility","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-06-13T00:00:00.000Z","_created_at":"2019-04-30T00:00:00.000Z","_age_weeks":188,"_stars_per_week":3.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scikit-mobility/scikit-mobility/master/README.md","_readme_localurl":"scikit-mobility~scikit-mobility~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scikit-mobility/scikit-mobility/master/setup.py","https://raw.githubusercontent.com/scikit-mobility/scikit-mobility/master/pyproject.toml"],"_requirements_localurls":["scikit-mobility~scikit-mobility~setup.py","scikit-mobility~scikit-mobility~pyproject.toml"]},{"index":831,"category":"typing","githuburl":"https://github.com/python-attrs/cattrs","featured":null,"links":null,"description":null,"_repopath":"python-attrs/cattrs","_reponame":"cattrs","_stars":568,"_forks":81,"_watches":16,"_topics":["attrs","deserialization","serialization"],"_language":"Python","_homepage":null,"_description":"cattrs: Complex custom class converters for attrs.","_organization":"python-attrs","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2016-08-28T00:00:00.000Z","_age_weeks":327,"_stars_per_week":1.73,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/python-attrs/cattrs/master/README.rst","_readme_localurl":"python-attrs~cattrs~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-attrs/cattrs/master/pyproject.toml"],"_requirements_localurls":["python-attrs~cattrs~pyproject.toml"]},{"index":828,"category":"sim","githuburl":"https://github.com/farama-foundation/gymnasium","featured":null,"links":null,"description":null,"_repopath":"farama-foundation/gymnasium","_reponame":"Gymnasium","_stars":561,"_forks":71,"_watches":9,"_topics":[],"_language":"Python","_homepage":"https://gymnasium.farama.org","_description":"Gymnasium: A standard API for reinforcement learning and a diverse set of reference environments (formerly Gym)","_organization":"farama-foundation","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2022-09-08T00:00:00.000Z","_age_weeks":12,"_stars_per_week":43.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/farama-foundation/gymnasium/master/README.md","_readme_localurl":"farama-foundation~gymnasium~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/farama-foundation/gymnasium/master/setup.py","https://raw.githubusercontent.com/farama-foundation/gymnasium/master/pyproject.toml"],"_requirements_localurls":["farama-foundation~gymnasium~setup.py","farama-foundation~gymnasium~pyproject.toml"]},{"index":690,"category":"util","githuburl":"https://github.com/pyfpdf/fpdf2","featured":null,"links":null,"description":null,"_repopath":"pyfpdf/fpdf2","_reponame":"fpdf2","_stars":560,"_forks":150,"_watches":16,"_topics":["pdf-generation","pdf","python","hacktoberfest","barcode","pdf-library","python3","library","svg","markdown"],"_language":"Python","_homepage":"https://pyfpdf.github.io/fpdf2/","_description":"fpdf2: Simple PDF generation for Python","_organization":"pyfpdf","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2017-03-15T00:00:00.000Z","_age_weeks":299,"_stars_per_week":1.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyfpdf/fpdf2/master/README.md","_readme_localurl":"pyfpdf~fpdf2~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyfpdf/fpdf2/master/setup.py"],"_requirements_localurls":["pyfpdf~fpdf2~setup.py"]},{"index":889,"category":"gis","githuburl":"https://github.com/osgeo/grass","featured":null,"links":null,"description":null,"_repopath":"osgeo/grass","_reponame":"grass","_stars":559,"_forks":208,"_watches":47,"_topics":["osgeo","grass-gis","geospatial","geospatial-analysis","raster","vector","timeseries-analysis","earth-observation","gis","hacktoberfest","open-science","remote-sensing","science","spatial"],"_language":"C","_homepage":"https://grass.osgeo.org","_description":"GRASS GIS - free and open source Geographic Information System (GIS)","_organization":"osgeo","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-05-17T00:00:00.000Z","_age_weeks":185,"_stars_per_week":3.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/osgeo/grass/master/README.md","_readme_localurl":"osgeo~grass~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/osgeo/grass/master/pyproject.toml"],"_requirements_localurls":["osgeo~grass~pyproject.toml"]},{"index":167,"category":"nlp","githuburl":"https://github.com/lexpredict/lexpredict-lexnlp","featured":null,"links":null,"description":null,"_repopath":"lexpredict/lexpredict-lexnlp","_reponame":"lexpredict-lexnlp","_stars":556,"_forks":153,"_watches":49,"_topics":["nlp","ml","legal","legaltech","linguistics","law","contracts","analytics","data"],"_language":"HTML","_homepage":null,"_description":"lexpredict-lexnlp: LexNLP by LexPredict","_organization":"lexpredict","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-08-10T00:00:00.000Z","_created_at":"2017-09-30T00:00:00.000Z","_age_weeks":270,"_stars_per_week":2.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lexpredict/lexpredict-lexnlp/master/README.md","_readme_localurl":"lexpredict~lexpredict-lexnlp~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lexpredict/lexpredict-lexnlp/master/setup.py"],"_requirements_localurls":["lexpredict~lexpredict-lexnlp~setup.py"]},{"index":752,"category":"diffusion","githuburl":"https://github.com/sharonzhou/long_stable_diffusion","featured":null,"links":null,"description":null,"_repopath":"sharonzhou/long_stable_diffusion","_reponame":"long_stable_diffusion","_stars":553,"_forks":43,"_watches":13,"_topics":[],"_language":"Python","_homepage":"","_description":"long_stable_diffusion: Long-form text-to-images generation, using a pipeline of deep generative models (GPT-3 and Stable Diffusion)","_organization":"sharonzhou","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-10-30T00:00:00.000Z","_created_at":"2022-09-04T00:00:00.000Z","_age_weeks":13,"_stars_per_week":41.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sharonzhou/long_stable_diffusion/master/README.md","_readme_localurl":"sharonzhou~long_stable_diffusion~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/sharonzhou/long_stable_diffusion/master/requirements.txt"],"_requirements_localurls":["sharonzhou~long_stable_diffusion~requirements.txt"]},{"index":808,"category":"web","githuburl":"https://github.com/s3rius/fastapi-template","featured":null,"links":null,"description":null,"_repopath":"s3rius/fastapi-template","_reponame":"FastAPI-template","_stars":552,"_forks":47,"_watches":9,"_topics":["fastapi","cookiecutter","cookiecutter-template","cookiecutter-python3","sqlalchemy-orm","asynchronous","ormar","tortoise-orm","aerich","alembic","python3","asyncio","graphql","strawberry-graphql","opentelemetry","prometheus","sentry","fastapi-template","fastapi-boilerplate","hacktoberfest"],"_language":"Python","_homepage":"","_description":"FastAPI-template: Feature rich robust FastAPI template.","_organization":"s3rius","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2020-10-05T00:00:00.000Z","_age_weeks":113,"_stars_per_week":4.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/s3rius/fastapi-template/master/README.md","_readme_localurl":"s3rius~fastapi-template~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/s3rius/fastapi-template/master/pyproject.toml"],"_requirements_localurls":["s3rius~fastapi-template~pyproject.toml"]},{"index":567,"category":"sim","githuburl":"https://github.com/gboeing/pynamical","featured":null,"links":null,"description":null,"_repopath":"gboeing/pynamical","_reponame":"pynamical","_stars":550,"_forks":107,"_watches":32,"_topics":["chaos","nonlinear","fractal","logistic","visualization","modeling","animation","math","physics","python","pandas","numba","numpy","matplotlib","ipynb","bifurcation-diagram","fractals","systems","phase-diagram","cobweb-plot"],"_language":"Python","_homepage":"https://geoffboeing.com/publications/nonlinear-chaos-fractals-prediction/","_description":"Pynamical is a Python package for modeling and visualizing discrete nonlinear dynamical systems, chaos, and fractals.","_organization":"gboeing","_updated_at":"2022-11-25T00:00:00.000Z","_last_commit_date":"2022-05-24T00:00:00.000Z","_created_at":"2014-09-28T00:00:00.000Z","_age_weeks":427,"_stars_per_week":1.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gboeing/pynamical/master/README.md","_readme_localurl":"gboeing~pynamical~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gboeing/pynamical/master/requirements.txt","https://raw.githubusercontent.com/gboeing/pynamical/master/setup.py"],"_requirements_localurls":["gboeing~pynamical~requirements.txt","gboeing~pynamical~setup.py"]},{"index":259,"category":"crypto","githuburl":"https://github.com/pmaji/crypto-whale-watching-app","featured":null,"links":null,"description":null,"_repopath":"pmaji/crypto-whale-watching-app","_reponame":"crypto-whale-watching-app","_stars":548,"_forks":132,"_watches":48,"_topics":["gdax","python","cryptocurrency","ethereum","litecoin","bitcoin","cryptocurrency-exchanges","python3","dash","ethereum-blockchain","bitcoin-api","bitcoin-price","cryptocurrency-price-ticker","cryptocurrency-prices","litecoin-price","ethereum-price","gdax-api","gdax-python","plotly","plotly-dash"],"_language":"Python","_homepage":"","_description":"crypto-whale-watching-app: Python Dash app that tracks whale activity in cryptocurrency markets.","_organization":"pmaji","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-26T00:00:00.000Z","_created_at":"2018-01-23T00:00:00.000Z","_age_weeks":254,"_stars_per_week":2.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pmaji/crypto-whale-watching-app/master/README.md","_readme_localurl":"pmaji~crypto-whale-watching-app~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/pmaji/crypto-whale-watching-app/master/requirements.txt"],"_requirements_localurls":["pmaji~crypto-whale-watching-app~requirements.txt"]},{"index":235,"category":"nlp","githuburl":"https://github.com/salesforce/codet5","featured":null,"links":null,"description":null,"_repopath":"salesforce/codet5","_reponame":"CodeT5","_stars":534,"_forks":103,"_watches":17,"_topics":["language-model","code-intelligence","programming-language","representation-learning","nlp"],"_language":"Python","_homepage":"https://arxiv.org/abs/2109.00859","_description":"Code for CodeT5: a new code-aware pre-trained encoder-decoder model.","_organization":"salesforce","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-07-08T00:00:00.000Z","_created_at":"2021-08-16T00:00:00.000Z","_age_weeks":68,"_stars_per_week":7.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/codet5/master/README.md","_readme_localurl":"salesforce~codet5~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":874,"category":"util","githuburl":"https://github.com/ipython/ipykernel","featured":null,"links":null,"description":null,"_repopath":"ipython/ipykernel","_reponame":"ipykernel","_stars":528,"_forks":332,"_watches":32,"_topics":["ipython","ipython-kernel","jupyter","python","closember","jupyter-notebook","kernel"],"_language":"Python","_homepage":"https://ipython.readthedocs.io/en/stable/","_description":"ipykernel: IPython Kernel for Jupyter","_organization":"ipython","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":399,"_stars_per_week":1.32,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ipython/ipykernel/master/README.md","_readme_localurl":"ipython~ipykernel~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ipython/ipykernel/master/pyproject.toml"],"_requirements_localurls":["ipython~ipykernel~pyproject.toml"]},{"index":516,"category":"ml-dl","githuburl":"https://github.com/kakaobrain/rq-vae-transformer","featured":null,"links":null,"description":null,"_repopath":"kakaobrain/rq-vae-transformer","_reponame":"rq-vae-transformer","_stars":521,"_forks":60,"_watches":15,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"rq-vae-transformer: The official implementation of Autoregressive Image Generation using Residual Quantization (CVPR '22)","_organization":"kakaobrain","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-08-18T00:00:00.000Z","_created_at":"2022-03-03T00:00:00.000Z","_age_weeks":39,"_stars_per_week":13.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kakaobrain/rq-vae-transformer/master/README.md","_readme_localurl":"kakaobrain~rq-vae-transformer~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/kakaobrain/rq-vae-transformer/master/requirements.txt"],"_requirements_localurls":["kakaobrain~rq-vae-transformer~requirements.txt"]},{"index":625,"category":"gis","githuburl":"https://github.com/scitools/iris","featured":null,"links":null,"description":null,"_repopath":"scitools/iris","_reponame":"iris","_stars":520,"_forks":258,"_watches":44,"_topics":["iris","python","netcdf","grib","visualisation","data-analysis","earth-science","meteorology","oceanography","spaceweather"],"_language":"Python","_homepage":"https://scitools-iris.readthedocs.io/en/latest/","_description":"iris: A powerful, format-agnostic, and community-driven Python package for analysing and visualising Earth science data","_organization":"scitools","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2012-08-06T00:00:00.000Z","_age_weeks":539,"_stars_per_week":0.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scitools/iris/master/README.md","_readme_localurl":"scitools~iris~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scitools/iris/master/setup.py","https://raw.githubusercontent.com/scitools/iris/master/pyproject.toml"],"_requirements_localurls":["scitools~iris~setup.py","scitools~iris~pyproject.toml"]},{"index":160,"category":"nlp","githuburl":"https://github.com/nipunsadvilkar/pysbd","featured":null,"links":null,"description":null,"_repopath":"nipunsadvilkar/pysbd","_reponame":"pySBD","_stars":519,"_forks":63,"_watches":10,"_topics":["sentence-boundary-detection","python","segmentation","rule-based","sentence-tokenizer","sentence"],"_language":"Python","_homepage":"","_description":"pySBD: \ud83d\udc0d\ud83d\udcafpySBD (Python Sentence Boundary Disambiguation) is a rule-based sentence boundary detection that works out-of-the-box.","_organization":"nipunsadvilkar","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2021-02-11T00:00:00.000Z","_created_at":"2017-06-11T00:00:00.000Z","_age_weeks":286,"_stars_per_week":1.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nipunsadvilkar/pysbd/master/README.md","_readme_localurl":"nipunsadvilkar~pysbd~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nipunsadvilkar/pysbd/master/setup.py"],"_requirements_localurls":["nipunsadvilkar~pysbd~setup.py"]},{"index":665,"category":"study","githuburl":"https://github.com/rasbt/stat453-deep-learning-ss20","featured":null,"links":null,"description":null,"_repopath":"rasbt/stat453-deep-learning-ss20","_reponame":"stat453-deep-learning-ss20","_stars":518,"_forks":148,"_watches":36,"_topics":[],"_language":"Jupyter Notebook","_homepage":"http://pages.stat.wisc.edu/~sraschka/teaching/stat453-ss2020/","_description":"stat453-deep-learning-ss20: STAT 453: Intro to Deep Learning @ UW-Madison (Spring 2020)","_organization":"rasbt","_updated_at":"2022-11-30T00:00:00.000Z","_last_commit_date":"2020-05-01T00:00:00.000Z","_created_at":"2020-01-20T00:00:00.000Z","_age_weeks":150,"_stars_per_week":3.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/stat453-deep-learning-ss20/master/README.md","_readme_localurl":"rasbt~stat453-deep-learning-ss20~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":576,"category":"util","githuburl":"https://github.com/fsspec/filesystem_spec","featured":null,"links":null,"description":null,"_repopath":"fsspec/filesystem_spec","_reponame":"filesystem_spec","_stars":517,"_forks":225,"_watches":21,"_topics":[],"_language":"Python","_homepage":null,"_description":"filesystem_spec: A specification that python filesystems should adhere to.","_organization":"fsspec","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2018-04-23T00:00:00.000Z","_age_weeks":241,"_stars_per_week":2.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fsspec/filesystem_spec/master/README.md","_readme_localurl":"fsspec~filesystem_spec~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/fsspec/filesystem_spec/master/setup.py","https://raw.githubusercontent.com/fsspec/filesystem_spec/master/pyproject.toml"],"_requirements_localurls":["fsspec~filesystem_spec~setup.py","fsspec~filesystem_spec~pyproject.toml"]},{"index":525,"category":"gis","githuburl":"https://github.com/toblerity/rtree","featured":null,"links":null,"description":null,"_repopath":"toblerity/rtree","_reponame":"rtree","_stars":514,"_forks":123,"_watches":30,"_topics":[],"_language":"Python","_homepage":"https://rtree.readthedocs.io/en/latest/","_description":"Rtree: spatial index for Python GIS \u00b6","_organization":"toblerity","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2011-06-19T00:00:00.000Z","_age_weeks":598,"_stars_per_week":0.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/toblerity/rtree/master/README.md","_readme_localurl":"toblerity~rtree~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/toblerity/rtree/master/setup.py","https://raw.githubusercontent.com/toblerity/rtree/master/pyproject.toml"],"_requirements_localurls":["toblerity~rtree~setup.py","toblerity~rtree~pyproject.toml"]},{"index":685,"category":"ml","githuburl":"https://github.com/nvidia/cuda-python","featured":null,"links":null,"description":null,"_repopath":"nvidia/cuda-python","_reponame":"cuda-python","_stars":514,"_forks":38,"_watches":23,"_topics":[],"_language":"Python","_homepage":"https://nvidia.github.io/cuda-python/","_description":"cuda-python: CUDA Python Low-level Bindings","_organization":"nvidia","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2021-06-28T00:00:00.000Z","_age_weeks":75,"_stars_per_week":6.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nvidia/cuda-python/master/README.md","_readme_localurl":"nvidia~cuda-python~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nvidia/cuda-python/master/requirements.txt","https://raw.githubusercontent.com/nvidia/cuda-python/master/setup.py"],"_requirements_localurls":["nvidia~cuda-python~requirements.txt","nvidia~cuda-python~setup.py"]},{"index":883,"category":"time-series","githuburl":"https://github.com/autoviml/auto_ts","featured":null,"links":null,"description":null,"_repopath":"autoviml/auto_ts","_reponame":"Auto_TS","_stars":510,"_forks":92,"_watches":16,"_topics":["time-series","time-series-analysis","auto-timeseries","automl","autosklearn","tpot","autokeras","python3","prophet","python","sklearn","arima","auto-arima","auto-sklearn"],"_language":"Jupyter Notebook","_homepage":"","_description":"Auto_TS: Automatically build ARIMA, SARIMAX, VAR, FB Prophet and XGBoost Models on Time Series data sets with a Single Line of Code. Now updated with Dask to handle millions of rows.","_organization":"autoviml","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-08-16T00:00:00.000Z","_created_at":"2020-02-15T00:00:00.000Z","_age_weeks":146,"_stars_per_week":3.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/autoviml/auto_ts/master/README.md","_readme_localurl":"autoviml~auto_ts~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/autoviml/auto_ts/master/requirements.txt","https://raw.githubusercontent.com/autoviml/auto_ts/master/setup.py"],"_requirements_localurls":["autoviml~auto_ts~requirements.txt","autoviml~auto_ts~setup.py"]},{"index":306,"category":"crypto","githuburl":"https://github.com/palkeo/panoramix","featured":null,"links":null,"description":null,"_repopath":"palkeo/panoramix","_reponame":"panoramix","_stars":509,"_forks":140,"_watches":30,"_topics":[],"_language":"Python","_homepage":"","_description":"panoramix: Ethereum decompiler","_organization":"palkeo","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2020-08-22T00:00:00.000Z","_created_at":"2020-02-17T00:00:00.000Z","_age_weeks":146,"_stars_per_week":3.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/palkeo/panoramix/master/README.md","_readme_localurl":"palkeo~panoramix~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/palkeo/panoramix/master/setup.py"],"_requirements_localurls":["palkeo~panoramix~setup.py"]},{"index":589,"category":"ml-ops","githuburl":"https://github.com/kedro-org/kedro-viz","featured":null,"links":null,"description":null,"_repopath":"kedro-org/kedro-viz","_reponame":"kedro-viz","_stars":506,"_forks":83,"_watches":9,"_topics":["kedro","kedro-plugin","data-visualization","hacktoberfest","react","experiment-tracking","python"],"_language":"JavaScript","_homepage":"https://demo.kedro.org/","_description":"kedro-viz: Visualise your Kedro data and machine-learning pipelines and track your experiments. ","_organization":"kedro-org","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-11-18T00:00:00.000Z","_created_at":"2019-05-09T00:00:00.000Z","_age_weeks":186,"_stars_per_week":2.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kedro-org/kedro-viz/master/README.md","_readme_localurl":"kedro-org~kedro-viz~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":413,"category":"util","githuburl":"https://github.com/bastibe/python-soundfile","featured":null,"links":null,"description":null,"_repopath":"bastibe/python-soundfile","_reponame":"python-soundfile","_stars":503,"_forks":85,"_watches":17,"_topics":[],"_language":"Python","_homepage":"","_description":"python-soundfile: SoundFile is an audio library based on libsndfile, CFFI, and NumPy","_organization":"bastibe","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-09-27T00:00:00.000Z","_created_at":"2013-08-27T00:00:00.000Z","_age_weeks":484,"_stars_per_week":1.04,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/bastibe/python-soundfile/master/README.rst","_readme_localurl":"bastibe~python-soundfile~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bastibe/python-soundfile/master/setup.py"],"_requirements_localurls":["bastibe~python-soundfile~setup.py"]},{"index":359,"category":"ml-ops","githuburl":"https://github.com/google/ml-metadata","featured":null,"links":null,"description":null,"_repopath":"google/ml-metadata","_reponame":"ml-metadata","_stars":500,"_forks":113,"_watches":27,"_topics":[],"_language":"C++","_homepage":"https://www.tensorflow.org/tfx/guide/mlmd","_description":"ml-metadata: For recording and retrieving metadata associated with ML developer and data scientist workflows.","_organization":"google","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2019-01-15T00:00:00.000Z","_age_weeks":203,"_stars_per_week":2.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/ml-metadata/master/README.md","_readme_localurl":"google~ml-metadata~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/google/ml-metadata/master/setup.py","https://raw.githubusercontent.com/google/ml-metadata/master/pyproject.toml"],"_requirements_localurls":["google~ml-metadata~setup.py","google~ml-metadata~pyproject.toml"]},{"index":671,"category":"ml","githuburl":"https://github.com/apple/ml-ane-transformers","featured":null,"links":null,"description":null,"_repopath":"apple/ml-ane-transformers","_reponame":"ml-ane-transformers","_stars":488,"_forks":26,"_watches":26,"_topics":[],"_language":"Python","_homepage":"","_description":"ml-ane-transformers: Reference implementation of the Transformer architecture optimized for Apple Neural Engine (ANE)","_organization":"apple","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-08-09T00:00:00.000Z","_created_at":"2022-06-03T00:00:00.000Z","_age_weeks":26,"_stars_per_week":18.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apple/ml-ane-transformers/master/README.md","_readme_localurl":"apple~ml-ane-transformers~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/apple/ml-ane-transformers/master/requirements.txt","https://raw.githubusercontent.com/apple/ml-ane-transformers/master/setup.py"],"_requirements_localurls":["apple~ml-ane-transformers~requirements.txt","apple~ml-ane-transformers~setup.py"]},{"index":241,"category":"ml","githuburl":"https://github.com/microsoft/focal-transformer","featured":null,"links":null,"description":null,"_repopath":"microsoft/focal-transformer","_reponame":"Focal-Transformer","_stars":486,"_forks":57,"_watches":17,"_topics":[],"_language":"Python","_homepage":"","_description":"Focal-Transformer: [NeurIPS 2021 Spotlight] Official code for \"Focal Self-attention for Local-Global Interactions in Vision Transformers\"","_organization":"microsoft","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-03-27T00:00:00.000Z","_created_at":"2021-07-10T00:00:00.000Z","_age_weeks":73,"_stars_per_week":6.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/focal-transformer/master/README.md","_readme_localurl":"microsoft~focal-transformer~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":797,"category":"ml-interpretability","githuburl":"https://github.com/selfexplainml/piml-toolbox","featured":null,"links":null,"description":null,"_repopath":"selfexplainml/piml-toolbox","_reponame":"PiML-Toolbox","_stars":482,"_forks":52,"_watches":12,"_topics":["interpretable-machine-learning","low-code","ml-workflow","model-diagnostics"],"_language":"Jupyter Notebook","_homepage":"https://selfexplainml.github.io/PiML-Toolbox","_description":"PiML-Toolbox: PiML (Python Interpretable Machine Learning) toolbox for model development and model validation","_organization":"selfexplainml","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2022-04-29T00:00:00.000Z","_age_weeks":31,"_stars_per_week":15.2,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/selfexplainml/piml-toolbox/master/README.md","_readme_localurl":"selfexplainml~piml-toolbox~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":794,"category":"gis","githuburl":"https://github.com/kvos/coastsat","featured":null,"links":null,"description":null,"_repopath":"kvos/coastsat","_reponame":"CoastSat","_stars":477,"_forks":194,"_watches":23,"_topics":["google-earth-engine","earth-engine","remote-sensing","satellite-images","coastal-engineering","shoreline-detection"],"_language":"Jupyter Notebook","_homepage":"http://coastsat.wrl.unsw.edu.au/","_description":"CoastSat: Global shoreline mapping tool from satellite imagery","_organization":"kvos","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-11T00:00:00.000Z","_created_at":"2018-09-28T00:00:00.000Z","_age_weeks":218,"_stars_per_week":2.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kvos/coastsat/master/README.md","_readme_localurl":"kvos~coastsat~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":216,"category":"ml-ops","githuburl":"https://github.com/nccr-itmo/fedot","featured":null,"links":null,"description":null,"_repopath":"nccr-itmo/fedot","_reponame":"FEDOT","_stars":476,"_forks":61,"_watches":9,"_topics":["automl","machine-learning","evolutionary-algorithms","genetic-programming","structural-learning","automated-machine-learning","hyperparameter-optimization","parameter-tuning","automation","multimodality","fedot"],"_language":"Python","_homepage":"https://fedot.readthedocs.io","_description":"FEDOT: Automated modeling and machine learning framework FEDOT","_organization":"nccr-itmo","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2020-01-13T00:00:00.000Z","_age_weeks":151,"_stars_per_week":3.15,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/nccr-itmo/fedot/master/README.rst","_readme_localurl":"nccr-itmo~fedot~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nccr-itmo/fedot/master/requirements.txt","https://raw.githubusercontent.com/nccr-itmo/fedot/master/setup.py"],"_requirements_localurls":["nccr-itmo~fedot~requirements.txt","nccr-itmo~fedot~setup.py"]},{"index":47,"category":"data","githuburl":"https://github.com/macbre/sql-metadata","featured":1.0,"links":null,"description":null,"_repopath":"macbre/sql-metadata","_reponame":"sql-metadata","_stars":468,"_forks":84,"_watches":15,"_topics":["sql","parser","database","sql-parser","metadata","sqlparse","python-package","python3-library","hiveql","hive","mysql-query"],"_language":"Python","_homepage":"https://pypi.python.org/pypi/sql-metadata","_description":"sql-metadata: Uses tokenized query returned by python-sqlparse and generates query metadata","_organization":"macbre","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-03T00:00:00.000Z","_created_at":"2017-06-06T00:00:00.000Z","_age_weeks":287,"_stars_per_week":1.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/macbre/sql-metadata/master/README.md","_readme_localurl":"macbre~sql-metadata~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/macbre/sql-metadata/master/pyproject.toml"],"_requirements_localurls":["macbre~sql-metadata~pyproject.toml"]},{"index":487,"category":"gis","githuburl":"https://github.com/fatiando/verde","featured":null,"links":null,"description":null,"_repopath":"fatiando/verde","_reponame":"verde","_stars":467,"_forks":60,"_watches":21,"_topics":["geophysics","earth-science","geospatial","python","scipy","interpolation","python3","scipy-stack","fatiando-a-terra","geoscience"],"_language":"Python","_homepage":"https://www.fatiando.org/verde","_description":"verde: Processing and interpolating spatial data with a twist of machine learning","_organization":"fatiando","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2018-04-25T00:00:00.000Z","_age_weeks":241,"_stars_per_week":1.94,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fatiando/verde/master/README.md","_readme_localurl":"fatiando~verde~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/fatiando/verde/master/pyproject.toml"],"_requirements_localurls":["fatiando~verde~pyproject.toml"]},{"index":673,"category":"perf","githuburl":"https://github.com/brandtbucher/specialist","featured":null,"links":null,"description":null,"_repopath":"brandtbucher/specialist","_reponame":"specialist","_stars":465,"_forks":9,"_watches":8,"_topics":[],"_language":"Python","_homepage":"","_description":"specialist: Visualize CPython 3.11's specializing, adaptive interpreter. :fire:","_organization":"brandtbucher","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2022-06-01T00:00:00.000Z","_age_weeks":27,"_stars_per_week":17.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/brandtbucher/specialist/master/README.md","_readme_localurl":"brandtbucher~specialist~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/brandtbucher/specialist/master/setup.py"],"_requirements_localurls":["brandtbucher~specialist~setup.py"]},{"index":211,"category":"time-series","githuburl":"https://github.com/firmai/atspy","featured":null,"links":null,"description":null,"_repopath":"firmai/atspy","_reponame":"atspy","_stars":462,"_forks":88,"_watches":21,"_topics":["time-series","time-series-analysis","automated","python","forecasting","forecasting-models","finance"],"_language":"Python","_homepage":"https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3580631","_description":"AtsPy: Automated Time Series Models in Python (by @firmai)","_organization":"firmai","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2021-12-18T00:00:00.000Z","_created_at":"2020-01-28T00:00:00.000Z","_age_weeks":149,"_stars_per_week":3.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/firmai/atspy/master/README.md","_readme_localurl":"firmai~atspy~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/firmai/atspy/master/requirements.txt","https://raw.githubusercontent.com/firmai/atspy/master/setup.py"],"_requirements_localurls":["firmai~atspy~requirements.txt","firmai~atspy~setup.py"]},{"index":329,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/ppuda","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/ppuda","_reponame":"ppuda","_stars":457,"_forks":61,"_watches":17,"_topics":[],"_language":"Python","_homepage":null,"_description":"ppuda: Code for Parameter Prediction for Unseen Deep Architectures (NeurIPS 2021)","_organization":"facebookresearch","_updated_at":"2022-11-19T00:00:00.000Z","_last_commit_date":"2022-07-26T00:00:00.000Z","_created_at":"2021-10-21T00:00:00.000Z","_age_weeks":58,"_stars_per_week":7.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/ppuda/master/README.md","_readme_localurl":"facebookresearch~ppuda~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/ppuda/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/ppuda/master/setup.py","https://raw.githubusercontent.com/facebookresearch/ppuda/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~ppuda~requirements.txt","facebookresearch~ppuda~setup.py","facebookresearch~ppuda~pyproject.toml"]},{"index":497,"category":"ml-dl","githuburl":"https://github.com/mcahny/deep-video-inpainting","featured":null,"links":null,"description":null,"_repopath":"mcahny/deep-video-inpainting","_reponame":"Deep-Video-Inpainting","_stars":445,"_forks":86,"_watches":13,"_topics":[],"_language":"Python","_homepage":"","_description":"Deep-Video-Inpainting: Official pytorch implementation for \"Deep Video Inpainting\" (CVPR 2019)","_organization":"mcahny","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2020-12-10T00:00:00.000Z","_created_at":"2019-05-22T00:00:00.000Z","_age_weeks":185,"_stars_per_week":2.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mcahny/deep-video-inpainting/master/README.md","_readme_localurl":"mcahny~deep-video-inpainting~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":437,"category":"pandas","githuburl":"https://github.com/polyaxon/datatile","featured":null,"links":null,"description":null,"_repopath":"polyaxon/datatile","_reponame":"datatile","_stars":443,"_forks":40,"_watches":13,"_topics":["pandas","pandas-summary","dataframes","data-analysis","data-science","spark","dask","plotly","statistics","matplotlib","data-profiling","data-visualization","data-summary","data-reporting","data-exploration","dataops","mlops","data-quality","data-quality-monitoring","data-quality-checks"],"_language":"Python","_homepage":"","_description":"datatile: A library for managing, validating, summarizing, and visualizing data","_organization":"polyaxon","_updated_at":"2022-11-24T00:00:00.000Z","_last_commit_date":"2022-11-09T00:00:00.000Z","_created_at":"2016-03-25T00:00:00.000Z","_age_weeks":349,"_stars_per_week":1.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/polyaxon/datatile/master/README.md","_readme_localurl":"polyaxon~datatile~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":479,"category":"gis","githuburl":"https://github.com/holoviz/geoviews","featured":null,"links":null,"description":null,"_repopath":"holoviz/geoviews","_reponame":"geoviews","_stars":441,"_forks":69,"_watches":30,"_topics":["holoviz","geoviews","holoviews","geographic-visualizations","cartopy","plotting"],"_language":"Python","_homepage":"http://geoviews.org","_description":"geoviews: Simple, concise geographical visualization in Python","_organization":"holoviz","_updated_at":"2022-11-18T00:00:00.000Z","_last_commit_date":"2022-11-18T00:00:00.000Z","_created_at":"2016-04-19T00:00:00.000Z","_age_weeks":346,"_stars_per_week":1.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/geoviews/master/README.md","_readme_localurl":"holoviz~geoviews~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/geoviews/master/setup.py","https://raw.githubusercontent.com/holoviz/geoviews/master/pyproject.toml"],"_requirements_localurls":["holoviz~geoviews~setup.py","holoviz~geoviews~pyproject.toml"]},{"index":375,"category":"viz","githuburl":"https://github.com/vhranger/nodevectors","featured":null,"links":null,"description":null,"_repopath":"vhranger/nodevectors","_reponame":"nodevectors","_stars":440,"_forks":52,"_watches":11,"_topics":[],"_language":"Python","_homepage":"","_description":"nodevectors: Fastest network node embeddings in the west","_organization":"vhranger","_updated_at":"2022-11-29T00:00:00.000Z","_last_commit_date":"2021-11-06T00:00:00.000Z","_created_at":"2019-07-25T00:00:00.000Z","_age_weeks":175,"_stars_per_week":2.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vhranger/nodevectors/master/README.md","_readme_localurl":"vhranger~nodevectors~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/vhranger/nodevectors/master/requirements.txt","https://raw.githubusercontent.com/vhranger/nodevectors/master/setup.py"],"_requirements_localurls":["vhranger~nodevectors~requirements.txt","vhranger~nodevectors~setup.py"]},{"index":742,"category":"nlp","githuburl":"https://github.com/koaning/whatlies","featured":null,"links":null,"description":null,"_repopath":"koaning/whatlies","_reponame":"whatlies","_stars":435,"_forks":49,"_watches":13,"_topics":["nlp","embeddings","visualisations"],"_language":"Python","_homepage":"https://koaning.github.io/whatlies/","_description":"whatlies: Toolkit to help understand \"what lies\" in word embeddings. Also benchmarking! ","_organization":"koaning","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-07-28T00:00:00.000Z","_created_at":"2020-02-22T00:00:00.000Z","_age_weeks":145,"_stars_per_week":2.99,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/koaning/whatlies/master/readme.md","_readme_localurl":"koaning~whatlies~readme.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/koaning/whatlies/master/setup.py"],"_requirements_localurls":["koaning~whatlies~setup.py"]},{"index":573,"category":"gis","githuburl":"https://github.com/developmentseed/label-maker","featured":null,"links":null,"description":null,"_repopath":"developmentseed/label-maker","_reponame":"label-maker","_stars":434,"_forks":113,"_watches":50,"_topics":["satellite-imagery","data-preparation","deep-learning","computer-vision","remote-sensing","keras"],"_language":"Python","_homepage":"http://devseed.com/label-maker/","_description":"label-maker: Data Preparation for Satellite Machine Learning","_organization":"developmentseed","_updated_at":"2022-11-19T00:00:00.000Z","_last_commit_date":"2020-11-19T00:00:00.000Z","_created_at":"2018-01-10T00:00:00.000Z","_age_weeks":256,"_stars_per_week":1.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/label-maker/master/README.md","_readme_localurl":"developmentseed~label-maker~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/developmentseed/label-maker/master/requirements.txt","https://raw.githubusercontent.com/developmentseed/label-maker/master/setup.py"],"_requirements_localurls":["developmentseed~label-maker~requirements.txt","developmentseed~label-maker~setup.py"]},{"index":837,"category":"gis","githuburl":"https://github.com/perrygeo/python-rasterstats","featured":null,"links":null,"description":null,"_repopath":"perrygeo/python-rasterstats","_reponame":"python-rasterstats","_stars":434,"_forks":108,"_watches":33,"_topics":[],"_language":"Python","_homepage":"","_description":"python-rasterstats: Summary statistics of geospatial raster datasets based on vector geometries.","_organization":"perrygeo","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-18T00:00:00.000Z","_created_at":"2013-09-18T00:00:00.000Z","_age_weeks":481,"_stars_per_week":0.9,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/README.rst","_readme_localurl":"perrygeo~python-rasterstats~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/requirements.txt","https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/setup.py","https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/pyproject.toml"],"_requirements_localurls":["perrygeo~python-rasterstats~requirements.txt","perrygeo~python-rasterstats~setup.py","perrygeo~python-rasterstats~pyproject.toml"]},{"index":844,"category":"perf","githuburl":"https://github.com/joblib/loky","featured":null,"links":null,"description":null,"_repopath":"joblib/loky","_reponame":"loky","_stars":432,"_forks":41,"_watches":9,"_topics":["multiprocessing-library","python"],"_language":"Python","_homepage":"http://loky.readthedocs.io/en/stable/","_description":"loky: Robust and reusable Executor for joblib","_organization":"joblib","_updated_at":"2022-11-25T00:00:00.000Z","_last_commit_date":"2022-09-15T00:00:00.000Z","_created_at":"2015-12-25T00:00:00.000Z","_age_weeks":362,"_stars_per_week":1.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/joblib/loky/master/README.md","_readme_localurl":"joblib~loky~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/joblib/loky/master/setup.py"],"_requirements_localurls":["joblib~loky~setup.py"]},{"index":872,"category":"pandas","githuburl":"https://github.com/eventual-inc/daft","featured":null,"links":null,"description":null,"_repopath":"eventual-inc/daft","_reponame":"Daft","_stars":431,"_forks":12,"_watches":6,"_topics":["image-processing","machine-learning","python","data-engineering","data-science","dataframe","deep-learning","distributed-computing"],"_language":"Python","_homepage":"","_description":"Daft: The Python DataFrame for Complex Data","_organization":"eventual-inc","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2022-04-25T00:00:00.000Z","_age_weeks":32,"_stars_per_week":13.35,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/eventual-inc/daft/master/README.rst","_readme_localurl":"eventual-inc~daft~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/eventual-inc/daft/master/pyproject.toml"],"_requirements_localurls":["eventual-inc~daft~pyproject.toml"]},{"index":582,"category":"gis","githuburl":"https://github.com/developmentseed/titiler","featured":null,"links":null,"description":null,"_repopath":"developmentseed/titiler","_reponame":"titiler","_stars":430,"_forks":98,"_watches":18,"_topics":["fastapi","cog","aws-cdk","aws-lambda","stac","cogeotiff","mosaicjson","raster","dynamic","server","rest","gdal","rasterio","tile","map-tile-server","map-tiles"],"_language":"Python","_homepage":"https://developmentseed.org/titiler/","_description":"titiler: Build your own Raster dynamic map tile services","_organization":"developmentseed","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2019-06-28T00:00:00.000Z","_age_weeks":179,"_stars_per_week":2.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/titiler/master/README.md","_readme_localurl":"developmentseed~titiler~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/developmentseed/titiler/master/setup.py"],"_requirements_localurls":["developmentseed~titiler~setup.py"]},{"index":863,"category":"ml-ops","githuburl":"https://github.com/astronomer/astronomer","featured":null,"links":null,"description":null,"_repopath":"astronomer/astronomer","_reponame":"astronomer","_stars":430,"_forks":77,"_watches":43,"_topics":["apache-airflow","kubernetes","docker","astronomer-platform"],"_language":"Python","_homepage":"https://www.astronomer.io","_description":"astronomer: Helm Charts for the Astronomer Platform, Apache Airflow as a Service on Kubernetes","_organization":"astronomer","_updated_at":"2022-11-29T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2018-01-15T00:00:00.000Z","_age_weeks":255,"_stars_per_week":1.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/astronomer/astronomer/master/README.md","_readme_localurl":"astronomer~astronomer~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":481,"category":"sim","githuburl":"https://github.com/udst/urbansim","featured":null,"links":null,"description":null,"_repopath":"udst/urbansim","_reponame":"urbansim","_stars":419,"_forks":124,"_watches":78,"_topics":[],"_language":"Python","_homepage":"https://udst.github.io/urbansim/","_description":"urbansim: Platform for building statistical models of cities and regions","_organization":"udst","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2020-05-11T00:00:00.000Z","_created_at":"2013-08-15T00:00:00.000Z","_age_weeks":485,"_stars_per_week":0.86,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/udst/urbansim/master/README.rst","_readme_localurl":"udst~urbansim~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/udst/urbansim/master/setup.py"],"_requirements_localurls":["udst~urbansim~setup.py"]},{"index":292,"category":"util","githuburl":"https://github.com/fastai/ghapi","featured":null,"links":null,"description":null,"_repopath":"fastai/ghapi","_reponame":"ghapi","_stars":419,"_forks":44,"_watches":8,"_topics":["github-api","github","nbdev","openapi","api-client"],"_language":"Jupyter Notebook","_homepage":"https://ghapi.fast.ai/","_description":"ghapi: A delightful and complete interface to GitHub's amazing API","_organization":"fastai","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-09-27T00:00:00.000Z","_created_at":"2020-11-21T00:00:00.000Z","_age_weeks":106,"_stars_per_week":3.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fastai/ghapi/master/README.md","_readme_localurl":"fastai~ghapi~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/fastai/ghapi/master/setup.py"],"_requirements_localurls":["fastai~ghapi~setup.py"]},{"index":188,"category":"math","githuburl":"https://github.com/dit/dit","featured":null,"links":null,"description":null,"_repopath":"dit/dit","_reponame":"dit","_stars":415,"_forks":77,"_watches":24,"_topics":["python","information-theory"],"_language":"Python","_homepage":"http://docs.dit.io","_description":"dit: Python package for information theory.","_organization":"dit","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-07-25T00:00:00.000Z","_created_at":"2013-09-29T00:00:00.000Z","_age_weeks":479,"_stars_per_week":0.87,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dit/dit/master/README.rst","_readme_localurl":"dit~dit~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dit/dit/master/requirements.txt","https://raw.githubusercontent.com/dit/dit/master/setup.py","https://raw.githubusercontent.com/dit/dit/master/pyproject.toml"],"_requirements_localurls":["dit~dit~requirements.txt","dit~dit~setup.py","dit~dit~pyproject.toml"]},{"index":486,"category":"gis","githuburl":"https://github.com/earthlab/earthpy","featured":null,"links":null,"description":null,"_repopath":"earthlab/earthpy","_reponame":"earthpy","_stars":409,"_forks":149,"_watches":22,"_topics":["spatial-data","raster","vector","python","education"],"_language":"Python","_homepage":"https://earthpy.readthedocs.io","_description":"earthpy: A package built to support working with spatial data using open source python","_organization":"earthlab","_updated_at":"2022-11-27T00:00:00.000Z","_last_commit_date":"2021-12-20T00:00:00.000Z","_created_at":"2018-02-20T00:00:00.000Z","_age_weeks":250,"_stars_per_week":1.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/earthlab/earthpy/master/README.md","_readme_localurl":"earthlab~earthpy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/earthlab/earthpy/master/setup.py","https://raw.githubusercontent.com/earthlab/earthpy/master/pyproject.toml"],"_requirements_localurls":["earthlab~earthpy~setup.py","earthlab~earthpy~pyproject.toml"]},{"index":705,"category":"ml-ops","githuburl":"https://github.com/bodywork-ml/bodywork-core","featured":null,"links":null,"description":null,"_repopath":"bodywork-ml/bodywork-core","_reponame":"bodywork-core","_stars":407,"_forks":19,"_watches":9,"_topics":["mlops","python","kubernetes","data-science","machine-learning","pipeline","serving","continuous-deployment","batch","devops","framework","cicd","orchestration"],"_language":"Python","_homepage":"https://bodywork.readthedocs.io/en/latest/","_description":"bodywork-core: ML pipeline orchestration and model deployments on Kubernetes, made really easy.","_organization":"bodywork-ml","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-07-04T00:00:00.000Z","_created_at":"2020-11-17T00:00:00.000Z","_age_weeks":107,"_stars_per_week":3.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bodywork-ml/bodywork-core/master/README.md","_readme_localurl":"bodywork-ml~bodywork-core~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bodywork-ml/bodywork-core/master/setup.py"],"_requirements_localurls":["bodywork-ml~bodywork-core~setup.py"]},{"index":472,"category":"nlp","githuburl":"https://github.com/google-research/byt5","featured":null,"links":null,"description":null,"_repopath":"google-research/byt5","_reponame":"byt5","_stars":403,"_forks":25,"_watches":11,"_topics":[],"_language":"Python","_homepage":null,"_description":"google-research/byt5","_organization":"google-research","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-03-02T00:00:00.000Z","_created_at":"2021-05-26T00:00:00.000Z","_age_weeks":80,"_stars_per_week":5.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google-research/byt5/master/README.md","_readme_localurl":"google-research~byt5~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":275,"category":"crypto","githuburl":"https://github.com/ethtx/ethtx","featured":null,"links":null,"description":null,"_repopath":"ethtx/ethtx","_reponame":"ethtx","_stars":391,"_forks":61,"_watches":16,"_topics":[],"_language":"Python","_homepage":"https://www.ethtx.info","_description":"ethtx: Python package with core transaction decoding functions.","_organization":"ethtx","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2021-06-28T00:00:00.000Z","_age_weeks":75,"_stars_per_week":5.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethtx/ethtx/master/README.md","_readme_localurl":"ethtx~ethtx~README.md","_requirements_filenames":["setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/ethtx/ethtx/master/setup.py","https://raw.githubusercontent.com/ethtx/ethtx/master/Pipfile"],"_requirements_localurls":["ethtx~ethtx~setup.py","ethtx~ethtx~Pipfile"]},{"index":577,"category":"jupyter","githuburl":"https://github.com/computationalmodelling/nbval","featured":null,"links":null,"description":null,"_repopath":"computationalmodelling/nbval","_reponame":"nbval","_stars":391,"_forks":51,"_watches":10,"_topics":["ipython-notebook","jupyter-notebook","python","testing","pytest-plugin","pytest"],"_language":"Python","_homepage":"","_description":"nbval: A py.test plugin to validate Jupyter notebooks","_organization":"computationalmodelling","_updated_at":"2022-11-23T00:00:00.000Z","_last_commit_date":"2022-09-17T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":399,"_stars_per_week":0.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/computationalmodelling/nbval/master/README.md","_readme_localurl":"computationalmodelling~nbval~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/computationalmodelling/nbval/master/setup.py"],"_requirements_localurls":["computationalmodelling~nbval~setup.py"]},{"index":722,"category":"perf","githuburl":"https://github.com/noxdafox/pebble","featured":null,"links":null,"description":null,"_repopath":"noxdafox/pebble","_reponame":"pebble","_stars":387,"_forks":45,"_watches":10,"_topics":["threading","multiprocessing","python","pool","decorators","asyncio"],"_language":"Python","_homepage":"","_description":"pebble: Multi threading and processing eye-candy.","_organization":"noxdafox","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-15T00:00:00.000Z","_created_at":"2013-10-16T00:00:00.000Z","_age_weeks":477,"_stars_per_week":0.81,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/noxdafox/pebble/master/README.rst","_readme_localurl":"noxdafox~pebble~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/noxdafox/pebble/master/setup.py"],"_requirements_localurls":["noxdafox~pebble~setup.py"]},{"index":528,"category":"nlp","githuburl":"https://github.com/hazyresearch/fonduer","featured":null,"links":null,"description":null,"_repopath":"hazyresearch/fonduer","_reponame":"fonduer","_stars":386,"_forks":79,"_watches":27,"_topics":["multimodality","machine-learning","knowledge-base-construction"],"_language":"Python","_homepage":"https://fonduer.readthedocs.io/","_description":"fonduer: A knowledge base construction engine for richly formatted data","_organization":"hazyresearch","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2021-06-23T00:00:00.000Z","_created_at":"2018-02-02T00:00:00.000Z","_age_weeks":252,"_stars_per_week":1.53,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/hazyresearch/fonduer/master/README.rst","_readme_localurl":"hazyresearch~fonduer~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hazyresearch/fonduer/master/setup.py"],"_requirements_localurls":["hazyresearch~fonduer~setup.py"]},{"index":841,"category":"util","githuburl":"https://github.com/carlospuenteg/file-injector","featured":null,"links":null,"description":null,"_repopath":"carlospuenteg/file-injector","_reponame":"File-Injector","_stars":380,"_forks":17,"_watches":6,"_topics":["image","image-manipulation","image-processing","noise","numpy","photography","python","python3","file","files","extraction","injection","storage","steganography","file-injection","file-injector"],"_language":"Python","_homepage":"","_description":"File-Injector: File Injector is a script that allows you to store any file in an image using steganography","_organization":"carlospuenteg","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-18T00:00:00.000Z","_created_at":"2022-10-22T00:00:00.000Z","_age_weeks":6,"_stars_per_week":57.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/carlospuenteg/file-injector/master/README.md","_readme_localurl":"carlospuenteg~file-injector~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/carlospuenteg/file-injector/master/requirements.txt"],"_requirements_localurls":["carlospuenteg~file-injector~requirements.txt"]},{"index":12,"category":"nlp","githuburl":"https://github.com/dialogflow/dialogflow-python-client-v2","featured":null,"links":null,"description":null,"_repopath":"dialogflow/dialogflow-python-client-v2","_reponame":"python-dialogflow","_stars":378,"_forks":146,"_watches":53,"_topics":["python","machine-learning","dialogflow"],"_language":"Python","_homepage":"https://dialogflow.com/","_description":"python-dialogflow: Python client for Dialogflow: Design and integrate a conversational user interface into your applications and devices.","_organization":"dialogflow","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-26T00:00:00.000Z","_created_at":"2017-10-24T00:00:00.000Z","_age_weeks":267,"_stars_per_week":1.41,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dialogflow/dialogflow-python-client-v2/master/README.rst","_readme_localurl":"dialogflow~dialogflow-python-client-v2~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dialogflow/dialogflow-python-client-v2/master/setup.py"],"_requirements_localurls":["dialogflow~dialogflow-python-client-v2~setup.py"]},{"index":254,"category":"ml","githuburl":"https://github.com/amzn/pecos","featured":null,"links":null,"description":null,"_repopath":"amzn/pecos","_reponame":"pecos","_stars":374,"_forks":84,"_watches":18,"_topics":["machine-learning-algorithms","extreme-multi-label-classification","extreme-multi-label-ranking","transformers","approximate-nearest-neighbor-search"],"_language":"Python","_homepage":"https://libpecos.org/","_description":"PECOS - Prediction for Enormous and Correlated Spaces","_organization":"amzn","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2020-08-12T00:00:00.000Z","_age_weeks":121,"_stars_per_week":3.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/amzn/pecos/master/README.md","_readme_localurl":"amzn~pecos~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/amzn/pecos/master/setup.py"],"_requirements_localurls":["amzn~pecos~setup.py"]},{"index":331,"category":"ml","githuburl":"https://github.com/jacopotagliabue/reclist","featured":null,"links":null,"description":null,"_repopath":"jacopotagliabue/reclist","_reponame":"reclist","_stars":369,"_forks":19,"_watches":8,"_topics":["recommender-system","machine-learning","qa-automation"],"_language":"Python","_homepage":"","_description":"reclist: Behavioral \"black-box\" testing for recommender systems","_organization":"jacopotagliabue","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-11-03T00:00:00.000Z","_created_at":"2021-11-08T00:00:00.000Z","_age_weeks":56,"_stars_per_week":6.56,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jacopotagliabue/reclist/master/README.rst","_readme_localurl":"jacopotagliabue~reclist~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jacopotagliabue/reclist/master/setup.py"],"_requirements_localurls":["jacopotagliabue~reclist~setup.py"]},{"index":561,"category":"gis","githuburl":"https://github.com/geopandas/contextily","featured":null,"links":null,"description":null,"_repopath":"geopandas/contextily","_reponame":"contextily","_stars":366,"_forks":66,"_watches":14,"_topics":["tiles","stamen","openstreetmap","python","tile","mapping","webtiles","geography","cartography","matplotlib","osm","stamen-maps"],"_language":"Jupyter Notebook","_homepage":"https://contextily.readthedocs.io/en/latest/","_description":"contextily: Context geo-tiles in Python","_organization":"geopandas","_updated_at":"2022-11-22T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2016-09-08T00:00:00.000Z","_age_weeks":325,"_stars_per_week":1.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/geopandas/contextily/master/README.md","_readme_localurl":"geopandas~contextily~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/geopandas/contextily/master/requirements.txt","https://raw.githubusercontent.com/geopandas/contextily/master/setup.py"],"_requirements_localurls":["geopandas~contextily~requirements.txt","geopandas~contextily~setup.py"]},{"index":803,"category":"util","githuburl":"https://github.com/open-telemetry/opentelemetry-python-contrib","featured":null,"links":null,"description":null,"_repopath":"open-telemetry/opentelemetry-python-contrib","_reponame":"opentelemetry-python-contrib","_stars":363,"_forks":275,"_watches":14,"_topics":[],"_language":"Python","_homepage":"https://opentelemetry.io","_description":"opentelemetry-python-contrib: OpenTelemetry instrumentation for Python modules","_organization":"open-telemetry","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-11-08T00:00:00.000Z","_age_weeks":160,"_stars_per_week":2.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-telemetry/opentelemetry-python-contrib/master/README.md","_readme_localurl":"open-telemetry~opentelemetry-python-contrib~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/open-telemetry/opentelemetry-python-contrib/master/pyproject.toml"],"_requirements_localurls":["open-telemetry~opentelemetry-python-contrib~pyproject.toml"]},{"index":492,"category":"gis","githuburl":"https://github.com/cogeotiff/rio-tiler","featured":null,"links":null,"description":null,"_repopath":"cogeotiff/rio-tiler","_reponame":"rio-tiler","_stars":362,"_forks":84,"_watches":65,"_topics":["satellite","cog","cogeotiff","maptile","raster-processing","mercator","tile","slippy-map","gdal","rasterio","raster"],"_language":"Python","_homepage":"https://cogeotiff.github.io/rio-tiler/","_description":"rio-tiler: User friendly Rasterio plugin to read raster datasets.","_organization":"cogeotiff","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2017-10-06T00:00:00.000Z","_age_weeks":269,"_stars_per_week":1.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cogeotiff/rio-tiler/master/README.md","_readme_localurl":"cogeotiff~rio-tiler~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cogeotiff/rio-tiler/master/setup.py","https://raw.githubusercontent.com/cogeotiff/rio-tiler/master/pyproject.toml"],"_requirements_localurls":["cogeotiff~rio-tiler~setup.py","cogeotiff~rio-tiler~pyproject.toml"]},{"index":185,"category":"math","githuburl":"https://github.com/willianfuks/tfcausalimpact","featured":null,"links":null,"description":null,"_repopath":"willianfuks/tfcausalimpact","_reponame":"tfcausalimpact","_stars":361,"_forks":49,"_watches":9,"_topics":["causalimpact","tensorflow-probability","python","causal-inference"],"_language":"Python","_homepage":"","_description":"tfcausalimpact: Python Causal Impact Implementation Based on Google's R Package. Built using TensorFlow Probability.","_organization":"willianfuks","_updated_at":"2022-11-25T00:00:00.000Z","_last_commit_date":"2022-10-07T00:00:00.000Z","_created_at":"2020-08-17T00:00:00.000Z","_age_weeks":120,"_stars_per_week":3.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/willianfuks/tfcausalimpact/master/README.md","_readme_localurl":"willianfuks~tfcausalimpact~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/willianfuks/tfcausalimpact/master/setup.py"],"_requirements_localurls":["willianfuks~tfcausalimpact~setup.py"]},{"index":49,"category":"util","githuburl":"https://github.com/mozillazg/pypy","featured":null,"links":null,"description":null,"_repopath":"mozillazg/pypy","_reponame":"pypy","_stars":358,"_forks":57,"_watches":11,"_topics":["pypy","github-mirror","unofficial","unofficial-mirror","read-only-repository"],"_language":"Python","_homepage":"https://foss.heptapod.net/pypy/pypy","_description":"pypy: The unofficial GitHub mirror of PyPy","_organization":"mozillazg","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2015-08-03T00:00:00.000Z","_age_weeks":383,"_stars_per_week":0.93,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mozillazg/pypy/master/README.rst","_readme_localurl":"mozillazg~pypy~README.rst","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/mozillazg/pypy/master/requirements.txt"],"_requirements_localurls":["mozillazg~pypy~requirements.txt"]},{"index":522,"category":"gis","githuburl":"https://github.com/pygeos/pygeos","featured":null,"links":null,"description":null,"_repopath":"pygeos/pygeos","_reponame":"pygeos","_stars":358,"_forks":37,"_watches":15,"_topics":[],"_language":"Python","_homepage":"https://pygeos.readthedocs.io","_description":"pygeos: Wraps GEOS geometry functions in numpy ufuncs.","_organization":"pygeos","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-08-25T00:00:00.000Z","_created_at":"2019-06-10T00:00:00.000Z","_age_weeks":182,"_stars_per_week":1.96,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pygeos/pygeos/master/README.rst","_readme_localurl":"pygeos~pygeos~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pygeos/pygeos/master/setup.py","https://raw.githubusercontent.com/pygeos/pygeos/master/pyproject.toml"],"_requirements_localurls":["pygeos~pygeos~setup.py","pygeos~pygeos~pyproject.toml"]},{"index":496,"category":"ml","githuburl":"https://github.com/linkedin/fasttreeshap","featured":null,"links":null,"description":null,"_repopath":"linkedin/fasttreeshap","_reponame":"FastTreeSHAP","_stars":354,"_forks":22,"_watches":6,"_topics":["explainable-ai","interpretability","lightgbm","machine-learning","random-forest","shap","xgboost"],"_language":"Python","_homepage":"","_description":"FastTreeSHAP: Fast SHAP value computation for interpreting tree-based models","_organization":"linkedin","_updated_at":"2022-11-29T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2022-01-24T00:00:00.000Z","_age_weeks":45,"_stars_per_week":7.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/linkedin/fasttreeshap/master/README.md","_readme_localurl":"linkedin~fasttreeshap~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/linkedin/fasttreeshap/master/requirements.txt","https://raw.githubusercontent.com/linkedin/fasttreeshap/master/setup.py","https://raw.githubusercontent.com/linkedin/fasttreeshap/master/pyproject.toml"],"_requirements_localurls":["linkedin~fasttreeshap~requirements.txt","linkedin~fasttreeshap~setup.py","linkedin~fasttreeshap~pyproject.toml"]},{"index":499,"category":"ml-dl","githuburl":"https://github.com/researchmm/sttn","featured":null,"links":null,"description":null,"_repopath":"researchmm/sttn","_reponame":"STTN","_stars":354,"_forks":69,"_watches":20,"_topics":["video-inpainting","completing-videos","transformer","spatial-temporal"],"_language":"Jupyter Notebook","_homepage":"https://arxiv.org/abs/2007.10247","_description":"[ECCV'2020] STTN: Learning Joint Spatial-Temporal Transformations for Video Inpainting","_organization":"researchmm","_updated_at":"2022-11-30T00:00:00.000Z","_last_commit_date":"2021-07-26T00:00:00.000Z","_created_at":"2020-07-10T00:00:00.000Z","_age_weeks":125,"_stars_per_week":2.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/researchmm/sttn/master/README.md","_readme_localurl":"researchmm~sttn~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":519,"category":"gis","githuburl":"https://github.com/scikit-geometry/scikit-geometry","featured":null,"links":null,"description":null,"_repopath":"scikit-geometry/scikit-geometry","_reponame":"scikit-geometry","_stars":354,"_forks":47,"_watches":13,"_topics":["cgal","geometry","python","geometric-algorithms","wrapper"],"_language":"Jupyter Notebook","_homepage":"https://scikit-geometry.github.io/scikit-geometry","_description":"scikit-geometry: Scientific Python Geometric Algorithms Library","_organization":"scikit-geometry","_updated_at":"2022-11-28T00:00:00.000Z","_last_commit_date":"2022-10-14T00:00:00.000Z","_created_at":"2016-03-28T00:00:00.000Z","_age_weeks":349,"_stars_per_week":1.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scikit-geometry/scikit-geometry/master/README.md","_readme_localurl":"scikit-geometry~scikit-geometry~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/scikit-geometry/scikit-geometry/master/setup.py"],"_requirements_localurls":["scikit-geometry~scikit-geometry~setup.py"]},{"index":756,"category":"ml-dl","githuburl":"https://github.com/samuela/git-re-basin","featured":null,"links":null,"description":null,"_repopath":"samuela/git-re-basin","_reponame":"git-re-basin","_stars":344,"_forks":27,"_watches":4,"_topics":["deep-learning","deeplearning","jax","machine-learning","neural-networks"],"_language":"Python","_homepage":"https://arxiv.org/abs/2209.04836","_description":"git-re-basin: Code release for \"Git Re-Basin: Merging Models modulo Permutation Symmetries\"","_organization":"samuela","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-12T00:00:00.000Z","_created_at":"2022-09-13T00:00:00.000Z","_age_weeks":12,"_stars_per_week":28.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/samuela/git-re-basin/master/README.md","_readme_localurl":"samuela~git-re-basin~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":692,"category":"util","githuburl":"https://github.com/paperswithcode/axcell","featured":null,"links":null,"description":null,"_repopath":"paperswithcode/axcell","_reponame":"axcell","_stars":343,"_forks":51,"_watches":13,"_topics":[],"_language":"Python","_homepage":"","_description":"axcell: Tools for extracting tables and results from Machine Learning papers","_organization":"paperswithcode","_updated_at":"2022-11-30T00:00:00.000Z","_last_commit_date":"2021-06-23T00:00:00.000Z","_created_at":"2019-06-27T00:00:00.000Z","_age_weeks":179,"_stars_per_week":1.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/paperswithcode/axcell/master/README.md","_readme_localurl":"paperswithcode~axcell~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/paperswithcode/axcell/master/setup.py"],"_requirements_localurls":["paperswithcode~axcell~setup.py"]},{"index":586,"category":"gis","githuburl":"https://github.com/pysal/momepy","featured":null,"links":null,"description":null,"_repopath":"pysal/momepy","_reponame":"momepy","_stars":341,"_forks":46,"_watches":16,"_topics":["urban","morphology","morphological-analysis","morphometrics","urban-morphometrics","urban-street-networks"],"_language":"Python","_homepage":"https://docs.momepy.org","_description":"momepy: Urban Morphology Measuring Toolkit","_organization":"pysal","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-10-17T00:00:00.000Z","_created_at":"2018-03-30T00:00:00.000Z","_age_weeks":244,"_stars_per_week":1.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pysal/momepy/master/README.md","_readme_localurl":"pysal~momepy~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pysal/momepy/master/requirements.txt","https://raw.githubusercontent.com/pysal/momepy/master/setup.py","https://raw.githubusercontent.com/pysal/momepy/master/pyproject.toml"],"_requirements_localurls":["pysal~momepy~requirements.txt","pysal~momepy~setup.py","pysal~momepy~pyproject.toml"]},{"index":340,"category":"term","githuburl":"https://github.com/federicoceratto/dashing","featured":null,"links":null,"description":null,"_repopath":"federicoceratto/dashing","_reponame":"dashing","_stars":337,"_forks":30,"_watches":9,"_topics":["python","python3","terminal","dashboard","terminal-based","gauges","charts"],"_language":"Python","_homepage":"https://dashing.readthedocs.io/en/latest/","_description":"dashing: Terminal dashboards for Python","_organization":"federicoceratto","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2020-09-06T00:00:00.000Z","_created_at":"2017-06-03T00:00:00.000Z","_age_weeks":287,"_stars_per_week":1.17,"_readme_filename":"README.adoc","_readme_giturl":"https://raw.githubusercontent.com/federicoceratto/dashing/master/README.adoc","_readme_localurl":"federicoceratto~dashing~README.adoc","_requirements_filenames":["requirements.txt","setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/federicoceratto/dashing/master/requirements.txt","https://raw.githubusercontent.com/federicoceratto/dashing/master/setup.py","https://raw.githubusercontent.com/federicoceratto/dashing/master/Pipfile"],"_requirements_localurls":["federicoceratto~dashing~requirements.txt","federicoceratto~dashing~setup.py","federicoceratto~dashing~Pipfile"]},{"index":563,"category":"gis","githuburl":"https://github.com/geopandas/dask-geopandas","featured":null,"links":null,"description":null,"_repopath":"geopandas/dask-geopandas","_reponame":"dask-geopandas","_stars":336,"_forks":32,"_watches":23,"_topics":[],"_language":"Python","_homepage":"https://dask-geopandas.readthedocs.io/","_description":"dask-geopandas: Parallel GeoPandas with Dask","_organization":"geopandas","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-08-28T00:00:00.000Z","_created_at":"2020-02-13T00:00:00.000Z","_age_weeks":146,"_stars_per_week":2.29,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/geopandas/dask-geopandas/master/README.rst","_readme_localurl":"geopandas~dask-geopandas~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/geopandas/dask-geopandas/master/setup.py","https://raw.githubusercontent.com/geopandas/dask-geopandas/master/pyproject.toml"],"_requirements_localurls":["geopandas~dask-geopandas~setup.py","geopandas~dask-geopandas~pyproject.toml"]},{"index":335,"category":"ml","githuburl":"https://github.com/mrdbourke/m1-machine-learning-test","featured":null,"links":null,"description":null,"_repopath":"mrdbourke/m1-machine-learning-test","_reponame":"m1-machine-learning-test","_stars":336,"_forks":99,"_watches":12,"_topics":["tensorflow","tensorflow-macos","metal","machine-learning"],"_language":"Jupyter Notebook","_homepage":"","_description":"m1-machine-learning-test: Code for testing various M1 Chip benchmarks with TensorFlow.","_organization":"mrdbourke","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-07-16T00:00:00.000Z","_created_at":"2021-11-14T00:00:00.000Z","_age_weeks":55,"_stars_per_week":6.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mrdbourke/m1-machine-learning-test/master/README.md","_readme_localurl":"mrdbourke~m1-machine-learning-test~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":158,"category":"jupyter","githuburl":"https://github.com/nteract/testbook","featured":null,"links":null,"description":null,"_repopath":"nteract/testbook","_reponame":"testbook","_stars":335,"_forks":34,"_watches":15,"_topics":["jupyter-notebook","unit-testing","pytest","nteract","python","testbook"],"_language":"Python","_homepage":"https://testbook.readthedocs.io","_description":"testbook: \ud83e\uddea \ud83d\udcd7 Unit test your Jupyter Notebooks the right way","_organization":"nteract","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2020-02-26T00:00:00.000Z","_age_weeks":145,"_stars_per_week":2.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nteract/testbook/master/README.md","_readme_localurl":"nteract~testbook~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nteract/testbook/master/requirements.txt","https://raw.githubusercontent.com/nteract/testbook/master/setup.py","https://raw.githubusercontent.com/nteract/testbook/master/pyproject.toml"],"_requirements_localurls":["nteract~testbook~requirements.txt","nteract~testbook~setup.py","nteract~testbook~pyproject.toml"]},{"index":848,"category":"gis","githuburl":"https://github.com/mapbox/mercantile","featured":null,"links":null,"description":null,"_repopath":"mapbox/mercantile","_reponame":"mercantile","_stars":334,"_forks":62,"_watches":117,"_topics":["satellite","pxm","imagery"],"_language":"Python","_homepage":null,"_description":"mercantile: Spherical mercator tile and coordinate utilities","_organization":"mapbox","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2021-10-22T00:00:00.000Z","_created_at":"2014-02-12T00:00:00.000Z","_age_weeks":460,"_stars_per_week":0.73,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mapbox/mercantile/master/README.rst","_readme_localurl":"mapbox~mercantile~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mapbox/mercantile/master/requirements.txt","https://raw.githubusercontent.com/mapbox/mercantile/master/setup.py"],"_requirements_localurls":["mapbox~mercantile~requirements.txt","mapbox~mercantile~setup.py"]},{"index":560,"category":"gis","githuburl":"https://github.com/corteva/rioxarray","featured":null,"links":null,"description":null,"_repopath":"corteva/rioxarray","_reponame":"rioxarray","_stars":333,"_forks":56,"_watches":12,"_topics":["gis","rasterio","xarray","geospatial","python","gdal","raster","netcdf","hacktoberfest"],"_language":"Python","_homepage":"https://corteva.github.io/rioxarray","_description":"rioxarray: geospatial xarray extension powered by rasterio","_organization":"corteva","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2019-04-16T00:00:00.000Z","_age_weeks":190,"_stars_per_week":1.75,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/corteva/rioxarray/master/README.rst","_readme_localurl":"corteva~rioxarray~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/corteva/rioxarray/master/setup.py","https://raw.githubusercontent.com/corteva/rioxarray/master/pyproject.toml"],"_requirements_localurls":["corteva~rioxarray~setup.py","corteva~rioxarray~pyproject.toml"]},{"index":464,"category":"data","githuburl":"https://github.com/dmarx/psaw","featured":null,"links":null,"description":null,"_repopath":"dmarx/psaw","_reponame":"psaw","_stars":331,"_forks":45,"_watches":9,"_topics":[],"_language":"Python","_homepage":null,"_description":"psaw: Python Pushshift.io API Wrapper (for comment/submission search)","_organization":"dmarx","_updated_at":"2022-11-17T00:00:00.000Z","_last_commit_date":"2022-07-09T00:00:00.000Z","_created_at":"2018-04-15T00:00:00.000Z","_age_weeks":242,"_stars_per_week":1.37,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dmarx/psaw/master/README.rst","_readme_localurl":"dmarx~psaw~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dmarx/psaw/master/setup.py"],"_requirements_localurls":["dmarx~psaw~setup.py"]},{"index":684,"category":"util","githuburl":"https://github.com/sciunto-org/python-bibtexparser","featured":null,"links":null,"description":null,"_repopath":"sciunto-org/python-bibtexparser","_reponame":"python-bibtexparser","_stars":330,"_forks":116,"_watches":16,"_topics":["bibtex","bibtex-files","latex","python","hacktoberfest2022"],"_language":"Python","_homepage":"https://bibtexparser.readthedocs.io","_description":"python-bibtexparser: Bibtex parser for Python 3","_organization":"sciunto-org","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-10-20T00:00:00.000Z","_created_at":"2013-01-05T00:00:00.000Z","_age_weeks":517,"_stars_per_week":0.64,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sciunto-org/python-bibtexparser/master/README.rst","_readme_localurl":"sciunto-org~python-bibtexparser~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sciunto-org/python-bibtexparser/master/requirements.txt","https://raw.githubusercontent.com/sciunto-org/python-bibtexparser/master/setup.py"],"_requirements_localurls":["sciunto-org~python-bibtexparser~requirements.txt","sciunto-org~python-bibtexparser~setup.py"]},{"index":237,"category":"ml","githuburl":"https://github.com/salesforce/warp-drive","featured":null,"links":null,"description":null,"_repopath":"salesforce/warp-drive","_reponame":"warp-drive","_stars":328,"_forks":57,"_watches":12,"_topics":["reinforcement-learning","gpu","cuda","multiagent-reinforcement-learning","deep-learning","high-throughput","pytorch","numba"],"_language":"Python","_homepage":"","_description":"warp-drive: Extremely Fast End-to-End Deep Multi-Agent Reinforcement Learning Framework on a GPU","_organization":"salesforce","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2021-08-25T00:00:00.000Z","_age_weeks":67,"_stars_per_week":4.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/warp-drive/master/README.md","_readme_localurl":"salesforce~warp-drive~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/salesforce/warp-drive/master/requirements.txt","https://raw.githubusercontent.com/salesforce/warp-drive/master/setup.py"],"_requirements_localurls":["salesforce~warp-drive~requirements.txt","salesforce~warp-drive~setup.py"]},{"index":664,"category":"study","githuburl":"https://github.com/rasbt/stat451-machine-learning-fs20","featured":null,"links":null,"description":null,"_repopath":"rasbt/stat451-machine-learning-fs20","_reponame":"stat451-machine-learning-fs20","_stars":326,"_forks":177,"_watches":18,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"stat451-machine-learning-fs20: STAT 451: Intro to Machine Learning @ UW-Madison (Fall 2020)","_organization":"rasbt","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2020-12-03T00:00:00.000Z","_created_at":"2020-08-06T00:00:00.000Z","_age_weeks":121,"_stars_per_week":2.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/stat451-machine-learning-fs20/master/README.md","_readme_localurl":"rasbt~stat451-machine-learning-fs20~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":786,"category":"util","githuburl":"https://github.com/gefyrahq/gefyra","featured":null,"links":null,"description":null,"_repopath":"gefyrahq/gefyra","_reponame":"gefyra","_stars":326,"_forks":22,"_watches":6,"_topics":["kubernetes","development","developer-tool","containers","coding","tunnel","docker","k8s"],"_language":"Python","_homepage":"https://gefyra.dev","_description":"gefyra: Blazingly-fast :rocket:, rock-solid, local application development :arrow_right: with Kubernetes.","_organization":"gefyrahq","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-27T00:00:00.000Z","_created_at":"2021-11-18T00:00:00.000Z","_age_weeks":54,"_stars_per_week":5.94,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gefyrahq/gefyra/master/README.md","_readme_localurl":"gefyrahq~gefyra~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":747,"category":"study","githuburl":"https://github.com/bayesianmodelingandcomputationinpython/bookcode_edition1","featured":null,"links":null,"description":null,"_repopath":"bayesianmodelingandcomputationinpython/bookcode_edition1","_reponame":"BookCode_Edition1","_stars":324,"_forks":75,"_watches":13,"_topics":[],"_language":"Jupyter Notebook","_homepage":"https://www.bayesiancomputationbook.com","_description":"bayesianmodelingandcomputationinpython/bookcode_edition1","_organization":"bayesianmodelingandcomputationinpython","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-09-20T00:00:00.000Z","_created_at":"2021-08-17T00:00:00.000Z","_age_weeks":68,"_stars_per_week":4.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bayesianmodelingandcomputationinpython/bookcode_edition1/master/README.md","_readme_localurl":"bayesianmodelingandcomputationinpython~bookcode_edition1~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":364,"category":"ml-ops","githuburl":"https://github.com/kubeflow/fairing","featured":null,"links":null,"description":null,"_repopath":"kubeflow/fairing","_reponame":"fairing","_stars":324,"_forks":146,"_watches":40,"_topics":[],"_language":"Jsonnet","_homepage":"","_description":"fairing: Python SDK for building, training, and deploying ML models","_organization":"kubeflow","_updated_at":"2022-11-24T00:00:00.000Z","_last_commit_date":"2021-08-26T00:00:00.000Z","_created_at":"2018-09-03T00:00:00.000Z","_age_weeks":222,"_stars_per_week":1.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kubeflow/fairing/master/README.md","_readme_localurl":"kubeflow~fairing~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kubeflow/fairing/master/requirements.txt","https://raw.githubusercontent.com/kubeflow/fairing/master/setup.py"],"_requirements_localurls":["kubeflow~fairing~requirements.txt","kubeflow~fairing~setup.py"]},{"index":745,"category":"perf","githuburl":"https://github.com/blosc/python-blosc","featured":null,"links":null,"description":null,"_repopath":"blosc/python-blosc","_reponame":"python-blosc","_stars":322,"_forks":75,"_watches":12,"_topics":["python","wrapper","blosc","compression"],"_language":"C","_homepage":"https://www.blosc.org/python-blosc/python-blosc.html","_description":"python-blosc: A Python wrapper for the extremely fast Blosc compression library ","_organization":"blosc","_updated_at":"2022-11-30T00:00:00.000Z","_last_commit_date":"2022-11-10T00:00:00.000Z","_created_at":"2010-09-30T00:00:00.000Z","_age_weeks":635,"_stars_per_week":0.51,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/blosc/python-blosc/master/README.rst","_readme_localurl":"blosc~python-blosc~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/blosc/python-blosc/master/requirements.txt","https://raw.githubusercontent.com/blosc/python-blosc/master/setup.py","https://raw.githubusercontent.com/blosc/python-blosc/master/pyproject.toml"],"_requirements_localurls":["blosc~python-blosc~requirements.txt","blosc~python-blosc~setup.py","blosc~python-blosc~pyproject.toml"]},{"index":719,"category":"gis","githuburl":"https://github.com/weecology/deepforest","featured":null,"links":null,"description":null,"_repopath":"weecology/deepforest","_reponame":"DeepForest","_stars":319,"_forks":120,"_watches":15,"_topics":[],"_language":"JavaScript","_homepage":"https://deepforest.readthedocs.io/","_description":"DeepForest: Python Package for Tree Crown Detection in Airborne RGB imagery","_organization":"weecology","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2018-03-07T00:00:00.000Z","_age_weeks":248,"_stars_per_week":1.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/weecology/deepforest/master/README.md","_readme_localurl":"weecology~deepforest~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/weecology/deepforest/master/setup.py"],"_requirements_localurls":["weecology~deepforest~setup.py"]},{"index":594,"category":"gis","githuburl":"https://github.com/geopython/owslib","featured":null,"links":null,"description":null,"_repopath":"geopython/owslib","_reponame":"OWSLib","_stars":313,"_forks":257,"_watches":31,"_topics":[],"_language":"Python","_homepage":"https://geopython.github.io/OWSLib","_description":"OWSLib is a Python package for client programming with Open Geospatial Consortium (OGC) web service (hence OWS) interface standards, and their related content models.","_organization":"geopython","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2012-01-13T00:00:00.000Z","_age_weeks":568,"_stars_per_week":0.55,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/geopython/owslib/master/README.rst","_readme_localurl":"geopython~owslib~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/geopython/owslib/master/requirements.txt","https://raw.githubusercontent.com/geopython/owslib/master/setup.py"],"_requirements_localurls":["geopython~owslib~requirements.txt","geopython~owslib~setup.py"]},{"index":510,"category":"ml-dl","githuburl":"https://github.com/leondgarse/keras_cv_attention_models","featured":null,"links":null,"description":null,"_repopath":"leondgarse/keras_cv_attention_models","_reponame":"keras_cv_attention_models","_stars":307,"_forks":49,"_watches":16,"_topics":["tensorflow","visualizing","keras","attention","model","imagenet","coco","recognition","detection","anchor-free","tf","tf2"],"_language":"Python","_homepage":"","_description":"keras_cv_attention_models: Keras/Tensorflow models including beit,botnet,CMT,CoaT,CoAtNet,convnext,cotnet,davit,efficientdet,edgenext,efficientformer,efficientnet,fbnet,gcvit,ghostnetv2,gmlp,halonet,hornet,lcnet,levit,maxvit,mlp-mixer,mobilevit,nat,nfnets,regnet,resmlp,resnest,resnext,resnetd,swin,tinynet,uniformer,volo,wavemlp,yolor,yolov7,yolox","_organization":"leondgarse","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2021-08-02T00:00:00.000Z","_age_weeks":70,"_stars_per_week":4.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/leondgarse/keras_cv_attention_models/master/README.md","_readme_localurl":"leondgarse~keras_cv_attention_models~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/leondgarse/keras_cv_attention_models/master/setup.py"],"_requirements_localurls":["leondgarse~keras_cv_attention_models~setup.py"]},{"index":473,"category":"ml-dl","githuburl":"https://github.com/nyandwi/modernconvnets","featured":null,"links":null,"description":null,"_repopath":"nyandwi/modernconvnets","_reponame":"ModernConvNets","_stars":306,"_forks":31,"_watches":7,"_topics":["convnets","deep-learning-algorithms","computer-vision","tensorflow","keras","convolutional-neural-networks","neural-networks","image-classification","cnns"],"_language":"Jupyter Notebook","_homepage":"","_description":"ModernConvNets: Revisions and implementations of modern Convolutional Neural Networks architectures in TensorFlow and Keras","_organization":"nyandwi","_updated_at":"2022-11-30T00:00:00.000Z","_last_commit_date":"2022-10-05T00:00:00.000Z","_created_at":"2022-02-10T00:00:00.000Z","_age_weeks":42,"_stars_per_week":7.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nyandwi/modernconvnets/master/README.md","_readme_localurl":"nyandwi~modernconvnets~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":500,"category":"study","githuburl":"https://github.com/googlecloudplatform/practical-ml-vision-book","featured":null,"links":null,"description":null,"_repopath":"googlecloudplatform/practical-ml-vision-book","_reponame":"practical-ml-vision-book","_stars":300,"_forks":137,"_watches":18,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"googlecloudplatform/practical-ml-vision-book","_organization":"googlecloudplatform","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-11-21T00:00:00.000Z","_created_at":"2020-11-18T00:00:00.000Z","_age_weeks":107,"_stars_per_week":2.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/googlecloudplatform/practical-ml-vision-book/master/README.md","_readme_localurl":"googlecloudplatform~practical-ml-vision-book~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":430,"category":"jupyter","githuburl":"https://github.com/chaoleili/jupyterlab_tensorboard","featured":null,"links":null,"description":null,"_repopath":"chaoleili/jupyterlab_tensorboard","_reponame":"jupyterlab_tensorboard","_stars":295,"_forks":35,"_watches":11,"_topics":["jupyterlab-extension","tensorboard","jupyterlab"],"_language":"TypeScript","_homepage":"","_description":"jupyterlab_tensorboard: Tensorboard extension for jupyterlab.","_organization":"chaoleili","_updated_at":"2022-11-11T00:00:00.000Z","_last_commit_date":"2022-07-18T00:00:00.000Z","_created_at":"2018-08-14T00:00:00.000Z","_age_weeks":225,"_stars_per_week":1.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/chaoleili/jupyterlab_tensorboard/master/README.md","_readme_localurl":"chaoleili~jupyterlab_tensorboard~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/chaoleili/jupyterlab_tensorboard/master/setup.py","https://raw.githubusercontent.com/chaoleili/jupyterlab_tensorboard/master/pyproject.toml"],"_requirements_localurls":["chaoleili~jupyterlab_tensorboard~setup.py","chaoleili~jupyterlab_tensorboard~pyproject.toml"]},{"index":788,"category":"study","githuburl":"https://github.com/mynameisfiber/high_performance_python_2e","featured":null,"links":null,"description":null,"_repopath":"mynameisfiber/high_performance_python_2e","_reponame":"high_performance_python_2e","_stars":288,"_forks":89,"_watches":6,"_topics":["python","high-performance","code-samples","oreilly","oreilly-books"],"_language":"Python","_homepage":"","_description":"high_performance_python_2e: Code for the book \"High Performance Python 2e\" by Micha Gorelick and Ian Ozsvald with OReilly ","_organization":"mynameisfiber","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2021-01-15T00:00:00.000Z","_created_at":"2020-04-12T00:00:00.000Z","_age_weeks":138,"_stars_per_week":2.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mynameisfiber/high_performance_python_2e/master/README.md","_readme_localurl":"mynameisfiber~high_performance_python_2e~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":574,"category":"gis","githuburl":"https://github.com/developmentseed/geolambda","featured":null,"links":null,"description":null,"_repopath":"developmentseed/geolambda","_reponame":"geolambda","_stars":277,"_forks":84,"_watches":50,"_topics":[],"_language":"Dockerfile","_homepage":null,"_description":"geolambda: Create and deploy Geospatial AWS Lambda functions","_organization":"developmentseed","_updated_at":"2022-10-26T00:00:00.000Z","_last_commit_date":"2021-02-16T00:00:00.000Z","_created_at":"2017-05-02T00:00:00.000Z","_age_weeks":292,"_stars_per_week":0.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/geolambda/master/README.md","_readme_localurl":"developmentseed~geolambda~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":524,"category":"util","githuburl":"https://github.com/venth/aws-adfs","featured":null,"links":null,"description":null,"_repopath":"venth/aws-adfs","_reponame":"aws-adfs","_stars":276,"_forks":91,"_watches":11,"_topics":["aws","adfs","python","command-line","tools","multi-factor-authentication","duo-security"],"_language":"Python","_homepage":"","_description":"aws-adfs: Command line tool to ease aws cli authentication against ADFS (multi factor authentication with active directory)","_organization":"venth","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-10-29T00:00:00.000Z","_created_at":"2016-06-25T00:00:00.000Z","_age_weeks":336,"_stars_per_week":0.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/venth/aws-adfs/master/README.md","_readme_localurl":"venth~aws-adfs~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/venth/aws-adfs/master/pyproject.toml"],"_requirements_localurls":["venth~aws-adfs~pyproject.toml"]},{"index":884,"category":"time-series","githuburl":"https://github.com/pastas/pastas","featured":null,"links":null,"description":null,"_repopath":"pastas/pastas","_reponame":"pastas","_stars":274,"_forks":54,"_watches":15,"_topics":["hydrology","groundwater","python","timeseries","analysis","pastas"],"_language":"Jupyter Notebook","_homepage":"http://pastas.readthedocs.io/","_description":"pastas: :spaghetti: Pastas is an open-source Python framework for the analysis of groundwater time series.","_organization":"pastas","_updated_at":"2022-11-22T00:00:00.000Z","_last_commit_date":"2022-08-02T00:00:00.000Z","_created_at":"2016-04-15T00:00:00.000Z","_age_weeks":346,"_stars_per_week":0.79,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pastas/pastas/master/README.rst","_readme_localurl":"pastas~pastas~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pastas/pastas/master/setup.py"],"_requirements_localurls":["pastas~pastas~setup.py"]},{"index":827,"category":"gis","githuburl":"https://github.com/datasystemslab/geotorch","featured":null,"links":null,"description":null,"_repopath":"datasystemslab/geotorch","_reponame":"GeoTorch","_stars":271,"_forks":14,"_watches":7,"_topics":["classification-model","convlstm-pytorch","deep-learning","deep-neural-networks","deepsat","prediction-model","raster-data","satellite-images","segmentation-models","sequence-models","spatial-data-analysis","spatio-temporal-analysis","spatio-temporal-models","spatio-temporal-prediction","st-resnet","satellite-classification"],"_language":"Python","_homepage":"https://kanchanchy.github.io/geotorch/","_description":"GeoTorch: A Spatiotemporal Deep Learning Framework","_organization":"datasystemslab","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-11-27T00:00:00.000Z","_created_at":"2022-05-23T00:00:00.000Z","_age_weeks":28,"_stars_per_week":9.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/datasystemslab/geotorch/master/README.md","_readme_localurl":"datasystemslab~geotorch~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/datasystemslab/geotorch/master/setup.py"],"_requirements_localurls":["datasystemslab~geotorch~setup.py"]},{"index":727,"category":"web","githuburl":"https://github.com/rstudio/py-shiny","featured":null,"links":null,"description":null,"_repopath":"rstudio/py-shiny","_reponame":"py-shiny","_stars":271,"_forks":14,"_watches":18,"_topics":[],"_language":"JavaScript","_homepage":"https://shiny.rstudio.com/py/","_description":"py-shiny: Shiny for Python","_organization":"rstudio","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-06T00:00:00.000Z","_created_at":"2021-07-27T00:00:00.000Z","_age_weeks":71,"_stars_per_week":3.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rstudio/py-shiny/master/README.md","_readme_localurl":"rstudio~py-shiny~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rstudio/py-shiny/master/setup.py"],"_requirements_localurls":["rstudio~py-shiny~setup.py"]},{"index":123,"category":"util","githuburl":"https://github.com/mgedmin/check-manifest","featured":null,"links":null,"description":null,"_repopath":"mgedmin/check-manifest","_reponame":"check-manifest","_stars":269,"_forks":37,"_watches":7,"_topics":[],"_language":"Python","_homepage":"https://pypi.org/p/check-manifest","_description":"check-manifest: Tool to check the completeness of MANIFEST.in for Python packages","_organization":"mgedmin","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2013-03-05T00:00:00.000Z","_age_weeks":509,"_stars_per_week":0.53,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mgedmin/check-manifest/master/README.rst","_readme_localurl":"mgedmin~check-manifest~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mgedmin/check-manifest/master/setup.py"],"_requirements_localurls":["mgedmin~check-manifest~setup.py"]},{"index":852,"category":"web","githuburl":"https://github.com/conradbez/hstream","featured":null,"links":null,"description":null,"_repopath":"conradbez/hstream","_reponame":"hstream","_stars":264,"_forks":11,"_watches":6,"_topics":[],"_language":"Python","_homepage":null,"_description":"hstream: Hyper Stream","_organization":"conradbez","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2022-11-03T00:00:00.000Z","_age_weeks":4,"_stars_per_week":54.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/conradbez/hstream/master/README.md","_readme_localurl":"conradbez~hstream~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/conradbez/hstream/master/setup.py"],"_requirements_localurls":["conradbez~hstream~setup.py"]},{"index":307,"category":"crypto","githuburl":"https://github.com/ethereum/eth-utils","featured":null,"links":null,"description":null,"_repopath":"ethereum/eth-utils","_reponame":"eth-utils","_stars":263,"_forks":141,"_watches":19,"_topics":["ethereum","python","utility-library"],"_language":"Python","_homepage":"https://eth-utils.readthedocs.io/en/latest/","_description":"eth-utils: Utility functions for working with ethereum related codebases.","_organization":"ethereum","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-11-17T00:00:00.000Z","_created_at":"2017-02-07T00:00:00.000Z","_age_weeks":304,"_stars_per_week":0.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethereum/eth-utils/master/README.md","_readme_localurl":"ethereum~eth-utils~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ethereum/eth-utils/master/setup.py","https://raw.githubusercontent.com/ethereum/eth-utils/master/pyproject.toml"],"_requirements_localurls":["ethereum~eth-utils~setup.py","ethereum~eth-utils~pyproject.toml"]},{"index":385,"category":"nlp","githuburl":"https://github.com/kootenpv/contractions","featured":null,"links":null,"description":null,"_repopath":"kootenpv/contractions","_reponame":"contractions","_stars":262,"_forks":35,"_watches":7,"_topics":[],"_language":"Python","_homepage":null,"_description":"contractions: Fixes contractions such as `you're` to you `are`","_organization":"kootenpv","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2022-11-15T00:00:00.000Z","_created_at":"2016-12-25T00:00:00.000Z","_age_weeks":310,"_stars_per_week":0.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kootenpv/contractions/master/README.md","_readme_localurl":"kootenpv~contractions~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kootenpv/contractions/master/requirements.txt","https://raw.githubusercontent.com/kootenpv/contractions/master/setup.py"],"_requirements_localurls":["kootenpv~contractions~requirements.txt","kootenpv~contractions~setup.py"]},{"index":342,"category":"term","githuburl":"https://github.com/rockhopper-technologies/enlighten","featured":null,"links":null,"description":null,"_repopath":"rockhopper-technologies/enlighten","_reponame":"enlighten","_stars":262,"_forks":19,"_watches":4,"_topics":["python"],"_language":"Python","_homepage":"https://python-enlighten.readthedocs.io","_description":"Enlighten Progress Bar for Python Console Apps","_organization":"rockhopper-technologies","_updated_at":"2022-11-28T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2017-09-22T00:00:00.000Z","_age_weeks":271,"_stars_per_week":0.96,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/rockhopper-technologies/enlighten/master/README.rst","_readme_localurl":"rockhopper-technologies~enlighten~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rockhopper-technologies/enlighten/master/requirements.txt","https://raw.githubusercontent.com/rockhopper-technologies/enlighten/master/setup.py"],"_requirements_localurls":["rockhopper-technologies~enlighten~requirements.txt","rockhopper-technologies~enlighten~setup.py"]},{"index":210,"category":"util","githuburl":"https://github.com/tiangolo/poetry-version-plugin","featured":null,"links":null,"description":null,"_repopath":"tiangolo/poetry-version-plugin","_reponame":"poetry-version-plugin","_stars":261,"_forks":23,"_watches":5,"_topics":["python-poetry","packaging","python","python3","pypi","packaging-for-pypi"],"_language":"Python","_homepage":"","_description":"poetry-version-plugin: Poetry plugin for dynamically extracting the package version from a __version__ variable or a Git tag.","_organization":"tiangolo","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2021-05-28T00:00:00.000Z","_created_at":"2021-05-27T00:00:00.000Z","_age_weeks":79,"_stars_per_week":3.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/poetry-version-plugin/master/README.md","_readme_localurl":"tiangolo~poetry-version-plugin~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tiangolo/poetry-version-plugin/master/pyproject.toml"],"_requirements_localurls":["tiangolo~poetry-version-plugin~pyproject.toml"]},{"index":508,"category":"data","githuburl":"https://github.com/facebookresearch/mephisto","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/mephisto","_reponame":"Mephisto","_stars":257,"_forks":58,"_watches":14,"_topics":[],"_language":"JavaScript","_homepage":"https://mephisto.ai/","_description":"Mephisto: A suite of tools for managing crowdsourcing tasks from the inception through to data packaging for research use. ","_organization":"facebookresearch","_updated_at":"2022-11-23T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2019-08-19T00:00:00.000Z","_age_weeks":172,"_stars_per_week":1.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/mephisto/master/README.md","_readme_localurl":"facebookresearch~mephisto~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/mephisto/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~mephisto~pyproject.toml"]},{"index":303,"category":"util","githuburl":"https://github.com/airbnb/ottr","featured":null,"links":null,"description":null,"_repopath":"airbnb/ottr","_reponame":"ottr","_stars":256,"_forks":27,"_watches":8,"_topics":[],"_language":"Python","_homepage":"","_description":"ottr: Serverless Public Key Infrastructure Framework","_organization":"airbnb","_updated_at":"2022-11-05T00:00:00.000Z","_last_commit_date":"2022-01-04T00:00:00.000Z","_created_at":"2021-08-27T00:00:00.000Z","_age_weeks":66,"_stars_per_week":3.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/airbnb/ottr/master/README.md","_readme_localurl":"airbnb~ottr~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/airbnb/ottr/master/requirements.txt"],"_requirements_localurls":["airbnb~ottr~requirements.txt"]},{"index":418,"category":"pandas","githuburl":"https://github.com/zsailer/pandas_flavor","featured":null,"links":null,"description":null,"_repopath":"zsailer/pandas_flavor","_reponame":"pandas_flavor","_stars":254,"_forks":17,"_watches":6,"_topics":["pandas"],"_language":"Python","_homepage":"https://zsailer.github.io/software/pandas-flavor/","_description":"pandas_flavor: The easy way to write your own flavor of Pandas","_organization":"zsailer","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-04-17T00:00:00.000Z","_created_at":"2018-01-25T00:00:00.000Z","_age_weeks":253,"_stars_per_week":1.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zsailer/pandas_flavor/master/README.md","_readme_localurl":"zsailer~pandas_flavor~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/zsailer/pandas_flavor/master/setup.py","https://raw.githubusercontent.com/zsailer/pandas_flavor/master/pyproject.toml"],"_requirements_localurls":["zsailer~pandas_flavor~setup.py","zsailer~pandas_flavor~pyproject.toml"]},{"index":693,"category":"data","githuburl":"https://github.com/paperswithcode/sota-extractor","featured":null,"links":null,"description":null,"_repopath":"paperswithcode/sota-extractor","_reponame":"sota-extractor","_stars":251,"_forks":27,"_watches":13,"_topics":[],"_language":"Python","_homepage":null,"_description":"sota-extractor: The SOTA extractor pipeline","_organization":"paperswithcode","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-03-09T00:00:00.000Z","_created_at":"2018-12-07T00:00:00.000Z","_age_weeks":208,"_stars_per_week":1.2,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/README.md","_readme_localurl":"paperswithcode~sota-extractor~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/requirements.txt","https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/setup.py"],"_requirements_localurls":["paperswithcode~sota-extractor~requirements.txt","paperswithcode~sota-extractor~setup.py"]},{"index":670,"category":"gis","githuburl":"https://github.com/cgal/cgal-swig-bindings","featured":null,"links":null,"description":null,"_repopath":"cgal/cgal-swig-bindings","_reponame":"cgal-swig-bindings","_stars":251,"_forks":78,"_watches":26,"_topics":[],"_language":"C++","_homepage":"","_description":"cgal-swig-bindings: CGAL bindings using SWIG","_organization":"cgal","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2022-10-19T00:00:00.000Z","_created_at":"2015-03-14T00:00:00.000Z","_age_weeks":403,"_stars_per_week":0.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cgal/cgal-swig-bindings/master/README.md","_readme_localurl":"cgal~cgal-swig-bindings~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/cgal/cgal-swig-bindings/master/setup.py"],"_requirements_localurls":["cgal~cgal-swig-bindings~setup.py"]},{"index":374,"category":"data","githuburl":"https://github.com/ndrplz/google-drive-downloader","featured":null,"links":null,"description":null,"_repopath":"ndrplz/google-drive-downloader","_reponame":"google-drive-downloader","_stars":249,"_forks":63,"_watches":11,"_topics":[],"_language":"Python","_homepage":null,"_description":"google-drive-downloader: Minimal class to download shared files from Google Drive.","_organization":"ndrplz","_updated_at":"2022-11-15T00:00:00.000Z","_last_commit_date":"2019-02-09T00:00:00.000Z","_created_at":"2017-12-08T00:00:00.000Z","_age_weeks":260,"_stars_per_week":0.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ndrplz/google-drive-downloader/master/README.md","_readme_localurl":"ndrplz~google-drive-downloader~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ndrplz/google-drive-downloader/master/setup.py"],"_requirements_localurls":["ndrplz~google-drive-downloader~setup.py"]},{"index":587,"category":"ml","githuburl":"https://github.com/merantix-momentum/squirrel-core","featured":null,"links":null,"description":null,"_repopath":"merantix-momentum/squirrel-core","_reponame":"squirrel-core","_stars":249,"_forks":4,"_watches":14,"_topics":["python","ml","machine-learning","data-science","computer-vision","cv","nlp","natural-language-processing","ai","pytorch","tensorflow","jax","datasets","distributed","dataops","collaboration","deep-learning","data-mesh","data-ingestion","cloud-computing"],"_language":"Python","_homepage":"https://squirrel-core.readthedocs.io/","_description":"squirrel-core: A Python library that enables ML teams to share, load, and transform data in a collaborative, flexible, and efficient way :chestnut:","_organization":"merantix-momentum","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-17T00:00:00.000Z","_created_at":"2022-02-11T00:00:00.000Z","_age_weeks":42,"_stars_per_week":5.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/merantix-momentum/squirrel-core/master/README.md","_readme_localurl":"merantix-momentum~squirrel-core~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/merantix-momentum/squirrel-core/master/requirements.txt","https://raw.githubusercontent.com/merantix-momentum/squirrel-core/master/setup.py","https://raw.githubusercontent.com/merantix-momentum/squirrel-core/master/pyproject.toml"],"_requirements_localurls":["merantix-momentum~squirrel-core~requirements.txt","merantix-momentum~squirrel-core~setup.py","merantix-momentum~squirrel-core~pyproject.toml"]},{"index":248,"category":"util","githuburl":"https://github.com/rpgreen/apilogs","featured":null,"links":null,"description":null,"_repopath":"rpgreen/apilogs","_reponame":"apilogs","_stars":247,"_forks":19,"_watches":9,"_topics":["api","gateway","api-gateway","aws","cloudwatch-logs","logging","lambda","aws-lambda","aws-apigateway"],"_language":"Python","_homepage":"","_description":"apilogs: Easy logging and debugging for Amazon API Gateway and AWS Lambda Serverless APIs","_organization":"rpgreen","_updated_at":"2022-10-23T00:00:00.000Z","_last_commit_date":"2019-11-13T00:00:00.000Z","_created_at":"2016-09-07T00:00:00.000Z","_age_weeks":326,"_stars_per_week":0.76,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/rpgreen/apilogs/master/README.rst","_readme_localurl":"rpgreen~apilogs~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rpgreen/apilogs/master/setup.py"],"_requirements_localurls":["rpgreen~apilogs~setup.py"]},{"index":300,"category":"nlp","githuburl":"https://github.com/openai/grade-school-math","featured":null,"links":null,"description":null,"_repopath":"openai/grade-school-math","_reponame":"grade-school-math","_stars":244,"_forks":45,"_watches":7,"_topics":[],"_language":"Python","_homepage":null,"_description":"openai/grade-school-math","_organization":"openai","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2021-11-19T00:00:00.000Z","_created_at":"2021-10-20T00:00:00.000Z","_age_weeks":59,"_stars_per_week":4.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/grade-school-math/master/README.md","_readme_localurl":"openai~grade-school-math~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/grade-school-math/master/setup.py"],"_requirements_localurls":["openai~grade-school-math~setup.py"]},{"index":454,"category":"gis","githuburl":"https://github.com/openaddresses/pyesridump","featured":null,"links":null,"description":null,"_repopath":"openaddresses/pyesridump","_reponame":"pyesridump","_stars":243,"_forks":59,"_watches":16,"_topics":[],"_language":"Python","_homepage":null,"_description":"pyesridump: Scrapes an ESRI MapServer REST endpoint to spit out more generally-usable geodata.","_organization":"openaddresses","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-06-19T00:00:00.000Z","_created_at":"2013-12-06T00:00:00.000Z","_age_weeks":469,"_stars_per_week":0.52,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openaddresses/pyesridump/master/README.md","_readme_localurl":"openaddresses~pyesridump~README.md","_requirements_filenames":["setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/openaddresses/pyesridump/master/setup.py","https://raw.githubusercontent.com/openaddresses/pyesridump/master/Pipfile"],"_requirements_localurls":["openaddresses~pyesridump~setup.py","openaddresses~pyesridump~Pipfile"]},{"index":480,"category":"pandas","githuburl":"https://github.com/holoviz/spatialpandas","featured":null,"links":null,"description":null,"_repopath":"holoviz/spatialpandas","_reponame":"spatialpandas","_stars":243,"_forks":20,"_watches":21,"_topics":["holoviz","spatialpandas","pandas","geopandas","geographic-data"],"_language":"Python","_homepage":"","_description":"spatialpandas: Pandas extension arrays for spatial/geometric operations","_organization":"holoviz","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-22T00:00:00.000Z","_created_at":"2019-10-28T00:00:00.000Z","_age_weeks":162,"_stars_per_week":1.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/spatialpandas/master/README.md","_readme_localurl":"holoviz~spatialpandas~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/spatialpandas/master/setup.py","https://raw.githubusercontent.com/holoviz/spatialpandas/master/pyproject.toml"],"_requirements_localurls":["holoviz~spatialpandas~setup.py","holoviz~spatialpandas~pyproject.toml"]},{"index":714,"category":"ml-ops","githuburl":"https://github.com/unionai-oss/unionml","featured":null,"links":null,"description":null,"_repopath":"unionai-oss/unionml","_reponame":"unionml","_stars":242,"_forks":38,"_watches":4,"_topics":["machine-learning","mlops","hacktoberfest"],"_language":"Python","_homepage":"https://www.union.ai/unionml","_description":"UnionML: the easiest way to build and deploy machine learning microservices","_organization":"unionai-oss","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2021-11-17T00:00:00.000Z","_age_weeks":55,"_stars_per_week":4.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/unionai-oss/unionml/master/README.md","_readme_localurl":"unionai-oss~unionml~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/unionai-oss/unionml/master/requirements.txt","https://raw.githubusercontent.com/unionai-oss/unionml/master/setup.py","https://raw.githubusercontent.com/unionai-oss/unionml/master/pyproject.toml"],"_requirements_localurls":["unionai-oss~unionml~requirements.txt","unionai-oss~unionml~setup.py","unionai-oss~unionml~pyproject.toml"]},{"index":276,"category":"crypto","githuburl":"https://github.com/ethtx/ethtx_ce","featured":null,"links":null,"description":null,"_repopath":"ethtx/ethtx_ce","_reponame":"ethtx_ce","_stars":239,"_forks":59,"_watches":13,"_topics":[],"_language":"Python","_homepage":"https://ethtx.info","_description":"ethtx_ce: Ethereum transaction decoder (community version).","_organization":"ethtx","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2021-07-26T00:00:00.000Z","_age_weeks":71,"_stars_per_week":3.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethtx/ethtx_ce/master/README.md","_readme_localurl":"ethtx~ethtx_ce~README.md","_requirements_filenames":["Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/ethtx/ethtx_ce/master/Pipfile"],"_requirements_localurls":["ethtx~ethtx_ce~Pipfile"]},{"index":277,"category":"data","githuburl":"https://github.com/airbnb/omniduct","featured":null,"links":null,"description":null,"_repopath":"airbnb/omniduct","_reponame":"omniduct","_stars":237,"_forks":47,"_watches":30,"_topics":[],"_language":"Python","_homepage":"","_description":"omniduct: A toolkit providing a uniform interface for connecting to and extracting data from a wide variety of (potentially remote) data stores (including HDFS, Hive, Presto, MySQL, etc).","_organization":"airbnb","_updated_at":"2022-10-16T00:00:00.000Z","_last_commit_date":"2022-05-09T00:00:00.000Z","_created_at":"2017-02-22T00:00:00.000Z","_age_weeks":302,"_stars_per_week":0.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/airbnb/omniduct/master/README.md","_readme_localurl":"airbnb~omniduct~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/airbnb/omniduct/master/setup.py"],"_requirements_localurls":["airbnb~omniduct~setup.py"]},{"index":864,"category":"ml-ops","githuburl":"https://github.com/astronomer/airflow-chart","featured":null,"links":null,"description":null,"_repopath":"astronomer/airflow-chart","_reponame":"airflow-chart","_stars":236,"_forks":86,"_watches":44,"_topics":["helm-chart","airflow","apache-airflow","kubernetes"],"_language":"Python","_homepage":null,"_description":"airflow-chart: A Helm chart to install Apache Airflow on Kubernetes","_organization":"astronomer","_updated_at":"2022-11-29T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2020-01-22T00:00:00.000Z","_age_weeks":150,"_stars_per_week":1.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/astronomer/airflow-chart/master/README.md","_readme_localurl":"astronomer~airflow-chart~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":657,"category":"template","githuburl":"https://github.com/sqlalchemy/mako","featured":null,"links":null,"description":null,"_repopath":"sqlalchemy/mako","_reponame":"mako","_stars":234,"_forks":46,"_watches":10,"_topics":[],"_language":"Python","_homepage":"https://www.makotemplates.org","_description":"Mako Templates for Python","_organization":"sqlalchemy","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2018-11-26T00:00:00.000Z","_age_weeks":210,"_stars_per_week":1.11,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sqlalchemy/mako/master/README.rst","_readme_localurl":"sqlalchemy~mako~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sqlalchemy/mako/master/setup.py","https://raw.githubusercontent.com/sqlalchemy/mako/master/pyproject.toml"],"_requirements_localurls":["sqlalchemy~mako~setup.py","sqlalchemy~mako~pyproject.toml"]},{"index":870,"category":"ml","githuburl":"https://github.com/infer-actively/pymdp","featured":null,"links":null,"description":null,"_repopath":"infer-actively/pymdp","_reponame":"pymdp","_stars":232,"_forks":37,"_watches":23,"_topics":[],"_language":"Python","_homepage":"","_description":"pymdp: A Python implementation of active inference for Markov Decision Processes","_organization":"infer-actively","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-10-26T00:00:00.000Z","_created_at":"2019-11-27T00:00:00.000Z","_age_weeks":158,"_stars_per_week":1.47,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/infer-actively/pymdp/master/README.md","_readme_localurl":"infer-actively~pymdp~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/infer-actively/pymdp/master/requirements.txt","https://raw.githubusercontent.com/infer-actively/pymdp/master/setup.py"],"_requirements_localurls":["infer-actively~pymdp~requirements.txt","infer-actively~pymdp~setup.py"]},{"index":588,"category":"data","githuburl":"https://github.com/tokern/data-lineage","featured":null,"links":null,"description":null,"_repopath":"tokern/data-lineage","_reponame":"data-lineage","_stars":231,"_forks":27,"_watches":8,"_topics":["data-lineage","data-governance","python","postgresql","jupyter"],"_language":"Python","_homepage":"https://tokern.io/data-lineage/","_description":"data-lineage: Generate and Visualize Data Lineage from query history","_organization":"tokern","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-05-02T00:00:00.000Z","_created_at":"2020-03-17T00:00:00.000Z","_age_weeks":142,"_stars_per_week":1.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tokern/data-lineage/master/README.md","_readme_localurl":"tokern~data-lineage~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tokern/data-lineage/master/pyproject.toml"],"_requirements_localurls":["tokern~data-lineage~pyproject.toml"]},{"index":229,"category":"data","githuburl":"https://github.com/microsoft/genalog","featured":null,"links":null,"description":null,"_repopath":"microsoft/genalog","_reponame":"genalog","_stars":231,"_forks":23,"_watches":10,"_topics":["ner","ocr-recognition","python","text-alignment","data-generation","data-science","machine-learning","synthetic-data","synthetic-images","synthetic-data-generation"],"_language":"Jupyter Notebook","_homepage":"https://microsoft.github.io/genalog/","_description":"Genalog is an open source, cross-platform python package allowing generation of synthetic document images with custom degradations and text alignment capabilities.","_organization":"microsoft","_updated_at":"2022-11-29T00:00:00.000Z","_last_commit_date":"2022-09-13T00:00:00.000Z","_created_at":"2020-06-15T00:00:00.000Z","_age_weeks":129,"_stars_per_week":1.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/genalog/master/README.md","_readme_localurl":"microsoft~genalog~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/genalog/master/requirements.txt","https://raw.githubusercontent.com/microsoft/genalog/master/setup.py"],"_requirements_localurls":["microsoft~genalog~requirements.txt","microsoft~genalog~setup.py"]},{"index":515,"category":"data","githuburl":"https://github.com/jovianml/opendatasets","featured":null,"links":null,"description":null,"_repopath":"jovianml/opendatasets","_reponame":"opendatasets","_stars":230,"_forks":110,"_watches":14,"_topics":["data-science","machine-learning","datasets","python"],"_language":"Python","_homepage":"","_description":"opendatasets: A Python library for downloading datasets from Kaggle, Google Drive, and other online sources.","_organization":"jovianml","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-11-01T00:00:00.000Z","_created_at":"2020-09-17T00:00:00.000Z","_age_weeks":115,"_stars_per_week":1.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jovianml/opendatasets/master/README.md","_readme_localurl":"jovianml~opendatasets~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jovianml/opendatasets/master/requirements.txt","https://raw.githubusercontent.com/jovianml/opendatasets/master/setup.py"],"_requirements_localurls":["jovianml~opendatasets~requirements.txt","jovianml~opendatasets~setup.py"]},{"index":83,"category":"ml","githuburl":"https://github.com/stan-dev/pystan","featured":null,"links":null,"description":null,"_repopath":"stan-dev/pystan","_reponame":"pystan","_stars":219,"_forks":43,"_watches":12,"_topics":[],"_language":"Python","_homepage":"","_description":"PyStan, a Python interface to Stan, a platform for statistical modeling. Documentation: https://pystan.readthedocs.io","_organization":"stan-dev","_updated_at":"2022-11-28T00:00:00.000Z","_last_commit_date":"2022-11-26T00:00:00.000Z","_created_at":"2017-09-17T00:00:00.000Z","_age_weeks":272,"_stars_per_week":0.8,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/stan-dev/pystan/master/README.rst","_readme_localurl":"stan-dev~pystan~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/stan-dev/pystan/master/pyproject.toml"],"_requirements_localurls":["stan-dev~pystan~pyproject.toml"]},{"index":274,"category":"data","githuburl":"https://github.com/amzn/ion-python","featured":null,"links":null,"description":null,"_repopath":"amzn/ion-python","_reponame":"ion-python","_stars":213,"_forks":49,"_watches":23,"_topics":[],"_language":"Python","_homepage":"http://amzn.github.io/ion-docs/","_description":"ion-python: A Python implementation of Amazon Ion.","_organization":"amzn","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-08-19T00:00:00.000Z","_created_at":"2016-04-07T00:00:00.000Z","_age_weeks":347,"_stars_per_week":0.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/amzn/ion-python/master/README.md","_readme_localurl":"amzn~ion-python~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/amzn/ion-python/master/requirements.txt","https://raw.githubusercontent.com/amzn/ion-python/master/setup.py"],"_requirements_localurls":["amzn~ion-python~requirements.txt","amzn~ion-python~setup.py"]},{"index":737,"category":"ml-ops","githuburl":"https://github.com/skops-dev/skops","featured":null,"links":null,"description":null,"_repopath":"skops-dev/skops","_reponame":"skops","_stars":213,"_forks":31,"_watches":9,"_topics":["huggingface","machine-learning","mlops","scikit-learn","hacktoberfest"],"_language":"Python","_homepage":"https://skops.readthedocs.io/en/stable/","_description":"skops is a Python library helping you share your scikit-learn based models and put them in production","_organization":"skops-dev","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2022-05-04T00:00:00.000Z","_age_weeks":31,"_stars_per_week":6.87,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/skops-dev/skops/master/README.rst","_readme_localurl":"skops-dev~skops~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/skops-dev/skops/master/setup.py","https://raw.githubusercontent.com/skops-dev/skops/master/pyproject.toml"],"_requirements_localurls":["skops-dev~skops~setup.py","skops-dev~skops~pyproject.toml"]},{"index":491,"category":"gis","githuburl":"https://github.com/cogeotiff/rio-cogeo","featured":null,"links":null,"description":null,"_repopath":"cogeotiff/rio-cogeo","_reponame":"rio-cogeo","_stars":212,"_forks":30,"_watches":44,"_topics":["satellite","cog","geotiff","rasterio","cogeotiff"],"_language":"Python","_homepage":"https://cogeotiff.github.io/rio-cogeo/","_description":"rio-cogeo: Cloud Optimized GeoTIFF creation and validation plugin for rasterio","_organization":"cogeotiff","_updated_at":"2022-11-16T00:00:00.000Z","_last_commit_date":"2022-10-26T00:00:00.000Z","_created_at":"2018-03-09T00:00:00.000Z","_age_weeks":247,"_stars_per_week":0.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cogeotiff/rio-cogeo/master/README.md","_readme_localurl":"cogeotiff~rio-cogeo~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cogeotiff/rio-cogeo/master/pyproject.toml"],"_requirements_localurls":["cogeotiff~rio-cogeo~pyproject.toml"]},{"index":249,"category":"sim","githuburl":"https://github.com/bilhim/trafficsimulator","featured":null,"links":null,"description":null,"_repopath":"bilhim/trafficsimulator","_reponame":"trafficSimulator","_stars":203,"_forks":77,"_watches":13,"_topics":[],"_language":"Python","_homepage":null,"_description":"bilhim/trafficsimulator","_organization":"bilhim","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2021-09-07T00:00:00.000Z","_created_at":"2021-09-05T00:00:00.000Z","_age_weeks":65,"_stars_per_week":3.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bilhim/trafficsimulator/master/README.md","_readme_localurl":"bilhim~trafficsimulator~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/bilhim/trafficsimulator/master/requirements.txt"],"_requirements_localurls":["bilhim~trafficsimulator~requirements.txt"]},{"index":888,"category":"study","githuburl":"https://github.com/amaargiru/pyroad","featured":null,"links":null,"description":null,"_repopath":"amaargiru/pyroad","_reponame":"pyroad","_stars":199,"_forks":25,"_watches":5,"_topics":["python","roadmap","tutorial"],"_language":"Jupyter Notebook","_homepage":"","_description":"pyroad: Detailed Python developer roadmap","_organization":"amaargiru","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2022-11-03T00:00:00.000Z","_age_weeks":4,"_stars_per_week":40.97,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/amaargiru/pyroad/master/readme.md","_readme_localurl":"amaargiru~pyroad~readme.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":243,"category":"ml","githuburl":"https://github.com/carla-recourse/carla","featured":null,"links":null,"description":null,"_repopath":"carla-recourse/carla","_reponame":"CARLA","_stars":197,"_forks":41,"_watches":5,"_topics":["python","machine-learning","artificial-intelligence","explainable-ai","explainable-ml","explainability","counterfactual-explanations","counterfactuals","counterfactual","recourse","benchmark","benchmarking","tensorflow","tensorflow2","pytorch"],"_language":"Python","_homepage":"","_description":"CARLA: A Python Library to Benchmark Algorithmic Recourse and Counterfactual Explanation Algorithms","_organization":"carla-recourse","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-09-07T00:00:00.000Z","_created_at":"2020-12-09T00:00:00.000Z","_age_weeks":104,"_stars_per_week":1.89,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/carla-recourse/carla/master/README.md","_readme_localurl":"carla-recourse~carla~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/carla-recourse/carla/master/setup.py"],"_requirements_localurls":["carla-recourse~carla~setup.py"]},{"index":240,"category":"sim","githuburl":"https://github.com/nv-tlabs/gamegan_code","featured":null,"links":null,"description":null,"_repopath":"nv-tlabs/gamegan_code","_reponame":"GameGAN_code","_stars":197,"_forks":32,"_watches":9,"_topics":[],"_language":"Python","_homepage":null,"_description":"GameGAN_code: Learning to Simulate Dynamic Environments with GameGAN (CVPR 2020)","_organization":"nv-tlabs","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2021-11-11T00:00:00.000Z","_created_at":"2020-12-11T00:00:00.000Z","_age_weeks":103,"_stars_per_week":1.9,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/nv-tlabs/gamegan_code/master/readme.md","_readme_localurl":"nv-tlabs~gamegan_code~readme.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/nv-tlabs/gamegan_code/master/requirements.txt"],"_requirements_localurls":["nv-tlabs~gamegan_code~requirements.txt"]},{"index":865,"category":"ml-ops","githuburl":"https://github.com/astronomer/astro-sdk","featured":null,"links":null,"description":null,"_repopath":"astronomer/astro-sdk","_reponame":"astro-sdk","_stars":195,"_forks":26,"_watches":13,"_topics":["python","sql","pandas","airflow","sqlite","bigquery","postgres","snowflake","gcs","s3","etl","elt","dags","workflows","data-analysis","data-science","apache-airflow"],"_language":"Python","_homepage":"https://docs.astronomer.io/learn/astro-python-sdk-etl","_description":"astro-sdk: Astro SDK allows rapid and clean development of {Extract, Load, Transform} workflows using Python and SQL, powered by Apache Airflow.","_organization":"astronomer","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2021-12-06T00:00:00.000Z","_age_weeks":52,"_stars_per_week":3.73,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/astronomer/astro-sdk/master/README.md","_readme_localurl":"astronomer~astro-sdk~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":836,"category":"gis","githuburl":"https://github.com/r-barnes/richdem","featured":null,"links":null,"description":null,"_repopath":"r-barnes/richdem","_reponame":"richdem","_stars":194,"_forks":57,"_watches":14,"_topics":["digital-elevation-model","geosciences","geospatial","hydrology","hydrologic-modeling","big-data"],"_language":"C++","_homepage":"","_description":"richdem: High-performance Terrain and Hydrology Analysis ","_organization":"r-barnes","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-18T00:00:00.000Z","_created_at":"2013-01-06T00:00:00.000Z","_age_weeks":517,"_stars_per_week":0.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/r-barnes/richdem/master/README.md","_readme_localurl":"r-barnes~richdem~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/r-barnes/richdem/master/requirements.txt"],"_requirements_localurls":["r-barnes~richdem~requirements.txt"]},{"index":733,"category":"ml","githuburl":"https://github.com/autonlab/auton-survival","featured":null,"links":null,"description":null,"_repopath":"autonlab/auton-survival","_reponame":"auton-survival","_stars":194,"_forks":48,"_watches":6,"_topics":["survival-analysis","reliability-analysis","python","data-science","deep-learning","machine-learning","time-to-event","counterfactual-inference","regression","causal-inference","graphical-models"],"_language":"Python","_homepage":"http://autonlab.github.io/auton-survival","_description":"auton-survival: Auton Survival - an open source package for Regression, Counterfactual Estimation, Evaluation and Phenotyping with Censored Time-to-Events ","_organization":"autonlab","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2022-11-05T00:00:00.000Z","_created_at":"2020-04-01T00:00:00.000Z","_age_weeks":140,"_stars_per_week":1.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/autonlab/auton-survival/master/README.md","_readme_localurl":"autonlab~auton-survival~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/autonlab/auton-survival/master/requirements.txt"],"_requirements_localurls":["autonlab~auton-survival~requirements.txt"]},{"index":859,"category":"jupyter","githuburl":"https://github.com/jupyter/nbformat","featured":null,"links":null,"description":null,"_repopath":"jupyter/nbformat","_reponame":"nbformat","_stars":193,"_forks":142,"_watches":26,"_topics":[],"_language":"Python","_homepage":"http://nbformat.readthedocs.io/","_description":"nbformat: Reference implementation of the Jupyter Notebook format","_organization":"jupyter","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":399,"_stars_per_week":0.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/nbformat/master/README.md","_readme_localurl":"jupyter~nbformat~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/nbformat/master/pyproject.toml"],"_requirements_localurls":["jupyter~nbformat~pyproject.toml"]},{"index":456,"category":"gis","githuburl":"https://github.com/graal-research/deepparse","featured":null,"links":null,"description":null,"_repopath":"graal-research/deepparse","_reponame":"deepparse","_stars":186,"_forks":23,"_watches":4,"_topics":["machine-learning","python","addresses-parsing"],"_language":"Python","_homepage":"https://deepparse.org/","_description":"Deepparse is a state-of-the-art library for parsing multinational street addresses using deep learning","_organization":"graal-research","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2020-07-01T00:00:00.000Z","_age_weeks":127,"_stars_per_week":1.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/graal-research/deepparse/master/README.md","_readme_localurl":"graal-research~deepparse~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/graal-research/deepparse/master/requirements.txt","https://raw.githubusercontent.com/graal-research/deepparse/master/setup.py","https://raw.githubusercontent.com/graal-research/deepparse/master/pyproject.toml"],"_requirements_localurls":["graal-research~deepparse~requirements.txt","graal-research~deepparse~setup.py","graal-research~deepparse~pyproject.toml"]},{"index":337,"category":"util","githuburl":"https://github.com/mrabarnett/mrab-regex","featured":null,"links":null,"description":null,"_repopath":"mrabarnett/mrab-regex","_reponame":"mrab-regex","_stars":183,"_forks":24,"_watches":5,"_topics":[],"_language":"C","_homepage":null,"_description":"mrabarnett/mrab-regex","_organization":"mrabarnett","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-10-31T00:00:00.000Z","_created_at":"2020-11-02T00:00:00.000Z","_age_weeks":109,"_stars_per_week":1.67,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mrabarnett/mrab-regex/master/README.rst","_readme_localurl":"mrabarnett~mrab-regex~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mrabarnett/mrab-regex/master/setup.py"],"_requirements_localurls":["mrabarnett~mrab-regex~setup.py"]},{"index":446,"category":"gis","githuburl":"https://github.com/pysal/spopt","featured":null,"links":null,"description":null,"_repopath":"pysal/spopt","_reponame":"spopt","_stars":182,"_forks":30,"_watches":13,"_topics":["spatial-optimization","regionalization","facility-location","routing","transportation","spatial-analysis","location-allocation","location-modeling","resource-planning","python"],"_language":"Python","_homepage":"https://pysal.org/spopt/","_description":"spopt: Spatial Optimization","_organization":"pysal","_updated_at":"2022-11-27T00:00:00.000Z","_last_commit_date":"2022-11-21T00:00:00.000Z","_created_at":"2019-03-01T00:00:00.000Z","_age_weeks":196,"_stars_per_week":0.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pysal/spopt/master/README.md","_readme_localurl":"pysal~spopt~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pysal/spopt/master/requirements.txt","https://raw.githubusercontent.com/pysal/spopt/master/setup.py"],"_requirements_localurls":["pysal~spopt~requirements.txt","pysal~spopt~setup.py"]},{"index":207,"category":"util","githuburl":"https://github.com/aws/aws-lambda-python-runtime-interface-client","featured":null,"links":null,"description":null,"_repopath":"aws/aws-lambda-python-runtime-interface-client","_reponame":"aws-lambda-python-runtime-interface-client","_stars":178,"_forks":41,"_watches":12,"_topics":[],"_language":"Python","_homepage":null,"_description":"aws/aws-lambda-python-runtime-interface-client","_organization":"aws","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-08-16T00:00:00.000Z","_created_at":"2020-09-02T00:00:00.000Z","_age_weeks":118,"_stars_per_week":1.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aws/aws-lambda-python-runtime-interface-client/master/README.md","_readme_localurl":"aws~aws-lambda-python-runtime-interface-client~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aws/aws-lambda-python-runtime-interface-client/master/setup.py"],"_requirements_localurls":["aws~aws-lambda-python-runtime-interface-client~setup.py"]},{"index":520,"category":"gis","githuburl":"https://github.com/lydorn/polygonization-by-frame-field-learning","featured":null,"links":null,"description":null,"_repopath":"lydorn/polygonization-by-frame-field-learning","_reponame":"Polygonization-by-Frame-Field-Learning","_stars":177,"_forks":50,"_watches":11,"_topics":["segmentation","polygonization","remote","sensing","frame","field"],"_language":"Python","_homepage":"","_description":"Polygonization-by-Frame-Field-Learning: This repository contains the code for our fast polygonal building extraction from overhead images pipeline.","_organization":"lydorn","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2021-07-08T00:00:00.000Z","_created_at":"2020-05-26T00:00:00.000Z","_age_weeks":132,"_stars_per_week":1.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lydorn/polygonization-by-frame-field-learning/master/README.md","_readme_localurl":"lydorn~polygonization-by-frame-field-learning~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lydorn/polygonization-by-frame-field-learning/master/requirements.txt","https://raw.githubusercontent.com/lydorn/polygonization-by-frame-field-learning/master/setup.py"],"_requirements_localurls":["lydorn~polygonization-by-frame-field-learning~requirements.txt","lydorn~polygonization-by-frame-field-learning~setup.py"]},{"index":585,"category":"gis","githuburl":"https://github.com/spatialucr/geosnap","featured":null,"links":null,"description":null,"_repopath":"spatialucr/geosnap","_reponame":"geosnap","_stars":175,"_forks":28,"_watches":17,"_topics":[],"_language":"Python","_homepage":"https://spatialucr.github.io/geosnap-guide","_description":"geosnap: The Geospatial Neighborhood Analysis Package","_organization":"spatialucr","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-10-24T00:00:00.000Z","_created_at":"2018-09-19T00:00:00.000Z","_age_weeks":220,"_stars_per_week":0.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/spatialucr/geosnap/master/README.md","_readme_localurl":"spatialucr~geosnap~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/spatialucr/geosnap/master/requirements.txt","https://raw.githubusercontent.com/spatialucr/geosnap/master/setup.py"],"_requirements_localurls":["spatialucr~geosnap~requirements.txt","spatialucr~geosnap~setup.py"]},{"index":731,"category":"gis","githuburl":"https://github.com/bowenc0221/boundary-iou-api","featured":null,"links":null,"description":null,"_repopath":"bowenc0221/boundary-iou-api","_reponame":"boundary-iou-api","_stars":174,"_forks":17,"_watches":8,"_topics":[],"_language":"Python","_homepage":"","_description":"boundary-iou-api: Boundary IoU API (Beta version)","_organization":"bowenc0221","_updated_at":"2022-11-25T00:00:00.000Z","_last_commit_date":"2021-04-05T00:00:00.000Z","_created_at":"2021-03-29T00:00:00.000Z","_age_weeks":88,"_stars_per_week":1.97,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bowenc0221/boundary-iou-api/master/README.md","_readme_localurl":"bowenc0221~boundary-iou-api~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bowenc0221/boundary-iou-api/master/setup.py"],"_requirements_localurls":["bowenc0221~boundary-iou-api~setup.py"]},{"index":467,"category":"math","githuburl":"https://github.com/lukaszahradnik/pyneuralogic","featured":null,"links":null,"description":null,"_repopath":"lukaszahradnik/pyneuralogic","_reponame":"PyNeuraLogic","_stars":173,"_forks":13,"_watches":4,"_topics":["machine-learning","deep-learning","graph-neural-networks","relational-learning","python","geometric-deep-learning","pytorch","logic-programming","differentiable-programming"],"_language":"Python","_homepage":"https://pyneuralogic.readthedocs.io/","_description":"PyNeuraLogic lets you use Python to create Differentiable Logic Programs","_organization":"lukaszahradnik","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2020-12-06T00:00:00.000Z","_age_weeks":104,"_stars_per_week":1.66,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/README.md","_readme_localurl":"lukaszahradnik~pyneuralogic~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/requirements.txt","https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/setup.py","https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/pyproject.toml"],"_requirements_localurls":["lukaszahradnik~pyneuralogic~requirements.txt","lukaszahradnik~pyneuralogic~setup.py","lukaszahradnik~pyneuralogic~pyproject.toml"]},{"index":33,"category":"gis","githuburl":"https://github.com/jasonrig/address-net","featured":null,"links":null,"description":null,"_repopath":"jasonrig/address-net","_reponame":"address-net","_stars":171,"_forks":71,"_watches":13,"_topics":["rnn","deep-learning","machine-learning","address-parser"],"_language":"Python","_homepage":null,"_description":"address-net: A package to structure Australian addresses","_organization":"jasonrig","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2020-09-09T00:00:00.000Z","_created_at":"2018-12-05T00:00:00.000Z","_age_weeks":209,"_stars_per_week":0.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jasonrig/address-net/master/README.md","_readme_localurl":"jasonrig~address-net~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jasonrig/address-net/master/setup.py"],"_requirements_localurls":["jasonrig~address-net~setup.py"]},{"index":266,"category":"nlp","githuburl":"https://github.com/allenai/s2orc-doc2json","featured":null,"links":null,"description":null,"_repopath":"allenai/s2orc-doc2json","_reponame":"s2orc-doc2json","_stars":170,"_forks":29,"_watches":8,"_topics":[],"_language":"Python","_homepage":"","_description":"s2orc-doc2json: Parsers for scientific papers (PDF2JSON, TEX2JSON, JATS2JSON)","_organization":"allenai","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-18T00:00:00.000Z","_created_at":"2020-12-10T00:00:00.000Z","_age_weeks":103,"_stars_per_week":1.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/README.md","_readme_localurl":"allenai~s2orc-doc2json~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/requirements.txt","https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/setup.py"],"_requirements_localurls":["allenai~s2orc-doc2json~requirements.txt","allenai~s2orc-doc2json~setup.py"]},{"index":461,"category":"nlp","githuburl":"https://github.com/yoadtew/zero-shot-image-to-text","featured":null,"links":null,"description":null,"_repopath":"yoadtew/zero-shot-image-to-text","_reponame":"zero-shot-image-to-text","_stars":164,"_forks":22,"_watches":7,"_topics":[],"_language":"Python","_homepage":"","_description":"zero-shot-image-to-text: Implementation of Zero-Shot Image-to-Text Generation for Visual-Semantic Arithmetic","_organization":"yoadtew","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-09-17T00:00:00.000Z","_created_at":"2021-11-26T00:00:00.000Z","_age_weeks":53,"_stars_per_week":3.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/yoadtew/zero-shot-image-to-text/master/README.md","_readme_localurl":"yoadtew~zero-shot-image-to-text~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/yoadtew/zero-shot-image-to-text/master/requirements.txt","https://raw.githubusercontent.com/yoadtew/zero-shot-image-to-text/master/setup.py"],"_requirements_localurls":["yoadtew~zero-shot-image-to-text~requirements.txt","yoadtew~zero-shot-image-to-text~setup.py"]},{"index":339,"category":"perf","githuburl":"https://github.com/tlkh/tf-metal-experiments","featured":null,"links":null,"description":null,"_repopath":"tlkh/tf-metal-experiments","_reponame":"tf-metal-experiments","_stars":160,"_forks":17,"_watches":9,"_topics":["gpu","deep-learning","tensorflow","m1","m1-max","benchmark","bert"],"_language":"Jupyter Notebook","_homepage":"","_description":"tf-metal-experiments: TensorFlow Metal Backend on Apple Silicon Experiments (just for fun)","_organization":"tlkh","_updated_at":"2022-11-30T00:00:00.000Z","_last_commit_date":"2021-11-15T00:00:00.000Z","_created_at":"2021-10-26T00:00:00.000Z","_age_weeks":58,"_stars_per_week":2.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tlkh/tf-metal-experiments/master/README.md","_readme_localurl":"tlkh~tf-metal-experiments~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":899,"category":"gis","githuburl":"https://github.com/kuanb/peartree","featured":null,"links":null,"description":null,"_repopath":"kuanb/peartree","_reponame":"peartree","_stars":160,"_forks":13,"_watches":11,"_topics":["network-analysis","transit","graphs","gtfs","spatial-analysis","gis","modeling"],"_language":"Python","_homepage":"","_description":"peartree: A library for converting transit data into a directed graph for sketch network analysis.","_organization":"kuanb","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2021-01-18T00:00:00.000Z","_created_at":"2017-11-12T00:00:00.000Z","_age_weeks":264,"_stars_per_week":0.61,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/kuanb/peartree/master/README.rst","_readme_localurl":"kuanb~peartree~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kuanb/peartree/master/requirements.txt","https://raw.githubusercontent.com/kuanb/peartree/master/setup.py"],"_requirements_localurls":["kuanb~peartree~requirements.txt","kuanb~peartree~setup.py"]},{"index":743,"category":"study","githuburl":"https://github.com/koaning/calm-notebooks","featured":null,"links":null,"description":null,"_repopath":"koaning/calm-notebooks","_reponame":"calm-notebooks","_stars":157,"_forks":133,"_watches":7,"_topics":[],"_language":"Jupyter Notebook","_homepage":"https://calmcode.io","_description":"calm-notebooks: notebooks that are used at calmcode.io","_organization":"koaning","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2021-10-21T00:00:00.000Z","_created_at":"2020-03-01T00:00:00.000Z","_age_weeks":144,"_stars_per_week":1.09,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/koaning/calm-notebooks/master/readme.md","_readme_localurl":"koaning~calm-notebooks~readme.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":819,"category":"time-series","githuburl":"https://github.com/salesforce/deeptime","featured":null,"links":null,"description":null,"_repopath":"salesforce/deeptime","_reponame":"DeepTime","_stars":155,"_forks":22,"_watches":5,"_topics":["deep-learning","forecasting","meta-learning","time-series","time-series-forecasting","time-series-regression","implicit-neural-representation"],"_language":"Python","_homepage":"","_description":"PyTorch code for DeepTime: Deep Time-Index Meta-Learning for Non-Stationary Time-Series Forecasting","_organization":"salesforce","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-03T00:00:00.000Z","_created_at":"2022-06-27T00:00:00.000Z","_age_weeks":23,"_stars_per_week":6.66,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/deeptime/master/README.md","_readme_localurl":"salesforce~deeptime~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/salesforce/deeptime/master/requirements.txt"],"_requirements_localurls":["salesforce~deeptime~requirements.txt"]},{"index":890,"category":"graph","githuburl":"https://github.com/h4kor/graph-force","featured":null,"links":null,"description":null,"_repopath":"h4kor/graph-force","_reponame":"graph-force","_stars":152,"_forks":0,"_watches":9,"_topics":["force-directed-graphs","graph-algorithms","python","python3"],"_language":"Rust","_homepage":"https://pypi.org/project/graph-force/","_description":"graph-force: Python library for embedding large graphs in 2D space, using force-directed layouts.","_organization":"h4kor","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2022-11-28T00:00:00.000Z","_age_weeks":1,"_stars_per_week":118.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/h4kor/graph-force/master/README.md","_readme_localurl":"h4kor~graph-force~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/h4kor/graph-force/master/requirements.txt","https://raw.githubusercontent.com/h4kor/graph-force/master/pyproject.toml"],"_requirements_localurls":["h4kor~graph-force~requirements.txt","h4kor~graph-force~pyproject.toml"]},{"index":775,"category":"sim","githuburl":"https://github.com/activitysim/activitysim","featured":null,"links":null,"description":null,"_repopath":"activitysim/activitysim","_reponame":"activitysim","_stars":143,"_forks":86,"_watches":42,"_topics":["python","travel-modeling","data-science","bsd-3-clause","microsimulation","activitysim"],"_language":"Jupyter Notebook","_homepage":"https://activitysim.github.io","_description":"activitysim: An Open Platform for Activity-Based Travel Modeling","_organization":"activitysim","_updated_at":"2022-10-29T00:00:00.000Z","_last_commit_date":"2022-09-14T00:00:00.000Z","_created_at":"2014-06-18T00:00:00.000Z","_age_weeks":442,"_stars_per_week":0.32,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/activitysim/activitysim/master/README.md","_readme_localurl":"activitysim~activitysim~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/activitysim/activitysim/master/setup.py","https://raw.githubusercontent.com/activitysim/activitysim/master/pyproject.toml"],"_requirements_localurls":["activitysim~activitysim~setup.py","activitysim~activitysim~pyproject.toml"]},{"index":415,"category":"ml-dl","githuburl":"https://github.com/rafiqhasan/auto-tensorflow","featured":null,"links":null,"description":null,"_repopath":"rafiqhasan/auto-tensorflow","_reponame":"auto-tensorflow","_stars":141,"_forks":31,"_watches":12,"_topics":["tensorflow","deeplearning","neural-networks","machinelearning","tfx","machine-learning","automl","auto-tensorflow","autotensorflow"],"_language":"Python","_homepage":"","_description":"auto-tensorflow: Build Low Code Automated Tensorflow explainable models in just 3 lines of code. Library created by: Hasan Rafiq - https://www.linkedin.com/in/sam04/","_organization":"rafiqhasan","_updated_at":"2022-11-09T00:00:00.000Z","_last_commit_date":"2022-10-31T00:00:00.000Z","_created_at":"2021-07-05T00:00:00.000Z","_age_weeks":74,"_stars_per_week":1.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rafiqhasan/auto-tensorflow/master/README.md","_readme_localurl":"rafiqhasan~auto-tensorflow~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/rafiqhasan/auto-tensorflow/master/setup.py","https://raw.githubusercontent.com/rafiqhasan/auto-tensorflow/master/pyproject.toml"],"_requirements_localurls":["rafiqhasan~auto-tensorflow~setup.py","rafiqhasan~auto-tensorflow~pyproject.toml"]},{"index":606,"category":"util","githuburl":"https://github.com/pyscript/pyscript-cli","featured":null,"links":null,"description":null,"_repopath":"pyscript/pyscript-cli","_reponame":"pyscript-cli","_stars":140,"_forks":14,"_watches":11,"_topics":[],"_language":"Python","_homepage":null,"_description":"pyscript-cli: A CLI for PyScript","_organization":"pyscript","_updated_at":"2022-11-17T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2022-05-01T00:00:00.000Z","_age_weeks":31,"_stars_per_week":4.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyscript/pyscript-cli/master/README.md","_readme_localurl":"pyscript~pyscript-cli~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyscript/pyscript-cli/master/pyproject.toml"],"_requirements_localurls":["pyscript~pyscript-cli~pyproject.toml"]},{"index":869,"category":"util","githuburl":"https://github.com/hugovk/pypistats","featured":null,"links":null,"description":null,"_repopath":"hugovk/pypistats","_reponame":"pypistats","_stars":137,"_forks":25,"_watches":4,"_topics":["python","python3","pypi","statistics","stats","api","cli","command-line","command-line-tool","downloads","hacktoberfest"],"_language":"Python","_homepage":"https://pypistats.org/api/","_description":"pypistats: Command-line interface to PyPI Stats API to get download stats for Python packages","_organization":"hugovk","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2018-09-22T00:00:00.000Z","_age_weeks":219,"_stars_per_week":0.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hugovk/pypistats/master/README.md","_readme_localurl":"hugovk~pypistats~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/hugovk/pypistats/master/requirements.txt","https://raw.githubusercontent.com/hugovk/pypistats/master/pyproject.toml"],"_requirements_localurls":["hugovk~pypistats~requirements.txt","hugovk~pypistats~pyproject.toml"]},{"index":231,"category":"template","githuburl":"https://github.com/crmne/cookiecutter-modern-datascience","featured":null,"links":null,"description":null,"_repopath":"crmne/cookiecutter-modern-datascience","_reponame":"cookiecutter-modern-datascience","_stars":134,"_forks":27,"_watches":3,"_topics":["cookiecutter","cookiecutter-template","cookiecutter-data-science","python","datascience"],"_language":"Python","_homepage":"","_description":"cookiecutter-modern-datascience: Start a data science project with modern tools","_organization":"crmne","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-06-10T00:00:00.000Z","_created_at":"2020-07-06T00:00:00.000Z","_age_weeks":126,"_stars_per_week":1.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/crmne/cookiecutter-modern-datascience/master/README.md","_readme_localurl":"crmne~cookiecutter-modern-datascience~README.md","_requirements_filenames":["Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/crmne/cookiecutter-modern-datascience/master/Pipfile"],"_requirements_localurls":["crmne~cookiecutter-modern-datascience~Pipfile"]},{"index":147,"category":"graph","githuburl":"https://github.com/guyallard/markov_clustering","featured":null,"links":null,"description":null,"_repopath":"guyallard/markov_clustering","_reponame":"markov_clustering","_stars":132,"_forks":33,"_watches":9,"_topics":["markov-clustering","clustering","python","networks"],"_language":"Python","_homepage":null,"_description":"markov_clustering: markov clustering in python","_organization":"guyallard","_updated_at":"2022-11-15T00:00:00.000Z","_last_commit_date":"2018-12-11T00:00:00.000Z","_created_at":"2017-09-27T00:00:00.000Z","_age_weeks":271,"_stars_per_week":0.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/guyallard/markov_clustering/master/README.md","_readme_localurl":"guyallard~markov_clustering~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/guyallard/markov_clustering/master/requirements.txt","https://raw.githubusercontent.com/guyallard/markov_clustering/master/setup.py"],"_requirements_localurls":["guyallard~markov_clustering~requirements.txt","guyallard~markov_clustering~setup.py"]},{"index":774,"category":"sim","githuburl":"https://github.com/openfisca/openfisca-core","featured":null,"links":null,"description":null,"_repopath":"openfisca/openfisca-core","_reponame":"openfisca-core","_stars":131,"_forks":72,"_watches":24,"_topics":["legislation-as-code","rules-as-code","better-rules","microsimulation"],"_language":"Python","_homepage":"https://openfisca.org","_description":"openfisca-core: OpenFisca core engine. See other repositories for countries-specific code & data.","_organization":"openfisca","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2013-12-29T00:00:00.000Z","_age_weeks":466,"_stars_per_week":0.28,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openfisca/openfisca-core/master/README.md","_readme_localurl":"openfisca~openfisca-core~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/openfisca/openfisca-core/master/setup.py"],"_requirements_localurls":["openfisca~openfisca-core~setup.py"]},{"index":826,"category":"diffusion","githuburl":"https://github.com/thereforegames/unprompted","featured":null,"links":null,"description":null,"_repopath":"thereforegames/unprompted","_reponame":"unprompted","_stars":129,"_forks":10,"_watches":4,"_topics":[],"_language":"Python","_homepage":null,"_description":"unprompted: Text generator written for Stable Diffusion workflows.","_organization":"thereforegames","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2022-10-31T00:00:00.000Z","_age_weeks":5,"_stars_per_week":24.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/thereforegames/unprompted/master/README.md","_readme_localurl":"thereforegames~unprompted~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":564,"category":"gis","githuburl":"https://github.com/geopandas/pyogrio","featured":null,"links":null,"description":null,"_repopath":"geopandas/pyogrio","_reponame":"pyogrio","_stars":129,"_forks":8,"_watches":8,"_topics":[],"_language":"Python","_homepage":"https://pyogrio.readthedocs.io","_description":"pyogrio: Vectorized vector I/O using OGR","_organization":"geopandas","_updated_at":"2022-11-30T00:00:00.000Z","_last_commit_date":"2022-11-14T00:00:00.000Z","_created_at":"2020-03-27T00:00:00.000Z","_age_weeks":140,"_stars_per_week":0.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/geopandas/pyogrio/master/README.md","_readme_localurl":"geopandas~pyogrio~README.md","_requirements_filenames":["setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/geopandas/pyogrio/master/setup.py","https://raw.githubusercontent.com/geopandas/pyogrio/master/pyproject.toml","https://raw.githubusercontent.com/geopandas/pyogrio/master/Pipfile"],"_requirements_localurls":["geopandas~pyogrio~setup.py","geopandas~pyogrio~pyproject.toml","geopandas~pyogrio~Pipfile"]},{"index":785,"category":"util","githuburl":"https://github.com/brokenloop/jsontopydantic","featured":null,"links":null,"description":null,"_repopath":"brokenloop/jsontopydantic","_reponame":"jsontopydantic","_stars":126,"_forks":7,"_watches":3,"_topics":[],"_language":"TypeScript","_homepage":"https://jsontopydantic.com","_description":"jsontopydantic: Web tool for generating Pydantic models from JSON objects","_organization":"brokenloop","_updated_at":"2022-11-29T00:00:00.000Z","_last_commit_date":"2022-05-13T00:00:00.000Z","_created_at":"2020-11-28T00:00:00.000Z","_age_weeks":105,"_stars_per_week":1.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/brokenloop/jsontopydantic/master/README.md","_readme_localurl":"brokenloop~jsontopydantic~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":290,"category":"template","githuburl":"https://github.com/eugeneyan/python-collab-template","featured":null,"links":null,"description":null,"_repopath":"eugeneyan/python-collab-template","_reponame":"python-collab-template","_stars":124,"_forks":35,"_watches":4,"_topics":["python","unit-testing","linting","type-checking","github-actions","makefile","coverage","hacktoberfest"],"_language":"Python","_homepage":"https://eugeneyan.com/writing/setting-up-python-project-for-automation-and-collaboration/","_description":"python-collab-template: \ud83d\udee0 Python project template with unit tests, code coverage, linting, type checking, Makefile wrapper, and GitHub Actions.","_organization":"eugeneyan","_updated_at":"2022-11-28T00:00:00.000Z","_last_commit_date":"2022-07-02T00:00:00.000Z","_created_at":"2020-06-21T00:00:00.000Z","_age_weeks":128,"_stars_per_week":0.97,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/eugeneyan/python-collab-template/master/README.md","_readme_localurl":"eugeneyan~python-collab-template~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":305,"category":"util","githuburl":"https://github.com/xrudelis/pytrait","featured":null,"links":null,"description":null,"_repopath":"xrudelis/pytrait","_reponame":"pytrait","_stars":121,"_forks":3,"_watches":3,"_topics":[],"_language":"Python","_homepage":null,"_description":"pytrait: Traits for Python3","_organization":"xrudelis","_updated_at":"2022-11-15T00:00:00.000Z","_last_commit_date":"2021-11-27T00:00:00.000Z","_created_at":"2021-11-21T00:00:00.000Z","_age_weeks":54,"_stars_per_week":2.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/xrudelis/pytrait/master/README.md","_readme_localurl":"xrudelis~pytrait~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/xrudelis/pytrait/master/setup.py"],"_requirements_localurls":["xrudelis~pytrait~setup.py"]},{"index":583,"category":"web","githuburl":"https://github.com/developmentseed/fastai-serving","featured":null,"links":null,"description":null,"_repopath":"developmentseed/fastai-serving","_reponame":"fastai-serving","_stars":121,"_forks":11,"_watches":8,"_topics":["machine-learning","python","deep-learning","pytorch","docker"],"_language":"Python","_homepage":"","_description":"fastai-serving: A Docker image for serving fast.ai models, mimicking the API of Tensorflow Serving","_organization":"developmentseed","_updated_at":"2022-04-08T00:00:00.000Z","_last_commit_date":"2020-02-10T00:00:00.000Z","_created_at":"2019-07-01T00:00:00.000Z","_age_weeks":179,"_stars_per_week":0.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/fastai-serving/master/README.md","_readme_localurl":"developmentseed~fastai-serving~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":555,"category":"ml","githuburl":"https://github.com/nicolas-chaulet/torch-points3d","featured":null,"links":null,"description":null,"_repopath":"nicolas-chaulet/torch-points3d","_reponame":"torch-points3d","_stars":118,"_forks":30,"_watches":0,"_topics":[],"_language":null,"_homepage":"https://torch-points3d.readthedocs.io/en/latest/","_description":"torch-points3d: Pytorch framework for doing deep learning on point clouds.","_organization":"nicolas-chaulet","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2021-12-10T00:00:00.000Z","_created_at":"2022-01-09T00:00:00.000Z","_age_weeks":47,"_stars_per_week":2.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nicolas-chaulet/torch-points3d/master/README.md","_readme_localurl":"nicolas-chaulet~torch-points3d~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nicolas-chaulet/torch-points3d/master/requirements.txt","https://raw.githubusercontent.com/nicolas-chaulet/torch-points3d/master/pyproject.toml"],"_requirements_localurls":["nicolas-chaulet~torch-points3d~requirements.txt","nicolas-chaulet~torch-points3d~pyproject.toml"]},{"index":316,"category":"util","githuburl":"https://github.com/irmen/pyminiaudio","featured":null,"links":null,"description":null,"_repopath":"irmen/pyminiaudio","_reponame":"pyminiaudio","_stars":117,"_forks":13,"_watches":3,"_topics":[],"_language":"C","_homepage":"","_description":"pyminiaudio: python interface to the miniaudio audio playback, recording, decoding and conversion library","_organization":"irmen","_updated_at":"2022-11-22T00:00:00.000Z","_last_commit_date":"2022-11-15T00:00:00.000Z","_created_at":"2019-06-30T00:00:00.000Z","_age_weeks":179,"_stars_per_week":0.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/irmen/pyminiaudio/master/README.md","_readme_localurl":"irmen~pyminiaudio~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/irmen/pyminiaudio/master/setup.py"],"_requirements_localurls":["irmen~pyminiaudio~setup.py"]},{"index":571,"category":"gis","githuburl":"https://github.com/developmentseed/geojson-pydantic","featured":null,"links":null,"description":null,"_repopath":"developmentseed/geojson-pydantic","_reponame":"geojson-pydantic","_stars":113,"_forks":27,"_watches":11,"_topics":["geojson","pydantic","geojson-spec"],"_language":"Python","_homepage":null,"_description":"geojson-pydantic: Pydantic data models for the GeoJSON spec","_organization":"developmentseed","_updated_at":"2022-11-29T00:00:00.000Z","_last_commit_date":"2022-11-02T00:00:00.000Z","_created_at":"2020-05-21T00:00:00.000Z","_age_weeks":132,"_stars_per_week":0.85,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/geojson-pydantic/master/README.md","_readme_localurl":"developmentseed~geojson-pydantic~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/developmentseed/geojson-pydantic/master/pyproject.toml"],"_requirements_localurls":["developmentseed~geojson-pydantic~pyproject.toml"]},{"index":901,"category":"gis","githuburl":"https://github.com/amazon-science/earth-forecasting-transformer","featured":null,"links":null,"description":null,"_repopath":"amazon-science/earth-forecasting-transformer","_reponame":"earth-forecasting-transformer","_stars":111,"_forks":19,"_watches":7,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"earth-forecasting-transformer: Official implementation of Earthformer","_organization":"amazon-science","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2022-09-12T00:00:00.000Z","_age_weeks":12,"_stars_per_week":9.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/amazon-science/earth-forecasting-transformer/master/README.md","_readme_localurl":"amazon-science~earth-forecasting-transformer~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/amazon-science/earth-forecasting-transformer/master/setup.py"],"_requirements_localurls":["amazon-science~earth-forecasting-transformer~setup.py"]},{"index":893,"category":"sim","githuburl":"https://github.com/crowdbotp/socialways","featured":null,"links":null,"description":null,"_repopath":"crowdbotp/socialways","_reponame":"socialways","_stars":109,"_forks":45,"_watches":9,"_topics":["trajectory-prediction","human-trajectory-prediction","gan","social-navigation","social-ways","pedestrian-trajectories","pedestrian","social-gan","social-robots","generative-adversarial-network","trajectory-forecasting","self-driving-car","prediction-model","info-gan","crowd-simulation"],"_language":"Python","_homepage":"","_description":"socialways: Social Ways: Learning Multi-Modal Distributions of Pedestrian Trajectories with GANs (CVPR 2019)","_organization":"crowdbotp","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2020-03-20T00:00:00.000Z","_created_at":"2019-04-23T00:00:00.000Z","_age_weeks":189,"_stars_per_week":0.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/crowdbotp/socialways/master/README.md","_readme_localurl":"crowdbotp~socialways~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":407,"category":"data","githuburl":"https://github.com/google/weather-tools","featured":null,"links":null,"description":null,"_repopath":"google/weather-tools","_reponame":"weather-tools","_stars":108,"_forks":23,"_watches":12,"_topics":["python","apache-beam","weather"],"_language":"Python","_homepage":"https://weather-tools.readthedocs.io/","_description":"weather-tools: Apache Beam pipelines to make weather data accessible and useful.","_organization":"google","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2021-11-22T00:00:00.000Z","_age_weeks":54,"_stars_per_week":1.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/weather-tools/master/README.md","_readme_localurl":"google~weather-tools~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/weather-tools/master/setup.py"],"_requirements_localurls":["google~weather-tools~setup.py"]},{"index":466,"category":"nlp","githuburl":"https://github.com/infinitylogesh/mutate","featured":null,"links":null,"description":null,"_repopath":"infinitylogesh/mutate","_reponame":"mutate","_stars":105,"_forks":7,"_watches":3,"_topics":["nlp-library","text-generation","language-model","data-augmentation","data-labeling"],"_language":"Python","_homepage":"","_description":"mutate: A library to synthesize text datasets using Large Language Models (LLM)","_organization":"infinitylogesh","_updated_at":"2022-11-08T00:00:00.000Z","_last_commit_date":"2022-04-18T00:00:00.000Z","_created_at":"2021-12-29T00:00:00.000Z","_age_weeks":49,"_stars_per_week":2.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/infinitylogesh/mutate/master/README.md","_readme_localurl":"infinitylogesh~mutate~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/infinitylogesh/mutate/master/requirements.txt","https://raw.githubusercontent.com/infinitylogesh/mutate/master/setup.py"],"_requirements_localurls":["infinitylogesh~mutate~requirements.txt","infinitylogesh~mutate~setup.py"]},{"index":463,"category":"data","githuburl":"https://github.com/psycoguana/subredditmediadownloader","featured":null,"links":null,"description":null,"_repopath":"psycoguana/subredditmediadownloader","_reponame":"SubredditMediaDownloader","_stars":102,"_forks":6,"_watches":3,"_topics":[],"_language":"Python","_homepage":null,"_description":"SubredditMediaDownloader: Simple Python script to download images and videos from public subreddits without using Reddit's API \ud83d\ude0e","_organization":"psycoguana","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-20T00:00:00.000Z","_created_at":"2022-02-18T00:00:00.000Z","_age_weeks":41,"_stars_per_week":2.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/psycoguana/subredditmediadownloader/master/README.md","_readme_localurl":"psycoguana~subredditmediadownloader~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/psycoguana/subredditmediadownloader/master/requirements.txt"],"_requirements_localurls":["psycoguana~subredditmediadownloader~requirements.txt"]},{"index":527,"category":"ml","githuburl":"https://github.com/hazyresearch/domino","featured":null,"links":null,"description":null,"_repopath":"hazyresearch/domino","_reponame":"domino","_stars":98,"_forks":14,"_watches":20,"_topics":[],"_language":"Python","_homepage":null,"_description":"hazyresearch/domino","_organization":"hazyresearch","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-08-02T00:00:00.000Z","_created_at":"2021-11-29T00:00:00.000Z","_age_weeks":53,"_stars_per_week":1.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hazyresearch/domino/master/README.md","_readme_localurl":"hazyresearch~domino~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hazyresearch/domino/master/setup.py"],"_requirements_localurls":["hazyresearch~domino~setup.py"]},{"index":847,"category":"gis","githuburl":"https://github.com/remotesensinglab/raster4ml","featured":null,"links":null,"description":null,"_repopath":"remotesensinglab/raster4ml","_reponame":"raster4ml","_stars":97,"_forks":11,"_watches":4,"_topics":["agriculture-research","data-science","geospatial-data","machine-learning","remote-sensing","vegetation","vegetation-index","python"],"_language":"Python","_homepage":"https://raster4ml.readthedocs.io","_description":"raster4ml: A geospatial raster processing library for machine learning","_organization":"remotesensinglab","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-11-01T00:00:00.000Z","_created_at":"2022-07-11T00:00:00.000Z","_age_weeks":21,"_stars_per_week":4.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/remotesensinglab/raster4ml/master/README.md","_readme_localurl":"remotesensinglab~raster4ml~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/remotesensinglab/raster4ml/master/requirements.txt","https://raw.githubusercontent.com/remotesensinglab/raster4ml/master/setup.py"],"_requirements_localurls":["remotesensinglab~raster4ml~requirements.txt","remotesensinglab~raster4ml~setup.py"]},{"index":529,"category":"nlp","githuburl":"https://github.com/hazyresearch/fonduer-tutorials","featured":null,"links":null,"description":null,"_repopath":"hazyresearch/fonduer-tutorials","_reponame":"fonduer-tutorials","_stars":96,"_forks":23,"_watches":18,"_topics":[],"_language":"Jupyter Notebook","_homepage":"https://github.com/HazyResearch/fonduer","_description":"fonduer-tutorials: A collection of simple tutorials for using Fonduer","_organization":"hazyresearch","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2020-05-27T00:00:00.000Z","_created_at":"2018-03-23T00:00:00.000Z","_age_weeks":245,"_stars_per_week":0.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hazyresearch/fonduer-tutorials/master/README.md","_readme_localurl":"hazyresearch~fonduer-tutorials~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/hazyresearch/fonduer-tutorials/master/requirements.txt"],"_requirements_localurls":["hazyresearch~fonduer-tutorials~requirements.txt"]},{"index":533,"category":"gis","githuburl":"https://github.com/gdaosu/lod2buildingmodel","featured":null,"links":null,"description":null,"_repopath":"gdaosu/lod2buildingmodel","_reponame":"LOD2BuildingModel","_stars":96,"_forks":23,"_watches":9,"_topics":[],"_language":"Python","_homepage":"","_description":"LOD2BuildingModel: SAT2LoD2: Automated LoD-2 Model Reconstruction from Satellite-derived DSM and Orthophoto","_organization":"gdaosu","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-07-21T00:00:00.000Z","_created_at":"2021-08-30T00:00:00.000Z","_age_weeks":66,"_stars_per_week":1.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gdaosu/lod2buildingmodel/master/README.md","_readme_localurl":"gdaosu~lod2buildingmodel~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":781,"category":"gis","githuburl":"https://github.com/ghislainv/forestatrisk","featured":null,"links":null,"description":null,"_repopath":"ghislainv/forestatrisk","_reponame":"forestatrisk","_stars":95,"_forks":20,"_watches":4,"_topics":["python","land-use-change","spatial-modelling","spatial-analysis","forecasting","spatial-autocorrelation","tropical-forests","roads","protected-areas","biodiversity-scenario","ipbes","co2-emissions","ipcc","forest-cover-change","deforestation","deforestation-risk","redd"],"_language":"Python","_homepage":"https://ecology.ghislainv.fr/forestatrisk","_description":"forestatrisk: :package: :snake: Python package to model and forecast the risk of deforestation","_organization":"ghislainv","_updated_at":"2022-11-07T00:00:00.000Z","_last_commit_date":"2022-08-23T00:00:00.000Z","_created_at":"2016-12-01T00:00:00.000Z","_age_weeks":313,"_stars_per_week":0.3,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/ghislainv/forestatrisk/master/README.rst","_readme_localurl":"ghislainv~forestatrisk~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ghislainv/forestatrisk/master/requirements.txt","https://raw.githubusercontent.com/ghislainv/forestatrisk/master/setup.py"],"_requirements_localurls":["ghislainv~forestatrisk~requirements.txt","ghislainv~forestatrisk~setup.py"]},{"index":457,"category":"nlp","githuburl":"https://github.com/coastalcph/lex-glue","featured":null,"links":null,"description":null,"_repopath":"coastalcph/lex-glue","_reponame":"lex-glue","_stars":94,"_forks":22,"_watches":6,"_topics":["legal","nlp","benchmark","legaltech","lawtech"],"_language":"Python","_homepage":"","_description":"lex-glue: LexGLUE: A Benchmark Dataset for Legal Language Understanding in English","_organization":"coastalcph","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2021-09-27T00:00:00.000Z","_age_weeks":62,"_stars_per_week":1.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/coastalcph/lex-glue/master/README.md","_readme_localurl":"coastalcph~lex-glue~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/coastalcph/lex-glue/master/requirements.txt"],"_requirements_localurls":["coastalcph~lex-glue~requirements.txt"]},{"index":558,"category":"gis","githuburl":"https://github.com/darribas/gds_env","featured":null,"links":null,"description":null,"_repopath":"darribas/gds_env","_reponame":"gds_env","_stars":93,"_forks":36,"_watches":10,"_topics":["geographic-data-science","docker","python","r","latex","jupyter-lab"],"_language":"Jupyter Notebook","_homepage":"https://darribas.org/gds_env","_description":"gds_env: A containerised platform for Geographic Data Science","_organization":"darribas","_updated_at":"2022-11-16T00:00:00.000Z","_last_commit_date":"2022-06-08T00:00:00.000Z","_created_at":"2016-08-12T00:00:00.000Z","_age_weeks":329,"_stars_per_week":0.28,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/darribas/gds_env/master/README.md","_readme_localurl":"darribas~gds_env~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":534,"category":"ml-dl","githuburl":"https://github.com/benedekrozemberczki/tigerlily","featured":null,"links":null,"description":null,"_repopath":"benedekrozemberczki/tigerlily","_reponame":"tigerlily","_stars":90,"_forks":9,"_watches":1,"_topics":["node","embedding","node-embedding","graph-embedding","ddi","drug-drug-interaction","gradient-boosting","graph","pharmaceuticals","network-science","biology","heterogeneous-graph","knowledge-graph","deep-learning","machine-learning","unsupervised-learning","tigergraph","graph-database","graph-machine-learning"],"_language":"Jupyter Notebook","_homepage":"","_description":"TigerLily: Finding drug interactions in silico with the Graph.","_organization":"benedekrozemberczki","_updated_at":"2022-09-11T00:00:00.000Z","_last_commit_date":"2022-11-06T00:00:00.000Z","_created_at":"2022-02-28T00:00:00.000Z","_age_weeks":40,"_stars_per_week":2.23,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/benedekrozemberczki/tigerlily/master/README.md","_readme_localurl":"benedekrozemberczki~tigerlily~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/benedekrozemberczki/tigerlily/master/setup.py","https://raw.githubusercontent.com/benedekrozemberczki/tigerlily/master/pyproject.toml"],"_requirements_localurls":["benedekrozemberczki~tigerlily~setup.py","benedekrozemberczki~tigerlily~pyproject.toml"]},{"index":835,"category":"typing","githuburl":"https://github.com/jellezijlstra/autotyping","featured":null,"links":null,"description":null,"_repopath":"jellezijlstra/autotyping","_reponame":"autotyping","_stars":88,"_forks":7,"_watches":3,"_topics":[],"_language":"Python","_homepage":null,"_description":"jellezijlstra/autotyping","_organization":"jellezijlstra","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-10-13T00:00:00.000Z","_created_at":"2021-06-25T00:00:00.000Z","_age_weeks":75,"_stars_per_week":1.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jellezijlstra/autotyping/master/README.md","_readme_localurl":"jellezijlstra~autotyping~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jellezijlstra/autotyping/master/setup.py","https://raw.githubusercontent.com/jellezijlstra/autotyping/master/pyproject.toml"],"_requirements_localurls":["jellezijlstra~autotyping~setup.py","jellezijlstra~autotyping~pyproject.toml"]},{"index":744,"category":"ml-ops","githuburl":"https://github.com/aiqc/aiqc","featured":null,"links":null,"description":null,"_repopath":"aiqc/aiqc","_reponame":"AIQC","_stars":88,"_forks":19,"_watches":4,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"AIQC: End-to-end deep learning on your desktop or server.","_organization":"aiqc","_updated_at":"2022-11-21T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2020-12-02T00:00:00.000Z","_age_weeks":105,"_stars_per_week":0.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aiqc/aiqc/master/README.md","_readme_localurl":"aiqc~aiqc~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aiqc/aiqc/master/requirements.txt","https://raw.githubusercontent.com/aiqc/aiqc/master/setup.py"],"_requirements_localurls":["aiqc~aiqc~requirements.txt","aiqc~aiqc~setup.py"]},{"index":667,"category":"gis","githuburl":"https://github.com/zorzi-s/polyworldpretrainednetwork","featured":null,"links":null,"description":null,"_repopath":"zorzi-s/polyworldpretrainednetwork","_reponame":"PolyWorldPretrainedNetwork","_stars":88,"_forks":13,"_watches":7,"_topics":[],"_language":"Python","_homepage":null,"_description":"PolyWorldPretrainedNetwork: PolyWorld: Polygonal Building Extraction with Graph Neural Networks in Satellite Images","_organization":"zorzi-s","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-10T00:00:00.000Z","_created_at":"2022-03-23T00:00:00.000Z","_age_weeks":37,"_stars_per_week":2.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zorzi-s/polyworldpretrainednetwork/master/README.md","_readme_localurl":"zorzi-s~polyworldpretrainednetwork~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":485,"category":"gis","githuburl":"https://github.com/scisco/area","featured":null,"links":null,"description":null,"_repopath":"scisco/area","_reponame":"area","_stars":86,"_forks":19,"_watches":3,"_topics":[],"_language":"Python","_homepage":null,"_description":"area: Calculate the area inside of any GeoJSON geometry. This is a port of Mapbox's geojson-area for Python","_organization":"scisco","_updated_at":"2022-10-27T00:00:00.000Z","_last_commit_date":"2018-10-31T00:00:00.000Z","_created_at":"2015-11-25T00:00:00.000Z","_age_weeks":367,"_stars_per_week":0.23,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/scisco/area/master/README.rst","_readme_localurl":"scisco~area~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/scisco/area/master/setup.py"],"_requirements_localurls":["scisco~area~setup.py"]},{"index":269,"category":"term","githuburl":"https://github.com/deeplook/sparklines","featured":null,"links":null,"description":null,"_repopath":"deeplook/sparklines","_reponame":"sparklines","_stars":83,"_forks":6,"_watches":3,"_topics":["python","command-line-tool","graphs","ascii","sparklines","sparkline-graphs"],"_language":"Python","_homepage":"","_description":"sparklines: Text-based sparkline command line mimicking those of Edward Tuft.","_organization":"deeplook","_updated_at":"2022-11-26T00:00:00.000Z","_last_commit_date":"2021-06-26T00:00:00.000Z","_created_at":"2016-05-17T00:00:00.000Z","_age_weeks":342,"_stars_per_week":0.24,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/deeplook/sparklines/master/README.rst","_readme_localurl":"deeplook~sparklines~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/deeplook/sparklines/master/setup.py"],"_requirements_localurls":["deeplook~sparklines~setup.py"]},{"index":562,"category":"gis","githuburl":"https://github.com/geopandas/xyzservices","featured":null,"links":null,"description":null,"_repopath":"geopandas/xyzservices","_reponame":"xyzservices","_stars":81,"_forks":19,"_watches":11,"_topics":[],"_language":"Python","_homepage":"https://xyzservices.readthedocs.io/","_description":"xyzservices: Source of XYZ tiles providers","_organization":"geopandas","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2021-05-21T00:00:00.000Z","_age_weeks":80,"_stars_per_week":1.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/geopandas/xyzservices/master/README.md","_readme_localurl":"geopandas~xyzservices~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/geopandas/xyzservices/master/setup.py"],"_requirements_localurls":["geopandas~xyzservices~setup.py"]},{"index":746,"category":"data","githuburl":"https://github.com/ktrueda/parquet-tools","featured":null,"links":null,"description":null,"_repopath":"ktrueda/parquet-tools","_reponame":"parquet-tools","_stars":81,"_forks":10,"_watches":3,"_topics":["parquet","parquet-tools","cli"],"_language":"Python","_homepage":"","_description":"parquet-tools: easy install parquet-tools","_organization":"ktrueda","_updated_at":"2022-11-26T00:00:00.000Z","_last_commit_date":"2022-06-14T00:00:00.000Z","_created_at":"2020-05-02T00:00:00.000Z","_age_weeks":135,"_stars_per_week":0.6,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ktrueda/parquet-tools/master/README.md","_readme_localurl":"ktrueda~parquet-tools~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ktrueda/parquet-tools/master/pyproject.toml"],"_requirements_localurls":["ktrueda~parquet-tools~pyproject.toml"]},{"index":668,"category":"gis","githuburl":"https://github.com/zorzi-s/projectregularization","featured":null,"links":null,"description":null,"_repopath":"zorzi-s/projectregularization","_reponame":"projectRegularization","_stars":80,"_forks":7,"_watches":2,"_topics":[],"_language":"Python","_homepage":null,"_description":"projectRegularization: Regularization of Building Boundaries using Adversarial and Regularized losses","_organization":"zorzi-s","_updated_at":"2022-11-10T00:00:00.000Z","_last_commit_date":"2021-09-17T00:00:00.000Z","_created_at":"2021-05-18T00:00:00.000Z","_age_weeks":81,"_stars_per_week":0.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zorzi-s/projectregularization/master/README.md","_readme_localurl":"zorzi-s~projectregularization~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":842,"category":"jupyter","githuburl":"https://github.com/cmudig/autoprofiler","featured":null,"links":null,"description":null,"_repopath":"cmudig/autoprofiler","_reponame":"AutoProfiler","_stars":79,"_forks":4,"_watches":1,"_topics":["jupyter","pandas","python"],"_language":"Svelte","_homepage":"","_description":"AutoProfiler: Automatically profile dataframes in the Jupyter sidebar","_organization":"cmudig","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2022-03-24T00:00:00.000Z","_age_weeks":36,"_stars_per_week":2.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cmudig/autoprofiler/master/README.md","_readme_localurl":"cmudig~autoprofiler~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cmudig/autoprofiler/master/requirements.txt","https://raw.githubusercontent.com/cmudig/autoprofiler/master/setup.py","https://raw.githubusercontent.com/cmudig/autoprofiler/master/pyproject.toml"],"_requirements_localurls":["cmudig~autoprofiler~requirements.txt","cmudig~autoprofiler~setup.py","cmudig~autoprofiler~pyproject.toml"]},{"index":769,"category":"ml-dl","githuburl":"https://github.com/praw-dev/asyncpraw","featured":null,"links":null,"description":null,"_repopath":"praw-dev/asyncpraw","_reponame":"asyncpraw","_stars":78,"_forks":14,"_watches":3,"_topics":["python","api","oauth","reddit","reddit-api","async","asyncpraw","praw"],"_language":"Python","_homepage":"https://asyncpraw.readthedocs.io","_description":"asyncpraw: Async PRAW, an abbreviation for \"Asynchronous Python Reddit API Wrapper\", is a python package that allows for simple access to Reddit's API.","_organization":"praw-dev","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2019-02-05T00:00:00.000Z","_age_weeks":200,"_stars_per_week":0.39,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/praw-dev/asyncpraw/master/README.rst","_readme_localurl":"praw-dev~asyncpraw~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/praw-dev/asyncpraw/master/setup.py","https://raw.githubusercontent.com/praw-dev/asyncpraw/master/pyproject.toml"],"_requirements_localurls":["praw-dev~asyncpraw~setup.py","praw-dev~asyncpraw~pyproject.toml"]},{"index":327,"category":"security","githuburl":"https://github.com/sonatype-nexus-community/jake","featured":null,"links":null,"description":null,"_repopath":"sonatype-nexus-community/jake","_reponame":"jake","_stars":74,"_forks":18,"_watches":8,"_topics":["python","vulnerabilities","vulnerability-scanners","ossindex","nexus-iq","sonatype-iq"],"_language":"Python","_homepage":"https://jake.readthedocs.io/","_description":"jake: Check your Python environments for vulnerable Open Source packages with OSS Index or Sonatype Nexus Lifecycle.","_organization":"sonatype-nexus-community","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2019-10-10T00:00:00.000Z","_age_weeks":164,"_stars_per_week":0.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sonatype-nexus-community/jake/master/README.md","_readme_localurl":"sonatype-nexus-community~jake~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sonatype-nexus-community/jake/master/pyproject.toml"],"_requirements_localurls":["sonatype-nexus-community~jake~pyproject.toml"]},{"index":530,"category":"ml","githuburl":"https://github.com/brohrer/cottonwood","featured":null,"links":null,"description":null,"_repopath":"brohrer/cottonwood","_reponame":"cottonwood","_stars":72,"_forks":13,"_watches":14,"_topics":[],"_language":"Python","_homepage":"https://end-to-end-machine-learning.teachable.com/p/write-a-neural-network-framework/","_description":"cottonwood: A flexible neural network framework for running experiments and trying ideas.","_organization":"brohrer","_updated_at":"2022-09-23T00:00:00.000Z","_last_commit_date":"2020-02-02T00:00:00.000Z","_created_at":"2019-09-29T00:00:00.000Z","_age_weeks":166,"_stars_per_week":0.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/brohrer/cottonwood/master/README.md","_readme_localurl":"brohrer~cottonwood~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/brohrer/cottonwood/master/setup.py"],"_requirements_localurls":["brohrer~cottonwood~setup.py"]},{"index":851,"category":"profiling","githuburl":"https://github.com/kshitij12345/torchnnprofiler","featured":null,"links":null,"description":null,"_repopath":"kshitij12345/torchnnprofiler","_reponame":"torchnnprofiler","_stars":70,"_forks":2,"_watches":4,"_topics":[],"_language":"Python","_homepage":null,"_description":"torchnnprofiler: Context Manager to profile the forward and backward times of PyTorch's nn.Module","_organization":"kshitij12345","_updated_at":"2022-11-28T00:00:00.000Z","_last_commit_date":"2022-11-02T00:00:00.000Z","_created_at":"2022-10-22T00:00:00.000Z","_age_weeks":6,"_stars_per_week":10.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kshitij12345/torchnnprofiler/master/README.md","_readme_localurl":"kshitij12345~torchnnprofiler~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kshitij12345/torchnnprofiler/master/setup.py"],"_requirements_localurls":["kshitij12345~torchnnprofiler~setup.py"]},{"index":584,"category":"gis","githuburl":"https://github.com/developmentseed/cogeo-mosaic","featured":null,"links":null,"description":null,"_repopath":"developmentseed/cogeo-mosaic","_reponame":"cogeo-mosaic","_stars":69,"_forks":19,"_watches":8,"_topics":[],"_language":"Python","_homepage":"https://developmentseed.org/cogeo-mosaic/","_description":"cogeo-mosaic: Create and use COG mosaic based on mosaicJSON","_organization":"developmentseed","_updated_at":"2022-11-30T00:00:00.000Z","_last_commit_date":"2022-11-21T00:00:00.000Z","_created_at":"2019-05-14T00:00:00.000Z","_age_weeks":186,"_stars_per_week":0.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/cogeo-mosaic/master/README.md","_readme_localurl":"developmentseed~cogeo-mosaic~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/developmentseed/cogeo-mosaic/master/setup.py","https://raw.githubusercontent.com/developmentseed/cogeo-mosaic/master/pyproject.toml"],"_requirements_localurls":["developmentseed~cogeo-mosaic~setup.py","developmentseed~cogeo-mosaic~pyproject.toml"]},{"index":234,"category":"crypto","githuburl":"https://github.com/blockchainsllc/in3","featured":null,"links":null,"description":null,"_repopath":"blockchainsllc/in3","_reponame":"in3","_stars":65,"_forks":18,"_watches":12,"_topics":["blockchain","verify","crypto-economic","ethereum","ipfs"],"_language":"C","_homepage":"https://in3.readthedocs.io/en/develop/index.html","_description":"in3: The IN3 client (written in C).","_organization":"blockchainsllc","_updated_at":"2022-11-17T00:00:00.000Z","_last_commit_date":"2022-04-01T00:00:00.000Z","_created_at":"2019-09-17T00:00:00.000Z","_age_weeks":168,"_stars_per_week":0.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/blockchainsllc/in3/master/README.md","_readme_localurl":"blockchainsllc~in3~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":568,"category":"sim","githuburl":"https://github.com/gboeing/street-network-models","featured":null,"links":null,"description":null,"_repopath":"gboeing/street-network-models","_reponame":"street-network-models","_stars":62,"_forks":4,"_watches":2,"_topics":[],"_language":"Python","_homepage":"https://osf.io/f2dqc","_description":"street-network-models: Street network models and indicators for every urban area in the world","_organization":"gboeing","_updated_at":"2022-11-15T00:00:00.000Z","_last_commit_date":"2021-03-05T00:00:00.000Z","_created_at":"2020-04-13T00:00:00.000Z","_age_weeks":138,"_stars_per_week":0.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gboeing/street-network-models/master/README.md","_readme_localurl":"gboeing~street-network-models~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":453,"category":"gis","githuburl":"https://github.com/googlecloudplatform/dataflow-geobeam","featured":null,"links":null,"description":null,"_repopath":"googlecloudplatform/dataflow-geobeam","_reponame":"dataflow-geobeam","_stars":61,"_forks":25,"_watches":9,"_topics":[],"_language":"Python","_homepage":null,"_description":"googlecloudplatform/dataflow-geobeam","_organization":"googlecloudplatform","_updated_at":"2022-11-08T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2021-02-04T00:00:00.000Z","_age_weeks":95,"_stars_per_week":0.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/googlecloudplatform/dataflow-geobeam/master/README.md","_readme_localurl":"googlecloudplatform~dataflow-geobeam~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/googlecloudplatform/dataflow-geobeam/master/setup.py"],"_requirements_localurls":["googlecloudplatform~dataflow-geobeam~setup.py"]},{"index":535,"category":"gis","githuburl":"https://github.com/cloudsen12/easystac","featured":null,"links":null,"description":null,"_repopath":"cloudsen12/easystac","_reponame":"easystac","_stars":57,"_forks":1,"_watches":3,"_topics":["stac","remote-sensing","gis","earth-observation","python","python3","spatio-temporal","spatio-temporal-data","planetary-computer","radiant"],"_language":"Python","_homepage":"https://easystac.readthedocs.io/","_description":"easystac: A Python package for simple STAC queries","_organization":"cloudsen12","_updated_at":"2022-11-26T00:00:00.000Z","_last_commit_date":"2022-08-07T00:00:00.000Z","_created_at":"2022-01-20T00:00:00.000Z","_age_weeks":45,"_stars_per_week":1.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cloudsen12/easystac/master/README.md","_readme_localurl":"cloudsen12~easystac~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/cloudsen12/easystac/master/setup.py"],"_requirements_localurls":["cloudsen12~easystac~setup.py"]},{"index":854,"category":"util","githuburl":"https://github.com/backtick-se/cowait","featured":null,"links":null,"description":null,"_repopath":"backtick-se/cowait","_reponame":"cowait","_stars":55,"_forks":5,"_watches":8,"_topics":["python","task-scheduler","data-science","data-engineering","spark","dask","kubernetes","docker","workflow-engine"],"_language":"Python","_homepage":"https://cowait.io","_description":"cowait: Containerized distributed programming framework for Python","_organization":"backtick-se","_updated_at":"2022-11-16T00:00:00.000Z","_last_commit_date":"2022-09-22T00:00:00.000Z","_created_at":"2019-09-18T00:00:00.000Z","_age_weeks":168,"_stars_per_week":0.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/backtick-se/cowait/master/README.md","_readme_localurl":"backtick-se~cowait~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/backtick-se/cowait/master/requirements.txt","https://raw.githubusercontent.com/backtick-se/cowait/master/setup.py","https://raw.githubusercontent.com/backtick-se/cowait/master/pyproject.toml"],"_requirements_localurls":["backtick-se~cowait~requirements.txt","backtick-se~cowait~setup.py","backtick-se~cowait~pyproject.toml"]},{"index":521,"category":"gis","githuburl":"https://github.com/lydorn/mapalignment","featured":null,"links":null,"description":null,"_repopath":"lydorn/mapalignment","_reponame":"mapalignment","_stars":54,"_forks":14,"_watches":4,"_topics":[],"_language":"Python","_homepage":"","_description":"mapalignment: Aligning and Updating Cadaster Maps with Remote Sensing Images","_organization":"lydorn","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2020-09-03T00:00:00.000Z","_created_at":"2018-09-05T00:00:00.000Z","_age_weeks":222,"_stars_per_week":0.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lydorn/mapalignment/master/README.md","_readme_localurl":"lydorn~mapalignment~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":326,"category":"security","githuburl":"https://github.com/snyk-labs/pysnyk","featured":null,"links":null,"description":null,"_repopath":"snyk-labs/pysnyk","_reponame":"pysnyk","_stars":50,"_forks":89,"_watches":10,"_topics":["snyk","python","api"],"_language":"Python","_homepage":"https://snyk.docs.apiary.io/","_description":"pysnyk: A Python client for the Snyk API.","_organization":"snyk-labs","_updated_at":"2022-11-04T00:00:00.000Z","_last_commit_date":"2022-05-26T00:00:00.000Z","_created_at":"2019-02-03T00:00:00.000Z","_age_weeks":200,"_stars_per_week":0.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/snyk-labs/pysnyk/master/README.md","_readme_localurl":"snyk-labs~pysnyk~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/snyk-labs/pysnyk/master/pyproject.toml"],"_requirements_localurls":["snyk-labs~pysnyk~pyproject.toml"]},{"index":816,"category":"util","githuburl":"https://github.com/aws-samples/sagemaker-ssh-helper","featured":null,"links":null,"description":null,"_repopath":"aws-samples/sagemaker-ssh-helper","_reponame":"sagemaker-ssh-helper","_stars":50,"_forks":5,"_watches":6,"_topics":["amazon-sagemaker","aws","aws-systems-manager","machine-learning","pycharm","sagemaker","sagemaker-studio","ssh","vscode"],"_language":"Python","_homepage":"","_description":"sagemaker-ssh-helper: A helper library to connect into Amazon SageMaker with AWS Systems Manager and SSH","_organization":"aws-samples","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2022-10-14T00:00:00.000Z","_age_weeks":7,"_stars_per_week":6.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aws-samples/sagemaker-ssh-helper/master/README.md","_readme_localurl":"aws-samples~sagemaker-ssh-helper~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aws-samples/sagemaker-ssh-helper/master/setup.py"],"_requirements_localurls":["aws-samples~sagemaker-ssh-helper~setup.py"]},{"index":400,"category":"study","githuburl":"https://github.com/dylanhogg/crazy-awesome-python","featured":null,"links":null,"description":null,"_repopath":"dylanhogg/crazy-awesome-python","_reponame":"crazy-awesome-python","_stars":46,"_forks":8,"_watches":3,"_topics":["python","python-data","awesome-list","python-machine-learning","python-nlp","python-frameworks","python-library","data","machine-learning","natural-language-processing"],"_language":"HTML","_homepage":"https://www.awesomepython.org/","_description":"crazy-awesome-python: A curated list of awesome Python frameworks, with a bias towards data and machine learning","_organization":"dylanhogg","_updated_at":"2022-11-11T00:00:00.000Z","_last_commit_date":"2022-11-26T00:00:00.000Z","_created_at":"2020-06-20T00:00:00.000Z","_age_weeks":128,"_stars_per_week":0.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dylanhogg/crazy-awesome-python/master/README.md","_readme_localurl":"dylanhogg~crazy-awesome-python~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/dylanhogg/crazy-awesome-python/master/requirements.txt"],"_requirements_localurls":["dylanhogg~crazy-awesome-python~requirements.txt"]},{"index":401,"category":"crypto","githuburl":"https://github.com/dylanhogg/crazy-awesome-crypto","featured":null,"links":null,"description":null,"_repopath":"dylanhogg/crazy-awesome-crypto","_reponame":"crazy-awesome-crypto","_stars":42,"_forks":12,"_watches":4,"_topics":["crypto","cryptocurrency","blockchain","bitcoin","ethereum","awesome-list","data","data-analysis","github","awesome"],"_language":"Python","_homepage":"https://www.awesomecrypto.xyz/","_description":"crazy-awesome-crypto: A list of awesome crypto and blockchain projects","_organization":"dylanhogg","_updated_at":"2022-11-14T00:00:00.000Z","_last_commit_date":"2022-10-30T00:00:00.000Z","_created_at":"2021-09-27T00:00:00.000Z","_age_weeks":62,"_stars_per_week":0.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dylanhogg/crazy-awesome-crypto/master/README.md","_readme_localurl":"dylanhogg~crazy-awesome-crypto~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/dylanhogg/crazy-awesome-crypto/master/requirements.txt"],"_requirements_localurls":["dylanhogg~crazy-awesome-crypto~requirements.txt"]},{"index":776,"category":"sim","githuburl":"https://github.com/activitysim/populationsim","featured":null,"links":null,"description":null,"_repopath":"activitysim/populationsim","_reponame":"populationsim","_stars":37,"_forks":27,"_watches":11,"_topics":["python","data-science","population-synthesis","activitysim","bsd-3-clause","microsimulation"],"_language":"Jupyter Notebook","_homepage":"https://activitysim.github.io/populationsim","_description":"populationsim: An Open Platform for Population Synthesis","_organization":"activitysim","_updated_at":"2022-08-23T00:00:00.000Z","_last_commit_date":"2021-11-19T00:00:00.000Z","_created_at":"2017-02-14T00:00:00.000Z","_age_weeks":303,"_stars_per_week":0.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/activitysim/populationsim/master/README.md","_readme_localurl":"activitysim~populationsim~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/activitysim/populationsim/master/setup.py"],"_requirements_localurls":["activitysim~populationsim~setup.py"]},{"index":386,"category":"nlp","githuburl":"https://github.com/ferdinandzhong/punctuator","featured":null,"links":null,"description":null,"_repopath":"ferdinandzhong/punctuator","_reponame":"punctuator","_stars":35,"_forks":5,"_watches":1,"_topics":["bert","nlp","seq2seq","punctuation","deep-learning","pytorch","bert-ner","chinese-nlp"],"_language":"Python","_homepage":"","_description":"punctuator: A small seq2seq punctuator tool based on DistilBERT","_organization":"ferdinandzhong","_updated_at":"2022-10-19T00:00:00.000Z","_last_commit_date":"2022-09-28T00:00:00.000Z","_created_at":"2020-11-19T00:00:00.000Z","_age_weeks":106,"_stars_per_week":0.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ferdinandzhong/punctuator/master/README.md","_readme_localurl":"ferdinandzhong~punctuator~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ferdinandzhong/punctuator/master/requirements.txt","https://raw.githubusercontent.com/ferdinandzhong/punctuator/master/setup.py"],"_requirements_localurls":["ferdinandzhong~punctuator~requirements.txt","ferdinandzhong~punctuator~setup.py"]},{"index":202,"category":"crypto","githuburl":"https://github.com/nerolation/ethereum-datafarm","featured":null,"links":null,"description":null,"_repopath":"nerolation/ethereum-datafarm","_reponame":"ethereum-datafarm","_stars":34,"_forks":8,"_watches":1,"_topics":[],"_language":"Python","_homepage":null,"_description":"ethereum-datafarm: Scrap blockchain data from the public API of Etherscan.io","_organization":"nerolation","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-19T00:00:00.000Z","_created_at":"2021-03-13T00:00:00.000Z","_age_weeks":90,"_stars_per_week":0.38,"_readme_filename":"Readme.md","_readme_giturl":"https://raw.githubusercontent.com/nerolation/ethereum-datafarm/master/Readme.md","_readme_localurl":"nerolation~ethereum-datafarm~Readme.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/nerolation/ethereum-datafarm/master/requirements.txt"],"_requirements_localurls":["nerolation~ethereum-datafarm~requirements.txt"]},{"index":821,"category":"pandas","githuburl":"https://github.com/ddelange/mapply","featured":null,"links":null,"description":null,"_repopath":"ddelange/mapply","_reponame":"mapply","_stars":33,"_forks":2,"_watches":3,"_topics":[],"_language":"Python","_homepage":"","_description":"mapply: Sensible multi-core apply function for Pandas","_organization":"ddelange","_updated_at":"2022-11-04T00:00:00.000Z","_last_commit_date":"2022-11-22T00:00:00.000Z","_created_at":"2020-10-26T00:00:00.000Z","_age_weeks":110,"_stars_per_week":0.3,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ddelange/mapply/master/README.md","_readme_localurl":"ddelange~mapply~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ddelange/mapply/master/setup.py"],"_requirements_localurls":["ddelange~mapply~setup.py"]},{"index":333,"category":"util","githuburl":"https://github.com/gondolav/pyfuncol","featured":null,"links":null,"description":null,"_repopath":"gondolav/pyfuncol","_reponame":"pyfuncol","_stars":32,"_forks":3,"_watches":3,"_topics":["functional","collections","python","parallel","python3","extension-functions"],"_language":"Python","_homepage":"https://pyfuncol.readthedocs.io/","_description":"pyfuncol: Functional collections extension functions for Python","_organization":"gondolav","_updated_at":"2022-11-16T00:00:00.000Z","_last_commit_date":"2022-11-16T00:00:00.000Z","_created_at":"2021-12-16T00:00:00.000Z","_age_weeks":50,"_stars_per_week":0.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gondolav/pyfuncol/master/README.md","_readme_localurl":"gondolav~pyfuncol~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gondolav/pyfuncol/master/requirements.txt","https://raw.githubusercontent.com/gondolav/pyfuncol/master/setup.py"],"_requirements_localurls":["gondolav~pyfuncol~requirements.txt","gondolav~pyfuncol~setup.py"]},{"index":711,"category":"gis","githuburl":"https://github.com/artelys/geonetworkx","featured":null,"links":null,"description":null,"_repopath":"artelys/geonetworkx","_reponame":"geonetworkx","_stars":30,"_forks":1,"_watches":7,"_topics":[],"_language":"Python","_homepage":null,"_description":"geonetworkx: Python tools for geographic graphs","_organization":"artelys","_updated_at":"2022-10-27T00:00:00.000Z","_last_commit_date":"2021-06-28T00:00:00.000Z","_created_at":"2019-10-24T00:00:00.000Z","_age_weeks":162,"_stars_per_week":0.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/artelys/geonetworkx/master/README.md","_readme_localurl":"artelys~geonetworkx~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/artelys/geonetworkx/master/requirements.txt","https://raw.githubusercontent.com/artelys/geonetworkx/master/setup.py"],"_requirements_localurls":["artelys~geonetworkx~requirements.txt","artelys~geonetworkx~setup.py"]},{"index":502,"category":"gis","githuburl":"https://github.com/gregorhd/mapcompare","featured":null,"links":null,"description":null,"_repopath":"gregorhd/mapcompare","_reponame":"mapcompare","_stars":28,"_forks":0,"_watches":2,"_topics":["visualisation-libraries","sample-visualisation","comparison","data-visualisation","data-viz","urban-data-science","interactive-visualisations"],"_language":"Python","_homepage":"","_description":"mapcompare: Comparison of Python packages and libraries for visualising geospatial vector data: applications for Smarter Cities.","_organization":"gregorhd","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2021-05-21T00:00:00.000Z","_age_weeks":80,"_stars_per_week":0.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gregorhd/mapcompare/master/README.md","_readme_localurl":"gregorhd~mapcompare~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gregorhd/mapcompare/master/setup.py"],"_requirements_localurls":["gregorhd~mapcompare~setup.py"]},{"index":894,"category":"sim","githuburl":"https://github.com/crowddynamics/crowddynamics","featured":null,"links":null,"description":null,"_repopath":"crowddynamics/crowddynamics","_reponame":"crowddynamics","_stars":26,"_forks":9,"_watches":9,"_topics":["crowd-dynamics","multi-agent","continuous-time","crowd-simulation"],"_language":"Python","_homepage":"https://jaantollander.com/post/how-to-implement-continuous-time-multi-agent-crowd-simulation/","_description":"crowddynamics: Continuous-time multi-agent crowd simulation engine implemented in Python using Numba and Numpy for performance.","_organization":"crowddynamics","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2020-01-02T00:00:00.000Z","_created_at":"2016-03-22T00:00:00.000Z","_age_weeks":350,"_stars_per_week":0.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/crowddynamics/crowddynamics/master/README.md","_readme_localurl":"crowddynamics~crowddynamics~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/crowddynamics/crowddynamics/master/requirements.txt","https://raw.githubusercontent.com/crowddynamics/crowddynamics/master/setup.py"],"_requirements_localurls":["crowddynamics~crowddynamics~requirements.txt","crowddynamics~crowddynamics~setup.py"]},{"index":688,"category":"ml-dl","githuburl":"https://github.com/jerryyli/valhalla-nmt","featured":null,"links":null,"description":null,"_repopath":"jerryyli/valhalla-nmt","_reponame":"valhalla-nmt","_stars":23,"_forks":3,"_watches":1,"_topics":["computer-vision","machine-translation","multimodal-learning","natural-language-processing"],"_language":"Python","_homepage":"","_description":"valhalla-nmt: Code repository for CVPR 2022 paper \"VALHALLA: Visual Hallucination for Machine Translation\"","_organization":"jerryyli","_updated_at":"2022-11-26T00:00:00.000Z","_last_commit_date":"2022-06-06T00:00:00.000Z","_created_at":"2022-03-22T00:00:00.000Z","_age_weeks":37,"_stars_per_week":0.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jerryyli/valhalla-nmt/master/README.md","_readme_localurl":"jerryyli~valhalla-nmt~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":37,"category":"math","githuburl":"https://github.com/jszymon/pacal","featured":null,"links":null,"description":null,"_repopath":"jszymon/pacal","_reponame":"pacal","_stars":21,"_forks":8,"_watches":6,"_topics":[],"_language":"Python","_homepage":null,"_description":"PaCAL - ProbAbilistic CALculator","_organization":"jszymon","_updated_at":"2022-11-02T00:00:00.000Z","_last_commit_date":"2022-11-02T00:00:00.000Z","_created_at":"2014-08-04T00:00:00.000Z","_age_weeks":435,"_stars_per_week":0.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jszymon/pacal/master/README.md","_readme_localurl":"jszymon~pacal~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jszymon/pacal/master/requirements.txt","https://raw.githubusercontent.com/jszymon/pacal/master/setup.py"],"_requirements_localurls":["jszymon~pacal~requirements.txt","jszymon~pacal~setup.py"]},{"index":840,"category":"data","githuburl":"https://github.com/codait/pardata","featured":null,"links":null,"description":null,"_repopath":"codait/pardata","_reponame":"pardata","_stars":18,"_forks":5,"_watches":11,"_topics":["dataset","python","machine-learning","artificial-intelligence","data-science"],"_language":"Python","_homepage":"https://pardata.readthedocs.io/en/latest/","_description":"codait/pardata","_organization":"codait","_updated_at":"2022-08-14T00:00:00.000Z","_last_commit_date":"2021-12-01T00:00:00.000Z","_created_at":"2020-11-17T00:00:00.000Z","_age_weeks":107,"_stars_per_week":0.17,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/codait/pardata/master/README.rst","_readme_localurl":"codait~pardata~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/codait/pardata/master/setup.py"],"_requirements_localurls":["codait~pardata~setup.py"]},{"index":578,"category":"term","githuburl":"https://github.com/matthewdeanmartin/terminaltables","featured":null,"links":null,"description":null,"_repopath":"matthewdeanmartin/terminaltables","_reponame":"terminaltables","_stars":17,"_forks":4,"_watches":0,"_topics":[],"_language":"Python","_homepage":"https://robpol86.github.io/terminaltables","_description":"terminaltables: Generate simple tables in terminals from a nested list of strings.","_organization":"matthewdeanmartin","_updated_at":"2022-11-15T00:00:00.000Z","_last_commit_date":"2022-01-30T00:00:00.000Z","_created_at":"2021-12-04T00:00:00.000Z","_age_weeks":52,"_stars_per_week":0.32,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/matthewdeanmartin/terminaltables/master/README.md","_readme_localurl":"matthewdeanmartin~terminaltables~README.md","_requirements_filenames":["pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/matthewdeanmartin/terminaltables/master/pyproject.toml","https://raw.githubusercontent.com/matthewdeanmartin/terminaltables/master/Pipfile"],"_requirements_localurls":["matthewdeanmartin~terminaltables~pyproject.toml","matthewdeanmartin~terminaltables~Pipfile"]},{"index":679,"category":"util","githuburl":"https://github.com/markhershey/arxiv-dl","featured":null,"links":null,"description":null,"_repopath":"markhershey/arxiv-dl","_reponame":"arxiv-dl","_stars":16,"_forks":4,"_watches":2,"_topics":["arxiv","paper","downloader","command-line-tool","paper-with-code","cvpr"],"_language":"Python","_homepage":"https://pypi.org/project/arxiv-dl/","_description":"arxiv-dl: Command-line ArXiv & CVF (CVPR, ICCV, WACV) Paper Downloader","_organization":"markhershey","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2021-01-21T00:00:00.000Z","_age_weeks":97,"_stars_per_week":0.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/markhershey/arxiv-dl/master/README.md","_readme_localurl":"markhershey~arxiv-dl~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/markhershey/arxiv-dl/master/requirements.txt","https://raw.githubusercontent.com/markhershey/arxiv-dl/master/setup.py"],"_requirements_localurls":["markhershey~arxiv-dl~requirements.txt","markhershey~arxiv-dl~setup.py"]},{"index":669,"category":"gis","githuburl":"https://github.com/zorzi-s/maprepair","featured":null,"links":null,"description":null,"_repopath":"zorzi-s/maprepair","_reponame":"MapRepair","_stars":16,"_forks":4,"_watches":2,"_topics":[],"_language":"Python","_homepage":null,"_description":"MapRepair: Deep Cadastre Maps Alignment and Temporal Inconsistencies Fix in Satellite Images","_organization":"zorzi-s","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2021-05-17T00:00:00.000Z","_created_at":"2020-07-30T00:00:00.000Z","_age_weeks":122,"_stars_per_week":0.13,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zorzi-s/maprepair/master/README.md","_readme_localurl":"zorzi-s~maprepair~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":892,"category":"util","githuburl":"https://github.com/pyodide/micropip","featured":null,"links":null,"description":null,"_repopath":"pyodide/micropip","_reponame":"micropip","_stars":11,"_forks":3,"_watches":5,"_topics":[],"_language":"Python","_homepage":"https://micropip.pyodide.org","_description":"micropip: A lightweight Python package installer for Pyodide","_organization":"pyodide","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2022-09-15T00:00:00.000Z","_age_weeks":11,"_stars_per_week":0.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyodide/micropip/master/README.md","_readme_localurl":"pyodide~micropip~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyodide/micropip/master/pyproject.toml"],"_requirements_localurls":["pyodide~micropip~pyproject.toml"]},{"index":702,"category":"data","githuburl":"https://github.com/harangju/wikinet","featured":null,"links":null,"description":null,"_repopath":"harangju/wikinet","_reponame":"wikinet","_stars":10,"_forks":5,"_watches":3,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"wikinet: Python library for exploring networks of hyperlinked Wikipedia articles","_organization":"harangju","_updated_at":"2022-01-17T00:00:00.000Z","_last_commit_date":"2022-01-25T00:00:00.000Z","_created_at":"2019-08-05T00:00:00.000Z","_age_weeks":174,"_stars_per_week":0.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/harangju/wikinet/master/README.md","_readme_localurl":"harangju~wikinet~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/harangju/wikinet/master/setup.py","https://raw.githubusercontent.com/harangju/wikinet/master/pyproject.toml"],"_requirements_localurls":["harangju~wikinet~setup.py","harangju~wikinet~pyproject.toml"]},{"index":608,"category":"typing","githuburl":"https://github.com/tk0miya/docutils-stubs","featured":null,"links":null,"description":null,"_repopath":"tk0miya/docutils-stubs","_reponame":"docutils-stubs","_stars":7,"_forks":5,"_watches":6,"_topics":[],"_language":"Python","_homepage":null,"_description":"tk0miya/docutils-stubs","_organization":"tk0miya","_updated_at":"2022-01-02T00:00:00.000Z","_last_commit_date":"2022-01-02T00:00:00.000Z","_created_at":"2018-11-02T00:00:00.000Z","_age_weeks":213,"_stars_per_week":0.03,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/tk0miya/docutils-stubs/master/README.rst","_readme_localurl":"tk0miya~docutils-stubs~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tk0miya/docutils-stubs/master/setup.py"],"_requirements_localurls":["tk0miya~docutils-stubs~setup.py"]},{"index":180,"category":"sim","githuburl":"https://github.com/artemyk/dynpy","featured":null,"links":null,"description":null,"_repopath":"artemyk/dynpy","_reponame":"dynpy","_stars":5,"_forks":5,"_watches":3,"_topics":[],"_language":"Python","_homepage":null,"_description":"dynpy: Dynamical systems for Python","_organization":"artemyk","_updated_at":"2021-09-24T00:00:00.000Z","_last_commit_date":"2018-09-28T00:00:00.000Z","_created_at":"2014-09-12T00:00:00.000Z","_age_weeks":429,"_stars_per_week":0.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/artemyk/dynpy/master/README.md","_readme_localurl":"artemyk~dynpy~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/artemyk/dynpy/master/setup.py"],"_requirements_localurls":["artemyk~dynpy~setup.py"]},{"index":526,"category":"gis","githuburl":"https://github.com/lycantropos/wagyu","featured":null,"links":null,"description":null,"_repopath":"lycantropos/wagyu","_reponame":"wagyu","_stars":3,"_forks":2,"_watches":1,"_topics":[],"_language":"Python","_homepage":"https://github.com/mapbox/wagyu","_description":"wagyu: Python port of mapbox/wagyu library (with separate C++ binding)","_organization":"lycantropos","_updated_at":"2022-07-19T00:00:00.000Z","_last_commit_date":"2020-11-21T00:00:00.000Z","_created_at":"2020-06-30T00:00:00.000Z","_age_weeks":127,"_stars_per_week":0.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lycantropos/wagyu/master/README.md","_readme_localurl":"lycantropos~wagyu~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lycantropos/wagyu/master/requirements.txt","https://raw.githubusercontent.com/lycantropos/wagyu/master/setup.py"],"_requirements_localurls":["lycantropos~wagyu~requirements.txt","lycantropos~wagyu~setup.py"]},{"index":751,"category":"gis","githuburl":"https://github.com/edomel/boundaryvt","featured":null,"links":null,"description":null,"_repopath":"edomel/boundaryvt","_reponame":"BoundaryVT","_stars":2,"_forks":0,"_watches":2,"_topics":[],"_language":"Python","_homepage":null,"_description":"edomel/boundaryvt","_organization":"edomel","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-09-29T00:00:00.000Z","_created_at":"2022-07-29T00:00:00.000Z","_age_weeks":18,"_stars_per_week":0.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/edomel/boundaryvt/master/README.md","_readme_localurl":"edomel~boundaryvt~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":420,"category":"template","githuburl":"https://github.com/dylanhogg/python-project-template","featured":null,"links":null,"description":null,"_repopath":"dylanhogg/python-project-template","_reponame":"python-project-template","_stars":1,"_forks":0,"_watches":2,"_topics":["python","template","jupyterlab","cookiecutter"],"_language":"Python","_homepage":"","_description":"python-project-template: A quick-start Python project template with helpful functionality and common libraries.","_organization":"dylanhogg","_updated_at":"2022-08-19T00:00:00.000Z","_last_commit_date":"2022-08-19T00:00:00.000Z","_created_at":"2020-02-12T00:00:00.000Z","_age_weeks":147,"_stars_per_week":0.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dylanhogg/python-project-template/master/README.md","_readme_localurl":"dylanhogg~python-project-template~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/dylanhogg/python-project-template/master/requirements.txt"],"_requirements_localurls":["dylanhogg~python-project-template~requirements.txt"]}]} \ No newline at end of file +{"schema":{"fields":[{"name":"index","type":"integer"},{"name":"category","type":"string"},{"name":"githuburl","type":"string"},{"name":"featured","type":"number"},{"name":"links","type":"string"},{"name":"description","type":"number"},{"name":"_repopath","type":"string"},{"name":"_reponame","type":"string"},{"name":"_stars","type":"integer"},{"name":"_forks","type":"integer"},{"name":"_watches","type":"integer"},{"name":"_topics","type":"string"},{"name":"_language","type":"string"},{"name":"_homepage","type":"string"},{"name":"_description","type":"string"},{"name":"_organization","type":"string"},{"name":"_updated_at","type":"string"},{"name":"_last_commit_date","type":"string"},{"name":"_created_at","type":"string"},{"name":"_age_weeks","type":"integer"},{"name":"_stars_per_week","type":"number"},{"name":"_pop_contributor_count","type":"integer"},{"name":"_pop_contributor_orgs_len","type":"integer"},{"name":"_pop_contributor_orgs_max","type":"integer"},{"name":"_pop_contributor_orgs","type":"string"},{"name":"_pop_contributor_orgs_error","type":"string"},{"name":"_pop_commit_frequency","type":"number"},{"name":"_pop_updated_issues_count","type":"integer"},{"name":"_pop_closed_issues_count","type":"integer"},{"name":"_pop_created_since_days","type":"integer"},{"name":"_pop_updated_since_days","type":"integer"},{"name":"_pop_recent_releases_count","type":"integer"},{"name":"_pop_recent_releases_estimated_tags","type":"integer"},{"name":"_pop_recent_releases_adjusted_count","type":"integer"},{"name":"_pop_issue_count","type":"number"},{"name":"_pop_comment_count","type":"number"},{"name":"_pop_comment_count_lookback_days","type":"number"},{"name":"_pop_comment_frequency","type":"number"},{"name":"_pop_dependents_count","type":"integer"},{"name":"_pop_score","type":"number"},{"name":"_readme_filename","type":"string"},{"name":"_readme_giturl","type":"string"},{"name":"_readme_localurl","type":"string"},{"name":"_requirements_filenames","type":"string"},{"name":"_requirements_giturls","type":"string"},{"name":"_requirements_localurls","type":"string"}],"primaryKey":["index"],"pandas_version":"0.20.0"},"data":[{"index":89,"category":"ml-dl","githuburl":"https://github.com/tensorflow/tensorflow","featured":null,"links":null,"description":null,"_repopath":"tensorflow/tensorflow","_reponame":"tensorflow","_stars":169751,"_forks":87558,"_watches":7793,"_topics":["tensorflow","machine-learning","python","deep-learning","deep-neural-networks","neural-network","ml","distributed"],"_language":"C++","_homepage":"https://tensorflow.org","_description":"tensorflow: An Open Source Machine Learning Framework for Everyone","_organization":"tensorflow","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2015-11-07T00:00:00.000Z","_age_weeks":371,"_stars_per_week":457.2,"_pop_contributor_count":4198,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","googletensorflow"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":312.65,"_pop_updated_issues_count":2393,"_pop_closed_issues_count":1430,"_pop_created_since_days":87,"_pop_updated_since_days":0,"_pop_recent_releases_count":32,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":32,"_pop_issue_count":2393.0,"_pop_comment_count":6694.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":175460,"_pop_score":92.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/tensorflow/master/README.md","_readme_localurl":"tensorflow~tensorflow~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":405,"category":"study","githuburl":"https://github.com/thealgorithms/python","featured":null,"links":null,"description":null,"_repopath":"thealgorithms/python","_reponame":"Python","_stars":150017,"_forks":38545,"_watches":5937,"_topics":["python","algorithm","algorithms-implemented","algorithm-competitions","algos","sorts","searches","sorting-algorithms","education","learn","practice","community-driven","interview","hacktoberfest"],"_language":"Python","_homepage":"https://the-algorithms.com/","_description":"Python: All Algorithms implemented in Python","_organization":"thealgorithms","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2016-07-16T00:00:00.000Z","_age_weeks":335,"_stars_per_week":447.43,"_pop_contributor_count":973,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["christianclauss","fossasiagojekthealgorithms","thealgorithmsgojek","universit\u00e4tpassau"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.31,"_pop_updated_issues_count":1926,"_pop_closed_issues_count":1831,"_pop_created_since_days":78,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1926.0,"_pop_comment_count":2356.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":3296,"_pop_score":69.3,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/thealgorithms/python/master/README.md","_readme_localurl":"thealgorithms~python~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/thealgorithms/python/master/requirements.txt","https://raw.githubusercontent.com/thealgorithms/python/master/pyproject.toml"],"_requirements_localurls":["thealgorithms~python~requirements.txt","thealgorithms~python~pyproject.toml"]},{"index":112,"category":"nlp","githuburl":"https://github.com/huggingface/transformers","featured":null,"links":null,"description":null,"_repopath":"huggingface/transformers","_reponame":"transformers","_stars":76398,"_forks":17261,"_watches":866,"_topics":["nlp","natural-language-processing","pytorch","language-model","tensorflow","bert","language-models","pytorch-transformers","nlp-library","transformer","model-hub","pretrained-models","jax","flax","seq2seq","speech-recognition","hacktoberfest","python","machine-learning","deep-learning"],"_language":"Python","_homepage":"https://huggingface.co/transformers","_description":"\ud83e\udd17 Transformers: State-of-the-art Machine Learning for Pytorch, TensorFlow, and JAX.","_organization":"huggingface","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-10-29T00:00:00.000Z","_age_weeks":216,"_stars_per_week":353.69,"_pop_contributor_count":1650,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","stasosphereonline"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":56.79,"_pop_updated_issues_count":2247,"_pop_closed_issues_count":1896,"_pop_created_since_days":50,"_pop_updated_since_days":0,"_pop_recent_releases_count":24,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":24,"_pop_issue_count":2248.0,"_pop_comment_count":6558.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":10695,"_pop_score":81.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/transformers/master/README.md","_readme_localurl":"huggingface~transformers~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/transformers/master/setup.py","https://raw.githubusercontent.com/huggingface/transformers/master/pyproject.toml"],"_requirements_localurls":["huggingface~transformers~setup.py","huggingface~transformers~pyproject.toml"]},{"index":14,"category":"web","githuburl":"https://github.com/django/django","featured":null,"links":null,"description":null,"_repopath":"django/django","_reponame":"django","_stars":67753,"_forks":28322,"_watches":2271,"_topics":["python","django","web","framework","orm","templates","models","views","apps"],"_language":"Python","_homepage":"https://www.djangoproject.com/","_description":"django: The Web framework for perfectionists with deadlines.","_organization":"django","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2012-04-28T00:00:00.000Z","_age_weeks":555,"_stars_per_week":122.01,"_pop_contributor_count":2842,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["2xlibre.nets\u00e0rl"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":18.12,"_pop_updated_issues_count":377,"_pop_closed_issues_count":307,"_pop_created_since_days":130,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":34,"_pop_recent_releases_adjusted_count":34,"_pop_issue_count":377.0,"_pop_comment_count":957.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":61720,"_pop_score":79.49,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/django/django/master/README.rst","_readme_localurl":"django~django~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/django/django/master/setup.py","https://raw.githubusercontent.com/django/django/master/pyproject.toml"],"_requirements_localurls":["django~django~setup.py","django~django~pyproject.toml"]},{"index":57,"category":"web","githuburl":"https://github.com/pallets/flask","featured":null,"links":null,"description":null,"_repopath":"pallets/flask","_reponame":"flask","_stars":61341,"_forks":15349,"_watches":2146,"_topics":["python","flask","wsgi","web-framework","werkzeug","jinja","pallets"],"_language":"Python","_homepage":"https://flask.palletsprojects.com","_description":"flask: The Python micro framework for building web applications.","_organization":"pallets","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-25T00:00:00.000Z","_created_at":"2010-04-06T00:00:00.000Z","_age_weeks":662,"_stars_per_week":92.54,"_pop_contributor_count":800,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["getsentry","sentry"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.71,"_pop_updated_issues_count":76,"_pop_closed_issues_count":65,"_pop_created_since_days":155,"_pop_updated_since_days":1,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":76.0,"_pop_comment_count":61.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":8741,"_pop_score":65.15,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/flask/master/README.rst","_readme_localurl":"pallets~flask~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/flask/master/setup.py"],"_requirements_localurls":["pallets~flask~setup.py"]},{"index":76,"category":"ml-dl","githuburl":"https://github.com/pytorch/pytorch","featured":null,"links":null,"description":null,"_repopath":"pytorch/pytorch","_reponame":"pytorch","_stars":61054,"_forks":17007,"_watches":1624,"_topics":["neural-network","autograd","gpu","numpy","deep-learning","tensor","python","machine-learning"],"_language":"C++","_homepage":"https://pytorch.org","_description":"pytorch: Tensors and Dynamic neural networks in Python with strong GPU acceleration","_organization":"pytorch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2016-08-13T00:00:00.000Z","_age_weeks":331,"_stars_per_week":184.29,"_pop_contributor_count":3755,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebookairesearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":216.04,"_pop_updated_issues_count":8263,"_pop_closed_issues_count":5684,"_pop_created_since_days":77,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":120,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":8258.0,"_pop_comment_count":34479.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.2,"_pop_dependents_count":961352,"_pop_score":91.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/pytorch/master/README.md","_readme_localurl":"pytorch~pytorch~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/pytorch/master/requirements.txt","https://raw.githubusercontent.com/pytorch/pytorch/master/setup.py","https://raw.githubusercontent.com/pytorch/pytorch/master/pyproject.toml"],"_requirements_localurls":["pytorch~pytorch~requirements.txt","pytorch~pytorch~setup.py","pytorch~pytorch~pyproject.toml"]},{"index":40,"category":"ml-dl","githuburl":"https://github.com/keras-team/keras","featured":null,"links":null,"description":null,"_repopath":"keras-team/keras","_reponame":"keras","_stars":56861,"_forks":19228,"_watches":1936,"_topics":["deep-learning","tensorflow","neural-networks","machine-learning","data-science","python"],"_language":"Python","_homepage":"http://keras.io/","_description":"keras: Deep Learning for humans","_organization":"keras-team","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2015-03-28T00:00:00.000Z","_age_weeks":403,"_stars_per_week":140.99,"_pop_contributor_count":1133,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","sktelecom"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":20.58,"_pop_updated_issues_count":486,"_pop_closed_issues_count":353,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":486.0,"_pop_comment_count":894.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":3088,"_pop_score":73.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/keras-team/keras/master/README.md","_readme_localurl":"keras-team~keras~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/keras-team/keras/master/requirements.txt"],"_requirements_localurls":["keras-team~keras~requirements.txt"]},{"index":189,"category":"util","githuburl":"https://github.com/home-assistant/core","featured":null,"links":null,"description":null,"_repopath":"home-assistant/core","_reponame":"core","_stars":56762,"_forks":20995,"_watches":1345,"_topics":["python","home-automation","iot","internet-of-things","mqtt","raspberry-pi","asyncio","hacktoberfest"],"_language":"Python","_homepage":"https://www.home-assistant.io","_description":"core: :house_with_garden: Open source home automation that puts local control and privacy first.","_organization":"home-assistant","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2013-09-17T00:00:00.000Z","_age_weeks":482,"_stars_per_week":117.55,"_pop_contributor_count":3475,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["home-assistant,nabucasa","home-assistanthassio-addons"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":241.85,"_pop_updated_issues_count":7960,"_pop_closed_issues_count":5914,"_pop_created_since_days":113,"_pop_updated_since_days":0,"_pop_recent_releases_count":173,"_pop_recent_releases_estimated_tags":111,"_pop_recent_releases_adjusted_count":173,"_pop_issue_count":7960.0,"_pop_comment_count":23769.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":3239,"_pop_score":86.91,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/home-assistant/core/master/README.rst","_readme_localurl":"home-assistant~core~README.rst","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/home-assistant/core/master/requirements.txt","https://raw.githubusercontent.com/home-assistant/core/master/pyproject.toml"],"_requirements_localurls":["home-assistant~core~requirements.txt","home-assistant~core~pyproject.toml"]},{"index":135,"category":"web","githuburl":"https://github.com/tiangolo/fastapi","featured":1.0,"links":null,"description":null,"_repopath":"tiangolo/fastapi","_reponame":"fastapi","_stars":52565,"_forks":4303,"_watches":603,"_topics":["python","json","swagger-ui","redoc","starlette","openapi","api","openapi3","framework","async","asyncio","uvicorn","python3","python-types","pydantic","json-schema","fastapi","swagger","rest","web"],"_language":"Python","_homepage":"https://fastapi.tiangolo.com/","_description":"FastAPI framework, high performance, easy to learn, fast to code, ready for production","_organization":"tiangolo","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-12-08T00:00:00.000Z","_age_weeks":210,"_stars_per_week":249.97,"_pop_contributor_count":401,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.75,"_pop_updated_issues_count":1366,"_pop_closed_issues_count":887,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":25,"_pop_recent_releases_estimated_tags":35,"_pop_recent_releases_adjusted_count":25,"_pop_issue_count":1366.0,"_pop_comment_count":3158.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":4316,"_pop_score":66.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/fastapi/master/README.md","_readme_localurl":"tiangolo~fastapi~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tiangolo/fastapi/master/pyproject.toml"],"_requirements_localurls":["tiangolo~fastapi~pyproject.toml"]},{"index":78,"category":"ml","githuburl":"https://github.com/scikit-learn/scikit-learn","featured":null,"links":null,"description":null,"_repopath":"scikit-learn/scikit-learn","_reponame":"scikit-learn","_stars":52354,"_forks":23790,"_watches":2167,"_topics":["machine-learning","python","statistics","data-science","data-analysis"],"_language":"Python","_homepage":"https://scikit-learn.org","_description":"scikit-learn: machine learning in Python","_organization":"scikit-learn","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2010-08-17T00:00:00.000Z","_age_weeks":643,"_stars_per_week":81.31,"_pop_contributor_count":2806,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["inria","meta","microsoft","uli\u00e8ge"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":31.21,"_pop_updated_issues_count":1080,"_pop_closed_issues_count":710,"_pop_created_since_days":150,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":1079.0,"_pop_comment_count":2656.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":36390,"_pop_score":84.49,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/scikit-learn/scikit-learn/master/README.rst","_readme_localurl":"scikit-learn~scikit-learn~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scikit-learn/scikit-learn/master/setup.py","https://raw.githubusercontent.com/scikit-learn/scikit-learn/master/pyproject.toml"],"_requirements_localurls":["scikit-learn~scikit-learn~setup.py","scikit-learn~scikit-learn~pyproject.toml"]},{"index":399,"category":"util","githuburl":"https://github.com/python/cpython","featured":null,"links":null,"description":null,"_repopath":"python/cpython","_reponame":"cpython","_stars":49550,"_forks":25219,"_watches":1465,"_topics":[],"_language":"Python","_homepage":"https://www.python.org/","_description":"cpython: The Python programming language","_organization":"python","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2017-02-10T00:00:00.000Z","_age_weeks":305,"_stars_per_week":162.23,"_pop_contributor_count":2294,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["fzj\u00fclich","keepertech","microsoft","redhatofficial"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":68.56,"_pop_updated_issues_count":4833,"_pop_closed_issues_count":3383,"_pop_created_since_days":71,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":91,"_pop_recent_releases_adjusted_count":91,"_pop_issue_count":4833.0,"_pop_comment_count":11415.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":11228,"_pop_score":86.26,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/python/cpython/master/README.rst","_readme_localurl":"python~cpython~README.rst","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":177,"category":"web","githuburl":"https://github.com/psf/requests","featured":null,"links":null,"description":null,"_repopath":"psf/requests","_reponame":"requests","_stars":48718,"_forks":8929,"_watches":1362,"_topics":["python","http","forhumans","requests","python-requests","client","humans","cookies"],"_language":"Python","_homepage":"https://requests.readthedocs.io/en/latest/","_description":"requests: A simple, yet elegant, HTTP library.","_organization":"psf","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-21T00:00:00.000Z","_created_at":"2011-02-13T00:00:00.000Z","_age_weeks":618,"_stars_per_week":78.81,"_pop_contributor_count":723,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","apple","tableau&salesforce"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.87,"_pop_updated_issues_count":89,"_pop_closed_issues_count":56,"_pop_created_since_days":144,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":89.0,"_pop_comment_count":124.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":9183,"_pop_score":64.97,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/psf/requests/master/README.md","_readme_localurl":"psf~requests~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/psf/requests/master/setup.py","https://raw.githubusercontent.com/psf/requests/master/pyproject.toml"],"_requirements_localurls":["psf~requests~setup.py","psf~requests~pyproject.toml"]},{"index":80,"category":"data","githuburl":"https://github.com/scrapy/scrapy","featured":null,"links":null,"description":null,"_repopath":"scrapy/scrapy","_reponame":"scrapy","_stars":45399,"_forks":9807,"_watches":1789,"_topics":["python","scraping","crawling","framework","crawler","hacktoberfest"],"_language":"Python","_homepage":"https://scrapy.org","_description":"Scrapy, a fast high-level web crawling & scraping framework for Python.","_organization":"scrapy","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2010-02-22T00:00:00.000Z","_age_weeks":669,"_stars_per_week":67.86,"_pop_contributor_count":569,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["superfly","zytedata(formerlyscrapinghub)","zytedata,scrapinghub"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.71,"_pop_updated_issues_count":259,"_pop_closed_issues_count":190,"_pop_created_since_days":156,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":260.0,"_pop_comment_count":538.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":1159,"_pop_score":67.91,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/scrapy/scrapy/master/README.rst","_readme_localurl":"scrapy~scrapy~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/scrapy/scrapy/master/setup.py"],"_requirements_localurls":["scrapy~scrapy~setup.py"]},{"index":695,"category":"ml-dl","githuburl":"https://github.com/deepfakes/faceswap","featured":null,"links":null,"description":null,"_repopath":"deepfakes/faceswap","_reponame":"faceswap","_stars":42994,"_forks":12012,"_watches":1502,"_topics":["faceswap","face-swap","deep-learning","deeplearning","deep-neural-networks","deepfakes","deepface","deep-face-swap","fakeapp","neural-networks","neural-nets","openfaceswap","myfakeapp","machine-learning"],"_language":"Python","_homepage":"https://www.faceswap.dev","_description":"faceswap: Deepfakes Software For All","_organization":"deepfakes","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2017-12-19T00:00:00.000Z","_age_weeks":260,"_stars_per_week":164.82,"_pop_contributor_count":94,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.87,"_pop_updated_issues_count":21,"_pop_closed_issues_count":14,"_pop_created_since_days":61,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":21.0,"_pop_comment_count":17.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":1192,"_pop_score":46.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/deepfakes/faceswap/master/README.md","_readme_localurl":"deepfakes~faceswap~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/deepfakes/faceswap/master/setup.py"],"_requirements_localurls":["deepfakes~faceswap~setup.py"]},{"index":179,"category":"term","githuburl":"https://github.com/willmcgugan/rich","featured":null,"links":null,"description":null,"_repopath":"willmcgugan/rich","_reponame":"rich","_stars":41137,"_forks":1447,"_watches":541,"_topics":["python","python3","python-library","terminal","terminal-color","markdown","tables","syntax-highlighting","ansi-colors","progress-bar-python","progress-bar","traceback","rich","tracebacks-rich","emoji","tui"],"_language":"Python","_homepage":"https://rich.readthedocs.io/en/latest/","_description":"Rich is a Python library for rich text and beautiful formatting in the terminal.","_organization":"willmcgugan","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2019-11-10T00:00:00.000Z","_age_weeks":162,"_stars_per_week":253.71,"_pop_contributor_count":203,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["davep.org","textualize"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.44,"_pop_updated_issues_count":197,"_pop_closed_issues_count":147,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":45,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":197.0,"_pop_comment_count":392.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":3007,"_pop_score":64.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/willmcgugan/rich/master/README.md","_readme_localurl":"willmcgugan~rich~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/willmcgugan/rich/master/setup.py","https://raw.githubusercontent.com/willmcgugan/rich/master/pyproject.toml"],"_requirements_localurls":["willmcgugan~rich~setup.py","willmcgugan~rich~pyproject.toml"]},{"index":262,"category":"web","githuburl":"https://github.com/sherlock-project/sherlock","featured":null,"links":null,"description":null,"_repopath":"sherlock-project/sherlock","_reponame":"sherlock","_stars":37843,"_forks":4466,"_watches":963,"_topics":["osint","reconnaissance","linux","macos","cli","sherlock","python3","windows","redteam","tools","information-gathering","hacktoberfest","hacktoberfest2022","python"],"_language":"Python","_homepage":"http://sherlock-project.github.io","_description":"sherlock: \ud83d\udd0e Hunt down social media accounts by username across social networks","_organization":"sherlock-project","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-21T00:00:00.000Z","_created_at":"2018-12-24T00:00:00.000Z","_age_weeks":208,"_stars_per_week":181.94,"_pop_contributor_count":209,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["paackeng"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.25,"_pop_updated_issues_count":194,"_pop_closed_issues_count":117,"_pop_created_since_days":48,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":194.0,"_pop_comment_count":179.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":415,"_pop_score":47.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sherlock-project/sherlock/master/README.md","_readme_localurl":"sherlock-project~sherlock~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/sherlock-project/sherlock/master/requirements.txt"],"_requirements_localurls":["sherlock-project~sherlock~requirements.txt"]},{"index":736,"category":"diffusion","githuburl":"https://github.com/compvis/stable-diffusion","featured":null,"links":null,"description":null,"_repopath":"compvis/stable-diffusion","_reponame":"stable-diffusion","_stars":37519,"_forks":5790,"_watches":355,"_topics":[],"_language":"Jupyter Notebook","_homepage":"https://ommer-lab.com/research/latent-diffusion-models/","_description":"stable-diffusion: A latent text-to-image diffusion model","_organization":"compvis","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-16T00:00:00.000Z","_created_at":"2022-08-10T00:00:00.000Z","_age_weeks":18,"_stars_per_week":2004.83,"_pop_contributor_count":8,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["runwayml"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.4,"_pop_updated_issues_count":324,"_pop_closed_issues_count":77,"_pop_created_since_days":4,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":324.0,"_pop_comment_count":729.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":53,"_pop_score":31.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/compvis/stable-diffusion/master/README.md","_readme_localurl":"compvis~stable-diffusion~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/compvis/stable-diffusion/master/setup.py"],"_requirements_localurls":["compvis~stable-diffusion~setup.py"]},{"index":432,"category":"study","githuburl":"https://github.com/jakevdp/pythondatasciencehandbook","featured":null,"links":null,"description":null,"_repopath":"jakevdp/pythondatasciencehandbook","_reponame":"PythonDataScienceHandbook","_stars":36840,"_forks":16265,"_watches":1768,"_topics":["scikit-learn","numpy","python","jupyter-notebook","matplotlib","pandas"],"_language":"Jupyter Notebook","_homepage":"http://jakevdp.github.io/PythonDataScienceHandbook","_description":"PythonDataScienceHandbook: Python Data Science Handbook: full text in Jupyter Notebooks","_organization":"jakevdp","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2018-11-30T00:00:00.000Z","_created_at":"2016-08-10T00:00:00.000Z","_age_weeks":331,"_stars_per_week":111.06,"_pop_contributor_count":17,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["coiled","google","kvantify","quansight"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":19,"_pop_closed_issues_count":11,"_pop_created_since_days":77,"_pop_updated_since_days":49,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":19.0,"_pop_comment_count":17.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":172,"_pop_score":32.72,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jakevdp/pythondatasciencehandbook/master/README.md","_readme_localurl":"jakevdp~pythondatasciencehandbook~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/jakevdp/pythondatasciencehandbook/master/requirements.txt"],"_requirements_localurls":["jakevdp~pythondatasciencehandbook~requirements.txt"]},{"index":59,"category":"pandas","githuburl":"https://github.com/pandas-dev/pandas","featured":1.0,"links":null,"description":null,"_repopath":"pandas-dev/pandas","_reponame":"pandas","_stars":36289,"_forks":15523,"_watches":1119,"_topics":["data-analysis","pandas","flexible","alignment","python","data-science"],"_language":"Python","_homepage":"https://pandas.pydata.org","_description":"pandas: Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more","_organization":"pandas-dev","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2010-08-24T00:00:00.000Z","_age_weeks":642,"_stars_per_week":56.45,"_pop_contributor_count":3189,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["rapidsai","voltrondata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":45.63,"_pop_updated_issues_count":4619,"_pop_closed_issues_count":3022,"_pop_created_since_days":150,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":4619.0,"_pop_comment_count":5418.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":4975,"_pop_score":80.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pandas-dev/pandas/master/README.md","_readme_localurl":"pandas-dev~pandas~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pandas-dev/pandas/master/setup.py","https://raw.githubusercontent.com/pandas-dev/pandas/master/pyproject.toml"],"_requirements_localurls":["pandas-dev~pandas~setup.py","pandas-dev~pandas~pyproject.toml"]},{"index":694,"category":"ml-dl","githuburl":"https://github.com/iperov/deepfacelab","featured":null,"links":null,"description":null,"_repopath":"iperov/deepfacelab","_reponame":"DeepFaceLab","_stars":36190,"_forks":8167,"_watches":1044,"_topics":["faceswap","face-swap","deep-learning","deeplearning","deep-neural-networks","deepfakes","deepface","deep-face-swap","fakeapp","neural-networks","neural-nets","deepfacelab","creating-deepfakes","arxiv","machine-learning"],"_language":"Python","_homepage":"","_description":"DeepFaceLab is the leading software for creating deepfakes.","_organization":"iperov","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-31T00:00:00.000Z","_created_at":"2018-06-04T00:00:00.000Z","_age_weeks":237,"_stars_per_week":152.7,"_pop_contributor_count":21,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":63,"_pop_closed_issues_count":12,"_pop_created_since_days":55,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":63.0,"_pop_comment_count":53.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":333,"_pop_score":33.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/iperov/deepfacelab/master/README.md","_readme_localurl":"iperov~deepfacelab~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":64,"category":"util","githuburl":"https://github.com/psf/black","featured":null,"links":null,"description":null,"_repopath":"psf/black","_reponame":"black","_stars":30470,"_forks":1949,"_watches":227,"_topics":["python","code","formatter","codeformatter","gofmt","yapf","autopep8","pre-commit-hook","hacktoberfest"],"_language":"Python","_homepage":"https://black.readthedocs.io/en/stable/","_description":"black: The uncompromising Python code formatter","_organization":"psf","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-03-14T00:00:00.000Z","_age_weeks":248,"_stars_per_week":122.51,"_pop_contributor_count":350,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["clc","facebook","psf","quora"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.35,"_pop_updated_issues_count":295,"_pop_closed_issues_count":176,"_pop_created_since_days":58,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":299.0,"_pop_comment_count":585.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":28929,"_pop_score":71.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/psf/black/master/README.md","_readme_localurl":"psf~black~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/psf/black/master/pyproject.toml"],"_requirements_localurls":["psf~black~pyproject.toml"]},{"index":220,"category":"util","githuburl":"https://github.com/pyenv/pyenv","featured":null,"links":null,"description":null,"_repopath":"pyenv/pyenv","_reponame":"pyenv","_stars":29882,"_forks":2655,"_watches":380,"_topics":["python","shell"],"_language":"Roff","_homepage":"","_description":"pyenv: Simple Python version management","_organization":"pyenv","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2012-08-31T00:00:00.000Z","_age_weeks":537,"_stars_per_week":55.6,"_pop_contributor_count":402,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["treasuredata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.25,"_pop_updated_issues_count":133,"_pop_closed_issues_count":117,"_pop_created_since_days":125,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":133.0,"_pop_comment_count":307.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":1883,"_pop_score":64.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyenv/pyenv/master/README.md","_readme_localurl":"pyenv~pyenv~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":55,"category":"sim","githuburl":"https://github.com/openai/gym","featured":null,"links":null,"description":null,"_repopath":"openai/gym","_reponame":"gym","_stars":29439,"_forks":8120,"_watches":999,"_topics":[],"_language":"Python","_homepage":"https://www.gymlibrary.dev","_description":"gym: A toolkit for developing and comparing reinforcement learning algorithms.","_organization":"openai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-25T00:00:00.000Z","_created_at":"2016-04-27T00:00:00.000Z","_age_weeks":346,"_stars_per_week":84.91,"_pop_contributor_count":384,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.62,"_pop_updated_issues_count":113,"_pop_closed_issues_count":83,"_pop_created_since_days":81,"_pop_updated_since_days":2,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":113.0,"_pop_comment_count":261.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":7204,"_pop_score":59.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/gym/master/README.md","_readme_localurl":"openai~gym~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/gym/master/requirements.txt","https://raw.githubusercontent.com/openai/gym/master/setup.py","https://raw.githubusercontent.com/openai/gym/master/pyproject.toml"],"_requirements_localurls":["openai~gym~requirements.txt","openai~gym~setup.py","openai~gym~pyproject.toml"]},{"index":118,"category":"ml-ops","githuburl":"https://github.com/apache/airflow","featured":null,"links":null,"description":null,"_repopath":"apache/airflow","_reponame":"airflow","_stars":28488,"_forks":11690,"_watches":764,"_topics":["airflow","apache","apache-airflow","python","scheduler","workflow","hacktoberfest"],"_language":"Python","_homepage":"https://airflow.apache.org/","_description":"airflow: Apache Airflow - A platform to programmatically author, schedule, and monitor workflows","_organization":"apache","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2015-04-13T00:00:00.000Z","_age_weeks":401,"_stars_per_week":71.04,"_pop_contributor_count":2662,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["apachesoftwarefoundation","astronomer","astronomer.io","preset-io","snowflakedb"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":70.71,"_pop_updated_issues_count":2090,"_pop_closed_issues_count":1667,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":337,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":2091.0,"_pop_comment_count":4975.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":13010,"_pop_score":86.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apache/airflow/master/README.md","_readme_localurl":"apache~airflow~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/apache/airflow/master/setup.py","https://raw.githubusercontent.com/apache/airflow/master/pyproject.toml"],"_requirements_localurls":["apache~airflow~setup.py","apache~airflow~pyproject.toml"]},{"index":592,"category":"util","githuburl":"https://github.com/mingrammer/diagrams","featured":null,"links":null,"description":null,"_repopath":"mingrammer/diagrams","_reponame":"diagrams","_stars":27457,"_forks":1675,"_watches":350,"_topics":["diagram","diagram-as-code","architecture","graphviz"],"_language":"Python","_homepage":"https://diagrams.mingrammer.com","_description":"diagrams: :art: Diagram as Code for prototyping cloud system architectures","_organization":"mingrammer","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-27T00:00:00.000Z","_created_at":"2020-02-02T00:00:00.000Z","_age_weeks":150,"_stars_per_week":182.87,"_pop_contributor_count":123,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["daangn","luxeys"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.17,"_pop_updated_issues_count":165,"_pop_closed_issues_count":63,"_pop_created_since_days":35,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":165.0,"_pop_comment_count":168.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":59,"_pop_score":46.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mingrammer/diagrams/master/README.md","_readme_localurl":"mingrammer~diagrams~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mingrammer/diagrams/master/pyproject.toml"],"_requirements_localurls":["mingrammer~diagrams~pyproject.toml"]},{"index":257,"category":"crypto","githuburl":"https://github.com/ccxt/ccxt","featured":null,"links":null,"description":null,"_repopath":"ccxt/ccxt","_reponame":"ccxt","_stars":26668,"_forks":6520,"_watches":930,"_topics":["altcoin","api","arbitrage","bitcoin","bot","cryptocurrency","crypto","e-commerce","ethereum","exchange","invest","library","strategy","trading","btc","eth","trade","merchant","market-data"],"_language":"JavaScript","_homepage":"","_description":"ccxt: A JavaScript / Python / PHP cryptocurrency trading API with support for more than 100 bitcoin/altcoin exchanges","_organization":"ccxt","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2017-05-14T00:00:00.000Z","_age_weeks":292,"_stars_per_week":91.28,"_pop_contributor_count":709,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ccxt"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":235.92,"_pop_updated_issues_count":1408,"_pop_closed_issues_count":1047,"_pop_created_since_days":68,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":142,"_pop_recent_releases_adjusted_count":142,"_pop_issue_count":1408.0,"_pop_comment_count":2198.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":37950,"_pop_score":79.89,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ccxt/ccxt/master/README.md","_readme_localurl":"ccxt~ccxt~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":838,"category":"diffusion","githuburl":"https://github.com/automatic1111/stable-diffusion-webui","featured":null,"links":null,"description":null,"_repopath":"automatic1111/stable-diffusion-webui","_reponame":"stable-diffusion-webui","_stars":25507,"_forks":4618,"_watches":247,"_topics":[],"_language":"Python","_homepage":null,"_description":"stable-diffusion-webui: Stable Diffusion web UI","_organization":"automatic1111","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2022-08-22T00:00:00.000Z","_age_weeks":17,"_stars_per_week":1500.41,"_pop_contributor_count":278,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":42.46,"_pop_updated_issues_count":3672,"_pop_closed_issues_count":2189,"_pop_created_since_days":4,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3672.0,"_pop_comment_count":13755.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.7,"_pop_dependents_count":863,"_pop_score":55.6,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/automatic1111/stable-diffusion-webui/master/README.md","_readme_localurl":"automatic1111~stable-diffusion-webui~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/automatic1111/stable-diffusion-webui/master/requirements.txt"],"_requirements_localurls":["automatic1111~stable-diffusion-webui~requirements.txt"]},{"index":677,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/detectron","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/detectron","_reponame":"Detectron","_stars":25464,"_forks":5480,"_watches":959,"_topics":[],"_language":"Python","_homepage":"","_description":"Detectron: FAIR's research platform for object detection research, implementing popular algorithms like Mask R-CNN and RetinaNet.","_organization":"facebookresearch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-03-27T00:00:00.000Z","_created_at":"2017-10-05T00:00:00.000Z","_age_weeks":271,"_stars_per_week":93.77,"_pop_contributor_count":40,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","ucberkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":11,"_pop_closed_issues_count":3,"_pop_created_since_days":63,"_pop_updated_since_days":21,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":11.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":865,"_pop_score":34.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/detectron/master/README.md","_readme_localurl":"facebookresearch~detectron~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/detectron/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/detectron/master/setup.py"],"_requirements_localurls":["facebookresearch~detectron~requirements.txt","facebookresearch~detectron~setup.py"]},{"index":245,"category":"ml","githuburl":"https://github.com/tencentarc/gfpgan","featured":null,"links":null,"description":null,"_repopath":"tencentarc/gfpgan","_reponame":"GFPGAN","_stars":25179,"_forks":3809,"_watches":373,"_topics":["pytorch","gan","deep-learning","super-resolution","face-restoration","image-restoration","gfpgan"],"_language":"Python","_homepage":"","_description":"GFPGAN aims at developing Practical Algorithms for Real-world Face Restoration.","_organization":"tencentarc","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-16T00:00:00.000Z","_created_at":"2021-03-19T00:00:00.000Z","_age_weeks":91,"_stars_per_week":275.4,"_pop_contributor_count":11,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","tencent"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":59,"_pop_closed_issues_count":16,"_pop_created_since_days":21,"_pop_updated_since_days":3,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":58.0,"_pop_comment_count":54.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":11,"_pop_score":32.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tencentarc/gfpgan/master/README.md","_readme_localurl":"tencentarc~gfpgan~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tencentarc/gfpgan/master/requirements.txt","https://raw.githubusercontent.com/tencentarc/gfpgan/master/setup.py"],"_requirements_localurls":["tencentarc~gfpgan~requirements.txt","tencentarc~gfpgan~setup.py"]},{"index":17,"category":"nlp","githuburl":"https://github.com/explosion/spacy","featured":null,"links":null,"description":null,"_repopath":"explosion/spacy","_reponame":"spaCy","_stars":24789,"_forks":3988,"_watches":549,"_topics":["natural-language-processing","data-science","machine-learning","python","cython","nlp","artificial-intelligence","ai","spacy","nlp-library","neural-network","neural-networks","deep-learning","named-entity-recognition","entity-linking","text-classification","tokenization"],"_language":"Python","_homepage":"https://spacy.io","_description":"spaCy: \ud83d\udcab Industrial-strength Natural Language Processing (NLP) in Python","_organization":"explosion","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2014-07-03T00:00:00.000Z","_age_weeks":441,"_stars_per_week":56.14,"_pop_contributor_count":710,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["explosion&oxykodit","founderexplosion"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.85,"_pop_updated_issues_count":356,"_pop_closed_issues_count":316,"_pop_created_since_days":103,"_pop_updated_since_days":0,"_pop_recent_releases_count":19,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":19,"_pop_issue_count":356.0,"_pop_comment_count":577.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":5776,"_pop_score":71.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/spacy/master/README.md","_readme_localurl":"explosion~spacy~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/explosion/spacy/master/requirements.txt","https://raw.githubusercontent.com/explosion/spacy/master/setup.py","https://raw.githubusercontent.com/explosion/spacy/master/pyproject.toml"],"_requirements_localurls":["explosion~spacy~requirements.txt","explosion~spacy~setup.py","explosion~spacy~pyproject.toml"]},{"index":501,"category":"ml","githuburl":"https://github.com/ageron/handson-ml2","featured":null,"links":null,"description":null,"_repopath":"ageron/handson-ml2","_reponame":"handson-ml2","_stars":23709,"_forks":11459,"_watches":625,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"handson-ml2: A series of Jupyter notebooks that walk you through the fundamentals of Machine Learning and Deep Learning in Python using Scikit-Learn, Keras and TensorFlow 2.","_organization":"ageron","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-08T00:00:00.000Z","_created_at":"2019-01-08T00:00:00.000Z","_age_weeks":205,"_stars_per_week":115.17,"_pop_contributor_count":75,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":21,"_pop_closed_issues_count":3,"_pop_created_since_days":48,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":21.0,"_pop_comment_count":31.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":1115,"_pop_score":39.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ageron/handson-ml2/master/README.md","_readme_localurl":"ageron~handson-ml2~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/ageron/handson-ml2/master/requirements.txt"],"_requirements_localurls":["ageron~handson-ml2~requirements.txt"]},{"index":163,"category":"term","githuburl":"https://github.com/tqdm/tqdm","featured":1.0,"links":null,"description":null,"_repopath":"tqdm/tqdm","_reponame":"tqdm","_stars":23582,"_forks":1199,"_watches":207,"_topics":["progressbar","progressmeter","progress-bar","meter","rate","console","terminal","time","progress","gui","python","parallel","cli","utilities","jupyter","discord","telegram","pandas","keras","closember"],"_language":"Python","_homepage":"https://tqdm.github.io","_description":"tqdm: A Fast, Extensible Progress Bar for Python and CLI","_organization":"tqdm","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-03T00:00:00.000Z","_created_at":"2015-06-03T00:00:00.000Z","_age_weeks":393,"_stars_per_week":59.9,"_pop_contributor_count":112,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["giga-consciousness-comasciencegroup-university&hospitalofli\u00e8ge","valence"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":69,"_pop_closed_issues_count":11,"_pop_created_since_days":92,"_pop_updated_since_days":4,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":20,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":69.0,"_pop_comment_count":82.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":6644,"_pop_score":53.31,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/tqdm/tqdm/master/README.rst","_readme_localurl":"tqdm~tqdm~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tqdm/tqdm/master/setup.py","https://raw.githubusercontent.com/tqdm/tqdm/master/pyproject.toml"],"_requirements_localurls":["tqdm~tqdm~setup.py","tqdm~tqdm~pyproject.toml"]},{"index":103,"category":"ml","githuburl":"https://github.com/dmlc/xgboost","featured":null,"links":null,"description":null,"_repopath":"dmlc/xgboost","_reponame":"xgboost","_stars":23555,"_forks":8535,"_watches":931,"_topics":["gbdt","gbrt","gbm","distributed-systems","xgboost","machine-learning"],"_language":"C++","_homepage":"https://xgboost.ai/","_description":"xgboost: Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library, for Python, R, Java, Scala, C++ and more. Runs on single machine, Hadoop, Spark, Dask, Flink and DataFlow","_organization":"dmlc","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2014-02-06T00:00:00.000Z","_age_weeks":462,"_stars_per_week":50.92,"_pop_contributor_count":589,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonai","cmu,octoml","els-rdlefebvresarrut","nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.9,"_pop_updated_issues_count":464,"_pop_closed_issues_count":372,"_pop_created_since_days":108,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":464.0,"_pop_comment_count":840.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":1612,"_pop_score":71.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dmlc/xgboost/master/README.md","_readme_localurl":"dmlc~xgboost~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":26,"category":"term","githuburl":"https://github.com/google/python-fire","featured":null,"links":null,"description":null,"_repopath":"google/python-fire","_reponame":"python-fire","_stars":23487,"_forks":1353,"_watches":380,"_topics":["python","cli"],"_language":"Python","_homepage":"","_description":"python-fire: Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object.","_organization":"google","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2017-02-21T00:00:00.000Z","_age_weeks":303,"_stars_per_week":77.3,"_pop_contributor_count":55,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","googlebrain","syracuseuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":48,"_pop_closed_issues_count":26,"_pop_created_since_days":71,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":48.0,"_pop_comment_count":43.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":114,"_pop_score":46.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/python-fire/master/README.md","_readme_localurl":"google~python-fire~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/python-fire/master/requirements.txt","https://raw.githubusercontent.com/google/python-fire/master/setup.py"],"_requirements_localurls":["google~python-fire~requirements.txt","google~python-fire~setup.py"]},{"index":678,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/detectron2","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/detectron2","_reponame":"detectron2","_stars":23127,"_forks":6313,"_watches":365,"_topics":[],"_language":"Python","_homepage":"https://detectron2.readthedocs.io/en/latest/","_description":"Detectron2 is a platform for object detection, segmentation and other visual recognition tasks.","_organization":"facebookresearch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2019-09-05T00:00:00.000Z","_age_weeks":171,"_stars_per_week":134.8,"_pop_contributor_count":227,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebookairesearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.67,"_pop_updated_issues_count":214,"_pop_closed_issues_count":132,"_pop_created_since_days":40,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":214.0,"_pop_comment_count":258.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":23330,"_pop_score":60.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/detectron2/master/README.md","_readme_localurl":"facebookresearch~detectron2~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/detectron2/master/setup.py"],"_requirements_localurls":["facebookresearch~detectron2~setup.py"]},{"index":646,"category":"util","githuburl":"https://github.com/python-poetry/poetry","featured":null,"links":null,"description":null,"_repopath":"python-poetry/poetry","_reponame":"poetry","_stars":22961,"_forks":1857,"_watches":184,"_topics":["python","dependency-manager","package-manager","packaging","poetry"],"_language":"Python","_homepage":"https://python-poetry.org","_description":"poetry: Python packaging and dependency management made easy","_organization":"python-poetry","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-02-28T00:00:00.000Z","_age_weeks":250,"_stars_per_week":91.58,"_pop_contributor_count":417,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.08,"_pop_updated_issues_count":1180,"_pop_closed_issues_count":864,"_pop_created_since_days":58,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":1181.0,"_pop_comment_count":2846.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":2403,"_pop_score":64.6,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python-poetry/poetry/master/README.md","_readme_localurl":"python-poetry~poetry~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-poetry/poetry/master/pyproject.toml"],"_requirements_localurls":["python-poetry~poetry~pyproject.toml"]},{"index":289,"category":"ml-dl","githuburl":"https://github.com/rwightman/pytorch-image-models","featured":null,"links":null,"description":null,"_repopath":"rwightman/pytorch-image-models","_reponame":"pytorch-image-models","_stars":22569,"_forks":3759,"_watches":292,"_topics":["pytorch","imagenet-classifier","resnet","dual-path-networks","cnn-classification","pretrained-models","pretrained-weights","distributed-training","mobile-deep-learning","mobilenet-v2","mnasnet","mobilenetv3","efficientnet","augmix","randaugment","mixnet","efficientnet-training","vision-transformer-models","nfnets","normalization-free-training"],"_language":"Python","_homepage":"https://huggingface.co/docs/timm","_description":"pytorch-image-models: PyTorch image models, scripts, pretrained weights -- ResNet, ResNeXT, EfficientNet, EfficientNetV2, NFNet, Vision Transformer, MixNet, MobileNet-V3/V2, RegNet, DPN, CSPNet, and more","_organization":"rwightman","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2019-02-02T00:00:00.000Z","_age_weeks":202,"_stars_per_week":111.57,"_pop_contributor_count":89,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","independent","weights&biases"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.46,"_pop_updated_issues_count":111,"_pop_closed_issues_count":72,"_pop_created_since_days":47,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":111.0,"_pop_comment_count":146.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":159,"_pop_score":55.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rwightman/pytorch-image-models/master/README.md","_readme_localurl":"rwightman~pytorch-image-models~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rwightman/pytorch-image-models/master/requirements.txt","https://raw.githubusercontent.com/rwightman/pytorch-image-models/master/setup.py"],"_requirements_localurls":["rwightman~pytorch-image-models~requirements.txt","rwightman~pytorch-image-models~setup.py"]},{"index":689,"category":"ml-dl","githuburl":"https://github.com/matterport/mask_rcnn","featured":null,"links":null,"description":null,"_repopath":"matterport/mask_rcnn","_reponame":"Mask_RCNN","_stars":22507,"_forks":11179,"_watches":597,"_topics":["mask-rcnn","tensorflow","object-detection","instance-segmentation","keras"],"_language":"Python","_homepage":null,"_description":"Mask_RCNN: Mask R-CNN for object detection and instance segmentation on Keras and TensorFlow","_organization":"matterport","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2019-03-31T00:00:00.000Z","_created_at":"2017-10-19T00:00:00.000Z","_age_weeks":269,"_stars_per_week":83.49,"_pop_contributor_count":47,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["apple","freelance","grid.ai|pytorchlightning"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":89,"_pop_closed_issues_count":18,"_pop_created_since_days":63,"_pop_updated_since_days":46,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":89.0,"_pop_comment_count":107.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":1541,"_pop_score":41.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/matterport/mask_rcnn/master/README.md","_readme_localurl":"matterport~mask_rcnn~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/matterport/mask_rcnn/master/requirements.txt","https://raw.githubusercontent.com/matterport/mask_rcnn/master/setup.py"],"_requirements_localurls":["matterport~mask_rcnn~requirements.txt","matterport~mask_rcnn~setup.py"]},{"index":550,"category":"ml","githuburl":"https://github.com/open-mmlab/mmdetection","featured":null,"links":null,"description":null,"_repopath":"open-mmlab/mmdetection","_reponame":"mmdetection","_stars":22420,"_forks":8168,"_watches":362,"_topics":["object-detection","instance-segmentation","rpn","fast-rcnn","faster-rcnn","mask-rcnn","cascade-rcnn","ssd","retinanet","pytorch"],"_language":"Python","_homepage":"https://mmdetection.readthedocs.io","_description":"mmdetection: OpenMMLab Detection Toolbox and Benchmark","_organization":"open-mmlab","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2018-08-22T00:00:00.000Z","_age_weeks":225,"_stars_per_week":99.33,"_pop_contributor_count":377,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cuhk,mmlab","mmlab,ntu","nuaa","open-mmlab","ucsd"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.21,"_pop_updated_issues_count":876,"_pop_closed_issues_count":652,"_pop_created_since_days":53,"_pop_updated_since_days":1,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":873.0,"_pop_comment_count":1322.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":4620,"_pop_score":69.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-mmlab/mmdetection/master/README.md","_readme_localurl":"open-mmlab~mmdetection~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/open-mmlab/mmdetection/master/requirements.txt","https://raw.githubusercontent.com/open-mmlab/mmdetection/master/setup.py"],"_requirements_localurls":["open-mmlab~mmdetection~requirements.txt","open-mmlab~mmdetection~setup.py"]},{"index":54,"category":"math","githuburl":"https://github.com/numpy/numpy","featured":1.0,"links":null,"description":null,"_repopath":"numpy/numpy","_reponame":"numpy","_stars":22230,"_forks":7600,"_watches":571,"_topics":["numpy","python","closember"],"_language":"Python","_homepage":"https://numpy.org","_description":"numpy: The fundamental package for scientific computing with Python.","_organization":"numpy","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2010-09-13T00:00:00.000Z","_age_weeks":640,"_stars_per_week":34.73,"_pop_contributor_count":1556,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mercarijp","quansight,openteams","quansightlabs","retired"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":29.58,"_pop_updated_issues_count":907,"_pop_closed_issues_count":655,"_pop_created_since_days":149,"_pop_updated_since_days":0,"_pop_recent_releases_count":20,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":20,"_pop_issue_count":908.0,"_pop_comment_count":2325.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":27499,"_pop_score":84.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/numpy/numpy/master/README.md","_readme_localurl":"numpy~numpy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/numpy/numpy/master/setup.py","https://raw.githubusercontent.com/numpy/numpy/master/pyproject.toml"],"_requirements_localurls":["numpy~numpy~setup.py","numpy~numpy~pyproject.toml"]},{"index":649,"category":"util","githuburl":"https://github.com/keon/algorithms","featured":null,"links":null,"description":null,"_repopath":"keon/algorithms","_reponame":"algorithms","_stars":21936,"_forks":4425,"_watches":643,"_topics":["algorithm","python","competitive-programming","data-structure","algorithms","sort","search","tree","graph"],"_language":"Python","_homepage":"","_description":"algorithms: Minimal examples of data structures and algorithms in Python","_organization":"keon","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-12T00:00:00.000Z","_created_at":"2016-11-17T00:00:00.000Z","_age_weeks":317,"_stars_per_week":69.07,"_pop_contributor_count":193,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["gojek","google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":11,"_pop_closed_issues_count":2,"_pop_created_since_days":74,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":11.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":74,"_pop_score":41.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/keon/algorithms/master/README.md","_readme_localurl":"keon~algorithms~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/keon/algorithms/master/setup.py"],"_requirements_localurls":["keon~algorithms~setup.py"]},{"index":86,"category":"viz","githuburl":"https://github.com/streamlit/streamlit","featured":null,"links":null,"description":null,"_repopath":"streamlit/streamlit","_reponame":"streamlit","_stars":21862,"_forks":1957,"_watches":284,"_topics":["python","machine-learning","data-science","deep-learning","data-visualization","streamlit","data-analysis","developer-tools"],"_language":"Python","_homepage":"https://streamlit.io","_description":"Streamlit \u2014 The fastest way to build data apps in Python","_organization":"streamlit","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-08-24T00:00:00.000Z","_age_weeks":173,"_stars_per_week":126.16,"_pop_contributor_count":160,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["independent","streamlit"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.52,"_pop_updated_issues_count":1080,"_pop_closed_issues_count":630,"_pop_created_since_days":40,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":347,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":1080.0,"_pop_comment_count":1206.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":1546,"_pop_score":64.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/streamlit/streamlit/master/README.md","_readme_localurl":"streamlit~streamlit~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":183,"category":"ml","githuburl":"https://github.com/google/jax","featured":null,"links":null,"description":null,"_repopath":"google/jax","_reponame":"jax","_stars":21230,"_forks":1987,"_watches":288,"_topics":["jax"],"_language":"Python","_homepage":"http://jax.readthedocs.io/","_description":"jax: Composable transformations of Python+NumPy programs: differentiate, vectorize, JIT to GPU/TPU, and more","_organization":"google","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-10-25T00:00:00.000Z","_age_weeks":216,"_stars_per_week":98.03,"_pop_contributor_count":484,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":50.02,"_pop_updated_issues_count":1255,"_pop_closed_issues_count":952,"_pop_created_since_days":50,"_pop_updated_since_days":0,"_pop_recent_releases_count":39,"_pop_recent_releases_estimated_tags":38,"_pop_recent_releases_adjusted_count":39,"_pop_issue_count":1254.0,"_pop_comment_count":1433.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":6513,"_pop_score":71.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/jax/master/README.md","_readme_localurl":"google~jax~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/jax/master/setup.py"],"_requirements_localurls":["google~jax~setup.py"]},{"index":252,"category":"ml-dl","githuburl":"https://github.com/pytorchlightning/pytorch-lightning","featured":1.0,"links":null,"description":null,"_repopath":"pytorchlightning/pytorch-lightning","_reponame":"lightning","_stars":20989,"_forks":2683,"_watches":227,"_topics":["python","deep-learning","artificial-intelligence","ai","pytorch","data-science","machine-learning"],"_language":"Python","_homepage":"https://lightning.ai","_description":"lightning: Build and train PyTorch models and connect them to the ML lifecycle using Lightning App templates, without handling DIY infrastructure, cost management, scaling, and other headaches.","_organization":"pytorchlightning","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-03-31T00:00:00.000Z","_age_weeks":194,"_stars_per_week":108.11,"_pop_contributor_count":811,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["current:opentowork|previouslylightning-ai,episource","grid.ai|pytorchlightning","lightning-ai","lightningai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":39.56,"_pop_updated_issues_count":1617,"_pop_closed_issues_count":1237,"_pop_created_since_days":45,"_pop_updated_since_days":0,"_pop_recent_releases_count":41,"_pop_recent_releases_estimated_tags":46,"_pop_recent_releases_adjusted_count":41,"_pop_issue_count":1616.0,"_pop_comment_count":2285.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":550,"_pop_score":73.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorchlightning/pytorch-lightning/master/README.md","_readme_localurl":"pytorchlightning~pytorch-lightning~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorchlightning/pytorch-lightning/master/requirements.txt","https://raw.githubusercontent.com/pytorchlightning/pytorch-lightning/master/setup.py","https://raw.githubusercontent.com/pytorchlightning/pytorch-lightning/master/pyproject.toml"],"_requirements_localurls":["pytorchlightning~pytorch-lightning~requirements.txt","pytorchlightning~pytorch-lightning~setup.py","pytorchlightning~pytorch-lightning~pyproject.toml"]},{"index":90,"category":"web","githuburl":"https://github.com/tornadoweb/tornado","featured":1.0,"links":null,"description":null,"_repopath":"tornadoweb/tornado","_reponame":"tornado","_stars":20902,"_forks":5485,"_watches":1006,"_topics":["python","asynchronous"],"_language":"Python","_homepage":"http://www.tornadoweb.org/","_description":"Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.","_organization":"tornadoweb","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2009-09-09T00:00:00.000Z","_age_weeks":692,"_stars_per_week":30.17,"_pop_contributor_count":432,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["healthbyro","mongodb"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.42,"_pop_updated_issues_count":39,"_pop_closed_issues_count":24,"_pop_created_since_days":162,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":39.0,"_pop_comment_count":62.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":879,"_pop_score":59.61,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/tornadoweb/tornado/master/README.rst","_readme_localurl":"tornadoweb~tornado~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tornadoweb/tornado/master/setup.py","https://raw.githubusercontent.com/tornadoweb/tornado/master/pyproject.toml"],"_requirements_localurls":["tornadoweb~tornado~setup.py","tornadoweb~tornado~pyproject.toml"]},{"index":8,"category":"perf","githuburl":"https://github.com/celery/celery","featured":null,"links":null,"description":null,"_repopath":"celery/celery","_reponame":"celery","_stars":20658,"_forks":4395,"_watches":476,"_topics":["python","task-manager","task-scheduler","task-runner","queue-workers","queued-jobs","queue-tasks","amqp","redis","sqs","sqs-queue","python3","python-library","redis-queue"],"_language":"Python","_homepage":"https://docs.celeryq.dev","_description":"celery: Distributed Task Queue (development branch)","_organization":"celery","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2009-04-24T00:00:00.000Z","_age_weeks":712,"_stars_per_week":29.0,"_pop_contributor_count":1255,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["celerypsfapache","robinhoodmarkets"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.23,"_pop_updated_issues_count":297,"_pop_closed_issues_count":166,"_pop_created_since_days":166,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":297.0,"_pop_comment_count":543.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":6865,"_pop_score":71.58,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/celery/celery/master/README.rst","_readme_localurl":"celery~celery~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/celery/celery/master/setup.py","https://raw.githubusercontent.com/celery/celery/master/pyproject.toml"],"_requirements_localurls":["celery~celery~setup.py","celery~celery~pyproject.toml"]},{"index":45,"category":"testing","githuburl":"https://github.com/locustio/locust","featured":1.0,"links":null,"description":null,"_repopath":"locustio/locust","_reponame":"locust","_stars":20331,"_forks":2602,"_watches":431,"_topics":["locust","python","load-testing","performance-testing","http","benchmarking","load-generator"],"_language":"Python","_homepage":"","_description":"locust: Scalable load testing tool written in Python","_organization":"locustio","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2011-02-17T00:00:00.000Z","_age_weeks":617,"_stars_per_week":32.92,"_pop_contributor_count":271,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["5m","heylab","redshirtconsultingab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.37,"_pop_updated_issues_count":96,"_pop_closed_issues_count":83,"_pop_created_since_days":144,"_pop_updated_since_days":0,"_pop_recent_releases_count":26,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":26,"_pop_issue_count":96.0,"_pop_comment_count":201.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":596,"_pop_score":66.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/locustio/locust/master/README.md","_readme_localurl":"locustio~locust~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/locustio/locust/master/setup.py","https://raw.githubusercontent.com/locustio/locust/master/pyproject.toml"],"_requirements_localurls":["locustio~locust~setup.py","locustio~locust~pyproject.toml"]},{"index":75,"category":"nlp","githuburl":"https://github.com/pytorch/fairseq","featured":null,"links":null,"description":null,"_repopath":"pytorch/fairseq","_reponame":"fairseq","_stars":20311,"_forks":5092,"_watches":355,"_topics":["python","pytorch","artificial-intelligence"],"_language":"Python","_homepage":null,"_description":"fairseq: Facebook AI Research Sequence-to-Sequence Toolkit written in Python.","_organization":"pytorch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2017-08-29T00:00:00.000Z","_age_weeks":276,"_stars_per_week":73.36,"_pop_contributor_count":412,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","facebookairesearch","facebookresearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.77,"_pop_updated_issues_count":277,"_pop_closed_issues_count":114,"_pop_created_since_days":65,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":277.0,"_pop_comment_count":248.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":81045,"_pop_score":69.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/fairseq/master/README.md","_readme_localurl":"pytorch~fairseq~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/fairseq/master/setup.py","https://raw.githubusercontent.com/pytorch/fairseq/master/pyproject.toml"],"_requirements_localurls":["pytorch~fairseq~setup.py","pytorch~fairseq~pyproject.toml"]},{"index":2,"category":"ml-dl","githuburl":"https://github.com/apache/incubator-mxnet","featured":null,"links":null,"description":null,"_repopath":"apache/incubator-mxnet","_reponame":"mxnet","_stars":20194,"_forks":6876,"_watches":1088,"_topics":["mxnet"],"_language":"C++","_homepage":"https://mxnet.apache.org","_description":"mxnet: Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler; for Python, R, Julia, Scala, Go, Javascript and more","_organization":"apache","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-26T00:00:00.000Z","_created_at":"2015-04-30T00:00:00.000Z","_age_weeks":398,"_stars_per_week":50.67,"_pop_contributor_count":980,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon","cmu,octoml","facebook","mit","universityofwashington"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.65,"_pop_updated_issues_count":95,"_pop_closed_issues_count":14,"_pop_created_since_days":93,"_pop_updated_since_days":3,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":95.0,"_pop_comment_count":53.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":1919,"_pop_score":61.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apache/incubator-mxnet/master/README.md","_readme_localurl":"apache~incubator-mxnet~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":255,"category":"crypto","githuburl":"https://github.com/freqtrade/freqtrade","featured":null,"links":null,"description":null,"_repopath":"freqtrade/freqtrade","_reponame":"freqtrade","_stars":20137,"_forks":4263,"_watches":595,"_topics":["python","cryptocurrencies","trading-bot","telegram-bot","bitcoin","trade","cryptocurrency","algorithmic-trading","freqtrade"],"_language":"Python","_homepage":"https://www.freqtrade.io","_description":"freqtrade: Free, open source crypto trading bot","_organization":"freqtrade","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2017-05-17T00:00:00.000Z","_age_weeks":291,"_stars_per_week":69.03,"_pop_contributor_count":284,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["freqtradecoredev;frizzleapps/whatsitwhatsit"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":69.62,"_pop_updated_issues_count":530,"_pop_closed_issues_count":502,"_pop_created_since_days":68,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":530.0,"_pop_comment_count":1379.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":1085,"_pop_score":68.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/freqtrade/freqtrade/master/README.md","_readme_localurl":"freqtrade~freqtrade~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/freqtrade/freqtrade/master/requirements.txt","https://raw.githubusercontent.com/freqtrade/freqtrade/master/setup.py","https://raw.githubusercontent.com/freqtrade/freqtrade/master/pyproject.toml"],"_requirements_localurls":["freqtrade~freqtrade~requirements.txt","freqtrade~freqtrade~setup.py","freqtrade~freqtrade~pyproject.toml"]},{"index":607,"category":"util","githuburl":"https://github.com/norvig/pytudes","featured":null,"links":null,"description":null,"_repopath":"norvig/pytudes","_reponame":"pytudes","_stars":19802,"_forks":2265,"_watches":730,"_topics":["python","python-3","programming","practice","demonstrate-skills"],"_language":"Jupyter Notebook","_homepage":"","_description":"pytudes: Python programs, usually short, of considerable difficulty, to perfect particular skills.","_organization":"norvig","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2017-03-01T00:00:00.000Z","_age_weeks":302,"_stars_per_week":65.41,"_pop_contributor_count":44,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.38,"_pop_updated_issues_count":5,"_pop_closed_issues_count":4,"_pop_created_since_days":71,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":5.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":17,"_pop_score":34.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/norvig/pytudes/master/README.md","_readme_localurl":"norvig~pytudes~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/norvig/pytudes/master/requirements.txt"],"_requirements_localurls":["norvig~pytudes~requirements.txt"]},{"index":273,"category":"ml","githuburl":"https://github.com/google/mediapipe","featured":null,"links":null,"description":null,"_repopath":"google/mediapipe","_reponame":"mediapipe","_stars":19756,"_forks":4148,"_watches":494,"_topics":["mediapipe","c-plus-plus","computer-vision","deep-learning","android","video-processing","audio-processing","mobile-development","machine-learning","inference","graph-framework","graph-based","calculator","framework","pipeline-framework","stream-processing","perception"],"_language":"C++","_homepage":"https://mediapipe.dev","_description":"mediapipe: Cross-platform, customizable ML solutions for live and streaming media.","_organization":"google","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-06-13T00:00:00.000Z","_age_weeks":183,"_stars_per_week":107.62,"_pop_contributor_count":21,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.92,"_pop_updated_issues_count":556,"_pop_closed_issues_count":322,"_pop_created_since_days":43,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":556.0,"_pop_comment_count":1433.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":111,"_pop_score":50.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/mediapipe/master/README.md","_readme_localurl":"google~mediapipe~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/mediapipe/master/requirements.txt","https://raw.githubusercontent.com/google/mediapipe/master/setup.py"],"_requirements_localurls":["google~mediapipe~requirements.txt","google~mediapipe~setup.py"]},{"index":409,"category":"perf","githuburl":"https://github.com/google/flatbuffers","featured":null,"links":null,"description":null,"_repopath":"google/flatbuffers","_reponame":"flatbuffers","_stars":19528,"_forks":2976,"_watches":649,"_topics":["flatbuffers","serialization","serialization-library","json-parser","marshalling","rpc","zero-copy","mmap","cross-platform","c-plus-plus","java","c-sharp","go","python","rust","javascript","typescript","grpc","c","protobuf"],"_language":"C++","_homepage":"http://google.github.io/flatbuffers/","_description":"FlatBuffers: Memory Efficient Serialization Library","_organization":"google","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2014-05-19T00:00:00.000Z","_age_weeks":448,"_stars_per_week":43.59,"_pop_contributor_count":613,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cto","google","voxraygames"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.4,"_pop_updated_issues_count":227,"_pop_closed_issues_count":156,"_pop_created_since_days":104,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":227.0,"_pop_comment_count":576.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":3175,"_pop_score":70.7,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/google/flatbuffers/master/readme.md","_readme_localurl":"google~flatbuffers~readme.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":350,"category":"ml-dl","githuburl":"https://github.com/paddlepaddle/paddle","featured":null,"links":null,"description":null,"_repopath":"paddlepaddle/paddle","_reponame":"Paddle","_stars":19328,"_forks":4834,"_watches":734,"_topics":["paddlepaddle","deep-learning","scalability","machine-learning","neural-network","python","efficiency","distributed-training"],"_language":"C++","_homepage":"http://www.paddlepaddle.org/","_description":"Paddle: PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice \uff08\u300e\u98de\u6868\u300f\u6838\u5fc3\u6846\u67b6\uff0c\u6df1\u5ea6\u5b66\u4e60&\u673a\u5668\u5b66\u4e60\u9ad8\u6027\u80fd\u5355\u673a\u3001\u5206\u5e03\u5f0f\u8bad\u7ec3\u548c\u8de8\u5e73\u53f0\u90e8\u7f72\uff09","_organization":"paddlepaddle","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2016-08-15T00:00:00.000Z","_age_weeks":331,"_stars_per_week":58.39,"_pop_contributor_count":895,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["baidubdg/idl/dltp","paddlepaddle","tencent"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":110.33,"_pop_updated_issues_count":4106,"_pop_closed_issues_count":3158,"_pop_created_since_days":77,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":4104.0,"_pop_comment_count":6254.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":19940,"_pop_score":80.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/paddlepaddle/paddle/master/README.md","_readme_localurl":"paddlepaddle~paddle~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":232,"category":"template","githuburl":"https://github.com/cookiecutter/cookiecutter","featured":null,"links":null,"description":null,"_repopath":"cookiecutter/cookiecutter","_reponame":"cookiecutter","_stars":18574,"_forks":1762,"_watches":236,"_topics":["python","cookiecutter"],"_language":"Python","_homepage":"https://pypi.org/project/cookiecutter/","_description":"cookiecutter: A cross-platform command-line utility that creates projects from cookiecutters (project templates), e.g. Python package projects, C projects.","_organization":"cookiecutter","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-09T00:00:00.000Z","_created_at":"2013-07-14T00:00:00.000Z","_age_weeks":492,"_stars_per_week":37.74,"_pop_contributor_count":285,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["margaritahumanitarian","mozilla","octoenergy"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.08,"_pop_updated_issues_count":50,"_pop_closed_issues_count":10,"_pop_created_since_days":115,"_pop_updated_since_days":3,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":50.0,"_pop_comment_count":43.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":611,"_pop_score":53.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cookiecutter/cookiecutter/master/README.md","_readme_localurl":"cookiecutter~cookiecutter~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cookiecutter/cookiecutter/master/setup.py","https://raw.githubusercontent.com/cookiecutter/cookiecutter/master/pyproject.toml"],"_requirements_localurls":["cookiecutter~cookiecutter~setup.py","cookiecutter~cookiecutter~pyproject.toml"]},{"index":789,"category":"study","githuburl":"https://github.com/wesm/pydata-book","featured":null,"links":null,"description":null,"_repopath":"wesm/pydata-book","_reponame":"pydata-book","_stars":18518,"_forks":13789,"_watches":1456,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"pydata-book: Materials and IPython notebooks for \"Python for Data Analysis\" by Wes McKinney, published by O'Reilly Media","_organization":"wesm","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-03T00:00:00.000Z","_created_at":"2012-06-30T00:00:00.000Z","_age_weeks":546,"_stars_per_week":33.9,"_pop_contributor_count":9,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["googlecloud","vndly","voltrondata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":7,"_pop_closed_issues_count":4,"_pop_created_since_days":127,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":7.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":5,"_pop_score":30.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/wesm/pydata-book/master/README.md","_readme_localurl":"wesm~pydata-book~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/wesm/pydata-book/master/requirements.txt"],"_requirements_localurls":["wesm~pydata-book~requirements.txt"]},{"index":186,"category":"ml","githuburl":"https://github.com/harisiqbal88/plotneuralnet","featured":null,"links":null,"description":null,"_repopath":"harisiqbal88/plotneuralnet","_reponame":"PlotNeuralNet","_stars":18466,"_forks":2542,"_watches":219,"_topics":["latex","deep-neural-networks"],"_language":"TeX","_homepage":null,"_description":"PlotNeuralNet: Latex code for making neural networks diagrams","_organization":"harisiqbal88","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-11-06T00:00:00.000Z","_created_at":"2018-07-24T00:00:00.000Z","_age_weeks":229,"_stars_per_week":80.34,"_pop_contributor_count":13,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cesarbr","universityofoxford"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":54,"_pop_updated_since_days":26,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":35,"_pop_score":25.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/harisiqbal88/plotneuralnet/master/README.md","_readme_localurl":"harisiqbal88~plotneuralnet~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":187,"category":"ml-interpretability","githuburl":"https://github.com/slundberg/shap","featured":null,"links":null,"description":null,"_repopath":"slundberg/shap","_reponame":"shap","_stars":18176,"_forks":2729,"_watches":259,"_topics":["interpretability","machine-learning","deep-learning","gradient-boosting","shap","shapley","explainability"],"_language":"Jupyter Notebook","_homepage":"","_description":"shap: A game theoretic approach to explain the output of any machine learning model.","_organization":"slundberg","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-06-16T00:00:00.000Z","_created_at":"2016-11-22T00:00:00.000Z","_age_weeks":316,"_stars_per_week":57.36,"_pop_contributor_count":205,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoft","microsoftresearch","mila-iqia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.31,"_pop_updated_issues_count":187,"_pop_closed_issues_count":27,"_pop_created_since_days":74,"_pop_updated_since_days":6,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":187.0,"_pop_comment_count":160.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":439,"_pop_score":50.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/slundberg/shap/master/README.md","_readme_localurl":"slundberg~shap~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/slundberg/shap/master/requirements.txt","https://raw.githubusercontent.com/slundberg/shap/master/setup.py","https://raw.githubusercontent.com/slundberg/shap/master/pyproject.toml"],"_requirements_localurls":["slundberg~shap~requirements.txt","slundberg~shap~setup.py","slundberg~shap~pyproject.toml"]},{"index":61,"category":"viz","githuburl":"https://github.com/plotly/dash","featured":null,"links":null,"description":null,"_repopath":"plotly/dash","_reponame":"dash","_stars":17833,"_forks":1815,"_watches":409,"_topics":["dash","plotly","data-visualization","data-science","gui-framework","flask","react","python","finance","bioinformatics","technical-computing","charting","plotly-dash","web-app","productivity","modeling","r","rstats","jupyter","julia"],"_language":"Python","_homepage":"https://plotly.com/dash","_description":"dash: Analytical Web Apps for Python, R, Julia, and Jupyter. No JavaScript Required.","_organization":"plotly","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2015-04-10T00:00:00.000Z","_age_weeks":401,"_stars_per_week":44.42,"_pop_contributor_count":132,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["plotly"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.54,"_pop_updated_issues_count":177,"_pop_closed_issues_count":85,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":177.0,"_pop_comment_count":210.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":5155,"_pop_score":62.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/plotly/dash/master/README.md","_readme_localurl":"plotly~dash~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/plotly/dash/master/setup.py"],"_requirements_localurls":["plotly~dash~setup.py"]},{"index":763,"category":"ml-dl","githuburl":"https://github.com/xinntao/real-esrgan","featured":null,"links":null,"description":null,"_repopath":"xinntao/real-esrgan","_reponame":"Real-ESRGAN","_stars":17026,"_forks":1811,"_watches":181,"_topics":["esrgan","pytorch","real-esrgan","super-resolution","image-restoration","denoise","jpeg-compression","amine"],"_language":"Python","_homepage":"","_description":"Real-ESRGAN aims at developing Practical Algorithms for General Image/Video Restoration.","_organization":"xinntao","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-20T00:00:00.000Z","_created_at":"2021-07-19T00:00:00.000Z","_age_weeks":74,"_stars_per_week":230.08,"_pop_contributor_count":11,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","tencent","vk|hse"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.69,"_pop_updated_issues_count":87,"_pop_closed_issues_count":7,"_pop_created_since_days":17,"_pop_updated_since_days":3,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":87.0,"_pop_comment_count":78.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":67,"_pop_score":35.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/xinntao/real-esrgan/master/README.md","_readme_localurl":"xinntao~real-esrgan~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/xinntao/real-esrgan/master/requirements.txt","https://raw.githubusercontent.com/xinntao/real-esrgan/master/setup.py"],"_requirements_localurls":["xinntao~real-esrgan~requirements.txt","xinntao~real-esrgan~setup.py"]},{"index":6,"category":"viz","githuburl":"https://github.com/bokeh/bokeh","featured":null,"links":null,"description":null,"_repopath":"bokeh/bokeh","_reponame":"bokeh","_stars":17007,"_forks":4012,"_watches":451,"_topics":["bokeh","python","interactive-plots","javascript","visualization","plotting","plots","data-visualisation","notebooks","jupyter","visualisation","numfocus"],"_language":"Python","_homepage":"https://bokeh.org","_description":"bokeh: Interactive Data Visualization in the browser, from Python","_organization":"bokeh","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2012-03-26T00:00:00.000Z","_age_weeks":560,"_stars_per_week":30.37,"_pop_contributor_count":624,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.15,"_pop_updated_issues_count":405,"_pop_closed_issues_count":275,"_pop_created_since_days":131,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":405.0,"_pop_comment_count":824.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":1783,"_pop_score":67.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bokeh/bokeh/master/README.md","_readme_localurl":"bokeh~bokeh~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/bokeh/bokeh/master/setup.py","https://raw.githubusercontent.com/bokeh/bokeh/master/pyproject.toml"],"_requirements_localurls":["bokeh~bokeh~setup.py","bokeh~bokeh~pyproject.toml"]},{"index":107,"category":"sim","githuburl":"https://github.com/atsushisakai/pythonrobotics","featured":null,"links":null,"description":null,"_repopath":"atsushisakai/pythonrobotics","_reponame":"PythonRobotics","_stars":16987,"_forks":5385,"_watches":503,"_topics":["python","robotics","algorithm","path-planning","control","animation","localization","slam","cvxpy","ekf","autonomous-vehicles","autonomous-driving","mapping","autonomous-navigation","robot","hacktoberfest"],"_language":"Python","_homepage":"https://atsushisakai.github.io/PythonRobotics/","_description":"PythonRobotics: Python sample codes for robotics algorithms.","_organization":"atsushisakai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2016-03-21T00:00:00.000Z","_age_weeks":352,"_stars_per_week":48.26,"_pop_contributor_count":102,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["idealworks","tiiuae"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.15,"_pop_updated_issues_count":45,"_pop_closed_issues_count":35,"_pop_created_since_days":82,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":45.0,"_pop_comment_count":24.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":950,"_pop_score":50.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/atsushisakai/pythonrobotics/master/README.md","_readme_localurl":"atsushisakai~pythonrobotics~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":349,"category":"ml","githuburl":"https://github.com/jina-ai/jina","featured":null,"links":null,"description":null,"_repopath":"jina-ai/jina","_reponame":"jina","_stars":16915,"_forks":2000,"_watches":183,"_topics":["neural-search","cloud-native","deep-learning","machine-learning","framework","vector-search-engine","grpc","kubernetes","microservices","semantic-search","multimodal","crossmodal","creative-ai","aiops","mlops","pipeline","workflow","airflow","fastapi","generative-ai"],"_language":"Python","_homepage":"https://docs.jina.ai","_description":"jina: \ud83d\udd2e Build multimodal AI services via cloud native technologies \u00b7 Neural Search \u00b7 Generative AI \u00b7 Cloud Native","_organization":"jina-ai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2020-02-13T00:00:00.000Z","_age_weeks":148,"_stars_per_week":113.85,"_pop_contributor_count":161,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["jina-ai","jinaai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":23.48,"_pop_updated_issues_count":403,"_pop_closed_issues_count":374,"_pop_created_since_days":35,"_pop_updated_since_days":0,"_pop_recent_releases_count":109,"_pop_recent_releases_estimated_tags":127,"_pop_recent_releases_adjusted_count":109,"_pop_issue_count":403.0,"_pop_comment_count":797.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":1437,"_pop_score":65.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jina-ai/jina/master/README.md","_readme_localurl":"jina-ai~jina~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jina-ai/jina/master/requirements.txt","https://raw.githubusercontent.com/jina-ai/jina/master/setup.py","https://raw.githubusercontent.com/jina-ai/jina/master/pyproject.toml"],"_requirements_localurls":["jina-ai~jina~requirements.txt","jina-ai~jina~setup.py","jina-ai~jina~pyproject.toml"]},{"index":30,"category":"web","githuburl":"https://github.com/huge-success/sanic","featured":null,"links":null,"description":null,"_repopath":"huge-success/sanic","_reponame":"sanic","_stars":16695,"_forks":1484,"_watches":414,"_topics":["python","framework","asyncio","api-server","web","web-server","web-framework","asgi","sanic"],"_language":"Python","_homepage":"https://sanic.dev","_description":"sanic: Next generation Python web server/framework | Build fast. Run fast.","_organization":"huge-success","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2016-05-26T00:00:00.000Z","_age_weeks":342,"_stars_per_week":48.73,"_pop_contributor_count":325,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["airbnb","packetfabric","pytorch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.42,"_pop_updated_issues_count":121,"_pop_closed_issues_count":91,"_pop_created_since_days":80,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":121.0,"_pop_comment_count":310.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":62,"_pop_score":59.8,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/huge-success/sanic/master/README.rst","_readme_localurl":"huge-success~sanic~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huge-success/sanic/master/setup.py","https://raw.githubusercontent.com/huge-success/sanic/master/pyproject.toml"],"_requirements_localurls":["huge-success~sanic~setup.py","huge-success~sanic~pyproject.toml"]},{"index":228,"category":"term","githuburl":"https://github.com/willmcgugan/textual","featured":null,"links":null,"description":null,"_repopath":"willmcgugan/textual","_reponame":"textual","_stars":16593,"_forks":476,"_watches":151,"_topics":["terminal","python","tui","rich","cli","framework"],"_language":"Python","_homepage":"https://textual.textualize.io/","_description":"Textual is a TUI (Text User Interface) framework for Python inspired by modern web development.","_organization":"willmcgugan","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2021-04-08T00:00:00.000Z","_age_weeks":88,"_stars_per_week":187.34,"_pop_contributor_count":61,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["davep.org","lastmileict","textualize"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":50.9,"_pop_updated_issues_count":650,"_pop_closed_issues_count":542,"_pop_created_since_days":21,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":650.0,"_pop_comment_count":957.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":26,"_pop_score":55.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/willmcgugan/textual/master/README.md","_readme_localurl":"willmcgugan~textual~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/willmcgugan/textual/master/pyproject.toml"],"_requirements_localurls":["willmcgugan~textual~pyproject.toml"]},{"index":48,"category":"viz","githuburl":"https://github.com/matplotlib/matplotlib","featured":null,"links":null,"description":null,"_repopath":"matplotlib/matplotlib","_reponame":"matplotlib","_stars":16560,"_forks":6641,"_watches":587,"_topics":["matplotlib","data-visualization","data-science","python","qt","wx","gtk","plotting","tk","hacktoberfest"],"_language":"Python","_homepage":"https://matplotlib.org/stable/","_description":"matplotlib: plotting with Python","_organization":"matplotlib","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2011-02-19T00:00:00.000Z","_age_weeks":617,"_stars_per_week":26.83,"_pop_contributor_count":1447,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["brookhavennationallab","microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":35.75,"_pop_updated_issues_count":2020,"_pop_closed_issues_count":1442,"_pop_created_since_days":144,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":2020.0,"_pop_comment_count":2716.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":7290,"_pop_score":76.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/matplotlib/matplotlib/master/README.md","_readme_localurl":"matplotlib~matplotlib~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/matplotlib/matplotlib/master/setup.py","https://raw.githubusercontent.com/matplotlib/matplotlib/master/pyproject.toml"],"_requirements_localurls":["matplotlib~matplotlib~setup.py","matplotlib~matplotlib~pyproject.toml"]},{"index":31,"category":"data","githuburl":"https://github.com/jaidedai/easyocr","featured":null,"links":null,"description":null,"_repopath":"jaidedai/easyocr","_reponame":"EasyOCR","_stars":16541,"_forks":2390,"_watches":284,"_topics":["ocr","deep-learning","crnn","pytorch","lstm","machine-learning","scene-text","scene-text-recognition","optical-character-recognition","cnn","data-mining","image-processing","python","easyocr","information-retrieval"],"_language":"Python","_homepage":"https://www.jaided.ai","_description":"EasyOCR: Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc.","_organization":"jaidedai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-18T00:00:00.000Z","_created_at":"2020-03-14T00:00:00.000Z","_age_weeks":144,"_stars_per_week":114.64,"_pop_contributor_count":110,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["enveritas","jaidedai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.0,"_pop_updated_issues_count":86,"_pop_closed_issues_count":31,"_pop_created_since_days":34,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":86.0,"_pop_comment_count":125.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":122,"_pop_score":49.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jaidedai/easyocr/master/README.md","_readme_localurl":"jaidedai~easyocr~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jaidedai/easyocr/master/requirements.txt","https://raw.githubusercontent.com/jaidedai/easyocr/master/setup.py"],"_requirements_localurls":["jaidedai~easyocr~requirements.txt","jaidedai~easyocr~setup.py"]},{"index":373,"category":"ml-dl","githuburl":"https://github.com/pyg-team/pytorch_geometric","featured":null,"links":null,"description":null,"_repopath":"pyg-team/pytorch_geometric","_reponame":"pytorch_geometric","_stars":16385,"_forks":2991,"_watches":246,"_topics":["pytorch","geometric-deep-learning","graph-neural-networks","deep-learning","graph-convolutional-networks"],"_language":"Python","_homepage":"https://pytorch-geometric.readthedocs.io/","_description":"pytorch_geometric: Graph Neural Network Library for PyTorch","_organization":"pyg-team","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2017-10-06T00:00:00.000Z","_age_weeks":271,"_stars_per_week":60.37,"_pop_contributor_count":351,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["max-planckinstituteforinformatics,kumo.ai","uilab-githubsparcs-kaist"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":16.75,"_pop_updated_issues_count":996,"_pop_closed_issues_count":819,"_pop_created_since_days":63,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":995.0,"_pop_comment_count":1179.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":47,"_pop_score":59.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyg-team/pytorch_geometric/master/README.md","_readme_localurl":"pyg-team~pytorch_geometric~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyg-team/pytorch_geometric/master/setup.py"],"_requirements_localurls":["pyg-team~pytorch_geometric~setup.py"]},{"index":102,"category":"ml-ops","githuburl":"https://github.com/spotify/luigi","featured":null,"links":null,"description":null,"_repopath":"spotify/luigi","_reponame":"luigi","_stars":16191,"_forks":2352,"_watches":486,"_topics":["python","luigi","orchestration-framework","scheduling","hadoop"],"_language":"Python","_homepage":null,"_description":"Luigi is a Python module that helps you build complex pipelines of batch jobs. It handles dependency resolution, workflow management, visualization etc. It also comes with Hadoop support built in. ","_organization":"spotify","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2012-09-20T00:00:00.000Z","_age_weeks":534,"_stars_per_week":30.29,"_pop_contributor_count":596,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","houzz","modallabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.81,"_pop_updated_issues_count":21,"_pop_closed_issues_count":10,"_pop_created_since_days":125,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":21.0,"_pop_comment_count":32.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":387,"_pop_score":55.86,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/spotify/luigi/master/README.rst","_readme_localurl":"spotify~luigi~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/spotify/luigi/master/setup.py"],"_requirements_localurls":["spotify~luigi~setup.py"]},{"index":426,"category":"study","githuburl":"https://github.com/fchollet/deep-learning-with-python-notebooks","featured":null,"links":null,"description":null,"_repopath":"fchollet/deep-learning-with-python-notebooks","_reponame":"deep-learning-with-python-notebooks","_stars":16168,"_forks":7914,"_watches":647,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"deep-learning-with-python-notebooks: Jupyter notebooks for the code samples of the book \"Deep Learning with Python\"","_organization":"fchollet","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-02-10T00:00:00.000Z","_created_at":"2017-09-05T00:00:00.000Z","_age_weeks":275,"_stars_per_week":58.61,"_pop_contributor_count":6,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":64,"_pop_updated_since_days":10,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":2,"_pop_score":16.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fchollet/deep-learning-with-python-notebooks/master/README.md","_readme_localurl":"fchollet~deep-learning-with-python-notebooks~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":144,"category":"nlp","githuburl":"https://github.com/openai/gpt-2","featured":null,"links":null,"description":null,"_repopath":"openai/gpt-2","_reponame":"gpt-2","_stars":15919,"_forks":4021,"_watches":584,"_topics":["paper"],"_language":"Python","_homepage":"https://openai.com/blog/better-language-models/","_description":"gpt-2: Code for the paper \"Language Models are Unsupervised Multitask Learners\"","_organization":"openai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-12-02T00:00:00.000Z","_created_at":"2019-02-11T00:00:00.000Z","_age_weeks":201,"_stars_per_week":79.2,"_pop_contributor_count":16,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["openai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":47,"_pop_updated_since_days":25,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":5.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":365,"_pop_score":27.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/gpt-2/master/README.md","_readme_localurl":"openai~gpt-2~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/gpt-2/master/requirements.txt"],"_requirements_localurls":["openai~gpt-2~requirements.txt"]},{"index":109,"category":"data","githuburl":"https://github.com/binux/pyspider","featured":null,"links":null,"description":null,"_repopath":"binux/pyspider","_reponame":"pyspider","_stars":15686,"_forks":3660,"_watches":906,"_topics":["python","crawler"],"_language":"Python","_homepage":"http://docs.pyspider.org/","_description":"pyspider: A Powerful Spider(Web Crawler) System in Python.","_organization":"binux","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-08-02T00:00:00.000Z","_created_at":"2014-02-21T00:00:00.000Z","_age_weeks":460,"_stars_per_week":34.07,"_pop_contributor_count":62,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":8,"_pop_closed_issues_count":2,"_pop_created_since_days":107,"_pop_updated_since_days":29,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":8.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":243,"_pop_score":29.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/binux/pyspider/master/README.md","_readme_localurl":"binux~pyspider~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/binux/pyspider/master/requirements.txt","https://raw.githubusercontent.com/binux/pyspider/master/setup.py"],"_requirements_localurls":["binux~pyspider~requirements.txt","binux~pyspider~setup.py"]},{"index":834,"category":"util","githuburl":"https://github.com/micropython/micropython","featured":null,"links":null,"description":null,"_repopath":"micropython/micropython","_reponame":"micropython","_stars":15625,"_forks":6002,"_watches":731,"_topics":["micropython","python","embedded","microcontroller"],"_language":"C","_homepage":"https://micropython.org","_description":"MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems","_organization":"micropython","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2013-12-20T00:00:00.000Z","_age_weeks":469,"_stars_per_week":33.29,"_pop_contributor_count":536,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["micropython","openmv"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":25.54,"_pop_updated_issues_count":524,"_pop_closed_issues_count":330,"_pop_created_since_days":110,"_pop_updated_since_days":7,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":524.0,"_pop_comment_count":1537.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":17483,"_pop_score":68.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/micropython/micropython/master/README.md","_readme_localurl":"micropython~micropython~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":873,"category":"util","githuburl":"https://github.com/ipython/ipython","featured":null,"links":null,"description":null,"_repopath":"ipython/ipython","_reponame":"ipython","_stars":15614,"_forks":4403,"_watches":775,"_topics":["ipython","jupyter","data-science","notebook","python","repl","closember","hacktoberfest"],"_language":"Python","_homepage":"https://ipython.readthedocs.org","_description":"ipython: Official repository for IPython itself. Other repos in the IPython organization contain things like the website, documentation builds, etc.","_organization":"ipython","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2010-05-10T00:00:00.000Z","_age_weeks":658,"_stars_per_week":23.73,"_pop_contributor_count":925,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","google","quansight-labs","simularesearchlaboratory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.67,"_pop_updated_issues_count":183,"_pop_closed_issues_count":91,"_pop_created_since_days":154,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":183.0,"_pop_comment_count":194.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":14264,"_pop_score":73.37,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/ipython/ipython/master/README.rst","_readme_localurl":"ipython~ipython~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ipython/ipython/master/setup.py","https://raw.githubusercontent.com/ipython/ipython/master/pyproject.toml"],"_requirements_localurls":["ipython~ipython~setup.py","ipython~ipython~pyproject.toml"]},{"index":176,"category":"debug","githuburl":"https://github.com/cool-rr/pysnooper","featured":1.0,"links":null,"description":null,"_repopath":"cool-rr/pysnooper","_reponame":"PySnooper","_stars":15499,"_forks":932,"_watches":234,"_topics":["python","debug","debugger","introspection","logging"],"_language":"Python","_homepage":"","_description":"PySnooper: Never use print for debugging again","_organization":"cool-rr","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2019-04-18T00:00:00.000Z","_age_weeks":191,"_stars_per_week":80.9,"_pop_contributor_count":27,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["japan","nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":45,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":3.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":10,"_pop_score":37.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cool-rr/pysnooper/master/README.md","_readme_localurl":"cool-rr~pysnooper~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/cool-rr/pysnooper/master/requirements.txt","https://raw.githubusercontent.com/cool-rr/pysnooper/master/setup.py"],"_requirements_localurls":["cool-rr~pysnooper~requirements.txt","cool-rr~pysnooper~setup.py"]},{"index":493,"category":"ml-dl","githuburl":"https://github.com/rasbt/deeplearning-models","featured":null,"links":null,"description":null,"_repopath":"rasbt/deeplearning-models","_reponame":"deeplearning-models","_stars":15476,"_forks":3828,"_watches":598,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"deeplearning-models: A collection of various deep learning architectures, models, and tips","_organization":"rasbt","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-16T00:00:00.000Z","_created_at":"2019-06-05T00:00:00.000Z","_age_weeks":184,"_stars_per_week":83.78,"_pop_contributor_count":11,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["alibaba-inc&nanjinguniversity","irtsaint-exup\u00e9ry","lightning-ai,universityofwisconsin-madison","microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.4,"_pop_updated_issues_count":4,"_pop_closed_issues_count":3,"_pop_created_since_days":43,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":49,"_pop_score":33.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/deeplearning-models/master/README.md","_readme_localurl":"rasbt~deeplearning-models~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":41,"category":"util","githuburl":"https://github.com/kivy/kivy","featured":null,"links":null,"description":null,"_repopath":"kivy/kivy","_reponame":"kivy","_stars":15305,"_forks":2966,"_watches":619,"_topics":["python","ui","windows","ios","android","macos","linux","app","kivy"],"_language":"Python","_homepage":"https://kivy.org","_description":"kivy: Open source UI framework written in Python, running on Windows, Linux, macOS, Android and iOS","_organization":"kivy","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2010-11-03T00:00:00.000Z","_age_weeks":632,"_stars_per_week":24.19,"_pop_contributor_count":577,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cornelluniversity","freelance","imc.com","meltingrocks","zencode"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.21,"_pop_updated_issues_count":117,"_pop_closed_issues_count":65,"_pop_created_since_days":148,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":117.0,"_pop_comment_count":187.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":6614,"_pop_score":67.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kivy/kivy/master/README.md","_readme_localurl":"kivy~kivy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/kivy/kivy/master/setup.py","https://raw.githubusercontent.com/kivy/kivy/master/pyproject.toml"],"_requirements_localurls":["kivy~kivy~setup.py","kivy~kivy~pyproject.toml"]},{"index":469,"category":"util","githuburl":"https://github.com/alievk/avatarify-python","featured":null,"links":null,"description":null,"_repopath":"alievk/avatarify-python","_reponame":"avatarify-python","_stars":15297,"_forks":2357,"_watches":306,"_topics":[],"_language":"Python","_homepage":"","_description":"avatarify-python: Avatars for Zoom, Skype and other video-conferencing apps.","_organization":"alievk","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-11T00:00:00.000Z","_created_at":"2020-04-06T00:00:00.000Z","_age_weeks":141,"_stars_per_week":108.49,"_pop_contributor_count":22,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["entrepreneur","occrp,the-markup","universityofhildesheim"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":58,"_pop_closed_issues_count":15,"_pop_created_since_days":33,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":58.0,"_pop_comment_count":174.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":34.3,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alievk/avatarify-python/master/README.md","_readme_localurl":"alievk~avatarify-python~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/alievk/avatarify-python/master/requirements.txt"],"_requirements_localurls":["alievk~avatarify-python~requirements.txt"]},{"index":328,"category":"security","githuburl":"https://github.com/aquasecurity/trivy","featured":null,"links":null,"description":null,"_repopath":"aquasecurity/trivy","_reponame":"trivy","_stars":15287,"_forks":1475,"_watches":145,"_topics":["security","security-tools","docker","containers","vulnerability-scanners","vulnerability-detection","vulnerability","golang","go","kubernetes","hacktoberfest","devsecops","misconfiguration","infrastructure-as-code","iac"],"_language":"Go","_homepage":"https://trivy.dev","_description":"trivy: Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more","_organization":"aquasecurity","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-04-11T00:00:00.000Z","_age_weeks":192,"_stars_per_week":79.38,"_pop_contributor_count":268,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.67,"_pop_updated_issues_count":547,"_pop_closed_issues_count":334,"_pop_created_since_days":45,"_pop_updated_since_days":0,"_pop_recent_releases_count":35,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":35,"_pop_issue_count":547.0,"_pop_comment_count":947.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":2726,"_pop_score":62.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aquasecurity/trivy/master/README.md","_readme_localurl":"aquasecurity~trivy~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":19,"category":"time-series","githuburl":"https://github.com/facebook/prophet","featured":1.0,"links":null,"description":null,"_repopath":"facebook/prophet","_reponame":"prophet","_stars":15280,"_forks":4341,"_watches":426,"_topics":["forecasting","r","python"],"_language":"Python","_homepage":"https://facebook.github.io/prophet","_description":"prophet: Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth.","_organization":"facebook","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-21T00:00:00.000Z","_created_at":"2016-11-16T00:00:00.000Z","_age_weeks":317,"_stars_per_week":48.09,"_pop_contributor_count":158,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["canva"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.88,"_pop_updated_issues_count":88,"_pop_closed_issues_count":26,"_pop_created_since_days":74,"_pop_updated_since_days":3,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":88.0,"_pop_comment_count":95.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":1139,"_pop_score":48.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebook/prophet/master/README.md","_readme_localurl":"facebook~prophet~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":36,"category":"data","githuburl":"https://github.com/joke2k/faker","featured":null,"links":null,"description":null,"_repopath":"joke2k/faker","_reponame":"faker","_stars":15170,"_forks":1708,"_watches":220,"_topics":["python","fake","testing","dataset","fake-data","test-data","test-data-generator"],"_language":"Python","_homepage":"http://faker.rtfd.org","_description":"Faker is a Python package that generates fake data for you.","_organization":"joke2k","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2012-11-12T00:00:00.000Z","_age_weeks":527,"_stars_per_week":28.79,"_pop_contributor_count":489,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mdxs","minted","sailoboats","selfemployed"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.06,"_pop_updated_issues_count":76,"_pop_closed_issues_count":51,"_pop_created_since_days":123,"_pop_updated_since_days":1,"_pop_recent_releases_count":55,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":55,"_pop_issue_count":76.0,"_pop_comment_count":136.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":6153,"_pop_score":69.77,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/joke2k/faker/master/README.rst","_readme_localurl":"joke2k~faker~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/joke2k/faker/master/setup.py"],"_requirements_localurls":["joke2k~faker~setup.py"]},{"index":604,"category":"web","githuburl":"https://github.com/pyscript/pyscript","featured":null,"links":null,"description":null,"_repopath":"pyscript/pyscript","_reponame":"pyscript","_stars":15152,"_forks":1110,"_watches":180,"_topics":["python","html","javascript"],"_language":"Python","_homepage":"https://community.anaconda.cloud/c/tech-topics/pyscript","_description":"pyscript: Home Page: https://pyscript.net Examples: https://pyscript.net/examples","_organization":"pyscript","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2022-02-21T00:00:00.000Z","_age_weeks":43,"_stars_per_week":352.37,"_pop_contributor_count":95,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.27,"_pop_updated_issues_count":497,"_pop_closed_issues_count":367,"_pop_created_since_days":10,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":497.0,"_pop_comment_count":1009.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":34,"_pop_score":48.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyscript/pyscript/master/README.md","_readme_localurl":"pyscript~pyscript~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":137,"category":"nlp","githuburl":"https://github.com/huggingface/datasets","featured":null,"links":null,"description":null,"_repopath":"huggingface/datasets","_reponame":"datasets","_stars":14923,"_forks":1942,"_watches":260,"_topics":["nlp","datasets","metrics","evaluation","pytorch","tensorflow","pandas","numpy","natural-language-processing","computer-vision","machine-learning","deep-learning","speech","hacktoberfest"],"_language":"Python","_homepage":"https://huggingface.co/docs/datasets","_description":"datasets: \ud83e\udd17 The largest hub of ready-to-use datasets for ML models with fast, easy-to-use and efficient data manipulation tools","_organization":"huggingface","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2020-03-26T00:00:00.000Z","_age_weeks":142,"_stars_per_week":104.67,"_pop_contributor_count":474,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","huggingfaceaiinnova"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":18.37,"_pop_updated_issues_count":643,"_pop_closed_issues_count":505,"_pop_created_since_days":33,"_pop_updated_since_days":0,"_pop_recent_releases_count":23,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":23,"_pop_issue_count":643.0,"_pop_comment_count":1331.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":2106,"_pop_score":69.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/datasets/master/README.md","_readme_localurl":"huggingface~datasets~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/datasets/master/setup.py","https://raw.githubusercontent.com/huggingface/datasets/master/pyproject.toml"],"_requirements_localurls":["huggingface~datasets~setup.py","huggingface~datasets~pyproject.toml"]},{"index":74,"category":"typing","githuburl":"https://github.com/python/mypy","featured":null,"links":null,"description":null,"_repopath":"python/mypy","_reponame":"mypy","_stars":14361,"_forks":2385,"_watches":223,"_topics":["python","types","typing","typechecker","linter"],"_language":"Python","_homepage":"http://www.mypy-lang.org/","_description":"mypy: Optional static typing for Python","_organization":"python","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2012-12-07T00:00:00.000Z","_age_weeks":523,"_stars_per_week":27.44,"_pop_contributor_count":618,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["edgedb","microsoft","openai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":16.12,"_pop_updated_issues_count":944,"_pop_closed_issues_count":561,"_pop_created_since_days":122,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":944.0,"_pop_comment_count":2100.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":21972,"_pop_score":76.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python/mypy/master/README.md","_readme_localurl":"python~mypy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python/mypy/master/setup.py","https://raw.githubusercontent.com/python/mypy/master/pyproject.toml"],"_requirements_localurls":["python~mypy~setup.py","python~mypy~pyproject.toml"]},{"index":148,"category":"data","githuburl":"https://github.com/twintproject/twint","featured":null,"links":null,"description":null,"_repopath":"twintproject/twint","_reponame":"twint","_stars":14185,"_forks":2432,"_watches":310,"_topics":["osint","twitter","python","scrape","tweets","elasticsearch","kibana","scrape-followers","scrape-likes","scrape-following","twint","tweep"],"_language":"Python","_homepage":"","_description":"twint: An advanced Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API, allowing you to scrape a user's followers, following, Tweets and more while evading most API limitations.","_organization":"twintproject","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-03-02T00:00:00.000Z","_created_at":"2017-06-10T00:00:00.000Z","_age_weeks":288,"_stars_per_week":49.2,"_pop_contributor_count":65,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["maximlevin","none"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":67,"_pop_updated_since_days":22,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":313,"_pop_score":33.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/twintproject/twint/master/README.md","_readme_localurl":"twintproject~twint~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/twintproject/twint/master/requirements.txt","https://raw.githubusercontent.com/twintproject/twint/master/setup.py"],"_requirements_localurls":["twintproject~twint~requirements.txt","twintproject~twint~setup.py"]},{"index":124,"category":"ml","githuburl":"https://github.com/onnx/onnx","featured":null,"links":null,"description":null,"_repopath":"onnx/onnx","_reponame":"onnx","_stars":13818,"_forks":3231,"_watches":430,"_topics":["deep-learning","deep-neural-networks","neural-network","onnx","pytorch","mxnet","tensorflow","keras","scikit-learn","ml","machine-learning","dnn"],"_language":"Python","_homepage":"https://onnx.ai/","_description":"onnx: Open standard for machine learning interoperability","_organization":"onnx","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-09-07T00:00:00.000Z","_age_weeks":275,"_stars_per_week":50.14,"_pop_contributor_count":264,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoft","microsoftresearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.88,"_pop_updated_issues_count":267,"_pop_closed_issues_count":175,"_pop_created_since_days":64,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":267.0,"_pop_comment_count":461.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":32190,"_pop_score":66.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/onnx/onnx/master/README.md","_readme_localurl":"onnx~onnx~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/onnx/onnx/master/requirements.txt","https://raw.githubusercontent.com/onnx/onnx/master/setup.py","https://raw.githubusercontent.com/onnx/onnx/master/pyproject.toml"],"_requirements_localurls":["onnx~onnx~requirements.txt","onnx~onnx~setup.py","onnx~onnx~pyproject.toml"]},{"index":104,"category":"nlp","githuburl":"https://github.com/rare-technologies/gensim","featured":null,"links":null,"description":null,"_repopath":"rare-technologies/gensim","_reponame":"gensim","_stars":13801,"_forks":4298,"_watches":430,"_topics":["gensim","topic-modeling","information-retrieval","machine-learning","natural-language-processing","nlp","data-science","python","data-mining","word2vec","word-embeddings","neural-network","document-similarity","word-similarity","fasttext"],"_language":"Python","_homepage":"https://radimrehurek.com/gensim","_description":"gensim: Topic Modelling for Humans","_organization":"rare-technologies","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2011-02-10T00:00:00.000Z","_age_weeks":618,"_stars_per_week":22.31,"_pop_contributor_count":440,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["constructor.io,embedika","http://xavvy.com","profoundnetworks","rare-technologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.77,"_pop_updated_issues_count":51,"_pop_closed_issues_count":41,"_pop_created_since_days":144,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":51.0,"_pop_comment_count":100.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":156,"_pop_score":58.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rare-technologies/gensim/master/README.md","_readme_localurl":"rare-technologies~gensim~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rare-technologies/gensim/master/setup.py"],"_requirements_localurls":["rare-technologies~gensim~setup.py"]},{"index":332,"category":"sim","githuburl":"https://github.com/unity-technologies/ml-agents","featured":null,"links":null,"description":null,"_repopath":"unity-technologies/ml-agents","_reponame":"ml-agents","_stars":13800,"_forks":3635,"_watches":539,"_topics":["reinforcement-learning","unity3d","deep-learning","unity","deep-reinforcement-learning","neural-networks","machine-learning"],"_language":"C#","_homepage":"https://unity.com/products/machine-learning-agents","_description":"ml-agents: The Unity Machine Learning Agents Toolkit (ML-Agents) is an open-source project that enables games and simulations to serve as environments for training intelligent agents using deep reinforcement learning and imitation learning.","_organization":"unity-technologies","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-09-08T00:00:00.000Z","_age_weeks":275,"_stars_per_week":50.1,"_pop_contributor_count":147,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ziplineinternational"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.85,"_pop_updated_issues_count":198,"_pop_closed_issues_count":145,"_pop_created_since_days":64,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":198.0,"_pop_comment_count":155.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":428,"_pop_score":51.65,"_readme_filename":"","_readme_giturl":"","_readme_localurl":"","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":175,"category":"util","githuburl":"https://github.com/delgan/loguru","featured":1.0,"links":null,"description":null,"_repopath":"delgan/loguru","_reponame":"loguru","_stars":13598,"_forks":570,"_watches":119,"_topics":["python","logging","logger","log"],"_language":"Python","_homepage":"","_description":"loguru: Python logging made (stupidly) simple","_organization":"delgan","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2017-08-15T00:00:00.000Z","_age_weeks":278,"_stars_per_week":48.76,"_pop_contributor_count":41,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["freelancer,upforhire"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.17,"_pop_updated_issues_count":92,"_pop_closed_issues_count":68,"_pop_created_since_days":65,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":92.0,"_pop_comment_count":198.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":258,"_pop_score":46.46,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/delgan/loguru/master/README.rst","_readme_localurl":"delgan~loguru~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/delgan/loguru/master/setup.py"],"_requirements_localurls":["delgan~loguru~setup.py"]},{"index":674,"category":"ml-dl","githuburl":"https://github.com/borisdayma/dalle-mini","featured":null,"links":null,"description":null,"_repopath":"borisdayma/dalle-mini","_reponame":"dalle-mini","_stars":13453,"_forks":1011,"_watches":103,"_topics":[],"_language":"Python","_homepage":"https://www.craiyon.com","_description":"dalle-mini: DALL\u00b7E Mini - Generate images from a text prompt","_organization":"borisdayma","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-09T00:00:00.000Z","_created_at":"2021-07-03T00:00:00.000Z","_age_weeks":76,"_stars_per_week":176.35,"_pop_contributor_count":27,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","universityofmaryland,collegepark"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.35,"_pop_updated_issues_count":13,"_pop_closed_issues_count":4,"_pop_created_since_days":18,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":13.0,"_pop_comment_count":32.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":121,"_pop_score":42.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/borisdayma/dalle-mini/master/README.md","_readme_localurl":"borisdayma~dalle-mini~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/borisdayma/dalle-mini/master/setup.py","https://raw.githubusercontent.com/borisdayma/dalle-mini/master/pyproject.toml"],"_requirements_localurls":["borisdayma~dalle-mini~setup.py","borisdayma~dalle-mini~pyproject.toml"]},{"index":56,"category":"term","githuburl":"https://github.com/pallets/click","featured":null,"links":null,"description":null,"_repopath":"pallets/click","_reponame":"click","_stars":13290,"_forks":1299,"_watches":183,"_topics":["python","cli","click","pallets"],"_language":"Python","_homepage":"https://click.palletsprojects.com","_description":"click: Python composable command line interface toolkit","_organization":"pallets","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-01T00:00:00.000Z","_created_at":"2014-04-24T00:00:00.000Z","_age_weeks":451,"_stars_per_week":29.43,"_pop_contributor_count":333,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["getsentry","sentry"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.23,"_pop_updated_issues_count":65,"_pop_closed_issues_count":24,"_pop_created_since_days":105,"_pop_updated_since_days":2,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":65.0,"_pop_comment_count":62.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":3073,"_pop_score":57.21,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/click/master/README.rst","_readme_localurl":"pallets~click~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/click/master/setup.py"],"_requirements_localurls":["pallets~click~setup.py"]},{"index":119,"category":"ml-ops","githuburl":"https://github.com/mlflow/mlflow","featured":null,"links":null,"description":null,"_repopath":"mlflow/mlflow","_reponame":"mlflow","_stars":13208,"_forks":3082,"_watches":285,"_topics":["machine-learning","ai","ml","mlflow","apache-spark","model-management"],"_language":"Python","_homepage":"https://mlflow.org","_description":"mlflow: Open source platform for the machine learning lifecycle","_organization":"mlflow","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-06-05T00:00:00.000Z","_age_weeks":236,"_stars_per_week":55.76,"_pop_contributor_count":526,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["databricks"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":22.33,"_pop_updated_issues_count":849,"_pop_closed_issues_count":680,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":850.0,"_pop_comment_count":2007.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":955,"_pop_score":67.32,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mlflow/mlflow/master/README.rst","_readme_localurl":"mlflow~mlflow~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mlflow/mlflow/master/setup.py","https://raw.githubusercontent.com/mlflow/mlflow/master/pyproject.toml"],"_requirements_localurls":["mlflow~mlflow~setup.py","mlflow~mlflow~pyproject.toml"]},{"index":544,"category":"ml","githuburl":"https://github.com/aleju/imgaug","featured":null,"links":null,"description":null,"_repopath":"aleju/imgaug","_reponame":"imgaug","_stars":13184,"_forks":2333,"_watches":228,"_topics":["image-augmentation","machine-learning","augmentation","deep-learning","images","affine-transformation","polygon","heatmap","segmentation-maps","keypoints","bounding-boxes","augment-images","crop","contrast"],"_language":"Python","_homepage":"http://imgaug.readthedocs.io","_description":"imgaug: Image augmentation for machine learning experiments.","_organization":"aleju","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-06-01T00:00:00.000Z","_created_at":"2015-07-10T00:00:00.000Z","_age_weeks":388,"_stars_per_week":33.94,"_pop_contributor_count":36,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["kitware","maxplanckinstituteofanimalbehavior","mujin"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":91,"_pop_updated_since_days":31,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":5.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":383,"_pop_score":37.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aleju/imgaug/master/README.md","_readme_localurl":"aleju~imgaug~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aleju/imgaug/master/requirements.txt","https://raw.githubusercontent.com/aleju/imgaug/master/setup.py"],"_requirements_localurls":["aleju~imgaug~requirements.txt","aleju~imgaug~setup.py"]},{"index":408,"category":"web","githuburl":"https://github.com/aio-libs/aiohttp","featured":null,"links":null,"description":null,"_repopath":"aio-libs/aiohttp","_reponame":"aiohttp","_stars":13100,"_forks":1836,"_watches":227,"_topics":["aiohttp","asyncio","python","http","http-server","http-client","async","hacktoberfest"],"_language":"Python","_homepage":"https://docs.aiohttp.org","_description":"aiohttp: Asynchronous HTTP client/server framework for asyncio and Python","_organization":"aio-libs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2013-10-01T00:00:00.000Z","_age_weeks":480,"_stars_per_week":27.24,"_pop_contributor_count":661,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ansiblecoreredhatofficial","microsoft","neu.ro"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.35,"_pop_updated_issues_count":303,"_pop_closed_issues_count":207,"_pop_created_since_days":112,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":303.0,"_pop_comment_count":598.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":5253,"_pop_score":69.77,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/aio-libs/aiohttp/master/README.rst","_readme_localurl":"aio-libs~aiohttp~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/aio-libs/aiohttp/master/setup.py","https://raw.githubusercontent.com/aio-libs/aiohttp/master/pyproject.toml"],"_requirements_localurls":["aio-libs~aiohttp~setup.py","aio-libs~aiohttp~pyproject.toml"]},{"index":554,"category":"ml-ops","githuburl":"https://github.com/horovod/horovod","featured":null,"links":null,"description":null,"_repopath":"horovod/horovod","_reponame":"horovod","_stars":12898,"_forks":2145,"_watches":332,"_topics":["tensorflow","uber","machine-learning","machinelearning","mpi","baidu","deep-learning","deeplearning","keras","pytorch","mxnet","spark","ray"],"_language":"Python","_homepage":"http://horovod.ai","_description":"horovod: Distributed training framework for TensorFlow, Keras, PyTorch, and Apache MXNet.","_organization":"horovod","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2017-08-09T00:00:00.000Z","_age_weeks":279,"_stars_per_week":46.11,"_pop_contributor_count":163,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["carbonrobotics","nvidia","uber"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.12,"_pop_updated_issues_count":128,"_pop_closed_issues_count":75,"_pop_created_since_days":65,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":128.0,"_pop_comment_count":269.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":93,"_pop_score":56.58,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/horovod/horovod/master/README.rst","_readme_localurl":"horovod~horovod~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/horovod/horovod/master/setup.py"],"_requirements_localurls":["horovod~horovod~setup.py"]},{"index":507,"category":"ml","githuburl":"https://github.com/tensorflow/tensor2tensor","featured":null,"links":null,"description":null,"_repopath":"tensorflow/tensor2tensor","_reponame":"tensor2tensor","_stars":12835,"_forks":3147,"_watches":458,"_topics":["machine-learning","machine-translation","deep-learning","reinforcement-learning","tpu"],"_language":"Python","_homepage":"","_description":"tensor2tensor: Library of deep learning models and datasets designed to make deep learning more accessible and accelerate ML research.","_organization":"tensorflow","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-24T00:00:00.000Z","_created_at":"2017-06-15T00:00:00.000Z","_age_weeks":287,"_stars_per_week":44.63,"_pop_contributor_count":243,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","mimuw","universityofillinoisaturbana\u2013champaign"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.23,"_pop_updated_issues_count":14,"_pop_closed_issues_count":2,"_pop_created_since_days":67,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":14.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":295,"_pop_score":50.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/tensor2tensor/master/README.md","_readme_localurl":"tensorflow~tensor2tensor~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorflow/tensor2tensor/master/setup.py"],"_requirements_localurls":["tensorflow~tensor2tensor~setup.py"]},{"index":812,"category":"nlp","githuburl":"https://github.com/gunthercox/chatterbot","featured":null,"links":null,"description":null,"_repopath":"gunthercox/chatterbot","_reponame":"ChatterBot","_stars":12738,"_forks":4189,"_watches":552,"_topics":["chatterbot","machine-learning","chatbot","python","conversation","language","bot"],"_language":"Python","_homepage":"https://chatterbot.readthedocs.io","_description":"ChatterBot is a machine learning, conversational dialog engine for creating chat bots","_organization":"gunthercox","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-06-01T00:00:00.000Z","_created_at":"2014-09-28T00:00:00.000Z","_age_weeks":429,"_stars_per_week":29.68,"_pop_contributor_count":103,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","wedgwoodwebworks"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":27,"_pop_closed_issues_count":10,"_pop_created_since_days":100,"_pop_updated_since_days":19,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":27.0,"_pop_comment_count":17.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":247,"_pop_score":42.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gunthercox/chatterbot/master/README.md","_readme_localurl":"gunthercox~chatterbot~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gunthercox/chatterbot/master/requirements.txt","https://raw.githubusercontent.com/gunthercox/chatterbot/master/setup.py"],"_requirements_localurls":["gunthercox~chatterbot~requirements.txt","gunthercox~chatterbot~setup.py"]},{"index":62,"category":"viz","githuburl":"https://github.com/plotly/plotly.py","featured":null,"links":null,"description":null,"_repopath":"plotly/plotly.py","_reponame":"plotly.py","_stars":12630,"_forks":2251,"_watches":275,"_topics":["python","d3","plotly","plotlyjs","webgl","dashboard","visualization","graph-library","plotly-dash","jupyter-notebook","sparkles","regl","declarative","interactive"],"_language":"Python","_homepage":"https://plotly.com/python/","_description":"plotly.py: The interactive graphing library for Python (includes Plotly Express) :sparkles:","_organization":"plotly","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-27T00:00:00.000Z","_created_at":"2013-11-21T00:00:00.000Z","_age_weeks":473,"_stars_per_week":26.67,"_pop_contributor_count":201,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["hextechnologies","netflix","plotly"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.52,"_pop_updated_issues_count":166,"_pop_closed_issues_count":40,"_pop_created_since_days":110,"_pop_updated_since_days":2,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":166.0,"_pop_comment_count":236.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":2044,"_pop_score":60.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/plotly/plotly.py/master/README.md","_readme_localurl":"plotly~plotly.py~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/plotly/plotly.py/master/setup.py","https://raw.githubusercontent.com/plotly/plotly.py/master/pyproject.toml"],"_requirements_localurls":["plotly~plotly.py~setup.py","plotly~plotly.py~pyproject.toml"]},{"index":39,"category":"jupyter","githuburl":"https://github.com/jupyterlab/jupyterlab","featured":null,"links":null,"description":null,"_repopath":"jupyterlab/jupyterlab","_reponame":"jupyterlab","_stars":12515,"_forks":2511,"_watches":311,"_topics":["jupyterlab","jupyter"],"_language":"TypeScript","_homepage":"https://jupyterlab.readthedocs.io/","_description":"JupyterLab computational environment.","_organization":"jupyterlab","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2016-06-03T00:00:00.000Z","_age_weeks":341,"_stars_per_week":36.65,"_pop_contributor_count":517,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["coiled","databricks","jupyterquantstack","mongodb","quantstack"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.75,"_pop_updated_issues_count":777,"_pop_closed_issues_count":555,"_pop_created_since_days":80,"_pop_updated_since_days":0,"_pop_recent_releases_count":53,"_pop_recent_releases_estimated_tags":5006,"_pop_recent_releases_adjusted_count":53,"_pop_issue_count":777.0,"_pop_comment_count":1800.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":5103,"_pop_score":76.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyterlab/jupyterlab/master/README.md","_readme_localurl":"jupyterlab~jupyterlab~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyterlab/jupyterlab/master/setup.py","https://raw.githubusercontent.com/jupyterlab/jupyterlab/master/pyproject.toml"],"_requirements_localurls":["jupyterlab~jupyterlab~setup.py","jupyterlab~jupyterlab~pyproject.toml"]},{"index":127,"category":"ml","githuburl":"https://github.com/microsoft/nni","featured":null,"links":null,"description":null,"_repopath":"microsoft/nni","_reponame":"nni","_stars":12327,"_forks":1729,"_watches":282,"_topics":["automl","deep-learning","neural-architecture-search","hyperparameter-optimization","distributed","bayesian-optimization","automated-machine-learning","machine-learning","machine-learning-algorithms","data-science","tensorflow","pytorch","neural-network","deep-neural-network","model-compression","feature-engineering","nas","python","hyperparameter-tuning","mlops"],"_language":"Python","_homepage":"https://nni.readthedocs.io","_description":"nni: An open source AutoML toolkit for automate machine learning lifecycle, including feature engineering, neural architecture search, model compression and hyper-parameter tuning.","_organization":"microsoft","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-06-01T00:00:00.000Z","_age_weeks":237,"_stars_per_week":51.92,"_pop_contributor_count":185,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.79,"_pop_updated_issues_count":212,"_pop_closed_issues_count":115,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":213.0,"_pop_comment_count":379.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":186,"_pop_score":55.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/nni/master/README.md","_readme_localurl":"microsoft~nni~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/nni/master/setup.py"],"_requirements_localurls":["microsoft~nni~setup.py"]},{"index":152,"category":"nlp","githuburl":"https://github.com/flairnlp/flair","featured":null,"links":null,"description":null,"_repopath":"flairnlp/flair","_reponame":"flair","_stars":12300,"_forks":1977,"_watches":206,"_topics":["pytorch","nlp","named-entity-recognition","sequence-labeling","semantic-role-labeling","word-embeddings","natural-language-processing","machine-learning"],"_language":"Python","_homepage":"","_description":"flair: A very simple framework for state-of-the-art Natural Language Processing (NLP)","_organization":"flairnlp","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-06-11T00:00:00.000Z","_age_weeks":236,"_stars_per_week":52.12,"_pop_contributor_count":235,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["humboldtuniversit\u00e4t","rasahq","researchindustrialsystemsengineering(rise)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.98,"_pop_updated_issues_count":195,"_pop_closed_issues_count":127,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":195.0,"_pop_comment_count":260.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":254,"_pop_score":57.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/flairnlp/flair/master/README.md","_readme_localurl":"flairnlp~flair~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/flairnlp/flair/master/requirements.txt","https://raw.githubusercontent.com/flairnlp/flair/master/setup.py","https://raw.githubusercontent.com/flairnlp/flair/master/pyproject.toml","https://raw.githubusercontent.com/flairnlp/flair/master/Pipfile"],"_requirements_localurls":["flairnlp~flair~requirements.txt","flairnlp~flair~setup.py","flairnlp~flair~pyproject.toml","flairnlp~flair~Pipfile"]},{"index":281,"category":"util","githuburl":"https://github.com/squidfunk/mkdocs-material","featured":null,"links":null,"description":null,"_repopath":"squidfunk/mkdocs-material","_reponame":"mkdocs-material","_stars":12080,"_forks":2664,"_watches":110,"_topics":["mkdocs","theme","documentation","material-design","template","static"],"_language":"TypeScript","_homepage":"https://squidfunk.github.io/mkdocs-material/","_description":"mkdocs-material: Documentation that simply works","_organization":"squidfunk","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2016-01-28T00:00:00.000Z","_age_weeks":359,"_stars_per_week":33.6,"_pop_contributor_count":173,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["stylezen","trimble-oss"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.37,"_pop_updated_issues_count":245,"_pop_closed_issues_count":232,"_pop_created_since_days":84,"_pop_updated_since_days":0,"_pop_recent_releases_count":58,"_pop_recent_releases_estimated_tags":43,"_pop_recent_releases_adjusted_count":58,"_pop_issue_count":245.0,"_pop_comment_count":619.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":13300,"_pop_score":70.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/README.md","_readme_localurl":"squidfunk~mkdocs-material~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/requirements.txt","https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/setup.py","https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/pyproject.toml"],"_requirements_localurls":["squidfunk~mkdocs-material~requirements.txt","squidfunk~mkdocs-material~setup.py","squidfunk~mkdocs-material~pyproject.toml"]},{"index":575,"category":"perf","githuburl":"https://github.com/pybind/pybind11","featured":null,"links":null,"description":null,"_repopath":"pybind/pybind11","_reponame":"pybind11","_stars":11971,"_forks":1736,"_watches":247,"_topics":["python","bindings"],"_language":"C++","_homepage":"https://pybind11.readthedocs.io/","_description":"pybind11: Seamless operability between C++11 and Python","_organization":"pybind","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2015-07-05T00:00:00.000Z","_age_weeks":389,"_stars_per_week":30.76,"_pop_contributor_count":312,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["epfl","lumicks","princetonuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.27,"_pop_updated_issues_count":230,"_pop_closed_issues_count":176,"_pop_created_since_days":91,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":230.0,"_pop_comment_count":886.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.9,"_pop_dependents_count":1836,"_pop_score":67.65,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pybind/pybind11/master/README.rst","_readme_localurl":"pybind~pybind11~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pybind/pybind11/master/setup.py","https://raw.githubusercontent.com/pybind/pybind11/master/pyproject.toml"],"_requirements_localurls":["pybind~pybind11~setup.py","pybind~pybind11~pyproject.toml"]},{"index":52,"category":"graph","githuburl":"https://github.com/networkx/networkx","featured":null,"links":null,"description":null,"_repopath":"networkx/networkx","_reponame":"networkx","_stars":11960,"_forks":2803,"_watches":276,"_topics":["python","complex-networks","graph-theory","graph-algorithms","graph-analysis","graph-generation","graph-visualization"],"_language":"Python","_homepage":"https://networkx.org","_description":"networkx: Network Analysis in Python","_organization":"networkx","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2010-09-06T00:00:00.000Z","_age_weeks":641,"_stars_per_week":18.66,"_pop_contributor_count":636,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ucberkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.06,"_pop_updated_issues_count":390,"_pop_closed_issues_count":241,"_pop_created_since_days":150,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":390.0,"_pop_comment_count":500.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":957,"_pop_score":65.75,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/networkx/networkx/master/README.rst","_readme_localurl":"networkx~networkx~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/networkx/networkx/master/setup.py"],"_requirements_localurls":["networkx~networkx~setup.py"]},{"index":314,"category":"util","githuburl":"https://github.com/samuelcolvin/pydantic","featured":null,"links":null,"description":null,"_repopath":"samuelcolvin/pydantic","_reponame":"pydantic","_stars":11924,"_forks":1113,"_watches":88,"_topics":["validation","parsing","json-schema","python37","python38","pydantic","python39","python","hints","python310","python311"],"_language":"Python","_homepage":"https://docs.pydantic.dev","_description":"pydantic: Data parsing and validation using Python type hints","_organization":"samuelcolvin","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-05-03T00:00:00.000Z","_age_weeks":293,"_stars_per_week":40.6,"_pop_contributor_count":333,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["pydantic","pyupio","toucantoco"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.4,"_pop_updated_issues_count":340,"_pop_closed_issues_count":204,"_pop_created_since_days":68,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":340.0,"_pop_comment_count":668.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":1774,"_pop_score":66.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/samuelcolvin/pydantic/master/README.md","_readme_localurl":"samuelcolvin~pydantic~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/samuelcolvin/pydantic/master/setup.py","https://raw.githubusercontent.com/samuelcolvin/pydantic/master/pyproject.toml"],"_requirements_localurls":["samuelcolvin~pydantic~setup.py","samuelcolvin~pydantic~pyproject.toml"]},{"index":114,"category":"nlp","githuburl":"https://github.com/allenai/allennlp","featured":null,"links":null,"description":null,"_repopath":"allenai/allennlp","_reponame":"allennlp","_stars":11332,"_forks":2231,"_watches":280,"_topics":["pytorch","nlp","natural-language-processing","deep-learning","data-science","python"],"_language":"Python","_homepage":"http://www.allennlp.org","_description":"allennlp: An open-source NLP research library, built on PyTorch.","_organization":"allenai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-22T00:00:00.000Z","_created_at":"2017-05-15T00:00:00.000Z","_age_weeks":292,"_stars_per_week":38.81,"_pop_contributor_count":265,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoftsemanticmachines"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.6,"_pop_updated_issues_count":36,"_pop_closed_issues_count":32,"_pop_created_since_days":68,"_pop_updated_since_days":1,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":36.0,"_pop_comment_count":98.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":331,"_pop_score":53.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/allenai/allennlp/master/README.md","_readme_localurl":"allenai~allennlp~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/allenai/allennlp/master/setup.py","https://raw.githubusercontent.com/allenai/allennlp/master/pyproject.toml"],"_requirements_localurls":["allenai~allennlp~setup.py","allenai~allennlp~pyproject.toml"]},{"index":425,"category":"ml-dl","githuburl":"https://github.com/albumentations-team/albumentations","featured":null,"links":null,"description":null,"_repopath":"albumentations-team/albumentations","_reponame":"albumentations","_stars":11325,"_forks":1447,"_watches":124,"_topics":["image-augmentation","machine-learning","augmentation","deep-learning","detection","fast-augmentations","segmentation","image-segmentation","image-processing","image-classification","python","object-detection"],"_language":"Python","_homepage":"https://albumentations.ai","_description":"albumentations: Fast image augmentation library and an easy-to-use wrapper around other libraries. Documentation: https://albumentations.ai/docs/ Paper about the library: https://www.mdpi.com/2078-2489/11/2/125","_organization":"albumentations-team","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2018-06-06T00:00:00.000Z","_age_weeks":236,"_stars_per_week":47.84,"_pop_contributor_count":123,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deci-ai","ternaus.com"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.29,"_pop_updated_issues_count":95,"_pop_closed_issues_count":40,"_pop_created_since_days":55,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":95.0,"_pop_comment_count":133.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":24,"_pop_score":45.97,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/albumentations-team/albumentations/master/README.md","_readme_localurl":"albumentations-team~albumentations~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/albumentations-team/albumentations/master/setup.py"],"_requirements_localurls":["albumentations-team~albumentations~setup.py"]},{"index":105,"category":"nlp","githuburl":"https://github.com/nltk/nltk","featured":null,"links":null,"description":null,"_repopath":"nltk/nltk","_reponame":"nltk","_stars":11321,"_forks":2671,"_watches":469,"_topics":["nltk","python","nlp","natural-language-processing","machine-learning"],"_language":"Python","_homepage":"https://www.nltk.org","_description":"NLTK Source","_organization":"nltk","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2009-09-07T00:00:00.000Z","_age_weeks":693,"_stars_per_week":16.34,"_pop_contributor_count":435,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["googleresearch","zytedata,scrapinghub"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.29,"_pop_updated_issues_count":66,"_pop_closed_issues_count":52,"_pop_created_since_days":162,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":66.0,"_pop_comment_count":154.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":4758,"_pop_score":64.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nltk/nltk/master/README.md","_readme_localurl":"nltk~nltk~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nltk/nltk/master/setup.py"],"_requirements_localurls":["nltk~nltk~setup.py"]},{"index":346,"category":"viz","githuburl":"https://github.com/gradio-app/gradio","featured":null,"links":null,"description":null,"_repopath":"gradio-app/gradio","_reponame":"gradio","_stars":11301,"_forks":717,"_watches":88,"_topics":["machine-learning","models","ui","ui-components","interface","python","data-science","data-visualization","deep-learning","data-analysis","gradio","gradio-interface","python-notebook","deploy"],"_language":"HTML","_homepage":"http://www.gradio.app","_description":"gradio: Create UIs for your machine learning model in Python in 3 minutes","_organization":"gradio-app","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-12-19T00:00:00.000Z","_age_weeks":208,"_stars_per_week":54.15,"_pop_contributor_count":118,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["pennstate"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":29.58,"_pop_updated_issues_count":698,"_pop_closed_issues_count":489,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":75,"_pop_recent_releases_estimated_tags":19,"_pop_recent_releases_adjusted_count":75,"_pop_issue_count":698.0,"_pop_comment_count":1859.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":794,"_pop_score":64.23,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gradio-app/gradio/master/README.md","_readme_localurl":"gradio-app~gradio~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gradio-app/gradio/master/setup.py"],"_requirements_localurls":["gradio-app~gradio~setup.py"]},{"index":242,"category":"ml","githuburl":"https://github.com/deepmind/deepmind-research","featured":null,"links":null,"description":null,"_repopath":"deepmind/deepmind-research","_reponame":"deepmind-research","_stars":11213,"_forks":2300,"_watches":325,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"deepmind-research: This repository contains implementations and illustrative code to accompany DeepMind publications","_organization":"deepmind","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-24T00:00:00.000Z","_created_at":"2019-01-15T00:00:00.000Z","_age_weeks":204,"_stars_per_week":54.74,"_pop_contributor_count":91,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deepmind"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.77,"_pop_updated_issues_count":37,"_pop_closed_issues_count":6,"_pop_created_since_days":48,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":37.0,"_pop_comment_count":26.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":7,"_pop_score":33.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/deepmind/deepmind-research/master/README.md","_readme_localurl":"deepmind~deepmind-research~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":320,"category":"gui","githuburl":"https://github.com/pysimplegui/pysimplegui","featured":1.0,"links":null,"description":null,"_repopath":"pysimplegui/pysimplegui","_reponame":"PySimpleGUI","_stars":10984,"_forks":1632,"_watches":220,"_topics":["pysimplegui","gui-framework","python","tkinter","tkinter-python","tkinter-gui","wxpython","pyside2","qt","qt-gui","remi","gui","gui-window","gui-programming","datavisualization","games","beginner-friendly","systemtray","python-gui","user-interface"],"_language":"Python","_homepage":"","_description":"PySimpleGUI: Launched in 2018. It's 2022 and PySimpleGUI is actively developed & supported. Create complex windows simply. Supports tkinter, Qt, WxPython, Remi (in browser). Create GUI applications trivially with a full set of widgets. Multi-Window applications are also simple. 3.4 to 3.11 supported. 325+ Demo programs & Cookbook for rapid start. Extensive documentation. Examples for Machine Learning(OpenCV Integration, Chatterbot), Rainmeter-like Desktop Widgets, Matplotlib + Pyplot integration, add GUI to command line scripts, PDF & Image Viewer. For both beginning and advanced programmers. docs - PySimpleGUI.org GitHub - PySimpleGUI.com. The Minecraft of GUIs - simple to complex... does them all.","_organization":"pysimplegui","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-07-11T00:00:00.000Z","_age_weeks":231,"_stars_per_week":47.4,"_pop_contributor_count":18,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["netperfect","pysimplegui"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.48,"_pop_updated_issues_count":242,"_pop_closed_issues_count":202,"_pop_created_since_days":54,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":242.0,"_pop_comment_count":689.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":67,"_pop_score":51.25,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/pysimplegui/pysimplegui/master/readme.md","_readme_localurl":"pysimplegui~pysimplegui~readme.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pysimplegui/pysimplegui/master/setup.py"],"_requirements_localurls":["pysimplegui~pysimplegui~setup.py"]},{"index":190,"category":"ml-dl","githuburl":"https://github.com/dmlc/dgl","featured":null,"links":null,"description":null,"_repopath":"dmlc/dgl","_reponame":"dgl","_stars":10871,"_forks":2643,"_watches":174,"_topics":["deep-learning","graph-neural-networks"],"_language":"Python","_homepage":"http://dgl.ai","_description":"dgl: Python package built to ease deep learning on graph, on top of existing DL frameworks.","_organization":"dmlc","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-04-20T00:00:00.000Z","_age_weeks":243,"_stars_per_week":44.66,"_pop_contributor_count":240,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aws","awsailabshanghai","awsshanghai","newyorkuniversity","tensorchord"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.92,"_pop_updated_issues_count":617,"_pop_closed_issues_count":452,"_pop_created_since_days":57,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":615.0,"_pop_comment_count":3148.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":5.1,"_pop_dependents_count":47,"_pop_score":65.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dmlc/dgl/master/README.md","_readme_localurl":"dmlc~dgl~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dmlc/dgl/master/pyproject.toml"],"_requirements_localurls":["dmlc~dgl~pyproject.toml"]},{"index":122,"category":"data","githuburl":"https://github.com/iterative/dvc","featured":null,"links":null,"description":null,"_repopath":"iterative/dvc","_reponame":"dvc","_stars":10804,"_forks":1010,"_watches":136,"_topics":["data-science","machine-learning","reproducibility","data-version-control","git","developer-tools","collaboration","ai","python","hacktoberfest"],"_language":"Python","_homepage":"https://dvc.org","_description":"dvc: \ud83e\udd89Data Version Control | Git for Data & Models | ML Experiments Management","_organization":"iterative","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-03-04T00:00:00.000Z","_age_weeks":302,"_stars_per_week":35.74,"_pop_contributor_count":276,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["iterative","iterative.ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":19.79,"_pop_updated_issues_count":520,"_pop_closed_issues_count":371,"_pop_created_since_days":70,"_pop_updated_since_days":0,"_pop_recent_releases_count":54,"_pop_recent_releases_estimated_tags":73,"_pop_recent_releases_adjusted_count":54,"_pop_issue_count":519.0,"_pop_comment_count":1066.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":3399,"_pop_score":70.22,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/iterative/dvc/master/README.rst","_readme_localurl":"iterative~dvc~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/iterative/dvc/master/setup.py","https://raw.githubusercontent.com/iterative/dvc/master/pyproject.toml"],"_requirements_localurls":["iterative~dvc~setup.py","iterative~dvc~pyproject.toml"]},{"index":1,"category":"data","githuburl":"https://github.com/apache/arrow","featured":null,"links":null,"description":null,"_repopath":"apache/arrow","_reponame":"arrow","_stars":10801,"_forks":2663,"_watches":345,"_topics":["arrow"],"_language":"C++","_homepage":"https://arrow.apache.org/","_description":"arrow: Apache Arrow is a multi-language toolbox for accelerated data interchange and in-memory processing","_organization":"apache","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2016-02-17T00:00:00.000Z","_age_weeks":356,"_stars_per_week":30.28,"_pop_contributor_count":976,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["clear-code","quantco","voltron-data/ursa-computing","voltrondata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":41.44,"_pop_updated_issues_count":1046,"_pop_closed_issues_count":764,"_pop_created_since_days":83,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":1046.0,"_pop_comment_count":5523.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":5.3,"_pop_dependents_count":15514,"_pop_score":82.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apache/arrow/master/README.md","_readme_localurl":"apache~arrow~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":120,"category":"ml-ops","githuburl":"https://github.com/prefecthq/prefect","featured":null,"links":null,"description":null,"_repopath":"prefecthq/prefect","_reponame":"prefect","_stars":10681,"_forks":1084,"_watches":152,"_topics":["python","workflow","data-engineering","data-science","workflow-engine","prefect","infrastructure","ml-ops","data-ops","automation","orchestration","orion","data","observability","pipeline"],"_language":"Python","_homepage":"https://prefect.io","_description":"prefect: The easiest way to coordinate your dataflow","_organization":"prefecthq","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-06-29T00:00:00.000Z","_age_weeks":233,"_stars_per_week":45.76,"_pop_contributor_count":100,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["prefect","prefecthq"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":131.9,"_pop_updated_issues_count":1305,"_pop_closed_issues_count":920,"_pop_created_since_days":54,"_pop_updated_since_days":0,"_pop_recent_releases_count":47,"_pop_recent_releases_estimated_tags":36,"_pop_recent_releases_adjusted_count":47,"_pop_issue_count":1308.0,"_pop_comment_count":2629.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":362,"_pop_score":67.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/prefecthq/prefect/master/README.md","_readme_localurl":"prefecthq~prefect~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/prefecthq/prefect/master/requirements.txt","https://raw.githubusercontent.com/prefecthq/prefect/master/setup.py","https://raw.githubusercontent.com/prefecthq/prefect/master/pyproject.toml"],"_requirements_localurls":["prefecthq~prefect~requirements.txt","prefecthq~prefect~setup.py","prefecthq~prefect~pyproject.toml"]},{"index":192,"category":"template","githuburl":"https://github.com/tiangolo/full-stack-fastapi-postgresql","featured":null,"links":null,"description":null,"_repopath":"tiangolo/full-stack-fastapi-postgresql","_reponame":"full-stack-fastapi-postgresql","_stars":10628,"_forks":1932,"_watches":172,"_topics":["python","python3","json","json-schema","docker","postgresql","frontend","backend","fastapi","traefik","letsencrypt","swagger","celery","jwt","vue","vuex","cookiecutter","openapi","openapi3","pgadmin"],"_language":"Python","_homepage":null,"_description":"full-stack-fastapi-postgresql: Full stack, modern web application generator. Using FastAPI, PostgreSQL as database, Docker, automatic HTTPS and more.","_organization":"tiangolo","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-06-05T00:00:00.000Z","_created_at":"2019-02-23T00:00:00.000Z","_age_weeks":199,"_stars_per_week":53.33,"_pop_contributor_count":17,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cortexia","formlogic","intelliatherapeutics","messagg"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":152,"_pop_closed_issues_count":51,"_pop_created_since_days":46,"_pop_updated_since_days":31,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":152.0,"_pop_comment_count":84.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":44,"_pop_score":33.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/full-stack-fastapi-postgresql/master/README.md","_readme_localurl":"tiangolo~full-stack-fastapi-postgresql~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":79,"category":"ml","githuburl":"https://github.com/scipy/scipy","featured":null,"links":null,"description":null,"_repopath":"scipy/scipy","_reponame":"scipy","_stars":10608,"_forks":4514,"_watches":341,"_topics":["python","scipy","algorithms","closember","scientific-computing"],"_language":"Python","_homepage":"https://scipy.org","_description":"SciPy library main repository","_organization":"scipy","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2011-03-09T00:00:00.000Z","_age_weeks":614,"_stars_per_week":17.26,"_pop_contributor_count":1401,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quansight"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":30.5,"_pop_updated_issues_count":1144,"_pop_closed_issues_count":738,"_pop_created_since_days":143,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":1144.0,"_pop_comment_count":2983.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":7282,"_pop_score":76.57,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/scipy/scipy/master/README.rst","_readme_localurl":"scipy~scipy~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scipy/scipy/master/setup.py","https://raw.githubusercontent.com/scipy/scipy/master/pyproject.toml"],"_requirements_localurls":["scipy~scipy~setup.py","scipy~scipy~pyproject.toml"]},{"index":11,"category":"perf","githuburl":"https://github.com/dask/dask","featured":null,"links":null,"description":null,"_repopath":"dask/dask","_reponame":"dask","_stars":10578,"_forks":1575,"_watches":216,"_topics":["dask","python","pydata","numpy","pandas","scikit-learn","scipy"],"_language":"Python","_homepage":"https://dask.org","_description":"dask: Parallel computing with task scheduling","_organization":"dask","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2015-01-04T00:00:00.000Z","_age_weeks":415,"_stars_per_week":25.48,"_pop_contributor_count":570,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["coiled","voltrondata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.13,"_pop_updated_issues_count":346,"_pop_closed_issues_count":211,"_pop_created_since_days":97,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":32,"_pop_recent_releases_adjusted_count":32,"_pop_issue_count":346.0,"_pop_comment_count":856.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":3107,"_pop_score":71.78,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dask/dask/master/README.rst","_readme_localurl":"dask~dask~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dask/dask/master/setup.py"],"_requirements_localurls":["dask~dask~setup.py"]},{"index":218,"category":"ml","githuburl":"https://github.com/spotify/annoy","featured":null,"links":null,"description":null,"_repopath":"spotify/annoy","_reponame":"annoy","_stars":10574,"_forks":1066,"_watches":325,"_topics":["c-plus-plus","python","nearest-neighbor-search","locality-sensitive-hashing","approximate-nearest-neighbor-search","golang","lua"],"_language":"C++","_homepage":null,"_description":"annoy: Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk","_organization":"spotify","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-27T00:00:00.000Z","_created_at":"2013-04-01T00:00:00.000Z","_age_weeks":507,"_stars_per_week":20.86,"_pop_contributor_count":82,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":17,"_pop_closed_issues_count":9,"_pop_created_since_days":118,"_pop_updated_since_days":2,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":17.0,"_pop_comment_count":28.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":66,"_pop_score":41.25,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/spotify/annoy/master/README.rst","_readme_localurl":"spotify~annoy~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/spotify/annoy/master/setup.py"],"_requirements_localurls":["spotify~annoy~setup.py"]},{"index":857,"category":"viz","githuburl":"https://github.com/visgl/deck.gl","featured":null,"links":null,"description":null,"_repopath":"visgl/deck.gl","_reponame":"deck.gl","_stars":10477,"_forks":1892,"_watches":1730,"_topics":["webgl","data-visualization","javascript","visualization","python","geospatial-analysis","maps"],"_language":"JavaScript","_homepage":"https://deck.gl","_description":"deck.gl: WebGL2 powered visualization framework","_organization":"visgl","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2015-12-15T00:00:00.000Z","_age_weeks":365,"_stars_per_week":28.64,"_pop_contributor_count":209,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["foursquare"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.31,"_pop_updated_issues_count":185,"_pop_closed_issues_count":127,"_pop_created_since_days":85,"_pop_updated_since_days":0,"_pop_recent_releases_count":59,"_pop_recent_releases_estimated_tags":74,"_pop_recent_releases_adjusted_count":59,"_pop_issue_count":186.0,"_pop_comment_count":250.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":273,"_pop_score":59.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/visgl/deck.gl/master/README.md","_readme_localurl":"visgl~deck.gl~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":718,"category":"perf","githuburl":"https://github.com/pola-rs/polars","featured":1.0,"links":null,"description":null,"_repopath":"pola-rs/polars","_reponame":"polars","_stars":10407,"_forks":553,"_watches":104,"_topics":["dataframe-library","dataframe","dataframes","rust","arrow","python","out-of-core"],"_language":"Rust","_homepage":"https://pola.rs/","_description":"polars: Fast multi-threaded, hybrid-streaming DataFrame library in Rust | Python | Node.js","_organization":"pola-rs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2020-05-13T00:00:00.000Z","_age_weeks":135,"_stars_per_week":76.68,"_pop_contributor_count":141,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aertslab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":39.65,"_pop_updated_issues_count":1083,"_pop_closed_issues_count":893,"_pop_created_since_days":32,"_pop_updated_since_days":0,"_pop_recent_releases_count":26,"_pop_recent_releases_estimated_tags":129,"_pop_recent_releases_adjusted_count":26,"_pop_issue_count":1083.0,"_pop_comment_count":1784.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":102,"_pop_score":59.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pola-rs/polars/master/README.md","_readme_localurl":"pola-rs~polars~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":72,"category":"util","githuburl":"https://github.com/python-pillow/pillow","featured":null,"links":null,"description":null,"_repopath":"python-pillow/pillow","_reponame":"Pillow","_stars":10374,"_forks":1957,"_watches":218,"_topics":["c","cross-platform","pil","pillow","python","python-3","image-processing","image"],"_language":"Python","_homepage":"https://python-pillow.org","_description":"Pillow: The friendly PIL fork (Python Imaging Library)","_organization":"python-pillow","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2012-07-24T00:00:00.000Z","_age_weeks":542,"_stars_per_week":19.11,"_pop_contributor_count":420,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aclark.net","nordsoftware","uploadcare"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":19.37,"_pop_updated_issues_count":361,"_pop_closed_issues_count":295,"_pop_created_since_days":127,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":361.0,"_pop_comment_count":568.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":26551,"_pop_score":74.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python-pillow/pillow/master/README.md","_readme_localurl":"python-pillow~pillow~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/python-pillow/pillow/master/setup.py"],"_requirements_localurls":["python-pillow~pillow~setup.py"]},{"index":110,"category":"ml-interpretability","githuburl":"https://github.com/marcotcr/lime","featured":null,"links":null,"description":null,"_repopath":"marcotcr/lime","_reponame":"lime","_stars":10294,"_forks":1693,"_watches":272,"_topics":[],"_language":"JavaScript","_homepage":"","_description":"Lime: Explaining the predictions of any machine learning classifier","_organization":"marcotcr","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2021-07-29T00:00:00.000Z","_created_at":"2016-03-15T00:00:00.000Z","_age_weeks":352,"_stars_per_week":29.17,"_pop_contributor_count":61,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["related-sciences","system1"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":25,"_pop_closed_issues_count":10,"_pop_created_since_days":82,"_pop_updated_since_days":17,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":25.0,"_pop_comment_count":19.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":145,"_pop_score":38.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/marcotcr/lime/master/README.md","_readme_localurl":"marcotcr~lime~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/marcotcr/lime/master/setup.py"],"_requirements_localurls":["marcotcr~lime~setup.py"]},{"index":427,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/detr","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/detr","_reponame":"detr","_stars":10233,"_forks":1866,"_watches":146,"_topics":[],"_language":"Python","_homepage":null,"_description":"detr: End-to-End Object Detection with Transformers","_organization":"facebookresearch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-03-07T00:00:00.000Z","_created_at":"2020-05-26T00:00:00.000Z","_age_weeks":133,"_stars_per_week":76.45,"_pop_contributor_count":25,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["axera-tech","facebookaireseach","facebookairesearch","mtsai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":48,"_pop_closed_issues_count":13,"_pop_created_since_days":31,"_pop_updated_since_days":10,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":48.0,"_pop_comment_count":51.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":66,"_pop_score":34.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/detr/master/README.md","_readme_localurl":"facebookresearch~detr~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/detr/master/requirements.txt"],"_requirements_localurls":["facebookresearch~detr~requirements.txt"]},{"index":50,"category":"viz","githuburl":"https://github.com/mwaskom/seaborn","featured":null,"links":null,"description":null,"_repopath":"mwaskom/seaborn","_reponame":"seaborn","_stars":10172,"_forks":1678,"_watches":252,"_topics":["python","data-visualization","data-science","matplotlib","pandas"],"_language":"Python","_homepage":"https://seaborn.pydata.org","_description":"seaborn: Statistical data visualization in Python","_organization":"mwaskom","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2012-06-18T00:00:00.000Z","_age_weeks":548,"_stars_per_week":18.56,"_pop_contributor_count":181,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bridgebioanalytics","coiled","universityofbritishcolumbia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.69,"_pop_updated_issues_count":146,"_pop_closed_issues_count":116,"_pop_created_since_days":128,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":146.0,"_pop_comment_count":305.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":522,"_pop_score":62.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mwaskom/seaborn/master/README.md","_readme_localurl":"mwaskom~seaborn~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mwaskom/seaborn/master/pyproject.toml"],"_requirements_localurls":["mwaskom~seaborn~pyproject.toml"]},{"index":166,"category":"sim","githuburl":"https://github.com/bulletphysics/bullet3","featured":null,"links":null,"description":null,"_repopath":"bulletphysics/bullet3","_reponame":"bullet3","_stars":10043,"_forks":2620,"_watches":405,"_topics":["simulation","robotics","kinematics","virtual-reality","reinforcement-learning","computer-animation","game-development","simulator","pybullet"],"_language":"C++","_homepage":"http://bulletphysics.org","_description":"bullet3: Bullet Physics SDK: real-time collision detection and multi-physics simulation for VR, games, visual effects, robotics, machine learning etc.","_organization":"bulletphysics","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-25T00:00:00.000Z","_created_at":"2011-04-12T00:00:00.000Z","_age_weeks":609,"_stars_per_week":16.47,"_pop_contributor_count":299,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ucla"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.69,"_pop_updated_issues_count":55,"_pop_closed_issues_count":14,"_pop_created_since_days":142,"_pop_updated_since_days":3,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":55.0,"_pop_comment_count":34.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":2098,"_pop_score":51.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bulletphysics/bullet3/master/README.md","_readme_localurl":"bulletphysics~bullet3~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bulletphysics/bullet3/master/setup.py"],"_requirements_localurls":["bulletphysics~bullet3~setup.py"]},{"index":173,"category":"term","githuburl":"https://github.com/tiangolo/typer","featured":1.0,"links":null,"description":null,"_repopath":"tiangolo/typer","_reponame":"typer","_stars":9986,"_forks":399,"_watches":66,"_topics":["cli","click","python3","typehints","terminal","shell","python","typer"],"_language":"Python","_homepage":"https://typer.tiangolo.com/","_description":"Typer, build great CLIs. Easy to code. Based on Python type hints.","_organization":"tiangolo","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-12-24T00:00:00.000Z","_age_weeks":155,"_stars_per_week":64.07,"_pop_contributor_count":32,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lofidynamics"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.75,"_pop_updated_issues_count":183,"_pop_closed_issues_count":93,"_pop_created_since_days":36,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":183.0,"_pop_comment_count":342.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":381,"_pop_score":49.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/typer/master/README.md","_readme_localurl":"tiangolo~typer~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tiangolo/typer/master/pyproject.toml"],"_requirements_localurls":["tiangolo~typer~pyproject.toml"]},{"index":24,"category":"ml","githuburl":"https://github.com/google/dopamine","featured":null,"links":null,"description":null,"_repopath":"google/dopamine","_reponame":"dopamine","_stars":9956,"_forks":1337,"_watches":440,"_topics":["rl","ml","ai","google","tensorflow"],"_language":"Jupyter Notebook","_homepage":"https://github.com/google/dopamine","_description":"Dopamine is a research framework for fast prototyping of reinforcement learning algorithms. ","_organization":"google","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2018-07-26T00:00:00.000Z","_age_weeks":229,"_stars_per_week":43.37,"_pop_contributor_count":15,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":6,"_pop_closed_issues_count":2,"_pop_created_since_days":54,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":6.0,"_pop_comment_count":17.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":27,"_pop_score":33.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/dopamine/master/README.md","_readme_localurl":"google~dopamine~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/dopamine/master/requirements.txt","https://raw.githubusercontent.com/google/dopamine/master/setup.py"],"_requirements_localurls":["google~dopamine~requirements.txt","google~dopamine~setup.py"]},{"index":60,"category":"pandas","githuburl":"https://github.com/pandas-profiling/pandas-profiling","featured":1.0,"links":null,"description":null,"_repopath":"pandas-profiling/pandas-profiling","_reponame":"pandas-profiling","_stars":9944,"_forks":1413,"_watches":150,"_topics":["pandas-profiling","pandas-dataframe","statistics","jupyter-notebook","exploration","data-science","python","pandas","machine-learning","deep-learning","exploratory-data-analysis","eda","data-quality","html-report","data-exploration","data-analysis","jupyter","big-data-analytics","data-profiling","hacktoberfest"],"_language":"Python","_homepage":"https://pandas-profiling.ydata.ai","_description":"pandas-profiling: Create HTML profiling reports from pandas DataFrame objects","_organization":"pandas-profiling","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2016-01-09T00:00:00.000Z","_age_weeks":362,"_stars_per_week":27.45,"_pop_contributor_count":105,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["metamaze"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.54,"_pop_updated_issues_count":196,"_pop_closed_issues_count":144,"_pop_created_since_days":84,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":196.0,"_pop_comment_count":260.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":60,"_pop_score":50.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pandas-profiling/pandas-profiling/master/README.md","_readme_localurl":"pandas-profiling~pandas-profiling~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pandas-profiling/pandas-profiling/master/requirements.txt","https://raw.githubusercontent.com/pandas-profiling/pandas-profiling/master/setup.py"],"_requirements_localurls":["pandas-profiling~pandas-profiling~requirements.txt","pandas-profiling~pandas-profiling~setup.py"]},{"index":87,"category":"math","githuburl":"https://github.com/sympy/sympy","featured":1.0,"links":null,"description":null,"_repopath":"sympy/sympy","_reponame":"sympy","_stars":9887,"_forks":3794,"_watches":283,"_topics":["python","math","computer-algebra","science","hacktoberfest"],"_language":"Python","_homepage":"https://sympy.org/","_description":"sympy: A computer algebra system written in pure Python","_organization":"sympy","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2010-04-30T00:00:00.000Z","_age_weeks":659,"_stars_per_week":14.99,"_pop_contributor_count":1186,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["gsitechnology","quansight"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":40.35,"_pop_updated_issues_count":914,"_pop_closed_issues_count":247,"_pop_created_since_days":154,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":914.0,"_pop_comment_count":1859.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":7939,"_pop_score":76.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sympy/sympy/master/README.md","_readme_localurl":"sympy~sympy~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sympy/sympy/master/setup.py"],"_requirements_localurls":["sympy~sympy~setup.py"]},{"index":645,"category":"util","githuburl":"https://github.com/pyinstaller/pyinstaller","featured":null,"links":null,"description":null,"_repopath":"pyinstaller/pyinstaller","_reponame":"pyinstaller","_stars":9831,"_forks":1852,"_watches":233,"_topics":["python","python-3","bundle","package","pyinstaller","python-to-exe","py2exe","py2app"],"_language":"Python","_homepage":"http://www.pyinstaller.org","_description":"pyinstaller: Freeze (package) Python programs into stand-alone executables","_organization":"pyinstaller","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2011-11-23T00:00:00.000Z","_age_weeks":577,"_stars_per_week":17.02,"_pop_contributor_count":443,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["develers.r.l."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.4,"_pop_updated_issues_count":6291,"_pop_closed_issues_count":6242,"_pop_created_since_days":135,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":6291.0,"_pop_comment_count":670.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.1,"_pop_dependents_count":2287,"_pop_score":66.5,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyinstaller/pyinstaller/master/README.rst","_readme_localurl":"pyinstaller~pyinstaller~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyinstaller/pyinstaller/master/requirements.txt","https://raw.githubusercontent.com/pyinstaller/pyinstaller/master/setup.py","https://raw.githubusercontent.com/pyinstaller/pyinstaller/master/pyproject.toml"],"_requirements_localurls":["pyinstaller~pyinstaller~requirements.txt","pyinstaller~pyinstaller~setup.py","pyinstaller~pyinstaller~pyproject.toml"]},{"index":805,"category":"web","githuburl":"https://github.com/encode/httpx","featured":null,"links":null,"description":null,"_repopath":"encode/httpx","_reponame":"httpx","_stars":9786,"_forks":640,"_watches":106,"_topics":["python","http","trio","asyncio"],"_language":"Python","_homepage":"https://www.python-httpx.org/","_description":"httpx: A next generation HTTP client for Python. \ud83e\udd8b","_organization":"encode","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2019-04-04T00:00:00.000Z","_age_weeks":193,"_stars_per_week":50.55,"_pop_contributor_count":182,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["elastic","encodeoss"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.13,"_pop_updated_issues_count":130,"_pop_closed_issues_count":103,"_pop_created_since_days":45,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":20,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":130.0,"_pop_comment_count":242.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":2114,"_pop_score":59.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/encode/httpx/master/README.md","_readme_localurl":"encode~httpx~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/encode/httpx/master/requirements.txt","https://raw.githubusercontent.com/encode/httpx/master/setup.py","https://raw.githubusercontent.com/encode/httpx/master/pyproject.toml"],"_requirements_localurls":["encode~httpx~requirements.txt","encode~httpx~setup.py","encode~httpx~pyproject.toml"]},{"index":536,"category":"profiling","githuburl":"https://github.com/bloomberg/memray","featured":1.0,"links":null,"description":null,"_repopath":"bloomberg/memray","_reponame":"memray","_stars":9678,"_forks":267,"_watches":54,"_topics":["memory","memory-leak","memory-leak-detection","memory-profiler","profiler","python","python3","hacktoberfest"],"_language":"Python","_homepage":"https://bloomberg.github.io/memray/","_description":"Memray is a memory profiler for Python","_organization":"bloomberg","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2022-04-08T00:00:00.000Z","_age_weeks":36,"_stars_per_week":265.67,"_pop_contributor_count":22,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bloomberg","bloombergpythoninfrastructure"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.85,"_pop_updated_issues_count":60,"_pop_closed_issues_count":47,"_pop_created_since_days":8,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":60.0,"_pop_comment_count":73.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":3,"_pop_score":38.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bloomberg/memray/master/README.md","_readme_localurl":"bloomberg~memray~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/bloomberg/memray/master/setup.py","https://raw.githubusercontent.com/bloomberg/memray/master/pyproject.toml"],"_requirements_localurls":["bloomberg~memray~setup.py","bloomberg~memray~pyproject.toml"]},{"index":22,"category":"nlp","githuburl":"https://github.com/facebookresearch/parlai","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/parlai","_reponame":"ParlAI","_stars":9672,"_forks":1974,"_watches":290,"_topics":[],"_language":"Python","_homepage":"https://parl.ai","_description":"ParlAI: A framework for training and evaluating AI models on a variety of openly available dialogue datasets.","_organization":"facebookresearch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2017-04-24T00:00:00.000Z","_age_weeks":295,"_stars_per_week":32.79,"_pop_contributor_count":204,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebookairesearch","facebookresearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.13,"_pop_updated_issues_count":177,"_pop_closed_issues_count":138,"_pop_created_since_days":69,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":177.0,"_pop_comment_count":276.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":1804,"_pop_score":60.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/parlai/master/README.md","_readme_localurl":"facebookresearch~parlai~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/parlai/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/parlai/master/setup.py","https://raw.githubusercontent.com/facebookresearch/parlai/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~parlai~requirements.txt","facebookresearch~parlai~setup.py","facebookresearch~parlai~pyproject.toml"]},{"index":38,"category":"jupyter","githuburl":"https://github.com/jupyter/notebook","featured":null,"links":null,"description":null,"_repopath":"jupyter/notebook","_reponame":"notebook","_stars":9629,"_forks":3983,"_watches":320,"_topics":["closember","jupyter","jupyter-notebook","notebook"],"_language":"Jupyter Notebook","_homepage":"https://jupyter-notebook.readthedocs.io/","_description":"notebook: Jupyter Interactive Notebook","_organization":"jupyter","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":401,"_stars_per_week":23.98,"_pop_contributor_count":622,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","google","quansight-labs","simularesearchlaboratory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.38,"_pop_updated_issues_count":222,"_pop_closed_issues_count":148,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":19,"_pop_recent_releases_estimated_tags":30,"_pop_recent_releases_adjusted_count":19,"_pop_issue_count":222.0,"_pop_comment_count":373.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":97078,"_pop_score":78.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/notebook/master/README.md","_readme_localurl":"jupyter~notebook~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/notebook/master/setup.py","https://raw.githubusercontent.com/jupyter/notebook/master/pyproject.toml"],"_requirements_localurls":["jupyter~notebook~setup.py","jupyter~notebook~pyproject.toml"]},{"index":71,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest","_reponame":"pytest","_stars":9601,"_forks":2216,"_watches":195,"_topics":["unit-testing","test","testing","python","hacktoberfest"],"_language":"Python","_homepage":"https://pytest.org","_description":"pytest: The pytest framework makes it easy to write small tests, yet scales to support complex functional testing","_organization":"pytest-dev","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2015-06-15T00:00:00.000Z","_age_weeks":392,"_stars_per_week":24.49,"_pop_contributor_count":842,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["esss","freelancer,upforhire","merlinux","redhatinsights"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.56,"_pop_updated_issues_count":302,"_pop_closed_issues_count":217,"_pop_created_since_days":91,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":302.0,"_pop_comment_count":631.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":42749,"_pop_score":76.55,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest/master/README.rst","_readme_localurl":"pytest-dev~pytest~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest/master/setup.py","https://raw.githubusercontent.com/pytest-dev/pytest/master/pyproject.toml"],"_requirements_localurls":["pytest-dev~pytest~setup.py","pytest-dev~pytest~pyproject.toml"]},{"index":653,"category":"profiling","githuburl":"https://github.com/benfred/py-spy","featured":null,"links":null,"description":null,"_repopath":"benfred/py-spy","_reponame":"py-spy","_stars":9464,"_forks":344,"_watches":107,"_topics":["profiler","python","performance-analysis","profiling"],"_language":"Rust","_homepage":"","_description":"py-spy: Sampling profiler for Python programs","_organization":"benfred","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2018-08-01T00:00:00.000Z","_age_weeks":228,"_stars_per_week":41.38,"_pop_contributor_count":31,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.58,"_pop_updated_issues_count":29,"_pop_closed_issues_count":10,"_pop_created_since_days":53,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":29.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":156,"_pop_score":41.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/benfred/py-spy/master/README.md","_readme_localurl":"benfred~py-spy~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/benfred/py-spy/master/pyproject.toml"],"_requirements_localurls":["benfred~py-spy~pyproject.toml"]},{"index":225,"category":"util","githuburl":"https://github.com/pyodide/pyodide","featured":null,"links":null,"description":null,"_repopath":"pyodide/pyodide","_reponame":"pyodide","_stars":9408,"_forks":616,"_watches":124,"_topics":["python","webassembly"],"_language":"Python","_homepage":"https://pyodide.org/en/stable/","_description":"Pyodide is a Python distribution for the browser and Node.js based on WebAssembly","_organization":"pyodide","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-02-23T00:00:00.000Z","_age_weeks":251,"_stars_per_week":37.42,"_pop_contributor_count":159,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoft","mitmathdepartment"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.48,"_pop_updated_issues_count":288,"_pop_closed_issues_count":200,"_pop_created_since_days":59,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":289.0,"_pop_comment_count":724.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":60,"_pop_score":59.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyodide/pyodide/master/README.md","_readme_localurl":"pyodide~pyodide~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyodide/pyodide/master/requirements.txt","https://raw.githubusercontent.com/pyodide/pyodide/master/pyproject.toml"],"_requirements_localurls":["pyodide~pyodide~requirements.txt","pyodide~pyodide~pyproject.toml"]},{"index":412,"category":"util","githuburl":"https://github.com/pre-commit/pre-commit","featured":null,"links":null,"description":null,"_repopath":"pre-commit/pre-commit","_reponame":"pre-commit","_stars":9355,"_forks":689,"_watches":82,"_topics":["git","pre-commit","python","linter","refactoring"],"_language":"Python","_homepage":"https://pre-commit.com","_description":"pre-commit: A framework for managing and maintaining multi-language pre-commit hooks.","_organization":"pre-commit","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2014-03-13T00:00:00.000Z","_age_weeks":457,"_stars_per_week":20.44,"_pop_contributor_count":146,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["twitter","yelp"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.08,"_pop_updated_issues_count":155,"_pop_closed_issues_count":139,"_pop_created_since_days":107,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":20,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":155.0,"_pop_comment_count":361.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":1348,"_pop_score":60.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pre-commit/pre-commit/master/README.md","_readme_localurl":"pre-commit~pre-commit~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pre-commit/pre-commit/master/setup.py"],"_requirements_localurls":["pre-commit~pre-commit~setup.py"]},{"index":315,"category":"gui","githuburl":"https://github.com/hoffstadt/dearpygui","featured":null,"links":null,"description":null,"_repopath":"hoffstadt/dearpygui","_reponame":"DearPyGui","_stars":9255,"_forks":496,"_watches":136,"_topics":["cpp","python","imgui","toolkit","native","tools","gui","graphics","macos","linux","ui","python-gui","cross-platform","windows","dearpygui"],"_language":"C++","_homepage":"https://dearpygui.readthedocs.io/en/latest/","_description":"DearPyGui: Dear PyGui: A fast and powerful Graphical User Interface Toolkit for Python with minimal dependencies","_organization":"hoffstadt","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2020-05-28T00:00:00.000Z","_age_weeks":133,"_stars_per_week":69.29,"_pop_contributor_count":51,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["benoitpremiumthreading","metecs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.42,"_pop_updated_issues_count":131,"_pop_closed_issues_count":57,"_pop_created_since_days":31,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":131.0,"_pop_comment_count":131.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":64,"_pop_score":48.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hoffstadt/dearpygui/master/README.md","_readme_localurl":"hoffstadt~dearpygui~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hoffstadt/dearpygui/master/setup.py"],"_requirements_localurls":["hoffstadt~dearpygui~setup.py"]},{"index":155,"category":"data","githuburl":"https://github.com/s0md3v/photon","featured":null,"links":null,"description":null,"_repopath":"s0md3v/photon","_reponame":"Photon","_stars":9231,"_forks":1359,"_watches":324,"_topics":["crawler","spider","python","osint","information-gathering"],"_language":"Python","_homepage":"","_description":"Photon: Incredibly fast crawler designed for OSINT.","_organization":"s0md3v","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-03-16T00:00:00.000Z","_created_at":"2018-03-30T00:00:00.000Z","_age_weeks":246,"_stars_per_week":37.46,"_pop_contributor_count":21,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["na"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":57,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":3.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":52,"_pop_score":29.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/s0md3v/photon/master/README.md","_readme_localurl":"s0md3v~photon~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/s0md3v/photon/master/requirements.txt"],"_requirements_localurls":["s0md3v~photon~requirements.txt"]},{"index":655,"category":"util","githuburl":"https://github.com/magicstack/uvloop","featured":null,"links":null,"description":null,"_repopath":"magicstack/uvloop","_reponame":"uvloop","_stars":9071,"_forks":525,"_watches":226,"_topics":["asyncio","async-await","async","high-performance","libuv","python","python-3","event-loop","networking","async-python"],"_language":"Cython","_homepage":"","_description":"uvloop: Ultra fast asyncio event loop.","_organization":"magicstack","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-14T00:00:00.000Z","_created_at":"2015-11-08T00:00:00.000Z","_age_weeks":371,"_stars_per_week":24.44,"_pop_contributor_count":55,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["edgedb"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":26,"_pop_closed_issues_count":6,"_pop_created_since_days":87,"_pop_updated_since_days":3,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":26.0,"_pop_comment_count":37.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":569,"_pop_score":42.85,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/magicstack/uvloop/master/README.rst","_readme_localurl":"magicstack~uvloop~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/magicstack/uvloop/master/setup.py"],"_requirements_localurls":["magicstack~uvloop~setup.py"]},{"index":238,"category":"data","githuburl":"https://github.com/tiangolo/sqlmodel","featured":1.0,"links":null,"description":null,"_repopath":"tiangolo/sqlmodel","_reponame":"sqlmodel","_stars":9061,"_forks":385,"_watches":118,"_topics":["python","sql","sqlalchemy","pydantic","fastapi","json","json-schema"],"_language":"Python","_homepage":"https://sqlmodel.tiangolo.com/","_description":"sqlmodel: SQL databases in Python, designed for simplicity, compatibility, and robustness.","_organization":"tiangolo","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2021-08-24T00:00:00.000Z","_age_weeks":68,"_stars_per_week":131.59,"_pop_contributor_count":54,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.98,"_pop_updated_issues_count":137,"_pop_closed_issues_count":67,"_pop_created_since_days":16,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":137.0,"_pop_comment_count":308.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":42,"_pop_score":40.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/sqlmodel/master/README.md","_readme_localurl":"tiangolo~sqlmodel~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tiangolo/sqlmodel/master/pyproject.toml"],"_requirements_localurls":["tiangolo~sqlmodel~pyproject.toml"]},{"index":142,"category":"nlp","githuburl":"https://github.com/ukplab/sentence-transformers","featured":null,"links":null,"description":null,"_repopath":"ukplab/sentence-transformers","_reponame":"sentence-transformers","_stars":9012,"_forks":1796,"_watches":116,"_topics":[],"_language":"Python","_homepage":"https://www.SBERT.net","_description":"sentence-transformers: Multilingual Sentence & Image Embeddings with BERT","_organization":"ukplab","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2019-07-24T00:00:00.000Z","_age_weeks":177,"_stars_per_week":50.71,"_pop_contributor_count":106,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","telekom"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.02,"_pop_updated_issues_count":141,"_pop_closed_issues_count":44,"_pop_created_since_days":41,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":141.0,"_pop_comment_count":158.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":118,"_pop_score":47.89,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ukplab/sentence-transformers/master/README.md","_readme_localurl":"ukplab~sentence-transformers~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ukplab/sentence-transformers/master/requirements.txt","https://raw.githubusercontent.com/ukplab/sentence-transformers/master/setup.py"],"_requirements_localurls":["ukplab~sentence-transformers~requirements.txt","ukplab~sentence-transformers~setup.py"]},{"index":398,"category":"web","githuburl":"https://github.com/falconry/falcon","featured":null,"links":null,"description":null,"_repopath":"falconry/falcon","_reponame":"falcon","_stars":8978,"_forks":898,"_watches":266,"_topics":["python","framework","rest","microservices","web","api","http","wsgi","asgi","api-rest","hacktoberfest-accepted","hacktoberfest2022","hacktoberfest"],"_language":"Python","_homepage":"https://falcon.readthedocs.io/en/stable/","_description":"falcon: The no-magic web data plane API and microservices framework for Python developers, with a focus on reliability, correctness, and performance at scale.","_organization":"falconry","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2012-12-06T00:00:00.000Z","_age_weeks":523,"_stars_per_week":17.15,"_pop_contributor_count":195,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["centurylink","liquidweb"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.27,"_pop_updated_issues_count":43,"_pop_closed_issues_count":26,"_pop_created_since_days":122,"_pop_updated_since_days":1,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":43.0,"_pop_comment_count":67.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":39,"_pop_score":50.91,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/falconry/falcon/master/README.rst","_readme_localurl":"falconry~falcon~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/falconry/falcon/master/setup.py","https://raw.githubusercontent.com/falconry/falcon/master/pyproject.toml"],"_requirements_localurls":["falconry~falcon~setup.py","falconry~falcon~pyproject.toml"]},{"index":157,"category":"util","githuburl":"https://github.com/pallets/jinja","featured":null,"links":null,"description":null,"_repopath":"pallets/jinja","_reponame":"jinja","_stars":8940,"_forks":1529,"_watches":252,"_topics":["python","template-engine","jinja","jinja2","templates","pallets"],"_language":"Python","_homepage":"https://jinja.palletsprojects.com","_description":"jinja: A very fast and expressive template engine.","_organization":"pallets","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-01T00:00:00.000Z","_created_at":"2010-10-17T00:00:00.000Z","_age_weeks":635,"_stars_per_week":14.08,"_pop_contributor_count":302,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cern/indico","getsentry","sentry"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.25,"_pop_updated_issues_count":52,"_pop_closed_issues_count":31,"_pop_created_since_days":148,"_pop_updated_since_days":2,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":52.0,"_pop_comment_count":48.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":16433,"_pop_score":60.78,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/jinja/master/README.rst","_readme_localurl":"pallets~jinja~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/jinja/master/setup.py"],"_requirements_localurls":["pallets~jinja~setup.py"]},{"index":371,"category":"viz","githuburl":"https://github.com/marceloprates/prettymaps","featured":null,"links":null,"description":null,"_repopath":"marceloprates/prettymaps","_reponame":"prettymaps","_stars":8935,"_forks":428,"_watches":80,"_topics":["matplotlib","jupyter-notebook","python","generative-art","cartography","maps","openstreetmap"],"_language":"Jupyter Notebook","_homepage":"","_description":"prettymaps: A small set of Python functions to draw pretty maps from OpenStreetMap data. Based on osmnx, matplotlib and shapely libraries.","_organization":"marceloprates","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-16T00:00:00.000Z","_created_at":"2021-03-05T00:00:00.000Z","_age_weeks":93,"_stars_per_week":95.63,"_pop_contributor_count":15,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["up42"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":11,"_pop_closed_issues_count":6,"_pop_created_since_days":22,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":11.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":14,"_pop_score":29.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/marceloprates/prettymaps/master/README.md","_readme_localurl":"marceloprates~prettymaps~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/marceloprates/prettymaps/master/requirements.txt","https://raw.githubusercontent.com/marceloprates/prettymaps/master/setup.py"],"_requirements_localurls":["marceloprates~prettymaps~requirements.txt","marceloprates~prettymaps~setup.py"]},{"index":517,"category":"typing","githuburl":"https://github.com/microsoft/pyright","featured":null,"links":null,"description":null,"_repopath":"microsoft/pyright","_reponame":"pyright","_stars":8923,"_forks":644,"_watches":79,"_topics":[],"_language":"Python","_homepage":"","_description":"pyright: Static type checker for Python","_organization":"microsoft","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-03-12T00:00:00.000Z","_age_weeks":196,"_stars_per_week":45.33,"_pop_contributor_count":83,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoft","microsoftcorp."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":24.56,"_pop_updated_issues_count":372,"_pop_closed_issues_count":356,"_pop_created_since_days":46,"_pop_updated_since_days":0,"_pop_recent_releases_count":87,"_pop_recent_releases_estimated_tags":97,"_pop_recent_releases_adjusted_count":87,"_pop_issue_count":370.0,"_pop_comment_count":924.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":1392,"_pop_score":64.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/pyright/master/README.md","_readme_localurl":"microsoft~pyright~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":244,"category":"util","githuburl":"https://github.com/aws/serverless-application-model","featured":null,"links":null,"description":null,"_repopath":"aws/serverless-application-model","_reponame":"serverless-application-model","_stars":8855,"_forks":2275,"_watches":307,"_topics":["serverless","aws","lambda","aws-sam","sam","sam-specification","serverless-applications","serverless-application-model"],"_language":"Python","_homepage":"https://aws.amazon.com/serverless/sam","_description":"serverless-application-model: The AWS Serverless Application Model (AWS SAM) transform is a AWS CloudFormation macro that transforms SAM templates into CloudFormation templates.","_organization":"aws","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2016-10-10T00:00:00.000Z","_age_weeks":323,"_stars_per_week":27.41,"_pop_contributor_count":255,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aws","leland"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.06,"_pop_updated_issues_count":467,"_pop_closed_issues_count":322,"_pop_created_since_days":75,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":467.0,"_pop_comment_count":343.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":372,"_pop_score":60.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aws/serverless-application-model/master/README.md","_readme_localurl":"aws~serverless-application-model~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/aws/serverless-application-model/master/setup.py","https://raw.githubusercontent.com/aws/serverless-application-model/master/pyproject.toml"],"_requirements_localurls":["aws~serverless-application-model~setup.py","aws~serverless-application-model~pyproject.toml"]},{"index":132,"category":"ml","githuburl":"https://github.com/epistasislab/tpot","featured":null,"links":null,"description":null,"_repopath":"epistasislab/tpot","_reponame":"tpot","_stars":8846,"_forks":1504,"_watches":291,"_topics":["machine-learning","python","data-science","automl","automation","scikit-learn","hyperparameter-optimization","model-selection","parameter-tuning","automated-machine-learning","random-forest","gradient-boosting","feature-engineering","aiml","alzheimer","alzheimers","nia","u01ag066833","ag066833","adsp"],"_language":"Python","_homepage":"http://epistasislab.github.io/tpot/","_description":"tpot: A Python Automated Machine Learning tool that optimizes machine learning pipelines using genetic programming.","_organization":"epistasislab","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-07-29T00:00:00.000Z","_created_at":"2015-11-03T00:00:00.000Z","_age_weeks":371,"_stars_per_week":23.79,"_pop_contributor_count":112,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["children'shospitalofphiladelphia","eindhovenuniversityoftechnology","usc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.35,"_pop_updated_issues_count":15,"_pop_closed_issues_count":4,"_pop_created_since_days":87,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":15.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":20,"_pop_score":41.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/epistasislab/tpot/master/README.md","_readme_localurl":"epistasislab~tpot~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/epistasislab/tpot/master/requirements.txt","https://raw.githubusercontent.com/epistasislab/tpot/master/setup.py"],"_requirements_localurls":["epistasislab~tpot~requirements.txt","epistasislab~tpot~setup.py"]},{"index":780,"category":"diffusion","githuburl":"https://github.com/huggingface/diffusers","featured":null,"links":null,"description":null,"_repopath":"huggingface/diffusers","_reponame":"diffusers","_stars":8780,"_forks":1520,"_watches":99,"_topics":["deep-learning","diffusion","image-generation","pytorch","score-based-generative-modeling","image2image","text2image","stable-diffusion","hacktoberfest"],"_language":"Python","_homepage":"https://huggingface.co/docs/diffusers","_description":"\ud83e\udd17 Diffusers: State-of-the-art diffusion models for image and audio generation in PyTorch","_organization":"huggingface","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2022-05-30T00:00:00.000Z","_age_weeks":29,"_stars_per_week":302.76,"_pop_contributor_count":159,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":26.25,"_pop_updated_issues_count":1315,"_pop_closed_issues_count":1033,"_pop_created_since_days":7,"_pop_updated_since_days":0,"_pop_recent_releases_count":23,"_pop_recent_releases_estimated_tags":49,"_pop_recent_releases_adjusted_count":23,"_pop_issue_count":1315.0,"_pop_comment_count":5140.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.9,"_pop_dependents_count":5139,"_pop_score":65.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/diffusers/master/README.md","_readme_localurl":"huggingface~diffusers~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/diffusers/master/setup.py","https://raw.githubusercontent.com/huggingface/diffusers/master/pyproject.toml"],"_requirements_localurls":["huggingface~diffusers~setup.py","huggingface~diffusers~pyproject.toml"]},{"index":5,"category":"web","githuburl":"https://github.com/benoitc/gunicorn","featured":null,"links":null,"description":null,"_repopath":"benoitc/gunicorn","_reponame":"gunicorn","_stars":8684,"_forks":1619,"_watches":234,"_topics":["http-server","http","python","wsgi-server","wsgi"],"_language":"Python","_homepage":"http://www.gunicorn.org","_description":"gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications.","_organization":"benoitc","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2009-11-30T00:00:00.000Z","_age_weeks":681,"_stars_per_week":12.75,"_pop_contributor_count":380,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["confluentinc","enkimultimedia","nytimes"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.5,"_pop_updated_issues_count":167,"_pop_closed_issues_count":90,"_pop_created_since_days":159,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":167.0,"_pop_comment_count":184.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":2114,"_pop_score":62.92,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/benoitc/gunicorn/master/README.rst","_readme_localurl":"benoitc~gunicorn~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/benoitc/gunicorn/master/setup.py"],"_requirements_localurls":["benoitc~gunicorn~setup.py"]},{"index":134,"category":"ml-dl","githuburl":"https://github.com/keras-team/autokeras","featured":null,"links":null,"description":null,"_repopath":"keras-team/autokeras","_reponame":"autokeras","_stars":8681,"_forks":1385,"_watches":306,"_topics":["automl","neural-architecture-search","automated-machine-learning","python","deep-learning","machine-learning","autodl","tensorflow","keras"],"_language":"Python","_homepage":"http://autokeras.com/","_description":"autokeras: AutoML library for deep learning","_organization":"keras-team","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-11-19T00:00:00.000Z","_age_weeks":265,"_stars_per_week":32.74,"_pop_contributor_count":139,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["keras-teamtensorflowgooglers","preligens"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.6,"_pop_updated_issues_count":47,"_pop_closed_issues_count":28,"_pop_created_since_days":62,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":47.0,"_pop_comment_count":42.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":3,"_pop_score":43.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/keras-team/autokeras/master/README.md","_readme_localurl":"keras-team~autokeras~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/keras-team/autokeras/master/setup.py"],"_requirements_localurls":["keras-team~autokeras~setup.py"]},{"index":92,"category":"ml-ops","githuburl":"https://github.com/uber/ludwig","featured":null,"links":null,"description":null,"_repopath":"uber/ludwig","_reponame":"ludwig","_stars":8670,"_forks":1024,"_watches":181,"_topics":["deep-learning","deeplearning","deep","learning","machine-learning","machinelearning","machine","natural-language-processing","natural-language","computer-vision","data-centric","data-science","python","pytorch","neural-network","ml","datascience"],"_language":"Python","_homepage":"http://ludwig.ai","_description":"ludwig: Data-centric declarative deep learning framework","_organization":"uber","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-12-27T00:00:00.000Z","_age_weeks":207,"_stars_per_week":41.77,"_pop_contributor_count":130,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["predibase","uber"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.54,"_pop_updated_issues_count":383,"_pop_closed_issues_count":334,"_pop_created_since_days":48,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":383.0,"_pop_comment_count":479.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":54,"_pop_score":57.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/uber/ludwig/master/README.md","_readme_localurl":"uber~ludwig~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/ludwig/master/requirements.txt","https://raw.githubusercontent.com/uber/ludwig/master/setup.py","https://raw.githubusercontent.com/uber/ludwig/master/pyproject.toml"],"_requirements_localurls":["uber~ludwig~requirements.txt","uber~ludwig~setup.py","uber~ludwig~pyproject.toml"]},{"index":759,"category":"diffusion","githuburl":"https://github.com/invoke-ai/invokeai","featured":null,"links":null,"description":null,"_repopath":"invoke-ai/invokeai","_reponame":"InvokeAI","_stars":8507,"_forks":960,"_watches":102,"_topics":["ai-art","artificial-intelligence","generative-art","image-generation","img2img","inpainting","latent-diffusion","linux","macos","outpainting","txt2img","windows","stable-diffusion"],"_language":"Jupyter Notebook","_homepage":"https://invoke-ai.github.io/InvokeAI/","_description":"InvokeAI: This version of Stable Diffusion features a slick WebGUI, an interactive command-line script that combines text2img and img2img functionality in a \"dream bot\" style interface, and multiple features and other enhancements. For more info, see the website link below.","_organization":"invoke-ai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2022-08-17T00:00:00.000Z","_age_weeks":17,"_stars_per_week":480.23,"_pop_contributor_count":146,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ares-consulting","ontarioinstituteforcancerresearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":34.5,"_pop_updated_issues_count":1312,"_pop_closed_issues_count":1023,"_pop_created_since_days":4,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":195,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":1312.0,"_pop_comment_count":5106.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.9,"_pop_dependents_count":230,"_pop_score":60.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/invoke-ai/invokeai/master/README.md","_readme_localurl":"invoke-ai~invokeai~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/invoke-ai/invokeai/master/setup.py"],"_requirements_localurls":["invoke-ai~invokeai~setup.py"]},{"index":523,"category":"ml-dl","githuburl":"https://github.com/lucidrains/dalle2-pytorch","featured":null,"links":null,"description":null,"_repopath":"lucidrains/dalle2-pytorch","_reponame":"DALLE2-pytorch","_stars":8496,"_forks":692,"_watches":113,"_topics":["artificial-intelligence","deep-learning","text-to-image"],"_language":"Python","_homepage":"","_description":"DALLE2-pytorch: Implementation of DALL-E 2, OpenAI's updated text-to-image synthesis neural network, in Pytorch","_organization":"lucidrains","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2022-04-07T00:00:00.000Z","_age_weeks":36,"_stars_per_week":232.31,"_pop_contributor_count":16,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.19,"_pop_updated_issues_count":32,"_pop_closed_issues_count":18,"_pop_created_since_days":8,"_pop_updated_since_days":0,"_pop_recent_releases_count":332,"_pop_recent_releases_estimated_tags":514,"_pop_recent_releases_adjusted_count":332,"_pop_issue_count":32.0,"_pop_comment_count":52.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":50,"_pop_score":38.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lucidrains/dalle2-pytorch/master/README.md","_readme_localurl":"lucidrains~dalle2-pytorch~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lucidrains/dalle2-pytorch/master/setup.py"],"_requirements_localurls":["lucidrains~dalle2-pytorch~setup.py"]},{"index":151,"category":"nlp","githuburl":"https://github.com/sloria/textblob","featured":null,"links":null,"description":null,"_repopath":"sloria/textblob","_reponame":"TextBlob","_stars":8388,"_forks":1100,"_watches":270,"_topics":["nlp","nltk","pattern","python","python-3","python-2","natural-language-processing"],"_language":"Python","_homepage":"https://textblob.readthedocs.io/","_description":"TextBlob: Simple, Pythonic, text processing--Sentiment analysis, part-of-speech tagging, noun phrase extraction, translation, and more.","_organization":"sloria","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-10-22T00:00:00.000Z","_created_at":"2013-06-30T00:00:00.000Z","_age_weeks":494,"_stars_per_week":16.97,"_pop_contributor_count":36,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","urbaninfrastructure"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":115,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":38,"_pop_score":31.9,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sloria/textblob/master/README.rst","_readme_localurl":"sloria~textblob~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sloria/textblob/master/setup.py"],"_requirements_localurls":["sloria~textblob~setup.py"]},{"index":100,"category":"nlp","githuburl":"https://github.com/clips/pattern","featured":null,"links":null,"description":null,"_repopath":"clips/pattern","_reponame":"pattern","_stars":8371,"_forks":1594,"_watches":548,"_topics":["python","machine-learning","natural-language-processing","web-mining","wordnet","sentiment-analysis","network-analysis"],"_language":"Python","_homepage":"https://github.com/clips/pattern/wiki","_description":"pattern: Web mining module for Python, with tools for scraping, natural language processing, machine learning, network analysis and visualization.","_organization":"clips","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-04-25T00:00:00.000Z","_created_at":"2011-05-03T00:00:00.000Z","_age_weeks":606,"_stars_per_week":13.79,"_pop_contributor_count":30,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["twitter-research"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":6,"_pop_closed_issues_count":2,"_pop_created_since_days":142,"_pop_updated_since_days":32,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":6.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":293,"_pop_score":31.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/clips/pattern/master/README.md","_readme_localurl":"clips~pattern~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/clips/pattern/master/setup.py"],"_requirements_localurls":["clips~pattern~setup.py"]},{"index":126,"category":"ml-dl","githuburl":"https://github.com/microsoft/deepspeed","featured":null,"links":null,"description":null,"_repopath":"microsoft/deepspeed","_reponame":"DeepSpeed","_stars":8355,"_forks":985,"_watches":144,"_topics":["deep-learning","pytorch","gpu","machine-learning","billion-parameters","data-parallelism","model-parallelism","inference","pipeline-parallelism","compression","mixture-of-experts","trillion-parameters","zero"],"_language":"Python","_homepage":"https://www.deepspeed.ai/","_description":"DeepSpeed is a deep learning optimization library that makes distributed training and inference easy, efficient, and effective.","_organization":"microsoft","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2020-01-23T00:00:00.000Z","_age_weeks":151,"_stars_per_week":55.12,"_pop_contributor_count":148,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoft","stasosphereonline"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.46,"_pop_updated_issues_count":386,"_pop_closed_issues_count":270,"_pop_created_since_days":35,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":386.0,"_pop_comment_count":708.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":150,"_pop_score":58.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/deepspeed/master/README.md","_readme_localurl":"microsoft~deepspeed~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/deepspeed/master/setup.py"],"_requirements_localurls":["microsoft~deepspeed~setup.py"]},{"index":282,"category":"util","githuburl":"https://github.com/arrow-py/arrow","featured":null,"links":null,"description":null,"_repopath":"arrow-py/arrow","_reponame":"arrow","_stars":8167,"_forks":636,"_watches":134,"_topics":["python","arrow","datetime","date","time","timestamp","timezones","hacktoberfest"],"_language":"Python","_homepage":"https://arrow.readthedocs.io","_description":"arrow: \ud83c\udff9 Better dates & times for Python","_organization":"arrow-py","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-15T00:00:00.000Z","_created_at":"2012-11-18T00:00:00.000Z","_age_weeks":526,"_stars_per_week":15.52,"_pop_contributor_count":268,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.73,"_pop_updated_issues_count":28,"_pop_closed_issues_count":11,"_pop_created_since_days":123,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":28.0,"_pop_comment_count":46.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":943,"_pop_score":51.47,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/arrow-py/arrow/master/README.rst","_readme_localurl":"arrow-py~arrow~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/arrow-py/arrow/master/setup.py"],"_requirements_localurls":["arrow-py~arrow~setup.py"]},{"index":125,"category":"perf","githuburl":"https://github.com/modin-project/modin","featured":null,"links":null,"description":null,"_repopath":"modin-project/modin","_reponame":"modin","_stars":8151,"_forks":584,"_watches":110,"_topics":["dataframe","pandas","distributed","datascience","modin","sql","python","analytics","data-science","hacktoberfest"],"_language":"Python","_homepage":"http://modin.readthedocs.io","_description":"Modin: Scale your Pandas workflows by changing a single line of code","_organization":"modin-project","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-06-21T00:00:00.000Z","_age_weeks":234,"_stars_per_week":34.75,"_pop_contributor_count":109,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ponder","ponder.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.44,"_pop_updated_issues_count":815,"_pop_closed_issues_count":505,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":815.0,"_pop_comment_count":1026.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":22,"_pop_score":55.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/modin-project/modin/master/README.md","_readme_localurl":"modin-project~modin~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/modin-project/modin/master/setup.py"],"_requirements_localurls":["modin-project~modin~setup.py"]},{"index":53,"category":"perf","githuburl":"https://github.com/numba/numba","featured":null,"links":null,"description":null,"_repopath":"numba/numba","_reponame":"numba","_stars":8074,"_forks":983,"_watches":205,"_topics":["python","numpy","llvm","compiler","cuda","parallel"],"_language":"Python","_homepage":"http://numba.pydata.org/","_description":"numba: NumPy aware dynamic Python compiler using LLVM","_organization":"numba","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2012-03-08T00:00:00.000Z","_age_weeks":562,"_stars_per_week":14.35,"_pop_contributor_count":327,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mlabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":29.77,"_pop_updated_issues_count":388,"_pop_closed_issues_count":197,"_pop_created_since_days":131,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":388.0,"_pop_comment_count":1032.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":4467,"_pop_score":69.11,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/numba/numba/master/README.rst","_readme_localurl":"numba~numba~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/numba/numba/master/requirements.txt","https://raw.githubusercontent.com/numba/numba/master/setup.py"],"_requirements_localurls":["numba~numba~requirements.txt","numba~numba~setup.py"]},{"index":294,"category":"util","githuburl":"https://github.com/paramiko/paramiko","featured":null,"links":null,"description":null,"_repopath":"paramiko/paramiko","_reponame":"paramiko","_stars":8042,"_forks":1887,"_watches":320,"_topics":[],"_language":"Python","_homepage":"http://paramiko.org","_description":"paramiko: The leading native Python SSHv2 protocol library.","_organization":"paramiko","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2009-02-02T00:00:00.000Z","_age_weeks":724,"_stars_per_week":11.11,"_pop_contributor_count":177,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["codecobblers,inc","healthbyro","jumptrading"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.71,"_pop_updated_issues_count":93,"_pop_closed_issues_count":36,"_pop_created_since_days":169,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":93.0,"_pop_comment_count":204.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":2010,"_pop_score":61.79,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/paramiko/paramiko/master/README.rst","_readme_localurl":"paramiko~paramiko~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/paramiko/paramiko/master/setup.py"],"_requirements_localurls":["paramiko~paramiko~setup.py"]},{"index":84,"category":"ml","githuburl":"https://github.com/statsmodels/statsmodels","featured":null,"links":null,"description":null,"_repopath":"statsmodels/statsmodels","_reponame":"statsmodels","_stars":8013,"_forks":2627,"_watches":272,"_topics":["python","statistics","econometrics","data-analysis","generalized-linear-models","timeseries-analysis","regression-models","count-model","data-science","forecasting","hypothesis-testing","prediction","robust-estimation"],"_language":"Python","_homepage":"http://www.statsmodels.org/devel/","_description":"Statsmodels: statistical modeling and econometrics in Python","_organization":"statsmodels","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2011-06-12T00:00:00.000Z","_age_weeks":601,"_stars_per_week":13.33,"_pop_contributor_count":402,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["hcahealthcare"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.0,"_pop_updated_issues_count":450,"_pop_closed_issues_count":237,"_pop_created_since_days":140,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":450.0,"_pop_comment_count":623.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":1144,"_pop_score":62.27,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/statsmodels/statsmodels/master/README.rst","_readme_localurl":"statsmodels~statsmodels~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/statsmodels/statsmodels/master/requirements.txt","https://raw.githubusercontent.com/statsmodels/statsmodels/master/setup.py","https://raw.githubusercontent.com/statsmodels/statsmodels/master/pyproject.toml"],"_requirements_localurls":["statsmodels~statsmodels~requirements.txt","statsmodels~statsmodels~setup.py","statsmodels~statsmodels~pyproject.toml"]},{"index":128,"category":"viz","githuburl":"https://github.com/altair-viz/altair","featured":null,"links":null,"description":null,"_repopath":"altair-viz/altair","_reponame":"altair","_stars":7936,"_forks":710,"_watches":150,"_topics":[],"_language":"Python","_homepage":"https://altair-viz.github.io/","_description":"altair: Declarative statistical visualization library for Python","_organization":"altair-viz","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2015-09-19T00:00:00.000Z","_age_weeks":378,"_stars_per_week":20.98,"_pop_contributor_count":147,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","google","losangelestimesandstanford'sbiglocalnews"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.27,"_pop_updated_issues_count":112,"_pop_closed_issues_count":69,"_pop_created_since_days":88,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":112.0,"_pop_comment_count":374.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.3,"_pop_dependents_count":95,"_pop_score":55.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/altair-viz/altair/master/README.md","_readme_localurl":"altair-viz~altair~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/altair-viz/altair/master/requirements.txt","https://raw.githubusercontent.com/altair-viz/altair/master/setup.py","https://raw.githubusercontent.com/altair-viz/altair/master/pyproject.toml"],"_requirements_localurls":["altair-viz~altair~requirements.txt","altair-viz~altair~setup.py","altair-viz~altair~pyproject.toml"]},{"index":116,"category":"ml-ops","githuburl":"https://github.com/kedro-org/kedro","featured":null,"links":"From: https://github.com/quantumblacklabs/kedro","description":null,"_repopath":"kedro-org/kedro","_reponame":"kedro","_stars":7893,"_forks":741,"_watches":102,"_topics":["pipeline","kedro","hacktoberfest","mlops","experiment-tracking","python","machine-learning"],"_language":"Python","_homepage":"https://kedro.org","_description":"kedro: A Python framework for creating reproducible, maintainable and modular data science code.","_organization":"kedro-org","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2019-04-18T00:00:00.000Z","_age_weeks":191,"_stars_per_week":41.2,"_pop_contributor_count":176,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quantumblack","softwareengineeratquantumblacklabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.88,"_pop_updated_issues_count":366,"_pop_closed_issues_count":212,"_pop_created_since_days":45,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":366.0,"_pop_comment_count":529.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":9,"_pop_score":51.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kedro-org/kedro/master/README.md","_readme_localurl":"kedro-org~kedro~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/kedro-org/kedro/master/setup.py","https://raw.githubusercontent.com/kedro-org/kedro/master/pyproject.toml"],"_requirements_localurls":["kedro-org~kedro~setup.py","kedro-org~kedro~pyproject.toml"]},{"index":706,"category":"sim","githuburl":"https://github.com/isl-org/open3d","featured":null,"links":null,"description":null,"_repopath":"isl-org/open3d","_reponame":"Open3D","_stars":7821,"_forks":1838,"_watches":170,"_topics":["mesh-processing","computer-graphics","opengl","cpp","python","reconstruction","odometry","visualization","registration","machine-learning","3d","pointcloud","rendering","gui","3d-perception","gpu","arm","cuda","pytorch","tensorflow"],"_language":"C++","_homepage":"http://www.open3d.org","_description":"Open3D: A Modern Library for 3D Data Processing","_organization":"isl-org","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2016-12-02T00:00:00.000Z","_age_weeks":315,"_stars_per_week":24.79,"_pop_contributor_count":175,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["formatechnologies","hku-cs","postech"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.5,"_pop_updated_issues_count":345,"_pop_closed_issues_count":128,"_pop_created_since_days":74,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":345.0,"_pop_comment_count":419.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":11,"_pop_score":52.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/isl-org/open3d/master/README.md","_readme_localurl":"isl-org~open3d~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":7,"category":"util","githuburl":"https://github.com/boto/boto3","featured":null,"links":null,"description":null,"_repopath":"boto/boto3","_reponame":"boto3","_stars":7770,"_forks":1691,"_watches":239,"_topics":["python","aws","cloud","cloud-management","aws-sdk"],"_language":"Python","_homepage":"https://aws.amazon.com/sdk-for-python/","_description":"boto3: AWS SDK for Python","_organization":"boto","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2014-10-03T00:00:00.000Z","_age_weeks":428,"_stars_per_week":18.14,"_pop_contributor_count":139,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","istreamplanet"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.92,"_pop_updated_issues_count":326,"_pop_closed_issues_count":182,"_pop_created_since_days":100,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":147,"_pop_recent_releases_adjusted_count":147,"_pop_issue_count":326.0,"_pop_comment_count":432.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":28646,"_pop_score":69.85,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/boto/boto3/master/README.rst","_readme_localurl":"boto~boto3~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/boto/boto3/master/requirements.txt","https://raw.githubusercontent.com/boto/boto3/master/setup.py","https://raw.githubusercontent.com/boto/boto3/master/pyproject.toml"],"_requirements_localurls":["boto~boto3~requirements.txt","boto~boto3~setup.py","boto~boto3~pyproject.toml"]},{"index":29,"category":"ml-ops","githuburl":"https://github.com/great-expectations/great_expectations","featured":null,"links":null,"description":null,"_repopath":"great-expectations/great_expectations","_reponame":"great_expectations","_stars":7751,"_forks":1156,"_watches":69,"_topics":["pipeline-tests","dataquality","datacleaning","datacleaner","data-science","data-profiling","pipeline","pipeline-testing","cleandata","dataunittest","data-unit-tests","eda","exploratory-data-analysis","exploratory-analysis","exploratorydataanalysis","data-quality","data-engineering","pipeline-debt","data-profilers","mlops"],"_language":"Python","_homepage":"https://docs.greatexpectations.io/","_description":"great_expectations: Always know what to expect from your data.","_organization":"great-expectations","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2017-09-11T00:00:00.000Z","_age_weeks":275,"_stars_per_week":28.19,"_pop_contributor_count":342,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["superconductive"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":35.42,"_pop_updated_issues_count":638,"_pop_closed_issues_count":516,"_pop_created_since_days":64,"_pop_updated_since_days":0,"_pop_recent_releases_count":58,"_pop_recent_releases_estimated_tags":41,"_pop_recent_releases_adjusted_count":58,"_pop_issue_count":638.0,"_pop_comment_count":1340.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":158,"_pop_score":64.44,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/great-expectations/great_expectations/master/README.md","_readme_localurl":"great-expectations~great_expectations~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/great-expectations/great_expectations/master/requirements.txt","https://raw.githubusercontent.com/great-expectations/great_expectations/master/setup.py","https://raw.githubusercontent.com/great-expectations/great_expectations/master/pyproject.toml"],"_requirements_localurls":["great-expectations~great_expectations~requirements.txt","great-expectations~great_expectations~setup.py","great-expectations~great_expectations~pyproject.toml"]},{"index":422,"category":"ml-dl","githuburl":"https://github.com/pyro-ppl/pyro","featured":null,"links":null,"description":null,"_repopath":"pyro-ppl/pyro","_reponame":"pyro","_stars":7715,"_forks":940,"_watches":203,"_topics":["python","pytorch","machine-learning","bayesian","probabilistic-programming","bayesian-inference","variational-inference","probabilistic-modeling","deep-learning"],"_language":"Python","_homepage":"http://pyro.ai","_description":"pyro: Deep universal probabilistic programming with Python and PyTorch","_organization":"pyro-ppl","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2017-06-16T00:00:00.000Z","_age_weeks":287,"_stars_per_week":26.84,"_pop_contributor_count":130,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","generatebiomedicines","meta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.35,"_pop_updated_issues_count":37,"_pop_closed_issues_count":24,"_pop_created_since_days":67,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":37.0,"_pop_comment_count":44.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":106,"_pop_score":51.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyro-ppl/pyro/master/README.md","_readme_localurl":"pyro-ppl~pyro~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyro-ppl/pyro/master/setup.py"],"_requirements_localurls":["pyro-ppl~pyro~setup.py"]},{"index":394,"category":"web","githuburl":"https://github.com/encode/starlette","featured":null,"links":null,"description":null,"_repopath":"encode/starlette","_reponame":"starlette","_stars":7692,"_forks":693,"_watches":112,"_topics":["python","async","websockets","graphql","http"],"_language":"Python","_homepage":"https://www.starlette.io/","_description":"starlette: The little ASGI framework that shines. \ud83c\udf1f","_organization":"encode","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2018-06-25T00:00:00.000Z","_age_weeks":234,"_stars_per_week":32.87,"_pop_contributor_count":217,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["encode","encodeoss"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.56,"_pop_updated_issues_count":129,"_pop_closed_issues_count":96,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":27,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":129.0,"_pop_comment_count":273.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":1476,"_pop_score":62.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/encode/starlette/master/README.md","_readme_localurl":"encode~starlette~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/encode/starlette/master/requirements.txt","https://raw.githubusercontent.com/encode/starlette/master/setup.py","https://raw.githubusercontent.com/encode/starlette/master/pyproject.toml"],"_requirements_localurls":["encode~starlette~requirements.txt","encode~starlette~setup.py","encode~starlette~pyproject.toml"]},{"index":367,"category":"ml","githuburl":"https://github.com/megvii-basedetection/yolox","featured":null,"links":null,"description":null,"_repopath":"megvii-basedetection/yolox","_reponame":"YOLOX","_stars":7687,"_forks":1837,"_watches":72,"_topics":["yolox","yolov3","onnx","tensorrt","ncnn","openvino","pytorch","megengine","object-detection","yolo","deep-learning"],"_language":"Python","_homepage":"","_description":"YOLOX is a high-performance anchor-free YOLO, exceeding yolov3~v5 with MegEngine, ONNX, TensorRT, ncnn, and OpenVINO supported. Documentation: https://yolox.readthedocs.io/","_organization":"megvii-basedetection","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2021-07-17T00:00:00.000Z","_age_weeks":74,"_stars_per_week":103.48,"_pop_contributor_count":67,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["markany","megvii-basedetection","megviibasedetection","wandb"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.92,"_pop_updated_issues_count":122,"_pop_closed_issues_count":50,"_pop_created_since_days":17,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":122.0,"_pop_comment_count":147.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":10,"_pop_score":43.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/megvii-basedetection/yolox/master/README.md","_readme_localurl":"megvii-basedetection~yolox~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/megvii-basedetection/yolox/master/requirements.txt","https://raw.githubusercontent.com/megvii-basedetection/yolox/master/setup.py"],"_requirements_localurls":["megvii-basedetection~yolox~requirements.txt","megvii-basedetection~yolox~setup.py"]},{"index":495,"category":"data","githuburl":"https://github.com/duckdb/duckdb","featured":1.0,"links":null,"description":null,"_repopath":"duckdb/duckdb","_reponame":"duckdb","_stars":7647,"_forks":730,"_watches":115,"_topics":["sql","database","olap","analytics","embedded-database"],"_language":"C++","_homepage":"http://www.duckdb.org","_description":"DuckDB is an in-process SQL OLAP Database Management System","_organization":"duckdb","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-06-26T00:00:00.000Z","_age_weeks":233,"_stars_per_week":32.7,"_pop_contributor_count":215,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cwi","duckdblabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":131.92,"_pop_updated_issues_count":1149,"_pop_closed_issues_count":956,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":1150.0,"_pop_comment_count":1990.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":349,"_pop_score":66.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/duckdb/duckdb/master/README.md","_readme_localurl":"duckdb~duckdb~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":815,"category":"ml-dl","githuburl":"https://github.com/danielgatis/rembg","featured":null,"links":null,"description":null,"_repopath":"danielgatis/rembg","_reponame":"rembg","_stars":7640,"_forks":969,"_watches":99,"_topics":["image-processing","background-removal","python"],"_language":"Python","_homepage":"","_description":"Rembg is a tool to remove images background.","_organization":"danielgatis","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2020-08-10T00:00:00.000Z","_age_weeks":123,"_stars_per_week":62.11,"_pop_contributor_count":32,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["christianclauss"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.35,"_pop_updated_issues_count":73,"_pop_closed_issues_count":51,"_pop_created_since_days":29,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":73.0,"_pop_comment_count":149.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":18,"_pop_score":44.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/danielgatis/rembg/master/README.md","_readme_localurl":"danielgatis~rembg~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/danielgatis/rembg/master/requirements.txt","https://raw.githubusercontent.com/danielgatis/rembg/master/setup.py","https://raw.githubusercontent.com/danielgatis/rembg/master/pyproject.toml"],"_requirements_localurls":["danielgatis~rembg~requirements.txt","danielgatis~rembg~setup.py","danielgatis~rembg~pyproject.toml"]},{"index":615,"category":"testing","githuburl":"https://github.com/robotframework/robotframework","featured":null,"links":null,"description":null,"_repopath":"robotframework/robotframework","_reponame":"robotframework","_stars":7635,"_forks":2052,"_watches":483,"_topics":["robotframework","testing","automation","testautomation","attd","bdd","rpa","python"],"_language":"Python","_homepage":"http://robotframework.org","_description":"robotframework: Generic automation framework for acceptance testing and RPA","_organization":"robotframework","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2014-06-27T00:00:00.000Z","_age_weeks":442,"_stars_per_week":17.26,"_pop_contributor_count":172,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["eligaoy","reaktor"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.92,"_pop_updated_issues_count":157,"_pop_closed_issues_count":94,"_pop_created_since_days":103,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":157.0,"_pop_comment_count":321.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":1572,"_pop_score":64.57,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/robotframework/robotframework/master/README.rst","_readme_localurl":"robotframework~robotframework~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/robotframework/robotframework/master/setup.py"],"_requirements_localurls":["robotframework~robotframework~setup.py"]},{"index":95,"category":"perf","githuburl":"https://github.com/vaexio/vaex","featured":null,"links":null,"description":null,"_repopath":"vaexio/vaex","_reponame":"vaex","_stars":7633,"_forks":581,"_watches":144,"_topics":["dataframe","python","bigdata","tabular-data","visualization","memory-mapped-file","hdf5","machine-learning","machinelearning","data-science","pyarrow"],"_language":"Python","_homepage":"https://vaex.io","_description":"vaex: Out-of-Core hybrid Apache Arrow/NumPy DataFrame for Python, ML, visualization and exploration of big tabular data at a billion rows per second \ud83d\ude80","_organization":"vaexio","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-08T00:00:00.000Z","_created_at":"2014-09-27T00:00:00.000Z","_age_weeks":429,"_stars_per_week":17.78,"_pop_contributor_count":72,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["maartenbreddels","rungalileo","xdss"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.52,"_pop_updated_issues_count":131,"_pop_closed_issues_count":68,"_pop_created_since_days":100,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":44,"_pop_recent_releases_adjusted_count":44,"_pop_issue_count":131.0,"_pop_comment_count":263.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":29,"_pop_score":55.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vaexio/vaex/master/README.md","_readme_localurl":"vaexio~vaex~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/vaexio/vaex/master/setup.py"],"_requirements_localurls":["vaexio~vaex~setup.py"]},{"index":10,"category":"util","githuburl":"https://github.com/cython/cython","featured":null,"links":null,"description":null,"_repopath":"cython/cython","_reponame":"cython","_stars":7517,"_forks":1345,"_watches":230,"_topics":["python","cython","cpython","cpython-extensions","c","cpp","performance","big-data"],"_language":"Python","_homepage":"https://cython.org","_description":"cython: The most widely used Python to C compiler","_organization":"cython","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2010-11-21T00:00:00.000Z","_age_weeks":630,"_stars_per_week":11.93,"_pop_contributor_count":489,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ecrcatkaust","mlabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.35,"_pop_updated_issues_count":222,"_pop_closed_issues_count":136,"_pop_created_since_days":147,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":222.0,"_pop_comment_count":496.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":4115,"_pop_score":69.16,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/cython/cython/master/README.rst","_readme_localurl":"cython~cython~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/cython/cython/master/setup.py"],"_requirements_localurls":["cython~cython~setup.py"]},{"index":440,"category":"ml-dl","githuburl":"https://github.com/kornia/kornia","featured":null,"links":null,"description":null,"_repopath":"kornia/kornia","_reponame":"kornia","_stars":7514,"_forks":753,"_watches":118,"_topics":["computer-vision","image-processing","machine-learning","pytorch","deep-learning","neural-network","python","artificial-intelligence"],"_language":"Python","_homepage":"https://kornia.github.io/kornia/","_description":"kornia: Open Source Differentiable Computer Vision Library","_organization":"kornia","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-08-22T00:00:00.000Z","_age_weeks":225,"_stars_per_week":33.29,"_pop_contributor_count":195,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["computervisioncenter","czechtechnicaluniversityinprague","kaust","kornia.org"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.37,"_pop_updated_issues_count":236,"_pop_closed_issues_count":174,"_pop_created_since_days":53,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":236.0,"_pop_comment_count":411.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":103,"_pop_score":59.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kornia/kornia/master/README.md","_readme_localurl":"kornia~kornia~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/kornia/kornia/master/setup.py","https://raw.githubusercontent.com/kornia/kornia/master/pyproject.toml"],"_requirements_localurls":["kornia~kornia~setup.py","kornia~kornia~pyproject.toml"]},{"index":322,"category":"web","githuburl":"https://github.com/graphql-python/graphene","featured":null,"links":null,"description":null,"_repopath":"graphql-python/graphene","_reponame":"graphene","_stars":7496,"_forks":804,"_watches":146,"_topics":["graphql","python","relay","framework","graphene"],"_language":"Python","_homepage":"http://graphene-python.org/","_description":"graphene: GraphQL framework for Python","_organization":"graphql-python","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2015-09-24T00:00:00.000Z","_age_weeks":377,"_stars_per_week":19.85,"_pop_contributor_count":194,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["wasmerio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.79,"_pop_updated_issues_count":49,"_pop_closed_issues_count":34,"_pop_created_since_days":88,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":49.0,"_pop_comment_count":110.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":1177,"_pop_score":55.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/graphql-python/graphene/master/README.md","_readme_localurl":"graphql-python~graphene~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/graphql-python/graphene/master/setup.py"],"_requirements_localurls":["graphql-python~graphene~setup.py"]},{"index":470,"category":"nlp","githuburl":"https://github.com/microsoft/unilm","featured":null,"links":null,"description":null,"_repopath":"microsoft/unilm","_reponame":"unilm","_stars":7463,"_forks":1365,"_watches":178,"_topics":["nlp","language-understanding","language-generation","pre-trained-model","small-pre-trained-model","unilm","minilm","layoutlm","infoxlm","multimodal-pre-trained-model","layoutxlm","beit","document-ai","trocr","wavlm","beit-3","foundation-models","xlm-e","deepnet","document-foundation-model"],"_language":"Python","_homepage":"https://aka.ms/nlpagi","_description":"unilm: Large-scale Self-supervised Pre-training Across Tasks, Languages, and Modalities","_organization":"microsoft","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2019-07-23T00:00:00.000Z","_age_weeks":177,"_stars_per_week":41.96,"_pop_contributor_count":50,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoftresearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.02,"_pop_updated_issues_count":136,"_pop_closed_issues_count":79,"_pop_created_since_days":41,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":136.0,"_pop_comment_count":207.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":32,"_pop_score":42.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/unilm/master/README.md","_readme_localurl":"microsoft~unilm~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":547,"category":"ml","githuburl":"https://github.com/optuna/optuna","featured":null,"links":null,"description":null,"_repopath":"optuna/optuna","_reponame":"optuna","_stars":7310,"_forks":784,"_watches":121,"_topics":["python","machine-learning","parallel","distributed","hyperparameter-optimization","hacktoberfest"],"_language":"Python","_homepage":"https://optuna.org","_description":"optuna: A hyperparameter optimization framework","_organization":"optuna","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-02-21T00:00:00.000Z","_age_weeks":251,"_stars_per_week":29.04,"_pop_contributor_count":220,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["preferrednetworks"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":46.4,"_pop_updated_issues_count":323,"_pop_closed_issues_count":226,"_pop_created_since_days":59,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":323.0,"_pop_comment_count":983.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":1036,"_pop_score":65.44,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/optuna/optuna/master/README.md","_readme_localurl":"optuna~optuna~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/optuna/optuna/master/setup.py","https://raw.githubusercontent.com/optuna/optuna/master/pyproject.toml"],"_requirements_localurls":["optuna~optuna~setup.py","optuna~optuna~pyproject.toml"]},{"index":28,"category":"ml-dl","githuburl":"https://github.com/google/trax","featured":null,"links":null,"description":null,"_repopath":"google/trax","_reponame":"trax","_stars":7217,"_forks":750,"_watches":145,"_topics":["jax","numpy","deep-learning","deep-reinforcement-learning","machine-learning","transformer","reinforcement-learning"],"_language":"Python","_homepage":"","_description":"Trax \u2014 Deep Learning with Clear Code and Speed","_organization":"google","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-09T00:00:00.000Z","_created_at":"2019-10-05T00:00:00.000Z","_age_weeks":167,"_stars_per_week":43.14,"_pop_contributor_count":78,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","mimuw"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.38,"_pop_updated_issues_count":8,"_pop_closed_issues_count":1,"_pop_created_since_days":39,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":8.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":19,"_pop_score":38.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/trax/master/README.md","_readme_localurl":"google~trax~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/trax/master/setup.py"],"_requirements_localurls":["google~trax~setup.py"]},{"index":70,"category":"ml","githuburl":"https://github.com/pymc-devs/pymc3","featured":null,"links":null,"description":null,"_repopath":"pymc-devs/pymc3","_reponame":"pymc","_stars":7187,"_forks":1711,"_watches":225,"_topics":["python","statistical-analysis","bayesian-inference","mcmc","variational-inference","probabilistic-programming","aesara","hacktoberfest","pytensor"],"_language":"Python","_homepage":"https://docs.pymc.io/","_description":"pymc: Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with PyTensor","_organization":"pymc-devs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2009-05-05T00:00:00.000Z","_age_weeks":710,"_stars_per_week":10.11,"_pop_contributor_count":428,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["msueconomics/skoltechcs","pymclabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":17.42,"_pop_updated_issues_count":365,"_pop_closed_issues_count":279,"_pop_created_since_days":166,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":365.0,"_pop_comment_count":941.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":236,"_pop_score":67.67,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pymc-devs/pymc3/master/README.rst","_readme_localurl":"pymc-devs~pymc3~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pymc-devs/pymc3/master/requirements.txt","https://raw.githubusercontent.com/pymc-devs/pymc3/master/setup.py","https://raw.githubusercontent.com/pymc-devs/pymc3/master/pyproject.toml"],"_requirements_localurls":["pymc-devs~pymc3~requirements.txt","pymc-devs~pymc3~setup.py","pymc-devs~pymc3~pyproject.toml"]},{"index":455,"category":"ml-dl","githuburl":"https://github.com/tensorlayer/tensorlayer","featured":null,"links":null,"description":null,"_repopath":"tensorlayer/tensorlayer","_reponame":"TensorLayer","_stars":7126,"_forks":1612,"_watches":462,"_topics":["tensorlayer","deep-learning","tensorflow","neural-network","reinforcement-learning","artificial-intelligence","gan","a3c","tensorflow-tutorials","dqn","object-detection","chatbot","python","tensorflow-tutorial","imagenet","google"],"_language":"Python","_homepage":"http://tensorlayer.org","_description":"TensorLayer: Deep Learning and Reinforcement Learning Library for Scientists and Engineers ","_organization":"tensorlayer","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-04-23T00:00:00.000Z","_created_at":"2016-06-07T00:00:00.000Z","_age_weeks":340,"_stars_per_week":20.91,"_pop_contributor_count":132,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["columbiauniversity","imperialcollegelondon,pangaeadata","pekinguniversity","universityofedinburgh"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":80,"_pop_updated_since_days":8,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":52,"_pop_score":42.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorlayer/tensorlayer/master/README.md","_readme_localurl":"tensorlayer~tensorlayer~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorlayer/tensorlayer/master/setup.py"],"_requirements_localurls":["tensorlayer~tensorlayer~setup.py"]},{"index":165,"category":"nlp","githuburl":"https://github.com/doccano/doccano","featured":null,"links":null,"description":null,"_repopath":"doccano/doccano","_reponame":"doccano","_stars":7043,"_forks":1449,"_watches":122,"_topics":["natural-language-processing","machine-learning","annotation-tool","python","datasets","dataset","data-labeling","text-annotation","nuxtjs","vue","vuejs","nuxt"],"_language":"Python","_homepage":"https://doccano.herokuapp.com","_description":"doccano: Open source annotation tool for machine learning practitioners.","_organization":"doccano","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-05-09T00:00:00.000Z","_age_weeks":240,"_stars_per_week":29.26,"_pop_contributor_count":98,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["classi","noom","statisticscanada"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.69,"_pop_updated_issues_count":115,"_pop_closed_issues_count":68,"_pop_created_since_days":56,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":115.0,"_pop_comment_count":161.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":94,"_pop_score":55.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/doccano/doccano/master/README.md","_readme_localurl":"doccano~doccano~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":758,"category":"diffusion","githuburl":"https://github.com/divamgupta/diffusionbee-stable-diffusion-ui","featured":null,"links":null,"description":null,"_repopath":"divamgupta/diffusionbee-stable-diffusion-ui","_reponame":"diffusionbee-stable-diffusion-ui","_stars":7014,"_forks":271,"_watches":71,"_topics":["electron-app","macos","stable-diffusion"],"_language":"JavaScript","_homepage":"https://diffusionbee.com","_description":"diffusionbee-stable-diffusion-ui: Diffusion Bee is the easiest way to run Stable Diffusion locally on your M1 Mac. Comes with a one-click installer. No dependencies or technical knowledge needed.","_organization":"divamgupta","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2022-09-06T00:00:00.000Z","_age_weeks":14,"_stars_per_week":472.1,"_pop_contributor_count":16,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.87,"_pop_updated_issues_count":338,"_pop_closed_issues_count":129,"_pop_created_since_days":3,"_pop_updated_since_days":1,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":57,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":338.0,"_pop_comment_count":773.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":29.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/divamgupta/diffusionbee-stable-diffusion-ui/master/README.md","_readme_localurl":"divamgupta~diffusionbee-stable-diffusion-ui~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":868,"category":"ml-dl","githuburl":"https://github.com/hpcaitech/colossalai","featured":null,"links":null,"description":null,"_repopath":"hpcaitech/colossalai","_reponame":"ColossalAI","_stars":7002,"_forks":658,"_watches":88,"_topics":["deep-learning","hpc","large-scale","data-parallelism","pipeline-parallelism","model-parallelism","ai","big-model","distributed-computing","inference","heterogeneous-training"],"_language":"Python","_homepage":"https://www.colossalai.org/","_description":"ColossalAI: Colossal-AI: A Unified Deep Learning System for Big Model Era","_organization":"hpcaitech","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2021-10-28T00:00:00.000Z","_age_weeks":59,"_stars_per_week":117.54,"_pop_contributor_count":82,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["hpc-aitech","hpcaitech"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":27.52,"_pop_updated_issues_count":514,"_pop_closed_issues_count":452,"_pop_created_since_days":14,"_pop_updated_since_days":0,"_pop_recent_releases_count":18,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":511.0,"_pop_comment_count":266.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":3,"_pop_score":47.94,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hpcaitech/colossalai/master/README.md","_readme_localurl":"hpcaitech~colossalai~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hpcaitech/colossalai/master/setup.py"],"_requirements_localurls":["hpcaitech~colossalai~setup.py"]},{"index":846,"category":"time-series","githuburl":"https://github.com/blue-yonder/tsfresh","featured":null,"links":null,"description":null,"_repopath":"blue-yonder/tsfresh","_reponame":"tsfresh","_stars":6943,"_forks":1093,"_watches":159,"_topics":["data-science","feature-extraction","time-series"],"_language":"Jupyter Notebook","_homepage":"http://tsfresh.readthedocs.io","_description":"tsfresh: Automatic extraction of relevant features from time series:","_organization":"blue-yonder","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-18T00:00:00.000Z","_created_at":"2016-10-26T00:00:00.000Z","_age_weeks":320,"_stars_per_week":21.65,"_pop_contributor_count":82,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["apple","universityofauckland"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":24,"_pop_closed_issues_count":6,"_pop_created_since_days":75,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":24.0,"_pop_comment_count":48.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":26,"_pop_score":42.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/blue-yonder/tsfresh/master/README.md","_readme_localurl":"blue-yonder~tsfresh~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":650,"category":"profiling","githuburl":"https://github.com/plasma-umass/scalene","featured":1.0,"links":null,"description":null,"_repopath":"plasma-umass/scalene","_reponame":"scalene","_stars":6939,"_forks":232,"_watches":69,"_topics":["python","profiling","performance-analysis","cpu-profiling","profiler","python-profilers","gpu-programming","scalene","profiles-memory","performance-cpu","cpu","memory-allocation","gpu","memory-consumption"],"_language":"JavaScript","_homepage":"","_description":"Scalene: a high-performance, high-precision CPU, GPU, and memory profiler for Python","_organization":"plasma-umass","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-12-17T00:00:00.000Z","_age_weeks":156,"_stars_per_week":44.24,"_pop_contributor_count":34,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["umassamherst","universityofmassachusettsamherst"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.71,"_pop_updated_issues_count":93,"_pop_closed_issues_count":52,"_pop_created_since_days":37,"_pop_updated_since_days":0,"_pop_recent_releases_count":21,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":21,"_pop_issue_count":94.0,"_pop_comment_count":167.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":76,"_pop_score":52.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/plasma-umass/scalene/master/README.md","_readme_localurl":"plasma-umass~scalene~README.md","_requirements_filenames":["requirements.txt","setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/plasma-umass/scalene/master/requirements.txt","https://raw.githubusercontent.com/plasma-umass/scalene/master/setup.py","https://raw.githubusercontent.com/plasma-umass/scalene/master/Pipfile"],"_requirements_localurls":["plasma-umass~scalene~requirements.txt","plasma-umass~scalene~setup.py","plasma-umass~scalene~Pipfile"]},{"index":150,"category":"ml","githuburl":"https://github.com/catboost/catboost","featured":null,"links":null,"description":null,"_repopath":"catboost/catboost","_reponame":"catboost","_stars":6846,"_forks":1070,"_watches":193,"_topics":["machine-learning","decision-trees","gradient-boosting","gbm","gbdt","python","r","kaggle","gpu-computing","catboost","tutorial","categorical-features","gpu","coreml","data-science","big-data","cuda","data-mining"],"_language":"C","_homepage":"https://catboost.ai","_description":"catboost: A fast, scalable, high performance Gradient Boosting on Decision Trees library, used for ranking, classification, regression and other machine learning tasks for Python, R, Java, C++. Supports computation on CPU and GPU.","_organization":"catboost","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2017-07-18T00:00:00.000Z","_age_weeks":282,"_stars_per_week":24.2,"_pop_contributor_count":1038,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["yandex","yandexnv"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":117.42,"_pop_updated_issues_count":146,"_pop_closed_issues_count":58,"_pop_created_since_days":66,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":146.0,"_pop_comment_count":263.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":276,"_pop_score":66.94,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/catboost/catboost/master/README.md","_readme_localurl":"catboost~catboost~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":171,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/pytorch3d","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/pytorch3d","_reponame":"pytorch3d","_stars":6806,"_forks":1032,"_watches":140,"_topics":[],"_language":"Python","_homepage":"https://pytorch3d.org/","_description":"PyTorch3D is FAIR's library of reusable components for deep learning with 3D data","_organization":"facebookresearch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-10-25T00:00:00.000Z","_age_weeks":164,"_stars_per_week":41.39,"_pop_contributor_count":110,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["caltech","facebook","facebookairesearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.92,"_pop_updated_issues_count":88,"_pop_closed_issues_count":37,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":88.0,"_pop_comment_count":123.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":383,"_pop_score":54.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/pytorch3d/master/README.md","_readme_localurl":"facebookresearch~pytorch3d~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/pytorch3d/master/setup.py"],"_requirements_localurls":["facebookresearch~pytorch3d~setup.py"]},{"index":286,"category":"data","githuburl":"https://github.com/simonw/datasette","featured":1.0,"links":null,"description":null,"_repopath":"simonw/datasette","_reponame":"datasette","_stars":6758,"_forks":474,"_watches":99,"_topics":["sqlite","python","datasets","json","docker","datasette","automatic-api","asgi","csv","datasette-io","sql"],"_language":"Python","_homepage":"https://datasette.io","_description":"datasette: An open source multi-tool for exploring and publishing data","_organization":"simonw","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2017-10-23T00:00:00.000Z","_age_weeks":269,"_stars_per_week":25.12,"_pop_contributor_count":72,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datasette","latacora"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.62,"_pop_updated_issues_count":178,"_pop_closed_issues_count":108,"_pop_created_since_days":63,"_pop_updated_since_days":0,"_pop_recent_releases_count":19,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":19,"_pop_issue_count":178.0,"_pop_comment_count":853.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.8,"_pop_dependents_count":557,"_pop_score":62.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/simonw/datasette/master/README.md","_readme_localurl":"simonw~datasette~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/simonw/datasette/master/setup.py"],"_requirements_localurls":["simonw~datasette~setup.py"]},{"index":65,"category":"ml","githuburl":"https://github.com/pycaret/pycaret","featured":null,"links":null,"description":null,"_repopath":"pycaret/pycaret","_reponame":"pycaret","_stars":6669,"_forks":1522,"_watches":125,"_topics":["data-science","citizen-data-scientists","python","machine-learning","pycaret","ml","gpu","time-series","regression","classification","anomaly-detection","nlp","clustering"],"_language":"Jupyter Notebook","_homepage":"https://www.pycaret.org","_description":"pycaret: An open-source, low-code machine learning library in Python","_organization":"pycaret","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-11-23T00:00:00.000Z","_age_weeks":160,"_stars_per_week":41.61,"_pop_contributor_count":107,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["konfio","o9solutions","pycaret","softwareengineeranyscale"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":19.88,"_pop_updated_issues_count":307,"_pop_closed_issues_count":228,"_pop_created_since_days":37,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":307.0,"_pop_comment_count":380.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":194,"_pop_score":58.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pycaret/pycaret/master/README.md","_readme_localurl":"pycaret~pycaret~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pycaret/pycaret/master/requirements.txt","https://raw.githubusercontent.com/pycaret/pycaret/master/setup.py"],"_requirements_localurls":["pycaret~pycaret~requirements.txt","pycaret~pycaret~setup.py"]},{"index":131,"category":"ml","githuburl":"https://github.com/automl/auto-sklearn","featured":null,"links":null,"description":null,"_repopath":"automl/auto-sklearn","_reponame":"auto-sklearn","_stars":6666,"_forks":1208,"_watches":213,"_topics":["automl","scikit-learn","automated-machine-learning","hyperparameter-optimization","hyperparameter-tuning","hyperparameter-search","bayesian-optimization","metalearning","meta-learning","smac"],"_language":"Python","_homepage":"https://automl.github.io/auto-sklearn","_description":"auto-sklearn: Automated Machine Learning with scikit-learn","_organization":"automl","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2015-07-02T00:00:00.000Z","_age_weeks":389,"_stars_per_week":17.11,"_pop_contributor_count":88,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["albert-ludwigs-universit\u00e4tfreiburg","automl.org","awsberlin","centerforarmyanalysisandsimulation","universityoffreiburg"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.65,"_pop_updated_issues_count":71,"_pop_closed_issues_count":34,"_pop_created_since_days":91,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":71.0,"_pop_comment_count":101.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":388,"_pop_score":57.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/automl/auto-sklearn/master/README.md","_readme_localurl":"automl~auto-sklearn~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/automl/auto-sklearn/master/requirements.txt","https://raw.githubusercontent.com/automl/auto-sklearn/master/setup.py","https://raw.githubusercontent.com/automl/auto-sklearn/master/pyproject.toml"],"_requirements_localurls":["automl~auto-sklearn~requirements.txt","automl~auto-sklearn~setup.py","automl~auto-sklearn~pyproject.toml"]},{"index":197,"category":"nlp","githuburl":"https://github.com/eleutherai/gpt-neo","featured":null,"links":null,"description":null,"_repopath":"eleutherai/gpt-neo","_reponame":"gpt-neo","_stars":6663,"_forks":591,"_watches":161,"_topics":["language-model","transformers","gpt","gpt-2","gpt-3"],"_language":"Python","_homepage":"https://www.eleuther.ai","_description":"gpt-neo: An implementation of model parallel GPT-2 and GPT-3-style models using the mesh-tensorflow library.","_organization":"eleutherai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-02-25T00:00:00.000Z","_created_at":"2020-07-05T00:00:00.000Z","_age_weeks":128,"_stars_per_week":52.0,"_pop_contributor_count":29,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["boozallenhamilton"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":30,"_pop_updated_since_days":10,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":14,"_pop_score":22.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/eleutherai/gpt-neo/master/README.md","_readme_localurl":"eleutherai~gpt-neo~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/eleutherai/gpt-neo/master/requirements.txt"],"_requirements_localurls":["eleutherai~gpt-neo~requirements.txt"]},{"index":824,"category":"study","githuburl":"https://github.com/firmai/industry-machine-learning","featured":null,"links":null,"description":null,"_repopath":"firmai/industry-machine-learning","_reponame":"industry-machine-learning","_stars":6654,"_forks":1119,"_watches":392,"_topics":["machine-learning","jupyter-notebook","datascience","example","python","practical-machine-learning","data-science","firmai"],"_language":"Jupyter Notebook","_homepage":"https://www.linkedin.com/company/firmai","_description":"industry-machine-learning: A curated list of applied machine learning and data science notebooks and libraries across different industries (by @firmai)","_organization":"firmai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-12-18T00:00:00.000Z","_created_at":"2019-05-03T00:00:00.000Z","_age_weeks":189,"_stars_per_week":35.13,"_pop_contributor_count":6,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["alanturinginstitute,firmai","tilde-lab","universityofutah"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":44,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":15.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/firmai/industry-machine-learning/master/README.md","_readme_localurl":"firmai~industry-machine-learning~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":532,"category":"util","githuburl":"https://github.com/facebookresearch/hydra","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/hydra","_reponame":"hydra","_stars":6600,"_forks":527,"_watches":83,"_topics":[],"_language":"Python","_homepage":"https://hydra.cc","_description":"Hydra is a framework for elegantly configuring complex applications","_organization":"facebookresearch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2019-06-12T00:00:00.000Z","_age_weeks":183,"_stars_per_week":35.93,"_pop_contributor_count":105,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","facebookairesearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.27,"_pop_updated_issues_count":147,"_pop_closed_issues_count":91,"_pop_created_since_days":43,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":147.0,"_pop_comment_count":233.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":47,"_pop_score":50.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/hydra/master/README.md","_readme_localurl":"facebookresearch~hydra~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/hydra/master/setup.py","https://raw.githubusercontent.com/facebookresearch/hydra/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~hydra~setup.py","facebookresearch~hydra~pyproject.toml"]},{"index":67,"category":"web","githuburl":"https://github.com/pyeve/eve","featured":null,"links":null,"description":null,"_repopath":"pyeve/eve","_reponame":"eve","_stars":6567,"_forks":752,"_watches":229,"_topics":["python","rest","flask","mongodb"],"_language":"Python","_homepage":"https://python-eve.org","_description":"eve: REST API framework designed for human beings","_organization":"pyeve","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-10T00:00:00.000Z","_created_at":"2012-10-22T00:00:00.000Z","_age_weeks":530,"_stars_per_week":12.39,"_pop_contributor_count":211,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cir2000","denoland","google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.06,"_pop_updated_issues_count":16,"_pop_closed_issues_count":9,"_pop_created_since_days":124,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":16.0,"_pop_comment_count":28.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":34,"_pop_score":50.38,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyeve/eve/master/README.rst","_readme_localurl":"pyeve~eve~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyeve/eve/master/setup.py","https://raw.githubusercontent.com/pyeve/eve/master/pyproject.toml"],"_requirements_localurls":["pyeve~eve~setup.py","pyeve~eve~pyproject.toml"]},{"index":389,"category":"data","githuburl":"https://github.com/yzhao062/pyod","featured":null,"links":null,"description":null,"_repopath":"yzhao062/pyod","_reponame":"pyod","_stars":6557,"_forks":1217,"_watches":151,"_topics":["outlier-detection","anomaly-detection","outlier-ensembles","outliers","anomaly","python","machine-learning","data-mining","unsupervised-learning","python2","python3","fraud-detection","autoencoder","neural-networks","deep-learning","data-science","data-analysis","novelty-detection","out-of-distribution-detection"],"_language":"Python","_homepage":"http://pyod.readthedocs.io","_description":"pyod: A Comprehensive and Scalable Python Library for Outlier Detection (Anomaly Detection)","_organization":"yzhao062","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2017-10-03T00:00:00.000Z","_age_weeks":271,"_stars_per_week":24.12,"_pop_contributor_count":46,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["carnegiemellonuniversity","erasmusmedicalcentre","royalbankofcanada(rbc)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.69,"_pop_updated_issues_count":28,"_pop_closed_issues_count":13,"_pop_created_since_days":63,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":28.0,"_pop_comment_count":59.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":66,"_pop_score":51.34,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/yzhao062/pyod/master/README.rst","_readme_localurl":"yzhao062~pyod~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/yzhao062/pyod/master/requirements.txt","https://raw.githubusercontent.com/yzhao062/pyod/master/setup.py"],"_requirements_localurls":["yzhao062~pyod~requirements.txt","yzhao062~pyod~setup.py"]},{"index":133,"category":"ml","githuburl":"https://github.com/hyperopt/hyperopt","featured":null,"links":null,"description":null,"_repopath":"hyperopt/hyperopt","_reponame":"hyperopt","_stars":6511,"_forks":1004,"_watches":126,"_topics":[],"_language":"Python","_homepage":"http://hyperopt.github.io/hyperopt","_description":"hyperopt: Distributed Asynchronous Hyperparameter Optimization in Python","_organization":"hyperopt","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2021-11-29T00:00:00.000Z","_created_at":"2011-09-06T00:00:00.000Z","_age_weeks":588,"_stars_per_week":11.06,"_pop_contributor_count":93,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["contxts-io","databricks","kindred.ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":14,"_pop_closed_issues_count":3,"_pop_created_since_days":137,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":14.0,"_pop_comment_count":28.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":135,"_pop_score":42.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hyperopt/hyperopt/master/README.md","_readme_localurl":"hyperopt~hyperopt~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hyperopt/hyperopt/master/setup.py"],"_requirements_localurls":["hyperopt~hyperopt~setup.py"]},{"index":716,"category":"util","githuburl":"https://github.com/jazzband/pip-tools","featured":null,"links":null,"description":null,"_repopath":"jazzband/pip-tools","_reponame":"pip-tools","_stars":6473,"_forks":554,"_watches":105,"_topics":["python","packaging","pip","pip-tools","pip-compile","setuptools","requirements","lockfile","hashes"],"_language":"Python","_homepage":"https://pip-tools.rtfd.io","_description":"pip-tools: A set of tools to keep your pinned Python dependencies fresh.","_organization":"jazzband","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2012-09-10T00:00:00.000Z","_age_weeks":536,"_stars_per_week":12.08,"_pop_contributor_count":181,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["pioneervalleybooks","ubisoftinc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.67,"_pop_updated_issues_count":179,"_pop_closed_issues_count":132,"_pop_created_since_days":125,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":179.0,"_pop_comment_count":312.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":2531,"_pop_score":63.55,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jazzband/pip-tools/master/README.rst","_readme_localurl":"jazzband~pip-tools~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jazzband/pip-tools/master/pyproject.toml"],"_requirements_localurls":["jazzband~pip-tools~pyproject.toml"]},{"index":215,"category":"debug","githuburl":"https://github.com/gruns/icecream","featured":null,"links":null,"description":null,"_repopath":"gruns/icecream","_reponame":"icecream","_stars":6468,"_forks":134,"_watches":50,"_topics":["python","python3","library","inspects","debug","debugging","debugging-tool","print"],"_language":"Python","_homepage":"","_description":"icecream: \ud83c\udf66 Never use print() to debug again.","_organization":"gruns","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2018-02-13T00:00:00.000Z","_age_weeks":252,"_stars_per_week":25.58,"_pop_contributor_count":21,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["fixpoint","https://arc.io,https://pep.dev","pku-epic"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.85,"_pop_updated_issues_count":12,"_pop_closed_issues_count":5,"_pop_created_since_days":59,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":12.0,"_pop_comment_count":26.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":34,"_pop_score":42.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gruns/icecream/master/README.md","_readme_localurl":"gruns~icecream~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gruns/icecream/master/setup.py"],"_requirements_localurls":["gruns~icecream~setup.py"]},{"index":82,"category":"data","githuburl":"https://github.com/sqlalchemy/sqlalchemy","featured":null,"links":null,"description":null,"_repopath":"sqlalchemy/sqlalchemy","_reponame":"sqlalchemy","_stars":6443,"_forks":1025,"_watches":94,"_topics":["sqlalchemy","sql","python"],"_language":"Python","_homepage":"https://www.sqlalchemy.org","_description":"sqlalchemy: The Database Toolkit for Python","_organization":"sqlalchemy","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-11-27T00:00:00.000Z","_age_weeks":211,"_stars_per_week":30.41,"_pop_contributor_count":583,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["redhat","self-employed"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.65,"_pop_updated_issues_count":304,"_pop_closed_issues_count":231,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":21,"_pop_recent_releases_estimated_tags":66,"_pop_recent_releases_adjusted_count":21,"_pop_issue_count":304.0,"_pop_comment_count":1209.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.0,"_pop_dependents_count":10439,"_pop_score":73.81,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sqlalchemy/sqlalchemy/master/README.rst","_readme_localurl":"sqlalchemy~sqlalchemy~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sqlalchemy/sqlalchemy/master/setup.py","https://raw.githubusercontent.com/sqlalchemy/sqlalchemy/master/pyproject.toml"],"_requirements_localurls":["sqlalchemy~sqlalchemy~setup.py","sqlalchemy~sqlalchemy~pyproject.toml"]},{"index":141,"category":"ml","githuburl":"https://github.com/featurelabs/featuretools","featured":1.0,"links":null,"description":null,"_repopath":"featurelabs/featuretools","_reponame":"featuretools","_stars":6424,"_forks":835,"_watches":158,"_topics":["feature-engineering","machine-learning","data-science","automated-machine-learning","automl","python","scikit-learn","automated-feature-engineering"],"_language":"Python","_homepage":"https://www.featuretools.com","_description":"featuretools: An open source python library for automated feature engineering","_organization":"featurelabs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2017-09-08T00:00:00.000Z","_age_weeks":275,"_stars_per_week":23.32,"_pop_contributor_count":68,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["alteryx"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.17,"_pop_updated_issues_count":161,"_pop_closed_issues_count":125,"_pop_created_since_days":64,"_pop_updated_since_days":0,"_pop_recent_releases_count":25,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":25,"_pop_issue_count":161.0,"_pop_comment_count":189.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":31,"_pop_score":50.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/featurelabs/featuretools/master/README.md","_readme_localurl":"featurelabs~featuretools~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/featurelabs/featuretools/master/pyproject.toml"],"_requirements_localurls":["featurelabs~featuretools~pyproject.toml"]},{"index":288,"category":"testing","githuburl":"https://github.com/hypothesisworks/hypothesis","featured":1.0,"links":null,"description":null,"_repopath":"hypothesisworks/hypothesis","_reponame":"hypothesis","_stars":6401,"_forks":539,"_watches":69,"_topics":["python","testing","fuzzing","property-based-testing"],"_language":"Python","_homepage":"https://hypothesis.works","_description":"Hypothesis is a powerful, flexible, and easy to use library for property-based testing.","_organization":"hypothesisworks","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2013-03-10T00:00:00.000Z","_age_weeks":510,"_stars_per_week":12.55,"_pop_contributor_count":297,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anthropic","pyupio","quansight","weomecollection"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.75,"_pop_updated_issues_count":88,"_pop_closed_issues_count":66,"_pop_created_since_days":119,"_pop_updated_since_days":0,"_pop_recent_releases_count":95,"_pop_recent_releases_estimated_tags":135,"_pop_recent_releases_adjusted_count":95,"_pop_issue_count":88.0,"_pop_comment_count":128.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":12462,"_pop_score":72.65,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/hypothesisworks/hypothesis/master/README.rst","_readme_localurl":"hypothesisworks~hypothesis~README.rst","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":153,"category":"util","githuburl":"https://github.com/marshmallow-code/marshmallow","featured":null,"links":null,"description":null,"_repopath":"marshmallow-code/marshmallow","_reponame":"marshmallow","_stars":6358,"_forks":621,"_watches":82,"_topics":["serialization","deserialization","validation","python","marshalling","python-3","serde","schema","hacktoberfest"],"_language":"Python","_homepage":"https://marshmallow.readthedocs.io/","_description":"marshmallow: A lightweight library for converting complex objects to and from simple Python datatypes.","_organization":"marshmallow-code","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2013-11-10T00:00:00.000Z","_age_weeks":475,"_stars_per_week":13.38,"_pop_contributor_count":203,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nobatek"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.79,"_pop_updated_issues_count":54,"_pop_closed_issues_count":36,"_pop_created_since_days":111,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":19,"_pop_recent_releases_adjusted_count":19,"_pop_issue_count":54.0,"_pop_comment_count":52.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":2390,"_pop_score":58.91,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/marshmallow-code/marshmallow/master/README.rst","_readme_localurl":"marshmallow-code~marshmallow~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/marshmallow-code/marshmallow/master/setup.py","https://raw.githubusercontent.com/marshmallow-code/marshmallow/master/pyproject.toml"],"_requirements_localurls":["marshmallow-code~marshmallow~setup.py","marshmallow-code~marshmallow~pyproject.toml"]},{"index":230,"category":"template","githuburl":"https://github.com/drivendata/cookiecutter-data-science","featured":1.0,"links":null,"description":null,"_repopath":"drivendata/cookiecutter-data-science","_reponame":"cookiecutter-data-science","_stars":6335,"_forks":2015,"_watches":111,"_topics":["cookiecutter-data-science","cookiecutter","cookiecutter-template","data-science","machine-learning","ai"],"_language":"Python","_homepage":"http://drivendata.github.io/cookiecutter-data-science/","_description":"cookiecutter-data-science: A logical, reasonably standardized, but flexible project structure for doing and sharing data science work.","_organization":"drivendata","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-03-11T00:00:00.000Z","_created_at":"2015-10-30T00:00:00.000Z","_age_weeks":372,"_stars_per_week":17.01,"_pop_contributor_count":45,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["contentful","drivendata","unseenbio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":17,"_pop_closed_issues_count":7,"_pop_created_since_days":87,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":17.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":28,"_pop_score":34.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/drivendata/cookiecutter-data-science/master/README.md","_readme_localurl":"drivendata~cookiecutter-data-science~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/drivendata/cookiecutter-data-science/master/requirements.txt"],"_requirements_localurls":["drivendata~cookiecutter-data-science~requirements.txt"]},{"index":602,"category":"testing","githuburl":"https://github.com/newsapps/beeswithmachineguns","featured":null,"links":null,"description":null,"_repopath":"newsapps/beeswithmachineguns","_reponame":"beeswithmachineguns","_stars":6267,"_forks":663,"_watches":227,"_topics":[],"_language":"Python","_homepage":"http://apps.chicagotribune.com/","_description":"beeswithmachineguns: A utility for arming (creating) many bees (micro EC2 instances) to attack (load test) targets (web applications).","_organization":"newsapps","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2017-12-20T00:00:00.000Z","_created_at":"2010-06-29T00:00:00.000Z","_age_weeks":650,"_stars_per_week":9.63,"_pop_contributor_count":49,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["br","datascopeanalytics","facebook","fivethirtyeight","https://github.com/verizondigital/"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":152,"_pop_updated_since_days":61,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":64,"_pop_score":32.42,"_readme_filename":"","_readme_giturl":"","_readme_localurl":"","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/newsapps/beeswithmachineguns/master/requirements.txt","https://raw.githubusercontent.com/newsapps/beeswithmachineguns/master/setup.py"],"_requirements_localurls":["newsapps~beeswithmachineguns~requirements.txt","newsapps~beeswithmachineguns~setup.py"]},{"index":800,"category":"web","githuburl":"https://github.com/pallets/werkzeug","featured":null,"links":null,"description":null,"_repopath":"pallets/werkzeug","_reponame":"werkzeug","_stars":6234,"_forks":1663,"_watches":227,"_topics":["python","wsgi","werkzeug","http","pallets"],"_language":"Python","_homepage":"https://werkzeug.palletsprojects.com","_description":"werkzeug: The comprehensive WSGI web application library.","_organization":"pallets","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-01T00:00:00.000Z","_created_at":"2010-10-18T00:00:00.000Z","_age_weeks":635,"_stars_per_week":9.82,"_pop_contributor_count":463,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["getsentry","sentry","zalandose"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.62,"_pop_updated_issues_count":50,"_pop_closed_issues_count":34,"_pop_created_since_days":148,"_pop_updated_since_days":2,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":50.0,"_pop_comment_count":43.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":9133,"_pop_score":62.98,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/werkzeug/master/README.rst","_readme_localurl":"pallets~werkzeug~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/werkzeug/master/setup.py"],"_requirements_localurls":["pallets~werkzeug~setup.py"]},{"index":356,"category":"ml-ops","githuburl":"https://github.com/netflix/metaflow","featured":null,"links":null,"description":null,"_repopath":"netflix/metaflow","_reponame":"metaflow","_stars":6219,"_forks":583,"_watches":239,"_topics":["machine-learning","data-science","productivity","model-management","ai","ml","ml-platform","ml-infrastructure","python","r","rstats","reproducible-research","r-package","mlops","datascience","cli","high-performance-computing","kubernetes"],"_language":"Python","_homepage":"https://metaflow.org","_description":"metaflow: :rocket: Build and manage real-life data science projects with ease!","_organization":"netflix","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2019-09-17T00:00:00.000Z","_age_weeks":169,"_stars_per_week":36.61,"_pop_contributor_count":62,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["missingexponent","outerbounds"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.27,"_pop_updated_issues_count":106,"_pop_closed_issues_count":65,"_pop_created_since_days":40,"_pop_updated_since_days":0,"_pop_recent_releases_count":30,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":30,"_pop_issue_count":106.0,"_pop_comment_count":147.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":49,"_pop_score":51.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/netflix/metaflow/master/README.md","_readme_localurl":"netflix~metaflow~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/netflix/metaflow/master/setup.py"],"_requirements_localurls":["netflix~metaflow~setup.py"]},{"index":382,"category":"ml-ops","githuburl":"https://github.com/deepset-ai/haystack","featured":null,"links":null,"description":null,"_repopath":"deepset-ai/haystack","_reponame":"haystack","_stars":6210,"_forks":964,"_watches":87,"_topics":["nlp","question-answering","bert","transfer-learning","language-model","pytorch","semantic-search","neural-search","squad","elasticsearch","dpr","information-retrieval","summarization","search-engine","transformers","natural-language-processing","machine-learning","ai","python"],"_language":"Python","_homepage":"https://deepset.ai/haystack","_description":"haystack: :mag: Haystack is an open source NLP framework that leverages pre-trained Transformer models. It enables developers to quickly implement production-ready semantic search, question answering, summarization and document ranking for a wide range of NLP applications.","_organization":"deepset-ai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-11-14T00:00:00.000Z","_age_weeks":161,"_stars_per_week":38.44,"_pop_contributor_count":149,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deepset","deepset-ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.31,"_pop_updated_issues_count":617,"_pop_closed_issues_count":399,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":18,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":617.0,"_pop_comment_count":895.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":57,"_pop_score":57.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/deepset-ai/haystack/master/README.md","_readme_localurl":"deepset-ai~haystack~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/deepset-ai/haystack/master/pyproject.toml"],"_requirements_localurls":["deepset-ai~haystack~pyproject.toml"]},{"index":459,"category":"ml-ops","githuburl":"https://github.com/dbt-labs/dbt-core","featured":null,"links":null,"description":null,"_repopath":"dbt-labs/dbt-core","_reponame":"dbt-core","_stars":6207,"_forks":1095,"_watches":131,"_topics":["dbt-viewpoint","slack","pypa","data-modeling","business-intelligence","analytics","elt"],"_language":"Python","_homepage":"https://getdbt.com","_description":"dbt-core: dbt enables data analysts and engineers to transform their data using the same practices that software engineers use to build applications.","_organization":"dbt-labs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2016-03-10T00:00:00.000Z","_age_weeks":353,"_stars_per_week":17.56,"_pop_contributor_count":252,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dbt-labs","fishtownanalytics"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.29,"_pop_updated_issues_count":890,"_pop_closed_issues_count":615,"_pop_created_since_days":82,"_pop_updated_since_days":0,"_pop_recent_releases_count":40,"_pop_recent_releases_estimated_tags":21,"_pop_recent_releases_adjusted_count":40,"_pop_issue_count":889.0,"_pop_comment_count":1514.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":82,"_pop_score":62.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dbt-labs/dbt-core/master/README.md","_readme_localurl":"dbt-labs~dbt-core~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dbt-labs/dbt-core/master/requirements.txt","https://raw.githubusercontent.com/dbt-labs/dbt-core/master/setup.py"],"_requirements_localurls":["dbt-labs~dbt-core~requirements.txt","dbt-labs~dbt-core~setup.py"]},{"index":20,"category":"typing","githuburl":"https://github.com/facebook/pyre-check","featured":null,"links":null,"description":null,"_repopath":"facebook/pyre-check","_reponame":"pyre-check","_stars":6164,"_forks":407,"_watches":107,"_topics":["python","typechecker","type-check","static-analysis","ocaml","code-quality","abstract-interpretation","security","program-analysis","taint-analysis","control-flow-analysis"],"_language":"OCaml","_homepage":"https://pyre-check.org/","_description":"pyre-check: Performant type-checking for python.","_organization":"facebook","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2017-11-10T00:00:00.000Z","_age_weeks":266,"_stars_per_week":23.14,"_pop_contributor_count":231,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","metaplatforms"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":47.44,"_pop_updated_issues_count":46,"_pop_closed_issues_count":22,"_pop_created_since_days":62,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":46.0,"_pop_comment_count":51.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":322,"_pop_score":58.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebook/pyre-check/master/README.md","_readme_localurl":"facebook~pyre-check~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebook/pyre-check/master/requirements.txt","https://raw.githubusercontent.com/facebook/pyre-check/master/pyproject.toml"],"_requirements_localurls":["facebook~pyre-check~requirements.txt","facebook~pyre-check~pyproject.toml"]},{"index":556,"category":"ml-dl","githuburl":"https://github.com/arogozhnikov/einops","featured":null,"links":null,"description":null,"_repopath":"arogozhnikov/einops","_reponame":"einops","_stars":6140,"_forks":269,"_watches":62,"_topics":["deep-learning","pytorch","tensorflow","numpy","gluon","cupy","chainer","keras","tensor","jax"],"_language":"Python","_homepage":"https://einops.rocks","_description":"einops: Deep learning operations reinvented (for pytorch, tensorflow, jax and others)","_organization":"arogozhnikov","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2018-09-22T00:00:00.000Z","_age_weeks":221,"_stars_per_week":27.75,"_pop_contributor_count":22,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aperturescience","idea","princetonuniversity","quansight","sunyat-senuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.52,"_pop_updated_issues_count":41,"_pop_closed_issues_count":26,"_pop_created_since_days":52,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":41.0,"_pop_comment_count":42.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":8,"_pop_score":43.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/arogozhnikov/einops/master/README.md","_readme_localurl":"arogozhnikov~einops~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/arogozhnikov/einops/master/pyproject.toml"],"_requirements_localurls":["arogozhnikov~einops~pyproject.toml"]},{"index":681,"category":"ml","githuburl":"https://github.com/hips/autograd","featured":null,"links":null,"description":null,"_repopath":"hips/autograd","_reponame":"autograd","_stars":6109,"_forks":843,"_watches":216,"_topics":[],"_language":"Python","_homepage":"","_description":"autograd: Efficiently computes derivatives of numpy code.","_organization":"hips","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-09-29T00:00:00.000Z","_created_at":"2014-11-24T00:00:00.000Z","_age_weeks":421,"_stars_per_week":14.51,"_pop_contributor_count":52,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","googlebrain","universityofamsterdam","universityoftoronto","visa"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":7,"_pop_closed_issues_count":4,"_pop_created_since_days":98,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":7.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":160,"_pop_score":44.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hips/autograd/master/README.md","_readme_localurl":"hips~autograd~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hips/autograd/master/setup.py"],"_requirements_localurls":["hips~autograd~setup.py"]},{"index":121,"category":"ml-ops","githuburl":"https://github.com/dagster-io/dagster","featured":null,"links":null,"description":null,"_repopath":"dagster-io/dagster","_reponame":"dagster","_stars":6053,"_forks":759,"_watches":87,"_topics":["data-pipelines","dagster","workflow","data-science","workflow-automation","python","scheduler","data-orchestrator","etl","analytics","data-engineering","mlops","orchestration","data-integration","metadata"],"_language":"Python","_homepage":"https://dagster.io","_description":"dagster: An orchestration platform for the development, production, and observation of data assets.","_organization":"dagster-io","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-04-30T00:00:00.000Z","_age_weeks":242,"_stars_per_week":25.01,"_pop_contributor_count":256,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["elementl"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":57.9,"_pop_updated_issues_count":1677,"_pop_closed_issues_count":1229,"_pop_created_since_days":56,"_pop_updated_since_days":0,"_pop_recent_releases_count":59,"_pop_recent_releases_estimated_tags":139,"_pop_recent_releases_adjusted_count":59,"_pop_issue_count":1677.0,"_pop_comment_count":3154.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":2733,"_pop_score":70.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dagster-io/dagster/master/README.md","_readme_localurl":"dagster-io~dagster~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dagster-io/dagster/master/pyproject.toml"],"_requirements_localurls":["dagster-io~dagster~pyproject.toml"]},{"index":73,"category":"gis","githuburl":"https://github.com/python-visualization/folium","featured":null,"links":null,"description":null,"_repopath":"python-visualization/folium","_reponame":"folium","_stars":6023,"_forks":2154,"_watches":166,"_topics":["closember","data-science","data-visualization","javascript","maps","python"],"_language":"Python","_homepage":"https://python-visualization.github.io/folium/","_description":"folium: Python Data. Leaflet.js Maps. ","_organization":"python-visualization","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2013-05-09T00:00:00.000Z","_age_weeks":501,"_stars_per_week":12.01,"_pop_contributor_count":147,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datartibus","jgardinerconsultingltd.","stripe"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.81,"_pop_updated_issues_count":309,"_pop_closed_issues_count":276,"_pop_created_since_days":117,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":309.0,"_pop_comment_count":344.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":671,"_pop_score":58.7,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/python-visualization/folium/master/README.rst","_readme_localurl":"python-visualization~folium~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-visualization/folium/master/requirements.txt","https://raw.githubusercontent.com/python-visualization/folium/master/setup.py","https://raw.githubusercontent.com/python-visualization/folium/master/pyproject.toml"],"_requirements_localurls":["python-visualization~folium~requirements.txt","python-visualization~folium~setup.py","python-visualization~folium~pyproject.toml"]},{"index":879,"category":"time-series","githuburl":"https://github.com/sktime/sktime","featured":1.0,"links":null,"description":null,"_repopath":"sktime/sktime","_reponame":"sktime","_stars":5980,"_forks":984,"_watches":110,"_topics":["time-series","machine-learning","scikit-learn","time-series-classification","time-series-regression","forecasting","time-series-analysis","data-science","data-mining"],"_language":"Python","_homepage":"https://sktime.org","_description":"sktime: A unified framework for machine learning with time series","_organization":"sktime","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-11-06T00:00:00.000Z","_age_weeks":214,"_stars_per_week":27.83,"_pop_contributor_count":206,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ucl","uclalan-turing-instituteesrc-cdrc","universitycollegelondon","universityofeastanglia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":17.92,"_pop_updated_issues_count":655,"_pop_closed_issues_count":376,"_pop_created_since_days":50,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":656.0,"_pop_comment_count":1884.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":51,"_pop_score":63.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sktime/sktime/master/README.md","_readme_localurl":"sktime~sktime~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sktime/sktime/master/pyproject.toml"],"_requirements_localurls":["sktime~sktime~pyproject.toml"]},{"index":410,"category":"web","githuburl":"https://github.com/encode/uvicorn","featured":null,"links":null,"description":null,"_repopath":"encode/uvicorn","_reponame":"uvicorn","_stars":5962,"_forks":522,"_watches":87,"_topics":["python","asyncio","asgi","http","http-server"],"_language":"Python","_homepage":"https://www.uvicorn.org/","_description":"uvicorn: An ASGI web server, for Python. \ud83e\udd84","_organization":"encode","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2017-05-31T00:00:00.000Z","_age_weeks":289,"_stars_per_week":20.58,"_pop_contributor_count":149,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["encode","encodeoss"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.92,"_pop_updated_issues_count":212,"_pop_closed_issues_count":178,"_pop_created_since_days":68,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":212.0,"_pop_comment_count":395.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":3899,"_pop_score":63.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/encode/uvicorn/master/README.md","_readme_localurl":"encode~uvicorn~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/encode/uvicorn/master/requirements.txt","https://raw.githubusercontent.com/encode/uvicorn/master/setup.py","https://raw.githubusercontent.com/encode/uvicorn/master/pyproject.toml"],"_requirements_localurls":["encode~uvicorn~requirements.txt","encode~uvicorn~setup.py","encode~uvicorn~pyproject.toml"]},{"index":44,"category":"ml","githuburl":"https://github.com/lmcinnes/umap","featured":null,"links":null,"description":null,"_repopath":"lmcinnes/umap","_reponame":"umap","_stars":5961,"_forks":694,"_watches":124,"_topics":["umap","dimensionality-reduction","visualization","machine-learning","topological-data-analysis"],"_language":"Python","_homepage":null,"_description":"umap: Uniform Manifold Approximation and Projection","_organization":"lmcinnes","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-11T00:00:00.000Z","_created_at":"2017-07-02T00:00:00.000Z","_age_weeks":285,"_stars_per_week":20.91,"_pop_contributor_count":109,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","contextlabcosanlab","microsoft","tutteinstituteformathematicsandcomputing"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.87,"_pop_updated_issues_count":34,"_pop_closed_issues_count":11,"_pop_created_since_days":67,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":34.0,"_pop_comment_count":42.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":45,"_pop_score":46.95,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/lmcinnes/umap/master/README.rst","_readme_localurl":"lmcinnes~umap~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lmcinnes/umap/master/requirements.txt","https://raw.githubusercontent.com/lmcinnes/umap/master/setup.py"],"_requirements_localurls":["lmcinnes~umap~requirements.txt","lmcinnes~umap~setup.py"]},{"index":599,"category":"gis","githuburl":"https://github.com/domlysz/blendergis","featured":null,"links":null,"description":null,"_repopath":"domlysz/blendergis","_reponame":"BlenderGIS","_stars":5875,"_forks":1093,"_watches":244,"_topics":["blender","addon","geospatial","gis","shapefile","delaunay-triangulation","raster","openstreetmap","python","dem","3dgis","map","geodata","georeferencing","importexport","3d","terrain-model","basemap","3d-map"],"_language":"Python","_homepage":"","_description":"BlenderGIS: Blender addons to make the bridge between Blender and geographic data","_organization":"domlysz","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-05-31T00:00:00.000Z","_created_at":"2014-05-08T00:00:00.000Z","_age_weeks":449,"_stars_per_week":13.07,"_pop_contributor_count":15,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["alphagov"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.21,"_pop_updated_issues_count":28,"_pop_closed_issues_count":4,"_pop_created_since_days":105,"_pop_updated_since_days":7,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":28.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":61,"_pop_score":33.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/domlysz/blendergis/master/README.md","_readme_localurl":"domlysz~blendergis~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":537,"category":"nlp","githuburl":"https://github.com/espnet/espnet","featured":null,"links":null,"description":null,"_repopath":"espnet/espnet","_reponame":"espnet","_stars":5832,"_forks":1782,"_watches":184,"_topics":["deep-learning","end-to-end","chainer","pytorch","kaldi","speech-recognition","speech-synthesis","speech-translation","machine-translation","voice-conversion","speech-enhancement","speech-separation","singing-voice-synthesis","speaker-diarization","spoken-language-understanding"],"_language":"Python","_homepage":"https://espnet.github.io/espnet/","_description":"espnet: End-to-End Speech Processing Toolkit","_organization":"espnet","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2017-12-13T00:00:00.000Z","_age_weeks":261,"_stars_per_week":22.28,"_pop_contributor_count":312,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["fairatmetaai","nagoyauniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":35.96,"_pop_updated_issues_count":258,"_pop_closed_issues_count":151,"_pop_created_since_days":61,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":258.0,"_pop_comment_count":530.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":6280,"_pop_score":69.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/espnet/espnet/master/README.md","_readme_localurl":"espnet~espnet~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/espnet/espnet/master/setup.py"],"_requirements_localurls":["espnet~espnet~setup.py"]},{"index":313,"category":"util","githuburl":"https://github.com/pypa/pipx","featured":null,"links":null,"description":null,"_repopath":"pypa/pipx","_reponame":"pipx","_stars":5810,"_forks":265,"_watches":65,"_topics":["pip","cli","pypi","venv","hacktoberfest","python"],"_language":"Python","_homepage":"https://pypa.github.io/pipx/","_description":"pipx: Install and Run Python Applications in Isolated Environments","_organization":"pypa","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2018-10-06T00:00:00.000Z","_age_weeks":219,"_stars_per_week":26.5,"_pop_contributor_count":82,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["astronomer","bloomberglp"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.12,"_pop_updated_issues_count":51,"_pop_closed_issues_count":21,"_pop_created_since_days":51,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":51.0,"_pop_comment_count":95.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":107,"_pop_score":49.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pypa/pipx/master/README.md","_readme_localurl":"pypa~pipx~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pypa/pipx/master/pyproject.toml"],"_requirements_localurls":["pypa~pipx~pyproject.toml"]},{"index":777,"category":"util","githuburl":"https://github.com/google/latexify_py","featured":null,"links":null,"description":null,"_repopath":"google/latexify_py","_reponame":"latexify_py","_stars":5807,"_forks":316,"_watches":50,"_topics":[],"_language":"Python","_homepage":"","_description":"latexify_py: A library to generate LaTeX expression from Python code.","_organization":"google","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2020-07-25T00:00:00.000Z","_age_weeks":125,"_stars_per_week":46.35,"_pop_contributor_count":24,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","inspired-co"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.69,"_pop_updated_issues_count":146,"_pop_closed_issues_count":133,"_pop_created_since_days":29,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":146.0,"_pop_comment_count":389.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":4,"_pop_score":42.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/latexify_py/master/README.md","_readme_localurl":"google~latexify_py~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/google/latexify_py/master/pyproject.toml"],"_requirements_localurls":["google~latexify_py~pyproject.toml"]},{"index":345,"category":"jupyter","githuburl":"https://github.com/mwouts/jupytext","featured":null,"links":null,"description":null,"_repopath":"mwouts/jupytext","_reponame":"jupytext","_stars":5713,"_forks":363,"_watches":70,"_topics":["jupyter-notebook","jupyterlab-extension","version-control","knitr","rstudio","markdown","rmarkdown","python","hydrogen","notebooks","jupyterlab"],"_language":"Python","_homepage":"https://jupytext.readthedocs.io","_description":"jupytext: Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts","_organization":"mwouts","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2018-06-15T00:00:00.000Z","_age_weeks":235,"_stars_per_week":24.27,"_pop_contributor_count":74,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebookresearch","imperialcollegelondon","ucberkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.9,"_pop_updated_issues_count":40,"_pop_closed_issues_count":18,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":29,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":40.0,"_pop_comment_count":92.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":113,"_pop_score":52.13,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mwouts/jupytext/master/README.md","_readme_localurl":"mwouts~jupytext~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mwouts/jupytext/master/requirements.txt","https://raw.githubusercontent.com/mwouts/jupytext/master/setup.py","https://raw.githubusercontent.com/mwouts/jupytext/master/pyproject.toml"],"_requirements_localurls":["mwouts~jupytext~requirements.txt","mwouts~jupytext~setup.py","mwouts~jupytext~pyproject.toml"]},{"index":69,"category":"util","githuburl":"https://github.com/pygithub/pygithub","featured":null,"links":null,"description":null,"_repopath":"pygithub/pygithub","_reponame":"PyGithub","_stars":5678,"_forks":1566,"_watches":113,"_topics":["pygithub","python","github","github-api"],"_language":"Python","_homepage":"https://pygithub.readthedocs.io/","_description":"PyGithub: Typed interactions with the GitHub API v3","_organization":"pygithub","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2012-02-25T00:00:00.000Z","_age_weeks":564,"_stars_per_week":10.06,"_pop_contributor_count":293,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["authzed","suse","zendesk"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":128,"_pop_closed_issues_count":53,"_pop_created_since_days":132,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":128.0,"_pop_comment_count":162.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":897,"_pop_score":58.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pygithub/pygithub/master/README.md","_readme_localurl":"pygithub~pygithub~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pygithub/pygithub/master/requirements.txt","https://raw.githubusercontent.com/pygithub/pygithub/master/setup.py"],"_requirements_localurls":["pygithub~pygithub~requirements.txt","pygithub~pygithub~setup.py"]},{"index":730,"category":"ml","githuburl":"https://github.com/cleverhans-lab/cleverhans","featured":null,"links":null,"description":null,"_repopath":"cleverhans-lab/cleverhans","_reponame":"cleverhans","_stars":5662,"_forks":1376,"_watches":190,"_topics":["machine-learning","security","benchmarking"],"_language":"Jupyter Notebook","_homepage":"","_description":"cleverhans: An adversarial example library for constructing attacks, building defenses, and benchmarking both","_organization":"cleverhans-lab","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2021-09-23T00:00:00.000Z","_created_at":"2016-09-15T00:00:00.000Z","_age_weeks":326,"_stars_per_week":17.34,"_pop_contributor_count":129,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["universityoftoronto"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":76,"_pop_updated_since_days":15,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":5,"_pop_score":25.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cleverhans-lab/cleverhans/master/README.md","_readme_localurl":"cleverhans-lab~cleverhans~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/cleverhans-lab/cleverhans/master/setup.py"],"_requirements_localurls":["cleverhans-lab~cleverhans~setup.py"]},{"index":106,"category":"ml","githuburl":"https://github.com/nicolashug/surprise","featured":null,"links":null,"description":null,"_repopath":"nicolashug/surprise","_reponame":"Surprise","_stars":5637,"_forks":963,"_watches":149,"_topics":["recommender","systems","recommendation","svd","matrix","factorization","machine-learning"],"_language":"Python","_homepage":"http://surpriselib.com","_description":"Surprise: A Python scikit for building and analyzing recommender systems","_organization":"nicolashug","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-31T00:00:00.000Z","_created_at":"2016-10-23T00:00:00.000Z","_age_weeks":321,"_stars_per_week":17.55,"_pop_contributor_count":44,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["centralesupelec","hirosystems"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":23,"_pop_closed_issues_count":12,"_pop_created_since_days":75,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":23.0,"_pop_comment_count":24.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":99,"_pop_score":41.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nicolashug/surprise/master/README.md","_readme_localurl":"nicolashug~surprise~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nicolashug/surprise/master/requirements.txt","https://raw.githubusercontent.com/nicolashug/surprise/master/setup.py"],"_requirements_localurls":["nicolashug~surprise~requirements.txt","nicolashug~surprise~setup.py"]},{"index":68,"category":"gamedev","githuburl":"https://github.com/pygame/pygame","featured":1.0,"links":null,"description":null,"_repopath":"pygame/pygame","_reponame":"pygame","_stars":5546,"_forks":2435,"_watches":160,"_topics":["python","pygame","sdl2","sdl","game-development","gamedev","game-dev"],"_language":"C","_homepage":"https://www.pygame.org","_description":"pygame: \ud83d\udc0d\ud83c\udfae pygame (the library) is a Free and Open Source python programming language library for making multimedia applications like games built on top of the excellent SDL library. C, Python, Native, OpenGL.","_organization":"pygame","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2017-03-26T00:00:00.000Z","_age_weeks":299,"_stars_per_week":18.54,"_pop_contributor_count":263,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.81,"_pop_updated_issues_count":342,"_pop_closed_issues_count":231,"_pop_created_since_days":70,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":342.0,"_pop_comment_count":571.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":806,"_pop_score":58.38,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pygame/pygame/master/README.rst","_readme_localurl":"pygame~pygame~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pygame/pygame/master/setup.py"],"_requirements_localurls":["pygame~pygame~setup.py"]},{"index":773,"category":"ml-dl","githuburl":"https://github.com/sanster/lama-cleaner","featured":null,"links":null,"description":null,"_repopath":"sanster/lama-cleaner","_reponame":"lama-cleaner","_stars":5506,"_forks":445,"_watches":47,"_topics":["inpainting","pytorch","lama","latent-diffusion","mat","zits","stable-diffusion"],"_language":"Python","_homepage":"","_description":"lama-cleaner: Image inpainting tool powered by SOTA AI Model. Remove any unwanted object, defect, people from your pictures or erase and replace(powered by stable diffusion) any thing on your pictures.","_organization":"sanster","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2021-11-15T00:00:00.000Z","_age_weeks":57,"_stars_per_week":96.6,"_pop_contributor_count":11,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["musixmatchdev"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.69,"_pop_updated_issues_count":105,"_pop_closed_issues_count":84,"_pop_created_since_days":13,"_pop_updated_since_days":0,"_pop_recent_releases_count":33,"_pop_recent_releases_estimated_tags":33,"_pop_recent_releases_adjusted_count":33,"_pop_issue_count":105.0,"_pop_comment_count":214.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":7,"_pop_score":40.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sanster/lama-cleaner/master/README.md","_readme_localurl":"sanster~lama-cleaner~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sanster/lama-cleaner/master/requirements.txt","https://raw.githubusercontent.com/sanster/lama-cleaner/master/setup.py"],"_requirements_localurls":["sanster~lama-cleaner~requirements.txt","sanster~lama-cleaner~setup.py"]},{"index":643,"category":"util","githuburl":"https://github.com/theskumar/python-dotenv","featured":null,"links":null,"description":null,"_repopath":"theskumar/python-dotenv","_reponame":"python-dotenv","_stars":5495,"_forks":353,"_watches":33,"_topics":["python","devops-tools","dotenv","12-factor-app","configuration","env","environment-variables"],"_language":"Python","_homepage":"https://saurabh-kumar.com/python-dotenv/","_description":"python-dotenv: Reads key-value pairs from a .env file and can set them as environment variables. It helps in developing applications following the 12-factor principles.","_organization":"theskumar","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-25T00:00:00.000Z","_created_at":"2014-09-06T00:00:00.000Z","_age_weeks":432,"_stars_per_week":12.71,"_pop_contributor_count":85,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["codiumteam","docker","fueled","latacora"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.69,"_pop_updated_issues_count":29,"_pop_closed_issues_count":14,"_pop_created_since_days":101,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":29.0,"_pop_comment_count":23.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":3185,"_pop_score":53.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/theskumar/python-dotenv/master/README.md","_readme_localurl":"theskumar~python-dotenv~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/theskumar/python-dotenv/master/requirements.txt","https://raw.githubusercontent.com/theskumar/python-dotenv/master/setup.py"],"_requirements_localurls":["theskumar~python-dotenv~requirements.txt","theskumar~python-dotenv~setup.py"]},{"index":682,"category":"diffusion","githuburl":"https://github.com/compvis/latent-diffusion","featured":null,"links":null,"description":null,"_repopath":"compvis/latent-diffusion","_reponame":"latent-diffusion","_stars":5488,"_forks":716,"_watches":71,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"latent-diffusion: High-Resolution Image Synthesis with Latent Diffusion Models","_organization":"compvis","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-07-26T00:00:00.000Z","_created_at":"2021-12-20T00:00:00.000Z","_age_weeks":52,"_stars_per_week":105.54,"_pop_contributor_count":5,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","runwayml"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":80,"_pop_closed_issues_count":14,"_pop_created_since_days":12,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":80.0,"_pop_comment_count":126.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":16,"_pop_score":26.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/compvis/latent-diffusion/master/README.md","_readme_localurl":"compvis~latent-diffusion~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/compvis/latent-diffusion/master/setup.py"],"_requirements_localurls":["compvis~latent-diffusion~setup.py"]},{"index":439,"category":"perf","githuburl":"https://github.com/mher/flower","featured":null,"links":null,"description":null,"_repopath":"mher/flower","_reponame":"flower","_stars":5485,"_forks":979,"_watches":144,"_topics":["celery","task-queue","monitoring","administration","workers","rabbitmq","redis","python","asynchronous"],"_language":"Python","_homepage":"https://flower.readthedocs.io","_description":"flower: Real-time monitor and web admin for Celery distributed task queue","_organization":"mher","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-14T00:00:00.000Z","_created_at":"2012-07-08T00:00:00.000Z","_age_weeks":545,"_stars_per_week":10.06,"_pop_contributor_count":196,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["robinhoodmarkets","zipsale"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.27,"_pop_updated_issues_count":31,"_pop_closed_issues_count":12,"_pop_created_since_days":127,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":31.0,"_pop_comment_count":41.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":364,"_pop_score":50.7,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mher/flower/master/README.rst","_readme_localurl":"mher~flower~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mher/flower/master/setup.py"],"_requirements_localurls":["mher~flower~setup.py"]},{"index":723,"category":"ml","githuburl":"https://github.com/py-why/dowhy","featured":null,"links":null,"description":null,"_repopath":"py-why/dowhy","_reponame":"dowhy","_stars":5478,"_forks":771,"_watches":136,"_topics":["causal-inference","machine-learning","graphical-models","bayesian-networks","data-science","python3","causality","causal-models","treatment-effects","do-calculus","causal-machine-learning"],"_language":"Python","_homepage":"https://www.pywhy.org/dowhy","_description":"DoWhy is a Python library for causal inference that supports explicit modeling and testing of causal assumptions. DoWhy is based on a unified language for causal inference, combining causal graphical models and potential outcomes frameworks. ","_organization":"py-why","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-05-31T00:00:00.000Z","_age_weeks":237,"_stars_per_week":23.06,"_pop_contributor_count":64,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon","barclaysib;columbia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.81,"_pop_updated_issues_count":191,"_pop_closed_issues_count":159,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":191.0,"_pop_comment_count":321.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":5,"_pop_score":47.82,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/py-why/dowhy/master/README.rst","_readme_localurl":"py-why~dowhy~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/py-why/dowhy/master/pyproject.toml"],"_requirements_localurls":["py-why~dowhy~pyproject.toml"]},{"index":193,"category":"util","githuburl":"https://github.com/pycqa/isort","featured":null,"links":null,"description":null,"_repopath":"pycqa/isort","_reponame":"isort","_stars":5429,"_forks":502,"_watches":42,"_topics":["auto-formatter","isort","sorting-imports","python-utility","cli","linter","cleaner","formatter","python","python3","hacktoberfest"],"_language":"Python","_homepage":"https://pycqa.github.io/isort/","_description":"isort: A Python utility / library to sort imports.","_organization":"pycqa","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2013-09-02T00:00:00.000Z","_age_weeks":485,"_stars_per_week":11.19,"_pop_contributor_count":271,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","pioneervalleybooks","stripe","swisscom"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.6,"_pop_updated_issues_count":124,"_pop_closed_issues_count":92,"_pop_created_since_days":113,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":124.0,"_pop_comment_count":106.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":9130,"_pop_score":65.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pycqa/isort/master/README.md","_readme_localurl":"pycqa~isort~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pycqa/isort/master/pyproject.toml"],"_requirements_localurls":["pycqa~isort~pyproject.toml"]},{"index":96,"category":"data","githuburl":"https://github.com/vi3k6i5/flashtext","featured":null,"links":null,"description":null,"_repopath":"vi3k6i5/flashtext","_reponame":"flashtext","_stars":5326,"_forks":597,"_watches":139,"_topics":["search-in-text","keyword-extraction","nlp","word2vec","data-extraction"],"_language":"Python","_homepage":null,"_description":"flashtext: Extract Keywords from sentence or Replace keywords in sentences.","_organization":"vi3k6i5","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-05-03T00:00:00.000Z","_created_at":"2017-08-15T00:00:00.000Z","_age_weeks":278,"_stars_per_week":19.1,"_pop_contributor_count":7,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["meta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":4,"_pop_closed_issues_count":0,"_pop_created_since_days":65,"_pop_updated_since_days":32,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":5,"_pop_score":18.52,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/vi3k6i5/flashtext/master/README.rst","_readme_localurl":"vi3k6i5~flashtext~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/vi3k6i5/flashtext/master/setup.py"],"_requirements_localurls":["vi3k6i5~flashtext~setup.py"]},{"index":579,"category":"ml","githuburl":"https://github.com/probml/pyprobml","featured":null,"links":null,"description":null,"_repopath":"probml/pyprobml","_reponame":"pyprobml","_stars":5282,"_forks":1249,"_watches":173,"_topics":["jupyter-notebooks","machine-learning","colab","pml","probabilistic-programming","jax","tensorflow","pytorch","pymc3","numpyro","flax","pyro","blackjax"],"_language":"Jupyter Notebook","_homepage":"","_description":"pyprobml: Python code for \"Probabilistic Machine learning\" book by Kevin Murphy","_organization":"probml","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2016-08-17T00:00:00.000Z","_age_weeks":330,"_stars_per_week":15.97,"_pop_contributor_count":66,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["collaborative,learning,andadaptiverobots(clear)","google","iitgandhinagar","indianinstituteofscience(iisc)","nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.58,"_pop_updated_issues_count":7,"_pop_closed_issues_count":6,"_pop_created_since_days":77,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":7.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":232,"_pop_score":50.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/probml/pyprobml/master/README.md","_readme_localurl":"probml~pyprobml~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/probml/pyprobml/master/requirements.txt","https://raw.githubusercontent.com/probml/pyprobml/master/pyproject.toml"],"_requirements_localurls":["probml~pyprobml~requirements.txt","probml~pyprobml~pyproject.toml"]},{"index":278,"category":"data","githuburl":"https://github.com/airbnb/knowledge-repo","featured":null,"links":null,"description":null,"_repopath":"airbnb/knowledge-repo","_reponame":"knowledge-repo","_stars":5238,"_forks":704,"_watches":180,"_topics":["data","data-science","knowledge","data-analysis"],"_language":"Python","_homepage":"","_description":"knowledge-repo: A next-generation curated knowledge sharing platform for data scientists and other technical professions.","_organization":"airbnb","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2016-08-17T00:00:00.000Z","_age_weeks":330,"_stars_per_week":15.84,"_pop_contributor_count":69,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["airbnb","datascientistatnetflix"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.25,"_pop_updated_issues_count":17,"_pop_closed_issues_count":13,"_pop_created_since_days":77,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":17.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":16,"_pop_score":43.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/airbnb/knowledge-repo/master/README.md","_readme_localurl":"airbnb~knowledge-repo~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/airbnb/knowledge-repo/master/requirements.txt","https://raw.githubusercontent.com/airbnb/knowledge-repo/master/setup.py"],"_requirements_localurls":["airbnb~knowledge-repo~requirements.txt","airbnb~knowledge-repo~setup.py"]},{"index":283,"category":"util","githuburl":"https://github.com/sdispater/pendulum","featured":null,"links":null,"description":null,"_repopath":"sdispater/pendulum","_reponame":"pendulum","_stars":5226,"_forks":312,"_watches":63,"_topics":["python","datetime","date","time","python3","timezones"],"_language":"Python","_homepage":"https://pendulum.eustace.io","_description":"pendulum: Python datetimes made easy","_organization":"sdispater","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2016-06-27T00:00:00.000Z","_age_weeks":338,"_stars_per_week":15.46,"_pop_contributor_count":87,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["stxnext"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.75,"_pop_updated_issues_count":39,"_pop_closed_issues_count":15,"_pop_created_since_days":79,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":39.0,"_pop_comment_count":28.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":60,"_pop_score":41.09,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sdispater/pendulum/master/README.rst","_readme_localurl":"sdispater~pendulum~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sdispater/pendulum/master/pyproject.toml"],"_requirements_localurls":["sdispater~pendulum~pyproject.toml"]},{"index":632,"category":"util","githuburl":"https://github.com/pyca/cryptography","featured":null,"links":null,"description":null,"_repopath":"pyca/cryptography","_reponame":"cryptography","_stars":5220,"_forks":1103,"_watches":119,"_topics":["python","cryptography"],"_language":"Python","_homepage":"https://cryptography.io","_description":"cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.","_organization":"pyca","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2013-08-07T00:00:00.000Z","_age_weeks":488,"_stars_per_week":10.68,"_pop_contributor_count":275,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["purple-dot"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.67,"_pop_updated_issues_count":380,"_pop_closed_issues_count":359,"_pop_created_since_days":114,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":380.0,"_pop_comment_count":341.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":11167,"_pop_score":67.29,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyca/cryptography/master/README.rst","_readme_localurl":"pyca~cryptography~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyca/cryptography/master/setup.py","https://raw.githubusercontent.com/pyca/cryptography/master/pyproject.toml"],"_requirements_localurls":["pyca~cryptography~setup.py","pyca~cryptography~pyproject.toml"]},{"index":538,"category":"nlp","githuburl":"https://github.com/nvidia/nemo","featured":null,"links":null,"description":null,"_repopath":"nvidia/nemo","_reponame":"NeMo","_stars":5219,"_forks":1294,"_watches":138,"_topics":["deep-learning","speech-recognition","nlp","nlp-machine-learning","neural-network","machine-translation","speech-synthesis","speech-to-text","text-to-speech","nmt","language-model","speaker-diarization","speaker-recognition","text-normalization","asr","tts"],"_language":"Python","_homepage":"https://nvidia.github.io/NeMo/","_description":"NeMo: a toolkit for conversational AI","_organization":"nvidia","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2019-08-05T00:00:00.000Z","_age_weeks":176,"_stars_per_week":29.65,"_pop_contributor_count":193,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nvidia","nyu,nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":18.9,"_pop_updated_issues_count":833,"_pop_closed_issues_count":753,"_pop_created_since_days":41,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":833.0,"_pop_comment_count":1535.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":885,"_pop_score":64.8,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/nvidia/nemo/master/README.rst","_readme_localurl":"nvidia~nemo~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nvidia/nemo/master/setup.py"],"_requirements_localurls":["nvidia~nemo~setup.py"]},{"index":511,"category":"ml","githuburl":"https://github.com/google/automl","featured":null,"links":null,"description":null,"_repopath":"google/automl","_reponame":"automl","_stars":5211,"_forks":1382,"_watches":150,"_topics":["automl","efficientdet","object-detection","efficientnet","efficientnetv2"],"_language":"Jupyter Notebook","_homepage":"","_description":"automl: Google Brain AutoML","_organization":"google","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-10-09T00:00:00.000Z","_created_at":"2020-03-12T00:00:00.000Z","_age_weeks":144,"_stars_per_week":36.04,"_pop_contributor_count":37,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amd","google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":13,"_pop_closed_issues_count":3,"_pop_created_since_days":34,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":13.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":959,"_pop_score":39.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/automl/master/README.md","_readme_localurl":"google~automl~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":434,"category":"util","githuburl":"https://github.com/scikit-image/scikit-image","featured":null,"links":null,"description":null,"_repopath":"scikit-image/scikit-image","_reponame":"scikit-image","_stars":5172,"_forks":2076,"_watches":187,"_topics":["image-processing","python","computer-vision","hacktoberfest","closember"],"_language":"Python","_homepage":"https://scikit-image.org","_description":"scikit-image: Image processing in Python","_organization":"scikit-image","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2011-07-07T00:00:00.000Z","_age_weeks":597,"_stars_per_week":8.66,"_pop_contributor_count":586,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["biomedicinediscoveryinstitute,monashuniversity","microsoft","mongodb","nvidia","universityofcalifornia,berkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.21,"_pop_updated_issues_count":376,"_pop_closed_issues_count":226,"_pop_created_since_days":139,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":377.0,"_pop_comment_count":566.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":779,"_pop_score":66.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scikit-image/scikit-image/master/README.md","_readme_localurl":"scikit-image~scikit-image~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scikit-image/scikit-image/master/requirements.txt","https://raw.githubusercontent.com/scikit-image/scikit-image/master/setup.py","https://raw.githubusercontent.com/scikit-image/scikit-image/master/pyproject.toml"],"_requirements_localurls":["scikit-image~scikit-image~requirements.txt","scikit-image~scikit-image~setup.py","scikit-image~scikit-image~pyproject.toml"]},{"index":3,"category":"ml","githuburl":"https://github.com/awslabs/autogluon","featured":null,"links":null,"description":null,"_repopath":"awslabs/autogluon","_reponame":"autogluon","_stars":5160,"_forks":674,"_watches":94,"_topics":["automl","machine-learning","data-science","deep-learning","ensemble-learning","image-classification","computer-vision","natural-language-processing","structured-data","object-detection","gluon","transfer-learning","pytorch","automated-machine-learning","scikit-learn","autogluon","tabular-data","hyperparameter-optimization","time-series","forecasting"],"_language":"Python","_homepage":"https://auto.gluon.ai/","_description":"AutoGluon: AutoML for Image, Text, Time Series, and Tabular Data","_organization":"awslabs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2019-07-29T00:00:00.000Z","_age_weeks":177,"_stars_per_week":29.15,"_pop_contributor_count":96,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon","amazonai","amazonwebservices","awsai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.71,"_pop_updated_issues_count":481,"_pop_closed_issues_count":353,"_pop_created_since_days":41,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":481.0,"_pop_comment_count":972.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":56,"_pop_score":58.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/awslabs/autogluon/master/README.md","_readme_localurl":"awslabs~autogluon~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/awslabs/autogluon/master/pyproject.toml"],"_requirements_localurls":["awslabs~autogluon~pyproject.toml"]},{"index":880,"category":"time-series","githuburl":"https://github.com/unit8co/darts","featured":null,"links":null,"description":null,"_repopath":"unit8co/darts","_reponame":"darts","_stars":5138,"_forks":557,"_watches":41,"_topics":["python","time-series","forecasting","machine-learning","deep-learning"],"_language":"Python","_homepage":"https://unit8co.github.io/darts/","_description":"darts: A python library for easy manipulation and forecasting of time series.","_organization":"unit8co","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-09-13T00:00:00.000Z","_age_weeks":222,"_stars_per_week":23.08,"_pop_contributor_count":73,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["unit8co","unit8sa"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.38,"_pop_updated_issues_count":278,"_pop_closed_issues_count":166,"_pop_created_since_days":52,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":278.0,"_pop_comment_count":419.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":13,"_pop_score":50.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/unit8co/darts/master/README.md","_readme_localurl":"unit8co~darts~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/unit8co/darts/master/setup.py","https://raw.githubusercontent.com/unit8co/darts/master/pyproject.toml"],"_requirements_localurls":["unit8co~darts~setup.py","unit8co~darts~pyproject.toml"]},{"index":546,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/mmf","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/mmf","_reponame":"mmf","_stars":5093,"_forks":899,"_watches":117,"_topics":["pytorch","vqa","pretrained-models","multimodal","deep-learning","captioning","dialog","textvqa","hateful-memes","multi-tasking"],"_language":"Python","_homepage":"https://mmf.sh/","_description":"mmf: A modular framework for vision & language multimodal research from Facebook AI Research (FAIR)","_organization":"facebookresearch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2018-06-27T00:00:00.000Z","_age_weeks":233,"_stars_per_week":21.79,"_pop_contributor_count":107,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["metaai","researchhuggingface,contributorjquery,pastfacebookresearch","uwstudent"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.83,"_pop_updated_issues_count":18,"_pop_closed_issues_count":2,"_pop_created_since_days":54,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":18.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":3572,"_pop_score":51.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/mmf/master/README.md","_readme_localurl":"facebookresearch~mmf~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/mmf/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/mmf/master/setup.py","https://raw.githubusercontent.com/facebookresearch/mmf/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~mmf~requirements.txt","facebookresearch~mmf~setup.py","facebookresearch~mmf~pyproject.toml"]},{"index":352,"category":"ml-ops","githuburl":"https://github.com/activeloopai/hub","featured":null,"links":null,"description":null,"_repopath":"activeloopai/hub","_reponame":"deeplake","_stars":5093,"_forks":412,"_watches":66,"_topics":["datasets","deep-learning","machine-learning","data-science","pytorch","tensorflow","data-version-control","python","ai","ml","mlops","computer-vision","cv","data-processing","image-processing","data-centric","jupyter-notebook","datalake","lakehouse"],"_language":"Python","_homepage":"https://activeloop.ai","_description":"deeplake: Data Lake for Deep Learning. Build, manage, query, version, & visualize datasets. Stream data real-time to PyTorch/TensorFlow. https://activeloop.ai ","_organization":"activeloopai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-08-09T00:00:00.000Z","_age_weeks":175,"_stars_per_week":29.03,"_pop_contributor_count":109,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["activeloop"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":23.83,"_pop_updated_issues_count":202,"_pop_closed_issues_count":178,"_pop_created_since_days":41,"_pop_updated_since_days":0,"_pop_recent_releases_count":47,"_pop_recent_releases_estimated_tags":30,"_pop_recent_releases_adjusted_count":47,"_pop_issue_count":202.0,"_pop_comment_count":254.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":242,"_pop_score":57.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/activeloopai/hub/master/README.md","_readme_localurl":"activeloopai~hub~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/activeloopai/hub/master/requirements.txt","https://raw.githubusercontent.com/activeloopai/hub/master/setup.py"],"_requirements_localurls":["activeloopai~hub~requirements.txt","activeloopai~hub~setup.py"]},{"index":161,"category":"ml","githuburl":"https://github.com/wandb/client","featured":null,"links":null,"description":null,"_repopath":"wandb/client","_reponame":"wandb","_stars":5078,"_forks":387,"_watches":38,"_topics":["machine-learning","experiment-track","deep-learning","keras","tensorflow","pytorch","hyperparameter-search","reinforcement-learning","mlops","data-science","collaboration","hyperparameter-optimization","reproducibility","hyperparameter-tuning","data-versioning","model-versioning","ml-platform"],"_language":"Python","_homepage":"https://wandb.ai","_description":"wandb: \ud83d\udd25 A tool for visualizing and tracking your machine learning experiments. This repo contains the CLI and Python API.","_organization":"wandb","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2017-03-24T00:00:00.000Z","_age_weeks":299,"_stars_per_week":16.96,"_pop_contributor_count":135,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["crowdflower.com","weightsandbiases"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.27,"_pop_updated_issues_count":692,"_pop_closed_issues_count":325,"_pop_created_since_days":70,"_pop_updated_since_days":0,"_pop_recent_releases_count":26,"_pop_recent_releases_estimated_tags":21,"_pop_recent_releases_adjusted_count":26,"_pop_issue_count":692.0,"_pop_comment_count":1398.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":363,"_pop_score":63.32,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/wandb/client/master/README.md","_readme_localurl":"wandb~client~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/wandb/client/master/requirements.txt","https://raw.githubusercontent.com/wandb/client/master/setup.py","https://raw.githubusercontent.com/wandb/client/master/pyproject.toml"],"_requirements_localurls":["wandb~client~requirements.txt","wandb~client~setup.py","wandb~client~pyproject.toml"]},{"index":301,"category":"data","githuburl":"https://github.com/kaggle/kaggle-api","featured":null,"links":null,"description":null,"_repopath":"kaggle/kaggle-api","_reponame":"kaggle-api","_stars":5073,"_forks":978,"_watches":188,"_topics":[],"_language":"Python","_homepage":"","_description":"kaggle-api: Official Kaggle API","_organization":"kaggle","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-03-15T00:00:00.000Z","_created_at":"2018-01-25T00:00:00.000Z","_age_weeks":255,"_stars_per_week":19.85,"_pop_contributor_count":36,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":37,"_pop_closed_issues_count":7,"_pop_created_since_days":60,"_pop_updated_since_days":21,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":37.0,"_pop_comment_count":41.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":27,"_pop_score":28.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kaggle/kaggle-api/master/README.md","_readme_localurl":"kaggle~kaggle-api~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kaggle/kaggle-api/master/setup.py"],"_requirements_localurls":["kaggle~kaggle-api~setup.py"]},{"index":81,"category":"util","githuburl":"https://github.com/sphinx-doc/sphinx","featured":null,"links":null,"description":null,"_repopath":"sphinx-doc/sphinx","_reponame":"sphinx","_stars":5056,"_forks":1812,"_watches":140,"_topics":["python","documentation","documentation-tool","sphinx","markdown","restructuredtext"],"_language":"Python","_homepage":"https://www.sphinx-doc.org/","_description":"sphinx: The Sphinx documentation generator","_organization":"sphinx-doc","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2015-01-02T00:00:00.000Z","_age_weeks":415,"_stars_per_week":12.17,"_pop_contributor_count":759,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["beproud","fzj\u00fclich","timeintermedia(timedia)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.21,"_pop_updated_issues_count":1262,"_pop_closed_issues_count":297,"_pop_created_since_days":97,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":31,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":1262.0,"_pop_comment_count":578.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":18396,"_pop_score":74.04,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sphinx-doc/sphinx/master/README.rst","_readme_localurl":"sphinx-doc~sphinx~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sphinx-doc/sphinx/master/pyproject.toml"],"_requirements_localurls":["sphinx-doc~sphinx~pyproject.toml"]},{"index":279,"category":"jupyter","githuburl":"https://github.com/nteract/papermill","featured":null,"links":null,"description":null,"_repopath":"nteract/papermill","_reponame":"papermill","_stars":5037,"_forks":379,"_watches":91,"_topics":["jupyter","notebooks","notebook-generator","nteract","publishing","pipeline","notebook","python","r","julia","scala"],"_language":"Python","_homepage":"http://papermill.readthedocs.io/en/latest/","_description":"papermill: \ud83d\udcda Parameterize, execute, and analyze notebooks","_organization":"nteract","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-10-18T00:00:00.000Z","_created_at":"2017-07-06T00:00:00.000Z","_age_weeks":284,"_stars_per_week":17.7,"_pop_contributor_count":108,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["netflix","noteable-io","willingconsulting"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.77,"_pop_updated_issues_count":36,"_pop_closed_issues_count":19,"_pop_created_since_days":66,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":36.0,"_pop_comment_count":56.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":106,"_pop_score":50.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nteract/papermill/master/README.md","_readme_localurl":"nteract~papermill~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nteract/papermill/master/requirements.txt","https://raw.githubusercontent.com/nteract/papermill/master/setup.py","https://raw.githubusercontent.com/nteract/papermill/master/pyproject.toml"],"_requirements_localurls":["nteract~papermill~requirements.txt","nteract~papermill~setup.py","nteract~papermill~pyproject.toml"]},{"index":214,"category":"nlp","githuburl":"https://github.com/speechbrain/speechbrain","featured":null,"links":null,"description":null,"_repopath":"speechbrain/speechbrain","_reponame":"speechbrain","_stars":5021,"_forks":974,"_watches":110,"_topics":["speech-recognition","speech-toolkit","speaker-recognition","speech-to-text","speech-enhancement","speech-separation","audio","audio-processing","speech-processing","speechrecognition","asr","voice-recognition","spoken-language-understanding","speaker-diarization","speaker-verification","pytorch","huggingface","transformers","language-model","deep-learning"],"_language":"Python","_homepage":"http://speechbrain.github.io","_description":"speechbrain: A PyTorch-based Speech Toolkit","_organization":"speechbrain","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2020-04-28T00:00:00.000Z","_age_weeks":137,"_stars_per_week":36.42,"_pop_contributor_count":194,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["jpmorganchase","mit","samsung","universityofmontreal"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":17.15,"_pop_updated_issues_count":271,"_pop_closed_issues_count":185,"_pop_created_since_days":32,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":271.0,"_pop_comment_count":521.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":1683,"_pop_score":63.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/speechbrain/speechbrain/master/README.md","_readme_localurl":"speechbrain~speechbrain~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/speechbrain/speechbrain/master/requirements.txt","https://raw.githubusercontent.com/speechbrain/speechbrain/master/setup.py","https://raw.githubusercontent.com/speechbrain/speechbrain/master/pyproject.toml"],"_requirements_localurls":["speechbrain~speechbrain~requirements.txt","speechbrain~speechbrain~setup.py","speechbrain~speechbrain~pyproject.toml"]},{"index":404,"category":"perf","githuburl":"https://github.com/python-trio/trio","featured":null,"links":null,"description":null,"_repopath":"python-trio/trio","_reponame":"trio","_stars":5017,"_forks":290,"_watches":88,"_topics":["python","async","async-await","networking","io","trio","structured-concurrency"],"_language":"Python","_homepage":"https://trio.readthedocs.io","_description":"Trio \u2013 a friendly Python library for async concurrency and I/O","_organization":"python-trio","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2017-01-16T00:00:00.000Z","_age_weeks":309,"_stars_per_week":16.24,"_pop_contributor_count":138,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["elastic","hudsonrivertrading"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.5,"_pop_updated_issues_count":128,"_pop_closed_issues_count":97,"_pop_created_since_days":72,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":128.0,"_pop_comment_count":226.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":503,"_pop_score":57.9,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/python-trio/trio/master/README.rst","_readme_localurl":"python-trio~trio~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-trio/trio/master/setup.py","https://raw.githubusercontent.com/python-trio/trio/master/pyproject.toml"],"_requirements_localurls":["python-trio~trio~setup.py","python-trio~trio~pyproject.toml"]},{"index":605,"category":"jupyter","githuburl":"https://github.com/connorferster/handcalcs","featured":null,"links":null,"description":null,"_repopath":"connorferster/handcalcs","_reponame":"handcalcs","_stars":4989,"_forks":389,"_watches":76,"_topics":[],"_language":"CSS","_homepage":null,"_description":"handcalcs: Python library for converting Python calculations into rendered latex.","_organization":"connorferster","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-28T00:00:00.000Z","_created_at":"2020-02-19T00:00:00.000Z","_age_weeks":147,"_stars_per_week":33.77,"_pop_contributor_count":11,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["applemontechnologies","christianclauss","clearcalcs","rjc-development"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.98,"_pop_updated_issues_count":19,"_pop_closed_issues_count":5,"_pop_created_since_days":34,"_pop_updated_since_days":3,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":19.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":13,"_pop_score":34.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/connorferster/handcalcs/master/README.md","_readme_localurl":"connorferster~handcalcs~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/connorferster/handcalcs/master/requirements.txt","https://raw.githubusercontent.com/connorferster/handcalcs/master/pyproject.toml"],"_requirements_localurls":["connorferster~handcalcs~requirements.txt","connorferster~handcalcs~pyproject.toml"]},{"index":686,"category":"util","githuburl":"https://github.com/py-pdf/pypdf2","featured":null,"links":null,"description":null,"_repopath":"py-pdf/pypdf2","_reponame":"PyPDF2","_stars":4988,"_forks":1143,"_watches":139,"_topics":["pypdf2","pdf","python","pdf-parser","pdf-parsing","pdf-manipulation","pdf-documents","help-wanted"],"_language":"Python","_homepage":"https://pypdf2.readthedocs.io/en/latest/","_description":"PyPDF2: A pure-python PDF library capable of splitting, merging, cropping, and transforming the pages of PDF files","_organization":"py-pdf","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2012-01-06T00:00:00.000Z","_age_weeks":571,"_stars_per_week":8.73,"_pop_contributor_count":160,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["popsql"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.06,"_pop_updated_issues_count":157,"_pop_closed_issues_count":121,"_pop_created_since_days":133,"_pop_updated_since_days":0,"_pop_recent_releases_count":47,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":47,"_pop_issue_count":157.0,"_pop_comment_count":492.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.1,"_pop_dependents_count":628,"_pop_score":63.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/py-pdf/pypdf2/master/README.md","_readme_localurl":"py-pdf~pypdf2~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/py-pdf/pypdf2/master/pyproject.toml"],"_requirements_localurls":["py-pdf~pypdf2~pyproject.toml"]},{"index":652,"category":"profiling","githuburl":"https://github.com/joerick/pyinstrument","featured":null,"links":null,"description":null,"_repopath":"joerick/pyinstrument","_reponame":"pyinstrument","_stars":4954,"_forks":217,"_watches":52,"_topics":["python","django","profiler","performance","profile","async"],"_language":"Python","_homepage":"https://pyinstrument.readthedocs.io/","_description":"pyinstrument: \ud83d\udeb4\u00a0Call stack profiler for Python. Shows you why your code is slow!","_organization":"joerick","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2014-03-13T00:00:00.000Z","_age_weeks":457,"_stars_per_week":10.83,"_pop_contributor_count":47,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datadog,formerlyllnl","flycode-org","jpmorgan","nordprojects"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.92,"_pop_updated_issues_count":47,"_pop_closed_issues_count":39,"_pop_created_since_days":107,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":47.0,"_pop_comment_count":51.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":30,"_pop_score":49.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/joerick/pyinstrument/master/README.md","_readme_localurl":"joerick~pyinstrument~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/joerick/pyinstrument/master/setup.py","https://raw.githubusercontent.com/joerick/pyinstrument/master/pyproject.toml"],"_requirements_localurls":["joerick~pyinstrument~setup.py","joerick~pyinstrument~pyproject.toml"]},{"index":471,"category":"util","githuburl":"https://github.com/parthjadhav/tkinter-designer","featured":null,"links":null,"description":null,"_repopath":"parthjadhav/tkinter-designer","_reponame":"Tkinter-Designer","_stars":4944,"_forks":470,"_watches":51,"_topics":["tkinter","tkinter-gui","tkinter-python","tkinter-graphic-interface","python3","tkinter-widgets","gui-application","python-script","drag-and-drop","easy","easy-to-use","fast","gui","tkinter-designer","figma","python","automatic","collaborate","learn","hacktoberfest"],"_language":"Python","_homepage":"","_description":"Tkinter-Designer: An easy and fast way to create a Python GUI \ud83d\udc0d","_organization":"parthjadhav","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2021-05-18T00:00:00.000Z","_age_weeks":82,"_stars_per_week":59.67,"_pop_contributor_count":33,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoftazure","xd2sketch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.02,"_pop_updated_issues_count":48,"_pop_closed_issues_count":30,"_pop_created_since_days":19,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":48.0,"_pop_comment_count":42.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":15,"_pop_score":37.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/parthjadhav/tkinter-designer/master/README.md","_readme_localurl":"parthjadhav~tkinter-designer~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/parthjadhav/tkinter-designer/master/requirements.txt","https://raw.githubusercontent.com/parthjadhav/tkinter-designer/master/pyproject.toml"],"_requirements_localurls":["parthjadhav~tkinter-designer~requirements.txt","parthjadhav~tkinter-designer~pyproject.toml"]},{"index":552,"category":"ml","githuburl":"https://github.com/open-mmlab/mmsegmentation","featured":null,"links":null,"description":null,"_repopath":"open-mmlab/mmsegmentation","_reponame":"mmsegmentation","_stars":4927,"_forks":1821,"_watches":51,"_topics":["semantic-segmentation","pytorch","pspnet","deeplabv3","transformer","swin-transformer","realtime-segmentation","vessel-segmentation","retinal-vessel-segmentation","image-segmentation","medical-image-segmentation"],"_language":"Python","_homepage":"https://mmsegmentation.readthedocs.io/en/latest/","_description":"mmsegmentation: OpenMMLab Semantic Segmentation Toolbox and Benchmark.","_organization":"open-mmlab","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2020-06-14T00:00:00.000Z","_age_weeks":131,"_stars_per_week":37.57,"_pop_contributor_count":127,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["open-mmlab,shanghaiailaboratory","openmmlab","ucsd"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.42,"_pop_updated_issues_count":403,"_pop_closed_issues_count":300,"_pop_created_since_days":31,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":403.0,"_pop_comment_count":797.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":229,"_pop_score":59.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-mmlab/mmsegmentation/master/README.md","_readme_localurl":"open-mmlab~mmsegmentation~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/open-mmlab/mmsegmentation/master/requirements.txt","https://raw.githubusercontent.com/open-mmlab/mmsegmentation/master/setup.py"],"_requirements_localurls":["open-mmlab~mmsegmentation~requirements.txt","open-mmlab~mmsegmentation~setup.py"]},{"index":15,"category":"ml-dl","githuburl":"https://github.com/skorch-dev/skorch","featured":null,"links":null,"description":null,"_repopath":"skorch-dev/skorch","_reponame":"skorch","_stars":4891,"_forks":330,"_watches":81,"_topics":["scikit-learn","pytorch","machine-learning","hacktoberfest"],"_language":"Jupyter Notebook","_homepage":"","_description":"skorch: A scikit-learn compatible neural network library that wraps PyTorch","_organization":"skorch-dev","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2017-07-18T00:00:00.000Z","_age_weeks":282,"_stars_per_week":17.29,"_pop_contributor_count":52,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aeolusrobotics","ottogroupbi","quansight-labs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.06,"_pop_updated_issues_count":40,"_pop_closed_issues_count":32,"_pop_created_since_days":66,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":40.0,"_pop_comment_count":92.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":14,"_pop_score":46.18,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/skorch-dev/skorch/master/README.rst","_readme_localurl":"skorch-dev~skorch~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/skorch-dev/skorch/master/requirements.txt","https://raw.githubusercontent.com/skorch-dev/skorch/master/setup.py"],"_requirements_localurls":["skorch-dev~skorch~requirements.txt","skorch-dev~skorch~setup.py"]},{"index":569,"category":"ml","githuburl":"https://github.com/mdbloice/augmentor","featured":null,"links":null,"description":null,"_repopath":"mdbloice/augmentor","_reponame":"Augmentor","_stars":4841,"_forks":852,"_watches":123,"_topics":["augmentation","machine-learning","deep-learning","neural-networks"],"_language":"Python","_homepage":"https://augmentor.readthedocs.io/en/stable","_description":"Augmentor: Image augmentation library in Python for machine learning.","_organization":"mdbloice","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-09-23T00:00:00.000Z","_created_at":"2016-03-01T00:00:00.000Z","_age_weeks":354,"_stars_per_week":13.64,"_pop_contributor_count":22,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["medicaluniversitygraz"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.17,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":83,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":68,"_pop_score":33.28,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mdbloice/augmentor/master/README.md","_readme_localurl":"mdbloice~augmentor~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mdbloice/augmentor/master/requirements.txt","https://raw.githubusercontent.com/mdbloice/augmentor/master/setup.py"],"_requirements_localurls":["mdbloice~augmentor~requirements.txt","mdbloice~augmentor~setup.py"]},{"index":169,"category":"nlp","githuburl":"https://github.com/minimaxir/textgenrnn","featured":null,"links":null,"description":null,"_repopath":"minimaxir/textgenrnn","_reponame":"textgenrnn","_stars":4825,"_forks":753,"_watches":138,"_topics":["keras","deep-learning","text-generation","tensorflow","python"],"_language":"Python","_homepage":"","_description":"textgenrnn: Easily train your own text-generating neural network of any size and complexity on any text dataset with a few lines of code.","_organization":"minimaxir","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-07-14T00:00:00.000Z","_created_at":"2017-08-07T00:00:00.000Z","_age_weeks":280,"_stars_per_week":17.23,"_pop_contributor_count":19,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["buzzfeed","valohai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":10,"_pop_closed_issues_count":6,"_pop_created_since_days":65,"_pop_updated_since_days":30,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":10.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":4,"_pop_score":24.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/minimaxir/textgenrnn/master/README.md","_readme_localurl":"minimaxir~textgenrnn~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/minimaxir/textgenrnn/master/requirements.txt","https://raw.githubusercontent.com/minimaxir/textgenrnn/master/setup.py"],"_requirements_localurls":["minimaxir~textgenrnn~requirements.txt","minimaxir~textgenrnn~setup.py"]},{"index":784,"category":"diffusion","githuburl":"https://github.com/xavierxiao/dreambooth-stable-diffusion","featured":null,"links":null,"description":null,"_repopath":"xavierxiao/dreambooth-stable-diffusion","_reponame":"Dreambooth-Stable-Diffusion","_stars":4801,"_forks":521,"_watches":73,"_topics":["pytorch","pytorch-lightning","stable-diffusion","text-to-image"],"_language":"Jupyter Notebook","_homepage":"","_description":"Dreambooth-Stable-Diffusion: Implementation of Dreambooth (https://arxiv.org/abs/2208.12242) with Stable Diffusion","_organization":"xavierxiao","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-21T00:00:00.000Z","_created_at":"2022-09-06T00:00:00.000Z","_age_weeks":14,"_stars_per_week":323.14,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["universityofchicago"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":100,"_pop_closed_issues_count":13,"_pop_created_since_days":3,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":100.0,"_pop_comment_count":234.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":15,"_pop_score":21.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/xavierxiao/dreambooth-stable-diffusion/master/README.md","_readme_localurl":"xavierxiao~dreambooth-stable-diffusion~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/xavierxiao/dreambooth-stable-diffusion/master/setup.py"],"_requirements_localurls":["xavierxiao~dreambooth-stable-diffusion~setup.py"]},{"index":661,"category":"study","githuburl":"https://github.com/udacity/deep-learning-v2-pytorch","featured":null,"links":null,"description":null,"_repopath":"udacity/deep-learning-v2-pytorch","_reponame":"deep-learning-v2-pytorch","_stars":4793,"_forks":5176,"_watches":172,"_topics":["deep-learning","neural-network","convolutional-networks","pytorch","recurrent-networks","style-transfer","sentiment-analysis"],"_language":"Jupyter Notebook","_homepage":null,"_description":"deep-learning-v2-pytorch: Projects and exercises for the latest Deep Learning ND program https://www.udacity.com/course/deep-learning-nanodegree--nd101","_organization":"udacity","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-03T00:00:00.000Z","_created_at":"2018-09-04T00:00:00.000Z","_age_weeks":223,"_stars_per_week":21.41,"_pop_contributor_count":97,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bardeen","lumafield","udacity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":52,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":1469,"_pop_score":40.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/udacity/deep-learning-v2-pytorch/master/README.md","_readme_localurl":"udacity~deep-learning-v2-pytorch~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/udacity/deep-learning-v2-pytorch/master/requirements.txt"],"_requirements_localurls":["udacity~deep-learning-v2-pytorch~requirements.txt"]},{"index":380,"category":"data","githuburl":"https://github.com/alirezamika/autoscraper","featured":null,"links":null,"description":null,"_repopath":"alirezamika/autoscraper","_reponame":"autoscraper","_stars":4781,"_forks":510,"_watches":125,"_topics":["scraping","scraper","scrape","webscraping","crawler","web-scraping","ai","artificial-intelligence","python","webautomation","automation","machine-learning"],"_language":"Python","_homepage":"","_description":"autoscraper: A Smart, Automatic, Fast and Lightweight Web Scraper for Python","_organization":"alirezamika","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-07-17T00:00:00.000Z","_created_at":"2020-08-31T00:00:00.000Z","_age_weeks":120,"_stars_per_week":39.84,"_pop_contributor_count":8,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cognitifai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":6,"_pop_closed_issues_count":4,"_pop_created_since_days":28,"_pop_updated_since_days":5,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":6.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":20.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alirezamika/autoscraper/master/README.md","_readme_localurl":"alirezamika~autoscraper~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/alirezamika/autoscraper/master/setup.py"],"_requirements_localurls":["alirezamika~autoscraper~setup.py"]},{"index":223,"category":"nlp","githuburl":"https://github.com/kingoflolz/mesh-transformer-jax","featured":1.0,"links":null,"description":null,"_repopath":"kingoflolz/mesh-transformer-jax","_reponame":"mesh-transformer-jax","_stars":4763,"_forks":673,"_watches":82,"_topics":[],"_language":"Python","_homepage":"","_description":"mesh-transformer-jax: Model parallel transformers in JAX and Haiku","_organization":"kingoflolz","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-01-28T00:00:00.000Z","_created_at":"2021-03-13T00:00:00.000Z","_age_weeks":92,"_stars_per_week":51.61,"_pop_contributor_count":23,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":13,"_pop_closed_issues_count":2,"_pop_created_since_days":22,"_pop_updated_since_days":11,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":13.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":7,"_pop_score":19.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/README.md","_readme_localurl":"kingoflolz~mesh-transformer-jax~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/requirements.txt","https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/setup.py"],"_requirements_localurls":["kingoflolz~mesh-transformer-jax~requirements.txt","kingoflolz~mesh-transformer-jax~setup.py"]},{"index":181,"category":"security","githuburl":"https://github.com/pycqa/bandit","featured":null,"links":null,"description":null,"_repopath":"pycqa/bandit","_reponame":"bandit","_stars":4744,"_forks":493,"_watches":62,"_topics":["linter","bandit","security-tools","security-scanner","security","static-code-analysis","python"],"_language":"Python","_homepage":"https://bandit.readthedocs.io","_description":"Bandit is a tool designed to find common security issues in Python code.","_organization":"pycqa","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-28T00:00:00.000Z","_created_at":"2018-04-26T00:00:00.000Z","_age_weeks":242,"_stars_per_week":19.56,"_pop_contributor_count":160,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["redhat,inc","securesauce"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.08,"_pop_updated_issues_count":31,"_pop_closed_issues_count":10,"_pop_created_since_days":57,"_pop_updated_since_days":2,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":31.0,"_pop_comment_count":49.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":1216,"_pop_score":51.93,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pycqa/bandit/master/README.rst","_readme_localurl":"pycqa~bandit~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pycqa/bandit/master/requirements.txt","https://raw.githubusercontent.com/pycqa/bandit/master/setup.py"],"_requirements_localurls":["pycqa~bandit~requirements.txt","pycqa~bandit~setup.py"]},{"index":642,"category":"util","githuburl":"https://github.com/pycqa/pycodestyle","featured":null,"links":null,"description":null,"_repopath":"pycqa/pycodestyle","_reponame":"pycodestyle","_stars":4742,"_forks":685,"_watches":119,"_topics":["python","pep8","styleguide","style-guide","linter-plugin","linter-flake8","flake8-plugin"],"_language":"Python","_homepage":"https://pycodestyle.pycqa.org","_description":"pycodestyle: Simple Python style checker in one Python file","_organization":"pycqa","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2009-10-02T00:00:00.000Z","_age_weeks":689,"_stars_per_week":6.88,"_pop_contributor_count":131,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["llnl","tableau&salesforce"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.88,"_pop_updated_issues_count":37,"_pop_closed_issues_count":36,"_pop_created_since_days":161,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":37.0,"_pop_comment_count":41.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":2936,"_pop_score":56.66,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pycqa/pycodestyle/master/README.rst","_readme_localurl":"pycqa~pycodestyle~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pycqa/pycodestyle/master/setup.py"],"_requirements_localurls":["pycqa~pycodestyle~setup.py"]},{"index":687,"category":"util","githuburl":"https://github.com/bndr/pipreqs","featured":null,"links":null,"description":null,"_repopath":"bndr/pipreqs","_reponame":"pipreqs","_stars":4741,"_forks":319,"_watches":59,"_topics":[],"_language":"Python","_homepage":"","_description":"pipreqs - Generate pip requirements.txt file based on imports of any project. Looking for maintainers to move this project forward.","_organization":"bndr","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2015-04-22T00:00:00.000Z","_age_weeks":399,"_stars_per_week":11.86,"_pop_contributor_count":52,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":28,"_pop_closed_issues_count":7,"_pop_created_since_days":93,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":28.0,"_pop_comment_count":26.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":27,"_pop_score":35.38,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/bndr/pipreqs/master/README.rst","_readme_localurl":"bndr~pipreqs~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bndr/pipreqs/master/requirements.txt","https://raw.githubusercontent.com/bndr/pipreqs/master/setup.py"],"_requirements_localurls":["bndr~pipreqs~requirements.txt","bndr~pipreqs~setup.py"]},{"index":513,"category":"util","githuburl":"https://github.com/agronholm/apscheduler","featured":null,"links":null,"description":null,"_repopath":"agronholm/apscheduler","_reponame":"apscheduler","_stars":4722,"_forks":604,"_watches":126,"_topics":[],"_language":"Python","_homepage":"","_description":"apscheduler: Task scheduling library for Python","_organization":"agronholm","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2016-03-27T00:00:00.000Z","_age_weeks":351,"_stars_per_week":13.45,"_pop_contributor_count":37,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nextdaysolutionsoy"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.81,"_pop_updated_issues_count":25,"_pop_closed_issues_count":16,"_pop_created_since_days":82,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":25.0,"_pop_comment_count":53.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":713,"_pop_score":51.28,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/agronholm/apscheduler/master/README.rst","_readme_localurl":"agronholm~apscheduler~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/agronholm/apscheduler/master/pyproject.toml"],"_requirements_localurls":["agronholm~apscheduler~pyproject.toml"]},{"index":265,"category":"util","githuburl":"https://github.com/pytransitions/transitions","featured":null,"links":null,"description":null,"_repopath":"pytransitions/transitions","_reponame":"transitions","_stars":4690,"_forks":512,"_watches":93,"_topics":["python","state-machine","nested-states","hierarchical-state-machine","state-diagram"],"_language":"Python","_homepage":"","_description":"transitions: A lightweight, object-oriented finite state machine implementation in Python with many extensions","_organization":"pytransitions","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-08T00:00:00.000Z","_created_at":"2014-10-12T00:00:00.000Z","_age_weeks":427,"_stars_per_week":10.98,"_pop_contributor_count":75,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["caretechowl,fhbielefeld","jrc-stu","twitter"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.65,"_pop_updated_issues_count":8,"_pop_closed_issues_count":5,"_pop_created_since_days":100,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":8.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":143,"_pop_score":45.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytransitions/transitions/master/README.md","_readme_localurl":"pytransitions~transitions~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pytransitions/transitions/master/requirements.txt","https://raw.githubusercontent.com/pytransitions/transitions/master/setup.py"],"_requirements_localurls":["pytransitions~transitions~requirements.txt","pytransitions~transitions~setup.py"]},{"index":213,"category":"data","githuburl":"https://github.com/facebookresearch/augly","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/augly","_reponame":"AugLy","_stars":4625,"_forks":267,"_watches":61,"_topics":[],"_language":"Python","_homepage":"https://ai.facebook.com/blog/augly-a-new-data-augmentation-library-to-help-build-more-robust-ai-models/","_description":"AugLy: A data augmentations library for audio, image, text, and video.","_organization":"facebookresearch","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2021-06-09T00:00:00.000Z","_age_weeks":79,"_stars_per_week":58.02,"_pop_contributor_count":26,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebookresearch","omnilib"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.02,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":19,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":106,"_pop_score":33.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/augly/master/README.md","_readme_localurl":"facebookresearch~augly~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/augly/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/augly/master/setup.py"],"_requirements_localurls":["facebookresearch~augly~requirements.txt","facebookresearch~augly~setup.py"]},{"index":551,"category":"ml","githuburl":"https://github.com/open-mmlab/mmcv","featured":null,"links":null,"description":null,"_repopath":"open-mmlab/mmcv","_reponame":"mmcv","_stars":4578,"_forks":1326,"_watches":83,"_topics":[],"_language":"Python","_homepage":"https://mmcv.readthedocs.io/en/latest/","_description":"mmcv: OpenMMLab Computer Vision Foundation","_organization":"open-mmlab","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2018-08-22T00:00:00.000Z","_age_weeks":225,"_stars_per_week":20.28,"_pop_contributor_count":237,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mmlab,ntu","open-mmlab","ucsd"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.75,"_pop_updated_issues_count":283,"_pop_closed_issues_count":219,"_pop_created_since_days":53,"_pop_updated_since_days":0,"_pop_recent_releases_count":18,"_pop_recent_releases_estimated_tags":23,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":283.0,"_pop_comment_count":368.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":41,"_pop_score":58.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-mmlab/mmcv/master/README.md","_readme_localurl":"open-mmlab~mmcv~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/open-mmlab/mmcv/master/requirements.txt","https://raw.githubusercontent.com/open-mmlab/mmcv/master/setup.py"],"_requirements_localurls":["open-mmlab~mmcv~requirements.txt","open-mmlab~mmcv~setup.py"]},{"index":830,"category":"typing","githuburl":"https://github.com/python-attrs/attrs","featured":1.0,"links":null,"description":null,"_repopath":"python-attrs/attrs","_reponame":"attrs","_stars":4546,"_forks":319,"_watches":58,"_topics":["python","boilerplate","classes","oop","attributes","srp"],"_language":"Python","_homepage":"https://www.attrs.org/","_description":"attrs: Python Classes Without Boilerplate","_organization":"python-attrs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2015-01-27T00:00:00.000Z","_age_weeks":411,"_stars_per_week":11.04,"_pop_contributor_count":137,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["pocketzworld","variomediaag"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.12,"_pop_updated_issues_count":61,"_pop_closed_issues_count":44,"_pop_created_since_days":96,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":61.0,"_pop_comment_count":133.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":1224,"_pop_score":58.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python-attrs/attrs/master/README.md","_readme_localurl":"python-attrs~attrs~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-attrs/attrs/master/setup.py","https://raw.githubusercontent.com/python-attrs/attrs/master/pyproject.toml"],"_requirements_localurls":["python-attrs~attrs~setup.py","python-attrs~attrs~pyproject.toml"]},{"index":783,"category":"diffusion","githuburl":"https://github.com/carson-katri/dream-textures","featured":null,"links":null,"description":null,"_repopath":"carson-katri/dream-textures","_reponame":"dream-textures","_stars":4525,"_forks":221,"_watches":85,"_topics":["ai","blender","blender-addon","image-generation","stable-diffusion"],"_language":"Python","_homepage":"","_description":"dream-textures: Stable Diffusion built-in to the Blender shader editor","_organization":"carson-katri","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2022-09-08T00:00:00.000Z","_age_weeks":14,"_stars_per_week":310.54,"_pop_contributor_count":7,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["blastframe","blenderdiplom"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.1,"_pop_updated_issues_count":352,"_pop_closed_issues_count":214,"_pop_created_since_days":3,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":36,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":352.0,"_pop_comment_count":1050.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":5,"_pop_score":37.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/carson-katri/dream-textures/master/README.md","_readme_localurl":"carson-katri~dream-textures~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":247,"category":"util","githuburl":"https://github.com/jorgebastida/awslogs","featured":null,"links":null,"description":null,"_repopath":"jorgebastida/awslogs","_reponame":"awslogs","_stars":4512,"_forks":325,"_watches":61,"_topics":[],"_language":"Python","_homepage":null,"_description":"awslogs: AWS CloudWatch logs for Humans\u2122","_organization":"jorgebastida","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2020-07-10T00:00:00.000Z","_created_at":"2015-01-21T00:00:00.000Z","_age_weeks":412,"_stars_per_week":10.93,"_pop_contributor_count":39,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["freelancer,upforhire","infiniteforksl"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":6,"_pop_closed_issues_count":0,"_pop_created_since_days":96,"_pop_updated_since_days":30,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":6.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":53,"_pop_score":29.83,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jorgebastida/awslogs/master/README.rst","_readme_localurl":"jorgebastida~awslogs~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jorgebastida/awslogs/master/setup.py"],"_requirements_localurls":["jorgebastida~awslogs~setup.py"]},{"index":97,"category":"jupyter","githuburl":"https://github.com/voila-dashboards/voila","featured":null,"links":null,"description":null,"_repopath":"voila-dashboards/voila","_reponame":"voila","_stars":4489,"_forks":448,"_watches":77,"_topics":["jupyter","jupyter-notebook","jupyterlab-extension","dashboarding"],"_language":"Python","_homepage":"https://voila.readthedocs.io","_description":"voila: Voil\u00e0 turns Jupyter notebooks into standalone web applications","_organization":"voila-dashboards","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2018-08-21T00:00:00.000Z","_age_weeks":225,"_stars_per_week":19.88,"_pop_contributor_count":63,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["maartenbreddels","quantstack"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.63,"_pop_updated_issues_count":114,"_pop_closed_issues_count":64,"_pop_created_since_days":53,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":29,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":114.0,"_pop_comment_count":285.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":77,"_pop_score":52.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/voila-dashboards/voila/master/README.md","_readme_localurl":"voila-dashboards~voila~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/voila-dashboards/voila/master/setup.py","https://raw.githubusercontent.com/voila-dashboards/voila/master/pyproject.toml"],"_requirements_localurls":["voila-dashboards~voila~setup.py","voila-dashboards~voila~pyproject.toml"]},{"index":312,"category":"util","githuburl":"https://github.com/indygreg/pyoxidizer","featured":null,"links":null,"description":null,"_repopath":"indygreg/pyoxidizer","_reponame":"PyOxidizer","_stars":4430,"_forks":190,"_watches":59,"_topics":[],"_language":"Rust","_homepage":"","_description":"PyOxidizer: A modern Python application packaging and distribution tool","_organization":"indygreg","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-20T00:00:00.000Z","_created_at":"2018-12-18T00:00:00.000Z","_age_weeks":208,"_stars_per_week":21.21,"_pop_contributor_count":53,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["franklin-ai","isaadvisers"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":27.5,"_pop_updated_issues_count":40,"_pop_closed_issues_count":6,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":88,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":40.0,"_pop_comment_count":47.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":59,"_pop_score":50.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/indygreg/pyoxidizer/master/README.md","_readme_localurl":"indygreg~pyoxidizer~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/indygreg/pyoxidizer/master/setup.py"],"_requirements_localurls":["indygreg~pyoxidizer~setup.py"]},{"index":66,"category":"util","githuburl":"https://github.com/pycqa/pylint","featured":null,"links":null,"description":null,"_repopath":"pycqa/pylint","_reponame":"pylint","_stars":4389,"_forks":950,"_watches":72,"_topics":["static-analysis","linter","static-code-analysis","code-quality","pep8","closember","hacktoberfest"],"_language":"Python","_homepage":"http://pylint.pycqa.org","_description":"pylint: It's not just a linter that annoys you!","_organization":"pycqa","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2015-12-09T00:00:00.000Z","_age_weeks":366,"_stars_per_week":11.97,"_pop_contributor_count":503,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["azavea","channable"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":36.04,"_pop_updated_issues_count":722,"_pop_closed_issues_count":471,"_pop_created_since_days":86,"_pop_updated_since_days":0,"_pop_recent_releases_count":28,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":28,"_pop_issue_count":722.0,"_pop_comment_count":2451.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.4,"_pop_dependents_count":17832,"_pop_score":78.21,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pycqa/pylint/master/README.rst","_readme_localurl":"pycqa~pylint~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pycqa/pylint/master/pyproject.toml"],"_requirements_localurls":["pycqa~pylint~pyproject.toml"]},{"index":206,"category":"ml","githuburl":"https://github.com/lucidrains/deep-daze","featured":null,"links":null,"description":null,"_repopath":"lucidrains/deep-daze","_reponame":"deep-daze","_stars":4366,"_forks":328,"_watches":76,"_topics":["artificial-intelligence","deep-learning","transformers","siren","implicit-neural-representation","text-to-image","multi-modality"],"_language":"Python","_homepage":"","_description":"deep-daze: Simple command line tool for text to image generation using OpenAI's CLIP and Siren (Implicit neural representation network). Technique was originally created by https://twitter.com/advadnoun","_organization":"lucidrains","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-03-13T00:00:00.000Z","_created_at":"2021-01-17T00:00:00.000Z","_age_weeks":100,"_stars_per_week":43.6,"_pop_contributor_count":14,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["adalab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":23,"_pop_updated_since_days":9,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":35,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":37,"_pop_score":25.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lucidrains/deep-daze/master/README.md","_readme_localurl":"lucidrains~deep-daze~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lucidrains/deep-daze/master/setup.py"],"_requirements_localurls":["lucidrains~deep-daze~setup.py"]},{"index":196,"category":"viz","githuburl":"https://github.com/lux-org/lux","featured":null,"links":null,"description":null,"_repopath":"lux-org/lux","_reponame":"lux","_stars":4329,"_forks":338,"_watches":86,"_topics":["visualization-tools","jupyter","python","data-science","exploratory-data-analysis","visualization","pandas"],"_language":"Python","_homepage":"","_description":"lux: Automatically visualize your pandas dataframe via a single print! \ud83d\udcca \ud83d\udca1","_organization":"lux-org","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-05-21T00:00:00.000Z","_created_at":"2020-01-08T00:00:00.000Z","_age_weeks":153,"_stars_per_week":28.16,"_pop_contributor_count":20,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ponder-org"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.35,"_pop_updated_issues_count":6,"_pop_closed_issues_count":0,"_pop_created_since_days":36,"_pop_updated_since_days":7,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":6.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":23.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lux-org/lux/master/README.md","_readme_localurl":"lux-org~lux~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/lux-org/lux/master/requirements.txt","https://raw.githubusercontent.com/lux-org/lux/master/setup.py","https://raw.githubusercontent.com/lux-org/lux/master/pyproject.toml"],"_requirements_localurls":["lux-org~lux~requirements.txt","lux-org~lux~setup.py","lux-org~lux~pyproject.toml"]},{"index":21,"category":"nlp","githuburl":"https://github.com/facebookresearch/drqa","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/drqa","_reponame":"DrQA","_stars":4315,"_forks":898,"_watches":165,"_topics":[],"_language":"Python","_homepage":null,"_description":"DrQA: Reading Wikipedia to Answer Open-Domain Questions","_organization":"facebookresearch","_updated_at":"2022-12-08T00:00:00.000Z","_last_commit_date":"2021-05-18T00:00:00.000Z","_created_at":"2017-07-07T00:00:00.000Z","_age_weeks":284,"_stars_per_week":15.17,"_pop_contributor_count":12,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebookresearch","hewlett-packardenterprise","mitnlp"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":66,"_pop_updated_since_days":19,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":90,"_pop_score":26.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/drqa/master/README.md","_readme_localurl":"facebookresearch~drqa~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/drqa/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/drqa/master/setup.py"],"_requirements_localurls":["facebookresearch~drqa~requirements.txt","facebookresearch~drqa~setup.py"]},{"index":570,"category":"util","githuburl":"https://github.com/jd/tenacity","featured":null,"links":null,"description":null,"_repopath":"jd/tenacity","_reponame":"tenacity","_stars":4313,"_forks":217,"_watches":43,"_topics":["python","failure","retry","retry-library","hacktoberfest"],"_language":"Python","_homepage":"http://tenacity.readthedocs.io","_description":"tenacity: Retrying library for Python","_organization":"jd","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2016-08-11T00:00:00.000Z","_age_weeks":331,"_stars_per_week":13.01,"_pop_contributor_count":74,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mergifyio","waymo"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.17,"_pop_updated_issues_count":24,"_pop_closed_issues_count":7,"_pop_created_since_days":77,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":24.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":502,"_pop_score":50.34,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jd/tenacity/master/README.rst","_readme_localurl":"jd~tenacity~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jd/tenacity/master/setup.py","https://raw.githubusercontent.com/jd/tenacity/master/pyproject.toml"],"_requirements_localurls":["jd~tenacity~setup.py","jd~tenacity~pyproject.toml"]},{"index":603,"category":"ml","githuburl":"https://github.com/cleanlab/cleanlab","featured":null,"links":null,"description":null,"_repopath":"cleanlab/cleanlab","_reponame":"cleanlab","_stars":4300,"_forks":397,"_watches":63,"_topics":["weak-supervision","machine-learning","confident-learning","robust-machine-learning","learning-with-confident-examples","learning-with-noisy-labels","noisy-data","data-cleaning","audio-classification","classification","data-quality","data-science","exploratory-data-analysis","image-classification","label-errors","noisy-labels","text-classification","data-centric-ai","data-centric-machine-learning"],"_language":"Python","_homepage":"https://cleanlab.ai","_description":"cleanlab: The standard data-centric AI package for data quality and machine learning with messy, real-world data and labels.","_organization":"cleanlab","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-05-11T00:00:00.000Z","_age_weeks":240,"_stars_per_week":17.88,"_pop_contributor_count":24,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cleanlab","cleanlab|mit","mitcsail"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.31,"_pop_updated_issues_count":170,"_pop_closed_issues_count":135,"_pop_created_since_days":56,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":170.0,"_pop_comment_count":164.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":228,"_pop_score":51.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cleanlab/cleanlab/master/README.md","_readme_localurl":"cleanlab~cleanlab~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cleanlab/cleanlab/master/setup.py","https://raw.githubusercontent.com/cleanlab/cleanlab/master/pyproject.toml"],"_requirements_localurls":["cleanlab~cleanlab~setup.py","cleanlab~cleanlab~pyproject.toml"]},{"index":896,"category":"diffusion","githuburl":"https://github.com/apple/ml-stable-diffusion","featured":null,"links":null,"description":null,"_repopath":"apple/ml-stable-diffusion","_reponame":"ml-stable-diffusion","_stars":4291,"_forks":165,"_watches":57,"_topics":[],"_language":"Python","_homepage":"","_description":"ml-stable-diffusion: Stable Diffusion with Core ML on Apple Silicon","_organization":"apple","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2022-11-16T00:00:00.000Z","_age_weeks":4,"_stars_per_week":910.21,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["christianclauss","google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.17,"_pop_updated_issues_count":74,"_pop_closed_issues_count":17,"_pop_created_since_days":1,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":74.0,"_pop_comment_count":192.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":0,"_pop_score":24.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/README.md","_readme_localurl":"apple~ml-stable-diffusion~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/requirements.txt","https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/setup.py"],"_requirements_localurls":["apple~ml-stable-diffusion~requirements.txt","apple~ml-stable-diffusion~setup.py"]},{"index":717,"category":"data","githuburl":"https://github.com/jazzband/tablib","featured":null,"links":null,"description":null,"_repopath":"jazzband/tablib","_reponame":"tablib","_stars":4203,"_forks":570,"_watches":141,"_topics":[],"_language":"Python","_homepage":"https://tablib.readthedocs.io/","_description":"tablib: Python Module for Tabular Datasets in XLS, CSV, JSON, YAML, &c.","_organization":"jazzband","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2011-03-28T00:00:00.000Z","_age_weeks":612,"_stars_per_week":6.87,"_pop_contributor_count":118,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["2xlibre.nets\u00e0rl","buser","http://www.lukelee.me","nordsoftware"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":9,"_pop_closed_issues_count":8,"_pop_created_since_days":143,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":9.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":117,"_pop_score":50.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jazzband/tablib/master/README.md","_readme_localurl":"jazzband~tablib~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jazzband/tablib/master/setup.py","https://raw.githubusercontent.com/jazzband/tablib/master/pyproject.toml"],"_requirements_localurls":["jazzband~tablib~setup.py","jazzband~tablib~pyproject.toml"]},{"index":101,"category":"ml","githuburl":"https://github.com/rasbt/mlxtend","featured":null,"links":null,"description":null,"_repopath":"rasbt/mlxtend","_reponame":"mlxtend","_stars":4183,"_forks":796,"_watches":121,"_topics":["python","machine-learning","data-science","data-mining","association-rules","supervised-learning","unsupervised-learning"],"_language":"Python","_homepage":"http://rasbt.github.io/mlxtend/","_description":"mlxtend: A library of extension and helper modules for Python's data analysis and machine learning libraries.","_organization":"rasbt","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2014-08-14T00:00:00.000Z","_age_weeks":435,"_stars_per_week":9.6,"_pop_contributor_count":91,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["coiled","lightning-ai,universityofwisconsin-madison"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.75,"_pop_updated_issues_count":46,"_pop_closed_issues_count":35,"_pop_created_since_days":102,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":46.0,"_pop_comment_count":66.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":37,"_pop_score":49.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/mlxtend/master/README.md","_readme_localurl":"rasbt~mlxtend~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rasbt/mlxtend/master/requirements.txt","https://raw.githubusercontent.com/rasbt/mlxtend/master/setup.py"],"_requirements_localurls":["rasbt~mlxtend~requirements.txt","rasbt~mlxtend~setup.py"]},{"index":764,"category":"ml-dl","githuburl":"https://github.com/xpixelgroup/basicsr","featured":null,"links":null,"description":null,"_repopath":"xpixelgroup/basicsr","_reponame":"BasicSR","_stars":4171,"_forks":864,"_watches":85,"_topics":["basicsr","esrgan","edsr","rcan","edvr","srresnet","srgan","super-resolution","restoration","pytorch","stylegan2","dfdnet","basicvsr","swinir","ecbsr"],"_language":"Python","_homepage":"https://basicsr.readthedocs.io/en/latest/","_description":"BasicSR: Open Source Image and Video Restoration Toolbox for Super-resolution, Denoise, Deblurring, etc. Currently, it includes EDSR, RCAN, SRResNet, SRGAN, ESRGAN, EDVR, BasicVSR, SwinIR, ECBSR, etc. Also support StyleGAN2, DFDNet.","_organization":"xpixelgroup","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-06T00:00:00.000Z","_created_at":"2018-04-19T00:00:00.000Z","_age_weeks":243,"_stars_per_week":17.12,"_pop_contributor_count":18,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["msft","tencent","um&siat","whut"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.02,"_pop_updated_issues_count":30,"_pop_closed_issues_count":6,"_pop_created_since_days":57,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":30.0,"_pop_comment_count":16.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":33.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/xpixelgroup/basicsr/master/README.md","_readme_localurl":"xpixelgroup~basicsr~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/xpixelgroup/basicsr/master/requirements.txt","https://raw.githubusercontent.com/xpixelgroup/basicsr/master/setup.py"],"_requirements_localurls":["xpixelgroup~basicsr~requirements.txt","xpixelgroup~basicsr~setup.py"]},{"index":734,"category":"ml-dl","githuburl":"https://github.com/pytorch/ignite","featured":1.0,"links":null,"description":null,"_repopath":"pytorch/ignite","_reponame":"ignite","_stars":4142,"_forks":562,"_watches":59,"_topics":["pytorch","neural-network","python","machine-learning","deep-learning","metrics","hacktoberfest","closember"],"_language":"Python","_homepage":"https://pytorch-ignite.ai","_description":"ignite: High-level library to help with training and evaluating neural networks in PyTorch flexibly and transparently.","_organization":"pytorch","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2017-11-23T00:00:00.000Z","_age_weeks":264,"_stars_per_week":15.66,"_pop_contributor_count":183,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bimsbbioinfopytorch-ignite","cision","pytorch-ignitemichelin","quansight","sharechat"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.77,"_pop_updated_issues_count":111,"_pop_closed_issues_count":94,"_pop_created_since_days":62,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":111.0,"_pop_comment_count":203.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":529,"_pop_score":60.52,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/ignite/master/README.md","_readme_localurl":"pytorch~ignite~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/ignite/master/setup.py","https://raw.githubusercontent.com/pytorch/ignite/master/pyproject.toml"],"_requirements_localurls":["pytorch~ignite~setup.py","pytorch~ignite~pyproject.toml"]},{"index":370,"category":"time-series","githuburl":"https://github.com/facebookresearch/kats","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/kats","_reponame":"Kats","_stars":4122,"_forks":434,"_watches":69,"_topics":[],"_language":"Python","_homepage":"","_description":"Kats, a kit to analyze time series data, a lightweight, easy-to-use, generalizable, and extendable framework to perform time series analysis, from understanding the key statistics and characteristics, detecting change points and anomalies, to forecasting future trends. ","_organization":"facebookresearch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2021-02-25T00:00:00.000Z","_age_weeks":94,"_stars_per_week":43.59,"_pop_contributor_count":121,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","meta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.67,"_pop_updated_issues_count":31,"_pop_closed_issues_count":19,"_pop_created_since_days":22,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":31.0,"_pop_comment_count":48.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":118,"_pop_score":47.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/kats/master/README.md","_readme_localurl":"facebookresearch~kats~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/kats/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/kats/master/setup.py"],"_requirements_localurls":["facebookresearch~kats~requirements.txt","facebookresearch~kats~setup.py"]},{"index":293,"category":"util","githuburl":"https://github.com/pytoolz/toolz","featured":null,"links":null,"description":null,"_repopath":"pytoolz/toolz","_reponame":"toolz","_stars":4103,"_forks":246,"_watches":82,"_topics":[],"_language":"Python","_homepage":"http://toolz.readthedocs.org/","_description":"toolz: A functional standard library for Python.","_organization":"pytoolz","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-03T00:00:00.000Z","_created_at":"2013-09-13T00:00:00.000Z","_age_weeks":483,"_stars_per_week":8.49,"_pop_contributor_count":74,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["coiled","formerlyquantopian","google","lynkertechnologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":15,"_pop_closed_issues_count":7,"_pop_created_since_days":113,"_pop_updated_since_days":2,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":15.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":90,"_pop_score":46.23,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytoolz/toolz/master/README.rst","_readme_localurl":"pytoolz~toolz~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pytoolz/toolz/master/setup.py"],"_requirements_localurls":["pytoolz~toolz~setup.py"]},{"index":27,"category":"typing","githuburl":"https://github.com/google/pytype","featured":null,"links":null,"description":null,"_repopath":"google/pytype","_reponame":"pytype","_stars":4016,"_forks":258,"_watches":55,"_topics":["python","typing","typechecker","linter","types","static-analysis","static-code-analysis"],"_language":"Python","_homepage":"https://google.github.io/pytype","_description":"pytype: A static type analyzer for Python code","_organization":"google","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2015-03-18T00:00:00.000Z","_age_weeks":404,"_stars_per_week":9.92,"_pop_contributor_count":87,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","googledart-langflutter"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.4,"_pop_updated_issues_count":56,"_pop_closed_issues_count":41,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":21,"_pop_recent_releases_adjusted_count":21,"_pop_issue_count":56.0,"_pop_comment_count":45.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":2154,"_pop_score":60.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/pytype/master/README.md","_readme_localurl":"google~pytype~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/google/pytype/master/requirements.txt","https://raw.githubusercontent.com/google/pytype/master/setup.py","https://raw.githubusercontent.com/google/pytype/master/pyproject.toml"],"_requirements_localurls":["google~pytype~requirements.txt","google~pytype~setup.py","google~pytype~pyproject.toml"]},{"index":542,"category":"util","githuburl":"https://github.com/mamba-org/mamba","featured":null,"links":null,"description":null,"_repopath":"mamba-org/mamba","_reponame":"mamba","_stars":4000,"_forks":230,"_watches":39,"_topics":[],"_language":"C++","_homepage":"https://mamba.readthedocs.io","_description":"mamba: The Fast Cross-Platform Package Manager","_organization":"mamba-org","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2019-03-05T00:00:00.000Z","_age_weeks":197,"_stars_per_week":20.22,"_pop_contributor_count":101,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["prefix.devgmbh","quantstack"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.98,"_pop_updated_issues_count":449,"_pop_closed_issues_count":227,"_pop_created_since_days":46,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":50,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":449.0,"_pop_comment_count":1062.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":49.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mamba-org/mamba/master/README.md","_readme_localurl":"mamba-org~mamba~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mamba-org/mamba/master/pyproject.toml"],"_requirements_localurls":["mamba-org~mamba~pyproject.toml"]},{"index":565,"category":"gis","githuburl":"https://github.com/gboeing/osmnx","featured":null,"links":null,"description":null,"_repopath":"gboeing/osmnx","_reponame":"osmnx","_stars":3963,"_forks":734,"_watches":121,"_topics":["openstreetmap","gis","street-networks","overpass-api","networkx","spatial-analysis","geospatial","urban-planning","transportation","geography","osmnx","networks","spatial-data","urban","osm","spatial","python","transport","mapping","routing"],"_language":"Python","_homepage":"https://geoffboeing.com/publications/osmnx-complex-street-networks/","_description":"OSMnx: Python for street networks. Retrieve, model, analyze, and visualize street networks and other spatial data from OpenStreetMap.","_organization":"gboeing","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2016-07-24T00:00:00.000Z","_age_weeks":334,"_stars_per_week":11.86,"_pop_contributor_count":73,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aaltouniversity","universityofsoutherncalifornia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.94,"_pop_updated_issues_count":51,"_pop_closed_issues_count":49,"_pop_created_since_days":78,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":51.0,"_pop_comment_count":88.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":93,"_pop_score":52.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gboeing/osmnx/master/README.md","_readme_localurl":"gboeing~osmnx~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gboeing/osmnx/master/requirements.txt","https://raw.githubusercontent.com/gboeing/osmnx/master/setup.py"],"_requirements_localurls":["gboeing~osmnx~requirements.txt","gboeing~osmnx~setup.py"]},{"index":227,"category":"ml","githuburl":"https://github.com/online-ml/river","featured":1.0,"links":null,"description":null,"_repopath":"online-ml/river","_reponame":"river","_stars":3958,"_forks":437,"_watches":82,"_topics":["incremental-learning","machine-learning","python","online-learning","online-statistics","data-science","streaming","online-machine-learning","streaming-data","concept-drift","real-time-processing","stream-processing"],"_language":"Python","_homepage":"https://riverml.xyz","_description":"river: \ud83c\udf0a Online machine learning in Python","_organization":"online-ml","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2019-01-24T00:00:00.000Z","_age_weeks":203,"_stars_per_week":19.44,"_pop_contributor_count":89,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["carbonfact","manomano","phdcandidateatuniversityofs\u00e3opaulo","universityofwaikato","volvo-cars"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.13,"_pop_updated_issues_count":60,"_pop_closed_issues_count":55,"_pop_created_since_days":47,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":60.0,"_pop_comment_count":155.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":2,"_pop_score":50.3,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/online-ml/river/master/README.md","_readme_localurl":"online-ml~river~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/online-ml/river/master/setup.py","https://raw.githubusercontent.com/online-ml/river/master/pyproject.toml"],"_requirements_localurls":["online-ml~river~setup.py","online-ml~river~pyproject.toml"]},{"index":258,"category":"crypto","githuburl":"https://github.com/ethereum/web3.py","featured":1.0,"links":null,"description":null,"_repopath":"ethereum/web3.py","_reponame":"web3.py","_stars":3917,"_forks":1232,"_watches":119,"_topics":[],"_language":"Python","_homepage":"http://web3py.readthedocs.io","_description":"web3.py: A python interface for interacting with the Ethereum blockchain and ecosystem.","_organization":"ethereum","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2016-04-14T00:00:00.000Z","_age_weeks":348,"_stars_per_week":11.24,"_pop_contributor_count":218,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ethereum","ethereumfoundation"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.88,"_pop_updated_issues_count":149,"_pop_closed_issues_count":122,"_pop_created_since_days":81,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":28,"_pop_issue_count":149.0,"_pop_comment_count":174.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":547,"_pop_score":61.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethereum/web3.py/master/README.md","_readme_localurl":"ethereum~web3.py~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ethereum/web3.py/master/setup.py","https://raw.githubusercontent.com/ethereum/web3.py/master/pyproject.toml"],"_requirements_localurls":["ethereum~web3.py~setup.py","ethereum~web3.py~pyproject.toml"]},{"index":549,"category":"ml","githuburl":"https://github.com/open-mmlab/mmediting","featured":null,"links":null,"description":null,"_repopath":"open-mmlab/mmediting","_reponame":"mmediting","_stars":3869,"_forks":698,"_watches":83,"_topics":["super-resolution","inpainting","matting","image-generation","generative-adversarial-network","pytorch","deep-learning","video-interpolation","video-frame-interpolation","video-super-resolution","computer-vision","image-editing","image-processing","image-synthesis"],"_language":"Python","_homepage":"https://mmediting.readthedocs.io/en/latest/","_description":"mmediting: OpenMMLab Image and Video Restoration, Editing and Generation Toolbox","_organization":"open-mmlab","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2019-08-23T00:00:00.000Z","_age_weeks":173,"_stars_per_week":22.31,"_pop_contributor_count":64,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cuhk","nanyangtechnologicaluniversity","universityofalberta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.6,"_pop_updated_issues_count":461,"_pop_closed_issues_count":389,"_pop_created_since_days":40,"_pop_updated_since_days":1,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":460.0,"_pop_comment_count":452.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":1643,"_pop_score":57.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-mmlab/mmediting/master/README.md","_readme_localurl":"open-mmlab~mmediting~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/open-mmlab/mmediting/master/requirements.txt","https://raw.githubusercontent.com/open-mmlab/mmediting/master/setup.py"],"_requirements_localurls":["open-mmlab~mmediting~requirements.txt","open-mmlab~mmediting~setup.py"]},{"index":13,"category":"ml","githuburl":"https://github.com/districtdatalabs/yellowbrick","featured":null,"links":null,"description":null,"_repopath":"districtdatalabs/yellowbrick","_reponame":"yellowbrick","_stars":3866,"_forks":538,"_watches":101,"_topics":["machine-learning","visual-analysis","model-selection","visualization","scikit-learn","visualizer","matplotlib","python","estimator","anaconda"],"_language":"Python","_homepage":"http://www.scikit-yb.org/","_description":"yellowbrick: Visual analysis and diagnostic tools to facilitate machine learning model selection.","_organization":"districtdatalabs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2016-05-18T00:00:00.000Z","_age_weeks":343,"_stars_per_week":11.25,"_pop_contributor_count":110,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["rotationalio","rotationallabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.65,"_pop_updated_issues_count":13,"_pop_closed_issues_count":9,"_pop_created_since_days":80,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":13.0,"_pop_comment_count":25.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":57,"_pop_score":47.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/districtdatalabs/yellowbrick/master/README.md","_readme_localurl":"districtdatalabs~yellowbrick~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/districtdatalabs/yellowbrick/master/requirements.txt","https://raw.githubusercontent.com/districtdatalabs/yellowbrick/master/setup.py"],"_requirements_localurls":["districtdatalabs~yellowbrick~requirements.txt","districtdatalabs~yellowbrick~setup.py"]},{"index":362,"category":"ml-ops","githuburl":"https://github.com/allegroai/clearml","featured":null,"links":null,"description":null,"_repopath":"allegroai/clearml","_reponame":"clearml","_stars":3857,"_forks":519,"_watches":82,"_topics":["version-control","experiment-manager","version","control","experiment","deeplearning","deep-learning","machine-learning","machinelearning","ai","trains","trainsai","clearml","k8s","devops","mlops"],"_language":"Python","_homepage":"https://clear.ml/docs","_description":"ClearML - Auto-Magical CI/CD to streamline your ML workflow. Experiment Manager, MLOps and Data-Management","_organization":"allegroai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-06-10T00:00:00.000Z","_age_weeks":184,"_stars_per_week":20.96,"_pop_contributor_count":62,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["allegroai","techlearnersincallegroai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.46,"_pop_updated_issues_count":114,"_pop_closed_issues_count":39,"_pop_created_since_days":43,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":36,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":114.0,"_pop_comment_count":249.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":22,"_pop_score":49.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/allegroai/clearml/master/README.md","_readme_localurl":"allegroai~clearml~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/allegroai/clearml/master/requirements.txt","https://raw.githubusercontent.com/allegroai/clearml/master/setup.py"],"_requirements_localurls":["allegroai~clearml~requirements.txt","allegroai~clearml~setup.py"]},{"index":43,"category":"data","githuburl":"https://github.com/lk-geimfari/mimesis","featured":null,"links":null,"description":null,"_repopath":"lk-geimfari/mimesis","_reponame":"mimesis","_stars":3833,"_forks":303,"_watches":64,"_topics":["mimesis","fake","data","generator","fixtures","dummy","json","schema","testing","python","json-generator","faker","mock","synthetic-data","datascience","api-mock"],"_language":"Python","_homepage":"https://mimesis.name","_description":"Mimesis is a high-performance fake data generator for Python, which provides data for a variety of purposes in a variety of languages. ","_organization":"lk-geimfari","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2016-09-09T00:00:00.000Z","_age_weeks":327,"_stars_per_week":11.71,"_pop_contributor_count":112,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["extendi","roskomsvoboda"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.96,"_pop_updated_issues_count":46,"_pop_closed_issues_count":32,"_pop_created_since_days":76,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":46.0,"_pop_comment_count":56.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":100,"_pop_score":52.64,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/lk-geimfari/mimesis/master/README.rst","_readme_localurl":"lk-geimfari~mimesis~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/lk-geimfari/mimesis/master/pyproject.toml"],"_requirements_localurls":["lk-geimfari~mimesis~pyproject.toml"]},{"index":184,"category":"ml-dl","githuburl":"https://github.com/google/flax","featured":null,"links":null,"description":null,"_repopath":"google/flax","_reponame":"flax","_stars":3821,"_forks":444,"_watches":74,"_topics":["jax"],"_language":"Python","_homepage":"https://flax.readthedocs.io","_description":"Flax is a neural network library for JAX that is designed for flexibility.","_organization":"google","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2020-01-10T00:00:00.000Z","_age_weeks":153,"_stars_per_week":24.9,"_pop_contributor_count":183,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.9,"_pop_updated_issues_count":289,"_pop_closed_issues_count":218,"_pop_created_since_days":36,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":289.0,"_pop_comment_count":489.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":588,"_pop_score":58.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/flax/master/README.md","_readme_localurl":"google~flax~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/flax/master/setup.py"],"_requirements_localurls":["google~flax~setup.py"]},{"index":355,"category":"ml-ops","githuburl":"https://github.com/feast-dev/feast","featured":null,"links":null,"description":null,"_repopath":"feast-dev/feast","_reponame":"feast","_stars":3820,"_forks":714,"_watches":74,"_topics":["machine-learning","features","ml","big-data","feature-store","python","mlops","data-engineering","data-science","data-quality"],"_language":"Python","_homepage":"https://feast.dev","_description":"feast: Feature Store for Machine Learning","_organization":"feast-dev","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-12-10T00:00:00.000Z","_age_weeks":210,"_stars_per_week":18.19,"_pop_contributor_count":179,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["gojekindonesia","tecton","tectonai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.31,"_pop_updated_issues_count":271,"_pop_closed_issues_count":156,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":31,"_pop_recent_releases_estimated_tags":31,"_pop_recent_releases_adjusted_count":31,"_pop_issue_count":271.0,"_pop_comment_count":434.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":4,"_pop_score":55.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/feast-dev/feast/master/README.md","_readme_localurl":"feast-dev~feast~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/feast-dev/feast/master/setup.py","https://raw.githubusercontent.com/feast-dev/feast/master/pyproject.toml"],"_requirements_localurls":["feast-dev~feast~setup.py","feast-dev~feast~pyproject.toml"]},{"index":376,"category":"util","githuburl":"https://github.com/spotify/pedalboard","featured":null,"links":null,"description":null,"_repopath":"spotify/pedalboard","_reponame":"pedalboard","_stars":3802,"_forks":153,"_watches":46,"_topics":["vst3","vst3-host","python","juce","tensorflow","audio-unit","pybind11","audio-processing","audio-production","audio-research","audio"],"_language":"C++","_homepage":"","_description":"pedalboard: \ud83c\udf9b \ud83d\udd0a A Python library for working with audio.","_organization":"spotify","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-08T00:00:00.000Z","_created_at":"2021-07-06T00:00:00.000Z","_age_weeks":75,"_stars_per_week":50.12,"_pop_contributor_count":24,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["b3ta","myr","spotify"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.35,"_pop_updated_issues_count":36,"_pop_closed_issues_count":23,"_pop_created_since_days":18,"_pop_updated_since_days":0,"_pop_recent_releases_count":30,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":30,"_pop_issue_count":36.0,"_pop_comment_count":38.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":16,"_pop_score":45.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/spotify/pedalboard/master/README.md","_readme_localurl":"spotify~pedalboard~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/spotify/pedalboard/master/requirements.txt","https://raw.githubusercontent.com/spotify/pedalboard/master/setup.py","https://raw.githubusercontent.com/spotify/pedalboard/master/pyproject.toml"],"_requirements_localurls":["spotify~pedalboard~requirements.txt","spotify~pedalboard~setup.py","spotify~pedalboard~pyproject.toml"]},{"index":199,"category":"viz","githuburl":"https://github.com/man-group/dtale","featured":null,"links":null,"description":null,"_repopath":"man-group/dtale","_reponame":"dtale","_stars":3769,"_forks":318,"_watches":69,"_topics":["python27","python3","react","flask","pandas","ipython","jupyter-notebook","react-virtualized","data-analysis","data-visualization","visualization","plotly-dash","data-science","xarray"],"_language":"TypeScript","_homepage":"http://alphatechadmin.pythonanywhere.com","_description":"dtale: Visualizer for pandas data structures","_organization":"man-group","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2019-07-15T00:00:00.000Z","_age_weeks":179,"_stars_per_week":21.06,"_pop_contributor_count":29,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.65,"_pop_updated_issues_count":23,"_pop_closed_issues_count":11,"_pop_created_since_days":42,"_pop_updated_since_days":1,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":40,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":23.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":253,"_pop_score":39.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/man-group/dtale/master/README.md","_readme_localurl":"man-group~dtale~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/man-group/dtale/master/requirements.txt","https://raw.githubusercontent.com/man-group/dtale/master/setup.py"],"_requirements_localurls":["man-group~dtale~requirements.txt","man-group~dtale~setup.py"]},{"index":343,"category":"web","githuburl":"https://github.com/vitalik/django-ninja","featured":null,"links":null,"description":null,"_repopath":"vitalik/django-ninja","_reponame":"django-ninja","_stars":3763,"_forks":235,"_watches":61,"_topics":["python","django","rest-api","openapi","pydantic","swagger","swagger-ui","django-ninja"],"_language":"Python","_homepage":"https://django-ninja.rest-framework.com","_description":"django-ninja: \ud83d\udca8 Fast, Async-ready, Openapi, type hints based framework for building APIs","_organization":"vitalik","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2020-05-19T00:00:00.000Z","_age_weeks":134,"_stars_per_week":27.9,"_pop_contributor_count":70,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.58,"_pop_updated_issues_count":97,"_pop_closed_issues_count":46,"_pop_created_since_days":31,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":97.0,"_pop_comment_count":173.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":22,"_pop_score":42.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vitalik/django-ninja/master/README.md","_readme_localurl":"vitalik~django-ninja~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/vitalik/django-ninja/master/setup.py","https://raw.githubusercontent.com/vitalik/django-ninja/master/pyproject.toml"],"_requirements_localurls":["vitalik~django-ninja~setup.py","vitalik~django-ninja~pyproject.toml"]},{"index":753,"category":"study","githuburl":"https://github.com/karpathy/nn-zero-to-hero","featured":null,"links":null,"description":null,"_repopath":"karpathy/nn-zero-to-hero","_reponame":"nn-zero-to-hero","_stars":3754,"_forks":259,"_watches":151,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"nn-zero-to-hero: Neural Networks: Zero to Hero","_organization":"karpathy","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-21T00:00:00.000Z","_created_at":"2022-09-08T00:00:00.000Z","_age_weeks":14,"_stars_per_week":257.63,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.17,"_pop_updated_issues_count":13,"_pop_closed_issues_count":5,"_pop_created_since_days":3,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":13.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":11.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/karpathy/nn-zero-to-hero/master/README.md","_readme_localurl":"karpathy~nn-zero-to-hero~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":388,"category":"nlp","githuburl":"https://github.com/makcedward/nlpaug","featured":null,"links":null,"description":null,"_repopath":"makcedward/nlpaug","_reponame":"nlpaug","_stars":3690,"_forks":420,"_watches":39,"_topics":["nlp","augmentation","machine-learning","artificial-intelligence","data-science","natural-language-processing","adversarial-attacks","adversarial-example","ai","ml"],"_language":"Jupyter Notebook","_homepage":"https://makcedward.github.io/","_description":"nlpaug: Data augmentation for NLP ","_organization":"makcedward","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-07-07T00:00:00.000Z","_created_at":"2019-03-21T00:00:00.000Z","_age_weeks":195,"_stars_per_week":18.87,"_pop_contributor_count":33,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["clevertech","cresta","toyotaconnected","truefoundry"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":11,"_pop_closed_issues_count":1,"_pop_created_since_days":46,"_pop_updated_since_days":5,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":11.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":2,"_pop_score":31.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/makcedward/nlpaug/master/README.md","_readme_localurl":"makcedward~nlpaug~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/makcedward/nlpaug/master/requirements.txt","https://raw.githubusercontent.com/makcedward/nlpaug/master/setup.py"],"_requirements_localurls":["makcedward~nlpaug~requirements.txt","makcedward~nlpaug~setup.py"]},{"index":855,"category":"profiling","githuburl":"https://github.com/pythonprofilers/memory_profiler","featured":null,"links":null,"description":null,"_repopath":"pythonprofilers/memory_profiler","_reponame":"memory_profiler","_stars":3684,"_forks":363,"_watches":75,"_topics":[],"_language":"Python","_homepage":"http://pypi.python.org/pypi/memory_profiler","_description":"memory_profiler: Monitor Memory usage of Python code","_organization":"pythonprofilers","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2011-10-14T00:00:00.000Z","_age_weeks":583,"_stars_per_week":6.31,"_pop_contributor_count":101,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cardiologs","google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.73,"_pop_updated_issues_count":21,"_pop_closed_issues_count":14,"_pop_created_since_days":136,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":21.0,"_pop_comment_count":23.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":225,"_pop_score":50.61,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pythonprofilers/memory_profiler/master/README.rst","_readme_localurl":"pythonprofilers~memory_profiler~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pythonprofilers/memory_profiler/master/setup.py","https://raw.githubusercontent.com/pythonprofilers/memory_profiler/master/pyproject.toml"],"_requirements_localurls":["pythonprofilers~memory_profiler~setup.py","pythonprofilers~memory_profiler~pyproject.toml"]},{"index":357,"category":"data","githuburl":"https://github.com/amundsen-io/amundsen","featured":null,"links":null,"description":null,"_repopath":"amundsen-io/amundsen","_reponame":"amundsen","_stars":3680,"_forks":891,"_watches":245,"_topics":["amundsen","metadata","data-catalog","data-discovery","linuxfoundation"],"_language":"Python","_homepage":"https://www.amundsen.io/amundsen/","_description":"Amundsen is a metadata driven application for improving the productivity of data analysts, data scientists and engineers when interacting with data.","_organization":"amundsen-io","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2019-05-14T00:00:00.000Z","_age_weeks":187,"_stars_per_week":19.59,"_pop_contributor_count":215,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["databricksamundsen-ioapache","lyft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.73,"_pop_updated_issues_count":270,"_pop_closed_issues_count":253,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":48,"_pop_recent_releases_estimated_tags":33,"_pop_recent_releases_adjusted_count":48,"_pop_issue_count":270.0,"_pop_comment_count":147.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":16,"_pop_score":52.6,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/amundsen-io/amundsen/master/README.md","_readme_localurl":"amundsen-io~amundsen~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/amundsen-io/amundsen/master/requirements.txt"],"_requirements_localurls":["amundsen-io~amundsen~requirements.txt"]},{"index":822,"category":"ml","githuburl":"https://github.com/project-monai/monai","featured":null,"links":null,"description":null,"_repopath":"project-monai/monai","_reponame":"MONAI","_stars":3663,"_forks":698,"_watches":89,"_topics":["healthcare-imaging","deep-learning","medical-image-computing","medical-image-processing","pytorch","python3","monai"],"_language":"Python","_homepage":"https://monai.io/","_description":"MONAI: AI Toolkit for Healthcare Imaging","_organization":"project-monai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-10-11T00:00:00.000Z","_age_weeks":166,"_stars_per_week":22.01,"_pop_contributor_count":131,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["king'scollegelondon","nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.46,"_pop_updated_issues_count":573,"_pop_closed_issues_count":466,"_pop_created_since_days":39,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":22,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":572.0,"_pop_comment_count":1388.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":151,"_pop_score":58.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/project-monai/monai/master/README.md","_readme_localurl":"project-monai~monai~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/project-monai/monai/master/requirements.txt","https://raw.githubusercontent.com/project-monai/monai/master/setup.py","https://raw.githubusercontent.com/project-monai/monai/master/pyproject.toml"],"_requirements_localurls":["project-monai~monai~requirements.txt","project-monai~monai~setup.py","project-monai~monai~pyproject.toml"]},{"index":91,"category":"ml","githuburl":"https://github.com/uber/causalml","featured":null,"links":null,"description":null,"_repopath":"uber/causalml","_reponame":"causalml","_stars":3644,"_forks":579,"_watches":76,"_topics":["incubation","machine-learning","causal-inference","uplift-modeling"],"_language":"Python","_homepage":"","_description":"causalml: Uplift modeling and causal inference with machine learning algorithms","_organization":"uber","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2019-07-09T00:00:00.000Z","_age_weeks":179,"_stars_per_week":20.26,"_pop_contributor_count":48,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["spotify","toyotaresearchinstitute","uber"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.48,"_pop_updated_issues_count":45,"_pop_closed_issues_count":19,"_pop_created_since_days":42,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":45.0,"_pop_comment_count":45.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":19,"_pop_score":44.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/uber/causalml/master/README.md","_readme_localurl":"uber~causalml~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/causalml/master/requirements.txt","https://raw.githubusercontent.com/uber/causalml/master/setup.py","https://raw.githubusercontent.com/uber/causalml/master/pyproject.toml"],"_requirements_localurls":["uber~causalml~requirements.txt","uber~causalml~setup.py","uber~causalml~pyproject.toml"]},{"index":354,"category":"ml-interpretability","githuburl":"https://github.com/pytorch/captum","featured":null,"links":null,"description":null,"_repopath":"pytorch/captum","_reponame":"captum","_stars":3635,"_forks":390,"_watches":213,"_topics":["interpretability","interpretable-ai","interpretable-ml","feature-importance","feature-attribution"],"_language":"Python","_homepage":"https://captum.ai","_description":"captum: Model interpretability and understanding for PyTorch","_organization":"pytorch","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-08-27T00:00:00.000Z","_age_weeks":172,"_stars_per_week":21.03,"_pop_contributor_count":95,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","meta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.1,"_pop_updated_issues_count":87,"_pop_closed_issues_count":45,"_pop_created_since_days":40,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":87.0,"_pop_comment_count":170.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":444,"_pop_score":51.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/captum/master/README.md","_readme_localurl":"pytorch~captum~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/captum/master/setup.py","https://raw.githubusercontent.com/pytorch/captum/master/pyproject.toml"],"_requirements_localurls":["pytorch~captum~setup.py","pytorch~captum~pyproject.toml"]},{"index":762,"category":"sim","githuburl":"https://github.com/quantumlib/cirq","featured":null,"links":null,"description":null,"_repopath":"quantumlib/cirq","_reponame":"Cirq","_stars":3617,"_forks":815,"_watches":175,"_topics":["quantum-circuits","nisq","quantum-algorithms","quantum-computing","cirq"],"_language":"Python","_homepage":"","_description":"Cirq: A python framework for creating, editing, and invoking Noisy Intermediate Scale Quantum (NISQ) circuits.","_organization":"quantumlib","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2017-12-14T00:00:00.000Z","_age_weeks":261,"_stars_per_week":13.83,"_pop_contributor_count":179,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dukeuniversity","google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.63,"_pop_updated_issues_count":119,"_pop_closed_issues_count":76,"_pop_created_since_days":61,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":119.0,"_pop_comment_count":178.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":1234,"_pop_score":60.48,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/quantumlib/cirq/master/README.rst","_readme_localurl":"quantumlib~cirq~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/quantumlib/cirq/master/setup.py","https://raw.githubusercontent.com/quantumlib/cirq/master/pyproject.toml"],"_requirements_localurls":["quantumlib~cirq~setup.py","quantumlib~cirq~pyproject.toml"]},{"index":58,"category":"gamedev","githuburl":"https://github.com/panda3d/panda3d","featured":null,"links":null,"description":null,"_repopath":"panda3d/panda3d","_reponame":"panda3d","_stars":3608,"_forks":730,"_watches":192,"_topics":["game-engine","open-source","panda3d","cross-platform","python","panda3d-game-engine","game-development","opengl","multi-platform","gamedev","c-plus-plus"],"_language":"C++","_homepage":"https://www.panda3d.org/","_description":"panda3d: Powerful, mature open-source cross-platform game engine for Python and C++, developed by Disney and CMU","_organization":"panda3d","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2013-09-30T00:00:00.000Z","_age_weeks":481,"_stars_per_week":7.5,"_pop_contributor_count":155,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.71,"_pop_updated_issues_count":128,"_pop_closed_issues_count":83,"_pop_created_since_days":112,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":128.0,"_pop_comment_count":194.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":523,"_pop_score":52.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/panda3d/panda3d/master/README.md","_readme_localurl":"panda3d~panda3d~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":793,"category":"ml-ops","githuburl":"https://github.com/orchest/orchest","featured":null,"links":null,"description":null,"_repopath":"orchest/orchest","_reponame":"orchest","_stars":3589,"_forks":212,"_watches":36,"_topics":["data-science","machine-learning","pipelines","ide","jupyter","cloud","self-hosted","jupyterlab","notebooks","docker","python","data-pipelines","orchest","deployment","kubernetes","airflow","dag","etl","etl-pipeline"],"_language":"TypeScript","_homepage":"https://orchest.io","_description":"orchest: Build data pipelines, the easy way \ud83d\udee0\ufe0f","_organization":"orchest","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2020-05-21T00:00:00.000Z","_age_weeks":134,"_stars_per_week":26.67,"_pop_contributor_count":31,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["orchest","orchest.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":82.5,"_pop_updated_issues_count":254,"_pop_closed_issues_count":225,"_pop_created_since_days":31,"_pop_updated_since_days":0,"_pop_recent_releases_count":99,"_pop_recent_releases_estimated_tags":75,"_pop_recent_releases_adjusted_count":99,"_pop_issue_count":254.0,"_pop_comment_count":203.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":757,"_pop_score":58.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/orchest/orchest/master/README.md","_readme_localurl":"orchest~orchest~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/orchest/orchest/master/pyproject.toml"],"_requirements_localurls":["orchest~orchest~pyproject.toml"]},{"index":423,"category":"util","githuburl":"https://github.com/tebelorg/rpa-python","featured":null,"links":null,"description":null,"_repopath":"tebelorg/rpa-python","_reponame":"RPA-Python","_stars":3566,"_forks":523,"_watches":99,"_topics":["rpa","python","opencv","tesseract","tagui","sikuli","cross-platform"],"_language":"Python","_homepage":"","_description":"RPA-Python: Python package for doing RPA","_organization":"tebelorg","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-09-07T00:00:00.000Z","_created_at":"2019-03-30T00:00:00.000Z","_age_weeks":194,"_stars_per_week":18.35,"_pop_contributor_count":3,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["universityofappliedtrialanderror"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.17,"_pop_updated_issues_count":25,"_pop_closed_issues_count":13,"_pop_created_since_days":45,"_pop_updated_since_days":3,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":25.0,"_pop_comment_count":38.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":8,"_pop_score":28.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tebelorg/rpa-python/master/README.md","_readme_localurl":"tebelorg~rpa-python~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tebelorg/rpa-python/master/setup.py"],"_requirements_localurls":["tebelorg~rpa-python~setup.py"]},{"index":209,"category":"web","githuburl":"https://github.com/pywebio/pywebio","featured":null,"links":null,"description":null,"_repopath":"pywebio/pywebio","_reponame":"PyWebIO","_stars":3563,"_forks":319,"_watches":45,"_topics":["pywebio"],"_language":"Python","_homepage":"https://pywebio.readthedocs.io","_description":"PyWebIO: Write interactive web app in script way.","_organization":"pywebio","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-26T00:00:00.000Z","_created_at":"2020-02-29T00:00:00.000Z","_age_weeks":146,"_stars_per_week":24.36,"_pop_contributor_count":15,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["christianclauss"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.71,"_pop_updated_issues_count":27,"_pop_closed_issues_count":3,"_pop_created_since_days":34,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":27.0,"_pop_comment_count":21.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":6,"_pop_score":33.3,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pywebio/pywebio/master/README.md","_readme_localurl":"pywebio~pywebio~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pywebio/pywebio/master/requirements.txt","https://raw.githubusercontent.com/pywebio/pywebio/master/setup.py"],"_requirements_localurls":["pywebio~pywebio~requirements.txt","pywebio~pywebio~setup.py"]},{"index":309,"category":"crypto","githuburl":"https://github.com/crytic/slither","featured":null,"links":null,"description":null,"_repopath":"crytic/slither","_reponame":"slither","_stars":3530,"_forks":645,"_watches":61,"_topics":["solidity","ethereum","static-analysis"],"_language":"Python","_homepage":"https://blog.trailofbits.com/2018/10/19/slither-a-solidity-static-analysis-framework/","_description":"slither: Static Analyzer for Solidity","_organization":"crytic","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2018-09-05T00:00:00.000Z","_age_weeks":223,"_stars_per_week":15.78,"_pop_contributor_count":96,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["trailofbits"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.79,"_pop_updated_issues_count":193,"_pop_closed_issues_count":90,"_pop_created_since_days":52,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":193.0,"_pop_comment_count":305.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":369,"_pop_score":51.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/crytic/slither/master/README.md","_readme_localurl":"crytic~slither~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/crytic/slither/master/setup.py","https://raw.githubusercontent.com/crytic/slither/master/pyproject.toml"],"_requirements_localurls":["crytic~slither~setup.py","crytic~slither~pyproject.toml"]},{"index":616,"category":"testing","githuburl":"https://github.com/spulec/freezegun","featured":null,"links":null,"description":null,"_repopath":"spulec/freezegun","_reponame":"freezegun","_stars":3510,"_forks":243,"_watches":34,"_topics":[],"_language":"Python","_homepage":null,"_description":"freezegun: Let your Python tests travel through time","_organization":"spulec","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-08-12T00:00:00.000Z","_created_at":"2012-12-11T00:00:00.000Z","_age_weeks":522,"_stars_per_week":6.71,"_pop_contributor_count":106,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dryft-technologies","nordsoftware","pioneervalleybooks","policystat","yipitdata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.33,"_pop_updated_issues_count":22,"_pop_closed_issues_count":1,"_pop_created_since_days":122,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":22.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":692,"_pop_score":49.82,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/spulec/freezegun/master/README.rst","_readme_localurl":"spulec~freezegun~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/spulec/freezegun/master/requirements.txt","https://raw.githubusercontent.com/spulec/freezegun/master/setup.py","https://raw.githubusercontent.com/spulec/freezegun/master/pyproject.toml"],"_requirements_localurls":["spulec~freezegun~requirements.txt","spulec~freezegun~setup.py","spulec~freezegun~pyproject.toml"]},{"index":770,"category":"data","githuburl":"https://github.com/gristlabs/grist-core","featured":null,"links":null,"description":null,"_repopath":"gristlabs/grist-core","_reponame":"grist-core","_stars":3501,"_forks":164,"_watches":40,"_topics":["awesome","database","spreadsheet"],"_language":"TypeScript","_homepage":"https://support.getgrist.com/self-managed/","_description":"grist-core: Grist is the evolution of spreadsheets.","_organization":"gristlabs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2020-05-22T00:00:00.000Z","_age_weeks":134,"_stars_per_week":26.04,"_pop_contributor_count":20,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["gristlabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.13,"_pop_updated_issues_count":117,"_pop_closed_issues_count":58,"_pop_created_since_days":31,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":117.0,"_pop_comment_count":253.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":11,"_pop_score":43.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gristlabs/grist-core/master/README.md","_readme_localurl":"gristlabs~grist-core~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":442,"category":"gis","githuburl":"https://github.com/osgeo/gdal","featured":null,"links":null,"description":null,"_repopath":"osgeo/gdal","_reponame":"gdal","_stars":3496,"_forks":1955,"_watches":169,"_topics":["raster","geospatial-data","vector","remote-sensing"],"_language":"C++","_homepage":"https://gdal.org","_description":"GDAL is an open source MIT licensed translator library for raster and vector geospatial data formats.","_organization":"osgeo","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2012-10-09T00:00:00.000Z","_age_weeks":531,"_stars_per_week":6.57,"_pop_contributor_count":506,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cadcorp","google","spatialys"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":47.69,"_pop_updated_issues_count":625,"_pop_closed_issues_count":575,"_pop_created_since_days":124,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":625.0,"_pop_comment_count":665.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":6036,"_pop_score":74.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/osgeo/gdal/master/README.md","_readme_localurl":"osgeo~gdal~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":280,"category":"nlp","githuburl":"https://github.com/maartengr/bertopic","featured":null,"links":null,"description":null,"_repopath":"maartengr/bertopic","_reponame":"BERTopic","_stars":3488,"_forks":455,"_watches":45,"_topics":["bert","transformers","topic-modeling","sentence-embeddings","nlp","machine-learning","topic","ldavis","topic-modelling","topic-models"],"_language":"Python","_homepage":"https://maartengr.github.io/BERTopic/","_description":"BERTopic: Leveraging BERT and c-TF-IDF to create easily interpretable topics. ","_organization":"maartengr","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2020-09-22T00:00:00.000Z","_age_weeks":116,"_stars_per_week":29.85,"_pop_contributor_count":15,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ada","expedock","iknl","mustanganalytics","scitedotai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":221,"_pop_closed_issues_count":136,"_pop_created_since_days":27,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":221.0,"_pop_comment_count":544.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":0,"_pop_score":40.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/maartengr/bertopic/master/README.md","_readme_localurl":"maartengr~bertopic~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/maartengr/bertopic/master/setup.py"],"_requirements_localurls":["maartengr~bertopic~setup.py"]},{"index":287,"category":"gis","githuburl":"https://github.com/geopandas/geopandas","featured":1.0,"links":null,"description":null,"_repopath":"geopandas/geopandas","_reponame":"geopandas","_stars":3462,"_forks":774,"_watches":107,"_topics":[],"_language":"Python","_homepage":"http://geopandas.org/","_description":"geopandas: Python tools for geographic data","_organization":"geopandas","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2013-06-27T00:00:00.000Z","_age_weeks":494,"_stars_per_week":7.0,"_pop_contributor_count":183,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["planetlabs","udl-ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.08,"_pop_updated_issues_count":204,"_pop_closed_issues_count":93,"_pop_created_since_days":115,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":204.0,"_pop_comment_count":443.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":243,"_pop_score":58.66,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/geopandas/geopandas/master/README.md","_readme_localurl":"geopandas~geopandas~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/geopandas/geopandas/master/setup.py","https://raw.githubusercontent.com/geopandas/geopandas/master/pyproject.toml"],"_requirements_localurls":["geopandas~geopandas~setup.py","geopandas~geopandas~pyproject.toml"]},{"index":778,"category":"study","githuburl":"https://github.com/nielsrogge/transformers-tutorials","featured":null,"links":null,"description":null,"_repopath":"nielsrogge/transformers-tutorials","_reponame":"Transformers-Tutorials","_stars":3456,"_forks":516,"_watches":77,"_topics":["transformers","pytorch","bert","vision-transformer","layoutlm","gpt-2"],"_language":"Jupyter Notebook","_homepage":"","_description":"Transformers-Tutorials: This repository contains demos I made with the Transformers library by HuggingFace.","_organization":"nielsrogge","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2020-08-31T00:00:00.000Z","_age_weeks":120,"_stars_per_week":28.8,"_pop_contributor_count":4,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","roboflow"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.33,"_pop_updated_issues_count":63,"_pop_closed_issues_count":25,"_pop_created_since_days":28,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":63.0,"_pop_comment_count":92.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":29.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nielsrogge/transformers-tutorials/master/README.md","_readme_localurl":"nielsrogge~transformers-tutorials~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":782,"category":"diffusion","githuburl":"https://github.com/jina-ai/discoart","featured":null,"links":null,"description":null,"_repopath":"jina-ai/discoart","_reponame":"discoart","_stars":3428,"_forks":204,"_watches":33,"_topics":["creative-ai","disco-diffusion","cross-modal","dalle","generative-art","multimodal","diffusion","prompts","midjourney","imgen","discodiffusion","creative-art","clip-guided-diffusion","latent-diffusion","stable-diffusion"],"_language":"Python","_homepage":"","_description":"discoart: \ud83e\udea9 Create Disco Diffusion artworks in one line","_organization":"jina-ai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-08-17T00:00:00.000Z","_created_at":"2022-06-30T00:00:00.000Z","_age_weeks":24,"_stars_per_week":139.51,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["jina-ai","jinaai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.21,"_pop_updated_issues_count":14,"_pop_closed_issues_count":0,"_pop_created_since_days":6,"_pop_updated_since_days":4,"_pop_recent_releases_count":110,"_pop_recent_releases_estimated_tags":241,"_pop_recent_releases_adjusted_count":110,"_pop_issue_count":14.0,"_pop_comment_count":19.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":8,"_pop_score":30.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jina-ai/discoart/master/README.md","_readme_localurl":"jina-ai~discoart~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jina-ai/discoart/master/setup.py"],"_requirements_localurls":["jina-ai~discoart~setup.py"]},{"index":754,"category":"study","githuburl":"https://github.com/karpathy/micrograd","featured":null,"links":null,"description":null,"_repopath":"karpathy/micrograd","_reponame":"micrograd","_stars":3406,"_forks":309,"_watches":80,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"micrograd: A tiny scalar-valued autograd engine and a neural net library on top of it with PyTorch-like API","_organization":"karpathy","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-04-18T00:00:00.000Z","_created_at":"2020-04-13T00:00:00.000Z","_age_weeks":140,"_stars_per_week":24.33,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["enscognitique"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":8,"_pop_closed_issues_count":4,"_pop_created_since_days":33,"_pop_updated_since_days":32,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":8.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":10.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/karpathy/micrograd/master/README.md","_readme_localurl":"karpathy~micrograd~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/karpathy/micrograd/master/setup.py"],"_requirements_localurls":["karpathy~micrograd~setup.py"]},{"index":757,"category":"util","githuburl":"https://github.com/pypa/hatch","featured":null,"links":null,"description":null,"_repopath":"pypa/hatch","_reponame":"hatch","_stars":3396,"_forks":165,"_watches":49,"_topics":["python","cli","virtualenv","packaging","versioning","build","plugin"],"_language":"Python","_homepage":"https://hatch.pypa.io/latest/","_description":"hatch: Modern, extensible Python project management","_organization":"pypa","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2017-05-31T00:00:00.000Z","_age_weeks":289,"_stars_per_week":11.72,"_pop_contributor_count":20,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datadog","douban","mongodb"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.4,"_pop_updated_issues_count":164,"_pop_closed_issues_count":126,"_pop_created_since_days":68,"_pop_updated_since_days":0,"_pop_recent_releases_count":82,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":82,"_pop_issue_count":164.0,"_pop_comment_count":303.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":205,"_pop_score":56.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pypa/hatch/master/README.md","_readme_localurl":"pypa~hatch~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pypa/hatch/master/pyproject.toml"],"_requirements_localurls":["pypa~hatch~pyproject.toml"]},{"index":462,"category":"util","githuburl":"https://github.com/rspeer/python-ftfy","featured":null,"links":null,"description":null,"_repopath":"rspeer/python-ftfy","_reponame":"python-ftfy","_stars":3387,"_forks":116,"_watches":74,"_topics":[],"_language":"Python","_homepage":"http://ftfy.readthedocs.org","_description":"python-ftfy: Fixes mojibake and other glitches in Unicode text, after the fact.","_organization":"rspeer","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-10-25T00:00:00.000Z","_created_at":"2012-08-24T00:00:00.000Z","_age_weeks":538,"_stars_per_week":6.29,"_pop_contributor_count":18,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["elementalcognition","luminoso"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":126,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":3,"_pop_score":31.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rspeer/python-ftfy/master/README.md","_readme_localurl":"rspeer~python-ftfy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/rspeer/python-ftfy/master/setup.py","https://raw.githubusercontent.com/rspeer/python-ftfy/master/pyproject.toml"],"_requirements_localurls":["rspeer~python-ftfy~setup.py","rspeer~python-ftfy~pyproject.toml"]},{"index":200,"category":"ml","githuburl":"https://github.com/huggingface/accelerate","featured":null,"links":null,"description":null,"_repopath":"huggingface/accelerate","_reponame":"accelerate","_stars":3380,"_forks":286,"_watches":65,"_topics":[],"_language":"Python","_homepage":"https://huggingface.co/docs/accelerate","_description":"accelerate: \ud83d\ude80 A simple way to train and use PyTorch models with multi-GPU, TPU, mixed-precision","_organization":"huggingface","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2020-10-30T00:00:00.000Z","_age_weeks":111,"_stars_per_week":30.33,"_pop_contributor_count":77,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.46,"_pop_updated_issues_count":287,"_pop_closed_issues_count":250,"_pop_created_since_days":26,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":287.0,"_pop_comment_count":733.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":1206,"_pop_score":57.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/accelerate/master/README.md","_readme_localurl":"huggingface~accelerate~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/accelerate/master/setup.py","https://raw.githubusercontent.com/huggingface/accelerate/master/pyproject.toml"],"_requirements_localurls":["huggingface~accelerate~setup.py","huggingface~accelerate~pyproject.toml"]},{"index":790,"category":"diffusion","githuburl":"https://github.com/ashawkey/stable-dreamfusion","featured":null,"links":null,"description":null,"_repopath":"ashawkey/stable-dreamfusion","_reponame":"stable-dreamfusion","_stars":3366,"_forks":280,"_watches":79,"_topics":["text-to-3d","gui","nerf","stable-diffusion","dreamfusion"],"_language":"Python","_homepage":"","_description":"stable-dreamfusion: A pytorch implementation of text-to-3D dreamfusion, powered by stable diffusion.","_organization":"ashawkey","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2022-10-06T00:00:00.000Z","_age_weeks":10,"_stars_per_week":318.41,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ctcmedia","pekinguniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.12,"_pop_updated_issues_count":114,"_pop_closed_issues_count":54,"_pop_created_since_days":2,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":114.0,"_pop_comment_count":317.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":10,"_pop_score":30.75,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/ashawkey/stable-dreamfusion/master/readme.md","_readme_localurl":"ashawkey~stable-dreamfusion~readme.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/ashawkey/stable-dreamfusion/master/requirements.txt"],"_requirements_localurls":["ashawkey~stable-dreamfusion~requirements.txt"]},{"index":368,"category":"nlp","githuburl":"https://github.com/layout-parser/layout-parser","featured":null,"links":null,"description":null,"_repopath":"layout-parser/layout-parser","_reponame":"layout-parser","_stars":3346,"_forks":332,"_watches":57,"_topics":["layout-analysis","deep-learning","object-detection","ocr","layout-parser","detectron2","document-layout-analysis","computer-vision","document-image-processing","layout-detection"],"_language":"Python","_homepage":"https://layout-parser.github.io/","_description":"layout-parser: A Unified Toolkit for Deep Learning Based Document Image Analysis","_organization":"layout-parser","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-08-06T00:00:00.000Z","_created_at":"2020-06-10T00:00:00.000Z","_age_weeks":131,"_stars_per_week":25.4,"_pop_contributor_count":8,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon","clinicalmlallenai","factminers"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":16,"_pop_closed_issues_count":2,"_pop_created_since_days":31,"_pop_updated_since_days":4,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":16.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":25.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/layout-parser/layout-parser/master/README.md","_readme_localurl":"layout-parser~layout-parser~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/layout-parser/layout-parser/master/setup.py"],"_requirements_localurls":["layout-parser~layout-parser~setup.py"]},{"index":833,"category":"util","githuburl":"https://github.com/adafruit/circuitpython","featured":null,"links":null,"description":null,"_repopath":"adafruit/circuitpython","_reponame":"circuitpython","_stars":3320,"_forks":877,"_watches":128,"_topics":["circuitpython","micropython","python","embedded","microcontroller","education","beginner","cpython","python3","hacktoberfest"],"_language":"C","_homepage":"https://circuitpython.org","_description":"CircuitPython - a Python implementation for teaching coding with microcontrollers","_organization":"adafruit","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2016-08-20T00:00:00.000Z","_age_weeks":330,"_stars_per_week":10.05,"_pop_contributor_count":877,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["chickadee-tech","unpythonicnetworks"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":37.1,"_pop_updated_issues_count":622,"_pop_closed_issues_count":448,"_pop_created_since_days":77,"_pop_updated_since_days":0,"_pop_recent_releases_count":31,"_pop_recent_releases_estimated_tags":37,"_pop_recent_releases_adjusted_count":31,"_pop_issue_count":622.0,"_pop_comment_count":1458.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":5191,"_pop_score":75.95,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/adafruit/circuitpython/master/README.rst","_readme_localurl":"adafruit~circuitpython~README.rst","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":421,"category":"ml","githuburl":"https://github.com/facebookresearch/reagent","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/reagent","_reponame":"ReAgent","_stars":3311,"_forks":498,"_watches":146,"_topics":[],"_language":"Python","_homepage":"https://reagent.ai","_description":"ReAgent: A platform for Reasoning systems (Reinforcement Learning, Contextual Bandits, etc.)","_organization":"facebookresearch","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2017-07-27T00:00:00.000Z","_age_weeks":281,"_stars_per_week":11.76,"_pop_contributor_count":151,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["banditml","cornell"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.08,"_pop_updated_issues_count":22,"_pop_closed_issues_count":15,"_pop_created_since_days":66,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":22.0,"_pop_comment_count":36.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":587,"_pop_score":51.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/reagent/master/README.md","_readme_localurl":"facebookresearch~reagent~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/reagent/master/setup.py","https://raw.githubusercontent.com/facebookresearch/reagent/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~reagent~setup.py","facebookresearch~reagent~pyproject.toml"]},{"index":897,"category":"viz","githuburl":"https://github.com/has2k1/plotnine","featured":null,"links":null,"description":null,"_repopath":"has2k1/plotnine","_reponame":"plotnine","_stars":3278,"_forks":184,"_watches":65,"_topics":["plotting","grammar","graphics","python","data-analysis"],"_language":"Python","_homepage":"https://plotnine.readthedocs.io/en/stable/","_description":"plotnine: A grammar of graphics for Python","_organization":"has2k1","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2017-04-24T00:00:00.000Z","_age_weeks":295,"_stars_per_week":11.11,"_pop_contributor_count":99,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["kreuzwerker"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.85,"_pop_updated_issues_count":40,"_pop_closed_issues_count":22,"_pop_created_since_days":69,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":40.0,"_pop_comment_count":67.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":34,"_pop_score":44.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/has2k1/plotnine/master/README.md","_readme_localurl":"has2k1~plotnine~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/has2k1/plotnine/master/setup.py","https://raw.githubusercontent.com/has2k1/plotnine/master/pyproject.toml"],"_requirements_localurls":["has2k1~plotnine~setup.py","has2k1~plotnine~pyproject.toml"]},{"index":4,"category":"pandas","githuburl":"https://github.com/aws/aws-sdk-pandas","featured":1.0,"links":null,"description":null,"_repopath":"aws/aws-sdk-pandas","_reponame":"aws-sdk-pandas","_stars":3257,"_forks":562,"_watches":57,"_topics":["python","aws","pandas","apache-arrow","apache-parquet","data-engineering","etl","data-science","redshift","athena","lambda","aws-lambda","aws-glue","emr","amazon-athena","glue-catalog","mysql","amazon-sagemaker-notebook"],"_language":"Python","_homepage":"https://aws-sdk-pandas.readthedocs.io","_description":"aws-sdk-pandas: pandas on AWS - Easy integration with Athena, Glue, Redshift, Timestream, Neptune, OpenSearch, QuickSight, Chime, CloudWatchLogs, DynamoDB, EMR, SecretManager, PostgreSQL, MySQL, SQLServer and S3 (Parquet, CSV, JSON and EXCEL).","_organization":"aws","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-02-26T00:00:00.000Z","_age_weeks":198,"_stars_per_week":16.38,"_pop_contributor_count":121,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","aws","vtex"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.17,"_pop_updated_issues_count":328,"_pop_closed_issues_count":297,"_pop_created_since_days":46,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":328.0,"_pop_comment_count":1279.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.9,"_pop_dependents_count":0,"_pop_score":52.13,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aws/aws-sdk-pandas/master/README.md","_readme_localurl":"aws~aws-sdk-pandas~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/aws/aws-sdk-pandas/master/pyproject.toml"],"_requirements_localurls":["aws~aws-sdk-pandas~pyproject.toml"]},{"index":321,"category":"gui","githuburl":"https://github.com/r0x0r/pywebview","featured":null,"links":null,"description":null,"_repopath":"r0x0r/pywebview","_reponame":"pywebview","_stars":3247,"_forks":433,"_watches":57,"_topics":["python","webkit","gtk","linux","windows","gui","osx","cocoa","html","javascript","qt","cef"],"_language":"Python","_homepage":"https://pywebview.flowrl.com","_description":"pywebview: Build GUI for your Python program with JavaScript, HTML, and CSS","_organization":"r0x0r","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2014-11-20T00:00:00.000Z","_age_weeks":421,"_stars_per_week":7.7,"_pop_contributor_count":97,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["beeper"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.46,"_pop_updated_issues_count":66,"_pop_closed_issues_count":46,"_pop_created_since_days":98,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":66.0,"_pop_comment_count":194.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":43,"_pop_score":50.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/r0x0r/pywebview/master/README.md","_readme_localurl":"r0x0r~pywebview~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/r0x0r/pywebview/master/requirements.txt","https://raw.githubusercontent.com/r0x0r/pywebview/master/setup.py"],"_requirements_localurls":["r0x0r~pywebview~requirements.txt","r0x0r~pywebview~setup.py"]},{"index":663,"category":"util","githuburl":"https://github.com/zeromq/pyzmq","featured":null,"links":null,"description":null,"_repopath":"zeromq/pyzmq","_reponame":"pyzmq","_stars":3225,"_forks":610,"_watches":102,"_topics":["cython","python","zeromq"],"_language":"Python","_homepage":"http://zguide.zeromq.org/py:all","_description":"PyZMQ: Python bindings for zeromq","_organization":"zeromq","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2010-07-21T00:00:00.000Z","_age_weeks":647,"_stars_per_week":4.98,"_pop_contributor_count":187,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","microsoft","simularesearchlaboratory","universityofcalifornia,berkeley."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.42,"_pop_updated_issues_count":60,"_pop_closed_issues_count":48,"_pop_created_since_days":151,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":60.0,"_pop_comment_count":63.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":604,"_pop_score":60.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zeromq/pyzmq/master/README.md","_readme_localurl":"zeromq~pyzmq~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/zeromq/pyzmq/master/setup.py","https://raw.githubusercontent.com/zeromq/pyzmq/master/pyproject.toml"],"_requirements_localurls":["zeromq~pyzmq~setup.py","zeromq~pyzmq~pyproject.toml"]},{"index":895,"category":"time-series","githuburl":"https://github.com/awslabs/gluonts","featured":null,"links":null,"description":null,"_repopath":"awslabs/gluonts","_reponame":"gluonts","_stars":3224,"_forks":652,"_watches":69,"_topics":["time-series","deep-learning","forecasting","neural-networks","machine-learning","time-series-prediction","time-series-forecasting","mxnet","pytorch","aws","sagemaker","timeseries","artificial-intelligence","data-science"],"_language":"Python","_homepage":"https://ts.gluon.ai","_description":"gluonts: Probabilistic time series modeling in Python","_organization":"awslabs","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2019-05-15T00:00:00.000Z","_age_weeks":187,"_stars_per_week":17.18,"_pop_contributor_count":98,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon","awsawsawslabs","awslabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.65,"_pop_updated_issues_count":176,"_pop_closed_issues_count":121,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":27,"_pop_recent_releases_estimated_tags":19,"_pop_recent_releases_adjusted_count":27,"_pop_issue_count":176.0,"_pop_comment_count":224.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":48.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/awslabs/gluonts/master/README.md","_readme_localurl":"awslabs~gluonts~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/awslabs/gluonts/master/setup.py","https://raw.githubusercontent.com/awslabs/gluonts/master/pyproject.toml"],"_requirements_localurls":["awslabs~gluonts~setup.py","awslabs~gluonts~pyproject.toml"]},{"index":208,"category":"crypto","githuburl":"https://github.com/cyberpunkmetalhead/binance-volatility-trading-bot","featured":null,"links":null,"description":null,"_repopath":"cyberpunkmetalhead/binance-volatility-trading-bot","_reponame":"Binance-volatility-trading-bot","_stars":3222,"_forks":763,"_watches":145,"_topics":[],"_language":"Python","_homepage":null,"_description":"Binance-volatility-trading-bot: This is a fully functioning Binance trading bot that measures the volatility of every coin on Binance and places trades with the highest gaining coins If you like this project consider donating though the Brave browser to allow me to continuously improve the script.","_organization":"cyberpunkmetalhead","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2021-06-10T00:00:00.000Z","_created_at":"2021-05-08T00:00:00.000Z","_age_weeks":84,"_stars_per_week":38.23,"_pop_contributor_count":19,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mazette!"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":20,"_pop_updated_since_days":19,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":12.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cyberpunkmetalhead/binance-volatility-trading-bot/master/README.md","_readme_localurl":"cyberpunkmetalhead~binance-volatility-trading-bot~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/cyberpunkmetalhead/binance-volatility-trading-bot/master/requirements.txt"],"_requirements_localurls":["cyberpunkmetalhead~binance-volatility-trading-bot~requirements.txt"]},{"index":93,"category":"web","githuburl":"https://github.com/unbit/uwsgi","featured":null,"links":null,"description":null,"_repopath":"unbit/uwsgi","_reponame":"uwsgi","_stars":3218,"_forks":668,"_watches":113,"_topics":[],"_language":"C","_homepage":"http://projects.unbit.it/uwsgi","_description":"uWSGI application server container","_organization":"unbit","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2011-10-09T00:00:00.000Z","_age_weeks":584,"_stars_per_week":5.51,"_pop_contributor_count":352,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["20tabsrl","menodizero.it","unbit"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":67,"_pop_closed_issues_count":33,"_pop_created_since_days":136,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":67.0,"_pop_comment_count":85.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":1403,"_pop_score":60.1,"_readme_filename":"","_readme_giturl":"","_readme_localurl":"","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/unbit/uwsgi/master/setup.py"],"_requirements_localurls":["unbit~uwsgi~setup.py"]},{"index":361,"category":"ml-ops","githuburl":"https://github.com/polyaxon/polyaxon","featured":null,"links":null,"description":null,"_repopath":"polyaxon/polyaxon","_reponame":"polyaxon","_stars":3216,"_forks":316,"_watches":77,"_topics":["deep-learning","machine-learning","artificial-intelligence","data-science","reinforcement-learning","kubernetes","tensorflow","pytorch","keras","mxnet","caffe","ml","k8s","jupyter","notebook","jupyterlab","pipelines","workflow","mlops","hyperparameter-optimization"],"_language":"Python","_homepage":"https://polyaxon.com","_description":"polyaxon: MLOps Tools For Managing & Orchestrating The Machine Learning LifeCycle","_organization":"polyaxon","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-11T00:00:00.000Z","_created_at":"2016-12-26T00:00:00.000Z","_age_weeks":312,"_stars_per_week":10.31,"_pop_contributor_count":98,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.58,"_pop_updated_issues_count":6,"_pop_closed_issues_count":0,"_pop_created_since_days":73,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":25,"_pop_issue_count":6.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":111,"_pop_score":40.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/polyaxon/polyaxon/master/README.md","_readme_localurl":"polyaxon~polyaxon~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":319,"category":"gui","githuburl":"https://github.com/dddomodossola/remi","featured":null,"links":null,"description":null,"_repopath":"dddomodossola/remi","_reponame":"remi","_stars":3185,"_forks":390,"_watches":119,"_topics":["python","gui-library","remi","platform-independent","ui","gui"],"_language":"Python","_homepage":"","_description":"remi: Python REMote Interface library. Platform independent. In about 100 Kbytes, perfect for your diet.","_organization":"dddomodossola","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2014-03-20T00:00:00.000Z","_age_weeks":456,"_stars_per_week":6.98,"_pop_contributor_count":56,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["europeanspallationsourceeric","imtssrl"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.71,"_pop_updated_issues_count":24,"_pop_closed_issues_count":21,"_pop_created_since_days":106,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":24.0,"_pop_comment_count":42.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":471,"_pop_score":49.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dddomodossola/remi/master/README.md","_readme_localurl":"dddomodossola~remi~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dddomodossola/remi/master/setup.py"],"_requirements_localurls":["dddomodossola~remi~setup.py"]},{"index":557,"category":"jupyter","githuburl":"https://github.com/executablebooks/jupyter-book","featured":null,"links":null,"description":null,"_repopath":"executablebooks/jupyter-book","_reponame":"jupyter-book","_stars":3163,"_forks":587,"_watches":63,"_topics":["jupyter","sphinx-doc","documentation-generator"],"_language":"Python","_homepage":"http://jupyterbook.org","_description":"jupyter-book: Create beautiful, publication-quality books and documents from computational content.","_organization":"executablebooks","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2018-06-14T00:00:00.000Z","_age_weeks":235,"_stars_per_week":13.43,"_pop_contributor_count":118,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["imperialcollegelondon","stanforduniversity","ucberkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.63,"_pop_updated_issues_count":107,"_pop_closed_issues_count":37,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":107.0,"_pop_comment_count":197.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":139,"_pop_score":53.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/executablebooks/jupyter-book/master/README.md","_readme_localurl":"executablebooks~jupyter-book~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/executablebooks/jupyter-book/master/pyproject.toml"],"_requirements_localurls":["executablebooks~jupyter-book~pyproject.toml"]},{"index":99,"category":"ml","githuburl":"https://github.com/skvark/opencv-python","featured":null,"links":null,"description":null,"_repopath":"skvark/opencv-python","_reponame":"opencv-python","_stars":3161,"_forks":618,"_watches":82,"_topics":["opencv","python","wheel","python-3","opencv-python","opencv-contrib-python","precompiled","pypi","manylinux"],"_language":"Shell","_homepage":"https://pypi.org/project/opencv-python/","_description":"opencv-python: Automated CI toolchain to produce precompiled opencv-python, opencv-python-headless, opencv-contrib-python and opencv-contrib-python-headless packages.","_organization":"skvark","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2016-04-08T00:00:00.000Z","_age_weeks":349,"_stars_per_week":9.05,"_pop_contributor_count":40,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["softlandia-ltd","xperience.ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.75,"_pop_updated_issues_count":50,"_pop_closed_issues_count":30,"_pop_created_since_days":82,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":50.0,"_pop_comment_count":105.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":1469,"_pop_score":53.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/skvark/opencv-python/master/README.md","_readme_localurl":"skvark~opencv-python~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/skvark/opencv-python/master/setup.py","https://raw.githubusercontent.com/skvark/opencv-python/master/pyproject.toml"],"_requirements_localurls":["skvark~opencv-python~setup.py","skvark~opencv-python~pyproject.toml"]},{"index":804,"category":"util","githuburl":"https://github.com/miguelgrinberg/python-socketio","featured":null,"links":null,"description":null,"_repopath":"miguelgrinberg/python-socketio","_reponame":"python-socketio","_stars":3151,"_forks":512,"_watches":63,"_topics":["socket-io","socketio","socketio-server","websocket","long-polling","low-latency","web-server","python","asyncio","eventlet","gevent"],"_language":"Python","_homepage":"","_description":"python-socketio: Python Socket.IO server and client","_organization":"miguelgrinberg","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-08T00:00:00.000Z","_created_at":"2015-07-15T00:00:00.000Z","_age_weeks":387,"_stars_per_week":8.13,"_pop_contributor_count":61,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["untienots"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.19,"_pop_updated_issues_count":51,"_pop_closed_issues_count":43,"_pop_created_since_days":90,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":51.0,"_pop_comment_count":105.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":285,"_pop_score":52.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/miguelgrinberg/python-socketio/master/README.md","_readme_localurl":"miguelgrinberg~python-socketio~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/miguelgrinberg/python-socketio/master/setup.py","https://raw.githubusercontent.com/miguelgrinberg/python-socketio/master/pyproject.toml"],"_requirements_localurls":["miguelgrinberg~python-socketio~setup.py","miguelgrinberg~python-socketio~pyproject.toml"]},{"index":250,"category":"web","githuburl":"https://github.com/websocket-client/websocket-client","featured":null,"links":null,"description":null,"_repopath":"websocket-client/websocket-client","_reponame":"websocket-client","_stars":3133,"_forks":724,"_watches":88,"_topics":["websocket","websockets","websocket-client","websockets-client","python","rfc-6455"],"_language":"Python","_homepage":"https://github.com/websocket-client/websocket-client","_description":"websocket-client: WebSocket client for Python","_organization":"websocket-client","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2010-12-28T00:00:00.000Z","_age_weeks":624,"_stars_per_week":5.01,"_pop_contributor_count":205,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["piclo","redhat,inc","yacademy"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.96,"_pop_updated_issues_count":32,"_pop_closed_issues_count":26,"_pop_created_since_days":146,"_pop_updated_since_days":2,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":32.0,"_pop_comment_count":57.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":986,"_pop_score":56.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/websocket-client/websocket-client/master/README.md","_readme_localurl":"websocket-client~websocket-client~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/websocket-client/websocket-client/master/setup.py"],"_requirements_localurls":["websocket-client~websocket-client~setup.py"]},{"index":832,"category":"pandas","githuburl":"https://github.com/blaze/blaze","featured":null,"links":null,"description":null,"_repopath":"blaze/blaze","_reponame":"blaze","_stars":3118,"_forks":386,"_watches":200,"_topics":[],"_language":"Python","_homepage":"blaze.pydata.org","_description":"blaze: NumPy and Pandas interface to Big Data","_organization":"blaze","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2019-08-15T00:00:00.000Z","_created_at":"2012-10-26T00:00:00.000Z","_age_weeks":529,"_stars_per_week":5.89,"_pop_contributor_count":65,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["awsthinkbox","coiled","formerlyquantopian","voltrondata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":124,"_pop_updated_since_days":41,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":1860,"_pop_score":41.24,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/blaze/blaze/master/README.rst","_readme_localurl":"blaze~blaze~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/blaze/blaze/master/setup.py"],"_requirements_localurls":["blaze~blaze~setup.py"]},{"index":182,"category":"testing","githuburl":"https://github.com/tox-dev/tox","featured":null,"links":null,"description":null,"_repopath":"tox-dev/tox","_reponame":"tox","_stars":3115,"_forks":452,"_watches":40,"_topics":["testing","python","virtualenv","continuous-integration","cli","automation","venv","travis","appveyor","gitlab","circleci","azure-pipelines","hacktoberfest"],"_language":"Python","_homepage":"https://tox.wiki","_description":"tox: Command line driven CI frontend and development task automation tool.","_organization":"tox-dev","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2016-09-17T00:00:00.000Z","_age_weeks":326,"_stars_per_week":9.55,"_pop_contributor_count":26,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bloomberglp","canonical","redhatansible"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.0,"_pop_updated_issues_count":283,"_pop_closed_issues_count":229,"_pop_created_since_days":76,"_pop_updated_since_days":0,"_pop_recent_releases_count":26,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":26,"_pop_issue_count":284.0,"_pop_comment_count":495.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":6182,"_pop_score":62.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tox-dev/tox/master/README.md","_readme_localurl":"tox-dev~tox~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tox-dev/tox/master/setup.py","https://raw.githubusercontent.com/tox-dev/tox/master/pyproject.toml"],"_requirements_localurls":["tox-dev~tox~setup.py","tox-dev~tox~pyproject.toml"]},{"index":35,"category":"data","githuburl":"https://github.com/jmcnamara/xlsxwriter","featured":null,"links":null,"description":null,"_repopath":"jmcnamara/xlsxwriter","_reponame":"XlsxWriter","_stars":3115,"_forks":592,"_watches":121,"_topics":["python","xlsx-files","libxlsxwriter","pandas","charts","spreadsheet","xlsx","xlsxwriter"],"_language":"Python","_homepage":"https://xlsxwriter.readthedocs.io","_description":"XlsxWriter: A Python module for creating Excel XLSX files.","_organization":"jmcnamara","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2013-01-04T00:00:00.000Z","_age_weeks":519,"_stars_per_week":6.0,"_pop_contributor_count":47,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["crunch.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.79,"_pop_updated_issues_count":32,"_pop_closed_issues_count":23,"_pop_created_since_days":121,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":32.0,"_pop_comment_count":87.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":362,"_pop_score":52.53,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jmcnamara/xlsxwriter/master/README.rst","_readme_localurl":"jmcnamara~xlsxwriter~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jmcnamara/xlsxwriter/master/setup.py"],"_requirements_localurls":["jmcnamara~xlsxwriter~setup.py"]},{"index":518,"category":"util","githuburl":"https://github.com/spack/spack","featured":null,"links":null,"description":null,"_repopath":"spack/spack","_reponame":"spack","_stars":3102,"_forks":1796,"_watches":105,"_topics":["python","spack","package-manager","hpc","build-tools","radiuss","scientific-computing","macos","linux"],"_language":"Python","_homepage":"https://spack.io","_description":"spack: A flexible package manager that supports multiple versions, configurations, platforms, and compilers.","_organization":"spack","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2014-01-08T00:00:00.000Z","_age_weeks":466,"_stars_per_week":6.65,"_pop_contributor_count":1314,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["llnl","np-complete","universityofillinoisaturbana-champaign"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":84.79,"_pop_updated_issues_count":2517,"_pop_closed_issues_count":1844,"_pop_created_since_days":109,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":2515.0,"_pop_comment_count":5597.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":1578,"_pop_score":77.97,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/spack/spack/master/README.md","_readme_localurl":"spack~spack~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/spack/spack/master/pyproject.toml"],"_requirements_localurls":["spack~spack~pyproject.toml"]},{"index":443,"category":"gis","githuburl":"https://github.com/shapely/shapely","featured":1.0,"links":null,"description":null,"_repopath":"shapely/shapely","_reponame":"shapely","_stars":3100,"_forks":501,"_watches":82,"_topics":[],"_language":"Python","_homepage":"https://shapely.readthedocs.io/en/stable/","_description":"shapely: Manipulation and analysis of geometric objects","_organization":"shapely","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2011-12-31T00:00:00.000Z","_age_weeks":572,"_stars_per_week":5.42,"_pop_contributor_count":140,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["gnsscience","nelen&schuurmans","planetlabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.21,"_pop_updated_issues_count":221,"_pop_closed_issues_count":143,"_pop_created_since_days":134,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":221.0,"_pop_comment_count":488.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":135,"_pop_score":60.43,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/shapely/shapely/master/README.rst","_readme_localurl":"shapely~shapely~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/shapely/shapely/master/setup.py","https://raw.githubusercontent.com/shapely/shapely/master/pyproject.toml"],"_requirements_localurls":["shapely~shapely~setup.py","shapely~shapely~pyproject.toml"]},{"index":0,"category":"data","githuburl":"https://github.com/andialbrecht/sqlparse","featured":null,"links":null,"description":null,"_repopath":"andialbrecht/sqlparse","_reponame":"sqlparse","_stars":3091,"_forks":613,"_watches":93,"_topics":[],"_language":"Python","_homepage":"","_description":"sqlparse: A non-validating SQL parser module for Python","_organization":"andialbrecht","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-23T00:00:00.000Z","_created_at":"2012-04-18T00:00:00.000Z","_age_weeks":556,"_stars_per_week":5.55,"_pop_contributor_count":100,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dyte-in,mafalda-sfu","pioneervalleybooks"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.46,"_pop_updated_issues_count":27,"_pop_closed_issues_count":4,"_pop_created_since_days":130,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":27.0,"_pop_comment_count":36.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":2598,"_pop_score":50.67,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/andialbrecht/sqlparse/master/README.rst","_readme_localurl":"andialbrecht~sqlparse~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/andialbrecht/sqlparse/master/setup.py"],"_requirements_localurls":["andialbrecht~sqlparse~setup.py"]},{"index":260,"category":"util","githuburl":"https://github.com/python-markdown/markdown","featured":null,"links":null,"description":null,"_repopath":"python-markdown/markdown","_reponame":"markdown","_stars":3079,"_forks":789,"_watches":76,"_topics":["python-markdown","markdown","markdown-parser","markdown-to-html","python","python3"],"_language":"Python","_homepage":"https://python-markdown.github.io/","_description":"markdown: A Python implementation of John Gruber\u2019s Markdown with Extension support.","_organization":"python-markdown","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2010-05-29T00:00:00.000Z","_age_weeks":655,"_stars_per_week":4.7,"_pop_contributor_count":164,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["rangle.io","theinterfacefinancialgroup"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.62,"_pop_updated_issues_count":25,"_pop_closed_issues_count":19,"_pop_created_since_days":153,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":25.0,"_pop_comment_count":100.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.0,"_pop_dependents_count":1745,"_pop_score":59.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python-markdown/markdown/master/README.md","_readme_localurl":"python-markdown~markdown~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-markdown/markdown/master/setup.py","https://raw.githubusercontent.com/python-markdown/markdown/master/pyproject.toml"],"_requirements_localurls":["python-markdown~markdown~setup.py","python-markdown~markdown~pyproject.toml"]},{"index":384,"category":"nlp","githuburl":"https://github.com/minimaxir/gpt-2-simple","featured":null,"links":null,"description":null,"_repopath":"minimaxir/gpt-2-simple","_reponame":"gpt-2-simple","_stars":3070,"_forks":633,"_watches":74,"_topics":["text-generation","tensorflow","openai","textgenrnn"],"_language":"Python","_homepage":"","_description":"gpt-2-simple: Python package to easily retrain OpenAI's GPT-2 text-generating model on new texts","_organization":"minimaxir","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-05-22T00:00:00.000Z","_created_at":"2019-04-13T00:00:00.000Z","_age_weeks":192,"_stars_per_week":15.97,"_pop_contributor_count":21,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["buzzfeed","universityofnotredame"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":9,"_pop_closed_issues_count":3,"_pop_created_since_days":45,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":9.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":26.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/minimaxir/gpt-2-simple/master/README.md","_readme_localurl":"minimaxir~gpt-2-simple~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/minimaxir/gpt-2-simple/master/requirements.txt","https://raw.githubusercontent.com/minimaxir/gpt-2-simple/master/setup.py"],"_requirements_localurls":["minimaxir~gpt-2-simple~requirements.txt","minimaxir~gpt-2-simple~setup.py"]},{"index":363,"category":"ml-ops","githuburl":"https://github.com/kubeflow/pipelines","featured":null,"links":null,"description":null,"_repopath":"kubeflow/pipelines","_reponame":"pipelines","_stars":3069,"_forks":1358,"_watches":103,"_topics":["kubeflow-pipelines","mlops","kubeflow","machine-learning","kubernetes","pipeline","data-science"],"_language":"Python","_homepage":"https://www.kubeflow.org/docs/components/pipelines/","_description":"pipelines: Machine Learning Pipelines for Kubeflow","_organization":"kubeflow","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-05-12T00:00:00.000Z","_age_weeks":240,"_stars_per_week":12.77,"_pop_contributor_count":350,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.87,"_pop_updated_issues_count":577,"_pop_closed_issues_count":245,"_pop_created_since_days":56,"_pop_updated_since_days":0,"_pop_recent_releases_count":30,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":30,"_pop_issue_count":577.0,"_pop_comment_count":1161.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":3456,"_pop_score":67.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kubeflow/pipelines/master/README.md","_readme_localurl":"kubeflow~pipelines~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/kubeflow/pipelines/master/requirements.txt"],"_requirements_localurls":["kubeflow~pipelines~requirements.txt"]},{"index":140,"category":"nlp","githuburl":"https://github.com/neuml/txtai","featured":null,"links":null,"description":null,"_repopath":"neuml/txtai","_reponame":"txtai","_stars":3059,"_forks":273,"_watches":54,"_topics":["python","search","machine-learning","nlp","deep-learning","document-search","audio-search","image-search","video-search","semantic-search","similarity-search","neural-search","contextual-search","vector-search","machine-learning-workflows","machine-learning-pipelines","microservice","api","cloud-native","txtai"],"_language":"Python","_homepage":"https://neuml.github.io/txtai","_description":"txtai: \ud83d\udca1 Build AI-powered semantic search applications ","_organization":"neuml","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2020-08-09T00:00:00.000Z","_age_weeks":123,"_stars_per_week":24.84,"_pop_contributor_count":8,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bigtincan","neuml"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.63,"_pop_updated_issues_count":68,"_pop_closed_issues_count":57,"_pop_created_since_days":29,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":68.0,"_pop_comment_count":99.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":3,"_pop_score":40.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/neuml/txtai/master/README.md","_readme_localurl":"neuml~txtai~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/neuml/txtai/master/setup.py","https://raw.githubusercontent.com/neuml/txtai/master/pyproject.toml"],"_requirements_localurls":["neuml~txtai~setup.py","neuml~txtai~pyproject.toml"]},{"index":138,"category":"ml-interpretability","githuburl":"https://github.com/pair-code/lit","featured":1.0,"links":null,"description":null,"_repopath":"pair-code/lit","_reponame":"lit","_stars":3043,"_forks":322,"_watches":71,"_topics":["machine-learning","natural-language-processing","visualization"],"_language":"TypeScript","_homepage":"https://pair-code.github.io/lit","_description":"lit: The Learning Interpretability Tool: Interactively analyze ML models to understand their behavior in an extensible and framework agnostic interface.","_organization":"pair-code","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2020-07-28T00:00:00.000Z","_age_weeks":124,"_stars_per_week":24.37,"_pop_contributor_count":27,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deepmind","google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.96,"_pop_updated_issues_count":168,"_pop_closed_issues_count":154,"_pop_created_since_days":29,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":168.0,"_pop_comment_count":33.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":6,"_pop_score":38.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pair-code/lit/master/README.md","_readme_localurl":"pair-code~lit~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":610,"category":"testing","githuburl":"https://github.com/seleniumbase/seleniumbase","featured":null,"links":null,"description":null,"_repopath":"seleniumbase/seleniumbase","_reponame":"SeleniumBase","_stars":3027,"_forks":726,"_watches":119,"_topics":["python","selenium","webdriver","selenium-python","e2e-testing","seleniumbase","pytest-plugin","web-automation","pytest","behave","chrome","webkit","chromedriver","firefox","test"],"_language":"Python","_homepage":"https://seleniumbase.io","_description":"SeleniumBase: Python framework for web automation and testing that extends Selenium.","_organization":"seleniumbase","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2014-03-04T00:00:00.000Z","_age_weeks":458,"_stars_per_week":6.6,"_pop_contributor_count":35,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["https://www.iboss.com/","nausetconsulting"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":24.38,"_pop_updated_issues_count":108,"_pop_closed_issues_count":105,"_pop_created_since_days":107,"_pop_updated_since_days":0,"_pop_recent_releases_count":152,"_pop_recent_releases_estimated_tags":86,"_pop_recent_releases_adjusted_count":152,"_pop_issue_count":108.0,"_pop_comment_count":127.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":318,"_pop_score":58.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/seleniumbase/seleniumbase/master/README.md","_readme_localurl":"seleniumbase~seleniumbase~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/seleniumbase/seleniumbase/master/requirements.txt","https://raw.githubusercontent.com/seleniumbase/seleniumbase/master/setup.py"],"_requirements_localurls":["seleniumbase~seleniumbase~requirements.txt","seleniumbase~seleniumbase~setup.py"]},{"index":42,"category":"nlp","githuburl":"https://github.com/life4/textdistance","featured":null,"links":null,"description":null,"_repopath":"life4/textdistance","_reponame":"textdistance","_stars":3015,"_forks":240,"_watches":61,"_topics":["distance","algorithm","python","textdistance","hamming-distance","levenshtein-distance","damerau-levenshtein","damerau-levenshtein-distance","algorithms","distance-calculation","jellyfish","diff","levenshtein"],"_language":"Python","_homepage":"","_description":"textdistance: Compute distance between sequences. 30+ algorithms, pure python implementation, common interface, optional external libs usage.","_organization":"life4","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-18T00:00:00.000Z","_created_at":"2017-05-05T00:00:00.000Z","_age_weeks":293,"_stars_per_week":10.28,"_pop_contributor_count":13,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["archlinux","sendcloud","universityofcambridge"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.79,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":68,"_pop_updated_since_days":3,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":73,"_pop_score":32.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/life4/textdistance/master/README.md","_readme_localurl":"life4~textdistance~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/life4/textdistance/master/setup.py","https://raw.githubusercontent.com/life4/textdistance/master/pyproject.toml"],"_requirements_localurls":["life4~textdistance~setup.py","life4~textdistance~pyproject.toml"]},{"index":336,"category":"ml","githuburl":"https://github.com/apple/coremltools","featured":null,"links":null,"description":null,"_repopath":"apple/coremltools","_reponame":"coremltools","_stars":2999,"_forks":481,"_watches":110,"_topics":["coremltools","tensorflow","pytorch","coreml","machine-learning","model-converter","model-conversion"],"_language":"Python","_homepage":"https://coremltools.readme.io","_description":"coremltools: Core ML tools contain supporting tools for Core ML model conversion, editing, and validation.","_organization":"apple","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2017-06-30T00:00:00.000Z","_age_weeks":285,"_stars_per_week":10.51,"_pop_contributor_count":143,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["apple"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.0,"_pop_updated_issues_count":312,"_pop_closed_issues_count":236,"_pop_created_since_days":67,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":312.0,"_pop_comment_count":465.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":49,"_pop_score":51.2,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apple/coremltools/master/README.md","_readme_localurl":"apple~coremltools~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/apple/coremltools/master/setup.py"],"_requirements_localurls":["apple~coremltools~setup.py"]},{"index":698,"category":"util","githuburl":"https://github.com/joblib/joblib","featured":null,"links":null,"description":null,"_repopath":"joblib/joblib","_reponame":"joblib","_stars":2994,"_forks":357,"_watches":63,"_topics":["python","parallel-computing","caching","multiprocessing","threading","memoization"],"_language":"Python","_homepage":"http://joblib.readthedocs.org","_description":"joblib: Computing with Python functions.","_organization":"joblib","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-25T00:00:00.000Z","_created_at":"2010-05-07T00:00:00.000Z","_age_weeks":658,"_stars_per_week":4.55,"_pop_contributor_count":113,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["inria","inriasaclay-parietalteam"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.9,"_pop_updated_issues_count":50,"_pop_closed_issues_count":21,"_pop_created_since_days":154,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":50.0,"_pop_comment_count":81.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":1999,"_pop_score":55.64,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/joblib/joblib/master/README.rst","_readme_localurl":"joblib~joblib~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/joblib/joblib/master/setup.py"],"_requirements_localurls":["joblib~joblib~setup.py"]},{"index":348,"category":"ml-ops","githuburl":"https://github.com/evidentlyai/evidently","featured":null,"links":null,"description":null,"_repopath":"evidentlyai/evidently","_reponame":"evidently","_stars":2986,"_forks":325,"_watches":32,"_topics":["data-drift","jupyter-notebook","pandas-dataframe","machine-learning","model-monitoring","html-report","production-machine-learning","machine-learning-operations","mlops","data-science","hacktoberfest"],"_language":"Python","_homepage":"","_description":"evidently: Evaluate and monitor ML models from validation to production. Join our Discord: https://discord.com/invite/xZjKRaNp8b","_organization":"evidentlyai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2020-11-25T00:00:00.000Z","_age_weeks":107,"_stars_per_week":27.72,"_pop_contributor_count":31,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["evidentlyai","intento,evidentlyai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":20.81,"_pop_updated_issues_count":186,"_pop_closed_issues_count":152,"_pop_created_since_days":25,"_pop_updated_since_days":0,"_pop_recent_releases_count":24,"_pop_recent_releases_estimated_tags":19,"_pop_recent_releases_adjusted_count":24,"_pop_issue_count":186.0,"_pop_comment_count":203.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":16,"_pop_score":49.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/evidentlyai/evidently/master/README.md","_readme_localurl":"evidentlyai~evidently~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/evidentlyai/evidently/master/requirements.txt","https://raw.githubusercontent.com/evidentlyai/evidently/master/setup.py"],"_requirements_localurls":["evidentlyai~evidently~requirements.txt","evidentlyai~evidently~setup.py"]},{"index":139,"category":"viz","githuburl":"https://github.com/vispy/vispy","featured":null,"links":null,"description":null,"_repopath":"vispy/vispy","_reponame":"vispy","_stars":2985,"_forks":604,"_watches":121,"_topics":["hacktoberfest","python","opengl","visualization","closember"],"_language":"Python","_homepage":"http://vispy.org","_description":"vispy: Main repository for Vispy","_organization":"vispy","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2013-03-21T00:00:00.000Z","_age_weeks":508,"_stars_per_week":5.87,"_pop_contributor_count":182,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["independentsoftwareengineer","spacescienceandengineeringcenter(ssec)","universityofedinburgh","universityofwashington"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.31,"_pop_updated_issues_count":79,"_pop_closed_issues_count":47,"_pop_created_since_days":119,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":79.0,"_pop_comment_count":326.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.1,"_pop_dependents_count":125,"_pop_score":61.28,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/vispy/vispy/master/README.rst","_readme_localurl":"vispy~vispy~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/vispy/vispy/master/setup.py","https://raw.githubusercontent.com/vispy/vispy/master/pyproject.toml"],"_requirements_localurls":["vispy~vispy~setup.py","vispy~vispy~pyproject.toml"]},{"index":285,"category":"crypto","githuburl":"https://github.com/ethereum/consensus-specs","featured":null,"links":null,"description":null,"_repopath":"ethereum/consensus-specs","_reponame":"consensus-specs","_stars":2973,"_forks":749,"_watches":246,"_topics":[],"_language":"Python","_homepage":"","_description":"consensus-specs: Ethereum Proof-of-Stake Consensus Specifications","_organization":"ethereum","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2018-09-20T00:00:00.000Z","_age_weeks":221,"_stars_per_week":13.42,"_pop_contributor_count":128,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ctrl^t","oplabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.48,"_pop_updated_issues_count":169,"_pop_closed_issues_count":126,"_pop_created_since_days":52,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":169.0,"_pop_comment_count":335.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":146,"_pop_score":57.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethereum/consensus-specs/master/README.md","_readme_localurl":"ethereum~consensus-specs~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ethereum/consensus-specs/master/setup.py"],"_requirements_localurls":["ethereum~consensus-specs~setup.py"]},{"index":221,"category":"jupyter","githuburl":"https://github.com/jupyterlite/jupyterlite","featured":null,"links":null,"description":null,"_repopath":"jupyterlite/jupyterlite","_reponame":"jupyterlite","_stars":2973,"_forks":186,"_watches":44,"_topics":["jupyter","jupyterlab","jupyterlab-extension","lite","webassembly","wasm","pyodide"],"_language":"Python","_homepage":"https://jupyterlite.rtfd.io/en/latest/try/lab","_description":"jupyterlite: Wasm powered Jupyter running in the browser \ud83d\udca1","_organization":"jupyterlite","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2021-03-27T00:00:00.000Z","_age_weeks":90,"_stars_per_week":32.93,"_pop_contributor_count":41,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quantstack"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.35,"_pop_updated_issues_count":137,"_pop_closed_issues_count":71,"_pop_created_since_days":21,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":458,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":137.0,"_pop_comment_count":330.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":25,"_pop_score":49.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyterlite/jupyterlite/master/README.md","_readme_localurl":"jupyterlite~jupyterlite~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyterlite/jupyterlite/master/pyproject.toml"],"_requirements_localurls":["jupyterlite~jupyterlite~pyproject.toml"]},{"index":272,"category":"data","githuburl":"https://github.com/praw-dev/praw","featured":null,"links":null,"description":null,"_repopath":"praw-dev/praw","_reponame":"praw","_stars":2962,"_forks":449,"_watches":72,"_topics":["python","reddit","api","oauth","praw","reddit-api"],"_language":"Python","_homepage":"http://praw.readthedocs.io/","_description":"PRAW, an acronym for \"Python Reddit API Wrapper\", is a python package that allows for simple access to Reddit's API.","_organization":"praw-dev","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2010-08-19T00:00:00.000Z","_age_weeks":643,"_stars_per_week":4.6,"_pop_contributor_count":220,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["appfolio","billy","indeed","netflix"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.02,"_pop_updated_issues_count":30,"_pop_closed_issues_count":24,"_pop_created_since_days":150,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":30.0,"_pop_comment_count":62.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":541,"_pop_score":59.97,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/praw-dev/praw/master/README.rst","_readme_localurl":"praw-dev~praw~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/praw-dev/praw/master/setup.py","https://raw.githubusercontent.com/praw-dev/praw/master/pyproject.toml"],"_requirements_localurls":["praw-dev~praw~setup.py","praw-dev~praw~pyproject.toml"]},{"index":715,"category":"ml-ops","githuburl":"https://github.com/flyteorg/flyte","featured":null,"links":null,"description":null,"_repopath":"flyteorg/flyte","_reponame":"flyte","_stars":2930,"_forks":305,"_watches":266,"_topics":["flyte","machine-learning","golang","scale","workflow","data-science","data-analysis","data","kubernetes-operator","kubernetes","orchestration-engine","mlops","dataops","grpc","python","battle-tested","production","production-grade","declarative","hacktoberfest"],"_language":"Python","_homepage":"https://flyte.org","_description":"flyte: Kubernetes-native workflow automation platform for complex, mission-critical data and ML processes at scale. It has been battle-tested at Lyft, Spotify, Freenome, and others and is truly open-source.","_organization":"flyteorg","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-10-21T00:00:00.000Z","_age_weeks":165,"_stars_per_week":17.76,"_pop_contributor_count":110,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["flyteorg","unionai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.98,"_pop_updated_issues_count":375,"_pop_closed_issues_count":172,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":31,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":31,"_pop_issue_count":376.0,"_pop_comment_count":569.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":31,"_pop_score":54.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/flyteorg/flyte/master/README.md","_readme_localurl":"flyteorg~flyte~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/flyteorg/flyte/master/requirements.txt"],"_requirements_localurls":["flyteorg~flyte~requirements.txt"]},{"index":381,"category":"ml-ops","githuburl":"https://github.com/aimhubio/aim","featured":null,"links":null,"description":null,"_repopath":"aimhubio/aim","_reponame":"aim","_stars":2926,"_forks":183,"_watches":35,"_topics":["python","ai","data-science","data-visualization","experiment-tracking","machine-learning","metadata","metadata-tracking","ml","mlflow","mlops","pytorch","tensorboard","tensorflow","visualization"],"_language":"TypeScript","_homepage":"https://aimstack.io","_description":"Aim \ud83d\udcab \u2014 easy-to-use and performant open-source ML experiment tracker.","_organization":"aimhubio","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2019-05-31T00:00:00.000Z","_age_weeks":185,"_stars_per_week":15.78,"_pop_contributor_count":48,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aimhub","aimhubio","aimstack"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.19,"_pop_updated_issues_count":332,"_pop_closed_issues_count":236,"_pop_created_since_days":43,"_pop_updated_since_days":0,"_pop_recent_releases_count":45,"_pop_recent_releases_estimated_tags":42,"_pop_recent_releases_adjusted_count":45,"_pop_issue_count":332.0,"_pop_comment_count":521.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":33,"_pop_score":55.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aimhubio/aim/master/README.md","_readme_localurl":"aimhubio~aim~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/aimhubio/aim/master/requirements.txt","https://raw.githubusercontent.com/aimhubio/aim/master/setup.py","https://raw.githubusercontent.com/aimhubio/aim/master/pyproject.toml"],"_requirements_localurls":["aimhubio~aim~requirements.txt","aimhubio~aim~setup.py","aimhubio~aim~pyproject.toml"]},{"index":623,"category":"util","githuburl":"https://github.com/suor/funcy","featured":null,"links":null,"description":null,"_repopath":"suor/funcy","_reponame":"funcy","_stars":2923,"_forks":133,"_watches":73,"_topics":["functional-programming","utilities","python"],"_language":"Python","_homepage":"","_description":"funcy: A fancy and practical functional tools","_organization":"suor","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-08-25T00:00:00.000Z","_created_at":"2012-10-13T00:00:00.000Z","_age_weeks":531,"_stars_per_week":5.5,"_pop_contributor_count":31,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["festicket","iress","obsidian-security"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":124,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":110,"_pop_score":39.73,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/suor/funcy/master/README.rst","_readme_localurl":"suor~funcy~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/suor/funcy/master/setup.py"],"_requirements_localurls":["suor~funcy~setup.py"]},{"index":77,"category":"jupyter","githuburl":"https://github.com/quantopian/qgrid","featured":null,"links":null,"description":null,"_repopath":"quantopian/qgrid","_reponame":"qgrid","_stars":2921,"_forks":418,"_watches":90,"_topics":[],"_language":"Python","_homepage":"","_description":"qgrid: An interactive grid for sorting, filtering, and editing DataFrames in Jupyter notebooks","_organization":"quantopian","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-04-07T00:00:00.000Z","_created_at":"2014-09-30T00:00:00.000Z","_age_weeks":428,"_stars_per_week":6.81,"_pop_contributor_count":30,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mongodb","sundellopensourceconsultingab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":100,"_pop_updated_since_days":33,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":3.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":18,"_pop_score":28.51,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/quantopian/qgrid/master/README.rst","_readme_localurl":"quantopian~qgrid~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/quantopian/qgrid/master/requirements.txt","https://raw.githubusercontent.com/quantopian/qgrid/master/setup.py"],"_requirements_localurls":["quantopian~qgrid~requirements.txt","quantopian~qgrid~setup.py"]},{"index":390,"category":"diffusion","githuburl":"https://github.com/openai/glide-text2im","featured":null,"links":null,"description":null,"_repopath":"openai/glide-text2im","_reponame":"glide-text2im","_stars":2908,"_forks":408,"_watches":119,"_topics":[],"_language":"Python","_homepage":"","_description":"glide-text2im: GLIDE: a diffusion-based text-conditional image synthesis model","_organization":"openai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-03-21T00:00:00.000Z","_created_at":"2021-12-10T00:00:00.000Z","_age_weeks":53,"_stars_per_week":54.43,"_pop_contributor_count":4,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["texasa&mcenterforappliedtechnology"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":12,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/glide-text2im/master/README.md","_readme_localurl":"openai~glide-text2im~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/glide-text2im/master/setup.py"],"_requirements_localurls":["openai~glide-text2im~setup.py"]},{"index":704,"category":"data","githuburl":"https://github.com/pyeve/cerberus","featured":null,"links":null,"description":null,"_repopath":"pyeve/cerberus","_reponame":"cerberus","_stars":2890,"_forks":226,"_watches":48,"_topics":["python","data-validation"],"_language":"Python","_homepage":"http://python-cerberus.org","_description":"cerberus: Lightweight, extensible data validation library for Python","_organization":"pyeve","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2021-05-05T00:00:00.000Z","_created_at":"2012-10-10T00:00:00.000Z","_age_weeks":531,"_stars_per_week":5.44,"_pop_contributor_count":62,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cir2000"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":9,"_pop_closed_issues_count":4,"_pop_created_since_days":124,"_pop_updated_since_days":20,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":9.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":144,"_pop_score":35.67,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyeve/cerberus/master/README.rst","_readme_localurl":"pyeve~cerberus~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyeve/cerberus/master/setup.py","https://raw.githubusercontent.com/pyeve/cerberus/master/pyproject.toml"],"_requirements_localurls":["pyeve~cerberus~setup.py","pyeve~cerberus~pyproject.toml"]},{"index":476,"category":"gis","githuburl":"https://github.com/holoviz/datashader","featured":1.0,"links":null,"description":null,"_repopath":"holoviz/datashader","_reponame":"datashader","_stars":2887,"_forks":361,"_watches":95,"_topics":["holoviz","datashader","data-visualizations","rasterization"],"_language":"Python","_homepage":"http://datashader.org","_description":"datashader: Quickly and accurately render even the largest data.","_organization":"holoviz","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2015-12-23T00:00:00.000Z","_age_weeks":364,"_stars_per_week":7.92,"_pop_contributor_count":51,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","stripe","voltrondata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.56,"_pop_updated_issues_count":54,"_pop_closed_issues_count":41,"_pop_created_since_days":85,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":54.0,"_pop_comment_count":53.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":17,"_pop_score":46.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/datashader/master/README.md","_readme_localurl":"holoviz~datashader~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/datashader/master/setup.py","https://raw.githubusercontent.com/holoviz/datashader/master/pyproject.toml"],"_requirements_localurls":["holoviz~datashader~setup.py","holoviz~datashader~pyproject.toml"]},{"index":660,"category":"ml","githuburl":"https://github.com/pytorch/glow","featured":null,"links":null,"description":null,"_repopath":"pytorch/glow","_reponame":"glow","_stars":2882,"_forks":655,"_watches":154,"_topics":[],"_language":"C++","_homepage":null,"_description":"glow: Compiler for Neural Network hardware accelerators","_organization":"pytorch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2017-09-29T00:00:00.000Z","_age_weeks":272,"_stars_per_week":10.58,"_pop_contributor_count":332,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.33,"_pop_updated_issues_count":52,"_pop_closed_issues_count":16,"_pop_created_since_days":64,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":52.0,"_pop_comment_count":95.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":3085,"_pop_score":55.66,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/glow/master/README.md","_readme_localurl":"pytorch~glow~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":366,"category":"ml","githuburl":"https://github.com/facebookresearch/vissl","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/vissl","_reponame":"vissl","_stars":2877,"_forks":300,"_watches":53,"_topics":[],"_language":"Jupyter Notebook","_homepage":"https://vissl.ai","_description":"VISSL is FAIR's library of extensible, modular and scalable components for SOTA Self-Supervised Learning with images.","_organization":"facebookresearch","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-10-12T00:00:00.000Z","_created_at":"2020-04-09T00:00:00.000Z","_age_weeks":140,"_stars_per_week":20.47,"_pop_contributor_count":34,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","meta","mosaicml"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.92,"_pop_updated_issues_count":9,"_pop_closed_issues_count":3,"_pop_created_since_days":33,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":9.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":429,"_pop_score":42.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/vissl/master/README.md","_readme_localurl":"facebookresearch~vissl~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/vissl/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/vissl/master/setup.py"],"_requirements_localurls":["facebookresearch~vissl~requirements.txt","facebookresearch~vissl~setup.py"]},{"index":811,"category":"ml-ops","githuburl":"https://github.com/ploomber/ploomber","featured":null,"links":null,"description":null,"_repopath":"ploomber/ploomber","_reponame":"ploomber","_stars":2874,"_forks":199,"_watches":27,"_topics":["workflow","machine-learning","data-science","data-engineering","mlops","papermill","jupyter","jupyter-notebooks","pipelines","vscode","pycharm","notebooks","hacktoberfest"],"_language":"Python","_homepage":"https://ploomber.io","_description":"ploomber: The fastest \u26a1\ufe0f way to build data pipelines. Develop iteratively, deploy anywhere. \u2601\ufe0f","_organization":"ploomber","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2020-01-20T00:00:00.000Z","_age_weeks":152,"_stars_per_week":18.91,"_pop_contributor_count":70,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ploomber"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.5,"_pop_updated_issues_count":68,"_pop_closed_issues_count":42,"_pop_created_since_days":35,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":36,"_pop_recent_releases_adjusted_count":36,"_pop_issue_count":68.0,"_pop_comment_count":95.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":15,"_pop_score":48.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ploomber/ploomber/master/README.md","_readme_localurl":"ploomber~ploomber~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ploomber/ploomber/master/setup.py","https://raw.githubusercontent.com/ploomber/ploomber/master/pyproject.toml"],"_requirements_localurls":["ploomber~ploomber~setup.py","ploomber~ploomber~pyproject.toml"]},{"index":765,"category":"diffusion","githuburl":"https://github.com/lkwq007/stablediffusion-infinity","featured":null,"links":null,"description":null,"_repopath":"lkwq007/stablediffusion-infinity","_reponame":"stablediffusion-infinity","_stars":2832,"_forks":220,"_watches":29,"_topics":["outpainting","stablediffusion"],"_language":"Python","_homepage":"","_description":"stablediffusion-infinity: Outpainting with Stable Diffusion on an infinite canvas","_organization":"lkwq007","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2022-09-02T00:00:00.000Z","_age_weeks":15,"_stars_per_week":183.56,"_pop_contributor_count":6,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cuhk"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.29,"_pop_updated_issues_count":123,"_pop_closed_issues_count":65,"_pop_created_since_days":4,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":123.0,"_pop_comment_count":352.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":10,"_pop_score":35.97,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/lkwq007/stablediffusion-infinity/master/readme.md","_readme_localurl":"lkwq007~stablediffusion-infinity~readme.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":624,"category":"util","githuburl":"https://github.com/more-itertools/more-itertools","featured":null,"links":null,"description":null,"_repopath":"more-itertools/more-itertools","_reponame":"more-itertools","_stars":2825,"_forks":221,"_watches":35,"_topics":[],"_language":"Python","_homepage":"https://more-itertools.rtfd.io","_description":"more-itertools: More routines for operating on iterables, beyond itertools","_organization":"more-itertools","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2012-04-26T00:00:00.000Z","_age_weeks":555,"_stars_per_week":5.08,"_pop_contributor_count":92,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mozilla","universityofoxford","wurlinc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.31,"_pop_updated_issues_count":25,"_pop_closed_issues_count":22,"_pop_created_since_days":130,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":25.0,"_pop_comment_count":30.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":420,"_pop_score":53.58,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/more-itertools/more-itertools/master/README.rst","_readme_localurl":"more-itertools~more-itertools~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/more-itertools/more-itertools/master/setup.py","https://raw.githubusercontent.com/more-itertools/more-itertools/master/pyproject.toml"],"_requirements_localurls":["more-itertools~more-itertools~setup.py","more-itertools~more-itertools~pyproject.toml"]},{"index":761,"category":"sim","githuburl":"https://github.com/qiskit/qiskit","featured":null,"links":null,"description":null,"_repopath":"qiskit/qiskit","_reponame":"qiskit","_stars":2821,"_forks":756,"_watches":97,"_topics":["qiskit","quantum-computing","quantum-programming-language","documentation"],"_language":"OpenQASM","_homepage":"https://qiskit.org","_description":"Qiskit is an open-source SDK for working with quantum computers at the level of circuits, algorithms, and application modules.","_organization":"qiskit","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2018-12-12T00:00:00.000Z","_age_weeks":209,"_stars_per_week":13.45,"_pop_contributor_count":155,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ibm"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.4,"_pop_updated_issues_count":49,"_pop_closed_issues_count":37,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":21,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":49.0,"_pop_comment_count":53.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":4225,"_pop_score":56.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/qiskit/qiskit/master/README.md","_readme_localurl":"qiskit~qiskit~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/qiskit/qiskit/master/setup.py"],"_requirements_localurls":["qiskit~qiskit~setup.py"]},{"index":261,"category":"time-series","githuburl":"https://github.com/salesforce/merlion","featured":null,"links":null,"description":null,"_repopath":"salesforce/merlion","_reponame":"Merlion","_stars":2817,"_forks":242,"_watches":45,"_topics":["time-series","anomaly-detection","forecasting","machine-learning","benchmarking","automl","ensemble-learning"],"_language":"Python","_homepage":"","_description":"Merlion: A Machine Learning Framework for Time Series Intelligence","_organization":"salesforce","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2021-07-28T00:00:00.000Z","_age_weeks":72,"_stars_per_week":38.74,"_pop_contributor_count":13,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["salesforce","twilio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.92,"_pop_updated_issues_count":18,"_pop_closed_issues_count":13,"_pop_created_since_days":17,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":18.0,"_pop_comment_count":22.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":39,"_pop_score":39.13,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/merlion/master/README.md","_readme_localurl":"salesforce~merlion~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/salesforce/merlion/master/setup.py"],"_requirements_localurls":["salesforce~merlion~setup.py"]},{"index":270,"category":"web","githuburl":"https://github.com/strawberry-graphql/strawberry","featured":null,"links":null,"description":null,"_repopath":"strawberry-graphql/strawberry","_reponame":"strawberry","_stars":2808,"_forks":345,"_watches":44,"_topics":["graphql","graphql-server","python","starlette","asyncio","mypy","django","graphql-library","asgi","graphql-schema","strawberry","hacktoberfest"],"_language":"Python","_homepage":"https://strawberry.rocks","_description":"strawberry: A GraphQL library for Python that leverages type annotations \ud83c\udf53","_organization":"strawberry-graphql","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2018-12-21T00:00:00.000Z","_age_weeks":208,"_stars_per_week":13.47,"_pop_contributor_count":166,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["apollographql","strawberry-graphql"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.23,"_pop_updated_issues_count":350,"_pop_closed_issues_count":210,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":178,"_pop_recent_releases_estimated_tags":123,"_pop_recent_releases_adjusted_count":178,"_pop_issue_count":350.0,"_pop_comment_count":691.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":90,"_pop_score":59.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/README.md","_readme_localurl":"strawberry-graphql~strawberry~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/setup.py","https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/pyproject.toml"],"_requirements_localurls":["strawberry-graphql~strawberry~setup.py","strawberry-graphql~strawberry~pyproject.toml"]},{"index":787,"category":"study","githuburl":"https://github.com/cosmicpython/book","featured":null,"links":null,"description":null,"_repopath":"cosmicpython/book","_reponame":"book","_stars":2806,"_forks":481,"_watches":93,"_topics":[],"_language":"Python","_homepage":"https://www.cosmicpython.com","_description":"book: A Book about Pythonic Application Architecture Patterns for Managing Complexity. Cosmos is the Opposite of Chaos you see. O'R. wouldn't actually let us call it \"Cosmic Python\" tho.","_organization":"cosmicpython","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-03T00:00:00.000Z","_created_at":"2019-02-05T00:00:00.000Z","_age_weeks":201,"_stars_per_week":13.9,"_pop_contributor_count":44,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["carbon-re","o'reillymedia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":3,"_pop_closed_issues_count":2,"_pop_created_since_days":47,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":6,"_pop_score":29.7,"_readme_filename":"Readme.md","_readme_giturl":"https://raw.githubusercontent.com/cosmicpython/book/master/Readme.md","_readme_localurl":"cosmicpython~book~Readme.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/cosmicpython/book/master/requirements.txt"],"_requirements_localurls":["cosmicpython~book~requirements.txt"]},{"index":154,"category":"pandas","githuburl":"https://github.com/adamerose/pandasgui","featured":null,"links":null,"description":null,"_repopath":"adamerose/pandasgui","_reponame":"PandasGUI","_stars":2796,"_forks":190,"_watches":53,"_topics":["pandas","dataframe","gui","viewer"],"_language":"Python","_homepage":"","_description":"PandasGUI: A GUI for Pandas DataFrames","_organization":"adamerose","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-03-16T00:00:00.000Z","_created_at":"2019-06-12T00:00:00.000Z","_age_weeks":183,"_stars_per_week":15.22,"_pop_contributor_count":13,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dionresearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":7,"_pop_closed_issues_count":1,"_pop_created_since_days":43,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":7.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":30,"_pop_score":28.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/adamerose/pandasgui/master/README.md","_readme_localurl":"adamerose~pandasgui~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/adamerose/pandasgui/master/requirements.txt","https://raw.githubusercontent.com/adamerose/pandasgui/master/setup.py"],"_requirements_localurls":["adamerose~pandasgui~requirements.txt","adamerose~pandasgui~setup.py"]},{"index":792,"category":"ml-dl","githuburl":"https://github.com/facebookincubator/aitemplate","featured":null,"links":null,"description":null,"_repopath":"facebookincubator/aitemplate","_reponame":"AITemplate","_stars":2789,"_forks":184,"_watches":79,"_topics":[],"_language":"Python","_homepage":"","_description":"AITemplate is a Python framework which renders neural network into high performance CUDA/HIP C++ code. Specialized for FP16 TensorCore (NVIDIA GPU) and MatrixCore (AMD GPU) inference.","_organization":"facebookincubator","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2022-07-15T00:00:00.000Z","_age_weeks":22,"_stars_per_week":124.35,"_pop_contributor_count":18,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.56,"_pop_updated_issues_count":128,"_pop_closed_issues_count":88,"_pop_created_since_days":5,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":128.0,"_pop_comment_count":328.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":0,"_pop_score":29.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookincubator/aitemplate/master/README.md","_readme_localurl":"facebookincubator~aitemplate~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":488,"category":"util","githuburl":"https://github.com/pydata/xarray","featured":null,"links":null,"description":null,"_repopath":"pydata/xarray","_reponame":"xarray","_stars":2788,"_forks":857,"_watches":107,"_topics":["python","netcdf","numpy","pandas","xarray","dask"],"_language":"Python","_homepage":"https://xarray.dev","_description":"xarray: N-D labeled arrays and datasets in Python","_organization":"pydata","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2013-09-30T00:00:00.000Z","_age_weeks":481,"_stars_per_week":5.8,"_pop_contributor_count":407,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","mathandstatsdepartment","ncar"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.54,"_pop_updated_issues_count":448,"_pop_closed_issues_count":256,"_pop_created_since_days":112,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":448.0,"_pop_comment_count":1120.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":1142,"_pop_score":69.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pydata/xarray/master/README.md","_readme_localurl":"pydata~xarray~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pydata/xarray/master/requirements.txt","https://raw.githubusercontent.com/pydata/xarray/master/setup.py","https://raw.githubusercontent.com/pydata/xarray/master/pyproject.toml"],"_requirements_localurls":["pydata~xarray~requirements.txt","pydata~xarray~setup.py","pydata~xarray~pyproject.toml"]},{"index":729,"category":"ml-dl","githuburl":"https://github.com/mosaicml/composer","featured":null,"links":null,"description":null,"_repopath":"mosaicml/composer","_reponame":"composer","_stars":2782,"_forks":174,"_watches":21,"_topics":["deep-learning","pytorch","neural-networks","ml-systems","ml-efficiency","ml-training","machine-learning","neural-network"],"_language":"Python","_homepage":"http://docs.mosaicml.com","_description":"composer: Train neural networks up to 7x faster","_organization":"mosaicml","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2021-10-12T00:00:00.000Z","_age_weeks":61,"_stars_per_week":44.97,"_pop_contributor_count":54,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mosaicml","stanford'22"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":24.19,"_pop_updated_issues_count":357,"_pop_closed_issues_count":327,"_pop_created_since_days":14,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":357.0,"_pop_comment_count":326.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":21,"_pop_score":49.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mosaicml/composer/master/README.md","_readme_localurl":"mosaicml~composer~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mosaicml/composer/master/setup.py","https://raw.githubusercontent.com/mosaicml/composer/master/pyproject.toml"],"_requirements_localurls":["mosaicml~composer~setup.py","mosaicml~composer~pyproject.toml"]},{"index":203,"category":"viz","githuburl":"https://github.com/ml-tooling/opyrator","featured":null,"links":null,"description":null,"_repopath":"ml-tooling/opyrator","_reponame":"opyrator","_stars":2759,"_forks":132,"_watches":48,"_topics":["fastapi","streamlit","pydantic","python","microservices","serverless","faas","functions","python-functions","machine-learning","deployment","type-hints"],"_language":"Python","_homepage":"https://opyrator-playground.mltooling.org","_description":"opyrator: \ud83e\ude84 Turns your machine learning code into microservices with web API, interactive GUI, and more.","_organization":"ml-tooling","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-05-06T00:00:00.000Z","_created_at":"2021-04-06T00:00:00.000Z","_age_weeks":88,"_stars_per_week":31.05,"_pop_contributor_count":4,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":10,"_pop_closed_issues_count":5,"_pop_created_since_days":21,"_pop_updated_since_days":20,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":10.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":7,"_pop_score":17.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ml-tooling/opyrator/master/README.md","_readme_localurl":"ml-tooling~opyrator~README.md","_requirements_filenames":["setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/ml-tooling/opyrator/master/setup.py","https://raw.githubusercontent.com/ml-tooling/opyrator/master/pyproject.toml","https://raw.githubusercontent.com/ml-tooling/opyrator/master/Pipfile"],"_requirements_localurls":["ml-tooling~opyrator~setup.py","ml-tooling~opyrator~pyproject.toml","ml-tooling~opyrator~Pipfile"]},{"index":156,"category":"profiling","githuburl":"https://github.com/gaogaotiantian/viztracer","featured":null,"links":null,"description":null,"_repopath":"gaogaotiantian/viztracer","_reponame":"viztracer","_stars":2756,"_forks":276,"_watches":40,"_topics":["tracer","python3","debugging","profiling","visualization","flamegraph","python","logging"],"_language":"Python","_homepage":"https://viztracer.readthedocs.io/","_description":"VizTracer is a low-overhead logging/debugging/profiling tool that can trace and visualize your python code execution.","_organization":"gaogaotiantian","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-08T00:00:00.000Z","_created_at":"2020-08-05T00:00:00.000Z","_age_weeks":123,"_stars_per_week":22.28,"_pop_contributor_count":17,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebookairesearch","microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.21,"_pop_updated_issues_count":26,"_pop_closed_issues_count":22,"_pop_created_since_days":29,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":32,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":26.0,"_pop_comment_count":57.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":4,"_pop_score":39.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gaogaotiantian/viztracer/master/README.md","_readme_localurl":"gaogaotiantian~viztracer~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gaogaotiantian/viztracer/master/setup.py"],"_requirements_localurls":["gaogaotiantian~viztracer~setup.py"]},{"index":641,"category":"testing","githuburl":"https://github.com/behave/behave","featured":null,"links":null,"description":null,"_repopath":"behave/behave","_reponame":"behave","_stars":2739,"_forks":608,"_watches":120,"_topics":[],"_language":"Python","_homepage":"","_description":"behave: BDD, Python style.","_organization":"behave","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2011-10-25T00:00:00.000Z","_age_weeks":581,"_stars_per_week":4.71,"_pop_contributor_count":85,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["painless-software","smartsgroupmarketsurveillance,nasdaqomx"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.19,"_pop_updated_issues_count":62,"_pop_closed_issues_count":31,"_pop_created_since_days":136,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":62.0,"_pop_comment_count":99.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":391,"_pop_score":52.77,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/behave/behave/master/README.rst","_readme_localurl":"behave~behave~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/behave/behave/master/setup.py"],"_requirements_localurls":["behave~behave~setup.py"]},{"index":709,"category":"pandas","githuburl":"https://github.com/nalepae/pandarallel","featured":1.0,"links":null,"description":null,"_repopath":"nalepae/pandarallel","_reponame":"pandarallel","_stars":2733,"_forks":166,"_watches":26,"_topics":["pandas","python","parallel"],"_language":"Python","_homepage":"https://nalepae.github.io/pandarallel","_description":"pandarallel: A simple and efficient tool to parallelize Pandas operations on all available\u00a0CPUs","_organization":"nalepae","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-03-10T00:00:00.000Z","_age_weeks":197,"_stars_per_week":13.86,"_pop_contributor_count":22,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["boatboatboat","caddi","https://www.kiln.fi/","swissdatasciencecenter"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.87,"_pop_updated_issues_count":26,"_pop_closed_issues_count":14,"_pop_created_since_days":46,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":26.0,"_pop_comment_count":48.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":4,"_pop_score":42.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nalepae/pandarallel/master/README.md","_readme_localurl":"nalepae~pandarallel~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nalepae/pandarallel/master/setup.py"],"_requirements_localurls":["nalepae~pandarallel~setup.py"]},{"index":170,"category":"ml","githuburl":"https://github.com/ourownstory/neural_prophet","featured":null,"links":null,"description":null,"_repopath":"ourownstory/neural_prophet","_reponame":"neural_prophet","_stars":2702,"_forks":363,"_watches":47,"_topics":["forecasting","time-series","machine-learning","fbprophet","prophet","forecast","artificial-intelligence","prediction","trend","seasonality","autoregression","pytorch","timeseries","forecasting-algorithm","forecasting-model","neuralprophet","neural","neural-network","python","deep-learning"],"_language":"Python","_homepage":"https://neuralprophet.com","_description":"neural_prophet: NeuralProphet: A simple forecasting package","_organization":"ourownstory","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2020-05-04T00:00:00.000Z","_age_weeks":137,"_stars_per_week":19.72,"_pop_contributor_count":34,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["stanforduniversity","technicaluniversityofmunich"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.9,"_pop_updated_issues_count":314,"_pop_closed_issues_count":251,"_pop_created_since_days":32,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":314.0,"_pop_comment_count":588.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":19,"_pop_score":48.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ourownstory/neural_prophet/master/README.md","_readme_localurl":"ourownstory~neural_prophet~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ourownstory/neural_prophet/master/setup.py","https://raw.githubusercontent.com/ourownstory/neural_prophet/master/pyproject.toml"],"_requirements_localurls":["ourownstory~neural_prophet~setup.py","ourownstory~neural_prophet~pyproject.toml"]},{"index":34,"category":"nlp","githuburl":"https://github.com/jbesomi/texthero","featured":null,"links":null,"description":null,"_repopath":"jbesomi/texthero","_reponame":"texthero","_stars":2659,"_forks":226,"_watches":44,"_topics":["text-preprocessing","text-representation","text-visualization","nlp","word-embeddings","machine-learning","text-mining","nlp-pipeline","text-clustering","texthero"],"_language":"Python","_homepage":"https://texthero.org","_description":"texthero: Text preprocessing, representation and visualization from zero to hero.","_organization":"jbesomi","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-28T00:00:00.000Z","_created_at":"2020-04-06T00:00:00.000Z","_age_weeks":141,"_stars_per_week":18.86,"_pop_contributor_count":20,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aaltouniversity","imctrading"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":33,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":3.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":29,"_pop_score":32.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jbesomi/texthero/master/README.md","_readme_localurl":"jbesomi~texthero~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jbesomi/texthero/master/setup.py"],"_requirements_localurls":["jbesomi~texthero~setup.py"]},{"index":130,"category":"ml-dl","githuburl":"https://github.com/explosion/thinc","featured":null,"links":null,"description":null,"_repopath":"explosion/thinc","_reponame":"thinc","_stars":2635,"_forks":259,"_watches":85,"_topics":["machine-learning","deep-learning","artificial-intelligence","ai","python","nlp","natural-language-processing","spacy","machine-learning-library","type-checking","functional-programming","pytorch","tensorflow","mxnet","jax"],"_language":"Python","_homepage":"https://thinc.ai","_description":"thinc: \ud83d\udd2e A refreshing functional take on deep learning, compatible with your favorite libraries","_organization":"explosion","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2014-10-16T00:00:00.000Z","_age_weeks":426,"_stars_per_week":6.18,"_pop_contributor_count":57,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["explosion&oxykodit","founderexplosion"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.29,"_pop_updated_issues_count":58,"_pop_closed_issues_count":50,"_pop_created_since_days":100,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":58.0,"_pop_comment_count":67.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":255,"_pop_score":53.66,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/thinc/master/README.md","_readme_localurl":"explosion~thinc~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/explosion/thinc/master/requirements.txt","https://raw.githubusercontent.com/explosion/thinc/master/setup.py","https://raw.githubusercontent.com/explosion/thinc/master/pyproject.toml"],"_requirements_localurls":["explosion~thinc~requirements.txt","explosion~thinc~setup.py","explosion~thinc~pyproject.toml"]},{"index":113,"category":"nlp","githuburl":"https://github.com/huggingface/neuralcoref","featured":null,"links":null,"description":null,"_repopath":"huggingface/neuralcoref","_reponame":"neuralcoref","_stars":2630,"_forks":461,"_watches":96,"_topics":["python","machine-learning","coreference","spacy","coreference-resolution","spacy-extension","spacy-pipeline","nlp","neural-networks","pytorch"],"_language":"C","_homepage":"https://huggingface.co/coref/","_description":"neuralcoref: \u2728Fast Coreference Resolution in spaCy with Neural Networks","_organization":"huggingface","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2021-06-22T00:00:00.000Z","_created_at":"2017-07-03T00:00:00.000Z","_age_weeks":285,"_stars_per_week":9.23,"_pop_contributor_count":21,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["explosion&oxykodit","filamentai","huggingface"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":7,"_pop_closed_issues_count":2,"_pop_created_since_days":66,"_pop_updated_since_days":18,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":7.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":26,"_pop_score":31.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/neuralcoref/master/README.md","_readme_localurl":"huggingface~neuralcoref~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/neuralcoref/master/requirements.txt","https://raw.githubusercontent.com/huggingface/neuralcoref/master/setup.py"],"_requirements_localurls":["huggingface~neuralcoref~requirements.txt","huggingface~neuralcoref~setup.py"]},{"index":111,"category":"ml","githuburl":"https://github.com/teamhg-memex/eli5","featured":null,"links":null,"description":null,"_repopath":"teamhg-memex/eli5","_reponame":"eli5","_stars":2618,"_forks":326,"_watches":68,"_topics":["scikit-learn","machine-learning","xgboost","lightgbm","crfsuite","inspection","explanation","nlp","data-science","python"],"_language":"Jupyter Notebook","_homepage":"http://eli5.readthedocs.io","_description":"eli5: A library for debugging/inspecting machine learning classifiers and explaining their predictions","_organization":"teamhg-memex","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-01-22T00:00:00.000Z","_created_at":"2016-09-15T00:00:00.000Z","_age_weeks":326,"_stars_per_week":8.02,"_pop_contributor_count":14,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["canva","zyte","zytedata,scrapinghub"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":7,"_pop_closed_issues_count":1,"_pop_created_since_days":76,"_pop_updated_since_days":35,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":7.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":13,"_pop_score":27.66,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/teamhg-memex/eli5/master/README.rst","_readme_localurl":"teamhg-memex~eli5~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/teamhg-memex/eli5/master/requirements.txt","https://raw.githubusercontent.com/teamhg-memex/eli5/master/setup.py"],"_requirements_localurls":["teamhg-memex~eli5~requirements.txt","teamhg-memex~eli5~setup.py"]},{"index":801,"category":"data","githuburl":"https://github.com/pallets/itsdangerous","featured":null,"links":null,"description":null,"_repopath":"pallets/itsdangerous","_reponame":"itsdangerous","_stars":2593,"_forks":213,"_watches":57,"_topics":["python","security","hmac","serialization","itsdangerous","pallets"],"_language":"Python","_homepage":"https://itsdangerous.palletsprojects.com","_description":"itsdangerous: Safely pass trusted data to untrusted environments and back.","_organization":"pallets","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-01T00:00:00.000Z","_created_at":"2011-06-24T00:00:00.000Z","_age_weeks":599,"_stars_per_week":4.33,"_pop_contributor_count":41,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["sentry"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.67,"_pop_updated_issues_count":8,"_pop_closed_issues_count":7,"_pop_created_since_days":140,"_pop_updated_since_days":2,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":8.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":598,"_pop_score":41.34,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/itsdangerous/master/README.rst","_readme_localurl":"pallets~itsdangerous~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/itsdangerous/master/setup.py"],"_requirements_localurls":["pallets~itsdangerous~setup.py"]},{"index":85,"category":"graph","githuburl":"https://github.com/stellargraph/stellargraph","featured":null,"links":null,"description":null,"_repopath":"stellargraph/stellargraph","_reponame":"stellargraph","_stars":2572,"_forks":396,"_watches":62,"_topics":["graphs","machine-learning","machine-learning-algorithms","graph-convolutional-networks","networkx","geometric-deep-learning","saliency-map","interpretability","heterogeneous-networks","graph-neural-networks","graph-analysis","graph-machine-learning","gcn","link-prediction","stellargraph-library","graph-data","python","deep-learning","data-science"],"_language":"Python","_homepage":"https://stellargraph.readthedocs.io/","_description":"StellarGraph - Machine Learning on Graphs","_organization":"stellargraph","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2021-10-29T00:00:00.000Z","_created_at":"2018-04-13T00:00:00.000Z","_age_weeks":244,"_stars_per_week":10.52,"_pop_contributor_count":36,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["data61","exoflare","xoflare"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":12,"_pop_closed_issues_count":4,"_pop_created_since_days":57,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":12.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":177,"_pop_score":38.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/stellargraph/stellargraph/master/README.md","_readme_localurl":"stellargraph~stellargraph~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/stellargraph/stellargraph/master/requirements.txt","https://raw.githubusercontent.com/stellargraph/stellargraph/master/setup.py"],"_requirements_localurls":["stellargraph~stellargraph~requirements.txt","stellargraph~stellargraph~setup.py"]},{"index":539,"category":"nlp","githuburl":"https://github.com/huawei-noah/pretrained-language-model","featured":null,"links":null,"description":null,"_repopath":"huawei-noah/pretrained-language-model","_reponame":"Pretrained-Language-Model","_stars":2562,"_forks":550,"_watches":52,"_topics":["knowledge-distillation","model-compression","quantization","pretrained-models","large-scale-distributed"],"_language":"Python","_homepage":"","_description":"Pretrained-Language-Model: Pretrained language model and its related optimization techniques developed by Huawei Noah's Ark Lab.","_organization":"huawei-noah","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-21T00:00:00.000Z","_created_at":"2019-12-02T00:00:00.000Z","_age_weeks":159,"_stars_per_week":16.11,"_pop_contributor_count":19,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huawei-noah"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.38,"_pop_updated_issues_count":23,"_pop_closed_issues_count":4,"_pop_created_since_days":37,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":23.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":2,"_pop_score":27.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huawei-noah/pretrained-language-model/master/README.md","_readme_localurl":"huawei-noah~pretrained-language-model~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":611,"category":"debug","githuburl":"https://github.com/inducer/pudb","featured":null,"links":null,"description":null,"_repopath":"inducer/pudb","_reponame":"pudb","_stars":2559,"_forks":215,"_watches":46,"_topics":["python","debugger","pytest","pytest-plugin","pdb","ipython","bpython","urwid","debug"],"_language":"Python","_homepage":"https://documen.tician.de/pudb/","_description":"pudb: Full-screen console debugger for Python","_organization":"inducer","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-20T00:00:00.000Z","_created_at":"2011-05-13T00:00:00.000Z","_age_weeks":605,"_stars_per_week":4.23,"_pop_contributor_count":91,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quansight","scalableminds","scientificcomputing,csuiuc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.96,"_pop_updated_issues_count":24,"_pop_closed_issues_count":13,"_pop_created_since_days":141,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":24.0,"_pop_comment_count":35.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":428,"_pop_score":51.27,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/inducer/pudb/master/README.rst","_readme_localurl":"inducer~pudb~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/inducer/pudb/master/setup.py"],"_requirements_localurls":["inducer~pudb~setup.py"]},{"index":159,"category":"data","githuburl":"https://github.com/goldsmith/wikipedia","featured":null,"links":null,"description":null,"_repopath":"goldsmith/wikipedia","_reponame":"Wikipedia","_stars":2532,"_forks":514,"_watches":82,"_topics":[],"_language":"Python","_homepage":"https://wikipedia.readthedocs.org/","_description":"Wikipedia: A Pythonic wrapper for the Wikipedia API","_organization":"goldsmith","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-10-09T00:00:00.000Z","_created_at":"2013-08-20T00:00:00.000Z","_age_weeks":486,"_stars_per_week":5.2,"_pop_contributor_count":23,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["localkitchens","nationalradioastronomyobservatory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":10,"_pop_closed_issues_count":3,"_pop_created_since_days":114,"_pop_updated_since_days":27,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":10.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":81,"_pop_score":31.09,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/goldsmith/wikipedia/master/README.rst","_readme_localurl":"goldsmith~wikipedia~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/goldsmith/wikipedia/master/requirements.txt","https://raw.githubusercontent.com/goldsmith/wikipedia/master/setup.py"],"_requirements_localurls":["goldsmith~wikipedia~requirements.txt","goldsmith~wikipedia~setup.py"]},{"index":428,"category":"util","githuburl":"https://github.com/pycqa/flake8","featured":null,"links":null,"description":null,"_repopath":"pycqa/flake8","_reponame":"flake8","_stars":2524,"_forks":255,"_watches":33,"_topics":["python","python3","static-analysis","static-code-analysis","linter","linter-flake8","stylelint","styleguide","style-guide","flake8","pep8","complexity-analysis"],"_language":"Python","_homepage":"https://flake8.pycqa.org","_description":"flake8 is a python tool that glues together pycodestyle, pyflakes, mccabe, and third-party plugins to check the style and quality of some python code.","_organization":"pycqa","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2014-09-13T00:00:00.000Z","_age_weeks":431,"_stars_per_week":5.85,"_pop_contributor_count":172,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bloomberg","elastic","tableau&salesforce"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.38,"_pop_updated_issues_count":92,"_pop_closed_issues_count":86,"_pop_created_since_days":101,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":92.0,"_pop_comment_count":141.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":14344,"_pop_score":66.0,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pycqa/flake8/master/README.rst","_readme_localurl":"pycqa~flake8~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pycqa/flake8/master/setup.py"],"_requirements_localurls":["pycqa~flake8~setup.py"]},{"index":369,"category":"nlp","githuburl":"https://github.com/bytedance/lightseq","featured":null,"links":null,"description":null,"_repopath":"bytedance/lightseq","_reponame":"lightseq","_stars":2518,"_forks":281,"_watches":51,"_topics":["inference","transformer","beam-search","bert","cuda","sampling","diverse-decoding","multilingual-nmt","training","bart","gpt","accelerate"],"_language":"C++","_homepage":"","_description":"LightSeq: A High Performance Library for Sequence Processing and Generation","_organization":"bytedance","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2019-12-06T00:00:00.000Z","_age_weeks":158,"_stars_per_week":15.89,"_pop_contributor_count":14,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bytedance","bytedance,ailab","bytedanceailab","bytedanceantnlp","universityofillinoisaturbana-champaign"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.25,"_pop_updated_issues_count":69,"_pop_closed_issues_count":35,"_pop_created_since_days":37,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":69.0,"_pop_comment_count":99.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":2,"_pop_score":40.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bytedance/lightseq/master/README.md","_readme_localurl":"bytedance~lightseq~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bytedance/lightseq/master/setup.py"],"_requirements_localurls":["bytedance~lightseq~setup.py"]},{"index":94,"category":"term","githuburl":"https://github.com/urwid/urwid","featured":null,"links":null,"description":null,"_repopath":"urwid/urwid","_reponame":"urwid","_stars":2518,"_forks":310,"_watches":60,"_topics":[],"_language":"Python","_homepage":"urwid.org","_description":"urwid: Console user interface library for Python (official repo)","_organization":"urwid","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-07-12T00:00:00.000Z","_created_at":"2010-02-25T00:00:00.000Z","_age_weeks":668,"_stars_per_week":3.77,"_pop_contributor_count":116,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["newfirepartners,mediwareinc,holmusk,unitio-org,urwid"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":8,"_pop_closed_issues_count":2,"_pop_created_since_days":156,"_pop_updated_since_days":17,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":8.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":56,"_pop_score":36.42,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/urwid/urwid/master/README.rst","_readme_localurl":"urwid~urwid~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/urwid/urwid/master/setup.py"],"_requirements_localurls":["urwid~urwid~setup.py"]},{"index":433,"category":"pandas","githuburl":"https://github.com/pydata/pandas-datareader","featured":null,"links":null,"description":null,"_repopath":"pydata/pandas-datareader","_reponame":"pandas-datareader","_stars":2506,"_forks":620,"_watches":132,"_topics":["html","data-analysis","data","dataset","stock-data","finance","financial-data","python","pydata","pandas","econdb","fama-french","economic-data","fred"],"_language":"Python","_homepage":"https://pydata.github.io/pandas-datareader/stable/index.html","_description":"pandas-datareader: Extract data from a wide range of Internet sources into a pandas DataFrame.","_organization":"pydata","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-03-16T00:00:00.000Z","_created_at":"2015-01-15T00:00:00.000Z","_age_weeks":413,"_stars_per_week":6.06,"_pop_contributor_count":85,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":17,"_pop_closed_issues_count":1,"_pop_created_since_days":96,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":17.0,"_pop_comment_count":32.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":118,"_pop_score":35.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pydata/pandas-datareader/master/README.md","_readme_localurl":"pydata~pandas-datareader~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pydata/pandas-datareader/master/requirements.txt","https://raw.githubusercontent.com/pydata/pandas-datareader/master/setup.py"],"_requirements_localurls":["pydata~pandas-datareader~requirements.txt","pydata~pandas-datareader~setup.py"]},{"index":675,"category":"ml-dl","githuburl":"https://github.com/saharmor/dalle-playground","featured":null,"links":null,"description":null,"_repopath":"saharmor/dalle-playground","_reponame":"dalle-playground","_stars":2500,"_forks":561,"_watches":28,"_topics":["dall-e","openai","gan","text-to-image","transformers","artificial","artificial-intelligence","machine-learning","dalle","dalle-mini","stable-diffusion"],"_language":"Jupyter Notebook","_homepage":"","_description":"dalle-playground: A playground to generate images from any text prompt using Stable Diffusion (past: using DALL-E Mini)","_organization":"saharmor","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2021-09-13T00:00:00.000Z","_age_weeks":66,"_stars_per_week":37.88,"_pop_contributor_count":10,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bitly","highfalootintechnologycorp.","saamaresearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.15,"_pop_updated_issues_count":21,"_pop_closed_issues_count":16,"_pop_created_since_days":15,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":21.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":27.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/saharmor/dalle-playground/master/README.md","_readme_localurl":"saharmor~dalle-playground~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":553,"category":"ml-dl","githuburl":"https://github.com/pytorch/botorch","featured":null,"links":null,"description":null,"_repopath":"pytorch/botorch","_reponame":"botorch","_stars":2477,"_forks":295,"_watches":51,"_topics":[],"_language":"Jupyter Notebook","_homepage":"https://botorch.org/","_description":"botorch: Bayesian optimization in PyTorch","_organization":"pytorch","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-07-30T00:00:00.000Z","_age_weeks":229,"_stars_per_week":10.82,"_pop_contributor_count":86,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","meta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.17,"_pop_updated_issues_count":156,"_pop_closed_issues_count":116,"_pop_created_since_days":53,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":156.0,"_pop_comment_count":607.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.9,"_pop_dependents_count":1061,"_pop_score":61.32,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/botorch/master/README.md","_readme_localurl":"pytorch~botorch~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/botorch/master/requirements.txt","https://raw.githubusercontent.com/pytorch/botorch/master/setup.py","https://raw.githubusercontent.com/pytorch/botorch/master/pyproject.toml"],"_requirements_localurls":["pytorch~botorch~requirements.txt","pytorch~botorch~setup.py","pytorch~botorch~pyproject.toml"]},{"index":98,"category":"data","githuburl":"https://github.com/zoomeranalytics/xlwings","featured":null,"links":null,"description":null,"_repopath":"zoomeranalytics/xlwings","_reponame":"xlwings","_stars":2466,"_forks":450,"_watches":119,"_topics":["python","excel","reporting","automation","googlesheets","google-sheets"],"_language":"Python","_homepage":"https://www.xlwings.org","_description":"xlwings is a Python library that makes it easy to call Python from Excel and vice versa. It works with Excel on Windows and macOS as well as with Google Sheets and Excel on the web. ","_organization":"zoomeranalytics","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2014-03-17T00:00:00.000Z","_age_weeks":457,"_stars_per_week":5.4,"_pop_contributor_count":57,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["xlwings"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.27,"_pop_updated_issues_count":122,"_pop_closed_issues_count":69,"_pop_created_since_days":107,"_pop_updated_since_days":0,"_pop_recent_releases_count":27,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":27,"_pop_issue_count":122.0,"_pop_comment_count":161.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":55,"_pop_score":51.83,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/zoomeranalytics/xlwings/master/README.rst","_readme_localurl":"zoomeranalytics~xlwings~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/zoomeranalytics/xlwings/master/setup.py","https://raw.githubusercontent.com/zoomeranalytics/xlwings/master/pyproject.toml"],"_requirements_localurls":["zoomeranalytics~xlwings~setup.py","zoomeranalytics~xlwings~pyproject.toml"]},{"index":845,"category":"time-series","githuburl":"https://github.com/tdameritrade/stumpy","featured":null,"links":null,"description":null,"_repopath":"tdameritrade/stumpy","_reponame":"stumpy","_stars":2463,"_forks":239,"_watches":51,"_topics":["data-science","time-series-analysis","dask","numba","python","anomaly-detection","pattern-matching","pydata","matrix-profile","motif-discovery","time-series-segmentation","time-series-data-mining"],"_language":"Python","_homepage":"https://stumpy.readthedocs.io/en/latest/","_description":"STUMPY is a powerful and scalable Python library for modern time series analysis","_organization":"tdameritrade","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-05-03T00:00:00.000Z","_age_weeks":189,"_stars_per_week":13.0,"_pop_contributor_count":32,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.15,"_pop_updated_issues_count":79,"_pop_closed_issues_count":58,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":79.0,"_pop_comment_count":556.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":7.0,"_pop_dependents_count":12,"_pop_score":46.93,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/tdameritrade/stumpy/master/README.rst","_readme_localurl":"tdameritrade~stumpy~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tdameritrade/stumpy/master/requirements.txt","https://raw.githubusercontent.com/tdameritrade/stumpy/master/setup.py"],"_requirements_localurls":["tdameritrade~stumpy~requirements.txt","tdameritrade~stumpy~setup.py"]},{"index":431,"category":"viz","githuburl":"https://github.com/holoviz/panel","featured":null,"links":null,"description":null,"_repopath":"holoviz/panel","_reponame":"panel","_stars":2438,"_forks":313,"_watches":48,"_topics":["holoviz","panel","dashboards","control-panels","gui"],"_language":"Python","_homepage":"https://panel.holoviz.org","_description":"panel: A high-level app and dashboarding solution for Python","_organization":"holoviz","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-08-23T00:00:00.000Z","_age_weeks":225,"_stars_per_week":10.81,"_pop_contributor_count":111,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","cea","data,modelsandanalytics"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.71,"_pop_updated_issues_count":450,"_pop_closed_issues_count":272,"_pop_created_since_days":53,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":103,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":450.0,"_pop_comment_count":654.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":55,"_pop_score":56.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/panel/master/README.md","_readme_localurl":"holoviz~panel~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/panel/master/setup.py","https://raw.githubusercontent.com/holoviz/panel/master/pyproject.toml"],"_requirements_localurls":["holoviz~panel~setup.py","holoviz~panel~pyproject.toml"]},{"index":600,"category":"gis","githuburl":"https://github.com/giswqs/geemap","featured":null,"links":null,"description":null,"_repopath":"giswqs/geemap","_reponame":"geemap","_stars":2428,"_forks":904,"_watches":96,"_topics":["google-earth-engine","gis","remote-sensing","image-processing","python","jupyter-notebook","ipyleaflet","mapping","earth-engine","ipywidgets","folium","jupyter","colab","geospatial","landsat","dataviz","data-science","streamlit","streamlit-webapp","earthengine"],"_language":"Python","_homepage":"https://geemap.org","_description":"geemap: A Python package for interactive mapping with Google Earth Engine, ipyleaflet, and ipywidgets.","_organization":"giswqs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2020-03-08T00:00:00.000Z","_age_weeks":145,"_stars_per_week":16.73,"_pop_contributor_count":35,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["christianclauss","faoopenforis","google","universityoftennessee"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.23,"_pop_updated_issues_count":54,"_pop_closed_issues_count":51,"_pop_created_since_days":34,"_pop_updated_since_days":0,"_pop_recent_releases_count":53,"_pop_recent_releases_estimated_tags":47,"_pop_recent_releases_adjusted_count":53,"_pop_issue_count":54.0,"_pop_comment_count":102.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":16,"_pop_score":51.28,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/giswqs/geemap/master/README.rst","_readme_localurl":"giswqs~geemap~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/giswqs/geemap/master/requirements.txt","https://raw.githubusercontent.com/giswqs/geemap/master/setup.py"],"_requirements_localurls":["giswqs~geemap~requirements.txt","giswqs~geemap~setup.py"]},{"index":172,"category":"viz","githuburl":"https://github.com/facebookresearch/hiplot","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/hiplot","_reponame":"hiplot","_stars":2385,"_forks":120,"_watches":28,"_topics":[],"_language":"TypeScript","_homepage":"https://facebookresearch.github.io/hiplot/","_description":"HiPlot makes understanding high dimensional data easy","_organization":"facebookresearch","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2019-11-08T00:00:00.000Z","_age_weeks":162,"_stars_per_week":14.68,"_pop_contributor_count":8,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["opensourcedevrelfacebook"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":17,"_pop_closed_issues_count":17,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":17.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":412,"_pop_score":41.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/hiplot/master/README.md","_readme_localurl":"facebookresearch~hiplot~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/hiplot/master/setup.py"],"_requirements_localurls":["facebookresearch~hiplot~setup.py"]},{"index":886,"category":"study","githuburl":"https://github.com/huggingface/deep-rl-class","featured":null,"links":null,"description":null,"_repopath":"huggingface/deep-rl-class","_reponame":"deep-rl-class","_stars":2373,"_forks":285,"_watches":90,"_topics":["deep-reinforcement-learning","reinforcement-learning","reinforcement-learning-excercises","deep-learning"],"_language":"Jupyter Notebook","_homepage":"","_description":"deep-rl-class: This repo contain the syllabus of the Hugging Face Deep Reinforcement Learning Class.","_organization":"huggingface","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2022-04-21T00:00:00.000Z","_age_weeks":34,"_stars_per_week":68.64,"_pop_contributor_count":35,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.21,"_pop_updated_issues_count":63,"_pop_closed_issues_count":43,"_pop_created_since_days":8,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":63.0,"_pop_comment_count":113.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":5,"_pop_score":35.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/deep-rl-class/master/README.md","_readme_localurl":"huggingface~deep-rl-class~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":708,"category":"ml","githuburl":"https://github.com/mljar/mljar-supervised","featured":null,"links":null,"description":null,"_repopath":"mljar/mljar-supervised","_reponame":"mljar-supervised","_stars":2372,"_forks":313,"_watches":42,"_topics":["automl","machine-learning","automatic-machine-learning","mljar","data-science","scikit-learn","hyperparameter-optimization","feature-engineering","xgboost","random-forest","neural-network","lightgbm","catboost","ensemble","tuning-algorithm","models-tuning","hyper-parameters","decision-tree","shap","automated-machine-learning"],"_language":"Python","_homepage":"https://mljar.com","_description":"mljar-supervised: Python package for AutoML on Tabular Data with Feature Engineering, Hyper-Parameters Tuning, Explanations and Automatic Documentation","_organization":"mljar","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2018-11-05T00:00:00.000Z","_age_weeks":215,"_stars_per_week":11.03,"_pop_contributor_count":20,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bitspilanihyderabadcampus","mljar","otterclamfinance"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":32,"_pop_closed_issues_count":10,"_pop_created_since_days":50,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":32.0,"_pop_comment_count":82.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":49,"_pop_score":44.47,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mljar/mljar-supervised/master/README.md","_readme_localurl":"mljar~mljar-supervised~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mljar/mljar-supervised/master/requirements.txt","https://raw.githubusercontent.com/mljar/mljar-supervised/master/setup.py"],"_requirements_localurls":["mljar~mljar-supervised~requirements.txt","mljar~mljar-supervised~setup.py"]},{"index":174,"category":"util","githuburl":"https://github.com/liiight/notifiers","featured":null,"links":null,"description":null,"_repopath":"liiight/notifiers","_reponame":"notifiers","_stars":2351,"_forks":91,"_watches":33,"_topics":["python","notifications","notifier","notification-service","python3","pypi"],"_language":"Python","_homepage":"http://notifiers.readthedocs.io/","_description":"notifiers: The easy way to send notifications","_organization":"liiight","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-07-14T00:00:00.000Z","_created_at":"2017-06-01T00:00:00.000Z","_age_weeks":289,"_stars_per_week":8.12,"_pop_contributor_count":19,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["pyupio","totango"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.31,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":68,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":6,"_pop_score":28.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/liiight/notifiers/master/README.md","_readme_localurl":"liiight~notifiers~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/liiight/notifiers/master/pyproject.toml"],"_requirements_localurls":["liiight~notifiers~pyproject.toml"]},{"index":129,"category":"viz","githuburl":"https://github.com/holoviz/holoviews","featured":null,"links":null,"description":null,"_repopath":"holoviz/holoviews","_reponame":"holoviews","_stars":2341,"_forks":364,"_watches":63,"_topics":["holoviz","holoviews","plotting"],"_language":"Python","_homepage":"https://holoviews.org","_description":"holoviews: With Holoviews, your data visualizes itself.","_organization":"holoviz","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2014-05-07T00:00:00.000Z","_age_weeks":449,"_stars_per_week":5.21,"_pop_contributor_count":126,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.62,"_pop_updated_issues_count":237,"_pop_closed_issues_count":108,"_pop_created_since_days":105,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":41,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":237.0,"_pop_comment_count":294.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":40,"_pop_score":50.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/holoviews/master/README.md","_readme_localurl":"holoviz~holoviews~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/holoviews/master/setup.py","https://raw.githubusercontent.com/holoviz/holoviews/master/pyproject.toml"],"_requirements_localurls":["holoviz~holoviews~setup.py","holoviz~holoviews~pyproject.toml"]},{"index":136,"category":"nlp","githuburl":"https://github.com/ddangelov/top2vec","featured":null,"links":null,"description":null,"_repopath":"ddangelov/top2vec","_reponame":"Top2Vec","_stars":2339,"_forks":326,"_watches":39,"_topics":["topic-modeling","word-embeddings","document-embedding","topic-vector","topic-search","text-search","text-semantic-similarity","topic-modelling","semantic-search","bert","top2vec","sentence-transformers","sentence-encoder","pre-trained-language-models"],"_language":"Python","_homepage":"","_description":"Top2Vec learns jointly embedded topic, document and word vectors.","_organization":"ddangelov","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-04-03T00:00:00.000Z","_created_at":"2020-03-20T00:00:00.000Z","_age_weeks":143,"_stars_per_week":16.31,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.17,"_pop_updated_issues_count":53,"_pop_closed_issues_count":37,"_pop_created_since_days":33,"_pop_updated_since_days":9,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":53.0,"_pop_comment_count":46.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":21,"_pop_score":21.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ddangelov/top2vec/master/README.md","_readme_localurl":"ddangelov~top2vec~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ddangelov/top2vec/master/requirements.txt","https://raw.githubusercontent.com/ddangelov/top2vec/master/setup.py"],"_requirements_localurls":["ddangelov~top2vec~requirements.txt","ddangelov~top2vec~setup.py"]},{"index":858,"category":"jupyter","githuburl":"https://github.com/jupyter/nbdime","featured":null,"links":null,"description":null,"_repopath":"jupyter/nbdime","_reponame":"nbdime","_stars":2339,"_forks":154,"_watches":43,"_topics":["jupyterlab-extension","jupyter","jupyter-notebook","diff","diffing","merge","git","hg","mercurial","mergetool","merge-driver","vcs","version-control"],"_language":"Python","_homepage":"http://nbdime.readthedocs.io","_description":"nbdime: Tools for diffing and merging of Jupyter notebooks.","_organization":"jupyter","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2015-11-16T00:00:00.000Z","_age_weeks":370,"_stars_per_week":6.32,"_pop_contributor_count":41,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ibmcodait","quantstack","simularesearchlaboratory","willingconsulting"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":29,"_pop_closed_issues_count":7,"_pop_created_since_days":86,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":29.0,"_pop_comment_count":29.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":402,"_pop_score":49.23,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/nbdime/master/README.md","_readme_localurl":"jupyter~nbdime~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/nbdime/master/setup.py","https://raw.githubusercontent.com/jupyter/nbdime/master/pyproject.toml"],"_requirements_localurls":["jupyter~nbdime~setup.py","jupyter~nbdime~pyproject.toml"]},{"index":809,"category":"web","githuburl":"https://github.com/fastapi-users/fastapi-users","featured":null,"links":null,"description":null,"_repopath":"fastapi-users/fastapi-users","_reponame":"fastapi-users","_stars":2323,"_forks":239,"_watches":33,"_topics":["python","starlette","fastapi","async","asyncio","users","fastapi-users"],"_language":"Python","_homepage":"https://fastapi-users.github.io/fastapi-users/","_description":"fastapi-users: Ready-to-use and customizable users management for FastAPI","_organization":"fastapi-users","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2019-10-05T00:00:00.000Z","_age_weeks":167,"_stars_per_week":13.89,"_pop_contributor_count":53,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["beemydesk","fitctuinprague","quantstack"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.96,"_pop_updated_issues_count":19,"_pop_closed_issues_count":19,"_pop_created_since_days":39,"_pop_updated_since_days":1,"_pop_recent_releases_count":32,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":32,"_pop_issue_count":19.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":134,"_pop_score":49.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fastapi-users/fastapi-users/master/README.md","_readme_localurl":"fastapi-users~fastapi-users~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/fastapi-users/fastapi-users/master/pyproject.toml"],"_requirements_localurls":["fastapi-users~fastapi-users~pyproject.toml"]},{"index":875,"category":"perf","githuburl":"https://github.com/ipython/ipyparallel","featured":null,"links":null,"description":null,"_repopath":"ipython/ipyparallel","_reponame":"ipyparallel","_stars":2319,"_forks":949,"_watches":119,"_topics":["parallel","jupyter","python"],"_language":"Jupyter Notebook","_homepage":"https://ipyparallel.readthedocs.io/","_description":"ipyparallel: IPython Parallel: Interactive Parallel Computing in Python","_organization":"ipython","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-22T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":401,"_stars_per_week":5.77,"_pop_contributor_count":112,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","ardoq","simularesearchlaboratory","universityofcalifornia,berkeley."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.29,"_pop_updated_issues_count":19,"_pop_closed_issues_count":16,"_pop_created_since_days":94,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":19.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":318,"_pop_score":52.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ipython/ipyparallel/master/README.md","_readme_localurl":"ipython~ipyparallel~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ipython/ipyparallel/master/pyproject.toml"],"_requirements_localurls":["ipython~ipyparallel~pyproject.toml"]},{"index":51,"category":"testing","githuburl":"https://github.com/nedbat/coveragepy","featured":null,"links":null,"description":null,"_repopath":"nedbat/coveragepy","_reponame":"coveragepy","_stars":2305,"_forks":331,"_watches":28,"_topics":[],"_language":"Python","_homepage":"https://coverage.readthedocs.io","_description":"coveragepy: The code coverage tool for Python","_organization":"nedbat","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-06-23T00:00:00.000Z","_age_weeks":234,"_stars_per_week":9.84,"_pop_contributor_count":142,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["freelancer,upforhire","shoobx"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.65,"_pop_updated_issues_count":134,"_pop_closed_issues_count":89,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":134.0,"_pop_comment_count":400.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":9969,"_pop_score":66.43,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/nedbat/coveragepy/master/README.rst","_readme_localurl":"nedbat~coveragepy~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nedbat/coveragepy/master/setup.py","https://raw.githubusercontent.com/nedbat/coveragepy/master/pyproject.toml"],"_requirements_localurls":["nedbat~coveragepy~setup.py","nedbat~coveragepy~pyproject.toml"]},{"index":691,"category":"ml-dl","githuburl":"https://github.com/nerdyrodent/vqgan-clip","featured":null,"links":null,"description":null,"_repopath":"nerdyrodent/vqgan-clip","_reponame":"VQGAN-CLIP","_stars":2304,"_forks":401,"_watches":53,"_topics":["text2image","text-to-image"],"_language":"Python","_homepage":"","_description":"VQGAN-CLIP: Just playing with getting VQGAN+CLIP running locally, rather than having to use colab.","_organization":"nerdyrodent","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-02T00:00:00.000Z","_created_at":"2021-07-02T00:00:00.000Z","_age_weeks":76,"_stars_per_week":30.15,"_pop_contributor_count":7,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["az\u00e9otropecanada","censys"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":2,"_pop_closed_issues_count":2,"_pop_created_since_days":18,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":19.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nerdyrodent/vqgan-clip/master/README.md","_readme_localurl":"nerdyrodent~vqgan-clip~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/nerdyrodent/vqgan-clip/master/requirements.txt"],"_requirements_localurls":["nerdyrodent~vqgan-clip~requirements.txt"]},{"index":296,"category":"sim","githuburl":"https://github.com/openai/mujoco-py","featured":null,"links":null,"description":null,"_repopath":"openai/mujoco-py","_reponame":"mujoco-py","_stars":2300,"_forks":715,"_watches":161,"_topics":[],"_language":"Cython","_homepage":"","_description":"mujoco-py: MuJoCo is a physics engine for detailed, efficient rigid body simulations with contacts. mujoco-py allows using MuJoCo from Python 3.","_organization":"openai","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-17T00:00:00.000Z","_created_at":"2016-04-24T00:00:00.000Z","_age_weeks":347,"_stars_per_week":6.63,"_pop_contributor_count":33,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["millionintegrals","openai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":33,"_pop_closed_issues_count":4,"_pop_created_since_days":81,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":33.0,"_pop_comment_count":23.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":34,"_pop_score":37.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/mujoco-py/master/README.md","_readme_localurl":"openai~mujoco-py~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/mujoco-py/master/requirements.txt","https://raw.githubusercontent.com/openai/mujoco-py/master/setup.py","https://raw.githubusercontent.com/openai/mujoco-py/master/pyproject.toml"],"_requirements_localurls":["openai~mujoco-py~requirements.txt","openai~mujoco-py~setup.py","openai~mujoco-py~pyproject.toml"]},{"index":246,"category":"util","githuburl":"https://github.com/pyston/pyston","featured":null,"links":null,"description":null,"_repopath":"pyston/pyston","_reponame":"pyston","_stars":2295,"_forks":83,"_watches":32,"_topics":[],"_language":"Python","_homepage":"https://www.pyston.org/","_description":"pyston: A faster and highly-compatible implementation of the Python programming language.","_organization":"pyston","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2021-03-01T00:00:00.000Z","_age_weeks":94,"_stars_per_week":24.41,"_pop_contributor_count":1035,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["fzj\u00fclich","keepertech","microsoft","mutableminds"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.1,"_pop_updated_issues_count":22,"_pop_closed_issues_count":10,"_pop_created_since_days":22,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":261,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":22.0,"_pop_comment_count":30.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":9,"_pop_score":50.69,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyston/pyston/master/README.rst","_readme_localurl":"pyston~pyston~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyston/pyston/master/setup.py"],"_requirements_localurls":["pyston~pyston~setup.py"]},{"index":866,"category":"ml-ops","githuburl":"https://github.com/mage-ai/mage-ai","featured":1.0,"links":null,"description":null,"_repopath":"mage-ai/mage-ai","_reponame":"mage-ai","_stars":2287,"_forks":203,"_watches":40,"_topics":["machine-learning","artificial-intelligence","data","data-engineering","data-science","python","elt","etl","pipelines","data-pipelines","orchestration","data-integration","sql","spark","dbt","pipeline","reverse-etl","transformation"],"_language":"Python","_homepage":"https://www.mage.ai/","_description":"mage-ai: \ud83e\uddd9 A modern replacement for Airflow.","_organization":"mage-ai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2022-05-16T00:00:00.000Z","_age_weeks":31,"_stars_per_week":73.77,"_pop_contributor_count":19,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mage"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":37.4,"_pop_updated_issues_count":525,"_pop_closed_issues_count":488,"_pop_created_since_days":7,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":525.0,"_pop_comment_count":134.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":18,"_pop_score":37.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mage-ai/mage-ai/master/README.md","_readme_localurl":"mage-ai~mage-ai~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mage-ai/mage-ai/master/requirements.txt","https://raw.githubusercontent.com/mage-ai/mage-ai/master/setup.py","https://raw.githubusercontent.com/mage-ai/mage-ai/master/pyproject.toml"],"_requirements_localurls":["mage-ai~mage-ai~requirements.txt","mage-ai~mage-ai~setup.py","mage-ai~mage-ai~pyproject.toml"]},{"index":696,"category":"ml-dl","githuburl":"https://github.com/deepmind/dm-haiku","featured":null,"links":null,"description":null,"_repopath":"deepmind/dm-haiku","_reponame":"dm-haiku","_stars":2285,"_forks":192,"_watches":37,"_topics":["machine-learning","neural-networks","jax","deep-learning","deep-neural-networks"],"_language":"Python","_homepage":"https://dm-haiku.readthedocs.io","_description":"dm-haiku: JAX-based neural network library","_organization":"deepmind","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2020-02-18T00:00:00.000Z","_age_weeks":147,"_stars_per_week":15.45,"_pop_contributor_count":68,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deepmind","openai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.69,"_pop_updated_issues_count":64,"_pop_closed_issues_count":39,"_pop_created_since_days":34,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":64.0,"_pop_comment_count":40.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":34,"_pop_score":44.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/deepmind/dm-haiku/master/README.md","_readme_localurl":"deepmind~dm-haiku~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/deepmind/dm-haiku/master/requirements.txt","https://raw.githubusercontent.com/deepmind/dm-haiku/master/setup.py"],"_requirements_localurls":["deepmind~dm-haiku~requirements.txt","deepmind~dm-haiku~setup.py"]},{"index":814,"category":"data","githuburl":"https://github.com/deepchecks/deepchecks","featured":null,"links":null,"description":null,"_repopath":"deepchecks/deepchecks","_reponame":"deepchecks","_stars":2282,"_forks":159,"_watches":13,"_topics":["machine-learning","ml","model-validation","data-validation","mlops","data-science","python","jupyter-notebook","model-monitoring","data-drift","html-report","deep-learning","pytorch","pandas-dataframe"],"_language":"Python","_homepage":"https://docs.deepchecks.com","_description":"deepchecks: Tests for Continuous Validation of ML Models & Data. Deepchecks is a Python package for comprehensively validating your machine learning models and data with minimal effort.","_organization":"deepchecks","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2021-10-11T00:00:00.000Z","_age_weeks":62,"_stars_per_week":36.81,"_pop_contributor_count":37,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deepchecks","starnavi"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":17.17,"_pop_updated_issues_count":255,"_pop_closed_issues_count":169,"_pop_created_since_days":14,"_pop_updated_since_days":0,"_pop_recent_releases_count":35,"_pop_recent_releases_estimated_tags":42,"_pop_recent_releases_adjusted_count":35,"_pop_issue_count":255.0,"_pop_comment_count":269.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":5,"_pop_score":46.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/deepchecks/deepchecks/master/README.md","_readme_localurl":"deepchecks~deepchecks~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/deepchecks/deepchecks/master/setup.py"],"_requirements_localurls":["deepchecks~deepchecks~setup.py"]},{"index":145,"category":"ml","githuburl":"https://github.com/nmslib/hnswlib","featured":null,"links":null,"description":null,"_repopath":"nmslib/hnswlib","_reponame":"hnswlib","_stars":2269,"_forks":419,"_watches":62,"_topics":[],"_language":"C++","_homepage":"https://github.com/nmslib/hnswlib","_description":"hnswlib: Header-only C++/python library for fast approximate nearest neighbors","_organization":"nmslib","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-04-16T00:00:00.000Z","_created_at":"2017-07-06T00:00:00.000Z","_age_weeks":284,"_stars_per_week":7.97,"_pop_contributor_count":56,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["twittercortex"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.25,"_pop_updated_issues_count":18,"_pop_closed_issues_count":6,"_pop_created_since_days":66,"_pop_updated_since_days":8,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":18.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":24,"_pop_score":34.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nmslib/hnswlib/master/README.md","_readme_localurl":"nmslib~hnswlib~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nmslib/hnswlib/master/setup.py","https://raw.githubusercontent.com/nmslib/hnswlib/master/pyproject.toml"],"_requirements_localurls":["nmslib~hnswlib~setup.py","nmslib~hnswlib~pyproject.toml"]},{"index":735,"category":"data","githuburl":"https://github.com/ibis-project/ibis","featured":1.0,"links":null,"description":null,"_repopath":"ibis-project/ibis","_reponame":"ibis","_stars":2231,"_forks":375,"_watches":77,"_topics":["python","impala","pandas","spark","database","clickhouse","postgresql","sqlite","mysql","datafusion","sql","pyspark","dask","duckdb","bigquery","sqlalchemy","pyarrow","arrow","mssql","polars"],"_language":"Python","_homepage":"http://ibis-project.org","_description":"ibis: Expressive analytics in Python at any scale.","_organization":"ibis-project","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2015-04-17T00:00:00.000Z","_age_weeks":400,"_stars_per_week":5.57,"_pop_contributor_count":121,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["voltron-data/ursa-computing","voltrondata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":43.25,"_pop_updated_issues_count":565,"_pop_closed_issues_count":501,"_pop_created_since_days":93,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":565.0,"_pop_comment_count":1237.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":428,"_pop_score":64.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ibis-project/ibis/master/README.md","_readme_localurl":"ibis-project~ibis~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ibis-project/ibis/master/requirements.txt","https://raw.githubusercontent.com/ibis-project/ibis/master/pyproject.toml"],"_requirements_localurls":["ibis-project~ibis~requirements.txt","ibis-project~ibis~pyproject.toml"]},{"index":308,"category":"util","githuburl":"https://github.com/legrandin/pycryptodome","featured":null,"links":null,"description":null,"_repopath":"legrandin/pycryptodome","_reponame":"pycryptodome","_stars":2218,"_forks":402,"_watches":58,"_topics":["cryptography","security","python"],"_language":"C","_homepage":"https://www.pycryptodome.org","_description":"pycryptodome: A self-contained cryptographic library for Python","_organization":"legrandin","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2014-05-02T00:00:00.000Z","_age_weeks":450,"_stars_per_week":4.92,"_pop_contributor_count":130,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aitaustrianinstituteoftechnology","cisco"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.35,"_pop_updated_issues_count":75,"_pop_closed_issues_count":64,"_pop_created_since_days":105,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":75.0,"_pop_comment_count":126.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":1485,"_pop_score":57.5,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/legrandin/pycryptodome/master/README.rst","_readme_localurl":"legrandin~pycryptodome~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/legrandin/pycryptodome/master/setup.py"],"_requirements_localurls":["legrandin~pycryptodome~setup.py"]},{"index":253,"category":"ml","githuburl":"https://github.com/microsoft/flaml","featured":null,"links":null,"description":null,"_repopath":"microsoft/flaml","_reponame":"FLAML","_stars":2172,"_forks":331,"_watches":39,"_topics":["automl","hyperparam","automated-machine-learning","machine-learning","data-science","python","jupyter-notebook","hyperparameter-optimization","random-forest","scikit-learn","deep-learning","natural-language-processing","natural-language-generation","timeseries-forecasting","classification","regression","tuning","finetuning","tabular-data"],"_language":"Jupyter Notebook","_homepage":"https://microsoft.github.io/FLAML/","_description":"FLAML: A fast library for AutoML and tuning. Join our Discord: https://discord.gg/Cppx2vSPVP.","_organization":"microsoft","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2020-08-20T00:00:00.000Z","_age_weeks":121,"_stars_per_week":17.87,"_pop_contributor_count":59,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoft","pennsylvaniastateuniversity","stevensinstituteoftechnology"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.04,"_pop_updated_issues_count":138,"_pop_closed_issues_count":85,"_pop_created_since_days":28,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":21,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":138.0,"_pop_comment_count":225.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":11,"_pop_score":50.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/flaml/master/README.md","_readme_localurl":"microsoft~flaml~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/flaml/master/setup.py"],"_requirements_localurls":["microsoft~flaml~setup.py"]},{"index":710,"category":"pandas","githuburl":"https://github.com/jmcarpenter2/swifter","featured":null,"links":null,"description":null,"_repopath":"jmcarpenter2/swifter","_reponame":"swifter","_stars":2161,"_forks":98,"_watches":28,"_topics":["pandas","pandas-dataframe","parallel-computing","parallelization","dask","modin"],"_language":"Python","_homepage":"","_description":"swifter: A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner","_organization":"jmcarpenter2","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-08-16T00:00:00.000Z","_created_at":"2018-04-07T00:00:00.000Z","_age_weeks":245,"_stars_per_week":8.81,"_pop_contributor_count":17,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["freshrelevance","manifoldai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.62,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":57,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":5.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":9,"_pop_score":33.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jmcarpenter2/swifter/master/README.md","_readme_localurl":"jmcarpenter2~swifter~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jmcarpenter2/swifter/master/requirements.txt","https://raw.githubusercontent.com/jmcarpenter2/swifter/master/setup.py"],"_requirements_localurls":["jmcarpenter2~swifter~requirements.txt","jmcarpenter2~swifter~setup.py"]},{"index":617,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-testinfra","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-testinfra","_reponame":"pytest-testinfra","_stars":2133,"_forks":312,"_watches":82,"_topics":["python","testing","infrastructure-as-code","devops","tdd","nagios","docker","tdd-utilities","testing-tools","devops-tools","infrastructure-testing","saltstack","chef","puppet","ansible","kubernetes","pytest-plugin"],"_language":"Python","_homepage":"https://testinfra.readthedocs.io","_description":"pytest-testinfra: Testinfra test your infrastructures","_organization":"pytest-dev","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2015-03-15T00:00:00.000Z","_age_weeks":405,"_stars_per_week":5.26,"_pop_contributor_count":121,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lowatt","redhatansible"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.54,"_pop_updated_issues_count":16,"_pop_closed_issues_count":10,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":16.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":123,"_pop_score":49.17,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-testinfra/master/README.rst","_readme_localurl":"pytest-dev~pytest-testinfra~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-testinfra/master/setup.py","https://raw.githubusercontent.com/pytest-dev/pytest-testinfra/master/pyproject.toml"],"_requirements_localurls":["pytest-dev~pytest-testinfra~setup.py","pytest-dev~pytest-testinfra~pyproject.toml"]},{"index":807,"category":"web","githuburl":"https://github.com/flipkart-incubator/astra","featured":null,"links":null,"description":null,"_repopath":"flipkart-incubator/astra","_reponame":"Astra","_stars":2129,"_forks":356,"_watches":84,"_topics":["security","restapiautomation","python","owasp","penetration-testing-framework","postman-collection","ci-cd","sdlc","penetration-testing","security-automation"],"_language":"Python","_homepage":"","_description":"Astra: Automated Security Testing For REST API's","_organization":"flipkart-incubator","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2019-04-05T00:00:00.000Z","_created_at":"2018-01-10T00:00:00.000Z","_age_weeks":257,"_stars_per_week":8.26,"_pop_contributor_count":11,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aarhusuni","myntradesignspvtltd"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":4,"_pop_closed_issues_count":0,"_pop_created_since_days":60,"_pop_updated_since_days":45,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":20,"_pop_score":22.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/flipkart-incubator/astra/master/README.md","_readme_localurl":"flipkart-incubator~astra~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/flipkart-incubator/astra/master/requirements.txt"],"_requirements_localurls":["flipkart-incubator~astra~requirements.txt"]},{"index":503,"category":"gis","githuburl":"https://github.com/google/earthengine-api","featured":null,"links":null,"description":null,"_repopath":"google/earthengine-api","_reponame":"earthengine-api","_stars":2093,"_forks":892,"_watches":204,"_topics":[],"_language":"JavaScript","_homepage":"","_description":"earthengine-api: Python and JavaScript bindings for calling the Earth Engine API.","_organization":"google","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2015-04-22T00:00:00.000Z","_age_weeks":399,"_stars_per_week":5.24,"_pop_contributor_count":36,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":7,"_pop_closed_issues_count":1,"_pop_created_since_days":93,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":32,"_pop_recent_releases_adjusted_count":32,"_pop_issue_count":7.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":9,"_pop_score":38.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/earthengine-api/master/README.md","_readme_localurl":"google~earthengine-api~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":878,"category":"time-series","githuburl":"https://github.com/nixtla/statsforecast","featured":null,"links":null,"description":null,"_repopath":"nixtla/statsforecast","_reponame":"statsforecast","_stars":2070,"_forks":119,"_watches":19,"_topics":["time-series","statistics","forecasting","arima","econometrics","machine-learning","python","exponential-smoothing","ets","baselines","predictions","naive","seasonal-naive","fbprophet","prophet","neuralprophet","mstl","theta","automl","data-science"],"_language":"Python","_homepage":"https://nixtla.github.io/statsforecast/","_description":"statsforecast: Lightning \u26a1\ufe0f fast forecasting with statistical and econometric models.","_organization":"nixtla","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2021-11-24T00:00:00.000Z","_age_weeks":55,"_stars_per_week":37.15,"_pop_contributor_count":16,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nixtla","nubank"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":16.48,"_pop_updated_issues_count":124,"_pop_closed_issues_count":103,"_pop_created_since_days":13,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":23,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":124.0,"_pop_comment_count":148.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":28,"_pop_score":46.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nixtla/statsforecast/master/README.md","_readme_localurl":"nixtla~statsforecast~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nixtla/statsforecast/master/setup.py"],"_requirements_localurls":["nixtla~statsforecast~setup.py"]},{"index":222,"category":"data","githuburl":"https://github.com/pynamodb/pynamodb","featured":1.0,"links":null,"description":null,"_repopath":"pynamodb/pynamodb","_reponame":"PynamoDB","_stars":2060,"_forks":411,"_watches":41,"_topics":["python","dynamodb","aws"],"_language":"Python","_homepage":"http://pynamodb.readthedocs.io","_description":"PynamoDB: A pythonic interface to Amazon's DynamoDB","_organization":"pynamodb","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2014-01-20T00:00:00.000Z","_age_weeks":465,"_stars_per_week":4.43,"_pop_contributor_count":100,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lyft","openeyescientificsoftware"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.87,"_pop_updated_issues_count":114,"_pop_closed_issues_count":93,"_pop_created_since_days":108,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":114.0,"_pop_comment_count":177.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":72,"_pop_score":53.16,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pynamodb/pynamodb/master/README.rst","_readme_localurl":"pynamodb~pynamodb~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pynamodb/pynamodb/master/setup.py"],"_requirements_localurls":["pynamodb~pynamodb~setup.py"]},{"index":268,"category":"jupyter","githuburl":"https://github.com/jupyterlab/jupyterlab-desktop","featured":null,"links":null,"description":null,"_repopath":"jupyterlab/jupyterlab-desktop","_reponame":"jupyterlab-desktop","_stars":2059,"_forks":213,"_watches":40,"_topics":["jupyterlab","jupyter","jupyter-notebook"],"_language":"TypeScript","_homepage":"","_description":"jupyterlab-desktop: JupyterLab desktop application, based on Electron.","_organization":"jupyterlab","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2017-05-04T00:00:00.000Z","_age_weeks":293,"_stars_per_week":7.01,"_pop_contributor_count":33,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["fermiumlabssrl(fermiumlabs)","netflix"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.94,"_pop_updated_issues_count":66,"_pop_closed_issues_count":45,"_pop_created_since_days":68,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":66.0,"_pop_comment_count":99.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":2,"_pop_score":43.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyterlab/jupyterlab-desktop/master/README.md","_readme_localurl":"jupyterlab~jupyterlab-desktop~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":867,"category":"util","githuburl":"https://github.com/dosisod/refurb","featured":1.0,"links":null,"description":null,"_repopath":"dosisod/refurb","_reponame":"refurb","_stars":2055,"_forks":35,"_watches":15,"_topics":["cli","mypy","python","python310","testing","gplv3","hacktoberfest"],"_language":"Python","_homepage":"","_description":"refurb: A tool for refurbishing and modernizing Python codebases","_organization":"dosisod","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2022-07-27T00:00:00.000Z","_age_weeks":20,"_stars_per_week":99.21,"_pop_contributor_count":8,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["grupoboticario","hotjar","resgroup"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.46,"_pop_updated_issues_count":153,"_pop_closed_issues_count":139,"_pop_created_since_days":5,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":34,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":153.0,"_pop_comment_count":162.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":5,"_pop_score":36.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dosisod/refurb/master/README.md","_readme_localurl":"dosisod~refurb~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dosisod/refurb/master/pyproject.toml"],"_requirements_localurls":["dosisod~refurb~pyproject.toml"]},{"index":198,"category":"ml","githuburl":"https://github.com/maif/shapash","featured":null,"links":null,"description":null,"_repopath":"maif/shapash","_reponame":"shapash","_stars":2053,"_forks":253,"_watches":37,"_topics":["python","machine-learning","explainability","explainable-ml","transparency","ethical-artificial-intelligence","shap","lime","interpretability"],"_language":"Jupyter Notebook","_homepage":"https://maif.github.io/shapash/","_description":"shapash: \ud83d\udd05 Shapash makes Machine Learning models transparent and understandable by everyone","_organization":"maif","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2020-04-29T00:00:00.000Z","_age_weeks":137,"_stars_per_week":14.91,"_pop_contributor_count":35,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["helsing","maif"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.9,"_pop_updated_issues_count":34,"_pop_closed_issues_count":30,"_pop_created_since_days":32,"_pop_updated_since_days":1,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":34.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":12,"_pop_score":39.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/maif/shapash/master/README.md","_readme_localurl":"maif~shapash~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/maif/shapash/master/setup.py"],"_requirements_localurls":["maif~shapash~setup.py"]},{"index":724,"category":"util","githuburl":"https://github.com/ashleve/lightning-hydra-template","featured":null,"links":null,"description":null,"_repopath":"ashleve/lightning-hydra-template","_reponame":"lightning-hydra-template","_stars":2051,"_forks":343,"_watches":19,"_topics":["pytorch-lightning","wandb","project-structure","config","deep-learning","hydra","template","pytorch","research","experiments","reproducibility","experiment-tracking","best-practices","neptune","mlflow","tensorboard","comet","mlops"],"_language":"Python","_homepage":"","_description":"lightning-hydra-template: PyTorch Lightning + Hydra. A very user-friendly template for rapid and reproducible ML experimentation with best practices. \u26a1\ud83d\udd25\u26a1","_organization":"ashleve","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2020-11-04T00:00:00.000Z","_age_weeks":110,"_stars_per_week":18.53,"_pop_contributor_count":26,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["hunanuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.81,"_pop_updated_issues_count":46,"_pop_closed_issues_count":38,"_pop_created_since_days":26,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":46.0,"_pop_comment_count":49.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":7,"_pop_score":36.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/README.md","_readme_localurl":"ashleve~lightning-hydra-template~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/requirements.txt","https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/setup.py","https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/pyproject.toml"],"_requirements_localurls":["ashleve~lightning-hydra-template~requirements.txt","ashleve~lightning-hydra-template~setup.py","ashleve~lightning-hydra-template~pyproject.toml"]},{"index":860,"category":"jupyter","githuburl":"https://github.com/jupyter/nbviewer","featured":null,"links":null,"description":null,"_repopath":"jupyter/nbviewer","_reponame":"nbviewer","_stars":2035,"_forks":530,"_watches":92,"_topics":["jupyter","jupyter-notebook","nbconvert"],"_language":"Python","_homepage":"https://nbviewer.jupyter.org","_description":"nbviewer: nbconvert as a web service: Render Jupyter Notebooks as static web pages","_organization":"jupyter","_updated_at":"2022-12-10T00:00:00.000Z","_last_commit_date":"2022-11-07T00:00:00.000Z","_created_at":"2012-08-05T00:00:00.000Z","_age_weeks":541,"_stars_per_week":3.76,"_pop_contributor_count":92,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["noteable-io","quansight-labs","simularesearchlaboratory","wearethorn"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.25,"_pop_updated_issues_count":22,"_pop_closed_issues_count":14,"_pop_created_since_days":126,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":22.0,"_pop_comment_count":21.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":240,"_pop_score":48.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/nbviewer/master/README.md","_readme_localurl":"jupyter~nbviewer~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/nbviewer/master/requirements.txt","https://raw.githubusercontent.com/jupyter/nbviewer/master/setup.py"],"_requirements_localurls":["jupyter~nbviewer~requirements.txt","jupyter~nbviewer~setup.py"]},{"index":411,"category":"util","githuburl":"https://github.com/yaml/pyyaml","featured":null,"links":null,"description":null,"_repopath":"yaml/pyyaml","_reponame":"pyyaml","_stars":2007,"_forks":423,"_watches":46,"_topics":["python","yaml"],"_language":"Python","_homepage":"","_description":"pyyaml: Canonical source repository for PyYAML","_organization":"yaml","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-09-13T00:00:00.000Z","_created_at":"2011-11-03T00:00:00.000Z","_age_weeks":580,"_stars_per_week":3.46,"_pop_contributor_count":40,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ansible","newfolddigital/bluehost","suse"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":36,"_pop_closed_issues_count":9,"_pop_created_since_days":135,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":36.0,"_pop_comment_count":33.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":6927,"_pop_score":51.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/yaml/pyyaml/master/README.md","_readme_localurl":"yaml~pyyaml~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/yaml/pyyaml/master/setup.py","https://raw.githubusercontent.com/yaml/pyyaml/master/pyproject.toml"],"_requirements_localurls":["yaml~pyyaml~setup.py","yaml~pyyaml~pyproject.toml"]},{"index":748,"category":"study","githuburl":"https://github.com/zhanymkanov/fastapi-best-practices","featured":null,"links":null,"description":null,"_repopath":"zhanymkanov/fastapi-best-practices","_reponame":"fastapi-best-practices","_stars":2006,"_forks":134,"_watches":36,"_topics":["fastapi","best-practices"],"_language":null,"_homepage":"","_description":"fastapi-best-practices: FastAPI Best Practices and Conventions we used @ hi.peerlink.me","_organization":"zhanymkanov","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-16T00:00:00.000Z","_created_at":"2022-08-09T00:00:00.000Z","_age_weeks":18,"_stars_per_week":106.38,"_pop_contributor_count":3,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["viaprotocol"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.81,"_pop_updated_issues_count":9,"_pop_closed_issues_count":3,"_pop_created_since_days":4,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":9.0,"_pop_comment_count":25.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":0,"_pop_score":17.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zhanymkanov/fastapi-best-practices/master/README.md","_readme_localurl":"zhanymkanov~fastapi-best-practices~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":881,"category":"time-series","githuburl":"https://github.com/rjt1990/pyflux","featured":null,"links":null,"description":null,"_repopath":"rjt1990/pyflux","_reponame":"pyflux","_stars":2001,"_forks":233,"_watches":70,"_topics":["statistics","time-series"],"_language":"Python","_homepage":null,"_description":"pyflux: Open source time series library for Python","_organization":"rjt1990","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2018-12-16T00:00:00.000Z","_created_at":"2016-02-16T00:00:00.000Z","_age_weeks":356,"_stars_per_week":5.61,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["gitter","pinseekerinc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":83,"_pop_updated_since_days":49,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":8,"_pop_score":19.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rjt1990/pyflux/master/README.md","_readme_localurl":"rjt1990~pyflux~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rjt1990/pyflux/master/requirements.txt","https://raw.githubusercontent.com/rjt1990/pyflux/master/setup.py"],"_requirements_localurls":["rjt1990~pyflux~requirements.txt","rjt1990~pyflux~setup.py"]},{"index":548,"category":"ml","githuburl":"https://github.com/lightly-ai/lightly","featured":null,"links":null,"description":null,"_repopath":"lightly-ai/lightly","_reponame":"lightly","_stars":1976,"_forks":164,"_watches":25,"_topics":["deep-learning","self-supervised-learning","machine-learning","computer-vision","pytorch","embeddings","contrastive-learning","active-learning"],"_language":"Python","_homepage":"","_description":"lightly: A python library for self-supervised learning on images.","_organization":"lightly-ai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2020-10-13T00:00:00.000Z","_age_weeks":113,"_stars_per_week":17.36,"_pop_contributor_count":21,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lightly"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.62,"_pop_updated_issues_count":92,"_pop_closed_issues_count":78,"_pop_created_since_days":27,"_pop_updated_since_days":0,"_pop_recent_releases_count":38,"_pop_recent_releases_estimated_tags":33,"_pop_recent_releases_adjusted_count":38,"_pop_issue_count":92.0,"_pop_comment_count":133.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":22,"_pop_score":44.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lightly-ai/lightly/master/README.md","_readme_localurl":"lightly-ai~lightly~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lightly-ai/lightly/master/setup.py"],"_requirements_localurls":["lightly-ai~lightly~setup.py"]},{"index":813,"category":"data","githuburl":"https://github.com/datafold/data-diff","featured":null,"links":null,"description":null,"_repopath":"datafold/data-diff","_reponame":"data-diff","_stars":1953,"_forks":88,"_watches":14,"_topics":["database","mysql","postgresql","snowflake","rdbms","trino","data-engineering","data-quality","data-science","data-quality-monitoring","databricks-sql","dataengineering","dataquality","oracle-database","postgres","sql"],"_language":"Python","_homepage":"https://www.datafold.com/blog/open-source-data-diff","_description":"data-diff: Efficiently diff data in or across relational databases","_organization":"datafold","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2022-03-07T00:00:00.000Z","_age_weeks":41,"_stars_per_week":47.63,"_pop_contributor_count":25,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datafold","webscaleinc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.75,"_pop_updated_issues_count":139,"_pop_closed_issues_count":117,"_pop_created_since_days":10,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":139.0,"_pop_comment_count":220.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":4,"_pop_score":43.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/datafold/data-diff/master/README.md","_readme_localurl":"datafold~data-diff~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/datafold/data-diff/master/pyproject.toml"],"_requirements_localurls":["datafold~data-diff~pyproject.toml"]},{"index":323,"category":"gui","githuburl":"https://github.com/wxwidgets/phoenix","featured":null,"links":null,"description":null,"_repopath":"wxwidgets/phoenix","_reponame":"Phoenix","_stars":1911,"_forks":488,"_watches":105,"_topics":["python","cross-platform","gui-framework","gui-toolkit","gui","windows","macosx","linux","awesome","wxwidgets","wxpython"],"_language":"Python","_homepage":"http://wxpython.org/","_description":"Phoenix: wxPython's Project Phoenix. A new implementation of wxPython, better, stronger, faster than he was before.","_organization":"wxwidgets","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-10T00:00:00.000Z","_created_at":"2012-07-17T00:00:00.000Z","_age_weeks":543,"_stars_per_week":3.51,"_pop_contributor_count":123,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["self;independant"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.96,"_pop_updated_issues_count":79,"_pop_closed_issues_count":45,"_pop_created_since_days":127,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":79.0,"_pop_comment_count":141.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":133,"_pop_score":49.57,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/wxwidgets/phoenix/master/README.rst","_readme_localurl":"wxwidgets~phoenix~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/wxwidgets/phoenix/master/requirements.txt","https://raw.githubusercontent.com/wxwidgets/phoenix/master/setup.py"],"_requirements_localurls":["wxwidgets~phoenix~requirements.txt","wxwidgets~phoenix~setup.py"]},{"index":590,"category":"util","githuburl":"https://github.com/hgrecco/pint","featured":null,"links":null,"description":null,"_repopath":"hgrecco/pint","_reponame":"pint","_stars":1895,"_forks":407,"_watches":40,"_topics":["python","science","units"],"_language":"Python","_homepage":"http://pint.readthedocs.org/","_description":"pint: Operate and manipulate physical quantities in Python","_organization":"hgrecco","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2012-07-13T00:00:00.000Z","_age_weeks":544,"_stars_per_week":3.48,"_pop_contributor_count":181,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.02,"_pop_updated_issues_count":135,"_pop_closed_issues_count":73,"_pop_created_since_days":127,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":135.0,"_pop_comment_count":335.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":462,"_pop_score":52.75,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/hgrecco/pint/master/README.rst","_readme_localurl":"hgrecco~pint~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/hgrecco/pint/master/setup.py","https://raw.githubusercontent.com/hgrecco/pint/master/pyproject.toml"],"_requirements_localurls":["hgrecco~pint~setup.py","hgrecco~pint~pyproject.toml"]},{"index":233,"category":"crypto","githuburl":"https://github.com/ethereum/py-evm","featured":null,"links":null,"description":null,"_repopath":"ethereum/py-evm","_reponame":"py-evm","_stars":1886,"_forks":576,"_watches":98,"_topics":["evm","ethereum","python","ethereum-virtual-machine"],"_language":"Python","_homepage":"https://py-evm.readthedocs.io/en/latest/","_description":"py-evm: A Python implementation of the Ethereum Virtual Machine","_organization":"ethereum","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2016-12-27T00:00:00.000Z","_age_weeks":311,"_stars_per_week":6.05,"_pop_contributor_count":80,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ethereumfoundation"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.71,"_pop_updated_issues_count":13,"_pop_closed_issues_count":6,"_pop_created_since_days":73,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":13.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":107,"_pop_score":44.85,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethereum/py-evm/master/README.md","_readme_localurl":"ethereum~py-evm~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ethereum/py-evm/master/setup.py","https://raw.githubusercontent.com/ethereum/py-evm/master/pyproject.toml"],"_requirements_localurls":["ethereum~py-evm~setup.py","ethereum~py-evm~pyproject.toml"]},{"index":353,"category":"ml-interpretability","githuburl":"https://github.com/seldonio/alibi","featured":null,"links":null,"description":null,"_repopath":"seldonio/alibi","_reponame":"alibi","_stars":1880,"_forks":212,"_watches":43,"_topics":["machine-learning","explanations","interpretability","counterfactual","xai"],"_language":"Python","_homepage":"https://docs.seldon.io/projects/alibi/en/stable/","_description":"alibi: Algorithms for explaining machine learning models","_organization":"seldonio","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2019-02-26T00:00:00.000Z","_age_weeks":198,"_stars_per_week":9.45,"_pop_contributor_count":18,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datascienceseldonio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.52,"_pop_updated_issues_count":84,"_pop_closed_issues_count":61,"_pop_created_since_days":46,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":84.0,"_pop_comment_count":108.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":12,"_pop_score":40.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/seldonio/alibi/master/README.md","_readme_localurl":"seldonio~alibi~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/seldonio/alibi/master/setup.py"],"_requirements_localurls":["seldonio~alibi~setup.py"]},{"index":441,"category":"gis","githuburl":"https://github.com/rasterio/rasterio","featured":1.0,"links":null,"description":null,"_repopath":"rasterio/rasterio","_reponame":"rasterio","_stars":1858,"_forks":490,"_watches":152,"_topics":["python","gis","raster","gdal","cli","cython","mapbox-satellite-oss"],"_language":"Python","_homepage":"https://rasterio.readthedocs.io/","_description":"Rasterio reads and writes geospatial raster datasets","_organization":"rasterio","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2013-11-04T00:00:00.000Z","_age_weeks":476,"_stars_per_week":3.9,"_pop_contributor_count":140,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["astutespruce","corteva","planetlabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.12,"_pop_updated_issues_count":228,"_pop_closed_issues_count":122,"_pop_created_since_days":111,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":228.0,"_pop_comment_count":254.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":102,"_pop_score":56.91,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/rasterio/rasterio/master/README.rst","_readme_localurl":"rasterio~rasterio~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/rasterio/rasterio/master/requirements.txt","https://raw.githubusercontent.com/rasterio/rasterio/master/setup.py","https://raw.githubusercontent.com/rasterio/rasterio/master/pyproject.toml"],"_requirements_localurls":["rasterio~rasterio~requirements.txt","rasterio~rasterio~setup.py","rasterio~rasterio~pyproject.toml"]},{"index":755,"category":"ml","githuburl":"https://github.com/marqo-ai/marqo","featured":null,"links":null,"description":null,"_repopath":"marqo-ai/marqo","_reponame":"marqo","_stars":1852,"_forks":69,"_watches":23,"_topics":["deep-learning","search","information-retrieval","machinelearning","vector-search","tensor-search","clip","multi-modal","search-engine","timm","transformers","vision-language","machine-learning","semantic-search","visual-search","natural-language-processing","hnsw","knn","hacktoberfest","hacktoberfest-accepted"],"_language":"Python","_homepage":"https://www.marqo.ai/","_description":"marqo: Tensor search for humans.","_organization":"marqo-ai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2022-08-01T00:00:00.000Z","_age_weeks":20,"_stars_per_week":92.6,"_pop_contributor_count":20,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["marqo-ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.88,"_pop_updated_issues_count":196,"_pop_closed_issues_count":148,"_pop_created_since_days":5,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":195.0,"_pop_comment_count":147.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":9,"_pop_score":37.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/marqo-ai/marqo/master/README.md","_readme_localurl":"marqo-ai~marqo~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/marqo-ai/marqo/master/requirements.txt","https://raw.githubusercontent.com/marqo-ai/marqo/master/setup.py","https://raw.githubusercontent.com/marqo-ai/marqo/master/pyproject.toml"],"_requirements_localurls":["marqo-ai~marqo~requirements.txt","marqo-ai~marqo~setup.py","marqo-ai~marqo~pyproject.toml"]},{"index":452,"category":"pandas","githuburl":"https://github.com/pandera-dev/pandera","featured":1.0,"links":null,"description":null,"_repopath":"pandera-dev/pandera","_reponame":"pandera","_stars":1851,"_forks":156,"_watches":12,"_topics":["pandas","validation","schema","dataframes","testing","pandas-validation","pandas-dataframe","data-validation","data-cleaning","data-check","testing-tools","assertions","data-assertions","data-verification","dataframe-schema","hypothesis-testing","pandas-validator","data-processing"],"_language":"Python","_homepage":"https://www.union.ai/pandera","_description":"pandera: A light-weight, flexible, and expressive statistical data testing library","_organization":"pandera-dev","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-11-01T00:00:00.000Z","_age_weeks":215,"_stars_per_week":8.59,"_pop_contributor_count":77,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["auxmoney","bcggamma","imperialcollegelondon","unionai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.23,"_pop_updated_issues_count":134,"_pop_closed_issues_count":83,"_pop_created_since_days":50,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":134.0,"_pop_comment_count":355.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":17,"_pop_score":53.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pandera-dev/pandera/master/README.md","_readme_localurl":"pandera-dev~pandera~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pandera-dev/pandera/master/setup.py","https://raw.githubusercontent.com/pandera-dev/pandera/master/pyproject.toml"],"_requirements_localurls":["pandera-dev~pandera~setup.py","pandera-dev~pandera~pyproject.toml"]},{"index":540,"category":"nlp","githuburl":"https://github.com/salesforce/codegen","featured":null,"links":null,"description":null,"_repopath":"salesforce/codegen","_reponame":"CodeGen","_stars":1850,"_forks":137,"_watches":35,"_topics":["programsynthesis","generativemodel","codex","languagemodel","llm","tpu-acceleration"],"_language":"Python","_homepage":"","_description":"CodeGen is an open-source model for program synthesis. Trained on TPU-v4. Competitive with OpenAI Codex.","_organization":"salesforce","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2022-03-28T00:00:00.000Z","_age_weeks":38,"_stars_per_week":48.68,"_pop_contributor_count":7,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["garnercorp"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.83,"_pop_updated_issues_count":21,"_pop_closed_issues_count":12,"_pop_created_since_days":9,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":21.0,"_pop_comment_count":47.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":2,"_pop_score":24.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/codegen/master/README.md","_readme_localurl":"salesforce~codegen~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/salesforce/codegen/master/requirements.txt"],"_requirements_localurls":["salesforce~codegen~requirements.txt"]},{"index":713,"category":"gis","githuburl":"https://github.com/mcordts/cityscapesscripts","featured":null,"links":null,"description":null,"_repopath":"mcordts/cityscapesscripts","_reponame":"cityscapesScripts","_stars":1842,"_forks":565,"_watches":46,"_topics":[],"_language":"Python","_homepage":null,"_description":"cityscapesScripts: README and scripts for the Cityscapes Dataset","_organization":"mcordts","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-22T00:00:00.000Z","_created_at":"2016-02-20T00:00:00.000Z","_age_weeks":356,"_stars_per_week":5.17,"_pop_contributor_count":17,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["daimlerag","facebookairesearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":7,"_pop_closed_issues_count":2,"_pop_created_since_days":83,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":7.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":8,"_pop_score":29.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mcordts/cityscapesscripts/master/README.md","_readme_localurl":"mcordts~cityscapesscripts~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mcordts/cityscapesscripts/master/setup.py"],"_requirements_localurls":["mcordts~cityscapesscripts~setup.py"]},{"index":871,"category":"profiling","githuburl":"https://github.com/reloadware/reloadium","featured":1.0,"links":null,"description":null,"_repopath":"reloadware/reloadium","_reponame":"reloadium","_stars":1836,"_forks":27,"_watches":24,"_topics":["hot-reload","hot-reloading","python","python3","edit-and-continue","django","flask","pandas"],"_language":"Python","_homepage":"https://reloadium.io","_description":"reloadium: Advanced Hot Reloading & Profiling for Python","_organization":"reloadware","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2022-01-15T00:00:00.000Z","_age_weeks":48,"_stars_per_week":38.02,"_pop_contributor_count":2,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bytelogics","reloadware"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.71,"_pop_updated_issues_count":38,"_pop_closed_issues_count":31,"_pop_created_since_days":11,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":38.0,"_pop_comment_count":103.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":0,"_pop_score":27.68,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/reloadware/reloadium/master/README.rst","_readme_localurl":"reloadware~reloadium~README.rst","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":856,"category":"profiling","githuburl":"https://github.com/jiffyclub/snakeviz","featured":null,"links":null,"description":null,"_repopath":"jiffyclub/snakeviz","_reponame":"snakeviz","_stars":1827,"_forks":128,"_watches":22,"_topics":[],"_language":"Python","_homepage":"https://jiffyclub.github.io/snakeviz/","_description":"snakeviz: An in-browser Python profile viewer","_organization":"jiffyclub","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2021-10-25T00:00:00.000Z","_created_at":"2012-06-26T00:00:00.000Z","_age_weeks":546,"_stars_per_week":3.34,"_pop_contributor_count":24,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nvidia","populus-ai","universityofwisconsin-madison"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":10,"_pop_closed_issues_count":4,"_pop_created_since_days":128,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":10.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":24,"_pop_score":34.66,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jiffyclub/snakeviz/master/README.rst","_readme_localurl":"jiffyclub~snakeviz~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jiffyclub/snakeviz/master/setup.py"],"_requirements_localurls":["jiffyclub~snakeviz~setup.py"]},{"index":823,"category":"data","githuburl":"https://github.com/uqfoundation/dill","featured":1.0,"links":null,"description":null,"_repopath":"uqfoundation/dill","_reponame":"dill","_stars":1822,"_forks":151,"_watches":22,"_topics":[],"_language":"Python","_homepage":"http://dill.rtfd.io","_description":"dill: serialize all of python","_organization":"uqfoundation","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2013-06-28T00:00:00.000Z","_age_weeks":494,"_stars_per_week":3.69,"_pop_contributor_count":39,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amphybio-universityofs\u00e3opaulo,medicalschool","uqfoundation"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.94,"_pop_updated_issues_count":40,"_pop_closed_issues_count":19,"_pop_created_since_days":115,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":40.0,"_pop_comment_count":57.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":514,"_pop_score":51.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/uqfoundation/dill/master/README.md","_readme_localurl":"uqfoundation~dill~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/uqfoundation/dill/master/setup.py","https://raw.githubusercontent.com/uqfoundation/dill/master/pyproject.toml"],"_requirements_localurls":["uqfoundation~dill~setup.py","uqfoundation~dill~pyproject.toml"]},{"index":46,"category":"jupyter","githuburl":"https://github.com/maartenbreddels/ipyvolume","featured":null,"links":null,"description":null,"_repopath":"maartenbreddels/ipyvolume","_reponame":"ipyvolume","_stars":1811,"_forks":234,"_watches":53,"_topics":["ipython-widget","jupyter","jupyter-notebook","python","visualisation","volume-rendering","virtual-reality","plotting","dataviz","scientific-visualization","webgl","threejs","rendering-3d-volumes","quiver"],"_language":"TypeScript","_homepage":"","_description":"ipyvolume: 3d plotting for Python in the Jupyter notebook based on IPython widgets using WebGL","_organization":"maartenbreddels","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-07-26T00:00:00.000Z","_created_at":"2016-12-21T00:00:00.000Z","_age_weeks":312,"_stars_per_week":5.79,"_pop_contributor_count":41,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["imperialcollegelondon","maartenbreddels","monashuniversity","surf"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":8,"_pop_closed_issues_count":1,"_pop_created_since_days":73,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":8.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":97,"_pop_score":41.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/maartenbreddels/ipyvolume/master/README.md","_readme_localurl":"maartenbreddels~ipyvolume~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/maartenbreddels/ipyvolume/master/setup.py","https://raw.githubusercontent.com/maartenbreddels/ipyvolume/master/pyproject.toml"],"_requirements_localurls":["maartenbreddels~ipyvolume~setup.py","maartenbreddels~ipyvolume~pyproject.toml"]},{"index":115,"category":"perf","githuburl":"https://github.com/h5py/h5py","featured":null,"links":null,"description":null,"_repopath":"h5py/h5py","_reponame":"h5py","_stars":1806,"_forks":478,"_watches":55,"_topics":[],"_language":"Python","_homepage":"http://www.h5py.org","_description":"h5py: HDF5 for Python -- The h5py package is a Pythonic interface to the HDF5 binary data format.","_organization":"h5py","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2012-09-21T00:00:00.000Z","_age_weeks":534,"_stars_per_week":3.38,"_pop_contributor_count":190,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["brookhavennationallab","departmentofphysicsandastronomy,macquarieuniversity","enthought","esrf"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.48,"_pop_updated_issues_count":70,"_pop_closed_issues_count":41,"_pop_created_since_days":125,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":70.0,"_pop_comment_count":208.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":791,"_pop_score":61.34,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/h5py/h5py/master/README.rst","_readme_localurl":"h5py~h5py~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/h5py/h5py/master/setup.py","https://raw.githubusercontent.com/h5py/h5py/master/pyproject.toml"],"_requirements_localurls":["h5py~h5py~setup.py","h5py~h5py~pyproject.toml"]},{"index":506,"category":"ml-ops","githuburl":"https://github.com/adap/flower","featured":null,"links":null,"description":null,"_repopath":"adap/flower","_reponame":"flower","_stars":1800,"_forks":390,"_watches":24,"_topics":["flower","federated-learning","federated-learning-framework","pytorch-federated-learning","tensorflow-federated-learning","keras-federated-learning","federated-analytics","fleet-learning","fleet-intelligence"],"_language":"Python","_homepage":"https://flower.dev","_description":"Flower - A Friendly Federated Learning Framework","_organization":"adap","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2020-02-17T00:00:00.000Z","_age_weeks":148,"_stars_per_week":12.16,"_pop_contributor_count":51,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["adapgmbh"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.63,"_pop_updated_issues_count":99,"_pop_closed_issues_count":67,"_pop_created_since_days":34,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":99.0,"_pop_comment_count":59.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":18,"_pop_score":42.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/adap/flower/master/README.md","_readme_localurl":"adap~flower~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/adap/flower/master/pyproject.toml"],"_requirements_localurls":["adap~flower~pyproject.toml"]},{"index":648,"category":"util","githuburl":"https://github.com/grahamdumpleton/wrapt","featured":null,"links":null,"description":null,"_repopath":"grahamdumpleton/wrapt","_reponame":"wrapt","_stars":1793,"_forks":208,"_watches":45,"_topics":[],"_language":"Python","_homepage":"","_description":"wrapt: A Python module for decorators, wrappers and monkey patching.","_organization":"grahamdumpleton","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-28T00:00:00.000Z","_created_at":"2013-05-29T00:00:00.000Z","_age_weeks":498,"_stars_per_week":3.6,"_pop_contributor_count":25,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["embl,zellerlab","georgiatech","scampersand"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.4,"_pop_updated_issues_count":5,"_pop_closed_issues_count":4,"_pop_created_since_days":116,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":5.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":1101,"_pop_score":47.52,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/grahamdumpleton/wrapt/master/README.rst","_readme_localurl":"grahamdumpleton~wrapt~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/grahamdumpleton/wrapt/master/setup.py"],"_requirements_localurls":["grahamdumpleton~wrapt~setup.py"]},{"index":601,"category":"gis","githuburl":"https://github.com/plant99/felicette","featured":null,"links":null,"description":null,"_repopath":"plant99/felicette","_reponame":"felicette","_stars":1792,"_forks":85,"_watches":38,"_topics":["geospatial-data","gis","geospatial-visualization","geospatial","python","python3","geoinformatics","earth-observation","earth-science","satellite-imagery","satellite-images","satellite-data"],"_language":"Python","_homepage":"","_description":"felicette: Satellite imagery for dummies.","_organization":"plant99","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2021-09-08T00:00:00.000Z","_created_at":"2020-07-12T00:00:00.000Z","_age_weeks":127,"_stars_per_week":14.09,"_pop_contributor_count":6,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["clemsonuniversity","financeandeconomicsdepartment,mgimo-odintsovo","mattermost","tempulsenoirlinuxmulindisourcehaus"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":30,"_pop_updated_since_days":16,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":16.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/plant99/felicette/master/README.md","_readme_localurl":"plant99~felicette~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/plant99/felicette/master/requirements.txt","https://raw.githubusercontent.com/plant99/felicette/master/setup.py"],"_requirements_localurls":["plant99~felicette~requirements.txt","plant99~felicette~setup.py"]},{"index":295,"category":"util","githuburl":"https://github.com/pyfilesystem/pyfilesystem2","featured":null,"links":null,"description":null,"_repopath":"pyfilesystem/pyfilesystem2","_reponame":"pyfilesystem2","_stars":1785,"_forks":170,"_watches":45,"_topics":["filesystem","pyfilesystem","pyfilesystem2","python","ftp","tar","zip","filesystem-library"],"_language":"Python","_homepage":"https://www.pyfilesystem.org","_description":"pyfilesystem2: Python's Filesystem abstraction layer","_organization":"pyfilesystem","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-10-18T00:00:00.000Z","_created_at":"2016-10-14T00:00:00.000Z","_age_weeks":322,"_stars_per_week":5.54,"_pop_contributor_count":47,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["embl,zellerlab","mercatronicsgmbh","textualize"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.56,"_pop_updated_issues_count":7,"_pop_closed_issues_count":2,"_pop_created_since_days":75,"_pop_updated_since_days":2,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":7.0,"_pop_comment_count":19.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":47,"_pop_score":43.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyfilesystem/pyfilesystem2/master/README.md","_readme_localurl":"pyfilesystem~pyfilesystem2~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyfilesystem/pyfilesystem2/master/setup.py"],"_requirements_localurls":["pyfilesystem~pyfilesystem2~setup.py"]},{"index":63,"category":"sim","githuburl":"https://github.com/projectmesa/mesa","featured":null,"links":null,"description":null,"_repopath":"projectmesa/mesa","_reponame":"mesa","_stars":1778,"_forks":760,"_watches":89,"_topics":["mesa","agent-based-modeling","agent-based-simulation","simulation-framework","simulation","simulation-environment","complex-systems","complexity-analysis","modeling-agents","spatial-models","gis"],"_language":"Python","_homepage":"","_description":"Mesa is an agent-based modeling framework in Python","_organization":"projectmesa","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2014-09-19T00:00:00.000Z","_age_weeks":430,"_stars_per_week":4.13,"_pop_contributor_count":121,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.48,"_pop_updated_issues_count":166,"_pop_closed_issues_count":136,"_pop_created_since_days":100,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":166.0,"_pop_comment_count":676.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.1,"_pop_dependents_count":104,"_pop_score":51.2,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/projectmesa/mesa/master/README.rst","_readme_localurl":"projectmesa~mesa~README.rst","_requirements_filenames":["setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/projectmesa/mesa/master/setup.py","https://raw.githubusercontent.com/projectmesa/mesa/master/Pipfile"],"_requirements_localurls":["projectmesa~mesa~setup.py","projectmesa~mesa~Pipfile"]},{"index":749,"category":"diffusion","githuburl":"https://github.com/nateraw/stable-diffusion-videos","featured":null,"links":null,"description":null,"_repopath":"nateraw/stable-diffusion-videos","_reponame":"stable-diffusion-videos","_stars":1774,"_forks":155,"_watches":21,"_topics":["ai-art","huggingface","huggingface-diffusers","machine-learning","stable-diffusion"],"_language":"Python","_homepage":"","_description":"stable-diffusion-videos: Create \ud83d\udd25 videos with Stable Diffusion by exploring the latent space and morphing between text prompts","_organization":"nateraw","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2022-09-06T00:00:00.000Z","_age_weeks":14,"_stars_per_week":119.4,"_pop_contributor_count":10,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["earth","huggingface","student"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.31,"_pop_updated_issues_count":103,"_pop_closed_issues_count":83,"_pop_created_since_days":3,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":61,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":103.0,"_pop_comment_count":213.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":2,"_pop_score":36.85,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/README.md","_readme_localurl":"nateraw~stable-diffusion-videos~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/requirements.txt","https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/setup.py"],"_requirements_localurls":["nateraw~stable-diffusion-videos~requirements.txt","nateraw~stable-diffusion-videos~setup.py"]},{"index":32,"category":"nlp","githuburl":"https://github.com/jamesturk/jellyfish","featured":null,"links":null,"description":null,"_repopath":"jamesturk/jellyfish","_reponame":"jellyfish","_stars":1766,"_forks":148,"_watches":43,"_topics":["python","levenshtein","soundex","hamming","metaphone","jaro-winkler","fuzzy-search","hacktoberfest"],"_language":"Python","_homepage":"https://jamesturk.github.io/jellyfish/","_description":"jellyfish: \ud83e\udebc a python library for doing approximate and phonetic matching of strings.","_organization":"jamesturk","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-07T00:00:00.000Z","_created_at":"2010-07-09T00:00:00.000Z","_age_weeks":649,"_stars_per_week":2.72,"_pop_contributor_count":27,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ibmresearch","sunlightlabs","utrechtuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.38,"_pop_updated_issues_count":10,"_pop_closed_issues_count":7,"_pop_created_since_days":152,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":10.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":92,"_pop_score":41.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jamesturk/jellyfish/master/README.md","_readme_localurl":"jamesturk~jellyfish~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jamesturk/jellyfish/master/setup.py"],"_requirements_localurls":["jamesturk~jellyfish~setup.py"]},{"index":310,"category":"data","githuburl":"https://github.com/graphistry/pygraphistry","featured":null,"links":null,"description":null,"_repopath":"graphistry/pygraphistry","_reponame":"pygraphistry","_stars":1764,"_forks":185,"_watches":48,"_topics":["graph","visualization","gpu","graphistry","python","rapids","cugraph","networkx","neo4j","tigergraph","pandas","csv","webgl","splunk","cudf","jupyter","igraph","network-analysis","network-visualization","graph-visualization"],"_language":"Python","_homepage":"","_description":"PyGraphistry is a Python library to quickly load, shape, embed, and explore big graphs with the GPU-accelerated Graphistry visual graph analyzer","_organization":"graphistry","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2015-06-02T00:00:00.000Z","_age_weeks":393,"_stars_per_week":4.48,"_pop_contributor_count":31,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["graphistry","nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.44,"_pop_updated_issues_count":38,"_pop_closed_issues_count":21,"_pop_created_since_days":92,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":22,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":38.0,"_pop_comment_count":32.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":36,"_pop_score":46.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/graphistry/pygraphistry/master/README.md","_readme_localurl":"graphistry~pygraphistry~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/graphistry/pygraphistry/master/setup.py"],"_requirements_localurls":["graphistry~pygraphistry~setup.py"]},{"index":9,"category":"ml","githuburl":"https://github.com/contextlab/hypertools","featured":null,"links":null,"description":null,"_repopath":"contextlab/hypertools","_reponame":"hypertools","_stars":1754,"_forks":159,"_watches":60,"_topics":["data-visualization","high-dimensional-data","python","topic-modeling","text-vectorization","data-wrangling","visualization","time-series"],"_language":"Python","_homepage":"http://hypertools.readthedocs.io/en/latest/","_description":"hypertools: A Python toolbox for gaining geometric insights into high-dimensional data","_organization":"contextlab","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-02-12T00:00:00.000Z","_created_at":"2016-09-27T00:00:00.000Z","_age_weeks":324,"_stars_per_week":5.4,"_pop_contributor_count":21,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["akiliinteractive","contextlabcosanlab","dartmouthcollege"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.63,"_pop_updated_issues_count":4,"_pop_closed_issues_count":4,"_pop_created_since_days":76,"_pop_updated_since_days":10,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":4.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":25,"_pop_score":33.19,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/contextlab/hypertools/master/readme.md","_readme_localurl":"contextlab~hypertools~readme.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/contextlab/hypertools/master/requirements.txt","https://raw.githubusercontent.com/contextlab/hypertools/master/setup.py"],"_requirements_localurls":["contextlab~hypertools~requirements.txt","contextlab~hypertools~setup.py"]},{"index":201,"category":"util","githuburl":"https://github.com/camelot-dev/camelot","featured":null,"links":null,"description":null,"_repopath":"camelot-dev/camelot","_reponame":"camelot","_stars":1752,"_forks":329,"_watches":40,"_topics":[],"_language":"Python","_homepage":"https://camelot-py.readthedocs.io","_description":"camelot: A Python library to extract tabular data from PDFs","_organization":"camelot-dev","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2021-07-11T00:00:00.000Z","_created_at":"2019-07-01T00:00:00.000Z","_age_weeks":181,"_stars_per_week":9.68,"_pop_contributor_count":38,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["01s","http://develated.com/"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":16,"_pop_closed_issues_count":5,"_pop_created_since_days":42,"_pop_updated_since_days":18,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":16.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":6,"_pop_score":30.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/camelot-dev/camelot/master/README.md","_readme_localurl":"camelot-dev~camelot~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/camelot-dev/camelot/master/setup.py"],"_requirements_localurls":["camelot-dev~camelot~setup.py"]},{"index":843,"category":"ml","githuburl":"https://github.com/aws/sagemaker-python-sdk","featured":null,"links":null,"description":null,"_repopath":"aws/sagemaker-python-sdk","_reponame":"sagemaker-python-sdk","_stars":1748,"_forks":905,"_watches":131,"_topics":["aws","mxnet","tensorflow","machine-learning","python","pytorch","sagemaker","huggingface"],"_language":"Python","_homepage":"https://sagemaker.readthedocs.io/","_description":"sagemaker-python-sdk: A library for training and deploying machine learning models on Amazon SageMaker","_organization":"aws","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2017-11-14T00:00:00.000Z","_age_weeks":265,"_stars_per_week":6.57,"_pop_contributor_count":311,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.71,"_pop_updated_issues_count":275,"_pop_closed_issues_count":152,"_pop_created_since_days":62,"_pop_updated_since_days":0,"_pop_recent_releases_count":74,"_pop_recent_releases_estimated_tags":93,"_pop_recent_releases_adjusted_count":74,"_pop_issue_count":275.0,"_pop_comment_count":3020.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":11.0,"_pop_dependents_count":133,"_pop_score":66.03,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/aws/sagemaker-python-sdk/master/README.rst","_readme_localurl":"aws~sagemaker-python-sdk~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aws/sagemaker-python-sdk/master/setup.py"],"_requirements_localurls":["aws~sagemaker-python-sdk~setup.py"]},{"index":297,"category":"util","githuburl":"https://github.com/pyparsing/pyparsing","featured":null,"links":null,"description":null,"_repopath":"pyparsing/pyparsing","_reponame":"pyparsing","_stars":1714,"_forks":237,"_watches":23,"_topics":["python","python2","python3","python-2","python-3","parser-combinators","parsing-expression-grammar","parsing","parsing-library","text-processing","peg-parsers"],"_language":"Python","_homepage":"","_description":"pyparsing: Python library for creating PEG parsers","_organization":"pyparsing","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2017-05-14T00:00:00.000Z","_age_weeks":292,"_stars_per_week":5.87,"_pop_contributor_count":52,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","pioneervalleybooks","suse"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.69,"_pop_updated_issues_count":19,"_pop_closed_issues_count":7,"_pop_created_since_days":68,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":19.0,"_pop_comment_count":33.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":2168,"_pop_score":54.35,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyparsing/pyparsing/master/README.rst","_readme_localurl":"pyparsing~pyparsing~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyparsing/pyparsing/master/pyproject.toml"],"_requirements_localurls":["pyparsing~pyparsing~pyproject.toml"]},{"index":25,"category":"util","githuburl":"https://github.com/google/gin-config","featured":null,"links":null,"description":null,"_repopath":"google/gin-config","_reponame":"gin-config","_stars":1710,"_forks":107,"_watches":22,"_topics":["python","configuration-management","tensorflow","tensorflow-experiments"],"_language":"Python","_homepage":"","_description":"gin-config: Gin provides a lightweight configuration framework for Python","_organization":"google","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2018-06-27T00:00:00.000Z","_age_weeks":233,"_stars_per_week":7.32,"_pop_contributor_count":23,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","netguru"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":9,"_pop_closed_issues_count":6,"_pop_created_since_days":54,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":9.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":29.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/gin-config/master/README.md","_readme_localurl":"google~gin-config~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/gin-config/master/setup.py"],"_requirements_localurls":["google~gin-config~setup.py"]},{"index":365,"category":"ml","githuburl":"https://github.com/rentruewang/koila","featured":null,"links":null,"description":null,"_repopath":"rentruewang/koila","_reponame":"koila","_stars":1689,"_forks":61,"_watches":11,"_topics":["pytorch","lazy-evaluation","out-of-memory","python","machine-learning","deep-learning","memory-management","gradient-accumulation","neural-network"],"_language":"Python","_homepage":"https://rentruewang.github.io/koila","_description":"koila: Prevent PyTorch's `CUDA error: out of memory` in just 1 line of code.","_organization":"rentruewang","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2021-11-17T00:00:00.000Z","_age_weeks":56,"_stars_per_week":29.78,"_pop_contributor_count":4,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["collegeofcomputing,georgiatech","iprally"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.83,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":13,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":20.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rentruewang/koila/master/README.md","_readme_localurl":"rentruewang~koila~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/rentruewang/koila/master/pyproject.toml"],"_requirements_localurls":["rentruewang~koila~pyproject.toml"]},{"index":806,"category":"web","githuburl":"https://github.com/python-restx/flask-restx","featured":null,"links":null,"description":null,"_repopath":"python-restx/flask-restx","_reponame":"flask-restx","_stars":1689,"_forks":285,"_watches":65,"_topics":["python","api","swagger","flask","rest","json","restful","restplus","restx"],"_language":"Python","_homepage":"https://flask-restx.readthedocs.io/en/latest/","_description":"flask-restx: Fork of Flask-RESTPlus: Fully featured framework for fast, easy and documented API development with Flask","_organization":"python-restx","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-02T00:00:00.000Z","_created_at":"2020-01-09T00:00:00.000Z","_age_weeks":153,"_stars_per_week":11.0,"_pop_contributor_count":137,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["apihackers","canonical"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":85,"_pop_closed_issues_count":21,"_pop_created_since_days":36,"_pop_updated_since_days":2,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":85.0,"_pop_comment_count":67.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":264,"_pop_score":45.5,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/python-restx/flask-restx/master/README.rst","_readme_localurl":"python-restx~flask-restx~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/python-restx/flask-restx/master/setup.py"],"_requirements_localurls":["python-restx~flask-restx~setup.py"]},{"index":543,"category":"data","githuburl":"https://github.com/sqlalchemy/alembic","featured":null,"links":null,"description":null,"_repopath":"sqlalchemy/alembic","_reponame":"alembic","_stars":1673,"_forks":171,"_watches":18,"_topics":["sqlalchemy","sql","python"],"_language":"Python","_homepage":"","_description":"alembic: A database migrations tool for SQLAlchemy.","_organization":"sqlalchemy","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2018-11-27T00:00:00.000Z","_age_weeks":211,"_stars_per_week":7.9,"_pop_contributor_count":155,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["helioslite","planetarium","redhat","self-employed"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.33,"_pop_updated_issues_count":37,"_pop_closed_issues_count":26,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":37.0,"_pop_comment_count":106.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":1101,"_pop_score":59.21,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sqlalchemy/alembic/master/README.rst","_readme_localurl":"sqlalchemy~alembic~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sqlalchemy/alembic/master/setup.py","https://raw.githubusercontent.com/sqlalchemy/alembic/master/pyproject.toml"],"_requirements_localurls":["sqlalchemy~alembic~setup.py","sqlalchemy~alembic~pyproject.toml"]},{"index":416,"category":"ml","githuburl":"https://github.com/bmabey/pyldavis","featured":null,"links":null,"description":null,"_repopath":"bmabey/pyldavis","_reponame":"pyLDAvis","_stars":1671,"_forks":340,"_watches":57,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"pyLDAvis: Python library for interactive topic model visualization. Port of the R LDAvis package.","_organization":"bmabey","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2021-03-24T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":401,"_stars_per_week":4.16,"_pop_contributor_count":32,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","zalandose"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":13,"_pop_closed_issues_count":2,"_pop_created_since_days":94,"_pop_updated_since_days":21,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":13.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":15,"_pop_score":30.39,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/bmabey/pyldavis/master/README.rst","_readme_localurl":"bmabey~pyldavis~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/bmabey/pyldavis/master/requirements.txt","https://raw.githubusercontent.com/bmabey/pyldavis/master/setup.py","https://raw.githubusercontent.com/bmabey/pyldavis/master/pyproject.toml","https://raw.githubusercontent.com/bmabey/pyldavis/master/Pipfile"],"_requirements_localurls":["bmabey~pyldavis~requirements.txt","bmabey~pyldavis~setup.py","bmabey~pyldavis~pyproject.toml","bmabey~pyldavis~Pipfile"]},{"index":217,"category":"ml","githuburl":"https://github.com/linkedin/greykite","featured":1.0,"links":null,"description":null,"_repopath":"linkedin/greykite","_reponame":"greykite","_stars":1654,"_forks":87,"_watches":37,"_topics":[],"_language":"Python","_homepage":"","_description":"greykite: A flexible, intuitive and fast forecasting library","_organization":"linkedin","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-08-31T00:00:00.000Z","_created_at":"2021-04-27T00:00:00.000Z","_age_weeks":85,"_stars_per_week":19.26,"_pop_contributor_count":8,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["linkedin","pepsico"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":20,"_pop_updated_since_days":4,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":3.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":12,"_pop_score":28.27,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/linkedin/greykite/master/README.rst","_readme_localurl":"linkedin~greykite~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/linkedin/greykite/master/setup.py"],"_requirements_localurls":["linkedin~greykite~setup.py"]},{"index":302,"category":"template","githuburl":"https://github.com/pyscaffold/pyscaffold","featured":null,"links":null,"description":null,"_repopath":"pyscaffold/pyscaffold","_reponame":"pyscaffold","_stars":1649,"_forks":170,"_watches":40,"_topics":["python","release-automation","git","distribution","package-creation","template-project","project-template","package"],"_language":"Python","_homepage":"https://pyscaffold.org","_description":"pyscaffold: \ud83d\udee0 Python project template generator with batteries included","_organization":"pyscaffold","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2014-04-02T00:00:00.000Z","_age_weeks":454,"_stars_per_week":3.63,"_pop_contributor_count":53,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["inovex","karlsruheinstituteoftechnology","universityofbristol"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.98,"_pop_updated_issues_count":18,"_pop_closed_issues_count":13,"_pop_created_since_days":106,"_pop_updated_since_days":1,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":22,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":18.0,"_pop_comment_count":22.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":105,"_pop_score":49.78,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyscaffold/pyscaffold/master/README.rst","_readme_localurl":"pyscaffold~pyscaffold~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyscaffold/pyscaffold/master/setup.py","https://raw.githubusercontent.com/pyscaffold/pyscaffold/master/pyproject.toml"],"_requirements_localurls":["pyscaffold~pyscaffold~setup.py","pyscaffold~pyscaffold~pyproject.toml"]},{"index":732,"category":"study","githuburl":"https://github.com/amanchadha/coursera-deep-learning-specialization","featured":null,"links":null,"description":null,"_repopath":"amanchadha/coursera-deep-learning-specialization","_reponame":"coursera-deep-learning-specialization","_stars":1649,"_forks":1451,"_watches":16,"_topics":["deep-learning","coursera","coursera-assignment","coursera-specialization","coursera-machine-learning","andrew-ng","andrew-ng-course","convolutional-neural-networks","cnns","recurrent-neural-networks","rnns","convolutional-neural-network","recurrent-neural-network","hyperparameter-optimization","hyperparameter-tuning","neural-network","neural-networks","neural-machine-translation","neural-style-transfer","regularization"],"_language":"Jupyter Notebook","_homepage":"","_description":"coursera-deep-learning-specialization: Notes, programming assignments and quizzes from all courses within the Coursera Deep Learning specialization offered by deeplearning.ai: (i) Neural Networks and Deep Learning; (ii) Improving Deep Neural Networks: Hyperparameter tuning, Regularization and Optimization; (iii) Structuring Machine Learning Projects; (iv) Convolutional Neural Networks; (v) Sequence Models","_organization":"amanchadha","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-02-07T00:00:00.000Z","_created_at":"2020-06-24T00:00:00.000Z","_age_weeks":129,"_stars_per_week":12.71,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon/stanforduniversity","readytocollaborateonaiprojects"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":30,"_pop_updated_since_days":10,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":17.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/amanchadha/coursera-deep-learning-specialization/master/README.md","_readme_localurl":"amanchadha~coursera-deep-learning-specialization~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":424,"category":"debug","githuburl":"https://github.com/gotcha/ipdb","featured":null,"links":null,"description":null,"_repopath":"gotcha/ipdb","_reponame":"ipdb","_stars":1640,"_forks":145,"_watches":27,"_topics":["python","ipython","debugger"],"_language":"Python","_homepage":"","_description":"ipdb: Integration of IPython pdb","_organization":"gotcha","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2011-01-15T00:00:00.000Z","_age_weeks":622,"_stars_per_week":2.64,"_pop_contributor_count":54,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bubblenet","let'sdelivery","locatee"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":20,"_pop_closed_issues_count":14,"_pop_created_since_days":145,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":20.0,"_pop_comment_count":29.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":915,"_pop_score":52.46,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/gotcha/ipdb/master/README.rst","_readme_localurl":"gotcha~ipdb~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/gotcha/ipdb/master/setup.py","https://raw.githubusercontent.com/gotcha/ipdb/master/pyproject.toml"],"_requirements_localurls":["gotcha~ipdb~setup.py","gotcha~ipdb~pyproject.toml"]},{"index":330,"category":"nlp","githuburl":"https://github.com/franck-dernoncourt/neuroner","featured":null,"links":null,"description":null,"_repopath":"franck-dernoncourt/neuroner","_reponame":"NeuroNER","_stars":1640,"_forks":483,"_watches":84,"_topics":["nlp","machine-learning","neural-networks","named-entity-recognition","deep-learning","tensorflow"],"_language":"Python","_homepage":"http://neuroner.com","_description":"NeuroNER: Named-entity recognition using neural networks. Easy-to-use and state-of-the-art results.","_organization":"franck-dernoncourt","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2019-10-02T00:00:00.000Z","_created_at":"2017-03-07T00:00:00.000Z","_age_weeks":301,"_stars_per_week":5.43,"_pop_contributor_count":7,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mit"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":70,"_pop_updated_since_days":39,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":13.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/README.md","_readme_localurl":"franck-dernoncourt~neuroner~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/requirements.txt","https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/setup.py"],"_requirements_localurls":["franck-dernoncourt~neuroner~requirements.txt","franck-dernoncourt~neuroner~setup.py"]},{"index":699,"category":"util","githuburl":"https://github.com/grantjenks/python-diskcache","featured":null,"links":null,"description":null,"_repopath":"grantjenks/python-diskcache","_reponame":"python-diskcache","_stars":1627,"_forks":106,"_watches":18,"_topics":["python","cache","persistence","key-value-store","filesystem"],"_language":"Python","_homepage":"http://www.grantjenks.com/docs/diskcache/","_description":"python-diskcache: Python disk-backed cache (Django-compatible). Faster than Redis and Memcached. Pure-Python.","_organization":"grantjenks","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-02-20T00:00:00.000Z","_created_at":"2016-02-03T00:00:00.000Z","_age_weeks":358,"_stars_per_week":4.54,"_pop_contributor_count":24,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["canonical"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":9,"_pop_closed_issues_count":6,"_pop_created_since_days":84,"_pop_updated_since_days":10,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":9.0,"_pop_comment_count":16.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":65,"_pop_score":36.94,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/grantjenks/python-diskcache/master/README.rst","_readme_localurl":"grantjenks~python-diskcache~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/grantjenks/python-diskcache/master/requirements.txt","https://raw.githubusercontent.com/grantjenks/python-diskcache/master/setup.py"],"_requirements_localurls":["grantjenks~python-diskcache~requirements.txt","grantjenks~python-diskcache~setup.py"]},{"index":256,"category":"crypto","githuburl":"https://github.com/bmoscon/cryptofeed","featured":null,"links":null,"description":null,"_repopath":"bmoscon/cryptofeed","_reponame":"cryptofeed","_stars":1610,"_forks":518,"_watches":74,"_topics":["python","trading","market-data","cryptocurrency","bitcoin","exchange","websockets","coinbase","binance","influxdb","asyncio","websocket","ftx-exchange","trading-platform","ethereum","cryptocurrencies","btc","crypto","coinbase-api"],"_language":"Python","_homepage":"","_description":"cryptofeed: Cryptocurrency Exchange Websocket Data Feed Handler","_organization":"bmoscon","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2017-12-16T00:00:00.000Z","_age_weeks":261,"_stars_per_week":6.16,"_pop_contributor_count":104,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.71,"_pop_updated_issues_count":32,"_pop_closed_issues_count":20,"_pop_created_since_days":61,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":32.0,"_pop_comment_count":33.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":173,"_pop_score":46.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bmoscon/cryptofeed/master/README.md","_readme_localurl":"bmoscon~cryptofeed~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/bmoscon/cryptofeed/master/requirements.txt","https://raw.githubusercontent.com/bmoscon/cryptofeed/master/setup.py","https://raw.githubusercontent.com/bmoscon/cryptofeed/master/pyproject.toml"],"_requirements_localurls":["bmoscon~cryptofeed~requirements.txt","bmoscon~cryptofeed~setup.py","bmoscon~cryptofeed~pyproject.toml"]},{"index":383,"category":"nlp","githuburl":"https://github.com/minimaxir/aitextgen","featured":null,"links":null,"description":null,"_repopath":"minimaxir/aitextgen","_reponame":"aitextgen","_stars":1603,"_forks":182,"_watches":36,"_topics":[],"_language":"Python","_homepage":"https://docs.aitextgen.io","_description":"aitextgen: A robust Python tool for text-based AI training and generation using GPT-2.","_organization":"minimaxir","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-08-09T00:00:00.000Z","_created_at":"2019-12-29T00:00:00.000Z","_age_weeks":155,"_stars_per_week":10.33,"_pop_contributor_count":9,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["buzzfeed","lightning-ai","quantcopy"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":8,"_pop_closed_issues_count":1,"_pop_created_since_days":36,"_pop_updated_since_days":4,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":8.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":25.52,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/minimaxir/aitextgen/master/README.md","_readme_localurl":"minimaxir~aitextgen~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/minimaxir/aitextgen/master/requirements.txt","https://raw.githubusercontent.com/minimaxir/aitextgen/master/setup.py"],"_requirements_localurls":["minimaxir~aitextgen~requirements.txt","minimaxir~aitextgen~setup.py"]},{"index":779,"category":"nlp","githuburl":"https://github.com/deepset-ai/farm","featured":null,"links":null,"description":null,"_repopath":"deepset-ai/farm","_reponame":"FARM","_stars":1602,"_forks":232,"_watches":56,"_topics":["language-models","bert","nlp","deep-learning","transfer-learning","pytorch","nlp-library","nlp-framework","xlnet-pytorch","ner","question-answering","pretrained-models","roberta","germanbert"],"_language":"Python","_homepage":"https://farm.deepset.ai","_description":"FARM: :house_with_garden: Fast & easy transfer learning for NLP. Harvesting language models for the industry. Focus on Question Answering.","_organization":"deepset-ai","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-08-31T00:00:00.000Z","_created_at":"2019-07-17T00:00:00.000Z","_age_weeks":178,"_stars_per_week":8.96,"_pop_contributor_count":37,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deepset"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":42,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":39,"_pop_score":29.6,"_readme_filename":"readme.rst","_readme_giturl":"https://raw.githubusercontent.com/deepset-ai/farm/master/readme.rst","_readme_localurl":"deepset-ai~farm~readme.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/deepset-ai/farm/master/requirements.txt","https://raw.githubusercontent.com/deepset-ai/farm/master/setup.py"],"_requirements_localurls":["deepset-ai~farm~requirements.txt","deepset-ai~farm~setup.py"]},{"index":509,"category":"ml","githuburl":"https://github.com/tensorflow/addons","featured":null,"links":null,"description":null,"_repopath":"tensorflow/addons","_reponame":"addons","_stars":1596,"_forks":597,"_watches":58,"_topics":["machine-learning","deep-learning","tensorflow","neural-network","tensorflow-addons","python"],"_language":"Python","_homepage":"","_description":"addons: Useful extra functionality for TensorFlow 2.x maintained by SIG-addons","_organization":"tensorflow","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2018-11-26T00:00:00.000Z","_age_weeks":212,"_stars_per_week":7.53,"_pop_contributor_count":200,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aws","googlers","preligens","systran"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.27,"_pop_updated_issues_count":53,"_pop_closed_issues_count":31,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":53.0,"_pop_comment_count":111.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":2373,"_pop_score":60.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/addons/master/README.md","_readme_localurl":"tensorflow~addons~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorflow/addons/master/requirements.txt","https://raw.githubusercontent.com/tensorflow/addons/master/setup.py","https://raw.githubusercontent.com/tensorflow/addons/master/pyproject.toml"],"_requirements_localurls":["tensorflow~addons~requirements.txt","tensorflow~addons~setup.py","tensorflow~addons~pyproject.toml"]},{"index":825,"category":"study","githuburl":"https://github.com/alirezadir/machine-learning-interview-enlightener","featured":null,"links":null,"description":null,"_repopath":"alirezadir/machine-learning-interview-enlightener","_reponame":"machine-learning-interview-enlightener","_stars":1586,"_forks":327,"_watches":47,"_topics":["machine-learning","machine-learning-algorithms","ai","deep-learning","system-design","scalable-applications","interview","interview-preparation","interview-practice","interviews"],"_language":"Jupyter Notebook","_homepage":"","_description":"machine-learning-interview-enlightener: This repo is meant to serve as a guide for Machine Learning/AI technical interviews. ","_organization":"alirezadir","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-05-25T00:00:00.000Z","_created_at":"2021-01-31T00:00:00.000Z","_age_weeks":98,"_stars_per_week":16.16,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["meta","sdeliveramp"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":23,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":14.13,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alirezadir/machine-learning-interview-enlightener/master/README.md","_readme_localurl":"alirezadir~machine-learning-interview-enlightener~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":767,"category":"study","githuburl":"https://github.com/fluentpython/example-code-2e","featured":null,"links":null,"description":null,"_repopath":"fluentpython/example-code-2e","_reponame":"example-code-2e","_stars":1584,"_forks":464,"_watches":52,"_topics":["python","python3","concurrency","iterators","metaprogramming","special-methods"],"_language":"Python","_homepage":"https://amzn.to/3J48u2J","_description":"example-code-2e: Example code for Fluent Python, 2nd edition (O'Reilly 2022) ","_organization":"fluentpython","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-04-24T00:00:00.000Z","_created_at":"2019-03-21T00:00:00.000Z","_age_weeks":195,"_stars_per_week":8.1,"_pop_contributor_count":7,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["thoughtworksthoughtworksinc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":46,"_pop_updated_since_days":8,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":35,"_pop_score":21.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fluentpython/example-code-2e/master/README.md","_readme_localurl":"fluentpython~example-code-2e~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":768,"category":"ml-dl","githuburl":"https://github.com/fepegar/torchio","featured":null,"links":null,"description":null,"_repopath":"fepegar/torchio","_reponame":"torchio","_stars":1577,"_forks":196,"_watches":15,"_topics":["pytorch","medical-image-computing","deep-learning","data-augmentation","medical-images","machine-learning","python","medical-image-processing","medical-image-analysis","medical-imaging-datasets","medical-imaging-with-deep-learning","augmentation"],"_language":"Python","_homepage":"http://www.torchio.org","_description":"torchio: Medical imaging toolkit for deep learning","_organization":"fepegar","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-19T00:00:00.000Z","_created_at":"2019-11-26T00:00:00.000Z","_age_weeks":159,"_stars_per_week":9.87,"_pop_contributor_count":41,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoftuclkcl-bmeis"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.33,"_pop_updated_issues_count":47,"_pop_closed_issues_count":33,"_pop_created_since_days":37,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":83,"_pop_recent_releases_adjusted_count":83,"_pop_issue_count":47.0,"_pop_comment_count":115.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":14,"_pop_score":44.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fepegar/torchio/master/README.md","_readme_localurl":"fepegar~torchio~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/fepegar/torchio/master/pyproject.toml"],"_requirements_localurls":["fepegar~torchio~pyproject.toml"]},{"index":195,"category":"sim","githuburl":"https://github.com/pettingzoo-team/pettingzoo","featured":null,"links":null,"description":null,"_repopath":"pettingzoo-team/pettingzoo","_reponame":"PettingZoo","_stars":1576,"_forks":250,"_watches":16,"_topics":[],"_language":"Python","_homepage":"https://pettingzoo.farama.org","_description":"PettingZoo: Gymnasium for multi-agent reinforcement learning","_organization":"pettingzoo-team","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-15T00:00:00.000Z","_created_at":"2020-01-20T00:00:00.000Z","_age_weeks":152,"_stars_per_week":10.37,"_pop_contributor_count":79,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["morganstanley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.38,"_pop_updated_issues_count":87,"_pop_closed_issues_count":70,"_pop_created_since_days":35,"_pop_updated_since_days":1,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":87.0,"_pop_comment_count":116.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":40,"_pop_score":47.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pettingzoo-team/pettingzoo/master/README.md","_readme_localurl":"pettingzoo-team~pettingzoo~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pettingzoo-team/pettingzoo/master/setup.py","https://raw.githubusercontent.com/pettingzoo-team/pettingzoo/master/pyproject.toml"],"_requirements_localurls":["pettingzoo-team~pettingzoo~setup.py","pettingzoo-team~pettingzoo~pyproject.toml"]},{"index":263,"category":"sim","githuburl":"https://github.com/quantecon/quantecon.py","featured":null,"links":null,"description":null,"_repopath":"quantecon/quantecon.py","_reponame":"QuantEcon.py","_stars":1566,"_forks":2108,"_watches":151,"_topics":[],"_language":"Python","_homepage":"https://quantecon.org/quantecon-py/","_description":"QuantEcon.py: A community based Python library for quantitative economics","_organization":"quantecon","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2013-03-22T00:00:00.000Z","_age_weeks":508,"_stars_per_week":3.08,"_pop_contributor_count":40,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["australiannationaluniversity","kingabdullahuniversityofscienceandtechnology","umaprotocol","universityoftokyo"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.73,"_pop_updated_issues_count":66,"_pop_closed_issues_count":37,"_pop_created_since_days":119,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":66.0,"_pop_comment_count":168.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":932,"_pop_score":56.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/quantecon/quantecon.py/master/README.md","_readme_localurl":"quantecon~quantecon.py~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/quantecon/quantecon.py/master/pyproject.toml"],"_requirements_localurls":["quantecon~quantecon.py~pyproject.toml"]},{"index":597,"category":"time-series","githuburl":"https://github.com/uber/orbit","featured":null,"links":null,"description":null,"_repopath":"uber/orbit","_reponame":"orbit","_stars":1562,"_forks":117,"_watches":32,"_topics":["python","forecasting","bayesian","exponential-smoothing","pyro","stan","pystan","probabilistic-programming","probabilistic","forecast","orbit","time-series","regression","arima","changepoint","bayesian-methods","bayesian-statistics","machine-learning","regression-models","pytorch"],"_language":"Python","_homepage":"https://orbit-ml.readthedocs.io/en/stable/","_description":"orbit: A Python package for Bayesian forecasting with object-oriented design and probabilistic models under the hood.","_organization":"uber","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2020-01-07T00:00:00.000Z","_age_weeks":153,"_stars_per_week":10.15,"_pop_contributor_count":18,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["uber"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.6,"_pop_updated_issues_count":15,"_pop_closed_issues_count":7,"_pop_created_since_days":36,"_pop_updated_since_days":1,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":15.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":22,"_pop_score":34.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/uber/orbit/master/README.md","_readme_localurl":"uber~orbit~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/orbit/master/requirements.txt","https://raw.githubusercontent.com/uber/orbit/master/setup.py","https://raw.githubusercontent.com/uber/orbit/master/pyproject.toml"],"_requirements_localurls":["uber~orbit~requirements.txt","uber~orbit~setup.py","uber~orbit~pyproject.toml"]},{"index":377,"category":"ml-interpretability","githuburl":"https://github.com/jalammar/ecco","featured":null,"links":null,"description":null,"_repopath":"jalammar/ecco","_reponame":"ecco","_stars":1556,"_forks":111,"_watches":20,"_topics":["nlp","visualization","explorables","natural-language-processing","pytorch","language-models"],"_language":"Jupyter Notebook","_homepage":"https://ecco.readthedocs.io","_description":"ecco: Explain, analyze, and visualize NLP language models. Ecco creates interactive visualizations directly in Jupyter notebooks explaining the behavior of Transformer-based language models (like GPT2, BERT, RoBERTA, T5, and T0).","_organization":"jalammar","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-01-18T00:00:00.000Z","_created_at":"2020-11-07T00:00:00.000Z","_age_weeks":110,"_stars_per_week":14.11,"_pop_contributor_count":10,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cohere-ai","outsystems","truefoundry"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.62,"_pop_updated_issues_count":9,"_pop_closed_issues_count":6,"_pop_created_since_days":26,"_pop_updated_since_days":11,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":9.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":3,"_pop_score":26.12,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jalammar/ecco/master/README.rst","_readme_localurl":"jalammar~ecco~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jalammar/ecco/master/requirements.txt","https://raw.githubusercontent.com/jalammar/ecco/master/setup.py"],"_requirements_localurls":["jalammar~ecco~requirements.txt","jalammar~ecco~setup.py"]},{"index":299,"category":"util","githuburl":"https://github.com/julienpalard/pipe","featured":null,"links":null,"description":null,"_repopath":"julienpalard/pipe","_reponame":"Pipe","_stars":1544,"_forks":101,"_watches":26,"_topics":[],"_language":"Python","_homepage":"","_description":"Pipe: A Python library to use infix notation in Python","_organization":"julienpalard","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-16T00:00:00.000Z","_created_at":"2010-04-08T00:00:00.000Z","_age_weeks":662,"_stars_per_week":2.33,"_pop_contributor_count":25,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["sumologic"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":155,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":2,"_pop_score":30.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/julienpalard/pipe/master/README.md","_readme_localurl":"julienpalard~pipe~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/julienpalard/pipe/master/pyproject.toml"],"_requirements_localurls":["julienpalard~pipe~pyproject.toml"]},{"index":143,"category":"nlp","githuburl":"https://github.com/plasticityai/magnitude","featured":null,"links":null,"description":null,"_repopath":"plasticityai/magnitude","_reponame":"magnitude","_stars":1544,"_forks":113,"_watches":37,"_topics":["python","natural-language-processing","nlp","machine-learning","vectors","embeddings","word2vec","fasttext","glove","gensim","fast","memory-efficient","machine-learning-library","word-embeddings"],"_language":"Python","_homepage":null,"_description":"magnitude: A fast, efficient universal vector embedding utility package.","_organization":"plasticityai","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2020-07-17T00:00:00.000Z","_created_at":"2018-02-24T00:00:00.000Z","_age_weeks":251,"_stars_per_week":6.14,"_pop_contributor_count":4,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["plasticityai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":59,"_pop_updated_since_days":29,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":29,"_pop_recent_releases_adjusted_count":29,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":6,"_pop_score":21.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/plasticityai/magnitude/master/README.md","_readme_localurl":"plasticityai~magnitude~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/plasticityai/magnitude/master/requirements.txt","https://raw.githubusercontent.com/plasticityai/magnitude/master/setup.py"],"_requirements_localurls":["plasticityai~magnitude~requirements.txt","plasticityai~magnitude~setup.py"]},{"index":596,"category":"data","githuburl":"https://github.com/uber/petastorm","featured":null,"links":null,"description":null,"_repopath":"uber/petastorm","_reponame":"petastorm","_stars":1543,"_forks":265,"_watches":41,"_topics":["tensorflow","pytorch","deep-learning","machine-learning","sysml","pyspark","pyarrow","parquet","parquet-files"],"_language":"Python","_homepage":"","_description":"Petastorm library enables single machine or distributed training and evaluation of deep learning models from datasets in Apache Parquet format. It supports ML frameworks such as Tensorflow, Pytorch, and PySpark and can be used from pure Python code.","_organization":"uber","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-06-15T00:00:00.000Z","_age_weeks":235,"_stars_per_week":6.55,"_pop_contributor_count":46,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["databricks","netflix","uber"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.46,"_pop_updated_issues_count":13,"_pop_closed_issues_count":5,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":13.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":10,"_pop_score":44.55,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/uber/petastorm/master/README.rst","_readme_localurl":"uber~petastorm~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/petastorm/master/setup.py"],"_requirements_localurls":["uber~petastorm~setup.py"]},{"index":311,"category":"util","githuburl":"https://github.com/linkedin/shiv","featured":null,"links":null,"description":null,"_repopath":"linkedin/shiv","_reponame":"shiv","_stars":1532,"_forks":84,"_watches":26,"_topics":[],"_language":"Python","_homepage":"","_description":"shiv is a command line utility for building fully self contained Python zipapps as outlined in PEP 441, but with all their dependencies included.","_organization":"linkedin","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2018-03-13T00:00:00.000Z","_age_weeks":248,"_stars_per_week":6.16,"_pop_contributor_count":39,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lincolnloop","linkedin","mam-dev"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.21,"_pop_updated_issues_count":4,"_pop_closed_issues_count":2,"_pop_created_since_days":58,"_pop_updated_since_days":2,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":4.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":8,"_pop_score":35.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/linkedin/shiv/master/README.md","_readme_localurl":"linkedin~shiv~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/linkedin/shiv/master/pyproject.toml"],"_requirements_localurls":["linkedin~shiv~pyproject.toml"]},{"index":662,"category":"util","githuburl":"https://github.com/numba/llvmlite","featured":null,"links":null,"description":null,"_repopath":"numba/llvmlite","_reponame":"llvmlite","_stars":1526,"_forks":289,"_watches":54,"_topics":[],"_language":"Python","_homepage":"http://llvmlite.pydata.org/","_description":"llvmlite: A lightweight LLVM python binding for writing JIT compilers","_organization":"numba","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2014-08-07T00:00:00.000Z","_age_weeks":436,"_stars_per_week":3.5,"_pop_contributor_count":81,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.71,"_pop_updated_issues_count":30,"_pop_closed_issues_count":14,"_pop_created_since_days":102,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":30.0,"_pop_comment_count":87.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":458,"_pop_score":54.36,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/numba/llvmlite/master/README.rst","_readme_localurl":"numba~llvmlite~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/numba/llvmlite/master/setup.py"],"_requirements_localurls":["numba~llvmlite~setup.py"]},{"index":635,"category":"debug","githuburl":"https://github.com/alexmojaki/birdseye","featured":null,"links":null,"description":null,"_repopath":"alexmojaki/birdseye","_reponame":"birdseye","_stars":1524,"_forks":76,"_watches":43,"_topics":["python-debugger","python","debugger","debugging","birdseye","ast"],"_language":"JavaScript","_homepage":"https://birdseye.readthedocs.io","_description":"birdseye: Graphical Python debugger which lets you easily view the values of all evaluated expressions","_organization":"alexmojaki","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-05-18T00:00:00.000Z","_created_at":"2017-07-22T00:00:00.000Z","_age_weeks":282,"_stars_per_week":5.4,"_pop_contributor_count":10,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["actcommodities","cybernetica","skelevilletechnologysolutions"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":66,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":8,"_pop_score":26.84,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/alexmojaki/birdseye/master/README.rst","_readme_localurl":"alexmojaki~birdseye~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/alexmojaki/birdseye/master/setup.py","https://raw.githubusercontent.com/alexmojaki/birdseye/master/pyproject.toml"],"_requirements_localurls":["alexmojaki~birdseye~setup.py","alexmojaki~birdseye~pyproject.toml"]},{"index":795,"category":"web","githuburl":"https://github.com/starlite-api/starlite","featured":null,"links":null,"description":null,"_repopath":"starlite-api/starlite","_reponame":"starlite","_stars":1520,"_forks":141,"_watches":22,"_topics":["python","api","rest","mypy","pydantic","types","asgi","json","openapi","redoc","starlette"],"_language":"Python","_homepage":"https://starlite-api.github.io/starlite/","_description":"starlite: Light, Flexible and Extensible ASGI API framework","_organization":"starlite-api","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2021-12-06T00:00:00.000Z","_age_weeks":54,"_stars_per_week":28.15,"_pop_contributor_count":71,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["safehousetechnologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":19.87,"_pop_updated_issues_count":437,"_pop_closed_issues_count":412,"_pop_created_since_days":13,"_pop_updated_since_days":0,"_pop_recent_releases_count":119,"_pop_recent_releases_estimated_tags":112,"_pop_recent_releases_adjusted_count":119,"_pop_issue_count":437.0,"_pop_comment_count":889.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":78,"_pop_score":53.6,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/starlite-api/starlite/master/README.md","_readme_localurl":"starlite-api~starlite~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/starlite-api/starlite/master/pyproject.toml"],"_requirements_localurls":["starlite-api~starlite~pyproject.toml"]},{"index":799,"category":"web","githuburl":"https://github.com/pallets/quart","featured":null,"links":null,"description":null,"_repopath":"pallets/quart","_reponame":"quart","_stars":1509,"_forks":93,"_watches":24,"_topics":["asyncio","python","http-server","asgi","quart"],"_language":"Python","_homepage":"https://quart.palletsprojects.com","_description":"quart: An async Python micro framework for building web applications. ","_organization":"pallets","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-11-10T00:00:00.000Z","_age_weeks":266,"_stars_per_week":5.66,"_pop_contributor_count":80,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["none"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.81,"_pop_updated_issues_count":28,"_pop_closed_issues_count":25,"_pop_created_since_days":62,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":28.0,"_pop_comment_count":29.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":18,"_pop_score":44.54,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/quart/master/README.rst","_readme_localurl":"pallets~quart~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/quart/master/pyproject.toml"],"_requirements_localurls":["pallets~quart~pyproject.toml"]},{"index":458,"category":"ml-dl","githuburl":"https://github.com/nebuly-ai/nebullvm","featured":null,"links":null,"description":null,"_repopath":"nebuly-ai/nebullvm","_reponame":"nebullvm","_stars":1504,"_forks":70,"_watches":16,"_topics":["deep-learning","pytorch","onnx","machine-learning","tensorflow","tvm","openvino","tensorrt","huggingface","compiler","computing","inference","neural-network","pypi","quantization"],"_language":"Python","_homepage":"","_description":"nebullvm: Accelerate AI models leveraging best-of-breed optimization techniques \ud83d\ude80","_organization":"nebuly-ai","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2022-02-12T00:00:00.000Z","_age_weeks":44,"_stars_per_week":33.96,"_pop_contributor_count":11,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nebuly","nebuly-ai","nebuly|epfl","nebuly|ethzurich"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.23,"_pop_updated_issues_count":48,"_pop_closed_issues_count":30,"_pop_created_since_days":10,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":48.0,"_pop_comment_count":19.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":2,"_pop_score":35.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nebuly-ai/nebullvm/master/README.md","_readme_localurl":"nebuly-ai~nebullvm~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nebuly-ai/nebullvm/master/requirements.txt","https://raw.githubusercontent.com/nebuly-ai/nebullvm/master/setup.py"],"_requirements_localurls":["nebuly-ai~nebullvm~requirements.txt","nebuly-ai~nebullvm~setup.py"]},{"index":205,"category":"debug","githuburl":"https://github.com/alexmojaki/heartrate","featured":null,"links":null,"description":null,"_repopath":"alexmojaki/heartrate","_reponame":"heartrate","_stars":1499,"_forks":120,"_watches":30,"_topics":["python","visualization","debugger"],"_language":"Python","_homepage":null,"_description":"heartrate: Simple real time visualisation of the execution of a Python program.","_organization":"alexmojaki","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2021-11-13T00:00:00.000Z","_created_at":"2019-04-24T00:00:00.000Z","_age_weeks":190,"_stars_per_week":7.86,"_pop_contributor_count":3,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":44,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":6.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alexmojaki/heartrate/master/README.md","_readme_localurl":"alexmojaki~heartrate~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/alexmojaki/heartrate/master/setup.py"],"_requirements_localurls":["alexmojaki~heartrate~setup.py"]},{"index":612,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-mock","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-mock","_reponame":"pytest-mock","_stars":1493,"_forks":119,"_watches":34,"_topics":["pytest","mock","hacktoberfest"],"_language":"Python","_homepage":"https://pytest-mock.readthedocs.io/en/latest/","_description":"pytest-mock: Thin-wrapper around the mock package for easier use with pytest","_organization":"pytest-dev","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2014-07-17T00:00:00.000Z","_age_weeks":439,"_stars_per_week":3.4,"_pop_contributor_count":64,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["esss","freelancer,upforhire","nordsoftware","wayfair"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.08,"_pop_updated_issues_count":26,"_pop_closed_issues_count":26,"_pop_created_since_days":103,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":26.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":3125,"_pop_score":57.46,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-mock/master/README.rst","_readme_localurl":"pytest-dev~pytest-mock~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-mock/master/setup.py"],"_requirements_localurls":["pytest-dev~pytest-mock~setup.py"]},{"index":224,"category":"sim","githuburl":"https://github.com/google/brax","featured":null,"links":null,"description":null,"_repopath":"google/brax","_reponame":"brax","_stars":1479,"_forks":148,"_watches":31,"_topics":["jax","reinforcement-learning","robotics","physics-simulation"],"_language":"Jupyter Notebook","_homepage":"","_description":"brax: Massively parallel rigidbody physics simulation on accelerator hardware.","_organization":"google","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2021-06-02T00:00:00.000Z","_age_weeks":80,"_stars_per_week":18.32,"_pop_contributor_count":25,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["drexeluniversity","instadeep"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.4,"_pop_updated_issues_count":41,"_pop_closed_issues_count":23,"_pop_created_since_days":19,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":41.0,"_pop_comment_count":79.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":11,"_pop_score":39.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/brax/master/README.md","_readme_localurl":"google~brax~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/brax/master/setup.py"],"_requirements_localurls":["google~brax~setup.py"]},{"index":498,"category":"ml-dl","githuburl":"https://github.com/vt-vl-lab/fgvc","featured":null,"links":null,"description":null,"_repopath":"vt-vl-lab/fgvc","_reponame":"FGVC","_stars":1473,"_forks":237,"_watches":68,"_topics":[],"_language":"Python","_homepage":null,"_description":"FGVC: [ECCV 2020] Flow-edge Guided Video Completion ","_organization":"vt-vl-lab","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2021-12-14T00:00:00.000Z","_created_at":"2020-09-09T00:00:00.000Z","_age_weeks":118,"_stars_per_week":12.41,"_pop_contributor_count":3,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["meta","virginiatech"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":4,"_pop_closed_issues_count":2,"_pop_created_since_days":28,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":16.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vt-vl-lab/fgvc/master/README.md","_readme_localurl":"vt-vl-lab~fgvc~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":436,"category":"nlp","githuburl":"https://github.com/recognai/rubrix","featured":null,"links":null,"description":null,"_repopath":"recognai/rubrix","_reponame":"argilla","_stars":1469,"_forks":134,"_watches":18,"_topics":["python","data-science","human-in-the-loop","natural-language-processing","mlops","artificial-intelligence","knowledge-graph","developer-tools","text-labeling","annotation-tool","nlp","machine-learning","active-learning","weak-supervision","weakly-supervised-learning","spacy","text-classification","dataops","text-annotation","hacktoberfest"],"_language":"Python","_homepage":"https://docs.argilla.io","_description":"argilla: \u2728 Open-source tool for data-centric NLP. Argilla helps domain experts and data teams to build better NLP datasets in less time.","_organization":"recognai","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2021-04-28T00:00:00.000Z","_age_weeks":85,"_stars_per_week":17.14,"_pop_contributor_count":33,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aarhusuniversity,vestas","argilla.io","maxplanckcomputing&datafacility","recogai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.4,"_pop_updated_issues_count":364,"_pop_closed_issues_count":231,"_pop_created_since_days":20,"_pop_updated_since_days":0,"_pop_recent_releases_count":30,"_pop_recent_releases_estimated_tags":52,"_pop_recent_releases_adjusted_count":30,"_pop_issue_count":369.0,"_pop_comment_count":470.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":4,"_pop_score":49.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/recognai/rubrix/master/README.md","_readme_localurl":"recognai~rubrix~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/recognai/rubrix/master/setup.py","https://raw.githubusercontent.com/recognai/rubrix/master/pyproject.toml"],"_requirements_localurls":["recognai~rubrix~setup.py","recognai~rubrix~pyproject.toml"]},{"index":531,"category":"ml-dl","githuburl":"https://github.com/neuralmagic/sparseml","featured":null,"links":null,"description":null,"_repopath":"neuralmagic/sparseml","_reponame":"sparseml","_stars":1455,"_forks":104,"_watches":36,"_topics":["pytorch","keras","model-sparsification","sparsification-recipes","tensorflow","smaller-models","deep-learning-library","deep-learning-algorithms","deep-learning-models","automl","pruning-algorithms","sparsity","sparsification","recipe-driven-approaches","pruning","computer-vision-algorithms","object-detection","image-classification","nlp","onnx"],"_language":"Python","_homepage":"","_description":"sparseml: Libraries for applying sparsification recipes to neural networks with a few lines of code, enabling faster and smaller models","_organization":"neuralmagic","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2020-12-11T00:00:00.000Z","_age_weeks":105,"_stars_per_week":13.8,"_pop_contributor_count":36,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["neuralmagic"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.13,"_pop_updated_issues_count":242,"_pop_closed_issues_count":216,"_pop_created_since_days":25,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":242.0,"_pop_comment_count":161.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":9,"_pop_score":43.6,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/neuralmagic/sparseml/master/README.md","_readme_localurl":"neuralmagic~sparseml~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/neuralmagic/sparseml/master/setup.py","https://raw.githubusercontent.com/neuralmagic/sparseml/master/pyproject.toml"],"_requirements_localurls":["neuralmagic~sparseml~setup.py","neuralmagic~sparseml~pyproject.toml"]},{"index":703,"category":"util","githuburl":"https://github.com/openai/openai-python","featured":null,"links":null,"description":null,"_repopath":"openai/openai-python","_reponame":"openai-python","_stars":1433,"_forks":345,"_watches":52,"_topics":[],"_language":"Python","_homepage":null,"_description":"openai/openai-python","_organization":"openai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2020-10-25T00:00:00.000Z","_age_weeks":112,"_stars_per_week":12.78,"_pop_contributor_count":26,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoft","openai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.87,"_pop_updated_issues_count":38,"_pop_closed_issues_count":21,"_pop_created_since_days":26,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":20,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":38.0,"_pop_comment_count":35.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":12,"_pop_score":40.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/openai-python/master/README.md","_readme_localurl":"openai~openai-python~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/openai-python/master/setup.py","https://raw.githubusercontent.com/openai/openai-python/master/pyproject.toml"],"_requirements_localurls":["openai~openai-python~setup.py","openai~openai-python~pyproject.toml"]},{"index":591,"category":"template","githuburl":"https://github.com/buuntu/fastapi-react","featured":null,"links":null,"description":null,"_repopath":"buuntu/fastapi-react","_reponame":"fastapi-react","_stars":1428,"_forks":241,"_watches":35,"_topics":["fastapi","postgres","cookiecutter","react","react-admin","nginx","boilerplate","full-stack","typescript","sqlalchemy","jwt","oauth2","docker"],"_language":"Python","_homepage":"","_description":"fastapi-react: \ud83d\ude80 Cookiecutter Template for FastAPI + React Projects. Using PostgreSQL, SQLAlchemy, and Docker","_organization":"buuntu","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-02-18T00:00:00.000Z","_created_at":"2020-03-21T00:00:00.000Z","_age_weeks":143,"_stars_per_week":9.97,"_pop_contributor_count":13,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","jasonhoku"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":33,"_pop_updated_since_days":10,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":7,"_pop_score":24.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/buuntu/fastapi-react/master/README.md","_readme_localurl":"buuntu~fastapi-react~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":638,"category":"perf","githuburl":"https://github.com/dask/distributed","featured":null,"links":null,"description":null,"_repopath":"dask/distributed","_reponame":"distributed","_stars":1428,"_forks":666,"_watches":59,"_topics":["pydata","dask","distributed-computing","python","hacktoberfest"],"_language":"Python","_homepage":"https://distributed.dask.org","_description":"distributed: A distributed task scheduler for Dask","_organization":"dask","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2015-09-13T00:00:00.000Z","_age_weeks":379,"_stars_per_week":3.77,"_pop_contributor_count":301,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["coiled"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.67,"_pop_updated_issues_count":479,"_pop_closed_issues_count":300,"_pop_created_since_days":88,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":26,"_pop_issue_count":479.0,"_pop_comment_count":1204.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":3056,"_pop_score":68.77,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dask/distributed/master/README.rst","_readme_localurl":"dask~distributed~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dask/distributed/master/requirements.txt","https://raw.githubusercontent.com/dask/distributed/master/setup.py"],"_requirements_localurls":["dask~distributed~requirements.txt","dask~distributed~setup.py"]},{"index":861,"category":"jupyter","githuburl":"https://github.com/jupyter/nbconvert","featured":null,"links":null,"description":null,"_repopath":"jupyter/nbconvert","_reponame":"nbconvert","_stars":1423,"_forks":509,"_watches":50,"_topics":[],"_language":"Python","_homepage":"https://nbconvert.readthedocs.io/","_description":"nbconvert: Jupyter Notebook Conversion","_organization":"jupyter","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":401,"_stars_per_week":3.54,"_pop_contributor_count":254,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","netflix","quansight-labs","simularesearchlaboratory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.06,"_pop_updated_issues_count":93,"_pop_closed_issues_count":44,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":19,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":19,"_pop_issue_count":93.0,"_pop_comment_count":119.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":4472,"_pop_score":66.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/nbconvert/master/README.md","_readme_localurl":"jupyter~nbconvert~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/nbconvert/master/pyproject.toml"],"_requirements_localurls":["jupyter~nbconvert~pyproject.toml"]},{"index":324,"category":"security","githuburl":"https://github.com/pyupio/safety","featured":null,"links":null,"description":null,"_repopath":"pyupio/safety","_reponame":"safety","_stars":1421,"_forks":123,"_watches":32,"_topics":["python","security","security-vulnerability","travis","vulnerability-scanners","vulnerability-detection"],"_language":"Python","_homepage":"https://pyup.io/safety/","_description":"Safety checks Python dependencies for known security vulnerabilities and suggests the proper remediations for vulnerabilities detected.","_organization":"pyupio","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-08T00:00:00.000Z","_created_at":"2016-10-19T00:00:00.000Z","_age_weeks":321,"_stars_per_week":4.42,"_pop_contributor_count":40,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["pyupio","syncsketch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.06,"_pop_updated_issues_count":63,"_pop_closed_issues_count":44,"_pop_created_since_days":75,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":63.0,"_pop_comment_count":38.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":1197,"_pop_score":52.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyupio/safety/master/README.md","_readme_localurl":"pyupio~safety~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyupio/safety/master/pyproject.toml"],"_requirements_localurls":["pyupio~safety~pyproject.toml"]},{"index":108,"category":"util","githuburl":"https://github.com/nficano/python-lambda","featured":null,"links":null,"description":null,"_repopath":"nficano/python-lambda","_reponame":"python-lambda","_stars":1415,"_forks":227,"_watches":31,"_topics":["python","aws","aws-lambda","microservices","serverless"],"_language":"Python","_homepage":"","_description":"python-lambda: A toolkit for developing and deploying serverless Python code in AWS Lambda. ","_organization":"nficano","_updated_at":"2022-12-10T00:00:00.000Z","_last_commit_date":"2022-06-03T00:00:00.000Z","_created_at":"2016-02-26T00:00:00.000Z","_age_weeks":355,"_stars_per_week":3.98,"_pop_contributor_count":48,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["charliehealth","gemovationlabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":83,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":61,"_pop_score":35.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nficano/python-lambda/master/README.md","_readme_localurl":"nficano~python-lambda~README.md","_requirements_filenames":["setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/nficano/python-lambda/master/setup.py","https://raw.githubusercontent.com/nficano/python-lambda/master/Pipfile"],"_requirements_localurls":["nficano~python-lambda~setup.py","nficano~python-lambda~Pipfile"]},{"index":378,"category":"ml-interpretability","githuburl":"https://github.com/oegedijk/explainerdashboard","featured":null,"links":null,"description":null,"_repopath":"oegedijk/explainerdashboard","_reponame":"explainerdashboard","_stars":1405,"_forks":184,"_watches":15,"_topics":["dash","shap-values","dashboard","model-predictions","data-scientists","explainer","interactive-dashboards","permutation-importances","shap","plotly","inner-workings","interactive-plots","xai-library","xai"],"_language":"Python","_homepage":"http://explainerdashboard.readthedocs.io","_description":"explainerdashboard: Quickly build Explainable AI dashboards that show the inner workings of so-called \"blackbox\" machine learning models.","_organization":"oegedijk","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2019-10-30T00:00:00.000Z","_age_weeks":163,"_stars_per_week":8.58,"_pop_contributor_count":16,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dtn","thoughtworks"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.15,"_pop_updated_issues_count":15,"_pop_closed_issues_count":7,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":23,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":15.0,"_pop_comment_count":30.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":151,"_pop_score":43.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/oegedijk/explainerdashboard/master/README.md","_readme_localurl":"oegedijk~explainerdashboard~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/oegedijk/explainerdashboard/master/requirements.txt","https://raw.githubusercontent.com/oegedijk/explainerdashboard/master/setup.py"],"_requirements_localurls":["oegedijk~explainerdashboard~requirements.txt","oegedijk~explainerdashboard~setup.py"]},{"index":429,"category":"jupyter","githuburl":"https://github.com/jupyter-lsp/jupyterlab-lsp","featured":null,"links":null,"description":null,"_repopath":"jupyter-lsp/jupyterlab-lsp","_reponame":"jupyterlab-lsp","_stars":1388,"_forks":116,"_watches":16,"_topics":["jupyterlab","jupyterlab-extension","language-server-protocol","jupyter-lab","lsp","linter","jupyter","jupyter-notebook","notebook","notebook-jupyter","ipython","autocompletion","julia-language","r"],"_language":"TypeScript","_homepage":"","_description":"jupyterlab-lsp: Coding assistance for JupyterLab (code navigation + hover suggestions + linters + autocompletion + rename) using Language Server Protocol","_organization":"jupyter-lsp","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-08-17T00:00:00.000Z","_age_weeks":174,"_stars_per_week":7.96,"_pop_contributor_count":45,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","quantstack","universityofoxford"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.71,"_pop_updated_issues_count":49,"_pop_closed_issues_count":29,"_pop_created_since_days":41,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":49.0,"_pop_comment_count":76.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":4,"_pop_score":44.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter-lsp/jupyterlab-lsp/master/README.md","_readme_localurl":"jupyter-lsp~jupyterlab-lsp~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":683,"category":"util","githuburl":"https://github.com/spotify/basic-pitch","featured":null,"links":null,"description":null,"_repopath":"spotify/basic-pitch","_reponame":"basic-pitch","_stars":1377,"_forks":68,"_watches":25,"_topics":["lightweight","machine-learning","midi","music","pitch-detection","polyphonic","transcription","audio","python","typescript"],"_language":"Python","_homepage":"https://basicpitch.io","_description":"basic-pitch: A lightweight yet powerful audio-to-MIDI converter with pitch bend detection","_organization":"spotify","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-08-30T00:00:00.000Z","_created_at":"2022-05-03T00:00:00.000Z","_age_weeks":32,"_stars_per_week":41.91,"_pop_contributor_count":7,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["christianclauss","spotify"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.58,"_pop_updated_issues_count":15,"_pop_closed_issues_count":6,"_pop_created_since_days":8,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":15.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":19.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/spotify/basic-pitch/master/README.md","_readme_localurl":"spotify~basic-pitch~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/spotify/basic-pitch/master/setup.py"],"_requirements_localurls":["spotify~basic-pitch~setup.py"]},{"index":149,"category":"data","githuburl":"https://github.com/simple-salesforce/simple-salesforce","featured":null,"links":null,"description":null,"_repopath":"simple-salesforce/simple-salesforce","_reponame":"simple-salesforce","_stars":1375,"_forks":606,"_watches":88,"_topics":["salesforce","api","api-client","python"],"_language":"Python","_homepage":null,"_description":"simple-salesforce: A very simple Salesforce.com REST API client for Python","_organization":"simple-salesforce","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2013-01-17T00:00:00.000Z","_age_weeks":517,"_stars_per_week":2.66,"_pop_contributor_count":75,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[":+1:","salesforce"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.21,"_pop_updated_issues_count":29,"_pop_closed_issues_count":11,"_pop_created_since_days":121,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":29.0,"_pop_comment_count":46.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":25,"_pop_score":46.6,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/simple-salesforce/simple-salesforce/master/README.rst","_readme_localurl":"simple-salesforce~simple-salesforce~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/simple-salesforce/simple-salesforce/master/setup.py"],"_requirements_localurls":["simple-salesforce~simple-salesforce~setup.py"]},{"index":284,"category":"data","githuburl":"https://github.com/sdispater/orator","featured":null,"links":null,"description":null,"_repopath":"sdispater/orator","_reponame":"orator","_stars":1373,"_forks":165,"_watches":46,"_topics":["python","orm","database"],"_language":"Python","_homepage":"https://orator-orm.com","_description":"orator: The Orator ORM provides a simple yet beautiful ActiveRecord implementation.","_organization":"sdispater","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-03-13T00:00:00.000Z","_created_at":"2015-05-24T00:00:00.000Z","_age_weeks":395,"_stars_per_week":3.47,"_pop_contributor_count":32,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bellawatt","masoniteframework"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":92,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":4,"_pop_score":27.07,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sdispater/orator/master/README.rst","_readme_localurl":"sdispater~orator~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sdispater/orator/master/pyproject.toml"],"_requirements_localurls":["sdispater~orator~pyproject.toml"]},{"index":438,"category":"gis","githuburl":"https://github.com/giswqs/leafmap","featured":null,"links":null,"description":null,"_repopath":"giswqs/leafmap","_reponame":"leafmap","_stars":1371,"_forks":165,"_watches":40,"_topics":["ipyleaflet","folium","mapping","python","geopython","jupyter-notebook","jupyter","gis","dataviz","data-science","whiteboxtools","geospatial","geospatial-analysis","leafmap","streamlit","streamlit-webapp","plotly","pydeck","keplergl"],"_language":"Python","_homepage":"https://leafmap.org","_description":"leafmap: A Python package for interactive mapping and geospatial analysis with minimal coding in a Jupyter environment","_organization":"giswqs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2021-03-10T00:00:00.000Z","_age_weeks":92,"_stars_per_week":14.79,"_pop_contributor_count":19,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["germanaerospacecenter(dlr)","naxa","universityoftennessee"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.79,"_pop_updated_issues_count":40,"_pop_closed_issues_count":37,"_pop_created_since_days":22,"_pop_updated_since_days":0,"_pop_recent_releases_count":42,"_pop_recent_releases_estimated_tags":35,"_pop_recent_releases_adjusted_count":42,"_pop_issue_count":40.0,"_pop_comment_count":85.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":4,"_pop_score":44.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/giswqs/leafmap/master/README.md","_readme_localurl":"giswqs~leafmap~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/giswqs/leafmap/master/requirements.txt","https://raw.githubusercontent.com/giswqs/leafmap/master/setup.py"],"_requirements_localurls":["giswqs~leafmap~requirements.txt","giswqs~leafmap~setup.py"]},{"index":267,"category":"nlp","githuburl":"https://github.com/arxiv-vanity/arxiv-vanity","featured":null,"links":null,"description":null,"_repopath":"arxiv-vanity/arxiv-vanity","_reponame":"arxiv-vanity","_stars":1366,"_forks":87,"_watches":22,"_topics":["latex","academic-publishing","science","arxiv"],"_language":"Python","_homepage":"https://www.arxiv-vanity.com","_description":"arxiv-vanity: Renders papers from arXiv as responsive web pages so you don't have to squint at a PDF.","_organization":"arxiv-vanity","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-01-18T00:00:00.000Z","_created_at":"2017-08-12T00:00:00.000Z","_age_weeks":279,"_stars_per_week":4.89,"_pop_contributor_count":9,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["replicate"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":26,"_pop_closed_issues_count":15,"_pop_created_since_days":65,"_pop_updated_since_days":11,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":26.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":3,"_pop_score":23.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/arxiv-vanity/arxiv-vanity/master/README.md","_readme_localurl":"arxiv-vanity~arxiv-vanity~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/arxiv-vanity/arxiv-vanity/master/requirements.txt"],"_requirements_localurls":["arxiv-vanity~arxiv-vanity~requirements.txt"]},{"index":721,"category":"util","githuburl":"https://github.com/omry/omegaconf","featured":null,"links":null,"description":null,"_repopath":"omry/omegaconf","_reponame":"omegaconf","_stars":1360,"_forks":71,"_watches":17,"_topics":["python","yaml","yaml-configuration","configuration-files","configuration-loader","python-types","schema-validator"],"_language":"Python","_homepage":"","_description":"omegaconf: Flexible Python configuration system. The last one you will ever need.","_organization":"omry","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-09-03T00:00:00.000Z","_age_weeks":224,"_stars_per_week":6.07,"_pop_contributor_count":28,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ceph","facebook","facebookairesearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.33,"_pop_updated_issues_count":51,"_pop_closed_issues_count":35,"_pop_created_since_days":52,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":51.0,"_pop_comment_count":34.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":58,"_pop_score":45.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/omry/omegaconf/master/README.md","_readme_localurl":"omry~omegaconf~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/omry/omegaconf/master/setup.py","https://raw.githubusercontent.com/omry/omegaconf/master/pyproject.toml"],"_requirements_localurls":["omry~omegaconf~setup.py","omry~omegaconf~pyproject.toml"]},{"index":298,"category":"crypto","githuburl":"https://github.com/blankly-finance/blankly","featured":null,"links":null,"description":null,"_repopath":"blankly-finance/blankly","_reponame":"blankly","_stars":1357,"_forks":173,"_watches":28,"_topics":["cryptocurrency","bot-framework","investment","bots","bot","coinbase","binance","blankly","stocks","platform","framework","trading","trading-bot","trading-strategies","python","crypto","algotrading"],"_language":"Python","_homepage":"https://package.blankly.finance","_description":"blankly: \ud83d\ude80 \ud83d\udcb8 Easily build, backtest and deploy your algo in just a few lines of code. Trade stocks, cryptos, and forex across exchanges w/ one package.","_organization":"blankly-finance","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-08T00:00:00.000Z","_created_at":"2021-03-09T00:00:00.000Z","_age_weeks":92,"_stars_per_week":14.61,"_pop_contributor_count":16,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","student"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.13,"_pop_updated_issues_count":16,"_pop_closed_issues_count":10,"_pop_created_since_days":22,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":16.0,"_pop_comment_count":29.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":4,"_pop_score":39.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/blankly-finance/blankly/master/README.md","_readme_localurl":"blankly-finance~blankly~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/blankly-finance/blankly/master/setup.py"],"_requirements_localurls":["blankly-finance~blankly~setup.py"]},{"index":613,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-cov","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-cov","_reponame":"pytest-cov","_stars":1356,"_forks":190,"_watches":34,"_topics":["pytest","python"],"_language":"Python","_homepage":"","_description":"pytest-cov: Coverage plugin for pytest.","_organization":"pytest-dev","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2014-04-17T00:00:00.000Z","_age_weeks":452,"_stars_per_week":3.0,"_pop_contributor_count":81,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["freelancer,upforhire","nordsoftware"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.73,"_pop_updated_issues_count":39,"_pop_closed_issues_count":18,"_pop_created_since_days":106,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":39.0,"_pop_comment_count":78.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":6181,"_pop_score":56.35,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-cov/master/README.rst","_readme_localurl":"pytest-dev~pytest-cov~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-cov/master/setup.py"],"_requirements_localurls":["pytest-dev~pytest-cov~setup.py"]},{"index":478,"category":"ml-dl","githuburl":"https://github.com/tensorflow/mesh","featured":null,"links":null,"description":null,"_repopath":"tensorflow/mesh","_reponame":"mesh","_stars":1344,"_forks":235,"_watches":44,"_topics":[],"_language":"Python","_homepage":"","_description":"Mesh TensorFlow: Model Parallelism Made Easier","_organization":"tensorflow","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-10-04T00:00:00.000Z","_created_at":"2018-09-20T00:00:00.000Z","_age_weeks":221,"_stars_per_week":6.07,"_pop_contributor_count":48,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","uncandhuggingface"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":52,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":40,"_pop_score":34.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/mesh/master/README.md","_readme_localurl":"tensorflow~mesh~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorflow/mesh/master/setup.py"],"_requirements_localurls":["tensorflow~mesh~setup.py"]},{"index":318,"category":"gamedev","githuburl":"https://github.com/pythonarcade/arcade","featured":1.0,"links":null,"description":null,"_repopath":"pythonarcade/arcade","_reponame":"arcade","_stars":1343,"_forks":252,"_watches":56,"_topics":["python3","python","arcade-framework","arcade-api","arcade-learning-environment","opengl","educational-technology","educational-resources"],"_language":"Python","_homepage":"http://arcade.academy","_description":"arcade: Easy to use Python library for creating 2D arcade games.","_organization":"pythonarcade","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2016-01-04T00:00:00.000Z","_age_weeks":363,"_stars_per_week":3.7,"_pop_contributor_count":131,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["freelance,opentofull-timeemployment","optimizely","vw-dilab","zetta.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.96,"_pop_updated_issues_count":135,"_pop_closed_issues_count":102,"_pop_created_since_days":85,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":135.0,"_pop_comment_count":153.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":112,"_pop_score":60.61,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pythonarcade/arcade/master/README.rst","_readme_localurl":"pythonarcade~arcade~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pythonarcade/arcade/master/requirements.txt","https://raw.githubusercontent.com/pythonarcade/arcade/master/setup.py"],"_requirements_localurls":["pythonarcade~arcade~requirements.txt","pythonarcade~arcade~setup.py"]},{"index":460,"category":"nlp","githuburl":"https://github.com/google-research/language","featured":null,"links":null,"description":null,"_repopath":"google-research/language","_reponame":"language","_stars":1339,"_forks":311,"_watches":65,"_topics":["natural-language-processing","machine-learning","research"],"_language":"Python","_homepage":"https://ai.google/research/teams/language/","_description":"language: Shared repository for open-sourced projects from the Google AI Language team.","_organization":"google-research","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-10-16T00:00:00.000Z","_age_weeks":217,"_stars_per_week":6.15,"_pop_contributor_count":10,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","googleresearch","universityofwashington"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":16,"_pop_closed_issues_count":3,"_pop_created_since_days":51,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":16.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":20,"_pop_score":32.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google-research/language/master/README.md","_readme_localurl":"google-research~language~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google-research/language/master/setup.py"],"_requirements_localurls":["google-research~language~setup.py"]},{"index":876,"category":"study","githuburl":"https://github.com/rasbt/machine-learning-book","featured":null,"links":null,"description":null,"_repopath":"rasbt/machine-learning-book","_reponame":"machine-learning-book","_stars":1332,"_forks":496,"_watches":27,"_topics":["machine-learning","scikit-learn","deep-learning","neural-networks","pytorch"],"_language":"Jupyter Notebook","_homepage":"https://sebastianraschka.com/books/#machine-learning-with-pytorch-and-scikit-learn","_description":"machine-learning-book: Code Repository for Machine Learning with PyTorch and Scikit-Learn","_organization":"rasbt","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2021-12-19T00:00:00.000Z","_age_weeks":52,"_stars_per_week":25.55,"_pop_contributor_count":9,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","lightning-ai,universityofwisconsin-madison"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.19,"_pop_updated_issues_count":31,"_pop_closed_issues_count":23,"_pop_created_since_days":12,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":31.0,"_pop_comment_count":31.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":10,"_pop_score":32.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/machine-learning-book/master/README.md","_readme_localurl":"rasbt~machine-learning-book~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":659,"category":"ml","githuburl":"https://github.com/tensorly/tensorly","featured":null,"links":null,"description":null,"_repopath":"tensorly/tensorly","_reponame":"tensorly","_stars":1331,"_forks":261,"_watches":45,"_topics":["machine-learning","tensor","decomposition","tensor-algebra","tensorly","tensor-learning","python","tensor-methods","pytorch","mxnet","jax","tensorflow","cupy","numpy","tensor-decomposition","tensor-factorization","tensor-regression","regression"],"_language":"Python","_homepage":"http://tensorly.org","_description":"TensorLy: Tensor Learning in Python.","_organization":"tensorly","_updated_at":"2022-12-10T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2016-10-21T00:00:00.000Z","_age_weeks":321,"_stars_per_week":4.14,"_pop_contributor_count":57,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["inria","nvidiaai","quansight","simulametropolitan","universityofcalifornia,losangeles"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.83,"_pop_updated_issues_count":33,"_pop_closed_issues_count":22,"_pop_created_since_days":75,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":33.0,"_pop_comment_count":47.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":8377,"_pop_score":60.62,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/tensorly/tensorly/master/README.rst","_readme_localurl":"tensorly~tensorly~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorly/tensorly/master/requirements.txt","https://raw.githubusercontent.com/tensorly/tensorly/master/setup.py"],"_requirements_localurls":["tensorly~tensorly~requirements.txt","tensorly~tensorly~setup.py"]},{"index":898,"category":"ml-ops","githuburl":"https://github.com/hi-primus/optimus","featured":null,"links":null,"description":null,"_repopath":"hi-primus/optimus","_reponame":"optimus","_stars":1325,"_forks":223,"_watches":41,"_topics":["spark","pyspark","data-wrangling","bigdata","big-data-cleaning","data-science","data-cleansing","data-cleaner","data-transformation","machine-learning","data-profiling","data-extraction","data-exploration","data-analysis","data-preparation","cudf","dask","dask-cudf","data-cleaning"],"_language":"Python","_homepage":"https://hi-optimus.com","_description":"optimus: :truck: Agile Data Preparation Workflows made\u00a0easy with Pandas, Dask, cuDF, Dask-cuDF, Vaex and PySpark","_organization":"hi-primus","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-17T00:00:00.000Z","_created_at":"2017-07-13T00:00:00.000Z","_age_weeks":283,"_stars_per_week":4.67,"_pop_contributor_count":24,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["boitas","bumblebee","life","pyupio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.33,"_pop_updated_issues_count":22,"_pop_closed_issues_count":16,"_pop_created_since_days":66,"_pop_updated_since_days":2,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":23,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":22.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":7,"_pop_score":41.25,"_readme_filename":"","_readme_giturl":"","_readme_localurl":"","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":317,"category":"gamedev","githuburl":"https://github.com/pyglet/pyglet","featured":null,"links":null,"description":null,"_repopath":"pyglet/pyglet","_reponame":"pyglet","_stars":1318,"_forks":248,"_watches":29,"_topics":["pyglet","python","opengl","gamedev","scientific-visualization"],"_language":"Python","_homepage":"http://pyglet.org","_description":"pyglet is a cross-platform windowing and multimedia library for Python, for developing games and other visually rich applications.","_organization":"pyglet","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-06-09T00:00:00.000Z","_age_weeks":184,"_stars_per_week":7.16,"_pop_contributor_count":140,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["itv","tomtom-international"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.25,"_pop_updated_issues_count":92,"_pop_closed_issues_count":65,"_pop_created_since_days":43,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":92.0,"_pop_comment_count":261.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":225,"_pop_score":56.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyglet/pyglet/master/README.md","_readme_localurl":"pyglet~pyglet~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyglet/pyglet/master/setup.py"],"_requirements_localurls":["pyglet~pyglet~setup.py"]},{"index":450,"category":"gis","githuburl":"https://github.com/jupyter-widgets/ipyleaflet","featured":null,"links":null,"description":null,"_repopath":"jupyter-widgets/ipyleaflet","_reponame":"ipyleaflet","_stars":1316,"_forks":348,"_watches":61,"_topics":["jupyterlab-extension","leaflet","visualization","jupyter"],"_language":"JavaScript","_homepage":"https://ipyleaflet.readthedocs.io","_description":"ipyleaflet: A Jupyter - Leaflet.js bridge","_organization":"jupyter-widgets","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-10-27T00:00:00.000Z","_created_at":"2014-05-07T00:00:00.000Z","_age_weeks":449,"_stars_per_week":2.93,"_pop_contributor_count":81,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","databricks","quantstack"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.98,"_pop_updated_issues_count":40,"_pop_closed_issues_count":22,"_pop_created_since_days":105,"_pop_updated_since_days":2,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":40.0,"_pop_comment_count":72.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":13,"_pop_score":46.28,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter-widgets/ipyleaflet/master/README.md","_readme_localurl":"jupyter-widgets~ipyleaflet~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter-widgets/ipyleaflet/master/setup.py","https://raw.githubusercontent.com/jupyter-widgets/ipyleaflet/master/pyproject.toml"],"_requirements_localurls":["jupyter-widgets~ipyleaflet~setup.py","jupyter-widgets~ipyleaflet~pyproject.toml"]},{"index":877,"category":"time-series","githuburl":"https://github.com/alkaline-ml/pmdarima","featured":null,"links":null,"description":null,"_repopath":"alkaline-ml/pmdarima","_reponame":"pmdarima","_stars":1290,"_forks":223,"_watches":36,"_topics":["arima","time-series","forecasting","forecasting-models","python","econometrics","pmdarima","machine-learning","sarimax"],"_language":"Python","_homepage":"https://www.alkaline-ml.com/pmdarima","_description":"pmdarima: A statistical library designed to fill the void in Python's time series analysis capabilities, including the equivalent of R's auto.arima function.","_organization":"alkaline-ml","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2017-03-30T00:00:00.000Z","_age_weeks":298,"_stars_per_week":4.32,"_pop_contributor_count":22,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["chivalrysoftware","microsoft","sevcosecurity","toyota-connected"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.46,"_pop_updated_issues_count":21,"_pop_closed_issues_count":10,"_pop_created_since_days":70,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":21.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":11,"_pop_score":41.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alkaline-ml/pmdarima/master/README.md","_readme_localurl":"alkaline-ml~pmdarima~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/alkaline-ml/pmdarima/master/requirements.txt","https://raw.githubusercontent.com/alkaline-ml/pmdarima/master/setup.py"],"_requirements_localurls":["alkaline-ml~pmdarima~requirements.txt","alkaline-ml~pmdarima~setup.py"]},{"index":766,"category":"diffusion","githuburl":"https://github.com/divamgupta/stable-diffusion-tensorflow","featured":null,"links":null,"description":null,"_repopath":"divamgupta/stable-diffusion-tensorflow","_reponame":"stable-diffusion-tensorflow","_stars":1288,"_forks":172,"_watches":19,"_topics":[],"_language":"Python","_homepage":"","_description":"stable-diffusion-tensorflow: Stable Diffusion in TensorFlow / Keras","_organization":"divamgupta","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-22T00:00:00.000Z","_created_at":"2022-09-15T00:00:00.000Z","_age_weeks":13,"_stars_per_week":94.91,"_pop_contributor_count":13,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.79,"_pop_updated_issues_count":56,"_pop_closed_issues_count":34,"_pop_created_since_days":3,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":56.0,"_pop_comment_count":94.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":4,"_pop_score":23.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/divamgupta/stable-diffusion-tensorflow/master/README.md","_readme_localurl":"divamgupta~stable-diffusion-tensorflow~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/divamgupta/stable-diffusion-tensorflow/master/requirements.txt","https://raw.githubusercontent.com/divamgupta/stable-diffusion-tensorflow/master/setup.py"],"_requirements_localurls":["divamgupta~stable-diffusion-tensorflow~requirements.txt","divamgupta~stable-diffusion-tensorflow~setup.py"]},{"index":676,"category":"gis","githuburl":"https://github.com/apache/incubator-sedona","featured":null,"links":null,"description":null,"_repopath":"apache/incubator-sedona","_reponame":"incubator-sedona","_stars":1282,"_forks":536,"_watches":101,"_topics":["cluster-computing","spatial-sql","geospatial","spatial-analysis","spatial-query","scala","java","python"],"_language":"Java","_homepage":"http://sedona.apache.org/","_description":"incubator-sedona: A cluster computing framework for processing large-scale geospatial data","_organization":"apache","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2015-04-24T00:00:00.000Z","_age_weeks":399,"_stars_per_week":3.21,"_pop_contributor_count":91,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bloomberg","grab","nttdata","wherobots"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.79,"_pop_updated_issues_count":52,"_pop_closed_issues_count":46,"_pop_created_since_days":93,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":52.0,"_pop_comment_count":62.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":45.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apache/incubator-sedona/master/README.md","_readme_localurl":"apache~incubator-sedona~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":391,"category":"data","githuburl":"https://github.com/mchong6/jojogan","featured":null,"links":null,"description":null,"_repopath":"mchong6/jojogan","_reponame":"JoJoGAN","_stars":1272,"_forks":185,"_watches":24,"_topics":["image-translation","gans","anime"],"_language":"Jupyter Notebook","_homepage":"","_description":"Official PyTorch repo for JoJoGAN: One Shot Face Stylization","_organization":"mchong6","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-02-05T00:00:00.000Z","_created_at":"2021-12-17T00:00:00.000Z","_age_weeks":52,"_stars_per_week":24.26,"_pop_contributor_count":3,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":12,"_pop_updated_since_days":11,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":12,"_pop_score":14.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mchong6/jojogan/master/README.md","_readme_localurl":"mchong6~jojogan~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":465,"category":"ml-dl","githuburl":"https://github.com/pytorch/torchrec","featured":null,"links":null,"description":null,"_repopath":"pytorch/torchrec","_reponame":"torchrec","_stars":1254,"_forks":206,"_watches":24,"_topics":["pytorch","gpu","deep-learning","cuda","recommender-system","recommendation-system","sharding"],"_language":"Python","_homepage":"","_description":"torchrec: Pytorch domain library for recommendation systems","_organization":"pytorch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2021-07-12T00:00:00.000Z","_age_weeks":75,"_stars_per_week":16.72,"_pop_contributor_count":132,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","facebookai","pytorch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.67,"_pop_updated_issues_count":312,"_pop_closed_issues_count":272,"_pop_created_since_days":17,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":312.0,"_pop_comment_count":699.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":568,"_pop_score":59.54,"_readme_filename":"","_readme_giturl":"","_readme_localurl":"","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/torchrec/master/requirements.txt","https://raw.githubusercontent.com/pytorch/torchrec/master/setup.py","https://raw.githubusercontent.com/pytorch/torchrec/master/pyproject.toml"],"_requirements_localurls":["pytorch~torchrec~requirements.txt","pytorch~torchrec~setup.py","pytorch~torchrec~pyproject.toml"]},{"index":514,"category":"data","githuburl":"https://github.com/agronholm/sqlacodegen","featured":null,"links":null,"description":null,"_repopath":"agronholm/sqlacodegen","_reponame":"sqlacodegen","_stars":1243,"_forks":194,"_watches":20,"_topics":[],"_language":"Python","_homepage":"","_description":"sqlacodegen: Automatic model code generator for SQLAlchemy","_organization":"agronholm","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2016-12-28T00:00:00.000Z","_age_weeks":311,"_stars_per_week":3.99,"_pop_contributor_count":16,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nextdaysolutionsoy"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.04,"_pop_updated_issues_count":20,"_pop_closed_issues_count":8,"_pop_created_since_days":73,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":20.0,"_pop_comment_count":50.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":3,"_pop_score":35.2,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/agronholm/sqlacodegen/master/README.rst","_readme_localurl":"agronholm~sqlacodegen~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/agronholm/sqlacodegen/master/pyproject.toml"],"_requirements_localurls":["agronholm~sqlacodegen~pyproject.toml"]},{"index":581,"category":"ml-dl","githuburl":"https://github.com/alpa-projects/alpa","featured":null,"links":null,"description":null,"_repopath":"alpa-projects/alpa","_reponame":"alpa","_stars":1234,"_forks":138,"_watches":20,"_topics":["deep-learning","machine-learning","compiler","distributed-training","high-performance-computing","alpa","jax","distributed-computing","llm","auto-parallelization"],"_language":"Python","_homepage":"https://alpa.ai","_description":"alpa: Training and serving large-scale neural networks","_organization":"alpa-projects","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2021-02-22T00:00:00.000Z","_age_weeks":95,"_stars_per_week":12.99,"_pop_contributor_count":26,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["carnegiemellonuniversity","pekinguniversity","ucberkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.83,"_pop_updated_issues_count":128,"_pop_closed_issues_count":101,"_pop_created_since_days":22,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":127.0,"_pop_comment_count":225.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":19,"_pop_score":47.97,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alpa-projects/alpa/master/README.md","_readme_localurl":"alpa-projects~alpa~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/alpa-projects/alpa/master/setup.py"],"_requirements_localurls":["alpa-projects~alpa~setup.py"]},{"index":885,"category":"time-series","githuburl":"https://github.com/aistream-peelout/flow-forecast","featured":null,"links":null,"description":null,"_repopath":"aistream-peelout/flow-forecast","_reponame":"flow-forecast","_stars":1231,"_forks":209,"_watches":20,"_topics":["deep-learning","pytorch","time-series-forecasting","time-series","transfer-learning","deep-neural-networks","transformer","forecasting","lstm","time-series-regression","state-of-the-art-models","anomaly-detection","time-series-analysis","hacktoberfest"],"_language":"Python","_homepage":"https://flow-forecast.atlassian.net/wiki/spaces/FF/overview","_description":"flow-forecast: Deep learning PyTorch library for time series forecasting, classification, and anomaly detection (originally for flood forecasting).","_organization":"aistream-peelout","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-08-15T00:00:00.000Z","_age_weeks":174,"_stars_per_week":7.05,"_pop_contributor_count":14,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["okratechnologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.37,"_pop_updated_issues_count":35,"_pop_closed_issues_count":26,"_pop_created_since_days":41,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":35.0,"_pop_comment_count":29.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":61,"_pop_score":40.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/README.md","_readme_localurl":"aistream-peelout~flow-forecast~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/requirements.txt","https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/setup.py"],"_requirements_localurls":["aistream-peelout~flow-forecast~requirements.txt","aistream-peelout~flow-forecast~setup.py"]},{"index":372,"category":"gis","githuburl":"https://github.com/microsoft/torchgeo","featured":null,"links":null,"description":null,"_repopath":"microsoft/torchgeo","_reponame":"torchgeo","_stars":1230,"_forks":144,"_watches":33,"_topics":["pytorch","torchvision","datasets","models","transforms","remote-sensing","deep-learning","earth-observation"],"_language":"Python","_homepage":"https://torchgeo.rtfd.io","_description":"TorchGeo: datasets, samplers, transforms, and pre-trained models for geospatial data","_organization":"microsoft","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2021-05-21T00:00:00.000Z","_age_weeks":82,"_stars_per_week":14.92,"_pop_contributor_count":27,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dronebase","microsoft","universityofillinoisaturbana-champaign"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.88,"_pop_updated_issues_count":202,"_pop_closed_issues_count":160,"_pop_created_since_days":19,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":202.0,"_pop_comment_count":309.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":13,"_pop_score":46.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/torchgeo/master/README.md","_readme_localurl":"microsoft~torchgeo~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/torchgeo/master/pyproject.toml"],"_requirements_localurls":["microsoft~torchgeo~pyproject.toml"]},{"index":829,"category":"study","githuburl":"https://github.com/huggingface/diffusion-models-class","featured":null,"links":null,"description":null,"_repopath":"huggingface/diffusion-models-class","_reponame":"diffusion-models-class","_stars":1220,"_forks":97,"_watches":61,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"diffusion-models-class: Materials for the Hugging Face Diffusion Models Course","_organization":"huggingface","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2022-10-13T00:00:00.000Z","_age_weeks":9,"_stars_per_week":127.46,"_pop_contributor_count":10,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["drcfsorg","huggingface","relx"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.31,"_pop_updated_issues_count":27,"_pop_closed_issues_count":25,"_pop_created_since_days":2,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":27.0,"_pop_comment_count":38.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":25.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/diffusion-models-class/master/README.md","_readme_localurl":"huggingface~diffusion-models-class~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":178,"category":"nlp","githuburl":"https://github.com/explosion/spacy-models","featured":null,"links":null,"description":null,"_repopath":"explosion/spacy-models","_reponame":"spacy-models","_stars":1217,"_forks":275,"_watches":48,"_topics":["spacy","nlp","natural-language-processing","machine-learning","models","machine-learning-models","statistical-models","spacy-models"],"_language":"Python","_homepage":"https://spacy.io","_description":"spacy-models: \ud83d\udcab Models for the spaCy Natural Language Processing (NLP) library","_organization":"explosion","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-03-14T00:00:00.000Z","_age_weeks":300,"_stars_per_week":4.05,"_pop_contributor_count":14,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cotonoha","explosion","founderexplosion"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.63,"_pop_updated_issues_count":5,"_pop_closed_issues_count":4,"_pop_created_since_days":70,"_pop_updated_since_days":0,"_pop_recent_releases_count":166,"_pop_recent_releases_estimated_tags":128,"_pop_recent_releases_adjusted_count":166,"_pop_issue_count":5.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":68,"_pop_score":43.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/spacy-models/master/README.md","_readme_localurl":"explosion~spacy-models~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":414,"category":"nlp","githuburl":"https://github.com/chrismattmann/tika-python","featured":null,"links":null,"description":null,"_repopath":"chrismattmann/tika-python","_reponame":"tika-python","_stars":1215,"_forks":223,"_watches":37,"_topics":["tika-server","python","tika-python","tika-server-jar","parser-interface","parse","translation-interface","usc","text-extraction","mime","buffer","memex","text-recognition","detection","recognition","nlp","nlp-machine-learning","nlp-library","covid-19","extraction"],"_language":"Python","_homepage":"","_description":"Tika-Python is a Python binding to the Apache Tika\u2122 REST services allowing Tika to be called natively in the Python community.","_organization":"chrismattmann","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2021-06-07T00:00:00.000Z","_created_at":"2014-06-26T00:00:00.000Z","_age_weeks":442,"_stars_per_week":2.75,"_pop_contributor_count":63,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nasa"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":10,"_pop_closed_issues_count":2,"_pop_created_since_days":103,"_pop_updated_since_days":19,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":10.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":37,"_pop_score":33.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/chrismattmann/tika-python/master/README.md","_readme_localurl":"chrismattmann~tika-python~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/chrismattmann/tika-python/master/requirements.txt","https://raw.githubusercontent.com/chrismattmann/tika-python/master/setup.py"],"_requirements_localurls":["chrismattmann~tika-python~requirements.txt","chrismattmann~tika-python~setup.py"]},{"index":474,"category":"nlp","githuburl":"https://github.com/neuralmagic/deepsparse","featured":null,"links":null,"description":null,"_repopath":"neuralmagic/deepsparse","_reponame":"deepsparse","_stars":1196,"_forks":73,"_watches":37,"_topics":["ml","machinelearning","pytorch","tensorflow","onnx","deepsparse-engine","sparsified-models","sparsification-recipe","inference","computer-vision","object-detection","pruning","quantization","pretrained-models","nlp","auto-ml","cpus","yolov3","sparsification","cpu-inference-api"],"_language":"Python","_homepage":"","_description":"deepsparse: Inference runtime offering GPU-class performance on CPUs and APIs to integrate ML into your application","_organization":"neuralmagic","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2020-12-14T00:00:00.000Z","_age_weeks":105,"_stars_per_week":11.39,"_pop_contributor_count":29,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["neuralmagic"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.83,"_pop_updated_issues_count":179,"_pop_closed_issues_count":159,"_pop_created_since_days":24,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":179.0,"_pop_comment_count":111.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":37.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/neuralmagic/deepsparse/master/README.md","_readme_localurl":"neuralmagic~deepsparse~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/neuralmagic/deepsparse/master/setup.py","https://raw.githubusercontent.com/neuralmagic/deepsparse/master/pyproject.toml"],"_requirements_localurls":["neuralmagic~deepsparse~setup.py","neuralmagic~deepsparse~pyproject.toml"]},{"index":435,"category":"data","githuburl":"https://github.com/sdv-dev/sdv","featured":null,"links":null,"description":null,"_repopath":"sdv-dev/sdv","_reponame":"SDV","_stars":1187,"_forks":189,"_watches":40,"_topics":["synthetic-data","machine-learning","relational-datasets","multi-table","time-series","synthetic-data-generation","sdv","data-generation","generative-adversarial-network","gan","gans","deep-learning","generative-ai","generative-model"],"_language":"Python","_homepage":"https://sdv.dev/SDV","_description":"SDV: Synthetic Data Generation for tabular, relational and time series data.","_organization":"sdv-dev","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2018-05-11T00:00:00.000Z","_age_weeks":240,"_stars_per_week":4.94,"_pop_contributor_count":41,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["precognit","pythiac"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.85,"_pop_updated_issues_count":160,"_pop_closed_issues_count":113,"_pop_created_since_days":56,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":160.0,"_pop_comment_count":131.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":7,"_pop_score":44.85,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sdv-dev/sdv/master/README.md","_readme_localurl":"sdv-dev~sdv~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sdv-dev/sdv/master/requirements.txt","https://raw.githubusercontent.com/sdv-dev/sdv/master/setup.py"],"_requirements_localurls":["sdv-dev~sdv~requirements.txt","sdv-dev~sdv~setup.py"]},{"index":162,"category":"nlp","githuburl":"https://github.com/explosion/spacy-transformers","featured":null,"links":null,"description":null,"_repopath":"explosion/spacy-transformers","_reponame":"spacy-transformers","_stars":1184,"_forks":154,"_watches":30,"_topics":["spacy","spacy-pipeline","spacy-extension","nlp","natural-language-processing","natural-language-understanding","pytorch","bert","google","pytorch-model","openai","language-model","machine-learning","huggingface","transfer-learning","xlnet","gpt-2"],"_language":"Python","_homepage":"https://spacy.io/usage/embeddings-transformers","_description":"spacy-transformers: \ud83d\udef8 Use pretrained transformers like BERT, XLNet and GPT-2 in spaCy","_organization":"explosion","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-07-26T00:00:00.000Z","_age_weeks":177,"_stars_per_week":6.67,"_pop_contributor_count":19,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["explosion&oxykodit","founderexplosion","indeedeng"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.58,"_pop_updated_issues_count":14,"_pop_closed_issues_count":12,"_pop_created_since_days":41,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":14.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":14,"_pop_score":38.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/spacy-transformers/master/README.md","_readme_localurl":"explosion~spacy-transformers~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/explosion/spacy-transformers/master/requirements.txt","https://raw.githubusercontent.com/explosion/spacy-transformers/master/setup.py","https://raw.githubusercontent.com/explosion/spacy-transformers/master/pyproject.toml"],"_requirements_localurls":["explosion~spacy-transformers~requirements.txt","explosion~spacy-transformers~setup.py","explosion~spacy-transformers~pyproject.toml"]},{"index":264,"category":"data","githuburl":"https://github.com/collerek/ormar","featured":null,"links":null,"description":null,"_repopath":"collerek/ormar","_reponame":"ormar","_stars":1182,"_forks":61,"_watches":15,"_topics":["orm","sqlalchemy","async-orm","python-orm","fastapi","pydantic","alembic","databases"],"_language":"Python","_homepage":"https://collerek.github.io/ormar/","_description":"ormar: python async orm with fastapi in mind and pydantic validation","_organization":"collerek","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2020-08-02T00:00:00.000Z","_age_weeks":124,"_stars_per_week":9.52,"_pop_contributor_count":30,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["kaizentech","leyantech","wheel-me"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.63,"_pop_updated_issues_count":121,"_pop_closed_issues_count":100,"_pop_created_since_days":29,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":31,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":121.0,"_pop_comment_count":131.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":130,"_pop_score":49.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/collerek/ormar/master/README.md","_readme_localurl":"collerek~ormar~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/collerek/ormar/master/pyproject.toml"],"_requirements_localurls":["collerek~ormar~pyproject.toml"]},{"index":566,"category":"gis","githuburl":"https://github.com/gboeing/osmnx-examples","featured":null,"links":null,"description":null,"_repopath":"gboeing/osmnx-examples","_reponame":"osmnx-examples","_stars":1179,"_forks":434,"_watches":54,"_topics":["street-networks","binder","jupyter-notebook","notebooks","urban-planning","city","cities","openstreetmap","network-analysis","transport","transportation","accessibility","urban-data-science","urban-analytics","public-transport","python","transit","urban-design"],"_language":"Jupyter Notebook","_homepage":"https://github.com/gboeing/osmnx","_description":"osmnx-examples: Usage examples, demos, and tutorials for OSMnx.","_organization":"gboeing","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-07-22T00:00:00.000Z","_age_weeks":282,"_stars_per_week":4.18,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["universityofsoutherncalifornia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":2,"_pop_closed_issues_count":2,"_pop_created_since_days":66,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":3,"_pop_score":23.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gboeing/osmnx-examples/master/README.md","_readme_localurl":"gboeing~osmnx-examples~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":451,"category":"util","githuburl":"https://github.com/imageio/imageio","featured":null,"links":null,"description":null,"_repopath":"imageio/imageio","_reponame":"imageio","_stars":1168,"_forks":235,"_watches":31,"_topics":["python","imageio","animated-gif","video","webcam-capture","scientific-formats","dicom"],"_language":"Python","_homepage":"https://imageio.readthedocs.io","_description":"imageio: Python library for reading and writing image data","_organization":"imageio","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2013-05-04T00:00:00.000Z","_age_weeks":502,"_stars_per_week":2.33,"_pop_contributor_count":95,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["actions","independentsoftwareengineer","mongodb","usr-lab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.46,"_pop_updated_issues_count":52,"_pop_closed_issues_count":36,"_pop_created_since_days":117,"_pop_updated_since_days":0,"_pop_recent_releases_count":26,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":26,"_pop_issue_count":52.0,"_pop_comment_count":155.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":2463,"_pop_score":65.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/imageio/imageio/master/README.md","_readme_localurl":"imageio~imageio~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/imageio/imageio/master/setup.py"],"_requirements_localurls":["imageio~imageio~setup.py"]},{"index":647,"category":"data","githuburl":"https://github.com/pytables/pytables","featured":null,"links":null,"description":null,"_repopath":"pytables/pytables","_reponame":"PyTables","_stars":1163,"_forks":236,"_watches":59,"_topics":[],"_language":"Python","_homepage":"http://www.pytables.org","_description":"PyTables: A Python package to manage extremely large amounts of data","_organization":"pytables","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2011-06-03T00:00:00.000Z","_age_weeks":602,"_stars_per_week":1.93,"_pop_contributor_count":110,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["coornhertgymnasium","francescalted"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.96,"_pop_updated_issues_count":36,"_pop_closed_issues_count":22,"_pop_created_since_days":141,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":36.0,"_pop_comment_count":105.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":132,"_pop_score":53.64,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytables/pytables/master/README.rst","_readme_localurl":"pytables~pytables~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytables/pytables/master/requirements.txt","https://raw.githubusercontent.com/pytables/pytables/master/setup.py","https://raw.githubusercontent.com/pytables/pytables/master/pyproject.toml"],"_requirements_localurls":["pytables~pytables~requirements.txt","pytables~pytables~setup.py","pytables~pytables~pyproject.toml"]},{"index":304,"category":"nlp","githuburl":"https://github.com/featureform/embeddinghub","featured":null,"links":null,"description":null,"_repopath":"featureform/embeddinghub","_reponame":"featureform","_stars":1162,"_forks":42,"_watches":12,"_topics":["machine-learning","data-science","vector-database","embeddings-similarity","embeddings","hacktoberfest","feature-store","mlops","data-quality","feature-engineering","ml","python"],"_language":"Go","_homepage":"https://www.featureform.com","_description":"featureform: The Virtual Feature Store. Turn your existing data infrastructure into a feature store.","_organization":"featureform","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2020-10-16T00:00:00.000Z","_age_weeks":113,"_stars_per_week":10.24,"_pop_contributor_count":18,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["featureform"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":47.98,"_pop_updated_issues_count":124,"_pop_closed_issues_count":103,"_pop_created_since_days":26,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":124.0,"_pop_comment_count":103.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":9,"_pop_score":42.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/featureform/embeddinghub/master/README.md","_readme_localurl":"featureform~embeddinghub~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":494,"category":"ml-dl","githuburl":"https://github.com/hysts/pytorch_image_classification","featured":null,"links":null,"description":null,"_repopath":"hysts/pytorch_image_classification","_reponame":"pytorch_image_classification","_stars":1159,"_forks":289,"_watches":27,"_topics":["pytorch","computer-vision","cifar10","fashion-mnist","imagenet"],"_language":"Python","_homepage":"","_description":"pytorch_image_classification: PyTorch implementation of image classification models for CIFAR-10/CIFAR-100/MNIST/FashionMNIST/Kuzushiji-MNIST/ImageNet","_organization":"hysts","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2021-12-12T00:00:00.000Z","_created_at":"2017-12-09T00:00:00.000Z","_age_weeks":262,"_stars_per_week":4.42,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":61,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":5.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hysts/pytorch_image_classification/master/README.md","_readme_localurl":"hysts~pytorch_image_classification~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/hysts/pytorch_image_classification/master/requirements.txt"],"_requirements_localurls":["hysts~pytorch_image_classification~requirements.txt"]},{"index":725,"category":"typing","githuburl":"https://github.com/patrick-kidger/torchtyping","featured":null,"links":null,"description":null,"_repopath":"patrick-kidger/torchtyping","_reponame":"torchtyping","_stars":1153,"_forks":27,"_watches":13,"_topics":["tensors","named-tensors","shape","pytorch","typing","python-typing"],"_language":"Python","_homepage":"","_description":"torchtyping: Type annotations and dynamic checking for a tensor's shape, dtype, names, etc.","_organization":"patrick-kidger","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-07-11T00:00:00.000Z","_created_at":"2021-03-28T00:00:00.000Z","_age_weeks":90,"_stars_per_week":12.79,"_pop_contributor_count":6,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["avatarify","googlex","irtsaint-exup\u00e9ry"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":21,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":2,"_pop_score":24.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/patrick-kidger/torchtyping/master/README.md","_readme_localurl":"patrick-kidger~torchtyping~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/patrick-kidger/torchtyping/master/setup.py","https://raw.githubusercontent.com/patrick-kidger/torchtyping/master/pyproject.toml"],"_requirements_localurls":["patrick-kidger~torchtyping~setup.py","patrick-kidger~torchtyping~pyproject.toml"]},{"index":862,"category":"jupyter","githuburl":"https://github.com/jupyter/nbgrader","featured":null,"links":null,"description":null,"_repopath":"jupyter/nbgrader","_reponame":"nbgrader","_stars":1151,"_forks":315,"_watches":43,"_topics":["nbgrader","jupyter","jupyter-notebook","jupyterhub","teaching","grading"],"_language":"Python","_homepage":"https://nbgrader.readthedocs.io/","_description":"nbgrader: A system for assigning and grading notebooks","_organization":"jupyter","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2014-09-13T00:00:00.000Z","_age_weeks":431,"_stars_per_week":2.67,"_pop_contributor_count":98,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quantstack"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.96,"_pop_updated_issues_count":67,"_pop_closed_issues_count":24,"_pop_created_since_days":101,"_pop_updated_since_days":2,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":67.0,"_pop_comment_count":135.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":74,"_pop_score":48.72,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/nbgrader/master/README.md","_readme_localurl":"jupyter~nbgrader~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/nbgrader/master/requirements.txt","https://raw.githubusercontent.com/jupyter/nbgrader/master/setup.py","https://raw.githubusercontent.com/jupyter/nbgrader/master/pyproject.toml"],"_requirements_localurls":["jupyter~nbgrader~requirements.txt","jupyter~nbgrader~setup.py","jupyter~nbgrader~pyproject.toml"]},{"index":636,"category":"util","githuburl":"https://github.com/pygments/pygments","featured":null,"links":null,"description":null,"_repopath":"pygments/pygments","_reponame":"pygments","_stars":1148,"_forks":484,"_watches":27,"_topics":["python","syntax-highlighting"],"_language":"Python","_homepage":"http://pygments.org/","_description":"Pygments is a generic syntax highlighter written in Python","_organization":"pygments","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2019-08-31T00:00:00.000Z","_age_weeks":172,"_stars_per_week":6.66,"_pop_contributor_count":757,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amd","fzj\u00fclich","google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.58,"_pop_updated_issues_count":133,"_pop_closed_issues_count":67,"_pop_created_since_days":40,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":133.0,"_pop_comment_count":184.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":7530,"_pop_score":67.1,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pygments/pygments/master/README.rst","_readme_localurl":"pygments~pygments~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pygments/pygments/master/requirements.txt","https://raw.githubusercontent.com/pygments/pygments/master/setup.py","https://raw.githubusercontent.com/pygments/pygments/master/pyproject.toml"],"_requirements_localurls":["pygments~pygments~requirements.txt","pygments~pygments~setup.py","pygments~pygments~pyproject.toml"]},{"index":489,"category":"gis","githuburl":"https://github.com/scitools/cartopy","featured":null,"links":null,"description":null,"_repopath":"scitools/cartopy","_reponame":"cartopy","_stars":1145,"_forks":333,"_watches":55,"_topics":["cartopy","matplotlib","python","geometry","maps","spatial","projections"],"_language":"Python","_homepage":"https://scitools.org.uk/cartopy/docs/latest","_description":"Cartopy - a cartographic python library with matplotlib support","_organization":"scitools","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2012-08-03T00:00:00.000Z","_age_weeks":541,"_stars_per_week":2.11,"_pop_contributor_count":118,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lasp/lasp/swxtrec","metoffice","ucar/unidata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.4,"_pop_updated_issues_count":46,"_pop_closed_issues_count":26,"_pop_created_since_days":126,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":46.0,"_pop_comment_count":135.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":284,"_pop_score":56.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scitools/cartopy/master/README.md","_readme_localurl":"scitools~cartopy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scitools/cartopy/master/setup.py","https://raw.githubusercontent.com/scitools/cartopy/master/pyproject.toml"],"_requirements_localurls":["scitools~cartopy~setup.py","scitools~cartopy~pyproject.toml"]},{"index":194,"category":"web","githuburl":"https://github.com/jordaneremieff/mangum","featured":null,"links":null,"description":null,"_repopath":"jordaneremieff/mangum","_reponame":"mangum","_stars":1144,"_forks":78,"_watches":16,"_topics":["asgi","aws","lambda","serverless","python","asyncio","api-gateway","starlette","fastapi","quart","django","sanic","aws-lambda","python3"],"_language":"Python","_homepage":"https://mangum.io/","_description":"mangum: AWS Lambda support for ASGI applications","_organization":"jordaneremieff","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-27T00:00:00.000Z","_created_at":"2019-01-14T00:00:00.000Z","_age_weeks":205,"_stars_per_week":5.58,"_pop_contributor_count":29,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["resurety","tractabletractableai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.56,"_pop_updated_issues_count":11,"_pop_closed_issues_count":8,"_pop_created_since_days":48,"_pop_updated_since_days":1,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":11.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":16,"_pop_score":39.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jordaneremieff/mangum/master/README.md","_readme_localurl":"jordaneremieff~mangum~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jordaneremieff/mangum/master/requirements.txt","https://raw.githubusercontent.com/jordaneremieff/mangum/master/setup.py"],"_requirements_localurls":["jordaneremieff~mangum~requirements.txt","jordaneremieff~mangum~setup.py"]},{"index":338,"category":"perf","githuburl":"https://github.com/tlkh/asitop","featured":null,"links":null,"description":null,"_repopath":"tlkh/asitop","_reponame":"asitop","_stars":1142,"_forks":69,"_watches":14,"_topics":["cpu","gpu","cli","macos","m1","apple-silicon"],"_language":"Python","_homepage":"https://tlkh.github.io/asitop/","_description":"asitop: Perf monitoring CLI tool for Apple Silicon","_organization":"tlkh","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-08-20T00:00:00.000Z","_created_at":"2021-10-27T00:00:00.000Z","_age_weeks":59,"_stars_per_week":19.12,"_pop_contributor_count":8,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["singaporeuniversityoftechnologyanddesign"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.27,"_pop_updated_issues_count":13,"_pop_closed_issues_count":3,"_pop_created_since_days":14,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":13.0,"_pop_comment_count":65.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":5.0,"_pop_dependents_count":0,"_pop_score":22.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tlkh/asitop/master/README.md","_readme_localurl":"tlkh~asitop~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tlkh/asitop/master/setup.py"],"_requirements_localurls":["tlkh~asitop~setup.py"]},{"index":16,"category":"perf","githuburl":"https://github.com/eventlet/eventlet","featured":null,"links":null,"description":null,"_repopath":"eventlet/eventlet","_reponame":"eventlet","_stars":1139,"_forks":295,"_watches":62,"_topics":["python","concurrency","network","c10k","greenlet","production-ready"],"_language":"Python","_homepage":"https://eventlet.net","_description":"eventlet: Concurrent networking library for Python","_organization":"eventlet","_updated_at":"2022-12-08T00:00:00.000Z","_last_commit_date":"2022-11-17T00:00:00.000Z","_created_at":"2012-12-11T00:00:00.000Z","_age_weeks":522,"_stars_per_week":2.18,"_pop_contributor_count":181,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":18,"_pop_closed_issues_count":5,"_pop_created_since_days":122,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":18.0,"_pop_comment_count":26.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":2749,"_pop_score":49.06,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/eventlet/eventlet/master/README.rst","_readme_localurl":"eventlet~eventlet~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/eventlet/eventlet/master/setup.py"],"_requirements_localurls":["eventlet~eventlet~setup.py"]},{"index":403,"category":"perf","githuburl":"https://github.com/agronholm/anyio","featured":null,"links":null,"description":null,"_repopath":"agronholm/anyio","_reponame":"anyio","_stars":1134,"_forks":95,"_watches":24,"_topics":["async-await","trio","asyncio","curio"],"_language":"Python","_homepage":"","_description":"anyio: High level asynchronous concurrency and networking framework that works on top of either trio or asyncio","_organization":"agronholm","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2018-08-19T00:00:00.000Z","_age_weeks":226,"_stars_per_week":5.01,"_pop_contributor_count":38,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["andrewjayichlabucsb","nextdaysolutionsoy","norisnetworkag"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.38,"_pop_updated_issues_count":64,"_pop_closed_issues_count":43,"_pop_created_since_days":53,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":64.0,"_pop_comment_count":117.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":553,"_pop_score":54.25,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/agronholm/anyio/master/README.rst","_readme_localurl":"agronholm~anyio~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/agronholm/anyio/master/pyproject.toml"],"_requirements_localurls":["agronholm~anyio~pyproject.toml"]},{"index":720,"category":"math","githuburl":"https://github.com/facebookresearch/theseus","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/theseus","_reponame":"theseus","_stars":1132,"_forks":76,"_watches":29,"_topics":["differentiable-optimization","robotics","embodied-ai","nonlinear-least-squares","pytorch","deep-learning","computer-vision","gauss-newton","levenberg-marquardt","implicit-differentiation","bilevel-optimization"],"_language":"Python","_homepage":"","_description":"theseus: A library for differentiable nonlinear optimization","_organization":"facebookresearch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2021-11-18T00:00:00.000Z","_age_weeks":56,"_stars_per_week":20.01,"_pop_contributor_count":19,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebookairesearchfacebookresearch","metaai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.25,"_pop_updated_issues_count":107,"_pop_closed_issues_count":84,"_pop_created_since_days":13,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":107.0,"_pop_comment_count":64.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":34.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/theseus/master/README.md","_readme_localurl":"facebookresearch~theseus~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/theseus/master/setup.py"],"_requirements_localurls":["facebookresearch~theseus~setup.py"]},{"index":802,"category":"util","githuburl":"https://github.com/open-telemetry/opentelemetry-python","featured":null,"links":null,"description":null,"_repopath":"open-telemetry/opentelemetry-python","_reponame":"opentelemetry-python","_stars":1125,"_forks":402,"_watches":35,"_topics":["python","opentelemetry","tracecontext","correlationcontext","distributed-tracing","logging","metrics","sdk"],"_language":"Python","_homepage":"https://opentelemetry.io","_description":"opentelemetry-python: OpenTelemetry Python API and SDK ","_organization":"open-telemetry","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2019-05-07T00:00:00.000Z","_age_weeks":188,"_stars_per_week":5.96,"_pop_contributor_count":172,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","lightstep","microsoftcorporation","signoz.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.42,"_pop_updated_issues_count":206,"_pop_closed_issues_count":128,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":206.0,"_pop_comment_count":374.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":128,"_pop_score":59.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-telemetry/opentelemetry-python/master/README.md","_readme_localurl":"open-telemetry~opentelemetry-python~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/open-telemetry/opentelemetry-python/master/pyproject.toml"],"_requirements_localurls":["open-telemetry~opentelemetry-python~pyproject.toml"]},{"index":545,"category":"ml","githuburl":"https://github.com/borealisai/advertorch","featured":null,"links":null,"description":null,"_repopath":"borealisai/advertorch","_reponame":"advertorch","_stars":1119,"_forks":178,"_watches":27,"_topics":["pytorch","adversarial-examples","adversarial-example","adversarial-perturbations","adversarial-attacks","adversarial-machine-learning","adversarial-learning","robustness","toolbox","security","machine-learning","benchmarking"],"_language":"Jupyter Notebook","_homepage":null,"_description":"advertorch: A Toolbox for Adversarial Robustness Research","_organization":"borealisai","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-05-29T00:00:00.000Z","_created_at":"2018-11-29T00:00:00.000Z","_age_weeks":211,"_stars_per_week":5.29,"_pop_contributor_count":21,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["borealisai","ecopiaai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":49,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":2,"_pop_score":23.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/borealisai/advertorch/master/README.md","_readme_localurl":"borealisai~advertorch~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/borealisai/advertorch/master/setup.py"],"_requirements_localurls":["borealisai~advertorch~setup.py"]},{"index":618,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-bdd","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-bdd","_reponame":"pytest-bdd","_stars":1102,"_forks":186,"_watches":54,"_topics":[],"_language":"Python","_homepage":"https://pytest-bdd.readthedocs.io/en/latest/","_description":"pytest-bdd: BDD library for the py.test runner","_organization":"pytest-dev","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2013-03-29T00:00:00.000Z","_age_weeks":507,"_stars_per_week":2.17,"_pop_contributor_count":52,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bruhinsoftware","fareharbor"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.33,"_pop_updated_issues_count":38,"_pop_closed_issues_count":28,"_pop_created_since_days":118,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":38.0,"_pop_comment_count":63.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":232,"_pop_score":51.74,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-bdd/master/README.rst","_readme_localurl":"pytest-dev~pytest-bdd~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-bdd/master/pyproject.toml"],"_requirements_localurls":["pytest-dev~pytest-bdd~pyproject.toml"]},{"index":396,"category":"web","githuburl":"https://github.com/neoteroi/blacksheep","featured":null,"links":null,"description":null,"_repopath":"neoteroi/blacksheep","_reponame":"BlackSheep","_stars":1100,"_forks":50,"_watches":23,"_topics":["asyncio","server","http","asgi","blacksheep","python","http-server","rest","web","framework"],"_language":"Python","_homepage":"https://www.neoteroi.dev/blacksheep/","_description":"BlackSheep: Fast ASGI web framework for Python","_organization":"neoteroi","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2018-11-22T00:00:00.000Z","_age_weeks":212,"_stars_per_week":5.17,"_pop_contributor_count":10,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":17,"_pop_closed_issues_count":12,"_pop_created_since_days":50,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":17.0,"_pop_comment_count":39.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":30,"_pop_score":35.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/neoteroi/blacksheep/master/README.md","_readme_localurl":"neoteroi~blacksheep~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/neoteroi/blacksheep/master/requirements.txt","https://raw.githubusercontent.com/neoteroi/blacksheep/master/setup.py"],"_requirements_localurls":["neoteroi~blacksheep~requirements.txt","neoteroi~blacksheep~setup.py"]},{"index":726,"category":"perf","githuburl":"https://github.com/omyyyy/pycom","featured":null,"links":null,"description":null,"_repopath":"omyyyy/pycom","_reponame":"pycom","_stars":1094,"_forks":21,"_watches":17,"_topics":[],"_language":"C++","_homepage":"","_description":"pycom: A Python compiler, down to native code, using C++","_organization":"omyyyy","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-08-31T00:00:00.000Z","_created_at":"2022-07-16T00:00:00.000Z","_age_weeks":22,"_stars_per_week":49.09,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["marcelpetrick.it","universityofcalgary"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.71,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":5,"_pop_updated_since_days":4,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":17.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/omyyyy/pycom/master/README.md","_readme_localurl":"omyyyy~pycom~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/omyyyy/pycom/master/requirements.txt","https://raw.githubusercontent.com/omyyyy/pycom/master/setup.py"],"_requirements_localurls":["omyyyy~pycom~requirements.txt","omyyyy~pycom~setup.py"]},{"index":900,"category":"ml","githuburl":"https://github.com/shankarpandala/lazypredict","featured":null,"links":null,"description":null,"_repopath":"shankarpandala/lazypredict","_reponame":"lazypredict","_stars":1090,"_forks":123,"_watches":16,"_topics":["machine-learning","automl","regression","classification"],"_language":"Python","_homepage":"","_description":"lazypredict: Lazy Predict help build a lot of basic models without much code and helps understand which models works better without any parameter tuning","_organization":"shankarpandala","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-28T00:00:00.000Z","_created_at":"2019-11-16T00:00:00.000Z","_age_weeks":161,"_stars_per_week":6.76,"_pop_contributor_count":18,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["appliedmaterials","fiolabs-internal","pyupio","streamlit","wildlife-studios"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":24,"_pop_closed_issues_count":5,"_pop_created_since_days":38,"_pop_updated_since_days":3,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":24.0,"_pop_comment_count":22.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":3,"_pop_score":33.22,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/shankarpandala/lazypredict/master/README.rst","_readme_localurl":"shankarpandala~lazypredict~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/shankarpandala/lazypredict/master/requirements.txt","https://raw.githubusercontent.com/shankarpandala/lazypredict/master/setup.py"],"_requirements_localurls":["shankarpandala~lazypredict~requirements.txt","shankarpandala~lazypredict~setup.py"]},{"index":448,"category":"gis","githuburl":"https://github.com/pysal/pysal","featured":1.0,"links":null,"description":null,"_repopath":"pysal/pysal","_reponame":"pysal","_stars":1084,"_forks":287,"_watches":81,"_topics":[],"_language":"Jupyter Notebook","_homepage":"http://pysal.org/pysal","_description":"PySAL: Python Spatial Analysis Library Meta-Package","_organization":"pysal","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-07-23T00:00:00.000Z","_created_at":"2013-02-19T00:00:00.000Z","_age_weeks":512,"_stars_per_week":2.11,"_pop_contributor_count":77,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["centerforopengeographicalscience","geoda/asu","usgsastrogeology"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.65,"_pop_updated_issues_count":2,"_pop_closed_issues_count":2,"_pop_created_since_days":120,"_pop_updated_since_days":5,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":2.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":1349,"_pop_score":50.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pysal/pysal/master/README.md","_readme_localurl":"pysal~pysal~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pysal/pysal/master/requirements.txt","https://raw.githubusercontent.com/pysal/pysal/master/setup.py"],"_requirements_localurls":["pysal~pysal~requirements.txt","pysal~pysal~setup.py"]},{"index":656,"category":"web","githuburl":"https://github.com/magicstack/httptools","featured":null,"links":null,"description":null,"_repopath":"magicstack/httptools","_reponame":"httptools","_stars":1082,"_forks":69,"_watches":40,"_topics":[],"_language":"Python","_homepage":"","_description":"httptools: Fast HTTP parser","_organization":"magicstack","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-09-13T00:00:00.000Z","_created_at":"2016-04-25T00:00:00.000Z","_age_weeks":347,"_stars_per_week":3.12,"_pop_contributor_count":13,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["edgedb","enix"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":81,"_pop_updated_since_days":3,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":3.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":245,"_pop_score":38.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/magicstack/httptools/master/README.md","_readme_localurl":"magicstack~httptools~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/magicstack/httptools/master/setup.py"],"_requirements_localurls":["magicstack~httptools~setup.py"]},{"index":798,"category":"data","githuburl":"https://github.com/jsonpickle/jsonpickle","featured":null,"links":null,"description":null,"_repopath":"jsonpickle/jsonpickle","_reponame":"jsonpickle","_stars":1079,"_forks":153,"_watches":31,"_topics":["json","python","serialization","pickle","deserialization","objectstorage","bsd-3-clause"],"_language":"Python","_homepage":"https://jsonpickle.github.io","_description":"jsonpickle: Python library for serializing any arbitrary object graph into JSON. It can take almost any Python object and turn the object into JSON. Additionally, it can reconstitute the object back into Python.","_organization":"jsonpickle","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2009-12-10T00:00:00.000Z","_age_weeks":679,"_stars_per_week":1.59,"_pop_contributor_count":68,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["3dhubs","equium-io","google","waltdisneyanimationstudios"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.25,"_pop_updated_issues_count":29,"_pop_closed_issues_count":22,"_pop_created_since_days":159,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":29.0,"_pop_comment_count":56.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":170,"_pop_score":54.09,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jsonpickle/jsonpickle/master/README.rst","_readme_localurl":"jsonpickle~jsonpickle~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jsonpickle/jsonpickle/master/setup.py","https://raw.githubusercontent.com/jsonpickle/jsonpickle/master/pyproject.toml"],"_requirements_localurls":["jsonpickle~jsonpickle~setup.py","jsonpickle~jsonpickle~pyproject.toml"]},{"index":771,"category":"data","githuburl":"https://github.com/google/tensorstore","featured":null,"links":null,"description":null,"_repopath":"google/tensorstore","_reponame":"tensorstore","_stars":1074,"_forks":79,"_watches":30,"_topics":[],"_language":"C++","_homepage":"https://google.github.io/tensorstore/","_description":"tensorstore: Library for reading and writing large multi-dimensional arrays.","_organization":"google","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2020-03-30T00:00:00.000Z","_age_weeks":142,"_stars_per_week":7.56,"_pop_contributor_count":10,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.65,"_pop_updated_issues_count":35,"_pop_closed_issues_count":23,"_pop_created_since_days":33,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":35.0,"_pop_comment_count":195.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":5.6,"_pop_dependents_count":29,"_pop_score":45.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/tensorstore/master/README.md","_readme_localurl":"google~tensorstore~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/google/tensorstore/master/setup.py","https://raw.githubusercontent.com/google/tensorstore/master/pyproject.toml"],"_requirements_localurls":["google~tensorstore~setup.py","google~tensorstore~pyproject.toml"]},{"index":417,"category":"pandas","githuburl":"https://github.com/pyjanitor-devs/pyjanitor","featured":1.0,"links":null,"description":null,"_repopath":"pyjanitor-devs/pyjanitor","_reponame":"pyjanitor","_stars":1070,"_forks":160,"_watches":21,"_topics":["pandas","dataframe","data","cleaning-data","data-engineering","pydata","hacktoberfest"],"_language":"Python","_homepage":"https://pyjanitor-devs.github.io/pyjanitor","_description":"pyjanitor: Clean APIs for data cleaning. Python implementation of R package Janitor","_organization":"pyjanitor-devs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2018-03-04T00:00:00.000Z","_age_weeks":250,"_stars_per_week":4.28,"_pop_contributor_count":106,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amdi","datajanitor","springdiscovery"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.77,"_pop_updated_issues_count":81,"_pop_closed_issues_count":60,"_pop_created_since_days":58,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":81.0,"_pop_comment_count":193.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":2,"_pop_score":45.28,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/README.rst","_readme_localurl":"pyjanitor-devs~pyjanitor~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/requirements.txt","https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/setup.py","https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/pyproject.toml"],"_requirements_localurls":["pyjanitor-devs~pyjanitor~requirements.txt","pyjanitor-devs~pyjanitor~setup.py","pyjanitor-devs~pyjanitor~pyproject.toml"]},{"index":651,"category":"profiling","githuburl":"https://github.com/p403n1x87/austin","featured":null,"links":null,"description":null,"_repopath":"p403n1x87/austin","_reponame":"austin","_stars":1065,"_forks":35,"_watches":14,"_topics":["python","profiling","performance","debugging-tools"],"_language":"C","_homepage":"","_description":"austin: Python frame stack sampler for CPython","_organization":"p403n1x87","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-28T00:00:00.000Z","_created_at":"2018-09-20T00:00:00.000Z","_age_weeks":221,"_stars_per_week":4.81,"_pop_contributor_count":7,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datadog","madalgo","microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.02,"_pop_updated_issues_count":28,"_pop_closed_issues_count":24,"_pop_created_since_days":52,"_pop_updated_since_days":2,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":28.0,"_pop_comment_count":44.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":29,"_pop_score":39.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/p403n1x87/austin/master/README.md","_readme_localurl":"p403n1x87~austin~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":512,"category":"typing","githuburl":"https://github.com/agronholm/typeguard","featured":null,"links":null,"description":null,"_repopath":"agronholm/typeguard","_reponame":"typeguard","_stars":1065,"_forks":79,"_watches":17,"_topics":[],"_language":"Python","_homepage":null,"_description":"typeguard: Run-time type checker for Python","_organization":"agronholm","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-10-11T00:00:00.000Z","_created_at":"2015-12-27T00:00:00.000Z","_age_weeks":364,"_stars_per_week":2.92,"_pop_contributor_count":21,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nextdaysolutionsoy","salesforce.org"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.35,"_pop_updated_issues_count":10,"_pop_closed_issues_count":4,"_pop_created_since_days":85,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":10.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":265,"_pop_score":40.92,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/agronholm/typeguard/master/README.rst","_readme_localurl":"agronholm~typeguard~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/agronholm/typeguard/master/pyproject.toml"],"_requirements_localurls":["agronholm~typeguard~pyproject.toml"]},{"index":626,"category":"viz","githuburl":"https://github.com/enthought/mayavi","featured":null,"links":null,"description":null,"_repopath":"enthought/mayavi","_reponame":"mayavi","_stars":1060,"_forks":264,"_watches":93,"_topics":[],"_language":"Python","_homepage":"http://docs.enthought.com/mayavi/mayavi/","_description":"mayavi: 3D visualization of scientific data in Python","_organization":"enthought","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-10-18T00:00:00.000Z","_created_at":"2011-01-24T00:00:00.000Z","_age_weeks":621,"_stars_per_week":1.71,"_pop_contributor_count":93,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["astrazenecauk","enthought","iitbombay"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.19,"_pop_updated_issues_count":44,"_pop_closed_issues_count":25,"_pop_created_since_days":145,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":44.0,"_pop_comment_count":82.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":119,"_pop_score":50.21,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/enthought/mayavi/master/README.rst","_readme_localurl":"enthought~mayavi~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/enthought/mayavi/master/setup.py","https://raw.githubusercontent.com/enthought/mayavi/master/pyproject.toml"],"_requirements_localurls":["enthought~mayavi~setup.py","enthought~mayavi~pyproject.toml"]},{"index":627,"category":"data","githuburl":"https://github.com/zarr-developers/zarr-python","featured":null,"links":null,"description":null,"_repopath":"zarr-developers/zarr-python","_reponame":"zarr-python","_stars":1059,"_forks":210,"_watches":43,"_topics":["hacktoberfest","zarr","ndimensional-arrays","compressed","python"],"_language":"Python","_homepage":"http://zarr.readthedocs.io/","_description":"zarr-python: An implementation of chunked, compressed, N-dimensional arrays for Python.","_organization":"zarr-developers","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2015-12-15T00:00:00.000Z","_age_weeks":365,"_stars_per_week":2.89,"_pop_contributor_count":77,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["openmicroscopy","quansight-labs","weomesangerinstitute"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.62,"_pop_updated_issues_count":207,"_pop_closed_issues_count":115,"_pop_created_since_days":85,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":207.0,"_pop_comment_count":692.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.3,"_pop_dependents_count":75,"_pop_score":57.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zarr-developers/zarr-python/master/README.md","_readme_localurl":"zarr-developers~zarr-python~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/zarr-developers/zarr-python/master/pyproject.toml"],"_requirements_localurls":["zarr-developers~zarr-python~pyproject.toml"]},{"index":619,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-asyncio","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-asyncio","_reponame":"pytest-asyncio","_stars":1056,"_forks":116,"_watches":35,"_topics":[],"_language":"Python","_homepage":"https://pytest-asyncio.readthedocs.io","_description":"pytest-asyncio: Asyncio support for pytest","_organization":"pytest-dev","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2015-04-11T00:00:00.000Z","_age_weeks":401,"_stars_per_week":2.63,"_pop_contributor_count":40,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["neu.ro","pocketzworld"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.27,"_pop_updated_issues_count":80,"_pop_closed_issues_count":66,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":80.0,"_pop_comment_count":80.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":2129,"_pop_score":56.86,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/master/README.rst","_readme_localurl":"pytest-dev~pytest-asyncio~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/master/pyproject.toml"],"_requirements_localurls":["pytest-dev~pytest-asyncio~pyproject.toml"]},{"index":239,"category":"data","githuburl":"https://github.com/simonw/sqlite-utils","featured":null,"links":null,"description":null,"_repopath":"simonw/sqlite-utils","_reponame":"sqlite-utils","_stars":1055,"_forks":81,"_watches":17,"_topics":["sqlite","python","datasette","sqlite-database","click","cli","datasette-io","datasette-tool"],"_language":"Python","_homepage":"https://sqlite-utils.datasette.io","_description":"sqlite-utils: Python CLI utility and library for manipulating SQLite databases","_organization":"simonw","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2018-07-14T00:00:00.000Z","_age_weeks":231,"_stars_per_week":4.56,"_pop_contributor_count":27,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datasette","stanforduniversity","usatodaynetwork/glasseyemedia/homicidewatch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.17,"_pop_updated_issues_count":39,"_pop_closed_issues_count":22,"_pop_created_since_days":54,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":39.0,"_pop_comment_count":93.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":123,"_pop_score":52.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/simonw/sqlite-utils/master/README.md","_readme_localurl":"simonw~sqlite-utils~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/simonw/sqlite-utils/master/setup.py"],"_requirements_localurls":["simonw~sqlite-utils~setup.py"]},{"index":609,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-xdist","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-xdist","_reponame":"pytest-xdist","_stars":1045,"_forks":185,"_watches":46,"_topics":["hacktoberfest","pytest","pytest-plugin"],"_language":"Python","_homepage":"https://pytest-xdist.readthedocs.io","_description":"pytest-xdist: pytest plugin for distributed testing and loop-on-failures testing modes. ","_organization":"pytest-dev","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2015-09-01T00:00:00.000Z","_age_weeks":380,"_stars_per_week":2.74,"_pop_contributor_count":86,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["esss","merlinux","nordsoftware","redhatinsights"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.25,"_pop_updated_issues_count":56,"_pop_closed_issues_count":37,"_pop_created_since_days":89,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":56.0,"_pop_comment_count":128.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":1467,"_pop_score":60.02,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-xdist/master/README.rst","_readme_localurl":"pytest-dev~pytest-xdist~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-xdist/master/pyproject.toml"],"_requirements_localurls":["pytest-dev~pytest-xdist~pyproject.toml"]},{"index":666,"category":"ml","githuburl":"https://github.com/huggingface/evaluate","featured":null,"links":null,"description":null,"_repopath":"huggingface/evaluate","_reponame":"evaluate","_stars":1038,"_forks":85,"_watches":39,"_topics":["evaluation","machine-learning"],"_language":"Python","_homepage":"https://huggingface.co/docs/evaluate","_description":"\ud83e\udd17 Evaluate: A library for easily evaluating machine learning models and datasets.","_organization":"huggingface","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2022-03-30T00:00:00.000Z","_age_weeks":37,"_stars_per_week":27.52,"_pop_contributor_count":111,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","huggingfaceaiinnova"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.37,"_pop_updated_issues_count":117,"_pop_closed_issues_count":82,"_pop_created_since_days":9,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":117.0,"_pop_comment_count":290.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":644,"_pop_score":55.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/evaluate/master/README.md","_readme_localurl":"huggingface~evaluate~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/evaluate/master/setup.py"],"_requirements_localurls":["huggingface~evaluate~setup.py"]},{"index":191,"category":"ml","githuburl":"https://github.com/awslabs/dgl-ke","featured":null,"links":null,"description":null,"_repopath":"awslabs/dgl-ke","_reponame":"dgl-ke","_stars":1035,"_forks":176,"_watches":23,"_topics":["machine-learning","knowledge-graph","knowledge-graphs-embeddings","graph-learning","dgl"],"_language":"Python","_homepage":"https://dglke.dgl.ai/doc/","_description":"dgl-ke: High performance, easy-to-use, and scalable package for learning large-scale knowledge graph embeddings.","_organization":"awslabs","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-18T00:00:00.000Z","_created_at":"2020-03-03T00:00:00.000Z","_age_weeks":145,"_stars_per_week":7.1,"_pop_contributor_count":25,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon","aws","kwai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":16,"_pop_closed_issues_count":8,"_pop_created_since_days":34,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":16.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":31.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/awslabs/dgl-ke/master/README.md","_readme_localurl":"awslabs~dgl-ke~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":817,"category":"ml-dl","githuburl":"https://github.com/calculatedcontent/weightwatcher","featured":null,"links":null,"description":null,"_repopath":"calculatedcontent/weightwatcher","_reponame":"WeightWatcher","_stars":1033,"_forks":94,"_watches":29,"_topics":[],"_language":"Python","_homepage":null,"_description":"WeightWatcher: The WeightWatcher tool for predicting the accuracy of Deep Neural Networks","_organization":"calculatedcontent","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2018-11-28T00:00:00.000Z","_age_weeks":211,"_stars_per_week":4.88,"_pop_contributor_count":7,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["calculationconsulting","etalab","ozminerals"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.88,"_pop_updated_issues_count":66,"_pop_closed_issues_count":55,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":66.0,"_pop_comment_count":107.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":24,"_pop_score":41.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/calculatedcontent/weightwatcher/master/README.md","_readme_localurl":"calculatedcontent~weightwatcher~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/calculatedcontent/weightwatcher/master/setup.py"],"_requirements_localurls":["calculatedcontent~weightwatcher~setup.py"]},{"index":644,"category":"util","githuburl":"https://github.com/metachris/logzero","featured":null,"links":null,"description":null,"_repopath":"metachris/logzero","_reponame":"logzero","_stars":1033,"_forks":70,"_watches":26,"_topics":["python","logging","logzero","logfiles"],"_language":"Python","_homepage":"https://logzero.readthedocs.io","_description":"logzero: Robust and effective logging for Python 2 and 3.","_organization":"metachris","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2021-03-17T00:00:00.000Z","_created_at":"2017-06-12T00:00:00.000Z","_age_weeks":288,"_stars_per_week":3.59,"_pop_contributor_count":12,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["canva","flashbots","pyupio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":17,"_pop_closed_issues_count":11,"_pop_created_since_days":67,"_pop_updated_since_days":21,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":17.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":4,"_pop_score":27.72,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/metachris/logzero/master/README.md","_readme_localurl":"metachris~logzero~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/metachris/logzero/master/setup.py"],"_requirements_localurls":["metachris~logzero~setup.py"]},{"index":654,"category":"profiling","githuburl":"https://github.com/sumerc/yappi","featured":null,"links":null,"description":null,"_repopath":"sumerc/yappi","_reponame":"yappi","_stars":1031,"_forks":57,"_watches":13,"_topics":["profilers","multi-threaded-applications","coroutine","asynchronous","python","asyncio","performance","profile","asgi","cpu","thread","gevent","greenlet","multithreading"],"_language":"Python","_homepage":"","_description":"yappi: Yet Another Python Profiler, but this time multithreading, asyncio and gevent aware.","_organization":"sumerc","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-25T00:00:00.000Z","_created_at":"2009-10-07T00:00:00.000Z","_age_weeks":688,"_stars_per_week":1.5,"_pop_contributor_count":28,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dara.network","mongodb","nutanix","redhat"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.65,"_pop_updated_issues_count":11,"_pop_closed_issues_count":8,"_pop_created_since_days":161,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":11.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":404,"_pop_score":47.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sumerc/yappi/master/README.md","_readme_localurl":"sumerc~yappi~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sumerc/yappi/master/setup.py","https://raw.githubusercontent.com/sumerc/yappi/master/pyproject.toml"],"_requirements_localurls":["sumerc~yappi~setup.py","sumerc~yappi~pyproject.toml"]},{"index":449,"category":"gis","githuburl":"https://github.com/residentmario/geoplot","featured":1.0,"links":null,"description":null,"_repopath":"residentmario/geoplot","_reponame":"geoplot","_stars":1029,"_forks":90,"_watches":35,"_topics":["geospatial-visualization","geospatial-data","matplotlib","geopandas","spatial-analysis"],"_language":"Python","_homepage":"https://residentmario.github.io/geoplot/index.html","_description":"geoplot: High-level geospatial data visualization library for Python.","_organization":"residentmario","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-03-18T00:00:00.000Z","_created_at":"2016-06-29T00:00:00.000Z","_age_weeks":337,"_stars_per_week":3.05,"_pop_contributor_count":5,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quiltdata","udl-ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":79,"_pop_updated_since_days":9,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":3.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":18,"_pop_score":28.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/residentmario/geoplot/master/README.md","_readme_localurl":"residentmario~geoplot~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/residentmario/geoplot/master/setup.py"],"_requirements_localurls":["residentmario~geoplot~setup.py"]},{"index":580,"category":"util","githuburl":"https://github.com/lidatong/dataclasses-json","featured":null,"links":null,"description":null,"_repopath":"lidatong/dataclasses-json","_reponame":"dataclasses-json","_stars":1024,"_forks":114,"_watches":9,"_topics":["dataclasses","json","python"],"_language":"Python","_homepage":"","_description":"dataclasses-json: Easily serialize Data Classes to and from JSON","_organization":"lidatong","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-08-14T00:00:00.000Z","_created_at":"2018-04-21T00:00:00.000Z","_age_weeks":243,"_stars_per_week":4.21,"_pop_contributor_count":46,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quantenna"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":35,"_pop_closed_issues_count":4,"_pop_created_since_days":57,"_pop_updated_since_days":4,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":35.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":172,"_pop_score":36.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lidatong/dataclasses-json/master/README.md","_readme_localurl":"lidatong~dataclasses-json~README.md","_requirements_filenames":["setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/lidatong/dataclasses-json/master/setup.py","https://raw.githubusercontent.com/lidatong/dataclasses-json/master/pyproject.toml","https://raw.githubusercontent.com/lidatong/dataclasses-json/master/Pipfile"],"_requirements_localurls":["lidatong~dataclasses-json~setup.py","lidatong~dataclasses-json~pyproject.toml","lidatong~dataclasses-json~Pipfile"]},{"index":598,"category":"data","githuburl":"https://github.com/uber/fiber","featured":null,"links":null,"description":null,"_repopath":"uber/fiber","_reponame":"fiber","_stars":995,"_forks":113,"_watches":21,"_topics":["python","distributed-computing","multiprocessing","sandbox","machine-learning"],"_language":"Python","_homepage":"https://uber.github.io/fiber/","_description":"fiber: Distributed Computing for AI Made Simple","_organization":"uber","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2021-03-15T00:00:00.000Z","_created_at":"2020-01-07T00:00:00.000Z","_age_weeks":153,"_stars_per_week":6.47,"_pop_contributor_count":5,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["delltechnologies","litesgroup","nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":36,"_pop_updated_since_days":21,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":3.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":3,"_pop_score":17.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/uber/fiber/master/README.md","_readme_localurl":"uber~fiber~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/fiber/master/requirements.txt","https://raw.githubusercontent.com/uber/fiber/master/setup.py"],"_requirements_localurls":["uber~fiber~requirements.txt","uber~fiber~setup.py"]},{"index":406,"category":"perf","githuburl":"https://github.com/pympler/pympler","featured":null,"links":null,"description":null,"_repopath":"pympler/pympler","_reponame":"pympler","_stars":994,"_forks":82,"_watches":10,"_topics":[],"_language":"Python","_homepage":null,"_description":"pympler: Development tool to measure, monitor and analyze the memory behavior of Python objects in a running Python application.","_organization":"pympler","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-07-24T00:00:00.000Z","_created_at":"2012-10-04T00:00:00.000Z","_age_weeks":532,"_stars_per_week":1.87,"_pop_contributor_count":29,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ableton","finceptiv"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":124,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":5.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":71,"_pop_score":37.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pympler/pympler/master/README.md","_readme_localurl":"pympler~pympler~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pympler/pympler/master/setup.py","https://raw.githubusercontent.com/pympler/pympler/master/pyproject.toml"],"_requirements_localurls":["pympler~pympler~setup.py","pympler~pympler~pyproject.toml"]},{"index":728,"category":"gis","githuburl":"https://github.com/geospatialpython/pyshp","featured":null,"links":null,"description":null,"_repopath":"geospatialpython/pyshp","_reponame":"pyshp","_stars":987,"_forks":258,"_watches":64,"_topics":[],"_language":"Python","_homepage":null,"_description":"pyshp: This library reads and writes ESRI Shapefiles in pure Python.","_organization":"geospatialpython","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-07-28T00:00:00.000Z","_created_at":"2014-03-04T00:00:00.000Z","_age_weeks":458,"_stars_per_week":2.15,"_pop_contributor_count":42,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["geospatialpython.com"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.92,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":107,"_pop_updated_since_days":5,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":4.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":107,"_pop_score":36.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/geospatialpython/pyshp/master/README.md","_readme_localurl":"geospatialpython~pyshp~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/geospatialpython/pyshp/master/setup.py","https://raw.githubusercontent.com/geospatialpython/pyshp/master/pyproject.toml"],"_requirements_localurls":["geospatialpython~pyshp~setup.py","geospatialpython~pyshp~pyproject.toml"]},{"index":444,"category":"gis","githuburl":"https://github.com/toblerity/fiona","featured":null,"links":null,"description":null,"_repopath":"toblerity/fiona","_reponame":"Fiona","_stars":983,"_forks":190,"_watches":49,"_topics":["python","gis","vector","gdal","ogr","cli","cython"],"_language":"Python","_homepage":"https://fiona.readthedocs.io/","_description":"Fiona reads and writes geographic data files","_organization":"toblerity","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2011-12-31T00:00:00.000Z","_age_weeks":572,"_stars_per_week":1.72,"_pop_contributor_count":64,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["gnsscience","planetlabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.4,"_pop_updated_issues_count":58,"_pop_closed_issues_count":42,"_pop_created_since_days":134,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":58.0,"_pop_comment_count":109.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":115,"_pop_score":52.11,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/toblerity/fiona/master/README.rst","_readme_localurl":"toblerity~fiona~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/toblerity/fiona/master/requirements.txt","https://raw.githubusercontent.com/toblerity/fiona/master/setup.py","https://raw.githubusercontent.com/toblerity/fiona/master/pyproject.toml"],"_requirements_localurls":["toblerity~fiona~requirements.txt","toblerity~fiona~setup.py","toblerity~fiona~pyproject.toml"]},{"index":739,"category":"pandas","githuburl":"https://github.com/machow/siuba","featured":null,"links":null,"description":null,"_repopath":"machow/siuba","_reponame":"siuba","_stars":975,"_forks":40,"_watches":20,"_topics":["data-analysis","python","pandas","sql","dplyr"],"_language":"Python","_homepage":"https://siuba.org","_description":"siuba: Python library for using dplyr like syntax with pandas and SQL","_organization":"machow","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-11-16T00:00:00.000Z","_created_at":"2019-02-09T00:00:00.000Z","_age_weeks":201,"_stars_per_week":4.84,"_pop_contributor_count":10,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["flatiron-school","rstudio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.5,"_pop_updated_issues_count":46,"_pop_closed_issues_count":34,"_pop_created_since_days":47,"_pop_updated_since_days":1,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":46.0,"_pop_comment_count":39.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":3,"_pop_score":37.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/machow/siuba/master/README.md","_readme_localurl":"machow~siuba~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/machow/siuba/master/requirements.txt","https://raw.githubusercontent.com/machow/siuba/master/setup.py"],"_requirements_localurls":["machow~siuba~requirements.txt","machow~siuba~setup.py"]},{"index":447,"category":"ml","githuburl":"https://github.com/csinva/imodels","featured":null,"links":null,"description":null,"_repopath":"csinva/imodels","_reponame":"imodels","_stars":975,"_forks":97,"_watches":22,"_topics":["interpretability","machine-learning","data-science","artificial-intelligence","ml","ai","statistics","scikit-learn","python","optimal-classification-tree","rulefit","imodels","rule-learning","supervised-learning","explainable-ml","explainable-ai","rules","bayesian-rule-list"],"_language":"Jupyter Notebook","_homepage":"https://csinva.io/imodels","_description":"imodels: Interpretable ML package \ud83d\udd0d for concise, transparent, and accurate predictive modeling (sklearn-compatible).","_organization":"csinva","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-07-04T00:00:00.000Z","_age_weeks":180,"_stars_per_week":5.4,"_pop_contributor_count":15,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["berkeleyairesearchlab","seniorresearcher"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.0,"_pop_updated_issues_count":16,"_pop_closed_issues_count":14,"_pop_created_since_days":42,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":16.0,"_pop_comment_count":23.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":25,"_pop_score":42.46,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/csinva/imodels/master/readme.md","_readme_localurl":"csinva~imodels~readme.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/csinva/imodels/master/setup.py"],"_requirements_localurls":["csinva~imodels~setup.py"]},{"index":707,"category":"util","githuburl":"https://github.com/brandon-rhodes/python-patterns","featured":null,"links":null,"description":null,"_repopath":"brandon-rhodes/python-patterns","_reponame":"python-patterns","_stars":972,"_forks":88,"_watches":247,"_topics":[],"_language":"Python","_homepage":null,"_description":"python-patterns: Source code behind the python-patterns.guide site by Brandon Rhodes","_organization":"brandon-rhodes","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2021-01-05T00:00:00.000Z","_created_at":"2018-01-31T00:00:00.000Z","_age_weeks":254,"_stars_per_week":3.82,"_pop_contributor_count":4,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bccentreforexcellenceinhiv/aids"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":59,"_pop_updated_since_days":24,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/brandon-rhodes/python-patterns/master/README.md","_readme_localurl":"brandon-rhodes~python-patterns~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/brandon-rhodes/python-patterns/master/requirements.txt"],"_requirements_localurls":["brandon-rhodes~python-patterns~requirements.txt"]},{"index":614,"category":"testing","githuburl":"https://github.com/teemu/pytest-sugar","featured":null,"links":null,"description":null,"_repopath":"teemu/pytest-sugar","_reponame":"pytest-sugar","_stars":961,"_forks":68,"_watches":17,"_topics":["pytest","pytest-sugar","python","testing","pytest-plugin"],"_language":"Python","_homepage":"","_description":"pytest-sugar: a plugin for py.test that changes the default look and feel of py.test (e.g. progressbar, show tests that fail instantly)","_organization":"teemu","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2013-06-25T00:00:00.000Z","_age_weeks":494,"_stars_per_week":1.94,"_pop_contributor_count":45,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["adobe","falcony-io","freelancer,upforhire","wolt"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.83,"_pop_updated_issues_count":54,"_pop_closed_issues_count":48,"_pop_created_since_days":115,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":54.0,"_pop_comment_count":94.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":303,"_pop_score":52.32,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/teemu/pytest-sugar/master/README.md","_readme_localurl":"teemu~pytest-sugar~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/teemu/pytest-sugar/master/setup.py"],"_requirements_localurls":["teemu~pytest-sugar~setup.py"]},{"index":482,"category":"gis","githuburl":"https://github.com/sentinel-hub/eo-learn","featured":null,"links":null,"description":null,"_repopath":"sentinel-hub/eo-learn","_reponame":"eo-learn","_stars":949,"_forks":276,"_watches":50,"_topics":["machine-learning","eo-data","eo-research","python-package"],"_language":"Python","_homepage":null,"_description":"eo-learn: Earth observation processing framework for machine learning in Python","_organization":"sentinel-hub","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2018-05-31T00:00:00.000Z","_age_weeks":237,"_stars_per_week":3.99,"_pop_contributor_count":49,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["eoresearchteamsinergise","google","sinergise","sinergisesentinel-hub"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.48,"_pop_updated_issues_count":56,"_pop_closed_issues_count":51,"_pop_created_since_days":55,"_pop_updated_since_days":1,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":56.0,"_pop_comment_count":54.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":83,"_pop_score":50.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sentinel-hub/eo-learn/master/README.md","_readme_localurl":"sentinel-hub~eo-learn~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sentinel-hub/eo-learn/master/setup.py","https://raw.githubusercontent.com/sentinel-hub/eo-learn/master/pyproject.toml"],"_requirements_localurls":["sentinel-hub~eo-learn~setup.py","sentinel-hub~eo-learn~pyproject.toml"]},{"index":631,"category":"util","githuburl":"https://github.com/pyca/bcrypt","featured":null,"links":null,"description":null,"_repopath":"pyca/bcrypt","_reponame":"bcrypt","_stars":945,"_forks":134,"_watches":29,"_topics":["python"],"_language":"Python","_homepage":"","_description":"bcrypt: Modern(-ish) password hashing for your software and your servers","_organization":"pyca","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2013-05-11T00:00:00.000Z","_age_weeks":501,"_stars_per_week":1.89,"_pop_contributor_count":31,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datadog","pioneervalleybooks"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.85,"_pop_updated_issues_count":56,"_pop_closed_issues_count":49,"_pop_created_since_days":117,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":59.0,"_pop_comment_count":37.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":399,"_pop_score":49.16,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyca/bcrypt/master/README.rst","_readme_localurl":"pyca~bcrypt~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyca/bcrypt/master/requirements.txt","https://raw.githubusercontent.com/pyca/bcrypt/master/setup.py","https://raw.githubusercontent.com/pyca/bcrypt/master/pyproject.toml"],"_requirements_localurls":["pyca~bcrypt~requirements.txt","pyca~bcrypt~setup.py","pyca~bcrypt~pyproject.toml"]},{"index":740,"category":"ml","githuburl":"https://github.com/koaning/scikit-lego","featured":null,"links":null,"description":null,"_repopath":"koaning/scikit-lego","_reponame":"scikit-lego","_stars":936,"_forks":99,"_watches":18,"_topics":["scikit-learn","machine-learning","common-sense"],"_language":"Python","_homepage":"https://scikit-lego.netlify.app","_description":"scikit-lego: Extra blocks for scikit-learn pipelines.","_organization":"koaning","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-11-02T00:00:00.000Z","_created_at":"2019-01-21T00:00:00.000Z","_age_weeks":204,"_stars_per_week":4.59,"_pop_contributor_count":56,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["explosion","m-gate","xcceleratedpydataamsterdam"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":28,"_pop_closed_issues_count":17,"_pop_created_since_days":48,"_pop_updated_since_days":2,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":28.0,"_pop_comment_count":77.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":19,"_pop_score":44.05,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/koaning/scikit-lego/master/readme.md","_readme_localurl":"koaning~scikit-lego~readme.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/koaning/scikit-lego/master/setup.py"],"_requirements_localurls":["koaning~scikit-lego~setup.py"]},{"index":633,"category":"util","githuburl":"https://github.com/pyca/pynacl","featured":null,"links":null,"description":null,"_repopath":"pyca/pynacl","_reponame":"pynacl","_stars":936,"_forks":219,"_watches":28,"_topics":["cryptography","libsodium","nacl","python"],"_language":"C","_homepage":"https://pynacl.readthedocs.io/","_description":"pynacl: Python binding to the Networking and Cryptography (NaCl) library","_organization":"pyca","_updated_at":"2022-12-11T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2013-02-22T00:00:00.000Z","_age_weeks":512,"_stars_per_week":1.83,"_pop_contributor_count":64,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datadog"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":9,"_pop_closed_issues_count":7,"_pop_created_since_days":120,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":9.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":169,"_pop_score":45.62,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyca/pynacl/master/README.rst","_readme_localurl":"pyca~pynacl~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyca/pynacl/master/setup.py","https://raw.githubusercontent.com/pyca/pynacl/master/pyproject.toml"],"_requirements_localurls":["pyca~pynacl~setup.py","pyca~pynacl~pyproject.toml"]},{"index":271,"category":"crypto","githuburl":"https://github.com/man-c/pycoingecko","featured":null,"links":null,"description":null,"_repopath":"man-c/pycoingecko","_reponame":"pycoingecko","_stars":933,"_forks":245,"_watches":32,"_topics":["python3","api-wrapper","api","wrapper","cryptocurrency","crypto","coingecko","python","nft","nfts"],"_language":"Python","_homepage":"","_description":"pycoingecko: Python wrapper for the CoinGecko API","_organization":"man-c","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-26T00:00:00.000Z","_created_at":"2018-08-24T00:00:00.000Z","_age_weeks":225,"_stars_per_week":4.14,"_pop_contributor_count":14,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":5,"_pop_closed_issues_count":2,"_pop_created_since_days":53,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":5.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":180,"_pop_score":32.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/man-c/pycoingecko/master/README.md","_readme_localurl":"man-c~pycoingecko~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/man-c/pycoingecko/master/setup.py"],"_requirements_localurls":["man-c~pycoingecko~setup.py"]},{"index":820,"category":"viz","githuburl":"https://github.com/facultyai/dash-bootstrap-components","featured":null,"links":null,"description":null,"_repopath":"facultyai/dash-bootstrap-components","_reponame":"dash-bootstrap-components","_stars":930,"_forks":201,"_watches":21,"_topics":["bootstrap","plotly-dash","python","dashboards","r","julia"],"_language":"JavaScript","_homepage":"https://dash-bootstrap-components.opensource.faculty.ai/","_description":"dash-bootstrap-components: Bootstrap components for Plotly Dash","_organization":"facultyai","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-08-03T00:00:00.000Z","_created_at":"2018-09-21T00:00:00.000Z","_age_weeks":221,"_stars_per_week":4.2,"_pop_contributor_count":29,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","facultyai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.17,"_pop_updated_issues_count":29,"_pop_closed_issues_count":8,"_pop_created_since_days":52,"_pop_updated_since_days":5,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":33,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":29.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":41,"_pop_score":39.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facultyai/dash-bootstrap-components/master/README.md","_readme_localurl":"facultyai~dash-bootstrap-components~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facultyai/dash-bootstrap-components/master/setup.py","https://raw.githubusercontent.com/facultyai/dash-bootstrap-components/master/pyproject.toml"],"_requirements_localurls":["facultyai~dash-bootstrap-components~setup.py","facultyai~dash-bootstrap-components~pyproject.toml"]},{"index":379,"category":"ml-interpretability","githuburl":"https://github.com/cdpierse/transformers-interpret","featured":null,"links":null,"description":null,"_repopath":"cdpierse/transformers-interpret","_reponame":"transformers-interpret","_stars":924,"_forks":81,"_watches":16,"_topics":["nlp","machine-learning","natural-language-processing","explainable-ai","transformers","model-explainability","transformers-model","captum","deep-learning","neural-network","interpretability","computer-vision"],"_language":"Jupyter Notebook","_homepage":"","_description":"transformers-interpret: Model explainability that works seamlessly with \ud83e\udd17 transformers. Explain your transformers model in just 2 lines of code. ","_organization":"cdpierse","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-17T00:00:00.000Z","_created_at":"2020-05-27T00:00:00.000Z","_age_weeks":133,"_stars_per_week":6.91,"_pop_contributor_count":7,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dfki/universit\u00e4tdessaarlandes","mavenoid;omnimodular","oraikatechnologies","quantcopy"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.98,"_pop_updated_issues_count":17,"_pop_closed_issues_count":5,"_pop_created_since_days":31,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":17.0,"_pop_comment_count":22.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":11,"_pop_score":35.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/README.md","_readme_localurl":"cdpierse~transformers-interpret~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/requirements.txt","https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/setup.py","https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/pyproject.toml"],"_requirements_localurls":["cdpierse~transformers-interpret~requirements.txt","cdpierse~transformers-interpret~setup.py","cdpierse~transformers-interpret~pyproject.toml"]},{"index":212,"category":"data","githuburl":"https://github.com/sfu-db/connector-x","featured":1.0,"links":null,"description":null,"_repopath":"sfu-db/connector-x","_reponame":"connector-x","_stars":919,"_forks":66,"_watches":23,"_topics":["rust","python","database","sql","dataframe"],"_language":"Rust","_homepage":"https://sfu-db.github.io/connector-x/intro.html","_description":"connector-x: Fastest library to load data from DB to DataFrames in Rust and Python","_organization":"sfu-db","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-08T00:00:00.000Z","_created_at":"2021-01-13T00:00:00.000Z","_age_weeks":100,"_stars_per_week":9.12,"_pop_contributor_count":29,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["redhatofficial","sfu-db"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.38,"_pop_updated_issues_count":68,"_pop_closed_issues_count":33,"_pop_created_since_days":23,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":68.0,"_pop_comment_count":79.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":20,"_pop_score":43.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sfu-db/connector-x/master/README.md","_readme_localurl":"sfu-db~connector-x~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":236,"category":"sim","githuburl":"https://github.com/salesforce/ai-economist","featured":1.0,"links":null,"description":null,"_repopath":"salesforce/ai-economist","_reponame":"ai-economist","_stars":918,"_forks":192,"_watches":44,"_topics":["ai","ml","multi-agent","multi-agent-reinforcement-learning","deep-reinforcement-learning","reinforcement-learning-environments","simulation-framework","python-3","economics"],"_language":"Python","_homepage":"https://www.einstein.ai/the-ai-economist","_description":"ai-economist: Foundation is a flexible, modular, and composable framework to model socio-economic behaviors and dynamics with both agents and governments. This framework can be used in conjunction with reinforcement learning to learn optimal economic policies,\u00a0as done by the AI Economist (https://www.einstein.ai/the-ai-economist).","_organization":"salesforce","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-05-09T00:00:00.000Z","_created_at":"2020-07-02T00:00:00.000Z","_age_weeks":128,"_stars_per_week":7.14,"_pop_contributor_count":8,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["apple","salesforceresearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.42,"_pop_updated_issues_count":4,"_pop_closed_issues_count":0,"_pop_created_since_days":30,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":18.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/ai-economist/master/README.md","_readme_localurl":"salesforce~ai-economist~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/salesforce/ai-economist/master/requirements.txt","https://raw.githubusercontent.com/salesforce/ai-economist/master/setup.py"],"_requirements_localurls":["salesforce~ai-economist~requirements.txt","salesforce~ai-economist~setup.py"]},{"index":541,"category":"util","githuburl":"https://github.com/pdoc3/pdoc","featured":null,"links":null,"description":null,"_repopath":"pdoc3/pdoc","_reponame":"pdoc","_stars":911,"_forks":136,"_watches":8,"_topics":["documentation","generator","documentation-generator","documentation-tool","documentation-dumper","api-documentation","python","python3","docs","docs-generator","docstrings","docstring","docstring-documentation","pdoc","hacktoberfest"],"_language":"Python","_homepage":"https://pdoc3.github.io/pdoc/","_description":"pdoc: :snake: :arrow_right: :scroll: Auto-generate API documentation for Python projects","_organization":"pdoc3","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-29T00:00:00.000Z","_created_at":"2019-01-02T00:00:00.000Z","_age_weeks":206,"_stars_per_week":4.41,"_pop_contributor_count":58,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["salesforce"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":15,"_pop_closed_issues_count":10,"_pop_created_since_days":48,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":15.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":183,"_pop_score":41.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pdoc3/pdoc/master/README.md","_readme_localurl":"pdoc3~pdoc~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pdoc3/pdoc/master/setup.py"],"_requirements_localurls":["pdoc3~pdoc~setup.py"]},{"index":251,"category":"ml-dl","githuburl":"https://github.com/tensorflow/similarity","featured":null,"links":null,"description":null,"_repopath":"tensorflow/similarity","_reponame":"similarity","_stars":910,"_forks":86,"_watches":28,"_topics":["similarity-learning","metric-learning","similarity-search","nearest-neighbor-search","nearest-neighbors","deep-learning","tensorflow","contrastive-learning","machine-learning","unsupervised-learning","clustering","python","simclr","simclr2","barlow-twins","simsiam","cosine-similarity","knn"],"_language":"Python","_homepage":"","_description":"similarity: TensorFlow Similarity is a python package focused on making similarity learning quick and easy.","_organization":"tensorflow","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2020-06-15T00:00:00.000Z","_age_weeks":131,"_stars_per_week":6.95,"_pop_contributor_count":23,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.1,"_pop_updated_issues_count":24,"_pop_closed_issues_count":13,"_pop_created_since_days":31,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":24.0,"_pop_comment_count":37.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":29,"_pop_score":36.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/similarity/master/README.md","_readme_localurl":"tensorflow~similarity~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorflow/similarity/master/setup.py","https://raw.githubusercontent.com/tensorflow/similarity/master/pyproject.toml"],"_requirements_localurls":["tensorflow~similarity~setup.py","tensorflow~similarity~pyproject.toml"]},{"index":88,"category":"testing","githuburl":"https://github.com/taverntesting/tavern","featured":null,"links":null,"description":null,"_repopath":"taverntesting/tavern","_reponame":"tavern","_stars":909,"_forks":179,"_watches":28,"_topics":["python","pytest","testing","test-automation","mqtt","http"],"_language":"Python","_homepage":"https://taverntesting.github.io/","_description":"tavern: A command-line tool and Python library and Pytest plugin for automated testing of RESTful APIs, with a simple, concise and flexible YAML-based syntax","_organization":"taverntesting","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-11-01T00:00:00.000Z","_age_weeks":267,"_stars_per_week":3.4,"_pop_contributor_count":56,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["atlassian","forgerock","zalando"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.38,"_pop_updated_issues_count":34,"_pop_closed_issues_count":25,"_pop_created_since_days":62,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":37,"_pop_recent_releases_adjusted_count":37,"_pop_issue_count":34.0,"_pop_comment_count":34.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":38,"_pop_score":49.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/taverntesting/tavern/master/README.md","_readme_localurl":"taverntesting~tavern~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/taverntesting/tavern/master/requirements.txt","https://raw.githubusercontent.com/taverntesting/tavern/master/pyproject.toml"],"_requirements_localurls":["taverntesting~tavern~requirements.txt","taverntesting~tavern~pyproject.toml"]},{"index":387,"category":"nlp","githuburl":"https://github.com/shivam5992/textstat","featured":null,"links":null,"description":null,"_repopath":"shivam5992/textstat","_reponame":"textstat","_stars":892,"_forks":144,"_watches":17,"_topics":["python","textstat","readability","flesch-kincaid-grade","smog","flesch-reading-ease"],"_language":"Python","_homepage":"https://textstat.org","_description":"textstat: :memo: python package to calculate readability statistics of a text object - paragraphs, sentences, articles.","_organization":"shivam5992","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-07-08T00:00:00.000Z","_created_at":"2014-06-18T00:00:00.000Z","_age_weeks":443,"_stars_per_week":2.01,"_pop_contributor_count":46,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["tessian"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":4,"_pop_closed_issues_count":3,"_pop_created_since_days":104,"_pop_updated_since_days":5,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":4.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":19,"_pop_score":33.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/shivam5992/textstat/master/README.md","_readme_localurl":"shivam5992~textstat~README.md","_requirements_filenames":["requirements.txt","setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/shivam5992/textstat/master/requirements.txt","https://raw.githubusercontent.com/shivam5992/textstat/master/setup.py","https://raw.githubusercontent.com/shivam5992/textstat/master/Pipfile"],"_requirements_localurls":["shivam5992~textstat~requirements.txt","shivam5992~textstat~setup.py","shivam5992~textstat~Pipfile"]},{"index":622,"category":"util","githuburl":"https://github.com/pytoolz/cytoolz","featured":null,"links":null,"description":null,"_repopath":"pytoolz/cytoolz","_reponame":"cytoolz","_stars":890,"_forks":67,"_watches":23,"_topics":[],"_language":"Python","_homepage":"","_description":"cytoolz: Cython implementation of Toolz: High performance functional utilities","_organization":"pytoolz","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-06T00:00:00.000Z","_created_at":"2014-04-04T00:00:00.000Z","_age_weeks":454,"_stars_per_week":1.96,"_pop_contributor_count":20,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["coiled","formerlyquantopian","lynkertechnologies","voltrondata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":10,"_pop_closed_issues_count":6,"_pop_created_since_days":106,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":10.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":28,"_pop_score":39.05,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytoolz/cytoolz/master/README.rst","_readme_localurl":"pytoolz~cytoolz~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytoolz/cytoolz/master/setup.py","https://raw.githubusercontent.com/pytoolz/cytoolz/master/pyproject.toml"],"_requirements_localurls":["pytoolz~cytoolz~setup.py","pytoolz~cytoolz~pyproject.toml"]},{"index":504,"category":"gis","githuburl":"https://github.com/anitagraser/movingpandas","featured":null,"links":null,"description":null,"_repopath":"anitagraser/movingpandas","_reponame":"movingpandas","_stars":889,"_forks":165,"_watches":36,"_topics":["geopandas","trajectory","movement-data","trajectory-analysis","python","spatial-data-analysis"],"_language":"Python","_homepage":"http://movingpandas.org","_description":"movingpandas: Implementation of Trajectory classes and functions built on top of GeoPandas","_organization":"anitagraser","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-12-16T00:00:00.000Z","_age_weeks":209,"_stars_per_week":4.25,"_pop_contributor_count":29,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dtn","universityofliverpool"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.29,"_pop_updated_issues_count":35,"_pop_closed_issues_count":20,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":35.0,"_pop_comment_count":55.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":25,"_pop_score":44.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/anitagraser/movingpandas/master/README.md","_readme_localurl":"anitagraser~movingpandas~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/anitagraser/movingpandas/master/setup.py"],"_requirements_localurls":["anitagraser~movingpandas~setup.py"]},{"index":672,"category":"perf","githuburl":"https://github.com/markshannon/faster-cpython","featured":null,"links":null,"description":null,"_repopath":"markshannon/faster-cpython","_reponame":"faster-cpython","_stars":888,"_forks":21,"_watches":83,"_topics":[],"_language":null,"_homepage":null,"_description":"faster-cpython: How to make CPython faster.","_organization":"markshannon","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-10-28T00:00:00.000Z","_created_at":"2020-10-19T00:00:00.000Z","_age_weeks":113,"_stars_per_week":7.86,"_pop_contributor_count":4,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["colgateuniversity","microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":26,"_pop_updated_since_days":26,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":13.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/markshannon/faster-cpython/master/README.md","_readme_localurl":"markshannon~faster-cpython~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":402,"category":"perf","githuburl":"https://github.com/tiangolo/asyncer","featured":null,"links":null,"description":null,"_repopath":"tiangolo/asyncer","_reponame":"asyncer","_stars":886,"_forks":40,"_watches":14,"_topics":["python","async","asyncio","trio","anyio"],"_language":"Python","_homepage":"https://asyncer.tiangolo.com/","_description":"Asyncer, async and await, focused on developer experience.","_organization":"tiangolo","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2022-01-04T00:00:00.000Z","_age_weeks":49,"_stars_per_week":17.77,"_pop_contributor_count":10,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["snok,intility"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.69,"_pop_updated_issues_count":30,"_pop_closed_issues_count":26,"_pop_created_since_days":12,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":30.0,"_pop_comment_count":38.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":28.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/asyncer/master/README.md","_readme_localurl":"tiangolo~asyncer~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tiangolo/asyncer/master/pyproject.toml"],"_requirements_localurls":["tiangolo~asyncer~pyproject.toml"]},{"index":630,"category":"gis","githuburl":"https://github.com/pytroll/satpy","featured":null,"links":null,"description":null,"_repopath":"pytroll/satpy","_reponame":"satpy","_stars":881,"_forks":256,"_watches":31,"_topics":["python","satellite","weather","hacktoberfest","dask","xarray","closember"],"_language":"Python","_homepage":"http://satpy.readthedocs.org/en/latest/","_description":"satpy: Python package for earth-observing satellite data processing","_organization":"pytroll","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2016-02-09T00:00:00.000Z","_age_weeks":357,"_stars_per_week":2.46,"_pop_contributor_count":132,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deutscherwetterdienst","dwd","smhi","spacescienceandengineeringcenter(ssec)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":21.56,"_pop_updated_issues_count":174,"_pop_closed_issues_count":107,"_pop_created_since_days":83,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":174.0,"_pop_comment_count":595.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.4,"_pop_dependents_count":12,"_pop_score":58.74,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytroll/satpy/master/README.rst","_readme_localurl":"pytroll~satpy~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytroll/satpy/master/setup.py","https://raw.githubusercontent.com/pytroll/satpy/master/pyproject.toml"],"_requirements_localurls":["pytroll~satpy~setup.py","pytroll~satpy~pyproject.toml"]},{"index":219,"category":"template","githuburl":"https://github.com/tezromach/python-package-template","featured":1.0,"links":null,"description":null,"_repopath":"tezromach/python-package-template","_reponame":"python-package-template","_stars":873,"_forks":85,"_watches":6,"_topics":["python","cookiecutter","best-practices","semantic-versions","python-packages","codestyle","formatters","makefile","poetry","template"],"_language":"Python","_homepage":"","_description":"python-package-template: \ud83d\ude80 Your next Python package needs a bleeding-edge project structure.","_organization":"tezromach","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-05-18T00:00:00.000Z","_created_at":"2020-04-15T00:00:00.000Z","_age_weeks":139,"_stars_per_week":6.25,"_pop_contributor_count":13,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":111,"_pop_closed_issues_count":71,"_pop_created_since_days":33,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":111.0,"_pop_comment_count":73.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":18,"_pop_score":28.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tezromach/python-package-template/master/README.md","_readme_localurl":"tezromach~python-package-template~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tezromach/python-package-template/master/pyproject.toml"],"_requirements_localurls":["tezromach~python-package-template~pyproject.toml"]},{"index":750,"category":"data","githuburl":"https://github.com/pytorch/data","featured":null,"links":null,"description":null,"_repopath":"pytorch/data","_reponame":"data","_stars":870,"_forks":102,"_watches":25,"_topics":[],"_language":"Python","_homepage":"","_description":"data: A PyTorch repo for data loading and utilities to be shared by the PyTorch domain libraries.","_organization":"pytorch","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2021-05-12T00:00:00.000Z","_age_weeks":83,"_stars_per_week":10.39,"_pop_contributor_count":60,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","quansight"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.5,"_pop_updated_issues_count":194,"_pop_closed_issues_count":146,"_pop_created_since_days":20,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":194.0,"_pop_comment_count":491.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":1663,"_pop_score":56.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/data/master/README.md","_readme_localurl":"pytorch~data~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/data/master/requirements.txt","https://raw.githubusercontent.com/pytorch/data/master/setup.py","https://raw.githubusercontent.com/pytorch/data/master/pyproject.toml"],"_requirements_localurls":["pytorch~data~requirements.txt","pytorch~data~setup.py","pytorch~data~pyproject.toml"]},{"index":341,"category":"term","githuburl":"https://github.com/jquast/blessed","featured":null,"links":null,"description":null,"_repopath":"jquast/blessed","_reponame":"blessed","_stars":867,"_forks":67,"_watches":24,"_topics":["terminal","curses","cli"],"_language":"Python","_homepage":"http://pypi.python.org/pypi/blessed","_description":"Blessed is an easy, practical library for making python terminal apps","_organization":"jquast","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-09-27T00:00:00.000Z","_created_at":"2014-03-01T00:00:00.000Z","_age_weeks":459,"_stars_per_week":1.89,"_pop_contributor_count":24,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dalibo","mozilla"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":7,"_pop_closed_issues_count":2,"_pop_created_since_days":107,"_pop_updated_since_days":3,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":7.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":11,"_pop_score":34.13,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jquast/blessed/master/README.rst","_readme_localurl":"jquast~blessed~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jquast/blessed/master/requirements.txt","https://raw.githubusercontent.com/jquast/blessed/master/setup.py"],"_requirements_localurls":["jquast~blessed~requirements.txt","jquast~blessed~setup.py"]},{"index":392,"category":"pandas","githuburl":"https://github.com/tkrabel/bamboolib","featured":null,"links":null,"description":null,"_repopath":"tkrabel/bamboolib","_reponame":"bamboolib","_stars":858,"_forks":93,"_watches":31,"_topics":["pandas","pandas-dataframes","jupyter-notebook","jupyterlab","python"],"_language":"Jupyter Notebook","_homepage":"https://bamboolib.com","_description":"bamboolib - a GUI for pandas DataFrames","_organization":"tkrabel","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-27T00:00:00.000Z","_created_at":"2019-05-29T00:00:00.000Z","_age_weeks":185,"_stars_per_week":4.62,"_pop_contributor_count":4,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["8080labs","bamboolib","databricks"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.21,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":43,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":8,"_pop_score":21.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tkrabel/bamboolib/master/README.md","_readme_localurl":"tkrabel~bamboolib~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":204,"category":"debug","githuburl":"https://github.com/alexmojaki/snoop","featured":null,"links":null,"description":null,"_repopath":"alexmojaki/snoop","_reponame":"snoop","_stars":856,"_forks":29,"_watches":16,"_topics":["python","debugging","debugger","debugging-tools","logging"],"_language":"Python","_homepage":"","_description":"snoop: A powerful set of Python debugging tools, based on PySnooper","_organization":"alexmojaki","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2019-05-13T00:00:00.000Z","_age_weeks":188,"_stars_per_week":4.55,"_pop_contributor_count":22,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":6,"_pop_closed_issues_count":2,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":6.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":5,"_pop_score":33.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alexmojaki/snoop/master/README.md","_readme_localurl":"alexmojaki~snoop~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/alexmojaki/snoop/master/setup.py","https://raw.githubusercontent.com/alexmojaki/snoop/master/pyproject.toml"],"_requirements_localurls":["alexmojaki~snoop~setup.py","alexmojaki~snoop~pyproject.toml"]},{"index":700,"category":"perf","githuburl":"https://github.com/intel/scikit-learn-intelex","featured":null,"links":null,"description":null,"_repopath":"intel/scikit-learn-intelex","_reponame":"scikit-learn-intelex","_stars":854,"_forks":136,"_watches":28,"_topics":["oneapi","scikit-learn","machine-learning-algorithms","data-analysis","machine-learning","python","swrepo","ai-machine-learning","big-data","analytics","ai-training","ai-inference","gpu","intel"],"_language":"Python","_homepage":"https://intel.github.io/scikit-learn-intelex/","_description":"scikit-learn-intelex: Intel(R) Extension for Scikit-learn is a seamless way to speed up your Scikit-learn application","_organization":"intel","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-08-07T00:00:00.000Z","_age_weeks":227,"_stars_per_week":3.75,"_pop_contributor_count":62,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["intel","intelcorporation"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.63,"_pop_updated_issues_count":118,"_pop_closed_issues_count":82,"_pop_created_since_days":53,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":118.0,"_pop_comment_count":80.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":39.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/intel/scikit-learn-intelex/master/README.md","_readme_localurl":"intel~scikit-learn-intelex~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/intel/scikit-learn-intelex/master/setup.py"],"_requirements_localurls":["intel~scikit-learn-intelex~setup.py"]},{"index":772,"category":"nlp","githuburl":"https://github.com/huggingface/setfit","featured":null,"links":null,"description":null,"_repopath":"huggingface/setfit","_reponame":"setfit","_stars":850,"_forks":74,"_watches":15,"_topics":["few-shot-learning","nlp","sentence-transformers"],"_language":"Python","_homepage":"","_description":"setfit: Efficient few-shot learning with Sentence Transformers","_organization":"huggingface","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2022-06-30T00:00:00.000Z","_age_weeks":24,"_stars_per_week":34.59,"_pop_contributor_count":29,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","nervanasystems","telekom"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.46,"_pop_updated_issues_count":187,"_pop_closed_issues_count":132,"_pop_created_since_days":6,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":187.0,"_pop_comment_count":415.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":2,"_pop_score":41.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/setfit/master/README.md","_readme_localurl":"huggingface~setfit~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/setfit/master/setup.py"],"_requirements_localurls":["huggingface~setfit~setup.py"]},{"index":347,"category":"nlp","githuburl":"https://github.com/norskregnesentral/skweak","featured":null,"links":null,"description":null,"_repopath":"norskregnesentral/skweak","_reponame":"skweak","_stars":847,"_forks":67,"_watches":27,"_topics":["weak-supervision","nlp-machine-learning","distant-supervision","nlp-library","spacy","python","data-science","training-data","natural-language-processing"],"_language":"Python","_homepage":"","_description":"skweak: A software toolkit for weak supervision applied to NLP tasks","_organization":"norskregnesentral","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-11-08T00:00:00.000Z","_created_at":"2021-03-16T00:00:00.000Z","_age_weeks":91,"_stars_per_week":9.22,"_pop_contributor_count":11,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["norwegiancomputingcentre","palinode","universityofoslo","universityofthebasquecountryupv/ehu"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.46,"_pop_updated_issues_count":7,"_pop_closed_issues_count":5,"_pop_created_since_days":21,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":7.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":13,"_pop_score":32.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/norskregnesentral/skweak/master/README.md","_readme_localurl":"norskregnesentral~skweak~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/norskregnesentral/skweak/master/requirements.txt","https://raw.githubusercontent.com/norskregnesentral/skweak/master/setup.py"],"_requirements_localurls":["norskregnesentral~skweak~requirements.txt","norskregnesentral~skweak~setup.py"]},{"index":628,"category":"data","githuburl":"https://github.com/intake/intake","featured":null,"links":null,"description":null,"_repopath":"intake/intake","_reponame":"intake","_stars":844,"_forks":125,"_watches":41,"_topics":["python","data-access","data-catalog"],"_language":"Python","_homepage":"https://intake.readthedocs.io/","_description":"Intake is a lightweight package for finding, investigating, loading and disseminating data.","_organization":"intake","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2017-08-14T00:00:00.000Z","_age_weeks":279,"_stars_per_week":3.03,"_pop_contributor_count":79,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","azavea","brookhavennationallab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.98,"_pop_updated_issues_count":22,"_pop_closed_issues_count":14,"_pop_created_since_days":65,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":22.0,"_pop_comment_count":41.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":392,"_pop_score":51.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/intake/intake/master/README.md","_readme_localurl":"intake~intake~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/intake/intake/master/requirements.txt","https://raw.githubusercontent.com/intake/intake/master/setup.py"],"_requirements_localurls":["intake~intake~requirements.txt","intake~intake~setup.py"]},{"index":484,"category":"gis","githuburl":"https://github.com/sentinelsat/sentinelsat","featured":null,"links":null,"description":null,"_repopath":"sentinelsat/sentinelsat","_reponame":"sentinelsat","_stars":836,"_forks":225,"_watches":59,"_topics":["sentinel","copernicus","esa","remote-sensing","satellite-imagery","geographic-data","open-data","hacktoberfest"],"_language":"Python","_homepage":"https://sentinelsat.readthedocs.io","_description":"sentinelsat: Search and download Copernicus Sentinel satellite images","_organization":"sentinelsat","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-11-03T00:00:00.000Z","_created_at":"2015-05-22T00:00:00.000Z","_age_weeks":395,"_stars_per_week":2.11,"_pop_contributor_count":42,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deloitte","developmentseed","milremrobotics"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":9,"_pop_closed_issues_count":4,"_pop_created_since_days":92,"_pop_updated_since_days":2,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":9.0,"_pop_comment_count":45.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":5.0,"_pop_dependents_count":7,"_pop_score":41.12,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/README.rst","_readme_localurl":"sentinelsat~sentinelsat~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/requirements.txt","https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/setup.py","https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/pyproject.toml"],"_requirements_localurls":["sentinelsat~sentinelsat~requirements.txt","sentinelsat~sentinelsat~setup.py","sentinelsat~sentinelsat~pyproject.toml"]},{"index":697,"category":"data","githuburl":"https://github.com/scholarly-python-package/scholarly","featured":null,"links":null,"description":null,"_repopath":"scholarly-python-package/scholarly","_reponame":"scholarly","_stars":834,"_forks":250,"_watches":24,"_topics":["scholar","googlescholar","scholarly-articles","scholarly-communications","python3","python-3","python","citation-network","citation-analysis","citations","citation-index","publication-data"],"_language":"Python","_homepage":"https://scholarly.readthedocs.io/","_description":"scholarly: Retrieve author and publication information from Google Scholar in a friendly, Pythonic way without having to worry about CAPTCHAs!","_organization":"scholarly-python-package","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2014-12-02T00:00:00.000Z","_age_weeks":419,"_stars_per_week":1.99,"_pop_contributor_count":43,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["newyorkuniversity","princetonuniversity","universityofalberta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.44,"_pop_updated_issues_count":28,"_pop_closed_issues_count":24,"_pop_created_since_days":98,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":28.0,"_pop_comment_count":68.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":3,"_pop_score":46.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/README.md","_readme_localurl":"scholarly-python-package~scholarly~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/requirements.txt","https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/setup.py","https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/pyproject.toml"],"_requirements_localurls":["scholarly-python-package~scholarly~requirements.txt","scholarly-python-package~scholarly~setup.py","scholarly-python-package~scholarly~pyproject.toml"]},{"index":639,"category":"ml","githuburl":"https://github.com/dask/dask-ml","featured":null,"links":null,"description":null,"_repopath":"dask/dask-ml","_reponame":"dask-ml","_stars":833,"_forks":236,"_watches":40,"_topics":["hacktoberfest"],"_language":"Python","_homepage":"http://ml.dask.org","_description":"dask-ml: Scalable Machine Learning with Dask","_organization":"dask","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-10-19T00:00:00.000Z","_created_at":"2017-06-15T00:00:00.000Z","_age_weeks":287,"_stars_per_week":2.9,"_pop_contributor_count":76,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["coiled","microsoft","voltrondata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.21,"_pop_updated_issues_count":22,"_pop_closed_issues_count":3,"_pop_created_since_days":67,"_pop_updated_since_days":2,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":22.0,"_pop_comment_count":28.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":68,"_pop_score":42.99,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dask/dask-ml/master/README.rst","_readme_localurl":"dask~dask-ml~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dask/dask-ml/master/setup.py"],"_requirements_localurls":["dask~dask-ml~setup.py"]},{"index":445,"category":"gis","githuburl":"https://github.com/pyproj4/pyproj","featured":null,"links":null,"description":null,"_repopath":"pyproj4/pyproj","_reponame":"pyproj","_stars":828,"_forks":189,"_watches":30,"_topics":["geospatial","python","coordinate-systems","coordinate-transformation","cartographic-projection","geodesic","hacktoberfest"],"_language":"Python","_homepage":"https://pyproj4.github.io/pyproj","_description":"pyproj: Python interface to PROJ (cartographic projections and coordinate transformations library)","_organization":"pyproj4","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2014-12-29T00:00:00.000Z","_age_weeks":416,"_stars_per_week":1.99,"_pop_contributor_count":58,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["corteva"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.6,"_pop_updated_issues_count":56,"_pop_closed_issues_count":40,"_pop_created_since_days":97,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":56.0,"_pop_comment_count":144.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":523,"_pop_score":53.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyproj4/pyproj/master/README.md","_readme_localurl":"pyproj4~pyproj~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyproj4/pyproj/master/setup.py","https://raw.githubusercontent.com/pyproj4/pyproj/master/pyproject.toml"],"_requirements_localurls":["pyproj4~pyproj~setup.py","pyproj4~pyproj~pyproject.toml"]},{"index":468,"category":"ml","githuburl":"https://github.com/huggingface/optimum","featured":null,"links":null,"description":null,"_repopath":"huggingface/optimum","_reponame":"optimum","_stars":825,"_forks":105,"_watches":39,"_topics":["onnx","pytorch","inference","training","intel","graphcore","onnxruntime","transformers","quantization","habana","optimization"],"_language":"Python","_homepage":"https://huggingface.co/docs/optimum/","_description":"optimum: \ud83c\udfce\ufe0f Accelerate training and inference of \ud83e\udd17 Transformers with easy to use hardware optimization tools","_organization":"huggingface","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2021-07-20T00:00:00.000Z","_age_weeks":73,"_stars_per_week":11.17,"_pop_contributor_count":37,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.21,"_pop_updated_issues_count":260,"_pop_closed_issues_count":187,"_pop_created_since_days":17,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":260.0,"_pop_comment_count":642.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":679,"_pop_score":52.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/optimum/master/README.md","_readme_localurl":"huggingface~optimum~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/optimum/master/setup.py","https://raw.githubusercontent.com/huggingface/optimum/master/pyproject.toml"],"_requirements_localurls":["huggingface~optimum~setup.py","huggingface~optimum~pyproject.toml"]},{"index":887,"category":"sim","githuburl":"https://github.com/pyscf/pyscf","featured":null,"links":null,"description":null,"_repopath":"pyscf/pyscf","_reponame":"pyscf","_stars":823,"_forks":439,"_watches":75,"_topics":[],"_language":"Python","_homepage":"","_description":"pyscf: Python module for quantum chemistry","_organization":"pyscf","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2014-05-02T00:00:00.000Z","_age_weeks":450,"_stars_per_week":1.83,"_pop_contributor_count":137,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["simuneatomisticss.l.","theohiostateuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.52,"_pop_updated_issues_count":148,"_pop_closed_issues_count":70,"_pop_created_since_days":105,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":148.0,"_pop_comment_count":217.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":660,"_pop_score":57.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyscf/pyscf/master/README.md","_readme_localurl":"pyscf~pyscf~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyscf/pyscf/master/setup.py"],"_requirements_localurls":["pyscf~pyscf~setup.py"]},{"index":712,"category":"ml","githuburl":"https://github.com/google-research/deeplab2","featured":null,"links":null,"description":null,"_repopath":"google-research/deeplab2","_reponame":"deeplab2","_stars":820,"_forks":138,"_watches":20,"_topics":[],"_language":"Python","_homepage":"","_description":"DeepLab2 is a TensorFlow library for deep labeling, aiming to provide a unified and state-of-the-art TensorFlow codebase for dense pixel labeling tasks.","_organization":"google-research","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-05T00:00:00.000Z","_created_at":"2021-05-12T00:00:00.000Z","_age_weeks":83,"_stars_per_week":9.8,"_pop_contributor_count":11,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["johnshopkinsuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.83,"_pop_updated_issues_count":24,"_pop_closed_issues_count":6,"_pop_created_since_days":20,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":24.0,"_pop_comment_count":44.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":3,"_pop_score":27.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google-research/deeplab2/master/README.md","_readme_localurl":"google-research~deeplab2~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":850,"category":"util","githuburl":"https://github.com/wolph/python-progressbar","featured":null,"links":null,"description":null,"_repopath":"wolph/python-progressbar","_reponame":"python-progressbar","_stars":795,"_forks":95,"_watches":22,"_topics":["python","progressbar","progress-bar","rate","eta","percentage","console","terminal","time","progress","bar","cli","gui","library"],"_language":"Python","_homepage":"http://progressbar-2.readthedocs.org/en/latest/","_description":"python-progressbar: Progressbar 2 - A progress bar for Python 2 and Python 3 - \"pip install progressbar2\"","_organization":"wolph","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-08T00:00:00.000Z","_created_at":"2012-02-20T00:00:00.000Z","_age_weeks":565,"_stars_per_week":1.41,"_pop_contributor_count":42,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cslab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.13,"_pop_updated_issues_count":14,"_pop_closed_issues_count":11,"_pop_created_since_days":132,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":14.0,"_pop_comment_count":45.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.2,"_pop_dependents_count":381,"_pop_score":50.05,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/wolph/python-progressbar/master/README.rst","_readme_localurl":"wolph~python-progressbar~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/wolph/python-progressbar/master/setup.py"],"_requirements_localurls":["wolph~python-progressbar~setup.py"]},{"index":395,"category":"web","githuburl":"https://github.com/emmett-framework/emmett","featured":null,"links":null,"description":null,"_repopath":"emmett-framework/emmett","_reponame":"emmett","_stars":794,"_forks":63,"_watches":30,"_topics":["python","web-framework","asgi","asyncio","emmett"],"_language":"Python","_homepage":"","_description":"emmett: The web framework for inventors","_organization":"emmett-framework","_updated_at":"2022-12-10T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2014-10-20T00:00:00.000Z","_age_weeks":426,"_stars_per_week":1.86,"_pop_contributor_count":21,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cashbee-team","lawstudent","ostrovok.ru"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.83,"_pop_updated_issues_count":8,"_pop_closed_issues_count":5,"_pop_created_since_days":99,"_pop_updated_since_days":1,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":8.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":12,"_pop_score":38.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/emmett-framework/emmett/master/README.md","_readme_localurl":"emmett-framework~emmett~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/emmett-framework/emmett/master/pyproject.toml"],"_requirements_localurls":["emmett-framework~emmett~pyproject.toml"]},{"index":490,"category":"viz","githuburl":"https://github.com/luispedro/mahotas","featured":null,"links":null,"description":null,"_repopath":"luispedro/mahotas","_reponame":"mahotas","_stars":788,"_forks":149,"_watches":47,"_topics":["computer-vision","numpy","python","c-plus-plus","python-2","python-3"],"_language":"Python","_homepage":"https://mahotas.rtfd.io","_description":"mahotas: Computer Vision in Python","_organization":"luispedro","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-14T00:00:00.000Z","_created_at":"2010-01-31T00:00:00.000Z","_age_weeks":672,"_stars_per_week":1.17,"_pop_contributor_count":32,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["fudanuniversity","theexclosure"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":157,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":3.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":52,"_pop_score":38.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/luispedro/mahotas/master/README.md","_readme_localurl":"luispedro~mahotas~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/luispedro/mahotas/master/requirements.txt","https://raw.githubusercontent.com/luispedro/mahotas/master/setup.py"],"_requirements_localurls":["luispedro~mahotas~requirements.txt","luispedro~mahotas~setup.py"]},{"index":891,"category":"util","githuburl":"https://github.com/xl0/lovely-tensors","featured":null,"links":null,"description":null,"_repopath":"xl0/lovely-tensors","_reponame":"lovely-tensors","_stars":788,"_forks":11,"_watches":6,"_topics":["deep-learning","library","pytorch","statistics","visualization"],"_language":"Jupyter Notebook","_homepage":"https://xl0.github.io/lovely-tensors","_description":"lovely-tensors: Tensors, ready for human consumption","_organization":"xl0","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2022-10-07T00:00:00.000Z","_age_weeks":10,"_stars_per_week":75.56,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.48,"_pop_updated_issues_count":14,"_pop_closed_issues_count":8,"_pop_created_since_days":2,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":79,"_pop_recent_releases_adjusted_count":79,"_pop_issue_count":14.0,"_pop_comment_count":80.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":5.7,"_pop_dependents_count":0,"_pop_score":23.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/xl0/lovely-tensors/master/README.md","_readme_localurl":"xl0~lovely-tensors~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/xl0/lovely-tensors/master/setup.py"],"_requirements_localurls":["xl0~lovely-tensors~setup.py"]},{"index":226,"category":"sim","githuburl":"https://github.com/facebookresearch/droidlet","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/droidlet","_reponame":"fairo","_stars":785,"_forks":80,"_watches":38,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"fairo: A modular embodied agent architecture and platform for building embodied agents","_organization":"facebookresearch","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2020-11-02T00:00:00.000Z","_age_weeks":111,"_stars_per_week":7.07,"_pop_contributor_count":43,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebookairesearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.77,"_pop_updated_issues_count":41,"_pop_closed_issues_count":27,"_pop_created_since_days":26,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":41.0,"_pop_comment_count":86.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":108,"_pop_score":42.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/droidlet/master/README.md","_readme_localurl":"facebookresearch~droidlet~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/droidlet/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/droidlet/master/setup.py","https://raw.githubusercontent.com/facebookresearch/droidlet/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~droidlet~requirements.txt","facebookresearch~droidlet~setup.py","facebookresearch~droidlet~pyproject.toml"]},{"index":351,"category":"ml","githuburl":"https://github.com/jina-ai/finetuner","featured":null,"links":null,"description":null,"_repopath":"jina-ai/finetuner","_reponame":"finetuner","_stars":771,"_forks":39,"_watches":21,"_topics":["fine-tuning","pretrained-models","few-shot-learning","negative-sampling","metric-learning","siamese-network","triplet-loss","transfer-learning","jina","neural-search","finetuning","similarity-learning"],"_language":"Python","_homepage":"https://finetuner.jina.ai","_description":"finetuner: :dart: Task-oriented finetuning for better embeddings on neural search","_organization":"jina-ai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2021-08-11T00:00:00.000Z","_age_weeks":70,"_stars_per_week":10.9,"_pop_contributor_count":32,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["jina-ai","jinaai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.73,"_pop_updated_issues_count":99,"_pop_closed_issues_count":89,"_pop_created_since_days":16,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":99.0,"_pop_comment_count":117.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":39.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jina-ai/finetuner/master/README.md","_readme_localurl":"jina-ai~finetuner~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jina-ai/finetuner/master/setup.py","https://raw.githubusercontent.com/jina-ai/finetuner/master/pyproject.toml"],"_requirements_localurls":["jina-ai~finetuner~setup.py","jina-ai~finetuner~pyproject.toml"]},{"index":738,"category":"perf","githuburl":"https://github.com/zerointensity/pointers.py","featured":null,"links":null,"description":null,"_repopath":"zerointensity/pointers.py","_reponame":"pointers.py","_stars":766,"_forks":9,"_watches":3,"_topics":["python","pointers","python-pointers"],"_language":"Python","_homepage":"https://pointers.zintensity.dev/","_description":"pointers.py: Bringing the hell of pointers to Python.","_organization":"zerointensity","_updated_at":"2022-12-08T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2022-03-09T00:00:00.000Z","_age_weeks":40,"_stars_per_week":18.81,"_pop_contributor_count":7,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["royalbankofcanada"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.21,"_pop_updated_issues_count":3,"_pop_closed_issues_count":3,"_pop_created_since_days":9,"_pop_updated_since_days":1,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":3.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":2,"_pop_score":25.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zerointensity/pointers.py/master/README.md","_readme_localurl":"zerointensity~pointers.py~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/zerointensity/pointers.py/master/requirements.txt","https://raw.githubusercontent.com/zerointensity/pointers.py/master/setup.py","https://raw.githubusercontent.com/zerointensity/pointers.py/master/pyproject.toml"],"_requirements_localurls":["zerointensity~pointers.py~requirements.txt","zerointensity~pointers.py~setup.py","zerointensity~pointers.py~pyproject.toml"]},{"index":810,"category":"data","githuburl":"https://github.com/neo4j/neo4j-python-driver","featured":null,"links":null,"description":null,"_repopath":"neo4j/neo4j-python-driver","_reponame":"neo4j-python-driver","_stars":759,"_forks":167,"_watches":99,"_topics":["python","graph-database","driver","neo4j","database-driver","protocol","cypher","query-language","python3","binary-protocol"],"_language":"Python","_homepage":"https://neo4j.com/docs/api/python-driver/current/","_description":"neo4j-python-driver: Neo4j Bolt driver for Python","_organization":"neo4j","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2015-05-05T00:00:00.000Z","_age_weeks":397,"_stars_per_week":1.91,"_pop_contributor_count":41,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["elastic","neo4j"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.94,"_pop_updated_issues_count":80,"_pop_closed_issues_count":75,"_pop_created_since_days":93,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":80.0,"_pop_comment_count":48.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":74,"_pop_score":50.12,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/neo4j/neo4j-python-driver/master/README.rst","_readme_localurl":"neo4j~neo4j-python-driver~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/neo4j/neo4j-python-driver/master/requirements.txt","https://raw.githubusercontent.com/neo4j/neo4j-python-driver/master/setup.py","https://raw.githubusercontent.com/neo4j/neo4j-python-driver/master/pyproject.toml"],"_requirements_localurls":["neo4j~neo4j-python-driver~requirements.txt","neo4j~neo4j-python-driver~setup.py","neo4j~neo4j-python-driver~pyproject.toml"]},{"index":146,"category":"util","githuburl":"https://github.com/zenodo/zenodo","featured":null,"links":null,"description":null,"_repopath":"zenodo/zenodo","_reponame":"zenodo","_stars":752,"_forks":225,"_watches":38,"_topics":["zenodo","invenio","python","research-data-repository","research-data-management","flask","digital-library","open-science","open-access","scientific-publications","library-management","elasticsearch","postgresql","inveniosoftware"],"_language":"Python","_homepage":"https://zenodo.org","_description":"zenodo: Research. Shared.","_organization":"zenodo","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2013-02-11T00:00:00.000Z","_age_weeks":514,"_stars_per_week":1.46,"_pop_contributor_count":65,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cern","protonmail","skribble"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.52,"_pop_updated_issues_count":66,"_pop_closed_issues_count":36,"_pop_created_since_days":120,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":42,"_pop_recent_releases_adjusted_count":42,"_pop_issue_count":66.0,"_pop_comment_count":44.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":150,"_pop_score":54.24,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/zenodo/zenodo/master/README.rst","_readme_localurl":"zenodo~zenodo~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/zenodo/zenodo/master/requirements.txt","https://raw.githubusercontent.com/zenodo/zenodo/master/setup.py"],"_requirements_localurls":["zenodo~zenodo~requirements.txt","zenodo~zenodo~setup.py"]},{"index":658,"category":"util","githuburl":"https://github.com/rasbt/watermark","featured":null,"links":null,"description":null,"_repopath":"rasbt/watermark","_reponame":"watermark","_stars":750,"_forks":83,"_watches":13,"_topics":["python","magic-extension","jupyter","ipython"],"_language":"Python","_homepage":null,"_description":"watermark: An IPython magic extension for printing date and time stamps, version numbers, and hardware information","_organization":"rasbt","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-13T00:00:00.000Z","_created_at":"2014-07-30T00:00:00.000Z","_age_weeks":437,"_stars_per_week":1.71,"_pop_contributor_count":17,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["brabantwater","capgeminiengineering","drivendata","lightning-ai,universityofwisconsin-madison"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":102,"_pop_updated_since_days":3,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":2.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":94,"_pop_score":38.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/watermark/master/README.md","_readme_localurl":"rasbt~watermark~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rasbt/watermark/master/setup.py"],"_requirements_localurls":["rasbt~watermark~setup.py"]},{"index":334,"category":"util","githuburl":"https://github.com/clarete/forbiddenfruit","featured":null,"links":null,"description":null,"_repopath":"clarete/forbiddenfruit","_reponame":"forbiddenfruit","_stars":750,"_forks":50,"_watches":28,"_topics":["python","monkey-patching"],"_language":"Python","_homepage":"https://clarete.li/forbiddenfruit/","_description":"forbiddenfruit: Patch built-in python objects","_organization":"clarete","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-03-12T00:00:00.000Z","_created_at":"2013-04-03T00:00:00.000Z","_age_weeks":506,"_stars_per_week":1.48,"_pop_contributor_count":15,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bitdeli","django,djangolondon"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":118,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":21.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/clarete/forbiddenfruit/master/README.md","_readme_localurl":"clarete~forbiddenfruit~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/clarete/forbiddenfruit/master/setup.py"],"_requirements_localurls":["clarete~forbiddenfruit~setup.py"]},{"index":791,"category":"sim","githuburl":"https://github.com/viblo/pymunk","featured":1.0,"links":null,"description":null,"_repopath":"viblo/pymunk","_reponame":"pymunk","_stars":733,"_forks":179,"_watches":21,"_topics":["python","physics-2d","library","pygame","pyglet","physics-engine","physics-simulation","python-library"],"_language":"Python","_homepage":"http://www.pymunk.org","_description":"Pymunk is a easy-to-use pythonic 2d physics library that can be used whenever you need 2d rigid body physics from Python","_organization":"viblo","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2013-10-02T00:00:00.000Z","_age_weeks":480,"_stars_per_week":1.52,"_pop_contributor_count":17,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["blksail","google","skamrahlitsolutions"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.02,"_pop_updated_issues_count":7,"_pop_closed_issues_count":7,"_pop_created_since_days":112,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":7.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":22,"_pop_score":43.47,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/viblo/pymunk/master/README.rst","_readme_localurl":"viblo~pymunk~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/viblo/pymunk/master/setup.py","https://raw.githubusercontent.com/viblo/pymunk/master/pyproject.toml"],"_requirements_localurls":["viblo~pymunk~setup.py","viblo~pymunk~pyproject.toml"]},{"index":634,"category":"profiling","githuburl":"https://github.com/csurfer/pyheat","featured":null,"links":null,"description":null,"_repopath":"csurfer/pyheat","_reponame":"pyheat","_stars":733,"_forks":41,"_watches":13,"_topics":["profiling","python","heatmap","matplotlib"],"_language":"Python","_homepage":"","_description":"pyheat: pprofile + matplotlib = Python program profiled as an awesome heatmap!","_organization":"csurfer","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2021-09-18T00:00:00.000Z","_created_at":"2017-02-04T00:00:00.000Z","_age_weeks":306,"_stars_per_week":2.39,"_pop_contributor_count":5,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["citrix","lyft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":71,"_pop_updated_since_days":15,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":14.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/csurfer/pyheat/master/README.md","_readme_localurl":"csurfer~pyheat~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/csurfer/pyheat/master/requirements.txt","https://raw.githubusercontent.com/csurfer/pyheat/master/setup.py"],"_requirements_localurls":["csurfer~pyheat~requirements.txt","csurfer~pyheat~setup.py"]},{"index":853,"category":"data","githuburl":"https://github.com/eliasdabbas/advertools","featured":null,"links":null,"description":null,"_repopath":"eliasdabbas/advertools","_reponame":"advertools","_stars":732,"_forks":158,"_watches":33,"_topics":["marketing","advertising","adwords","python","digital-marketing","online-marketing","keywords","search-engine-marketing","twitter-api","search-engine-optimization","seo","serp","social-media","youtube","robots-txt","scrapy","seo-crawler","log-analysis","google-ads","logfile-parser"],"_language":"Python","_homepage":"https://advertools.readthedocs.io","_description":"advertools - online marketing productivity and analysis tools","_organization":"eliasdabbas","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2017-05-14T00:00:00.000Z","_age_weeks":292,"_stars_per_week":2.51,"_pop_contributor_count":7,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["github","pyupio","themediasupermarket"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.17,"_pop_updated_issues_count":19,"_pop_closed_issues_count":16,"_pop_created_since_days":68,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":19.0,"_pop_comment_count":32.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":71,"_pop_score":44.28,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/eliasdabbas/advertools/master/README.rst","_readme_localurl":"eliasdabbas~advertools~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/eliasdabbas/advertools/master/setup.py","https://raw.githubusercontent.com/eliasdabbas/advertools/master/pyproject.toml"],"_requirements_localurls":["eliasdabbas~advertools~setup.py","eliasdabbas~advertools~pyproject.toml"]},{"index":828,"category":"sim","githuburl":"https://github.com/farama-foundation/gymnasium","featured":null,"links":null,"description":null,"_repopath":"farama-foundation/gymnasium","_reponame":"Gymnasium","_stars":725,"_forks":87,"_watches":11,"_topics":[],"_language":"Python","_homepage":"https://gymnasium.farama.org","_description":"Gymnasium: A standard API for reinforcement learning and a diverse set of reference environments (formerly Gym)","_organization":"farama-foundation","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2022-09-08T00:00:00.000Z","_age_weeks":14,"_stars_per_week":49.75,"_pop_contributor_count":395,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.46,"_pop_updated_issues_count":208,"_pop_closed_issues_count":170,"_pop_created_since_days":3,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":20,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":208.0,"_pop_comment_count":322.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":4,"_pop_score":40.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/farama-foundation/gymnasium/master/README.md","_readme_localurl":"farama-foundation~gymnasium~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/farama-foundation/gymnasium/master/setup.py","https://raw.githubusercontent.com/farama-foundation/gymnasium/master/pyproject.toml"],"_requirements_localurls":["farama-foundation~gymnasium~setup.py","farama-foundation~gymnasium~pyproject.toml"]},{"index":291,"category":"pandas","githuburl":"https://github.com/stitchfix/hamilton","featured":null,"links":null,"description":null,"_repopath":"stitchfix/hamilton","_reponame":"hamilton","_stars":719,"_forks":36,"_watches":21,"_topics":["python","pandas","dag","data-science","data-engineering","numpy","software-engineering","etl-framework","etl-pipeline","etl","feature-engineering","featurization","dataframe","stitch-fix","data-platform","hamilton","hamiltonian","machine-learning"],"_language":"Python","_homepage":"https://hamilton-docs.gitbook.io/docs/","_description":"hamilton: A scalable general purpose micro-framework for defining dataflows. You can use it to build dataframes, numpy matrices, python objects, ML models, etc.","_organization":"stitchfix","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2020-05-26T00:00:00.000Z","_age_weeks":133,"_stars_per_week":5.37,"_pop_contributor_count":14,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["spothero","stitchfix"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.1,"_pop_updated_issues_count":83,"_pop_closed_issues_count":41,"_pop_created_since_days":31,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":83.0,"_pop_comment_count":122.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":4,"_pop_score":41.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/stitchfix/hamilton/master/README.md","_readme_localurl":"stitchfix~hamilton~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/stitchfix/hamilton/master/requirements.txt","https://raw.githubusercontent.com/stitchfix/hamilton/master/setup.py"],"_requirements_localurls":["stitchfix~hamilton~requirements.txt","stitchfix~hamilton~setup.py"]},{"index":621,"category":"testing","githuburl":"https://github.com/wolever/parameterized","featured":null,"links":null,"description":null,"_repopath":"wolever/parameterized","_reponame":"parameterized","_stars":713,"_forks":94,"_watches":18,"_topics":[],"_language":"Python","_homepage":"","_description":"Parameterized testing with any Python test framework","_organization":"wolever","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2021-01-09T00:00:00.000Z","_created_at":"2012-03-10T00:00:00.000Z","_age_weeks":562,"_stars_per_week":1.27,"_pop_contributor_count":24,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["sheertex"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":131,"_pop_updated_since_days":24,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":3.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":89,"_pop_score":30.44,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/wolever/parameterized/master/README.rst","_readme_localurl":"wolever~parameterized~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/wolever/parameterized/master/setup.py"],"_requirements_localurls":["wolever~parameterized~setup.py"]},{"index":559,"category":"jupyter","githuburl":"https://github.com/vizzuhq/ipyvizzu","featured":null,"links":null,"description":null,"_repopath":"vizzuhq/ipyvizzu","_reponame":"ipyvizzu","_stars":711,"_forks":58,"_watches":16,"_topics":["jupyter","jupyter-notebook","python","plotting","graphs","data-visualization","graphing","ipython","chart","charts","dataviz","animation","storytelling","charting","vizzu"],"_language":"Python","_homepage":"https://ipyvizzu.vizzuhq.com","_description":"ipyvizzu: Build animated charts in Jupyter Notebook and in many other environments with a simple Python syntax.","_organization":"vizzuhq","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2022-01-05T00:00:00.000Z","_age_weeks":49,"_stars_per_week":14.3,"_pop_contributor_count":10,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["oneidentity(balabit)","vizzuhq"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.17,"_pop_updated_issues_count":22,"_pop_closed_issues_count":13,"_pop_created_since_days":12,"_pop_updated_since_days":0,"_pop_recent_releases_count":18,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":22.0,"_pop_comment_count":16.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":11,"_pop_score":38.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/README.md","_readme_localurl":"vizzuhq~ipyvizzu~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/requirements.txt","https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/setup.py"],"_requirements_localurls":["vizzuhq~ipyvizzu~requirements.txt","vizzuhq~ipyvizzu~setup.py"]},{"index":358,"category":"data","githuburl":"https://github.com/hyperqueryhq/whale","featured":null,"links":null,"description":null,"_repopath":"hyperqueryhq/whale","_reponame":"whale","_stars":711,"_forks":40,"_watches":42,"_topics":["data-documentation","data-catalog","data-discovery"],"_language":"Python","_homepage":"https://rsyi.gitbook.io/whale","_description":"whale: \ud83d\udc33 The stupidly simple CLI workspace for your data warehouse.","_organization":"hyperqueryhq","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-13T00:00:00.000Z","_created_at":"2020-05-27T00:00:00.000Z","_age_weeks":133,"_stars_per_week":5.32,"_pop_contributor_count":17,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dataframe","nttcommunications","shopify"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.17,"_pop_updated_issues_count":6,"_pop_closed_issues_count":3,"_pop_created_since_days":31,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":6.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":29.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hyperqueryhq/whale/master/README.md","_readme_localurl":"hyperqueryhq~whale~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":419,"category":"util","githuburl":"https://github.com/sethmmorton/natsort","featured":null,"links":null,"description":null,"_repopath":"sethmmorton/natsort","_reponame":"natsort","_stars":709,"_forks":40,"_watches":14,"_topics":["python","natural-sort","sorting-interface","sorting","natsort"],"_language":"Python","_homepage":"https://pypi.org/project/natsort/","_description":"natsort: Simple yet flexible natural sorting in Python.","_organization":"sethmmorton","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-09-01T00:00:00.000Z","_created_at":"2012-05-03T00:00:00.000Z","_age_weeks":554,"_stars_per_week":1.28,"_pop_contributor_count":20,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dapulse","nordsoftware","pioneervalleybooks","siasol"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":129,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":3.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":178,"_pop_score":41.81,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sethmmorton/natsort/master/README.rst","_readme_localurl":"sethmmorton~natsort~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sethmmorton/natsort/master/setup.py"],"_requirements_localurls":["sethmmorton~natsort~setup.py"]},{"index":23,"category":"math","githuburl":"https://github.com/fredrik-johansson/mpmath","featured":null,"links":null,"description":null,"_repopath":"fredrik-johansson/mpmath","_reponame":"mpmath","_stars":707,"_forks":148,"_watches":40,"_topics":["python","arbitrary-precision","multiprecision","floating-point","special-functions","numerical-integration","numerical-methods","plotting","complex-numbers","ordinary-differential-equations","numerical-optimization"],"_language":"Python","_homepage":"http://mpmath.org","_description":"mpmath: Python library for arbitrary-precision floating-point arithmetic","_organization":"fredrik-johansson","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-07T00:00:00.000Z","_created_at":"2011-12-07T00:00:00.000Z","_age_weeks":575,"_stars_per_week":1.23,"_pop_contributor_count":47,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["inria&institutdemath\u00e9matiquesdebordeaux","quansight"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.27,"_pop_updated_issues_count":9,"_pop_closed_issues_count":3,"_pop_created_since_days":134,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":9.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":75,"_pop_score":40.6,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/fredrik-johansson/mpmath/master/README.rst","_readme_localurl":"fredrik-johansson~mpmath~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/fredrik-johansson/mpmath/master/setup.py"],"_requirements_localurls":["fredrik-johansson~mpmath~setup.py"]},{"index":593,"category":"gis","githuburl":"https://github.com/matplotlib/basemap","featured":null,"links":null,"description":null,"_repopath":"matplotlib/basemap","_reponame":"basemap","_stars":703,"_forks":396,"_watches":60,"_topics":["gis","maps","plots"],"_language":"Python","_homepage":"","_description":"basemap: Plot on map projections (with coastlines and political boundaries) using matplotlib","_organization":"matplotlib","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2011-02-19T00:00:00.000Z","_age_weeks":617,"_stars_per_week":1.14,"_pop_contributor_count":69,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["eccc","germanaerospacecenter(dlr)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.77,"_pop_updated_issues_count":24,"_pop_closed_issues_count":19,"_pop_created_since_days":144,"_pop_updated_since_days":1,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":24.0,"_pop_comment_count":40.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":606,"_pop_score":53.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/matplotlib/basemap/master/README.md","_readme_localurl":"matplotlib~basemap~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":701,"category":"profiling","githuburl":"https://github.com/pythonspeed/filprofiler","featured":null,"links":null,"description":null,"_repopath":"pythonspeed/filprofiler","_reponame":"filprofiler","_stars":700,"_forks":21,"_watches":9,"_topics":["python","memory-profiler","memory-profiling","memory-leak","memory-leaks","memory-leak-detection","memory-leak-finder","memory","memory-"],"_language":"Rust","_homepage":"https://pythonspeed.com/products/filmemoryprofiler/","_description":"filprofiler: A Python memory profiler for data processing and scientific computing applications","_organization":"pythonspeed","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2020-06-18T00:00:00.000Z","_age_weeks":130,"_stars_per_week":5.36,"_pop_contributor_count":6,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["algolia","hyphenatedenterprises","whalesalad"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.08,"_pop_updated_issues_count":61,"_pop_closed_issues_count":46,"_pop_created_since_days":30,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":61.0,"_pop_comment_count":58.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":6,"_pop_score":39.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pythonspeed/filprofiler/master/README.md","_readme_localurl":"pythonspeed~filprofiler~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pythonspeed/filprofiler/master/setup.py","https://raw.githubusercontent.com/pythonspeed/filprofiler/master/pyproject.toml"],"_requirements_localurls":["pythonspeed~filprofiler~setup.py","pythonspeed~filprofiler~pyproject.toml"]},{"index":325,"category":"security","githuburl":"https://github.com/trailofbits/pip-audit","featured":null,"links":null,"description":null,"_repopath":"trailofbits/pip-audit","_reponame":"pip-audit","_stars":696,"_forks":44,"_watches":19,"_topics":["security","security-audit","python","pip","supply-chain"],"_language":"Python","_homepage":"https://pypi.org/project/pip-audit/","_description":"pip-audit: Audits Python environments and dependency trees for known vulnerabilities","_organization":"trailofbits","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2021-09-02T00:00:00.000Z","_age_weeks":67,"_stars_per_week":10.3,"_pop_contributor_count":18,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["digitalr00ts","google","trailofbits"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.63,"_pop_updated_issues_count":77,"_pop_closed_issues_count":64,"_pop_created_since_days":16,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":30,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":77.0,"_pop_comment_count":183.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":95,"_pop_score":49.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/trailofbits/pip-audit/master/README.md","_readme_localurl":"trailofbits~pip-audit~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/trailofbits/pip-audit/master/pyproject.toml"],"_requirements_localurls":["trailofbits~pip-audit~pyproject.toml"]},{"index":477,"category":"pandas","githuburl":"https://github.com/holoviz/hvplot","featured":null,"links":null,"description":null,"_repopath":"holoviz/hvplot","_reponame":"hvplot","_stars":688,"_forks":78,"_watches":24,"_topics":["holoviz","holoviews","plotting","datashader"],"_language":"Python","_homepage":"https://hvplot.holoviz.org","_description":"hvplot: A high-level plotting API for pandas, dask, xarray, and networkx built on HoloViews","_organization":"holoviz","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2018-03-19T00:00:00.000Z","_age_weeks":248,"_stars_per_week":2.77,"_pop_contributor_count":39,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","azavea"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.21,"_pop_updated_issues_count":269,"_pop_closed_issues_count":74,"_pop_created_since_days":58,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":22,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":269.0,"_pop_comment_count":239.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":10,"_pop_score":43.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/hvplot/master/README.md","_readme_localurl":"holoviz~hvplot~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/hvplot/master/setup.py","https://raw.githubusercontent.com/holoviz/hvplot/master/pyproject.toml"],"_requirements_localurls":["holoviz~hvplot~setup.py","holoviz~hvplot~pyproject.toml"]},{"index":360,"category":"ml-ops","githuburl":"https://github.com/tensorflow/data-validation","featured":null,"links":null,"description":null,"_repopath":"tensorflow/data-validation","_reponame":"data-validation","_stars":686,"_forks":144,"_watches":48,"_topics":[],"_language":"Python","_homepage":"","_description":"data-validation: Library for exploring and validating machine learning data","_organization":"tensorflow","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-07-02T00:00:00.000Z","_age_weeks":233,"_stars_per_week":2.94,"_pop_contributor_count":25,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.98,"_pop_updated_issues_count":19,"_pop_closed_issues_count":13,"_pop_created_since_days":54,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":19.0,"_pop_comment_count":26.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":572,"_pop_score":47.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/data-validation/master/README.md","_readme_localurl":"tensorflow~data-validation~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorflow/data-validation/master/setup.py","https://raw.githubusercontent.com/tensorflow/data-validation/master/pyproject.toml"],"_requirements_localurls":["tensorflow~data-validation~setup.py","tensorflow~data-validation~pyproject.toml"]},{"index":168,"category":"gis","githuburl":"https://github.com/openeventdata/mordecai","featured":null,"links":null,"description":null,"_repopath":"openeventdata/mordecai","_reponame":"mordecai","_stars":684,"_forks":94,"_watches":35,"_topics":["geoparsing","geonames","nlp","geocoding","spacy","toponym-resolution"],"_language":"Python","_homepage":"","_description":"mordecai: Full text geoparsing as a Python library","_organization":"openeventdata","_updated_at":"2022-12-08T00:00:00.000Z","_last_commit_date":"2021-02-01T00:00:00.000Z","_created_at":"2016-06-23T00:00:00.000Z","_age_weeks":338,"_stars_per_week":2.02,"_pop_contributor_count":6,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["github","maxar","msupoliticalscience","phillymedia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":79,"_pop_updated_since_days":23,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":4,"_pop_score":24.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openeventdata/mordecai/master/README.md","_readme_localurl":"openeventdata~mordecai~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/openeventdata/mordecai/master/requirements.txt","https://raw.githubusercontent.com/openeventdata/mordecai/master/setup.py"],"_requirements_localurls":["openeventdata~mordecai~requirements.txt","openeventdata~mordecai~setup.py"]},{"index":572,"category":"gis","githuburl":"https://github.com/developmentseed/landsat-util","featured":null,"links":null,"description":null,"_repopath":"developmentseed/landsat-util","_reponame":"landsat-util","_stars":681,"_forks":155,"_watches":125,"_topics":[],"_language":"Python","_homepage":null,"_description":"landsat-util: A utility to search, download and process Landsat 8 satellite imagery","_organization":"developmentseed","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2018-07-30T00:00:00.000Z","_created_at":"2014-08-01T00:00:00.000Z","_age_weeks":437,"_stars_per_week":1.56,"_pop_contributor_count":24,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cloud-gov(work)+personalprojects;","developmentseed","element84","ledgy"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":102,"_pop_updated_since_days":53,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":11,"_pop_score":24.79,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/landsat-util/master/README.rst","_readme_localurl":"developmentseed~landsat-util~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/developmentseed/landsat-util/master/requirements.txt","https://raw.githubusercontent.com/developmentseed/landsat-util/master/setup.py"],"_requirements_localurls":["developmentseed~landsat-util~requirements.txt","developmentseed~landsat-util~setup.py"]},{"index":393,"category":"perf","githuburl":"https://github.com/klen/py-frameworks-bench","featured":null,"links":null,"description":null,"_repopath":"klen/py-frameworks-bench","_reponame":"py-frameworks-bench","_stars":673,"_forks":78,"_watches":28,"_topics":["benchmark","python-frameworks"],"_language":"Python","_homepage":"https://klen.github.io/py-frameworks-bench/","_description":"py-frameworks-bench: Another benchmark for some python frameworks","_organization":"klen","_updated_at":"2022-12-11T00:00:00.000Z","_last_commit_date":"2022-03-14T00:00:00.000Z","_created_at":"2015-04-30T00:00:00.000Z","_age_weeks":398,"_stars_per_week":1.69,"_pop_contributor_count":10,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["get-post-technology","home"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":17,"_pop_closed_issues_count":10,"_pop_created_since_days":93,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":17.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":25.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/klen/py-frameworks-bench/master/README.md","_readme_localurl":"klen~py-frameworks-bench~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":164,"category":"nlp","githuburl":"https://github.com/explosion/spacy-stanza","featured":null,"links":null,"description":null,"_repopath":"explosion/spacy-stanza","_reponame":"spacy-stanza","_stars":662,"_forks":50,"_watches":25,"_topics":["nlp","natural-language-processing","machine-learning","data-science","spacy","spacy-pipeline","stanford-nlp","stanford-corenlp","stanford-machine-learning","corenlp","stanza"],"_language":"Python","_homepage":"","_description":"spacy-stanza: \ud83d\udca5 Use the latest Stanza (StanfordNLP) research models directly in spaCy","_organization":"explosion","_updated_at":"2022-12-09T00:00:00.000Z","_last_commit_date":"2022-05-27T00:00:00.000Z","_created_at":"2019-01-31T00:00:00.000Z","_age_weeks":202,"_stars_per_week":3.27,"_pop_contributor_count":7,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["founderexplosion","graphext","lt3kuleuven"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":47,"_pop_updated_since_days":7,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":18.28,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/spacy-stanza/master/README.md","_readme_localurl":"explosion~spacy-stanza~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/explosion/spacy-stanza/master/requirements.txt","https://raw.githubusercontent.com/explosion/spacy-stanza/master/setup.py"],"_requirements_localurls":["explosion~spacy-stanza~requirements.txt","explosion~spacy-stanza~setup.py"]},{"index":483,"category":"gis","githuburl":"https://github.com/sentinel-hub/sentinelhub-py","featured":null,"links":null,"description":null,"_repopath":"sentinel-hub/sentinelhub-py","_reponame":"sentinelhub-py","_stars":655,"_forks":213,"_watches":48,"_topics":["python-library","sentinel-hub","aws","ogc-services","satellite-imagery"],"_language":"Python","_homepage":"http://sentinelhub-py.readthedocs.io/en/latest/","_description":"sentinelhub-py: Download and process satellite imagery in Python using Sentinel Hub services.","_organization":"sentinel-hub","_updated_at":"2022-12-11T00:00:00.000Z","_last_commit_date":"2022-10-06T00:00:00.000Z","_created_at":"2017-05-17T00:00:00.000Z","_age_weeks":291,"_stars_per_week":2.25,"_pop_contributor_count":40,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["eoresearchteamsinergise","google","sinergise"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.83,"_pop_updated_issues_count":29,"_pop_closed_issues_count":27,"_pop_created_since_days":68,"_pop_updated_since_days":2,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":29.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":335,"_pop_score":49.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sentinel-hub/sentinelhub-py/master/README.md","_readme_localurl":"sentinel-hub~sentinelhub-py~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sentinel-hub/sentinelhub-py/master/requirements.txt","https://raw.githubusercontent.com/sentinel-hub/sentinelhub-py/master/setup.py","https://raw.githubusercontent.com/sentinel-hub/sentinelhub-py/master/pyproject.toml"],"_requirements_localurls":["sentinel-hub~sentinelhub-py~requirements.txt","sentinel-hub~sentinelhub-py~setup.py","sentinel-hub~sentinelhub-py~pyproject.toml"]},{"index":818,"category":"ml","githuburl":"https://github.com/automl/tabpfn","featured":null,"links":null,"description":null,"_repopath":"automl/tabpfn","_reponame":"TabPFN","_stars":654,"_forks":44,"_watches":15,"_topics":[],"_language":"Python","_homepage":"https://arxiv.org/abs/2207.01848","_description":"TabPFN: Official implementation of the TabPFN and the tabpfn package.","_organization":"automl","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2022-07-01T00:00:00.000Z","_age_weeks":24,"_stars_per_week":26.77,"_pop_contributor_count":6,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["automl.org"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.31,"_pop_updated_issues_count":23,"_pop_closed_issues_count":22,"_pop_created_since_days":6,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":23.0,"_pop_comment_count":45.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":24.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/automl/tabpfn/master/README.md","_readme_localurl":"automl~tabpfn~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/automl/tabpfn/master/requirements.txt","https://raw.githubusercontent.com/automl/tabpfn/master/setup.py","https://raw.githubusercontent.com/automl/tabpfn/master/pyproject.toml"],"_requirements_localurls":["automl~tabpfn~requirements.txt","automl~tabpfn~setup.py","automl~tabpfn~pyproject.toml"]},{"index":620,"category":"jupyter","githuburl":"https://github.com/nbqa-dev/nbqa","featured":null,"links":null,"description":null,"_repopath":"nbqa-dev/nbqa","_reponame":"nbQA","_stars":646,"_forks":36,"_watches":7,"_topics":["python","jupyter-notebook","pre-commit","codequality","lint","isort","black","flake8","doctest","pyupgrade","pylint","mypy","yapf","pre-commit-hook"],"_language":"Python","_homepage":"https://nbqa.readthedocs.io/en/latest/index.html","_description":"nbQA: Run isort, pyupgrade, mypy, pylint, flake8, and more on Jupyter Notebooks","_organization":"nbqa-dev","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2020-07-11T00:00:00.000Z","_age_weeks":127,"_stars_per_week":5.08,"_pop_contributor_count":22,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quansight"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.19,"_pop_updated_issues_count":36,"_pop_closed_issues_count":31,"_pop_created_since_days":30,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":33,"_pop_recent_releases_adjusted_count":33,"_pop_issue_count":36.0,"_pop_comment_count":56.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":674,"_pop_score":48.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nbqa-dev/nbqa/master/README.md","_readme_localurl":"nbqa-dev~nbqa~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nbqa-dev/nbqa/master/setup.py","https://raw.githubusercontent.com/nbqa-dev/nbqa/master/pyproject.toml"],"_requirements_localurls":["nbqa-dev~nbqa~setup.py","nbqa-dev~nbqa~pyproject.toml"]},{"index":629,"category":"gis","githuburl":"https://github.com/makepath/xarray-spatial","featured":null,"links":null,"description":null,"_repopath":"makepath/xarray-spatial","_reponame":"xarray-spatial","_stars":645,"_forks":73,"_watches":25,"_topics":["python","raster-analysis","spatial-analysis","numba","datashader","xarray"],"_language":"Python","_homepage":"https://xarray-spatial.org","_description":"xarray-spatial: Raster-based Spatial Analytics for Python","_organization":"makepath","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-06-22T00:00:00.000Z","_created_at":"2020-02-08T00:00:00.000Z","_age_weeks":149,"_stars_per_week":4.32,"_pop_contributor_count":28,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","makepath"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.52,"_pop_updated_issues_count":82,"_pop_closed_issues_count":14,"_pop_created_since_days":35,"_pop_updated_since_days":6,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":82.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.1,"_pop_dependents_count":12,"_pop_score":33.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/makepath/xarray-spatial/master/README.md","_readme_localurl":"makepath~xarray-spatial~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/makepath/xarray-spatial/master/requirements.txt","https://raw.githubusercontent.com/makepath/xarray-spatial/master/setup.py","https://raw.githubusercontent.com/makepath/xarray-spatial/master/pyproject.toml"],"_requirements_localurls":["makepath~xarray-spatial~requirements.txt","makepath~xarray-spatial~setup.py","makepath~xarray-spatial~pyproject.toml"]},{"index":882,"category":"time-series","githuburl":"https://github.com/winedarksea/autots","featured":null,"links":null,"description":null,"_repopath":"winedarksea/autots","_reponame":"AutoTS","_stars":643,"_forks":60,"_watches":13,"_topics":["time-series","machine-learning","automl","autots","forecasting","deep-learning","preprocessing","feature-engineering"],"_language":"Python","_homepage":"","_description":"AutoTS: Automated Time Series Forecasting","_organization":"winedarksea","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2019-11-26T00:00:00.000Z","_age_weeks":159,"_stars_per_week":4.02,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.35,"_pop_updated_issues_count":5,"_pop_closed_issues_count":4,"_pop_created_since_days":37,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":5.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":5,"_pop_score":28.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/winedarksea/autots/master/README.md","_readme_localurl":"winedarksea~autots~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/winedarksea/autots/master/setup.py"],"_requirements_localurls":["winedarksea~autots~setup.py"]},{"index":475,"category":"viz","githuburl":"https://github.com/holoviz/holoviz","featured":1.0,"links":null,"description":null,"_repopath":"holoviz/holoviz","_reponame":"holoviz","_stars":636,"_forks":114,"_watches":35,"_topics":["holoviz","holoviews","geoviews","datashader","panel","hvplot","colorcet"],"_language":"Python","_homepage":"https://holoviz.org/","_description":"holoviz: High-level tools to simplify visualization in Python.","_organization":"holoviz","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2017-09-22T00:00:00.000Z","_age_weeks":273,"_stars_per_week":2.33,"_pop_contributor_count":21,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","azavea"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.46,"_pop_updated_issues_count":18,"_pop_closed_issues_count":8,"_pop_created_since_days":64,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":18.0,"_pop_comment_count":54.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":2,"_pop_score":40.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/holoviz/master/README.md","_readme_localurl":"holoviz~holoviz~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/holoviz/master/setup.py","https://raw.githubusercontent.com/holoviz/holoviz/master/pyproject.toml"],"_requirements_localurls":["holoviz~holoviz~setup.py","holoviz~holoviz~pyproject.toml"]},{"index":741,"category":"data","githuburl":"https://github.com/koaning/human-learn","featured":null,"links":null,"description":null,"_repopath":"koaning/human-learn","_reponame":"human-learn","_stars":635,"_forks":51,"_watches":13,"_topics":["scikit-learn","machine-learning","benchmark"],"_language":"Jupyter Notebook","_homepage":"https://koaning.github.io/human-learn/","_description":"human-learn: Natural Intelligence is still a pretty good idea.","_organization":"koaning","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-10-05T00:00:00.000Z","_created_at":"2020-07-11T00:00:00.000Z","_age_weeks":127,"_stars_per_week":4.99,"_pop_contributor_count":5,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["explosion","floryn","nttdatabusinesssolutions"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":30,"_pop_updated_since_days":15,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":13.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/koaning/human-learn/master/README.md","_readme_localurl":"koaning~human-learn~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/koaning/human-learn/master/setup.py"],"_requirements_localurls":["koaning~human-learn~setup.py"]},{"index":344,"category":"data","githuburl":"https://github.com/scikit-hep/awkward-1.0","featured":null,"links":null,"description":null,"_repopath":"scikit-hep/awkward-1.0","_reponame":"awkward","_stars":632,"_forks":64,"_watches":17,"_topics":["json","numpy","data-analysis","jagged-array","ragged-array","columnar-format","pandas","numba","apache-arrow","cern-root","scikit-hep","python"],"_language":"Python","_homepage":"https://awkward-array.org","_description":"awkward: Manipulate JSON-like data with NumPy-like idioms.","_organization":"scikit-hep","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-08-14T00:00:00.000Z","_age_weeks":174,"_stars_per_week":3.62,"_pop_contributor_count":35,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["princeton,iris-hep,pyhep,scikit-hep","purdueuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.04,"_pop_updated_issues_count":362,"_pop_closed_issues_count":309,"_pop_created_since_days":41,"_pop_updated_since_days":0,"_pop_recent_releases_count":42,"_pop_recent_releases_estimated_tags":61,"_pop_recent_releases_adjusted_count":42,"_pop_issue_count":362.0,"_pop_comment_count":923.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":26,"_pop_score":53.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scikit-hep/awkward-1.0/master/README.md","_readme_localurl":"scikit-hep~awkward-1.0~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scikit-hep/awkward-1.0/master/pyproject.toml"],"_requirements_localurls":["scikit-hep~awkward-1.0~pyproject.toml"]},{"index":637,"category":"util","githuburl":"https://github.com/samuelcolvin/python-devtools","featured":null,"links":null,"description":null,"_repopath":"samuelcolvin/python-devtools","_reponame":"python-devtools","_stars":631,"_forks":31,"_watches":8,"_topics":["python-devtools","python","devtools"],"_language":"Python","_homepage":"https://python-devtools.helpmanual.io/","_description":"python-devtools: Dev tools for python","_organization":"samuelcolvin","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2017-08-20T00:00:00.000Z","_age_weeks":278,"_stars_per_week":2.27,"_pop_contributor_count":10,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["pydantic","pyupio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":10,"_pop_closed_issues_count":4,"_pop_created_since_days":65,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":10.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":85,"_pop_score":38.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/samuelcolvin/python-devtools/master/README.md","_readme_localurl":"samuelcolvin~python-devtools~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/samuelcolvin/python-devtools/master/requirements.txt","https://raw.githubusercontent.com/samuelcolvin/python-devtools/master/pyproject.toml"],"_requirements_localurls":["samuelcolvin~python-devtools~requirements.txt","samuelcolvin~python-devtools~pyproject.toml"]},{"index":640,"category":"data","githuburl":"https://github.com/dask/fastparquet","featured":null,"links":null,"description":null,"_repopath":"dask/fastparquet","_reponame":"fastparquet","_stars":624,"_forks":161,"_watches":18,"_topics":["hacktoberfest"],"_language":"Python","_homepage":null,"_description":"fastparquet: python implementation of the parquet columnar file format.","_organization":"dask","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2015-11-06T00:00:00.000Z","_age_weeks":371,"_stars_per_week":1.68,"_pop_contributor_count":86,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","coiled","confluentinc","steminc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.06,"_pop_updated_issues_count":31,"_pop_closed_issues_count":25,"_pop_created_since_days":87,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":31.0,"_pop_comment_count":104.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.4,"_pop_dependents_count":75,"_pop_score":54.34,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dask/fastparquet/master/README.rst","_readme_localurl":"dask~fastparquet~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dask/fastparquet/master/requirements.txt","https://raw.githubusercontent.com/dask/fastparquet/master/setup.py","https://raw.githubusercontent.com/dask/fastparquet/master/pyproject.toml"],"_requirements_localurls":["dask~fastparquet~requirements.txt","dask~fastparquet~setup.py","dask~fastparquet~pyproject.toml"]},{"index":397,"category":"web","githuburl":"https://github.com/klen/muffin","featured":null,"links":null,"description":null,"_repopath":"klen/muffin","_reponame":"muffin","_stars":621,"_forks":25,"_watches":31,"_topics":["python","asyncio","trio","asgi","webframework","muffin","curio"],"_language":"Python","_homepage":"","_description":"Muffin is a fast, simple and asyncronous web-framework for Python 3","_organization":"klen","_updated_at":"2022-10-28T00:00:00.000Z","_last_commit_date":"2022-08-12T00:00:00.000Z","_created_at":"2015-02-03T00:00:00.000Z","_age_weeks":410,"_stars_per_week":1.51,"_pop_contributor_count":13,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["faceapp","home"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":96,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":42,"_pop_recent_releases_adjusted_count":42,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":14,"_pop_score":30.93,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/klen/muffin/master/README.rst","_readme_localurl":"klen~muffin~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/klen/muffin/master/setup.py"],"_requirements_localurls":["klen~muffin~setup.py"]},{"index":849,"category":"util","githuburl":"https://github.com/fsspec/s3fs","featured":null,"links":null,"description":null,"_repopath":"fsspec/s3fs","_reponame":"s3fs","_stars":621,"_forks":208,"_watches":21,"_topics":["hacktoberfest"],"_language":"Python","_homepage":"http://s3fs.readthedocs.io/en/latest/","_description":"s3fs: S3 Filesystem ","_organization":"fsspec","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2016-03-16T00:00:00.000Z","_age_weeks":352,"_stars_per_week":1.76,"_pop_contributor_count":108,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","coiled","fal-ai","microsoft","voltrondata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.88,"_pop_updated_issues_count":30,"_pop_closed_issues_count":17,"_pop_created_since_days":82,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":30.0,"_pop_comment_count":77.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":58,"_pop_score":54.7,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/fsspec/s3fs/master/README.rst","_readme_localurl":"fsspec~s3fs~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/fsspec/s3fs/master/requirements.txt","https://raw.githubusercontent.com/fsspec/s3fs/master/setup.py"],"_requirements_localurls":["fsspec~s3fs~requirements.txt","fsspec~s3fs~setup.py"]},{"index":760,"category":"study","githuburl":"https://github.com/jackhidary/quantumcomputingbook","featured":null,"links":null,"description":null,"_repopath":"jackhidary/quantumcomputingbook","_reponame":"quantumcomputingbook","_stars":614,"_forks":187,"_watches":54,"_topics":["quantum","quantum-computing","cirq","qiskit","rigetti","quantum-processor","sycamore","quantum-supremacy","quantum-information","quantum-information-science","google-quantum"],"_language":"Jupyter Notebook","_homepage":"","_description":"quantumcomputingbook: Companion site for the textbook Quantum Computing: An Applied Approach","_organization":"jackhidary","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-10-14T00:00:00.000Z","_created_at":"2019-02-28T00:00:00.000Z","_age_weeks":198,"_stars_per_week":3.09,"_pop_contributor_count":8,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":46,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":6,"_pop_score":21.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jackhidary/quantumcomputingbook/master/README.md","_readme_localurl":"jackhidary~quantumcomputingbook~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":18,"category":"nlp","githuburl":"https://github.com/explosion/spacy-streamlit","featured":null,"links":null,"description":null,"_repopath":"explosion/spacy-streamlit","_reponame":"spacy-streamlit","_stars":613,"_forks":102,"_watches":18,"_topics":["spacy","nlp","natural-language-processing","visualizers","dependency-parsing","part-of-speech-tagging","named-entity-recognition","ner","streamlit","visualizer","text-classification","word-vectors","tokenization","machine-learning"],"_language":"Python","_homepage":"https://share.streamlit.io/ines/spacy-streamlit-demo/master/app.py","_description":"spacy-streamlit: \ud83d\udc51 spaCy building blocks and visualizers for Streamlit apps","_organization":"explosion","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-08-23T00:00:00.000Z","_created_at":"2020-06-23T00:00:00.000Z","_age_weeks":129,"_stars_per_week":4.72,"_pop_contributor_count":12,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["explosion","founderexplosion"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.56,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":30,"_pop_updated_since_days":4,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":23.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/spacy-streamlit/master/README.md","_readme_localurl":"explosion~spacy-streamlit~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/explosion/spacy-streamlit/master/requirements.txt","https://raw.githubusercontent.com/explosion/spacy-streamlit/master/setup.py"],"_requirements_localurls":["explosion~spacy-streamlit~requirements.txt","explosion~spacy-streamlit~setup.py"]},{"index":839,"category":"util","githuburl":"https://github.com/idanya/algo-trader","featured":null,"links":null,"description":null,"_repopath":"idanya/algo-trader","_reponame":"algo-trader","_stars":610,"_forks":57,"_watches":21,"_topics":["algorithmic-trading","backtesting","crypto-bot","python","technical-analysis","trading-bot","trading-strategies"],"_language":"Python","_homepage":"","_description":"algo-trader: Trading bot with support for realtime trading, backtesting, custom strategies and much more.","_organization":"idanya","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2021-09-14T00:00:00.000Z","_age_weeks":65,"_stars_per_week":9.26,"_pop_contributor_count":4,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["fireblocks","scott'sdevelopment"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.5,"_pop_updated_issues_count":21,"_pop_closed_issues_count":17,"_pop_created_since_days":15,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":21.0,"_pop_comment_count":45.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":26.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/idanya/algo-trader/master/README.md","_readme_localurl":"idanya~algo-trader~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/idanya/algo-trader/master/requirements.txt"],"_requirements_localurls":["idanya~algo-trader~requirements.txt"]},{"index":595,"category":"gis","githuburl":"https://github.com/uber/h3-py","featured":null,"links":null,"description":null,"_repopath":"uber/h3-py","_reponame":"h3-py","_stars":601,"_forks":113,"_watches":34,"_topics":["uber","python","hexagonal-architecture","h3","geospatial","geocoding","gis"],"_language":"Python","_homepage":"https://uber.github.io/h3-py","_description":"h3-py: Python bindings for H3, a hierarchical hexagonal geospatial indexing system","_organization":"uber","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2018-06-12T00:00:00.000Z","_age_weeks":235,"_stars_per_week":2.55,"_pop_contributor_count":16,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["alantech","softwareengineer,uber","unfoldedinc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":22,"_pop_closed_issues_count":14,"_pop_created_since_days":55,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":22.0,"_pop_comment_count":50.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":149,"_pop_score":44.47,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/uber/h3-py/master/readme.md","_readme_localurl":"uber~h3-py~readme.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/h3-py/master/setup.py","https://raw.githubusercontent.com/uber/h3-py/master/pyproject.toml"],"_requirements_localurls":["uber~h3-py~setup.py","uber~h3-py~pyproject.toml"]},{"index":680,"category":"util","githuburl":"https://github.com/lukasschwab/arxiv.py","featured":null,"links":null,"description":null,"_repopath":"lukasschwab/arxiv.py","_reponame":"arxiv.py","_stars":588,"_forks":76,"_watches":16,"_topics":["arxiv","arxiv-api","python-wrapper","pdf"],"_language":"Python","_homepage":"","_description":"arxiv.py: Python wrapper for the arXiv API","_organization":"lukasschwab","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-09-12T00:00:00.000Z","_created_at":"2015-11-25T00:00:00.000Z","_age_weeks":368,"_stars_per_week":1.59,"_pop_contributor_count":13,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":86,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":3.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":383,"_pop_score":32.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lukasschwab/arxiv.py/master/README.md","_readme_localurl":"lukasschwab~arxiv.py~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lukasschwab/arxiv.py/master/requirements.txt","https://raw.githubusercontent.com/lukasschwab/arxiv.py/master/setup.py"],"_requirements_localurls":["lukasschwab~arxiv.py~requirements.txt","lukasschwab~arxiv.py~setup.py"]},{"index":796,"category":"graph","githuburl":"https://github.com/westhealth/pyvis","featured":null,"links":null,"description":null,"_repopath":"westhealth/pyvis","_reponame":"pyvis","_stars":582,"_forks":109,"_watches":13,"_topics":["network-visualization","python","networkx"],"_language":"HTML","_homepage":"http://pyvis.readthedocs.io/en/latest/","_description":"pyvis: Python package for creating and visualizing interactive network graphs.","_organization":"westhealth","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2018-05-10T00:00:00.000Z","_age_weeks":240,"_stars_per_week":2.42,"_pop_contributor_count":31,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["westhealth","westhealthinstitute"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.58,"_pop_updated_issues_count":37,"_pop_closed_issues_count":12,"_pop_created_since_days":56,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":37.0,"_pop_comment_count":28.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":24,"_pop_score":38.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/westhealth/pyvis/master/README.md","_readme_localurl":"westhealth~pyvis~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/westhealth/pyvis/master/requirements.txt","https://raw.githubusercontent.com/westhealth/pyvis/master/setup.py"],"_requirements_localurls":["westhealth~pyvis~requirements.txt","westhealth~pyvis~setup.py"]},{"index":505,"category":"gis","githuburl":"https://github.com/scikit-mobility/scikit-mobility","featured":null,"links":null,"description":null,"_repopath":"scikit-mobility/scikit-mobility","_reponame":"scikit-mobility","_stars":573,"_forks":130,"_watches":29,"_topics":["data-science","data-analysis","human-mobility","complex-systems","network-science","statistics","scikit-mobility","mobility-analysis","risk-assessment","mobility-flows","synthetic-flows"],"_language":"Python","_homepage":"https://scikit-mobility.github.io/scikit-mobility/","_description":"scikit-mobility: mobility analysis in Python","_organization":"scikit-mobility","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-06-13T00:00:00.000Z","_created_at":"2019-04-30T00:00:00.000Z","_age_weeks":189,"_stars_per_week":3.02,"_pop_contributor_count":21,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["argonnenationallaboratory","isti-cnr"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.67,"_pop_updated_issues_count":10,"_pop_closed_issues_count":1,"_pop_created_since_days":44,"_pop_updated_since_days":6,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":10.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":20,"_pop_score":30.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scikit-mobility/scikit-mobility/master/README.md","_readme_localurl":"scikit-mobility~scikit-mobility~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scikit-mobility/scikit-mobility/master/setup.py","https://raw.githubusercontent.com/scikit-mobility/scikit-mobility/master/pyproject.toml"],"_requirements_localurls":["scikit-mobility~scikit-mobility~setup.py","scikit-mobility~scikit-mobility~pyproject.toml"]},{"index":117,"category":"nlp","githuburl":"https://github.com/iclrandd/blackstone","featured":null,"links":null,"description":null,"_repopath":"iclrandd/blackstone","_reponame":"Blackstone","_stars":573,"_forks":93,"_watches":37,"_topics":["law","caselaw","nlp","spacy-models","legaltech"],"_language":"Python","_homepage":"https://research.iclr.co.uk","_description":"Blackstone: :black_circle: A spaCy pipeline and model for NLP on unstructured legal text.","_organization":"iclrandd","_updated_at":"2022-11-27T00:00:00.000Z","_last_commit_date":"2021-01-31T00:00:00.000Z","_created_at":"2019-03-25T00:00:00.000Z","_age_weeks":195,"_stars_per_week":2.94,"_pop_contributor_count":8,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["theincorporatedcounciloflawreportingforenglandandwales"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":45,"_pop_updated_since_days":23,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":11.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/iclrandd/blackstone/master/README.md","_readme_localurl":"iclrandd~blackstone~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/iclrandd/blackstone/master/setup.py"],"_requirements_localurls":["iclrandd~blackstone~setup.py"]},{"index":831,"category":"typing","githuburl":"https://github.com/python-attrs/cattrs","featured":null,"links":null,"description":null,"_repopath":"python-attrs/cattrs","_reponame":"cattrs","_stars":570,"_forks":82,"_watches":15,"_topics":["attrs","deserialization","serialization"],"_language":"Python","_homepage":null,"_description":"cattrs: Complex custom class converters for attrs.","_organization":"python-attrs","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2016-08-28T00:00:00.000Z","_age_weeks":329,"_stars_per_week":1.73,"_pop_contributor_count":44,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","pocketzworld"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.77,"_pop_updated_issues_count":33,"_pop_closed_issues_count":18,"_pop_created_since_days":77,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":33.0,"_pop_comment_count":90.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":73,"_pop_score":49.46,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/python-attrs/cattrs/master/README.rst","_readme_localurl":"python-attrs~cattrs~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-attrs/cattrs/master/pyproject.toml"],"_requirements_localurls":["python-attrs~cattrs~pyproject.toml"]},{"index":752,"category":"diffusion","githuburl":"https://github.com/sharonzhou/long_stable_diffusion","featured":null,"links":null,"description":null,"_repopath":"sharonzhou/long_stable_diffusion","_reponame":"long_stable_diffusion","_stars":569,"_forks":44,"_watches":13,"_topics":[],"_language":"Python","_homepage":"","_description":"long_stable_diffusion: Long-form text-to-images generation, using a pipeline of deep generative models (GPT-3 and Stable Diffusion)","_organization":"sharonzhou","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-10-30T00:00:00.000Z","_created_at":"2022-09-04T00:00:00.000Z","_age_weeks":15,"_stars_per_week":37.58,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["stanford"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":3,"_pop_closed_issues_count":2,"_pop_created_since_days":4,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":11.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sharonzhou/long_stable_diffusion/master/README.md","_readme_localurl":"sharonzhou~long_stable_diffusion~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/sharonzhou/long_stable_diffusion/master/requirements.txt"],"_requirements_localurls":["sharonzhou~long_stable_diffusion~requirements.txt"]},{"index":808,"category":"web","githuburl":"https://github.com/s3rius/fastapi-template","featured":null,"links":null,"description":null,"_repopath":"s3rius/fastapi-template","_reponame":"FastAPI-template","_stars":569,"_forks":51,"_watches":11,"_topics":["fastapi","cookiecutter","cookiecutter-template","cookiecutter-python3","sqlalchemy-orm","asynchronous","ormar","tortoise-orm","aerich","alembic","python3","asyncio","graphql","strawberry-graphql","opentelemetry","prometheus","sentry","fastapi-template","fastapi-boilerplate"],"_language":"Python","_homepage":"","_description":"FastAPI-template: Feature rich robust FastAPI template.","_organization":"s3rius","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2020-10-05T00:00:00.000Z","_age_weeks":115,"_stars_per_week":4.95,"_pop_contributor_count":12,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["fyndiq","gazprom-media","infosec"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.06,"_pop_updated_issues_count":26,"_pop_closed_issues_count":21,"_pop_created_since_days":27,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":26.0,"_pop_comment_count":63.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":37.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/s3rius/fastapi-template/master/README.md","_readme_localurl":"s3rius~fastapi-template~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/s3rius/fastapi-template/master/pyproject.toml"],"_requirements_localurls":["s3rius~fastapi-template~pyproject.toml"]},{"index":690,"category":"util","githuburl":"https://github.com/pyfpdf/fpdf2","featured":null,"links":null,"description":null,"_repopath":"pyfpdf/fpdf2","_reponame":"fpdf2","_stars":568,"_forks":152,"_watches":16,"_topics":["pdf-generation","pdf","python","hacktoberfest","barcode","pdf-library","python3","library","svg","markdown"],"_language":"Python","_homepage":"https://pyfpdf.github.io/fpdf2/","_description":"fpdf2: Simple PDF generation for Python","_organization":"pyfpdf","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2017-03-15T00:00:00.000Z","_age_weeks":300,"_stars_per_week":1.89,"_pop_contributor_count":81,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lymaconsulting","onapsis","sncfconnect&techvoyages-sncf-technologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.46,"_pop_updated_issues_count":87,"_pop_closed_issues_count":69,"_pop_created_since_days":70,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":87.0,"_pop_comment_count":296.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.4,"_pop_dependents_count":0,"_pop_score":49.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyfpdf/fpdf2/master/README.md","_readme_localurl":"pyfpdf~fpdf2~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyfpdf/fpdf2/master/setup.py"],"_requirements_localurls":["pyfpdf~fpdf2~setup.py"]},{"index":889,"category":"gis","githuburl":"https://github.com/osgeo/grass","featured":null,"links":null,"description":null,"_repopath":"osgeo/grass","_reponame":"grass","_stars":562,"_forks":209,"_watches":47,"_topics":["osgeo","grass-gis","geospatial","geospatial-analysis","raster","vector","timeseries-analysis","earth-observation","gis","hacktoberfest","open-science","remote-sensing","science","spatial"],"_language":"C","_homepage":"https://grass.osgeo.org","_description":"GRASS GIS - free and open source Geographic Information System (GIS)","_organization":"osgeo","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2019-05-17T00:00:00.000Z","_age_weeks":187,"_stars_per_week":3.0,"_pop_contributor_count":93,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["czechtechnicaluniversityinprague","mundialis","ncsu"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.92,"_pop_updated_issues_count":198,"_pop_closed_issues_count":117,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":37,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":198.0,"_pop_comment_count":394.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":187,"_pop_score":58.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/osgeo/grass/master/README.md","_readme_localurl":"osgeo~grass~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/osgeo/grass/master/pyproject.toml"],"_requirements_localurls":["osgeo~grass~pyproject.toml"]},{"index":167,"category":"nlp","githuburl":"https://github.com/lexpredict/lexpredict-lexnlp","featured":null,"links":null,"description":null,"_repopath":"lexpredict/lexpredict-lexnlp","_reponame":"lexpredict-lexnlp","_stars":557,"_forks":153,"_watches":49,"_topics":["nlp","ml","legal","legaltech","linguistics","law","contracts","analytics","data"],"_language":"HTML","_homepage":null,"_description":"lexpredict-lexnlp: LexNLP by LexPredict","_organization":"lexpredict","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-08-10T00:00:00.000Z","_created_at":"2017-09-30T00:00:00.000Z","_age_weeks":272,"_stars_per_week":2.05,"_pop_contributor_count":8,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bommaritoconsulting"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":5,"_pop_closed_issues_count":0,"_pop_created_since_days":64,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":5.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":17,"_pop_score":23.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lexpredict/lexpredict-lexnlp/master/README.md","_readme_localurl":"lexpredict~lexpredict-lexnlp~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lexpredict/lexpredict-lexnlp/master/setup.py"],"_requirements_localurls":["lexpredict~lexpredict-lexnlp~setup.py"]},{"index":567,"category":"sim","githuburl":"https://github.com/gboeing/pynamical","featured":null,"links":null,"description":null,"_repopath":"gboeing/pynamical","_reponame":"pynamical","_stars":551,"_forks":108,"_watches":32,"_topics":["chaos","nonlinear","fractal","logistic","visualization","modeling","animation","math","physics","python","pandas","numba","numpy","matplotlib","ipynb","bifurcation-diagram","fractals","systems","phase-diagram","cobweb-plot"],"_language":"Python","_homepage":"https://geoffboeing.com/publications/nonlinear-chaos-fractals-prediction/","_description":"Pynamical is a Python package for modeling and visualizing discrete nonlinear dynamical systems, chaos, and fractals.","_organization":"gboeing","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-05-24T00:00:00.000Z","_created_at":"2014-09-28T00:00:00.000Z","_age_weeks":429,"_stars_per_week":1.28,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["universityofsoutherncalifornia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":100,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":12.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gboeing/pynamical/master/README.md","_readme_localurl":"gboeing~pynamical~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gboeing/pynamical/master/requirements.txt","https://raw.githubusercontent.com/gboeing/pynamical/master/setup.py"],"_requirements_localurls":["gboeing~pynamical~requirements.txt","gboeing~pynamical~setup.py"]},{"index":259,"category":"crypto","githuburl":"https://github.com/pmaji/crypto-whale-watching-app","featured":null,"links":null,"description":null,"_repopath":"pmaji/crypto-whale-watching-app","_reponame":"crypto-whale-watching-app","_stars":548,"_forks":132,"_watches":48,"_topics":["gdax","python","cryptocurrency","ethereum","litecoin","bitcoin","cryptocurrency-exchanges","python3","dash","ethereum-blockchain","bitcoin-api","bitcoin-price","cryptocurrency-price-ticker","cryptocurrency-prices","litecoin-price","ethereum-price","gdax-api","gdax-python","plotly","plotly-dash"],"_language":"Python","_homepage":"","_description":"crypto-whale-watching-app: Python Dash app that tracks whale activity in cryptocurrency markets.","_organization":"pmaji","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-08T00:00:00.000Z","_created_at":"2018-01-23T00:00:00.000Z","_age_weeks":255,"_stars_per_week":2.14,"_pop_contributor_count":8,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["capitalone"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":2,"_pop_closed_issues_count":2,"_pop_created_since_days":60,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":21.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pmaji/crypto-whale-watching-app/master/README.md","_readme_localurl":"pmaji~crypto-whale-watching-app~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/pmaji/crypto-whale-watching-app/master/requirements.txt"],"_requirements_localurls":["pmaji~crypto-whale-watching-app~requirements.txt"]},{"index":235,"category":"nlp","githuburl":"https://github.com/salesforce/codet5","featured":null,"links":null,"description":null,"_repopath":"salesforce/codet5","_reponame":"CodeT5","_stars":547,"_forks":105,"_watches":18,"_topics":["language-model","code-intelligence","programming-language","representation-learning","nlp"],"_language":"Python","_homepage":"https://arxiv.org/abs/2109.00859","_description":"Code for CodeT5: a new code-aware pre-trained encoder-decoder model.","_organization":"salesforce","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-07-08T00:00:00.000Z","_created_at":"2021-08-16T00:00:00.000Z","_age_weeks":70,"_stars_per_week":7.81,"_pop_contributor_count":3,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["salesforceresearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":10,"_pop_closed_issues_count":3,"_pop_created_since_days":16,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":10.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":13.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/codet5/master/README.md","_readme_localurl":"salesforce~codet5~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":874,"category":"util","githuburl":"https://github.com/ipython/ipykernel","featured":null,"links":null,"description":null,"_repopath":"ipython/ipykernel","_reponame":"ipykernel","_stars":529,"_forks":335,"_watches":33,"_topics":["ipython","ipython-kernel","jupyter","python","closember","jupyter-notebook","kernel"],"_language":"Python","_homepage":"https://ipython.readthedocs.io/en/stable/","_description":"ipykernel: IPython Kernel for Jupyter","_organization":"ipython","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":401,"_stars_per_week":1.32,"_pop_contributor_count":161,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","mongodb","quansight-labs","simularesearchlaboratory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.9,"_pop_updated_issues_count":77,"_pop_closed_issues_count":59,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":29,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":29,"_pop_issue_count":77.0,"_pop_comment_count":132.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":1683,"_pop_score":65.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ipython/ipykernel/master/README.md","_readme_localurl":"ipython~ipykernel~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ipython/ipykernel/master/pyproject.toml"],"_requirements_localurls":["ipython~ipykernel~pyproject.toml"]},{"index":160,"category":"nlp","githuburl":"https://github.com/nipunsadvilkar/pysbd","featured":null,"links":null,"description":null,"_repopath":"nipunsadvilkar/pysbd","_reponame":"pySBD","_stars":528,"_forks":63,"_watches":10,"_topics":["sentence-boundary-detection","python","segmentation","rule-based","sentence-tokenizer","sentence"],"_language":"Python","_homepage":"","_description":"pySBD: \ud83d\udc0d\ud83d\udcafpySBD (Python Sentence Boundary Disambiguation) is a rule-based sentence boundary detection that works out-of-the-box.","_organization":"nipunsadvilkar","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-02-11T00:00:00.000Z","_created_at":"2017-06-11T00:00:00.000Z","_age_weeks":288,"_stars_per_week":1.83,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["explosion","gerulatatechnologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":67,"_pop_updated_since_days":22,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":2.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":5,"_pop_score":23.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nipunsadvilkar/pysbd/master/README.md","_readme_localurl":"nipunsadvilkar~pysbd~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nipunsadvilkar/pysbd/master/setup.py"],"_requirements_localurls":["nipunsadvilkar~pysbd~setup.py"]},{"index":625,"category":"gis","githuburl":"https://github.com/scitools/iris","featured":null,"links":null,"description":null,"_repopath":"scitools/iris","_reponame":"iris","_stars":527,"_forks":259,"_watches":44,"_topics":["iris","python","netcdf","grib","visualisation","data-analysis","earth-science","meteorology","oceanography","spaceweather"],"_language":"Python","_homepage":"https://scitools-iris.readthedocs.io/en/latest/","_description":"iris: A powerful, format-agnostic, and community-driven Python package for analysing and visualising Earth science data","_organization":"scitools","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2012-08-06T00:00:00.000Z","_age_weeks":541,"_stars_per_week":0.97,"_pop_contributor_count":99,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["metoffice"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.63,"_pop_updated_issues_count":257,"_pop_closed_issues_count":160,"_pop_created_since_days":126,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":257.0,"_pop_comment_count":387.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":46,"_pop_score":53.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scitools/iris/master/README.md","_readme_localurl":"scitools~iris~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scitools/iris/master/setup.py","https://raw.githubusercontent.com/scitools/iris/master/pyproject.toml"],"_requirements_localurls":["scitools~iris~setup.py","scitools~iris~pyproject.toml"]},{"index":516,"category":"ml-dl","githuburl":"https://github.com/kakaobrain/rq-vae-transformer","featured":null,"links":null,"description":null,"_repopath":"kakaobrain/rq-vae-transformer","_reponame":"rq-vae-transformer","_stars":521,"_forks":60,"_watches":15,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"rq-vae-transformer: The official implementation of Autoregressive Image Generation using Residual Quantization (CVPR '22)","_organization":"kakaobrain","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-08-18T00:00:00.000Z","_created_at":"2022-03-03T00:00:00.000Z","_age_weeks":41,"_stars_per_week":12.53,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["kakaobrain"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":3,"_pop_closed_issues_count":2,"_pop_created_since_days":10,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":12.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kakaobrain/rq-vae-transformer/master/README.md","_readme_localurl":"kakaobrain~rq-vae-transformer~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/kakaobrain/rq-vae-transformer/master/requirements.txt"],"_requirements_localurls":["kakaobrain~rq-vae-transformer~requirements.txt"]},{"index":685,"category":"ml","githuburl":"https://github.com/nvidia/cuda-python","featured":null,"links":null,"description":null,"_repopath":"nvidia/cuda-python","_reponame":"cuda-python","_stars":520,"_forks":39,"_watches":22,"_topics":[],"_language":"Python","_homepage":"https://nvidia.github.io/cuda-python/","_description":"cuda-python: CUDA Python Low-level Bindings","_organization":"nvidia","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2021-06-28T00:00:00.000Z","_age_weeks":77,"_stars_per_week":6.75,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.23,"_pop_updated_issues_count":18,"_pop_closed_issues_count":14,"_pop_created_since_days":18,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":18.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":3,"_pop_score":28.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nvidia/cuda-python/master/README.md","_readme_localurl":"nvidia~cuda-python~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nvidia/cuda-python/master/requirements.txt","https://raw.githubusercontent.com/nvidia/cuda-python/master/setup.py"],"_requirements_localurls":["nvidia~cuda-python~requirements.txt","nvidia~cuda-python~setup.py"]},{"index":576,"category":"util","githuburl":"https://github.com/fsspec/filesystem_spec","featured":null,"links":null,"description":null,"_repopath":"fsspec/filesystem_spec","_reponame":"filesystem_spec","_stars":520,"_forks":226,"_watches":21,"_topics":[],"_language":"Python","_homepage":null,"_description":"filesystem_spec: A specification that python filesystems should adhere to.","_organization":"fsspec","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2018-04-23T00:00:00.000Z","_age_weeks":243,"_stars_per_week":2.14,"_pop_contributor_count":165,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["abcellerabiologics","anaconda","fal-ai","microsoft","nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.67,"_pop_updated_issues_count":118,"_pop_closed_issues_count":84,"_pop_created_since_days":57,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":118.0,"_pop_comment_count":314.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":209,"_pop_score":61.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fsspec/filesystem_spec/master/README.md","_readme_localurl":"fsspec~filesystem_spec~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/fsspec/filesystem_spec/master/setup.py","https://raw.githubusercontent.com/fsspec/filesystem_spec/master/pyproject.toml"],"_requirements_localurls":["fsspec~filesystem_spec~setup.py","fsspec~filesystem_spec~pyproject.toml"]},{"index":665,"category":"study","githuburl":"https://github.com/rasbt/stat453-deep-learning-ss20","featured":null,"links":null,"description":null,"_repopath":"rasbt/stat453-deep-learning-ss20","_reponame":"stat453-deep-learning-ss20","_stars":518,"_forks":148,"_watches":36,"_topics":[],"_language":"Jupyter Notebook","_homepage":"http://pages.stat.wisc.edu/~sraschka/teaching/stat453-ss2020/","_description":"stat453-deep-learning-ss20: STAT 453: Intro to Deep Learning @ UW-Madison (Spring 2020)","_organization":"rasbt","_updated_at":"2022-11-30T00:00:00.000Z","_last_commit_date":"2020-05-01T00:00:00.000Z","_created_at":"2020-01-20T00:00:00.000Z","_age_weeks":152,"_stars_per_week":3.41,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lightning-ai,universityofwisconsin-madison"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":35,"_pop_updated_since_days":32,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":6,"_pop_score":11.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/stat453-deep-learning-ss20/master/README.md","_readme_localurl":"rasbt~stat453-deep-learning-ss20~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":306,"category":"crypto","githuburl":"https://github.com/palkeo/panoramix","featured":null,"links":null,"description":null,"_repopath":"palkeo/panoramix","_reponame":"panoramix","_stars":516,"_forks":142,"_watches":31,"_topics":[],"_language":"Python","_homepage":"","_description":"panoramix: Ethereum decompiler","_organization":"palkeo","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2020-08-22T00:00:00.000Z","_created_at":"2020-02-17T00:00:00.000Z","_age_weeks":148,"_stars_per_week":3.49,"_pop_contributor_count":4,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ethereum","eveem.org"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":5,"_pop_closed_issues_count":2,"_pop_created_since_days":34,"_pop_updated_since_days":28,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":5.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":16.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/palkeo/panoramix/master/README.md","_readme_localurl":"palkeo~panoramix~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/palkeo/panoramix/master/setup.py"],"_requirements_localurls":["palkeo~panoramix~setup.py"]},{"index":525,"category":"gis","githuburl":"https://github.com/toblerity/rtree","featured":null,"links":null,"description":null,"_repopath":"toblerity/rtree","_reponame":"rtree","_stars":515,"_forks":123,"_watches":30,"_topics":[],"_language":"Python","_homepage":"https://rtree.readthedocs.io/en/latest/","_description":"Rtree: spatial index for Python GIS \u00b6","_organization":"toblerity","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2011-06-19T00:00:00.000Z","_age_weeks":600,"_stars_per_week":0.86,"_pop_contributor_count":39,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["hobu","planetlabs","universityofillinoisaturbana-champaign","universityofutah"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.75,"_pop_updated_issues_count":11,"_pop_closed_issues_count":10,"_pop_created_since_days":140,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":11.0,"_pop_comment_count":26.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":25,"_pop_score":47.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/toblerity/rtree/master/README.md","_readme_localurl":"toblerity~rtree~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/toblerity/rtree/master/setup.py","https://raw.githubusercontent.com/toblerity/rtree/master/pyproject.toml"],"_requirements_localurls":["toblerity~rtree~setup.py","toblerity~rtree~pyproject.toml"]},{"index":883,"category":"time-series","githuburl":"https://github.com/autoviml/auto_ts","featured":null,"links":null,"description":null,"_repopath":"autoviml/auto_ts","_reponame":"Auto_TS","_stars":514,"_forks":92,"_watches":16,"_topics":["time-series","time-series-analysis","auto-timeseries","automl","autosklearn","tpot","autokeras","python3","prophet","python","sklearn","arima","auto-arima","auto-sklearn"],"_language":"Jupyter Notebook","_homepage":"","_description":"Auto_TS: Automatically build ARIMA, SARIMAX, VAR, FB Prophet and XGBoost Models on Time Series data sets with a Single Line of Code. Now updated with Dask to handle millions of rows.","_organization":"autoviml","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-08-16T00:00:00.000Z","_created_at":"2020-02-15T00:00:00.000Z","_age_weeks":148,"_stars_per_week":3.47,"_pop_contributor_count":6,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["o9solutions"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.27,"_pop_updated_issues_count":8,"_pop_closed_issues_count":3,"_pop_created_since_days":35,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":8.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":26,"_pop_score":27.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/autoviml/auto_ts/master/README.md","_readme_localurl":"autoviml~auto_ts~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/autoviml/auto_ts/master/requirements.txt","https://raw.githubusercontent.com/autoviml/auto_ts/master/setup.py"],"_requirements_localurls":["autoviml~auto_ts~requirements.txt","autoviml~auto_ts~setup.py"]},{"index":589,"category":"ml-ops","githuburl":"https://github.com/kedro-org/kedro-viz","featured":null,"links":null,"description":null,"_repopath":"kedro-org/kedro-viz","_reponame":"kedro-viz","_stars":510,"_forks":84,"_watches":9,"_topics":["kedro","kedro-plugin","data-visualization","hacktoberfest","react","experiment-tracking","python"],"_language":"JavaScript","_homepage":"https://demo.kedro.org/","_description":"kedro-viz: Visualise your Kedro data and machine-learning pipelines and track your experiments. ","_organization":"kedro-org","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-05-09T00:00:00.000Z","_age_weeks":188,"_stars_per_week":2.7,"_pop_contributor_count":38,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["kedro-org,quantumblacklabs","medshr"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.83,"_pop_updated_issues_count":149,"_pop_closed_issues_count":116,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":149.0,"_pop_comment_count":204.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":2,"_pop_score":44.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kedro-org/kedro-viz/master/README.md","_readme_localurl":"kedro-org~kedro-viz~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":413,"category":"util","githuburl":"https://github.com/bastibe/python-soundfile","featured":null,"links":null,"description":null,"_repopath":"bastibe/python-soundfile","_reponame":"python-soundfile","_stars":507,"_forks":85,"_watches":17,"_topics":[],"_language":"Python","_homepage":"","_description":"python-soundfile: SoundFile is an audio library based on libsndfile, CFFI, and NumPy","_organization":"bastibe","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-09-27T00:00:00.000Z","_created_at":"2013-08-27T00:00:00.000Z","_age_weeks":485,"_stars_per_week":1.04,"_pop_contributor_count":28,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quantco","self"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":30,"_pop_closed_issues_count":13,"_pop_created_since_days":113,"_pop_updated_since_days":3,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":30.0,"_pop_comment_count":99.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.3,"_pop_dependents_count":0,"_pop_score":37.3,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/bastibe/python-soundfile/master/README.rst","_readme_localurl":"bastibe~python-soundfile~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bastibe/python-soundfile/master/setup.py"],"_requirements_localurls":["bastibe~python-soundfile~setup.py"]},{"index":359,"category":"ml-ops","githuburl":"https://github.com/google/ml-metadata","featured":null,"links":null,"description":null,"_repopath":"google/ml-metadata","_reponame":"ml-metadata","_stars":502,"_forks":114,"_watches":27,"_topics":[],"_language":"C++","_homepage":"https://www.tensorflow.org/tfx/guide/mlmd","_description":"ml-metadata: For recording and retrieving metadata associated with ML developer and data scientist workflows.","_organization":"google","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2019-01-15T00:00:00.000Z","_age_weeks":204,"_stars_per_week":2.45,"_pop_contributor_count":15,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.56,"_pop_updated_issues_count":4,"_pop_closed_issues_count":2,"_pop_created_since_days":48,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":4.0,"_pop_comment_count":28.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":7.0,"_pop_dependents_count":20,"_pop_score":37.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/ml-metadata/master/README.md","_readme_localurl":"google~ml-metadata~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/google/ml-metadata/master/setup.py","https://raw.githubusercontent.com/google/ml-metadata/master/pyproject.toml"],"_requirements_localurls":["google~ml-metadata~setup.py","google~ml-metadata~pyproject.toml"]},{"index":671,"category":"ml","githuburl":"https://github.com/apple/ml-ane-transformers","featured":null,"links":null,"description":null,"_repopath":"apple/ml-ane-transformers","_reponame":"ml-ane-transformers","_stars":494,"_forks":26,"_watches":26,"_topics":[],"_language":"Python","_homepage":"","_description":"ml-ane-transformers: Reference implementation of the Transformer architecture optimized for Apple Neural Engine (ANE)","_organization":"apple","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-08-09T00:00:00.000Z","_created_at":"2022-06-03T00:00:00.000Z","_age_weeks":28,"_stars_per_week":17.38,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":7,"_pop_updated_since_days":4,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":5.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apple/ml-ane-transformers/master/README.md","_readme_localurl":"apple~ml-ane-transformers~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/apple/ml-ane-transformers/master/requirements.txt","https://raw.githubusercontent.com/apple/ml-ane-transformers/master/setup.py"],"_requirements_localurls":["apple~ml-ane-transformers~requirements.txt","apple~ml-ane-transformers~setup.py"]},{"index":241,"category":"ml","githuburl":"https://github.com/microsoft/focal-transformer","featured":null,"links":null,"description":null,"_repopath":"microsoft/focal-transformer","_reponame":"Focal-Transformer","_stars":487,"_forks":57,"_watches":17,"_topics":[],"_language":"Python","_homepage":"","_description":"Focal-Transformer: [NeurIPS 2021 Spotlight] Official code for \"Focal Self-attention for Local-Global Interactions in Vision Transformers\"","_organization":"microsoft","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-03-27T00:00:00.000Z","_created_at":"2021-07-10T00:00:00.000Z","_age_weeks":75,"_stars_per_week":6.47,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":18,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":2,"_pop_score":12.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/focal-transformer/master/README.md","_readme_localurl":"microsoft~focal-transformer~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":673,"category":"perf","githuburl":"https://github.com/brandtbucher/specialist","featured":null,"links":null,"description":null,"_repopath":"brandtbucher/specialist","_reponame":"specialist","_stars":485,"_forks":9,"_watches":9,"_topics":[],"_language":"Python","_homepage":"","_description":"specialist: Visualize CPython 3.11's specializing, adaptive interpreter. :fire:","_organization":"brandtbucher","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2022-06-01T00:00:00.000Z","_age_weeks":28,"_stars_per_week":16.89,"_pop_contributor_count":2,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["christianclauss","microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":7,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":3.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.7,"_pop_dependents_count":0,"_pop_score":26.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/brandtbucher/specialist/master/README.md","_readme_localurl":"brandtbucher~specialist~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/brandtbucher/specialist/master/setup.py"],"_requirements_localurls":["brandtbucher~specialist~setup.py"]},{"index":797,"category":"ml-interpretability","githuburl":"https://github.com/selfexplainml/piml-toolbox","featured":null,"links":null,"description":null,"_repopath":"selfexplainml/piml-toolbox","_reponame":"PiML-Toolbox","_stars":485,"_forks":52,"_watches":14,"_topics":["interpretable-machine-learning","low-code","ml-workflow","model-diagnostics"],"_language":"Jupyter Notebook","_homepage":"https://selfexplainml.github.io/PiML-Toolbox","_description":"PiML-Toolbox: PiML (Python Interpretable Machine Learning) toolbox for model development and model validation","_organization":"selfexplainml","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2022-04-29T00:00:00.000Z","_age_weeks":33,"_stars_per_week":14.51,"_pop_contributor_count":6,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cityuniversityofhongkong"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.02,"_pop_updated_issues_count":16,"_pop_closed_issues_count":13,"_pop_created_since_days":8,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":16.0,"_pop_comment_count":24.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":5,"_pop_score":32.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/selfexplainml/piml-toolbox/master/README.md","_readme_localurl":"selfexplainml~piml-toolbox~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":216,"category":"ml-ops","githuburl":"https://github.com/nccr-itmo/fedot","featured":null,"links":null,"description":null,"_repopath":"nccr-itmo/fedot","_reponame":"FEDOT","_stars":481,"_forks":63,"_watches":9,"_topics":["automl","machine-learning","evolutionary-algorithms","genetic-programming","structural-learning","automated-machine-learning","hyperparameter-optimization","parameter-tuning","automation","multimodality","fedot"],"_language":"Python","_homepage":"https://fedot.readthedocs.io","_description":"FEDOT: Automated modeling and machine learning framework FEDOT","_organization":"nccr-itmo","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2020-01-13T00:00:00.000Z","_age_weeks":153,"_stars_per_week":3.14,"_pop_contributor_count":26,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["itmouniversity","mail.rugroup","wiredhut"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.02,"_pop_updated_issues_count":175,"_pop_closed_issues_count":137,"_pop_created_since_days":36,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":175.0,"_pop_comment_count":167.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":40.61,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/nccr-itmo/fedot/master/README.rst","_readme_localurl":"nccr-itmo~fedot~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nccr-itmo/fedot/master/requirements.txt","https://raw.githubusercontent.com/nccr-itmo/fedot/master/setup.py"],"_requirements_localurls":["nccr-itmo~fedot~requirements.txt","nccr-itmo~fedot~setup.py"]},{"index":794,"category":"gis","githuburl":"https://github.com/kvos/coastsat","featured":null,"links":null,"description":null,"_repopath":"kvos/coastsat","_reponame":"CoastSat","_stars":480,"_forks":195,"_watches":23,"_topics":["google-earth-engine","earth-engine","remote-sensing","satellite-images","coastal-engineering","shoreline-detection"],"_language":"Jupyter Notebook","_homepage":"http://coastsat.wrl.unsw.edu.au/","_description":"CoastSat: Global shoreline mapping tool from satellite imagery","_organization":"kvos","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-09-28T00:00:00.000Z","_age_weeks":220,"_stars_per_week":2.18,"_pop_contributor_count":14,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["sacramentostate","unswsydney","usaceerdc-fieldresearchfacility","waterresearchlaboratory","waterresearchlaboratory(unsw)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.4,"_pop_updated_issues_count":53,"_pop_closed_issues_count":36,"_pop_created_since_days":51,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":53.0,"_pop_comment_count":109.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":17,"_pop_score":45.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kvos/coastsat/master/README.md","_readme_localurl":"kvos~coastsat~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":47,"category":"data","githuburl":"https://github.com/macbre/sql-metadata","featured":1.0,"links":null,"description":null,"_repopath":"macbre/sql-metadata","_reponame":"sql-metadata","_stars":478,"_forks":84,"_watches":15,"_topics":["sql","parser","database","sql-parser","metadata","sqlparse","python-package","python3-library","hiveql","hive","mysql-query"],"_language":"Python","_homepage":"https://pypi.python.org/pypi/sql-metadata","_description":"sql-metadata: Uses tokenized query returned by python-sqlparse and generates query metadata","_organization":"macbre","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2017-06-06T00:00:00.000Z","_age_weeks":288,"_stars_per_week":1.65,"_pop_contributor_count":13,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["automattic","kaizentech"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.0,"_pop_updated_issues_count":21,"_pop_closed_issues_count":15,"_pop_created_since_days":67,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":21.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":27,"_pop_score":38.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/macbre/sql-metadata/master/README.md","_readme_localurl":"macbre~sql-metadata~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/macbre/sql-metadata/master/pyproject.toml"],"_requirements_localurls":["macbre~sql-metadata~pyproject.toml"]},{"index":487,"category":"gis","githuburl":"https://github.com/fatiando/verde","featured":null,"links":null,"description":null,"_repopath":"fatiando/verde","_reponame":"verde","_stars":467,"_forks":60,"_watches":21,"_topics":["geophysics","earth-science","geospatial","python","scipy","interpolation","python3","scipy-stack","fatiando-a-terra","geoscience"],"_language":"Python","_homepage":"https://www.fatiando.org/verde","_description":"verde: Processing and interpolating spatial data with a twist of machine learning","_organization":"fatiando","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2018-04-25T00:00:00.000Z","_age_weeks":242,"_stars_per_week":1.92,"_pop_contributor_count":13,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["fatiando","fatiandoubcgifcompgeolabgeolatinas","spacescienceandengineeringcenter(ssec)","universityofliverpool"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.56,"_pop_updated_issues_count":29,"_pop_closed_issues_count":26,"_pop_created_since_days":57,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":29.0,"_pop_comment_count":21.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":15,"_pop_score":38.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fatiando/verde/master/README.md","_readme_localurl":"fatiando~verde~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/fatiando/verde/master/pyproject.toml"],"_requirements_localurls":["fatiando~verde~pyproject.toml"]},{"index":211,"category":"time-series","githuburl":"https://github.com/firmai/atspy","featured":null,"links":null,"description":null,"_repopath":"firmai/atspy","_reponame":"atspy","_stars":464,"_forks":88,"_watches":21,"_topics":["time-series","time-series-analysis","automated","python","forecasting","forecasting-models","finance"],"_language":"Python","_homepage":"https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3580631","_description":"AtsPy: Automated Time Series Models in Python (by @firmai)","_organization":"firmai","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2021-12-18T00:00:00.000Z","_created_at":"2020-01-28T00:00:00.000Z","_age_weeks":150,"_stars_per_week":3.08,"_pop_contributor_count":5,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["alanturinginstitute,firmai","ddosify"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":35,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":12,"_pop_score":19.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/firmai/atspy/master/README.md","_readme_localurl":"firmai~atspy~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/firmai/atspy/master/requirements.txt","https://raw.githubusercontent.com/firmai/atspy/master/setup.py"],"_requirements_localurls":["firmai~atspy~requirements.txt","firmai~atspy~setup.py"]},{"index":329,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/ppuda","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/ppuda","_reponame":"ppuda","_stars":459,"_forks":61,"_watches":17,"_topics":[],"_language":"Python","_homepage":null,"_description":"ppuda: Code for Parameter Prediction for Unseen Deep Architectures (NeurIPS 2021)","_organization":"facebookresearch","_updated_at":"2022-12-10T00:00:00.000Z","_last_commit_date":"2022-07-26T00:00:00.000Z","_created_at":"2021-10-21T00:00:00.000Z","_age_weeks":60,"_stars_per_week":7.58,"_pop_contributor_count":3,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["samsung-saitailab,montreal"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":14,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":16.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/ppuda/master/README.md","_readme_localurl":"facebookresearch~ppuda~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/ppuda/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/ppuda/master/setup.py","https://raw.githubusercontent.com/facebookresearch/ppuda/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~ppuda~requirements.txt","facebookresearch~ppuda~setup.py","facebookresearch~ppuda~pyproject.toml"]},{"index":497,"category":"ml-dl","githuburl":"https://github.com/mcahny/deep-video-inpainting","featured":null,"links":null,"description":null,"_repopath":"mcahny/deep-video-inpainting","_reponame":"Deep-Video-Inpainting","_stars":448,"_forks":86,"_watches":13,"_topics":[],"_language":"Python","_homepage":"","_description":"Deep-Video-Inpainting: Official pytorch implementation for \"Deep Video Inpainting\" (CVPR 2019)","_organization":"mcahny","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2020-12-10T00:00:00.000Z","_created_at":"2019-05-22T00:00:00.000Z","_age_weeks":186,"_stars_per_week":2.4,"_pop_contributor_count":3,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["kentech"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":44,"_pop_updated_since_days":25,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":2,"_pop_score":12.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mcahny/deep-video-inpainting/master/README.md","_readme_localurl":"mcahny~deep-video-inpainting~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":437,"category":"pandas","githuburl":"https://github.com/polyaxon/datatile","featured":null,"links":null,"description":null,"_repopath":"polyaxon/datatile","_reponame":"datatile","_stars":447,"_forks":40,"_watches":13,"_topics":["pandas","pandas-summary","dataframes","data-analysis","data-science","spark","dask","plotly","statistics","matplotlib","data-profiling","data-visualization","data-summary","data-reporting","data-exploration","dataops","mlops","data-quality","data-quality-monitoring","data-quality-checks"],"_language":"Python","_homepage":"","_description":"datatile: A library for managing, validating, summarizing, and visualizing data","_organization":"polyaxon","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2016-03-25T00:00:00.000Z","_age_weeks":351,"_stars_per_week":1.27,"_pop_contributor_count":10,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["hospiq","sidhulabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":82,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":23.52,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/polyaxon/datatile/master/README.md","_readme_localurl":"polyaxon~datatile~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":375,"category":"viz","githuburl":"https://github.com/vhranger/nodevectors","featured":null,"links":null,"description":null,"_repopath":"vhranger/nodevectors","_reponame":"nodevectors","_stars":445,"_forks":52,"_watches":11,"_topics":[],"_language":"Python","_homepage":"","_description":"nodevectors: Fastest network node embeddings in the west","_organization":"vhranger","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2021-11-06T00:00:00.000Z","_created_at":"2019-07-25T00:00:00.000Z","_age_weeks":177,"_stars_per_week":2.51,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["harvardmedicalschool","sap"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":41,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":16.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vhranger/nodevectors/master/README.md","_readme_localurl":"vhranger~nodevectors~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/vhranger/nodevectors/master/requirements.txt","https://raw.githubusercontent.com/vhranger/nodevectors/master/setup.py"],"_requirements_localurls":["vhranger~nodevectors~requirements.txt","vhranger~nodevectors~setup.py"]},{"index":479,"category":"gis","githuburl":"https://github.com/holoviz/geoviews","featured":null,"links":null,"description":null,"_repopath":"holoviz/geoviews","_reponame":"geoviews","_stars":442,"_forks":67,"_watches":30,"_topics":["holoviz","geoviews","holoviews","geographic-visualizations","cartopy","plotting"],"_language":"Python","_homepage":"http://geoviews.org","_description":"geoviews: Simple, concise geographical visualization in Python","_organization":"holoviz","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2016-04-19T00:00:00.000Z","_age_weeks":347,"_stars_per_week":1.27,"_pop_contributor_count":28,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.69,"_pop_updated_issues_count":19,"_pop_closed_issues_count":11,"_pop_created_since_days":81,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":19.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":10,"_pop_score":38.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/geoviews/master/README.md","_readme_localurl":"holoviz~geoviews~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/geoviews/master/setup.py","https://raw.githubusercontent.com/holoviz/geoviews/master/pyproject.toml"],"_requirements_localurls":["holoviz~geoviews~setup.py","holoviz~geoviews~pyproject.toml"]},{"index":872,"category":"pandas","githuburl":"https://github.com/eventual-inc/daft","featured":null,"links":null,"description":null,"_repopath":"eventual-inc/daft","_reponame":"Daft","_stars":437,"_forks":12,"_watches":6,"_topics":["image-processing","machine-learning","python","data-engineering","data-science","dataframe","deep-learning","distributed-computing"],"_language":"Python","_homepage":"","_description":"Daft: The Python DataFrame for Complex Data","_organization":"eventual-inc","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2022-04-25T00:00:00.000Z","_age_weeks":34,"_stars_per_week":12.85,"_pop_contributor_count":5,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["eventual-inc","freenome","lyft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.44,"_pop_updated_issues_count":199,"_pop_closed_issues_count":173,"_pop_created_since_days":8,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":27,"_pop_recent_releases_adjusted_count":27,"_pop_issue_count":199.0,"_pop_comment_count":41.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":7,"_pop_score":38.74,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/eventual-inc/daft/master/README.rst","_readme_localurl":"eventual-inc~daft~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/eventual-inc/daft/master/pyproject.toml"],"_requirements_localurls":["eventual-inc~daft~pyproject.toml"]},{"index":742,"category":"nlp","githuburl":"https://github.com/koaning/whatlies","featured":null,"links":null,"description":null,"_repopath":"koaning/whatlies","_reponame":"whatlies","_stars":436,"_forks":49,"_watches":13,"_topics":["nlp","embeddings","visualisations"],"_language":"Python","_homepage":"https://koaning.github.io/whatlies/","_description":"whatlies: Toolkit to help understand \"what lies\" in word embeddings. Also benchmarking! ","_organization":"koaning","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-07-28T00:00:00.000Z","_created_at":"2020-02-22T00:00:00.000Z","_age_weeks":147,"_stars_per_week":2.96,"_pop_contributor_count":13,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["explosion","kpmgnetherlands","motain","zalandose"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.27,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":34,"_pop_updated_since_days":5,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":26.78,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/koaning/whatlies/master/readme.md","_readme_localurl":"koaning~whatlies~readme.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/koaning/whatlies/master/setup.py"],"_requirements_localurls":["koaning~whatlies~setup.py"]},{"index":573,"category":"gis","githuburl":"https://github.com/developmentseed/label-maker","featured":null,"links":null,"description":null,"_repopath":"developmentseed/label-maker","_reponame":"label-maker","_stars":436,"_forks":113,"_watches":50,"_topics":["satellite-imagery","data-preparation","deep-learning","computer-vision","remote-sensing","keras"],"_language":"Python","_homepage":"http://devseed.com/label-maker/","_description":"label-maker: Data Preparation for Satellite Machine Learning","_organization":"developmentseed","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2020-11-19T00:00:00.000Z","_created_at":"2018-01-10T00:00:00.000Z","_age_weeks":257,"_stars_per_week":1.69,"_pop_contributor_count":15,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cloud-gov(work)+personalprojects;","developmentseed","planetlabs","regrow"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":60,"_pop_updated_since_days":25,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":9,"_pop_score":27.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/label-maker/master/README.md","_readme_localurl":"developmentseed~label-maker~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/developmentseed/label-maker/master/requirements.txt","https://raw.githubusercontent.com/developmentseed/label-maker/master/setup.py"],"_requirements_localurls":["developmentseed~label-maker~requirements.txt","developmentseed~label-maker~setup.py"]},{"index":582,"category":"gis","githuburl":"https://github.com/developmentseed/titiler","featured":null,"links":null,"description":null,"_repopath":"developmentseed/titiler","_reponame":"titiler","_stars":436,"_forks":99,"_watches":18,"_topics":["fastapi","cog","aws-cdk","aws-lambda","stac","cogeotiff","mosaicjson","raster","dynamic","server","rest","gdal","rasterio","tile","map-tile-server","map-tiles"],"_language":"Python","_homepage":"https://developmentseed.org/titiler/","_description":"titiler: Build your own Raster dynamic map tile services","_organization":"developmentseed","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2019-06-28T00:00:00.000Z","_age_weeks":181,"_stars_per_week":2.4,"_pop_contributor_count":28,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["developmentseed","ozminerals","satellogic","terradue"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.0,"_pop_updated_issues_count":31,"_pop_closed_issues_count":26,"_pop_created_since_days":42,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":31.0,"_pop_comment_count":39.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":13,"_pop_score":46.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/titiler/master/README.md","_readme_localurl":"developmentseed~titiler~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/developmentseed/titiler/master/setup.py"],"_requirements_localurls":["developmentseed~titiler~setup.py"]},{"index":837,"category":"gis","githuburl":"https://github.com/perrygeo/python-rasterstats","featured":null,"links":null,"description":null,"_repopath":"perrygeo/python-rasterstats","_reponame":"python-rasterstats","_stars":434,"_forks":108,"_watches":33,"_topics":[],"_language":"Python","_homepage":"","_description":"python-rasterstats: Summary statistics of geospatial raster datasets based on vector geometries.","_organization":"perrygeo","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-18T00:00:00.000Z","_created_at":"2013-09-18T00:00:00.000Z","_age_weeks":482,"_stars_per_week":0.9,"_pop_contributor_count":30,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aiddata","ouranos","satellogic","southernmethodistuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":9,"_pop_closed_issues_count":2,"_pop_created_since_days":113,"_pop_updated_since_days":2,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":9.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":50,"_pop_score":40.67,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/README.rst","_readme_localurl":"perrygeo~python-rasterstats~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/requirements.txt","https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/setup.py","https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/pyproject.toml"],"_requirements_localurls":["perrygeo~python-rasterstats~requirements.txt","perrygeo~python-rasterstats~setup.py","perrygeo~python-rasterstats~pyproject.toml"]},{"index":844,"category":"perf","githuburl":"https://github.com/joblib/loky","featured":null,"links":null,"description":null,"_repopath":"joblib/loky","_reponame":"loky","_stars":433,"_forks":41,"_watches":9,"_topics":["multiprocessing-library","python"],"_language":"Python","_homepage":"http://loky.readthedocs.io/en/stable/","_description":"loky: Robust and reusable Executor for joblib","_organization":"joblib","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-09-15T00:00:00.000Z","_created_at":"2015-12-25T00:00:00.000Z","_age_weeks":364,"_stars_per_week":1.19,"_pop_contributor_count":16,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["inria","inriasaclay-parietalteam","scikit-learninriafoundation","ucl"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.0,"_pop_updated_issues_count":6,"_pop_closed_issues_count":2,"_pop_created_since_days":85,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":6.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":59,"_pop_score":38.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/joblib/loky/master/README.md","_readme_localurl":"joblib~loky~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/joblib/loky/master/setup.py"],"_requirements_localurls":["joblib~loky~setup.py"]},{"index":863,"category":"ml-ops","githuburl":"https://github.com/astronomer/astronomer","featured":null,"links":null,"description":null,"_repopath":"astronomer/astronomer","_reponame":"astronomer","_stars":431,"_forks":78,"_watches":43,"_topics":["apache-airflow","kubernetes","docker","astronomer-platform"],"_language":"Python","_homepage":"https://www.astronomer.io","_description":"astronomer: Helm Charts for the Astronomer Platform, Apache Airflow as a Service on Kubernetes","_organization":"astronomer","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-01-15T00:00:00.000Z","_age_weeks":257,"_stars_per_week":1.68,"_pop_contributor_count":70,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["astronomer","cerebral"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.96,"_pop_updated_issues_count":113,"_pop_closed_issues_count":109,"_pop_created_since_days":60,"_pop_updated_since_days":0,"_pop_recent_releases_count":29,"_pop_recent_releases_estimated_tags":69,"_pop_recent_releases_adjusted_count":29,"_pop_issue_count":112.0,"_pop_comment_count":78.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":133,"_pop_score":54.6,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/astronomer/astronomer/master/README.md","_readme_localurl":"astronomer~astronomer~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":292,"category":"util","githuburl":"https://github.com/fastai/ghapi","featured":null,"links":null,"description":null,"_repopath":"fastai/ghapi","_reponame":"ghapi","_stars":421,"_forks":45,"_watches":8,"_topics":["github-api","github","nbdev","openapi","api-client"],"_language":"Jupyter Notebook","_homepage":"https://ghapi.fast.ai/","_description":"ghapi: A delightful and complete interface to GitHub's amazing API","_organization":"fastai","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-09-27T00:00:00.000Z","_created_at":"2020-11-21T00:00:00.000Z","_age_weeks":108,"_stars_per_week":3.89,"_pop_contributor_count":16,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["fastai","github","huggingface","streamlit"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.17,"_pop_updated_issues_count":10,"_pop_closed_issues_count":3,"_pop_created_since_days":25,"_pop_updated_since_days":3,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":10.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":21,"_pop_score":35.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fastai/ghapi/master/README.md","_readme_localurl":"fastai~ghapi~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/fastai/ghapi/master/setup.py"],"_requirements_localurls":["fastai~ghapi~setup.py"]},{"index":481,"category":"sim","githuburl":"https://github.com/udst/urbansim","featured":null,"links":null,"description":null,"_repopath":"udst/urbansim","_reponame":"urbansim","_stars":418,"_forks":124,"_watches":78,"_topics":[],"_language":"Python","_homepage":"https://udst.github.io/urbansim/","_description":"urbansim: Platform for building statistical models of cities and regions","_organization":"udst","_updated_at":"2022-12-08T00:00:00.000Z","_last_commit_date":"2020-05-11T00:00:00.000Z","_created_at":"2013-08-15T00:00:00.000Z","_age_weeks":487,"_stars_per_week":0.86,"_pop_contributor_count":20,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["applemontechnologies","google","populus-ai","populus-aimapcraftlabsoaklandanalytics","urbansim"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":114,"_pop_updated_since_days":32,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":40,"_pop_score":28.16,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/udst/urbansim/master/README.rst","_readme_localurl":"udst~urbansim~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/udst/urbansim/master/setup.py"],"_requirements_localurls":["udst~urbansim~setup.py"]},{"index":188,"category":"math","githuburl":"https://github.com/dit/dit","featured":null,"links":null,"description":null,"_repopath":"dit/dit","_reponame":"dit","_stars":417,"_forks":77,"_watches":24,"_topics":["python","information-theory"],"_language":"Python","_homepage":"http://docs.dit.io","_description":"dit: Python package for information theory.","_organization":"dit","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-07-25T00:00:00.000Z","_created_at":"2013-09-29T00:00:00.000Z","_age_weeks":481,"_stars_per_week":0.87,"_pop_contributor_count":20,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.92,"_pop_updated_issues_count":4,"_pop_closed_issues_count":0,"_pop_created_since_days":112,"_pop_updated_since_days":5,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":4.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":269,"_pop_score":36.88,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dit/dit/master/README.rst","_readme_localurl":"dit~dit~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dit/dit/master/requirements.txt","https://raw.githubusercontent.com/dit/dit/master/setup.py","https://raw.githubusercontent.com/dit/dit/master/pyproject.toml"],"_requirements_localurls":["dit~dit~requirements.txt","dit~dit~setup.py","dit~dit~pyproject.toml"]},{"index":486,"category":"gis","githuburl":"https://github.com/earthlab/earthpy","featured":null,"links":null,"description":null,"_repopath":"earthlab/earthpy","_reponame":"earthpy","_stars":412,"_forks":149,"_watches":22,"_topics":["spatial-data","raster","vector","python","education"],"_language":"Python","_homepage":"https://earthpy.readthedocs.io","_description":"earthpy: A package built to support working with spatial data using open source python","_organization":"earthlab","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2021-12-20T00:00:00.000Z","_created_at":"2018-02-20T00:00:00.000Z","_age_weeks":251,"_stars_per_week":1.64,"_pop_contributor_count":41,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["hydrosat","nvidia","pyupio","silviaterra"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":28,"_pop_closed_issues_count":21,"_pop_created_since_days":59,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":28.0,"_pop_comment_count":43.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":60,"_pop_score":41.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/earthlab/earthpy/master/README.md","_readme_localurl":"earthlab~earthpy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/earthlab/earthpy/master/setup.py","https://raw.githubusercontent.com/earthlab/earthpy/master/pyproject.toml"],"_requirements_localurls":["earthlab~earthpy~setup.py","earthlab~earthpy~pyproject.toml"]},{"index":705,"category":"ml-ops","githuburl":"https://github.com/bodywork-ml/bodywork-core","featured":null,"links":null,"description":null,"_repopath":"bodywork-ml/bodywork-core","_reponame":"bodywork-core","_stars":406,"_forks":18,"_watches":9,"_topics":["mlops","python","kubernetes","data-science","machine-learning","pipeline","serving","continuous-deployment","batch","devops","framework","cicd","orchestration"],"_language":"Python","_homepage":"https://bodywork.readthedocs.io/en/latest/","_description":"bodywork-core: ML pipeline orchestration and model deployments on Kubernetes, made really easy.","_organization":"bodywork-ml","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-07-04T00:00:00.000Z","_created_at":"2020-11-17T00:00:00.000Z","_age_weeks":108,"_stars_per_week":3.73,"_pop_contributor_count":4,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bodywork-mllloydsbankinggroup","bodyworkmachinelearning"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.73,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":25,"_pop_updated_since_days":6,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":29,"_pop_recent_releases_adjusted_count":29,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":8,"_pop_score":25.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bodywork-ml/bodywork-core/master/README.md","_readme_localurl":"bodywork-ml~bodywork-core~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bodywork-ml/bodywork-core/master/setup.py"],"_requirements_localurls":["bodywork-ml~bodywork-core~setup.py"]},{"index":472,"category":"nlp","githuburl":"https://github.com/google-research/byt5","featured":null,"links":null,"description":null,"_repopath":"google-research/byt5","_reponame":"byt5","_stars":405,"_forks":25,"_watches":11,"_topics":[],"_language":"Python","_homepage":null,"_description":"google-research/byt5","_organization":"google-research","_updated_at":"2022-12-11T00:00:00.000Z","_last_commit_date":"2022-03-02T00:00:00.000Z","_created_at":"2021-05-26T00:00:00.000Z","_age_weeks":81,"_stars_per_week":4.96,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":19,"_pop_updated_since_days":10,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":5.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google-research/byt5/master/README.md","_readme_localurl":"google-research~byt5~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":275,"category":"crypto","githuburl":"https://github.com/ethtx/ethtx","featured":null,"links":null,"description":null,"_repopath":"ethtx/ethtx","_reponame":"ethtx","_stars":397,"_forks":60,"_watches":16,"_topics":[],"_language":"Python","_homepage":"https://www.ethtx.info","_description":"ethtx: Python package with core transaction decoding functions.","_organization":"ethtx","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2021-06-28T00:00:00.000Z","_age_weeks":77,"_stars_per_week":5.16,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["py-world","tokenflowinsights"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.37,"_pop_updated_issues_count":23,"_pop_closed_issues_count":22,"_pop_created_since_days":18,"_pop_updated_since_days":1,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":23.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":28.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethtx/ethtx/master/README.md","_readme_localurl":"ethtx~ethtx~README.md","_requirements_filenames":["setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/ethtx/ethtx/master/setup.py","https://raw.githubusercontent.com/ethtx/ethtx/master/Pipfile"],"_requirements_localurls":["ethtx~ethtx~setup.py","ethtx~ethtx~Pipfile"]},{"index":577,"category":"jupyter","githuburl":"https://github.com/computationalmodelling/nbval","featured":null,"links":null,"description":null,"_repopath":"computationalmodelling/nbval","_reponame":"nbval","_stars":393,"_forks":50,"_watches":10,"_topics":["ipython-notebook","jupyter-notebook","python","testing","pytest-plugin","pytest"],"_language":"Python","_homepage":"","_description":"nbval: A py.test plugin to validate Jupyter notebooks","_organization":"computationalmodelling","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-09-17T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":401,"_stars_per_week":0.98,"_pop_contributor_count":31,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mpsd&universityofsouthampton"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.21,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":94,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":5.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":44,"_pop_score":33.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/computationalmodelling/nbval/master/README.md","_readme_localurl":"computationalmodelling~nbval~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/computationalmodelling/nbval/master/setup.py"],"_requirements_localurls":["computationalmodelling~nbval~setup.py"]},{"index":722,"category":"perf","githuburl":"https://github.com/noxdafox/pebble","featured":null,"links":null,"description":null,"_repopath":"noxdafox/pebble","_reponame":"pebble","_stars":389,"_forks":45,"_watches":10,"_topics":["threading","multiprocessing","python","pool","decorators","asyncio"],"_language":"Python","_homepage":"","_description":"pebble: Multi threading and processing eye-candy.","_organization":"noxdafox","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-15T00:00:00.000Z","_created_at":"2013-10-16T00:00:00.000Z","_age_weeks":478,"_stars_per_week":0.81,"_pop_contributor_count":14,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["getcujo"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.08,"_pop_updated_issues_count":11,"_pop_closed_issues_count":11,"_pop_created_since_days":112,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":11.0,"_pop_comment_count":35.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.2,"_pop_dependents_count":322,"_pop_score":44.78,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/noxdafox/pebble/master/README.rst","_readme_localurl":"noxdafox~pebble~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/noxdafox/pebble/master/setup.py"],"_requirements_localurls":["noxdafox~pebble~setup.py"]},{"index":528,"category":"nlp","githuburl":"https://github.com/hazyresearch/fonduer","featured":null,"links":null,"description":null,"_repopath":"hazyresearch/fonduer","_reponame":"fonduer","_stars":386,"_forks":79,"_watches":27,"_topics":["multimodality","machine-learning","knowledge-base-construction"],"_language":"Python","_homepage":"https://fonduer.readthedocs.io/","_description":"fonduer: A knowledge base construction engine for richly formatted data","_organization":"hazyresearch","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2021-06-23T00:00:00.000Z","_created_at":"2018-02-02T00:00:00.000Z","_age_weeks":254,"_stars_per_week":1.52,"_pop_contributor_count":14,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["https://snorkel.ai/","numbersstationai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":59,"_pop_updated_since_days":18,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":23,"_pop_score":24.86,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/hazyresearch/fonduer/master/README.rst","_readme_localurl":"hazyresearch~fonduer~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hazyresearch/fonduer/master/setup.py"],"_requirements_localurls":["hazyresearch~fonduer~setup.py"]},{"index":841,"category":"util","githuburl":"https://github.com/carlospuenteg/file-injector","featured":null,"links":null,"description":null,"_repopath":"carlospuenteg/file-injector","_reponame":"File-Injector","_stars":383,"_forks":17,"_watches":6,"_topics":["image","image-manipulation","image-processing","noise","numpy","photography","python","python3","file","files","extraction","injection","storage","steganography","file-injection","file-injector"],"_language":"Python","_homepage":"","_description":"File-Injector: File Injector is a script that allows you to store any file in an image using steganography","_organization":"carlospuenteg","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-18T00:00:00.000Z","_created_at":"2022-10-22T00:00:00.000Z","_age_weeks":8,"_stars_per_week":46.22,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.77,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":2,"_pop_updated_since_days":1,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":79,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":8.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/carlospuenteg/file-injector/master/README.md","_readme_localurl":"carlospuenteg~file-injector~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/carlospuenteg/file-injector/master/requirements.txt"],"_requirements_localurls":["carlospuenteg~file-injector~requirements.txt"]},{"index":254,"category":"ml","githuburl":"https://github.com/amzn/pecos","featured":null,"links":null,"description":null,"_repopath":"amzn/pecos","_reponame":"pecos","_stars":383,"_forks":84,"_watches":18,"_topics":["machine-learning-algorithms","extreme-multi-label-classification","extreme-multi-label-ranking","transformers","approximate-nearest-neighbor-search"],"_language":"Python","_homepage":"https://libpecos.org/","_description":"PECOS - Prediction for Enormous and Correlated Spaces","_organization":"amzn","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2020-08-12T00:00:00.000Z","_age_weeks":122,"_stars_per_week":3.12,"_pop_contributor_count":25,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon","amazonsearchandai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.15,"_pop_updated_issues_count":35,"_pop_closed_issues_count":34,"_pop_created_since_days":29,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":35.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":32.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/amzn/pecos/master/README.md","_readme_localurl":"amzn~pecos~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/amzn/pecos/master/setup.py"],"_requirements_localurls":["amzn~pecos~setup.py"]},{"index":12,"category":"nlp","githuburl":"https://github.com/dialogflow/dialogflow-python-client-v2","featured":null,"links":null,"description":null,"_repopath":"dialogflow/dialogflow-python-client-v2","_reponame":"python-dialogflow","_stars":379,"_forks":146,"_watches":53,"_topics":["python","machine-learning","dialogflow"],"_language":"Python","_homepage":"https://dialogflow.com/","_description":"python-dialogflow: Python client for Dialogflow: Design and integrate a conversational user interface into your applications and devices.","_organization":"dialogflow","_updated_at":"2022-12-09T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-10-24T00:00:00.000Z","_age_weeks":268,"_stars_per_week":1.41,"_pop_contributor_count":34,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["googleapis","googlecloud","mend"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.13,"_pop_updated_issues_count":31,"_pop_closed_issues_count":27,"_pop_created_since_days":63,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":31.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":49,"_pop_score":47.91,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dialogflow/dialogflow-python-client-v2/master/README.rst","_readme_localurl":"dialogflow~dialogflow-python-client-v2~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dialogflow/dialogflow-python-client-v2/master/setup.py"],"_requirements_localurls":["dialogflow~dialogflow-python-client-v2~setup.py"]},{"index":331,"category":"ml","githuburl":"https://github.com/jacopotagliabue/reclist","featured":null,"links":null,"description":null,"_repopath":"jacopotagliabue/reclist","_reponame":"reclist","_stars":370,"_forks":20,"_watches":8,"_topics":["recommender-system","machine-learning","qa-automation"],"_language":"Python","_homepage":"","_description":"reclist: Behavioral \"black-box\" testing for recommender systems","_organization":"jacopotagliabue","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-11-03T00:00:00.000Z","_created_at":"2021-11-08T00:00:00.000Z","_age_weeks":58,"_stars_per_week":6.38,"_pop_contributor_count":7,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["digitalgreenorg","stanforduniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.71,"_pop_updated_issues_count":6,"_pop_closed_issues_count":3,"_pop_created_since_days":14,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":6.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":10,"_pop_score":27.79,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jacopotagliabue/reclist/master/README.rst","_readme_localurl":"jacopotagliabue~reclist~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jacopotagliabue/reclist/master/setup.py"],"_requirements_localurls":["jacopotagliabue~reclist~setup.py"]},{"index":803,"category":"util","githuburl":"https://github.com/open-telemetry/opentelemetry-python-contrib","featured":null,"links":null,"description":null,"_repopath":"open-telemetry/opentelemetry-python-contrib","_reponame":"opentelemetry-python-contrib","_stars":369,"_forks":277,"_watches":14,"_topics":[],"_language":"Python","_homepage":"https://opentelemetry.io","_description":"opentelemetry-python-contrib: OpenTelemetry instrumentation for Python modules","_organization":"open-telemetry","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-11-08T00:00:00.000Z","_age_weeks":162,"_stars_per_week":2.27,"_pop_contributor_count":167,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lightstep","microsoftcorporation","signoz.io","splunk"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.38,"_pop_updated_issues_count":246,"_pop_closed_issues_count":164,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":246.0,"_pop_comment_count":335.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":35,"_pop_score":56.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-telemetry/opentelemetry-python-contrib/master/README.md","_readme_localurl":"open-telemetry~opentelemetry-python-contrib~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/open-telemetry/opentelemetry-python-contrib/master/pyproject.toml"],"_requirements_localurls":["open-telemetry~opentelemetry-python-contrib~pyproject.toml"]},{"index":492,"category":"gis","githuburl":"https://github.com/cogeotiff/rio-tiler","featured":null,"links":null,"description":null,"_repopath":"cogeotiff/rio-tiler","_reponame":"rio-tiler","_stars":369,"_forks":86,"_watches":65,"_topics":["satellite","cog","cogeotiff","maptile","raster-processing","mercator","tile","slippy-map","gdal","rasterio","raster"],"_language":"Python","_homepage":"https://cogeotiff.github.io/rio-tiler/","_description":"rio-tiler: User friendly Rasterio plugin to read raster datasets.","_organization":"cogeotiff","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2017-10-06T00:00:00.000Z","_age_weeks":271,"_stars_per_week":1.36,"_pop_contributor_count":21,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amskepler","angloamerican","developmentseed"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.19,"_pop_updated_issues_count":47,"_pop_closed_issues_count":46,"_pop_created_since_days":63,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":23,"_pop_recent_releases_adjusted_count":23,"_pop_issue_count":47.0,"_pop_comment_count":50.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":10,"_pop_score":45.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cogeotiff/rio-tiler/master/README.md","_readme_localurl":"cogeotiff~rio-tiler~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cogeotiff/rio-tiler/master/setup.py","https://raw.githubusercontent.com/cogeotiff/rio-tiler/master/pyproject.toml"],"_requirements_localurls":["cogeotiff~rio-tiler~setup.py","cogeotiff~rio-tiler~pyproject.toml"]},{"index":185,"category":"math","githuburl":"https://github.com/willianfuks/tfcausalimpact","featured":null,"links":null,"description":null,"_repopath":"willianfuks/tfcausalimpact","_reponame":"tfcausalimpact","_stars":366,"_forks":51,"_watches":10,"_topics":["causalimpact","tensorflow-probability","python","causal-inference"],"_language":"Python","_homepage":"","_description":"tfcausalimpact: Python Causal Impact Implementation Based on Google's R Package. Built using TensorFlow Probability.","_organization":"willianfuks","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-10-07T00:00:00.000Z","_created_at":"2020-08-17T00:00:00.000Z","_age_weeks":122,"_stars_per_week":3.0,"_pop_contributor_count":3,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["epfl"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":7,"_pop_closed_issues_count":3,"_pop_created_since_days":28,"_pop_updated_since_days":2,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":7.0,"_pop_comment_count":17.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":24.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/willianfuks/tfcausalimpact/master/README.md","_readme_localurl":"willianfuks~tfcausalimpact~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/willianfuks/tfcausalimpact/master/setup.py"],"_requirements_localurls":["willianfuks~tfcausalimpact~setup.py"]},{"index":561,"category":"gis","githuburl":"https://github.com/geopandas/contextily","featured":null,"links":null,"description":null,"_repopath":"geopandas/contextily","_reponame":"contextily","_stars":366,"_forks":66,"_watches":14,"_topics":["tiles","stamen","openstreetmap","python","tile","mapping","webtiles","geography","cartography","matplotlib","osm","stamen-maps"],"_language":"Jupyter Notebook","_homepage":"https://contextily.readthedocs.io/en/latest/","_description":"contextily: Context geo-tiles in Python","_organization":"geopandas","_updated_at":"2022-11-22T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2016-09-08T00:00:00.000Z","_age_weeks":327,"_stars_per_week":1.12,"_pop_contributor_count":18,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["geogbristol","nordsoftware","ornl"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":7,"_pop_closed_issues_count":1,"_pop_created_since_days":76,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":7.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":3,"_pop_score":32.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/geopandas/contextily/master/README.md","_readme_localurl":"geopandas~contextily~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/geopandas/contextily/master/requirements.txt","https://raw.githubusercontent.com/geopandas/contextily/master/setup.py"],"_requirements_localurls":["geopandas~contextily~requirements.txt","geopandas~contextily~setup.py"]},{"index":522,"category":"gis","githuburl":"https://github.com/pygeos/pygeos","featured":null,"links":null,"description":null,"_repopath":"pygeos/pygeos","_reponame":"pygeos","_stars":361,"_forks":37,"_watches":16,"_topics":[],"_language":"Python","_homepage":"https://pygeos.readthedocs.io","_description":"pygeos: Wraps GEOS geometry functions in numpy ufuncs.","_organization":"pygeos","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2019-06-10T00:00:00.000Z","_age_weeks":184,"_stars_per_week":1.96,"_pop_contributor_count":13,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["adonmo(adonmo)","astutespruce","gnsscience","nelen&schuurmans"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":21,"_pop_closed_issues_count":21,"_pop_created_since_days":43,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":21.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":321,"_pop_score":43.6,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pygeos/pygeos/master/README.rst","_readme_localurl":"pygeos~pygeos~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pygeos/pygeos/master/setup.py","https://raw.githubusercontent.com/pygeos/pygeos/master/pyproject.toml"],"_requirements_localurls":["pygeos~pygeos~setup.py","pygeos~pygeos~pyproject.toml"]},{"index":49,"category":"util","githuburl":"https://github.com/mozillazg/pypy","featured":null,"links":null,"description":null,"_repopath":"mozillazg/pypy","_reponame":"pypy","_stars":358,"_forks":57,"_watches":11,"_topics":["pypy","github-mirror","unofficial","unofficial-mirror","read-only-repository"],"_language":"Python","_homepage":"https://foss.heptapod.net/pypy/pypy","_description":"pypy: The unofficial GitHub mirror of PyPy","_organization":"mozillazg","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2015-08-03T00:00:00.000Z","_age_weeks":385,"_stars_per_week":0.93,"_pop_contributor_count":374,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["pypy,baroquesoftware","quansightlabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":90,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":22,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":3,"_pop_score":45.88,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mozillazg/pypy/master/README.rst","_readme_localurl":"mozillazg~pypy~README.rst","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/mozillazg/pypy/master/requirements.txt"],"_requirements_localurls":["mozillazg~pypy~requirements.txt"]},{"index":496,"category":"ml","githuburl":"https://github.com/linkedin/fasttreeshap","featured":null,"links":null,"description":null,"_repopath":"linkedin/fasttreeshap","_reponame":"FastTreeSHAP","_stars":358,"_forks":22,"_watches":6,"_topics":["explainable-ai","interpretability","lightgbm","machine-learning","random-forest","shap","xgboost"],"_language":"Python","_homepage":"","_description":"FastTreeSHAP: Fast SHAP value computation for interpreting tree-based models","_organization":"linkedin","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2022-01-24T00:00:00.000Z","_age_weeks":47,"_stars_per_week":7.62,"_pop_contributor_count":3,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["linkedincorporation"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.23,"_pop_updated_issues_count":7,"_pop_closed_issues_count":2,"_pop_created_since_days":11,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":7.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":20.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/linkedin/fasttreeshap/master/README.md","_readme_localurl":"linkedin~fasttreeshap~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/linkedin/fasttreeshap/master/requirements.txt","https://raw.githubusercontent.com/linkedin/fasttreeshap/master/setup.py","https://raw.githubusercontent.com/linkedin/fasttreeshap/master/pyproject.toml"],"_requirements_localurls":["linkedin~fasttreeshap~requirements.txt","linkedin~fasttreeshap~setup.py","linkedin~fasttreeshap~pyproject.toml"]},{"index":499,"category":"ml-dl","githuburl":"https://github.com/researchmm/sttn","featured":null,"links":null,"description":null,"_repopath":"researchmm/sttn","_reponame":"STTN","_stars":355,"_forks":70,"_watches":20,"_topics":["video-inpainting","completing-videos","transformer","spatial-temporal"],"_language":"Jupyter Notebook","_homepage":"https://arxiv.org/abs/2007.10247","_description":"[ECCV'2020] STTN: Learning Joint Spatial-Temporal Transformations for Video Inpainting","_organization":"researchmm","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2021-07-26T00:00:00.000Z","_created_at":"2020-07-10T00:00:00.000Z","_age_weeks":127,"_stars_per_week":2.79,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":30,"_pop_updated_since_days":17,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":7.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/researchmm/sttn/master/README.md","_readme_localurl":"researchmm~sttn~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":519,"category":"gis","githuburl":"https://github.com/scikit-geometry/scikit-geometry","featured":null,"links":null,"description":null,"_repopath":"scikit-geometry/scikit-geometry","_reponame":"scikit-geometry","_stars":354,"_forks":49,"_watches":13,"_topics":["cgal","geometry","python","geometric-algorithms","wrapper"],"_language":"Jupyter Notebook","_homepage":"https://scikit-geometry.github.io/scikit-geometry","_description":"scikit-geometry: Scientific Python Geometric Algorithms Library","_organization":"scikit-geometry","_updated_at":"2022-11-28T00:00:00.000Z","_last_commit_date":"2022-10-14T00:00:00.000Z","_created_at":"2016-03-28T00:00:00.000Z","_age_weeks":351,"_stars_per_week":1.01,"_pop_contributor_count":15,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ambirobotics","leipziguniversity","prefix.devgmbh","resonance","westpac"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":6,"_pop_closed_issues_count":1,"_pop_created_since_days":82,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":6.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":4,"_pop_score":31.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scikit-geometry/scikit-geometry/master/README.md","_readme_localurl":"scikit-geometry~scikit-geometry~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/scikit-geometry/scikit-geometry/master/setup.py"],"_requirements_localurls":["scikit-geometry~scikit-geometry~setup.py"]},{"index":756,"category":"ml-dl","githuburl":"https://github.com/samuela/git-re-basin","featured":null,"links":null,"description":null,"_repopath":"samuela/git-re-basin","_reponame":"git-re-basin","_stars":349,"_forks":29,"_watches":4,"_topics":["deep-learning","deeplearning","jax","machine-learning","neural-networks"],"_language":"Python","_homepage":"https://arxiv.org/abs/2209.04836","_description":"git-re-basin: Code release for \"Git Re-Basin: Merging Models modulo Permutation Symmetries\"","_organization":"samuela","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-10-12T00:00:00.000Z","_created_at":"2022-09-13T00:00:00.000Z","_age_weeks":13,"_stars_per_week":25.19,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":8,"_pop_closed_issues_count":1,"_pop_created_since_days":3,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":8.0,"_pop_comment_count":52.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":6.5,"_pop_dependents_count":0,"_pop_score":13.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/samuela/git-re-basin/master/README.md","_readme_localurl":"samuela~git-re-basin~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":692,"category":"util","githuburl":"https://github.com/paperswithcode/axcell","featured":null,"links":null,"description":null,"_repopath":"paperswithcode/axcell","_reponame":"axcell","_stars":344,"_forks":51,"_watches":13,"_topics":[],"_language":"Python","_homepage":"","_description":"axcell: Tools for extracting tables and results from Machine Learning papers","_organization":"paperswithcode","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-06-23T00:00:00.000Z","_created_at":"2019-06-27T00:00:00.000Z","_age_weeks":181,"_stars_per_week":1.89,"_pop_contributor_count":7,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ukplab,tudarmstadt","xyzlab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":42,"_pop_updated_since_days":18,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":13.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/paperswithcode/axcell/master/README.md","_readme_localurl":"paperswithcode~axcell~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/paperswithcode/axcell/master/setup.py"],"_requirements_localurls":["paperswithcode~axcell~setup.py"]},{"index":586,"category":"gis","githuburl":"https://github.com/pysal/momepy","featured":null,"links":null,"description":null,"_repopath":"pysal/momepy","_reponame":"momepy","_stars":343,"_forks":46,"_watches":16,"_topics":["urban","morphology","morphological-analysis","morphometrics","urban-morphometrics","urban-street-networks"],"_language":"Python","_homepage":"https://docs.momepy.org","_description":"momepy: Urban Morphology Measuring Toolkit","_organization":"pysal","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-17T00:00:00.000Z","_created_at":"2018-03-30T00:00:00.000Z","_age_weeks":246,"_stars_per_week":1.39,"_pop_contributor_count":10,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ornl","udl-ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.1,"_pop_updated_issues_count":29,"_pop_closed_issues_count":19,"_pop_created_since_days":57,"_pop_updated_since_days":2,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":29.0,"_pop_comment_count":68.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":39,"_pop_score":39.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pysal/momepy/master/README.md","_readme_localurl":"pysal~momepy~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pysal/momepy/master/requirements.txt","https://raw.githubusercontent.com/pysal/momepy/master/setup.py","https://raw.githubusercontent.com/pysal/momepy/master/pyproject.toml"],"_requirements_localurls":["pysal~momepy~requirements.txt","pysal~momepy~setup.py","pysal~momepy~pyproject.toml"]},{"index":560,"category":"gis","githuburl":"https://github.com/corteva/rioxarray","featured":null,"links":null,"description":null,"_repopath":"corteva/rioxarray","_reponame":"rioxarray","_stars":342,"_forks":56,"_watches":12,"_topics":["gis","rasterio","xarray","geospatial","python","gdal","raster","netcdf","hacktoberfest"],"_language":"Python","_homepage":"https://corteva.github.io/rioxarray","_description":"rioxarray: geospatial xarray extension powered by rasterio","_organization":"corteva","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2019-04-16T00:00:00.000Z","_age_weeks":191,"_stars_per_week":1.78,"_pop_contributor_count":26,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["corteva","dtn","gnsscience","quantstack","smhi"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.5,"_pop_updated_issues_count":43,"_pop_closed_issues_count":21,"_pop_created_since_days":45,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":43.0,"_pop_comment_count":75.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":3,"_pop_score":45.93,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/corteva/rioxarray/master/README.rst","_readme_localurl":"corteva~rioxarray~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/corteva/rioxarray/master/setup.py","https://raw.githubusercontent.com/corteva/rioxarray/master/pyproject.toml"],"_requirements_localurls":["corteva~rioxarray~setup.py","corteva~rioxarray~pyproject.toml"]},{"index":786,"category":"util","githuburl":"https://github.com/gefyrahq/gefyra","featured":null,"links":null,"description":null,"_repopath":"gefyrahq/gefyra","_reponame":"gefyra","_stars":339,"_forks":22,"_watches":6,"_topics":["kubernetes","development","developer-tool","containers","coding","tunnel","docker","k8s"],"_language":"Python","_homepage":"https://gefyra.dev","_description":"gefyra: Blazingly-fast :rocket:, rock-solid, local application development :arrow_right: with Kubernetes.","_organization":"gefyrahq","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2021-11-18T00:00:00.000Z","_age_weeks":56,"_stars_per_week":5.99,"_pop_contributor_count":13,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["blueshoe","blueshoeunikubehq"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.1,"_pop_updated_issues_count":131,"_pop_closed_issues_count":114,"_pop_created_since_days":13,"_pop_updated_since_days":0,"_pop_recent_releases_count":44,"_pop_recent_releases_estimated_tags":47,"_pop_recent_releases_adjusted_count":44,"_pop_issue_count":131.0,"_pop_comment_count":200.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":3,"_pop_score":41.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gefyrahq/gefyra/master/README.md","_readme_localurl":"gefyrahq~gefyra~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":335,"category":"ml","githuburl":"https://github.com/mrdbourke/m1-machine-learning-test","featured":null,"links":null,"description":null,"_repopath":"mrdbourke/m1-machine-learning-test","_reponame":"m1-machine-learning-test","_stars":339,"_forks":101,"_watches":12,"_topics":["tensorflow","tensorflow-macos","metal","machine-learning"],"_language":"Jupyter Notebook","_homepage":"","_description":"m1-machine-learning-test: Code for testing various M1 Chip benchmarks with TensorFlow.","_organization":"mrdbourke","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-07-16T00:00:00.000Z","_created_at":"2021-11-14T00:00:00.000Z","_age_weeks":57,"_stars_per_week":5.93,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":13,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":12,"_pop_score":10.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mrdbourke/m1-machine-learning-test/master/README.md","_readme_localurl":"mrdbourke~m1-machine-learning-test~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":848,"category":"gis","githuburl":"https://github.com/mapbox/mercantile","featured":null,"links":null,"description":null,"_repopath":"mapbox/mercantile","_reponame":"mercantile","_stars":338,"_forks":62,"_watches":116,"_topics":["satellite","pxm","imagery"],"_language":"Python","_homepage":null,"_description":"mercantile: Spherical mercator tile and coordinate utilities","_organization":"mapbox","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2021-10-22T00:00:00.000Z","_created_at":"2014-02-12T00:00:00.000Z","_age_weeks":461,"_stars_per_week":0.73,"_pop_contributor_count":20,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["planetlabs","tudresden"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":108,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":3.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":111,"_pop_score":30.96,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mapbox/mercantile/master/README.rst","_readme_localurl":"mapbox~mercantile~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mapbox/mercantile/master/requirements.txt","https://raw.githubusercontent.com/mapbox/mercantile/master/setup.py"],"_requirements_localurls":["mapbox~mercantile~requirements.txt","mapbox~mercantile~setup.py"]},{"index":340,"category":"term","githuburl":"https://github.com/federicoceratto/dashing","featured":null,"links":null,"description":null,"_repopath":"federicoceratto/dashing","_reponame":"dashing","_stars":338,"_forks":30,"_watches":9,"_topics":["python","python3","terminal","dashboard","terminal-based","gauges","charts"],"_language":"Python","_homepage":"https://dashing.readthedocs.io/en/latest/","_description":"dashing: Terminal dashboards for Python","_organization":"federicoceratto","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2020-09-06T00:00:00.000Z","_created_at":"2017-06-03T00:00:00.000Z","_age_weeks":289,"_stars_per_week":1.17,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ooni/torproject/debian"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":67,"_pop_updated_since_days":28,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.0,"_readme_filename":"README.adoc","_readme_giturl":"https://raw.githubusercontent.com/federicoceratto/dashing/master/README.adoc","_readme_localurl":"federicoceratto~dashing~README.adoc","_requirements_filenames":["requirements.txt","setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/federicoceratto/dashing/master/requirements.txt","https://raw.githubusercontent.com/federicoceratto/dashing/master/setup.py","https://raw.githubusercontent.com/federicoceratto/dashing/master/Pipfile"],"_requirements_localurls":["federicoceratto~dashing~requirements.txt","federicoceratto~dashing~setup.py","federicoceratto~dashing~Pipfile"]},{"index":158,"category":"jupyter","githuburl":"https://github.com/nteract/testbook","featured":null,"links":null,"description":null,"_repopath":"nteract/testbook","_reponame":"testbook","_stars":336,"_forks":34,"_watches":15,"_topics":["jupyter-notebook","unit-testing","pytest","nteract","python","testbook"],"_language":"Python","_homepage":"https://testbook.readthedocs.io","_description":"testbook: \ud83e\uddea \ud83d\udcd7 Unit test your Jupyter Notebooks the right way","_organization":"nteract","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2020-02-26T00:00:00.000Z","_age_weeks":146,"_stars_per_week":2.29,"_pop_contributor_count":15,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["noteable-io","quantstack","seaspancorporation","willingconsulting"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":5,"_pop_closed_issues_count":2,"_pop_created_since_days":34,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":5.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":5,"_pop_score":33.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nteract/testbook/master/README.md","_readme_localurl":"nteract~testbook~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nteract/testbook/master/requirements.txt","https://raw.githubusercontent.com/nteract/testbook/master/setup.py","https://raw.githubusercontent.com/nteract/testbook/master/pyproject.toml"],"_requirements_localurls":["nteract~testbook~requirements.txt","nteract~testbook~setup.py","nteract~testbook~pyproject.toml"]},{"index":563,"category":"gis","githuburl":"https://github.com/geopandas/dask-geopandas","featured":null,"links":null,"description":null,"_repopath":"geopandas/dask-geopandas","_reponame":"dask-geopandas","_stars":336,"_forks":34,"_watches":23,"_topics":[],"_language":"Python","_homepage":"https://dask-geopandas.readthedocs.io/","_description":"dask-geopandas: Parallel GeoPandas with Dask","_organization":"geopandas","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-08-28T00:00:00.000Z","_created_at":"2020-02-13T00:00:00.000Z","_age_weeks":148,"_stars_per_week":2.26,"_pop_contributor_count":16,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["azavea","mr","sylveraio","udl-ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.1,"_pop_updated_issues_count":13,"_pop_closed_issues_count":3,"_pop_created_since_days":35,"_pop_updated_since_days":4,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":13.0,"_pop_comment_count":23.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":32.69,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/geopandas/dask-geopandas/master/README.rst","_readme_localurl":"geopandas~dask-geopandas~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/geopandas/dask-geopandas/master/setup.py","https://raw.githubusercontent.com/geopandas/dask-geopandas/master/pyproject.toml"],"_requirements_localurls":["geopandas~dask-geopandas~setup.py","geopandas~dask-geopandas~pyproject.toml"]},{"index":464,"category":"data","githuburl":"https://github.com/dmarx/psaw","featured":null,"links":null,"description":null,"_repopath":"dmarx/psaw","_reponame":"psaw","_stars":333,"_forks":46,"_watches":9,"_topics":[],"_language":"Python","_homepage":null,"_description":"psaw: Python Pushshift.io API Wrapper (for comment/submission search)","_organization":"dmarx","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-07-09T00:00:00.000Z","_created_at":"2018-04-15T00:00:00.000Z","_age_weeks":244,"_stars_per_week":1.36,"_pop_contributor_count":8,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["stability.ai,eleuther.ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":57,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":4,"_pop_score":18.47,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dmarx/psaw/master/README.rst","_readme_localurl":"dmarx~psaw~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dmarx/psaw/master/setup.py"],"_requirements_localurls":["dmarx~psaw~setup.py"]},{"index":684,"category":"util","githuburl":"https://github.com/sciunto-org/python-bibtexparser","featured":null,"links":null,"description":null,"_repopath":"sciunto-org/python-bibtexparser","_reponame":"python-bibtexparser","_stars":330,"_forks":117,"_watches":16,"_topics":["bibtex","bibtex-files","latex","python","hacktoberfest2022"],"_language":"Python","_homepage":"https://bibtexparser.readthedocs.io","_description":"python-bibtexparser: Bibtex parser for Python 3","_organization":"sciunto-org","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-10-20T00:00:00.000Z","_created_at":"2013-01-05T00:00:00.000Z","_age_weeks":519,"_stars_per_week":0.64,"_pop_contributor_count":45,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["paris-saclayuniversity","quicksign","ruhruniversitybochum","universit\u00e0dellasvizzeraitaliana(testingautomated-usi)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":41,"_pop_closed_issues_count":24,"_pop_created_since_days":121,"_pop_updated_since_days":2,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":41.0,"_pop_comment_count":37.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":35,"_pop_score":44.26,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sciunto-org/python-bibtexparser/master/README.rst","_readme_localurl":"sciunto-org~python-bibtexparser~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sciunto-org/python-bibtexparser/master/requirements.txt","https://raw.githubusercontent.com/sciunto-org/python-bibtexparser/master/setup.py"],"_requirements_localurls":["sciunto-org~python-bibtexparser~requirements.txt","sciunto-org~python-bibtexparser~setup.py"]},{"index":237,"category":"ml","githuburl":"https://github.com/salesforce/warp-drive","featured":null,"links":null,"description":null,"_repopath":"salesforce/warp-drive","_reponame":"warp-drive","_stars":329,"_forks":58,"_watches":12,"_topics":["reinforcement-learning","gpu","cuda","multiagent-reinforcement-learning","deep-learning","high-throughput","pytorch","numba"],"_language":"Python","_homepage":"","_description":"warp-drive: Extremely Fast End-to-End Deep Multi-Agent Reinforcement Learning Framework on a GPU","_organization":"salesforce","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2021-08-25T00:00:00.000Z","_age_weeks":68,"_stars_per_week":4.79,"_pop_contributor_count":6,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["salesforceresearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.21,"_pop_updated_issues_count":14,"_pop_closed_issues_count":11,"_pop_created_since_days":16,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":14.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":15,"_pop_score":29.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/warp-drive/master/README.md","_readme_localurl":"salesforce~warp-drive~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/salesforce/warp-drive/master/requirements.txt","https://raw.githubusercontent.com/salesforce/warp-drive/master/setup.py"],"_requirements_localurls":["salesforce~warp-drive~requirements.txt","salesforce~warp-drive~setup.py"]},{"index":664,"category":"study","githuburl":"https://github.com/rasbt/stat451-machine-learning-fs20","featured":null,"links":null,"description":null,"_repopath":"rasbt/stat451-machine-learning-fs20","_reponame":"stat451-machine-learning-fs20","_stars":327,"_forks":176,"_watches":18,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"stat451-machine-learning-fs20: STAT 451: Intro to Machine Learning @ UW-Madison (Fall 2020)","_organization":"rasbt","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2020-12-03T00:00:00.000Z","_created_at":"2020-08-06T00:00:00.000Z","_age_weeks":123,"_stars_per_week":2.65,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lightning-ai,universityofwisconsin-madison"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":29,"_pop_updated_since_days":25,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":2,"_pop_score":7.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/stat451-machine-learning-fs20/master/README.md","_readme_localurl":"rasbt~stat451-machine-learning-fs20~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":747,"category":"study","githuburl":"https://github.com/bayesianmodelingandcomputationinpython/bookcode_edition1","featured":null,"links":null,"description":null,"_repopath":"bayesianmodelingandcomputationinpython/bookcode_edition1","_reponame":"BookCode_Edition1","_stars":326,"_forks":75,"_watches":13,"_topics":[],"_language":"Jupyter Notebook","_homepage":"https://www.bayesiancomputationbook.com","_description":"bayesianmodelingandcomputationinpython/bookcode_edition1","_organization":"bayesianmodelingandcomputationinpython","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-09-20T00:00:00.000Z","_created_at":"2021-08-17T00:00:00.000Z","_age_weeks":69,"_stars_per_week":4.67,"_pop_contributor_count":10,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","imasl-conicet"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.69,"_pop_updated_issues_count":8,"_pop_closed_issues_count":2,"_pop_created_since_days":16,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":8.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":22.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bayesianmodelingandcomputationinpython/bookcode_edition1/master/README.md","_readme_localurl":"bayesianmodelingandcomputationinpython~bookcode_edition1~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":364,"category":"ml-ops","githuburl":"https://github.com/kubeflow/fairing","featured":null,"links":null,"description":null,"_repopath":"kubeflow/fairing","_reponame":"fairing","_stars":325,"_forks":146,"_watches":40,"_topics":[],"_language":"Jsonnet","_homepage":"","_description":"fairing: Python SDK for building, training, and deploying ML models","_organization":"kubeflow","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2021-08-26T00:00:00.000Z","_created_at":"2018-09-03T00:00:00.000Z","_age_weeks":224,"_stars_per_week":1.45,"_pop_contributor_count":41,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","ibm"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":52,"_pop_updated_since_days":16,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":113,"_pop_score":31.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kubeflow/fairing/master/README.md","_readme_localurl":"kubeflow~fairing~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kubeflow/fairing/master/requirements.txt","https://raw.githubusercontent.com/kubeflow/fairing/master/setup.py"],"_requirements_localurls":["kubeflow~fairing~requirements.txt","kubeflow~fairing~setup.py"]},{"index":745,"category":"perf","githuburl":"https://github.com/blosc/python-blosc","featured":null,"links":null,"description":null,"_repopath":"blosc/python-blosc","_reponame":"python-blosc","_stars":322,"_forks":75,"_watches":12,"_topics":["python","wrapper","blosc","compression"],"_language":"Python","_homepage":"https://www.blosc.org/python-blosc/python-blosc.html","_description":"python-blosc: A Python wrapper for the extremely fast Blosc compression library ","_organization":"blosc","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2010-09-30T00:00:00.000Z","_age_weeks":637,"_stars_per_week":0.51,"_pop_contributor_count":43,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","cea","francescalted"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.92,"_pop_updated_issues_count":43,"_pop_closed_issues_count":41,"_pop_created_since_days":149,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":43.0,"_pop_comment_count":66.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":167,"_pop_score":49.64,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/blosc/python-blosc/master/README.rst","_readme_localurl":"blosc~python-blosc~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/blosc/python-blosc/master/requirements.txt","https://raw.githubusercontent.com/blosc/python-blosc/master/setup.py","https://raw.githubusercontent.com/blosc/python-blosc/master/pyproject.toml"],"_requirements_localurls":["blosc~python-blosc~requirements.txt","blosc~python-blosc~setup.py","blosc~python-blosc~pyproject.toml"]},{"index":719,"category":"gis","githuburl":"https://github.com/weecology/deepforest","featured":null,"links":null,"description":null,"_repopath":"weecology/deepforest","_reponame":"DeepForest","_stars":321,"_forks":122,"_watches":15,"_topics":[],"_language":"JavaScript","_homepage":"https://deepforest.readthedocs.io/","_description":"DeepForest: Python Package for Tree Crown Detection in Airborne RGB imagery","_organization":"weecology","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2018-03-07T00:00:00.000Z","_age_weeks":249,"_stars_per_week":1.29,"_pop_contributor_count":11,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["rbccapitalmarkets","universityofflorida","weecology","weecology,univofflorida"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.71,"_pop_updated_issues_count":29,"_pop_closed_issues_count":14,"_pop_created_since_days":58,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":29.0,"_pop_comment_count":53.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":119,"_pop_score":45.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/weecology/deepforest/master/README.md","_readme_localurl":"weecology~deepforest~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/weecology/deepforest/master/setup.py"],"_requirements_localurls":["weecology~deepforest~setup.py"]},{"index":594,"category":"gis","githuburl":"https://github.com/geopython/owslib","featured":null,"links":null,"description":null,"_repopath":"geopython/owslib","_reponame":"OWSLib","_stars":315,"_forks":257,"_watches":31,"_topics":[],"_language":"Python","_homepage":"https://geopython.github.io/OWSLib","_description":"OWSLib is a Python package for client programming with Open Geospatial Consortium (OGC) web service (hence OWS) interface standards, and their related content models.","_organization":"geopython","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2012-01-13T00:00:00.000Z","_age_weeks":570,"_stars_per_week":0.55,"_pop_contributor_count":138,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["geopythonwmo-imopengeospatial","opensourcegeospatialfoundation","planetlabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.9,"_pop_updated_issues_count":20,"_pop_closed_issues_count":7,"_pop_created_since_days":133,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":20.0,"_pop_comment_count":28.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":308,"_pop_score":53.7,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/geopython/owslib/master/README.rst","_readme_localurl":"geopython~owslib~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/geopython/owslib/master/requirements.txt","https://raw.githubusercontent.com/geopython/owslib/master/setup.py"],"_requirements_localurls":["geopython~owslib~requirements.txt","geopython~owslib~setup.py"]},{"index":510,"category":"ml-dl","githuburl":"https://github.com/leondgarse/keras_cv_attention_models","featured":null,"links":null,"description":null,"_repopath":"leondgarse/keras_cv_attention_models","_reponame":"keras_cv_attention_models","_stars":313,"_forks":51,"_watches":16,"_topics":["tensorflow","visualizing","keras","attention","model","imagenet","coco","recognition","detection","anchor-free","tf","tf2"],"_language":"Python","_homepage":"","_description":"keras_cv_attention_models: Keras/Tensorflow models including beit,botnet,CMT,CoaT,CoAtNet,convnext,cotnet,davit,efficientdet,edgenext,efficientformer,efficientnet,fbnet,gcvit,ghostnetv2,gmlp,halonet,hornet,lcnet,levit,maxvit,mlp-mixer,mobilevit,nat,nfnets,regnet,resmlp,resnest,resnext,resnetd,swin,tinynet,uniformer,volo,wavemlp,yolor,yolov7,yolox","_organization":"leondgarse","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2021-08-02T00:00:00.000Z","_age_weeks":72,"_stars_per_week":4.35,"_pop_contributor_count":4,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["koala-team","resmonicsag","wandb"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.21,"_pop_updated_issues_count":14,"_pop_closed_issues_count":13,"_pop_created_since_days":17,"_pop_updated_since_days":0,"_pop_recent_releases_count":19,"_pop_recent_releases_estimated_tags":68,"_pop_recent_releases_adjusted_count":19,"_pop_issue_count":14.0,"_pop_comment_count":35.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":0,"_pop_score":36.28,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/leondgarse/keras_cv_attention_models/master/README.md","_readme_localurl":"leondgarse~keras_cv_attention_models~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/leondgarse/keras_cv_attention_models/master/setup.py"],"_requirements_localurls":["leondgarse~keras_cv_attention_models~setup.py"]},{"index":473,"category":"ml-dl","githuburl":"https://github.com/nyandwi/modernconvnets","featured":null,"links":null,"description":null,"_repopath":"nyandwi/modernconvnets","_reponame":"ModernConvNets","_stars":304,"_forks":31,"_watches":7,"_topics":["convnets","deep-learning-algorithms","computer-vision","tensorflow","keras","convolutional-neural-networks","neural-networks","image-classification","cnns"],"_language":"Jupyter Notebook","_homepage":"","_description":"ModernConvNets: Revisions and implementations of modern Convolutional Neural Networks architectures in TensorFlow and Keras","_organization":"nyandwi","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-10-05T00:00:00.000Z","_created_at":"2022-02-10T00:00:00.000Z","_age_weeks":44,"_stars_per_week":6.82,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cargeniemellon"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":10,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.3,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nyandwi/modernconvnets/master/README.md","_readme_localurl":"nyandwi~modernconvnets~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":500,"category":"study","githuburl":"https://github.com/googlecloudplatform/practical-ml-vision-book","featured":null,"links":null,"description":null,"_repopath":"googlecloudplatform/practical-ml-vision-book","_reponame":"practical-ml-vision-book","_stars":304,"_forks":138,"_watches":18,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"googlecloudplatform/practical-ml-vision-book","_organization":"googlecloudplatform","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-21T00:00:00.000Z","_created_at":"2020-11-18T00:00:00.000Z","_age_weeks":108,"_stars_per_week":2.8,"_pop_contributor_count":6,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":25,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":9,"_pop_score":19.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/googlecloudplatform/practical-ml-vision-book/master/README.md","_readme_localurl":"googlecloudplatform~practical-ml-vision-book~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":430,"category":"jupyter","githuburl":"https://github.com/chaoleili/jupyterlab_tensorboard","featured":null,"links":null,"description":null,"_repopath":"chaoleili/jupyterlab_tensorboard","_reponame":"jupyterlab_tensorboard","_stars":295,"_forks":35,"_watches":11,"_topics":["jupyterlab-extension","tensorboard","jupyterlab"],"_language":"TypeScript","_homepage":"","_description":"jupyterlab_tensorboard: Tensorboard extension for jupyterlab.","_organization":"chaoleili","_updated_at":"2022-11-11T00:00:00.000Z","_last_commit_date":"2022-07-18T00:00:00.000Z","_created_at":"2018-08-14T00:00:00.000Z","_age_weeks":226,"_stars_per_week":1.3,"_pop_contributor_count":7,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["imec-idlab,departmentofinformationtechnology,ghentuniversity,belgium","researchscientistatnvidia","sundellopensourceconsultingab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":53,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":23.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/chaoleili/jupyterlab_tensorboard/master/README.md","_readme_localurl":"chaoleili~jupyterlab_tensorboard~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/chaoleili/jupyterlab_tensorboard/master/setup.py","https://raw.githubusercontent.com/chaoleili/jupyterlab_tensorboard/master/pyproject.toml"],"_requirements_localurls":["chaoleili~jupyterlab_tensorboard~setup.py","chaoleili~jupyterlab_tensorboard~pyproject.toml"]},{"index":788,"category":"study","githuburl":"https://github.com/mynameisfiber/high_performance_python_2e","featured":null,"links":null,"description":null,"_repopath":"mynameisfiber/high_performance_python_2e","_reponame":"high_performance_python_2e","_stars":291,"_forks":88,"_watches":6,"_topics":["python","high-performance","code-samples","oreilly","oreilly-books"],"_language":"Python","_homepage":"","_description":"high_performance_python_2e: Code for the book \"High Performance Python 2e\" by Micha Gorelick and Ian Ozsvald with OReilly ","_organization":"mynameisfiber","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2021-01-15T00:00:00.000Z","_created_at":"2020-04-12T00:00:00.000Z","_age_weeks":140,"_stars_per_week":2.08,"_pop_contributor_count":2,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["http://morconsulting.com/","occrp,the-markup"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":33,"_pop_updated_since_days":23,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.28,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mynameisfiber/high_performance_python_2e/master/README.md","_readme_localurl":"mynameisfiber~high_performance_python_2e~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":574,"category":"gis","githuburl":"https://github.com/developmentseed/geolambda","featured":null,"links":null,"description":null,"_repopath":"developmentseed/geolambda","_reponame":"geolambda","_stars":278,"_forks":84,"_watches":50,"_topics":[],"_language":"Dockerfile","_homepage":null,"_description":"geolambda: Create and deploy Geospatial AWS Lambda functions","_organization":"developmentseed","_updated_at":"2022-12-09T00:00:00.000Z","_last_commit_date":"2021-02-16T00:00:00.000Z","_created_at":"2017-05-02T00:00:00.000Z","_age_weeks":293,"_stars_per_week":0.95,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["developmentseed","element84"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":69,"_pop_updated_since_days":22,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":3,"_pop_score":17.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/geolambda/master/README.md","_readme_localurl":"developmentseed~geolambda~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":524,"category":"util","githuburl":"https://github.com/venth/aws-adfs","featured":null,"links":null,"description":null,"_repopath":"venth/aws-adfs","_reponame":"aws-adfs","_stars":277,"_forks":91,"_watches":11,"_topics":["aws","adfs","python","command-line","tools","multi-factor-authentication","duo-security"],"_language":"Python","_homepage":"","_description":"aws-adfs: Command line tool to ease aws cli authentication against ADFS (multi factor authentication with active directory)","_organization":"venth","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2016-06-25T00:00:00.000Z","_age_weeks":338,"_stars_per_week":0.82,"_pop_contributor_count":46,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["claranet","rancher"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.67,"_pop_updated_issues_count":47,"_pop_closed_issues_count":44,"_pop_created_since_days":79,"_pop_updated_since_days":0,"_pop_recent_releases_count":29,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":29,"_pop_issue_count":47.0,"_pop_comment_count":37.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":5,"_pop_score":45.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/venth/aws-adfs/master/README.md","_readme_localurl":"venth~aws-adfs~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/venth/aws-adfs/master/pyproject.toml"],"_requirements_localurls":["venth~aws-adfs~pyproject.toml"]},{"index":884,"category":"time-series","githuburl":"https://github.com/pastas/pastas","featured":null,"links":null,"description":null,"_repopath":"pastas/pastas","_reponame":"pastas","_stars":276,"_forks":54,"_watches":15,"_topics":["hydrology","groundwater","python","timeseries","analysis","pastas"],"_language":"Jupyter Notebook","_homepage":"http://pastas.readthedocs.io/","_description":"pastas: :spaghetti: Pastas is an open-source Python framework for the analysis of groundwater time series.","_organization":"pastas","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-08-02T00:00:00.000Z","_created_at":"2016-04-15T00:00:00.000Z","_age_weeks":348,"_stars_per_week":0.79,"_pop_contributor_count":17,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["artesia-water","artesiawater","karl-franzensuniversityofgraz","tudelft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.88,"_pop_updated_issues_count":12,"_pop_closed_issues_count":6,"_pop_created_since_days":81,"_pop_updated_since_days":5,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":12.0,"_pop_comment_count":30.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":6069,"_pop_score":50.62,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pastas/pastas/master/README.rst","_readme_localurl":"pastas~pastas~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pastas/pastas/master/setup.py"],"_requirements_localurls":["pastas~pastas~setup.py"]},{"index":727,"category":"web","githuburl":"https://github.com/rstudio/py-shiny","featured":null,"links":null,"description":null,"_repopath":"rstudio/py-shiny","_reponame":"py-shiny","_stars":275,"_forks":14,"_watches":18,"_topics":[],"_language":"JavaScript","_homepage":"https://shiny.rstudio.com/py/","_description":"py-shiny: Shiny for Python","_organization":"rstudio","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2021-07-27T00:00:00.000Z","_age_weeks":72,"_stars_per_week":3.77,"_pop_contributor_count":7,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["freelance","rstudio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.27,"_pop_updated_issues_count":54,"_pop_closed_issues_count":32,"_pop_created_since_days":17,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":54.0,"_pop_comment_count":57.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":2,"_pop_score":36.72,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rstudio/py-shiny/master/README.md","_readme_localurl":"rstudio~py-shiny~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rstudio/py-shiny/master/setup.py"],"_requirements_localurls":["rstudio~py-shiny~setup.py"]},{"index":827,"category":"gis","githuburl":"https://github.com/datasystemslab/geotorch","featured":null,"links":null,"description":null,"_repopath":"datasystemslab/geotorch","_reponame":"GeoTorch","_stars":272,"_forks":15,"_watches":8,"_topics":["classification-model","convlstm-pytorch","deep-learning","deep-neural-networks","deepsat","prediction-model","raster-data","satellite-images","segmentation-models","sequence-models","spatial-data-analysis","spatio-temporal-analysis","spatio-temporal-models","spatio-temporal-prediction","st-resnet","satellite-classification"],"_language":"Python","_homepage":"https://kanchanchy.github.io/geotorch/","_description":"GeoTorch: A Spatiotemporal Deep Learning Framework","_organization":"datasystemslab","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-11-27T00:00:00.000Z","_created_at":"2022-05-23T00:00:00.000Z","_age_weeks":30,"_stars_per_week":9.07,"_pop_contributor_count":4,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amberit","wherobots"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.96,"_pop_updated_issues_count":5,"_pop_closed_issues_count":3,"_pop_created_since_days":7,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":6.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":2,"_pop_score":23.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/datasystemslab/geotorch/master/README.md","_readme_localurl":"datasystemslab~geotorch~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/datasystemslab/geotorch/master/setup.py"],"_requirements_localurls":["datasystemslab~geotorch~setup.py"]},{"index":123,"category":"util","githuburl":"https://github.com/mgedmin/check-manifest","featured":null,"links":null,"description":null,"_repopath":"mgedmin/check-manifest","_reponame":"check-manifest","_stars":268,"_forks":37,"_watches":7,"_topics":[],"_language":"Python","_homepage":"https://pypi.org/p/check-manifest","_description":"check-manifest: Tool to check the completeness of MANIFEST.in for Python packages","_organization":"mgedmin","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2013-03-05T00:00:00.000Z","_age_weeks":510,"_stars_per_week":0.52,"_pop_contributor_count":22,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nordsoftware","pioneervalleybooks","programmersofvilnius","zestsoftware"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":4,"_pop_closed_issues_count":4,"_pop_created_since_days":119,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":4.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":789,"_pop_score":51.42,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mgedmin/check-manifest/master/README.rst","_readme_localurl":"mgedmin~check-manifest~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mgedmin/check-manifest/master/setup.py"],"_requirements_localurls":["mgedmin~check-manifest~setup.py"]},{"index":852,"category":"web","githuburl":"https://github.com/conradbez/hstream","featured":null,"links":null,"description":null,"_repopath":"conradbez/hstream","_reponame":"hstream","_stars":264,"_forks":11,"_watches":6,"_topics":[],"_language":"Python","_homepage":null,"_description":"hstream: Hyper Stream","_organization":"conradbez","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2022-11-03T00:00:00.000Z","_age_weeks":6,"_stars_per_week":40.17,"_pop_contributor_count":5,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["streamlit"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.79,"_pop_updated_issues_count":9,"_pop_closed_issues_count":9,"_pop_created_since_days":2,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":9.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":16.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/conradbez/hstream/master/README.md","_readme_localurl":"conradbez~hstream~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/conradbez/hstream/master/setup.py"],"_requirements_localurls":["conradbez~hstream~setup.py"]},{"index":210,"category":"util","githuburl":"https://github.com/tiangolo/poetry-version-plugin","featured":null,"links":null,"description":null,"_repopath":"tiangolo/poetry-version-plugin","_reponame":"poetry-version-plugin","_stars":263,"_forks":24,"_watches":5,"_topics":["python-poetry","packaging","python","python3","pypi","packaging-for-pypi"],"_language":"Python","_homepage":"","_description":"poetry-version-plugin: Poetry plugin for dynamically extracting the package version from a __version__ variable or a Git tag.","_organization":"tiangolo","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2021-05-28T00:00:00.000Z","_created_at":"2021-05-27T00:00:00.000Z","_age_weeks":81,"_stars_per_week":3.22,"_pop_contributor_count":3,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["belike"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":19,"_pop_updated_since_days":19,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":8.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/poetry-version-plugin/master/README.md","_readme_localurl":"tiangolo~poetry-version-plugin~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tiangolo/poetry-version-plugin/master/pyproject.toml"],"_requirements_localurls":["tiangolo~poetry-version-plugin~pyproject.toml"]},{"index":307,"category":"crypto","githuburl":"https://github.com/ethereum/eth-utils","featured":null,"links":null,"description":null,"_repopath":"ethereum/eth-utils","_reponame":"eth-utils","_stars":263,"_forks":140,"_watches":18,"_topics":["ethereum","python","utility-library"],"_language":"Python","_homepage":"https://eth-utils.readthedocs.io/en/latest/","_description":"eth-utils: Utility functions for working with ethereum related codebases.","_organization":"ethereum","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-11-17T00:00:00.000Z","_created_at":"2017-02-07T00:00:00.000Z","_age_weeks":305,"_stars_per_week":0.86,"_pop_contributor_count":31,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ethereum","ethereumfoundation"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":12,"_pop_closed_issues_count":4,"_pop_created_since_days":71,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":12.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":92,"_pop_score":43.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethereum/eth-utils/master/README.md","_readme_localurl":"ethereum~eth-utils~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ethereum/eth-utils/master/setup.py","https://raw.githubusercontent.com/ethereum/eth-utils/master/pyproject.toml"],"_requirements_localurls":["ethereum~eth-utils~setup.py","ethereum~eth-utils~pyproject.toml"]},{"index":342,"category":"term","githuburl":"https://github.com/rockhopper-technologies/enlighten","featured":null,"links":null,"description":null,"_repopath":"rockhopper-technologies/enlighten","_reponame":"enlighten","_stars":263,"_forks":19,"_watches":4,"_topics":["python"],"_language":"Python","_homepage":"https://python-enlighten.readthedocs.io","_description":"Enlighten Progress Bar for Python Console Apps","_organization":"rockhopper-technologies","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-09-22T00:00:00.000Z","_age_weeks":273,"_stars_per_week":0.96,"_pop_contributor_count":5,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["micaeljarniac"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.54,"_pop_updated_issues_count":4,"_pop_closed_issues_count":3,"_pop_created_since_days":64,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":4.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.8,"_pop_dependents_count":5,"_pop_score":33.22,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/rockhopper-technologies/enlighten/master/README.rst","_readme_localurl":"rockhopper-technologies~enlighten~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rockhopper-technologies/enlighten/master/requirements.txt","https://raw.githubusercontent.com/rockhopper-technologies/enlighten/master/setup.py"],"_requirements_localurls":["rockhopper-technologies~enlighten~requirements.txt","rockhopper-technologies~enlighten~setup.py"]},{"index":385,"category":"nlp","githuburl":"https://github.com/kootenpv/contractions","featured":null,"links":null,"description":null,"_repopath":"kootenpv/contractions","_reponame":"contractions","_stars":263,"_forks":35,"_watches":7,"_topics":[],"_language":"Python","_homepage":null,"_description":"contractions: Fixes contractions such as `you're` to you `are`","_organization":"kootenpv","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-15T00:00:00.000Z","_created_at":"2016-12-25T00:00:00.000Z","_age_weeks":312,"_stars_per_week":0.84,"_pop_contributor_count":14,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["japan","vankootenaisolutions/mgnr.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.23,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":73,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":16,"_pop_score":29.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kootenpv/contractions/master/README.md","_readme_localurl":"kootenpv~contractions~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kootenpv/contractions/master/requirements.txt","https://raw.githubusercontent.com/kootenpv/contractions/master/setup.py"],"_requirements_localurls":["kootenpv~contractions~requirements.txt","kootenpv~contractions~setup.py"]},{"index":508,"category":"data","githuburl":"https://github.com/facebookresearch/mephisto","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/mephisto","_reponame":"Mephisto","_stars":258,"_forks":57,"_watches":14,"_topics":[],"_language":"JavaScript","_homepage":"https://mephisto.ai/","_description":"Mephisto: A suite of tools for managing crowdsourcing tasks from the inception through to data packaging for research use. ","_organization":"facebookresearch","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2019-08-19T00:00:00.000Z","_age_weeks":174,"_stars_per_week":1.48,"_pop_contributor_count":33,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["spectatorpublishingcorrelation-one"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":16.15,"_pop_updated_issues_count":76,"_pop_closed_issues_count":64,"_pop_created_since_days":41,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":76.0,"_pop_comment_count":85.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":80,"_pop_score":47.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/mephisto/master/README.md","_readme_localurl":"facebookresearch~mephisto~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/mephisto/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~mephisto~pyproject.toml"]},{"index":303,"category":"util","githuburl":"https://github.com/airbnb/ottr","featured":null,"links":null,"description":null,"_repopath":"airbnb/ottr","_reponame":"ottr","_stars":257,"_forks":27,"_watches":8,"_topics":[],"_language":"Python","_homepage":"","_description":"ottr: Serverless Public Key Infrastructure Framework","_organization":"airbnb","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-01-04T00:00:00.000Z","_created_at":"2021-08-27T00:00:00.000Z","_age_weeks":68,"_stars_per_week":3.76,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["coinbase"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":16,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":7.13,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/airbnb/ottr/master/README.md","_readme_localurl":"airbnb~ottr~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/airbnb/ottr/master/requirements.txt"],"_requirements_localurls":["airbnb~ottr~requirements.txt"]},{"index":418,"category":"pandas","githuburl":"https://github.com/zsailer/pandas_flavor","featured":null,"links":null,"description":null,"_repopath":"zsailer/pandas_flavor","_reponame":"pandas_flavor","_stars":256,"_forks":17,"_watches":6,"_topics":["pandas"],"_language":"Python","_homepage":"https://zsailer.github.io/software/pandas-flavor/","_description":"pandas_flavor: The easy way to write your own flavor of Pandas","_organization":"zsailer","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-04-17T00:00:00.000Z","_created_at":"2018-01-25T00:00:00.000Z","_age_weeks":255,"_stars_per_week":1.0,"_pop_contributor_count":5,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["apple","bigabid"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.38,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":60,"_pop_updated_since_days":8,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":18.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zsailer/pandas_flavor/master/README.md","_readme_localurl":"zsailer~pandas_flavor~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/zsailer/pandas_flavor/master/setup.py","https://raw.githubusercontent.com/zsailer/pandas_flavor/master/pyproject.toml"],"_requirements_localurls":["zsailer~pandas_flavor~setup.py","zsailer~pandas_flavor~pyproject.toml"]},{"index":670,"category":"gis","githuburl":"https://github.com/cgal/cgal-swig-bindings","featured":null,"links":null,"description":null,"_repopath":"cgal/cgal-swig-bindings","_reponame":"cgal-swig-bindings","_stars":252,"_forks":78,"_watches":26,"_topics":[],"_language":"C++","_homepage":"","_description":"cgal-swig-bindings: CGAL bindings using SWIG","_organization":"cgal","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-10-19T00:00:00.000Z","_created_at":"2015-03-14T00:00:00.000Z","_age_weeks":405,"_stars_per_week":0.62,"_pop_contributor_count":21,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["geometryfactory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.4,"_pop_updated_issues_count":12,"_pop_closed_issues_count":7,"_pop_created_since_days":95,"_pop_updated_since_days":2,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":12.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":4,"_pop_score":33.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cgal/cgal-swig-bindings/master/README.md","_readme_localurl":"cgal~cgal-swig-bindings~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/cgal/cgal-swig-bindings/master/setup.py"],"_requirements_localurls":["cgal~cgal-swig-bindings~setup.py"]},{"index":693,"category":"data","githuburl":"https://github.com/paperswithcode/sota-extractor","featured":null,"links":null,"description":null,"_repopath":"paperswithcode/sota-extractor","_reponame":"sota-extractor","_stars":251,"_forks":27,"_watches":13,"_topics":[],"_language":"Python","_homepage":null,"_description":"sota-extractor: The SOTA extractor pipeline","_organization":"paperswithcode","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-03-09T00:00:00.000Z","_created_at":"2018-12-07T00:00:00.000Z","_age_weeks":210,"_stars_per_week":1.19,"_pop_contributor_count":8,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["https://alefnula.io","metaai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":49,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":21.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/README.md","_readme_localurl":"paperswithcode~sota-extractor~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/requirements.txt","https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/setup.py"],"_requirements_localurls":["paperswithcode~sota-extractor~requirements.txt","paperswithcode~sota-extractor~setup.py"]},{"index":587,"category":"ml","githuburl":"https://github.com/merantix-momentum/squirrel-core","featured":null,"links":null,"description":null,"_repopath":"merantix-momentum/squirrel-core","_reponame":"squirrel-core","_stars":249,"_forks":6,"_watches":14,"_topics":["python","ml","machine-learning","data-science","computer-vision","cv","nlp","natural-language-processing","ai","pytorch","tensorflow","jax","datasets","distributed","dataops","collaboration","deep-learning","data-mesh","data-ingestion","cloud-computing"],"_language":"Python","_homepage":"https://squirrel-core.readthedocs.io/","_description":"squirrel-core: A Python library that enables ML teams to share, load, and transform data in a collaborative, flexible, and efficient way :chestnut:","_organization":"merantix-momentum","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-17T00:00:00.000Z","_created_at":"2022-02-11T00:00:00.000Z","_age_weeks":44,"_stars_per_week":5.6,"_pop_contributor_count":12,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["idealointernetgmbh","merantix&pw-solutions","merantixlabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.87,"_pop_updated_issues_count":17,"_pop_closed_issues_count":14,"_pop_created_since_days":10,"_pop_updated_since_days":1,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":17.0,"_pop_comment_count":21.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":31.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/merantix-momentum/squirrel-core/master/README.md","_readme_localurl":"merantix-momentum~squirrel-core~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/merantix-momentum/squirrel-core/master/requirements.txt","https://raw.githubusercontent.com/merantix-momentum/squirrel-core/master/setup.py","https://raw.githubusercontent.com/merantix-momentum/squirrel-core/master/pyproject.toml"],"_requirements_localurls":["merantix-momentum~squirrel-core~requirements.txt","merantix-momentum~squirrel-core~setup.py","merantix-momentum~squirrel-core~pyproject.toml"]},{"index":374,"category":"data","githuburl":"https://github.com/ndrplz/google-drive-downloader","featured":null,"links":null,"description":null,"_repopath":"ndrplz/google-drive-downloader","_reponame":"google-drive-downloader","_stars":249,"_forks":63,"_watches":11,"_topics":[],"_language":"Python","_homepage":null,"_description":"google-drive-downloader: Minimal class to download shared files from Google Drive.","_organization":"ndrplz","_updated_at":"2022-11-15T00:00:00.000Z","_last_commit_date":"2019-02-09T00:00:00.000Z","_created_at":"2017-12-08T00:00:00.000Z","_age_weeks":262,"_stars_per_week":0.95,"_pop_contributor_count":4,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nomitri-perceptionaiformobile"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":61,"_pop_updated_since_days":47,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":10.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ndrplz/google-drive-downloader/master/README.md","_readme_localurl":"ndrplz~google-drive-downloader~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ndrplz/google-drive-downloader/master/setup.py"],"_requirements_localurls":["ndrplz~google-drive-downloader~setup.py"]},{"index":300,"category":"nlp","githuburl":"https://github.com/openai/grade-school-math","featured":null,"links":null,"description":null,"_repopath":"openai/grade-school-math","_reponame":"grade-school-math","_stars":248,"_forks":47,"_watches":7,"_topics":[],"_language":"Python","_homepage":null,"_description":"openai/grade-school-math","_organization":"openai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-11-19T00:00:00.000Z","_created_at":"2021-10-20T00:00:00.000Z","_age_weeks":60,"_stars_per_week":4.08,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["openai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":14,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":2,"_pop_score":9.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/grade-school-math/master/README.md","_readme_localurl":"openai~grade-school-math~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/grade-school-math/master/setup.py"],"_requirements_localurls":["openai~grade-school-math~setup.py"]},{"index":248,"category":"util","githuburl":"https://github.com/rpgreen/apilogs","featured":null,"links":null,"description":null,"_repopath":"rpgreen/apilogs","_reponame":"apilogs","_stars":247,"_forks":19,"_watches":9,"_topics":["api","gateway","api-gateway","aws","cloudwatch-logs","logging","lambda","aws-lambda","aws-apigateway"],"_language":"Python","_homepage":"","_description":"apilogs: Easy logging and debugging for Amazon API Gateway and AWS Lambda Serverless APIs","_organization":"rpgreen","_updated_at":"2022-10-23T00:00:00.000Z","_last_commit_date":"2019-11-13T00:00:00.000Z","_created_at":"2016-09-07T00:00:00.000Z","_age_weeks":327,"_stars_per_week":0.75,"_pop_contributor_count":23,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["avira","engineeringstableauto"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":76,"_pop_updated_since_days":38,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":15.84,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/rpgreen/apilogs/master/README.rst","_readme_localurl":"rpgreen~apilogs~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rpgreen/apilogs/master/setup.py"],"_requirements_localurls":["rpgreen~apilogs~setup.py"]},{"index":714,"category":"ml-ops","githuburl":"https://github.com/unionai-oss/unionml","featured":null,"links":null,"description":null,"_repopath":"unionai-oss/unionml","_reponame":"unionml","_stars":246,"_forks":38,"_watches":4,"_topics":["machine-learning","mlops","hacktoberfest"],"_language":"Python","_homepage":"https://www.union.ai/unionml","_description":"UnionML: the easiest way to build and deploy machine learning microservices","_organization":"unionai-oss","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2021-11-17T00:00:00.000Z","_age_weeks":56,"_stars_per_week":4.34,"_pop_contributor_count":15,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["letsopen-source","unionai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.79,"_pop_updated_issues_count":76,"_pop_closed_issues_count":46,"_pop_created_since_days":13,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":76.0,"_pop_comment_count":127.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":2,"_pop_score":39.52,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/unionai-oss/unionml/master/README.md","_readme_localurl":"unionai-oss~unionml~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/unionai-oss/unionml/master/requirements.txt","https://raw.githubusercontent.com/unionai-oss/unionml/master/setup.py","https://raw.githubusercontent.com/unionai-oss/unionml/master/pyproject.toml"],"_requirements_localurls":["unionai-oss~unionml~requirements.txt","unionai-oss~unionml~setup.py","unionai-oss~unionml~pyproject.toml"]},{"index":480,"category":"pandas","githuburl":"https://github.com/holoviz/spatialpandas","featured":null,"links":null,"description":null,"_repopath":"holoviz/spatialpandas","_reponame":"spatialpandas","_stars":245,"_forks":21,"_watches":22,"_topics":["holoviz","spatialpandas","pandas","geopandas","geographic-data"],"_language":"Python","_homepage":"","_description":"spatialpandas: Pandas extension arrays for spatial/geometric operations","_organization":"holoviz","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-10-28T00:00:00.000Z","_age_weeks":164,"_stars_per_week":1.49,"_pop_contributor_count":9,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","datum-tech","hextechnologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":8,"_pop_closed_issues_count":7,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":8.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":2,"_pop_score":30.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/spatialpandas/master/README.md","_readme_localurl":"holoviz~spatialpandas~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/spatialpandas/master/setup.py","https://raw.githubusercontent.com/holoviz/spatialpandas/master/pyproject.toml"],"_requirements_localurls":["holoviz~spatialpandas~setup.py","holoviz~spatialpandas~pyproject.toml"]},{"index":454,"category":"gis","githuburl":"https://github.com/openaddresses/pyesridump","featured":null,"links":null,"description":null,"_repopath":"openaddresses/pyesridump","_reponame":"pyesridump","_stars":243,"_forks":59,"_watches":16,"_topics":[],"_language":"Python","_homepage":null,"_description":"pyesridump: Scrapes an ESRI MapServer REST endpoint to spit out more generally-usable geodata.","_organization":"openaddresses","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-06-19T00:00:00.000Z","_created_at":"2013-12-06T00:00:00.000Z","_age_weeks":471,"_stars_per_week":0.52,"_pop_contributor_count":12,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datamade","nlt","openaddressesdevelopmentseed"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.38,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":110,"_pop_updated_since_days":6,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":3.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":28.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openaddresses/pyesridump/master/README.md","_readme_localurl":"openaddresses~pyesridump~README.md","_requirements_filenames":["setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/openaddresses/pyesridump/master/setup.py","https://raw.githubusercontent.com/openaddresses/pyesridump/master/Pipfile"],"_requirements_localurls":["openaddresses~pyesridump~setup.py","openaddresses~pyesridump~Pipfile"]},{"index":276,"category":"crypto","githuburl":"https://github.com/ethtx/ethtx_ce","featured":null,"links":null,"description":null,"_repopath":"ethtx/ethtx_ce","_reponame":"ethtx_ce","_stars":239,"_forks":60,"_watches":13,"_topics":[],"_language":"Python","_homepage":"https://ethtx.info","_description":"ethtx_ce: Ethereum transaction decoder (community version).","_organization":"ethtx","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2021-07-26T00:00:00.000Z","_age_weeks":73,"_stars_per_week":3.27,"_pop_contributor_count":7,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["py-world","tokenflowinsights"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.71,"_pop_updated_issues_count":9,"_pop_closed_issues_count":9,"_pop_created_since_days":17,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":9.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":25.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethtx/ethtx_ce/master/README.md","_readme_localurl":"ethtx~ethtx_ce~README.md","_requirements_filenames":["Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/ethtx/ethtx_ce/master/Pipfile"],"_requirements_localurls":["ethtx~ethtx_ce~Pipfile"]},{"index":864,"category":"ml-ops","githuburl":"https://github.com/astronomer/airflow-chart","featured":null,"links":null,"description":null,"_repopath":"astronomer/airflow-chart","_reponame":"airflow-chart","_stars":239,"_forks":87,"_watches":44,"_topics":["helm-chart","airflow","apache-airflow","kubernetes"],"_language":"Python","_homepage":null,"_description":"airflow-chart: A Helm chart to install Apache Airflow on Kubernetes","_organization":"astronomer","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2020-01-22T00:00:00.000Z","_age_weeks":151,"_stars_per_week":1.58,"_pop_contributor_count":48,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["astronomer","cerebral","mandolin-dev"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.58,"_pop_updated_issues_count":29,"_pop_closed_issues_count":29,"_pop_created_since_days":35,"_pop_updated_since_days":0,"_pop_recent_releases_count":18,"_pop_recent_releases_estimated_tags":29,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":29.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":14,"_pop_score":44.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/astronomer/airflow-chart/master/README.md","_readme_localurl":"astronomer~airflow-chart~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":277,"category":"data","githuburl":"https://github.com/airbnb/omniduct","featured":null,"links":null,"description":null,"_repopath":"airbnb/omniduct","_reponame":"omniduct","_stars":238,"_forks":47,"_watches":30,"_topics":[],"_language":"Python","_homepage":"","_description":"omniduct: A toolkit providing a uniform interface for connecting to and extracting data from a wide variety of (potentially remote) data stores (including HDFS, Hive, Presto, MySQL, etc).","_organization":"airbnb","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-05-09T00:00:00.000Z","_created_at":"2017-02-22T00:00:00.000Z","_age_weeks":303,"_stars_per_week":0.78,"_pop_contributor_count":12,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["airbnb","datascientistatnetflix"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":71,"_pop_updated_since_days":7,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":19.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/airbnb/omniduct/master/README.md","_readme_localurl":"airbnb~omniduct~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/airbnb/omniduct/master/setup.py"],"_requirements_localurls":["airbnb~omniduct~setup.py"]},{"index":588,"category":"data","githuburl":"https://github.com/tokern/data-lineage","featured":null,"links":null,"description":null,"_repopath":"tokern/data-lineage","_reponame":"data-lineage","_stars":235,"_forks":27,"_watches":8,"_topics":["data-lineage","data-governance","python","postgresql","jupyter"],"_language":"Python","_homepage":"https://tokern.io/data-lineage/","_description":"data-lineage: Generate and Visualize Data Lineage from query history","_organization":"tokern","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-05-02T00:00:00.000Z","_created_at":"2020-03-17T00:00:00.000Z","_age_weeks":143,"_stars_per_week":1.63,"_pop_contributor_count":4,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":8,"_pop_closed_issues_count":0,"_pop_created_since_days":34,"_pop_updated_since_days":8,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":8.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":14.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tokern/data-lineage/master/README.md","_readme_localurl":"tokern~data-lineage~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tokern/data-lineage/master/pyproject.toml"],"_requirements_localurls":["tokern~data-lineage~pyproject.toml"]},{"index":657,"category":"template","githuburl":"https://github.com/sqlalchemy/mako","featured":null,"links":null,"description":null,"_repopath":"sqlalchemy/mako","_reponame":"mako","_stars":234,"_forks":46,"_watches":10,"_topics":[],"_language":"Python","_homepage":"https://www.makotemplates.org","_description":"Mako Templates for Python","_organization":"sqlalchemy","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2018-11-26T00:00:00.000Z","_age_weeks":212,"_stars_per_week":1.1,"_pop_contributor_count":59,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["iter8ve","mozilla","redhat"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.67,"_pop_updated_issues_count":7,"_pop_closed_issues_count":7,"_pop_created_since_days":49,"_pop_updated_since_days":1,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":7.0,"_pop_comment_count":17.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":1216,"_pop_score":50.88,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sqlalchemy/mako/master/README.rst","_readme_localurl":"sqlalchemy~mako~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sqlalchemy/mako/master/setup.py","https://raw.githubusercontent.com/sqlalchemy/mako/master/pyproject.toml"],"_requirements_localurls":["sqlalchemy~mako~setup.py","sqlalchemy~mako~pyproject.toml"]},{"index":870,"category":"ml","githuburl":"https://github.com/infer-actively/pymdp","featured":null,"links":null,"description":null,"_repopath":"infer-actively/pymdp","_reponame":"pymdp","_stars":233,"_forks":36,"_watches":23,"_topics":[],"_language":"Python","_homepage":"","_description":"pymdp: A Python implementation of active inference for Markov Decision Processes","_organization":"infer-actively","_updated_at":"2022-12-10T00:00:00.000Z","_last_commit_date":"2022-12-08T00:00:00.000Z","_created_at":"2019-11-27T00:00:00.000Z","_age_weeks":159,"_stars_per_week":1.46,"_pop_contributor_count":12,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["thoughtmachine"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.54,"_pop_updated_issues_count":7,"_pop_closed_issues_count":6,"_pop_created_since_days":37,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":7.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":8,"_pop_score":34.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/infer-actively/pymdp/master/README.md","_readme_localurl":"infer-actively~pymdp~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/infer-actively/pymdp/master/requirements.txt","https://raw.githubusercontent.com/infer-actively/pymdp/master/setup.py"],"_requirements_localurls":["infer-actively~pymdp~requirements.txt","infer-actively~pymdp~setup.py"]},{"index":515,"category":"data","githuburl":"https://github.com/jovianml/opendatasets","featured":null,"links":null,"description":null,"_repopath":"jovianml/opendatasets","_reponame":"opendatasets","_stars":233,"_forks":109,"_watches":14,"_topics":["data-science","machine-learning","datasets","python"],"_language":"Python","_homepage":"","_description":"opendatasets: A Python library for downloading datasets from Kaggle, Google Drive, and other online sources.","_organization":"jovianml","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-01T00:00:00.000Z","_created_at":"2020-09-17T00:00:00.000Z","_age_weeks":117,"_stars_per_week":1.98,"_pop_contributor_count":3,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["jovian","jovianml"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":27,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":3,"_pop_score":18.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jovianml/opendatasets/master/README.md","_readme_localurl":"jovianml~opendatasets~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jovianml/opendatasets/master/requirements.txt","https://raw.githubusercontent.com/jovianml/opendatasets/master/setup.py"],"_requirements_localurls":["jovianml~opendatasets~requirements.txt","jovianml~opendatasets~setup.py"]},{"index":229,"category":"data","githuburl":"https://github.com/microsoft/genalog","featured":null,"links":null,"description":null,"_repopath":"microsoft/genalog","_reponame":"genalog","_stars":232,"_forks":23,"_watches":10,"_topics":["ner","ocr-recognition","python","text-alignment","data-generation","data-science","machine-learning","synthetic-data","synthetic-images","synthetic-data-generation"],"_language":"Jupyter Notebook","_homepage":"https://microsoft.github.io/genalog/","_description":"Genalog is an open source, cross-platform python package allowing generation of synthetic document images with custom degradations and text alignment capabilities.","_organization":"microsoft","_updated_at":"2022-12-11T00:00:00.000Z","_last_commit_date":"2022-09-13T00:00:00.000Z","_created_at":"2020-06-15T00:00:00.000Z","_age_weeks":131,"_stars_per_week":1.77,"_pop_contributor_count":5,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":31,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":16.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/genalog/master/README.md","_readme_localurl":"microsoft~genalog~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/genalog/master/requirements.txt","https://raw.githubusercontent.com/microsoft/genalog/master/setup.py"],"_requirements_localurls":["microsoft~genalog~requirements.txt","microsoft~genalog~setup.py"]},{"index":737,"category":"ml-ops","githuburl":"https://github.com/skops-dev/skops","featured":null,"links":null,"description":null,"_repopath":"skops-dev/skops","_reponame":"skops","_stars":227,"_forks":32,"_watches":7,"_topics":["huggingface","machine-learning","mlops","scikit-learn","hacktoberfest"],"_language":"Python","_homepage":"https://skops.readthedocs.io/en/stable/","_description":"skops is a Python library helping you share your scikit-learn based models and put them in production","_organization":"skops-dev","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2022-05-04T00:00:00.000Z","_age_weeks":32,"_stars_per_week":6.94,"_pop_contributor_count":9,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","jsainsburyplc,sainsburys-tech"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.48,"_pop_updated_issues_count":138,"_pop_closed_issues_count":104,"_pop_created_since_days":8,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":138.0,"_pop_comment_count":530.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.8,"_pop_dependents_count":4,"_pop_score":38.3,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/skops-dev/skops/master/README.rst","_readme_localurl":"skops-dev~skops~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/skops-dev/skops/master/setup.py","https://raw.githubusercontent.com/skops-dev/skops/master/pyproject.toml"],"_requirements_localurls":["skops-dev~skops~setup.py","skops-dev~skops~pyproject.toml"]},{"index":83,"category":"ml","githuburl":"https://github.com/stan-dev/pystan","featured":null,"links":null,"description":null,"_repopath":"stan-dev/pystan","_reponame":"pystan","_stars":226,"_forks":45,"_watches":12,"_topics":[],"_language":"Python","_homepage":"","_description":"PyStan, a Python interface to Stan, a platform for statistical modeling. Documentation: https://pystan.readthedocs.io","_organization":"stan-dev","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-26T00:00:00.000Z","_created_at":"2017-09-17T00:00:00.000Z","_age_weeks":274,"_stars_per_week":0.82,"_pop_contributor_count":11,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lumoanalytics"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":23,"_pop_closed_issues_count":16,"_pop_created_since_days":64,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":23.0,"_pop_comment_count":58.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":26,"_pop_score":37.72,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/stan-dev/pystan/master/README.rst","_readme_localurl":"stan-dev~pystan~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/stan-dev/pystan/master/pyproject.toml"],"_requirements_localurls":["stan-dev~pystan~pyproject.toml"]},{"index":274,"category":"data","githuburl":"https://github.com/amzn/ion-python","featured":null,"links":null,"description":null,"_repopath":"amzn/ion-python","_reponame":"ion-python","_stars":215,"_forks":49,"_watches":23,"_topics":[],"_language":"Python","_homepage":"http://amzn.github.io/ion-docs/","_description":"ion-python: A Python implementation of Amazon Ion.","_organization":"amzn","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2016-04-07T00:00:00.000Z","_age_weeks":349,"_stars_per_week":0.62,"_pop_contributor_count":25,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon","amzn"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.33,"_pop_updated_issues_count":13,"_pop_closed_issues_count":5,"_pop_created_since_days":82,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":13.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":16,"_pop_score":38.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/amzn/ion-python/master/README.md","_readme_localurl":"amzn~ion-python~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/amzn/ion-python/master/requirements.txt","https://raw.githubusercontent.com/amzn/ion-python/master/setup.py"],"_requirements_localurls":["amzn~ion-python~requirements.txt","amzn~ion-python~setup.py"]},{"index":491,"category":"gis","githuburl":"https://github.com/cogeotiff/rio-cogeo","featured":null,"links":null,"description":null,"_repopath":"cogeotiff/rio-cogeo","_reponame":"rio-cogeo","_stars":213,"_forks":30,"_watches":44,"_topics":["satellite","cog","geotiff","rasterio","cogeotiff"],"_language":"Python","_homepage":"https://cogeotiff.github.io/rio-cogeo/","_description":"rio-cogeo: Cloud Optimized GeoTIFF creation and validation plugin for rasterio","_organization":"cogeotiff","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-10-26T00:00:00.000Z","_created_at":"2018-03-09T00:00:00.000Z","_age_weeks":249,"_stars_per_week":0.85,"_pop_contributor_count":13,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["developmentseed","regrowag","uav4geo"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.63,"_pop_updated_issues_count":4,"_pop_closed_issues_count":3,"_pop_created_since_days":58,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":4.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":11,"_pop_score":37.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cogeotiff/rio-cogeo/master/README.md","_readme_localurl":"cogeotiff~rio-cogeo~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cogeotiff/rio-cogeo/master/pyproject.toml"],"_requirements_localurls":["cogeotiff~rio-cogeo~pyproject.toml"]},{"index":888,"category":"study","githuburl":"https://github.com/amaargiru/pyroad","featured":null,"links":null,"description":null,"_repopath":"amaargiru/pyroad","_reponame":"pyroad","_stars":205,"_forks":26,"_watches":5,"_topics":["python","roadmap","tutorial"],"_language":"Jupyter Notebook","_homepage":"","_description":"pyroad: Detailed Python developer roadmap","_organization":"amaargiru","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2022-11-03T00:00:00.000Z","_age_weeks":6,"_stars_per_week":31.2,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["oznadigitalsolutions"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.92,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":2,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":14.54,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/amaargiru/pyroad/master/readme.md","_readme_localurl":"amaargiru~pyroad~readme.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":249,"category":"sim","githuburl":"https://github.com/bilhim/trafficsimulator","featured":null,"links":null,"description":null,"_repopath":"bilhim/trafficsimulator","_reponame":"trafficSimulator","_stars":204,"_forks":77,"_watches":13,"_topics":[],"_language":"Python","_homepage":null,"_description":"bilhim/trafficsimulator","_organization":"bilhim","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2021-09-07T00:00:00.000Z","_created_at":"2021-09-05T00:00:00.000Z","_age_weeks":67,"_stars_per_week":3.04,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":16,"_pop_updated_since_days":16,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":4,"_pop_score":5.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bilhim/trafficsimulator/master/README.md","_readme_localurl":"bilhim~trafficsimulator~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/bilhim/trafficsimulator/master/requirements.txt"],"_requirements_localurls":["bilhim~trafficsimulator~requirements.txt"]},{"index":243,"category":"ml","githuburl":"https://github.com/carla-recourse/carla","featured":null,"links":null,"description":null,"_repopath":"carla-recourse/carla","_reponame":"CARLA","_stars":198,"_forks":42,"_watches":5,"_topics":["python","machine-learning","artificial-intelligence","explainable-ai","explainable-ml","explainability","counterfactual-explanations","counterfactuals","counterfactual","recourse","benchmark","benchmarking","tensorflow","tensorflow2","pytorch"],"_language":"Python","_homepage":"","_description":"CARLA: A Python Library to Benchmark Algorithmic Recourse and Counterfactual Explanation Algorithms","_organization":"carla-recourse","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-09-07T00:00:00.000Z","_created_at":"2020-12-09T00:00:00.000Z","_age_weeks":105,"_stars_per_week":1.87,"_pop_contributor_count":7,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bezerocarbon"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.81,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":25,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":15.23,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/carla-recourse/carla/master/README.md","_readme_localurl":"carla-recourse~carla~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/carla-recourse/carla/master/setup.py"],"_requirements_localurls":["carla-recourse~carla~setup.py"]},{"index":240,"category":"sim","githuburl":"https://github.com/nv-tlabs/gamegan_code","featured":null,"links":null,"description":null,"_repopath":"nv-tlabs/gamegan_code","_reponame":"GameGAN_code","_stars":198,"_forks":32,"_watches":9,"_topics":[],"_language":"Python","_homepage":null,"_description":"GameGAN_code: Learning to Simulate Dynamic Environments with GameGAN (CVPR 2020)","_organization":"nv-tlabs","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2021-11-11T00:00:00.000Z","_created_at":"2020-12-11T00:00:00.000Z","_age_weeks":105,"_stars_per_week":1.88,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":25,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":2,"_pop_score":6.52,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/nv-tlabs/gamegan_code/master/readme.md","_readme_localurl":"nv-tlabs~gamegan_code~readme.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/nv-tlabs/gamegan_code/master/requirements.txt"],"_requirements_localurls":["nv-tlabs~gamegan_code~requirements.txt"]},{"index":865,"category":"ml-ops","githuburl":"https://github.com/astronomer/astro-sdk","featured":null,"links":null,"description":null,"_repopath":"astronomer/astro-sdk","_reponame":"astro-sdk","_stars":197,"_forks":27,"_watches":13,"_topics":["python","sql","pandas","airflow","sqlite","bigquery","postgres","snowflake","gcs","s3","etl","elt","dags","workflows","data-analysis","data-science","apache-airflow"],"_language":"Python","_homepage":"https://docs.astronomer.io/learn/astro-python-sdk-etl","_description":"astro-sdk: Astro SDK allows rapid and clean development of {Extract, Load, Transform} workflows using Python and SQL, powered by Apache Airflow.","_organization":"astronomer","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2021-12-06T00:00:00.000Z","_age_weeks":54,"_stars_per_week":3.65,"_pop_contributor_count":32,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["astronomer","astronomerio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.54,"_pop_updated_issues_count":677,"_pop_closed_issues_count":489,"_pop_created_since_days":13,"_pop_updated_since_days":0,"_pop_recent_releases_count":42,"_pop_recent_releases_estimated_tags":49,"_pop_recent_releases_adjusted_count":42,"_pop_issue_count":677.0,"_pop_comment_count":784.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":112,"_pop_score":52.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/astronomer/astro-sdk/master/README.md","_readme_localurl":"astronomer~astro-sdk~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":836,"category":"gis","githuburl":"https://github.com/r-barnes/richdem","featured":null,"links":null,"description":null,"_repopath":"r-barnes/richdem","_reponame":"richdem","_stars":195,"_forks":57,"_watches":14,"_topics":["digital-elevation-model","geosciences","geospatial","hydrology","hydrologic-modeling","big-data"],"_language":"C++","_homepage":"","_description":"richdem: High-performance Terrain and Hydrology Analysis ","_organization":"r-barnes","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-11-18T00:00:00.000Z","_created_at":"2013-01-06T00:00:00.000Z","_age_weeks":519,"_stars_per_week":0.38,"_pop_contributor_count":4,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["universityofcolorado","universityofidaho"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.79,"_pop_updated_issues_count":9,"_pop_closed_issues_count":1,"_pop_created_since_days":121,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":9.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":84,"_pop_score":34.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/r-barnes/richdem/master/README.md","_readme_localurl":"r-barnes~richdem~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/r-barnes/richdem/master/requirements.txt"],"_requirements_localurls":["r-barnes~richdem~requirements.txt"]},{"index":733,"category":"ml","githuburl":"https://github.com/autonlab/auton-survival","featured":null,"links":null,"description":null,"_repopath":"autonlab/auton-survival","_reponame":"auton-survival","_stars":194,"_forks":48,"_watches":6,"_topics":["survival-analysis","reliability-analysis","python","data-science","deep-learning","machine-learning","time-to-event","counterfactual-inference","regression","causal-inference","graphical-models"],"_language":"Python","_homepage":"http://autonlab.github.io/auton-survival","_description":"auton-survival: Auton Survival - an open source package for Regression, Counterfactual Estimation, Evaluation and Phenotyping with Censored Time-to-Events ","_organization":"autonlab","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2022-11-05T00:00:00.000Z","_created_at":"2020-04-01T00:00:00.000Z","_age_weeks":141,"_stars_per_week":1.37,"_pop_contributor_count":10,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["carnegiemellonuniversity","universityofcambridge"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.85,"_pop_updated_issues_count":8,"_pop_closed_issues_count":5,"_pop_created_since_days":33,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":8.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.4,"_pop_dependents_count":12,"_pop_score":34.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/autonlab/auton-survival/master/README.md","_readme_localurl":"autonlab~auton-survival~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/autonlab/auton-survival/master/requirements.txt"],"_requirements_localurls":["autonlab~auton-survival~requirements.txt"]},{"index":859,"category":"jupyter","githuburl":"https://github.com/jupyter/nbformat","featured":null,"links":null,"description":null,"_repopath":"jupyter/nbformat","_reponame":"nbformat","_stars":193,"_forks":142,"_watches":26,"_topics":[],"_language":"Python","_homepage":"http://nbformat.readthedocs.io/","_description":"nbformat: Reference implementation of the Jupyter Notebook format","_organization":"jupyter","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":401,"_stars_per_week":0.48,"_pop_contributor_count":70,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mongodb","noteable-io","quansight-labs","simularesearchlaboratory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.35,"_pop_updated_issues_count":40,"_pop_closed_issues_count":30,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":40.0,"_pop_comment_count":40.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":1138,"_pop_score":57.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/nbformat/master/README.md","_readme_localurl":"jupyter~nbformat~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/nbformat/master/pyproject.toml"],"_requirements_localurls":["jupyter~nbformat~pyproject.toml"]},{"index":456,"category":"gis","githuburl":"https://github.com/graal-research/deepparse","featured":null,"links":null,"description":null,"_repopath":"graal-research/deepparse","_reponame":"deepparse","_stars":190,"_forks":23,"_watches":4,"_topics":["machine-learning","python","addresses-parsing"],"_language":"Python","_homepage":"https://deepparse.org/","_description":"Deepparse is a state-of-the-art library for parsing multinational street addresses using deep learning","_organization":"graal-research","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2020-07-01T00:00:00.000Z","_age_weeks":128,"_stars_per_week":1.48,"_pop_contributor_count":6,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["baseline.qu\u00e9bec"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.54,"_pop_updated_issues_count":17,"_pop_closed_issues_count":15,"_pop_created_since_days":30,"_pop_updated_since_days":1,"_pop_recent_releases_count":20,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":20,"_pop_issue_count":17.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":34,"_pop_score":36.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/graal-research/deepparse/master/README.md","_readme_localurl":"graal-research~deepparse~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/graal-research/deepparse/master/requirements.txt","https://raw.githubusercontent.com/graal-research/deepparse/master/setup.py","https://raw.githubusercontent.com/graal-research/deepparse/master/pyproject.toml"],"_requirements_localurls":["graal-research~deepparse~requirements.txt","graal-research~deepparse~setup.py","graal-research~deepparse~pyproject.toml"]},{"index":337,"category":"util","githuburl":"https://github.com/mrabarnett/mrab-regex","featured":null,"links":null,"description":null,"_repopath":"mrabarnett/mrab-regex","_reponame":"mrab-regex","_stars":189,"_forks":24,"_watches":5,"_topics":[],"_language":"C","_homepage":null,"_description":"mrabarnett/mrab-regex","_organization":"mrabarnett","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-10-31T00:00:00.000Z","_created_at":"2020-11-02T00:00:00.000Z","_age_weeks":111,"_stars_per_week":1.7,"_pop_contributor_count":9,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":7,"_pop_closed_issues_count":6,"_pop_created_since_days":26,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":7.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":2311,"_pop_score":42.54,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mrabarnett/mrab-regex/master/README.rst","_readme_localurl":"mrabarnett~mrab-regex~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mrabarnett/mrab-regex/master/setup.py"],"_requirements_localurls":["mrabarnett~mrab-regex~setup.py"]},{"index":446,"category":"gis","githuburl":"https://github.com/pysal/spopt","featured":null,"links":null,"description":null,"_repopath":"pysal/spopt","_reponame":"spopt","_stars":184,"_forks":32,"_watches":13,"_topics":["spatial-optimization","regionalization","facility-location","routing","transportation","spatial-analysis","location-allocation","location-modeling","resource-planning","python"],"_language":"Python","_homepage":"https://pysal.org/spopt/","_description":"spopt: Spatial Optimization","_organization":"pysal","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2019-03-01T00:00:00.000Z","_age_weeks":198,"_stars_per_week":0.93,"_pop_contributor_count":15,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["center-for-open-geographical-science","centerforopengeographicalscience","ornl"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.38,"_pop_updated_issues_count":75,"_pop_closed_issues_count":58,"_pop_created_since_days":46,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":75.0,"_pop_comment_count":73.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":104,"_pop_score":46.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pysal/spopt/master/README.md","_readme_localurl":"pysal~spopt~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pysal/spopt/master/requirements.txt","https://raw.githubusercontent.com/pysal/spopt/master/setup.py"],"_requirements_localurls":["pysal~spopt~requirements.txt","pysal~spopt~setup.py"]},{"index":207,"category":"util","githuburl":"https://github.com/aws/aws-lambda-python-runtime-interface-client","featured":null,"links":null,"description":null,"_repopath":"aws/aws-lambda-python-runtime-interface-client","_reponame":"aws-lambda-python-runtime-interface-client","_stars":181,"_forks":42,"_watches":13,"_topics":[],"_language":"Python","_homepage":null,"_description":"aws/aws-lambda-python-runtime-interface-client","_organization":"aws","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-08-16T00:00:00.000Z","_created_at":"2020-09-02T00:00:00.000Z","_age_weeks":119,"_stars_per_week":1.51,"_pop_contributor_count":21,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["356","amazonwebservices"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":7,"_pop_closed_issues_count":1,"_pop_created_since_days":28,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":7.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":2,"_pop_score":27.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aws/aws-lambda-python-runtime-interface-client/master/README.md","_readme_localurl":"aws~aws-lambda-python-runtime-interface-client~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aws/aws-lambda-python-runtime-interface-client/master/setup.py"],"_requirements_localurls":["aws~aws-lambda-python-runtime-interface-client~setup.py"]},{"index":467,"category":"math","githuburl":"https://github.com/lukaszahradnik/pyneuralogic","featured":null,"links":null,"description":null,"_repopath":"lukaszahradnik/pyneuralogic","_reponame":"PyNeuraLogic","_stars":181,"_forks":14,"_watches":5,"_topics":["machine-learning","deep-learning","graph-neural-networks","relational-learning","python","geometric-deep-learning","pytorch","logic-programming","differentiable-programming"],"_language":"Python","_homepage":"https://pyneuralogic.readthedocs.io/","_description":"PyNeuraLogic lets you use Python to create Differentiable Logic Programs","_organization":"lukaszahradnik","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2020-12-06T00:00:00.000Z","_age_weeks":106,"_stars_per_week":1.71,"_pop_contributor_count":3,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["adevinta","czechtechnicaluniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.31,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":25,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":26.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/README.md","_readme_localurl":"lukaszahradnik~pyneuralogic~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/requirements.txt","https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/setup.py","https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/pyproject.toml"],"_requirements_localurls":["lukaszahradnik~pyneuralogic~requirements.txt","lukaszahradnik~pyneuralogic~setup.py","lukaszahradnik~pyneuralogic~pyproject.toml"]},{"index":899,"category":"gis","githuburl":"https://github.com/kuanb/peartree","featured":null,"links":null,"description":null,"_repopath":"kuanb/peartree","_reponame":"peartree","_stars":181,"_forks":16,"_watches":13,"_topics":["network-analysis","transit","graphs","gtfs","spatial-analysis","gis","modeling"],"_language":"Python","_homepage":"","_description":"peartree: A library for converting transit data into a directed graph for sketch network analysis.","_organization":"kuanb","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2021-01-18T00:00:00.000Z","_created_at":"2017-11-12T00:00:00.000Z","_age_weeks":266,"_stars_per_week":0.68,"_pop_contributor_count":5,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["eradb","mapbox"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":62,"_pop_updated_since_days":23,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":15.66,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/kuanb/peartree/master/README.rst","_readme_localurl":"kuanb~peartree~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kuanb/peartree/master/requirements.txt","https://raw.githubusercontent.com/kuanb/peartree/master/setup.py"],"_requirements_localurls":["kuanb~peartree~requirements.txt","kuanb~peartree~setup.py"]},{"index":520,"category":"gis","githuburl":"https://github.com/lydorn/polygonization-by-frame-field-learning","featured":null,"links":null,"description":null,"_repopath":"lydorn/polygonization-by-frame-field-learning","_reponame":"Polygonization-by-Frame-Field-Learning","_stars":179,"_forks":51,"_watches":11,"_topics":["segmentation","polygonization","remote","sensing","frame","field"],"_language":"Python","_homepage":"","_description":"Polygonization-by-Frame-Field-Learning: This repository contains the code for our fast polygonal building extraction from overhead images pipeline.","_organization":"lydorn","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2020-05-26T00:00:00.000Z","_age_weeks":133,"_stars_per_week":1.34,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":31,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":5.5,"_pop_dependents_count":0,"_pop_score":19.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lydorn/polygonization-by-frame-field-learning/master/README.md","_readme_localurl":"lydorn~polygonization-by-frame-field-learning~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lydorn/polygonization-by-frame-field-learning/master/requirements.txt","https://raw.githubusercontent.com/lydorn/polygonization-by-frame-field-learning/master/setup.py"],"_requirements_localurls":["lydorn~polygonization-by-frame-field-learning~requirements.txt","lydorn~polygonization-by-frame-field-learning~setup.py"]},{"index":585,"category":"gis","githuburl":"https://github.com/spatialucr/geosnap","featured":null,"links":null,"description":null,"_repopath":"spatialucr/geosnap","_reponame":"geosnap","_stars":176,"_forks":28,"_watches":17,"_topics":[],"_language":"Python","_homepage":"https://spatialucr.github.io/geosnap-guide","_description":"geosnap: The Geospatial Neighborhood Analysis Package","_organization":"spatialucr","_updated_at":"2022-12-08T00:00:00.000Z","_last_commit_date":"2022-10-24T00:00:00.000Z","_created_at":"2018-09-19T00:00:00.000Z","_age_weeks":221,"_stars_per_week":0.79,"_pop_contributor_count":9,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["center-for-open-geographical-science","centerforopengeographicalscience","mansueto-institute","ornl","universityofnorthtexas"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.94,"_pop_updated_issues_count":4,"_pop_closed_issues_count":2,"_pop_created_since_days":52,"_pop_updated_since_days":2,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":4.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":16,"_pop_score":33.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/spatialucr/geosnap/master/README.md","_readme_localurl":"spatialucr~geosnap~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/spatialucr/geosnap/master/requirements.txt","https://raw.githubusercontent.com/spatialucr/geosnap/master/setup.py"],"_requirements_localurls":["spatialucr~geosnap~requirements.txt","spatialucr~geosnap~setup.py"]},{"index":731,"category":"gis","githuburl":"https://github.com/bowenc0221/boundary-iou-api","featured":null,"links":null,"description":null,"_repopath":"bowenc0221/boundary-iou-api","_reponame":"boundary-iou-api","_stars":175,"_forks":17,"_watches":8,"_topics":[],"_language":"Python","_homepage":"","_description":"boundary-iou-api: Boundary IoU API (Beta version)","_organization":"bowenc0221","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2021-04-05T00:00:00.000Z","_created_at":"2021-03-29T00:00:00.000Z","_age_weeks":90,"_stars_per_week":1.94,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":21,"_pop_updated_since_days":21,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":3.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bowenc0221/boundary-iou-api/master/README.md","_readme_localurl":"bowenc0221~boundary-iou-api~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bowenc0221/boundary-iou-api/master/setup.py"],"_requirements_localurls":["bowenc0221~boundary-iou-api~setup.py"]},{"index":266,"category":"nlp","githuburl":"https://github.com/allenai/s2orc-doc2json","featured":null,"links":null,"description":null,"_repopath":"allenai/s2orc-doc2json","_reponame":"s2orc-doc2json","_stars":174,"_forks":30,"_watches":6,"_topics":[],"_language":"Python","_homepage":"","_description":"s2orc-doc2json: Parsers for scientific papers (PDF2JSON, TEX2JSON, JATS2JSON)","_organization":"allenai","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2020-12-10T00:00:00.000Z","_age_weeks":105,"_stars_per_week":1.65,"_pop_contributor_count":9,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["allenai","castedo.com","kafkodersfrontiersin"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":6,"_pop_closed_issues_count":5,"_pop_created_since_days":25,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":6.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":25.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/README.md","_readme_localurl":"allenai~s2orc-doc2json~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/requirements.txt","https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/setup.py"],"_requirements_localurls":["allenai~s2orc-doc2json~requirements.txt","allenai~s2orc-doc2json~setup.py"]},{"index":33,"category":"gis","githuburl":"https://github.com/jasonrig/address-net","featured":null,"links":null,"description":null,"_repopath":"jasonrig/address-net","_reponame":"address-net","_stars":171,"_forks":71,"_watches":13,"_topics":["rnn","deep-learning","machine-learning","address-parser"],"_language":"Python","_homepage":null,"_description":"address-net: A package to structure Australian addresses","_organization":"jasonrig","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2020-09-09T00:00:00.000Z","_created_at":"2018-12-05T00:00:00.000Z","_age_weeks":210,"_stars_per_week":0.81,"_pop_contributor_count":2,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deceptiveai","monash-mercpay-baymax"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":49,"_pop_updated_since_days":28,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":0,"_pop_score":15.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jasonrig/address-net/master/README.md","_readme_localurl":"jasonrig~address-net~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jasonrig/address-net/master/setup.py"],"_requirements_localurls":["jasonrig~address-net~setup.py"]},{"index":461,"category":"nlp","githuburl":"https://github.com/yoadtew/zero-shot-image-to-text","featured":null,"links":null,"description":null,"_repopath":"yoadtew/zero-shot-image-to-text","_reponame":"zero-shot-image-to-text","_stars":165,"_forks":23,"_watches":7,"_topics":[],"_language":"Python","_homepage":"","_description":"zero-shot-image-to-text: Implementation of Zero-Shot Image-to-Text Generation for Visual-Semantic Arithmetic","_organization":"yoadtew","_updated_at":"2022-12-11T00:00:00.000Z","_last_commit_date":"2022-09-17T00:00:00.000Z","_created_at":"2021-11-26T00:00:00.000Z","_age_weeks":55,"_stars_per_week":2.98,"_pop_contributor_count":6,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":7,"_pop_closed_issues_count":2,"_pop_created_since_days":13,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":7.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.1,"_pop_dependents_count":0,"_pop_score":11.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/yoadtew/zero-shot-image-to-text/master/README.md","_readme_localurl":"yoadtew~zero-shot-image-to-text~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/yoadtew/zero-shot-image-to-text/master/requirements.txt","https://raw.githubusercontent.com/yoadtew/zero-shot-image-to-text/master/setup.py"],"_requirements_localurls":["yoadtew~zero-shot-image-to-text~requirements.txt","yoadtew~zero-shot-image-to-text~setup.py"]},{"index":415,"category":"ml-dl","githuburl":"https://github.com/rafiqhasan/auto-tensorflow","featured":null,"links":null,"description":null,"_repopath":"rafiqhasan/auto-tensorflow","_reponame":"auto-tensorflow","_stars":163,"_forks":33,"_watches":12,"_topics":["tensorflow","deeplearning","neural-networks","machinelearning","tfx","machine-learning","automl","auto-tensorflow","autotensorflow"],"_language":"Python","_homepage":"","_description":"auto-tensorflow: Build Low Code Automated Tensorflow explainable models in just 3 lines of code. Library created by: Hasan Rafiq - https://www.linkedin.com/in/sam04/","_organization":"rafiqhasan","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2021-07-05T00:00:00.000Z","_age_weeks":76,"_stars_per_week":2.14,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":18,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":14.66,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rafiqhasan/auto-tensorflow/master/README.md","_readme_localurl":"rafiqhasan~auto-tensorflow~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/rafiqhasan/auto-tensorflow/master/setup.py","https://raw.githubusercontent.com/rafiqhasan/auto-tensorflow/master/pyproject.toml"],"_requirements_localurls":["rafiqhasan~auto-tensorflow~setup.py","rafiqhasan~auto-tensorflow~pyproject.toml"]},{"index":819,"category":"time-series","githuburl":"https://github.com/salesforce/deeptime","featured":null,"links":null,"description":null,"_repopath":"salesforce/deeptime","_reponame":"DeepTime","_stars":161,"_forks":22,"_watches":5,"_topics":["deep-learning","forecasting","meta-learning","time-series","time-series-forecasting","time-series-regression","implicit-neural-representation"],"_language":"Python","_homepage":"","_description":"PyTorch code for DeepTime: Deep Time-Index Meta-Learning for Non-Stationary Time-Series Forecasting","_organization":"salesforce","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-03T00:00:00.000Z","_created_at":"2022-06-27T00:00:00.000Z","_age_weeks":25,"_stars_per_week":6.44,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.21,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":6,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":12.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/deeptime/master/README.md","_readme_localurl":"salesforce~deeptime~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/salesforce/deeptime/master/requirements.txt"],"_requirements_localurls":["salesforce~deeptime~requirements.txt"]},{"index":339,"category":"perf","githuburl":"https://github.com/tlkh/tf-metal-experiments","featured":null,"links":null,"description":null,"_repopath":"tlkh/tf-metal-experiments","_reponame":"tf-metal-experiments","_stars":160,"_forks":17,"_watches":9,"_topics":["gpu","deep-learning","tensorflow","m1","m1-max","benchmark","bert"],"_language":"Jupyter Notebook","_homepage":"","_description":"tf-metal-experiments: TensorFlow Metal Backend on Apple Silicon Experiments (just for fun)","_organization":"tlkh","_updated_at":"2022-11-30T00:00:00.000Z","_last_commit_date":"2021-11-15T00:00:00.000Z","_created_at":"2021-10-26T00:00:00.000Z","_age_weeks":59,"_stars_per_week":2.67,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["singaporeuniversityoftechnologyanddesign"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":14,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":7.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tlkh/tf-metal-experiments/master/README.md","_readme_localurl":"tlkh~tf-metal-experiments~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":890,"category":"graph","githuburl":"https://github.com/h4kor/graph-force","featured":null,"links":null,"description":null,"_repopath":"h4kor/graph-force","_reponame":"graph-force","_stars":159,"_forks":0,"_watches":9,"_topics":["force-directed-graphs","graph-algorithms","python","python3"],"_language":"Rust","_homepage":"https://pypi.org/project/graph-force/","_description":"graph-force: Python library for embedding large graphs in 2D space, using force-directed layouts.","_organization":"h4kor","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2022-11-28T00:00:00.000Z","_age_weeks":3,"_stars_per_week":53.0,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.77,"_pop_updated_issues_count":4,"_pop_closed_issues_count":0,"_pop_created_since_days":1,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":5.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/h4kor/graph-force/master/README.md","_readme_localurl":"h4kor~graph-force~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/h4kor/graph-force/master/requirements.txt","https://raw.githubusercontent.com/h4kor/graph-force/master/pyproject.toml"],"_requirements_localurls":["h4kor~graph-force~requirements.txt","h4kor~graph-force~pyproject.toml"]},{"index":743,"category":"study","githuburl":"https://github.com/koaning/calm-notebooks","featured":null,"links":null,"description":null,"_repopath":"koaning/calm-notebooks","_reponame":"calm-notebooks","_stars":158,"_forks":135,"_watches":7,"_topics":[],"_language":"Jupyter Notebook","_homepage":"https://calmcode.io","_description":"calm-notebooks: notebooks that are used at calmcode.io","_organization":"koaning","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2021-10-21T00:00:00.000Z","_created_at":"2020-03-01T00:00:00.000Z","_age_weeks":146,"_stars_per_week":1.08,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["explosion"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":34,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":5,"_pop_score":10.61,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/koaning/calm-notebooks/master/readme.md","_readme_localurl":"koaning~calm-notebooks~readme.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":775,"category":"sim","githuburl":"https://github.com/activitysim/activitysim","featured":null,"links":null,"description":null,"_repopath":"activitysim/activitysim","_reponame":"activitysim","_stars":145,"_forks":86,"_watches":43,"_topics":["python","travel-modeling","data-science","bsd-3-clause","microsimulation","activitysim"],"_language":"Jupyter Notebook","_homepage":"https://activitysim.github.io","_description":"activitysim: An Open Platform for Activity-Based Travel Modeling","_organization":"activitysim","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-09-14T00:00:00.000Z","_created_at":"2014-06-18T00:00:00.000Z","_age_weeks":443,"_stars_per_week":0.33,"_pop_contributor_count":25,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cambridgesystematics|georgiatech","populus-ai","populus-aimapcraftlabsoaklandanalytics","ptvgroup","rsginc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.9,"_pop_updated_issues_count":43,"_pop_closed_issues_count":19,"_pop_created_since_days":104,"_pop_updated_since_days":3,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":43.0,"_pop_comment_count":68.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":28,"_pop_score":45.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/activitysim/activitysim/master/README.md","_readme_localurl":"activitysim~activitysim~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/activitysim/activitysim/master/setup.py","https://raw.githubusercontent.com/activitysim/activitysim/master/pyproject.toml"],"_requirements_localurls":["activitysim~activitysim~setup.py","activitysim~activitysim~pyproject.toml"]},{"index":606,"category":"util","githuburl":"https://github.com/pyscript/pyscript-cli","featured":null,"links":null,"description":null,"_repopath":"pyscript/pyscript-cli","_reponame":"pyscript-cli","_stars":142,"_forks":14,"_watches":12,"_topics":[],"_language":"Python","_homepage":null,"_description":"pyscript-cli: A CLI for PyScript","_organization":"pyscript","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2022-05-01T00:00:00.000Z","_age_weeks":33,"_stars_per_week":4.28,"_pop_contributor_count":7,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.35,"_pop_updated_issues_count":5,"_pop_closed_issues_count":4,"_pop_created_since_days":8,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":5.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":24.94,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyscript/pyscript-cli/master/README.md","_readme_localurl":"pyscript~pyscript-cli~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyscript/pyscript-cli/master/pyproject.toml"],"_requirements_localurls":["pyscript~pyscript-cli~pyproject.toml"]},{"index":869,"category":"util","githuburl":"https://github.com/hugovk/pypistats","featured":null,"links":null,"description":null,"_repopath":"hugovk/pypistats","_reponame":"pypistats","_stars":138,"_forks":25,"_watches":4,"_topics":["python","python3","pypi","statistics","stats","api","cli","command-line","command-line-tool","downloads","hacktoberfest"],"_language":"Python","_homepage":"https://pypistats.org/api/","_description":"pypistats: Command-line interface to PyPI Stats API to get download stats for Python packages","_organization":"hugovk","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2018-09-22T00:00:00.000Z","_age_weeks":221,"_stars_per_week":0.62,"_pop_contributor_count":12,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nordsoftware"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.42,"_pop_updated_issues_count":14,"_pop_closed_issues_count":13,"_pop_created_since_days":52,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":14.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":8,"_pop_score":34.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hugovk/pypistats/master/README.md","_readme_localurl":"hugovk~pypistats~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/hugovk/pypistats/master/requirements.txt","https://raw.githubusercontent.com/hugovk/pypistats/master/pyproject.toml"],"_requirements_localurls":["hugovk~pypistats~requirements.txt","hugovk~pypistats~pyproject.toml"]},{"index":901,"category":"gis","githuburl":"https://github.com/amazon-science/earth-forecasting-transformer","featured":null,"links":null,"description":null,"_repopath":"amazon-science/earth-forecasting-transformer","_reponame":"earth-forecasting-transformer","_stars":137,"_forks":20,"_watches":7,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"earth-forecasting-transformer: Official implementation of Earthformer","_organization":"amazon-science","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2022-09-12T00:00:00.000Z","_age_weeks":14,"_stars_per_week":9.79,"_pop_contributor_count":5,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon","amazonai","amazonwebservices","hongkonguniversityofscienceandtechnology","universityoftennessee"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.71,"_pop_updated_issues_count":39,"_pop_closed_issues_count":38,"_pop_created_since_days":3,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":39.0,"_pop_comment_count":46.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":26.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/amazon-science/earth-forecasting-transformer/master/README.md","_readme_localurl":"amazon-science~earth-forecasting-transformer~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/amazon-science/earth-forecasting-transformer/master/setup.py"],"_requirements_localurls":["amazon-science~earth-forecasting-transformer~setup.py"]},{"index":231,"category":"template","githuburl":"https://github.com/crmne/cookiecutter-modern-datascience","featured":null,"links":null,"description":null,"_repopath":"crmne/cookiecutter-modern-datascience","_reponame":"cookiecutter-modern-datascience","_stars":136,"_forks":27,"_watches":3,"_topics":["cookiecutter","cookiecutter-template","cookiecutter-data-science","python","datascience"],"_language":"Python","_homepage":"","_description":"cookiecutter-modern-datascience: Start a data science project with modern tools","_organization":"crmne","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-06-10T00:00:00.000Z","_created_at":"2020-07-06T00:00:00.000Z","_age_weeks":128,"_stars_per_week":1.06,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["freshflowai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":4,"_pop_closed_issues_count":0,"_pop_created_since_days":30,"_pop_updated_since_days":6,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":12.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/crmne/cookiecutter-modern-datascience/master/README.md","_readme_localurl":"crmne~cookiecutter-modern-datascience~README.md","_requirements_filenames":["Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/crmne/cookiecutter-modern-datascience/master/Pipfile"],"_requirements_localurls":["crmne~cookiecutter-modern-datascience~Pipfile"]},{"index":826,"category":"diffusion","githuburl":"https://github.com/thereforegames/unprompted","featured":null,"links":null,"description":null,"_repopath":"thereforegames/unprompted","_reponame":"unprompted","_stars":134,"_forks":10,"_watches":4,"_topics":[],"_language":"Python","_homepage":null,"_description":"unprompted: Text generator written for Stable Diffusion workflows.","_organization":"thereforegames","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2022-10-31T00:00:00.000Z","_age_weeks":7,"_stars_per_week":19.14,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["awesomehamster"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.29,"_pop_updated_issues_count":22,"_pop_closed_issues_count":16,"_pop_created_since_days":2,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":22.0,"_pop_comment_count":74.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.4,"_pop_dependents_count":0,"_pop_score":20.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/thereforegames/unprompted/master/README.md","_readme_localurl":"thereforegames~unprompted~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":564,"category":"gis","githuburl":"https://github.com/geopandas/pyogrio","featured":null,"links":null,"description":null,"_repopath":"geopandas/pyogrio","_reponame":"pyogrio","_stars":134,"_forks":8,"_watches":8,"_topics":[],"_language":"Python","_homepage":"https://pyogrio.readthedocs.io","_description":"pyogrio: Vectorized vector I/O using OGR","_organization":"geopandas","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2020-03-27T00:00:00.000Z","_age_weeks":142,"_stars_per_week":0.94,"_pop_contributor_count":8,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["astutespruce","udl-ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.87,"_pop_updated_issues_count":43,"_pop_closed_issues_count":29,"_pop_created_since_days":33,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":43.0,"_pop_comment_count":84.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":5,"_pop_score":38.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/geopandas/pyogrio/master/README.md","_readme_localurl":"geopandas~pyogrio~README.md","_requirements_filenames":["setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/geopandas/pyogrio/master/setup.py","https://raw.githubusercontent.com/geopandas/pyogrio/master/pyproject.toml","https://raw.githubusercontent.com/geopandas/pyogrio/master/Pipfile"],"_requirements_localurls":["geopandas~pyogrio~setup.py","geopandas~pyogrio~pyproject.toml","geopandas~pyogrio~Pipfile"]},{"index":147,"category":"graph","githuburl":"https://github.com/guyallard/markov_clustering","featured":null,"links":null,"description":null,"_repopath":"guyallard/markov_clustering","_reponame":"markov_clustering","_stars":132,"_forks":33,"_watches":9,"_topics":["markov-clustering","clustering","python","networks"],"_language":"Python","_homepage":null,"_description":"markov_clustering: markov clustering in python","_organization":"guyallard","_updated_at":"2022-11-15T00:00:00.000Z","_last_commit_date":"2018-12-11T00:00:00.000Z","_created_at":"2017-09-27T00:00:00.000Z","_age_weeks":272,"_stars_per_week":0.48,"_pop_contributor_count":3,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":64,"_pop_updated_since_days":49,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":7.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/guyallard/markov_clustering/master/README.md","_readme_localurl":"guyallard~markov_clustering~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/guyallard/markov_clustering/master/requirements.txt","https://raw.githubusercontent.com/guyallard/markov_clustering/master/setup.py"],"_requirements_localurls":["guyallard~markov_clustering~requirements.txt","guyallard~markov_clustering~setup.py"]},{"index":774,"category":"sim","githuburl":"https://github.com/openfisca/openfisca-core","featured":null,"links":null,"description":null,"_repopath":"openfisca/openfisca-core","_reponame":"openfisca-core","_stars":131,"_forks":71,"_watches":24,"_topics":["legislation-as-code","rules-as-code","better-rules","microsimulation"],"_language":"Python","_homepage":"https://openfisca.org","_description":"openfisca-core: OpenFisca core engine. See other repositories for countries-specific code & data.","_organization":"openfisca","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2013-12-29T00:00:00.000Z","_age_weeks":468,"_stars_per_week":0.28,"_pop_contributor_count":58,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["codeworksfrance"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.31,"_pop_updated_issues_count":61,"_pop_closed_issues_count":35,"_pop_created_since_days":109,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":43,"_pop_recent_releases_adjusted_count":43,"_pop_issue_count":62.0,"_pop_comment_count":83.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":53,"_pop_score":50.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openfisca/openfisca-core/master/README.md","_readme_localurl":"openfisca~openfisca-core~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/openfisca/openfisca-core/master/setup.py"],"_requirements_localurls":["openfisca~openfisca-core~setup.py"]},{"index":785,"category":"util","githuburl":"https://github.com/brokenloop/jsontopydantic","featured":null,"links":null,"description":null,"_repopath":"brokenloop/jsontopydantic","_reponame":"jsontopydantic","_stars":128,"_forks":7,"_watches":3,"_topics":[],"_language":"TypeScript","_homepage":"https://jsontopydantic.com","_description":"jsontopydantic: Web tool for generating Pydantic models from JSON objects","_organization":"brokenloop","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-05-13T00:00:00.000Z","_created_at":"2020-11-28T00:00:00.000Z","_age_weeks":107,"_stars_per_week":1.19,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":25,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":6.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/brokenloop/jsontopydantic/master/README.md","_readme_localurl":"brokenloop~jsontopydantic~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":290,"category":"template","githuburl":"https://github.com/eugeneyan/python-collab-template","featured":null,"links":null,"description":null,"_repopath":"eugeneyan/python-collab-template","_reponame":"python-collab-template","_stars":125,"_forks":35,"_watches":4,"_topics":["python","unit-testing","linting","type-checking","github-actions","makefile","coverage","hacktoberfest"],"_language":"Python","_homepage":"https://eugeneyan.com/writing/setting-up-python-project-for-automation-and-collaboration/","_description":"python-collab-template: \ud83d\udee0 Python project template with unit tests, code coverage, linting, type checking, Makefile wrapper, and GitHub Actions.","_organization":"eugeneyan","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-07-02T00:00:00.000Z","_created_at":"2020-06-21T00:00:00.000Z","_age_weeks":130,"_stars_per_week":0.96,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amzn"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":30,"_pop_updated_since_days":6,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":10.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/eugeneyan/python-collab-template/master/README.md","_readme_localurl":"eugeneyan~python-collab-template~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":583,"category":"web","githuburl":"https://github.com/developmentseed/fastai-serving","featured":null,"links":null,"description":null,"_repopath":"developmentseed/fastai-serving","_reponame":"fastai-serving","_stars":121,"_forks":11,"_watches":8,"_topics":["machine-learning","python","deep-learning","pytorch","docker"],"_language":"Python","_homepage":"","_description":"fastai-serving: A Docker image for serving fast.ai models, mimicking the API of Tensorflow Serving","_organization":"developmentseed","_updated_at":"2022-04-08T00:00:00.000Z","_last_commit_date":"2020-02-10T00:00:00.000Z","_created_at":"2019-07-01T00:00:00.000Z","_age_weeks":181,"_stars_per_week":0.67,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cloud-gov(work)+personalprojects;"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":42,"_pop_updated_since_days":35,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":6.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/fastai-serving/master/README.md","_readme_localurl":"developmentseed~fastai-serving~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":305,"category":"util","githuburl":"https://github.com/xrudelis/pytrait","featured":null,"links":null,"description":null,"_repopath":"xrudelis/pytrait","_reponame":"pytrait","_stars":121,"_forks":3,"_watches":3,"_topics":[],"_language":"Python","_homepage":null,"_description":"pytrait: Traits for Python3","_organization":"xrudelis","_updated_at":"2022-11-15T00:00:00.000Z","_last_commit_date":"2021-11-27T00:00:00.000Z","_created_at":"2021-11-21T00:00:00.000Z","_age_weeks":56,"_stars_per_week":2.16,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":13,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":3.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/xrudelis/pytrait/master/README.md","_readme_localurl":"xrudelis~pytrait~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/xrudelis/pytrait/master/setup.py"],"_requirements_localurls":["xrudelis~pytrait~setup.py"]},{"index":555,"category":"ml","githuburl":"https://github.com/nicolas-chaulet/torch-points3d","featured":null,"links":null,"description":null,"_repopath":"nicolas-chaulet/torch-points3d","_reponame":"torch-points3d","_stars":118,"_forks":30,"_watches":0,"_topics":[],"_language":null,"_homepage":"https://torch-points3d.readthedocs.io/en/latest/","_description":"torch-points3d: Pytorch framework for doing deep learning on point clouds.","_organization":"nicolas-chaulet","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2021-12-10T00:00:00.000Z","_created_at":"2022-01-09T00:00:00.000Z","_age_weeks":49,"_stars_per_week":2.4,"_pop_contributor_count":29,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["canoapbc","grid.ai|pytorchlightning","universityoftexasatdallas"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":11,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":38,"_pop_score":27.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nicolas-chaulet/torch-points3d/master/README.md","_readme_localurl":"nicolas-chaulet~torch-points3d~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nicolas-chaulet/torch-points3d/master/requirements.txt","https://raw.githubusercontent.com/nicolas-chaulet/torch-points3d/master/pyproject.toml"],"_requirements_localurls":["nicolas-chaulet~torch-points3d~requirements.txt","nicolas-chaulet~torch-points3d~pyproject.toml"]},{"index":316,"category":"util","githuburl":"https://github.com/irmen/pyminiaudio","featured":null,"links":null,"description":null,"_repopath":"irmen/pyminiaudio","_reponame":"pyminiaudio","_stars":117,"_forks":13,"_watches":3,"_topics":[],"_language":"C","_homepage":"","_description":"pyminiaudio: python interface to the miniaudio audio playback, recording, decoding and conversion library","_organization":"irmen","_updated_at":"2022-11-22T00:00:00.000Z","_last_commit_date":"2022-11-15T00:00:00.000Z","_created_at":"2019-06-30T00:00:00.000Z","_age_weeks":181,"_stars_per_week":0.65,"_pop_contributor_count":4,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["closedlooplabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":4,"_pop_closed_issues_count":4,"_pop_created_since_days":42,"_pop_updated_since_days":1,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":4.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":8,"_pop_score":29.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/irmen/pyminiaudio/master/README.md","_readme_localurl":"irmen~pyminiaudio~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/irmen/pyminiaudio/master/setup.py"],"_requirements_localurls":["irmen~pyminiaudio~setup.py"]},{"index":571,"category":"gis","githuburl":"https://github.com/developmentseed/geojson-pydantic","featured":null,"links":null,"description":null,"_repopath":"developmentseed/geojson-pydantic","_reponame":"geojson-pydantic","_stars":113,"_forks":27,"_watches":11,"_topics":["geojson","pydantic","geojson-spec"],"_language":"Python","_homepage":null,"_description":"geojson-pydantic: Pydantic data models for the GeoJSON spec","_organization":"developmentseed","_updated_at":"2022-11-29T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2020-05-21T00:00:00.000Z","_age_weeks":134,"_stars_per_week":0.84,"_pop_contributor_count":19,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bigbear.ai","cloud-gov(work)+personalprojects;","developmentseed"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.21,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":31,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":4.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":5,"_pop_score":35.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/geojson-pydantic/master/README.md","_readme_localurl":"developmentseed~geojson-pydantic~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/developmentseed/geojson-pydantic/master/pyproject.toml"],"_requirements_localurls":["developmentseed~geojson-pydantic~pyproject.toml"]},{"index":893,"category":"sim","githuburl":"https://github.com/crowdbotp/socialways","featured":null,"links":null,"description":null,"_repopath":"crowdbotp/socialways","_reponame":"socialways","_stars":110,"_forks":45,"_watches":9,"_topics":["trajectory-prediction","human-trajectory-prediction","gan","social-navigation","social-ways","pedestrian-trajectories","pedestrian","social-gan","social-robots","generative-adversarial-network","trajectory-forecasting","self-driving-car","prediction-model","info-gan","crowd-simulation"],"_language":"Python","_homepage":"","_description":"socialways: Social Ways: Learning Multi-Modal Distributions of Pedestrian Trajectories with GANs (CVPR 2019)","_organization":"crowdbotp","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2020-03-20T00:00:00.000Z","_created_at":"2019-04-23T00:00:00.000Z","_age_weeks":190,"_stars_per_week":0.58,"_pop_contributor_count":3,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cimat","inriaresearchcenter"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":44,"_pop_updated_since_days":33,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/crowdbotp/socialways/master/README.md","_readme_localurl":"crowdbotp~socialways~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":407,"category":"data","githuburl":"https://github.com/google/weather-tools","featured":null,"links":null,"description":null,"_repopath":"google/weather-tools","_reponame":"weather-tools","_stars":109,"_forks":23,"_watches":12,"_topics":["python","apache-beam","weather"],"_language":"Python","_homepage":"https://weather-tools.readthedocs.io/","_description":"weather-tools: Apache Beam pipelines to make weather data accessible and useful.","_organization":"google","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2021-11-22T00:00:00.000Z","_age_weeks":56,"_stars_per_week":1.95,"_pop_contributor_count":25,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["infocuspinnovationspvt.ltd."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.19,"_pop_updated_issues_count":48,"_pop_closed_issues_count":25,"_pop_created_since_days":13,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":48.0,"_pop_comment_count":29.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":31.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/weather-tools/master/README.md","_readme_localurl":"google~weather-tools~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/weather-tools/master/setup.py"],"_requirements_localurls":["google~weather-tools~setup.py"]},{"index":466,"category":"nlp","githuburl":"https://github.com/infinitylogesh/mutate","featured":null,"links":null,"description":null,"_repopath":"infinitylogesh/mutate","_reponame":"mutate","_stars":105,"_forks":7,"_watches":3,"_topics":["nlp-library","text-generation","language-model","data-augmentation","data-labeling"],"_language":"Python","_homepage":"","_description":"mutate: A library to synthesize text datasets using Large Language Models (LLM)","_organization":"infinitylogesh","_updated_at":"2022-11-08T00:00:00.000Z","_last_commit_date":"2022-04-18T00:00:00.000Z","_created_at":"2021-12-29T00:00:00.000Z","_age_weeks":50,"_stars_per_week":2.07,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["argilla"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.27,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":12,"_pop_updated_since_days":8,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":7.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/infinitylogesh/mutate/master/README.md","_readme_localurl":"infinitylogesh~mutate~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/infinitylogesh/mutate/master/requirements.txt","https://raw.githubusercontent.com/infinitylogesh/mutate/master/setup.py"],"_requirements_localurls":["infinitylogesh~mutate~requirements.txt","infinitylogesh~mutate~setup.py"]},{"index":463,"category":"data","githuburl":"https://github.com/psycoguana/subredditmediadownloader","featured":null,"links":null,"description":null,"_repopath":"psycoguana/subredditmediadownloader","_reponame":"SubredditMediaDownloader","_stars":102,"_forks":7,"_watches":3,"_topics":[],"_language":"Python","_homepage":null,"_description":"SubredditMediaDownloader: Simple Python script to download images and videos from public subreddits without using Reddit's API \ud83d\ude0e","_organization":"psycoguana","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-20T00:00:00.000Z","_created_at":"2022-02-18T00:00:00.000Z","_age_weeks":43,"_stars_per_week":2.35,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.4,"_pop_updated_issues_count":7,"_pop_closed_issues_count":7,"_pop_created_since_days":10,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":7.0,"_pop_comment_count":21.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":16.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/psycoguana/subredditmediadownloader/master/README.md","_readme_localurl":"psycoguana~subredditmediadownloader~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/psycoguana/subredditmediadownloader/master/requirements.txt"],"_requirements_localurls":["psycoguana~subredditmediadownloader~requirements.txt"]},{"index":527,"category":"ml","githuburl":"https://github.com/hazyresearch/domino","featured":null,"links":null,"description":null,"_repopath":"hazyresearch/domino","_reponame":"domino","_stars":99,"_forks":14,"_watches":20,"_topics":[],"_language":"Python","_homepage":null,"_description":"hazyresearch/domino","_organization":"hazyresearch","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-08-02T00:00:00.000Z","_created_at":"2021-11-29T00:00:00.000Z","_age_weeks":55,"_stars_per_week":1.8,"_pop_contributor_count":6,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.19,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":13,"_pop_updated_since_days":5,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":4.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":6,"_pop_score":15.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hazyresearch/domino/master/README.md","_readme_localurl":"hazyresearch~domino~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hazyresearch/domino/master/setup.py"],"_requirements_localurls":["hazyresearch~domino~setup.py"]},{"index":847,"category":"gis","githuburl":"https://github.com/remotesensinglab/raster4ml","featured":null,"links":null,"description":null,"_repopath":"remotesensinglab/raster4ml","_reponame":"raster4ml","_stars":97,"_forks":12,"_watches":4,"_topics":["agriculture-research","data-science","geospatial-data","machine-learning","remote-sensing","vegetation","vegetation-index","python"],"_language":"Python","_homepage":"https://raster4ml.readthedocs.io","_description":"raster4ml: A geospatial raster processing library for machine learning","_organization":"remotesensinglab","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-11-01T00:00:00.000Z","_created_at":"2022-07-11T00:00:00.000Z","_age_weeks":23,"_stars_per_week":4.22,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["saintlouisuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.96,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":5,"_pop_updated_since_days":2,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/remotesensinglab/raster4ml/master/README.md","_readme_localurl":"remotesensinglab~raster4ml~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/remotesensinglab/raster4ml/master/requirements.txt","https://raw.githubusercontent.com/remotesensinglab/raster4ml/master/setup.py"],"_requirements_localurls":["remotesensinglab~raster4ml~requirements.txt","remotesensinglab~raster4ml~setup.py"]},{"index":533,"category":"gis","githuburl":"https://github.com/gdaosu/lod2buildingmodel","featured":null,"links":null,"description":null,"_repopath":"gdaosu/lod2buildingmodel","_reponame":"LOD2BuildingModel","_stars":96,"_forks":23,"_watches":9,"_topics":[],"_language":"Python","_homepage":"","_description":"LOD2BuildingModel: SAT2LoD2: Automated LoD-2 Model Reconstruction from Satellite-derived DSM and Orthophoto","_organization":"gdaosu","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-07-21T00:00:00.000Z","_created_at":"2021-08-30T00:00:00.000Z","_age_weeks":68,"_stars_per_week":1.41,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ohiostateuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.85,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":16,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":13.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gdaosu/lod2buildingmodel/master/README.md","_readme_localurl":"gdaosu~lod2buildingmodel~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":529,"category":"nlp","githuburl":"https://github.com/hazyresearch/fonduer-tutorials","featured":null,"links":null,"description":null,"_repopath":"hazyresearch/fonduer-tutorials","_reponame":"fonduer-tutorials","_stars":96,"_forks":23,"_watches":18,"_topics":[],"_language":"Jupyter Notebook","_homepage":"https://github.com/HazyResearch/fonduer","_description":"fonduer-tutorials: A collection of simple tutorials for using Fonduer","_organization":"hazyresearch","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2020-05-27T00:00:00.000Z","_created_at":"2018-03-23T00:00:00.000Z","_age_weeks":247,"_stars_per_week":0.39,"_pop_contributor_count":6,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["https://snorkel.ai/","numbersstationai","vodafone"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":58,"_pop_updated_since_days":31,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":16.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hazyresearch/fonduer-tutorials/master/README.md","_readme_localurl":"hazyresearch~fonduer-tutorials~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/hazyresearch/fonduer-tutorials/master/requirements.txt"],"_requirements_localurls":["hazyresearch~fonduer-tutorials~requirements.txt"]},{"index":457,"category":"nlp","githuburl":"https://github.com/coastalcph/lex-glue","featured":null,"links":null,"description":null,"_repopath":"coastalcph/lex-glue","_reponame":"lex-glue","_stars":95,"_forks":22,"_watches":6,"_topics":["legal","nlp","benchmark","legaltech","lawtech"],"_language":"Python","_homepage":"","_description":"lex-glue: LexGLUE: A Benchmark Dataset for Legal Language Understanding in English","_organization":"coastalcph","_updated_at":"2022-12-08T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2021-09-27T00:00:00.000Z","_age_weeks":64,"_stars_per_week":1.48,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":4,"_pop_closed_issues_count":4,"_pop_created_since_days":15,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":8,"_pop_score":20.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/coastalcph/lex-glue/master/README.md","_readme_localurl":"coastalcph~lex-glue~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/coastalcph/lex-glue/master/requirements.txt"],"_requirements_localurls":["coastalcph~lex-glue~requirements.txt"]},{"index":781,"category":"gis","githuburl":"https://github.com/ghislainv/forestatrisk","featured":null,"links":null,"description":null,"_repopath":"ghislainv/forestatrisk","_reponame":"forestatrisk","_stars":95,"_forks":20,"_watches":4,"_topics":["python","land-use-change","spatial-modelling","spatial-analysis","forecasting","spatial-autocorrelation","tropical-forests","roads","protected-areas","biodiversity-scenario","ipbes","co2-emissions","ipcc","forest-cover-change","deforestation","deforestation-risk","redd"],"_language":"Python","_homepage":"https://ecology.ghislainv.fr/forestatrisk","_description":"forestatrisk: :package: :snake: Python package to model and forecast the risk of deforestation","_organization":"ghislainv","_updated_at":"2022-11-07T00:00:00.000Z","_last_commit_date":"2022-08-23T00:00:00.000Z","_created_at":"2016-12-01T00:00:00.000Z","_age_weeks":315,"_stars_per_week":0.3,"_pop_contributor_count":6,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cirad","faoopenforis","lancasteruniversity","uiuc","weecology,univofflorida"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.56,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":74,"_pop_updated_since_days":4,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":22,"_pop_score":28.9,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/ghislainv/forestatrisk/master/README.rst","_readme_localurl":"ghislainv~forestatrisk~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ghislainv/forestatrisk/master/requirements.txt","https://raw.githubusercontent.com/ghislainv/forestatrisk/master/setup.py"],"_requirements_localurls":["ghislainv~forestatrisk~requirements.txt","ghislainv~forestatrisk~setup.py"]},{"index":558,"category":"gis","githuburl":"https://github.com/darribas/gds_env","featured":null,"links":null,"description":null,"_repopath":"darribas/gds_env","_reponame":"gds_env","_stars":93,"_forks":37,"_watches":10,"_topics":["geographic-data-science","docker","python","r","latex","jupyter-lab"],"_language":"Jupyter Notebook","_homepage":"https://darribas.org/gds_env","_description":"gds_env: A containerised platform for Geographic Data Science","_organization":"darribas","_updated_at":"2022-11-16T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2016-08-12T00:00:00.000Z","_age_weeks":331,"_stars_per_week":0.28,"_pop_contributor_count":8,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["actions","udl-ai","universityofliverpool"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.83,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":77,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":79,"_pop_score":35.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/darribas/gds_env/master/README.md","_readme_localurl":"darribas~gds_env~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":835,"category":"typing","githuburl":"https://github.com/jellezijlstra/autotyping","featured":null,"links":null,"description":null,"_repopath":"jellezijlstra/autotyping","_reponame":"autotyping","_stars":91,"_forks":8,"_watches":3,"_topics":[],"_language":"Python","_homepage":null,"_description":"jellezijlstra/autotyping","_organization":"jellezijlstra","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2021-06-25T00:00:00.000Z","_age_weeks":77,"_stars_per_week":1.18,"_pop_contributor_count":6,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quora","sendcloud","softformance"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.25,"_pop_updated_issues_count":12,"_pop_closed_issues_count":7,"_pop_created_since_days":18,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":12.0,"_pop_comment_count":23.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":3,"_pop_score":31.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jellezijlstra/autotyping/master/README.md","_readme_localurl":"jellezijlstra~autotyping~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jellezijlstra/autotyping/master/setup.py","https://raw.githubusercontent.com/jellezijlstra/autotyping/master/pyproject.toml"],"_requirements_localurls":["jellezijlstra~autotyping~setup.py","jellezijlstra~autotyping~pyproject.toml"]},{"index":534,"category":"ml-dl","githuburl":"https://github.com/benedekrozemberczki/tigerlily","featured":null,"links":null,"description":null,"_repopath":"benedekrozemberczki/tigerlily","_reponame":"tigerlily","_stars":90,"_forks":10,"_watches":1,"_topics":["node","embedding","node-embedding","graph-embedding","ddi","drug-drug-interaction","gradient-boosting","graph","pharmaceuticals","network-science","biology","heterogeneous-graph","knowledge-graph","deep-learning","machine-learning","unsupervised-learning","tigergraph","graph-database","graph-machine-learning"],"_language":"Jupyter Notebook","_homepage":"","_description":"TigerLily: Finding drug interactions in silico with the Graph.","_organization":"benedekrozemberczki","_updated_at":"2022-09-11T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2022-02-28T00:00:00.000Z","_age_weeks":42,"_stars_per_week":2.14,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["isomorphiclabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.98,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":10,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":14.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/benedekrozemberczki/tigerlily/master/README.md","_readme_localurl":"benedekrozemberczki~tigerlily~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/benedekrozemberczki/tigerlily/master/setup.py","https://raw.githubusercontent.com/benedekrozemberczki/tigerlily/master/pyproject.toml"],"_requirements_localurls":["benedekrozemberczki~tigerlily~setup.py","benedekrozemberczki~tigerlily~pyproject.toml"]},{"index":667,"category":"gis","githuburl":"https://github.com/zorzi-s/polyworldpretrainednetwork","featured":null,"links":null,"description":null,"_repopath":"zorzi-s/polyworldpretrainednetwork","_reponame":"PolyWorldPretrainedNetwork","_stars":90,"_forks":13,"_watches":7,"_topics":[],"_language":"Python","_homepage":null,"_description":"PolyWorldPretrainedNetwork: PolyWorld: Polygonal Building Extraction with Graph Neural Networks in Satellite Images","_organization":"zorzi-s","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-10T00:00:00.000Z","_created_at":"2022-03-23T00:00:00.000Z","_age_weeks":38,"_stars_per_week":2.32,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.4,"_pop_updated_issues_count":7,"_pop_closed_issues_count":2,"_pop_created_since_days":9,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":7.0,"_pop_comment_count":19.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":0,"_pop_score":14.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zorzi-s/polyworldpretrainednetwork/master/README.md","_readme_localurl":"zorzi-s~polyworldpretrainednetwork~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":744,"category":"ml-ops","githuburl":"https://github.com/aiqc/aiqc","featured":null,"links":null,"description":null,"_repopath":"aiqc/aiqc","_reponame":"AIQC","_stars":88,"_forks":19,"_watches":4,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"AIQC: End-to-end deep learning on your desktop or server.","_organization":"aiqc","_updated_at":"2022-11-21T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2020-12-02T00:00:00.000Z","_age_weeks":106,"_stars_per_week":0.82,"_pop_contributor_count":8,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aiqc","deuteronomyworks"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.5,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":25,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":2,"_pop_score":25.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aiqc/aiqc/master/README.md","_readme_localurl":"aiqc~aiqc~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aiqc/aiqc/master/requirements.txt","https://raw.githubusercontent.com/aiqc/aiqc/master/setup.py"],"_requirements_localurls":["aiqc~aiqc~requirements.txt","aiqc~aiqc~setup.py"]},{"index":485,"category":"gis","githuburl":"https://github.com/scisco/area","featured":null,"links":null,"description":null,"_repopath":"scisco/area","_reponame":"area","_stars":87,"_forks":19,"_watches":3,"_topics":[],"_language":"Python","_homepage":null,"_description":"area: Calculate the area inside of any GeoJSON geometry. This is a port of Mapbox's geojson-area for Python","_organization":"scisco","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2018-10-31T00:00:00.000Z","_created_at":"2015-11-25T00:00:00.000Z","_age_weeks":368,"_stars_per_week":0.24,"_pop_contributor_count":3,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":86,"_pop_updated_since_days":50,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":5.14,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/scisco/area/master/README.rst","_readme_localurl":"scisco~area~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/scisco/area/master/setup.py"],"_requirements_localurls":["scisco~area~setup.py"]},{"index":269,"category":"term","githuburl":"https://github.com/deeplook/sparklines","featured":null,"links":null,"description":null,"_repopath":"deeplook/sparklines","_reponame":"sparklines","_stars":83,"_forks":6,"_watches":3,"_topics":["python","command-line-tool","graphs","ascii","sparklines","sparkline-graphs"],"_language":"Python","_homepage":"","_description":"sparklines: Text-based sparkline command line mimicking those of Edward Tuft.","_organization":"deeplook","_updated_at":"2022-11-26T00:00:00.000Z","_last_commit_date":"2021-06-26T00:00:00.000Z","_created_at":"2016-05-17T00:00:00.000Z","_age_weeks":343,"_stars_per_week":0.24,"_pop_contributor_count":7,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deepsourcelabs","investnext","quantifiedcode"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":80,"_pop_updated_since_days":18,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":16.1,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/deeplook/sparklines/master/README.rst","_readme_localurl":"deeplook~sparklines~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/deeplook/sparklines/master/setup.py"],"_requirements_localurls":["deeplook~sparklines~setup.py"]},{"index":746,"category":"data","githuburl":"https://github.com/ktrueda/parquet-tools","featured":null,"links":null,"description":null,"_repopath":"ktrueda/parquet-tools","_reponame":"parquet-tools","_stars":82,"_forks":10,"_watches":3,"_topics":["parquet","parquet-tools","cli"],"_language":"Python","_homepage":"","_description":"parquet-tools: easy install parquet-tools","_organization":"ktrueda","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-06-14T00:00:00.000Z","_created_at":"2020-05-02T00:00:00.000Z","_age_weeks":137,"_stars_per_week":0.6,"_pop_contributor_count":10,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["discogs","shopify"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":32,"_pop_updated_since_days":6,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":5,"_pop_score":21.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ktrueda/parquet-tools/master/README.md","_readme_localurl":"ktrueda~parquet-tools~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ktrueda/parquet-tools/master/pyproject.toml"],"_requirements_localurls":["ktrueda~parquet-tools~pyproject.toml"]},{"index":562,"category":"gis","githuburl":"https://github.com/geopandas/xyzservices","featured":null,"links":null,"description":null,"_repopath":"geopandas/xyzservices","_reponame":"xyzservices","_stars":81,"_forks":19,"_watches":11,"_topics":[],"_language":"Python","_homepage":"https://xyzservices.readthedocs.io/","_description":"xyzservices: Source of XYZ tiles providers","_organization":"geopandas","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2021-05-21T00:00:00.000Z","_age_weeks":82,"_stars_per_week":0.98,"_pop_contributor_count":17,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quantstack","udl-ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.13,"_pop_updated_issues_count":9,"_pop_closed_issues_count":6,"_pop_created_since_days":19,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":9.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":30.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/geopandas/xyzservices/master/README.md","_readme_localurl":"geopandas~xyzservices~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/geopandas/xyzservices/master/setup.py"],"_requirements_localurls":["geopandas~xyzservices~setup.py"]},{"index":668,"category":"gis","githuburl":"https://github.com/zorzi-s/projectregularization","featured":null,"links":null,"description":null,"_repopath":"zorzi-s/projectregularization","_reponame":"projectRegularization","_stars":80,"_forks":7,"_watches":2,"_topics":[],"_language":"Python","_homepage":null,"_description":"projectRegularization: Regularization of Building Boundaries using Adversarial and Regularized losses","_organization":"zorzi-s","_updated_at":"2022-11-10T00:00:00.000Z","_last_commit_date":"2021-09-17T00:00:00.000Z","_created_at":"2021-05-18T00:00:00.000Z","_age_weeks":82,"_stars_per_week":0.97,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":19,"_pop_updated_since_days":15,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":2.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zorzi-s/projectregularization/master/README.md","_readme_localurl":"zorzi-s~projectregularization~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":842,"category":"jupyter","githuburl":"https://github.com/cmudig/autoprofiler","featured":null,"links":null,"description":null,"_repopath":"cmudig/autoprofiler","_reponame":"AutoProfiler","_stars":79,"_forks":4,"_watches":1,"_topics":["jupyter","pandas","python"],"_language":"Svelte","_homepage":"","_description":"AutoProfiler: Automatically profile dataframes in the Jupyter sidebar","_organization":"cmudig","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2022-03-24T00:00:00.000Z","_age_weeks":38,"_stars_per_week":2.05,"_pop_contributor_count":2,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cmu","cmu,apple"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.58,"_pop_updated_issues_count":94,"_pop_closed_issues_count":70,"_pop_created_since_days":9,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":94.0,"_pop_comment_count":41.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":24.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cmudig/autoprofiler/master/README.md","_readme_localurl":"cmudig~autoprofiler~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cmudig/autoprofiler/master/requirements.txt","https://raw.githubusercontent.com/cmudig/autoprofiler/master/setup.py","https://raw.githubusercontent.com/cmudig/autoprofiler/master/pyproject.toml"],"_requirements_localurls":["cmudig~autoprofiler~requirements.txt","cmudig~autoprofiler~setup.py","cmudig~autoprofiler~pyproject.toml"]},{"index":769,"category":"ml-dl","githuburl":"https://github.com/praw-dev/asyncpraw","featured":null,"links":null,"description":null,"_repopath":"praw-dev/asyncpraw","_reponame":"asyncpraw","_stars":79,"_forks":14,"_watches":3,"_topics":["python","api","oauth","reddit","reddit-api","async","asyncpraw","praw"],"_language":"Python","_homepage":"https://asyncpraw.readthedocs.io","_description":"asyncpraw: Async PRAW, an abbreviation for \"Asynchronous Python Reddit API Wrapper\", is a python package that allows for simple access to Reddit's API.","_organization":"praw-dev","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2019-02-05T00:00:00.000Z","_age_weeks":201,"_stars_per_week":0.39,"_pop_contributor_count":226,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["appfolio","billy","indeed","netflix"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.1,"_pop_updated_issues_count":29,"_pop_closed_issues_count":26,"_pop_created_since_days":47,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":29.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":14,"_pop_score":48.02,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/praw-dev/asyncpraw/master/README.rst","_readme_localurl":"praw-dev~asyncpraw~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/praw-dev/asyncpraw/master/setup.py","https://raw.githubusercontent.com/praw-dev/asyncpraw/master/pyproject.toml"],"_requirements_localurls":["praw-dev~asyncpraw~setup.py","praw-dev~asyncpraw~pyproject.toml"]},{"index":327,"category":"security","githuburl":"https://github.com/sonatype-nexus-community/jake","featured":null,"links":null,"description":null,"_repopath":"sonatype-nexus-community/jake","_reponame":"jake","_stars":75,"_forks":19,"_watches":8,"_topics":["python","vulnerabilities","vulnerability-scanners","ossindex","nexus-iq","sonatype-iq"],"_language":"Python","_homepage":"https://jake.readthedocs.io/","_description":"jake: Check your Python environments for vulnerable Open Source packages with OSS Index or Sonatype Nexus Lifecycle.","_organization":"sonatype-nexus-community","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2019-10-10T00:00:00.000Z","_age_weeks":166,"_stars_per_week":0.45,"_pop_contributor_count":15,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nginxinc","sonatype","sonatypecyclonedx"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.0,"_pop_updated_issues_count":5,"_pop_closed_issues_count":4,"_pop_created_since_days":39,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":41,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":5.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":30,"_pop_score":41.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sonatype-nexus-community/jake/master/README.md","_readme_localurl":"sonatype-nexus-community~jake~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sonatype-nexus-community/jake/master/pyproject.toml"],"_requirements_localurls":["sonatype-nexus-community~jake~pyproject.toml"]},{"index":851,"category":"profiling","githuburl":"https://github.com/kshitij12345/torchnnprofiler","featured":null,"links":null,"description":null,"_repopath":"kshitij12345/torchnnprofiler","_reponame":"torchnnprofiler","_stars":72,"_forks":2,"_watches":4,"_topics":[],"_language":"Python","_homepage":null,"_description":"torchnnprofiler: Context Manager to profile the forward and backward times of PyTorch's nn.Module","_organization":"kshitij12345","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-02T00:00:00.000Z","_created_at":"2022-10-22T00:00:00.000Z","_age_weeks":8,"_stars_per_week":8.69,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quansight"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.96,"_pop_updated_issues_count":6,"_pop_closed_issues_count":3,"_pop_created_since_days":2,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":6.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":2,"_pop_score":11.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kshitij12345/torchnnprofiler/master/README.md","_readme_localurl":"kshitij12345~torchnnprofiler~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kshitij12345/torchnnprofiler/master/setup.py"],"_requirements_localurls":["kshitij12345~torchnnprofiler~setup.py"]},{"index":530,"category":"ml","githuburl":"https://github.com/brohrer/cottonwood","featured":null,"links":null,"description":null,"_repopath":"brohrer/cottonwood","_reponame":"cottonwood","_stars":72,"_forks":13,"_watches":14,"_topics":[],"_language":"Python","_homepage":"https://end-to-end-machine-learning.teachable.com/p/write-a-neural-network-framework/","_description":"cottonwood: A flexible neural network framework for running experiments and trying ideas.","_organization":"brohrer","_updated_at":"2022-09-23T00:00:00.000Z","_last_commit_date":"2020-02-02T00:00:00.000Z","_created_at":"2019-09-29T00:00:00.000Z","_age_weeks":168,"_stars_per_week":0.43,"_pop_contributor_count":3,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["azerbaijanpug","tum,imperialcollege,openmined"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":39,"_pop_updated_since_days":35,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":11,"_pop_score":16.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/brohrer/cottonwood/master/README.md","_readme_localurl":"brohrer~cottonwood~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/brohrer/cottonwood/master/setup.py"],"_requirements_localurls":["brohrer~cottonwood~setup.py"]},{"index":584,"category":"gis","githuburl":"https://github.com/developmentseed/cogeo-mosaic","featured":null,"links":null,"description":null,"_repopath":"developmentseed/cogeo-mosaic","_reponame":"cogeo-mosaic","_stars":70,"_forks":19,"_watches":8,"_topics":[],"_language":"Python","_homepage":"https://developmentseed.org/cogeo-mosaic/","_description":"cogeo-mosaic: Create and use COG mosaic based on mosaicJSON","_organization":"developmentseed","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-11-21T00:00:00.000Z","_created_at":"2019-05-14T00:00:00.000Z","_age_weeks":187,"_stars_per_week":0.37,"_pop_contributor_count":8,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["developmentseed","regrowag","satellogic"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":7,"_pop_closed_issues_count":6,"_pop_created_since_days":44,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":7.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":6,"_pop_score":34.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/cogeo-mosaic/master/README.md","_readme_localurl":"developmentseed~cogeo-mosaic~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/developmentseed/cogeo-mosaic/master/setup.py","https://raw.githubusercontent.com/developmentseed/cogeo-mosaic/master/pyproject.toml"],"_requirements_localurls":["developmentseed~cogeo-mosaic~setup.py","developmentseed~cogeo-mosaic~pyproject.toml"]},{"index":234,"category":"crypto","githuburl":"https://github.com/blockchainsllc/in3","featured":null,"links":null,"description":null,"_repopath":"blockchainsllc/in3","_reponame":"in3","_stars":65,"_forks":18,"_watches":12,"_topics":["blockchain","verify","crypto-economic","ethereum","ipfs"],"_language":"C","_homepage":"https://in3.readthedocs.io/en/develop/index.html","_description":"in3: The IN3 client (written in C).","_organization":"blockchainsllc","_updated_at":"2022-11-17T00:00:00.000Z","_last_commit_date":"2022-04-01T00:00:00.000Z","_created_at":"2019-09-17T00:00:00.000Z","_age_weeks":169,"_stars_per_week":0.38,"_pop_contributor_count":35,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["blockchains","sni"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.81,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":40,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":28,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":3,"_pop_score":33.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/blockchainsllc/in3/master/README.md","_readme_localurl":"blockchainsllc~in3~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":568,"category":"sim","githuburl":"https://github.com/gboeing/street-network-models","featured":null,"links":null,"description":null,"_repopath":"gboeing/street-network-models","_reponame":"street-network-models","_stars":64,"_forks":4,"_watches":2,"_topics":[],"_language":"Python","_homepage":"https://osf.io/f2dqc","_description":"street-network-models: Street network models and indicators for every urban area in the world","_organization":"gboeing","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2021-03-05T00:00:00.000Z","_created_at":"2020-04-13T00:00:00.000Z","_age_weeks":140,"_stars_per_week":0.46,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["universityofsoutherncalifornia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":33,"_pop_updated_since_days":22,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":2,"_pop_score":8.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gboeing/street-network-models/master/README.md","_readme_localurl":"gboeing~street-network-models~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":453,"category":"gis","githuburl":"https://github.com/googlecloudplatform/dataflow-geobeam","featured":null,"links":null,"description":null,"_repopath":"googlecloudplatform/dataflow-geobeam","_reponame":"dataflow-geobeam","_stars":61,"_forks":25,"_watches":9,"_topics":[],"_language":"Python","_homepage":null,"_description":"googlecloudplatform/dataflow-geobeam","_organization":"googlecloudplatform","_updated_at":"2022-11-08T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2021-02-04T00:00:00.000Z","_age_weeks":97,"_stars_per_week":0.63,"_pop_contributor_count":5,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["calthorpeanalytics","carto","google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.79,"_pop_updated_issues_count":6,"_pop_closed_issues_count":3,"_pop_created_since_days":23,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":6.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":4,"_pop_score":28.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/googlecloudplatform/dataflow-geobeam/master/README.md","_readme_localurl":"googlecloudplatform~dataflow-geobeam~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/googlecloudplatform/dataflow-geobeam/master/setup.py"],"_requirements_localurls":["googlecloudplatform~dataflow-geobeam~setup.py"]},{"index":535,"category":"gis","githuburl":"https://github.com/cloudsen12/easystac","featured":null,"links":null,"description":null,"_repopath":"cloudsen12/easystac","_reponame":"easystac","_stars":57,"_forks":1,"_watches":3,"_topics":["stac","remote-sensing","gis","earth-observation","python","python3","spatio-temporal","spatio-temporal-data","planetary-computer","radiant"],"_language":"Python","_homepage":"https://easystac.readthedocs.io/","_description":"easystac: A Python package for simple STAC queries","_organization":"cloudsen12","_updated_at":"2022-11-26T00:00:00.000Z","_last_commit_date":"2022-08-07T00:00:00.000Z","_created_at":"2022-01-20T00:00:00.000Z","_age_weeks":47,"_stars_per_week":1.2,"_pop_contributor_count":3,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["emcdestudent","regrowag","rsc4earth|universityofleipzig"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.06,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":11,"_pop_updated_since_days":4,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":15.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cloudsen12/easystac/master/README.md","_readme_localurl":"cloudsen12~easystac~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/cloudsen12/easystac/master/setup.py"],"_requirements_localurls":["cloudsen12~easystac~setup.py"]},{"index":521,"category":"gis","githuburl":"https://github.com/lydorn/mapalignment","featured":null,"links":null,"description":null,"_repopath":"lydorn/mapalignment","_reponame":"mapalignment","_stars":55,"_forks":14,"_watches":4,"_topics":[],"_language":"Python","_homepage":"","_description":"mapalignment: Aligning and Updating Cadaster Maps with Remote Sensing Images","_organization":"lydorn","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2020-09-03T00:00:00.000Z","_created_at":"2018-09-05T00:00:00.000Z","_age_weeks":223,"_stars_per_week":0.25,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":52,"_pop_updated_since_days":28,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":4.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lydorn/mapalignment/master/README.md","_readme_localurl":"lydorn~mapalignment~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":854,"category":"util","githuburl":"https://github.com/backtick-se/cowait","featured":null,"links":null,"description":null,"_repopath":"backtick-se/cowait","_reponame":"cowait","_stars":55,"_forks":5,"_watches":8,"_topics":["python","task-scheduler","data-science","data-engineering","spark","dask","kubernetes","docker","workflow-engine"],"_language":"Python","_homepage":"https://cowait.io","_description":"cowait: Containerized distributed programming framework for Python","_organization":"backtick-se","_updated_at":"2022-11-16T00:00:00.000Z","_last_commit_date":"2022-09-22T00:00:00.000Z","_created_at":"2019-09-18T00:00:00.000Z","_age_weeks":169,"_stars_per_week":0.32,"_pop_contributor_count":10,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["backticktechnologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.33,"_pop_updated_issues_count":13,"_pop_closed_issues_count":2,"_pop_created_since_days":40,"_pop_updated_since_days":3,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":13.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":22.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/backtick-se/cowait/master/README.md","_readme_localurl":"backtick-se~cowait~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/backtick-se/cowait/master/requirements.txt","https://raw.githubusercontent.com/backtick-se/cowait/master/setup.py","https://raw.githubusercontent.com/backtick-se/cowait/master/pyproject.toml"],"_requirements_localurls":["backtick-se~cowait~requirements.txt","backtick-se~cowait~setup.py","backtick-se~cowait~pyproject.toml"]},{"index":816,"category":"util","githuburl":"https://github.com/aws-samples/sagemaker-ssh-helper","featured":null,"links":null,"description":null,"_repopath":"aws-samples/sagemaker-ssh-helper","_reponame":"sagemaker-ssh-helper","_stars":51,"_forks":7,"_watches":6,"_topics":["amazon-sagemaker","aws","aws-systems-manager","machine-learning","pycharm","sagemaker","sagemaker-studio","ssh","vscode"],"_language":"Python","_homepage":"","_description":"sagemaker-ssh-helper: A helper library to connect into Amazon SageMaker with AWS Systems Manager and SSH","_organization":"aws-samples","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2022-10-14T00:00:00.000Z","_age_weeks":9,"_stars_per_week":5.41,"_pop_contributor_count":4,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon","amazonwebservices(aws)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.5,"_pop_updated_issues_count":9,"_pop_closed_issues_count":5,"_pop_created_since_days":2,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":9.0,"_pop_comment_count":16.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":22.89,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aws-samples/sagemaker-ssh-helper/master/README.md","_readme_localurl":"aws-samples~sagemaker-ssh-helper~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aws-samples/sagemaker-ssh-helper/master/setup.py"],"_requirements_localurls":["aws-samples~sagemaker-ssh-helper~setup.py"]},{"index":326,"category":"security","githuburl":"https://github.com/snyk-labs/pysnyk","featured":null,"links":null,"description":null,"_repopath":"snyk-labs/pysnyk","_reponame":"pysnyk","_stars":50,"_forks":91,"_watches":10,"_topics":["snyk","python","api"],"_language":"Python","_homepage":"https://snyk.docs.apiary.io/","_description":"pysnyk: A Python client for the Snyk API.","_organization":"snyk-labs","_updated_at":"2022-11-04T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2019-02-03T00:00:00.000Z","_age_weeks":202,"_stars_per_week":0.25,"_pop_contributor_count":22,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["gitpod-io","replicated.com","snyk"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":10,"_pop_closed_issues_count":1,"_pop_created_since_days":47,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":10.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":4,"_pop_score":35.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/snyk-labs/pysnyk/master/README.md","_readme_localurl":"snyk-labs~pysnyk~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/snyk-labs/pysnyk/master/pyproject.toml"],"_requirements_localurls":["snyk-labs~pysnyk~pyproject.toml"]},{"index":400,"category":"study","githuburl":"https://github.com/dylanhogg/crazy-awesome-python","featured":null,"links":null,"description":null,"_repopath":"dylanhogg/crazy-awesome-python","_reponame":"crazy-awesome-python","_stars":47,"_forks":8,"_watches":3,"_topics":["python","python-data","awesome-list","python-machine-learning","python-nlp","python-frameworks","python-library","data","machine-learning","natural-language-processing"],"_language":"HTML","_homepage":"https://www.awesomepython.org/","_description":"crazy-awesome-python: A curated list of awesome Python frameworks, with a bias towards data and machine learning","_organization":"dylanhogg","_updated_at":"2022-12-09T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2020-06-20T00:00:00.000Z","_age_weeks":130,"_stars_per_week":0.36,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.62,"_pop_updated_issues_count":6,"_pop_closed_issues_count":6,"_pop_created_since_days":30,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":6.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":17.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dylanhogg/crazy-awesome-python/master/README.md","_readme_localurl":"dylanhogg~crazy-awesome-python~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/dylanhogg/crazy-awesome-python/master/requirements.txt"],"_requirements_localurls":["dylanhogg~crazy-awesome-python~requirements.txt"]},{"index":401,"category":"crypto","githuburl":"https://github.com/dylanhogg/crazy-awesome-crypto","featured":null,"links":null,"description":null,"_repopath":"dylanhogg/crazy-awesome-crypto","_reponame":"crazy-awesome-crypto","_stars":43,"_forks":13,"_watches":4,"_topics":["crypto","cryptocurrency","blockchain","bitcoin","ethereum","awesome-list","data","data-analysis","github","awesome"],"_language":"Python","_homepage":"https://www.awesomecrypto.xyz/","_description":"crazy-awesome-crypto: A list of awesome crypto and blockchain projects","_organization":"dylanhogg","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2021-09-27T00:00:00.000Z","_age_weeks":64,"_stars_per_week":0.67,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.63,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":15,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":11.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dylanhogg/crazy-awesome-crypto/master/README.md","_readme_localurl":"dylanhogg~crazy-awesome-crypto~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/dylanhogg/crazy-awesome-crypto/master/requirements.txt"],"_requirements_localurls":["dylanhogg~crazy-awesome-crypto~requirements.txt"]},{"index":202,"category":"crypto","githuburl":"https://github.com/nerolation/ethereum-datafarm","featured":null,"links":null,"description":null,"_repopath":"nerolation/ethereum-datafarm","_reponame":"ethereum-datafarm","_stars":37,"_forks":8,"_watches":1,"_topics":[],"_language":"Python","_homepage":null,"_description":"ethereum-datafarm: Scrap blockchain data from the public API of Etherscan.io","_organization":"nerolation","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-19T00:00:00.000Z","_created_at":"2021-03-13T00:00:00.000Z","_age_weeks":92,"_stars_per_week":0.4,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["viennauniversityofeconomicsandbusiness(wu)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.71,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":22,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":13.0,"_readme_filename":"Readme.md","_readme_giturl":"https://raw.githubusercontent.com/nerolation/ethereum-datafarm/master/Readme.md","_readme_localurl":"nerolation~ethereum-datafarm~Readme.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/nerolation/ethereum-datafarm/master/requirements.txt"],"_requirements_localurls":["nerolation~ethereum-datafarm~requirements.txt"]},{"index":776,"category":"sim","githuburl":"https://github.com/activitysim/populationsim","featured":null,"links":null,"description":null,"_repopath":"activitysim/populationsim","_reponame":"populationsim","_stars":37,"_forks":27,"_watches":11,"_topics":["python","data-science","population-synthesis","activitysim","bsd-3-clause","microsimulation"],"_language":"Jupyter Notebook","_homepage":"https://activitysim.github.io/populationsim","_description":"populationsim: An Open Platform for Population Synthesis","_organization":"activitysim","_updated_at":"2022-08-23T00:00:00.000Z","_last_commit_date":"2021-11-19T00:00:00.000Z","_created_at":"2017-02-14T00:00:00.000Z","_age_weeks":304,"_stars_per_week":0.12,"_pop_contributor_count":9,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ptvgroup","rsginc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":71,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":23.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/activitysim/populationsim/master/README.md","_readme_localurl":"activitysim~populationsim~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/activitysim/populationsim/master/setup.py"],"_requirements_localurls":["activitysim~populationsim~setup.py"]},{"index":821,"category":"pandas","githuburl":"https://github.com/ddelange/mapply","featured":null,"links":null,"description":null,"_repopath":"ddelange/mapply","_reponame":"mapply","_stars":35,"_forks":2,"_watches":3,"_topics":[],"_language":"Python","_homepage":"","_description":"mapply: Sensible multi-core apply function for Pandas","_organization":"ddelange","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2020-10-26T00:00:00.000Z","_age_weeks":112,"_stars_per_week":0.31,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":7,"_pop_closed_issues_count":7,"_pop_created_since_days":26,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":7.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":21.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ddelange/mapply/master/README.md","_readme_localurl":"ddelange~mapply~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ddelange/mapply/master/setup.py"],"_requirements_localurls":["ddelange~mapply~setup.py"]},{"index":386,"category":"nlp","githuburl":"https://github.com/ferdinandzhong/punctuator","featured":null,"links":null,"description":null,"_repopath":"ferdinandzhong/punctuator","_reponame":"punctuator","_stars":35,"_forks":5,"_watches":1,"_topics":["bert","nlp","seq2seq","punctuation","deep-learning","pytorch","bert-ner","chinese-nlp"],"_language":"Python","_homepage":"","_description":"punctuator: A small seq2seq punctuator tool based on DistilBERT","_organization":"ferdinandzhong","_updated_at":"2022-10-19T00:00:00.000Z","_last_commit_date":"2022-09-28T00:00:00.000Z","_created_at":"2020-11-19T00:00:00.000Z","_age_weeks":108,"_stars_per_week":0.32,"_pop_contributor_count":4,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.17,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":25,"_pop_updated_since_days":3,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":2.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":6.5,"_pop_dependents_count":0,"_pop_score":21.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ferdinandzhong/punctuator/master/README.md","_readme_localurl":"ferdinandzhong~punctuator~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ferdinandzhong/punctuator/master/requirements.txt","https://raw.githubusercontent.com/ferdinandzhong/punctuator/master/setup.py"],"_requirements_localurls":["ferdinandzhong~punctuator~requirements.txt","ferdinandzhong~punctuator~setup.py"]},{"index":333,"category":"util","githuburl":"https://github.com/gondolav/pyfuncol","featured":null,"links":null,"description":null,"_repopath":"gondolav/pyfuncol","_reponame":"pyfuncol","_stars":32,"_forks":3,"_watches":3,"_topics":["functional","collections","python","parallel","python3","extension-functions"],"_language":"Python","_homepage":"https://pyfuncol.readthedocs.io/","_description":"pyfuncol: Functional collections extension functions for Python","_organization":"gondolav","_updated_at":"2022-11-16T00:00:00.000Z","_last_commit_date":"2022-11-16T00:00:00.000Z","_created_at":"2021-12-16T00:00:00.000Z","_age_weeks":52,"_stars_per_week":0.61,"_pop_contributor_count":4,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["epfl"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.98,"_pop_updated_issues_count":27,"_pop_closed_issues_count":20,"_pop_created_since_days":12,"_pop_updated_since_days":1,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":27.0,"_pop_comment_count":38.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":25.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gondolav/pyfuncol/master/README.md","_readme_localurl":"gondolav~pyfuncol~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gondolav/pyfuncol/master/requirements.txt","https://raw.githubusercontent.com/gondolav/pyfuncol/master/setup.py"],"_requirements_localurls":["gondolav~pyfuncol~requirements.txt","gondolav~pyfuncol~setup.py"]},{"index":711,"category":"gis","githuburl":"https://github.com/artelys/geonetworkx","featured":null,"links":null,"description":null,"_repopath":"artelys/geonetworkx","_reponame":"geonetworkx","_stars":30,"_forks":1,"_watches":7,"_topics":[],"_language":"Python","_homepage":null,"_description":"geonetworkx: Python tools for geographic graphs","_organization":"artelys","_updated_at":"2022-10-27T00:00:00.000Z","_last_commit_date":"2021-06-28T00:00:00.000Z","_created_at":"2019-10-24T00:00:00.000Z","_age_weeks":164,"_stars_per_week":0.18,"_pop_contributor_count":6,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["argonnenationallaboratory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":38,"_pop_updated_since_days":18,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":16.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/artelys/geonetworkx/master/README.md","_readme_localurl":"artelys~geonetworkx~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/artelys/geonetworkx/master/requirements.txt","https://raw.githubusercontent.com/artelys/geonetworkx/master/setup.py"],"_requirements_localurls":["artelys~geonetworkx~requirements.txt","artelys~geonetworkx~setup.py"]},{"index":502,"category":"gis","githuburl":"https://github.com/gregorhd/mapcompare","featured":null,"links":null,"description":null,"_repopath":"gregorhd/mapcompare","_reponame":"mapcompare","_stars":28,"_forks":0,"_watches":2,"_topics":["visualisation-libraries","sample-visualisation","comparison","data-visualisation","data-viz","urban-data-science","interactive-visualisations"],"_language":"Python","_homepage":"","_description":"mapcompare: Comparison of Python packages and libraries for visualising geospatial vector data: applications for Smarter Cities.","_organization":"gregorhd","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2021-05-21T00:00:00.000Z","_age_weeks":82,"_stars_per_week":0.34,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["gafag"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.17,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":19,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":14.89,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gregorhd/mapcompare/master/README.md","_readme_localurl":"gregorhd~mapcompare~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gregorhd/mapcompare/master/setup.py"],"_requirements_localurls":["gregorhd~mapcompare~setup.py"]},{"index":894,"category":"sim","githuburl":"https://github.com/crowddynamics/crowddynamics","featured":null,"links":null,"description":null,"_repopath":"crowddynamics/crowddynamics","_reponame":"crowddynamics","_stars":27,"_forks":9,"_watches":9,"_topics":["crowd-dynamics","multi-agent","continuous-time","crowd-simulation"],"_language":"Python","_homepage":"https://jaantollander.com/post/how-to-implement-continuous-time-multi-agent-crowd-simulation/","_description":"crowddynamics: Continuous-time multi-agent crowd simulation engine implemented in Python using Numba and Numpy for performance.","_organization":"crowddynamics","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2020-01-02T00:00:00.000Z","_created_at":"2016-03-22T00:00:00.000Z","_age_weeks":351,"_stars_per_week":0.08,"_pop_contributor_count":7,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aaltouniversity","pyupio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":82,"_pop_updated_since_days":36,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":13.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/crowddynamics/crowddynamics/master/README.md","_readme_localurl":"crowddynamics~crowddynamics~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/crowddynamics/crowddynamics/master/requirements.txt","https://raw.githubusercontent.com/crowddynamics/crowddynamics/master/setup.py"],"_requirements_localurls":["crowddynamics~crowddynamics~requirements.txt","crowddynamics~crowddynamics~setup.py"]},{"index":688,"category":"ml-dl","githuburl":"https://github.com/jerryyli/valhalla-nmt","featured":null,"links":null,"description":null,"_repopath":"jerryyli/valhalla-nmt","_reponame":"valhalla-nmt","_stars":23,"_forks":3,"_watches":1,"_topics":["computer-vision","machine-translation","multimodal-learning","natural-language-processing"],"_language":"Python","_homepage":"","_description":"valhalla-nmt: Code repository for CVPR 2022 paper \"VALHALLA: Visual Hallucination for Machine Translation\"","_organization":"jerryyli","_updated_at":"2022-11-26T00:00:00.000Z","_last_commit_date":"2022-06-06T00:00:00.000Z","_created_at":"2022-03-22T00:00:00.000Z","_age_weeks":38,"_stars_per_week":0.59,"_pop_contributor_count":3,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mit-ibmwatsonailab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":9,"_pop_updated_since_days":6,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jerryyli/valhalla-nmt/master/README.md","_readme_localurl":"jerryyli~valhalla-nmt~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":37,"category":"math","githuburl":"https://github.com/jszymon/pacal","featured":null,"links":null,"description":null,"_repopath":"jszymon/pacal","_reponame":"pacal","_stars":21,"_forks":8,"_watches":6,"_topics":[],"_language":"Python","_homepage":null,"_description":"PaCAL - ProbAbilistic CALculator","_organization":"jszymon","_updated_at":"2022-11-02T00:00:00.000Z","_last_commit_date":"2022-11-02T00:00:00.000Z","_created_at":"2014-08-04T00:00:00.000Z","_age_weeks":437,"_stars_per_week":0.05,"_pop_contributor_count":8,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":102,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":5,"_pop_score":18.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jszymon/pacal/master/README.md","_readme_localurl":"jszymon~pacal~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jszymon/pacal/master/requirements.txt","https://raw.githubusercontent.com/jszymon/pacal/master/setup.py"],"_requirements_localurls":["jszymon~pacal~requirements.txt","jszymon~pacal~setup.py"]},{"index":840,"category":"data","githuburl":"https://github.com/codait/pardata","featured":null,"links":null,"description":null,"_repopath":"codait/pardata","_reponame":"pardata","_stars":18,"_forks":5,"_watches":11,"_topics":["dataset","python","machine-learning","artificial-intelligence","data-science"],"_language":"Python","_homepage":"https://pardata.readthedocs.io/en/latest/","_description":"codait/pardata","_organization":"codait","_updated_at":"2022-08-14T00:00:00.000Z","_last_commit_date":"2021-12-01T00:00:00.000Z","_created_at":"2020-11-17T00:00:00.000Z","_age_weeks":108,"_stars_per_week":0.17,"_pop_contributor_count":7,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","ibmcodait"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":7,"_pop_closed_issues_count":0,"_pop_created_since_days":25,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":7.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":16.56,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/codait/pardata/master/README.rst","_readme_localurl":"codait~pardata~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/codait/pardata/master/setup.py"],"_requirements_localurls":["codait~pardata~setup.py"]},{"index":578,"category":"term","githuburl":"https://github.com/matthewdeanmartin/terminaltables","featured":null,"links":null,"description":null,"_repopath":"matthewdeanmartin/terminaltables","_reponame":"terminaltables","_stars":17,"_forks":4,"_watches":0,"_topics":[],"_language":"Python","_homepage":"https://robpol86.github.io/terminaltables","_description":"terminaltables: Generate simple tables in terminals from a nested list of strings.","_organization":"matthewdeanmartin","_updated_at":"2022-11-15T00:00:00.000Z","_last_commit_date":"2022-01-30T00:00:00.000Z","_created_at":"2021-12-04T00:00:00.000Z","_age_weeks":54,"_stars_per_week":0.31,"_pop_contributor_count":10,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["adobe"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":13,"_pop_updated_since_days":11,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":31,"_pop_score":21.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/matthewdeanmartin/terminaltables/master/README.md","_readme_localurl":"matthewdeanmartin~terminaltables~README.md","_requirements_filenames":["pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/matthewdeanmartin/terminaltables/master/pyproject.toml","https://raw.githubusercontent.com/matthewdeanmartin/terminaltables/master/Pipfile"],"_requirements_localurls":["matthewdeanmartin~terminaltables~pyproject.toml","matthewdeanmartin~terminaltables~Pipfile"]},{"index":679,"category":"util","githuburl":"https://github.com/markhershey/arxiv-dl","featured":null,"links":null,"description":null,"_repopath":"markhershey/arxiv-dl","_reponame":"arxiv-dl","_stars":16,"_forks":4,"_watches":2,"_topics":["arxiv","paper","downloader","command-line-tool","paper-with-code","cvpr"],"_language":"Python","_homepage":"https://pypi.org/project/arxiv-dl/","_description":"arxiv-dl: Command-line ArXiv & CVF (CVPR, ICCV, WACV) Paper Downloader","_organization":"markhershey","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2021-01-21T00:00:00.000Z","_age_weeks":99,"_stars_per_week":0.16,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":23,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":17.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/markhershey/arxiv-dl/master/README.md","_readme_localurl":"markhershey~arxiv-dl~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/markhershey/arxiv-dl/master/requirements.txt","https://raw.githubusercontent.com/markhershey/arxiv-dl/master/setup.py"],"_requirements_localurls":["markhershey~arxiv-dl~requirements.txt","markhershey~arxiv-dl~setup.py"]},{"index":669,"category":"gis","githuburl":"https://github.com/zorzi-s/maprepair","featured":null,"links":null,"description":null,"_repopath":"zorzi-s/maprepair","_reponame":"MapRepair","_stars":16,"_forks":4,"_watches":2,"_topics":[],"_language":"Python","_homepage":null,"_description":"MapRepair: Deep Cadastre Maps Alignment and Temporal Inconsistencies Fix in Satellite Images","_organization":"zorzi-s","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2021-05-17T00:00:00.000Z","_created_at":"2020-07-30T00:00:00.000Z","_age_weeks":124,"_stars_per_week":0.13,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":29,"_pop_updated_since_days":19,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":2.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zorzi-s/maprepair/master/README.md","_readme_localurl":"zorzi-s~maprepair~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":892,"category":"util","githuburl":"https://github.com/pyodide/micropip","featured":null,"links":null,"description":null,"_repopath":"pyodide/micropip","_reponame":"micropip","_stars":10,"_forks":4,"_watches":5,"_topics":["package-installer","pyodide","python","webassembly"],"_language":"Python","_homepage":"https://micropip.pyodide.org","_description":"micropip: A lightweight Python package installer for Pyodide","_organization":"pyodide","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2022-09-15T00:00:00.000Z","_age_weeks":13,"_stars_per_week":0.74,"_pop_contributor_count":6,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mitmathdepartment"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.54,"_pop_updated_issues_count":37,"_pop_closed_issues_count":27,"_pop_created_since_days":3,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":37.0,"_pop_comment_count":70.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":3,"_pop_score":28.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyodide/micropip/master/README.md","_readme_localurl":"pyodide~micropip~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyodide/micropip/master/pyproject.toml"],"_requirements_localurls":["pyodide~micropip~pyproject.toml"]},{"index":702,"category":"data","githuburl":"https://github.com/harangju/wikinet","featured":null,"links":null,"description":null,"_repopath":"harangju/wikinet","_reponame":"wikinet","_stars":10,"_forks":5,"_watches":3,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"wikinet: Python library for exploring networks of hyperlinked Wikipedia articles","_organization":"harangju","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-01-25T00:00:00.000Z","_created_at":"2019-08-05T00:00:00.000Z","_age_weeks":176,"_stars_per_week":0.06,"_pop_contributor_count":6,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":41,"_pop_updated_since_days":11,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":9,"_pop_score":12.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/harangju/wikinet/master/README.md","_readme_localurl":"harangju~wikinet~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/harangju/wikinet/master/setup.py","https://raw.githubusercontent.com/harangju/wikinet/master/pyproject.toml"],"_requirements_localurls":["harangju~wikinet~setup.py","harangju~wikinet~pyproject.toml"]},{"index":608,"category":"typing","githuburl":"https://github.com/tk0miya/docutils-stubs","featured":null,"links":null,"description":null,"_repopath":"tk0miya/docutils-stubs","_reponame":"docutils-stubs","_stars":7,"_forks":5,"_watches":6,"_topics":[],"_language":"Python","_homepage":null,"_description":"tk0miya/docutils-stubs","_organization":"tk0miya","_updated_at":"2022-01-02T00:00:00.000Z","_last_commit_date":"2022-01-02T00:00:00.000Z","_created_at":"2018-11-02T00:00:00.000Z","_age_weeks":215,"_stars_per_week":0.03,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["timeintermedia(timedia)","unist"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":50,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":8,"_pop_score":21.32,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/tk0miya/docutils-stubs/master/README.rst","_readme_localurl":"tk0miya~docutils-stubs~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tk0miya/docutils-stubs/master/setup.py"],"_requirements_localurls":["tk0miya~docutils-stubs~setup.py"]},{"index":180,"category":"sim","githuburl":"https://github.com/artemyk/dynpy","featured":null,"links":null,"description":null,"_repopath":"artemyk/dynpy","_reponame":"dynpy","_stars":5,"_forks":5,"_watches":3,"_topics":[],"_language":"Python","_homepage":null,"_description":"dynpy: Dynamical systems for Python","_organization":"artemyk","_updated_at":"2021-09-24T00:00:00.000Z","_last_commit_date":"2018-09-28T00:00:00.000Z","_created_at":"2014-09-12T00:00:00.000Z","_age_weeks":431,"_stars_per_week":0.01,"_pop_contributor_count":5,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":101,"_pop_updated_since_days":51,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":3,"_pop_score":9.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/artemyk/dynpy/master/README.md","_readme_localurl":"artemyk~dynpy~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/artemyk/dynpy/master/setup.py"],"_requirements_localurls":["artemyk~dynpy~setup.py"]},{"index":526,"category":"gis","githuburl":"https://github.com/lycantropos/wagyu","featured":null,"links":null,"description":null,"_repopath":"lycantropos/wagyu","_reponame":"wagyu","_stars":3,"_forks":2,"_watches":1,"_topics":[],"_language":"Python","_homepage":"https://github.com/mapbox/wagyu","_description":"wagyu: Python port of mapbox/wagyu library (with separate C++ binding)","_organization":"lycantropos","_updated_at":"2022-07-19T00:00:00.000Z","_last_commit_date":"2020-11-21T00:00:00.000Z","_created_at":"2020-06-30T00:00:00.000Z","_age_weeks":128,"_stars_per_week":0.02,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":30,"_pop_updated_since_days":25,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":5.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lycantropos/wagyu/master/README.md","_readme_localurl":"lycantropos~wagyu~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lycantropos/wagyu/master/requirements.txt","https://raw.githubusercontent.com/lycantropos/wagyu/master/setup.py"],"_requirements_localurls":["lycantropos~wagyu~requirements.txt","lycantropos~wagyu~setup.py"]},{"index":751,"category":"gis","githuburl":"https://github.com/edomel/boundaryvt","featured":null,"links":null,"description":null,"_repopath":"edomel/boundaryvt","_reponame":"BoundaryVT","_stars":2,"_forks":0,"_watches":2,"_topics":[],"_language":"Python","_homepage":null,"_description":"edomel/boundaryvt","_organization":"edomel","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-09-29T00:00:00.000Z","_created_at":"2022-07-29T00:00:00.000Z","_age_weeks":20,"_stars_per_week":0.1,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ethzurich"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":5,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":7.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/edomel/boundaryvt/master/README.md","_readme_localurl":"edomel~boundaryvt~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":420,"category":"template","githuburl":"https://github.com/dylanhogg/python-project-template","featured":null,"links":null,"description":null,"_repopath":"dylanhogg/python-project-template","_reponame":"python-project-template","_stars":1,"_forks":0,"_watches":2,"_topics":["python","template","jupyterlab","cookiecutter"],"_language":"Python","_homepage":"","_description":"python-project-template: A quick-start Python project template with helpful functionality and common libraries.","_organization":"dylanhogg","_updated_at":"2022-08-19T00:00:00.000Z","_last_commit_date":"2022-08-19T00:00:00.000Z","_created_at":"2020-02-12T00:00:00.000Z","_age_weeks":148,"_stars_per_week":0.01,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":35,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dylanhogg/python-project-template/master/README.md","_readme_localurl":"dylanhogg~python-project-template~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/dylanhogg/python-project-template/master/requirements.txt"],"_requirements_localurls":["dylanhogg~python-project-template~requirements.txt"]}]} \ No newline at end of file From 6e3bbb33cadbd23b41ba35152687dd47a37e84fe Mon Sep 17 00:00:00 2001 From: Dylan Hogg Date: Wed, 22 Feb 2023 12:12:23 +1100 Subject: [PATCH 11/20] Popularity metrics update. --- .gitignore | 1 + requirements.txt | 3 +- src/app.py | 5 +- src/library/crawler.py | 11 +- src/library/ghw.py | 21 +++- src/library/metrics.py | 249 +++++++++++++++++++++++++++++------------ src/library/render.py | 71 ++++++++---- 7 files changed, 256 insertions(+), 105 deletions(-) diff --git a/.gitignore b/.gitignore index 5d45971..32e7206 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # TEMP data/ +data*/ .joblib_cache/ .joblib_cache*/ diff --git a/requirements.txt b/requirements.txt index 989212b..cf6e1f9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,4 +7,5 @@ python-dotenv black loguru joblib -requests \ No newline at end of file +requests +tenacity \ No newline at end of file diff --git a/src/app.py b/src/app.py index 810f97e..c5d4c1a 100644 --- a/src/app.py +++ b/src/app.py @@ -7,10 +7,11 @@ def main(): # NOTE: csv location can be local file or google spreadsheet, for example: # https://docs.google.com/spreadsheets/d//export?gid=0&format=csv csv_location = env.get("CSV_LOCATION") - token = env.get("GITHUB_ACCESS_TOKEN") + token_delim = env.get("GITHUB_ACCESS_TOKEN") + token_list = token_delim.split("|") github_csv_filename = "github_data.csv" github_json_filename = "github_data.json" - crawler.write_files(csv_location, token, github_csv_filename, github_json_filename) + crawler.write_files(csv_location, token_list, github_csv_filename, github_json_filename) github_tags_json_filename = "github_tags_data.json" postprocess.write_tags(github_json_filename, github_tags_json_filename, most_common=200) diff --git a/src/library/crawler.py b/src/library/crawler.py index ee109ef..985fc64 100644 --- a/src/library/crawler.py +++ b/src/library/crawler.py @@ -1,20 +1,21 @@ import json from datetime import datetime +from typing import List from loguru import logger from library import render, readme, requirements -def write_files(csv_location: str, token: str, output_csv_filename: str, output_json_filename: str): +def write_files(csv_location: str, token_list: List[str], output_csv_filename: str, output_json_filename: str): start = datetime.now() # Read GitHub urls from google docs df_input = render.get_input_data(csv_location) # df_input = df_input.head(3) # Testing - # df_input = df_input.iloc[9:13] # Testing + # df_input = df_input.iloc[9:11] # Testing # Augment repo name with metadata from GitHub - logger.info(f"Processing {len(df_input)} records from {csv_location}") - df = render.process(df_input, token) + logger.info(f"Processing {len(df_input)} records from {csv_location} with {len(token_list)=}...") + df = render.process(df_input, token_list) # Write raw results to csv logger.info(f"Write raw results to csv...") @@ -100,7 +101,7 @@ def write_files(csv_location: str, token: str, output_csv_filename: str, output_ with open("README.md", "w") as out: out.write("\n".join(lines)) - # Write to categories + # Write to categories file categories = df["category"].unique() for category in categories: df_category = df[df["category"] == category] diff --git a/src/library/ghw.py b/src/library/ghw.py index a3b8b3d..d7e25e1 100644 --- a/src/library/ghw.py +++ b/src/library/ghw.py @@ -8,11 +8,20 @@ class GithubWrapper: - def __init__(self, token): - self.token = token + def __init__(self, token_list: List[str]): + self.token_list = token_list + self.token_index = 0 + + def token(self) -> str: + current_token = self.token_list[self.token_index] + logger.trace(f"Using token index {self.token_index}") + self.token_index += 1 + if self.token_index >= len(self.token_list): + self.token_index = 0 + return current_token @staticmethod - @memory.cache + @memory.cache(ignore=["token"]) def _get_repo_cached(token, name) -> github.Repository: gh = github.Github(token) if name.endswith("/"): @@ -23,17 +32,17 @@ def _get_repo_cached(token, name) -> github.Repository: try: repo = gh.get_repo(name) except Exception as ex: - logger.warning(f"Exception for get_repo with name (will re-try once): {name}") + logger.warning(f"Exception for get_repo with name (will re-try once): {name} - {ex}") try: time.sleep(30) repo = gh.get_repo(name) except Exception as ex: - logger.error(f"Exception for get_repo after re-try with name: {name}") + logger.error(f"Exception for get_repo after re-try with name: {name} - {ex}") raise ex return repo def get_repo(self, name) -> github.Repository: - return self._get_repo_cached(self.token, name) + return self._get_repo_cached(self.token(), name) # def get_org_repos(self, name) -> List[github.Repository.Repository]: # logger.debug(f"get_org_repos: {name}") diff --git a/src/library/metrics.py b/src/library/metrics.py index 2700ec9..d319d3b 100644 --- a/src/library/metrics.py +++ b/src/library/metrics.py @@ -2,9 +2,12 @@ import time import re from datetime import datetime, timedelta +from typing import List +from tenacity import retry, wait_exponential, stop_after_attempt, retry_if_exception_type from loguru import logger from library.ghw import GithubWrapper from joblib import Memory +from github import PaginatedList from github.GithubException import RateLimitExceededException, GithubException memory = Memory(".joblib_cache") @@ -12,15 +15,34 @@ class StandardMetrics: @staticmethod - @memory.cache - def get_repo_topics(ghw, name): - return ghw.get_repo(name).get_topics() + @memory.cache(ignore=["token_list"]) + @retry( + wait=wait_exponential(multiplier=2, min=10, max=1200), + stop=stop_after_attempt(50), + before_sleep=lambda x: logger.exception( + f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), + ) + @retry( + wait=wait_exponential(multiplier=2, min=10, max=1200), + stop=stop_after_attempt(50), + before_sleep=lambda x: logger.exception( + f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), + ) + def get_repo_topics(token_list: List[str], name: str): + return GithubWrapper(token_list).get_repo(name).get_topics() @staticmethod - @memory.cache - def last_commit_date(ghw, name): + @memory.cache(ignore=["token_list"]) + @retry( + wait=wait_exponential(multiplier=2, min=10, max=1200), + stop=stop_after_attempt(50), + before_sleep=lambda x: logger.exception( + f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), + ) + def last_commit_date(token_list: List[str], name: str): + modified = GithubWrapper(token_list).get_repo(name).get_commits().get_page(0)[0].last_modified return datetime.strptime( - ghw.get_repo(name).get_commits().get_page(0)[0].last_modified, + modified, "%a, %d %b %Y %H:%M:%S %Z", ).date() @@ -32,70 +54,118 @@ class PopularityMetrics: """ @staticmethod - @memory.cache - def contributor_count(token: str, name: str) -> int: - repo = GithubWrapper(token).get_repo(name) + @memory.cache(ignore=["token_list"]) + @retry( + wait=wait_exponential(multiplier=2, min=10, max=1200), + stop=stop_after_attempt(50), + before_sleep=lambda x: logger.exception( + f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), + ) + def _get_contributors(token_list: List[str], name: str, anon: str = "true") -> PaginatedList: + repo = GithubWrapper(token_list).get_repo(name) + return repo.get_contributors(anon=anon) + + @staticmethod + @memory.cache(ignore=["token_list"]) + @retry( + wait=wait_exponential(multiplier=2, min=10, max=1200), + stop=stop_after_attempt(50), + before_sleep=lambda x: logger.exception( + f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), + ) + @retry( + wait=wait_exponential(multiplier=2, min=10, max=1200), + stop=stop_after_attempt(50), + retry=retry_if_exception_type(RateLimitExceededException), + before_sleep=lambda x: logger.exception(f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), + ) + def contributor_count(token_list: List[str], name: str) -> int: try: - return repo.get_contributors(anon='true').totalCount + return PopularityMetrics._get_contributors(token_list, name).totalCount except RateLimitExceededException as ex: logger.error(f"contributor_count rate exception: {ex}") - # TODO: add sleep and retry raise ex except Exception as ex: # Typically a large number of contributors logger.warning(f"contributor_count exception: {ex}") return 5000 - @staticmethod - @memory.cache - def get_contributor_company(contributor): - return contributor.company + # @staticmethod + # @memory.cache + # def _get_contributor_company(contributor): + # return contributor.company @staticmethod - @memory.cache - def contributor_orgs(token: str, name: str) -> dict: - MAX_CONTRIBUTOR_COUNT = 5 # 10 - repo = GithubWrapper(token).get_repo(name) + @memory.cache(ignore=["token_list"]) + @retry( + wait=wait_exponential(multiplier=2, min=10, max=1200), + stop=stop_after_attempt(50), + retry=retry_if_exception_type(RateLimitExceededException), + before_sleep=lambda x: logger.exception(f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), + ) + def contributor_orgs_dict(token_list: List[str], name: str, sleep: int = 1, max_contrib_count: int = 10) -> dict: + repo = GithubWrapper(token_list).get_repo(name) # TODO: randomise token_list in ghw?? def _filter_name(org_name): - return org_name.lower().replace(', inc.', '').replace('inc.', '')\ - .replace('llc', '').replace('@', '').replace(' ', '').rstrip(',') + return org_name.lower().replace(' ', '').replace(',inc.', '').replace('inc.', '') \ + .replace('llc', '').replace('@', '').rstrip(',') + contributor_logins = set() orgs = set() - contributors = repo.get_contributors()[:MAX_CONTRIBUTOR_COUNT] + orgs_raw = set() + contributors = repo.get_contributors()[:max_contrib_count] try: # NOTE: Can be expensive if not capped due to `contributor.company` being an API call - for contributor in contributors: - time.sleep(2) # TODO: review and add retry - contributor_company = PopularityMetrics.get_contributor_company(contributor) + logger.info(f"contributor_orgs_dict {contributors=}") + for i, contributor in enumerate(contributors): + # contributor_company = PopularityMetrics._get_contributor_company(contributor) # TODO: review need to cache here + contributor_company = contributor.company + time.sleep(sleep) if contributor_company: filtered_contributor_company = _filter_name(contributor_company) - logger.info(f"{name=}, {contributor.login=}, {filtered_contributor_company=}") + logger.info(f"{i}. Company hit : {name=}, {contributor.login=}, " + f"{contributor_company=}, {filtered_contributor_company=}") + orgs_raw.add(contributor_company) orgs.add(filtered_contributor_company) + contributor_logins.add(f"{contributor.login}@{filtered_contributor_company}") + else: + logger.info(f"{i}. Company miss: {name=}, {contributor.login=}") + contributor_logins.add(contributor.login) except RateLimitExceededException as ex: - logger.warning(f"get_contributors rate exception: {ex}") + logger.warning(f"get_contributor_company rate exception ({sleep=}): {ex}") # TODO: add sleep and retry raise ex except Exception as ex: # Typically a large number of contributors - logger.warning(f"get_contributors {type(ex)} exception: {ex}") + # TODO: add sleep and retry + logger.warning(f"get_contributor_company {type(ex)} exception: {ex}") return { + "_pop_contributor_logins": None, "_pop_contributor_orgs_len": -1, - "_pop_contributor_orgs_max": MAX_CONTRIBUTOR_COUNT, + "_pop_contributor_orgs_max": max_contrib_count, "_pop_contributor_orgs": None, + "_pop_contributor_orgs_raw": None, "_pop_contributor_orgs_error": str(ex) } return { + "_pop_contributor_logins": sorted(contributor_logins), "_pop_contributor_orgs_len": len(orgs), - "_pop_contributor_orgs_max": MAX_CONTRIBUTOR_COUNT, + "_pop_contributor_orgs_max": max_contrib_count, "_pop_contributor_orgs": sorted(orgs), + "_pop_contributor_orgs_raw": sorted(orgs_raw), "_pop_contributor_orgs_error": None } @staticmethod - @memory.cache - def commit_frequency(token: str, name: str) -> float: - repo = GithubWrapper(token).get_repo(name) + @memory.cache(ignore=["token_list"]) + @retry( + wait=wait_exponential(multiplier=2, min=10, max=1200), + stop=stop_after_attempt(50), + before_sleep=lambda x: logger.exception( + f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), + ) + def commit_frequency(token_list: List[str], name: str) -> float: + repo = GithubWrapper(token_list).get_repo(name) # NOTE: get_stats_commit_activity Returns the last year of commit activity grouped by week stats_commit_activity = repo.get_stats_commit_activity() assert len(stats_commit_activity) == 52 @@ -105,28 +175,46 @@ def commit_frequency(token: str, name: str) -> float: return round(total / len(stats_commit_activity), 2) @staticmethod - @memory.cache - def updated_issues_count(token: str, name: str) -> int: + @memory.cache(ignore=["token_list"]) + @retry( + wait=wait_exponential(multiplier=2, min=10, max=1200), + stop=stop_after_attempt(50), + before_sleep=lambda x: logger.exception( + f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), + ) + def updated_issues_count(token_list: List[str], name: str) -> int: ISSUE_LOOKBACK_DAYS = 90 - repo = GithubWrapper(token).get_repo(name) + repo = GithubWrapper(token_list).get_repo(name) issues_since_time = datetime.utcnow() - timedelta(days=ISSUE_LOOKBACK_DAYS) # NOTE: get_issues includes PR's return repo.get_issues(state='all', since=issues_since_time).totalCount @staticmethod - @memory.cache - def closed_issues_count(token: str, name: str) -> int: + @memory.cache(ignore=["token_list"]) + @retry( + wait=wait_exponential(multiplier=2, min=10, max=1200), + stop=stop_after_attempt(50), + before_sleep=lambda x: logger.exception( + f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), + ) + def closed_issues_count(token_list: List[str], name: str) -> int: ISSUE_LOOKBACK_DAYS = 90 # TODO: make generic with updated_issues_count? - repo = GithubWrapper(token).get_repo(name) + repo = GithubWrapper(token_list).get_repo(name) issues_since_time = datetime.utcnow() - timedelta(days=ISSUE_LOOKBACK_DAYS) # NOTE: get_issues includes PR's return repo.get_issues(state='closed', since=issues_since_time).totalCount @staticmethod - @memory.cache - def created_since_days(token: str, name: str) -> int: - repo = GithubWrapper(token).get_repo(name) + @memory.cache(ignore=["token_list"]) + @retry( + wait=wait_exponential(multiplier=2, min=10, max=1200), + stop=stop_after_attempt(50), + before_sleep=lambda x: logger.exception( + f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), + ) + def created_since_days(token_list: List[str], name: str) -> int: + repo = GithubWrapper(token_list).get_repo(name) creation_time = repo.created_at # See if there exist any commits before this repository creation @@ -146,19 +234,31 @@ def created_since_days(token: str, name: str) -> int: return round(difference.days / 30) @staticmethod - @memory.cache - def updated_since_days(token: str, name: str) -> int: - repo = GithubWrapper(token).get_repo(name) + @memory.cache(ignore=["token_list"]) + @retry( + wait=wait_exponential(multiplier=2, min=10, max=1200), + stop=stop_after_attempt(50), + before_sleep=lambda x: logger.exception( + f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), + ) + def updated_since_days(token_list: List[str], name: str) -> int: + repo = GithubWrapper(token_list).get_repo(name) last_commit = repo.get_commits()[0] last_commit_time = last_commit.commit.author.date difference = datetime.utcnow() - last_commit_time return round(difference.days / 30) @staticmethod - @memory.cache - def recent_releases_count(token: str, name: str) -> dict: + @memory.cache(ignore=["token_list"]) + @retry( + wait=wait_exponential(multiplier=2, min=10, max=1200), + stop=stop_after_attempt(50), + before_sleep=lambda x: logger.exception( + f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), + ) + def recent_releases_count_dict(token_list: List[str], name: str) -> dict: RELEASE_LOOKBACK_DAYS = 365 - repo = GithubWrapper(token).get_repo(name) + repo = GithubWrapper(token_list).get_repo(name) recent_releases_count = 0 for release in repo.get_releases(): if (datetime.utcnow() - @@ -170,7 +270,7 @@ def recent_releases_count(token: str, name: str) -> dict: # Make rough estimation of tags used in last year from overall # project history. This query is extremely expensive, so instead # do the rough calculation. - days_since_creation = PopularityMetrics.created_since_days(token, name) * 30 + days_since_creation = PopularityMetrics.created_since_days(token_list, name) * 30 if days_since_creation: total_tags = repo.get_tags().totalCount estimated_tags = round( @@ -187,10 +287,16 @@ def recent_releases_count(token: str, name: str) -> dict: } @staticmethod - @memory.cache - def comment_frequency(token: str, name: str) -> dict: + @memory.cache(ignore=["token_list"]) + @retry( + wait=wait_exponential(multiplier=2, min=10, max=1200), + stop=stop_after_attempt(50), + before_sleep=lambda x: logger.exception( + f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), + ) + def comment_frequency(token_list: List[str], name: str) -> dict: ISSUE_LOOKBACK_DAYS = 90 - repo = GithubWrapper(token).get_repo(name) + repo = GithubWrapper(token_list).get_repo(name) issues_since_time = datetime.utcnow() - timedelta(days=ISSUE_LOOKBACK_DAYS) # NOTE: get_issues includes PR's issue_count = repo.get_issues(state='all', since=issues_since_time).totalCount @@ -216,11 +322,18 @@ def comment_frequency(token: str, name: str) -> dict: } @staticmethod - @memory.cache - def dependents_count(name: str) -> int: - # return 0 # TODO: this is expensive and can have many fails + @memory.cache(ignore=["token_list"]) + @retry( + wait=wait_exponential(multiplier=2, min=10, max=1200), + stop=stop_after_attempt(50), + retry=retry_if_exception_type(RuntimeError), + before_sleep=lambda x: logger.exception(f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), + ) + def dependents_count(token_list: List[str], name: str, sleep: int = 1) -> int: + return 0 # TODO: dependents_count is expensive and can have many fails + + ghw = GithubWrapper(token_list) DEPENDENTS_REGEX = re.compile(b'.*[^0-9,]([0-9,]+).*commit results', re.DOTALL) - FAIL_RETRIES = 12 # TODO: Take package manager dependency trees into account. If we decide # to replace this, then find a solution for C/C++ as well. # parsed_url = urllib.parse.urlparse(self.url) @@ -229,20 +342,16 @@ def dependents_count(name: str) -> int: dependents_url = f'https://github.com/search?q="{name}"&type=commits' logger.trace(f"Call dependents_count: {dependents_url=}, {name=}") content = b'' - time.sleep(2) - success = False - for i in range(FAIL_RETRIES): - result = requests.get(dependents_url) - if result.status_code == 200: - content = result.content - success = True - break - sleep_secs = min(2 ** (i + 3), 15 * 60) - logger.warning(f"Retry dependents_count #{i}/{FAIL_RETRIES}, sleeping for {sleep_secs} secs...") - time.sleep(sleep_secs) - - if not success: - raise Exception(f"dependents_count failed, too many retries ({FAIL_RETRIES})") + time.sleep(sleep) + + # result = requests.get(dependents_url) + result = requests.get(dependents_url, headers={"Authorization": f"TOK:{ghw.token()}"}) + if result.status_code == 429: # 429=Too Many Requests + logger.error(f"dependents_url requests, {name=}, {result.status_code=}, {result=}") + raise RuntimeError(f"dependents_url exception, {name=}, {result.status_code=}, {result=}") + if result.status_code != 200: + logger.error(f"dependents_url requests, {name=}, {result.status_code=}, {result=}") + raise Exception(f"dependents_url exception, {name=}, {result.status_code=}, {result=}") match = DEPENDENTS_REGEX.match(content) if not match: diff --git a/src/library/render.py b/src/library/render.py index 418d894..b783f12 100644 --- a/src/library/render.py +++ b/src/library/render.py @@ -98,25 +98,23 @@ def _column_apply(df: pd.DataFrame, target: str, source: str, fn: Callable): df[target] = df[source].apply(fn) -def process(df_input: pd.DataFrame, token: str) -> pd.DataFrame: - ghw = GithubWrapper(token) +def process(df_input: pd.DataFrame, token_list: List[str]) -> pd.DataFrame: + ghw = GithubWrapper(token_list) df = df_input.copy() - logger.info(f"Add standard columns...") - std_metrics = StandardMetrics() - + # Add repo lookup columns ------------------------------------------------ + logger.info(f"Add repo lookup columns...") + t0 = datetime.now() _column_apply(df, "_repopath", "githuburl", lambda x: urlparse(x).path.lstrip("/")) _column_apply(df, "_reponame", "_repopath", lambda x: ghw.get_repo(x).name) _column_apply(df, "_stars", "_repopath", lambda x: ghw.get_repo(x).stargazers_count) _column_apply(df, "_forks", "_repopath", lambda x: ghw.get_repo(x).forks_count) _column_apply(df, "_watches", "_repopath", lambda x: ghw.get_repo(x).subscribers_count) - _column_apply(df, "_topics", "_repopath", lambda x: std_metrics.get_repo_topics(ghw, x)) _column_apply(df, "_language", "_repopath", lambda x: ghw.get_repo(x).language) _column_apply(df, "_homepage", "_repopath", lambda x: ghw.get_repo(x).homepage) _column_apply(df, "_description", "_repopath", lambda x: _display_description(ghw, x)) _column_apply(df, "_organization", "_repopath", lambda x: x.split("/")[0]) _column_apply(df, "_updated_at", "_repopath", lambda x: ghw.get_repo(x).updated_at.date()) - _column_apply(df, "_last_commit_date", "_repopath", lambda x: std_metrics.last_commit_date(ghw, x)) _column_apply(df, "_created_at", "_repopath", lambda x: ghw.get_repo(x).created_at.date()) _column_apply(df, "_age_weeks", "_repopath", lambda x: (datetime.now().date() - ghw.get_repo(x).created_at.date()).days // 7 @@ -126,56 +124,87 @@ def process(df_input: pd.DataFrame, token: str) -> pd.DataFrame: * 7 / (datetime.now().date() - ghw.get_repo(x).created_at.date()).days ) + timing_lookup = datetime.now() - t0 + logger.info(f"Timing: {timing_lookup.total_seconds()=}") + + # Add standard metric columns ------------------------------------------------ + logger.info(f"Add popularity metric columns...") + std_metrics = StandardMetrics() + t0 = datetime.now() + _column_apply(df, "_topics", "_repopath", lambda x: std_metrics.get_repo_topics(token_list, x)) + _column_apply(df, "_last_commit_date", "_repopath", lambda x: std_metrics.last_commit_date(token_list, x)) + timing_std = datetime.now() - t0 + logger.info(f"Timing: {timing_std.total_seconds()=}") + # Add popularity metric columns ------------------------------------------------ logger.info(f"Add popularity metric columns...") - metrics = PopularityMetrics() + pop_metrics = PopularityMetrics() + t0 = datetime.now() df["_pop_contributor_count"] = df["_repopath"].apply( - lambda x: metrics.contributor_count(token, x) + lambda x: pop_metrics.contributor_count(token_list, x) ) - df_pop_contributor_orgs = df.apply(lambda row: metrics.contributor_orgs(token, row["_repopath"]), - axis="columns", result_type="expand") - df = pd.concat([df, df_pop_contributor_orgs], axis="columns") + # TODO: optimise contributor_orgs_dict + # Long, many interations thru repo contibutors for company info + # Can rate limit, esp if sleep < 2sec + df_pop_contributor_orgs_dict = df.apply(lambda row: pop_metrics.contributor_orgs_dict(token_list, row["_repopath"]), + axis="columns", result_type="expand") + df = pd.concat([df, df_pop_contributor_orgs_dict], axis="columns") df["_pop_commit_frequency"] = df["_repopath"].apply( - lambda x: metrics.commit_frequency(token, x) + lambda x: pop_metrics.commit_frequency(token_list, x) ) df["_pop_updated_issues_count"] = df["_repopath"].apply( - lambda x: metrics.updated_issues_count(token, x) + lambda x: pop_metrics.updated_issues_count(token_list, x) ) df["_pop_closed_issues_count"] = df["_repopath"].apply( - lambda x: metrics.closed_issues_count(token, x) + lambda x: pop_metrics.closed_issues_count(token_list, x) ) df["_pop_created_since_days"] = df["_repopath"].apply( - lambda x: metrics.created_since_days(token, x) + lambda x: pop_metrics.created_since_days(token_list, x) ) df["_pop_updated_since_days"] = df["_repopath"].apply( - lambda x: metrics.updated_since_days(token, x) + lambda x: pop_metrics.updated_since_days(token_list, x) ) - df_pop_recent_releases_count = df.apply(lambda row: metrics.recent_releases_count(token, row["_repopath"]), + df_pop_recent_releases_count = df.apply(lambda row: pop_metrics.recent_releases_count_dict(token_list, row["_repopath"]), axis="columns", result_type="expand") df = pd.concat([df, df_pop_recent_releases_count], axis="columns") - df_pop_comment_frequency = df.apply(lambda row: metrics.comment_frequency(token, row["_repopath"]), + df_pop_comment_frequency = df.apply(lambda row: pop_metrics.comment_frequency(token_list, row["_repopath"]), axis="columns", result_type="expand") df = pd.concat([df, df_pop_comment_frequency], axis="columns") + # TODO: dependents_count is expensive and can have many fails df["_pop_dependents_count"] = df["_repopath"].apply( - lambda x: metrics.dependents_count(x) + lambda x: pop_metrics.dependents_count(token_list, x) ) + timing_pop = datetime.now() - t0 + logger.info(f"Timing: {timing_lookup.total_seconds()=}") + logger.info(f"Timing: {timing_std.total_seconds()=}") + logger.info(f"Timing: {timing_pop.total_seconds()=}") + + # TEMP: + logger.info(f"Write temp process results to csv...") + df.to_csv("_temp_df_process.csv") + import json + with open("_temp_df_process.json", "w") as f: + json_results = df.to_json(orient="table", double_precision=2) + data = json.loads(json_results) + json.dump(data, f, indent=4) + # /TEMP: scorer = PopularityScorer() df["_pop_score"] = df.apply( lambda row: scorer.score(row), axis="columns" ) - return df.sort_values("_stars", ascending=False) + return df.sort_values("_pop_score", ascending=False) def lines_header(count: int, category: str = "") -> List[str]: From 38b75a2eb25785c3e42941c30a205e41f3042728 Mon Sep 17 00:00:00 2001 From: Dylan Hogg Date: Wed, 22 Feb 2023 12:23:25 +1100 Subject: [PATCH 12/20] Data with popularity metrics. --- github_data.csv | 1887 +- github_data.json | 94128 +++++++++++++++++++++++++--------------- github_data.min.json | 2 +- github_tags_data.json | 24 +- 4 files changed, 59447 insertions(+), 36594 deletions(-) diff --git a/github_data.csv b/github_data.csv index 17e11e8..245daed 100644 --- a/github_data.csv +++ b/github_data.csv @@ -1,903 +1,984 @@ -,category,githuburl,featured,links,description,_repopath,_reponame,_stars,_forks,_watches,_topics,_language,_homepage,_description,_organization,_updated_at,_last_commit_date,_created_at,_age_weeks,_stars_per_week,_pop_contributor_count,_pop_contributor_orgs_len,_pop_contributor_orgs_max,_pop_contributor_orgs,_pop_contributor_orgs_error,_pop_commit_frequency,_pop_updated_issues_count,_pop_closed_issues_count,_pop_created_since_days,_pop_updated_since_days,_pop_recent_releases_count,_pop_recent_releases_estimated_tags,_pop_recent_releases_adjusted_count,_pop_issue_count,_pop_comment_count,_pop_comment_count_lookback_days,_pop_comment_frequency,_pop_dependents_count,_pop_score -89,ml-dl,https://github.com/tensorflow/tensorflow,,,,tensorflow/tensorflow,tensorflow,169751,87558,7793,"['tensorflow', 'machine-learning', 'python', 'deep-learning', 'deep-neural-networks', 'neural-network', 'ml', 'distributed']",C++,https://tensorflow.org,tensorflow: An Open Source Machine Learning Framework for Everyone,tensorflow,2022-12-18,2022-12-18,2015-11-07,371,457.1977683724509,4198,2,5,"['google', 'googletensorflow']",,312.65,2393,1430,87,0,32,26,32,2393.0,6694.0,90.0,2.8,175460,92.79924 -405,study,https://github.com/thealgorithms/python,,,,thealgorithms/python,Python,150017,38545,5937,"['python', 'algorithm', 'algorithms-implemented', 'algorithm-competitions', 'algos', 'sorts', 'searches', 'sorting-algorithms', 'education', 'learn', 'practice', 'community-driven', 'interview', 'hacktoberfest']",Python,https://the-algorithms.com/,Python: All Algorithms implemented in Python,thealgorithms,2022-12-18,2022-12-18,2016-07-16,335,447.43033659991477,973,4,5,"['christianclauss', 'fossasiagojekthealgorithms', 'thealgorithmsgojek', 'universitätpassau']",,6.31,1926,1831,78,0,0,0,0,1926.0,2356.0,90.0,1.2,3296,69.29599 -112,nlp,https://github.com/huggingface/transformers,,,,huggingface/transformers,transformers,76398,17261,866,"['nlp', 'natural-language-processing', 'pytorch', 'language-model', 'tensorflow', 'bert', 'language-models', 'pytorch-transformers', 'nlp-library', 'transformer', 'model-hub', 'pretrained-models', 'jax', 'flax', 'seq2seq', 'speech-recognition', 'hacktoberfest', 'python', 'machine-learning', 'deep-learning']",Python,https://huggingface.co/transformers,"🤗 Transformers: State-of-the-art Machine Learning for Pytorch, TensorFlow, and JAX.",huggingface,2022-12-18,2022-12-16,2018-10-29,216,353.69444444444446,1650,2,5,"['huggingface', 'stasosphereonline']",,56.79,2247,1896,50,0,24,28,24,2248.0,6558.0,90.0,2.9,10695,81.10986 -14,web,https://github.com/django/django,,,,django/django,django,67753,28322,2271,"['python', 'django', 'web', 'framework', 'orm', 'templates', 'models', 'views', 'apps']",Python,https://www.djangoproject.com/,django: The Web framework for perfectionists with deadlines.,django,2022-12-18,2022-12-17,2012-04-28,555,122.01466426550039,2842,1,5,['2xlibre.netsàrl'],,18.12,377,307,130,1,0,34,34,377.0,957.0,90.0,2.5,61720,79.49161 -57,web,https://github.com/pallets/flask,,,,pallets/flask,flask,61341,15349,2146,"['python', 'flask', 'wsgi', 'web-framework', 'werkzeug', 'jinja', 'pallets']",Python,https://flask.palletsprojects.com,flask: The Python micro framework for building web applications.,pallets,2022-12-18,2022-11-25,2010-04-06,662,92.54030172413793,800,2,5,"['getsentry', 'sentry']",,3.71,76,65,155,1,8,4,8,76.0,61.0,90.0,0.8,8741,65.14601 -76,ml-dl,https://github.com/pytorch/pytorch,,,,pytorch/pytorch,pytorch,61054,17007,1624,"['neural-network', 'autograd', 'gpu', 'numpy', 'deep-learning', 'tensor', 'python', 'machine-learning']",C++,https://pytorch.org,pytorch: Tensors and Dynamic neural networks in Python with strong GPU acceleration,pytorch,2022-12-18,2022-12-18,2016-08-13,331,184.29409228115568,3755,1,5,['facebookairesearch'],,216.04,8263,5684,77,0,5,120,5,8258.0,34479.0,90.0,4.2,961352,91.47611 -40,ml-dl,https://github.com/keras-team/keras,,,,keras-team/keras,keras,56861,19228,1936,"['deep-learning', 'tensorflow', 'neural-networks', 'machine-learning', 'data-science', 'python']",Python,http://keras.io/,keras: Deep Learning for humans,keras-team,2022-12-18,2022-12-16,2015-03-28,403,140.9943322706341,1133,2,5,"['google', 'sktelecom']",,20.58,486,353,94,0,13,9,13,486.0,894.0,90.0,1.8,3088,73.03711 -189,util,https://github.com/home-assistant/core,,,,home-assistant/core,core,56762,20995,1345,"['python', 'home-automation', 'iot', 'internet-of-things', 'mqtt', 'raspberry-pi', 'asyncio', 'hacktoberfest']",Python,https://www.home-assistant.io,core: :house_with_garden: Open source home automation that puts local control and privacy first.,home-assistant,2022-12-18,2022-12-18,2013-09-17,482,117.55443786982248,3475,2,5,"['home-assistant,nabucasa', 'home-assistanthassio-addons']",,241.85,7960,5914,113,0,173,111,173,7960.0,23769.0,90.0,3.0,3239,86.90949 -135,web,https://github.com/tiangolo/fastapi,1.0,,,tiangolo/fastapi,fastapi,52565,4303,603,"['python', 'json', 'swagger-ui', 'redoc', 'starlette', 'openapi', 'api', 'openapi3', 'framework', 'async', 'asyncio', 'uvicorn', 'python3', 'python-types', 'pydantic', 'json-schema', 'fastapi', 'swagger', 'rest', 'web']",Python,https://fastapi.tiangolo.com/,"FastAPI framework, high performance, easy to learn, fast to code, ready for production",tiangolo,2022-12-18,2022-12-16,2018-12-08,210,249.9694293478261,401,0,5,[],,12.75,1366,887,49,0,25,35,25,1366.0,3158.0,90.0,2.3,4316,66.19022 -78,ml,https://github.com/scikit-learn/scikit-learn,,,,scikit-learn/scikit-learn,scikit-learn,52354,23790,2167,"['machine-learning', 'python', 'statistics', 'data-science', 'data-analysis']",Python,https://scikit-learn.org,scikit-learn: machine learning in Python,scikit-learn,2022-12-18,2022-12-16,2010-08-17,643,81.31306856001775,2806,4,5,"['inria', 'meta', 'microsoft', 'uliège']",,31.21,1080,710,150,0,6,10,6,1079.0,2656.0,90.0,2.5,36390,84.48729 -399,util,https://github.com/python/cpython,,,,python/cpython,cpython,49550,25219,1465,[],Python,https://www.python.org/,cpython: The Python programming language,python,2022-12-18,2022-12-18,2017-02-10,305,162.2310570626754,2294,4,5,"['fzjülich', 'keepertech', 'microsoft', 'redhatofficial']",,68.56,4833,3383,71,0,0,91,91,4833.0,11415.0,90.0,2.4,11228,86.25842 -177,web,https://github.com/psf/requests,,,,psf/requests,requests,48718,8929,1362,"['python', 'http', 'forhumans', 'requests', 'python-requests', 'client', 'humans', 'cookies']",Python,https://requests.readthedocs.io/en/latest/,"requests: A simple, yet elegant, HTTP library.",psf,2022-12-18,2022-11-21,2011-02-13,618,78.81349664894846,723,3,5,"['amazonwebservices', 'apple', 'tableau&salesforce']",,0.87,89,56,144,1,4,12,4,89.0,124.0,90.0,1.4,9183,64.97178 -80,data,https://github.com/scrapy/scrapy,,,,scrapy/scrapy,scrapy,45399,9807,1789,"['python', 'scraping', 'crawling', 'framework', 'crawler', 'hacktoberfest']",Python,https://scrapy.org,"Scrapy, a fast high-level web crawling & scraping framework for Python.",scrapy,2022-12-18,2022-12-15,2010-02-22,669,67.8609865470852,569,3,5,"['superfly', 'zytedata(formerlyscrapinghub)', 'zytedata,scrapinghub']",,4.71,259,190,156,0,8,9,8,260.0,538.0,90.0,2.1,1159,67.90526 -695,ml-dl,https://github.com/deepfakes/faceswap,,,,deepfakes/faceswap,faceswap,42994,12012,1502,"['faceswap', 'face-swap', 'deep-learning', 'deeplearning', 'deep-neural-networks', 'deepfakes', 'deepface', 'deep-face-swap', 'fakeapp', 'neural-networks', 'neural-nets', 'openfaceswap', 'myfakeapp', 'machine-learning']",Python,https://www.faceswap.dev,faceswap: Deepfakes Software For All,deepfakes,2022-12-18,2022-12-18,2017-12-19,260,164.8181818181818,94,0,5,[],,4.87,21,14,61,0,0,1,1,21.0,17.0,90.0,0.8,1192,46.15719 -179,term,https://github.com/willmcgugan/rich,,,,willmcgugan/rich,rich,41137,1447,541,"['python', 'python3', 'python-library', 'terminal', 'terminal-color', 'markdown', 'tables', 'syntax-highlighting', 'ansi-colors', 'progress-bar-python', 'progress-bar', 'traceback', 'rich', 'tracebacks-rich', 'emoji', 'tui']",Python,https://rich.readthedocs.io/en/latest/,Rich is a Python library for rich text and beautiful formatting in the terminal.,willmcgugan,2022-12-18,2022-12-04,2019-11-10,162,253.70837004405286,203,2,5,"['davep.org', 'textualize']",,13.44,197,147,38,0,17,45,17,197.0,392.0,90.0,2.0,3007,64.89991 -262,web,https://github.com/sherlock-project/sherlock,,,,sherlock-project/sherlock,sherlock,37843,4466,963,"['osint', 'reconnaissance', 'linux', 'macos', 'cli', 'sherlock', 'python3', 'windows', 'redteam', 'tools', 'information-gathering', 'hacktoberfest', 'hacktoberfest2022', 'python']",Python,http://sherlock-project.github.io,sherlock: 🔎 Hunt down social media accounts by username across social networks,sherlock-project,2022-12-18,2022-10-21,2018-12-24,208,181.9375,209,1,5,['paackeng'],,3.25,194,117,48,2,0,0,0,194.0,179.0,90.0,0.9,415,47.9617 -736,diffusion,https://github.com/compvis/stable-diffusion,,,,compvis/stable-diffusion,stable-diffusion,37519,5790,355,[],Jupyter Notebook,https://ommer-lab.com/research/latent-diffusion-models/,stable-diffusion: A latent text-to-image diffusion model,compvis,2022-12-18,2022-11-16,2022-08-10,18,2004.8320610687024,8,1,5,['runwayml'],,0.4,324,77,4,1,0,0,0,324.0,729.0,90.0,2.2,53,31.38278 -432,study,https://github.com/jakevdp/pythondatasciencehandbook,,,,jakevdp/pythondatasciencehandbook,PythonDataScienceHandbook,36840,16265,1768,"['scikit-learn', 'numpy', 'python', 'jupyter-notebook', 'matplotlib', 'pandas']",Jupyter Notebook,http://jakevdp.github.io/PythonDataScienceHandbook,PythonDataScienceHandbook: Python Data Science Handbook: full text in Jupyter Notebooks,jakevdp,2022-12-18,2018-11-30,2016-08-10,331,111.0594315245478,17,4,5,"['coiled', 'google', 'kvantify', 'quansight']",,0.0,19,11,77,49,0,0,0,19.0,17.0,90.0,0.9,172,32.72075 -59,pandas,https://github.com/pandas-dev/pandas,1.0,,,pandas-dev/pandas,pandas,36289,15523,1119,"['data-analysis', 'pandas', 'flexible', 'alignment', 'python', 'data-science']",Python,https://pandas.pydata.org,"pandas: Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more",pandas-dev,2022-12-18,2022-12-18,2010-08-24,642,56.449555555555555,3189,2,5,"['rapidsai', 'voltrondata']",,45.63,4619,3022,150,0,10,12,10,4619.0,5418.0,90.0,1.2,4975,80.23597 -694,ml-dl,https://github.com/iperov/deepfacelab,,,,iperov/deepfacelab,DeepFaceLab,36190,8167,1044,"['faceswap', 'face-swap', 'deep-learning', 'deeplearning', 'deep-neural-networks', 'deepfakes', 'deepface', 'deep-face-swap', 'fakeapp', 'neural-networks', 'neural-nets', 'deepfacelab', 'creating-deepfakes', 'arxiv', 'machine-learning']",Python,,DeepFaceLab is the leading software for creating deepfakes.,iperov,2022-12-18,2022-10-31,2018-06-04,237,152.70042194092827,21,0,5,[],,0.19,63,12,55,2,0,0,0,63.0,53.0,90.0,0.8,333,33.57254 -64,util,https://github.com/psf/black,,,,psf/black,black,30470,1949,227,"['python', 'code', 'formatter', 'codeformatter', 'gofmt', 'yapf', 'autopep8', 'pre-commit-hook', 'hacktoberfest']",Python,https://black.readthedocs.io/en/stable/,black: The uncompromising Python code formatter,psf,2022-12-18,2022-12-18,2018-03-14,248,122.51005169442848,350,4,5,"['clc', 'facebook', 'psf', 'quora']",,5.35,295,176,58,0,7,9,7,299.0,585.0,90.0,2.0,28929,71.53459 -220,util,https://github.com/pyenv/pyenv,,,,pyenv/pyenv,pyenv,29882,2655,380,"['python', 'shell']",Roff,,pyenv: Simple Python version management,pyenv,2022-12-18,2022-12-18,2012-08-31,537,55.60180754917597,402,1,5,['treasuredata'],,3.25,133,117,125,0,12,13,12,133.0,307.0,90.0,2.3,1883,64.0447 -55,sim,https://github.com/openai/gym,,,,openai/gym,gym,29439,8120,999,[],Python,https://www.gymlibrary.dev,gym: A toolkit for developing and comparing reinforcement learning algorithms.,openai,2022-12-18,2022-10-25,2016-04-27,346,84.90852904820767,384,0,5,[],,5.62,113,83,81,2,11,8,11,113.0,261.0,90.0,2.3,7204,59.53888 -118,ml-ops,https://github.com/apache/airflow,,,,apache/airflow,airflow,28488,11690,764,"['airflow', 'apache', 'apache-airflow', 'python', 'scheduler', 'workflow', 'hacktoberfest']",Python,https://airflow.apache.org/,"airflow: Apache Airflow - A platform to programmatically author, schedule, and monitor workflows",apache,2022-12-18,2022-12-18,2015-04-13,401,71.0423940149626,2662,5,5,"['apachesoftwarefoundation', 'astronomer', 'astronomer.io', 'preset-io', 'snowflakedb']",,70.71,2090,1667,94,0,17,337,17,2091.0,4975.0,90.0,2.4,13010,86.76876 -592,util,https://github.com/mingrammer/diagrams,,,,mingrammer/diagrams,diagrams,27457,1675,350,"['diagram', 'diagram-as-code', 'architecture', 'graphviz']",Python,https://diagrams.mingrammer.com,diagrams: :art: Diagram as Code for prototyping cloud system architectures,mingrammer,2022-12-18,2022-11-27,2020-02-02,150,182.87250237868696,123,2,5,"['daangn', 'luxeys']",,1.17,165,63,35,1,4,13,4,165.0,168.0,90.0,1.0,59,46.67377 -257,crypto,https://github.com/ccxt/ccxt,,,,ccxt/ccxt,ccxt,26668,6520,930,"['altcoin', 'api', 'arbitrage', 'bitcoin', 'bot', 'cryptocurrency', 'crypto', 'e-commerce', 'ethereum', 'exchange', 'invest', 'library', 'strategy', 'trading', 'btc', 'eth', 'trade', 'merchant', 'market-data']",JavaScript,,ccxt: A JavaScript / Python / PHP cryptocurrency trading API with support for more than 100 bitcoin/altcoin exchanges,ccxt,2022-12-18,2022-12-18,2017-05-14,292,91.2841075794621,709,1,5,['ccxt'],,235.92,1408,1047,68,0,0,142,142,1408.0,2198.0,90.0,1.6,37950,79.88869 -838,diffusion,https://github.com/automatic1111/stable-diffusion-webui,,,,automatic1111/stable-diffusion-webui,stable-diffusion-webui,25507,4618,247,[],Python,,stable-diffusion-webui: Stable Diffusion web UI,automatic1111,2022-12-18,2022-12-10,2022-08-22,17,1500.4117647058824,278,0,5,[],,42.46,3672,2189,4,0,0,0,0,3672.0,13755.0,90.0,3.7,863,55.59936 -677,ml-dl,https://github.com/facebookresearch/detectron,,,,facebookresearch/detectron,Detectron,25464,5480,959,[],Python,,"Detectron: FAIR's research platform for object detection research, implementing popular algorithms like Mask R-CNN and RetinaNet.",facebookresearch,2022-12-18,2021-03-27,2017-10-05,271,93.76538663861126,40,2,5,"['facebook', 'ucberkeley']",,0.0,11,3,63,21,0,0,0,11.0,3.0,90.0,0.3,865,34.18342 -245,ml,https://github.com/tencentarc/gfpgan,,,,tencentarc/gfpgan,GFPGAN,25179,3809,373,"['pytorch', 'gan', 'deep-learning', 'super-resolution', 'face-restoration', 'image-restoration', 'gfpgan']",Python,,GFPGAN aims at developing Practical Algorithms for Real-world Face Restoration.,tencentarc,2022-12-18,2022-09-16,2021-03-19,91,275.3953125,11,2,5,"['huggingface', 'tencent']",,0.6,59,16,21,3,6,9,6,58.0,54.0,90.0,0.9,11,32.67355 -17,nlp,https://github.com/explosion/spacy,,,,explosion/spacy,spaCy,24789,3988,549,"['natural-language-processing', 'data-science', 'machine-learning', 'python', 'cython', 'nlp', 'artificial-intelligence', 'ai', 'spacy', 'nlp-library', 'neural-network', 'neural-networks', 'deep-learning', 'named-entity-recognition', 'entity-linking', 'text-classification', 'tokenization']",Python,https://spacy.io,spaCy: 💫 Industrial-strength Natural Language Processing (NLP) in Python,explosion,2022-12-18,2022-12-15,2014-07-03,441,56.13814299579424,710,2,5,"['explosion&oxykodit', 'founderexplosion']",,8.85,356,316,103,0,19,16,19,356.0,577.0,90.0,1.6,5776,71.78792 -501,ml,https://github.com/ageron/handson-ml2,,,,ageron/handson-ml2,handson-ml2,23709,11459,625,[],Jupyter Notebook,,"handson-ml2: A series of Jupyter notebooks that walk you through the fundamentals of Machine Learning and Deep Learning in Python using Scikit-Learn, Keras and TensorFlow 2.",ageron,2022-12-18,2022-11-08,2019-01-08,205,115.17210270645386,75,0,5,[],,0.29,21,3,48,1,0,0,0,21.0,31.0,90.0,1.5,1115,39.80723 -163,term,https://github.com/tqdm/tqdm,1.0,,,tqdm/tqdm,tqdm,23582,1199,207,"['progressbar', 'progressmeter', 'progress-bar', 'meter', 'rate', 'console', 'terminal', 'time', 'progress', 'gui', 'python', 'parallel', 'cli', 'utilities', 'jupyter', 'discord', 'telegram', 'pandas', 'keras', 'closember']",Python,https://tqdm.github.io,"tqdm: A Fast, Extensible Progress Bar for Python and CLI",tqdm,2022-12-18,2022-09-03,2015-06-03,393,59.89622641509434,112,2,5,"['giga-consciousness-comasciencegroup-university&hospitalofliège', 'valence']",,0.52,69,11,92,4,5,20,5,69.0,82.0,90.0,1.2,6644,53.30922 -103,ml,https://github.com/dmlc/xgboost,,,,dmlc/xgboost,xgboost,23555,8535,931,"['gbdt', 'gbrt', 'gbm', 'distributed-systems', 'xgboost', 'machine-learning']",C++,https://xgboost.ai/,"xgboost: Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library, for Python, R, Java, Scala, C++ and more. Runs on single machine, Hadoop, Spark, Dask, Flink and DataFlow",dmlc,2022-12-18,2022-12-17,2014-02-06,462,50.92186534898085,589,4,5,"['amazonai', 'cmu,octoml', 'els-rdlefebvresarrut', 'nvidia']",,9.9,464,372,108,0,9,5,9,464.0,840.0,90.0,1.8,1612,71.15114 -26,term,https://github.com/google/python-fire,,,,google/python-fire,python-fire,23487,1353,380,"['python', 'cli']",Python,,python-fire: Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object.,google,2022-12-18,2022-12-12,2017-02-21,303,77.29619181946403,55,3,5,"['google', 'googlebrain', 'syracuseuniversity']",,0.37,48,26,71,0,1,2,1,48.0,43.0,90.0,0.9,114,46.38159 -678,ml-dl,https://github.com/facebookresearch/detectron2,,,,facebookresearch/detectron2,detectron2,23127,6313,365,[],Python,https://detectron2.readthedocs.io/en/latest/,"Detectron2 is a platform for object detection, segmentation and other visual recognition tasks.",facebookresearch,2022-12-18,2022-12-14,2019-09-05,171,134.79517069109076,227,1,5,['facebookairesearch'],,1.67,214,132,40,0,0,3,3,214.0,258.0,90.0,1.2,23330,60.12194 -646,util,https://github.com/python-poetry/poetry,,,,python-poetry/poetry,poetry,22961,1857,184,"['python', 'dependency-manager', 'package-manager', 'packaging', 'poetry']",Python,https://python-poetry.org,poetry: Python packaging and dependency management made easy,python-poetry,2022-12-18,2022-12-18,2018-02-28,250,91.58233618233618,417,0,5,[],,13.08,1180,864,58,0,13,25,13,1181.0,2846.0,90.0,2.4,2403,64.59742 -289,ml-dl,https://github.com/rwightman/pytorch-image-models,,,,rwightman/pytorch-image-models,pytorch-image-models,22569,3759,292,"['pytorch', 'imagenet-classifier', 'resnet', 'dual-path-networks', 'cnn-classification', 'pretrained-models', 'pretrained-weights', 'distributed-training', 'mobile-deep-learning', 'mobilenet-v2', 'mnasnet', 'mobilenetv3', 'efficientnet', 'augmix', 'randaugment', 'mixnet', 'efficientnet-training', 'vision-transformer-models', 'nfnets', 'normalization-free-training']",Python,https://huggingface.co/docs/timm,"pytorch-image-models: PyTorch image models, scripts, pretrained weights -- ResNet, ResNeXT, EfficientNet, EfficientNetV2, NFNet, Vision Transformer, MixNet, MobileNet-V3/V2, RegNet, DPN, CSPNet, and more",rwightman,2022-12-18,2022-12-15,2019-02-02,202,111.56991525423729,89,3,5,"['huggingface', 'independent', 'weights&biases']",,6.46,111,72,47,0,10,10,10,111.0,146.0,90.0,1.3,159,55.28684 -689,ml-dl,https://github.com/matterport/mask_rcnn,,,,matterport/mask_rcnn,Mask_RCNN,22507,11179,597,"['mask-rcnn', 'tensorflow', 'object-detection', 'instance-segmentation', 'keras']",Python,,Mask_RCNN: Mask R-CNN for object detection and instance segmentation on Keras and TensorFlow,matterport,2022-12-18,2019-03-31,2017-10-19,269,83.4917859035506,47,3,5,"['apple', 'freelance', 'grid.ai|pytorchlightning']",,0.0,89,18,63,46,0,1,1,89.0,107.0,90.0,1.2,1541,41.13975 -550,ml,https://github.com/open-mmlab/mmdetection,,,,open-mmlab/mmdetection,mmdetection,22420,8168,362,"['object-detection', 'instance-segmentation', 'rpn', 'fast-rcnn', 'faster-rcnn', 'mask-rcnn', 'cascade-rcnn', 'ssd', 'retinanet', 'pytorch']",Python,https://mmdetection.readthedocs.io,mmdetection: OpenMMLab Detection Toolbox and Benchmark,open-mmlab,2022-12-18,2022-11-23,2018-08-22,225,99.32911392405063,377,5,5,"['cuhk,mmlab', 'mmlab,ntu', 'nuaa', 'open-mmlab', 'ucsd']",,5.21,876,652,53,1,16,11,16,873.0,1322.0,90.0,1.5,4620,69.61265 -54,math,https://github.com/numpy/numpy,1.0,,,numpy/numpy,numpy,22230,7600,571,"['numpy', 'python', 'closember']",Python,https://numpy.org,numpy: The fundamental package for scientific computing with Python.,numpy,2022-12-18,2022-12-18,2010-09-13,640,34.734375,1556,4,5,"['mercarijp', 'quansight,openteams', 'quansightlabs', 'retired']",,29.58,907,655,149,0,20,18,20,908.0,2325.0,90.0,2.6,27499,84.17272 -649,util,https://github.com/keon/algorithms,,,,keon/algorithms,algorithms,21936,4425,643,"['algorithm', 'python', 'competitive-programming', 'data-structure', 'algorithms', 'sort', 'search', 'tree', 'graph']",Python,,algorithms: Minimal examples of data structures and algorithms in Python,keon,2022-12-18,2022-11-12,2016-11-17,317,69.07422402159244,193,2,5,"['gojek', 'google']",,0.37,11,2,74,1,0,0,0,11.0,4.0,90.0,0.4,74,41.01387 -86,viz,https://github.com/streamlit/streamlit,,,,streamlit/streamlit,streamlit,21862,1957,284,"['python', 'machine-learning', 'data-science', 'deep-learning', 'data-visualization', 'streamlit', 'data-analysis', 'developer-tools']",Python,https://streamlit.io,Streamlit — The fastest way to build data apps in Python,streamlit,2022-12-18,2022-12-18,2019-08-24,173,126.16158285243199,160,2,5,"['independent', 'streamlit']",,12.52,1080,630,40,0,22,347,22,1080.0,1206.0,90.0,1.1,1546,64.16201 -183,ml,https://github.com/google/jax,,,,google/jax,jax,21230,1987,288,['jax'],Python,http://jax.readthedocs.io/,"jax: Composable transformations of Python+NumPy programs: differentiate, vectorize, JIT to GPU/TPU, and more",google,2022-12-18,2022-12-17,2018-10-25,216,98.02770448548813,484,1,5,['google'],,50.02,1255,952,50,0,39,38,39,1254.0,1433.0,90.0,1.1,6513,71.26828 -252,ml-dl,https://github.com/pytorchlightning/pytorch-lightning,1.0,,,pytorchlightning/pytorch-lightning,lightning,20989,2683,227,"['python', 'deep-learning', 'artificial-intelligence', 'ai', 'pytorch', 'data-science', 'machine-learning']",Python,https://lightning.ai,"lightning: Build and train PyTorch models and connect them to the ML lifecycle using Lightning App templates, without handling DIY infrastructure, cost management, scaling, and other headaches.",pytorchlightning,2022-12-18,2022-12-18,2019-03-31,194,108.11111111111111,811,4,5,"['current:opentowork|previouslylightning-ai,episource', 'grid.ai|pytorchlightning', 'lightning-ai', 'lightningai']",,39.56,1617,1237,45,0,41,46,41,1616.0,2285.0,90.0,1.4,550,73.03704 -90,web,https://github.com/tornadoweb/tornado,1.0,,,tornadoweb/tornado,tornado,20902,5485,1006,"['python', 'asynchronous']",Python,http://www.tornadoweb.org/,"Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.",tornadoweb,2022-12-18,2022-12-17,2009-09-09,692,30.174056506496186,432,2,5,"['healthbyro', 'mongodb']",,1.42,39,24,162,0,0,5,5,39.0,62.0,90.0,1.6,879,59.61018 -8,perf,https://github.com/celery/celery,,,,celery/celery,celery,20658,4395,476,"['python', 'task-manager', 'task-scheduler', 'task-runner', 'queue-workers', 'queued-jobs', 'queue-tasks', 'amqp', 'redis', 'sqs', 'sqs-queue', 'python3', 'python-library', 'redis-queue']",Python,https://docs.celeryq.dev,celery: Distributed Task Queue (development branch),celery,2022-12-18,2022-12-15,2009-04-24,712,28.996591136956084,1255,2,5,"['celerypsfapache', 'robinhoodmarkets']",,5.23,297,166,166,0,8,17,8,297.0,543.0,90.0,1.8,6865,71.58273 -45,testing,https://github.com/locustio/locust,1.0,,,locustio/locust,locust,20331,2602,431,"['locust', 'python', 'load-testing', 'performance-testing', 'http', 'benchmarking', 'load-generator']",Python,,locust: Scalable load testing tool written in Python,locustio,2022-12-18,2022-12-16,2011-02-17,617,32.92088827203331,271,3,5,"['5m', 'heylab', 'redshirtconsultingab']",,9.37,96,83,144,0,26,9,26,96.0,201.0,90.0,2.1,596,66.39902 -75,nlp,https://github.com/pytorch/fairseq,,,,pytorch/fairseq,fairseq,20311,5092,355,"['python', 'pytorch', 'artificial-intelligence']",Python,,fairseq: Facebook AI Research Sequence-to-Sequence Toolkit written in Python.,pytorch,2022-12-18,2022-12-17,2017-08-29,276,73.36274509803921,412,3,5,"['facebook', 'facebookairesearch', 'facebookresearch']",,3.77,277,114,65,0,3,3,3,277.0,248.0,90.0,0.9,81045,69.00771 -2,ml-dl,https://github.com/apache/incubator-mxnet,,,,apache/incubator-mxnet,mxnet,20194,6876,1088,['mxnet'],C++,https://mxnet.apache.org,"mxnet: Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler; for Python, R, Julia, Scala, Go, Javascript and more",apache,2022-12-18,2022-09-26,2015-04-30,398,50.66594982078853,980,5,5,"['amazon', 'cmu,octoml', 'facebook', 'mit', 'universityofwashington']",,2.65,95,14,93,3,5,6,5,95.0,53.0,90.0,0.6,1919,61.54047 -255,crypto,https://github.com/freqtrade/freqtrade,,,,freqtrade/freqtrade,freqtrade,20137,4263,595,"['python', 'cryptocurrencies', 'trading-bot', 'telegram-bot', 'bitcoin', 'trade', 'cryptocurrency', 'algorithmic-trading', 'freqtrade']",Python,https://www.freqtrade.io,"freqtrade: Free, open source crypto trading bot",freqtrade,2022-12-18,2022-12-18,2017-05-17,291,69.02987267384917,284,1,5,['freqtradecoredev;frizzleapps/whatsitwhatsit'],,69.62,530,502,68,0,17,13,17,530.0,1379.0,90.0,2.6,1085,68.40999 -607,util,https://github.com/norvig/pytudes,,,,norvig/pytudes,pytudes,19802,2265,730,"['python', 'python-3', 'programming', 'practice', 'demonstrate-skills']",Jupyter Notebook,,"pytudes: Python programs, usually short, of considerable difficulty, to perfect particular skills.",norvig,2022-12-18,2022-12-14,2017-03-01,302,65.41481831052383,44,1,5,['google'],,1.38,5,4,71,0,0,0,0,5.0,2.0,90.0,0.4,17,34.84385 -273,ml,https://github.com/google/mediapipe,,,,google/mediapipe,mediapipe,19756,4148,494,"['mediapipe', 'c-plus-plus', 'computer-vision', 'deep-learning', 'android', 'video-processing', 'audio-processing', 'mobile-development', 'machine-learning', 'inference', 'graph-framework', 'graph-based', 'calculator', 'framework', 'pipeline-framework', 'stream-processing', 'perception']",C++,https://mediapipe.dev,"mediapipe: Cross-platform, customizable ML solutions for live and streaming media.",google,2022-12-18,2022-12-16,2019-06-13,183,107.62023346303502,21,1,5,['google'],,11.92,556,322,43,0,4,13,4,556.0,1433.0,90.0,2.6,111,50.70535 -409,perf,https://github.com/google/flatbuffers,,,,google/flatbuffers,flatbuffers,19528,2976,649,"['flatbuffers', 'serialization', 'serialization-library', 'json-parser', 'marshalling', 'rpc', 'zero-copy', 'mmap', 'cross-platform', 'c-plus-plus', 'java', 'c-sharp', 'go', 'python', 'rust', 'javascript', 'typescript', 'grpc', 'c', 'protobuf']",C++,http://google.github.io/flatbuffers/,FlatBuffers: Memory Efficient Serialization Library,google,2022-12-18,2022-12-15,2014-05-19,448,43.589285714285715,613,3,5,"['cto', 'google', 'voxraygames']",,7.4,227,156,104,0,9,4,9,227.0,576.0,90.0,2.5,3175,70.70299 -350,ml-dl,https://github.com/paddlepaddle/paddle,,,,paddlepaddle/paddle,Paddle,19328,4834,734,"['paddlepaddle', 'deep-learning', 'scalability', 'machine-learning', 'neural-network', 'python', 'efficiency', 'distributed-training']",C++,http://www.paddlepaddle.org/,Paddle: PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice (『飞桨』核心框架,深度学习&机器学习高性能单机、分布式训练和跨平台部署),paddlepaddle,2022-12-18,2022-12-17,2016-08-15,331,58.39274924471299,895,3,5,"['baidubdg/idl/dltp', 'paddlepaddle', 'tencent']",,110.33,4106,3158,77,0,7,11,7,4104.0,6254.0,90.0,1.5,19940,80.9565 -232,template,https://github.com/cookiecutter/cookiecutter,,,,cookiecutter/cookiecutter,cookiecutter,18574,1762,236,"['python', 'cookiecutter']",Python,https://pypi.org/project/cookiecutter/,"cookiecutter: A cross-platform command-line utility that creates projects from cookiecutters (project templates), e.g. Python package projects, C projects.",cookiecutter,2022-12-18,2022-09-09,2013-07-14,492,37.7410740203193,285,3,5,"['margaritahumanitarian', 'mozilla', 'octoenergy']",,3.08,50,10,115,3,2,3,2,50.0,43.0,90.0,0.9,611,53.64259 -789,study,https://github.com/wesm/pydata-book,,,,wesm/pydata-book,pydata-book,18518,13789,1456,[],Jupyter Notebook,,"pydata-book: Materials and IPython notebooks for ""Python for Data Analysis"" by Wes McKinney, published by O'Reilly Media",wesm,2022-12-18,2022-11-03,2012-06-30,546,33.89801255230125,9,3,5,"['googlecloud', 'vndly', 'voltrondata']",,0.15,7,4,127,2,0,0,0,7.0,6.0,90.0,0.9,5,30.95404 -186,ml,https://github.com/harisiqbal88/plotneuralnet,,,,harisiqbal88/plotneuralnet,PlotNeuralNet,18466,2542,219,"['latex', 'deep-neural-networks']",TeX,,PlotNeuralNet: Latex code for making neural networks diagrams,harisiqbal88,2022-12-18,2020-11-06,2018-07-24,229,80.33685518955873,13,2,5,"['cesarbr', 'universityofoxford']",,0.0,4,1,54,26,0,0,0,4.0,5.0,90.0,1.2,35,25.78726 -187,ml-interpretability,https://github.com/slundberg/shap,,,,slundberg/shap,shap,18176,2729,259,"['interpretability', 'machine-learning', 'deep-learning', 'gradient-boosting', 'shap', 'shapley', 'explainability']",Jupyter Notebook,,shap: A game theoretic approach to explain the output of any machine learning model.,slundberg,2022-12-18,2022-06-16,2016-11-22,316,57.36339044183949,205,3,5,"['microsoft', 'microsoftresearch', 'mila-iqia']",,2.31,187,27,74,6,1,8,1,187.0,160.0,90.0,0.9,439,50.16834 -61,viz,https://github.com/plotly/dash,,,,plotly/dash,dash,17833,1815,409,"['dash', 'plotly', 'data-visualization', 'data-science', 'gui-framework', 'flask', 'react', 'python', 'finance', 'bioinformatics', 'technical-computing', 'charting', 'plotly-dash', 'web-app', 'productivity', 'modeling', 'r', 'rstats', 'jupyter', 'julia']",Python,https://plotly.com/dash,"dash: Analytical Web Apps for Python, R, Julia, and Jupyter. No JavaScript Required.",plotly,2022-12-18,2022-12-17,2015-04-10,401,44.423843416370104,132,1,5,['plotly'],,12.54,177,85,94,0,12,11,12,177.0,210.0,90.0,1.2,5155,62.42429 -763,ml-dl,https://github.com/xinntao/real-esrgan,,,,xinntao/real-esrgan,Real-ESRGAN,17026,1811,181,"['esrgan', 'pytorch', 'real-esrgan', 'super-resolution', 'image-restoration', 'denoise', 'jpeg-compression', 'amine']",Python,,Real-ESRGAN aims at developing Practical Algorithms for General Image/Video Restoration.,xinntao,2022-12-18,2022-09-20,2021-07-19,74,230.0810810810811,11,3,5,"['huggingface', 'tencent', 'vk|hse']",,0.69,87,7,17,3,3,14,3,87.0,78.0,90.0,0.9,67,35.54132 -6,viz,https://github.com/bokeh/bokeh,,,,bokeh/bokeh,bokeh,17007,4012,451,"['bokeh', 'python', 'interactive-plots', 'javascript', 'visualization', 'plotting', 'plots', 'data-visualisation', 'notebooks', 'jupyter', 'visualisation', 'numfocus']",Python,https://bokeh.org,"bokeh: Interactive Data Visualization in the browser, from Python",bokeh,2022-12-18,2022-12-16,2012-03-26,560,30.369642857142857,624,1,5,['nvidia'],,8.15,405,275,131,0,0,10,10,405.0,824.0,90.0,2.0,1783,67.11479 -107,sim,https://github.com/atsushisakai/pythonrobotics,,,,atsushisakai/pythonrobotics,PythonRobotics,16987,5385,503,"['python', 'robotics', 'algorithm', 'path-planning', 'control', 'animation', 'localization', 'slam', 'cvxpy', 'ekf', 'autonomous-vehicles', 'autonomous-driving', 'mapping', 'autonomous-navigation', 'robot', 'hacktoberfest']",Python,https://atsushisakai.github.io/PythonRobotics/,PythonRobotics: Python sample codes for robotics algorithms.,atsushisakai,2022-12-18,2022-12-05,2016-03-21,352,48.25852272727273,102,2,5,"['idealworks', 'tiiuae']",,2.15,45,35,82,0,0,0,0,45.0,24.0,90.0,0.5,950,50.12303 -349,ml,https://github.com/jina-ai/jina,,,,jina-ai/jina,jina,16915,2000,183,"['neural-search', 'cloud-native', 'deep-learning', 'machine-learning', 'framework', 'vector-search-engine', 'grpc', 'kubernetes', 'microservices', 'semantic-search', 'multimodal', 'crossmodal', 'creative-ai', 'aiops', 'mlops', 'pipeline', 'workflow', 'airflow', 'fastapi', 'generative-ai']",Python,https://docs.jina.ai,jina: 🔮 Build multimodal AI services via cloud native technologies · Neural Search · Generative AI · Cloud Native,jina-ai,2022-12-18,2022-12-17,2020-02-13,148,113.85096153846153,161,2,5,"['jina-ai', 'jinaai']",,23.48,403,374,35,0,109,127,109,403.0,797.0,90.0,2.0,1437,65.50054 -30,web,https://github.com/huge-success/sanic,,,,huge-success/sanic,sanic,16695,1484,414,"['python', 'framework', 'asyncio', 'api-server', 'web', 'web-server', 'web-framework', 'asgi', 'sanic']",Python,https://sanic.dev,sanic: Next generation Python web server/framework | Build fast. Run fast.,huge-success,2022-12-18,2022-12-18,2016-05-26,342,48.73436196830692,325,3,5,"['airbnb', 'packetfabric', 'pytorch']",,2.42,121,91,80,0,14,12,14,121.0,310.0,90.0,2.6,62,59.80018 -228,term,https://github.com/willmcgugan/textual,,,,willmcgugan/textual,textual,16593,476,151,"['terminal', 'python', 'tui', 'rich', 'cli', 'framework']",Python,https://textual.textualize.io/,Textual is a TUI (Text User Interface) framework for Python inspired by modern web development.,willmcgugan,2022-12-18,2022-12-18,2021-04-08,88,187.34032258064516,61,3,5,"['davep.org', 'lastmileict', 'textualize']",,50.9,650,542,21,0,13,10,13,650.0,957.0,90.0,1.5,26,55.84176 -48,viz,https://github.com/matplotlib/matplotlib,,,,matplotlib/matplotlib,matplotlib,16560,6641,587,"['matplotlib', 'data-visualization', 'data-science', 'python', 'qt', 'wx', 'gtk', 'plotting', 'tk', 'hacktoberfest']",Python,https://matplotlib.org/stable/,matplotlib: plotting with Python,matplotlib,2022-12-18,2022-12-18,2011-02-19,617,26.82712335107614,1447,2,5,"['brookhavennationallab', 'microsoft']",,35.75,2020,1442,144,0,7,10,7,2020.0,2716.0,90.0,1.3,7290,76.87204 -31,data,https://github.com/jaidedai/easyocr,,,,jaidedai/easyocr,EasyOCR,16541,2390,284,"['ocr', 'deep-learning', 'crnn', 'pytorch', 'lstm', 'machine-learning', 'scene-text', 'scene-text-recognition', 'optical-character-recognition', 'cnn', 'data-mining', 'image-processing', 'python', 'easyocr', 'information-retrieval']",Python,https://www.jaided.ai,"EasyOCR: Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc.",jaidedai,2022-12-18,2022-11-18,2020-03-14,144,114.64059405940594,110,2,5,"['enveritas', 'jaidedai']",,1.0,86,31,34,0,5,7,5,86.0,125.0,90.0,1.5,122,49.49466 -373,ml-dl,https://github.com/pyg-team/pytorch_geometric,,,,pyg-team/pytorch_geometric,pytorch_geometric,16385,2991,246,"['pytorch', 'geometric-deep-learning', 'graph-neural-networks', 'deep-learning', 'graph-convolutional-networks']",Python,https://pytorch-geometric.readthedocs.io/,pytorch_geometric: Graph Neural Network Library for PyTorch,pyg-team,2022-12-18,2022-12-17,2017-10-06,271,60.36578947368421,351,2,5,"['max-planckinstituteforinformatics,kumo.ai', 'uilab-githubsparcs-kaist']",,16.75,996,819,63,0,4,6,4,995.0,1179.0,90.0,1.2,47,59.25055 -102,ml-ops,https://github.com/spotify/luigi,,,,spotify/luigi,luigi,16191,2352,486,"['python', 'luigi', 'orchestration-framework', 'scheduling', 'hadoop']",Python,,"Luigi is a Python module that helps you build complex pipelines of batch jobs. It handles dependency resolution, workflow management, visualization etc. It also comes with Hadoop support built in. ",spotify,2022-12-18,2022-12-02,2012-09-20,534,30.28781400320684,596,3,5,"['google', 'houzz', 'modallabs']",,0.81,21,10,125,1,2,6,2,21.0,32.0,90.0,1.5,387,55.86213 -426,study,https://github.com/fchollet/deep-learning-with-python-notebooks,,,,fchollet/deep-learning-with-python-notebooks,deep-learning-with-python-notebooks,16168,7914,647,[],Jupyter Notebook,,"deep-learning-with-python-notebooks: Jupyter notebooks for the code samples of the book ""Deep Learning with Python""",fchollet,2022-12-18,2022-02-10,2017-09-05,275,58.61004660797514,6,0,5,[],,0.02,4,1,64,10,0,0,0,4.0,5.0,90.0,1.2,2,16.67302 -144,nlp,https://github.com/openai/gpt-2,,,,openai/gpt-2,gpt-2,15919,4021,584,['paper'],Python,https://openai.com/blog/better-language-models/,"gpt-2: Code for the paper ""Language Models are Unsupervised Multitask Learners""",openai,2022-12-18,2020-12-02,2019-02-11,201,79.19900497512438,16,1,5,['openai'],,0.0,5,1,47,25,0,0,0,5.0,3.0,90.0,0.6,365,27.02593 -109,data,https://github.com/binux/pyspider,,,,binux/pyspider,pyspider,15686,3660,906,"['python', 'crawler']",Python,http://docs.pyspider.org/,pyspider: A Powerful Spider(Web Crawler) System in Python.,binux,2022-12-18,2020-08-02,2014-02-21,460,34.06825938566553,62,0,5,[],,0.0,8,2,107,29,0,1,1,8.0,5.0,90.0,0.6,243,29.95225 -834,util,https://github.com/micropython/micropython,,,,micropython/micropython,micropython,15625,6002,731,"['micropython', 'python', 'embedded', 'microcontroller']",C,https://micropython.org,MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems,micropython,2022-12-18,2022-12-16,2013-12-20,469,33.285149117468045,536,2,5,"['micropython', 'openmv']",,25.54,524,330,110,7,2,6,2,524.0,1537.0,90.0,2.9,17483,68.37545 -873,util,https://github.com/ipython/ipython,,,,ipython/ipython,ipython,15614,4403,775,"['ipython', 'jupyter', 'data-science', 'notebook', 'python', 'repl', 'closember', 'hacktoberfest']",Python,https://ipython.readthedocs.org,"ipython: Official repository for IPython itself. Other repos in the IPython organization contain things like the website, documentation builds, etc.",ipython,2022-12-17,2022-12-12,2010-05-10,658,23.72948328267477,925,4,5,"['amazonwebservices', 'google', 'quansight-labs', 'simularesearchlaboratory']",,5.67,183,91,154,0,0,12,12,183.0,194.0,90.0,1.1,14264,73.36514 -176,debug,https://github.com/cool-rr/pysnooper,1.0,,,cool-rr/pysnooper,PySnooper,15499,932,234,"['python', 'debug', 'debugger', 'introspection', 'logging']",Python,,PySnooper: Never use print for debugging again,cool-rr,2022-12-18,2022-12-11,2019-04-18,191,80.90454884414616,27,2,5,"['japan', 'nvidia']",,0.12,3,1,45,0,0,5,5,3.0,5.0,90.0,1.7,10,37.32871 -493,ml-dl,https://github.com/rasbt/deeplearning-models,,,,rasbt/deeplearning-models,deeplearning-models,15476,3828,598,[],Jupyter Notebook,,"deeplearning-models: A collection of various deep learning architectures, models, and tips",rasbt,2022-12-18,2022-11-16,2019-06-05,184,83.78344934261408,11,4,5,"['alibaba-inc&nanjinguniversity', 'irtsaint-exupéry', 'lightning-ai,universityofwisconsin-madison', 'microsoft']",,1.4,4,3,43,1,0,0,0,4.0,1.0,90.0,0.2,49,33.69158 -41,util,https://github.com/kivy/kivy,,,,kivy/kivy,kivy,15305,2966,619,"['python', 'ui', 'windows', 'ios', 'android', 'macos', 'linux', 'app', 'kivy']",Python,https://kivy.org,"kivy: Open source UI framework written in Python, running on Windows, Linux, macOS, Android and iOS",kivy,2022-12-18,2022-12-18,2010-11-03,632,24.18943328065026,577,5,5,"['cornelluniversity', 'freelance', 'imc.com', 'meltingrocks', 'zencode']",,2.21,117,65,148,0,1,3,1,117.0,187.0,90.0,1.6,6614,67.36366 -469,util,https://github.com/alievk/avatarify-python,,,,alievk/avatarify-python,avatarify-python,15297,2357,306,[],Python,,"avatarify-python: Avatars for Zoom, Skype and other video-conferencing apps.",alievk,2022-12-18,2022-11-11,2020-04-06,141,108.48936170212765,22,3,5,"['entrepreneur', 'occrp,the-markup', 'universityofhildesheim']",,0.02,58,15,33,1,0,1,1,58.0,174.0,90.0,3.0,0,34.2977 -328,security,https://github.com/aquasecurity/trivy,,,,aquasecurity/trivy,trivy,15287,1475,145,"['security', 'security-tools', 'docker', 'containers', 'vulnerability-scanners', 'vulnerability-detection', 'vulnerability', 'golang', 'go', 'kubernetes', 'hacktoberfest', 'devsecops', 'misconfiguration', 'infrastructure-as-code', 'iac']",Go,https://trivy.dev,"trivy: Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more",aquasecurity,2022-12-18,2022-12-18,2019-04-11,192,79.38353115727003,268,0,5,[],,15.67,547,334,45,0,35,28,35,547.0,947.0,90.0,1.7,2726,62.29143 -19,time-series,https://github.com/facebook/prophet,1.0,,,facebook/prophet,prophet,15280,4341,426,"['forecasting', 'r', 'python']",Python,https://facebook.github.io/prophet,prophet: Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth.,facebook,2022-12-18,2022-09-21,2016-11-16,317,48.093525179856115,158,1,5,['canva'],,0.88,88,26,74,3,2,2,2,88.0,95.0,90.0,1.1,1139,48.7755 -36,data,https://github.com/joke2k/faker,,,,joke2k/faker,faker,15170,1708,220,"['python', 'fake', 'testing', 'dataset', 'fake-data', 'test-data', 'test-data-generator']",Python,http://faker.rtfd.org,Faker is a Python package that generates fake data for you.,joke2k,2022-12-17,2022-11-30,2012-11-12,527,28.785578747628083,489,4,5,"['mdxs', 'minted', 'sailoboats', 'selfemployed']",,5.06,76,51,123,1,55,26,55,76.0,136.0,90.0,1.8,6153,69.76525 -604,web,https://github.com/pyscript/pyscript,,,,pyscript/pyscript,pyscript,15152,1110,180,"['python', 'html', 'javascript']",Python,https://community.anaconda.cloud/c/tech-topics/pyscript,pyscript: Home Page: https://pyscript.net Examples: https://pyscript.net/examples,pyscript,2022-12-18,2022-12-17,2022-02-21,43,352.3720930232558,95,1,5,['anaconda'],,12.27,497,367,10,0,4,5,4,497.0,1009.0,90.0,2.0,34,48.57364 -137,nlp,https://github.com/huggingface/datasets,,,,huggingface/datasets,datasets,14923,1942,260,"['nlp', 'datasets', 'metrics', 'evaluation', 'pytorch', 'tensorflow', 'pandas', 'numpy', 'natural-language-processing', 'computer-vision', 'machine-learning', 'deep-learning', 'speech', 'hacktoberfest']",Python,https://huggingface.co/docs/datasets,"datasets: 🤗 The largest hub of ready-to-use datasets for ML models with fast, easy-to-use and efficient data manipulation tools",huggingface,2022-12-18,2022-12-18,2020-03-26,142,104.67034068136273,474,2,5,"['huggingface', 'huggingfaceaiinnova']",,18.37,643,505,33,0,23,25,23,643.0,1331.0,90.0,2.1,2106,69.07616 -74,typing,https://github.com/python/mypy,,,,python/mypy,mypy,14361,2385,223,"['python', 'types', 'typing', 'typechecker', 'linter']",Python,http://www.mypy-lang.org/,mypy: Optional static typing for Python,python,2022-12-18,2022-12-16,2012-12-07,523,27.43640829694323,618,3,5,"['edgedb', 'microsoft', 'openai']",,16.12,944,561,122,0,0,7,7,944.0,2100.0,90.0,2.2,21972,76.83813 -148,data,https://github.com/twintproject/twint,,,,twintproject/twint,twint,14185,2432,310,"['osint', 'twitter', 'python', 'scrape', 'tweets', 'elasticsearch', 'kibana', 'scrape-followers', 'scrape-likes', 'scrape-following', 'twint', 'tweep']",Python,,"twint: An advanced Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API, allowing you to scrape a user's followers, following, Tweets and more while evading most API limitations.",twintproject,2022-12-18,2021-03-02,2017-06-10,288,49.20465807730426,65,2,5,"['maximlevin', 'none']",,0.0,1,1,67,22,0,4,4,1.0,0.0,90.0,0.0,313,33.7623 -124,ml,https://github.com/onnx/onnx,,,,onnx/onnx,onnx,13818,3231,430,"['deep-learning', 'deep-neural-networks', 'neural-network', 'onnx', 'pytorch', 'mxnet', 'tensorflow', 'keras', 'scikit-learn', 'ml', 'machine-learning', 'dnn']",Python,https://onnx.ai/,onnx: Open standard for machine learning interoperability,onnx,2022-12-18,2022-12-15,2017-09-07,275,50.143079315707624,264,2,5,"['microsoft', 'microsoftresearch']",,4.88,267,175,64,0,3,5,3,267.0,461.0,90.0,1.7,32190,66.79335 -104,nlp,https://github.com/rare-technologies/gensim,,,,rare-technologies/gensim,gensim,13801,4298,430,"['gensim', 'topic-modeling', 'information-retrieval', 'machine-learning', 'natural-language-processing', 'nlp', 'data-science', 'python', 'data-mining', 'word2vec', 'word-embeddings', 'neural-network', 'document-similarity', 'word-similarity', 'fasttext']",Python,https://radimrehurek.com/gensim,gensim: Topic Modelling for Humans,rare-technologies,2022-12-18,2022-12-17,2011-02-10,618,22.31108545034642,440,4,5,"['constructor.io,embedika', 'http://xavvy.com', 'profoundnetworks', 'rare-technologies']",,1.77,51,41,144,0,1,6,1,51.0,100.0,90.0,2.0,156,58.49225 -332,sim,https://github.com/unity-technologies/ml-agents,,,,unity-technologies/ml-agents,ml-agents,13800,3635,539,"['reinforcement-learning', 'unity3d', 'deep-learning', 'unity', 'deep-reinforcement-learning', 'neural-networks', 'machine-learning']",C#,https://unity.com/products/machine-learning-agents,ml-agents: The Unity Machine Learning Agents Toolkit (ML-Agents) is an open-source project that enables games and simulations to serve as environments for training intelligent agents using deep reinforcement learning and imitation learning.,unity-technologies,2022-12-18,2022-12-15,2017-09-08,275,50.10373443983403,147,1,5,['ziplineinternational'],,1.85,198,145,64,0,2,26,2,198.0,155.0,90.0,0.8,428,51.65048 -175,util,https://github.com/delgan/loguru,1.0,,,delgan/loguru,loguru,13598,570,119,"['python', 'logging', 'logger', 'log']",Python,,loguru: Python logging made (stupidly) simple,delgan,2022-12-18,2022-12-02,2017-08-15,278,48.763319672131146,41,1,5,"['freelancer,upforhire']",,2.17,92,68,65,1,1,3,1,92.0,198.0,90.0,2.2,258,46.45915 -674,ml-dl,https://github.com/borisdayma/dalle-mini,,,,borisdayma/dalle-mini,dalle-mini,13453,1011,103,[],Python,https://www.craiyon.com,dalle-mini: DALL·E Mini - Generate images from a text prompt,borisdayma,2022-12-18,2022-11-09,2021-07-03,76,176.3501872659176,27,2,5,"['huggingface', 'universityofmaryland,collegepark']",,4.35,13,4,18,1,3,3,3,13.0,32.0,90.0,2.5,121,42.31203 -56,term,https://github.com/pallets/click,,,,pallets/click,click,13290,1299,183,"['python', 'cli', 'click', 'pallets']",Python,https://click.palletsprojects.com,click: Python composable command line interface toolkit,pallets,2022-12-18,2022-11-01,2014-04-24,451,29.430559949383106,333,2,5,"['getsentry', 'sentry']",,1.23,65,24,105,2,5,5,5,65.0,62.0,90.0,1.0,3073,57.20947 -119,ml-ops,https://github.com/mlflow/mlflow,,,,mlflow/mlflow,mlflow,13208,3082,285,"['machine-learning', 'ai', 'ml', 'mlflow', 'apache-spark', 'model-management']",Python,https://mlflow.org,mlflow: Open source platform for the machine learning lifecycle,mlflow,2022-12-18,2022-12-17,2018-06-05,236,55.76357056694813,526,1,5,['databricks'],,22.33,849,680,55,0,13,24,13,850.0,2007.0,90.0,2.4,955,67.32446 -544,ml,https://github.com/aleju/imgaug,,,,aleju/imgaug,imgaug,13184,2333,228,"['image-augmentation', 'machine-learning', 'augmentation', 'deep-learning', 'images', 'affine-transformation', 'polygon', 'heatmap', 'segmentation-maps', 'keypoints', 'bounding-boxes', 'augment-images', 'crop', 'contrast']",Python,http://imgaug.readthedocs.io,imgaug: Image augmentation for machine learning experiments.,aleju,2022-12-18,2020-06-01,2015-07-10,388,33.94189040088268,36,3,5,"['kitware', 'maxplanckinstituteofanimalbehavior', 'mujin']",,0.0,5,1,91,31,0,2,2,5.0,8.0,90.0,1.6,383,37.76871 -408,web,https://github.com/aio-libs/aiohttp,,,,aio-libs/aiohttp,aiohttp,13100,1836,227,"['aiohttp', 'asyncio', 'python', 'http', 'http-server', 'http-client', 'async', 'hacktoberfest']",Python,https://docs.aiohttp.org,aiohttp: Asynchronous HTTP client/server framework for asyncio and Python,aio-libs,2022-12-18,2022-12-12,2013-10-01,480,27.243018419489008,661,3,5,"['ansiblecoreredhatofficial', 'microsoft', 'neu.ro']",,8.35,303,207,112,0,2,26,2,303.0,598.0,90.0,2.0,5253,69.76611 -554,ml-ops,https://github.com/horovod/horovod,,,,horovod/horovod,horovod,12898,2145,332,"['tensorflow', 'uber', 'machine-learning', 'machinelearning', 'mpi', 'baidu', 'deep-learning', 'deeplearning', 'keras', 'pytorch', 'mxnet', 'spark', 'ray']",Python,http://horovod.ai,"horovod: Distributed training framework for TensorFlow, Keras, PyTorch, and Apache MXNet.",horovod,2022-12-18,2022-12-10,2017-08-09,279,46.111338100102145,163,3,5,"['carbonrobotics', 'nvidia', 'uber']",,3.12,128,75,65,0,7,14,7,128.0,269.0,90.0,2.1,93,56.58463 -507,ml,https://github.com/tensorflow/tensor2tensor,,,,tensorflow/tensor2tensor,tensor2tensor,12835,3147,458,"['machine-learning', 'machine-translation', 'deep-learning', 'reinforcement-learning', 'tpu']",Python,,tensor2tensor: Library of deep learning models and datasets designed to make deep learning more accessible and accelerate ML research.,tensorflow,2022-12-18,2022-10-24,2017-06-15,287,44.632389468455045,243,3,5,"['google', 'mimuw', 'universityofillinoisaturbana–champaign']",,0.23,14,2,67,2,0,14,14,14.0,15.0,90.0,1.1,295,50.80974 -812,nlp,https://github.com/gunthercox/chatterbot,,,,gunthercox/chatterbot,ChatterBot,12738,4189,552,"['chatterbot', 'machine-learning', 'chatbot', 'python', 'conversation', 'language', 'bot']",Python,https://chatterbot.readthedocs.io,"ChatterBot is a machine learning, conversational dialog engine for creating chat bots",gunthercox,2022-12-18,2021-06-01,2014-09-28,429,29.68242343541944,103,2,5,"['amazonwebservices', 'wedgwoodwebworks']",,0.0,27,10,100,19,0,10,10,27.0,17.0,90.0,0.6,247,42.31027 -62,viz,https://github.com/plotly/plotly.py,,,,plotly/plotly.py,plotly.py,12630,2251,275,"['python', 'd3', 'plotly', 'plotlyjs', 'webgl', 'dashboard', 'visualization', 'graph-library', 'plotly-dash', 'jupyter-notebook', 'sparkles', 'regl', 'declarative', 'interactive']",Python,https://plotly.com/python/,plotly.py: The interactive graphing library for Python (includes Plotly Express) :sparkles:,plotly,2022-12-18,2022-10-27,2013-11-21,473,26.669683257918553,201,3,5,"['hextechnologies', 'netflix', 'plotly']",,3.52,166,40,110,2,9,15,9,166.0,236.0,90.0,1.4,2044,60.48519 -39,jupyter,https://github.com/jupyterlab/jupyterlab,,,,jupyterlab/jupyterlab,jupyterlab,12515,2511,311,"['jupyterlab', 'jupyter']",TypeScript,https://jupyterlab.readthedocs.io/,JupyterLab computational environment.,jupyterlab,2022-12-18,2022-12-16,2016-06-03,341,36.65481171548117,517,5,5,"['coiled', 'databricks', 'jupyterquantstack', 'mongodb', 'quantstack']",,15.75,777,555,80,0,53,5006,53,777.0,1800.0,90.0,2.3,5103,76.85596 -127,ml,https://github.com/microsoft/nni,,,,microsoft/nni,nni,12327,1729,282,"['automl', 'deep-learning', 'neural-architecture-search', 'hyperparameter-optimization', 'distributed', 'bayesian-optimization', 'automated-machine-learning', 'machine-learning', 'machine-learning-algorithms', 'data-science', 'tensorflow', 'pytorch', 'neural-network', 'deep-neural-network', 'model-compression', 'feature-engineering', 'nas', 'python', 'hyperparameter-tuning', 'mlops']",Python,https://nni.readthedocs.io,"nni: An open source AutoML toolkit for automate machine learning lifecycle, including feature engineering, neural architecture search, model compression and hyper-parameter tuning.",microsoft,2022-12-18,2022-12-16,2018-06-01,237,51.918772563176894,185,1,5,['microsoft'],,7.79,212,115,55,0,6,10,6,213.0,379.0,90.0,1.8,186,55.62039 -152,nlp,https://github.com/flairnlp/flair,,,,flairnlp/flair,flair,12300,1977,206,"['pytorch', 'nlp', 'named-entity-recognition', 'sequence-labeling', 'semantic-role-labeling', 'word-embeddings', 'natural-language-processing', 'machine-learning']",Python,,flair: A very simple framework for state-of-the-art Natural Language Processing (NLP),flairnlp,2022-12-18,2022-12-18,2018-06-11,236,52.11864406779661,235,3,5,"['humboldtuniversität', 'rasahq', 'researchindustrialsystemsengineering(rise)']",,11.98,195,127,55,0,1,5,1,195.0,260.0,90.0,1.3,254,57.83871 -281,util,https://github.com/squidfunk/mkdocs-material,,,,squidfunk/mkdocs-material,mkdocs-material,12080,2664,110,"['mkdocs', 'theme', 'documentation', 'material-design', 'template', 'static']",TypeScript,https://squidfunk.github.io/mkdocs-material/,mkdocs-material: Documentation that simply works,squidfunk,2022-12-18,2022-12-18,2016-01-28,359,33.59555025824394,173,2,5,"['stylezen', 'trimble-oss']",,14.37,245,232,84,0,58,43,58,245.0,619.0,90.0,2.5,13300,70.98461 -575,perf,https://github.com/pybind/pybind11,,,,pybind/pybind11,pybind11,11971,1736,247,"['python', 'bindings']",C++,https://pybind11.readthedocs.io/,pybind11: Seamless operability between C++11 and Python,pybind,2022-12-18,2022-12-16,2015-07-05,389,30.762481644640236,312,3,5,"['epfl', 'lumicks', 'princetonuniversity']",,5.27,230,176,91,0,5,7,5,230.0,886.0,90.0,3.9,1836,67.64555 -52,graph,https://github.com/networkx/networkx,,,,networkx/networkx,networkx,11960,2803,276,"['python', 'complex-networks', 'graph-theory', 'graph-algorithms', 'graph-analysis', 'graph-generation', 'graph-visualization']",Python,https://networkx.org,networkx: Network Analysis in Python,networkx,2022-12-18,2022-12-15,2010-09-06,641,18.658346333853356,636,1,5,['ucberkeley'],,9.06,390,241,150,0,16,7,16,390.0,500.0,90.0,1.3,957,65.74663 -314,util,https://github.com/samuelcolvin/pydantic,,,,samuelcolvin/pydantic,pydantic,11924,1113,88,"['validation', 'parsing', 'json-schema', 'python37', 'python38', 'pydantic', 'python39', 'python', 'hints', 'python310', 'python311']",Python,https://docs.pydantic.dev,pydantic: Data parsing and validation using Python type hints,samuelcolvin,2022-12-18,2022-12-15,2017-05-03,293,40.59727626459144,333,3,5,"['pydantic', 'pyupio', 'toucantoco']",,5.4,340,204,68,0,11,17,11,340.0,668.0,90.0,2.0,1774,66.6183 -114,nlp,https://github.com/allenai/allennlp,,,,allenai/allennlp,allennlp,11332,2231,280,"['pytorch', 'nlp', 'natural-language-processing', 'deep-learning', 'data-science', 'python']",Python,http://www.allennlp.org,"allennlp: An open-source NLP research library, built on PyTorch.",allenai,2022-12-18,2022-11-22,2017-05-15,292,38.80821917808219,265,1,5,['microsoftsemanticmachines'],,1.6,36,32,68,1,6,12,6,36.0,98.0,90.0,2.7,331,53.48101 -425,ml-dl,https://github.com/albumentations-team/albumentations,,,,albumentations-team/albumentations,albumentations,11325,1447,124,"['image-augmentation', 'machine-learning', 'augmentation', 'deep-learning', 'detection', 'fast-augmentations', 'segmentation', 'image-segmentation', 'image-processing', 'image-classification', 'python', 'object-detection']",Python,https://albumentations.ai,albumentations: Fast image augmentation library and an easy-to-use wrapper around other libraries. Documentation: https://albumentations.ai/docs/ Paper about the library: https://www.mdpi.com/2078-2489/11/2/125,albumentations-team,2022-12-18,2022-11-24,2018-06-06,236,47.84248642124321,123,2,5,"['deci-ai', 'ternaus.com']",,1.29,95,40,55,1,3,4,3,95.0,133.0,90.0,1.4,24,45.96912 -105,nlp,https://github.com/nltk/nltk,,,,nltk/nltk,nltk,11321,2671,469,"['nltk', 'python', 'nlp', 'natural-language-processing', 'machine-learning']",Python,https://www.nltk.org,NLTK Source,nltk,2022-12-18,2022-12-13,2009-09-07,693,16.336219336219337,435,2,5,"['googleresearch', 'zytedata,scrapinghub']",,2.29,66,52,162,0,0,3,3,66.0,154.0,90.0,2.3,4758,64.34187 -346,viz,https://github.com/gradio-app/gradio,,,,gradio-app/gradio,gradio,11301,717,88,"['machine-learning', 'models', 'ui', 'ui-components', 'interface', 'python', 'data-science', 'data-visualization', 'deep-learning', 'data-analysis', 'gradio', 'gradio-interface', 'python-notebook', 'deploy']",HTML,http://www.gradio.app,gradio: Create UIs for your machine learning model in Python in 3 minutes,gradio-app,2022-12-18,2022-12-17,2018-12-19,208,54.14579055441479,118,1,5,['pennstate'],,29.58,698,489,49,0,75,19,75,698.0,1859.0,90.0,2.7,794,64.23435 -242,ml,https://github.com/deepmind/deepmind-research,,,,deepmind/deepmind-research,deepmind-research,11213,2300,325,[],Jupyter Notebook,,deepmind-research: This repository contains implementations and illustrative code to accompany DeepMind publications,deepmind,2022-12-18,2022-10-24,2019-01-15,204,54.73570432357043,91,1,5,['deepmind'],,0.77,37,6,48,2,0,0,0,37.0,26.0,90.0,0.7,7,33.55297 -320,gui,https://github.com/pysimplegui/pysimplegui,1.0,,,pysimplegui/pysimplegui,PySimpleGUI,10984,1632,220,"['pysimplegui', 'gui-framework', 'python', 'tkinter', 'tkinter-python', 'tkinter-gui', 'wxpython', 'pyside2', 'qt', 'qt-gui', 'remi', 'gui', 'gui-window', 'gui-programming', 'datavisualization', 'games', 'beginner-friendly', 'systemtray', 'python-gui', 'user-interface']",Python,,"PySimpleGUI: Launched in 2018. It's 2022 and PySimpleGUI is actively developed & supported. Create complex windows simply. Supports tkinter, Qt, WxPython, Remi (in browser). Create GUI applications trivially with a full set of widgets. Multi-Window applications are also simple. 3.4 to 3.11 supported. 325+ Demo programs & Cookbook for rapid start. Extensive documentation. Examples for Machine Learning(OpenCV Integration, Chatterbot), Rainmeter-like Desktop Widgets, Matplotlib + Pyplot integration, add GUI to command line scripts, PDF & Image Viewer. For both beginning and advanced programmers. docs - PySimpleGUI.org GitHub - PySimpleGUI.com. The Minecraft of GUIs - simple to complex... does them all.",pysimplegui,2022-12-18,2022-12-17,2018-07-11,231,47.40320591861899,18,2,5,"['netperfect', 'pysimplegui']",,9.48,242,202,54,0,5,1,5,242.0,689.0,90.0,2.8,67,51.24711 -190,ml-dl,https://github.com/dmlc/dgl,,,,dmlc/dgl,dgl,10871,2643,174,"['deep-learning', 'graph-neural-networks']",Python,http://dgl.ai,"dgl: Python package built to ease deep learning on graph, on top of existing DL frameworks.",dmlc,2022-12-18,2022-12-18,2018-04-20,243,44.657863849765256,240,5,5,"['aws', 'awsailabshanghai', 'awsshanghai', 'newyorkuniversity', 'tensorchord']",,11.92,617,452,57,0,7,6,7,615.0,3148.0,90.0,5.1,47,65.24854 -122,data,https://github.com/iterative/dvc,,,,iterative/dvc,dvc,10804,1010,136,"['data-science', 'machine-learning', 'reproducibility', 'data-version-control', 'git', 'developer-tools', 'collaboration', 'ai', 'python', 'hacktoberfest']",Python,https://dvc.org,dvc: 🦉Data Version Control | Git for Data & Models | ML Experiments Management,iterative,2022-12-18,2022-12-15,2017-03-04,302,35.74102079395085,276,2,5,"['iterative', 'iterative.ai']",,19.79,520,371,70,0,54,73,54,519.0,1066.0,90.0,2.1,3399,70.22249 -1,data,https://github.com/apache/arrow,,,,apache/arrow,arrow,10801,2663,345,['arrow'],C++,https://arrow.apache.org/,arrow: Apache Arrow is a multi-language toolbox for accelerated data interchange and in-memory processing,apache,2022-12-18,2022-12-18,2016-02-17,356,30.279134961954345,976,4,5,"['clear-code', 'quantco', 'voltron-data/ursa-computing', 'voltrondata']",,41.44,1046,764,83,0,0,10,10,1046.0,5523.0,90.0,5.3,15514,82.94679 -120,ml-ops,https://github.com/prefecthq/prefect,,,,prefecthq/prefect,prefect,10681,1084,152,"['python', 'workflow', 'data-engineering', 'data-science', 'workflow-engine', 'prefect', 'infrastructure', 'ml-ops', 'data-ops', 'automation', 'orchestration', 'orion', 'data', 'observability', 'pipeline']",Python,https://prefect.io,prefect: The easiest way to coordinate your dataflow,prefecthq,2022-12-18,2022-12-17,2018-06-29,233,45.75703794369645,100,2,5,"['prefect', 'prefecthq']",,131.9,1305,920,54,0,47,36,47,1308.0,2629.0,90.0,2.0,362,67.07832 -192,template,https://github.com/tiangolo/full-stack-fastapi-postgresql,,,,tiangolo/full-stack-fastapi-postgresql,full-stack-fastapi-postgresql,10628,1932,172,"['python', 'python3', 'json', 'json-schema', 'docker', 'postgresql', 'frontend', 'backend', 'fastapi', 'traefik', 'letsencrypt', 'swagger', 'celery', 'jwt', 'vue', 'vuex', 'cookiecutter', 'openapi', 'openapi3', 'pgadmin']",Python,,"full-stack-fastapi-postgresql: Full stack, modern web application generator. Using FastAPI, PostgreSQL as database, Docker, automatic HTTPS and more.",tiangolo,2022-12-18,2020-06-05,2019-02-23,199,53.33046594982079,17,4,5,"['cortexia', 'formlogic', 'intelliatherapeutics', 'messagg']",,0.0,152,51,46,31,0,2,2,152.0,84.0,90.0,0.6,44,33.80779 -79,ml,https://github.com/scipy/scipy,,,,scipy/scipy,scipy,10608,4514,341,"['python', 'scipy', 'algorithms', 'closember', 'scientific-computing']",Python,https://scipy.org,SciPy library main repository,scipy,2022-12-18,2022-12-17,2011-03-09,614,17.25679758308157,1401,1,5,['quansight'],,30.5,1144,738,143,0,13,13,13,1144.0,2983.0,90.0,2.6,7282,76.57437 -11,perf,https://github.com/dask/dask,,,,dask/dask,dask,10578,1575,216,"['dask', 'python', 'pydata', 'numpy', 'pandas', 'scikit-learn', 'scipy']",Python,https://dask.org,dask: Parallel computing with task scheduling,dask,2022-12-18,2022-12-16,2015-01-04,415,25.48038540949759,570,2,5,"['coiled', 'voltrondata']",,11.13,346,211,97,0,0,32,32,346.0,856.0,90.0,2.5,3107,71.77885 -218,ml,https://github.com/spotify/annoy,,,,spotify/annoy,annoy,10574,1066,325,"['c-plus-plus', 'python', 'nearest-neighbor-search', 'locality-sensitive-hashing', 'approximate-nearest-neighbor-search', 'golang', 'lua']",C++,,annoy: Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk,spotify,2022-12-18,2022-10-27,2013-04-01,507,20.8560157790927,82,1,5,['google'],,0.12,17,9,118,2,1,3,1,17.0,28.0,90.0,1.6,66,41.24694 -857,viz,https://github.com/visgl/deck.gl,,,,visgl/deck.gl,deck.gl,10477,1892,1730,"['webgl', 'data-visualization', 'javascript', 'visualization', 'python', 'geospatial-analysis', 'maps']",JavaScript,https://deck.gl,deck.gl: WebGL2 powered visualization framework,visgl,2022-12-18,2022-12-16,2015-12-15,365,28.636860601327605,209,1,5,['foursquare'],,7.31,185,127,85,0,59,74,59,186.0,250.0,90.0,1.3,273,59.14641 -718,perf,https://github.com/pola-rs/polars,1.0,,,pola-rs/polars,polars,10407,553,104,"['dataframe-library', 'dataframe', 'dataframes', 'rust', 'arrow', 'python', 'out-of-core']",Rust,https://pola.rs/,"polars: Fast multi-threaded, hybrid-streaming DataFrame library in Rust | Python | Node.js",pola-rs,2022-12-18,2022-12-18,2020-05-13,135,76.68315789473684,141,1,5,['aertslab'],,39.65,1083,893,32,0,26,129,26,1083.0,1784.0,90.0,1.6,102,59.74475 -72,util,https://github.com/python-pillow/pillow,,,,python-pillow/pillow,Pillow,10374,1957,218,"['c', 'cross-platform', 'pil', 'pillow', 'python', 'python-3', 'image-processing', 'image']",Python,https://python-pillow.org,Pillow: The friendly PIL fork (Python Imaging Library),python-pillow,2022-12-18,2022-12-16,2012-07-24,542,19.11,420,3,5,"['aclark.net', 'nordsoftware', 'uploadcare']",,19.37,361,295,127,0,6,8,6,361.0,568.0,90.0,1.6,26551,74.1838 -110,ml-interpretability,https://github.com/marcotcr/lime,,,,marcotcr/lime,lime,10294,1693,272,[],JavaScript,,Lime: Explaining the predictions of any machine learning classifier,marcotcr,2022-12-16,2021-07-29,2016-03-15,352,29.17327935222672,61,2,5,"['related-sciences', 'system1']",,0.0,25,10,82,17,0,3,3,25.0,19.0,90.0,0.8,145,38.3514 -427,ml-dl,https://github.com/facebookresearch/detr,,,,facebookresearch/detr,detr,10233,1866,146,[],Python,,detr: End-to-End Object Detection with Transformers,facebookresearch,2022-12-18,2022-03-07,2020-05-26,133,76.44717182497332,25,4,5,"['axera-tech', 'facebookaireseach', 'facebookairesearch', 'mtsai']",,0.02,48,13,31,10,0,0,0,48.0,51.0,90.0,1.1,66,34.74809 -50,viz,https://github.com/mwaskom/seaborn,,,,mwaskom/seaborn,seaborn,10172,1678,252,"['python', 'data-visualization', 'data-science', 'matplotlib', 'pandas']",Python,https://seaborn.pydata.org,seaborn: Statistical data visualization in Python,mwaskom,2022-12-18,2022-12-18,2012-06-18,548,18.562043795620436,181,3,5,"['bridgebioanalytics', 'coiled', 'universityofbritishcolumbia']",,4.69,146,116,128,0,8,3,8,146.0,305.0,90.0,2.1,522,62.58486 -166,sim,https://github.com/bulletphysics/bullet3,,,,bulletphysics/bullet3,bullet3,10043,2620,405,"['simulation', 'robotics', 'kinematics', 'virtual-reality', 'reinforcement-learning', 'computer-animation', 'game-development', 'simulator', 'pybullet']",C++,http://bulletphysics.org,"bullet3: Bullet Physics SDK: real-time collision detection and multi-physics simulation for VR, games, visual effects, robotics, machine learning etc.",bulletphysics,2022-12-18,2022-09-25,2011-04-12,609,16.467791051768565,299,1,5,['ucla'],,1.69,55,14,142,3,2,2,2,55.0,34.0,90.0,0.6,2098,51.52757 -173,term,https://github.com/tiangolo/typer,1.0,,,tiangolo/typer,typer,9986,399,66,"['cli', 'click', 'python3', 'typehints', 'terminal', 'shell', 'python', 'typer']",Python,https://typer.tiangolo.com/,"Typer, build great CLIs. Easy to code. Based on Python type hints.",tiangolo,2022-12-18,2022-12-16,2019-12-24,155,64.07149404216315,32,1,5,['lofidynamics'],,2.75,183,93,36,0,6,8,6,183.0,342.0,90.0,1.9,381,49.55948 -24,ml,https://github.com/google/dopamine,,,,google/dopamine,dopamine,9956,1337,440,"['rl', 'ml', 'ai', 'google', 'tensorflow']",Jupyter Notebook,https://github.com/google/dopamine,Dopamine is a research framework for fast prototyping of reinforcement learning algorithms. ,google,2022-12-16,2022-11-28,2018-07-26,229,43.367766023646546,15,1,5,['google'],,0.44,6,2,54,1,0,0,0,6.0,17.0,90.0,2.8,27,33.55339 -60,pandas,https://github.com/pandas-profiling/pandas-profiling,1.0,,,pandas-profiling/pandas-profiling,pandas-profiling,9944,1413,150,"['pandas-profiling', 'pandas-dataframe', 'statistics', 'jupyter-notebook', 'exploration', 'data-science', 'python', 'pandas', 'machine-learning', 'deep-learning', 'exploratory-data-analysis', 'eda', 'data-quality', 'html-report', 'data-exploration', 'data-analysis', 'jupyter', 'big-data-analytics', 'data-profiling', 'hacktoberfest']",Python,https://pandas-profiling.ydata.ai,pandas-profiling: Create HTML profiling reports from pandas DataFrame objects,pandas-profiling,2022-12-18,2022-12-16,2016-01-09,362,27.44794952681388,105,1,5,['metamaze'],,3.54,196,144,84,0,4,18,4,196.0,260.0,90.0,1.3,60,50.62193 -87,math,https://github.com/sympy/sympy,1.0,,,sympy/sympy,sympy,9887,3794,283,"['python', 'math', 'computer-algebra', 'science', 'hacktoberfest']",Python,https://sympy.org/,sympy: A computer algebra system written in pure Python,sympy,2022-12-18,2022-12-17,2010-04-30,659,14.993284228769497,1186,2,5,"['gsitechnology', 'quansight']",,40.35,914,247,154,0,8,7,8,914.0,1859.0,90.0,2.0,7939,76.25086 -645,util,https://github.com/pyinstaller/pyinstaller,,,,pyinstaller/pyinstaller,pyinstaller,9831,1852,233,"['python', 'python-3', 'bundle', 'package', 'pyinstaller', 'python-to-exe', 'py2exe', 'py2app']",Python,http://www.pyinstaller.org,pyinstaller: Freeze (package) Python programs into stand-alone executables,pyinstaller,2022-12-18,2022-12-18,2011-11-23,577,17.01706231454006,443,1,5,['develers.r.l.'],,7.4,6291,6242,135,0,14,5,14,6291.0,670.0,90.0,0.1,2287,66.502 -805,web,https://github.com/encode/httpx,,,,encode/httpx,httpx,9786,640,106,"['python', 'http', 'trio', 'asyncio']",Python,https://www.python-httpx.org/,httpx: A next generation HTTP client for Python. 🦋,encode,2022-12-18,2022-12-12,2019-04-04,193,50.5549815498155,182,2,5,"['elastic', 'encodeoss']",,3.13,130,103,45,0,5,20,5,130.0,242.0,90.0,1.9,2114,59.60811 -536,profiling,https://github.com/bloomberg/memray,1.0,,,bloomberg/memray,memray,9678,267,54,"['memory', 'memory-leak', 'memory-leak-detection', 'memory-profiler', 'profiler', 'python', 'python3', 'hacktoberfest']",Python,https://bloomberg.github.io/memray/,Memray is a memory profiler for Python,bloomberg,2022-12-18,2022-12-09,2022-04-08,36,265.67058823529413,22,2,5,"['bloomberg', 'bloombergpythoninfrastructure']",,6.85,60,47,8,0,9,17,9,60.0,73.0,90.0,1.2,3,38.40438 -22,nlp,https://github.com/facebookresearch/parlai,,,,facebookresearch/parlai,ParlAI,9672,1974,290,[],Python,https://parl.ai,ParlAI: A framework for training and evaluating AI models on a variety of openly available dialogue datasets.,facebookresearch,2022-12-18,2022-12-13,2017-04-24,295,32.7864406779661,204,2,5,"['facebookairesearch', 'facebookresearch']",,5.13,177,138,69,0,3,7,3,177.0,276.0,90.0,1.6,1804,60.56503 -38,jupyter,https://github.com/jupyter/notebook,,,,jupyter/notebook,notebook,9629,3983,320,"['closember', 'jupyter', 'jupyter-notebook', 'notebook']",Jupyter Notebook,https://jupyter-notebook.readthedocs.io/,notebook: Jupyter Interactive Notebook,jupyter,2022-12-17,2022-12-11,2015-04-09,401,23.97829953753113,622,4,5,"['amazonwebservices', 'google', 'quansight-labs', 'simularesearchlaboratory']",,9.38,222,148,94,0,19,30,19,222.0,373.0,90.0,1.7,97078,78.16955 -71,testing,https://github.com/pytest-dev/pytest,,,,pytest-dev/pytest,pytest,9601,2216,195,"['unit-testing', 'test', 'testing', 'python', 'hacktoberfest']",Python,https://pytest.org,"pytest: The pytest framework makes it easy to write small tests, yet scales to support complex functional testing",pytest-dev,2022-12-18,2022-12-17,2015-06-15,392,24.492346938775512,842,4,5,"['esss', 'freelancer,upforhire', 'merlinux', 'redhatinsights']",,7.56,302,217,91,0,7,24,7,302.0,631.0,90.0,2.1,42749,76.55276 -653,profiling,https://github.com/benfred/py-spy,,,,benfred/py-spy,py-spy,9464,344,107,"['profiler', 'python', 'performance-analysis', 'profiling']",Rust,,py-spy: Sampling profiler for Python programs,benfred,2022-12-17,2022-12-09,2018-08-01,228,41.3791380387258,31,1,5,['nvidia'],,0.58,29,10,53,0,3,7,3,29.0,27.0,90.0,0.9,156,41.80836 -225,util,https://github.com/pyodide/pyodide,,,,pyodide/pyodide,pyodide,9408,616,124,"['python', 'webassembly']",Python,https://pyodide.org/en/stable/,Pyodide is a Python distribution for the browser and Node.js based on WebAssembly,pyodide,2022-12-18,2022-12-18,2018-02-23,251,37.41818181818182,159,2,5,"['microsoft', 'mitmathdepartment']",,14.48,288,200,59,0,15,13,15,289.0,724.0,90.0,2.5,60,59.33072 -412,util,https://github.com/pre-commit/pre-commit,,,,pre-commit/pre-commit,pre-commit,9355,689,82,"['git', 'pre-commit', 'python', 'linter', 'refactoring']",Python,https://pre-commit.com,pre-commit: A framework for managing and maintaining multi-language pre-commit hooks.,pre-commit,2022-12-18,2022-12-13,2014-03-13,457,20.444895410552608,146,2,5,"['twitter', 'yelp']",,2.08,155,139,107,0,5,20,5,155.0,361.0,90.0,2.3,1348,60.66502 -315,gui,https://github.com/hoffstadt/dearpygui,,,,hoffstadt/dearpygui,DearPyGui,9255,496,136,"['cpp', 'python', 'imgui', 'toolkit', 'native', 'tools', 'gui', 'graphics', 'macos', 'linux', 'ui', 'python-gui', 'cross-platform', 'windows', 'dearpygui']",C++,https://dearpygui.readthedocs.io/en/latest/,DearPyGui: Dear PyGui: A fast and powerful Graphical User Interface Toolkit for Python with minimal dependencies,hoffstadt,2022-12-18,2022-12-14,2020-05-28,133,69.28877005347593,51,2,5,"['benoitpremiumthreading', 'metecs']",,3.42,131,57,31,0,10,9,10,131.0,131.0,90.0,1.0,64,48.22041 -155,data,https://github.com/s0md3v/photon,,,,s0md3v/photon,Photon,9231,1359,324,"['crawler', 'spider', 'python', 'osint', 'information-gathering']",Python,,Photon: Incredibly fast crawler designed for OSINT.,s0md3v,2022-12-18,2022-03-16,2018-03-30,246,37.45913043478261,21,1,5,['na'],,0.02,3,0,57,9,0,4,4,3.0,2.0,90.0,0.7,52,29.48631 -655,util,https://github.com/magicstack/uvloop,,,,magicstack/uvloop,uvloop,9071,525,226,"['asyncio', 'async-await', 'async', 'high-performance', 'libuv', 'python', 'python-3', 'event-loop', 'networking', 'async-python']",Cython,,uvloop: Ultra fast asyncio event loop.,magicstack,2022-12-18,2022-09-14,2015-11-08,371,24.44072363356428,55,1,5,['edgedb'],,0.6,26,6,87,3,1,11,1,26.0,37.0,90.0,1.4,569,42.85418 -238,data,https://github.com/tiangolo/sqlmodel,1.0,,,tiangolo/sqlmodel,sqlmodel,9061,385,118,"['python', 'sql', 'sqlalchemy', 'pydantic', 'fastapi', 'json', 'json-schema']",Python,https://sqlmodel.tiangolo.com/,"sqlmodel: SQL databases in Python, designed for simplicity, compatibility, and robustness.",tiangolo,2022-12-18,2022-12-16,2021-08-24,68,131.59128630705393,54,0,5,[],,2.98,137,67,16,0,3,5,3,137.0,308.0,90.0,2.2,42,40.84357 -142,nlp,https://github.com/ukplab/sentence-transformers,,,,ukplab/sentence-transformers,sentence-transformers,9012,1796,116,[],Python,https://www.SBERT.net,sentence-transformers: Multilingual Sentence & Image Embeddings with BERT,ukplab,2022-12-18,2022-11-28,2019-07-24,177,50.71061093247589,106,2,5,"['huggingface', 'telekom']",,2.02,141,44,41,1,3,9,3,141.0,158.0,90.0,1.1,118,47.89295 -398,web,https://github.com/falconry/falcon,,,,falconry/falcon,falcon,8978,898,266,"['python', 'framework', 'rest', 'microservices', 'web', 'api', 'http', 'wsgi', 'asgi', 'api-rest', 'hacktoberfest-accepted', 'hacktoberfest2022', 'hacktoberfest']",Python,https://falcon.readthedocs.io/en/stable/,"falcon: The no-magic web data plane API and microservices framework for Python developers, with a focus on reliability, correctness, and performance at scale.",falconry,2022-12-17,2022-12-02,2012-12-06,523,17.147612551159618,195,2,5,"['centurylink', 'liquidweb']",,1.27,43,26,122,1,8,7,8,43.0,67.0,90.0,1.6,39,50.91137 -157,util,https://github.com/pallets/jinja,,,,pallets/jinja,jinja,8940,1529,252,"['python', 'template-engine', 'jinja', 'jinja2', 'templates', 'pallets']",Python,https://jinja.palletsprojects.com,jinja: A very fast and expressive template engine.,pallets,2022-12-18,2022-11-01,2010-10-17,635,14.07557354925776,302,3,5,"['cern/indico', 'getsentry', 'sentry']",,1.25,52,31,148,2,3,4,3,52.0,48.0,90.0,0.9,16433,60.77525 -371,viz,https://github.com/marceloprates/prettymaps,,,,marceloprates/prettymaps,prettymaps,8935,428,80,"['matplotlib', 'jupyter-notebook', 'python', 'generative-art', 'cartography', 'maps', 'openstreetmap']",Jupyter Notebook,,"prettymaps: A small set of Python functions to draw pretty maps from OpenStreetMap data. Based on osmnx, matplotlib and shapely libraries.",marceloprates,2022-12-17,2022-11-16,2021-03-05,93,95.63455657492355,15,1,5,['up42'],,0.52,11,6,22,1,0,2,2,11.0,7.0,90.0,0.6,14,29.63539 -517,typing,https://github.com/microsoft/pyright,,,,microsoft/pyright,pyright,8923,644,79,[],Python,,pyright: Static type checker for Python,microsoft,2022-12-18,2022-12-18,2019-03-12,196,45.327285921625545,83,2,5,"['microsoft', 'microsoftcorp.']",,24.56,372,356,46,0,87,97,87,370.0,924.0,90.0,2.5,1392,64.92175 -244,util,https://github.com/aws/serverless-application-model,,,,aws/serverless-application-model,serverless-application-model,8855,2275,307,"['serverless', 'aws', 'lambda', 'aws-sam', 'sam', 'sam-specification', 'serverless-applications', 'serverless-application-model']",Python,https://aws.amazon.com/serverless/sam,serverless-application-model: The AWS Serverless Application Model (AWS SAM) transform is a AWS CloudFormation macro that transforms SAM templates into CloudFormation templates.,aws,2022-12-17,2022-12-16,2016-10-10,323,27.41486068111455,255,2,5,"['aws', 'leland']",,6.06,467,322,75,0,13,10,13,467.0,343.0,90.0,0.7,372,60.47681 -132,ml,https://github.com/epistasislab/tpot,,,,epistasislab/tpot,tpot,8846,1504,291,"['machine-learning', 'python', 'data-science', 'automl', 'automation', 'scikit-learn', 'hyperparameter-optimization', 'model-selection', 'parameter-tuning', 'automated-machine-learning', 'random-forest', 'gradient-boosting', 'feature-engineering', 'aiml', 'alzheimer', 'alzheimers', 'nia', 'u01ag066833', 'ag066833', 'adsp']",Python,http://epistasislab.github.io/tpot/,tpot: A Python Automated Machine Learning tool that optimizes machine learning pipelines using genetic programming.,epistasislab,2022-12-18,2022-07-29,2015-11-03,371,23.788705339992315,112,3,5,"[""children'shospitalofphiladelphia"", 'eindhovenuniversityoftechnology', 'usc']",,0.35,15,4,87,5,0,4,4,15.0,13.0,90.0,0.9,20,41.04155 -780,diffusion,https://github.com/huggingface/diffusers,,,,huggingface/diffusers,diffusers,8780,1520,99,"['deep-learning', 'diffusion', 'image-generation', 'pytorch', 'score-based-generative-modeling', 'image2image', 'text2image', 'stable-diffusion', 'hacktoberfest']",Python,https://huggingface.co/docs/diffusers,🤗 Diffusers: State-of-the-art diffusion models for image and audio generation in PyTorch,huggingface,2022-12-18,2022-12-18,2022-05-30,29,302.7586206896552,159,1,5,['huggingface'],,26.25,1315,1033,7,0,23,49,23,1315.0,5140.0,90.0,3.9,5139,65.64144 -5,web,https://github.com/benoitc/gunicorn,,,,benoitc/gunicorn,gunicorn,8684,1619,234,"['http-server', 'http', 'python', 'wsgi-server', 'wsgi']",Python,http://www.gunicorn.org,"gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications.",benoitc,2022-12-18,2022-12-03,2009-11-30,681,12.751835535976506,380,3,5,"['confluentinc', 'enkimultimedia', 'nytimes']",,0.5,167,90,159,0,0,7,7,167.0,184.0,90.0,1.1,2114,62.91664 -134,ml-dl,https://github.com/keras-team/autokeras,,,,keras-team/autokeras,autokeras,8681,1385,306,"['automl', 'neural-architecture-search', 'automated-machine-learning', 'python', 'deep-learning', 'machine-learning', 'autodl', 'tensorflow', 'keras']",Python,http://autokeras.com/,autokeras: AutoML library for deep learning,keras-team,2022-12-18,2022-12-15,2017-11-19,265,32.74084051724138,139,2,5,"['keras-teamtensorflowgooglers', 'preligens']",,1.6,47,28,62,0,4,11,4,47.0,42.0,90.0,0.9,3,43.91307 -92,ml-ops,https://github.com/uber/ludwig,,,,uber/ludwig,ludwig,8670,1024,181,"['deep-learning', 'deeplearning', 'deep', 'learning', 'machine-learning', 'machinelearning', 'machine', 'natural-language-processing', 'natural-language', 'computer-vision', 'data-centric', 'data-science', 'python', 'pytorch', 'neural-network', 'ml', 'datascience']",Python,http://ludwig.ai,ludwig: Data-centric declarative deep learning framework,uber,2022-12-18,2022-12-17,2018-12-27,207,41.768754301445284,130,2,5,"['predibase', 'uber']",,15.54,383,334,48,0,16,9,16,383.0,479.0,90.0,1.3,54,57.08434 -759,diffusion,https://github.com/invoke-ai/invokeai,,,,invoke-ai/invokeai,InvokeAI,8507,960,102,"['ai-art', 'artificial-intelligence', 'generative-art', 'image-generation', 'img2img', 'inpainting', 'latent-diffusion', 'linux', 'macos', 'outpainting', 'txt2img', 'windows', 'stable-diffusion']",Jupyter Notebook,https://invoke-ai.github.io/InvokeAI/,"InvokeAI: This version of Stable Diffusion features a slick WebGUI, an interactive command-line script that combines text2img and img2img functionality in a ""dream bot"" style interface, and multiple features and other enhancements. For more info, see the website link below.",invoke-ai,2022-12-18,2022-12-18,2022-08-17,17,480.23387096774195,146,2,5,"['ares-consulting', 'ontarioinstituteforcancerresearch']",,34.5,1312,1023,4,0,12,195,12,1312.0,5106.0,90.0,3.9,230,60.02869 -523,ml-dl,https://github.com/lucidrains/dalle2-pytorch,,,,lucidrains/dalle2-pytorch,DALLE2-pytorch,8496,692,113,"['artificial-intelligence', 'deep-learning', 'text-to-image']",Python,,"DALLE2-pytorch: Implementation of DALL-E 2, OpenAI's updated text-to-image synthesis neural network, in Pytorch",lucidrains,2022-12-18,2022-12-15,2022-04-07,36,232.3125,16,0,5,[],,11.19,32,18,8,0,332,514,332,32.0,52.0,90.0,1.6,50,38.91026 -151,nlp,https://github.com/sloria/textblob,,,,sloria/textblob,TextBlob,8388,1100,270,"['nlp', 'nltk', 'pattern', 'python', 'python-3', 'python-2', 'natural-language-processing']",Python,https://textblob.readthedocs.io/,"TextBlob: Simple, Pythonic, text processing--Sentiment analysis, part-of-speech tagging, noun phrase extraction, translation, and more.",sloria,2022-12-18,2021-10-22,2013-06-30,494,16.97484822202949,36,2,5,"['google', 'urbaninfrastructure']",,0.0,3,0,115,14,0,4,4,3.0,1.0,90.0,0.3,38,31.8955 -100,nlp,https://github.com/clips/pattern,,,,clips/pattern,pattern,8371,1594,548,"['python', 'machine-learning', 'natural-language-processing', 'web-mining', 'wordnet', 'sentiment-analysis', 'network-analysis']",Python,https://github.com/clips/pattern/wiki,"pattern: Web mining module for Python, with tools for scraping, natural language processing, machine learning, network analysis and visualization.",clips,2022-12-18,2020-04-25,2011-05-03,606,13.794020715630886,30,1,5,['twitter-research'],,0.0,6,2,142,32,1,0,1,6.0,3.0,90.0,0.5,293,31.32583 -126,ml-dl,https://github.com/microsoft/deepspeed,,,,microsoft/deepspeed,DeepSpeed,8355,985,144,"['deep-learning', 'pytorch', 'gpu', 'machine-learning', 'billion-parameters', 'data-parallelism', 'model-parallelism', 'inference', 'pipeline-parallelism', 'compression', 'mixture-of-experts', 'trillion-parameters', 'zero']",Python,https://www.deepspeed.ai/,"DeepSpeed is a deep learning optimization library that makes distributed training and inference easy, efficient, and effective.",microsoft,2022-12-18,2022-12-18,2020-01-23,151,55.12252591894439,148,2,5,"['microsoft', 'stasosphereonline']",,8.46,386,270,35,0,17,18,17,386.0,708.0,90.0,1.8,150,58.33886 -282,util,https://github.com/arrow-py/arrow,,,,arrow-py/arrow,arrow,8167,636,134,"['python', 'arrow', 'datetime', 'date', 'time', 'timestamp', 'timezones', 'hacktoberfest']",Python,https://arrow.readthedocs.io,arrow: 🏹 Better dates & times for Python,arrow-py,2022-12-18,2022-11-15,2012-11-18,526,15.522400217214228,268,1,5,['amazon'],,0.73,28,11,123,1,1,5,1,28.0,46.0,90.0,1.6,943,51.46999 -125,perf,https://github.com/modin-project/modin,,,,modin-project/modin,modin,8151,584,110,"['dataframe', 'pandas', 'distributed', 'datascience', 'modin', 'sql', 'python', 'analytics', 'data-science', 'hacktoberfest']",Python,http://modin.readthedocs.io,Modin: Scale your Pandas workflows by changing a single line of code,modin-project,2022-12-18,2022-12-17,2018-06-21,234,34.74847746650426,109,2,5,"['ponder', 'ponder.io']",,9.44,815,505,55,0,17,14,17,815.0,1026.0,90.0,1.3,22,55.48983 -53,perf,https://github.com/numba/numba,,,,numba/numba,numba,8074,983,205,"['python', 'numpy', 'llvm', 'compiler', 'cuda', 'parallel']",Python,http://numba.pydata.org/,numba: NumPy aware dynamic Python compiler using LLVM,numba,2022-12-17,2022-12-16,2012-03-08,562,14.35195530726257,327,1,5,['mlabs'],,29.77,388,197,131,0,7,18,7,388.0,1032.0,90.0,2.7,4467,69.1077 -294,util,https://github.com/paramiko/paramiko,,,,paramiko/paramiko,paramiko,8042,1887,320,[],Python,http://paramiko.org,paramiko: The leading native Python SSHv2 protocol library.,paramiko,2022-12-18,2022-11-04,2009-02-02,724,11.107734806629834,177,3,5,"['codecobblers,inc', 'healthbyro', 'jumptrading']",,1.71,93,36,169,1,0,13,13,93.0,204.0,90.0,2.2,2010,61.79429 -84,ml,https://github.com/statsmodels/statsmodels,,,,statsmodels/statsmodels,statsmodels,8013,2627,272,"['python', 'statistics', 'econometrics', 'data-analysis', 'generalized-linear-models', 'timeseries-analysis', 'regression-models', 'count-model', 'data-science', 'forecasting', 'hypothesis-testing', 'prediction', 'robust-estimation']",Python,http://www.statsmodels.org/devel/,Statsmodels: statistical modeling and econometrics in Python,statsmodels,2022-12-18,2022-12-10,2011-06-12,601,13.329610266159696,402,1,5,['hcahealthcare'],,6.0,450,237,140,0,4,4,4,450.0,623.0,90.0,1.4,1144,62.26753 -128,viz,https://github.com/altair-viz/altair,,,,altair-viz/altair,altair,7936,710,150,[],Python,https://altair-viz.github.io/,altair: Declarative statistical visualization library for Python,altair-viz,2022-12-17,2022-12-18,2015-09-19,378,20.978851963746223,147,3,5,"['amazonwebservices', 'google', ""losangelestimesandstanford'sbiglocalnews""]",,3.27,112,69,88,0,1,3,1,112.0,374.0,90.0,3.3,95,55.89908 -116,ml-ops,https://github.com/kedro-org/kedro,,From: https://github.com/quantumblacklabs/kedro,,kedro-org/kedro,kedro,7893,741,102,"['pipeline', 'kedro', 'hacktoberfest', 'mlops', 'experiment-tracking', 'python', 'machine-learning']",Python,https://kedro.org,"kedro: A Python framework for creating reproducible, maintainable and modular data science code.",kedro-org,2022-12-18,2022-12-15,2019-04-18,191,41.20134228187919,176,2,5,"['quantumblack', 'softwareengineeratquantumblacklabs']",,6.88,366,212,45,0,6,9,6,366.0,529.0,90.0,1.4,9,51.69432 -706,sim,https://github.com/isl-org/open3d,,,,isl-org/open3d,Open3D,7821,1838,170,"['mesh-processing', 'computer-graphics', 'opengl', 'cpp', 'python', 'reconstruction', 'odometry', 'visualization', 'registration', 'machine-learning', '3d', 'pointcloud', 'rendering', 'gui', '3d-perception', 'gpu', 'arm', 'cuda', 'pytorch', 'tensorflow']",C++,http://www.open3d.org,Open3D: A Modern Library for 3D Data Processing,isl-org,2022-12-18,2022-12-16,2016-12-02,315,24.79483695652174,175,3,5,"['formatechnologies', 'hku-cs', 'postech']",,5.5,345,128,74,0,2,4,2,345.0,419.0,90.0,1.2,11,52.01991 -7,util,https://github.com/boto/boto3,,,,boto/boto3,boto3,7770,1691,239,"['python', 'aws', 'cloud', 'cloud-management', 'aws-sdk']",Python,https://aws.amazon.com/sdk-for-python/,boto3: AWS SDK for Python,boto,2022-12-18,2022-12-16,2014-10-03,428,18.136045348449482,139,2,5,"['amazonwebservices', 'istreamplanet']",,9.92,326,182,100,0,0,147,147,326.0,432.0,90.0,1.3,28646,69.8489 -29,ml-ops,https://github.com/great-expectations/great_expectations,,,,great-expectations/great_expectations,great_expectations,7751,1156,69,"['pipeline-tests', 'dataquality', 'datacleaning', 'datacleaner', 'data-science', 'data-profiling', 'pipeline', 'pipeline-testing', 'cleandata', 'dataunittest', 'data-unit-tests', 'eda', 'exploratory-data-analysis', 'exploratory-analysis', 'exploratorydataanalysis', 'data-quality', 'data-engineering', 'pipeline-debt', 'data-profilers', 'mlops']",Python,https://docs.greatexpectations.io/,great_expectations: Always know what to expect from your data.,great-expectations,2022-12-18,2022-12-16,2017-09-11,275,28.185454545454544,342,1,5,['superconductive'],,35.42,638,516,64,0,58,41,58,638.0,1340.0,90.0,2.1,158,64.43845 -422,ml-dl,https://github.com/pyro-ppl/pyro,,,,pyro-ppl/pyro,pyro,7715,940,203,"['python', 'pytorch', 'machine-learning', 'bayesian', 'probabilistic-programming', 'bayesian-inference', 'variational-inference', 'probabilistic-modeling', 'deep-learning']",Python,http://pyro.ai,pyro: Deep universal probabilistic programming with Python and PyTorch,pyro-ppl,2022-12-18,2022-12-13,2017-06-16,287,26.84145129224652,130,3,5,"['facebook', 'generatebiomedicines', 'meta']",,1.35,37,24,67,0,3,6,3,37.0,44.0,90.0,1.2,106,51.00913 -394,web,https://github.com/encode/starlette,,,,encode/starlette,starlette,7692,693,112,"['python', 'async', 'websockets', 'graphql', 'http']",Python,https://www.starlette.io/,starlette: The little ASGI framework that shines. 🌟,encode,2022-12-18,2022-12-09,2018-06-25,234,32.87179487179487,217,2,5,"['encode', 'encodeoss']",,4.56,129,96,55,0,12,27,12,129.0,273.0,90.0,2.1,1476,62.04619 -367,ml,https://github.com/megvii-basedetection/yolox,,,,megvii-basedetection/yolox,YOLOX,7687,1837,72,"['yolox', 'yolov3', 'onnx', 'tensorrt', 'ncnn', 'openvino', 'pytorch', 'megengine', 'object-detection', 'yolo', 'deep-learning']",Python,,"YOLOX is a high-performance anchor-free YOLO, exceeding yolov3~v5 with MegEngine, ONNX, TensorRT, ncnn, and OpenVINO supported. Documentation: https://yolox.readthedocs.io/",megvii-basedetection,2022-12-18,2022-12-16,2021-07-17,74,103.47884615384615,67,4,5,"['markany', 'megvii-basedetection', 'megviibasedetection', 'wandb']",,0.92,122,50,17,0,2,3,2,122.0,147.0,90.0,1.2,10,43.39891 -495,data,https://github.com/duckdb/duckdb,1.0,,,duckdb/duckdb,duckdb,7647,730,115,"['sql', 'database', 'olap', 'analytics', 'embedded-database']",C++,http://www.duckdb.org,DuckDB is an in-process SQL OLAP Database Management System,duckdb,2022-12-18,2022-12-17,2018-06-26,233,32.69945021380574,215,2,5,"['cwi', 'duckdblabs']",,131.92,1149,956,55,0,8,7,8,1150.0,1990.0,90.0,1.7,349,66.68811 -815,ml-dl,https://github.com/danielgatis/rembg,,,,danielgatis/rembg,rembg,7640,969,99,"['image-processing', 'background-removal', 'python']",Python,,Rembg is a tool to remove images background.,danielgatis,2022-12-18,2022-12-14,2020-08-10,123,62.113821138211385,32,1,5,['christianclauss'],,2.35,73,51,29,0,15,13,15,73.0,149.0,90.0,2.0,18,44.05328 -615,testing,https://github.com/robotframework/robotframework,,,,robotframework/robotframework,robotframework,7635,2052,483,"['robotframework', 'testing', 'automation', 'testautomation', 'attd', 'bdd', 'rpa', 'python']",Python,http://robotframework.org,robotframework: Generic automation framework for acceptance testing and RPA,robotframework,2022-12-18,2022-12-11,2014-06-27,442,17.25702292541169,172,2,5,"['eligaoy', 'reaktor']",,10.92,157,94,103,0,14,15,14,157.0,321.0,90.0,2.0,1572,64.57422 -95,perf,https://github.com/vaexio/vaex,,,,vaexio/vaex,vaex,7633,581,144,"['dataframe', 'python', 'bigdata', 'tabular-data', 'visualization', 'memory-mapped-file', 'hdf5', 'machine-learning', 'machinelearning', 'data-science', 'pyarrow']",Python,https://vaex.io,"vaex: Out-of-Core hybrid Apache Arrow/NumPy DataFrame for Python, ML, visualization and exploration of big tabular data at a billion rows per second 🚀",vaexio,2022-12-18,2022-12-08,2014-09-27,429,17.780698835274542,72,3,5,"['maartenbreddels', 'rungalileo', 'xdss']",,4.52,131,68,100,0,0,44,44,131.0,263.0,90.0,2.0,29,55.82363 -10,util,https://github.com/cython/cython,,,,cython/cython,cython,7517,1345,230,"['python', 'cython', 'cpython', 'cpython-extensions', 'c', 'cpp', 'performance', 'big-data']",Python,https://cython.org,cython: The most widely used Python to C compiler,cython,2022-12-18,2022-12-15,2010-11-21,630,11.929041033779189,489,2,5,"['ecrcatkaust', 'mlabs']",,9.35,222,136,147,0,8,15,8,222.0,496.0,90.0,2.2,4115,69.15892 -440,ml-dl,https://github.com/kornia/kornia,,,,kornia/kornia,kornia,7514,753,118,"['computer-vision', 'image-processing', 'machine-learning', 'pytorch', 'deep-learning', 'neural-network', 'python', 'artificial-intelligence']",Python,https://kornia.github.io/kornia/,kornia: Open Source Differentiable Computer Vision Library,kornia,2022-12-17,2022-12-16,2018-08-22,225,33.289873417721516,195,4,5,"['computervisioncenter', 'czechtechnicaluniversityinprague', 'kaust', 'kornia.org']",,6.37,236,174,53,0,6,8,6,236.0,411.0,90.0,1.7,103,59.02274 -322,web,https://github.com/graphql-python/graphene,,,,graphql-python/graphene,graphene,7496,804,146,"['graphql', 'python', 'relay', 'framework', 'graphene']",Python,http://graphene-python.org/,graphene: GraphQL framework for Python,graphql-python,2022-12-17,2022-12-11,2015-09-24,377,19.85319712447976,194,1,5,['wasmerio'],,0.79,49,34,88,0,4,8,4,49.0,110.0,90.0,2.2,1177,55.6152 -470,nlp,https://github.com/microsoft/unilm,,,,microsoft/unilm,unilm,7463,1365,178,"['nlp', 'language-understanding', 'language-generation', 'pre-trained-model', 'small-pre-trained-model', 'unilm', 'minilm', 'layoutlm', 'infoxlm', 'multimodal-pre-trained-model', 'layoutxlm', 'beit', 'document-ai', 'trocr', 'wavlm', 'beit-3', 'foundation-models', 'xlm-e', 'deepnet', 'document-foundation-model']",Python,https://aka.ms/nlpagi,"unilm: Large-scale Self-supervised Pre-training Across Tasks, Languages, and Modalities",microsoft,2022-12-18,2022-11-28,2019-07-23,177,41.960642570281124,50,1,5,['microsoftresearch'],,6.02,136,79,41,1,0,1,1,136.0,207.0,90.0,1.5,32,42.86846 -547,ml,https://github.com/optuna/optuna,,,,optuna/optuna,optuna,7310,784,121,"['python', 'machine-learning', 'parallel', 'distributed', 'hyperparameter-optimization', 'hacktoberfest']",Python,https://optuna.org,optuna: A hyperparameter optimization framework,optuna,2022-12-18,2022-12-16,2018-02-21,251,29.040862656072644,220,1,5,['preferrednetworks'],,46.4,323,226,59,0,11,11,11,323.0,983.0,90.0,3.0,1036,65.43558 -28,ml-dl,https://github.com/google/trax,,,,google/trax,trax,7217,750,145,"['jax', 'numpy', 'deep-learning', 'deep-reinforcement-learning', 'machine-learning', 'transformer', 'reinforcement-learning']",Python,,Trax — Deep Learning with Clear Code and Speed,google,2022-12-18,2022-11-09,2019-10-05,167,43.141759180187876,78,2,5,"['google', 'mimuw']",,0.38,8,1,39,1,0,6,6,8.0,5.0,90.0,0.6,19,38.19324 -70,ml,https://github.com/pymc-devs/pymc3,,,,pymc-devs/pymc3,pymc,7187,1711,225,"['python', 'statistical-analysis', 'bayesian-inference', 'mcmc', 'variational-inference', 'probabilistic-programming', 'aesara', 'hacktoberfest', 'pytensor']",Python,https://docs.pymc.io/,pymc: Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with PyTensor,pymc-devs,2022-12-18,2022-12-18,2009-05-05,710,10.11032958199357,428,2,5,"['msueconomics/skoltechcs', 'pymclabs']",,17.42,365,279,166,0,22,5,22,365.0,941.0,90.0,2.6,236,67.66503 -455,ml-dl,https://github.com/tensorlayer/tensorlayer,,,,tensorlayer/tensorlayer,TensorLayer,7126,1612,462,"['tensorlayer', 'deep-learning', 'tensorflow', 'neural-network', 'reinforcement-learning', 'artificial-intelligence', 'gan', 'a3c', 'tensorflow-tutorials', 'dqn', 'object-detection', 'chatbot', 'python', 'tensorflow-tutorial', 'imagenet', 'google']",Python,http://tensorlayer.org,TensorLayer: Deep Learning and Reinforcement Learning Library for Scientists and Engineers ,tensorlayer,2022-12-17,2022-04-23,2016-06-07,340,20.906119027661358,132,4,5,"['columbiauniversity', 'imperialcollegelondon,pangaeadata', 'pekinguniversity', 'universityofedinburgh']",,0.04,2,0,80,8,0,13,13,2.0,2.0,90.0,1.0,52,42.39194 -165,nlp,https://github.com/doccano/doccano,,,,doccano/doccano,doccano,7043,1449,122,"['natural-language-processing', 'machine-learning', 'annotation-tool', 'python', 'datasets', 'dataset', 'data-labeling', 'text-annotation', 'nuxtjs', 'vue', 'vuejs', 'nuxt']",Python,https://doccano.herokuapp.com,doccano: Open source annotation tool for machine learning practitioners.,doccano,2022-12-17,2022-12-16,2018-05-09,240,29.258753709198814,98,3,5,"['classi', 'noom', 'statisticscanada']",,12.69,115,68,56,0,8,7,8,115.0,161.0,90.0,1.4,94,55.87857 -758,diffusion,https://github.com/divamgupta/diffusionbee-stable-diffusion-ui,,,,divamgupta/diffusionbee-stable-diffusion-ui,diffusionbee-stable-diffusion-ui,7014,271,71,"['electron-app', 'macos', 'stable-diffusion']",JavaScript,https://diffusionbee.com,diffusionbee-stable-diffusion-ui: Diffusion Bee is the easiest way to run Stable Diffusion locally on your M1 Mac. Comes with a one-click installer. No dependencies or technical knowledge needed.,divamgupta,2022-12-18,2022-11-23,2022-09-06,14,472.09615384615387,16,0,5,[],,3.87,338,129,3,1,13,57,13,338.0,773.0,90.0,2.3,0,29.38445 -868,ml-dl,https://github.com/hpcaitech/colossalai,,,,hpcaitech/colossalai,ColossalAI,7002,658,88,"['deep-learning', 'hpc', 'large-scale', 'data-parallelism', 'pipeline-parallelism', 'model-parallelism', 'ai', 'big-model', 'distributed-computing', 'inference', 'heterogeneous-training']",Python,https://www.colossalai.org/,ColossalAI: Colossal-AI: A Unified Deep Learning System for Big Model Era,hpcaitech,2022-12-18,2022-12-18,2021-10-28,59,117.53956834532374,82,2,5,"['hpc-aitech', 'hpcaitech']",,27.52,514,452,14,0,18,17,18,511.0,266.0,90.0,0.5,3,47.94364 -846,time-series,https://github.com/blue-yonder/tsfresh,,,,blue-yonder/tsfresh,tsfresh,6943,1093,159,"['data-science', 'feature-extraction', 'time-series']",Jupyter Notebook,http://tsfresh.readthedocs.io,tsfresh: Automatic extraction of relevant features from time series:,blue-yonder,2022-12-17,2022-11-18,2016-10-26,320,21.648552338530067,82,2,5,"['apple', 'universityofauckland']",,0.1,24,6,75,1,1,5,1,24.0,48.0,90.0,2.0,26,42.05837 -650,profiling,https://github.com/plasma-umass/scalene,1.0,,,plasma-umass/scalene,scalene,6939,232,69,"['python', 'profiling', 'performance-analysis', 'cpu-profiling', 'profiler', 'python-profilers', 'gpu-programming', 'scalene', 'profiles-memory', 'performance-cpu', 'cpu', 'memory-allocation', 'gpu', 'memory-consumption']",JavaScript,,"Scalene: a high-performance, high-precision CPU, GPU, and memory profiler for Python",plasma-umass,2022-12-18,2022-12-16,2019-12-17,156,44.23770491803279,34,2,5,"['umassamherst', 'universityofmassachusettsamherst']",,11.71,93,52,37,0,21,12,21,94.0,167.0,90.0,1.8,76,52.01886 -150,ml,https://github.com/catboost/catboost,,,,catboost/catboost,catboost,6846,1070,193,"['machine-learning', 'decision-trees', 'gradient-boosting', 'gbm', 'gbdt', 'python', 'r', 'kaggle', 'gpu-computing', 'catboost', 'tutorial', 'categorical-features', 'gpu', 'coreml', 'data-science', 'big-data', 'cuda', 'data-mining']",C,https://catboost.ai,"catboost: A fast, scalable, high performance Gradient Boosting on Decision Trees library, used for ranking, classification, regression and other machine learning tasks for Python, R, Java, C++. Supports computation on CPU and GPU.",catboost,2022-12-18,2022-12-18,2017-07-18,282,24.203030303030303,1038,2,5,"['yandex', 'yandexnv']",,117.42,146,58,66,0,5,16,5,146.0,263.0,90.0,1.8,276,66.9368 -171,ml-dl,https://github.com/facebookresearch/pytorch3d,,,,facebookresearch/pytorch3d,pytorch3d,6806,1032,140,[],Python,https://pytorch3d.org/,PyTorch3D is FAIR's library of reusable components for deep learning with 3D data,facebookresearch,2022-12-18,2022-12-16,2019-10-25,164,41.39183318853171,110,3,5,"['caltech', 'facebook', 'facebookairesearch']",,6.92,88,37,38,0,3,4,3,88.0,123.0,90.0,1.4,383,54.79397 -286,data,https://github.com/simonw/datasette,1.0,,,simonw/datasette,datasette,6758,474,99,"['sqlite', 'python', 'datasets', 'json', 'docker', 'datasette', 'automatic-api', 'asgi', 'csv', 'datasette-io', 'sql']",Python,https://datasette.io,datasette: An open source multi-tool for exploring and publishing data,simonw,2022-12-18,2022-12-18,2017-10-23,269,25.12267657992565,72,2,5,"['datasette', 'latacora']",,8.62,178,108,63,0,19,25,19,178.0,853.0,90.0,4.8,557,62.26816 -65,ml,https://github.com/pycaret/pycaret,,,,pycaret/pycaret,pycaret,6669,1522,125,"['data-science', 'citizen-data-scientists', 'python', 'machine-learning', 'pycaret', 'ml', 'gpu', 'time-series', 'regression', 'classification', 'anomaly-detection', 'nlp', 'clustering']",Jupyter Notebook,https://www.pycaret.org,"pycaret: An open-source, low-code machine learning library in Python",pycaret,2022-12-18,2022-12-18,2019-11-23,160,41.606951871657756,107,4,5,"['konfio', 'o9solutions', 'pycaret', 'softwareengineeranyscale']",,19.88,307,228,37,0,5,8,5,307.0,380.0,90.0,1.2,194,58.63736 -131,ml,https://github.com/automl/auto-sklearn,,,,automl/auto-sklearn,auto-sklearn,6666,1208,213,"['automl', 'scikit-learn', 'automated-machine-learning', 'hyperparameter-optimization', 'hyperparameter-tuning', 'hyperparameter-search', 'bayesian-optimization', 'metalearning', 'meta-learning', 'smac']",Python,https://automl.github.io/auto-sklearn,auto-sklearn: Automated Machine Learning with scikit-learn,automl,2022-12-18,2022-12-07,2015-07-02,389,17.11111111111111,88,5,5,"['albert-ludwigs-universitätfreiburg', 'automl.org', 'awsberlin', 'centerforarmyanalysisandsimulation', 'universityoffreiburg']",,2.65,71,34,91,0,5,5,5,71.0,101.0,90.0,1.4,388,57.50293 -197,nlp,https://github.com/eleutherai/gpt-neo,,,,eleutherai/gpt-neo,gpt-neo,6663,591,161,"['language-model', 'transformers', 'gpt', 'gpt-2', 'gpt-3']",Python,https://www.eleuther.ai,gpt-neo: An implementation of model parallel GPT-2 and GPT-3-style models using the mesh-tensorflow library.,eleutherai,2022-12-18,2022-02-25,2020-07-05,128,51.99665551839465,29,1,5,['boozallenhamilton'],,0.04,0,0,30,10,0,2,2,0.0,0.0,90.0,0.0,14,22.2216 -824,study,https://github.com/firmai/industry-machine-learning,,,,firmai/industry-machine-learning,industry-machine-learning,6654,1119,392,"['machine-learning', 'jupyter-notebook', 'datascience', 'example', 'python', 'practical-machine-learning', 'data-science', 'firmai']",Jupyter Notebook,https://www.linkedin.com/company/firmai,industry-machine-learning: A curated list of applied machine learning and data science notebooks and libraries across different industries (by @firmai),firmai,2022-12-18,2021-12-18,2019-05-03,189,35.126696832579185,6,3,5,"['alanturinginstitute,firmai', 'tilde-lab', 'universityofutah']",,0.0,0,0,44,12,0,0,0,0.0,0.0,90.0,0.0,0,15.22321 -532,util,https://github.com/facebookresearch/hydra,,,,facebookresearch/hydra,hydra,6600,527,83,[],Python,https://hydra.cc,Hydra is a framework for elegantly configuring complex applications,facebookresearch,2022-12-18,2022-12-17,2019-06-12,183,35.925349922239505,105,2,5,"['facebook', 'facebookairesearch']",,4.27,147,91,43,0,3,6,3,147.0,233.0,90.0,1.6,47,50.43036 -67,web,https://github.com/pyeve/eve,,,,pyeve/eve,eve,6567,752,229,"['python', 'rest', 'flask', 'mongodb']",Python,https://python-eve.org,eve: REST API framework designed for human beings,pyeve,2022-12-18,2022-11-10,2012-10-22,530,12.39056603773585,211,3,5,"['cir2000', 'denoland', 'google']",,1.06,16,9,124,1,0,5,5,16.0,28.0,90.0,1.8,34,50.38291 -389,data,https://github.com/yzhao062/pyod,,,,yzhao062/pyod,pyod,6557,1217,151,"['outlier-detection', 'anomaly-detection', 'outlier-ensembles', 'outliers', 'anomaly', 'python', 'machine-learning', 'data-mining', 'unsupervised-learning', 'python2', 'python3', 'fraud-detection', 'autoencoder', 'neural-networks', 'deep-learning', 'data-science', 'data-analysis', 'novelty-detection', 'out-of-distribution-detection']",Python,http://pyod.readthedocs.io,pyod: A Comprehensive and Scalable Python Library for Outlier Detection (Anomaly Detection),yzhao062,2022-12-18,2022-12-16,2017-10-03,271,24.119285338938518,46,3,5,"['carnegiemellonuniversity', 'erasmusmedicalcentre', 'royalbankofcanada(rbc)']",,3.69,28,13,63,0,12,7,12,28.0,59.0,90.0,2.1,66,51.33773 -133,ml,https://github.com/hyperopt/hyperopt,,,,hyperopt/hyperopt,hyperopt,6511,1004,126,[],Python,http://hyperopt.github.io/hyperopt,hyperopt: Distributed Asynchronous Hyperparameter Optimization in Python,hyperopt,2022-12-16,2021-11-29,2011-09-06,588,11.057011159631246,93,3,5,"['contxts-io', 'databricks', 'kindred.ai']",,0.0,14,3,137,13,0,1,1,14.0,28.0,90.0,2.0,135,42.1784 -716,util,https://github.com/jazzband/pip-tools,,,,jazzband/pip-tools,pip-tools,6473,554,105,"['python', 'packaging', 'pip', 'pip-tools', 'pip-compile', 'setuptools', 'requirements', 'lockfile', 'hashes']",Python,https://pip-tools.rtfd.io,pip-tools: A set of tools to keep your pinned Python dependencies fresh.,jazzband,2022-12-17,2022-12-17,2012-09-10,536,12.076492537313433,181,2,5,"['pioneervalleybooks', 'ubisoftinc']",,2.67,179,132,125,0,12,11,12,179.0,312.0,90.0,1.7,2531,63.55318 -215,debug,https://github.com/gruns/icecream,,,,gruns/icecream,icecream,6468,134,50,"['python', 'python3', 'library', 'inspects', 'debug', 'debugging', 'debugging-tool', 'print']",Python,,icecream: 🍦 Never use print() to debug again.,gruns,2022-12-18,2022-12-04,2018-02-13,252,25.579661016949153,21,3,5,"['fixpoint', 'https://arc.io,https://pep.dev', 'pku-epic']",,0.85,12,5,59,0,2,1,2,12.0,26.0,90.0,2.2,34,42.71229 -82,data,https://github.com/sqlalchemy/sqlalchemy,,,,sqlalchemy/sqlalchemy,sqlalchemy,6443,1025,94,"['sqlalchemy', 'sql', 'python']",Python,https://www.sqlalchemy.org,sqlalchemy: The Database Toolkit for Python,sqlalchemy,2022-12-17,2022-12-18,2018-11-27,211,30.412002697235334,583,2,5,"['redhat', 'self-employed']",,13.65,304,231,49,0,21,66,21,304.0,1209.0,90.0,4.0,10439,73.80535 -141,ml,https://github.com/featurelabs/featuretools,1.0,,,featurelabs/featuretools,featuretools,6424,835,158,"['feature-engineering', 'machine-learning', 'data-science', 'automated-machine-learning', 'automl', 'python', 'scikit-learn', 'automated-feature-engineering']",Python,https://www.featuretools.com,featuretools: An open source python library for automated feature engineering,featurelabs,2022-12-18,2022-12-17,2017-09-08,275,23.323651452282157,68,1,5,['alteryx'],,6.17,161,125,64,0,25,28,25,161.0,189.0,90.0,1.2,31,50.92099 -288,testing,https://github.com/hypothesisworks/hypothesis,1.0,,,hypothesisworks/hypothesis,hypothesis,6401,539,69,"['python', 'testing', 'fuzzing', 'property-based-testing']",Python,https://hypothesis.works,"Hypothesis is a powerful, flexible, and easy to use library for property-based testing.",hypothesisworks,2022-12-18,2022-12-11,2013-03-10,510,12.547465695883506,297,4,5,"['anthropic', 'pyupio', 'quansight', 'weomecollection']",,13.75,88,66,119,0,95,135,95,88.0,128.0,90.0,1.5,12462,72.64569 -153,util,https://github.com/marshmallow-code/marshmallow,,,,marshmallow-code/marshmallow,marshmallow,6358,621,82,"['serialization', 'deserialization', 'validation', 'python', 'marshalling', 'python-3', 'serde', 'schema', 'hacktoberfest']",Python,https://marshmallow.readthedocs.io/,marshmallow: A lightweight library for converting complex objects to and from simple Python datatypes.,marshmallow-code,2022-12-18,2022-12-11,2013-11-10,475,13.38123872519543,203,1,5,['nobatek'],,1.79,54,36,111,0,0,19,19,54.0,52.0,90.0,1.0,2390,58.91292 -230,template,https://github.com/drivendata/cookiecutter-data-science,1.0,,,drivendata/cookiecutter-data-science,cookiecutter-data-science,6335,2015,111,"['cookiecutter-data-science', 'cookiecutter', 'cookiecutter-template', 'data-science', 'machine-learning', 'ai']",Python,http://drivendata.github.io/cookiecutter-data-science/,"cookiecutter-data-science: A logical, reasonably standardized, but flexible project structure for doing and sharing data science work.",drivendata,2022-12-17,2022-03-11,2015-10-30,372,17.009973149213657,45,3,5,"['contentful', 'drivendata', 'unseenbio']",,0.04,17,7,87,9,0,0,0,17.0,10.0,90.0,0.6,28,34.24438 -602,testing,https://github.com/newsapps/beeswithmachineguns,,,,newsapps/beeswithmachineguns,beeswithmachineguns,6267,663,227,[],Python,http://apps.chicagotribune.com/,beeswithmachineguns: A utility for arming (creating) many bees (micro EC2 instances) to attack (load test) targets (web applications).,newsapps,2022-12-17,2017-12-20,2010-06-29,650,9.628841088674276,49,5,5,"['br', 'datascopeanalytics', 'facebook', 'fivethirtyeight', 'https://github.com/verizondigital/']",,0.0,2,0,152,61,0,0,0,2.0,2.0,90.0,1.0,64,32.42307 -800,web,https://github.com/pallets/werkzeug,,,,pallets/werkzeug,werkzeug,6234,1663,227,"['python', 'wsgi', 'werkzeug', 'http', 'pallets']",Python,https://werkzeug.palletsprojects.com,werkzeug: The comprehensive WSGI web application library.,pallets,2022-12-17,2022-11-01,2010-10-18,635,9.817322834645669,463,3,5,"['getsentry', 'sentry', 'zalandose']",,2.62,50,34,148,2,7,7,7,50.0,43.0,90.0,0.9,9133,62.98156 -356,ml-ops,https://github.com/netflix/metaflow,,,,netflix/metaflow,metaflow,6219,583,239,"['machine-learning', 'data-science', 'productivity', 'model-management', 'ai', 'ml', 'ml-platform', 'ml-infrastructure', 'python', 'r', 'rstats', 'reproducible-research', 'r-package', 'mlops', 'datascience', 'cli', 'high-performance-computing', 'kubernetes']",Python,https://metaflow.org,metaflow: :rocket: Build and manage real-life data science projects with ease!,netflix,2022-12-18,2022-12-14,2019-09-17,169,36.613120269133724,62,2,5,"['missingexponent', 'outerbounds']",,3.27,106,65,40,0,30,24,30,106.0,147.0,90.0,1.4,49,51.14974 -382,ml-ops,https://github.com/deepset-ai/haystack,,,,deepset-ai/haystack,haystack,6210,964,87,"['nlp', 'question-answering', 'bert', 'transfer-learning', 'language-model', 'pytorch', 'semantic-search', 'neural-search', 'squad', 'elasticsearch', 'dpr', 'information-retrieval', 'summarization', 'search-engine', 'transformers', 'natural-language-processing', 'machine-learning', 'ai', 'python']",Python,https://deepset.ai/haystack,"haystack: :mag: Haystack is an open source NLP framework that leverages pre-trained Transformer models. It enables developers to quickly implement production-ready semantic search, question answering, summarization and document ranking for a wide range of NLP applications.",deepset-ai,2022-12-18,2022-12-16,2019-11-14,161,38.43501326259947,149,2,5,"['deepset', 'deepset-ai']",,14.31,617,399,38,0,18,12,18,617.0,895.0,90.0,1.5,57,57.8656 -459,ml-ops,https://github.com/dbt-labs/dbt-core,,,,dbt-labs/dbt-core,dbt-core,6207,1095,131,"['dbt-viewpoint', 'slack', 'pypa', 'data-modeling', 'business-intelligence', 'analytics', 'elt']",Python,https://getdbt.com,dbt-core: dbt enables data analysts and engineers to transform their data using the same practices that software engineers use to build applications.,dbt-labs,2022-12-18,2022-12-15,2016-03-10,353,17.555151515151515,252,2,5,"['dbt-labs', 'fishtownanalytics']",,8.29,890,615,82,0,40,21,40,889.0,1514.0,90.0,1.7,82,62.45905 -20,typing,https://github.com/facebook/pyre-check,,,,facebook/pyre-check,pyre-check,6164,407,107,"['python', 'typechecker', 'type-check', 'static-analysis', 'ocaml', 'code-quality', 'abstract-interpretation', 'security', 'program-analysis', 'taint-analysis', 'control-flow-analysis']",OCaml,https://pyre-check.org/,pyre-check: Performant type-checking for python.,facebook,2022-12-18,2022-12-17,2017-11-10,266,23.135656836461127,231,2,5,"['facebook', 'metaplatforms']",,47.44,46,22,62,0,3,16,3,46.0,51.0,90.0,1.1,322,58.0148 -556,ml-dl,https://github.com/arogozhnikov/einops,,,,arogozhnikov/einops,einops,6140,269,62,"['deep-learning', 'pytorch', 'tensorflow', 'numpy', 'gluon', 'cupy', 'chainer', 'keras', 'tensor', 'jax']",Python,https://einops.rocks,"einops: Deep learning operations reinvented (for pytorch, tensorflow, jax and others)",arogozhnikov,2022-12-18,2022-12-04,2018-09-22,221,27.746933505487412,22,5,5,"['aperturescience', 'idea', 'princetonuniversity', 'quansight', 'sunyat-senuniversity']",,2.52,41,26,52,0,4,2,4,41.0,42.0,90.0,1.0,8,43.94634 -681,ml,https://github.com/hips/autograd,,,,hips/autograd,autograd,6109,843,216,[],Python,,autograd: Efficiently computes derivatives of numpy code.,hips,2022-12-17,2022-09-29,2014-11-24,421,14.510688836104514,52,5,5,"['google', 'googlebrain', 'universityofamsterdam', 'universityoftoronto', 'visa']",,0.08,7,4,98,3,0,0,0,7.0,15.0,90.0,2.1,160,44.22134 -121,ml-ops,https://github.com/dagster-io/dagster,,,,dagster-io/dagster,dagster,6053,759,87,"['data-pipelines', 'dagster', 'workflow', 'data-science', 'workflow-automation', 'python', 'scheduler', 'data-orchestrator', 'etl', 'analytics', 'data-engineering', 'mlops', 'orchestration', 'data-integration', 'metadata']",Python,https://dagster.io,"dagster: An orchestration platform for the development, production, and observation of data assets.",dagster-io,2022-12-18,2022-12-18,2018-04-30,242,25.012396694214875,256,1,5,['elementl'],,57.9,1677,1229,56,0,59,139,59,1677.0,3154.0,90.0,1.9,2733,70.22045 -73,gis,https://github.com/python-visualization/folium,,,,python-visualization/folium,folium,6023,2154,166,"['closember', 'data-science', 'data-visualization', 'javascript', 'maps', 'python']",Python,https://python-visualization.github.io/folium/,folium: Python Data. Leaflet.js Maps. ,python-visualization,2022-12-18,2022-12-12,2013-05-09,501,12.00825975505554,147,3,5,"['datartibus', 'jgardinerconsultingltd.', 'stripe']",,1.81,309,276,117,0,2,2,2,309.0,344.0,90.0,1.1,671,58.69721 -879,time-series,https://github.com/sktime/sktime,1.0,,,sktime/sktime,sktime,5980,984,110,"['time-series', 'machine-learning', 'scikit-learn', 'time-series-classification', 'time-series-regression', 'forecasting', 'time-series-analysis', 'data-science', 'data-mining']",Python,https://sktime.org,sktime: A unified framework for machine learning with time series,sktime,2022-12-17,2022-12-18,2018-11-06,214,27.83244680851064,206,4,5,"['ucl', 'uclalan-turing-instituteesrc-cdrc', 'universitycollegelondon', 'universityofeastanglia']",,17.92,655,376,50,0,16,9,16,656.0,1884.0,90.0,2.9,51,63.77311 -410,web,https://github.com/encode/uvicorn,,,,encode/uvicorn,uvicorn,5962,522,87,"['python', 'asyncio', 'asgi', 'http', 'http-server']",Python,https://www.uvicorn.org/,"uvicorn: An ASGI web server, for Python. 🦄",encode,2022-12-18,2022-12-12,2017-05-31,289,20.578895463510847,149,2,5,"['encode', 'encodeoss']",,3.92,212,178,68,0,14,26,14,212.0,395.0,90.0,1.9,3899,63.79482 -44,ml,https://github.com/lmcinnes/umap,,,,lmcinnes/umap,umap,5961,694,124,"['umap', 'dimensionality-reduction', 'visualization', 'machine-learning', 'topological-data-analysis']",Python,,umap: Uniform Manifold Approximation and Projection,lmcinnes,2022-12-16,2022-11-11,2017-07-02,285,20.905310621242485,109,4,5,"['anaconda', 'contextlabcosanlab', 'microsoft', 'tutteinstituteformathematicsandcomputing']",,1.87,34,11,67,1,1,5,1,34.0,42.0,90.0,1.2,45,46.94678 -599,gis,https://github.com/domlysz/blendergis,,,,domlysz/blendergis,BlenderGIS,5875,1093,244,"['blender', 'addon', 'geospatial', 'gis', 'shapefile', 'delaunay-triangulation', 'raster', 'openstreetmap', 'python', 'dem', '3dgis', 'map', 'geodata', 'georeferencing', 'importexport', '3d', 'terrain-model', 'basemap', '3d-map']",Python,,BlenderGIS: Blender addons to make the bridge between Blender and geographic data,domlysz,2022-12-18,2022-05-31,2014-05-08,449,13.068001271051795,15,1,5,['alphagov'],,0.21,28,4,105,7,2,2,2,28.0,27.0,90.0,1.0,61,33.46287 -537,nlp,https://github.com/espnet/espnet,,,,espnet/espnet,espnet,5832,1782,184,"['deep-learning', 'end-to-end', 'chainer', 'pytorch', 'kaldi', 'speech-recognition', 'speech-synthesis', 'speech-translation', 'machine-translation', 'voice-conversion', 'speech-enhancement', 'speech-separation', 'singing-voice-synthesis', 'speaker-diarization', 'spoken-language-understanding']",Python,https://espnet.github.io/espnet/,espnet: End-to-End Speech Processing Toolkit,espnet,2022-12-18,2022-12-18,2017-12-13,261,22.283842794759824,312,2,5,"['fairatmetaai', 'nagoyauniversity']",,35.96,258,151,61,0,7,9,7,258.0,530.0,90.0,2.1,6280,69.03597 -313,util,https://github.com/pypa/pipx,,,,pypa/pipx,pipx,5810,265,65,"['pip', 'cli', 'pypi', 'venv', 'hacktoberfest', 'python']",Python,https://pypa.github.io/pipx/,pipx: Install and Run Python Applications in Isolated Environments,pypa,2022-12-18,2022-12-14,2018-10-06,219,26.495114006514658,82,2,5,"['astronomer', 'bloomberglp']",,1.12,51,21,51,0,4,13,4,51.0,95.0,90.0,1.9,107,49.219 -777,util,https://github.com/google/latexify_py,,,,google/latexify_py,latexify_py,5807,316,50,[],Python,,latexify_py: A library to generate LaTeX expression from Python code.,google,2022-12-18,2022-12-15,2020-07-25,125,46.35005701254276,24,2,5,"['google', 'inspired-co']",,1.69,146,133,29,0,3,3,3,146.0,389.0,90.0,2.7,4,42.05166 -345,jupyter,https://github.com/mwouts/jupytext,,,,mwouts/jupytext,jupytext,5713,363,70,"['jupyter-notebook', 'jupyterlab-extension', 'version-control', 'knitr', 'rstudio', 'markdown', 'rmarkdown', 'python', 'hydrogen', 'notebooks', 'jupyterlab']",Python,https://jupytext.readthedocs.io,"jupytext: Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts",mwouts,2022-12-18,2022-12-11,2018-06-15,235,24.266383495145632,74,3,5,"['facebookresearch', 'imperialcollegelondon', 'ucberkeley']",,0.9,40,18,55,0,10,29,10,40.0,92.0,90.0,2.3,113,52.13273 -69,util,https://github.com/pygithub/pygithub,,,,pygithub/pygithub,PyGithub,5678,1566,113,"['pygithub', 'python', 'github', 'github-api']",Python,https://pygithub.readthedocs.io/,PyGithub: Typed interactions with the GitHub API v3,pygithub,2022-12-18,2022-12-15,2012-02-25,564,10.062278481012658,293,3,5,"['authzed', 'suse', 'zendesk']",,0.31,128,53,132,0,2,9,2,128.0,162.0,90.0,1.3,897,58.52648 -730,ml,https://github.com/cleverhans-lab/cleverhans,,,,cleverhans-lab/cleverhans,cleverhans,5662,1376,190,"['machine-learning', 'security', 'benchmarking']",Jupyter Notebook,,"cleverhans: An adversarial example library for constructing attacks, building defenses, and benchmarking both",cleverhans-lab,2022-12-13,2021-09-23,2016-09-15,326,17.337707786526686,129,1,5,['universityoftoronto'],,0.0,2,0,76,15,0,1,1,2.0,0.0,90.0,0.0,5,25.91041 -106,ml,https://github.com/nicolashug/surprise,,,,nicolashug/surprise,Surprise,5637,963,149,"['recommender', 'systems', 'recommendation', 'svd', 'matrix', 'factorization', 'machine-learning']",Python,http://surpriselib.com,Surprise: A Python scikit for building and analyzing recommender systems,nicolashug,2022-12-18,2022-10-31,2016-10-23,321,17.552935943060497,44,2,5,"['centralesupelec', 'hirosystems']",,0.52,23,12,75,2,0,2,2,23.0,24.0,90.0,1.0,99,41.67353 -68,gamedev,https://github.com/pygame/pygame,1.0,,,pygame/pygame,pygame,5546,2435,160,"['python', 'pygame', 'sdl2', 'sdl', 'game-development', 'gamedev', 'game-dev']",C,https://www.pygame.org,"pygame: 🐍🎮 pygame (the library) is a Free and Open Source python programming language library for making multimedia applications like games built on top of the excellent SDL library. C, Python, Native, OpenGL.",pygame,2022-12-18,2022-12-18,2017-03-26,299,18.5396370582617,263,0,5,[],,13.81,342,231,70,0,8,14,8,342.0,571.0,90.0,1.7,806,58.38147 -773,ml-dl,https://github.com/sanster/lama-cleaner,,,,sanster/lama-cleaner,lama-cleaner,5506,445,47,"['inpainting', 'pytorch', 'lama', 'latent-diffusion', 'mat', 'zits', 'stable-diffusion']",Python,,"lama-cleaner: Image inpainting tool powered by SOTA AI Model. Remove any unwanted object, defect, people from your pictures or erase and replace(powered by stable diffusion) any thing on your pictures.",sanster,2022-12-18,2022-12-17,2021-11-15,57,96.59649122807018,11,1,5,['musixmatchdev'],,6.69,105,84,13,0,33,33,33,105.0,214.0,90.0,2.0,7,40.77455 -643,util,https://github.com/theskumar/python-dotenv,,,,theskumar/python-dotenv,python-dotenv,5495,353,33,"['python', 'devops-tools', 'dotenv', '12-factor-app', 'configuration', 'env', 'environment-variables']",Python,https://saurabh-kumar.com/python-dotenv/,python-dotenv: Reads key-value pairs from a .env file and can set them as environment variables. It helps in developing applications following the 12-factor principles.,theskumar,2022-12-18,2022-11-25,2014-09-06,432,12.711500330469267,85,4,5,"['codiumteam', 'docker', 'fueled', 'latacora']",,0.69,29,14,101,1,1,5,1,29.0,23.0,90.0,0.8,3185,53.15469 -682,diffusion,https://github.com/compvis/latent-diffusion,,,,compvis/latent-diffusion,latent-diffusion,5488,716,71,[],Jupyter Notebook,,latent-diffusion: High-Resolution Image Synthesis with Latent Diffusion Models,compvis,2022-12-18,2022-07-26,2021-12-20,52,105.53846153846153,5,2,5,"['huggingface', 'runwayml']",,0.52,80,14,12,5,0,0,0,80.0,126.0,90.0,1.6,16,26.98939 -439,perf,https://github.com/mher/flower,,,,mher/flower,flower,5485,979,144,"['celery', 'task-queue', 'monitoring', 'administration', 'workers', 'rabbitmq', 'redis', 'python', 'asynchronous']",Python,https://flower.readthedocs.io,flower: Real-time monitor and web admin for Celery distributed task queue,mher,2022-12-17,2022-11-14,2012-07-08,545,10.06158280922432,196,2,5,"['robinhoodmarkets', 'zipsale']",,0.27,31,12,127,1,0,2,2,31.0,41.0,90.0,1.3,364,50.69527 -723,ml,https://github.com/py-why/dowhy,,,,py-why/dowhy,dowhy,5478,771,136,"['causal-inference', 'machine-learning', 'graphical-models', 'bayesian-networks', 'data-science', 'python3', 'causality', 'causal-models', 'treatment-effects', 'do-calculus', 'causal-machine-learning']",Python,https://www.pywhy.org/dowhy,"DoWhy is a Python library for causal inference that supports explicit modeling and testing of causal assumptions. DoWhy is based on a unified language for causal inference, combining causal graphical models and potential outcomes frameworks. ",py-why,2022-12-18,2022-12-16,2018-05-31,237,23.05832832230908,64,2,5,"['amazon', 'barclaysib;columbia']",,5.81,191,159,55,0,5,3,5,191.0,321.0,90.0,1.7,5,47.82466 -193,util,https://github.com/pycqa/isort,,,,pycqa/isort,isort,5429,502,42,"['auto-formatter', 'isort', 'sorting-imports', 'python-utility', 'cli', 'linter', 'cleaner', 'formatter', 'python', 'python3', 'hacktoberfest']",Python,https://pycqa.github.io/isort/,isort: A Python utility / library to sort imports.,pycqa,2022-12-18,2022-12-17,2013-09-02,485,11.19381443298969,271,4,5,"['google', 'pioneervalleybooks', 'stripe', 'swisscom']",,1.6,124,92,113,0,5,15,5,124.0,106.0,90.0,0.9,9130,65.36624 -96,data,https://github.com/vi3k6i5/flashtext,,,,vi3k6i5/flashtext,flashtext,5326,597,139,"['search-in-text', 'keyword-extraction', 'nlp', 'word2vec', 'data-extraction']",Python,,flashtext: Extract Keywords from sentence or Replace keywords in sentences.,vi3k6i5,2022-12-18,2020-05-03,2017-08-15,278,19.09938524590164,7,1,5,['meta'],,0.0,4,0,65,32,0,0,0,4.0,5.0,90.0,1.2,5,18.51551 -579,ml,https://github.com/probml/pyprobml,,,,probml/pyprobml,pyprobml,5282,1249,173,"['jupyter-notebooks', 'machine-learning', 'colab', 'pml', 'probabilistic-programming', 'jax', 'tensorflow', 'pytorch', 'pymc3', 'numpyro', 'flax', 'pyro', 'blackjax']",Jupyter Notebook,,"pyprobml: Python code for ""Probabilistic Machine learning"" book by Kevin Murphy",probml,2022-12-18,2022-12-17,2016-08-17,330,15.971490280777537,66,5,5,"['collaborative,learning,andadaptiverobots(clear)', 'google', 'iitgandhinagar', 'indianinstituteofscience(iisc)', 'nvidia']",,10.58,7,6,77,0,1,0,1,7.0,3.0,90.0,0.4,232,50.48374 -278,data,https://github.com/airbnb/knowledge-repo,,,,airbnb/knowledge-repo,knowledge-repo,5238,704,180,"['data', 'data-science', 'knowledge', 'data-analysis']",Python,,knowledge-repo: A next-generation curated knowledge sharing platform for data scientists and other technical professions.,airbnb,2022-12-18,2022-12-16,2016-08-17,330,15.838444924406048,69,2,5,"['airbnb', 'datascientistatnetflix']",,7.25,17,13,77,0,1,5,1,17.0,9.0,90.0,0.5,16,43.26415 -283,util,https://github.com/sdispater/pendulum,,,,sdispater/pendulum,pendulum,5226,312,63,"['python', 'datetime', 'date', 'time', 'python3', 'timezones']",Python,https://pendulum.eustace.io,pendulum: Python datetimes made easy,sdispater,2022-12-18,2022-11-24,2016-06-27,338,15.461538461538462,87,1,5,['stxnext'],,0.75,39,15,79,1,1,8,1,39.0,28.0,90.0,0.7,60,41.094 -632,util,https://github.com/pyca/cryptography,,,,pyca/cryptography,cryptography,5220,1103,119,"['python', 'cryptography']",Python,https://cryptography.io,cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.,pyca,2022-12-18,2022-12-17,2013-08-07,488,10.681087401344636,275,1,5,['purple-dot'],,14.67,380,359,114,0,0,11,11,380.0,341.0,90.0,0.9,11167,67.29385 -538,nlp,https://github.com/nvidia/nemo,,,,nvidia/nemo,NeMo,5219,1294,138,"['deep-learning', 'speech-recognition', 'nlp', 'nlp-machine-learning', 'neural-network', 'machine-translation', 'speech-synthesis', 'speech-to-text', 'text-to-speech', 'nmt', 'language-model', 'speaker-diarization', 'speaker-recognition', 'text-normalization', 'asr', 'tts']",Python,https://nvidia.github.io/NeMo/,NeMo: a toolkit for conversational AI,nvidia,2022-12-18,2022-12-17,2019-08-05,176,29.65340909090909,193,2,5,"['nvidia', 'nyu,nvidia']",,18.9,833,753,41,0,14,12,14,833.0,1535.0,90.0,1.8,885,64.79671 -511,ml,https://github.com/google/automl,,,,google/automl,automl,5211,1382,150,"['automl', 'efficientdet', 'object-detection', 'efficientnet', 'efficientnetv2']",Jupyter Notebook,,automl: Google Brain AutoML,google,2022-12-16,2022-10-09,2020-03-12,144,36.044466403162055,37,2,5,"['amd', 'google']",,0.48,13,3,34,2,0,1,1,13.0,4.0,90.0,0.3,959,39.5766 -434,util,https://github.com/scikit-image/scikit-image,,,,scikit-image/scikit-image,scikit-image,5172,2076,187,"['image-processing', 'python', 'computer-vision', 'hacktoberfest', 'closember']",Python,https://scikit-image.org,scikit-image: Image processing in Python,scikit-image,2022-12-18,2022-12-17,2011-07-07,597,8.655032273487928,586,5,5,"['biomedicinediscoveryinstitute,monashuniversity', 'microsoft', 'mongodb', 'nvidia', 'universityofcalifornia,berkeley']",,5.21,376,226,139,0,2,8,2,377.0,566.0,90.0,1.5,779,66.90939 -3,ml,https://github.com/awslabs/autogluon,,,,awslabs/autogluon,autogluon,5160,674,94,"['automl', 'machine-learning', 'data-science', 'deep-learning', 'ensemble-learning', 'image-classification', 'computer-vision', 'natural-language-processing', 'structured-data', 'object-detection', 'gluon', 'transfer-learning', 'pytorch', 'automated-machine-learning', 'scikit-learn', 'autogluon', 'tabular-data', 'hyperparameter-optimization', 'time-series', 'forecasting']",Python,https://auto.gluon.ai/,"AutoGluon: AutoML for Image, Text, Time Series, and Tabular Data",awslabs,2022-12-18,2022-12-17,2019-07-29,177,29.152542372881356,96,4,5,"['amazon', 'amazonai', 'amazonwebservices', 'awsai']",,12.71,481,353,41,0,10,7,10,481.0,972.0,90.0,2.0,56,58.67239 -880,time-series,https://github.com/unit8co/darts,,,,unit8co/darts,darts,5138,557,41,"['python', 'time-series', 'forecasting', 'machine-learning', 'deep-learning']",Python,https://unit8co.github.io/darts/,darts: A python library for easy manipulation and forecasting of time series.,unit8co,2022-12-17,2022-12-16,2018-09-13,222,23.084724005134788,73,2,5,"['unit8co', 'unit8sa']",,4.38,278,166,52,0,10,8,10,278.0,419.0,90.0,1.5,13,50.20865 -546,ml-dl,https://github.com/facebookresearch/mmf,,,,facebookresearch/mmf,mmf,5093,899,117,"['pytorch', 'vqa', 'pretrained-models', 'multimodal', 'deep-learning', 'captioning', 'dialog', 'textvqa', 'hateful-memes', 'multi-tasking']",Python,https://mmf.sh/,mmf: A modular framework for vision & language multimodal research from Facebook AI Research (FAIR),facebookresearch,2022-12-18,2022-12-10,2018-06-27,233,21.79156479217604,107,3,5,"['metaai', 'researchhuggingface,contributorjquery,pastfacebookresearch', 'uwstudent']",,0.83,18,2,54,0,0,1,1,18.0,12.0,90.0,0.7,3572,51.54595 -352,ml-ops,https://github.com/activeloopai/hub,,,,activeloopai/hub,deeplake,5093,412,66,"['datasets', 'deep-learning', 'machine-learning', 'data-science', 'pytorch', 'tensorflow', 'data-version-control', 'python', 'ai', 'ml', 'mlops', 'computer-vision', 'cv', 'data-processing', 'image-processing', 'data-centric', 'jupyter-notebook', 'datalake', 'lakehouse']",Python,https://activeloop.ai,"deeplake: Data Lake for Deep Learning. Build, manage, query, version, & visualize datasets. Stream data real-time to PyTorch/TensorFlow. https://activeloop.ai ",activeloopai,2022-12-18,2022-12-16,2019-08-09,175,29.031758957654723,109,1,5,['activeloop'],,23.83,202,178,41,0,47,30,47,202.0,254.0,90.0,1.3,242,57.54266 -161,ml,https://github.com/wandb/client,,,,wandb/client,wandb,5078,387,38,"['machine-learning', 'experiment-track', 'deep-learning', 'keras', 'tensorflow', 'pytorch', 'hyperparameter-search', 'reinforcement-learning', 'mlops', 'data-science', 'collaboration', 'hyperparameter-optimization', 'reproducibility', 'hyperparameter-tuning', 'data-versioning', 'model-versioning', 'ml-platform']",Python,https://wandb.ai,wandb: 🔥 A tool for visualizing and tracking your machine learning experiments. This repo contains the CLI and Python API.,wandb,2022-12-18,2022-12-17,2017-03-24,299,16.958969465648856,135,2,5,"['crowdflower.com', 'weightsandbiases']",,11.27,692,325,70,0,26,21,26,692.0,1398.0,90.0,2.0,363,63.31971 -301,data,https://github.com/kaggle/kaggle-api,,,,kaggle/kaggle-api,kaggle-api,5073,978,188,[],Python,,kaggle-api: Official Kaggle API,kaggle,2022-12-18,2021-03-15,2018-01-25,255,19.849636668529904,36,1,5,['google'],,0.0,37,7,60,21,0,0,0,37.0,41.0,90.0,1.1,27,28.9492 -81,util,https://github.com/sphinx-doc/sphinx,,,,sphinx-doc/sphinx,sphinx,5056,1812,140,"['python', 'documentation', 'documentation-tool', 'sphinx', 'markdown', 'restructuredtext']",Python,https://www.sphinx-doc.org/,sphinx: The Sphinx documentation generator,sphinx-doc,2022-12-18,2022-12-16,2015-01-02,415,12.170563961485557,759,3,5,"['beproud', 'fzjülich', 'timeintermedia(timedia)']",,13.21,1262,297,97,0,15,31,15,1262.0,578.0,90.0,0.5,18396,74.03639 -279,jupyter,https://github.com/nteract/papermill,,,,nteract/papermill,papermill,5037,379,91,"['jupyter', 'notebooks', 'notebook-generator', 'nteract', 'publishing', 'pipeline', 'notebook', 'python', 'r', 'julia', 'scala']",Python,http://papermill.readthedocs.io/en/latest/,"papermill: 📚 Parameterize, execute, and analyze notebooks",nteract,2022-12-17,2022-10-18,2017-07-06,284,17.700301204819276,108,3,5,"['netflix', 'noteable-io', 'willingconsulting']",,0.77,36,19,66,2,0,14,14,36.0,56.0,90.0,1.6,106,50.18257 -214,nlp,https://github.com/speechbrain/speechbrain,,,,speechbrain/speechbrain,speechbrain,5021,974,110,"['speech-recognition', 'speech-toolkit', 'speaker-recognition', 'speech-to-text', 'speech-enhancement', 'speech-separation', 'audio', 'audio-processing', 'speech-processing', 'speechrecognition', 'asr', 'voice-recognition', 'spoken-language-understanding', 'speaker-diarization', 'speaker-verification', 'pytorch', 'huggingface', 'transformers', 'language-model', 'deep-learning']",Python,http://speechbrain.github.io,speechbrain: A PyTorch-based Speech Toolkit,speechbrain,2022-12-18,2022-12-12,2020-04-28,137,36.42176165803109,194,4,5,"['jpmorganchase', 'mit', 'samsung', 'universityofmontreal']",,17.15,271,185,32,0,3,3,3,271.0,521.0,90.0,1.9,1683,63.76976 -404,perf,https://github.com/python-trio/trio,,,,python-trio/trio,trio,5017,290,88,"['python', 'async', 'async-await', 'networking', 'io', 'trio', 'structured-concurrency']",Python,https://trio.readthedocs.io,Trio – a friendly Python library for async concurrency and I/O,python-trio,2022-12-18,2022-12-13,2017-01-16,309,16.236245954692556,138,2,5,"['elastic', 'hudsonrivertrading']",,6.5,128,97,72,0,0,4,4,128.0,226.0,90.0,1.8,503,57.8996 -605,jupyter,https://github.com/connorferster/handcalcs,,,,connorferster/handcalcs,handcalcs,4989,389,76,[],CSS,,handcalcs: Python library for converting Python calculations into rendered latex.,connorferster,2022-12-18,2022-09-28,2020-02-19,147,33.774661508704064,11,4,5,"['applemontechnologies', 'christianclauss', 'clearcalcs', 'rjc-development']",,0.98,19,5,34,3,3,3,3,19.0,20.0,90.0,1.1,13,34.90596 -686,util,https://github.com/py-pdf/pypdf2,,,,py-pdf/pypdf2,PyPDF2,4988,1143,139,"['pypdf2', 'pdf', 'python', 'pdf-parser', 'pdf-parsing', 'pdf-manipulation', 'pdf-documents', 'help-wanted']",Python,https://pypdf2.readthedocs.io/en/latest/,"PyPDF2: A pure-python PDF library capable of splitting, merging, cropping, and transforming the pages of PDF files",py-pdf,2022-12-18,2022-12-17,2012-01-06,571,8.729,160,1,5,['popsql'],,12.06,157,121,133,0,47,6,47,157.0,492.0,90.0,3.1,628,63.817 -652,profiling,https://github.com/joerick/pyinstrument,,,,joerick/pyinstrument,pyinstrument,4954,217,52,"['python', 'django', 'profiler', 'performance', 'profile', 'async']",Python,https://pyinstrument.readthedocs.io/,pyinstrument: 🚴 Call stack profiler for Python. Shows you why your code is slow!,joerick,2022-12-18,2022-12-05,2014-03-13,457,10.826724945363722,47,4,5,"['datadog,formerlyllnl', 'flycode-org', 'jpmorgan', 'nordprojects']",,1.92,47,39,107,0,0,6,6,47.0,51.0,90.0,1.1,30,49.90106 -471,util,https://github.com/parthjadhav/tkinter-designer,,,,parthjadhav/tkinter-designer,Tkinter-Designer,4944,470,51,"['tkinter', 'tkinter-gui', 'tkinter-python', 'tkinter-graphic-interface', 'python3', 'tkinter-widgets', 'gui-application', 'python-script', 'drag-and-drop', 'easy', 'easy-to-use', 'fast', 'gui', 'tkinter-designer', 'figma', 'python', 'automatic', 'collaborate', 'learn', 'hacktoberfest']",Python,,Tkinter-Designer: An easy and fast way to create a Python GUI 🐍,parthjadhav,2022-12-18,2022-12-17,2021-05-18,82,59.66896551724138,33,2,5,"['microsoftazure', 'xd2sketch']",,1.02,48,30,19,0,1,5,1,48.0,42.0,90.0,0.9,15,37.66943 -552,ml,https://github.com/open-mmlab/mmsegmentation,,,,open-mmlab/mmsegmentation,mmsegmentation,4927,1821,51,"['semantic-segmentation', 'pytorch', 'pspnet', 'deeplabv3', 'transformer', 'swin-transformer', 'realtime-segmentation', 'vessel-segmentation', 'retinal-vessel-segmentation', 'image-segmentation', 'medical-image-segmentation']",Python,https://mmsegmentation.readthedocs.io/en/latest/,mmsegmentation: OpenMMLab Semantic Segmentation Toolbox and Benchmark.,open-mmlab,2022-12-18,2022-12-13,2020-06-14,131,37.569716775599126,127,3,5,"['open-mmlab,shanghaiailaboratory', 'openmmlab', 'ucsd']",,4.42,403,300,31,0,16,14,16,403.0,797.0,90.0,2.0,229,59.1407 -15,ml-dl,https://github.com/skorch-dev/skorch,,,,skorch-dev/skorch,skorch,4891,330,81,"['scikit-learn', 'pytorch', 'machine-learning', 'hacktoberfest']",Jupyter Notebook,,skorch: A scikit-learn compatible neural network library that wraps PyTorch,skorch-dev,2022-12-18,2022-12-13,2017-07-18,282,17.29141414141414,52,3,5,"['aeolusrobotics', 'ottogroupbi', 'quansight-labs']",,1.06,40,32,66,0,2,3,2,40.0,92.0,90.0,2.3,14,46.17694 -569,ml,https://github.com/mdbloice/augmentor,,,,mdbloice/augmentor,Augmentor,4841,852,123,"['augmentation', 'machine-learning', 'deep-learning', 'neural-networks']",Python,https://augmentor.readthedocs.io/en/stable,Augmentor: Image augmentation library in Python for machine learning.,mdbloice,2022-12-17,2022-09-23,2016-03-01,354,13.642109500805153,22,1,5,['medicaluniversitygraz'],,0.17,1,0,83,3,0,3,3,1.0,1.0,90.0,1.0,68,33.28478 -169,nlp,https://github.com/minimaxir/textgenrnn,,,,minimaxir/textgenrnn,textgenrnn,4825,753,138,"['keras', 'deep-learning', 'text-generation', 'tensorflow', 'python']",Python,,textgenrnn: Easily train your own text-generating neural network of any size and complexity on any text dataset with a few lines of code.,minimaxir,2022-12-18,2020-07-14,2017-08-07,280,17.232142857142858,19,2,5,"['buzzfeed', 'valohai']",,0.0,10,6,65,30,0,2,2,10.0,4.0,90.0,0.4,4,24.79389 -784,diffusion,https://github.com/xavierxiao/dreambooth-stable-diffusion,,,,xavierxiao/dreambooth-stable-diffusion,Dreambooth-Stable-Diffusion,4801,521,73,"['pytorch', 'pytorch-lightning', 'stable-diffusion', 'text-to-image']",Jupyter Notebook,,Dreambooth-Stable-Diffusion: Implementation of Dreambooth (https://arxiv.org/abs/2208.12242) with Stable Diffusion,xavierxiao,2022-12-18,2022-09-21,2022-09-06,14,323.1442307692308,1,1,5,['universityofchicago'],,0.6,100,13,3,3,0,0,0,100.0,234.0,90.0,2.3,15,21.16343 -661,study,https://github.com/udacity/deep-learning-v2-pytorch,,,,udacity/deep-learning-v2-pytorch,deep-learning-v2-pytorch,4793,5176,172,"['deep-learning', 'neural-network', 'convolutional-networks', 'pytorch', 'recurrent-networks', 'style-transfer', 'sentiment-analysis']",Jupyter Notebook,,deep-learning-v2-pytorch: Projects and exercises for the latest Deep Learning ND program https://www.udacity.com/course/deep-learning-nanodegree--nd101,udacity,2022-12-18,2022-10-03,2018-09-04,223,21.410976388002553,97,3,5,"['bardeen', 'lumafield', 'udacity']",,0.08,3,1,52,3,0,0,0,3.0,0.0,90.0,0.0,1469,40.45056 -380,data,https://github.com/alirezamika/autoscraper,,,,alirezamika/autoscraper,autoscraper,4781,510,125,"['scraping', 'scraper', 'scrape', 'webscraping', 'crawler', 'web-scraping', 'ai', 'artificial-intelligence', 'python', 'webautomation', 'automation', 'machine-learning']",Python,,"autoscraper: A Smart, Automatic, Fast and Lightweight Web Scraper for Python",alirezamika,2022-12-18,2022-07-17,2020-08-31,120,39.84166666666667,8,1,5,['cognitifai'],,0.04,6,4,28,5,1,7,1,6.0,9.0,90.0,1.5,0,20.98298 -223,nlp,https://github.com/kingoflolz/mesh-transformer-jax,1.0,,,kingoflolz/mesh-transformer-jax,mesh-transformer-jax,4763,673,82,[],Python,,mesh-transformer-jax: Model parallel transformers in JAX and Haiku,kingoflolz,2022-12-18,2022-01-28,2021-03-13,92,51.61145510835913,23,0,5,[],,0.08,13,2,22,11,0,0,0,13.0,12.0,90.0,0.9,7,19.53991 -181,security,https://github.com/pycqa/bandit,,,,pycqa/bandit,bandit,4744,493,62,"['linter', 'bandit', 'security-tools', 'security-scanner', 'security', 'static-code-analysis', 'python']",Python,https://bandit.readthedocs.io,Bandit is a tool designed to find common security issues in Python code.,pycqa,2022-12-18,2022-10-28,2018-04-26,242,19.557126030624264,160,2,5,"['redhat,inc', 'securesauce']",,2.08,31,10,57,2,3,8,3,31.0,49.0,90.0,1.6,1216,51.92544 -642,util,https://github.com/pycqa/pycodestyle,,,,pycqa/pycodestyle,pycodestyle,4742,685,119,"['python', 'pep8', 'styleguide', 'style-guide', 'linter-plugin', 'linter-flake8', 'flake8-plugin']",Python,https://pycodestyle.pycqa.org,pycodestyle: Simple Python style checker in one Python file,pycqa,2022-12-18,2022-12-13,2009-10-02,689,6.878159966846249,131,2,5,"['llnl', 'tableau&salesforce']",,0.88,37,36,161,0,0,3,3,37.0,41.0,90.0,1.1,2936,56.665 -687,util,https://github.com/bndr/pipreqs,,,,bndr/pipreqs,pipreqs,4741,319,59,[],Python,,pipreqs - Generate pip requirements.txt file based on imports of any project. Looking for maintainers to move this project forward.,bndr,2022-12-18,2022-12-02,2015-04-22,399,11.860972122944961,52,0,5,[],,0.02,28,7,93,1,0,3,3,28.0,26.0,90.0,0.9,27,35.38096 -513,util,https://github.com/agronholm/apscheduler,,,,agronholm/apscheduler,apscheduler,4722,604,126,[],Python,,apscheduler: Task scheduling library for Python,agronholm,2022-12-18,2022-12-14,2016-03-27,351,13.447518307567128,37,1,5,['nextdaysolutionsoy'],,2.81,25,16,82,0,0,8,8,25.0,53.0,90.0,2.1,713,51.27874 -265,util,https://github.com/pytransitions/transitions,,,,pytransitions/transitions,transitions,4690,512,93,"['python', 'state-machine', 'nested-states', 'hierarchical-state-machine', 'state-diagram']",Python,,"transitions: A lightweight, object-oriented finite state machine implementation in Python with many extensions",pytransitions,2022-12-18,2022-11-08,2014-10-12,427,10.979933110367893,75,3,5,"['caretechowl,fhbielefeld', 'jrc-stu', 'twitter']",,0.65,8,5,100,1,2,6,2,8.0,7.0,90.0,0.9,143,45.58958 -213,data,https://github.com/facebookresearch/augly,,,,facebookresearch/augly,AugLy,4625,267,61,[],Python,https://ai.facebook.com/blog/augly-a-new-data-augmentation-library-to-help-build-more-robust-ai-models/,"AugLy: A data augmentations library for audio, image, text, and video.",facebookresearch,2022-12-16,2022-12-05,2021-06-09,79,58.01971326164875,26,2,5,"['facebookresearch', 'omnilib']",,1.02,1,0,19,0,1,4,1,1.0,0.0,90.0,0.0,106,33.13565 -551,ml,https://github.com/open-mmlab/mmcv,,,,open-mmlab/mmcv,mmcv,4578,1326,83,[],Python,https://mmcv.readthedocs.io/en/latest/,mmcv: OpenMMLab Computer Vision Foundation,open-mmlab,2022-12-18,2022-12-14,2018-08-22,225,20.282278481012657,237,3,5,"['mmlab,ntu', 'open-mmlab', 'ucsd']",,5.75,283,219,53,0,18,23,18,283.0,368.0,90.0,1.3,41,58.07361 -830,typing,https://github.com/python-attrs/attrs,1.0,,,python-attrs/attrs,attrs,4546,319,58,"['python', 'boilerplate', 'classes', 'oop', 'attributes', 'srp']",Python,https://www.attrs.org/,attrs: Python Classes Without Boilerplate,python-attrs,2022-12-18,2022-12-18,2015-01-27,411,11.037807839056539,137,2,5,"['pocketzworld', 'variomediaag']",,4.12,61,44,96,0,3,3,3,61.0,133.0,90.0,2.2,1224,58.64417 -783,diffusion,https://github.com/carson-katri/dream-textures,,,,carson-katri/dream-textures,dream-textures,4525,221,85,"['ai', 'blender', 'blender-addon', 'image-generation', 'stable-diffusion']",Python,,dream-textures: Stable Diffusion built-in to the Blender shader editor,carson-katri,2022-12-18,2022-12-15,2022-09-08,14,310.53921568627453,7,2,5,"['blastframe', 'blenderdiplom']",,2.1,352,214,3,0,9,36,9,352.0,1050.0,90.0,3.0,5,37.42735 -247,util,https://github.com/jorgebastida/awslogs,,,,jorgebastida/awslogs,awslogs,4512,325,61,[],Python,,awslogs: AWS CloudWatch logs for Humans™,jorgebastida,2022-12-16,2020-07-10,2015-01-21,412,10.932502596053999,39,2,5,"['freelancer,upforhire', 'infiniteforksl']",,0.0,6,0,96,30,0,1,1,6.0,3.0,90.0,0.5,53,29.83306 -97,jupyter,https://github.com/voila-dashboards/voila,,,,voila-dashboards/voila,voila,4489,448,77,"['jupyter', 'jupyter-notebook', 'jupyterlab-extension', 'dashboarding']",Python,https://voila.readthedocs.io,voila: Voilà turns Jupyter notebooks into standalone web applications,voila-dashboards,2022-12-18,2022-12-13,2018-08-21,225,19.87539531941809,63,2,5,"['maartenbreddels', 'quantstack']",,2.63,114,64,53,0,14,29,14,114.0,285.0,90.0,2.5,77,52.98083 -312,util,https://github.com/indygreg/pyoxidizer,,,,indygreg/pyoxidizer,PyOxidizer,4430,190,59,[],Rust,,PyOxidizer: A modern Python application packaging and distribution tool,indygreg,2022-12-17,2022-11-20,2018-12-18,208,21.210670314637483,53,2,5,"['franklin-ai', 'isaadvisers']",,27.5,40,6,49,0,11,88,11,40.0,47.0,90.0,1.2,59,50.74155 -66,util,https://github.com/pycqa/pylint,,,,pycqa/pylint,pylint,4389,950,72,"['static-analysis', 'linter', 'static-code-analysis', 'code-quality', 'pep8', 'closember', 'hacktoberfest']",Python,http://pylint.pycqa.org,pylint: It's not just a linter that annoys you!,pycqa,2022-12-18,2022-12-17,2015-12-09,366,11.968445656408258,503,2,5,"['azavea', 'channable']",,36.04,722,471,86,0,28,24,28,722.0,2451.0,90.0,3.4,17832,78.20634 -206,ml,https://github.com/lucidrains/deep-daze,,,,lucidrains/deep-daze,deep-daze,4366,328,76,"['artificial-intelligence', 'deep-learning', 'transformers', 'siren', 'implicit-neural-representation', 'text-to-image', 'multi-modality']",Python,,deep-daze: Simple command line tool for text to image generation using OpenAI's CLIP and Siren (Implicit neural representation network). Technique was originally created by https://twitter.com/advadnoun,lucidrains,2022-12-18,2022-03-13,2021-01-17,100,43.59771754636234,14,1,5,['adalab'],,0.04,1,0,23,9,2,35,2,1.0,1.0,90.0,1.0,37,24.99936 -196,viz,https://github.com/lux-org/lux,,,,lux-org/lux,lux,4329,338,86,"['visualization-tools', 'jupyter', 'python', 'data-science', 'exploratory-data-analysis', 'visualization', 'pandas']",Python,,lux: Automatically visualize your pandas dataframe via a single print! 📊 💡,lux-org,2022-12-18,2022-05-21,2020-01-08,153,28.162639405204462,20,1,5,['ponder-org'],,0.35,6,0,36,7,2,4,2,6.0,11.0,90.0,1.8,0,23.75284 -21,nlp,https://github.com/facebookresearch/drqa,,,,facebookresearch/drqa,DrQA,4315,898,165,[],Python,,DrQA: Reading Wikipedia to Answer Open-Domain Questions,facebookresearch,2022-12-08,2021-05-18,2017-07-07,284,15.170768458061275,12,3,5,"['facebookresearch', 'hewlett-packardenterprise', 'mitnlp']",,0.0,2,1,66,19,0,0,0,2.0,0.0,90.0,0.0,90,26.17873 -570,util,https://github.com/jd/tenacity,,,,jd/tenacity,tenacity,4313,217,43,"['python', 'failure', 'retry', 'retry-library', 'hacktoberfest']",Python,http://tenacity.readthedocs.io,tenacity: Retrying library for Python,jd,2022-12-18,2022-12-16,2016-08-11,331,13.007755277897457,74,2,5,"['mergifyio', 'waymo']",,0.17,24,7,77,0,0,9,9,24.0,27.0,90.0,1.1,502,50.34312 -603,ml,https://github.com/cleanlab/cleanlab,,,,cleanlab/cleanlab,cleanlab,4300,397,63,"['weak-supervision', 'machine-learning', 'confident-learning', 'robust-machine-learning', 'learning-with-confident-examples', 'learning-with-noisy-labels', 'noisy-data', 'data-cleaning', 'audio-classification', 'classification', 'data-quality', 'data-science', 'exploratory-data-analysis', 'image-classification', 'label-errors', 'noisy-labels', 'text-classification', 'data-centric-ai', 'data-centric-machine-learning']",Python,https://cleanlab.ai,"cleanlab: The standard data-centric AI package for data quality and machine learning with messy, real-world data and labels.",cleanlab,2022-12-18,2022-12-17,2018-05-11,240,17.88472964943553,24,3,5,"['cleanlab', 'cleanlab|mit', 'mitcsail']",,8.31,170,135,56,0,4,1,4,170.0,164.0,90.0,1.0,228,51.91166 -896,diffusion,https://github.com/apple/ml-stable-diffusion,,,,apple/ml-stable-diffusion,ml-stable-diffusion,4291,165,57,[],Python,,ml-stable-diffusion: Stable Diffusion with Core ML on Apple Silicon,apple,2022-12-18,2022-12-16,2022-11-16,4,910.2121212121212,6,2,5,"['christianclauss', 'google']",,0.17,74,17,1,0,1,12,1,74.0,192.0,90.0,2.6,0,24.38378 -717,data,https://github.com/jazzband/tablib,,,,jazzband/tablib,tablib,4203,570,141,[],Python,https://tablib.readthedocs.io/,"tablib: Python Module for Tabular Datasets in XLS, CSV, JSON, YAML, &c.",jazzband,2022-12-17,2022-12-10,2011-03-28,612,6.867647058823529,118,4,5,"['2xlibre.netsàrl', 'buser', 'http://www.lukelee.me', 'nordsoftware']",,0.31,9,8,143,0,3,4,3,9.0,12.0,90.0,1.3,117,50.9936 -101,ml,https://github.com/rasbt/mlxtend,,,,rasbt/mlxtend,mlxtend,4183,796,121,"['python', 'machine-learning', 'data-science', 'data-mining', 'association-rules', 'supervised-learning', 'unsupervised-learning']",Python,http://rasbt.github.io/mlxtend/,mlxtend: A library of extension and helper modules for Python's data analysis and machine learning libraries.,rasbt,2022-12-18,2022-12-18,2014-08-14,435,9.603476549688422,91,2,5,"['coiled', 'lightning-ai,universityofwisconsin-madison']",,4.75,46,35,102,0,2,3,2,46.0,66.0,90.0,1.4,37,49.56181 -764,ml-dl,https://github.com/xpixelgroup/basicsr,,,,xpixelgroup/basicsr,BasicSR,4171,864,85,"['basicsr', 'esrgan', 'edsr', 'rcan', 'edvr', 'srresnet', 'srgan', 'super-resolution', 'restoration', 'pytorch', 'stylegan2', 'dfdnet', 'basicvsr', 'swinir', 'ecbsr']",Python,https://basicsr.readthedocs.io/en/latest/,"BasicSR: Open Source Image and Video Restoration Toolbox for Super-resolution, Denoise, Deblurring, etc. Currently, it includes EDSR, RCAN, SRResNet, SRGAN, ESRGAN, EDVR, BasicVSR, SwinIR, ECBSR, etc. Also support StyleGAN2, DFDNet.",xpixelgroup,2022-12-18,2022-11-06,2018-04-19,243,17.12434017595308,18,4,5,"['msft', 'tencent', 'um&siat', 'whut']",,1.02,30,6,57,1,4,7,4,30.0,16.0,90.0,0.5,0,33.79657 -734,ml-dl,https://github.com/pytorch/ignite,1.0,,,pytorch/ignite,ignite,4142,562,59,"['pytorch', 'neural-network', 'python', 'machine-learning', 'deep-learning', 'metrics', 'hacktoberfest', 'closember']",Python,https://pytorch-ignite.ai,ignite: High-level library to help with training and evaluating neural networks in PyTorch flexibly and transparently.,pytorch,2022-12-17,2022-12-10,2017-11-23,264,15.655507559395248,183,5,5,"['bimsbbioinfopytorch-ignite', 'cision', 'pytorch-ignitemichelin', 'quansight', 'sharechat']",,3.77,111,94,62,0,3,4,3,111.0,203.0,90.0,1.8,529,60.51595 -370,time-series,https://github.com/facebookresearch/kats,,,,facebookresearch/kats,Kats,4122,434,69,[],Python,,"Kats, a kit to analyze time series data, a lightweight, easy-to-use, generalizable, and extendable framework to perform time series analysis, from understanding the key statistics and characteristics, detecting change points and anomalies, to forecasting future trends. ",facebookresearch,2022-12-18,2022-12-16,2021-02-25,94,43.586102719033235,121,2,5,"['facebook', 'meta']",,4.67,31,19,22,0,1,1,1,31.0,48.0,90.0,1.5,118,47.46478 -293,util,https://github.com/pytoolz/toolz,,,,pytoolz/toolz,toolz,4103,246,82,[],Python,http://toolz.readthedocs.org/,toolz: A functional standard library for Python.,pytoolz,2022-12-18,2022-11-03,2013-09-13,483,8.487293144208039,74,4,5,"['coiled', 'formerlyquantopian', 'google', 'lynkertechnologies']",,0.29,15,7,113,2,1,3,1,15.0,27.0,90.0,1.8,90,46.22583 -27,typing,https://github.com/google/pytype,,,,google/pytype,pytype,4016,258,55,"['python', 'typing', 'typechecker', 'linter', 'types', 'static-analysis', 'static-code-analysis']",Python,https://google.github.io/pytype,pytype: A static type analyzer for Python code,google,2022-12-18,2022-12-16,2015-03-18,404,9.923049770561242,87,2,5,"['google', 'googledart-langflutter']",,12.4,56,41,94,0,0,21,21,56.0,45.0,90.0,0.8,2154,60.4968 -542,util,https://github.com/mamba-org/mamba,,,,mamba-org/mamba,mamba,4000,230,39,[],C++,https://mamba.readthedocs.io,mamba: The Fast Cross-Platform Package Manager,mamba-org,2022-12-18,2022-12-14,2019-03-05,197,20.216606498194945,101,2,5,"['prefix.devgmbh', 'quantstack']",,10.98,449,227,46,0,14,50,14,449.0,1062.0,90.0,2.4,0,49.83509 -565,gis,https://github.com/gboeing/osmnx,,,,gboeing/osmnx,osmnx,3963,734,121,"['openstreetmap', 'gis', 'street-networks', 'overpass-api', 'networkx', 'spatial-analysis', 'geospatial', 'urban-planning', 'transportation', 'geography', 'osmnx', 'networks', 'spatial-data', 'urban', 'osm', 'spatial', 'python', 'transport', 'mapping', 'routing']",Python,https://geoffboeing.com/publications/osmnx-complex-street-networks/,"OSMnx: Python for street networks. Retrieve, model, analyze, and visualize street networks and other spatial data from OpenStreetMap.",gboeing,2022-12-18,2022-12-18,2016-07-24,334,11.860196665241556,73,2,5,"['aaltouniversity', 'universityofsoutherncalifornia']",,2.94,51,49,78,0,0,8,8,51.0,88.0,90.0,1.7,93,52.04712 -227,ml,https://github.com/online-ml/river,1.0,,,online-ml/river,river,3958,437,82,"['incremental-learning', 'machine-learning', 'python', 'online-learning', 'online-statistics', 'data-science', 'streaming', 'online-machine-learning', 'streaming-data', 'concept-drift', 'real-time-processing', 'stream-processing']",Python,https://riverml.xyz,river: 🌊 Online machine learning in Python,online-ml,2022-12-18,2022-12-15,2019-01-24,203,19.44280701754386,89,5,5,"['carbonfact', 'manomano', 'phdcandidateatuniversityofsãopaulo', 'universityofwaikato', 'volvo-cars']",,5.13,60,55,47,0,6,7,6,60.0,155.0,90.0,2.6,2,50.30314 -258,crypto,https://github.com/ethereum/web3.py,1.0,,,ethereum/web3.py,web3.py,3917,1232,119,[],Python,http://web3py.readthedocs.io,web3.py: A python interface for interacting with the Ethereum blockchain and ecosystem.,ethereum,2022-12-18,2022-12-18,2016-04-14,348,11.237295081967213,218,2,5,"['ethereum', 'ethereumfoundation']",,5.88,149,122,81,0,0,28,28,149.0,174.0,90.0,1.2,547,61.69142 -549,ml,https://github.com/open-mmlab/mmediting,,,,open-mmlab/mmediting,mmediting,3869,698,83,"['super-resolution', 'inpainting', 'matting', 'image-generation', 'generative-adversarial-network', 'pytorch', 'deep-learning', 'video-interpolation', 'video-frame-interpolation', 'video-super-resolution', 'computer-vision', 'image-editing', 'image-processing', 'image-synthesis']",Python,https://mmediting.readthedocs.io/en/latest/,"mmediting: OpenMMLab Image and Video Restoration, Editing and Generation Toolbox",open-mmlab,2022-12-18,2022-11-30,2019-08-23,173,22.308896210873147,64,3,5,"['cuhk', 'nanyangtechnologicaluniversity', 'universityofalberta']",,3.6,461,389,40,1,12,6,12,460.0,452.0,90.0,1.0,1643,57.49587 -13,ml,https://github.com/districtdatalabs/yellowbrick,,,,districtdatalabs/yellowbrick,yellowbrick,3866,538,101,"['machine-learning', 'visual-analysis', 'model-selection', 'visualization', 'scikit-learn', 'visualizer', 'matplotlib', 'python', 'estimator', 'anaconda']",Python,http://www.scikit-yb.org/,yellowbrick: Visual analysis and diagnostic tools to facilitate machine learning model selection.,districtdatalabs,2022-12-18,2022-12-05,2016-05-18,343,11.247714048212801,110,2,5,"['rotationalio', 'rotationallabs']",,0.65,13,9,80,0,2,4,2,13.0,25.0,90.0,1.9,57,47.20525 -362,ml-ops,https://github.com/allegroai/clearml,,,,allegroai/clearml,clearml,3857,519,82,"['version-control', 'experiment-manager', 'version', 'control', 'experiment', 'deeplearning', 'deep-learning', 'machine-learning', 'machinelearning', 'ai', 'trains', 'trainsai', 'clearml', 'k8s', 'devops', 'mlops']",Python,https://clear.ml/docs,"ClearML - Auto-Magical CI/CD to streamline your ML workflow. Experiment Manager, MLOps and Data-Management",allegroai,2022-12-18,2022-12-18,2019-06-10,184,20.96195652173913,62,2,5,"['allegroai', 'techlearnersincallegroai']",,1.46,114,39,43,0,22,36,22,114.0,249.0,90.0,2.2,22,49.63001 -43,data,https://github.com/lk-geimfari/mimesis,,,,lk-geimfari/mimesis,mimesis,3833,303,64,"['mimesis', 'fake', 'data', 'generator', 'fixtures', 'dummy', 'json', 'schema', 'testing', 'python', 'json-generator', 'faker', 'mock', 'synthetic-data', 'datascience', 'api-mock']",Python,https://mimesis.name,"Mimesis is a high-performance fake data generator for Python, which provides data for a variety of purposes in a variety of languages. ",lk-geimfari,2022-12-18,2022-12-17,2016-09-09,327,11.706369982547994,112,2,5,"['extendi', 'roskomsvoboda']",,3.96,46,32,76,0,9,9,9,46.0,56.0,90.0,1.2,100,52.63675 -184,ml-dl,https://github.com/google/flax,,,,google/flax,flax,3821,444,74,['jax'],Python,https://flax.readthedocs.io,Flax is a neural network library for JAX that is designed for flexibility.,google,2022-12-18,2022-12-17,2020-01-10,153,24.904096834264433,183,1,5,['google'],,10.9,289,218,36,0,12,7,12,289.0,489.0,90.0,1.7,588,58.74947 -355,ml-ops,https://github.com/feast-dev/feast,,,,feast-dev/feast,feast,3820,714,74,"['machine-learning', 'features', 'ml', 'big-data', 'feature-store', 'python', 'mlops', 'data-engineering', 'data-science', 'data-quality']",Python,https://feast.dev,feast: Feature Store for Machine Learning,feast-dev,2022-12-17,2022-12-18,2018-12-10,210,18.19047619047619,179,3,5,"['gojekindonesia', 'tecton', 'tectonai']",,15.31,271,156,49,0,31,31,31,271.0,434.0,90.0,1.6,4,55.68404 -376,util,https://github.com/spotify/pedalboard,,,,spotify/pedalboard,pedalboard,3802,153,46,"['vst3', 'vst3-host', 'python', 'juce', 'tensorflow', 'audio-unit', 'pybind11', 'audio-processing', 'audio-production', 'audio-research', 'audio']",C++,,pedalboard: 🎛 🔊 A Python library for working with audio.,spotify,2022-12-18,2022-12-08,2021-07-06,75,50.120527306967986,24,3,5,"['b3ta', 'myr', 'spotify']",,6.35,36,23,18,0,30,24,30,36.0,38.0,90.0,1.1,16,45.11291 -199,viz,https://github.com/man-group/dtale,,,,man-group/dtale,dtale,3769,318,69,"['python27', 'python3', 'react', 'flask', 'pandas', 'ipython', 'jupyter-notebook', 'react-virtualized', 'data-analysis', 'data-visualization', 'visualization', 'plotly-dash', 'data-science', 'xarray']",TypeScript,http://alphatechadmin.pythonanywhere.com,dtale: Visualizer for pandas data structures,man-group,2022-12-17,2022-11-04,2019-07-15,179,21.05586592178771,29,0,5,[],,1.65,23,11,42,1,12,40,12,23.0,18.0,90.0,0.8,253,39.49359 -343,web,https://github.com/vitalik/django-ninja,,,,vitalik/django-ninja,django-ninja,3763,235,61,"['python', 'django', 'rest-api', 'openapi', 'pydantic', 'swagger', 'swagger-ui', 'django-ninja']",Python,https://django-ninja.rest-framework.com,"django-ninja: 💨 Fast, Async-ready, Openapi, type hints based framework for building APIs",vitalik,2022-12-18,2022-12-17,2020-05-19,134,27.903601694915253,70,0,5,[],,3.58,97,46,31,0,6,10,6,97.0,173.0,90.0,1.8,22,42.15851 -753,study,https://github.com/karpathy/nn-zero-to-hero,,,,karpathy/nn-zero-to-hero,nn-zero-to-hero,3754,259,151,[],Jupyter Notebook,,nn-zero-to-hero: Neural Networks: Zero to Hero,karpathy,2022-12-18,2022-11-21,2022-09-08,14,257.62745098039215,2,0,5,[],,0.17,13,5,3,1,0,0,0,13.0,18.0,90.0,1.4,0,11.77752 -388,nlp,https://github.com/makcedward/nlpaug,,,,makcedward/nlpaug,nlpaug,3690,420,39,"['nlp', 'augmentation', 'machine-learning', 'artificial-intelligence', 'data-science', 'natural-language-processing', 'adversarial-attacks', 'adversarial-example', 'ai', 'ml']",Jupyter Notebook,https://makcedward.github.io/,nlpaug: Data augmentation for NLP ,makcedward,2022-12-17,2022-07-07,2019-03-21,195,18.867786705624543,33,4,5,"['clevertech', 'cresta', 'toyotaconnected', 'truefoundry']",,0.37,11,1,46,5,2,7,2,11.0,6.0,90.0,0.5,2,31.06954 -855,profiling,https://github.com/pythonprofilers/memory_profiler,,,,pythonprofilers/memory_profiler,memory_profiler,3684,363,75,[],Python,http://pypi.python.org/pypi/memory_profiler,memory_profiler: Monitor Memory usage of Python code,pythonprofilers,2022-12-17,2022-12-06,2011-10-14,583,6.314397649363369,101,2,5,"['cardiologs', 'google']",,0.73,21,14,136,0,0,4,4,21.0,23.0,90.0,1.1,225,50.60987 -357,data,https://github.com/amundsen-io/amundsen,,,,amundsen-io/amundsen,amundsen,3680,891,245,"['amundsen', 'metadata', 'data-catalog', 'data-discovery', 'linuxfoundation']",Python,https://www.amundsen.io/amundsen/,"Amundsen is a metadata driven application for improving the productivity of data analysts, data scientists and engineers when interacting with data.",amundsen-io,2022-12-18,2022-12-15,2019-05-14,187,19.5893536121673,215,2,5,"['databricksamundsen-ioapache', 'lyft']",,3.73,270,253,44,0,48,33,48,270.0,147.0,90.0,0.5,16,52.59996 -822,ml,https://github.com/project-monai/monai,,,,project-monai/monai,MONAI,3663,698,89,"['healthcare-imaging', 'deep-learning', 'medical-image-computing', 'medical-image-processing', 'pytorch', 'python3', 'monai']",Python,https://monai.io/,MONAI: AI Toolkit for Healthcare Imaging,project-monai,2022-12-18,2022-12-18,2019-10-11,166,22.00944206008584,131,2,5,"[""king'scollegelondon"", 'nvidia']",,14.46,573,466,39,0,5,22,5,572.0,1388.0,90.0,2.4,151,58.62208 -91,ml,https://github.com/uber/causalml,,,,uber/causalml,causalml,3644,579,76,"['incubation', 'machine-learning', 'causal-inference', 'uplift-modeling']",Python,,causalml: Uplift modeling and causal inference with machine learning algorithms,uber,2022-12-18,2022-12-12,2019-07-09,179,20.260524225575853,48,3,5,"['spotify', 'toyotaresearchinstitute', 'uber']",,1.48,45,19,42,0,5,3,5,45.0,45.0,90.0,1.0,19,44.54986 -354,ml-interpretability,https://github.com/pytorch/captum,,,,pytorch/captum,captum,3635,390,213,"['interpretability', 'interpretable-ai', 'interpretable-ml', 'feature-importance', 'feature-attribution']",Python,https://captum.ai,captum: Model interpretability and understanding for PyTorch,pytorch,2022-12-17,2022-12-16,2019-08-27,172,21.02892561983471,95,2,5,"['facebook', 'meta']",,2.1,87,45,40,0,1,2,1,87.0,170.0,90.0,2.0,444,51.6051 -762,sim,https://github.com/quantumlib/cirq,,,,quantumlib/cirq,Cirq,3617,815,175,"['quantum-circuits', 'nisq', 'quantum-algorithms', 'quantum-computing', 'cirq']",Python,,"Cirq: A python framework for creating, editing, and invoking Noisy Intermediate Scale Quantum (NISQ) circuits.",quantumlib,2022-12-18,2022-12-16,2017-12-14,261,13.82796286182414,179,2,5,"['dukeuniversity', 'google']",,15.63,119,76,61,0,4,5,4,119.0,178.0,90.0,1.5,1234,60.47867 -58,gamedev,https://github.com/panda3d/panda3d,,,,panda3d/panda3d,panda3d,3608,730,192,"['game-engine', 'open-source', 'panda3d', 'cross-platform', 'python', 'panda3d-game-engine', 'game-development', 'opengl', 'multi-platform', 'gamedev', 'c-plus-plus']",C++,https://www.panda3d.org/,"panda3d: Powerful, mature open-source cross-platform game engine for Python and C++, developed by Disney and CMU",panda3d,2022-12-18,2022-12-16,2013-09-30,481,7.501039501039501,155,0,5,[],,8.71,128,83,112,0,2,2,2,128.0,194.0,90.0,1.5,523,52.9106 -793,ml-ops,https://github.com/orchest/orchest,,,,orchest/orchest,orchest,3589,212,36,"['data-science', 'machine-learning', 'pipelines', 'ide', 'jupyter', 'cloud', 'self-hosted', 'jupyterlab', 'notebooks', 'docker', 'python', 'data-pipelines', 'orchest', 'deployment', 'kubernetes', 'airflow', 'dag', 'etl', 'etl-pipeline']",TypeScript,https://orchest.io,"orchest: Build data pipelines, the easy way 🛠️",orchest,2022-12-18,2022-12-15,2020-05-21,134,26.669851380042463,31,2,5,"['orchest', 'orchest.io']",,82.5,254,225,31,0,99,75,99,254.0,203.0,90.0,0.8,757,58.83738 -423,util,https://github.com/tebelorg/rpa-python,,,,tebelorg/rpa-python,RPA-Python,3566,523,99,"['rpa', 'python', 'opencv', 'tesseract', 'tagui', 'sikuli', 'cross-platform']",Python,,RPA-Python: Python package for doing RPA,tebelorg,2022-12-16,2022-09-07,2019-03-30,194,18.354411764705883,3,1,5,['universityofappliedtrialanderror'],,1.17,25,13,45,3,3,13,3,25.0,38.0,90.0,1.5,8,28.91587 -209,web,https://github.com/pywebio/pywebio,,,,pywebio/pywebio,PyWebIO,3563,319,45,['pywebio'],Python,https://pywebio.readthedocs.io,PyWebIO: Write interactive web app in script way.,pywebio,2022-12-18,2022-11-26,2020-02-29,146,24.3564453125,15,1,5,['christianclauss'],,1.71,27,3,34,1,0,10,10,27.0,21.0,90.0,0.8,6,33.30083 -309,crypto,https://github.com/crytic/slither,,,,crytic/slither,slither,3530,645,61,"['solidity', 'ethereum', 'static-analysis']",Python,https://blog.trailofbits.com/2018/10/19/slither-a-solidity-static-analysis-framework/,slither: Static Analyzer for Solidity,crytic,2022-12-17,2022-11-28,2018-09-05,223,15.77905491698595,96,1,5,['trailofbits'],,6.79,193,90,52,1,3,7,3,193.0,305.0,90.0,1.6,369,51.45896 -616,testing,https://github.com/spulec/freezegun,,,,spulec/freezegun,freezegun,3510,243,34,[],Python,,freezegun: Let your Python tests travel through time,spulec,2022-12-18,2022-08-12,2012-12-11,522,6.713114754098361,106,5,5,"['dryft-technologies', 'nordsoftware', 'pioneervalleybooks', 'policystat', 'yipitdata']",,0.33,22,1,122,4,0,5,5,22.0,15.0,90.0,0.7,692,49.82397 -770,data,https://github.com/gristlabs/grist-core,,,,gristlabs/grist-core,grist-core,3501,164,40,"['awesome', 'database', 'spreadsheet']",TypeScript,https://support.getgrist.com/self-managed/,grist-core: Grist is the evolution of spreadsheets.,gristlabs,2022-12-18,2022-12-12,2020-05-22,134,26.043570669500532,20,1,5,['gristlabs'],,10.13,117,58,31,0,8,5,8,117.0,253.0,90.0,2.2,11,43.84005 -442,gis,https://github.com/osgeo/gdal,,,,osgeo/gdal,gdal,3496,1955,169,"['raster', 'geospatial-data', 'vector', 'remote-sensing']",C++,https://gdal.org,GDAL is an open source MIT licensed translator library for raster and vector geospatial data formats.,osgeo,2022-12-18,2022-12-17,2012-10-09,531,6.573193661026054,506,3,5,"['cadcorp', 'google', 'spatialys']",,47.69,625,575,124,0,9,14,9,625.0,665.0,90.0,1.1,6036,74.09368 -280,nlp,https://github.com/maartengr/bertopic,,,,maartengr/bertopic,BERTopic,3488,455,45,"['bert', 'transformers', 'topic-modeling', 'sentence-embeddings', 'nlp', 'machine-learning', 'topic', 'ldavis', 'topic-modelling', 'topic-models']",Python,https://maartengr.github.io/BERTopic/,BERTopic: Leveraging BERT and c-TF-IDF to create easily interpretable topics. ,maartengr,2022-12-18,2022-12-06,2020-09-22,116,29.848410757946212,15,5,5,"['ada', 'expedock', 'iknl', 'mustanganalytics', 'scitedotai']",,0.44,221,136,27,0,3,11,3,221.0,544.0,90.0,2.5,0,40.16454 -287,gis,https://github.com/geopandas/geopandas,1.0,,,geopandas/geopandas,geopandas,3462,774,107,[],Python,http://geopandas.org/,geopandas: Python tools for geographic data,geopandas,2022-12-18,2022-12-10,2013-06-27,494,7.0,183,2,5,"['planetlabs', 'udl-ai']",,3.08,204,93,115,0,5,3,5,204.0,443.0,90.0,2.2,243,58.6562 -778,study,https://github.com/nielsrogge/transformers-tutorials,,,,nielsrogge/transformers-tutorials,Transformers-Tutorials,3456,516,77,"['transformers', 'pytorch', 'bert', 'vision-transformer', 'layoutlm', 'gpt-2']",Jupyter Notebook,,Transformers-Tutorials: This repository contains demos I made with the Transformers library by HuggingFace.,nielsrogge,2022-12-18,2022-12-16,2020-08-31,120,28.8,4,2,5,"['huggingface', 'roboflow']",,2.33,63,25,28,0,0,0,0,63.0,92.0,90.0,1.5,0,29.1555 -782,diffusion,https://github.com/jina-ai/discoart,,,,jina-ai/discoart,discoart,3428,204,33,"['creative-ai', 'disco-diffusion', 'cross-modal', 'dalle', 'generative-art', 'multimodal', 'diffusion', 'prompts', 'midjourney', 'imgen', 'discodiffusion', 'creative-art', 'clip-guided-diffusion', 'latent-diffusion', 'stable-diffusion']",Python,,discoart: 🪩 Create Disco Diffusion artworks in one line,jina-ai,2022-12-18,2022-08-17,2022-06-30,24,139.51162790697674,6,2,5,"['jina-ai', 'jinaai']",,7.21,14,0,6,4,110,241,110,14.0,19.0,90.0,1.4,8,30.58344 -754,study,https://github.com/karpathy/micrograd,,,,karpathy/micrograd,micrograd,3406,309,80,[],Jupyter Notebook,,micrograd: A tiny scalar-valued autograd engine and a neural net library on top of it with PyTorch-like API,karpathy,2022-12-18,2020-04-18,2020-04-13,140,24.32857142857143,2,1,5,['enscognitique'],,0.0,8,4,33,32,0,0,0,8.0,4.0,90.0,0.5,0,10.85839 -757,util,https://github.com/pypa/hatch,,,,pypa/hatch,hatch,3396,165,49,"['python', 'cli', 'virtualenv', 'packaging', 'versioning', 'build', 'plugin']",Python,https://hatch.pypa.io/latest/,"hatch: Modern, extensible Python project management",pypa,2022-12-18,2022-12-17,2017-05-31,289,11.721893491124261,20,3,5,"['datadog', 'douban', 'mongodb']",,10.4,164,126,68,0,82,15,82,164.0,303.0,90.0,1.8,205,56.4194 -462,util,https://github.com/rspeer/python-ftfy,,,,rspeer/python-ftfy,python-ftfy,3387,116,74,[],Python,http://ftfy.readthedocs.org,"python-ftfy: Fixes mojibake and other glitches in Unicode text, after the fact.",rspeer,2022-12-17,2022-10-25,2012-08-24,538,6.290527991509684,18,2,5,"['elementalcognition', 'luminoso']",,0.37,2,1,126,2,0,13,13,2.0,0.0,90.0,0.0,3,31.5632 -200,ml,https://github.com/huggingface/accelerate,,,,huggingface/accelerate,accelerate,3380,286,65,[],Python,https://huggingface.co/docs/accelerate,"accelerate: 🚀 A simple way to train and use PyTorch models with multi-GPU, TPU, mixed-precision",huggingface,2022-12-18,2022-12-16,2020-10-30,111,30.333333333333332,77,1,5,['huggingface'],,7.46,287,250,26,0,15,11,15,287.0,733.0,90.0,2.6,1206,57.99184 -790,diffusion,https://github.com/ashawkey/stable-dreamfusion,,,,ashawkey/stable-dreamfusion,stable-dreamfusion,3366,280,79,"['text-to-3d', 'gui', 'nerf', 'stable-diffusion', 'dreamfusion']",Python,,"stable-dreamfusion: A pytorch implementation of text-to-3D dreamfusion, powered by stable diffusion.",ashawkey,2022-12-18,2022-12-17,2022-10-06,10,318.4054054054054,6,2,5,"['ctcmedia', 'pekinguniversity']",,1.12,114,54,2,0,0,0,0,114.0,317.0,90.0,2.8,10,30.74917 -368,nlp,https://github.com/layout-parser/layout-parser,,,,layout-parser/layout-parser,layout-parser,3346,332,57,"['layout-analysis', 'deep-learning', 'object-detection', 'ocr', 'layout-parser', 'detectron2', 'document-layout-analysis', 'computer-vision', 'document-image-processing', 'layout-detection']",Python,https://layout-parser.github.io/,layout-parser: A Unified Toolkit for Deep Learning Based Document Image Analysis,layout-parser,2022-12-18,2022-08-06,2020-06-10,131,25.40347071583514,8,3,5,"['amazon', 'clinicalmlallenai', 'factminers']",,0.31,16,2,31,4,2,4,2,16.0,20.0,90.0,1.2,0,25.90676 -833,util,https://github.com/adafruit/circuitpython,,,,adafruit/circuitpython,circuitpython,3320,877,128,"['circuitpython', 'micropython', 'python', 'embedded', 'microcontroller', 'education', 'beginner', 'cpython', 'python3', 'hacktoberfest']",C,https://circuitpython.org,CircuitPython - a Python implementation for teaching coding with microcontrollers,adafruit,2022-12-18,2022-12-18,2016-08-20,330,10.051903114186851,877,2,5,"['chickadee-tech', 'unpythonicnetworks']",,37.1,622,448,77,0,31,37,31,622.0,1458.0,90.0,2.3,5191,75.94935 -421,ml,https://github.com/facebookresearch/reagent,,,,facebookresearch/reagent,ReAgent,3311,498,146,[],Python,https://reagent.ai,"ReAgent: A platform for Reasoning systems (Reinforcement Learning, Contextual Bandits, etc.)",facebookresearch,2022-12-13,2022-12-16,2017-07-27,281,11.75900558092339,151,2,5,"['banditml', 'cornell']",,2.08,22,15,66,0,0,0,0,22.0,36.0,90.0,1.6,587,51.06759 -897,viz,https://github.com/has2k1/plotnine,,,,has2k1/plotnine,plotnine,3278,184,65,"['plotting', 'grammar', 'graphics', 'python', 'data-analysis']",Python,https://plotnine.readthedocs.io/en/stable/,plotnine: A grammar of graphics for Python,has2k1,2022-12-16,2022-11-29,2017-04-24,295,11.111864406779661,99,1,5,['kreuzwerker'],,2.85,40,22,69,1,3,2,3,40.0,67.0,90.0,1.7,34,44.93393 -4,pandas,https://github.com/aws/aws-sdk-pandas,1.0,,,aws/aws-sdk-pandas,aws-sdk-pandas,3257,562,57,"['python', 'aws', 'pandas', 'apache-arrow', 'apache-parquet', 'data-engineering', 'etl', 'data-science', 'redshift', 'athena', 'lambda', 'aws-lambda', 'aws-glue', 'emr', 'amazon-athena', 'glue-catalog', 'mysql', 'amazon-sagemaker-notebook']",Python,https://aws-sdk-pandas.readthedocs.io,"aws-sdk-pandas: pandas on AWS - Easy integration with Athena, Glue, Redshift, Timestream, Neptune, OpenSearch, QuickSight, Chime, CloudWatchLogs, DynamoDB, EMR, SecretManager, PostgreSQL, MySQL, SQLServer and S3 (Parquet, CSV, JSON and EXCEL).",aws,2022-12-16,2022-12-16,2019-02-26,198,16.378591954022987,121,3,5,"['amazonwebservices', 'aws', 'vtex']",,5.17,328,297,46,0,14,26,14,328.0,1279.0,90.0,3.9,0,52.13058 -321,gui,https://github.com/r0x0r/pywebview,,,,r0x0r/pywebview,pywebview,3247,433,57,"['python', 'webkit', 'gtk', 'linux', 'windows', 'gui', 'osx', 'cocoa', 'html', 'javascript', 'qt', 'cef']",Python,https://pywebview.flowrl.com,"pywebview: Build GUI for your Python program with JavaScript, HTML, and CSS",r0x0r,2022-12-18,2022-12-05,2014-11-20,421,7.702134869535751,97,1,5,['beeper'],,1.46,66,46,98,0,7,6,7,66.0,194.0,90.0,2.9,43,50.70661 -663,util,https://github.com/zeromq/pyzmq,,,,zeromq/pyzmq,pyzmq,3225,610,102,"['cython', 'python', 'zeromq']",Python,http://zguide.zeromq.org/py:all,PyZMQ: Python bindings for zeromq,zeromq,2022-12-17,2022-12-13,2010-07-21,647,4.979047198941332,187,4,5,"['amazonwebservices', 'microsoft', 'simularesearchlaboratory', 'universityofcalifornia,berkeley.']",,3.42,60,48,151,0,0,6,6,60.0,63.0,90.0,1.1,604,60.29066 -895,time-series,https://github.com/awslabs/gluonts,,,,awslabs/gluonts,gluonts,3224,652,69,"['time-series', 'deep-learning', 'forecasting', 'neural-networks', 'machine-learning', 'time-series-prediction', 'time-series-forecasting', 'mxnet', 'pytorch', 'aws', 'sagemaker', 'timeseries', 'artificial-intelligence', 'data-science']",Python,https://ts.gluon.ai,gluonts: Probabilistic time series modeling in Python,awslabs,2022-12-17,2022-12-17,2019-05-15,187,17.17503805175038,98,3,5,"['amazon', 'awsawsawslabs', 'awslabs']",,5.65,176,121,44,0,27,19,27,176.0,224.0,90.0,1.3,0,48.36929 -208,crypto,https://github.com/cyberpunkmetalhead/binance-volatility-trading-bot,,,,cyberpunkmetalhead/binance-volatility-trading-bot,Binance-volatility-trading-bot,3222,763,145,[],Python,,Binance-volatility-trading-bot: This is a fully functioning Binance trading bot that measures the volatility of every coin on Binance and places trades with the highest gaining coins If you like this project consider donating though the Brave browser to allow me to continuously improve the script.,cyberpunkmetalhead,2022-12-14,2021-06-10,2021-05-08,84,38.227118644067794,19,1,5,['mazette!'],,0.0,2,0,20,19,0,0,0,2.0,0.0,90.0,0.0,0,12.55493 -93,web,https://github.com/unbit/uwsgi,,,,unbit/uwsgi,uwsgi,3218,668,113,[],C,http://projects.unbit.it/uwsgi,uWSGI application server container,unbit,2022-12-13,2022-11-23,2011-10-09,584,5.508926387869895,352,3,5,"['20tabsrl', 'menodizero.it', 'unbit']",,0.52,67,33,136,1,0,11,11,67.0,85.0,90.0,1.3,1403,60.09838 -361,ml-ops,https://github.com/polyaxon/polyaxon,,,,polyaxon/polyaxon,polyaxon,3216,316,77,"['deep-learning', 'machine-learning', 'artificial-intelligence', 'data-science', 'reinforcement-learning', 'kubernetes', 'tensorflow', 'pytorch', 'keras', 'mxnet', 'caffe', 'ml', 'k8s', 'jupyter', 'notebook', 'jupyterlab', 'pipelines', 'workflow', 'mlops', 'hyperparameter-optimization']",Python,https://polyaxon.com,polyaxon: MLOps Tools For Managing & Orchestrating The Machine Learning LifeCycle,polyaxon,2022-12-17,2022-11-11,2016-12-26,312,10.307692307692308,98,0,5,[],,5.58,6,0,73,1,0,25,25,6.0,0.0,90.0,0.0,111,40.37993 -319,gui,https://github.com/dddomodossola/remi,,,,dddomodossola/remi,remi,3185,390,119,"['python', 'gui-library', 'remi', 'platform-independent', 'ui', 'gui']",Python,,"remi: Python REMote Interface library. Platform independent. In about 100 Kbytes, perfect for your diet.",dddomodossola,2022-12-18,2022-11-23,2014-03-20,456,6.975907384230288,56,2,5,"['europeanspallationsourceeric', 'imtssrl']",,0.71,24,21,106,1,0,3,3,24.0,42.0,90.0,1.8,471,49.47621 -557,jupyter,https://github.com/executablebooks/jupyter-book,,,,executablebooks/jupyter-book,jupyter-book,3163,587,63,"['jupyter', 'sphinx-doc', 'documentation-generator']",Python,http://jupyterbook.org,"jupyter-book: Create beautiful, publication-quality books and documents from computational content.",executablebooks,2022-12-18,2022-12-09,2018-06-14,235,13.426925409338994,118,3,5,"['imperialcollegelondon', 'stanforduniversity', 'ucberkeley']",,1.63,107,37,55,0,4,8,4,107.0,197.0,90.0,1.8,139,53.37326 -99,ml,https://github.com/skvark/opencv-python,,,,skvark/opencv-python,opencv-python,3161,618,82,"['opencv', 'python', 'wheel', 'python-3', 'opencv-python', 'opencv-contrib-python', 'precompiled', 'pypi', 'manylinux']",Shell,https://pypi.org/project/opencv-python/,"opencv-python: Automated CI toolchain to produce precompiled opencv-python, opencv-python-headless, opencv-contrib-python and opencv-contrib-python-headless packages.",skvark,2022-12-18,2022-12-13,2016-04-08,349,9.04619787408013,40,2,5,"['softlandia-ltd', 'xperience.ai']",,0.75,50,30,82,0,6,10,6,50.0,105.0,90.0,2.1,1469,53.87962 -804,util,https://github.com/miguelgrinberg/python-socketio,,,,miguelgrinberg/python-socketio,python-socketio,3151,512,63,"['socket-io', 'socketio', 'socketio-server', 'websocket', 'long-polling', 'low-latency', 'web-server', 'python', 'asyncio', 'eventlet', 'gevent']",Python,,python-socketio: Python Socket.IO server and client,miguelgrinberg,2022-12-18,2022-12-08,2015-07-15,387,8.127118644067796,61,1,5,['untienots'],,1.19,51,43,90,0,0,12,12,51.0,105.0,90.0,2.1,285,52.06525 -250,web,https://github.com/websocket-client/websocket-client,,,,websocket-client/websocket-client,websocket-client,3133,724,88,"['websocket', 'websockets', 'websocket-client', 'websockets-client', 'python', 'rfc-6455']",Python,https://github.com/websocket-client/websocket-client,websocket-client: WebSocket client for Python,websocket-client,2022-12-17,2022-11-04,2010-12-28,624,5.013946044810242,205,3,5,"['piclo', 'redhat,inc', 'yacademy']",,0.96,32,26,146,2,7,6,7,32.0,57.0,90.0,1.8,986,56.86937 -832,pandas,https://github.com/blaze/blaze,,,,blaze/blaze,blaze,3118,386,200,[],Python,blaze.pydata.org,blaze: NumPy and Pandas interface to Big Data,blaze,2022-12-17,2019-08-15,2012-10-26,529,5.8893685914732865,65,4,5,"['awsthinkbox', 'coiled', 'formerlyquantopian', 'voltrondata']",,0.0,2,0,124,41,0,5,5,2.0,1.0,90.0,0.5,1860,41.24297 -182,testing,https://github.com/tox-dev/tox,,,,tox-dev/tox,tox,3115,452,40,"['testing', 'python', 'virtualenv', 'continuous-integration', 'cli', 'automation', 'venv', 'travis', 'appveyor', 'gitlab', 'circleci', 'azure-pipelines', 'hacktoberfest']",Python,https://tox.wiki,tox: Command line driven CI frontend and development task automation tool.,tox-dev,2022-12-16,2022-12-18,2016-09-17,326,9.546847635726795,26,3,5,"['bloomberglp', 'canonical', 'redhatansible']",,3.0,283,229,76,0,26,25,26,284.0,495.0,90.0,1.7,6182,62.32967 -35,data,https://github.com/jmcnamara/xlsxwriter,,,,jmcnamara/xlsxwriter,XlsxWriter,3115,592,121,"['python', 'xlsx-files', 'libxlsxwriter', 'pandas', 'charts', 'spreadsheet', 'xlsx', 'xlsxwriter']",Python,https://xlsxwriter.readthedocs.io,XlsxWriter: A Python module for creating Excel XLSX files.,jmcnamara,2022-12-16,2022-12-18,2013-01-04,519,5.996974697469747,47,1,5,['crunch.io'],,0.79,32,23,121,0,0,15,15,32.0,87.0,90.0,2.7,362,52.52992 -518,util,https://github.com/spack/spack,,,,spack/spack,spack,3102,1796,105,"['python', 'spack', 'package-manager', 'hpc', 'build-tools', 'radiuss', 'scientific-computing', 'macos', 'linux']",Python,https://spack.io,"spack: A flexible package manager that supports multiple versions, configurations, platforms, and compilers.",spack,2022-12-18,2022-12-18,2014-01-08,466,6.646464646464646,1314,3,5,"['llnl', 'np-complete', 'universityofillinoisaturbana-champaign']",,84.79,2517,1844,109,0,6,5,6,2515.0,5597.0,90.0,2.2,1578,77.96856 -443,gis,https://github.com/shapely/shapely,1.0,,,shapely/shapely,shapely,3100,501,82,[],Python,https://shapely.readthedocs.io/en/stable/,shapely: Manipulation and analysis of geometric objects,shapely,2022-12-18,2022-12-18,2011-12-31,572,5.416874687968048,140,3,5,"['gnsscience', 'nelen&schuurmans', 'planetlabs']",,3.21,221,143,134,0,14,9,14,221.0,488.0,90.0,2.2,135,60.42615 -0,data,https://github.com/andialbrecht/sqlparse,,,,andialbrecht/sqlparse,sqlparse,3091,613,93,[],Python,,sqlparse: A non-validating SQL parser module for Python,andialbrecht,2022-12-18,2022-09-23,2012-04-18,556,5.552219656145753,100,2,5,"['dyte-in,mafalda-sfu', 'pioneervalleybooks']",,0.46,27,4,130,3,0,3,3,27.0,36.0,90.0,1.3,2598,50.66783 -260,util,https://github.com/python-markdown/markdown,,,,python-markdown/markdown,markdown,3079,789,76,"['python-markdown', 'markdown', 'markdown-parser', 'markdown-to-html', 'python', 'python3']",Python,https://python-markdown.github.io/,markdown: A Python implementation of John Gruber’s Markdown with Extension support.,python-markdown,2022-12-17,2022-12-09,2010-05-29,655,4.698713756267713,164,2,5,"['rangle.io', 'theinterfacefinancialgroup']",,0.62,25,19,153,0,0,4,4,25.0,100.0,90.0,4.0,1745,59.48777 -384,nlp,https://github.com/minimaxir/gpt-2-simple,,,,minimaxir/gpt-2-simple,gpt-2-simple,3070,633,74,"['text-generation', 'tensorflow', 'openai', 'textgenrnn']",Python,,gpt-2-simple: Python package to easily retrain OpenAI's GPT-2 text-generating model on new texts,minimaxir,2022-12-18,2022-05-22,2019-04-13,192,15.965824665676077,21,2,5,"['buzzfeed', 'universityofnotredame']",,0.06,9,3,45,7,0,5,5,9.0,7.0,90.0,0.8,0,26.55902 -363,ml-ops,https://github.com/kubeflow/pipelines,,,,kubeflow/pipelines,pipelines,3069,1358,103,"['kubeflow-pipelines', 'mlops', 'kubeflow', 'machine-learning', 'kubernetes', 'pipeline', 'data-science']",Python,https://www.kubeflow.org/docs/components/pipelines/,pipelines: Machine Learning Pipelines for Kubeflow,kubeflow,2022-12-18,2022-12-17,2018-05-12,240,12.772294887039239,350,1,5,['google'],,14.87,577,245,56,0,30,28,30,577.0,1161.0,90.0,2.0,3456,67.56538 -140,nlp,https://github.com/neuml/txtai,,,,neuml/txtai,txtai,3059,273,54,"['python', 'search', 'machine-learning', 'nlp', 'deep-learning', 'document-search', 'audio-search', 'image-search', 'video-search', 'semantic-search', 'similarity-search', 'neural-search', 'contextual-search', 'vector-search', 'machine-learning-workflows', 'machine-learning-pipelines', 'microservice', 'api', 'cloud-native', 'txtai']",Python,https://neuml.github.io/txtai,txtai: 💡 Build AI-powered semantic search applications ,neuml,2022-12-18,2022-12-16,2020-08-09,123,24.84106728538283,8,2,5,"['bigtincan', 'neuml']",,7.63,68,57,29,0,11,11,11,68.0,99.0,90.0,1.5,3,40.01085 -138,ml-interpretability,https://github.com/pair-code/lit,1.0,,,pair-code/lit,lit,3043,322,71,"['machine-learning', 'natural-language-processing', 'visualization']",TypeScript,https://pair-code.github.io/lit,lit: The Learning Interpretability Tool: Interactively analyze ML models to understand their behavior in an extensible and framework agnostic interface.,pair-code,2022-12-18,2022-12-02,2020-07-28,124,24.371853546910756,27,2,5,"['deepmind', 'google']",,6.96,168,154,29,1,2,3,2,168.0,33.0,90.0,0.2,6,38.02059 -610,testing,https://github.com/seleniumbase/seleniumbase,,,,seleniumbase/seleniumbase,SeleniumBase,3027,726,119,"['python', 'selenium', 'webdriver', 'selenium-python', 'e2e-testing', 'seleniumbase', 'pytest-plugin', 'web-automation', 'pytest', 'behave', 'chrome', 'webkit', 'chromedriver', 'firefox', 'test']",Python,https://seleniumbase.io,SeleniumBase: Python framework for web automation and testing that extends Selenium.,seleniumbase,2022-12-18,2022-12-18,2014-03-04,458,6.596824408468244,35,2,5,"['https://www.iboss.com/', 'nausetconsulting']",,24.38,108,105,107,0,152,86,152,108.0,127.0,90.0,1.2,318,58.30856 -42,nlp,https://github.com/life4/textdistance,,,,life4/textdistance,textdistance,3015,240,61,"['distance', 'algorithm', 'python', 'textdistance', 'hamming-distance', 'levenshtein-distance', 'damerau-levenshtein', 'damerau-levenshtein-distance', 'algorithms', 'distance-calculation', 'jellyfish', 'diff', 'levenshtein']",Python,,"textdistance: Compute distance between sequences. 30+ algorithms, pure python implementation, common interface, optional external libs usage.",life4,2022-12-18,2022-09-18,2017-05-05,293,10.275073028237586,13,3,5,"['archlinux', 'sendcloud', 'universityofcambridge']",,0.79,0,0,68,3,3,2,3,0.0,0.0,90.0,0.0,73,32.26121 -336,ml,https://github.com/apple/coremltools,,,,apple/coremltools,coremltools,2999,481,110,"['coremltools', 'tensorflow', 'pytorch', 'coreml', 'machine-learning', 'model-converter', 'model-conversion']",Python,https://coremltools.readme.io,"coremltools: Core ML tools contain supporting tools for Core ML model conversion, editing, and validation.",apple,2022-12-17,2022-12-16,2017-06-30,285,10.507007007007006,143,1,5,['apple'],,2.0,312,236,67,0,5,6,5,312.0,465.0,90.0,1.5,49,51.19711 -698,util,https://github.com/joblib/joblib,,,,joblib/joblib,joblib,2994,357,63,"['python', 'parallel-computing', 'caching', 'multiprocessing', 'threading', 'memoization']",Python,http://joblib.readthedocs.org,joblib: Computing with Python functions.,joblib,2022-12-17,2022-11-25,2010-05-07,658,4.547190279887177,113,2,5,"['inria', 'inriasaclay-parietalteam']",,0.9,50,21,154,1,0,6,6,50.0,81.0,90.0,1.6,1999,55.63788 -348,ml-ops,https://github.com/evidentlyai/evidently,,,,evidentlyai/evidently,evidently,2986,325,32,"['data-drift', 'jupyter-notebook', 'pandas-dataframe', 'machine-learning', 'model-monitoring', 'html-report', 'production-machine-learning', 'machine-learning-operations', 'mlops', 'data-science', 'hacktoberfest']",Python,,evidently: Evaluate and monitor ML models from validation to production. Join our Discord: https://discord.com/invite/xZjKRaNp8b,evidentlyai,2022-12-18,2022-12-15,2020-11-25,107,27.721485411140584,31,2,5,"['evidentlyai', 'intento,evidentlyai']",,20.81,186,152,25,0,24,19,24,186.0,203.0,90.0,1.1,16,49.26592 -139,viz,https://github.com/vispy/vispy,,,,vispy/vispy,vispy,2985,604,121,"['hacktoberfest', 'python', 'opengl', 'visualization', 'closember']",Python,http://vispy.org,vispy: Main repository for Vispy,vispy,2022-12-17,2022-12-18,2013-03-21,508,5.86938202247191,182,4,5,"['independentsoftwareengineer', 'spacescienceandengineeringcenter(ssec)', 'universityofedinburgh', 'universityofwashington']",,3.31,79,47,119,0,6,3,6,79.0,326.0,90.0,4.1,125,61.27773 -285,crypto,https://github.com/ethereum/consensus-specs,,,,ethereum/consensus-specs,consensus-specs,2973,749,246,[],Python,,consensus-specs: Ethereum Proof-of-Stake Consensus Specifications,ethereum,2022-12-18,2022-12-14,2018-09-20,221,13.41779497098646,128,2,5,"['ctrl^t', 'oplabs']",,9.48,169,126,52,0,11,16,11,169.0,335.0,90.0,2.0,146,57.49323 -221,jupyter,https://github.com/jupyterlite/jupyterlite,,,,jupyterlite/jupyterlite,jupyterlite,2973,186,44,"['jupyter', 'jupyterlab', 'jupyterlab-extension', 'lite', 'webassembly', 'wasm', 'pyodide']",Python,https://jupyterlite.rtfd.io/en/latest/try/lab,jupyterlite: Wasm powered Jupyter running in the browser 💡,jupyterlite,2022-12-17,2022-12-14,2021-03-27,90,32.92879746835443,41,1,5,['quantstack'],,15.35,137,71,21,0,22,458,22,137.0,330.0,90.0,2.4,25,49.05449 -272,data,https://github.com/praw-dev/praw,,,,praw-dev/praw,praw,2962,449,72,"['python', 'reddit', 'api', 'oauth', 'praw', 'reddit-api']",Python,http://praw.readthedocs.io/,"PRAW, an acronym for ""Python Reddit API Wrapper"", is a python package that allows for simple access to Reddit's API.",praw-dev,2022-12-18,2022-12-09,2010-08-19,643,4.602441731409545,220,4,5,"['appfolio', 'billy', 'indeed', 'netflix']",,4.02,30,24,150,0,2,12,2,30.0,62.0,90.0,2.1,541,59.96511 -715,ml-ops,https://github.com/flyteorg/flyte,,,,flyteorg/flyte,flyte,2930,305,266,"['flyte', 'machine-learning', 'golang', 'scale', 'workflow', 'data-science', 'data-analysis', 'data', 'kubernetes-operator', 'kubernetes', 'orchestration-engine', 'mlops', 'dataops', 'grpc', 'python', 'battle-tested', 'production', 'production-grade', 'declarative', 'hacktoberfest']",Python,https://flyte.org,"flyte: Kubernetes-native workflow automation platform for complex, mission-critical data and ML processes at scale. It has been battle-tested at Lyft, Spotify, Freenome, and others and is truly open-source.",flyteorg,2022-12-18,2022-12-16,2019-10-21,165,17.757575757575758,110,2,5,"['flyteorg', 'unionai']",,5.98,375,172,38,0,31,25,31,376.0,569.0,90.0,1.5,31,54.33504 -381,ml-ops,https://github.com/aimhubio/aim,,,,aimhubio/aim,aim,2926,183,35,"['python', 'ai', 'data-science', 'data-visualization', 'experiment-tracking', 'machine-learning', 'metadata', 'metadata-tracking', 'ml', 'mlflow', 'mlops', 'pytorch', 'tensorboard', 'tensorflow', 'visualization']",TypeScript,https://aimstack.io,Aim 💫 — easy-to-use and performant open-source ML experiment tracker.,aimhubio,2022-12-18,2022-12-13,2019-05-31,185,15.779661016949152,48,3,5,"['aimhub', 'aimhubio', 'aimstack']",,13.19,332,236,43,0,45,42,45,332.0,521.0,90.0,1.6,33,55.40027 -623,util,https://github.com/suor/funcy,,,,suor/funcy,funcy,2923,133,73,"['functional-programming', 'utilities', 'python']",Python,,funcy: A fancy and practical functional tools,suor,2022-12-17,2022-08-25,2012-10-13,531,5.501747781661737,31,3,5,"['festicket', 'iress', 'obsidian-security']",,0.12,2,0,124,4,0,5,5,2.0,2.0,90.0,1.0,110,39.72755 -77,jupyter,https://github.com/quantopian/qgrid,,,,quantopian/qgrid,qgrid,2921,418,90,[],Python,,"qgrid: An interactive grid for sorting, filtering, and editing DataFrames in Jupyter notebooks",quantopian,2022-12-18,2020-04-07,2014-09-30,428,6.811125916055962,30,2,5,"['mongodb', 'sundellopensourceconsultingab']",,0.0,3,0,100,33,0,3,3,3.0,2.0,90.0,0.7,18,28.51022 -390,diffusion,https://github.com/openai/glide-text2im,,,,openai/glide-text2im,glide-text2im,2908,408,119,[],Python,,glide-text2im: GLIDE: a diffusion-based text-conditional image synthesis model,openai,2022-12-18,2022-03-21,2021-12-10,53,54.42780748663102,4,1,5,['texasa&mcenterforappliedtechnology'],,0.04,1,0,12,9,0,0,0,1.0,0.0,90.0,0.0,0,9.03597 -704,data,https://github.com/pyeve/cerberus,,,,pyeve/cerberus,cerberus,2890,226,48,"['python', 'data-validation']",Python,http://python-cerberus.org,"cerberus: Lightweight, extensible data validation library for Python",pyeve,2022-12-17,2021-05-05,2012-10-10,531,5.4352498656636214,62,1,5,['cir2000'],,0.0,9,4,124,20,0,2,2,9.0,9.0,90.0,1.0,144,35.6697 -476,gis,https://github.com/holoviz/datashader,1.0,,,holoviz/datashader,datashader,2887,361,95,"['holoviz', 'datashader', 'data-visualizations', 'rasterization']",Python,http://datashader.org,datashader: Quickly and accurately render even the largest data.,holoviz,2022-12-17,2022-12-16,2015-12-23,364,7.915785350567959,51,3,5,"['anaconda', 'stripe', 'voltrondata']",,1.56,54,41,85,0,4,14,4,54.0,53.0,90.0,1.0,17,46.58995 -660,ml,https://github.com/pytorch/glow,,,,pytorch/glow,glow,2882,655,154,[],C++,,glow: Compiler for Neural Network hardware accelerators,pytorch,2022-12-18,2022-12-16,2017-09-29,272,10.578919769271106,332,1,5,['facebook'],,3.33,52,16,64,0,0,0,0,52.0,95.0,90.0,1.8,3085,55.65613 -366,ml,https://github.com/facebookresearch/vissl,,,,facebookresearch/vissl,vissl,2877,300,53,[],Jupyter Notebook,https://vissl.ai,"VISSL is FAIR's library of extensible, modular and scalable components for SOTA Self-Supervised Learning with images.",facebookresearch,2022-12-16,2022-10-12,2020-04-09,140,20.466463414634145,34,3,5,"['google', 'meta', 'mosaicml']",,1.92,9,3,33,2,0,1,1,9.0,9.0,90.0,1.0,429,42.00235 -811,ml-ops,https://github.com/ploomber/ploomber,,,,ploomber/ploomber,ploomber,2874,199,27,"['workflow', 'machine-learning', 'data-science', 'data-engineering', 'mlops', 'papermill', 'jupyter', 'jupyter-notebooks', 'pipelines', 'vscode', 'pycharm', 'notebooks', 'hacktoberfest']",Python,https://ploomber.io,"ploomber: The fastest ⚡️ way to build data pipelines. Develop iteratively, deploy anywhere. ☁️",ploomber,2022-12-17,2022-12-16,2020-01-20,152,18.907894736842106,70,1,5,['ploomber'],,13.5,68,42,35,0,0,36,36,68.0,95.0,90.0,1.4,15,48.61145 -765,diffusion,https://github.com/lkwq007/stablediffusion-infinity,,,,lkwq007/stablediffusion-infinity,stablediffusion-infinity,2832,220,29,"['outpainting', 'stablediffusion']",Python,,stablediffusion-infinity: Outpainting with Stable Diffusion on an infinite canvas,lkwq007,2022-12-18,2022-12-13,2022-09-02,15,183.55555555555554,6,1,5,['cuhk'],,4.29,123,65,4,0,0,9,9,123.0,352.0,90.0,2.9,10,35.96787 -624,util,https://github.com/more-itertools/more-itertools,,,,more-itertools/more-itertools,more-itertools,2825,221,35,[],Python,https://more-itertools.rtfd.io,"more-itertools: More routines for operating on iterables, beyond itertools",more-itertools,2022-12-17,2022-12-05,2012-04-26,555,5.084854718436616,92,3,5,"['mozilla', 'universityofoxford', 'wurlinc']",,1.31,25,22,130,0,3,4,3,25.0,30.0,90.0,1.2,420,53.58365 -761,sim,https://github.com/qiskit/qiskit,,,,qiskit/qiskit,qiskit,2821,756,97,"['qiskit', 'quantum-computing', 'quantum-programming-language', 'documentation']",OpenQASM,https://qiskit.org,"Qiskit is an open-source SDK for working with quantum computers at the level of circuits, algorithms, and application modules.",qiskit,2022-12-18,2022-12-12,2018-12-12,209,13.451634877384196,155,1,5,['ibm'],,1.4,49,37,49,0,16,21,16,49.0,53.0,90.0,1.1,4225,56.82784 -261,time-series,https://github.com/salesforce/merlion,,,,salesforce/merlion,Merlion,2817,242,45,"['time-series', 'anomaly-detection', 'forecasting', 'machine-learning', 'benchmarking', 'automl', 'ensemble-learning']",Python,,Merlion: A Machine Learning Framework for Time Series Intelligence,salesforce,2022-12-18,2022-12-10,2021-07-28,72,38.74066797642436,13,2,5,"['salesforce', 'twilio']",,0.92,18,13,17,0,11,11,11,18.0,22.0,90.0,1.2,39,39.13298 -270,web,https://github.com/strawberry-graphql/strawberry,,,,strawberry-graphql/strawberry,strawberry,2808,345,44,"['graphql', 'graphql-server', 'python', 'starlette', 'asyncio', 'mypy', 'django', 'graphql-library', 'asgi', 'graphql-schema', 'strawberry', 'hacktoberfest']",Python,https://strawberry.rocks,strawberry: A GraphQL library for Python that leverages type annotations 🍓,strawberry-graphql,2022-12-18,2022-12-13,2018-12-21,208,13.472241261137766,166,2,5,"['apollographql', 'strawberry-graphql']",,12.23,350,210,49,0,178,123,178,350.0,691.0,90.0,2.0,90,59.89905 -787,study,https://github.com/cosmicpython/book,,,,cosmicpython/book,book,2806,481,93,[],Python,https://www.cosmicpython.com,"book: A Book about Pythonic Application Architecture Patterns for Managing Complexity. Cosmos is the Opposite of Chaos you see. O'R. wouldn't actually let us call it ""Cosmic Python"" tho.",cosmicpython,2022-12-18,2022-10-03,2019-02-05,201,13.900920028308564,44,2,5,"['carbon-re', ""o'reillymedia""]",,0.15,3,2,47,3,0,0,0,3.0,2.0,90.0,0.7,6,29.69672 -154,pandas,https://github.com/adamerose/pandasgui,,,,adamerose/pandasgui,PandasGUI,2796,190,53,"['pandas', 'dataframe', 'gui', 'viewer']",Python,,PandasGUI: A GUI for Pandas DataFrames,adamerose,2022-12-17,2022-03-16,2019-06-12,183,15.219284603421462,13,1,5,['dionresearch'],,0.06,7,1,43,9,0,12,12,7.0,2.0,90.0,0.3,30,28.18837 -792,ml-dl,https://github.com/facebookincubator/aitemplate,,,,facebookincubator/aitemplate,AITemplate,2789,184,79,[],Python,,AITemplate is a Python framework which renders neural network into high performance CUDA/HIP C++ code. Specialized for FP16 TensorCore (NVIDIA GPU) and MatrixCore (AMD GPU) inference.,facebookincubator,2022-12-18,2022-12-17,2022-07-15,22,124.35031847133757,18,1,5,['facebook'],,0.56,128,88,5,0,1,2,1,128.0,328.0,90.0,2.6,0,29.81618 -488,util,https://github.com/pydata/xarray,,,,pydata/xarray,xarray,2788,857,107,"['python', 'netcdf', 'numpy', 'pandas', 'xarray', 'dask']",Python,https://xarray.dev,xarray: N-D labeled arrays and datasets in Python,pydata,2022-12-18,2022-12-18,2013-09-30,481,5.796257796257796,407,3,5,"['google', 'mathandstatsdepartment', 'ncar']",,9.54,448,256,112,0,9,8,9,448.0,1120.0,90.0,2.5,1142,69.11638 -729,ml-dl,https://github.com/mosaicml/composer,,,,mosaicml/composer,composer,2782,174,21,"['deep-learning', 'pytorch', 'neural-networks', 'ml-systems', 'ml-efficiency', 'ml-training', 'machine-learning', 'neural-network']",Python,http://docs.mosaicml.com,composer: Train neural networks up to 7x faster,mosaicml,2022-12-18,2022-12-17,2021-10-12,61,44.97459584295612,54,2,5,"['mosaicml', ""stanford'22""]",,24.19,357,327,14,0,14,24,14,357.0,326.0,90.0,0.9,21,49.75918 -203,viz,https://github.com/ml-tooling/opyrator,,,,ml-tooling/opyrator,opyrator,2759,132,48,"['fastapi', 'streamlit', 'pydantic', 'python', 'microservices', 'serverless', 'faas', 'functions', 'python-functions', 'machine-learning', 'deployment', 'type-hints']",Python,https://opyrator-playground.mltooling.org,"opyrator: 🪄 Turns your machine learning code into microservices with web API, interactive GUI, and more.",ml-tooling,2022-12-18,2021-05-06,2021-04-06,88,31.04983922829582,4,0,5,[],,0.0,10,5,21,20,0,6,6,10.0,8.0,90.0,0.8,7,17.14944 -156,profiling,https://github.com/gaogaotiantian/viztracer,,,,gaogaotiantian/viztracer,viztracer,2756,276,40,"['tracer', 'python3', 'debugging', 'profiling', 'visualization', 'flamegraph', 'python', 'logging']",Python,https://viztracer.readthedocs.io/,VizTracer is a low-overhead logging/debugging/profiling tool that can trace and visualize your python code execution.,gaogaotiantian,2022-12-18,2022-12-08,2020-08-05,123,22.27713625866051,17,2,5,"['facebookairesearch', 'microsoft']",,1.21,26,22,29,0,8,32,8,26.0,57.0,90.0,2.2,4,39.2533 -641,testing,https://github.com/behave/behave,,,,behave/behave,behave,2739,608,120,[],Python,,"behave: BDD, Python style.",behave,2022-12-17,2022-12-10,2011-10-25,581,4.707341026270562,85,2,5,"['painless-software', 'smartsgroupmarketsurveillance,nasdaqomx']",,1.19,62,31,136,0,0,2,2,62.0,99.0,90.0,1.6,391,52.77193 -709,pandas,https://github.com/nalepae/pandarallel,1.0,,,nalepae/pandarallel,pandarallel,2733,166,26,"['pandas', 'python', 'parallel']",Python,https://nalepae.github.io/pandarallel,pandarallel: A simple and efficient tool to parallelize Pandas operations on all available CPUs,nalepae,2022-12-18,2022-12-06,2019-03-10,197,13.86304347826087,22,4,5,"['boatboatboat', 'caddi', 'https://www.kiln.fi/', 'swissdatasciencecenter']",,0.87,26,14,46,0,8,10,8,26.0,48.0,90.0,1.8,4,42.39175 -170,ml,https://github.com/ourownstory/neural_prophet,,,,ourownstory/neural_prophet,neural_prophet,2702,363,47,"['forecasting', 'time-series', 'machine-learning', 'fbprophet', 'prophet', 'forecast', 'artificial-intelligence', 'prediction', 'trend', 'seasonality', 'autoregression', 'pytorch', 'timeseries', 'forecasting-algorithm', 'forecasting-model', 'neuralprophet', 'neural', 'neural-network', 'python', 'deep-learning']",Python,https://neuralprophet.com,neural_prophet: NeuralProphet: A simple forecasting package,ourownstory,2022-12-17,2022-12-15,2020-05-04,137,19.722627737226276,34,2,5,"['stanforduniversity', 'technicaluniversityofmunich']",,6.9,314,251,32,0,7,6,7,314.0,588.0,90.0,1.9,19,48.70117 -34,nlp,https://github.com/jbesomi/texthero,,,,jbesomi/texthero,texthero,2659,226,44,"['text-preprocessing', 'text-representation', 'text-visualization', 'nlp', 'word-embeddings', 'machine-learning', 'text-mining', 'nlp-pipeline', 'text-clustering', 'texthero']",Python,https://texthero.org,"texthero: Text preprocessing, representation and visualization from zero to hero.",jbesomi,2022-12-18,2022-10-28,2020-04-06,141,18.858156028368793,20,2,5,"['aaltouniversity', 'imctrading']",,0.04,3,1,33,2,0,2,2,3.0,3.0,90.0,1.0,29,32.25968 -130,ml-dl,https://github.com/explosion/thinc,,,,explosion/thinc,thinc,2635,259,85,"['machine-learning', 'deep-learning', 'artificial-intelligence', 'ai', 'python', 'nlp', 'natural-language-processing', 'spacy', 'machine-learning-library', 'type-checking', 'functional-programming', 'pytorch', 'tensorflow', 'mxnet', 'jax']",Python,https://thinc.ai,"thinc: 🔮 A refreshing functional take on deep learning, compatible with your favorite libraries",explosion,2022-12-17,2022-12-16,2014-10-16,426,6.177160080375084,57,2,5,"['explosion&oxykodit', 'founderexplosion']",,3.29,58,50,100,0,11,11,11,58.0,67.0,90.0,1.2,255,53.66351 -113,nlp,https://github.com/huggingface/neuralcoref,,,,huggingface/neuralcoref,neuralcoref,2630,461,96,"['python', 'machine-learning', 'coreference', 'spacy', 'coreference-resolution', 'spacy-extension', 'spacy-pipeline', 'nlp', 'neural-networks', 'pytorch']",C,https://huggingface.co/coref/,neuralcoref: ✨Fast Coreference Resolution in spaCy with Neural Networks,huggingface,2022-12-12,2021-06-22,2017-07-03,285,9.228070175438596,21,3,5,"['explosion&oxykodit', 'filamentai', 'huggingface']",,0.0,7,2,66,18,0,1,1,7.0,10.0,90.0,1.4,26,31.48861 -111,ml,https://github.com/teamhg-memex/eli5,,,,teamhg-memex/eli5,eli5,2618,326,68,"['scikit-learn', 'machine-learning', 'xgboost', 'lightgbm', 'crfsuite', 'inspection', 'explanation', 'nlp', 'data-science', 'python']",Jupyter Notebook,http://eli5.readthedocs.io,eli5: A library for debugging/inspecting machine learning classifiers and explaining their predictions,teamhg-memex,2022-12-18,2020-01-22,2016-09-15,326,8.016622922134733,14,3,5,"['canva', 'zyte', 'zytedata,scrapinghub']",,0.0,7,1,76,35,0,4,4,7.0,4.0,90.0,0.6,13,27.66132 -801,data,https://github.com/pallets/itsdangerous,,,,pallets/itsdangerous,itsdangerous,2593,213,57,"['python', 'security', 'hmac', 'serialization', 'itsdangerous', 'pallets']",Python,https://itsdangerous.palletsprojects.com,itsdangerous: Safely pass trusted data to untrusted environments and back.,pallets,2022-12-18,2022-11-01,2011-06-24,599,4.325786463298379,41,1,5,['sentry'],,0.67,8,7,140,2,3,3,3,8.0,2.0,90.0,0.2,598,41.33771 -85,graph,https://github.com/stellargraph/stellargraph,,,,stellargraph/stellargraph,stellargraph,2572,396,62,"['graphs', 'machine-learning', 'machine-learning-algorithms', 'graph-convolutional-networks', 'networkx', 'geometric-deep-learning', 'saliency-map', 'interpretability', 'heterogeneous-networks', 'graph-neural-networks', 'graph-analysis', 'graph-machine-learning', 'gcn', 'link-prediction', 'stellargraph-library', 'graph-data', 'python', 'deep-learning', 'data-science']",Python,https://stellargraph.readthedocs.io/,StellarGraph - Machine Learning on Graphs,stellargraph,2022-12-16,2021-10-29,2018-04-13,244,10.52250146113384,36,3,5,"['data61', 'exoflare', 'xoflare']",,0.0,12,4,57,14,0,6,6,12.0,9.0,90.0,0.8,177,38.23575 -539,nlp,https://github.com/huawei-noah/pretrained-language-model,,,,huawei-noah/pretrained-language-model,Pretrained-Language-Model,2562,550,52,"['knowledge-distillation', 'model-compression', 'quantization', 'pretrained-models', 'large-scale-distributed']",Python,,Pretrained-Language-Model: Pretrained language model and its related optimization techniques developed by Huawei Noah's Ark Lab.,huawei-noah,2022-12-18,2022-11-21,2019-12-02,159,16.11320754716981,19,1,5,['huawei-noah'],,0.38,23,4,37,1,0,0,0,23.0,20.0,90.0,0.9,2,27.44788 -611,debug,https://github.com/inducer/pudb,,,,inducer/pudb,pudb,2559,215,46,"['python', 'debugger', 'pytest', 'pytest-plugin', 'pdb', 'ipython', 'bpython', 'urwid', 'debug']",Python,https://documen.tician.de/pudb/,pudb: Full-screen console debugger for Python,inducer,2022-12-17,2022-11-20,2011-05-13,605,4.226757904672015,91,3,5,"['quansight', 'scalableminds', 'scientificcomputing,csuiuc']",,0.96,24,13,141,1,2,6,2,24.0,35.0,90.0,1.5,428,51.26641 -159,data,https://github.com/goldsmith/wikipedia,,,,goldsmith/wikipedia,Wikipedia,2532,514,82,[],Python,https://wikipedia.readthedocs.org/,Wikipedia: A Pythonic wrapper for the Wikipedia API,goldsmith,2022-12-18,2020-10-09,2013-08-20,486,5.200704225352113,23,2,5,"['localkitchens', 'nationalradioastronomyobservatory']",,0.0,10,3,114,27,0,0,0,10.0,10.0,90.0,1.0,81,31.09134 -428,util,https://github.com/pycqa/flake8,,,,pycqa/flake8,flake8,2524,255,33,"['python', 'python3', 'static-analysis', 'static-code-analysis', 'linter', 'linter-flake8', 'stylelint', 'styleguide', 'style-guide', 'flake8', 'pep8', 'complexity-analysis']",Python,https://flake8.pycqa.org,"flake8 is a python tool that glues together pycodestyle, pyflakes, mccabe, and third-party plugins to check the style and quality of some python code.",pycqa,2022-12-18,2022-12-14,2014-09-13,431,5.852268963232858,172,3,5,"['bloomberg', 'elastic', 'tableau&salesforce']",,2.38,92,86,101,0,0,10,10,92.0,141.0,90.0,1.5,14344,66.0013 -369,nlp,https://github.com/bytedance/lightseq,,,,bytedance/lightseq,lightseq,2518,281,51,"['inference', 'transformer', 'beam-search', 'bert', 'cuda', 'sampling', 'diverse-decoding', 'multilingual-nmt', 'training', 'bart', 'gpt', 'accelerate']",C++,,LightSeq: A High Performance Library for Sequence Processing and Generation,bytedance,2022-12-18,2022-12-07,2019-12-06,158,15.893597835888187,14,5,5,"['bytedance', 'bytedance,ailab', 'bytedanceailab', 'bytedanceantnlp', 'universityofillinoisaturbana-champaign']",,1.25,69,35,37,0,3,4,3,69.0,99.0,90.0,1.4,2,40.1442 -94,term,https://github.com/urwid/urwid,,,,urwid/urwid,urwid,2518,310,60,[],Python,urwid.org,urwid: Console user interface library for Python (official repo),urwid,2022-12-18,2022-07-12,2010-02-25,668,3.766239316239316,116,1,5,"['newfirepartners,mediwareinc,holmusk,unitio-org,urwid']",,0.04,8,2,156,17,0,4,4,8.0,7.0,90.0,0.9,56,36.41909 -433,pandas,https://github.com/pydata/pandas-datareader,,,,pydata/pandas-datareader,pandas-datareader,2506,620,132,"['html', 'data-analysis', 'data', 'dataset', 'stock-data', 'finance', 'financial-data', 'python', 'pydata', 'pandas', 'econdb', 'fama-french', 'economic-data', 'fred']",Python,https://pydata.github.io/pandas-datareader/stable/index.html,pandas-datareader: Extract data from a wide range of Internet sources into a pandas DataFrame.,pydata,2022-12-17,2022-03-16,2015-01-15,413,6.059412780656304,85,0,5,[],,0.04,17,1,96,9,0,3,3,17.0,32.0,90.0,1.9,118,35.98206 -675,ml-dl,https://github.com/saharmor/dalle-playground,,,,saharmor/dalle-playground,dalle-playground,2500,561,28,"['dall-e', 'openai', 'gan', 'text-to-image', 'transformers', 'artificial', 'artificial-intelligence', 'machine-learning', 'dalle', 'dalle-mini', 'stable-diffusion']",Jupyter Notebook,,dalle-playground: A playground to generate images from any text prompt using Stable Diffusion (past: using DALL-E Mini),saharmor,2022-12-18,2022-12-02,2021-09-13,66,37.878787878787875,10,3,5,"['bitly', 'highfalootintechnologycorp.', 'saamaresearch']",,2.15,21,16,15,1,0,0,0,21.0,20.0,90.0,1.0,0,27.5134 -553,ml-dl,https://github.com/pytorch/botorch,,,,pytorch/botorch,botorch,2477,295,51,[],Jupyter Notebook,https://botorch.org/,botorch: Bayesian optimization in PyTorch,pytorch,2022-12-14,2022-12-16,2018-07-30,229,10.816593886462883,86,2,5,"['facebook', 'meta']",,6.17,156,116,53,0,11,7,11,156.0,607.0,90.0,3.9,1061,61.32058 -98,data,https://github.com/zoomeranalytics/xlwings,,,,zoomeranalytics/xlwings,xlwings,2466,450,119,"['python', 'excel', 'reporting', 'automation', 'googlesheets', 'google-sheets']",Python,https://www.xlwings.org,xlwings is a Python library that makes it easy to call Python from Excel and vice versa. It works with Excel on Windows and macOS as well as with Google Sheets and Excel on the web. ,zoomeranalytics,2022-12-16,2022-12-15,2014-03-17,457,5.3960612691466086,57,1,5,['xlwings'],,4.27,122,69,107,0,27,16,27,122.0,161.0,90.0,1.3,55,51.82579 -845,time-series,https://github.com/tdameritrade/stumpy,,,,tdameritrade/stumpy,stumpy,2463,239,51,"['data-science', 'time-series-analysis', 'dask', 'numba', 'python', 'anomaly-detection', 'pattern-matching', 'pydata', 'matrix-profile', 'motif-discovery', 'time-series-segmentation', 'time-series-data-mining']",Python,https://stumpy.readthedocs.io/en/latest/,STUMPY is a powerful and scalable Python library for modern time series analysis,tdameritrade,2022-12-17,2022-12-18,2019-05-03,189,13.002262443438914,32,1,5,['nvidia'],,4.15,79,58,44,0,3,7,3,79.0,556.0,90.0,7.0,12,46.92848 -431,viz,https://github.com/holoviz/panel,,,,holoviz/panel,panel,2438,313,48,"['holoviz', 'panel', 'dashboards', 'control-panels', 'gui']",Python,https://panel.holoviz.org,panel: A high-level app and dashboarding solution for Python,holoviz,2022-12-18,2022-12-18,2018-08-23,225,10.808106396453452,111,3,5,"['anaconda', 'cea', 'data,modelsandanalytics']",,13.71,450,272,53,0,6,103,6,450.0,654.0,90.0,1.5,55,56.87378 -600,gis,https://github.com/giswqs/geemap,,,,giswqs/geemap,geemap,2428,904,96,"['google-earth-engine', 'gis', 'remote-sensing', 'image-processing', 'python', 'jupyter-notebook', 'ipyleaflet', 'mapping', 'earth-engine', 'ipywidgets', 'folium', 'jupyter', 'colab', 'geospatial', 'landsat', 'dataviz', 'data-science', 'streamlit', 'streamlit-webapp', 'earthengine']",Python,https://geemap.org,"geemap: A Python package for interactive mapping with Google Earth Engine, ipyleaflet, and ipywidgets.",giswqs,2022-12-18,2022-12-05,2020-03-08,145,16.728346456692915,35,4,5,"['christianclauss', 'faoopenforis', 'google', 'universityoftennessee']",,8.23,54,51,34,0,53,47,53,54.0,102.0,90.0,1.9,16,51.27888 -172,viz,https://github.com/facebookresearch/hiplot,,,,facebookresearch/hiplot,hiplot,2385,120,28,[],TypeScript,https://facebookresearch.github.io/hiplot/,HiPlot makes understanding high dimensional data easy,facebookresearch,2022-12-15,2022-12-05,2019-11-08,162,14.683377308707124,8,1,5,['opensourcedevrelfacebook'],,0.48,17,17,38,0,0,13,13,17.0,15.0,90.0,0.9,412,41.35194 -886,study,https://github.com/huggingface/deep-rl-class,,,,huggingface/deep-rl-class,deep-rl-class,2373,285,90,"['deep-reinforcement-learning', 'reinforcement-learning', 'reinforcement-learning-excercises', 'deep-learning']",Jupyter Notebook,,deep-rl-class: This repo contain the syllabus of the Hugging Face Deep Reinforcement Learning Class.,huggingface,2022-12-18,2022-12-18,2022-04-21,34,68.64049586776859,35,1,5,['huggingface'],,7.21,63,43,8,0,0,0,0,63.0,113.0,90.0,1.8,5,35.34288 -708,ml,https://github.com/mljar/mljar-supervised,,,,mljar/mljar-supervised,mljar-supervised,2372,313,42,"['automl', 'machine-learning', 'automatic-machine-learning', 'mljar', 'data-science', 'scikit-learn', 'hyperparameter-optimization', 'feature-engineering', 'xgboost', 'random-forest', 'neural-network', 'lightgbm', 'catboost', 'ensemble', 'tuning-algorithm', 'models-tuning', 'hyper-parameters', 'decision-tree', 'shap', 'automated-machine-learning']",Python,https://mljar.com,"mljar-supervised: Python package for AutoML on Tabular Data with Feature Engineering, Hyper-Parameters Tuning, Explanations and Automatic Documentation",mljar,2022-12-17,2022-12-14,2018-11-05,215,11.032558139534883,20,3,5,"['bitspilanihyderabadcampus', 'mljar', 'otterclamfinance']",,0.44,32,10,50,0,3,12,3,32.0,82.0,90.0,2.6,49,44.4732 -174,util,https://github.com/liiight/notifiers,,,,liiight/notifiers,notifiers,2351,91,33,"['python', 'notifications', 'notifier', 'notification-service', 'python3', 'pypi']",Python,http://notifiers.readthedocs.io/,notifiers: The easy way to send notifications,liiight,2022-12-18,2022-07-14,2017-06-01,289,8.118894918598915,19,2,5,"['pyupio', 'totango']",,1.31,2,0,68,5,0,5,5,2.0,0.0,90.0,0.0,6,28.52875 -129,viz,https://github.com/holoviz/holoviews,,,,holoviz/holoviews,holoviews,2341,364,63,"['holoviz', 'holoviews', 'plotting']",Python,https://holoviews.org,"holoviews: With Holoviews, your data visualizes itself.",holoviz,2022-12-17,2022-12-18,2014-05-07,449,5.205527318932655,126,1,5,['anaconda'],,2.62,237,108,105,0,6,41,6,237.0,294.0,90.0,1.2,40,50.91025 -136,nlp,https://github.com/ddangelov/top2vec,,,,ddangelov/top2vec,Top2Vec,2339,326,39,"['topic-modeling', 'word-embeddings', 'document-embedding', 'topic-vector', 'topic-search', 'text-search', 'text-semantic-similarity', 'topic-modelling', 'semantic-search', 'bert', 'top2vec', 'sentence-transformers', 'sentence-encoder', 'pre-trained-language-models']",Python,,"Top2Vec learns jointly embedded topic, document and word vectors.",ddangelov,2022-12-18,2022-04-03,2020-03-20,143,16.30776892430279,2,0,5,[],,0.17,53,37,33,9,1,8,1,53.0,46.0,90.0,0.9,21,21.07462 -858,jupyter,https://github.com/jupyter/nbdime,,,,jupyter/nbdime,nbdime,2339,154,43,"['jupyterlab-extension', 'jupyter', 'jupyter-notebook', 'diff', 'diffing', 'merge', 'git', 'hg', 'mercurial', 'mergetool', 'merge-driver', 'vcs', 'version-control']",Python,http://nbdime.readthedocs.io,nbdime: Tools for diffing and merging of Jupyter notebooks.,jupyter,2022-12-17,2022-11-24,2015-11-16,370,6.321621621621621,41,4,5,"['ibmcodait', 'quantstack', 'simularesearchlaboratory', 'willingconsulting']",,0.1,29,7,86,1,0,9,9,29.0,29.0,90.0,1.0,402,49.2315 -809,web,https://github.com/fastapi-users/fastapi-users,,,,fastapi-users/fastapi-users,fastapi-users,2323,239,33,"['python', 'starlette', 'fastapi', 'async', 'asyncio', 'users', 'fastapi-users']",Python,https://fastapi-users.github.io/fastapi-users/,fastapi-users: Ready-to-use and customizable users management for FastAPI,fastapi-users,2022-12-18,2022-11-04,2019-10-05,167,13.886421861656704,53,3,5,"['beemydesk', 'fitctuinprague', 'quantstack']",,2.96,19,19,39,1,32,28,32,19.0,20.0,90.0,1.1,134,49.4776 -875,perf,https://github.com/ipython/ipyparallel,,,,ipython/ipyparallel,ipyparallel,2319,949,119,"['parallel', 'jupyter', 'python']",Jupyter Notebook,https://ipyparallel.readthedocs.io/,ipyparallel: IPython Parallel: Interactive Parallel Computing in Python,ipython,2022-12-18,2022-11-22,2015-04-09,401,5.774813233724653,112,4,5,"['amazonwebservices', 'ardoq', 'simularesearchlaboratory', 'universityofcalifornia,berkeley.']",,2.29,19,16,94,1,0,7,7,19.0,9.0,90.0,0.5,318,52.2495 -51,testing,https://github.com/nedbat/coveragepy,,,,nedbat/coveragepy,coveragepy,2305,331,28,[],Python,https://coverage.readthedocs.io,coveragepy: The code coverage tool for Python,nedbat,2022-12-18,2022-12-18,2018-06-23,234,9.838414634146341,142,2,5,"['freelancer,upforhire', 'shoobx']",,8.65,134,89,55,0,13,24,13,134.0,400.0,90.0,3.0,9969,66.43243 -691,ml-dl,https://github.com/nerdyrodent/vqgan-clip,,,,nerdyrodent/vqgan-clip,VQGAN-CLIP,2304,401,53,"['text2image', 'text-to-image']",Python,,"VQGAN-CLIP: Just playing with getting VQGAN+CLIP running locally, rather than having to use colab.",nerdyrodent,2022-12-18,2022-10-02,2021-07-02,76,30.145794392523364,7,2,5,"['azéotropecanada', 'censys']",,0.1,2,2,18,3,0,0,0,2.0,2.0,90.0,1.0,0,19.57784 -296,sim,https://github.com/openai/mujoco-py,,,,openai/mujoco-py,mujoco-py,2300,715,161,[],Cython,,"mujoco-py: MuJoCo is a physics engine for detailed, efficient rigid body simulations with contacts. mujoco-py allows using MuJoCo from Python 3.",openai,2022-12-17,2022-11-17,2016-04-24,347,6.625514403292181,33,2,5,"['millionintegrals', 'openai']",,0.02,33,4,81,1,0,1,1,33.0,23.0,90.0,0.7,34,37.68593 -246,util,https://github.com/pyston/pyston,,,,pyston/pyston,pyston,2295,83,32,[],Python,https://www.pyston.org/,pyston: A faster and highly-compatible implementation of the Python programming language.,pyston,2022-12-17,2022-11-23,2021-03-01,94,24.414893617021278,1035,4,5,"['fzjülich', 'keepertech', 'microsoft', 'mutableminds']",,5.1,22,10,22,1,4,261,4,22.0,30.0,90.0,1.4,9,50.685 -866,ml-ops,https://github.com/mage-ai/mage-ai,1.0,,,mage-ai/mage-ai,mage-ai,2287,203,40,"['machine-learning', 'artificial-intelligence', 'data', 'data-engineering', 'data-science', 'python', 'elt', 'etl', 'pipelines', 'data-pipelines', 'orchestration', 'data-integration', 'sql', 'spark', 'dbt', 'pipeline', 'reverse-etl', 'transformation']",Python,https://www.mage.ai/,mage-ai: 🧙 A modern replacement for Airflow.,mage-ai,2022-12-18,2022-12-18,2022-05-16,31,73.7741935483871,19,1,5,['mage'],,37.4,525,488,7,0,0,0,0,525.0,134.0,90.0,0.3,18,37.98631 -696,ml-dl,https://github.com/deepmind/dm-haiku,,,,deepmind/dm-haiku,dm-haiku,2285,192,37,"['machine-learning', 'neural-networks', 'jax', 'deep-learning', 'deep-neural-networks']",Python,https://dm-haiku.readthedocs.io,dm-haiku: JAX-based neural network library,deepmind,2022-12-18,2022-12-09,2020-02-18,147,15.454106280193237,68,2,5,"['deepmind', 'openai']",,2.69,64,39,34,0,4,4,4,64.0,40.0,90.0,0.6,34,44.70434 -814,data,https://github.com/deepchecks/deepchecks,,,,deepchecks/deepchecks,deepchecks,2282,159,13,"['machine-learning', 'ml', 'model-validation', 'data-validation', 'mlops', 'data-science', 'python', 'jupyter-notebook', 'model-monitoring', 'data-drift', 'html-report', 'deep-learning', 'pytorch', 'pandas-dataframe']",Python,https://docs.deepchecks.com,deepchecks: Tests for Continuous Validation of ML Models & Data. Deepchecks is a Python package for comprehensively validating your machine learning models and data with minimal effort.,deepchecks,2022-12-18,2022-12-12,2021-10-11,62,36.806451612903224,37,2,5,"['deepchecks', 'starnavi']",,17.17,255,169,14,0,35,42,35,255.0,269.0,90.0,1.1,5,46.64 -145,ml,https://github.com/nmslib/hnswlib,,,,nmslib/hnswlib,hnswlib,2269,419,62,[],C++,https://github.com/nmslib/hnswlib,hnswlib: Header-only C++/python library for fast approximate nearest neighbors,nmslib,2022-12-18,2022-04-16,2017-07-06,284,7.973393574297189,56,1,5,['twittercortex'],,0.25,18,6,66,8,2,1,2,18.0,27.0,90.0,1.5,24,34.87223 -735,data,https://github.com/ibis-project/ibis,1.0,,,ibis-project/ibis,ibis,2231,375,77,"['python', 'impala', 'pandas', 'spark', 'database', 'clickhouse', 'postgresql', 'sqlite', 'mysql', 'datafusion', 'sql', 'pyspark', 'dask', 'duckdb', 'bigquery', 'sqlalchemy', 'pyarrow', 'arrow', 'mssql', 'polars']",Python,http://ibis-project.org,ibis: Expressive analytics in Python at any scale.,ibis-project,2022-12-18,2022-12-18,2015-04-17,400,5.5715305030324656,121,2,5,"['voltron-data/ursa-computing', 'voltrondata']",,43.25,565,501,93,0,7,5,7,565.0,1237.0,90.0,2.2,428,64.44805 -308,util,https://github.com/legrandin/pycryptodome,,,,legrandin/pycryptodome,pycryptodome,2218,402,58,"['cryptography', 'security', 'python']",C,https://www.pycryptodome.org,pycryptodome: A self-contained cryptographic library for Python,legrandin,2022-12-18,2022-12-14,2014-05-02,450,4.924199175388519,130,2,5,"['aitaustrianinstituteoftechnology', 'cisco']",,2.35,75,64,105,0,2,12,2,75.0,126.0,90.0,1.7,1485,57.50221 -253,ml,https://github.com/microsoft/flaml,,,,microsoft/flaml,FLAML,2172,331,39,"['automl', 'hyperparam', 'automated-machine-learning', 'machine-learning', 'data-science', 'python', 'jupyter-notebook', 'hyperparameter-optimization', 'random-forest', 'scikit-learn', 'deep-learning', 'natural-language-processing', 'natural-language-generation', 'timeseries-forecasting', 'classification', 'regression', 'tuning', 'finetuning', 'tabular-data']",Jupyter Notebook,https://microsoft.github.io/FLAML/,FLAML: A fast library for AutoML and tuning. Join our Discord: https://discord.gg/Cppx2vSPVP.,microsoft,2022-12-18,2022-12-18,2020-08-20,121,17.866039952996474,59,3,5,"['microsoft', 'pennsylvaniastateuniversity', 'stevensinstituteoftechnology']",,5.04,138,85,28,0,22,21,22,138.0,225.0,90.0,1.6,11,50.02551 -710,pandas,https://github.com/jmcarpenter2/swifter,,,,jmcarpenter2/swifter,swifter,2161,98,28,"['pandas', 'pandas-dataframe', 'parallel-computing', 'parallelization', 'dask', 'modin']",Python,,swifter: A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner,jmcarpenter2,2022-12-16,2022-08-16,2018-04-07,245,8.810133954571928,17,2,5,"['freshrelevance', 'manifoldai']",,0.62,5,1,57,4,0,17,17,5.0,4.0,90.0,0.8,9,33.70657 -617,testing,https://github.com/pytest-dev/pytest-testinfra,,,,pytest-dev/pytest-testinfra,pytest-testinfra,2133,312,82,"['python', 'testing', 'infrastructure-as-code', 'devops', 'tdd', 'nagios', 'docker', 'tdd-utilities', 'testing-tools', 'devops-tools', 'infrastructure-testing', 'saltstack', 'chef', 'puppet', 'ansible', 'kubernetes', 'pytest-plugin']",Python,https://testinfra.readthedocs.io,pytest-testinfra: Testinfra test your infrastructures,pytest-dev,2022-12-17,2022-12-10,2015-03-15,405,5.264809590973202,121,2,5,"['lowatt', 'redhatansible']",,0.54,16,10,94,0,5,10,5,16.0,18.0,90.0,1.1,123,49.16978 -807,web,https://github.com/flipkart-incubator/astra,,,,flipkart-incubator/astra,Astra,2129,356,84,"['security', 'restapiautomation', 'python', 'owasp', 'penetration-testing-framework', 'postman-collection', 'ci-cd', 'sdlc', 'penetration-testing', 'security-automation']",Python,,Astra: Automated Security Testing For REST API's,flipkart-incubator,2022-12-13,2019-04-05,2018-01-10,257,8.26108647450111,11,2,5,"['aarhusuni', 'myntradesignspvtltd']",,0.0,4,0,60,45,0,0,0,4.0,3.0,90.0,0.8,20,22.01172 -503,gis,https://github.com/google/earthengine-api,,,,google/earthengine-api,earthengine-api,2093,892,204,[],JavaScript,,earthengine-api: Python and JavaScript bindings for calling the Earth Engine API.,google,2022-12-17,2022-12-13,2015-04-22,399,5.236240171551108,36,1,5,['google'],,0.0,7,1,93,0,0,32,32,7.0,5.0,90.0,0.7,9,38.69874 -878,time-series,https://github.com/nixtla/statsforecast,,,,nixtla/statsforecast,statsforecast,2070,119,19,"['time-series', 'statistics', 'forecasting', 'arima', 'econometrics', 'machine-learning', 'python', 'exponential-smoothing', 'ets', 'baselines', 'predictions', 'naive', 'seasonal-naive', 'fbprophet', 'prophet', 'neuralprophet', 'mstl', 'theta', 'automl', 'data-science']",Python,https://nixtla.github.io/statsforecast/,statsforecast: Lightning ⚡️ fast forecasting with statistical and econometric models.,nixtla,2022-12-18,2022-12-16,2021-11-24,55,37.15384615384615,16,2,5,"['nixtla', 'nubank']",,16.48,124,103,13,0,22,23,22,124.0,148.0,90.0,1.2,28,46.08455 -222,data,https://github.com/pynamodb/pynamodb,1.0,,,pynamodb/pynamodb,PynamoDB,2060,411,41,"['python', 'dynamodb', 'aws']",Python,http://pynamodb.readthedocs.io,PynamoDB: A pythonic interface to Amazon's DynamoDB,pynamodb,2022-12-15,2022-12-13,2014-01-20,465,4.43010752688172,100,2,5,"['lyft', 'openeyescientificsoftware']",,0.87,114,93,108,0,10,10,10,114.0,177.0,90.0,1.6,72,53.1558 -268,jupyter,https://github.com/jupyterlab/jupyterlab-desktop,,,,jupyterlab/jupyterlab-desktop,jupyterlab-desktop,2059,213,40,"['jupyterlab', 'jupyter', 'jupyter-notebook']",TypeScript,,"jupyterlab-desktop: JupyterLab desktop application, based on Electron.",jupyterlab,2022-12-18,2022-12-12,2017-05-04,293,7.013625304136253,33,2,5,"['fermiumlabssrl(fermiumlabs)', 'netflix']",,3.94,66,45,68,0,9,4,9,66.0,99.0,90.0,1.5,2,43.75421 -867,util,https://github.com/dosisod/refurb,1.0,,,dosisod/refurb,refurb,2055,35,15,"['cli', 'mypy', 'python', 'python310', 'testing', 'gplv3', 'hacktoberfest']",Python,,refurb: A tool for refurbishing and modernizing Python codebases,dosisod,2022-12-18,2022-12-17,2022-07-27,20,99.20689655172414,8,3,5,"['grupoboticario', 'hotjar', 'resgroup']",,3.46,153,139,5,0,8,34,8,153.0,162.0,90.0,1.1,5,36.98689 -198,ml,https://github.com/maif/shapash,,,,maif/shapash,shapash,2053,253,37,"['python', 'machine-learning', 'explainability', 'explainable-ml', 'transparency', 'ethical-artificial-intelligence', 'shap', 'lime', 'interpretability']",Jupyter Notebook,https://maif.github.io/shapash/,shapash: 🔅 Shapash makes Machine Learning models transparent and understandable by everyone,maif,2022-12-17,2022-12-02,2020-04-29,137,14.907676348547717,35,2,5,"['helsing', 'maif']",,4.9,34,30,32,1,8,9,8,34.0,15.0,90.0,0.4,12,39.9646 -724,util,https://github.com/ashleve/lightning-hydra-template,,,,ashleve/lightning-hydra-template,lightning-hydra-template,2051,343,19,"['pytorch-lightning', 'wandb', 'project-structure', 'config', 'deep-learning', 'hydra', 'template', 'pytorch', 'research', 'experiments', 'reproducibility', 'experiment-tracking', 'best-practices', 'neptune', 'mlflow', 'tensorboard', 'comet', 'mlops']",Python,,lightning-hydra-template: PyTorch Lightning + Hydra. A very user-friendly template for rapid and reproducible ML experimentation with best practices. ⚡🔥⚡,ashleve,2022-12-18,2022-12-18,2020-11-04,110,18.52516129032258,26,1,5,['hunanuniversity'],,2.81,46,38,26,0,2,3,2,46.0,49.0,90.0,1.1,7,36.89525 -860,jupyter,https://github.com/jupyter/nbviewer,,,,jupyter/nbviewer,nbviewer,2035,530,92,"['jupyter', 'jupyter-notebook', 'nbconvert']",Python,https://nbviewer.jupyter.org,nbviewer: nbconvert as a web service: Render Jupyter Notebooks as static web pages,jupyter,2022-12-10,2022-11-07,2012-08-05,541,3.760559662090813,92,4,5,"['noteable-io', 'quansight-labs', 'simularesearchlaboratory', 'wearethorn']",,1.25,22,14,126,1,0,0,0,22.0,21.0,90.0,1.0,240,48.67448 -411,util,https://github.com/yaml/pyyaml,,,,yaml/pyyaml,pyyaml,2007,423,46,"['python', 'yaml']",Python,,pyyaml: Canonical source repository for PyYAML,yaml,2022-12-17,2022-09-13,2011-11-03,580,3.4569389763779528,40,3,5,"['ansible', 'newfolddigital/bluehost', 'suse']",,0.04,36,9,135,3,0,4,4,36.0,33.0,90.0,0.9,6927,51.02787 -748,study,https://github.com/zhanymkanov/fastapi-best-practices,,,,zhanymkanov/fastapi-best-practices,fastapi-best-practices,2006,134,36,"['fastapi', 'best-practices']",,,fastapi-best-practices: FastAPI Best Practices and Conventions we used @ hi.peerlink.me,zhanymkanov,2022-12-18,2022-09-16,2022-08-09,18,106.37878787878788,3,1,5,['viaprotocol'],,0.81,9,3,4,3,0,0,0,9.0,25.0,90.0,2.8,0,17.00053 -881,time-series,https://github.com/rjt1990/pyflux,,,,rjt1990/pyflux,pyflux,2001,233,70,"['statistics', 'time-series']",Python,,pyflux: Open source time series library for Python,rjt1990,2022-12-17,2018-12-16,2016-02-16,356,5.60728582866293,6,2,5,"['gitter', 'pinseekerinc']",,0.0,0,0,83,49,0,6,6,0.0,0.0,90.0,0.0,8,19.45117 -548,ml,https://github.com/lightly-ai/lightly,,,,lightly-ai/lightly,lightly,1976,164,25,"['deep-learning', 'self-supervised-learning', 'machine-learning', 'computer-vision', 'pytorch', 'embeddings', 'contrastive-learning', 'active-learning']",Python,,lightly: A python library for self-supervised learning on images.,lightly-ai,2022-12-18,2022-12-15,2020-10-13,113,17.355081555834378,21,1,5,['lightly'],,5.62,92,78,27,0,38,33,38,92.0,133.0,90.0,1.4,22,44.70008 -813,data,https://github.com/datafold/data-diff,,,,datafold/data-diff,data-diff,1953,88,14,"['database', 'mysql', 'postgresql', 'snowflake', 'rdbms', 'trino', 'data-engineering', 'data-quality', 'data-science', 'data-quality-monitoring', 'databricks-sql', 'dataengineering', 'dataquality', 'oracle-database', 'postgres', 'sql']",Python,https://www.datafold.com/blog/open-source-data-diff,data-diff: Efficiently diff data in or across relational databases,datafold,2022-12-18,2022-12-16,2022-03-07,41,47.63414634146341,25,2,5,"['datafold', 'webscaleinc']",,13.75,139,117,10,0,13,16,13,139.0,220.0,90.0,1.6,4,43.21385 -323,gui,https://github.com/wxwidgets/phoenix,,,,wxwidgets/phoenix,Phoenix,1911,488,105,"['python', 'cross-platform', 'gui-framework', 'gui-toolkit', 'gui', 'windows', 'macosx', 'linux', 'awesome', 'wxwidgets', 'wxpython']",Python,http://wxpython.org/,"Phoenix: wxPython's Project Phoenix. A new implementation of wxPython, better, stronger, faster than he was before.",wxwidgets,2022-12-16,2022-11-10,2012-07-17,543,3.5137903861308115,123,1,5,['self;independant'],,3.96,79,45,127,1,1,2,1,79.0,141.0,90.0,1.8,133,49.56691 -590,util,https://github.com/hgrecco/pint,,,,hgrecco/pint,pint,1895,407,40,"['python', 'science', 'units']",Python,http://pint.readthedocs.org/,pint: Operate and manipulate physical quantities in Python,hgrecco,2022-12-17,2022-11-29,2012-07-13,544,3.48071372343217,181,0,5,[],,4.02,135,73,127,1,0,4,4,135.0,335.0,90.0,2.5,462,52.74691 -233,crypto,https://github.com/ethereum/py-evm,,,,ethereum/py-evm,py-evm,1886,576,98,"['evm', 'ethereum', 'python', 'ethereum-virtual-machine']",Python,https://py-evm.readthedocs.io/en/latest/,py-evm: A Python implementation of the Ethereum Virtual Machine,ethereum,2022-12-18,2022-12-16,2016-12-27,311,6.0476408612001835,80,1,5,['ethereumfoundation'],,0.71,13,6,73,0,0,17,17,13.0,4.0,90.0,0.3,107,44.84639 -353,ml-interpretability,https://github.com/seldonio/alibi,,,,seldonio/alibi,alibi,1880,212,43,"['machine-learning', 'explanations', 'interpretability', 'counterfactual', 'xai']",Python,https://docs.seldon.io/projects/alibi/en/stable/,alibi: Algorithms for explaining machine learning models,seldonio,2022-12-17,2022-12-14,2019-02-26,198,9.454022988505747,18,1,5,['datascienceseldonio'],,3.52,84,61,46,0,5,7,5,84.0,108.0,90.0,1.3,12,40.79834 -441,gis,https://github.com/rasterio/rasterio,1.0,,,rasterio/rasterio,rasterio,1858,490,152,"['python', 'gis', 'raster', 'gdal', 'cli', 'cython', 'mapbox-satellite-oss']",Python,https://rasterio.readthedocs.io/,Rasterio reads and writes geospatial raster datasets,rasterio,2022-12-16,2022-12-17,2013-11-04,476,3.903361344537815,140,3,5,"['astutespruce', 'corteva', 'planetlabs']",,3.12,228,122,111,0,8,18,8,228.0,254.0,90.0,1.1,102,56.91496 -755,ml,https://github.com/marqo-ai/marqo,,,,marqo-ai/marqo,marqo,1852,69,23,"['deep-learning', 'search', 'information-retrieval', 'machinelearning', 'vector-search', 'tensor-search', 'clip', 'multi-modal', 'search-engine', 'timm', 'transformers', 'vision-language', 'machine-learning', 'semantic-search', 'visual-search', 'natural-language-processing', 'hnsw', 'knn', 'hacktoberfest', 'hacktoberfest-accepted']",Python,https://www.marqo.ai/,marqo: Tensor search for humans.,marqo-ai,2022-12-18,2022-12-16,2022-08-01,20,92.6,20,1,5,['marqo-ai'],,8.88,196,148,5,0,6,15,6,195.0,147.0,90.0,0.8,9,37.30761 -452,pandas,https://github.com/pandera-dev/pandera,1.0,,,pandera-dev/pandera,pandera,1851,156,12,"['pandas', 'validation', 'schema', 'dataframes', 'testing', 'pandas-validation', 'pandas-dataframe', 'data-validation', 'data-cleaning', 'data-check', 'testing-tools', 'assertions', 'data-assertions', 'data-verification', 'dataframe-schema', 'hypothesis-testing', 'pandas-validator', 'data-processing']",Python,https://www.union.ai/pandera,"pandera: A light-weight, flexible, and expressive statistical data testing library",pandera-dev,2022-12-18,2022-12-16,2018-11-01,215,8.58648111332008,77,4,5,"['auxmoney', 'bcggamma', 'imperialcollegelondon', 'unionai']",,2.23,134,83,50,0,17,14,17,134.0,355.0,90.0,2.6,17,53.79806 -540,nlp,https://github.com/salesforce/codegen,,,,salesforce/codegen,CodeGen,1850,137,35,"['programsynthesis', 'generativemodel', 'codex', 'languagemodel', 'llm', 'tpu-acceleration']",Python,,CodeGen is an open-source model for program synthesis. Trained on TPU-v4. Competitive with OpenAI Codex.,salesforce,2022-12-18,2022-12-01,2022-03-28,38,48.68421052631579,7,1,5,['garnercorp'],,0.83,21,12,9,1,0,0,0,21.0,47.0,90.0,2.2,2,24.93407 -713,gis,https://github.com/mcordts/cityscapesscripts,,,,mcordts/cityscapesscripts,cityscapesScripts,1842,565,46,[],Python,,cityscapesScripts: README and scripts for the Cityscapes Dataset,mcordts,2022-12-18,2022-10-22,2016-02-20,356,5.170008019246191,17,2,5,"['daimlerag', 'facebookairesearch']",,0.02,7,2,83,2,0,0,0,7.0,4.0,90.0,0.6,8,29.71181 -871,profiling,https://github.com/reloadware/reloadium,1.0,,,reloadware/reloadium,reloadium,1836,27,24,"['hot-reload', 'hot-reloading', 'python', 'python3', 'edit-and-continue', 'django', 'flask', 'pandas']",Python,https://reloadium.io,reloadium: Advanced Hot Reloading & Profiling for Python,reloadware,2022-12-18,2022-11-29,2022-01-15,48,38.023668639053255,2,2,5,"['bytelogics', 'reloadware']",,0.71,38,31,11,1,0,6,6,38.0,103.0,90.0,2.7,0,27.68228 -856,profiling,https://github.com/jiffyclub/snakeviz,,,,jiffyclub/snakeviz,snakeviz,1827,128,22,[],Python,https://jiffyclub.github.io/snakeviz/,snakeviz: An in-browser Python profile viewer,jiffyclub,2022-12-15,2021-10-25,2012-06-26,546,3.340909090909091,24,3,5,"['nvidia', 'populus-ai', 'universityofwisconsin-madison']",,0.0,10,4,128,14,0,2,2,10.0,12.0,90.0,1.2,24,34.66087 -823,data,https://github.com/uqfoundation/dill,1.0,,,uqfoundation/dill,dill,1822,151,22,[],Python,http://dill.rtfd.io,dill: serialize all of python,uqfoundation,2022-12-17,2022-12-18,2013-06-28,494,3.685062120774343,39,2,5,"['amphybio-universityofsãopaulo,medicalschool', 'uqfoundation']",,1.94,40,19,115,0,3,3,3,40.0,57.0,90.0,1.4,514,51.09718 -46,jupyter,https://github.com/maartenbreddels/ipyvolume,,,,maartenbreddels/ipyvolume,ipyvolume,1811,234,53,"['ipython-widget', 'jupyter', 'jupyter-notebook', 'python', 'visualisation', 'volume-rendering', 'virtual-reality', 'plotting', 'dataviz', 'scientific-visualization', 'webgl', 'threejs', 'rendering-3d-volumes', 'quiver']",TypeScript,,ipyvolume: 3d plotting for Python in the Jupyter notebook based on IPython widgets using WebGL,maartenbreddels,2022-12-18,2022-07-26,2016-12-21,312,5.7912288716308815,41,4,5,"['imperialcollegelondon', 'maartenbreddels', 'monashuniversity', 'surf']",,0.04,8,1,73,5,0,8,8,8.0,8.0,90.0,1.0,97,41.53161 -115,perf,https://github.com/h5py/h5py,,,,h5py/h5py,h5py,1806,478,55,[],Python,http://www.h5py.org,h5py: HDF5 for Python -- The h5py package is a Pythonic interface to the HDF5 binary data format.,h5py,2022-12-18,2022-12-15,2012-09-21,534,3.3793103448275863,190,4,5,"['brookhavennationallab', 'departmentofphysicsandastronomy,macquarieuniversity', 'enthought', 'esrf']",,3.48,70,41,125,0,1,4,1,70.0,208.0,90.0,3.0,791,61.33691 -506,ml-ops,https://github.com/adap/flower,,,,adap/flower,flower,1800,390,24,"['flower', 'federated-learning', 'federated-learning-framework', 'pytorch-federated-learning', 'tensorflow-federated-learning', 'keras-federated-learning', 'federated-analytics', 'fleet-learning', 'fleet-intelligence']",Python,https://flower.dev,Flower - A Friendly Federated Learning Framework,adap,2022-12-18,2022-12-16,2020-02-17,148,12.162162162162161,51,1,5,['adapgmbh'],,5.63,99,67,34,0,4,4,4,99.0,59.0,90.0,0.6,18,42.50002 -648,util,https://github.com/grahamdumpleton/wrapt,,,,grahamdumpleton/wrapt,wrapt,1793,208,45,[],Python,,"wrapt: A Python module for decorators, wrappers and monkey patching.",grahamdumpleton,2022-12-18,2022-10-28,2013-05-29,498,3.595244915496992,25,3,5,"['embl,zellerlab', 'georgiatech', 'scampersand']",,0.4,5,4,116,2,0,5,5,5.0,8.0,90.0,1.6,1101,47.52383 -601,gis,https://github.com/plant99/felicette,,,,plant99/felicette,felicette,1792,85,38,"['geospatial-data', 'gis', 'geospatial-visualization', 'geospatial', 'python', 'python3', 'geoinformatics', 'earth-observation', 'earth-science', 'satellite-imagery', 'satellite-images', 'satellite-data']",Python,,felicette: Satellite imagery for dummies.,plant99,2022-12-16,2021-09-08,2020-07-12,127,14.09438202247191,6,4,5,"['clemsonuniversity', 'financeandeconomicsdepartment,mgimo-odintsovo', 'mattermost', 'tempulsenoirlinuxmulindisourcehaus']",,0.0,0,0,30,16,0,2,2,0.0,0.0,90.0,0.0,0,16.70649 -295,util,https://github.com/pyfilesystem/pyfilesystem2,,,,pyfilesystem/pyfilesystem2,pyfilesystem2,1785,170,45,"['filesystem', 'pyfilesystem', 'pyfilesystem2', 'python', 'ftp', 'tar', 'zip', 'filesystem-library']",Python,https://www.pyfilesystem.org,pyfilesystem2: Python's Filesystem abstraction layer,pyfilesystem,2022-12-12,2022-10-18,2016-10-14,322,5.536109880372176,47,3,5,"['embl,zellerlab', 'mercatronicsgmbh', 'textualize']",,1.56,7,2,75,2,2,8,2,7.0,19.0,90.0,2.7,47,43.67384 -63,sim,https://github.com/projectmesa/mesa,,,,projectmesa/mesa,mesa,1778,760,89,"['mesa', 'agent-based-modeling', 'agent-based-simulation', 'simulation-framework', 'simulation', 'simulation-environment', 'complex-systems', 'complexity-analysis', 'modeling-agents', 'spatial-models', 'gis']",Python,,Mesa is an agent-based modeling framework in Python,projectmesa,2022-12-17,2022-12-14,2014-09-19,430,4.130766677729837,121,0,5,[],,5.48,166,136,100,0,1,3,1,166.0,676.0,90.0,4.1,104,51.20262 -749,diffusion,https://github.com/nateraw/stable-diffusion-videos,,,,nateraw/stable-diffusion-videos,stable-diffusion-videos,1774,155,21,"['ai-art', 'huggingface', 'huggingface-diffusers', 'machine-learning', 'stable-diffusion']",Python,,stable-diffusion-videos: Create 🔥 videos with Stable Diffusion by exploring the latent space and morphing between text prompts,nateraw,2022-12-18,2022-12-05,2022-09-06,14,119.40384615384616,10,3,5,"['earth', 'huggingface', 'student']",,2.31,103,83,3,0,15,61,15,103.0,213.0,90.0,2.1,2,36.8515 -32,nlp,https://github.com/jamesturk/jellyfish,,,,jamesturk/jellyfish,jellyfish,1766,148,43,"['python', 'levenshtein', 'soundex', 'hamming', 'metaphone', 'jaro-winkler', 'fuzzy-search', 'hacktoberfest']",Python,https://jamesturk.github.io/jellyfish/,jellyfish: 🪼 a python library for doing approximate and phonetic matching of strings.,jamesturk,2022-12-18,2022-11-07,2010-07-09,649,2.719313682358117,27,3,5,"['ibmresearch', 'sunlightlabs', 'utrechtuniversity']",,0.38,10,7,152,1,0,2,2,10.0,6.0,90.0,0.6,92,41.79416 -310,data,https://github.com/graphistry/pygraphistry,,,,graphistry/pygraphistry,pygraphistry,1764,185,48,"['graph', 'visualization', 'gpu', 'graphistry', 'python', 'rapids', 'cugraph', 'networkx', 'neo4j', 'tigergraph', 'pandas', 'csv', 'webgl', 'splunk', 'cudf', 'jupyter', 'igraph', 'network-analysis', 'network-visualization', 'graph-visualization']",Python,,"PyGraphistry is a Python library to quickly load, shape, embed, and explore big graphs with the GPU-accelerated Graphistry visual graph analyzer",graphistry,2022-12-15,2022-12-13,2015-06-02,393,4.478781284004352,31,2,5,"['graphistry', 'nvidia']",,1.44,38,21,92,0,0,22,22,38.0,32.0,90.0,0.8,36,46.8321 -9,ml,https://github.com/contextlab/hypertools,,,,contextlab/hypertools,hypertools,1754,159,60,"['data-visualization', 'high-dimensional-data', 'python', 'topic-modeling', 'text-vectorization', 'data-wrangling', 'visualization', 'time-series']",Python,http://hypertools.readthedocs.io/en/latest/,hypertools: A Python toolbox for gaining geometric insights into high-dimensional data,contextlab,2022-12-17,2022-02-12,2016-09-27,324,5.399296394019349,21,3,5,"['akiliinteractive', 'contextlabcosanlab', 'dartmouthcollege']",,0.63,4,4,76,10,1,3,1,4.0,4.0,90.0,1.0,25,33.18949 -201,util,https://github.com/camelot-dev/camelot,,,,camelot-dev/camelot,camelot,1752,329,40,[],Python,https://camelot-py.readthedocs.io,camelot: A Python library to extract tabular data from PDFs,camelot-dev,2022-12-17,2021-07-11,2019-07-01,181,9.679558011049723,38,2,5,"['01s', 'http://develated.com/']",,0.0,16,5,42,18,0,7,7,16.0,15.0,90.0,0.9,6,30.63252 -843,ml,https://github.com/aws/sagemaker-python-sdk,,,,aws/sagemaker-python-sdk,sagemaker-python-sdk,1748,905,131,"['aws', 'mxnet', 'tensorflow', 'machine-learning', 'python', 'pytorch', 'sagemaker', 'huggingface']",Python,https://sagemaker.readthedocs.io/,sagemaker-python-sdk: A library for training and deploying machine learning models on Amazon SageMaker,aws,2022-12-16,2022-12-16,2017-11-14,265,6.574959699086513,311,1,5,['google'],,9.71,275,152,62,0,74,93,74,275.0,3020.0,90.0,11.0,133,66.03168 -297,util,https://github.com/pyparsing/pyparsing,,,,pyparsing/pyparsing,pyparsing,1714,237,23,"['python', 'python2', 'python3', 'python-2', 'python-3', 'parser-combinators', 'parsing-expression-grammar', 'parsing', 'parsing-library', 'text-processing', 'peg-parsers']",Python,,pyparsing: Python library for creating PEG parsers,pyparsing,2022-12-14,2022-12-13,2017-05-14,292,5.866992665036674,52,3,5,"['google', 'pioneervalleybooks', 'suse']",,2.69,19,7,68,0,3,9,3,19.0,33.0,90.0,1.7,2168,54.34798 -25,util,https://github.com/google/gin-config,,,,google/gin-config,gin-config,1710,107,22,"['python', 'configuration-management', 'tensorflow', 'tensorflow-experiments']",Python,,gin-config: Gin provides a lightweight configuration framework for Python,google,2022-12-17,2022-12-05,2018-06-27,233,7.316625916870415,23,2,5,"['google', 'netguru']",,0.12,9,6,54,0,0,0,0,9.0,5.0,90.0,0.6,0,29.12146 -365,ml,https://github.com/rentruewang/koila,,,,rentruewang/koila,koila,1689,61,11,"['pytorch', 'lazy-evaluation', 'out-of-memory', 'python', 'machine-learning', 'deep-learning', 'memory-management', 'gradient-accumulation', 'neural-network']",Python,https://rentruewang.github.io/koila,koila: Prevent PyTorch's `CUDA error: out of memory` in just 1 line of code.,rentruewang,2022-12-16,2022-12-10,2021-11-17,56,29.7808564231738,4,2,5,"['collegeofcomputing,georgiatech', 'iprally']",,0.83,1,1,13,0,0,2,2,1.0,0.0,90.0,0.0,0,20.2574 -806,web,https://github.com/python-restx/flask-restx,,,,python-restx/flask-restx,flask-restx,1689,285,65,"['python', 'api', 'swagger', 'flask', 'rest', 'json', 'restful', 'restplus', 'restx']",Python,https://flask-restx.readthedocs.io/en/latest/,"flask-restx: Fork of Flask-RESTPlus: Fully featured framework for fast, easy and documented API development with Flask",python-restx,2022-12-18,2022-11-02,2020-01-09,153,10.998139534883721,137,2,5,"['apihackers', 'canonical']",,0.48,85,21,36,2,2,4,2,85.0,67.0,90.0,0.8,264,45.50314 -543,data,https://github.com/sqlalchemy/alembic,,,,sqlalchemy/alembic,alembic,1673,171,18,"['sqlalchemy', 'sql', 'python']",Python,,alembic: A database migrations tool for SQLAlchemy.,sqlalchemy,2022-12-18,2022-12-15,2018-11-27,211,7.896830748482805,155,4,5,"['helioslite', 'planetarium', 'redhat', 'self-employed']",,1.33,37,26,49,0,5,26,5,37.0,106.0,90.0,2.9,1101,59.20527 -416,ml,https://github.com/bmabey/pyldavis,,,,bmabey/pyldavis,pyLDAvis,1671,340,57,[],Jupyter Notebook,,pyLDAvis: Python library for interactive topic model visualization. Port of the R LDAvis package.,bmabey,2022-12-17,2021-03-24,2015-04-09,401,4.161152614727855,32,2,5,"['google', 'zalandose']",,0.0,13,2,94,21,0,3,3,13.0,6.0,90.0,0.5,15,30.38527 -217,ml,https://github.com/linkedin/greykite,1.0,,,linkedin/greykite,greykite,1654,87,37,[],Python,,"greykite: A flexible, intuitive and fast forecasting library",linkedin,2022-12-17,2022-08-31,2021-04-27,85,19.264559068219633,8,2,5,"['linkedin', 'pepsico']",,0.08,3,1,20,4,1,2,1,3.0,9.0,90.0,3.0,12,28.26619 -302,template,https://github.com/pyscaffold/pyscaffold,,,,pyscaffold/pyscaffold,pyscaffold,1649,170,40,"['python', 'release-automation', 'git', 'distribution', 'package-creation', 'template-project', 'project-template', 'package']",Python,https://pyscaffold.org,pyscaffold: 🛠 Python project template generator with batteries included,pyscaffold,2022-12-18,2022-11-28,2014-04-02,454,3.6264530317310713,53,3,5,"['inovex', 'karlsruheinstituteoftechnology', 'universityofbristol']",,2.98,18,13,106,1,10,22,10,18.0,22.0,90.0,1.2,105,49.77932 -732,study,https://github.com/amanchadha/coursera-deep-learning-specialization,,,,amanchadha/coursera-deep-learning-specialization,coursera-deep-learning-specialization,1649,1451,16,"['deep-learning', 'coursera', 'coursera-assignment', 'coursera-specialization', 'coursera-machine-learning', 'andrew-ng', 'andrew-ng-course', 'convolutional-neural-networks', 'cnns', 'recurrent-neural-networks', 'rnns', 'convolutional-neural-network', 'recurrent-neural-network', 'hyperparameter-optimization', 'hyperparameter-tuning', 'neural-network', 'neural-networks', 'neural-machine-translation', 'neural-style-transfer', 'regularization']",Jupyter Notebook,,"coursera-deep-learning-specialization: Notes, programming assignments and quizzes from all courses within the Coursera Deep Learning specialization offered by deeplearning.ai: (i) Neural Networks and Deep Learning; (ii) Improving Deep Neural Networks: Hyperparameter tuning, Regularization and Optimization; (iii) Structuring Machine Learning Projects; (iv) Convolutional Neural Networks; (v) Sequence Models",amanchadha,2022-12-18,2022-02-07,2020-06-24,129,12.712555066079295,6,2,5,"['amazon/stanforduniversity', 'readytocollaborateonaiprojects']",,0.1,3,1,30,10,0,0,0,3.0,2.0,90.0,0.7,0,17.15735 -424,debug,https://github.com/gotcha/ipdb,,,,gotcha/ipdb,ipdb,1640,145,27,"['python', 'ipython', 'debugger']",Python,,ipdb: Integration of IPython pdb,gotcha,2022-12-14,2022-12-13,2011-01-15,622,2.63544536271809,54,3,5,"['bubblenet', ""let'sdelivery"", 'locatee']",,0.29,20,14,145,0,0,3,3,20.0,29.0,90.0,1.4,915,52.46091 -330,nlp,https://github.com/franck-dernoncourt/neuroner,,,,franck-dernoncourt/neuroner,NeuroNER,1640,483,84,"['nlp', 'machine-learning', 'neural-networks', 'named-entity-recognition', 'deep-learning', 'tensorflow']",Python,http://neuroner.com,NeuroNER: Named-entity recognition using neural networks. Easy-to-use and state-of-the-art results.,franck-dernoncourt,2022-12-17,2019-10-02,2017-03-07,301,5.433033601514435,7,1,5,['mit'],,0.0,4,1,70,39,0,0,0,4.0,2.0,90.0,0.5,0,13.86356 -699,util,https://github.com/grantjenks/python-diskcache,,,,grantjenks/python-diskcache,python-diskcache,1627,106,18,"['python', 'cache', 'persistence', 'key-value-store', 'filesystem']",Python,http://www.grantjenks.com/docs/diskcache/,python-diskcache: Python disk-backed cache (Django-compatible). Faster than Redis and Memcached. Pure-Python.,grantjenks,2022-12-18,2022-02-20,2016-02-03,358,4.535643170051772,24,1,5,['canonical'],,0.15,9,6,84,10,0,12,12,9.0,16.0,90.0,1.8,65,36.94029 -256,crypto,https://github.com/bmoscon/cryptofeed,,,,bmoscon/cryptofeed,cryptofeed,1610,518,74,"['python', 'trading', 'market-data', 'cryptocurrency', 'bitcoin', 'exchange', 'websockets', 'coinbase', 'binance', 'influxdb', 'asyncio', 'websocket', 'ftx-exchange', 'trading-platform', 'ethereum', 'cryptocurrencies', 'btc', 'crypto', 'coinbase-api']",Python,,cryptofeed: Cryptocurrency Exchange Websocket Data Feed Handler,bmoscon,2022-12-17,2022-12-14,2017-12-16,261,6.161837069436851,104,0,5,[],,3.71,32,20,61,0,7,14,7,32.0,33.0,90.0,1.0,173,46.04048 -383,nlp,https://github.com/minimaxir/aitextgen,,,,minimaxir/aitextgen,aitextgen,1603,182,36,[],Python,https://docs.aitextgen.io,aitextgen: A robust Python tool for text-based AI training and generation using GPT-2.,minimaxir,2022-12-17,2022-08-09,2019-12-29,155,10.332412523020258,9,3,5,"['buzzfeed', 'lightning-ai', 'quantcopy']",,0.1,8,1,36,4,1,4,1,8.0,13.0,90.0,1.6,0,25.52238 -779,nlp,https://github.com/deepset-ai/farm,,,,deepset-ai/farm,FARM,1602,232,56,"['language-models', 'bert', 'nlp', 'deep-learning', 'transfer-learning', 'pytorch', 'nlp-library', 'nlp-framework', 'xlnet-pytorch', 'ner', 'question-answering', 'pretrained-models', 'roberta', 'germanbert']",Python,https://farm.deepset.ai,FARM: :house_with_garden: Fast & easy transfer learning for NLP. Harvesting language models for the industry. Focus on Question Answering.,deepset-ai,2022-12-15,2022-08-31,2019-07-17,178,8.964028776978417,37,1,5,['deepset'],,0.04,1,0,42,4,0,7,7,1.0,0.0,90.0,0.0,39,29.59949 -509,ml,https://github.com/tensorflow/addons,,,,tensorflow/addons,addons,1596,597,58,"['machine-learning', 'deep-learning', 'tensorflow', 'neural-network', 'tensorflow-addons', 'python']",Python,,addons: Useful extra functionality for TensorFlow 2.x maintained by SIG-addons,tensorflow,2022-12-15,2022-12-14,2018-11-26,212,7.528301886792453,200,4,5,"['aws', 'googlers', 'preligens', 'systran']",,1.27,53,31,49,0,6,9,6,53.0,111.0,90.0,2.1,2373,60.89811 -825,study,https://github.com/alirezadir/machine-learning-interview-enlightener,,,,alirezadir/machine-learning-interview-enlightener,machine-learning-interview-enlightener,1586,327,47,"['machine-learning', 'machine-learning-algorithms', 'ai', 'deep-learning', 'system-design', 'scalable-applications', 'interview', 'interview-preparation', 'interview-practice', 'interviews']",Jupyter Notebook,,machine-learning-interview-enlightener: This repo is meant to serve as a guide for Machine Learning/AI technical interviews. ,alirezadir,2022-12-18,2022-05-25,2021-01-31,98,16.160116448326054,6,2,5,"['meta', 'sdeliveramp']",,0.12,1,0,23,7,0,0,0,1.0,0.0,90.0,0.0,0,14.13242 -767,study,https://github.com/fluentpython/example-code-2e,,,,fluentpython/example-code-2e,example-code-2e,1584,464,52,"['python', 'python3', 'concurrency', 'iterators', 'metaprogramming', 'special-methods']",Python,https://amzn.to/3J48u2J,"example-code-2e: Example code for Fluent Python, 2nd edition (O'Reilly 2022) ",fluentpython,2022-12-18,2022-04-24,2019-03-21,195,8.099342585829072,7,1,5,['thoughtworksthoughtworksinc'],,0.19,3,0,46,8,0,0,0,3.0,1.0,90.0,0.3,35,21.99251 -768,ml-dl,https://github.com/fepegar/torchio,,,,fepegar/torchio,torchio,1577,196,15,"['pytorch', 'medical-image-computing', 'deep-learning', 'data-augmentation', 'medical-images', 'machine-learning', 'python', 'medical-image-processing', 'medical-image-analysis', 'medical-imaging-datasets', 'medical-imaging-with-deep-learning', 'augmentation']",Python,http://www.torchio.org,torchio: Medical imaging toolkit for deep learning,fepegar,2022-12-18,2022-11-19,2019-11-26,159,9.865058087578195,41,1,5,['microsoftuclkcl-bmeis'],,2.33,47,33,37,1,0,83,83,47.0,115.0,90.0,2.4,14,44.03754 -195,sim,https://github.com/pettingzoo-team/pettingzoo,,,,pettingzoo-team/pettingzoo,PettingZoo,1576,250,16,[],Python,https://pettingzoo.farama.org,PettingZoo: Gymnasium for multi-agent reinforcement learning,pettingzoo-team,2022-12-17,2022-11-15,2020-01-20,152,10.368421052631579,79,1,5,['morganstanley'],,10.38,87,70,35,1,12,11,12,87.0,116.0,90.0,1.3,40,47.54469 -263,sim,https://github.com/quantecon/quantecon.py,,,,quantecon/quantecon.py,QuantEcon.py,1566,2108,151,[],Python,https://quantecon.org/quantecon-py/,QuantEcon.py: A community based Python library for quantitative economics,quantecon,2022-12-18,2022-12-18,2013-03-22,508,3.080078673784771,40,4,5,"['australiannationaluniversity', 'kingabdullahuniversityofscienceandtechnology', 'umaprotocol', 'universityoftokyo']",,1.73,66,37,119,0,2,4,2,66.0,168.0,90.0,2.5,932,56.56408 -597,time-series,https://github.com/uber/orbit,,,,uber/orbit,orbit,1562,117,32,"['python', 'forecasting', 'bayesian', 'exponential-smoothing', 'pyro', 'stan', 'pystan', 'probabilistic-programming', 'probabilistic', 'forecast', 'orbit', 'time-series', 'regression', 'arima', 'changepoint', 'bayesian-methods', 'bayesian-statistics', 'machine-learning', 'regression-models', 'pytorch']",Python,https://orbit-ml.readthedocs.io/en/stable/,orbit: A Python package for Bayesian forecasting with object-oriented design and probabilistic models under the hood.,uber,2022-12-17,2022-11-30,2020-01-07,153,10.152274837511607,18,1,5,['uber'],,1.6,15,7,36,1,5,8,5,15.0,11.0,90.0,0.7,22,34.74221 -377,ml-interpretability,https://github.com/jalammar/ecco,,,,jalammar/ecco,ecco,1556,111,20,"['nlp', 'visualization', 'explorables', 'natural-language-processing', 'pytorch', 'language-models']",Jupyter Notebook,https://ecco.readthedocs.io,"ecco: Explain, analyze, and visualize NLP language models. Ecco creates interactive visualizations directly in Jupyter notebooks explaining the behavior of Transformer-based language models (like GPT2, BERT, RoBERTA, T5, and T0).",jalammar,2022-12-18,2022-01-18,2020-11-07,110,14.10880829015544,10,3,5,"['cohere-ai', 'outsystems', 'truefoundry']",,0.62,9,6,26,11,3,6,3,9.0,5.0,90.0,0.6,3,26.125 -299,util,https://github.com/julienpalard/pipe,,,,julienpalard/pipe,Pipe,1544,101,26,[],Python,,Pipe: A Python library to use infix notation in Python,julienpalard,2022-12-18,2022-11-16,2010-04-08,662,2.3303147908581283,25,1,5,['sumologic'],,0.37,2,1,155,1,1,0,1,2.0,2.0,90.0,1.0,2,30.38733 -143,nlp,https://github.com/plasticityai/magnitude,,,,plasticityai/magnitude,magnitude,1544,113,37,"['python', 'natural-language-processing', 'nlp', 'machine-learning', 'vectors', 'embeddings', 'word2vec', 'fasttext', 'glove', 'gensim', 'fast', 'memory-efficient', 'machine-learning-library', 'word-embeddings']",Python,,"magnitude: A fast, efficient universal vector embedding utility package.",plasticityai,2022-12-12,2020-07-17,2018-02-24,251,6.144400227401933,4,1,5,['plasticityai'],,0.0,2,0,59,29,0,29,29,2.0,1.0,90.0,0.5,6,21.39797 -596,data,https://github.com/uber/petastorm,,,,uber/petastorm,petastorm,1543,265,41,"['tensorflow', 'pytorch', 'deep-learning', 'machine-learning', 'sysml', 'pyspark', 'pyarrow', 'parquet', 'parquet-files']",Python,,"Petastorm library enables single machine or distributed training and evaluation of deep learning models from datasets in Apache Parquet format. It supports ML frameworks such as Tensorflow, Pytorch, and PySpark and can be used from pure Python code.",uber,2022-12-17,2022-12-16,2018-06-15,235,6.554004854368932,46,3,5,"['databricks', 'netflix', 'uber']",,0.46,13,5,55,0,11,25,11,13.0,27.0,90.0,2.1,10,44.55222 -311,util,https://github.com/linkedin/shiv,,,,linkedin/shiv,shiv,1532,84,26,[],Python,,"shiv is a command line utility for building fully self contained Python zipapps as outlined in PEP 441, but with all their dependencies included.",linkedin,2022-12-13,2022-11-04,2018-03-13,248,6.156142365097589,39,3,5,"['lincolnloop', 'linkedin', 'mam-dev']",,0.21,4,2,58,2,3,4,3,4.0,3.0,90.0,0.8,8,35.40279 -662,util,https://github.com/numba/llvmlite,,,,numba/llvmlite,llvmlite,1526,289,54,[],Python,http://llvmlite.pydata.org/,llvmlite: A lightweight LLVM python binding for writing JIT compilers,numba,2022-12-17,2022-12-05,2014-08-07,436,3.4954188481675392,81,1,5,['anaconda'],,1.71,30,14,102,0,0,13,13,30.0,87.0,90.0,2.9,458,54.35845 -635,debug,https://github.com/alexmojaki/birdseye,,,,alexmojaki/birdseye,birdseye,1524,76,43,"['python-debugger', 'python', 'debugger', 'debugging', 'birdseye', 'ast']",JavaScript,https://birdseye.readthedocs.io,birdseye: Graphical Python debugger which lets you easily view the values of all evaluated expressions,alexmojaki,2022-12-16,2022-05-18,2017-07-22,282,5.398785425101215,10,3,5,"['actcommodities', 'cybernetica', 'skelevilletechnologysolutions']",,0.04,2,1,66,7,0,1,1,2.0,1.0,90.0,0.5,8,26.84088 -795,web,https://github.com/starlite-api/starlite,,,,starlite-api/starlite,starlite,1520,141,22,"['python', 'api', 'rest', 'mypy', 'pydantic', 'types', 'asgi', 'json', 'openapi', 'redoc', 'starlette']",Python,https://starlite-api.github.io/starlite/,"starlite: Light, Flexible and Extensible ASGI API framework",starlite-api,2022-12-18,2022-12-18,2021-12-06,54,28.14814814814815,71,1,5,['safehousetechnologies'],,19.87,437,412,13,0,119,112,119,437.0,889.0,90.0,2.0,78,53.60219 -799,web,https://github.com/pallets/quart,,,,pallets/quart,quart,1509,93,24,"['asyncio', 'python', 'http-server', 'asgi', 'quart']",Python,https://quart.palletsprojects.com,quart: An async Python micro framework for building web applications. ,pallets,2022-12-17,2022-12-15,2017-11-10,266,5.663806970509383,80,1,5,['none'],,1.81,28,25,62,0,0,10,10,28.0,29.0,90.0,1.0,18,44.53971 -458,ml-dl,https://github.com/nebuly-ai/nebullvm,,,,nebuly-ai/nebullvm,nebullvm,1504,70,16,"['deep-learning', 'pytorch', 'onnx', 'machine-learning', 'tensorflow', 'tvm', 'openvino', 'tensorrt', 'huggingface', 'compiler', 'computing', 'inference', 'neural-network', 'pypi', 'quantization']",Python,,nebullvm: Accelerate AI models leveraging best-of-breed optimization techniques 🚀,nebuly-ai,2022-12-16,2022-12-17,2022-02-12,44,33.961290322580645,11,4,5,"['nebuly', 'nebuly-ai', 'nebuly|epfl', 'nebuly|ethzurich']",,2.23,48,30,10,0,13,16,13,48.0,19.0,90.0,0.4,2,35.80703 -205,debug,https://github.com/alexmojaki/heartrate,,,,alexmojaki/heartrate,heartrate,1499,120,30,"['python', 'visualization', 'debugger']",Python,,heartrate: Simple real time visualisation of the execution of a Python program.,alexmojaki,2022-12-15,2021-11-13,2019-04-24,190,7.859925093632959,3,0,5,[],,0.0,0,0,44,13,0,0,0,0.0,0.0,90.0,0.0,0,6.69395 -612,testing,https://github.com/pytest-dev/pytest-mock,,,,pytest-dev/pytest-mock,pytest-mock,1493,119,34,"['pytest', 'mock', 'hacktoberfest']",Python,https://pytest-mock.readthedocs.io/en/latest/,pytest-mock: Thin-wrapper around the mock package for easier use with pytest,pytest-dev,2022-12-16,2022-12-16,2014-07-17,439,3.3964900877478064,64,4,5,"['esss', 'freelancer,upforhire', 'nordsoftware', 'wayfair']",,1.08,26,26,103,0,6,7,6,26.0,27.0,90.0,1.0,3125,57.46496 -224,sim,https://github.com/google/brax,,,,google/brax,brax,1479,148,31,"['jax', 'reinforcement-learning', 'robotics', 'physics-simulation']",Jupyter Notebook,,brax: Massively parallel rigidbody physics simulation on accelerator hardware.,google,2022-12-17,2022-12-15,2021-06-02,80,18.323893805309734,25,2,5,"['drexeluniversity', 'instadeep']",,0.4,41,23,19,0,6,8,6,41.0,79.0,90.0,1.9,11,39.53516 -498,ml-dl,https://github.com/vt-vl-lab/fgvc,,,,vt-vl-lab/fgvc,FGVC,1473,237,68,[],Python,,FGVC: [ECCV 2020] Flow-edge Guided Video Completion ,vt-vl-lab,2022-12-15,2021-12-14,2020-09-09,118,12.407942238267148,3,2,5,"['meta', 'virginiatech']",,0.0,4,2,28,12,0,0,0,4.0,5.0,90.0,1.2,0,16.40385 -436,nlp,https://github.com/recognai/rubrix,,,,recognai/rubrix,argilla,1469,134,18,"['python', 'data-science', 'human-in-the-loop', 'natural-language-processing', 'mlops', 'artificial-intelligence', 'knowledge-graph', 'developer-tools', 'text-labeling', 'annotation-tool', 'nlp', 'machine-learning', 'active-learning', 'weak-supervision', 'weakly-supervised-learning', 'spacy', 'text-classification', 'dataops', 'text-annotation', 'hacktoberfest']",Python,https://docs.argilla.io,argilla: ✨ Open-source tool for data-centric NLP. Argilla helps domain experts and data teams to build better NLP datasets in less time.,recognai,2022-12-17,2022-12-16,2021-04-28,85,17.138333333333332,33,4,5,"['aarhusuniversity,vestas', 'argilla.io', 'maxplanckcomputing&datafacility', 'recogai']",,10.4,364,231,20,0,30,52,30,369.0,470.0,90.0,1.3,4,49.38941 -531,ml-dl,https://github.com/neuralmagic/sparseml,,,,neuralmagic/sparseml,sparseml,1455,104,36,"['pytorch', 'keras', 'model-sparsification', 'sparsification-recipes', 'tensorflow', 'smaller-models', 'deep-learning-library', 'deep-learning-algorithms', 'deep-learning-models', 'automl', 'pruning-algorithms', 'sparsity', 'sparsification', 'recipe-driven-approaches', 'pruning', 'computer-vision-algorithms', 'object-detection', 'image-classification', 'nlp', 'onnx']",Python,,"sparseml: Libraries for applying sparsification recipes to neural networks with a few lines of code, enabling faster and smaller models",neuralmagic,2022-12-18,2022-12-15,2020-12-11,105,13.800813008130081,36,1,5,['neuralmagic'],,8.13,242,216,25,0,12,12,12,242.0,161.0,90.0,0.7,9,43.60185 -703,util,https://github.com/openai/openai-python,,,,openai/openai-python,openai-python,1433,345,52,[],Python,,openai/openai-python,openai,2022-12-18,2022-12-07,2020-10-25,112,12.778343949044586,26,2,5,"['microsoft', 'openai']",,0.87,38,21,26,0,17,20,17,38.0,35.0,90.0,0.9,12,40.79217 -591,template,https://github.com/buuntu/fastapi-react,,,,buuntu/fastapi-react,fastapi-react,1428,241,35,"['fastapi', 'postgres', 'cookiecutter', 'react', 'react-admin', 'nginx', 'boilerplate', 'full-stack', 'typescript', 'sqlalchemy', 'jwt', 'oauth2', 'docker']",Python,,"fastapi-react: 🚀 Cookiecutter Template for FastAPI + React Projects. Using PostgreSQL, SQLAlchemy, and Docker",buuntu,2022-12-17,2022-02-18,2020-03-21,143,9.966101694915254,13,2,5,"['facebook', 'jasonhoku']",,0.02,2,0,33,10,0,1,1,2.0,2.0,90.0,1.0,7,24.14813 -638,perf,https://github.com/dask/distributed,,,,dask/distributed,distributed,1428,666,59,"['pydata', 'dask', 'distributed-computing', 'python', 'hacktoberfest']",Python,https://distributed.dask.org,distributed: A distributed task scheduler for Dask,dask,2022-12-16,2022-12-16,2015-09-13,379,3.7663903541823665,301,1,5,['coiled'],,15.67,479,300,88,0,0,26,26,479.0,1204.0,90.0,2.5,3056,68.77149 -861,jupyter,https://github.com/jupyter/nbconvert,,,,jupyter/nbconvert,nbconvert,1423,509,50,[],Python,https://nbconvert.readthedocs.io/,nbconvert: Jupyter Notebook Conversion,jupyter,2022-12-17,2022-12-18,2015-04-09,401,3.543578797580932,254,4,5,"['google', 'netflix', 'quansight-labs', 'simularesearchlaboratory']",,3.06,93,44,94,0,19,9,19,93.0,119.0,90.0,1.3,4472,66.48137 -324,security,https://github.com/pyupio/safety,,,,pyupio/safety,safety,1421,123,32,"['python', 'security', 'security-vulnerability', 'travis', 'vulnerability-scanners', 'vulnerability-detection']",Python,https://pyup.io/safety/,Safety checks Python dependencies for known security vulnerabilities and suggests the proper remediations for vulnerabilities detected.,pyupio,2022-12-16,2022-12-08,2016-10-19,321,4.41696269982238,40,2,5,"['pyupio', 'syncsketch']",,2.06,63,44,75,0,11,9,11,63.0,38.0,90.0,0.6,1197,52.81789 -108,util,https://github.com/nficano/python-lambda,,,,nficano/python-lambda,python-lambda,1415,227,31,"['python', 'aws', 'aws-lambda', 'microservices', 'serverless']",Python,,python-lambda: A toolkit for developing and deploying serverless Python code in AWS Lambda. ,nficano,2022-12-10,2022-06-03,2016-02-26,355,3.9811093247588425,48,2,5,"['charliehealth', 'gemovationlabs']",,0.02,2,0,83,7,0,8,8,2.0,1.0,90.0,0.5,61,35.74429 -378,ml-interpretability,https://github.com/oegedijk/explainerdashboard,,,,oegedijk/explainerdashboard,explainerdashboard,1405,184,15,"['dash', 'shap-values', 'dashboard', 'model-predictions', 'data-scientists', 'explainer', 'interactive-dashboards', 'permutation-importances', 'shap', 'plotly', 'inner-workings', 'interactive-plots', 'xai-library', 'xai']",Python,http://explainerdashboard.readthedocs.io,"explainerdashboard: Quickly build Explainable AI dashboards that show the inner workings of so-called ""blackbox"" machine learning models.",oegedijk,2022-12-18,2022-12-09,2019-10-30,163,8.582024432809773,16,2,5,"['dtn', 'thoughtworks']",,1.15,15,7,38,0,4,23,4,15.0,30.0,90.0,2.0,151,43.40087 -429,jupyter,https://github.com/jupyter-lsp/jupyterlab-lsp,,,,jupyter-lsp/jupyterlab-lsp,jupyterlab-lsp,1388,116,16,"['jupyterlab', 'jupyterlab-extension', 'language-server-protocol', 'jupyter-lab', 'lsp', 'linter', 'jupyter', 'jupyter-notebook', 'notebook', 'notebook-jupyter', 'ipython', 'autocompletion', 'julia-language', 'r']",TypeScript,,jupyterlab-lsp: Coding assistance for JupyterLab (code navigation + hover suggestions + linters + autocompletion + rename) using Language Server Protocol,jupyter-lsp,2022-12-17,2022-12-18,2019-08-17,174,7.963934426229508,45,3,5,"['google', 'quantstack', 'universityofoxford']",,3.71,49,29,41,0,4,13,4,49.0,76.0,90.0,1.6,4,44.04962 -683,util,https://github.com/spotify/basic-pitch,,,,spotify/basic-pitch,basic-pitch,1377,68,25,"['lightweight', 'machine-learning', 'midi', 'music', 'pitch-detection', 'polyphonic', 'transcription', 'audio', 'python', 'typescript']",Python,https://basicpitch.io,basic-pitch: A lightweight yet powerful audio-to-MIDI converter with pitch bend detection,spotify,2022-12-18,2022-08-30,2022-05-03,32,41.90869565217391,7,2,5,"['christianclauss', 'spotify']",,0.58,15,6,8,4,0,0,0,15.0,14.0,90.0,0.9,0,19.33768 -149,data,https://github.com/simple-salesforce/simple-salesforce,,,,simple-salesforce/simple-salesforce,simple-salesforce,1375,606,88,"['salesforce', 'api', 'api-client', 'python']",Python,,simple-salesforce: A very simple Salesforce.com REST API client for Python,simple-salesforce,2022-12-18,2022-12-07,2013-01-17,517,2.6566381451835497,75,2,5,"[':+1:', 'salesforce']",,0.21,29,11,121,0,5,4,5,29.0,46.0,90.0,1.6,25,46.60257 -284,data,https://github.com/sdispater/orator,,,,sdispater/orator,orator,1373,165,46,"['python', 'orm', 'database']",Python,https://orator-orm.com,orator: The Orator ORM provides a simple yet beautiful ActiveRecord implementation.,sdispater,2022-12-18,2022-03-13,2015-05-24,395,3.4746926970354304,32,2,5,"['bellawatt', 'masoniteframework']",,0.02,2,0,92,9,0,4,4,2.0,0.0,90.0,0.0,4,27.07055 -438,gis,https://github.com/giswqs/leafmap,,,,giswqs/leafmap,leafmap,1371,165,40,"['ipyleaflet', 'folium', 'mapping', 'python', 'geopython', 'jupyter-notebook', 'jupyter', 'gis', 'dataviz', 'data-science', 'whiteboxtools', 'geospatial', 'geospatial-analysis', 'leafmap', 'streamlit', 'streamlit-webapp', 'plotly', 'pydeck', 'keplergl']",Python,https://leafmap.org,leafmap: A Python package for interactive mapping and geospatial analysis with minimal coding in a Jupyter environment,giswqs,2022-12-18,2022-12-11,2021-03-10,92,14.787365177195685,19,3,5,"['germanaerospacecenter(dlr)', 'naxa', 'universityoftennessee']",,5.79,40,37,22,0,42,35,42,40.0,85.0,90.0,2.1,4,44.67672 -267,nlp,https://github.com/arxiv-vanity/arxiv-vanity,,,,arxiv-vanity/arxiv-vanity,arxiv-vanity,1366,87,22,"['latex', 'academic-publishing', 'science', 'arxiv']",Python,https://www.arxiv-vanity.com,arxiv-vanity: Renders papers from arXiv as responsive web pages so you don't have to squint at a PDF.,arxiv-vanity,2022-12-14,2022-01-18,2017-08-12,279,4.8910485933503836,9,1,5,['replicate'],,0.13,26,15,65,11,0,0,0,26.0,18.0,90.0,0.7,3,23.08011 -721,util,https://github.com/omry/omegaconf,,,,omry/omegaconf,omegaconf,1360,71,17,"['python', 'yaml', 'yaml-configuration', 'configuration-files', 'configuration-loader', 'python-types', 'schema-validator']",Python,,omegaconf: Flexible Python configuration system. The last one you will ever need.,omry,2022-12-16,2022-12-17,2018-09-03,224,6.071428571428571,28,3,5,"['ceph', 'facebook', 'facebookairesearch']",,2.33,51,35,52,0,4,4,4,51.0,34.0,90.0,0.7,58,45.53101 -298,crypto,https://github.com/blankly-finance/blankly,,,,blankly-finance/blankly,blankly,1357,173,28,"['cryptocurrency', 'bot-framework', 'investment', 'bots', 'bot', 'coinbase', 'binance', 'blankly', 'stocks', 'platform', 'framework', 'trading', 'trading-bot', 'trading-strategies', 'python', 'crypto', 'algotrading']",Python,https://package.blankly.finance,"blankly: 🚀 💸 Easily build, backtest and deploy your algo in just a few lines of code. Trade stocks, cryptos, and forex across exchanges w/ one package.",blankly-finance,2022-12-17,2022-12-08,2021-03-09,92,14.613846153846154,16,2,5,"['amazonwebservices', 'student']",,10.13,16,10,22,0,5,15,5,16.0,29.0,90.0,1.8,4,39.07736 -613,testing,https://github.com/pytest-dev/pytest-cov,,,,pytest-dev/pytest-cov,pytest-cov,1356,190,34,"['pytest', 'python']",Python,,pytest-cov: Coverage plugin for pytest.,pytest-dev,2022-12-18,2022-12-03,2014-04-17,452,2.996212121212121,81,2,5,"['freelancer,upforhire', 'nordsoftware']",,0.73,39,18,106,1,0,5,5,39.0,78.0,90.0,2.0,6181,56.35296 -478,ml-dl,https://github.com/tensorflow/mesh,,,,tensorflow/mesh,mesh,1344,235,44,[],Python,,Mesh TensorFlow: Model Parallelism Made Easier,tensorflow,2022-12-15,2022-10-04,2018-09-20,221,6.065764023210832,48,2,5,"['google', 'uncandhuggingface']",,0.13,1,1,52,3,0,1,1,1.0,1.0,90.0,1.0,40,34.48272 -318,gamedev,https://github.com/pythonarcade/arcade,1.0,,,pythonarcade/arcade,arcade,1343,252,56,"['python3', 'python', 'arcade-framework', 'arcade-api', 'arcade-learning-environment', 'opengl', 'educational-technology', 'educational-resources']",Python,http://arcade.academy,arcade: Easy to use Python library for creating 2D arcade games.,pythonarcade,2022-12-17,2022-12-18,2016-01-04,363,3.6997245179063363,131,4,5,"['freelance,opentofull-timeemployment', 'optimizely', 'vw-dilab', 'zetta.io']",,15.96,135,102,85,0,0,18,18,135.0,153.0,90.0,1.1,112,60.60646 -460,nlp,https://github.com/google-research/language,,,,google-research/language,language,1339,311,65,"['natural-language-processing', 'machine-learning', 'research']",Python,https://ai.google/research/teams/language/,language: Shared repository for open-sourced projects from the Google AI Language team.,google-research,2022-12-16,2022-12-16,2018-10-16,217,6.146229508196721,10,3,5,"['google', 'googleresearch', 'universityofwashington']",,0.1,16,3,51,0,0,0,0,16.0,3.0,90.0,0.2,20,32.42777 -876,study,https://github.com/rasbt/machine-learning-book,,,,rasbt/machine-learning-book,machine-learning-book,1332,496,27,"['machine-learning', 'scikit-learn', 'deep-learning', 'neural-networks', 'pytorch']",Jupyter Notebook,https://sebastianraschka.com/books/#machine-learning-with-pytorch-and-scikit-learn,machine-learning-book: Code Repository for Machine Learning with PyTorch and Scikit-Learn,rasbt,2022-12-18,2022-11-30,2021-12-19,52,25.545205479452054,9,2,5,"['google', 'lightning-ai,universityofwisconsin-madison']",,2.19,31,23,12,1,2,2,2,31.0,31.0,90.0,1.0,10,32.10811 -659,ml,https://github.com/tensorly/tensorly,,,,tensorly/tensorly,tensorly,1331,261,45,"['machine-learning', 'tensor', 'decomposition', 'tensor-algebra', 'tensorly', 'tensor-learning', 'python', 'tensor-methods', 'pytorch', 'mxnet', 'jax', 'tensorflow', 'cupy', 'numpy', 'tensor-decomposition', 'tensor-factorization', 'tensor-regression', 'regression']",Python,http://tensorly.org,TensorLy: Tensor Learning in Python.,tensorly,2022-12-10,2022-12-12,2016-10-21,321,4.140888888888889,57,5,5,"['inria', 'nvidiaai', 'quansight', 'simulametropolitan', 'universityofcalifornia,losangeles']",,4.83,33,22,75,0,0,3,3,33.0,47.0,90.0,1.4,8377,60.62134 -898,ml-ops,https://github.com/hi-primus/optimus,,,,hi-primus/optimus,optimus,1325,223,41,"['spark', 'pyspark', 'data-wrangling', 'bigdata', 'big-data-cleaning', 'data-science', 'data-cleansing', 'data-cleaner', 'data-transformation', 'machine-learning', 'data-profiling', 'data-extraction', 'data-exploration', 'data-analysis', 'data-preparation', 'cudf', 'dask', 'dask-cudf', 'data-cleaning']",Python,https://hi-optimus.com,"optimus: :truck: Agile Data Preparation Workflows made easy with Pandas, Dask, cuDF, Dask-cuDF, Vaex and PySpark",hi-primus,2022-12-18,2022-10-17,2017-07-13,283,4.672544080604534,24,4,5,"['boitas', 'bumblebee', 'life', 'pyupio']",,4.33,22,16,66,2,13,23,13,22.0,8.0,90.0,0.4,7,41.24626 -317,gamedev,https://github.com/pyglet/pyglet,,,,pyglet/pyglet,pyglet,1318,248,29,"['pyglet', 'python', 'opengl', 'gamedev', 'scientific-visualization']",Python,http://pyglet.org,"pyglet is a cross-platform windowing and multimedia library for Python, for developing games and other visually rich applications.",pyglet,2022-12-18,2022-12-16,2019-06-09,184,7.1574864235841735,140,2,5,"['itv', 'tomtom-international']",,7.25,92,65,43,0,6,14,6,92.0,261.0,90.0,2.8,225,56.81863 -450,gis,https://github.com/jupyter-widgets/ipyleaflet,,,,jupyter-widgets/ipyleaflet,ipyleaflet,1316,348,61,"['jupyterlab-extension', 'leaflet', 'visualization', 'jupyter']",JavaScript,https://ipyleaflet.readthedocs.io,ipyleaflet: A Jupyter - Leaflet.js bridge,jupyter-widgets,2022-12-15,2022-10-27,2014-05-07,449,2.926302414231258,81,3,5,"['amazonwebservices', 'databricks', 'quantstack']",,1.98,40,22,105,2,4,9,4,40.0,72.0,90.0,1.8,13,46.28313 -877,time-series,https://github.com/alkaline-ml/pmdarima,,,,alkaline-ml/pmdarima,pmdarima,1290,223,36,"['arima', 'time-series', 'forecasting', 'forecasting-models', 'python', 'econometrics', 'pmdarima', 'machine-learning', 'sarimax']",Python,https://www.alkaline-ml.com/pmdarima,"pmdarima: A statistical library designed to fill the void in Python's time series analysis capabilities, including the equivalent of R's auto.arima function.",alkaline-ml,2022-12-17,2022-12-12,2017-03-30,298,4.320574162679426,22,4,5,"['chivalrysoftware', 'microsoft', 'sevcosecurity', 'toyota-connected']",,0.46,21,10,70,0,6,7,6,21.0,13.0,90.0,0.6,11,41.37331 -766,diffusion,https://github.com/divamgupta/stable-diffusion-tensorflow,,,,divamgupta/stable-diffusion-tensorflow,stable-diffusion-tensorflow,1288,172,19,[],Python,,stable-diffusion-tensorflow: Stable Diffusion in TensorFlow / Keras,divamgupta,2022-12-18,2022-11-22,2022-09-15,13,94.90526315789474,13,0,5,[],,1.79,56,34,3,1,0,0,0,56.0,94.0,90.0,1.7,4,23.08613 -676,gis,https://github.com/apache/incubator-sedona,,,,apache/incubator-sedona,incubator-sedona,1282,536,101,"['cluster-computing', 'spatial-sql', 'geospatial', 'spatial-analysis', 'spatial-query', 'scala', 'java', 'python']",Java,http://sedona.apache.org/,incubator-sedona: A cluster computing framework for processing large-scale geospatial data,apache,2022-12-18,2022-12-18,2015-04-24,399,3.209585121602289,91,4,5,"['bloomberg', 'grab', 'nttdata', 'wherobots']",,3.79,52,46,93,0,3,10,3,52.0,62.0,90.0,1.2,0,45.42157 -391,data,https://github.com/mchong6/jojogan,,,,mchong6/jojogan,JoJoGAN,1272,185,24,"['image-translation', 'gans', 'anime']",Jupyter Notebook,,Official PyTorch repo for JoJoGAN: One Shot Face Stylization,mchong6,2022-12-18,2022-02-05,2021-12-17,52,24.26158038147139,3,1,5,['huggingface'],,0.48,3,0,12,11,0,0,0,3.0,1.0,90.0,0.3,12,14.76421 -465,ml-dl,https://github.com/pytorch/torchrec,,,,pytorch/torchrec,torchrec,1254,206,24,"['pytorch', 'gpu', 'deep-learning', 'cuda', 'recommender-system', 'recommendation-system', 'sharding']",Python,,torchrec: Pytorch domain library for recommendation systems,pytorch,2022-12-18,2022-12-18,2021-07-12,75,16.72,132,3,5,"['facebook', 'facebookai', 'pytorch']",,15.67,312,272,17,0,5,4,5,312.0,699.0,90.0,2.2,568,59.54388 -514,data,https://github.com/agronholm/sqlacodegen,,,,agronholm/sqlacodegen,sqlacodegen,1243,194,20,[],Python,,sqlacodegen: Automatic model code generator for SQLAlchemy,agronholm,2022-12-16,2022-11-23,2016-12-28,311,3.9876260311640697,16,1,5,['nextdaysolutionsoy'],,1.04,20,8,73,1,0,3,3,20.0,50.0,90.0,2.5,3,35.19549 -581,ml-dl,https://github.com/alpa-projects/alpa,,,,alpa-projects/alpa,alpa,1234,138,20,"['deep-learning', 'machine-learning', 'compiler', 'distributed-training', 'high-performance-computing', 'alpa', 'jax', 'distributed-computing', 'llm', 'auto-parallelization']",Python,https://alpa.ai,alpa: Training and serving large-scale neural networks,alpa-projects,2022-12-18,2022-12-17,2021-02-22,95,12.989473684210527,26,3,5,"['carnegiemellonuniversity', 'pekinguniversity', 'ucberkeley']",,6.83,128,101,22,0,12,7,12,127.0,225.0,90.0,1.8,19,47.97136 -885,time-series,https://github.com/aistream-peelout/flow-forecast,,,,aistream-peelout/flow-forecast,flow-forecast,1231,209,20,"['deep-learning', 'pytorch', 'time-series-forecasting', 'time-series', 'transfer-learning', 'deep-neural-networks', 'transformer', 'forecasting', 'lstm', 'time-series-regression', 'state-of-the-art-models', 'anomaly-detection', 'time-series-analysis', 'hacktoberfest']",Python,https://flow-forecast.atlassian.net/wiki/spaces/FF/overview,"flow-forecast: Deep learning PyTorch library for time series forecasting, classification, and anomaly detection (originally for flood forecasting).",aistream-peelout,2022-12-17,2022-12-06,2019-08-15,174,7.051554828150572,14,1,5,['okratechnologies'],,3.37,35,26,41,0,6,11,6,35.0,29.0,90.0,0.8,61,40.68059 -372,gis,https://github.com/microsoft/torchgeo,,,,microsoft/torchgeo,torchgeo,1230,144,33,"['pytorch', 'torchvision', 'datasets', 'models', 'transforms', 'remote-sensing', 'deep-learning', 'earth-observation']",Python,https://torchgeo.rtfd.io,"TorchGeo: datasets, samplers, transforms, and pre-trained models for geospatial data",microsoft,2022-12-18,2022-12-17,2021-05-21,82,14.922010398613518,27,3,5,"['dronebase', 'microsoft', 'universityofillinoisaturbana-champaign']",,7.88,202,160,19,0,5,4,5,202.0,309.0,90.0,1.5,13,46.07121 -829,study,https://github.com/huggingface/diffusion-models-class,,,,huggingface/diffusion-models-class,diffusion-models-class,1220,97,61,[],Jupyter Notebook,,diffusion-models-class: Materials for the Hugging Face Diffusion Models Course,huggingface,2022-12-18,2022-12-15,2022-10-13,9,127.46268656716418,10,3,5,"['drcfsorg', 'huggingface', 'relx']",,1.31,27,25,2,0,0,0,0,27.0,38.0,90.0,1.4,0,25.81276 -178,nlp,https://github.com/explosion/spacy-models,,,,explosion/spacy-models,spacy-models,1217,275,48,"['spacy', 'nlp', 'natural-language-processing', 'machine-learning', 'models', 'machine-learning-models', 'statistical-models', 'spacy-models']",Python,https://spacy.io,spacy-models: 💫 Models for the spaCy Natural Language Processing (NLP) library,explosion,2022-12-16,2022-12-15,2017-03-14,300,4.045109211775879,14,3,5,"['cotonoha', 'explosion', 'founderexplosion']",,3.63,5,4,70,0,166,128,166,5.0,0.0,90.0,0.0,68,43.1726 -414,nlp,https://github.com/chrismattmann/tika-python,,,,chrismattmann/tika-python,tika-python,1215,223,37,"['tika-server', 'python', 'tika-python', 'tika-server-jar', 'parser-interface', 'parse', 'translation-interface', 'usc', 'text-extraction', 'mime', 'buffer', 'memex', 'text-recognition', 'detection', 'recognition', 'nlp', 'nlp-machine-learning', 'nlp-library', 'covid-19', 'extraction']",Python,,Tika-Python is a Python binding to the Apache Tika™ REST services allowing Tika to be called natively in the Python community.,chrismattmann,2022-12-14,2021-06-07,2014-06-26,442,2.7453195610071015,63,1,5,['nasa'],,0.0,10,2,103,19,0,2,2,10.0,14.0,90.0,1.4,37,33.54696 -474,nlp,https://github.com/neuralmagic/deepsparse,,,,neuralmagic/deepsparse,deepsparse,1196,73,37,"['ml', 'machinelearning', 'pytorch', 'tensorflow', 'onnx', 'deepsparse-engine', 'sparsified-models', 'sparsification-recipe', 'inference', 'computer-vision', 'object-detection', 'pruning', 'quantization', 'pretrained-models', 'nlp', 'auto-ml', 'cpus', 'yolov3', 'sparsification', 'cpu-inference-api']",Python,,deepsparse: Inference runtime offering GPU-class performance on CPUs and APIs to integrate ML into your application,neuralmagic,2022-12-18,2022-12-12,2020-12-14,105,11.39047619047619,29,1,5,['neuralmagic'],,6.83,179,159,24,0,12,13,12,179.0,111.0,90.0,0.6,0,37.86105 -435,data,https://github.com/sdv-dev/sdv,,,,sdv-dev/sdv,SDV,1187,189,40,"['synthetic-data', 'machine-learning', 'relational-datasets', 'multi-table', 'time-series', 'synthetic-data-generation', 'sdv', 'data-generation', 'generative-adversarial-network', 'gan', 'gans', 'deep-learning', 'generative-ai', 'generative-model']",Python,https://sdv.dev/SDV,"SDV: Synthetic Data Generation for tabular, relational and time series data.",sdv-dev,2022-12-18,2022-12-15,2018-05-11,240,4.937017231134878,41,2,5,"['precognit', 'pythiac']",,2.85,160,113,56,0,8,9,8,160.0,131.0,90.0,0.8,7,44.85376 -162,nlp,https://github.com/explosion/spacy-transformers,,,,explosion/spacy-transformers,spacy-transformers,1184,154,30,"['spacy', 'spacy-pipeline', 'spacy-extension', 'nlp', 'natural-language-processing', 'natural-language-understanding', 'pytorch', 'bert', 'google', 'pytorch-model', 'openai', 'language-model', 'machine-learning', 'huggingface', 'transfer-learning', 'xlnet', 'gpt-2']",Python,https://spacy.io/usage/embeddings-transformers,"spacy-transformers: 🛸 Use pretrained transformers like BERT, XLNet and GPT-2 in spaCy",explosion,2022-12-18,2022-12-16,2019-07-26,177,6.673107890499195,19,3,5,"['explosion&oxykodit', 'founderexplosion', 'indeedeng']",,0.58,14,12,41,0,5,11,5,14.0,5.0,90.0,0.4,14,38.14826 -264,data,https://github.com/collerek/ormar,,,,collerek/ormar,ormar,1182,61,15,"['orm', 'sqlalchemy', 'async-orm', 'python-orm', 'fastapi', 'pydantic', 'alembic', 'databases']",Python,https://collerek.github.io/ormar/,ormar: python async orm with fastapi in mind and pydantic validation,collerek,2022-12-16,2022-12-14,2020-08-02,124,9.521288837744533,30,3,5,"['kaizentech', 'leyantech', 'wheel-me']",,5.63,121,100,29,0,7,31,7,121.0,131.0,90.0,1.1,130,49.95899 -566,gis,https://github.com/gboeing/osmnx-examples,,,,gboeing/osmnx-examples,osmnx-examples,1179,434,54,"['street-networks', 'binder', 'jupyter-notebook', 'notebooks', 'urban-planning', 'city', 'cities', 'openstreetmap', 'network-analysis', 'transport', 'transportation', 'accessibility', 'urban-data-science', 'urban-analytics', 'public-transport', 'python', 'transit', 'urban-design']",Jupyter Notebook,https://github.com/gboeing/osmnx,"osmnx-examples: Usage examples, demos, and tutorials for OSMnx.",gboeing,2022-12-18,2022-12-15,2017-07-22,282,4.176619433198381,1,1,5,['universityofsoutherncalifornia'],,0.31,2,2,66,0,0,2,2,2.0,1.0,90.0,0.5,3,23.77454 -451,util,https://github.com/imageio/imageio,,,,imageio/imageio,imageio,1168,235,31,"['python', 'imageio', 'animated-gif', 'video', 'webcam-capture', 'scientific-formats', 'dicom']",Python,https://imageio.readthedocs.io,imageio: Python library for reading and writing image data,imageio,2022-12-17,2022-12-17,2013-05-04,502,2.3253697383390217,95,4,5,"['actions', 'independentsoftwareengineer', 'mongodb', 'usr-lab']",,2.46,52,36,117,0,26,7,26,52.0,155.0,90.0,3.0,2463,65.32585 -647,data,https://github.com/pytables/pytables,,,,pytables/pytables,PyTables,1163,236,59,[],Python,http://www.pytables.org,PyTables: A Python package to manage extremely large amounts of data,pytables,2022-12-15,2022-12-16,2011-06-03,602,1.9305193265354517,110,2,5,"['coornhertgymnasium', 'francescalted']",,4.96,36,22,141,0,1,4,1,36.0,105.0,90.0,2.9,132,53.64475 -304,nlp,https://github.com/featureform/embeddinghub,,,,featureform/embeddinghub,featureform,1162,42,12,"['machine-learning', 'data-science', 'vector-database', 'embeddings-similarity', 'embeddings', 'hacktoberfest', 'feature-store', 'mlops', 'data-quality', 'feature-engineering', 'ml', 'python']",Go,https://www.featureform.com,featureform: The Virtual Feature Store. Turn your existing data infrastructure into a feature store.,featureform,2022-12-16,2022-12-07,2020-10-16,113,10.244332493702771,18,1,5,['featureform'],,47.98,124,103,26,0,6,4,6,124.0,103.0,90.0,0.8,9,42.88447 -494,ml-dl,https://github.com/hysts/pytorch_image_classification,,,,hysts/pytorch_image_classification,pytorch_image_classification,1159,289,27,"['pytorch', 'computer-vision', 'cifar10', 'fashion-mnist', 'imagenet']",Python,,pytorch_image_classification: PyTorch implementation of image classification models for CIFAR-10/CIFAR-100/MNIST/FashionMNIST/Kuzushiji-MNIST/ImageNet,hysts,2022-12-17,2021-12-12,2017-12-09,262,4.418845315904139,1,0,5,[],,0.0,0,0,61,12,0,0,0,0.0,0.0,90.0,0.0,0,5.74707 -725,typing,https://github.com/patrick-kidger/torchtyping,,,,patrick-kidger/torchtyping,torchtyping,1153,27,13,"['tensors', 'named-tensors', 'shape', 'pytorch', 'typing', 'python-typing']",Python,,"torchtyping: Type annotations and dynamic checking for a tensor's shape, dtype, names, etc.",patrick-kidger,2022-12-14,2022-07-11,2021-03-28,90,12.79080824088748,6,3,5,"['avatarify', 'googlex', 'irtsaint-exupéry']",,0.04,4,1,21,5,0,0,0,4.0,10.0,90.0,2.5,2,24.3071 -862,jupyter,https://github.com/jupyter/nbgrader,,,,jupyter/nbgrader,nbgrader,1151,315,43,"['nbgrader', 'jupyter', 'jupyter-notebook', 'jupyterhub', 'teaching', 'grading']",Python,https://nbgrader.readthedocs.io/,nbgrader: A system for assigning and grading notebooks,jupyter,2022-12-17,2022-11-30,2014-09-13,431,2.6687644915534947,98,1,5,['quantstack'],,3.96,67,24,101,2,7,3,7,67.0,135.0,90.0,2.0,74,48.72421 -636,util,https://github.com/pygments/pygments,,,,pygments/pygments,pygments,1148,484,27,"['python', 'syntax-highlighting']",Python,http://pygments.org/,Pygments is a generic syntax highlighter written in Python,pygments,2022-12-18,2022-12-15,2019-08-31,172,6.66334991708126,757,3,5,"['amd', 'fzjülich', 'google']",,7.58,133,67,40,0,5,17,5,133.0,184.0,90.0,1.4,7530,67.10478 -489,gis,https://github.com/scitools/cartopy,,,,scitools/cartopy,cartopy,1145,333,55,"['cartopy', 'matplotlib', 'python', 'geometry', 'maps', 'spatial', 'projections']",Python,https://scitools.org.uk/cartopy/docs/latest,Cartopy - a cartographic python library with matplotlib support,scitools,2022-12-18,2022-12-14,2012-08-03,541,2.1147757255936677,118,3,5,"['lasp/lasp/swxtrec', 'metoffice', 'ucar/unidata']",,1.4,46,26,126,0,4,4,4,46.0,135.0,90.0,2.9,284,56.97742 -194,web,https://github.com/jordaneremieff/mangum,,,,jordaneremieff/mangum,mangum,1144,78,16,"['asgi', 'aws', 'lambda', 'serverless', 'python', 'asyncio', 'api-gateway', 'starlette', 'fastapi', 'quart', 'django', 'sanic', 'aws-lambda', 'python3']",Python,https://mangum.io/,mangum: AWS Lambda support for ASGI applications,jordaneremieff,2022-12-18,2022-11-27,2019-01-14,205,5.580487804878048,29,2,5,"['resurety', 'tractabletractableai']",,0.56,11,8,48,1,8,15,8,11.0,14.0,90.0,1.3,16,39.15951 -338,perf,https://github.com/tlkh/asitop,,,,tlkh/asitop,asitop,1142,69,14,"['cpu', 'gpu', 'cli', 'macos', 'm1', 'apple-silicon']",Python,https://tlkh.github.io/asitop/,asitop: Perf monitoring CLI tool for Apple Silicon,tlkh,2022-12-18,2022-08-20,2021-10-27,59,19.124401913875598,8,1,5,['singaporeuniversityoftechnologyanddesign'],,0.27,13,3,14,4,0,0,0,13.0,65.0,90.0,5.0,0,22.95553 -16,perf,https://github.com/eventlet/eventlet,,,,eventlet/eventlet,eventlet,1139,295,62,"['python', 'concurrency', 'network', 'c10k', 'greenlet', 'production-ready']",Python,https://eventlet.net,eventlet: Concurrent networking library for Python,eventlet,2022-12-08,2022-11-17,2012-12-11,522,2.178415300546448,181,0,5,[],,0.15,18,5,122,1,0,5,5,18.0,26.0,90.0,1.4,2749,49.06214 -403,perf,https://github.com/agronholm/anyio,,,,agronholm/anyio,anyio,1134,95,24,"['async-await', 'trio', 'asyncio', 'curio']",Python,,anyio: High level asynchronous concurrency and networking framework that works on top of either trio or asyncio,agronholm,2022-12-17,2022-12-14,2018-08-19,226,5.01452937460518,38,3,5,"['andrewjayichlabucsb', 'nextdaysolutionsoy', 'norisnetworkag']",,2.38,64,43,53,0,0,10,10,64.0,117.0,90.0,1.8,553,54.25376 -720,math,https://github.com/facebookresearch/theseus,,,,facebookresearch/theseus,theseus,1132,76,29,"['differentiable-optimization', 'robotics', 'embodied-ai', 'nonlinear-least-squares', 'pytorch', 'deep-learning', 'computer-vision', 'gauss-newton', 'levenberg-marquardt', 'implicit-differentiation', 'bilevel-optimization']",Python,,theseus: A library for differentiable nonlinear optimization,facebookresearch,2022-12-18,2022-12-16,2021-11-18,56,20.01010101010101,19,2,5,"['facebookairesearchfacebookresearch', 'metaai']",,4.25,107,84,13,0,5,7,5,107.0,64.0,90.0,0.6,0,34.4576 -802,util,https://github.com/open-telemetry/opentelemetry-python,,,,open-telemetry/opentelemetry-python,opentelemetry-python,1125,402,35,"['python', 'opentelemetry', 'tracecontext', 'correlationcontext', 'distributed-tracing', 'logging', 'metrics', 'sdk']",Python,https://opentelemetry.io,opentelemetry-python: OpenTelemetry Python API and SDK ,open-telemetry,2022-12-18,2022-12-09,2019-05-07,188,5.9568835098335855,172,4,5,"['google', 'lightstep', 'microsoftcorporation', 'signoz.io']",,5.42,206,128,44,0,11,14,11,206.0,374.0,90.0,1.8,128,59.19414 -545,ml,https://github.com/borealisai/advertorch,,,,borealisai/advertorch,advertorch,1119,178,27,"['pytorch', 'adversarial-examples', 'adversarial-example', 'adversarial-perturbations', 'adversarial-attacks', 'adversarial-machine-learning', 'adversarial-learning', 'robustness', 'toolbox', 'security', 'machine-learning', 'benchmarking']",Jupyter Notebook,,advertorch: A Toolbox for Adversarial Robustness Research,borealisai,2022-12-13,2022-05-29,2018-11-29,211,5.288993923024983,21,2,5,"['borealisai', 'ecopiaai']",,0.31,3,1,49,7,0,0,0,3.0,1.0,90.0,0.3,2,23.4038 -618,testing,https://github.com/pytest-dev/pytest-bdd,,,,pytest-dev/pytest-bdd,pytest-bdd,1102,186,54,[],Python,https://pytest-bdd.readthedocs.io/en/latest/,pytest-bdd: BDD library for the py.test runner,pytest-dev,2022-12-15,2022-12-14,2013-03-29,507,2.171734234234234,52,2,5,"['bruhinsoftware', 'fareharbor']",,4.33,38,28,118,0,2,10,2,38.0,63.0,90.0,1.7,232,51.7366 -396,web,https://github.com/neoteroi/blacksheep,,,,neoteroi/blacksheep,BlackSheep,1100,50,23,"['asyncio', 'server', 'http', 'asgi', 'blacksheep', 'python', 'http-server', 'rest', 'web', 'framework']",Python,https://www.neoteroi.dev/blacksheep/,BlackSheep: Fast ASGI web framework for Python,neoteroi,2022-12-14,2022-12-14,2018-11-22,212,5.174731182795699,10,0,5,[],,0.6,17,12,50,0,6,7,6,17.0,39.0,90.0,2.3,30,35.53396 -726,perf,https://github.com/omyyyy/pycom,,,,omyyyy/pycom,pycom,1094,21,17,[],C++,,"pycom: A Python compiler, down to native code, using C++",omyyyy,2022-12-16,2022-08-31,2022-07-16,22,49.08974358974359,6,2,5,"['marcelpetrick.it', 'universityofcalgary']",,1.71,2,1,5,4,1,2,1,2.0,1.0,90.0,0.5,0,17.10565 -900,ml,https://github.com/shankarpandala/lazypredict,,,,shankarpandala/lazypredict,lazypredict,1090,123,16,"['machine-learning', 'automl', 'regression', 'classification']",Python,,lazypredict: Lazy Predict help build a lot of basic models without much code and helps understand which models works better without any parameter tuning,shankarpandala,2022-12-18,2022-09-28,2019-11-16,161,6.758193091231178,18,5,5,"['appliedmaterials', 'fiolabs-internal', 'pyupio', 'streamlit', 'wildlife-studios']",,0.6,24,5,38,3,1,4,1,24.0,22.0,90.0,0.9,3,33.21855 -448,gis,https://github.com/pysal/pysal,1.0,,,pysal/pysal,pysal,1084,287,81,[],Jupyter Notebook,http://pysal.org/pysal,PySAL: Python Spatial Analysis Library Meta-Package,pysal,2022-12-18,2022-07-23,2013-02-19,512,2.113649025069638,77,3,5,"['centerforopengeographicalscience', 'geoda/asu', 'usgsastrogeology']",,0.65,2,2,120,5,5,3,5,2.0,6.0,90.0,3.0,1349,50.581 -656,web,https://github.com/magicstack/httptools,,,,magicstack/httptools,httptools,1082,69,40,[],Python,,httptools: Fast HTTP parser,magicstack,2022-12-13,2022-09-13,2016-04-25,347,3.118155619596542,13,2,5,"['edgedb', 'enix']",,0.12,3,1,81,3,2,2,2,3.0,6.0,90.0,2.0,245,38.21304 -798,data,https://github.com/jsonpickle/jsonpickle,,,,jsonpickle/jsonpickle,jsonpickle,1079,153,31,"['json', 'python', 'serialization', 'pickle', 'deserialization', 'objectstorage', 'bsd-3-clause']",Python,https://jsonpickle.github.io,"jsonpickle: Python library for serializing any arbitrary object graph into JSON. It can take almost any Python object and turn the object into JSON. Additionally, it can reconstitute the object back into Python.",jsonpickle,2022-12-18,2022-12-17,2009-12-10,679,1.587765398360311,68,4,5,"['3dhubs', 'equium-io', 'google', 'waltdisneyanimationstudios']",,2.25,29,22,159,0,0,3,3,29.0,56.0,90.0,1.9,170,54.09076 -771,data,https://github.com/google/tensorstore,,,,google/tensorstore,tensorstore,1074,79,30,[],C++,https://google.github.io/tensorstore/,tensorstore: Library for reading and writing large multi-dimensional arrays.,google,2022-12-15,2022-12-15,2020-03-30,142,7.563380281690141,10,1,5,['google'],,5.65,35,23,33,0,0,11,11,35.0,195.0,90.0,5.6,29,45.11251 -417,pandas,https://github.com/pyjanitor-devs/pyjanitor,1.0,,,pyjanitor-devs/pyjanitor,pyjanitor,1070,160,21,"['pandas', 'dataframe', 'data', 'cleaning-data', 'data-engineering', 'pydata', 'hacktoberfest']",Python,https://pyjanitor-devs.github.io/pyjanitor,pyjanitor: Clean APIs for data cleaning. Python implementation of R package Janitor,pyjanitor-devs,2022-12-18,2022-11-30,2018-03-04,250,4.2775556824671614,106,3,5,"['amdi', 'datajanitor', 'springdiscovery']",,2.77,81,60,58,1,2,10,2,81.0,193.0,90.0,2.4,2,45.27839 -651,profiling,https://github.com/p403n1x87/austin,,,,p403n1x87/austin,austin,1065,35,14,"['python', 'profiling', 'performance', 'debugging-tools']",C,,austin: Python frame stack sampler for CPython,p403n1x87,2022-12-18,2022-10-28,2018-09-20,221,4.806576402321083,7,3,5,"['datadog', 'madalgo', 'microsoft']",,2.02,28,24,52,2,6,6,6,28.0,44.0,90.0,1.6,29,39.6474 -512,typing,https://github.com/agronholm/typeguard,,,,agronholm/typeguard,typeguard,1065,79,17,[],Python,,typeguard: Run-time type checker for Python,agronholm,2022-12-12,2022-10-11,2015-12-27,364,2.924676343664182,21,2,5,"['nextdaysolutionsoy', 'salesforce.org']",,0.35,10,4,85,2,0,6,6,10.0,6.0,90.0,0.6,265,40.9188 -626,viz,https://github.com/enthought/mayavi,,,,enthought/mayavi,mayavi,1060,264,93,[],Python,http://docs.enthought.com/mayavi/mayavi/,mayavi: 3D visualization of scientific data in Python,enthought,2022-12-16,2022-10-18,2011-01-24,621,1.7069243156199678,93,3,5,"['astrazenecauk', 'enthought', 'iitbombay']",,1.19,44,25,145,2,0,3,3,44.0,82.0,90.0,1.9,119,50.21249 -627,data,https://github.com/zarr-developers/zarr-python,,,,zarr-developers/zarr-python,zarr-python,1059,210,43,"['hacktoberfest', 'zarr', 'ndimensional-arrays', 'compressed', 'python']",Python,http://zarr.readthedocs.io/,"zarr-python: An implementation of chunked, compressed, N-dimensional arrays for Python.",zarr-developers,2022-12-17,2022-12-16,2015-12-15,365,2.8945724326434985,77,3,5,"['openmicroscopy', 'quansight-labs', 'weomesangerinstitute']",,3.62,207,115,85,0,12,11,12,207.0,692.0,90.0,3.3,75,57.87181 -619,testing,https://github.com/pytest-dev/pytest-asyncio,,,,pytest-dev/pytest-asyncio,pytest-asyncio,1056,116,35,[],Python,https://pytest-asyncio.readthedocs.io,pytest-asyncio: Asyncio support for pytest,pytest-dev,2022-12-17,2022-12-13,2015-04-11,401,2.6315414738341047,40,2,5,"['neu.ro', 'pocketzworld']",,3.27,80,66,94,0,15,5,15,80.0,80.0,90.0,1.0,2129,56.86242 -239,data,https://github.com/simonw/sqlite-utils,,,,simonw/sqlite-utils,sqlite-utils,1055,81,17,"['sqlite', 'python', 'datasette', 'sqlite-database', 'click', 'cli', 'datasette-io', 'datasette-tool']",Python,https://sqlite-utils.datasette.io,sqlite-utils: Python CLI utility and library for manipulating SQLite databases,simonw,2022-12-16,2022-12-10,2018-07-14,231,4.561457689932057,27,3,5,"['datasette', 'stanforduniversity', 'usatodaynetwork/glasseyemedia/homicidewatch']",,4.17,39,22,54,0,14,26,14,39.0,93.0,90.0,2.4,123,52.01717 -609,testing,https://github.com/pytest-dev/pytest-xdist,,,,pytest-dev/pytest-xdist,pytest-xdist,1045,185,46,"['hacktoberfest', 'pytest', 'pytest-plugin']",Python,https://pytest-xdist.readthedocs.io,pytest-xdist: pytest plugin for distributed testing and loop-on-failures testing modes. ,pytest-dev,2022-12-16,2022-12-13,2015-09-01,380,2.7438109527381846,86,4,5,"['esss', 'merlinux', 'nordsoftware', 'redhatinsights']",,1.25,56,37,89,0,0,8,8,56.0,128.0,90.0,2.3,1467,60.0196 -666,ml,https://github.com/huggingface/evaluate,,,,huggingface/evaluate,evaluate,1038,85,39,"['evaluation', 'machine-learning']",Python,https://huggingface.co/docs/evaluate,🤗 Evaluate: A library for easily evaluating machine learning models and datasets.,huggingface,2022-12-18,2022-12-13,2022-03-30,37,27.522727272727273,111,2,5,"['huggingface', 'huggingfaceaiinnova']",,8.37,117,82,9,0,8,11,8,117.0,290.0,90.0,2.5,644,55.06746 -191,ml,https://github.com/awslabs/dgl-ke,,,,awslabs/dgl-ke,dgl-ke,1035,176,23,"['machine-learning', 'knowledge-graph', 'knowledge-graphs-embeddings', 'graph-learning', 'dgl']",Python,https://dglke.dgl.ai/doc/,"dgl-ke: High performance, easy-to-use, and scalable package for learning large-scale knowledge graph embeddings.",awslabs,2022-12-16,2022-11-18,2020-03-03,145,7.095984329089128,25,3,5,"['amazon', 'aws', 'kwai']",,0.1,16,8,34,1,0,1,1,16.0,20.0,90.0,1.2,0,31.0426 -817,ml-dl,https://github.com/calculatedcontent/weightwatcher,,,,calculatedcontent/weightwatcher,WeightWatcher,1033,94,29,[],Python,,WeightWatcher: The WeightWatcher tool for predicting the accuracy of Deep Neural Networks,calculatedcontent,2022-12-16,2022-12-13,2018-11-28,211,4.879217273954116,7,3,5,"['calculationconsulting', 'etalab', 'ozminerals']",,4.88,66,55,49,0,1,2,1,66.0,107.0,90.0,1.6,24,41.9066 -644,util,https://github.com/metachris/logzero,,,,metachris/logzero,logzero,1033,70,26,"['python', 'logging', 'logzero', 'logfiles']",Python,https://logzero.readthedocs.io,logzero: Robust and effective logging for Python 2 and 3.,metachris,2022-12-16,2021-03-17,2017-06-12,288,3.5868055555555554,12,3,5,"['canva', 'flashbots', 'pyupio']",,0.0,17,11,67,21,0,3,3,17.0,11.0,90.0,0.6,4,27.72223 -654,profiling,https://github.com/sumerc/yappi,,,,sumerc/yappi,yappi,1031,57,13,"['profilers', 'multi-threaded-applications', 'coroutine', 'asynchronous', 'python', 'asyncio', 'performance', 'profile', 'asgi', 'cpu', 'thread', 'gevent', 'greenlet', 'multithreading']",Python,,"yappi: Yet Another Python Profiler, but this time multithreading, asyncio and gevent aware.",sumerc,2022-12-18,2022-11-25,2009-10-07,688,1.4969923252437254,28,4,5,"['dara.network', 'mongodb', 'nutanix', 'redhat']",,0.65,11,8,161,1,2,0,2,11.0,13.0,90.0,1.2,404,47.42103 -449,gis,https://github.com/residentmario/geoplot,1.0,,,residentmario/geoplot,geoplot,1029,90,35,"['geospatial-visualization', 'geospatial-data', 'matplotlib', 'geopandas', 'spatial-analysis']",Python,https://residentmario.github.io/geoplot/index.html,geoplot: High-level geospatial data visualization library for Python.,residentmario,2022-12-14,2022-03-18,2016-06-29,337,3.046954314720812,5,2,5,"['quiltdata', 'udl-ai']",,0.31,3,1,79,9,2,3,2,3.0,4.0,90.0,1.3,18,28.11153 -580,util,https://github.com/lidatong/dataclasses-json,,,,lidatong/dataclasses-json,dataclasses-json,1024,114,9,"['dataclasses', 'json', 'python']",Python,,dataclasses-json: Easily serialize Data Classes to and from JSON,lidatong,2022-12-15,2022-08-14,2018-04-21,243,4.209042865531415,46,1,5,['quantenna'],,0.13,35,4,57,4,1,14,1,35.0,18.0,90.0,0.5,172,36.04185 -598,data,https://github.com/uber/fiber,,,,uber/fiber,fiber,995,113,21,"['python', 'distributed-computing', 'multiprocessing', 'sandbox', 'machine-learning']",Python,https://uber.github.io/fiber/,fiber: Distributed Computing for AI Made Simple,uber,2022-12-14,2021-03-15,2020-01-07,153,6.467038068709378,5,3,5,"['delltechnologies', 'litesgroup', 'nvidia']",,0.0,3,0,36,21,0,1,1,3.0,0.0,90.0,0.0,3,17.70687 -406,perf,https://github.com/pympler/pympler,,,,pympler/pympler,pympler,994,82,10,[],Python,,"pympler: Development tool to measure, monitor and analyze the memory behavior of Python objects in a running Python application.",pympler,2022-12-17,2022-07-24,2012-10-04,532,1.8664163090128756,29,2,5,"['ableton', 'finceptiv']",,0.12,5,1,124,5,0,2,2,5.0,8.0,90.0,1.6,71,37.74797 -728,gis,https://github.com/geospatialpython/pyshp,,,,geospatialpython/pyshp,pyshp,987,258,64,[],Python,,pyshp: This library reads and writes ESRI Shapefiles in pure Python.,geospatialpython,2022-12-14,2022-07-28,2014-03-04,458,2.1509962640099625,42,1,5,['geospatialpython.com'],,0.92,4,1,107,5,3,2,3,4.0,2.0,90.0,0.5,107,36.17278 -444,gis,https://github.com/toblerity/fiona,,,,toblerity/fiona,Fiona,983,190,49,"['python', 'gis', 'vector', 'gdal', 'ogr', 'cli', 'cython']",Python,https://fiona.readthedocs.io/,Fiona reads and writes geographic data files,toblerity,2022-12-18,2022-12-13,2011-12-31,572,1.717673489765352,64,2,5,"['gnsscience', 'planetlabs']",,1.4,58,42,134,0,6,10,6,58.0,109.0,90.0,1.9,115,52.10543 -739,pandas,https://github.com/machow/siuba,,,,machow/siuba,siuba,975,40,20,"['data-analysis', 'python', 'pandas', 'sql', 'dplyr']",Python,https://siuba.org,siuba: Python library for using dplyr like syntax with pandas and SQL,machow,2022-12-15,2022-11-16,2019-02-09,201,4.843860894251242,10,2,5,"['flatiron-school', 'rstudio']",,3.5,46,34,47,1,15,9,15,46.0,39.0,90.0,0.8,3,37.41449 -447,ml,https://github.com/csinva/imodels,,,,csinva/imodels,imodels,975,97,22,"['interpretability', 'machine-learning', 'data-science', 'artificial-intelligence', 'ml', 'ai', 'statistics', 'scikit-learn', 'python', 'optimal-classification-tree', 'rulefit', 'imodels', 'rule-learning', 'supervised-learning', 'explainable-ml', 'explainable-ai', 'rules', 'bayesian-rule-list']",Jupyter Notebook,https://csinva.io/imodels,"imodels: Interpretable ML package 🔍 for concise, transparent, and accurate predictive modeling (sklearn-compatible).",csinva,2022-12-15,2022-12-18,2019-07-04,180,5.399525316455696,15,2,5,"['berkeleyairesearchlab', 'seniorresearcher']",,3.0,16,14,42,0,11,8,11,16.0,23.0,90.0,1.4,25,42.45559 -707,util,https://github.com/brandon-rhodes/python-patterns,,,,brandon-rhodes/python-patterns,python-patterns,972,88,247,[],Python,,python-patterns: Source code behind the python-patterns.guide site by Brandon Rhodes,brandon-rhodes,2022-12-17,2021-01-05,2018-01-31,254,3.8160403813796973,4,1,5,['bccentreforexcellenceinhiv/aids'],,0.0,0,0,59,24,0,0,0,0.0,0.0,90.0,0.0,0,9.9945 -614,testing,https://github.com/teemu/pytest-sugar,,,,teemu/pytest-sugar,pytest-sugar,961,68,17,"['pytest', 'pytest-sugar', 'python', 'testing', 'pytest-plugin']",Python,,"pytest-sugar: a plugin for py.test that changes the default look and feel of py.test (e.g. progressbar, show tests that fail instantly)",teemu,2022-12-17,2022-12-11,2013-06-25,494,1.9419745958429562,45,4,5,"['adobe', 'falcony-io', 'freelancer,upforhire', 'wolt']",,0.83,54,48,115,0,0,1,1,54.0,94.0,90.0,1.7,303,52.32141 -482,gis,https://github.com/sentinel-hub/eo-learn,,,,sentinel-hub/eo-learn,eo-learn,949,276,50,"['machine-learning', 'eo-data', 'eo-research', 'python-package']",Python,,eo-learn: Earth observation processing framework for machine learning in Python,sentinel-hub,2022-12-13,2022-11-23,2018-05-31,237,3.994588093806374,49,4,5,"['eoresearchteamsinergise', 'google', 'sinergise', 'sinergisesentinel-hub']",,5.48,56,51,55,1,10,8,10,56.0,54.0,90.0,1.0,83,50.74665 -631,util,https://github.com/pyca/bcrypt,,,,pyca/bcrypt,bcrypt,945,134,29,['python'],Python,,bcrypt: Modern(-ish) password hashing for your software and your servers,pyca,2022-12-17,2022-12-13,2013-05-11,501,1.885152465089769,31,2,5,"['datadog', 'pioneervalleybooks']",,2.85,56,49,117,0,0,2,2,59.0,37.0,90.0,0.6,399,49.1552 -740,ml,https://github.com/koaning/scikit-lego,,,,koaning/scikit-lego,scikit-lego,936,99,18,"['scikit-learn', 'machine-learning', 'common-sense']",Python,https://scikit-lego.netlify.app,scikit-lego: Extra blocks for scikit-learn pipelines.,koaning,2022-12-14,2022-11-02,2019-01-21,204,4.588235294117647,56,3,5,"['explosion', 'm-gate', 'xcceleratedpydataamsterdam']",,0.48,28,17,48,2,5,8,5,28.0,77.0,90.0,2.8,19,44.04612 -633,util,https://github.com/pyca/pynacl,,,,pyca/pynacl,pynacl,936,219,28,"['cryptography', 'libsodium', 'nacl', 'python']",C,https://pynacl.readthedocs.io/,pynacl: Python binding to the Networking and Cryptography (NaCl) library,pyca,2022-12-11,2022-12-13,2013-02-22,512,1.8265960412601059,64,1,5,['datadog'],,0.48,9,7,120,0,0,2,2,9.0,14.0,90.0,1.6,169,45.61533 -271,crypto,https://github.com/man-c/pycoingecko,,,,man-c/pycoingecko,pycoingecko,933,245,32,"['python3', 'api-wrapper', 'api', 'wrapper', 'cryptocurrency', 'crypto', 'coingecko', 'python', 'nft', 'nfts']",Python,,pycoingecko: Python wrapper for the CoinGecko API,man-c,2022-12-18,2022-10-26,2018-08-24,225,4.138783269961977,14,0,5,[],,0.29,5,2,53,2,0,5,5,5.0,5.0,90.0,1.0,180,32.46167 -820,viz,https://github.com/facultyai/dash-bootstrap-components,,,,facultyai/dash-bootstrap-components,dash-bootstrap-components,930,201,21,"['bootstrap', 'plotly-dash', 'python', 'dashboards', 'r', 'julia']",JavaScript,https://dash-bootstrap-components.opensource.faculty.ai/,dash-bootstrap-components: Bootstrap components for Plotly Dash,facultyai,2022-12-15,2022-08-03,2018-09-21,221,4.2,29,2,5,"['facebook', 'facultyai']",,1.17,29,8,52,5,14,33,14,29.0,20.0,90.0,0.7,41,39.10263 -379,ml-interpretability,https://github.com/cdpierse/transformers-interpret,,,,cdpierse/transformers-interpret,transformers-interpret,924,81,16,"['nlp', 'machine-learning', 'natural-language-processing', 'explainable-ai', 'transformers', 'model-explainability', 'transformers-model', 'captum', 'deep-learning', 'neural-network', 'interpretability', 'computer-vision']",Jupyter Notebook,,transformers-interpret: Model explainability that works seamlessly with 🤗 transformers. Explain your transformers model in just 2 lines of code. ,cdpierse,2022-12-18,2022-11-17,2020-05-27,133,6.910256410256411,7,4,5,"['dfki/universitätdessaarlandes', 'mavenoid;omnimodular', 'oraikatechnologies', 'quantcopy']",,0.98,17,5,31,1,4,5,4,17.0,22.0,90.0,1.3,11,35.70152 -212,data,https://github.com/sfu-db/connector-x,1.0,,,sfu-db/connector-x,connector-x,919,66,23,"['rust', 'python', 'database', 'sql', 'dataframe']",Rust,https://sfu-db.github.io/connector-x/intro.html,connector-x: Fastest library to load data from DB to DataFrames in Rust and Python,sfu-db,2022-12-18,2022-12-08,2021-01-13,100,9.12482269503546,29,2,5,"['redhatofficial', 'sfu-db']",,5.38,68,33,23,0,5,3,5,68.0,79.0,90.0,1.2,20,43.09998 -236,sim,https://github.com/salesforce/ai-economist,1.0,,,salesforce/ai-economist,ai-economist,918,192,44,"['ai', 'ml', 'multi-agent', 'multi-agent-reinforcement-learning', 'deep-reinforcement-learning', 'reinforcement-learning-environments', 'simulation-framework', 'python-3', 'economics']",Python,https://www.einstein.ai/the-ai-economist,"ai-economist: Foundation is a flexible, modular, and composable framework to model socio-economic behaviors and dynamics with both agents and governments. This framework can be used in conjunction with reinforcement learning to learn optimal economic policies, as done by the AI Economist (https://www.einstein.ai/the-ai-economist).",salesforce,2022-12-18,2022-05-09,2020-07-02,128,7.14,8,2,5,"['apple', 'salesforceresearch']",,0.42,4,0,30,7,0,0,0,4.0,2.0,90.0,0.5,0,18.21195 -541,util,https://github.com/pdoc3/pdoc,,,,pdoc3/pdoc,pdoc,911,136,8,"['documentation', 'generator', 'documentation-generator', 'documentation-tool', 'documentation-dumper', 'api-documentation', 'python', 'python3', 'docs', 'docs-generator', 'docstrings', 'docstring', 'docstring-documentation', 'pdoc', 'hacktoberfest']",Python,https://pdoc3.github.io/pdoc/,pdoc: :snake: :arrow_right: :scroll: Auto-generate API documentation for Python projects,pdoc3,2022-12-18,2022-10-29,2019-01-02,206,4.407049067035246,58,1,5,['salesforce'],,0.1,15,10,48,2,0,12,12,15.0,13.0,90.0,0.9,183,41.90249 -251,ml-dl,https://github.com/tensorflow/similarity,,,,tensorflow/similarity,similarity,910,86,28,"['similarity-learning', 'metric-learning', 'similarity-search', 'nearest-neighbor-search', 'nearest-neighbors', 'deep-learning', 'tensorflow', 'contrastive-learning', 'machine-learning', 'unsupervised-learning', 'clustering', 'python', 'simclr', 'simclr2', 'barlow-twins', 'simsiam', 'cosine-similarity', 'knn']",Python,,similarity: TensorFlow Similarity is a python package focused on making similarity learning quick and easy.,tensorflow,2022-12-18,2022-12-02,2020-06-15,131,6.9465648854961835,23,1,5,['google'],,1.1,24,13,31,1,2,2,2,24.0,37.0,90.0,1.5,29,36.2382 -88,testing,https://github.com/taverntesting/tavern,,,,taverntesting/tavern,tavern,909,179,28,"['python', 'pytest', 'testing', 'test-automation', 'mqtt', 'http']",Python,https://taverntesting.github.io/,"tavern: A command-line tool and Python library and Pytest plugin for automated testing of RESTful APIs, with a simple, concise and flexible YAML-based syntax",taverntesting,2022-12-15,2022-12-15,2017-11-01,267,3.395410885805763,56,3,5,"['atlassian', 'forgerock', 'zalando']",,1.38,34,25,62,0,0,37,37,34.0,34.0,90.0,1.0,38,49.70886 -387,nlp,https://github.com/shivam5992/textstat,,,,shivam5992/textstat,textstat,892,144,17,"['python', 'textstat', 'readability', 'flesch-kincaid-grade', 'smog', 'flesch-reading-ease']",Python,https://textstat.org,"textstat: :memo: python package to calculate readability statistics of a text object - paragraphs, sentences, articles.",shivam5992,2022-12-18,2022-07-08,2014-06-18,443,2.0103026400515134,46,1,5,['tessian'],,0.1,4,3,104,5,1,2,1,4.0,5.0,90.0,1.2,19,33.24374 -622,util,https://github.com/pytoolz/cytoolz,,,,pytoolz/cytoolz,cytoolz,890,67,23,[],Python,,cytoolz: Cython implementation of Toolz: High performance functional utilities,pytoolz,2022-12-06,2022-11-06,2014-04-04,454,1.958503615215341,20,4,5,"['coiled', 'formerlyquantopian', 'lynkertechnologies', 'voltrondata']",,0.52,10,6,106,1,1,2,1,10.0,6.0,90.0,0.6,28,39.05177 -504,gis,https://github.com/anitagraser/movingpandas,,,,anitagraser/movingpandas,movingpandas,889,165,36,"['geopandas', 'trajectory', 'movement-data', 'trajectory-analysis', 'python', 'spatial-data-analysis']",Python,http://movingpandas.org,movingpandas: Implementation of Trajectory classes and functions built on top of GeoPandas,anitagraser,2022-12-14,2022-12-16,2018-12-16,209,4.2506830601092895,29,2,5,"['dtn', 'universityofliverpool']",,2.29,35,20,49,0,5,3,5,35.0,55.0,90.0,1.6,25,44.08245 -672,perf,https://github.com/markshannon/faster-cpython,,,,markshannon/faster-cpython,faster-cpython,888,21,83,[],,,faster-cpython: How to make CPython faster.,markshannon,2022-12-18,2020-10-28,2020-10-19,113,7.8584070796460175,4,2,5,"['colgateuniversity', 'microsoft']",,0.0,3,0,26,26,0,0,0,3.0,2.0,90.0,0.7,0,13.04516 -402,perf,https://github.com/tiangolo/asyncer,,,,tiangolo/asyncer,asyncer,886,40,14,"['python', 'async', 'asyncio', 'trio', 'anyio']",Python,https://asyncer.tiangolo.com/,"Asyncer, async and await, focused on developer experience.",tiangolo,2022-12-18,2022-12-16,2022-01-04,49,17.770773638968482,10,1,5,"['snok,intility']",,1.69,30,26,12,0,2,2,2,30.0,38.0,90.0,1.3,0,28.14501 -630,gis,https://github.com/pytroll/satpy,,,,pytroll/satpy,satpy,881,256,31,"['python', 'satellite', 'weather', 'hacktoberfest', 'dask', 'xarray', 'closember']",Python,http://satpy.readthedocs.org/en/latest/,satpy: Python package for earth-observing satellite data processing,pytroll,2022-12-14,2022-12-15,2016-02-09,357,2.46187624750499,132,4,5,"['deutscherwetterdienst', 'dwd', 'smhi', 'spacescienceandengineeringcenter(ssec)']",,21.56,174,107,83,0,6,12,6,174.0,595.0,90.0,3.4,12,58.74132 -219,template,https://github.com/tezromach/python-package-template,1.0,,,tezromach/python-package-template,python-package-template,873,85,6,"['python', 'cookiecutter', 'best-practices', 'semantic-versions', 'python-packages', 'codestyle', 'formatters', 'makefile', 'poetry', 'template']",Python,,python-package-template: 🚀 Your next Python package needs a bleeding-edge project structure.,tezromach,2022-12-18,2022-05-18,2020-04-15,139,6.248466257668712,13,0,5,[],,0.02,111,71,33,7,0,8,8,111.0,73.0,90.0,0.7,18,28.5387 -750,data,https://github.com/pytorch/data,,,,pytorch/data,data,870,102,25,[],Python,,data: A PyTorch repo for data loading and utilities to be shared by the PyTorch domain libraries.,pytorch,2022-12-17,2022-12-16,2021-05-12,83,10.392491467576791,60,2,5,"['facebook', 'quansight']",,6.5,194,146,20,0,5,7,5,194.0,491.0,90.0,2.5,1663,56.54724 -341,term,https://github.com/jquast/blessed,,,,jquast/blessed,blessed,867,67,24,"['terminal', 'curses', 'cli']",Python,http://pypi.python.org/pypi/blessed,"Blessed is an easy, practical library for making python terminal apps",jquast,2022-12-14,2022-09-27,2014-03-01,459,1.8877138413685848,24,2,5,"['dalibo', 'mozilla']",,0.1,7,2,107,3,1,6,1,7.0,10.0,90.0,1.4,11,34.1321 -392,pandas,https://github.com/tkrabel/bamboolib,,,,tkrabel/bamboolib,bamboolib,858,93,31,"['pandas', 'pandas-dataframes', 'jupyter-notebook', 'jupyterlab', 'python']",Jupyter Notebook,https://bamboolib.com,bamboolib - a GUI for pandas DataFrames,tkrabel,2022-12-18,2022-09-27,2019-05-29,185,4.62,4,3,5,"['8080labs', 'bamboolib', 'databricks']",,0.21,0,0,43,3,0,0,0,0.0,0.0,90.0,0.0,8,21.39437 -204,debug,https://github.com/alexmojaki/snoop,,,,alexmojaki/snoop,snoop,856,29,16,"['python', 'debugging', 'debugger', 'debugging-tools', 'logging']",Python,,"snoop: A powerful set of Python debugging tools, based on PySnooper",alexmojaki,2022-12-17,2022-12-05,2019-05-13,188,4.553191489361702,22,1,5,['google'],,0.15,6,2,44,0,0,1,1,6.0,15.0,90.0,2.5,5,33.50711 -700,perf,https://github.com/intel/scikit-learn-intelex,,,,intel/scikit-learn-intelex,scikit-learn-intelex,854,136,28,"['oneapi', 'scikit-learn', 'machine-learning-algorithms', 'data-analysis', 'machine-learning', 'python', 'swrepo', 'ai-machine-learning', 'big-data', 'analytics', 'ai-training', 'ai-inference', 'gpu', 'intel']",Python,https://intel.github.io/scikit-learn-intelex/,scikit-learn-intelex: Intel(R) Extension for Scikit-learn is a seamless way to speed up your Scikit-learn application,intel,2022-12-18,2022-12-18,2018-08-07,227,3.747962382445141,62,2,5,"['intel', 'intelcorporation']",,1.63,118,82,53,0,3,5,3,118.0,80.0,90.0,0.7,0,39.34588 -772,nlp,https://github.com/huggingface/setfit,,,,huggingface/setfit,setfit,850,74,15,"['few-shot-learning', 'nlp', 'sentence-transformers']",Python,,setfit: Efficient few-shot learning with Sentence Transformers,huggingface,2022-12-18,2022-12-17,2022-06-30,24,34.593023255813954,29,3,5,"['huggingface', 'nervanasystems', 'telekom']",,5.46,187,132,6,0,7,18,7,187.0,415.0,90.0,2.2,2,41.75848 -347,nlp,https://github.com/norskregnesentral/skweak,,,,norskregnesentral/skweak,skweak,847,67,27,"['weak-supervision', 'nlp-machine-learning', 'distant-supervision', 'nlp-library', 'spacy', 'python', 'data-science', 'training-data', 'natural-language-processing']",Python,,skweak: A software toolkit for weak supervision applied to NLP tasks,norskregnesentral,2022-12-12,2022-11-08,2021-03-16,91,9.220839813374806,11,4,5,"['norwegiancomputingcentre', 'palinode', 'universityofoslo', 'universityofthebasquecountryupv/ehu']",,0.46,7,5,21,1,1,1,1,7.0,5.0,90.0,0.7,13,32.18198 -628,data,https://github.com/intake/intake,,,,intake/intake,intake,844,125,41,"['python', 'data-access', 'data-catalog']",Python,https://intake.readthedocs.io/,"Intake is a lightweight package for finding, investigating, loading and disseminating data.",intake,2022-12-12,2022-12-02,2017-08-14,279,3.025089605734767,79,3,5,"['anaconda', 'azavea', 'brookhavennationallab']",,0.98,22,14,65,1,0,7,7,22.0,41.0,90.0,1.9,392,51.62392 -484,gis,https://github.com/sentinelsat/sentinelsat,,,,sentinelsat/sentinelsat,sentinelsat,836,225,59,"['sentinel', 'copernicus', 'esa', 'remote-sensing', 'satellite-imagery', 'geographic-data', 'open-data', 'hacktoberfest']",Python,https://sentinelsat.readthedocs.io,sentinelsat: Search and download Copernicus Sentinel satellite images,sentinelsat,2022-12-15,2022-11-03,2015-05-22,395,2.1141618497109826,42,3,5,"['deloitte', 'developmentseed', 'milremrobotics']",,0.15,9,4,92,2,1,3,1,9.0,45.0,90.0,5.0,7,41.12421 -697,data,https://github.com/scholarly-python-package/scholarly,,,,scholarly-python-package/scholarly,scholarly,834,250,24,"['scholar', 'googlescholar', 'scholarly-articles', 'scholarly-communications', 'python3', 'python-3', 'python', 'citation-network', 'citation-analysis', 'citations', 'citation-index', 'publication-data']",Python,https://scholarly.readthedocs.io/,"scholarly: Retrieve author and publication information from Google Scholar in a friendly, Pythonic way without having to worry about CAPTCHAs!",scholarly-python-package,2022-12-17,2022-12-18,2014-12-02,419,1.986389928547125,43,3,5,"['newyorkuniversity', 'princetonuniversity', 'universityofalberta']",,1.44,28,24,98,0,11,7,11,28.0,68.0,90.0,2.4,3,46.70889 -639,ml,https://github.com/dask/dask-ml,,,,dask/dask-ml,dask-ml,833,236,40,['hacktoberfest'],Python,http://ml.dask.org,dask-ml: Scalable Machine Learning with Dask,dask,2022-12-15,2022-10-19,2017-06-15,287,2.8966716343765526,76,3,5,"['coiled', 'microsoft', 'voltrondata']",,0.21,22,3,67,2,2,7,2,22.0,28.0,90.0,1.3,68,42.99187 -445,gis,https://github.com/pyproj4/pyproj,,,,pyproj4/pyproj,pyproj,828,189,30,"['geospatial', 'python', 'coordinate-systems', 'coordinate-transformation', 'cartographic-projection', 'geodesic', 'hacktoberfest']",Python,https://pyproj4.github.io/pyproj,pyproj: Python interface to PROJ (cartographic projections and coordinate transformations library),pyproj4,2022-12-16,2022-12-16,2014-12-29,416,1.9903846153846154,58,1,5,['corteva'],,2.6,56,40,97,0,7,8,7,56.0,144.0,90.0,2.6,523,53.82472 -468,ml,https://github.com/huggingface/optimum,,,,huggingface/optimum,optimum,825,105,39,"['onnx', 'pytorch', 'inference', 'training', 'intel', 'graphcore', 'onnxruntime', 'transformers', 'quantization', 'habana', 'optimization']",Python,https://huggingface.co/docs/optimum/,optimum: 🏎️ Accelerate training and inference of 🤗 Transformers with easy to use hardware optimization tools,huggingface,2022-12-17,2022-12-16,2021-07-20,73,11.170212765957446,37,1,5,['huggingface'],,6.21,260,187,17,0,12,12,12,260.0,642.0,90.0,2.5,679,52.95176 -887,sim,https://github.com/pyscf/pyscf,,,,pyscf/pyscf,pyscf,823,439,75,[],Python,,pyscf: Python module for quantum chemistry,pyscf,2022-12-17,2022-12-14,2014-05-02,450,1.8271487472248653,137,2,5,"['simuneatomisticss.l.', 'theohiostateuniversity']",,5.52,148,70,105,0,2,8,2,148.0,217.0,90.0,1.5,660,57.52678 -712,ml,https://github.com/google-research/deeplab2,,,,google-research/deeplab2,deeplab2,820,138,20,[],Python,,"DeepLab2 is a TensorFlow library for deep labeling, aiming to provide a unified and state-of-the-art TensorFlow codebase for dense pixel labeling tasks.",google-research,2022-12-18,2022-11-05,2021-05-12,83,9.795221843003413,11,1,5,['johnshopkinsuniversity'],,0.83,24,6,20,1,0,0,0,24.0,44.0,90.0,1.8,3,27.48424 -850,util,https://github.com/wolph/python-progressbar,,,,wolph/python-progressbar,python-progressbar,795,95,22,"['python', 'progressbar', 'progress-bar', 'rate', 'eta', 'percentage', 'console', 'terminal', 'time', 'progress', 'bar', 'cli', 'gui', 'library']",Python,http://progressbar-2.readthedocs.org/en/latest/,"python-progressbar: Progressbar 2 - A progress bar for Python 2 and Python 3 - ""pip install progressbar2""",wolph,2022-12-18,2022-12-08,2012-02-20,565,1.407079646017699,42,1,5,['cslab'],,1.13,14,11,132,0,4,9,4,14.0,45.0,90.0,3.2,381,50.05229 -395,web,https://github.com/emmett-framework/emmett,,,,emmett-framework/emmett,emmett,794,63,30,"['python', 'web-framework', 'asgi', 'asyncio', 'emmett']",Python,,emmett: The web framework for inventors,emmett-framework,2022-12-10,2022-11-24,2014-10-20,426,1.863849765258216,21,3,5,"['cashbee-team', 'lawstudent', 'ostrovok.ru']",,1.83,8,5,99,1,14,14,14,8.0,0.0,90.0,0.0,12,38.89607 -490,viz,https://github.com/luispedro/mahotas,,,,luispedro/mahotas,mahotas,788,149,47,"['computer-vision', 'numpy', 'python', 'c-plus-plus', 'python-2', 'python-3']",Python,https://mahotas.rtfd.io,mahotas: Computer Vision in Python,luispedro,2022-12-17,2022-11-14,2010-01-31,672,1.1723698193411265,32,2,5,"['fudanuniversity', 'theexclosure']",,0.15,3,0,157,1,1,4,1,3.0,5.0,90.0,1.7,52,38.87971 -891,util,https://github.com/xl0/lovely-tensors,,,,xl0/lovely-tensors,lovely-tensors,788,11,6,"['deep-learning', 'library', 'pytorch', 'statistics', 'visualization']",Jupyter Notebook,https://xl0.github.io/lovely-tensors,"lovely-tensors: Tensors, ready for human consumption",xl0,2022-12-18,2022-12-18,2022-10-07,10,75.56164383561644,1,0,5,[],,1.48,14,8,2,0,0,79,79,14.0,80.0,90.0,5.7,0,23.49765 -226,sim,https://github.com/facebookresearch/droidlet,,,,facebookresearch/droidlet,fairo,785,80,38,[],Jupyter Notebook,,fairo: A modular embodied agent architecture and platform for building embodied agents,facebookresearch,2022-12-12,2022-12-02,2020-11-02,111,7.072072072072072,43,1,5,['facebookairesearch'],,9.77,41,27,26,1,0,0,0,41.0,86.0,90.0,2.1,108,42.38209 -351,ml,https://github.com/jina-ai/finetuner,,,,jina-ai/finetuner,finetuner,771,39,21,"['fine-tuning', 'pretrained-models', 'few-shot-learning', 'negative-sampling', 'metric-learning', 'siamese-network', 'triplet-loss', 'transfer-learning', 'jina', 'neural-search', 'finetuning', 'similarity-learning']",Python,https://finetuner.jina.ai,finetuner: :dart: Task-oriented finetuning for better embeddings on neural search,jina-ai,2022-12-18,2022-12-15,2021-08-11,70,10.903030303030302,32,2,5,"['jina-ai', 'jinaai']",,4.73,99,89,16,0,12,24,12,99.0,117.0,90.0,1.2,0,39.18383 -738,perf,https://github.com/zerointensity/pointers.py,,,,zerointensity/pointers.py,pointers.py,766,9,3,"['python', 'pointers', 'python-pointers']",Python,https://pointers.zintensity.dev/,pointers.py: Bringing the hell of pointers to Python.,zerointensity,2022-12-08,2022-11-30,2022-03-09,40,18.814035087719297,7,1,5,['royalbankofcanada'],,3.21,3,3,9,1,6,8,6,3.0,3.0,90.0,1.0,2,25.84015 -810,data,https://github.com/neo4j/neo4j-python-driver,,,,neo4j/neo4j-python-driver,neo4j-python-driver,759,167,99,"['python', 'graph-database', 'driver', 'neo4j', 'database-driver', 'protocol', 'cypher', 'query-language', 'python3', 'binary-protocol']",Python,https://neo4j.com/docs/api/python-driver/current/,neo4j-python-driver: Neo4j Bolt driver for Python,neo4j,2022-12-18,2022-12-16,2015-05-05,397,1.9077199281867145,41,2,5,"['elastic', 'neo4j']",,2.94,80,75,93,0,17,14,17,80.0,48.0,90.0,0.6,74,50.11615 -146,util,https://github.com/zenodo/zenodo,,,,zenodo/zenodo,zenodo,752,225,38,"['zenodo', 'invenio', 'python', 'research-data-repository', 'research-data-management', 'flask', 'digital-library', 'open-science', 'open-access', 'scientific-publications', 'library-management', 'elasticsearch', 'postgresql', 'inveniosoftware']",Python,https://zenodo.org,zenodo: Research. Shared.,zenodo,2022-12-17,2022-12-12,2013-02-11,514,1.4630350194552528,65,3,5,"['cern', 'protonmail', 'skribble']",,1.52,66,36,120,0,0,42,42,66.0,44.0,90.0,0.7,150,54.24208 -658,util,https://github.com/rasbt/watermark,,,,rasbt/watermark,watermark,750,83,13,"['python', 'magic-extension', 'jupyter', 'ipython']",Python,,"watermark: An IPython magic extension for printing date and time stamps, version numbers, and hardware information",rasbt,2022-12-18,2022-09-13,2014-07-30,437,1.7134464751958225,17,4,5,"['brabantwater', 'capgeminiengineering', 'drivendata', 'lightning-ai,universityofwisconsin-madison']",,0.12,2,0,102,3,2,2,2,2.0,3.0,90.0,1.5,94,38.81583 -334,util,https://github.com/clarete/forbiddenfruit,,,,clarete/forbiddenfruit,forbiddenfruit,750,50,28,"['python', 'monkey-patching']",Python,https://clarete.li/forbiddenfruit/,forbiddenfruit: Patch built-in python objects,clarete,2022-12-15,2022-03-12,2013-04-03,506,1.480124048491683,15,2,5,"['bitdeli', 'django,djangolondon']",,0.0,3,1,118,14,0,1,1,3.0,1.0,90.0,0.3,0,21.91652 -791,sim,https://github.com/viblo/pymunk,1.0,,,viblo/pymunk,pymunk,733,179,21,"['python', 'physics-2d', 'library', 'pygame', 'pyglet', 'physics-engine', 'physics-simulation', 'python-library']",Python,http://www.pymunk.org,Pymunk is a easy-to-use pythonic 2d physics library that can be used whenever you need 2d rigid body physics from Python,viblo,2022-12-16,2022-12-05,2013-10-02,480,1.52481426448737,17,3,5,"['blksail', 'google', 'skamrahlitsolutions']",,1.02,7,7,112,0,2,3,2,7.0,18.0,90.0,2.6,22,43.4709 -634,profiling,https://github.com/csurfer/pyheat,,,,csurfer/pyheat,pyheat,733,41,13,"['profiling', 'python', 'heatmap', 'matplotlib']",Python,,pyheat: pprofile + matplotlib = Python program profiled as an awesome heatmap!,csurfer,2022-12-16,2021-09-18,2017-02-04,306,2.393190298507463,5,2,5,"['citrix', 'lyft']",,0.0,0,0,71,15,0,0,0,0.0,0.0,90.0,0.0,0,14.02954 -853,data,https://github.com/eliasdabbas/advertools,,,,eliasdabbas/advertools,advertools,732,158,33,"['marketing', 'advertising', 'adwords', 'python', 'digital-marketing', 'online-marketing', 'keywords', 'search-engine-marketing', 'twitter-api', 'search-engine-optimization', 'seo', 'serp', 'social-media', 'youtube', 'robots-txt', 'scrapy', 'seo-crawler', 'log-analysis', 'google-ads', 'logfile-parser']",Python,https://advertools.readthedocs.io,advertools - online marketing productivity and analysis tools,eliasdabbas,2022-12-18,2022-12-13,2017-05-14,292,2.5056234718826405,7,3,5,"['github', 'pyupio', 'themediasupermarket']",,2.17,19,16,68,0,0,6,6,19.0,32.0,90.0,1.7,71,44.27913 -828,sim,https://github.com/farama-foundation/gymnasium,,,,farama-foundation/gymnasium,Gymnasium,725,87,11,[],Python,https://gymnasium.farama.org,Gymnasium: A standard API for reinforcement learning and a diverse set of reference environments (formerly Gym),farama-foundation,2022-12-18,2022-12-18,2022-09-08,14,49.754901960784316,395,0,5,[],,8.46,208,170,3,0,5,20,5,208.0,322.0,90.0,1.5,4,40.96329 -291,pandas,https://github.com/stitchfix/hamilton,,,,stitchfix/hamilton,hamilton,719,36,21,"['python', 'pandas', 'dag', 'data-science', 'data-engineering', 'numpy', 'software-engineering', 'etl-framework', 'etl-pipeline', 'etl', 'feature-engineering', 'featurization', 'dataframe', 'stitch-fix', 'data-platform', 'hamilton', 'hamiltonian', 'machine-learning']",Python,https://hamilton-docs.gitbook.io/docs/,"hamilton: A scalable general purpose micro-framework for defining dataflows. You can use it to build dataframes, numpy matrices, python objects, ML models, etc.",stitchfix,2022-12-17,2022-12-18,2020-05-26,133,5.371398078975454,14,2,5,"['spothero', 'stitchfix']",,5.1,83,41,31,0,10,5,10,83.0,122.0,90.0,1.5,4,41.14727 -621,testing,https://github.com/wolever/parameterized,,,,wolever/parameterized,parameterized,713,94,18,[],Python,,Parameterized testing with any Python test framework,wolever,2022-12-16,2021-01-09,2012-03-10,562,1.2680386178861789,24,1,5,['sheertex'],,0.0,3,1,131,24,0,1,1,3.0,4.0,90.0,1.3,89,30.43729 -559,jupyter,https://github.com/vizzuhq/ipyvizzu,,,,vizzuhq/ipyvizzu,ipyvizzu,711,58,16,"['jupyter', 'jupyter-notebook', 'python', 'plotting', 'graphs', 'data-visualization', 'graphing', 'ipython', 'chart', 'charts', 'dataviz', 'animation', 'storytelling', 'charting', 'vizzu']",Python,https://ipyvizzu.vizzuhq.com,ipyvizzu: Build animated charts in Jupyter Notebook and in many other environments with a simple Python syntax.,vizzuhq,2022-12-18,2022-12-16,2022-01-05,49,14.301724137931034,10,2,5,"['oneidentity(balabit)', 'vizzuhq']",,9.17,22,13,12,0,18,18,18,22.0,16.0,90.0,0.7,11,38.20662 -358,data,https://github.com/hyperqueryhq/whale,,,,hyperqueryhq/whale,whale,711,40,42,"['data-documentation', 'data-catalog', 'data-discovery']",Python,https://rsyi.gitbook.io/whale,whale: 🐳 The stupidly simple CLI workspace for your data warehouse.,hyperqueryhq,2022-12-18,2022-10-13,2020-05-27,133,5.3173076923076925,17,3,5,"['dataframe', 'nttcommunications', 'shopify']",,0.17,6,3,31,2,0,10,10,6.0,3.0,90.0,0.5,0,29.16195 -419,util,https://github.com/sethmmorton/natsort,,,,sethmmorton/natsort,natsort,709,40,14,"['python', 'natural-sort', 'sorting-interface', 'sorting', 'natsort']",Python,https://pypi.org/project/natsort/,natsort: Simple yet flexible natural sorting in Python.,sethmmorton,2022-12-15,2022-09-01,2012-05-03,554,1.2784647089129315,20,4,5,"['dapulse', 'nordsoftware', 'pioneervalleybooks', 'siasol']",,0.37,3,1,129,4,0,6,6,3.0,3.0,90.0,1.0,178,41.81119 -23,math,https://github.com/fredrik-johansson/mpmath,,,,fredrik-johansson/mpmath,mpmath,707,148,40,"['python', 'arbitrary-precision', 'multiprecision', 'floating-point', 'special-functions', 'numerical-integration', 'numerical-methods', 'plotting', 'complex-numbers', 'ordinary-differential-equations', 'numerical-optimization']",Python,http://mpmath.org,mpmath: Python library for arbitrary-precision floating-point arithmetic,fredrik-johansson,2022-12-17,2022-11-07,2011-12-07,575,1.2280397022332505,47,2,5,"['inria&institutdemathématiquesdebordeaux', 'quansight']",,0.27,9,3,134,1,0,1,1,9.0,7.0,90.0,0.8,75,40.59987 -593,gis,https://github.com/matplotlib/basemap,,,,matplotlib/basemap,basemap,703,396,60,"['gis', 'maps', 'plots']",Python,,basemap: Plot on map projections (with coastlines and political boundaries) using matplotlib,matplotlib,2022-12-12,2022-11-29,2011-02-19,617,1.1388567461235826,69,2,5,"['eccc', 'germanaerospacecenter(dlr)']",,3.77,24,19,144,1,7,3,7,24.0,40.0,90.0,1.7,606,53.56031 -701,profiling,https://github.com/pythonspeed/filprofiler,,,,pythonspeed/filprofiler,filprofiler,700,21,9,"['python', 'memory-profiler', 'memory-profiling', 'memory-leak', 'memory-leaks', 'memory-leak-detection', 'memory-leak-finder', 'memory', 'memory-']",Rust,https://pythonspeed.com/products/filmemoryprofiler/,filprofiler: A Python memory profiler for data processing and scientific computing applications,pythonspeed,2022-12-17,2022-12-05,2020-06-18,130,5.361050328227571,6,3,5,"['algolia', 'hyphenatedenterprises', 'whalesalad']",,3.08,61,46,30,0,14,25,14,61.0,58.0,90.0,1.0,6,39.76851 -325,security,https://github.com/trailofbits/pip-audit,,,,trailofbits/pip-audit,pip-audit,696,44,19,"['security', 'security-audit', 'python', 'pip', 'supply-chain']",Python,https://pypi.org/project/pip-audit/,pip-audit: Audits Python environments and dependency trees for known vulnerabilities,trailofbits,2022-12-17,2022-12-15,2021-09-02,67,10.300211416490486,18,3,5,"['digitalr00ts', 'google', 'trailofbits']",,3.63,77,64,16,0,22,30,22,77.0,183.0,90.0,2.4,95,49.36054 -477,pandas,https://github.com/holoviz/hvplot,,,,holoviz/hvplot,hvplot,688,78,24,"['holoviz', 'holoviews', 'plotting', 'datashader']",Python,https://hvplot.holoviz.org,"hvplot: A high-level plotting API for pandas, dask, xarray, and networkx built on HoloViews",holoviz,2022-12-17,2022-12-13,2018-03-19,248,2.774193548387097,39,2,5,"['anaconda', 'azavea']",,2.21,269,74,58,0,3,22,3,269.0,239.0,90.0,0.9,10,43.91498 -360,ml-ops,https://github.com/tensorflow/data-validation,,,,tensorflow/data-validation,data-validation,686,144,48,[],Python,,data-validation: Library for exploring and validating machine learning data,tensorflow,2022-12-14,2022-12-16,2018-07-02,233,2.944206008583691,25,1,5,['google'],,2.98,19,13,54,0,7,9,7,19.0,26.0,90.0,1.4,572,47.28929 -168,gis,https://github.com/openeventdata/mordecai,,,,openeventdata/mordecai,mordecai,684,94,35,"['geoparsing', 'geonames', 'nlp', 'geocoding', 'spacy', 'toponym-resolution']",Python,,mordecai: Full text geoparsing as a Python library,openeventdata,2022-12-08,2021-02-01,2016-06-23,338,2.020253164556962,6,4,5,"['github', 'maxar', 'msupoliticalscience', 'phillymedia']",,0.0,2,0,79,23,0,1,1,2.0,2.0,90.0,1.0,4,24.04831 -572,gis,https://github.com/developmentseed/landsat-util,,,,developmentseed/landsat-util,landsat-util,681,155,125,[],Python,,"landsat-util: A utility to search, download and process Landsat 8 satellite imagery",developmentseed,2022-12-07,2018-07-30,2014-08-01,437,1.5568256041802744,24,4,5,"['cloud-gov(work)+personalprojects;', 'developmentseed', 'element84', 'ledgy']",,0.0,0,0,102,53,0,2,2,0.0,0.0,90.0,0.0,11,24.78902 -393,perf,https://github.com/klen/py-frameworks-bench,,,,klen/py-frameworks-bench,py-frameworks-bench,673,78,28,"['benchmark', 'python-frameworks']",Python,https://klen.github.io/py-frameworks-bench/,py-frameworks-bench: Another benchmark for some python frameworks,klen,2022-12-11,2022-03-14,2015-04-30,398,1.6885304659498208,10,2,5,"['get-post-technology', 'home']",,0.44,17,10,93,9,0,3,3,17.0,9.0,90.0,0.5,0,25.97893 -164,nlp,https://github.com/explosion/spacy-stanza,,,,explosion/spacy-stanza,spacy-stanza,662,50,25,"['nlp', 'natural-language-processing', 'machine-learning', 'data-science', 'spacy', 'spacy-pipeline', 'stanford-nlp', 'stanford-corenlp', 'stanford-machine-learning', 'corenlp', 'stanza']",Python,,spacy-stanza: 💥 Use the latest Stanza (StanfordNLP) research models directly in spaCy,explosion,2022-12-09,2022-05-27,2019-01-31,202,3.2679830747531735,7,3,5,"['founderexplosion', 'graphext', 'lt3kuleuven']",,0.06,0,0,47,7,1,4,1,0.0,0.0,90.0,0.0,0,18.27777 -483,gis,https://github.com/sentinel-hub/sentinelhub-py,,,,sentinel-hub/sentinelhub-py,sentinelhub-py,655,213,48,"['python-library', 'sentinel-hub', 'aws', 'ogc-services', 'satellite-imagery']",Python,http://sentinelhub-py.readthedocs.io/en/latest/,sentinelhub-py: Download and process satellite imagery in Python using Sentinel Hub services.,sentinel-hub,2022-12-11,2022-10-06,2017-05-17,291,2.2453476983349656,40,3,5,"['eoresearchteamsinergise', 'google', 'sinergise']",,3.83,29,27,68,2,12,9,12,29.0,18.0,90.0,0.6,335,49.08687 -818,ml,https://github.com/automl/tabpfn,,,,automl/tabpfn,TabPFN,654,44,15,[],Python,https://arxiv.org/abs/2207.01848,TabPFN: Official implementation of the TabPFN and the tabpfn package.,automl,2022-12-18,2022-12-09,2022-07-01,24,26.771929824561404,6,1,5,['automl.org'],,2.31,23,22,6,0,0,0,0,23.0,45.0,90.0,2.0,0,24.61015 -620,jupyter,https://github.com/nbqa-dev/nbqa,,,,nbqa-dev/nbqa,nbQA,646,36,7,"['python', 'jupyter-notebook', 'pre-commit', 'codequality', 'lint', 'isort', 'black', 'flake8', 'doctest', 'pyupgrade', 'pylint', 'mypy', 'yapf', 'pre-commit-hook']",Python,https://nbqa.readthedocs.io/en/latest/index.html,"nbQA: Run isort, pyupgrade, mypy, pylint, flake8, and more on Jupyter Notebooks",nbqa-dev,2022-12-15,2022-12-11,2020-07-11,127,5.075196408529742,22,1,5,['quansight'],,1.19,36,31,30,0,0,33,33,36.0,56.0,90.0,1.6,674,48.32703 -629,gis,https://github.com/makepath/xarray-spatial,,,,makepath/xarray-spatial,xarray-spatial,645,73,25,"['python', 'raster-analysis', 'spatial-analysis', 'numba', 'datashader', 'xarray']",Python,https://xarray-spatial.org,xarray-spatial: Raster-based Spatial Analytics for Python,makepath,2022-12-16,2022-06-22,2020-02-08,149,4.320574162679426,28,2,5,"['anaconda', 'makepath']",,1.52,82,14,35,6,5,13,5,82.0,11.0,90.0,0.1,12,33.40695 -882,time-series,https://github.com/winedarksea/autots,,,,winedarksea/autots,AutoTS,643,60,13,"['time-series', 'machine-learning', 'automl', 'autots', 'forecasting', 'deep-learning', 'preprocessing', 'feature-engineering']",Python,,AutoTS: Automated Time Series Forecasting,winedarksea,2022-12-17,2022-12-13,2019-11-26,159,4.022341376228776,1,0,5,[],,3.35,5,4,37,0,6,12,6,5.0,14.0,90.0,2.8,5,28.04128 -475,viz,https://github.com/holoviz/holoviz,1.0,,,holoviz/holoviz,holoviz,636,114,35,"['holoviz', 'holoviews', 'geoviews', 'datashader', 'panel', 'hvplot', 'colorcet']",Python,https://holoviz.org/,holoviz: High-level tools to simplify visualization in Python.,holoviz,2022-12-16,2022-12-07,2017-09-22,273,2.3260188087774294,21,2,5,"['anaconda', 'azavea']",,0.46,18,8,64,0,0,13,13,18.0,54.0,90.0,3.0,2,40.92725 -741,data,https://github.com/koaning/human-learn,,,,koaning/human-learn,human-learn,635,51,13,"['scikit-learn', 'machine-learning', 'benchmark']",Jupyter Notebook,https://koaning.github.io/human-learn/,human-learn: Natural Intelligence is still a pretty good idea.,koaning,2022-12-18,2021-10-05,2020-07-11,127,4.988776655443322,5,3,5,"['explosion', 'floryn', 'nttdatabusinesssolutions']",,0.0,0,0,30,15,0,0,0,0.0,0.0,90.0,0.0,0,13.37378 -344,data,https://github.com/scikit-hep/awkward-1.0,,,,scikit-hep/awkward-1.0,awkward,632,64,17,"['json', 'numpy', 'data-analysis', 'jagged-array', 'ragged-array', 'columnar-format', 'pandas', 'numba', 'apache-arrow', 'cern-root', 'scikit-hep', 'python']",Python,https://awkward-array.org,awkward: Manipulate JSON-like data with NumPy-like idioms.,scikit-hep,2022-12-17,2022-12-16,2019-08-14,174,3.617334423548651,35,2,5,"['princeton,iris-hep,pyhep,scikit-hep', 'purdueuniversity']",,10.04,362,309,41,0,42,61,42,362.0,923.0,90.0,2.5,26,53.68855 -637,util,https://github.com/samuelcolvin/python-devtools,,,,samuelcolvin/python-devtools,python-devtools,631,31,8,"['python-devtools', 'python', 'devtools']",Python,https://python-devtools.helpmanual.io/,python-devtools: Dev tools for python,samuelcolvin,2022-12-15,2022-11-28,2017-08-20,278,2.268618387262455,10,2,5,"['pydantic', 'pyupio']",,0.29,10,4,65,1,2,3,2,10.0,20.0,90.0,2.0,85,38.40232 -640,data,https://github.com/dask/fastparquet,,,,dask/fastparquet,fastparquet,624,161,18,['hacktoberfest'],Python,,fastparquet: python implementation of the parquet columnar file format.,dask,2022-12-13,2022-12-05,2015-11-06,371,1.68,86,4,5,"['anaconda', 'coiled', 'confluentinc', 'steminc']",,1.06,31,25,87,0,0,5,5,31.0,104.0,90.0,3.4,75,54.34131 -397,web,https://github.com/klen/muffin,,,,klen/muffin,muffin,621,25,31,"['python', 'asyncio', 'trio', 'asgi', 'webframework', 'muffin', 'curio']",Python,,"Muffin is a fast, simple and asyncronous web-framework for Python 3",klen,2022-10-28,2022-08-12,2015-02-03,410,1.5114742698191934,13,2,5,"['faceapp', 'home']",,0.15,0,0,96,4,0,42,42,0.0,0.0,90.0,0.0,14,30.93081 -849,util,https://github.com/fsspec/s3fs,,,,fsspec/s3fs,s3fs,621,208,21,['hacktoberfest'],Python,http://s3fs.readthedocs.io/en/latest/,s3fs: S3 Filesystem ,fsspec,2022-12-15,2022-12-12,2016-03-16,352,1.7606318347509113,108,5,5,"['anaconda', 'coiled', 'fal-ai', 'microsoft', 'voltrondata']",,0.88,30,17,82,0,0,8,8,30.0,77.0,90.0,2.6,58,54.7017 -760,study,https://github.com/jackhidary/quantumcomputingbook,,,,jackhidary/quantumcomputingbook,quantumcomputingbook,614,187,54,"['quantum', 'quantum-computing', 'cirq', 'qiskit', 'rigetti', 'quantum-processor', 'sycamore', 'quantum-supremacy', 'quantum-information', 'quantum-information-science', 'google-quantum']",Jupyter Notebook,,quantumcomputingbook: Companion site for the textbook Quantum Computing: An Applied Approach,jackhidary,2022-12-18,2021-10-14,2019-02-28,198,3.0920863309352518,8,1,5,['google'],,0.0,1,1,46,14,0,0,0,1.0,2.0,90.0,2.0,6,21.38058 -18,nlp,https://github.com/explosion/spacy-streamlit,,,,explosion/spacy-streamlit,spacy-streamlit,613,102,18,"['spacy', 'nlp', 'natural-language-processing', 'visualizers', 'dependency-parsing', 'part-of-speech-tagging', 'named-entity-recognition', 'ner', 'streamlit', 'visualizer', 'text-classification', 'word-vectors', 'tokenization', 'machine-learning']",Python,https://share.streamlit.io/ines/spacy-streamlit-demo/master/app.py,spacy-streamlit: 👑 spaCy building blocks and visualizers for Streamlit apps,explosion,2022-12-16,2022-08-23,2020-06-23,129,4.720572057205721,12,2,5,"['explosion', 'founderexplosion']",,0.56,1,0,30,4,2,4,2,1.0,1.0,90.0,1.0,0,23.08956 -839,util,https://github.com/idanya/algo-trader,,,,idanya/algo-trader,algo-trader,610,57,21,"['algorithmic-trading', 'backtesting', 'crypto-bot', 'python', 'technical-analysis', 'trading-bot', 'trading-strategies']",Python,,"algo-trader: Trading bot with support for realtime trading, backtesting, custom strategies and much more.",idanya,2022-12-18,2022-12-18,2021-09-14,65,9.262472885032539,4,2,5,"['fireblocks', ""scott'sdevelopment""]",,0.5,21,17,15,0,0,0,0,21.0,45.0,90.0,2.1,0,26.25988 -595,gis,https://github.com/uber/h3-py,,,,uber/h3-py,h3-py,601,113,34,"['uber', 'python', 'hexagonal-architecture', 'h3', 'geospatial', 'geocoding', 'gis']",Python,https://uber.github.io/h3-py,"h3-py: Python bindings for H3, a hierarchical hexagonal geospatial indexing system",uber,2022-12-18,2022-11-24,2018-06-12,235,2.548152634766808,16,3,5,"['alantech', 'softwareengineer,uber', 'unfoldedinc']",,0.52,22,14,55,1,4,5,4,22.0,50.0,90.0,2.3,149,44.47441 -680,util,https://github.com/lukasschwab/arxiv.py,,,,lukasschwab/arxiv.py,arxiv.py,588,76,16,"['arxiv', 'arxiv-api', 'python-wrapper', 'pdf']",Python,,arxiv.py: Python wrapper for the arXiv API,lukasschwab,2022-12-12,2022-09-12,2015-11-25,368,1.5947307245253777,13,0,5,[],,0.08,3,0,86,3,0,3,3,3.0,4.0,90.0,1.3,383,32.61201 -796,graph,https://github.com/westhealth/pyvis,,,,westhealth/pyvis,pyvis,582,109,13,"['network-visualization', 'python', 'networkx']",HTML,http://pyvis.readthedocs.io/en/latest/,pyvis: Python package for creating and visualizing interactive network graphs.,westhealth,2022-12-17,2022-11-04,2018-05-10,240,2.4192399049881237,31,2,5,"['westhealth', 'westhealthinstitute']",,0.58,37,12,56,1,3,1,3,37.0,28.0,90.0,0.8,24,38.9846 -505,gis,https://github.com/scikit-mobility/scikit-mobility,,,,scikit-mobility/scikit-mobility,scikit-mobility,573,130,29,"['data-science', 'data-analysis', 'human-mobility', 'complex-systems', 'network-science', 'statistics', 'scikit-mobility', 'mobility-analysis', 'risk-assessment', 'mobility-flows', 'synthetic-flows']",Python,https://scikit-mobility.github.io/scikit-mobility/,scikit-mobility: mobility analysis in Python,scikit-mobility,2022-12-16,2022-06-13,2019-04-30,189,3.018058690744921,21,2,5,"['argonnenationallaboratory', 'isti-cnr']",,1.67,10,1,44,6,2,2,2,10.0,3.0,90.0,0.3,20,30.83403 -117,nlp,https://github.com/iclrandd/blackstone,,,,iclrandd/blackstone,Blackstone,573,93,37,"['law', 'caselaw', 'nlp', 'spacy-models', 'legaltech']",Python,https://research.iclr.co.uk,Blackstone: :black_circle: A spaCy pipeline and model for NLP on unstructured legal text.,iclrandd,2022-11-27,2021-01-31,2019-03-25,195,2.9384615384615387,8,1,5,['theincorporatedcounciloflawreportingforenglandandwales'],,0.0,0,0,45,23,0,0,0,0.0,0.0,90.0,0.0,0,11.0666 -831,typing,https://github.com/python-attrs/cattrs,,,,python-attrs/cattrs,cattrs,570,82,15,"['attrs', 'deserialization', 'serialization']",Python,,cattrs: Complex custom class converters for attrs.,python-attrs,2022-12-16,2022-12-09,2016-08-28,329,1.7317708333333333,44,2,5,"['google', 'pocketzworld']",,2.77,33,18,77,0,0,4,4,33.0,90.0,90.0,2.7,73,49.46393 -752,diffusion,https://github.com/sharonzhou/long_stable_diffusion,,,,sharonzhou/long_stable_diffusion,long_stable_diffusion,569,44,13,[],Python,,"long_stable_diffusion: Long-form text-to-images generation, using a pipeline of deep generative models (GPT-3 and Stable Diffusion)",sharonzhou,2022-12-17,2022-10-30,2022-09-04,15,37.575471698113205,2,1,5,['stanford'],,0.44,3,2,4,2,0,0,0,3.0,1.0,90.0,0.3,0,11.13917 -808,web,https://github.com/s3rius/fastapi-template,,,,s3rius/fastapi-template,FastAPI-template,569,51,11,"['fastapi', 'cookiecutter', 'cookiecutter-template', 'cookiecutter-python3', 'sqlalchemy-orm', 'asynchronous', 'ormar', 'tortoise-orm', 'aerich', 'alembic', 'python3', 'asyncio', 'graphql', 'strawberry-graphql', 'opentelemetry', 'prometheus', 'sentry', 'fastapi-template', 'fastapi-boilerplate']",Python,,FastAPI-template: Feature rich robust FastAPI template.,s3rius,2022-12-18,2022-12-17,2020-10-05,115,4.947826086956522,12,3,5,"['fyndiq', 'gazprom-media', 'infosec']",,1.06,26,21,27,0,13,10,13,26.0,63.0,90.0,2.4,0,37.6061 -690,util,https://github.com/pyfpdf/fpdf2,,,,pyfpdf/fpdf2,fpdf2,568,152,16,"['pdf-generation', 'pdf', 'python', 'hacktoberfest', 'barcode', 'pdf-library', 'python3', 'library', 'svg', 'markdown']",Python,https://pyfpdf.github.io/fpdf2/,fpdf2: Simple PDF generation for Python,pyfpdf,2022-12-16,2022-12-14,2017-03-15,300,1.8888361045130642,81,3,5,"['lymaconsulting', 'onapsis', 'sncfconnect&techvoyages-sncf-technologies']",,5.46,87,69,70,0,9,6,9,87.0,296.0,90.0,3.4,0,49.03168 -889,gis,https://github.com/osgeo/grass,,,,osgeo/grass,grass,562,209,47,"['osgeo', 'grass-gis', 'geospatial', 'geospatial-analysis', 'raster', 'vector', 'timeseries-analysis', 'earth-observation', 'gis', 'hacktoberfest', 'open-science', 'remote-sensing', 'science', 'spatial']",C,https://grass.osgeo.org,GRASS GIS - free and open source Geographic Information System (GIS),osgeo,2022-12-17,2022-12-15,2019-05-17,187,2.9984756097560976,93,3,5,"['czechtechnicaluniversityinprague', 'mundialis', 'ncsu']",,6.92,198,117,44,0,15,37,15,198.0,394.0,90.0,2.0,187,58.16453 -167,nlp,https://github.com/lexpredict/lexpredict-lexnlp,,,,lexpredict/lexpredict-lexnlp,lexpredict-lexnlp,557,153,49,"['nlp', 'ml', 'legal', 'legaltech', 'linguistics', 'law', 'contracts', 'analytics', 'data']",HTML,,lexpredict-lexnlp: LexNLP by LexPredict,lexpredict,2022-12-16,2022-08-10,2017-09-30,272,2.045645330535152,8,1,5,['bommaritoconsulting'],,0.06,5,0,64,4,0,0,0,5.0,2.0,90.0,0.4,17,23.70983 -567,sim,https://github.com/gboeing/pynamical,,,,gboeing/pynamical,pynamical,551,108,32,"['chaos', 'nonlinear', 'fractal', 'logistic', 'visualization', 'modeling', 'animation', 'math', 'physics', 'python', 'pandas', 'numba', 'numpy', 'matplotlib', 'ipynb', 'bifurcation-diagram', 'fractals', 'systems', 'phase-diagram', 'cobweb-plot']",Python,https://geoffboeing.com/publications/nonlinear-chaos-fractals-prediction/,"Pynamical is a Python package for modeling and visualizing discrete nonlinear dynamical systems, chaos, and fractals.",gboeing,2022-12-13,2022-05-24,2014-09-28,429,1.2839547270306257,1,1,5,['universityofsoutherncalifornia'],,0.13,0,0,100,7,0,1,1,0.0,0.0,90.0,0.0,0,12.98118 -259,crypto,https://github.com/pmaji/crypto-whale-watching-app,,,,pmaji/crypto-whale-watching-app,crypto-whale-watching-app,548,132,48,"['gdax', 'python', 'cryptocurrency', 'ethereum', 'litecoin', 'bitcoin', 'cryptocurrency-exchanges', 'python3', 'dash', 'ethereum-blockchain', 'bitcoin-api', 'bitcoin-price', 'cryptocurrency-price-ticker', 'cryptocurrency-prices', 'litecoin-price', 'ethereum-price', 'gdax-api', 'gdax-python', 'plotly', 'plotly-dash']",Python,,crypto-whale-watching-app: Python Dash app that tracks whale activity in cryptocurrency markets.,pmaji,2022-12-14,2022-12-08,2018-01-23,255,2.141820212171971,8,1,5,['capitalone'],,0.06,2,2,60,0,0,0,0,2.0,0.0,90.0,0.0,0,21.17183 -235,nlp,https://github.com/salesforce/codet5,,,,salesforce/codet5,CodeT5,547,105,18,"['language-model', 'code-intelligence', 'programming-language', 'representation-learning', 'nlp']",Python,https://arxiv.org/abs/2109.00859,Code for CodeT5: a new code-aware pre-trained encoder-decoder model.,salesforce,2022-12-17,2022-07-08,2021-08-16,70,7.814285714285714,3,1,5,['salesforceresearch'],,0.1,10,3,16,5,0,0,0,10.0,4.0,90.0,0.4,0,13.98874 -874,util,https://github.com/ipython/ipykernel,,,,ipython/ipykernel,ipykernel,529,335,33,"['ipython', 'ipython-kernel', 'jupyter', 'python', 'closember', 'jupyter-notebook', 'kernel']",Python,https://ipython.readthedocs.io/en/stable/,ipykernel: IPython Kernel for Jupyter,ipython,2022-12-15,2022-12-14,2015-04-09,401,1.3173247954464604,161,4,5,"['amazonwebservices', 'mongodb', 'quansight-labs', 'simularesearchlaboratory']",,4.9,77,59,94,0,29,14,29,77.0,132.0,90.0,1.7,1683,65.39877 -160,nlp,https://github.com/nipunsadvilkar/pysbd,,,,nipunsadvilkar/pysbd,pySBD,528,63,10,"['sentence-boundary-detection', 'python', 'segmentation', 'rule-based', 'sentence-tokenizer', 'sentence']",Python,,pySBD: 🐍💯pySBD (Python Sentence Boundary Disambiguation) is a rule-based sentence boundary detection that works out-of-the-box.,nipunsadvilkar,2022-12-18,2021-02-11,2017-06-11,288,1.8324243926623698,6,2,5,"['explosion', 'gerulatatechnologies']",,0.0,2,0,67,22,0,3,3,2.0,3.0,90.0,1.5,5,23.75867 -625,gis,https://github.com/scitools/iris,,,,scitools/iris,iris,527,259,44,"['iris', 'python', 'netcdf', 'grib', 'visualisation', 'data-analysis', 'earth-science', 'meteorology', 'oceanography', 'spaceweather']",Python,https://scitools-iris.readthedocs.io/en/latest/,"iris: A powerful, format-agnostic, and community-driven Python package for analysing and visualising Earth science data",scitools,2022-12-14,2022-12-16,2012-08-06,541,0.9741219963031423,99,1,5,['metoffice'],,6.63,257,160,126,0,10,7,10,257.0,387.0,90.0,1.5,46,53.76344 -516,ml-dl,https://github.com/kakaobrain/rq-vae-transformer,,,,kakaobrain/rq-vae-transformer,rq-vae-transformer,521,60,15,[],Jupyter Notebook,,rq-vae-transformer: The official implementation of Autoregressive Image Generation using Residual Quantization (CVPR '22),kakaobrain,2022-12-15,2022-08-18,2022-03-03,41,12.532646048109966,1,1,5,['kakaobrain'],,0.08,3,2,10,4,0,0,0,3.0,4.0,90.0,1.3,0,12.6312 -685,ml,https://github.com/nvidia/cuda-python,,,,nvidia/cuda-python,cuda-python,520,39,22,[],Python,https://nvidia.github.io/cuda-python/,cuda-python: CUDA Python Low-level Bindings,nvidia,2022-12-17,2022-12-09,2021-06-28,77,6.753246753246753,2,1,5,['nvidia'],,0.23,18,14,18,0,7,6,7,18.0,27.0,90.0,1.5,3,28.00019 -576,util,https://github.com/fsspec/filesystem_spec,,,,fsspec/filesystem_spec,filesystem_spec,520,226,21,[],Python,,filesystem_spec: A specification that python filesystems should adhere to.,fsspec,2022-12-18,2022-12-12,2018-04-23,243,2.139917695473251,165,5,5,"['abcellerabiologics', 'anaconda', 'fal-ai', 'microsoft', 'nvidia']",,2.67,118,84,57,0,0,14,14,118.0,314.0,90.0,2.7,209,61.42906 -665,study,https://github.com/rasbt/stat453-deep-learning-ss20,,,,rasbt/stat453-deep-learning-ss20,stat453-deep-learning-ss20,518,148,36,[],Jupyter Notebook,http://pages.stat.wisc.edu/~sraschka/teaching/stat453-ss2020/,stat453-deep-learning-ss20: STAT 453: Intro to Deep Learning @ UW-Madison (Spring 2020),rasbt,2022-11-30,2020-05-01,2020-01-20,152,3.4078947368421053,1,1,5,"['lightning-ai,universityofwisconsin-madison']",,0.0,2,1,35,32,0,0,0,2.0,1.0,90.0,0.5,6,11.97613 -306,crypto,https://github.com/palkeo/panoramix,,,,palkeo/panoramix,panoramix,516,142,31,[],Python,,panoramix: Ethereum decompiler,palkeo,2022-12-15,2020-08-22,2020-02-17,148,3.4864864864864864,4,2,5,"['ethereum', 'eveem.org']",,0.0,5,2,34,28,0,1,1,5.0,4.0,90.0,0.8,0,16.02489 -525,gis,https://github.com/toblerity/rtree,,,,toblerity/rtree,rtree,515,123,30,[],Python,https://rtree.readthedocs.io/en/latest/,Rtree: spatial index for Python GIS ¶,toblerity,2022-12-07,2022-12-12,2011-06-19,600,0.858129016900738,39,4,5,"['hobu', 'planetlabs', 'universityofillinoisaturbana-champaign', 'universityofutah']",,0.75,11,10,140,0,2,1,2,11.0,26.0,90.0,2.4,25,47.17232 -883,time-series,https://github.com/autoviml/auto_ts,,,,autoviml/auto_ts,Auto_TS,514,92,16,"['time-series', 'time-series-analysis', 'auto-timeseries', 'automl', 'autosklearn', 'tpot', 'autokeras', 'python3', 'prophet', 'python', 'sklearn', 'arima', 'auto-arima', 'auto-sklearn']",Jupyter Notebook,,"Auto_TS: Automatically build ARIMA, SARIMAX, VAR, FB Prophet and XGBoost Models on Time Series data sets with a Single Line of Code. Now updated with Dask to handle millions of rows.",autoviml,2022-12-14,2022-08-16,2020-02-15,148,3.466281310211946,6,1,5,['o9solutions'],,0.27,8,3,35,4,0,1,1,8.0,12.0,90.0,1.5,26,27.53577 -589,ml-ops,https://github.com/kedro-org/kedro-viz,,,,kedro-org/kedro-viz,kedro-viz,510,84,9,"['kedro', 'kedro-plugin', 'data-visualization', 'hacktoberfest', 'react', 'experiment-tracking', 'python']",JavaScript,https://demo.kedro.org/,kedro-viz: Visualise your Kedro data and machine-learning pipelines and track your experiments. ,kedro-org,2022-12-17,2022-12-16,2019-05-09,188,2.7045454545454546,38,2,5,"['kedro-org,quantumblacklabs', 'medshr']",,4.83,149,116,44,0,12,14,12,149.0,204.0,90.0,1.4,2,44.86311 -413,util,https://github.com/bastibe/python-soundfile,,,,bastibe/python-soundfile,python-soundfile,507,85,17,[],Python,,"python-soundfile: SoundFile is an audio library based on libsndfile, CFFI, and NumPy",bastibe,2022-12-17,2022-09-27,2013-08-27,485,1.0435166127609528,28,2,5,"['quantco', 'self']",,0.37,30,13,113,3,6,2,6,30.0,99.0,90.0,3.3,0,37.30259 -359,ml-ops,https://github.com/google/ml-metadata,,,,google/ml-metadata,ml-metadata,502,114,27,[],C++,https://www.tensorflow.org/tfx/guide/mlmd,ml-metadata: For recording and retrieving metadata associated with ML developer and data scientist workflows.,google,2022-12-16,2022-12-12,2019-01-15,204,2.4504881450488143,15,0,5,[],,0.56,4,2,48,0,7,9,7,4.0,28.0,90.0,7.0,20,37.8279 -671,ml,https://github.com/apple/ml-ane-transformers,,,,apple/ml-ane-transformers,ml-ane-transformers,494,26,26,[],Python,,ml-ane-transformers: Reference implementation of the Transformer architecture optimized for Apple Neural Engine (ANE),apple,2022-12-14,2022-08-09,2022-06-03,28,17.376884422110553,1,0,5,[],,0.1,0,0,7,4,3,5,3,0.0,0.0,90.0,0.0,0,5.70434 -241,ml,https://github.com/microsoft/focal-transformer,,,,microsoft/focal-transformer,Focal-Transformer,487,57,17,[],Python,,"Focal-Transformer: [NeurIPS 2021 Spotlight] Official code for ""Focal Self-attention for Local-Global Interactions in Vision Transformers""",microsoft,2022-12-15,2022-03-27,2021-07-10,75,6.468690702087287,2,1,5,['microsoft'],,0.04,2,0,18,9,0,0,0,2.0,1.0,90.0,0.5,2,12.52614 -673,perf,https://github.com/brandtbucher/specialist,,,,brandtbucher/specialist,specialist,485,9,9,[],Python,,"specialist: Visualize CPython 3.11's specializing, adaptive interpreter. :fire:",brandtbucher,2022-12-18,2022-12-15,2022-06-01,28,16.890547263681594,2,2,5,"['christianclauss', 'microsoft']",,1.0,3,1,7,0,10,17,10,3.0,11.0,90.0,3.7,0,26.98899 -797,ml-interpretability,https://github.com/selfexplainml/piml-toolbox,,,,selfexplainml/piml-toolbox,PiML-Toolbox,485,52,14,"['interpretable-machine-learning', 'low-code', 'ml-workflow', 'model-diagnostics']",Jupyter Notebook,https://selfexplainml.github.io/PiML-Toolbox,PiML-Toolbox: PiML (Python Interpretable Machine Learning) toolbox for model development and model validation,selfexplainml,2022-12-18,2022-12-17,2022-04-29,33,14.508547008547009,6,1,5,['cityuniversityofhongkong'],,4.02,16,13,8,0,15,24,15,16.0,24.0,90.0,1.5,5,32.74247 -216,ml-ops,https://github.com/nccr-itmo/fedot,,,,nccr-itmo/fedot,FEDOT,481,63,9,"['automl', 'machine-learning', 'evolutionary-algorithms', 'genetic-programming', 'structural-learning', 'automated-machine-learning', 'hyperparameter-optimization', 'parameter-tuning', 'automation', 'multimodality', 'fedot']",Python,https://fedot.readthedocs.io,FEDOT: Automated modeling and machine learning framework FEDOT,nccr-itmo,2022-12-17,2022-12-16,2020-01-13,153,3.1437908496732025,26,3,5,"['itmouniversity', 'mail.rugroup', 'wiredhut']",,5.02,175,137,36,0,4,3,4,175.0,167.0,90.0,1.0,0,40.60863 -794,gis,https://github.com/kvos/coastsat,,,,kvos/coastsat,CoastSat,480,195,23,"['google-earth-engine', 'earth-engine', 'remote-sensing', 'satellite-images', 'coastal-engineering', 'shoreline-detection']",Jupyter Notebook,http://coastsat.wrl.unsw.edu.au/,CoastSat: Global shoreline mapping tool from satellite imagery,kvos,2022-12-17,2022-12-18,2018-09-28,220,2.1775761503564484,14,5,5,"['sacramentostate', 'unswsydney', 'usaceerdc-fieldresearchfacility', 'waterresearchlaboratory', 'waterresearchlaboratory(unsw)']",,1.4,53,36,51,0,3,3,3,53.0,109.0,90.0,2.1,17,45.16199 -47,data,https://github.com/macbre/sql-metadata,1.0,,,macbre/sql-metadata,sql-metadata,478,84,15,"['sql', 'parser', 'database', 'sql-parser', 'metadata', 'sqlparse', 'python-package', 'python3-library', 'hiveql', 'hive', 'mysql-query']",Python,https://pypi.python.org/pypi/sql-metadata,sql-metadata: Uses tokenized query returned by python-sqlparse and generates query metadata,macbre,2022-12-18,2022-12-16,2017-06-06,288,1.6547972304648864,13,2,5,"['automattic', 'kaizentech']",,1.0,21,15,67,0,3,5,3,21.0,10.0,90.0,0.5,27,38.43106 -487,gis,https://github.com/fatiando/verde,,,,fatiando/verde,verde,467,60,21,"['geophysics', 'earth-science', 'geospatial', 'python', 'scipy', 'interpolation', 'python3', 'scipy-stack', 'fatiando-a-terra', 'geoscience']",Python,https://www.fatiando.org/verde,verde: Processing and interpolating spatial data with a twist of machine learning,fatiando,2022-12-14,2022-12-09,2018-04-25,242,1.924072984108299,13,4,5,"['fatiando', 'fatiandoubcgifcompgeolabgeolatinas', 'spacescienceandengineeringcenter(ssec)', 'universityofliverpool']",,0.56,29,26,57,0,1,3,1,29.0,21.0,90.0,0.7,15,38.99012 -211,time-series,https://github.com/firmai/atspy,,,,firmai/atspy,atspy,464,88,21,"['time-series', 'time-series-analysis', 'automated', 'python', 'forecasting', 'forecasting-models', 'finance']",Python,https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3580631,AtsPy: Automated Time Series Models in Python (by @firmai),firmai,2022-12-17,2021-12-18,2020-01-28,150,3.0757575757575757,5,2,5,"['alanturinginstitute,firmai', 'ddosify']",,0.0,3,1,35,12,0,0,0,3.0,1.0,90.0,0.3,12,19.98707 -329,ml-dl,https://github.com/facebookresearch/ppuda,,,,facebookresearch/ppuda,ppuda,459,61,17,[],Python,,ppuda: Code for Parameter Prediction for Unseen Deep Architectures (NeurIPS 2021),facebookresearch,2022-12-10,2022-07-26,2021-10-21,60,7.577830188679245,3,1,5,"['samsung-saitailab,montreal']",,0.29,1,0,14,5,0,0,0,1.0,3.0,90.0,3.0,0,16.27288 -497,ml-dl,https://github.com/mcahny/deep-video-inpainting,,,,mcahny/deep-video-inpainting,Deep-Video-Inpainting,448,86,13,[],Python,,"Deep-Video-Inpainting: Official pytorch implementation for ""Deep Video Inpainting"" (CVPR 2019)",mcahny,2022-12-12,2020-12-10,2019-05-22,186,2.399387911247131,3,1,5,['kentech'],,0.0,3,0,44,25,0,0,0,3.0,1.0,90.0,0.3,2,12.6167 -437,pandas,https://github.com/polyaxon/datatile,,,,polyaxon/datatile,datatile,447,40,13,"['pandas', 'pandas-summary', 'dataframes', 'data-analysis', 'data-science', 'spark', 'dask', 'plotly', 'statistics', 'matplotlib', 'data-profiling', 'data-visualization', 'data-summary', 'data-reporting', 'data-exploration', 'dataops', 'mlops', 'data-quality', 'data-quality-monitoring', 'data-quality-checks']",Python,,"datatile: A library for managing, validating, summarizing, and visualizing data",polyaxon,2022-12-17,2022-12-16,2016-03-25,351,1.2719512195121951,10,2,5,"['hospiq', 'sidhulabs']",,0.48,0,0,82,0,0,0,0,0.0,0.0,90.0,0.0,0,23.52189 -375,viz,https://github.com/vhranger/nodevectors,,,,vhranger/nodevectors,nodevectors,445,52,11,[],Python,,nodevectors: Fastest network node embeddings in the west,vhranger,2022-12-17,2021-11-06,2019-07-25,177,2.50603378921963,6,2,5,"['harvardmedicalschool', 'sap']",,0.0,2,0,41,14,0,4,4,2.0,0.0,90.0,0.0,0,16.92271 -479,gis,https://github.com/holoviz/geoviews,,,,holoviz/geoviews,geoviews,442,67,30,"['holoviz', 'geoviews', 'holoviews', 'geographic-visualizations', 'cartopy', 'plotting']",Python,http://geoviews.org,"geoviews: Simple, concise geographical visualization in Python",holoviz,2022-12-12,2022-12-07,2016-04-19,347,1.2706365503080082,28,1,5,['anaconda'],,0.69,19,11,81,0,3,10,3,19.0,20.0,90.0,1.1,10,38.1139 -872,pandas,https://github.com/eventual-inc/daft,,,,eventual-inc/daft,Daft,437,12,6,"['image-processing', 'machine-learning', 'python', 'data-engineering', 'data-science', 'dataframe', 'deep-learning', 'distributed-computing']",Python,,Daft: The Python DataFrame for Complex Data,eventual-inc,2022-12-17,2022-12-16,2022-04-25,34,12.852941176470589,5,3,5,"['eventual-inc', 'freenome', 'lyft']",,9.44,199,173,8,0,0,27,27,199.0,41.0,90.0,0.2,7,38.74243 -742,nlp,https://github.com/koaning/whatlies,,,,koaning/whatlies,whatlies,436,49,13,"['nlp', 'embeddings', 'visualisations']",Python,https://koaning.github.io/whatlies/,"whatlies: Toolkit to help understand ""what lies"" in word embeddings. Also benchmarking! ",koaning,2022-12-13,2022-07-28,2020-02-22,147,2.9602327837051408,13,4,5,"['explosion', 'kpmgnetherlands', 'motain', 'zalandose']",,0.27,1,1,34,5,1,9,1,1.0,2.0,90.0,2.0,0,26.77627 -573,gis,https://github.com/developmentseed/label-maker,,,,developmentseed/label-maker,label-maker,436,113,50,"['satellite-imagery', 'data-preparation', 'deep-learning', 'computer-vision', 'remote-sensing', 'keras']",Python,http://devseed.com/label-maker/,label-maker: Data Preparation for Satellite Machine Learning,developmentseed,2022-12-14,2020-11-19,2018-01-10,257,1.6917960088691797,15,4,5,"['cloud-gov(work)+personalprojects;', 'developmentseed', 'planetlabs', 'regrow']",,0.0,2,1,60,25,0,3,3,2.0,1.0,90.0,0.5,9,27.20848 -582,gis,https://github.com/developmentseed/titiler,,,,developmentseed/titiler,titiler,436,99,18,"['fastapi', 'cog', 'aws-cdk', 'aws-lambda', 'stac', 'cogeotiff', 'mosaicjson', 'raster', 'dynamic', 'server', 'rest', 'gdal', 'rasterio', 'tile', 'map-tile-server', 'map-tiles']",Python,https://developmentseed.org/titiler/,titiler: Build your own Raster dynamic map tile services,developmentseed,2022-12-18,2022-12-17,2019-06-28,181,2.4031496062992126,28,4,5,"['developmentseed', 'ozminerals', 'satellogic', 'terradue']",,2.0,31,26,42,0,0,15,15,31.0,39.0,90.0,1.3,13,46.18049 -837,gis,https://github.com/perrygeo/python-rasterstats,,,,perrygeo/python-rasterstats,python-rasterstats,434,108,33,[],Python,,python-rasterstats: Summary statistics of geospatial raster datasets based on vector geometries.,perrygeo,2022-12-07,2022-10-18,2013-09-18,482,0.8990825688073395,30,4,5,"['aiddata', 'ouranos', 'satellogic', 'southernmethodistuniversity']",,0.12,9,2,113,2,1,2,1,9.0,12.0,90.0,1.3,50,40.66959 -844,perf,https://github.com/joblib/loky,,,,joblib/loky,loky,433,41,9,"['multiprocessing-library', 'python']",Python,http://loky.readthedocs.io/en/stable/,loky: Robust and reusable Executor for joblib,joblib,2022-12-13,2022-09-15,2015-12-25,364,1.1881615052920422,16,4,5,"['inria', 'inriasaclay-parietalteam', 'scikit-learninriafoundation', 'ucl']",,1.0,6,2,85,3,0,5,5,6.0,2.0,90.0,0.3,59,38.18507 -863,ml-ops,https://github.com/astronomer/astronomer,,,,astronomer/astronomer,astronomer,431,78,43,"['apache-airflow', 'kubernetes', 'docker', 'astronomer-platform']",Python,https://www.astronomer.io,"astronomer: Helm Charts for the Astronomer Platform, Apache Airflow as a Service on Kubernetes",astronomer,2022-12-14,2022-12-16,2018-01-15,257,1.6770428015564203,70,2,5,"['astronomer', 'cerebral']",,8.96,113,109,60,0,29,69,29,112.0,78.0,90.0,0.7,133,54.59785 -292,util,https://github.com/fastai/ghapi,,,,fastai/ghapi,ghapi,421,45,8,"['github-api', 'github', 'nbdev', 'openapi', 'api-client']",Jupyter Notebook,https://ghapi.fast.ai/,ghapi: A delightful and complete interface to GitHub's amazing API,fastai,2022-12-17,2022-09-27,2020-11-21,108,3.887862796833773,16,4,5,"['fastai', 'github', 'huggingface', 'streamlit']",,1.17,10,3,25,3,6,9,6,10.0,7.0,90.0,0.7,21,35.5147 -481,sim,https://github.com/udst/urbansim,,,,udst/urbansim,urbansim,418,124,78,[],Python,https://udst.github.io/urbansim/,urbansim: Platform for building statistical models of cities and regions,udst,2022-12-08,2020-05-11,2013-08-15,487,0.8573102842074422,20,5,5,"['applemontechnologies', 'google', 'populus-ai', 'populus-aimapcraftlabsoaklandanalytics', 'urbansim']",,0.0,0,0,114,32,0,1,1,0.0,0.0,90.0,0.0,40,28.15977 -188,math,https://github.com/dit/dit,,,,dit/dit,dit,417,77,24,"['python', 'information-theory']",Python,http://docs.dit.io,dit: Python package for information theory.,dit,2022-12-13,2022-07-25,2013-09-29,481,0.8666864608076009,20,1,5,['google'],,0.92,4,0,112,5,1,3,1,4.0,7.0,90.0,1.8,269,36.87955 -486,gis,https://github.com/earthlab/earthpy,,,,earthlab/earthpy,earthpy,412,149,22,"['spatial-data', 'raster', 'vector', 'python', 'education']",Python,https://earthpy.readthedocs.io,earthpy: A package built to support working with spatial data using open source python,earthlab,2022-12-17,2021-12-20,2018-02-20,251,1.6358479863868407,41,4,5,"['hydrosat', 'nvidia', 'pyupio', 'silviaterra']",,0.0,28,21,59,12,0,7,7,28.0,43.0,90.0,1.5,60,41.4043 -705,ml-ops,https://github.com/bodywork-ml/bodywork-core,,,,bodywork-ml/bodywork-core,bodywork-core,406,18,9,"['mlops', 'python', 'kubernetes', 'data-science', 'machine-learning', 'pipeline', 'serving', 'continuous-deployment', 'batch', 'devops', 'framework', 'cicd', 'orchestration']",Python,https://bodywork.readthedocs.io/en/latest/,"bodywork-core: ML pipeline orchestration and model deployments on Kubernetes, made really easy.",bodywork-ml,2022-12-13,2022-07-04,2020-11-17,108,3.729658792650919,4,2,5,"['bodywork-mllloydsbankinggroup', 'bodyworkmachinelearning']",,2.73,0,0,25,6,0,29,29,0.0,0.0,90.0,0.0,8,25.11896 -472,nlp,https://github.com/google-research/byt5,,,,google-research/byt5,byt5,405,25,11,[],Python,,google-research/byt5,google-research,2022-12-11,2022-03-02,2021-05-26,81,4.956293706293707,2,0,5,[],,0.04,1,0,19,10,0,0,0,1.0,0.0,90.0,0.0,0,5.047 -275,crypto,https://github.com/ethtx/ethtx,,,,ethtx/ethtx,ethtx,397,60,16,[],Python,https://www.ethtx.info,ethtx: Python package with core transaction decoding functions.,ethtx,2022-12-16,2022-12-01,2021-06-28,77,5.1558441558441555,6,2,5,"['py-world', 'tokenflowinsights']",,1.37,23,22,18,1,17,24,17,23.0,9.0,90.0,0.4,0,28.70451 -577,jupyter,https://github.com/computationalmodelling/nbval,,,,computationalmodelling/nbval,nbval,393,50,10,"['ipython-notebook', 'jupyter-notebook', 'python', 'testing', 'pytest-plugin', 'pytest']",Python,,nbval: A py.test plugin to validate Jupyter notebooks,computationalmodelling,2022-12-16,2022-09-17,2015-04-09,401,0.9786552828175027,31,1,5,['mpsd&universityofsouthampton'],,0.21,5,1,94,3,0,2,2,5.0,2.0,90.0,0.4,44,33.0003 -722,perf,https://github.com/noxdafox/pebble,,,,noxdafox/pebble,pebble,389,45,10,"['threading', 'multiprocessing', 'python', 'pool', 'decorators', 'asyncio']",Python,,pebble: Multi threading and processing eye-candy.,noxdafox,2022-12-18,2022-11-15,2013-10-16,478,0.8125932557445539,14,1,5,['getcujo'],,1.08,11,11,112,1,4,2,4,11.0,35.0,90.0,3.2,322,44.77938 -528,nlp,https://github.com/hazyresearch/fonduer,,,,hazyresearch/fonduer,fonduer,386,79,27,"['multimodality', 'machine-learning', 'knowledge-base-construction']",Python,https://fonduer.readthedocs.io/,fonduer: A knowledge base construction engine for richly formatted data,hazyresearch,2022-12-05,2021-06-23,2018-02-02,254,1.5171252105558675,14,2,5,"['https://snorkel.ai/', 'numbersstationai']",,0.0,0,0,59,18,0,6,6,0.0,0.0,90.0,0.0,23,24.8635 -841,util,https://github.com/carlospuenteg/file-injector,,,,carlospuenteg/file-injector,File-Injector,383,17,6,"['image', 'image-manipulation', 'image-processing', 'noise', 'numpy', 'photography', 'python', 'python3', 'file', 'files', 'extraction', 'injection', 'storage', 'steganography', 'file-injection', 'file-injector']",Python,,File-Injector: File Injector is a script that allows you to store any file in an image using steganography,carlospuenteg,2022-12-16,2022-11-18,2022-10-22,8,46.224137931034484,1,0,5,[],,0.77,0,0,2,1,13,79,13,0.0,0.0,90.0,0.0,0,8.59194 -254,ml,https://github.com/amzn/pecos,,,,amzn/pecos,pecos,383,84,18,"['machine-learning-algorithms', 'extreme-multi-label-classification', 'extreme-multi-label-ranking', 'transformers', 'approximate-nearest-neighbor-search']",Python,https://libpecos.org/,PECOS - Prediction for Enormous and Correlated Spaces,amzn,2022-12-17,2022-12-17,2020-08-12,122,3.121071012805588,25,2,5,"['amazon', 'amazonsearchandai']",,1.15,35,34,29,0,2,3,2,35.0,13.0,90.0,0.4,0,32.35651 -12,nlp,https://github.com/dialogflow/dialogflow-python-client-v2,,,,dialogflow/dialogflow-python-client-v2,python-dialogflow,379,146,53,"['python', 'machine-learning', 'dialogflow']",Python,https://dialogflow.com/,python-dialogflow: Python client for Dialogflow: Design and integrate a conversational user interface into your applications and devices.,dialogflow,2022-12-09,2022-12-15,2017-10-24,268,1.4096705632306057,34,3,5,"['googleapis', 'googlecloud', 'mend']",,2.13,31,27,63,0,13,8,13,31.0,27.0,90.0,0.9,49,47.91162 -331,ml,https://github.com/jacopotagliabue/reclist,,,,jacopotagliabue/reclist,reclist,370,20,8,"['recommender-system', 'machine-learning', 'qa-automation']",Python,,"reclist: Behavioral ""black-box"" testing for recommender systems",jacopotagliabue,2022-12-13,2022-11-03,2021-11-08,58,6.379310344827586,7,2,5,"['digitalgreenorg', 'stanforduniversity']",,0.71,6,3,14,2,0,6,6,6.0,3.0,90.0,0.5,10,27.79074 -803,util,https://github.com/open-telemetry/opentelemetry-python-contrib,,,,open-telemetry/opentelemetry-python-contrib,opentelemetry-python-contrib,369,277,14,[],Python,https://opentelemetry.io,opentelemetry-python-contrib: OpenTelemetry instrumentation for Python modules,open-telemetry,2022-12-16,2022-12-18,2019-11-08,162,2.271767810026385,167,4,5,"['lightstep', 'microsoftcorporation', 'signoz.io', 'splunk']",,5.38,246,164,38,0,11,11,11,246.0,335.0,90.0,1.4,35,56.10085 -492,gis,https://github.com/cogeotiff/rio-tiler,,,,cogeotiff/rio-tiler,rio-tiler,369,86,65,"['satellite', 'cog', 'cogeotiff', 'maptile', 'raster-processing', 'mercator', 'tile', 'slippy-map', 'gdal', 'rasterio', 'raster']",Python,https://cogeotiff.github.io/rio-tiler/,rio-tiler: User friendly Rasterio plugin to read raster datasets.,cogeotiff,2022-12-15,2022-12-16,2017-10-06,271,1.3594736842105264,21,3,5,"['amskepler', 'angloamerican', 'developmentseed']",,1.19,47,46,63,0,0,23,23,47.0,50.0,90.0,1.1,10,45.33027 -185,math,https://github.com/willianfuks/tfcausalimpact,,,,willianfuks/tfcausalimpact,tfcausalimpact,366,51,10,"['causalimpact', 'tensorflow-probability', 'python', 'causal-inference']",Python,,tfcausalimpact: Python Causal Impact Implementation Based on Google's R Package. Built using TensorFlow Probability.,willianfuks,2022-12-16,2022-10-07,2020-08-17,122,3.0,3,1,5,['epfl'],,0.19,7,3,28,2,7,7,7,7.0,17.0,90.0,2.4,0,24.38965 -561,gis,https://github.com/geopandas/contextily,,,,geopandas/contextily,contextily,366,66,14,"['tiles', 'stamen', 'openstreetmap', 'python', 'tile', 'mapping', 'webtiles', 'geography', 'cartography', 'matplotlib', 'osm', 'stamen-maps']",Jupyter Notebook,https://contextily.readthedocs.io/en/latest/,contextily: Context geo-tiles in Python,geopandas,2022-11-22,2022-11-30,2016-09-08,327,1.1173135630178805,18,3,5,"['geogbristol', 'nordsoftware', 'ornl']",,0.08,7,1,76,1,0,1,1,7.0,6.0,90.0,0.9,3,32.38338 -522,gis,https://github.com/pygeos/pygeos,,,,pygeos/pygeos,pygeos,361,37,16,[],Python,https://pygeos.readthedocs.io,pygeos: Wraps GEOS geometry functions in numpy ufuncs.,pygeos,2022-12-14,2022-12-14,2019-06-10,184,1.9619565217391304,13,4,5,"['adonmo(adonmo)', 'astutespruce', 'gnsscience', 'nelen&schuurmans']",,0.19,21,21,43,0,2,6,2,21.0,14.0,90.0,0.7,321,43.60219 -49,util,https://github.com/mozillazg/pypy,,,,mozillazg/pypy,pypy,358,57,11,"['pypy', 'github-mirror', 'unofficial', 'unofficial-mirror', 'read-only-repository']",Python,https://foss.heptapod.net/pypy/pypy,pypy: The unofficial GitHub mirror of PyPy,mozillazg,2022-12-17,2022-12-18,2015-08-03,385,0.9298701298701298,374,2,5,"['pypy,baroquesoftware', 'quansightlabs']",,13.0,1,0,90,0,0,22,22,1.0,0.0,90.0,0.0,3,45.88361 -496,ml,https://github.com/linkedin/fasttreeshap,,,,linkedin/fasttreeshap,FastTreeSHAP,358,22,6,"['explainable-ai', 'interpretability', 'lightgbm', 'machine-learning', 'random-forest', 'shap', 'xgboost']",Python,,FastTreeSHAP: Fast SHAP value computation for interpreting tree-based models,linkedin,2022-12-16,2022-11-29,2022-01-24,47,7.617021276595745,3,1,5,['linkedincorporation'],,0.23,7,2,11,1,3,3,3,7.0,11.0,90.0,1.6,0,20.70189 -499,ml-dl,https://github.com/researchmm/sttn,,,,researchmm/sttn,STTN,355,70,20,"['video-inpainting', 'completing-videos', 'transformer', 'spatial-temporal']",Jupyter Notebook,https://arxiv.org/abs/2007.10247,[ECCV'2020] STTN: Learning Joint Spatial-Temporal Transformations for Video Inpainting,researchmm,2022-12-16,2021-07-26,2020-07-10,127,2.7858744394618835,2,0,5,[],,0.0,1,0,30,17,0,0,0,1.0,1.0,90.0,1.0,0,7.78837 -519,gis,https://github.com/scikit-geometry/scikit-geometry,,,,scikit-geometry/scikit-geometry,scikit-geometry,354,49,13,"['cgal', 'geometry', 'python', 'geometric-algorithms', 'wrapper']",Jupyter Notebook,https://scikit-geometry.github.io/scikit-geometry,scikit-geometry: Scientific Python Geometric Algorithms Library,scikit-geometry,2022-11-28,2022-10-14,2016-03-28,351,1.0085470085470085,15,5,5,"['ambirobotics', 'leipziguniversity', 'prefix.devgmbh', 'resonance', 'westpac']",,0.1,6,1,82,2,0,0,0,6.0,3.0,90.0,0.5,4,31.18635 -756,ml-dl,https://github.com/samuela/git-re-basin,,,,samuela/git-re-basin,git-re-basin,349,29,4,"['deep-learning', 'deeplearning', 'jax', 'machine-learning', 'neural-networks']",Python,https://arxiv.org/abs/2209.04836,"git-re-basin: Code release for ""Git Re-Basin: Merging Models modulo Permutation Symmetries""",samuela,2022-12-16,2022-10-12,2022-09-13,13,25.185567010309278,1,0,5,[],,0.44,8,1,3,2,0,0,0,8.0,52.0,90.0,6.5,0,13.78734 -692,util,https://github.com/paperswithcode/axcell,,,,paperswithcode/axcell,axcell,344,51,13,[],Python,,axcell: Tools for extracting tables and results from Machine Learning papers,paperswithcode,2022-12-18,2021-06-23,2019-06-27,181,1.8945712037765539,7,2,5,"['ukplab,tudarmstadt', 'xyzlab']",,0.0,1,0,42,18,0,0,0,1.0,0.0,90.0,0.0,0,13.6169 -586,gis,https://github.com/pysal/momepy,,,,pysal/momepy,momepy,343,46,16,"['urban', 'morphology', 'morphological-analysis', 'morphometrics', 'urban-morphometrics', 'urban-street-networks']",Python,https://docs.momepy.org,momepy: Urban Morphology Measuring Toolkit,pysal,2022-12-18,2022-10-17,2018-03-30,246,1.3918840579710146,10,2,5,"['ornl', 'udl-ai']",,1.1,29,19,57,2,3,4,3,29.0,68.0,90.0,2.3,39,39.11614 -560,gis,https://github.com/corteva/rioxarray,,,,corteva/rioxarray,rioxarray,342,56,12,"['gis', 'rasterio', 'xarray', 'geospatial', 'python', 'gdal', 'raster', 'netcdf', 'hacktoberfest']",Python,https://corteva.github.io/rioxarray,rioxarray: geospatial xarray extension powered by rasterio,corteva,2022-12-13,2022-12-12,2019-04-16,191,1.7825763216679076,26,5,5,"['corteva', 'dtn', 'gnsscience', 'quantstack', 'smhi']",,2.5,43,21,45,0,16,16,16,43.0,75.0,90.0,1.7,3,45.92631 -786,util,https://github.com/gefyrahq/gefyra,,,,gefyrahq/gefyra,gefyra,339,22,6,"['kubernetes', 'development', 'developer-tool', 'containers', 'coding', 'tunnel', 'docker', 'k8s']",Python,https://gefyra.dev,"gefyra: Blazingly-fast :rocket:, rock-solid, local application development :arrow_right: with Kubernetes.",gefyrahq,2022-12-16,2022-12-16,2021-11-18,56,5.992424242424242,13,2,5,"['blueshoe', 'blueshoeunikubehq']",,7.1,131,114,13,0,44,47,44,131.0,200.0,90.0,1.5,3,41.62193 -335,ml,https://github.com/mrdbourke/m1-machine-learning-test,,,,mrdbourke/m1-machine-learning-test,m1-machine-learning-test,339,101,12,"['tensorflow', 'tensorflow-macos', 'metal', 'machine-learning']",Jupyter Notebook,,m1-machine-learning-test: Code for testing various M1 Chip benchmarks with TensorFlow.,mrdbourke,2022-12-16,2022-07-16,2021-11-14,57,5.9325,2,0,5,[],,0.06,1,0,13,5,0,0,0,1.0,0.0,90.0,0.0,12,10.29055 -848,gis,https://github.com/mapbox/mercantile,,,,mapbox/mercantile,mercantile,338,62,116,"['satellite', 'pxm', 'imagery']",Python,,mercantile: Spherical mercator tile and coordinate utilities,mapbox,2022-12-17,2021-10-22,2014-02-12,461,0.7320544554455446,20,2,5,"['planetlabs', 'tudresden']",,0.0,3,0,108,14,0,4,4,3.0,0.0,90.0,0.0,111,30.95645 -340,term,https://github.com/federicoceratto/dashing,,,,federicoceratto/dashing,dashing,338,30,9,"['python', 'python3', 'terminal', 'dashboard', 'terminal-based', 'gauges', 'charts']",Python,https://dashing.readthedocs.io/en/latest/,dashing: Terminal dashboards for Python,federicoceratto,2022-12-14,2020-09-06,2017-06-03,289,1.1683950617283951,2,1,5,['ooni/torproject/debian'],,0.0,1,0,67,28,0,0,0,1.0,0.0,90.0,0.0,0,9.00499 -158,jupyter,https://github.com/nteract/testbook,,,,nteract/testbook,testbook,336,34,15,"['jupyter-notebook', 'unit-testing', 'pytest', 'nteract', 'python', 'testbook']",Python,https://testbook.readthedocs.io,testbook: 🧪 📗 Unit test your Jupyter Notebooks the right way,nteract,2022-12-15,2022-11-29,2020-02-26,146,2.29016553067186,15,4,5,"['noteable-io', 'quantstack', 'seaspancorporation', 'willingconsulting']",,0.04,5,2,34,1,0,5,5,5.0,5.0,90.0,1.0,5,33.9918 -563,gis,https://github.com/geopandas/dask-geopandas,,,,geopandas/dask-geopandas,dask-geopandas,336,34,23,[],Python,https://dask-geopandas.readthedocs.io/,dask-geopandas: Parallel GeoPandas with Dask,geopandas,2022-12-12,2022-08-28,2020-02-13,148,2.2615384615384615,16,4,5,"['azavea', 'mr', 'sylveraio', 'udl-ai']",,1.1,13,3,35,4,7,4,7,13.0,23.0,90.0,1.8,0,32.68949 -464,data,https://github.com/dmarx/psaw,,,,dmarx/psaw,psaw,333,46,9,[],Python,,psaw: Python Pushshift.io API Wrapper (for comment/submission search),dmarx,2022-12-12,2022-07-09,2018-04-15,244,1.363955529549444,8,1,5,"['stability.ai,eleuther.ai']",,0.04,1,0,57,5,0,0,0,1.0,0.0,90.0,0.0,4,18.46735 -684,util,https://github.com/sciunto-org/python-bibtexparser,,,,sciunto-org/python-bibtexparser,python-bibtexparser,330,117,16,"['bibtex', 'bibtex-files', 'latex', 'python', 'hacktoberfest2022']",Python,https://bibtexparser.readthedocs.io,python-bibtexparser: Bibtex parser for Python 3,sciunto-org,2022-12-13,2022-10-20,2013-01-05,519,0.6354883081155434,45,4,5,"['paris-saclayuniversity', 'quicksign', 'ruhruniversitybochum', 'universitàdellasvizzeraitaliana(testingautomated-usi)']",,0.6,41,24,121,2,2,2,2,41.0,37.0,90.0,0.9,35,44.25724 -237,ml,https://github.com/salesforce/warp-drive,,,,salesforce/warp-drive,warp-drive,329,58,12,"['reinforcement-learning', 'gpu', 'cuda', 'multiagent-reinforcement-learning', 'deep-learning', 'high-throughput', 'pytorch', 'numba']",Python,,warp-drive: Extremely Fast End-to-End Deep Multi-Agent Reinforcement Learning Framework on a GPU,salesforce,2022-12-17,2022-12-02,2021-08-25,68,4.787941787941788,6,1,5,['salesforceresearch'],,3.21,14,11,16,1,2,2,2,14.0,11.0,90.0,0.8,15,29.4868 -664,study,https://github.com/rasbt/stat451-machine-learning-fs20,,,,rasbt/stat451-machine-learning-fs20,stat451-machine-learning-fs20,327,176,18,[],Jupyter Notebook,,stat451-machine-learning-fs20: STAT 451: Intro to Machine Learning @ UW-Madison (Fall 2020),rasbt,2022-12-07,2020-12-03,2020-08-06,123,2.646242774566474,1,1,5,"['lightning-ai,universityofwisconsin-madison']",,0.0,0,0,29,25,0,0,0,0.0,0.0,90.0,0.0,2,7.63653 -747,study,https://github.com/bayesianmodelingandcomputationinpython/bookcode_edition1,,,,bayesianmodelingandcomputationinpython/bookcode_edition1,BookCode_Edition1,326,75,13,[],Jupyter Notebook,https://www.bayesiancomputationbook.com,bayesianmodelingandcomputationinpython/bookcode_edition1,bayesianmodelingandcomputationinpython,2022-12-17,2022-09-20,2021-08-17,69,4.666666666666667,10,2,5,"['google', 'imasl-conicet']",,1.69,8,2,16,3,0,0,0,8.0,7.0,90.0,0.9,0,22.24857 -364,ml-ops,https://github.com/kubeflow/fairing,,,,kubeflow/fairing,fairing,325,146,40,[],Jsonnet,,"fairing: Python SDK for building, training, and deploying ML models",kubeflow,2022-12-13,2021-08-26,2018-09-03,224,1.4508928571428572,41,2,5,"['google', 'ibm']",,0.0,1,0,52,16,0,1,1,1.0,1.0,90.0,1.0,113,31.65422 -745,perf,https://github.com/blosc/python-blosc,,,,blosc/python-blosc,python-blosc,322,75,12,"['python', 'wrapper', 'blosc', 'compression']",Python,https://www.blosc.org/python-blosc/python-blosc.html,python-blosc: A Python wrapper for the extremely fast Blosc compression library ,blosc,2022-12-14,2022-12-16,2010-09-30,637,0.5050414519381582,43,3,5,"['anaconda', 'cea', 'francescalted']",,0.92,43,41,149,0,1,4,1,43.0,66.0,90.0,1.5,167,49.63854 -719,gis,https://github.com/weecology/deepforest,,,,weecology/deepforest,DeepForest,321,122,15,[],JavaScript,https://deepforest.readthedocs.io/,DeepForest: Python Package for Tree Crown Detection in Airborne RGB imagery,weecology,2022-12-15,2022-12-02,2018-03-07,249,1.2854691075514875,11,4,5,"['rbccapitalmarkets', 'universityofflorida', 'weecology', 'weecology,univofflorida']",,0.71,29,14,58,1,0,13,13,29.0,53.0,90.0,1.8,119,45.85945 -594,gis,https://github.com/geopython/owslib,,,,geopython/owslib,OWSLib,315,257,31,[],Python,https://geopython.github.io/OWSLib,"OWSLib is a Python package for client programming with Open Geospatial Consortium (OGC) web service (hence OWS) interface standards, and their related content models.",geopython,2022-12-14,2022-12-12,2012-01-13,570,0.5522163786626596,138,3,5,"['geopythonwmo-imopengeospatial', 'opensourcegeospatialfoundation', 'planetlabs']",,0.9,20,7,133,0,4,7,4,20.0,28.0,90.0,1.4,308,53.69716 -510,ml-dl,https://github.com/leondgarse/keras_cv_attention_models,,,,leondgarse/keras_cv_attention_models,keras_cv_attention_models,313,51,16,"['tensorflow', 'visualizing', 'keras', 'attention', 'model', 'imagenet', 'coco', 'recognition', 'detection', 'anchor-free', 'tf', 'tf2']",Python,,"keras_cv_attention_models: Keras/Tensorflow models including beit,botnet,CMT,CoaT,CoAtNet,convnext,cotnet,davit,efficientdet,edgenext,efficientformer,efficientnet,fbnet,gcvit,ghostnetv2,gmlp,halonet,hornet,lcnet,levit,maxvit,mlp-mixer,mobilevit,nat,nfnets,regnet,resmlp,resnest,resnext,resnetd,swin,tinynet,uniformer,volo,wavemlp,yolor,yolov7,yolox",leondgarse,2022-12-15,2022-12-04,2021-08-02,72,4.347222222222222,4,3,5,"['koala-team', 'resmonicsag', 'wandb']",,7.21,14,13,17,0,19,68,19,14.0,35.0,90.0,2.5,0,36.27857 -473,ml-dl,https://github.com/nyandwi/modernconvnets,,,,nyandwi/modernconvnets,ModernConvNets,304,31,7,"['convnets', 'deep-learning-algorithms', 'computer-vision', 'tensorflow', 'keras', 'convolutional-neural-networks', 'neural-networks', 'image-classification', 'cnns']",Jupyter Notebook,,ModernConvNets: Revisions and implementations of modern Convolutional Neural Networks architectures in TensorFlow and Keras,nyandwi,2022-12-13,2022-10-05,2022-02-10,44,6.82051282051282,1,1,5,['cargeniemellon'],,0.6,0,0,10,2,0,0,0,0.0,0.0,90.0,0.0,0,9.30326 -500,study,https://github.com/googlecloudplatform/practical-ml-vision-book,,,,googlecloudplatform/practical-ml-vision-book,practical-ml-vision-book,304,138,18,[],Jupyter Notebook,,googlecloudplatform/practical-ml-vision-book,googlecloudplatform,2022-12-17,2022-11-21,2020-11-18,108,2.7963206307490145,6,1,5,['google'],,0.1,0,0,25,1,0,0,0,0.0,0.0,90.0,0.0,9,19.35954 -430,jupyter,https://github.com/chaoleili/jupyterlab_tensorboard,,,,chaoleili/jupyterlab_tensorboard,jupyterlab_tensorboard,295,35,11,"['jupyterlab-extension', 'tensorboard', 'jupyterlab']",TypeScript,,jupyterlab_tensorboard: Tensorboard extension for jupyterlab.,chaoleili,2022-11-11,2022-07-18,2018-08-14,226,1.3003778337531486,7,3,5,"['imec-idlab,departmentofinformationtechnology,ghentuniversity,belgium', 'researchscientistatnvidia', 'sundellopensourceconsultingab']",,0.1,1,0,53,5,0,0,0,1.0,2.0,90.0,2.0,0,23.23875 -788,study,https://github.com/mynameisfiber/high_performance_python_2e,,,,mynameisfiber/high_performance_python_2e,high_performance_python_2e,291,88,6,"['python', 'high-performance', 'code-samples', 'oreilly', 'oreilly-books']",Python,,"high_performance_python_2e: Code for the book ""High Performance Python 2e"" by Micha Gorelick and Ian Ozsvald with OReilly ",mynameisfiber,2022-12-17,2021-01-15,2020-04-12,140,2.076452599388379,2,2,5,"['http://morconsulting.com/', 'occrp,the-markup']",,0.0,0,0,33,23,0,0,0,0.0,0.0,90.0,0.0,0,9.27945 -574,gis,https://github.com/developmentseed/geolambda,,,,developmentseed/geolambda,geolambda,278,84,50,[],Dockerfile,,geolambda: Create and deploy Geospatial AWS Lambda functions,developmentseed,2022-12-09,2021-02-16,2017-05-02,293,0.9460379192999514,6,2,5,"['developmentseed', 'element84']",,0.0,0,0,69,22,0,1,1,0.0,0.0,90.0,0.0,3,17.21887 -524,util,https://github.com/venth/aws-adfs,,,,venth/aws-adfs,aws-adfs,277,91,11,"['aws', 'adfs', 'python', 'command-line', 'tools', 'multi-factor-authentication', 'duo-security']",Python,,aws-adfs: Command line tool to ease aws cli authentication against ADFS (multi factor authentication with active directory),venth,2022-12-14,2022-12-14,2016-06-25,338,0.8188344594594594,46,2,5,"['claranet', 'rancher']",,2.67,47,44,79,0,29,18,29,47.0,37.0,90.0,0.8,5,45.88168 -884,time-series,https://github.com/pastas/pastas,,,,pastas/pastas,pastas,276,54,15,"['hydrology', 'groundwater', 'python', 'timeseries', 'analysis', 'pastas']",Jupyter Notebook,http://pastas.readthedocs.io/,pastas: :spaghetti: Pastas is an open-source Python framework for the analysis of groundwater time series.,pastas,2022-12-17,2022-08-02,2016-04-15,348,0.7921279212792128,17,4,5,"['artesia-water', 'artesiawater', 'karl-franzensuniversityofgraz', 'tudelft']",,1.88,12,6,81,5,3,4,3,12.0,30.0,90.0,2.5,6069,50.62215 -727,web,https://github.com/rstudio/py-shiny,,,,rstudio/py-shiny,py-shiny,275,14,18,[],JavaScript,https://shiny.rstudio.com/py/,py-shiny: Shiny for Python,rstudio,2022-12-13,2022-12-09,2021-07-27,72,3.7745098039215685,7,2,5,"['freelance', 'rstudio']",,11.27,54,32,17,0,8,8,8,54.0,57.0,90.0,1.1,2,36.71642 -827,gis,https://github.com/datasystemslab/geotorch,,,,datasystemslab/geotorch,GeoTorch,272,15,8,"['classification-model', 'convlstm-pytorch', 'deep-learning', 'deep-neural-networks', 'deepsat', 'prediction-model', 'raster-data', 'satellite-images', 'segmentation-models', 'sequence-models', 'spatial-data-analysis', 'spatio-temporal-analysis', 'spatio-temporal-models', 'spatio-temporal-prediction', 'st-resnet', 'satellite-classification']",Python,https://kanchanchy.github.io/geotorch/,GeoTorch: A Spatiotemporal Deep Learning Framework,datasystemslab,2022-12-15,2022-11-27,2022-05-23,30,9.066666666666666,4,2,5,"['amberit', 'wherobots']",,1.96,5,3,7,1,0,0,0,6.0,9.0,90.0,1.5,2,23.13765 -123,util,https://github.com/mgedmin/check-manifest,,,,mgedmin/check-manifest,check-manifest,268,37,7,[],Python,https://pypi.org/p/check-manifest,check-manifest: Tool to check the completeness of MANIFEST.in for Python packages,mgedmin,2022-12-14,2022-12-11,2013-03-05,510,0.5246085011185683,22,4,5,"['nordsoftware', 'pioneervalleybooks', 'programmersofvilnius', 'zestsoftware']",,0.6,4,4,119,0,0,6,6,4.0,8.0,90.0,2.0,789,51.42407 -852,web,https://github.com/conradbez/hstream,,,,conradbez/hstream,hstream,264,11,6,[],Python,,hstream: Hyper Stream,conradbez,2022-12-12,2022-11-24,2022-11-03,6,40.17391304347826,5,1,5,['streamlit'],,0.79,9,9,2,1,0,0,0,9.0,8.0,90.0,0.9,0,16.24061 -210,util,https://github.com/tiangolo/poetry-version-plugin,,,,tiangolo/poetry-version-plugin,poetry-version-plugin,263,24,5,"['python-poetry', 'packaging', 'python', 'python3', 'pypi', 'packaging-for-pypi']",Python,,poetry-version-plugin: Poetry plugin for dynamically extracting the package version from a __version__ variable or a Git tag.,tiangolo,2022-12-15,2021-05-28,2021-05-27,81,3.224168126094571,3,1,5,['belike'],,0.0,1,0,19,19,0,1,1,1.0,0.0,90.0,0.0,0,8.94624 -307,crypto,https://github.com/ethereum/eth-utils,,,,ethereum/eth-utils,eth-utils,263,140,18,"['ethereum', 'python', 'utility-library']",Python,https://eth-utils.readthedocs.io/en/latest/,eth-utils: Utility functions for working with ethereum related codebases.,ethereum,2022-12-03,2022-11-17,2017-02-07,305,0.8598785614198973,31,2,5,"['ethereum', 'ethereumfoundation']",,0.31,12,4,71,1,0,11,11,12.0,15.0,90.0,1.2,92,43.00575 -342,term,https://github.com/rockhopper-technologies/enlighten,,,,rockhopper-technologies/enlighten,enlighten,263,19,4,['python'],Python,https://python-enlighten.readthedocs.io,Enlighten Progress Bar for Python Console Apps,rockhopper-technologies,2022-12-17,2022-12-15,2017-09-22,273,0.9618599791013585,5,1,5,['micaeljarniac'],,0.54,4,3,64,0,2,5,2,4.0,15.0,90.0,3.8,5,33.22458 -385,nlp,https://github.com/kootenpv/contractions,,,,kootenpv/contractions,contractions,263,35,7,[],Python,,contractions: Fixes contractions such as `you're` to you `are`,kootenpv,2022-12-17,2022-11-15,2016-12-25,312,0.8425629290617849,14,2,5,"['japan', 'vankootenaisolutions/mgnr.io']",,0.23,2,0,73,1,0,0,0,2.0,1.0,90.0,0.5,16,29.64106 -508,data,https://github.com/facebookresearch/mephisto,,,,facebookresearch/mephisto,Mephisto,258,57,14,[],JavaScript,https://mephisto.ai/,Mephisto: A suite of tools for managing crowdsourcing tasks from the inception through to data packaging for research use. ,facebookresearch,2022-12-12,2022-12-17,2019-08-19,174,1.4827586206896552,33,1,5,['spectatorpublishingcorrelation-one'],,16.15,76,64,41,0,6,6,6,76.0,85.0,90.0,1.1,80,47.53465 -303,util,https://github.com/airbnb/ottr,,,,airbnb/ottr,ottr,257,27,8,[],Python,,ottr: Serverless Public Key Infrastructure Framework,airbnb,2022-12-17,2022-01-04,2021-08-27,68,3.755741127348643,2,1,5,['coinbase'],,0.02,0,0,16,12,0,0,0,0.0,0.0,90.0,0.0,0,7.1275 -418,pandas,https://github.com/zsailer/pandas_flavor,,,,zsailer/pandas_flavor,pandas_flavor,256,17,6,['pandas'],Python,https://zsailer.github.io/software/pandas-flavor/,pandas_flavor: The easy way to write your own flavor of Pandas,zsailer,2022-12-12,2022-04-17,2018-01-25,255,1.0016769144773616,5,2,5,"['apple', 'bigabid']",,0.38,2,0,60,8,0,0,0,2.0,1.0,90.0,0.5,0,18.06195 -670,gis,https://github.com/cgal/cgal-swig-bindings,,,,cgal/cgal-swig-bindings,cgal-swig-bindings,252,78,26,[],C++,,cgal-swig-bindings: CGAL bindings using SWIG,cgal,2022-12-15,2022-10-19,2015-03-14,405,0.6217835741980966,21,1,5,['geometryfactory'],,2.4,12,7,95,2,3,0,3,12.0,8.0,90.0,0.7,4,33.34485 -693,data,https://github.com/paperswithcode/sota-extractor,,,,paperswithcode/sota-extractor,sota-extractor,251,27,13,[],Python,,sota-extractor: The SOTA extractor pipeline,paperswithcode,2022-12-06,2022-03-09,2018-12-07,210,1.1928038017651053,8,2,5,"['https://alefnula.io', 'metaai']",,0.04,2,1,49,9,0,4,4,2.0,1.0,90.0,0.5,0,21.30531 -587,ml,https://github.com/merantix-momentum/squirrel-core,,,,merantix-momentum/squirrel-core,squirrel-core,249,6,14,"['python', 'ml', 'machine-learning', 'data-science', 'computer-vision', 'cv', 'nlp', 'natural-language-processing', 'ai', 'pytorch', 'tensorflow', 'jax', 'datasets', 'distributed', 'dataops', 'collaboration', 'deep-learning', 'data-mesh', 'data-ingestion', 'cloud-computing']",Python,https://squirrel-core.readthedocs.io/,"squirrel-core: A Python library that enables ML teams to share, load, and transform data in a collaborative, flexible, and efficient way :chestnut:",merantix-momentum,2022-12-07,2022-11-17,2022-02-11,44,5.604501607717042,12,3,5,"['idealointernetgmbh', 'merantix&pw-solutions', 'merantixlabs']",,1.87,17,14,10,1,12,15,12,17.0,21.0,90.0,1.2,0,31.65446 -374,data,https://github.com/ndrplz/google-drive-downloader,,,,ndrplz/google-drive-downloader,google-drive-downloader,249,63,11,[],Python,,google-drive-downloader: Minimal class to download shared files from Google Drive.,ndrplz,2022-11-15,2019-02-09,2017-12-08,262,0.9488296135002722,4,1,5,['nomitri-perceptionaiformobile'],,0.0,4,1,61,47,0,0,0,4.0,1.0,90.0,0.2,0,10.83856 -300,nlp,https://github.com/openai/grade-school-math,,,,openai/grade-school-math,grade-school-math,248,47,7,[],Python,,openai/grade-school-math,openai,2022-12-18,2021-11-19,2021-10-20,60,4.084705882352941,2,1,5,['openai'],,0.0,1,0,14,13,0,0,0,1.0,0.0,90.0,0.0,2,9.05355 -248,util,https://github.com/rpgreen/apilogs,,,,rpgreen/apilogs,apilogs,247,19,9,"['api', 'gateway', 'api-gateway', 'aws', 'cloudwatch-logs', 'logging', 'lambda', 'aws-lambda', 'aws-apigateway']",Python,,apilogs: Easy logging and debugging for Amazon API Gateway and AWS Lambda Serverless APIs,rpgreen,2022-10-23,2019-11-13,2016-09-07,327,0.7537053182214473,23,2,5,"['avira', 'engineeringstableauto']",,0.0,0,0,76,38,0,0,0,0.0,0.0,90.0,0.0,0,15.83822 -714,ml-ops,https://github.com/unionai-oss/unionml,,,,unionai-oss/unionml,unionml,246,38,4,"['machine-learning', 'mlops', 'hacktoberfest']",Python,https://www.union.ai/unionml,UnionML: the easiest way to build and deploy machine learning microservices,unionai-oss,2022-12-16,2022-12-16,2021-11-17,56,4.337531486146096,15,2,5,"['letsopen-source', 'unionai']",,4.79,76,46,13,0,17,16,17,76.0,127.0,90.0,1.7,2,39.51596 -480,pandas,https://github.com/holoviz/spatialpandas,,,,holoviz/spatialpandas,spatialpandas,245,21,22,"['holoviz', 'spatialpandas', 'pandas', 'geopandas', 'geographic-data']",Python,,spatialpandas: Pandas extension arrays for spatial/geometric operations,holoviz,2022-12-16,2022-12-16,2019-10-28,164,1.4939024390243902,9,3,5,"['anaconda', 'datum-tech', 'hextechnologies']",,0.31,8,7,38,0,2,12,2,8.0,2.0,90.0,0.2,2,30.26737 -454,gis,https://github.com/openaddresses/pyesridump,,,,openaddresses/pyesridump,pyesridump,243,59,16,[],Python,,pyesridump: Scrapes an ESRI MapServer REST endpoint to spit out more generally-usable geodata.,openaddresses,2022-12-06,2022-06-19,2013-12-06,471,0.5154545454545455,12,3,5,"['datamade', 'nlt', 'openaddressesdevelopmentseed']",,0.38,3,0,110,6,1,2,1,3.0,7.0,90.0,2.3,0,28.47583 -276,crypto,https://github.com/ethtx/ethtx_ce,,,,ethtx/ethtx_ce,ethtx_ce,239,60,13,[],Python,https://ethtx.info,ethtx_ce: Ethereum transaction decoder (community version).,ethtx,2022-12-14,2022-12-05,2021-07-26,73,3.2739726027397262,7,2,5,"['py-world', 'tokenflowinsights']",,0.71,9,9,17,0,0,0,0,9.0,8.0,90.0,0.9,0,25.0426 -864,ml-ops,https://github.com/astronomer/airflow-chart,,,,astronomer/airflow-chart,airflow-chart,239,87,44,"['helm-chart', 'airflow', 'apache-airflow', 'kubernetes']",Python,,airflow-chart: A Helm chart to install Apache Airflow on Kubernetes,astronomer,2022-12-13,2022-12-16,2020-01-22,151,1.5753295668549905,48,3,5,"['astronomer', 'cerebral', 'mandolin-dev']",,1.58,29,29,35,0,18,29,18,29.0,14.0,90.0,0.5,14,44.48687 -277,data,https://github.com/airbnb/omniduct,,,,airbnb/omniduct,omniduct,238,47,30,[],Python,,"omniduct: A toolkit providing a uniform interface for connecting to and extracting data from a wide variety of (potentially remote) data stores (including HDFS, Hive, Presto, MySQL, etc).",airbnb,2022-12-15,2022-05-09,2017-02-22,303,0.7836312323612418,12,2,5,"['airbnb', 'datascientistatnetflix']",,0.04,0,0,71,7,1,13,1,0.0,0.0,90.0,0.0,0,19.16977 -588,data,https://github.com/tokern/data-lineage,,,,tokern/data-lineage,data-lineage,235,27,8,"['data-lineage', 'data-governance', 'python', 'postgresql', 'jupyter']",Python,https://tokern.io/data-lineage/,data-lineage: Generate and Visualize Data Lineage from query history,tokern,2022-12-18,2022-05-02,2020-03-17,143,1.6335650446871897,4,0,5,[],,0.06,8,0,34,8,0,9,9,8.0,3.0,90.0,0.4,0,14.93178 -657,template,https://github.com/sqlalchemy/mako,,,,sqlalchemy/mako,mako,234,46,10,[],Python,https://www.makotemplates.org,Mako Templates for Python,sqlalchemy,2022-12-07,2022-12-01,2018-11-26,212,1.1037735849056605,59,3,5,"['iter8ve', 'mozilla', 'redhat']",,0.67,7,7,49,1,5,16,5,7.0,17.0,90.0,2.4,1216,50.88298 -870,ml,https://github.com/infer-actively/pymdp,,,,infer-actively/pymdp,pymdp,233,36,23,[],Python,,pymdp: A Python implementation of active inference for Markov Decision Processes,infer-actively,2022-12-10,2022-12-08,2019-11-27,159,1.4588550983899822,12,1,5,['thoughtmachine'],,1.54,7,6,37,0,4,2,4,7.0,9.0,90.0,1.3,8,34.12383 -515,data,https://github.com/jovianml/opendatasets,,,,jovianml/opendatasets,opendatasets,233,109,14,"['data-science', 'machine-learning', 'datasets', 'python']",Python,,"opendatasets: A Python library for downloading datasets from Kaggle, Google Drive, and other online sources.",jovianml,2022-12-18,2022-11-01,2020-09-17,117,1.9817739975698663,3,2,5,"['jovian', 'jovianml']",,0.13,2,0,27,2,0,0,0,2.0,0.0,90.0,0.0,3,18.15162 -229,data,https://github.com/microsoft/genalog,,,,microsoft/genalog,genalog,232,23,10,"['ner', 'ocr-recognition', 'python', 'text-alignment', 'data-generation', 'data-science', 'machine-learning', 'synthetic-data', 'synthetic-images', 'synthetic-data-generation']",Jupyter Notebook,https://microsoft.github.io/genalog/,"Genalog is an open source, cross-platform python package allowing generation of synthetic document images with custom degradations and text alignment capabilities.",microsoft,2022-12-11,2022-09-13,2020-06-15,131,1.7709923664122138,5,1,5,['microsoft'],,0.02,1,1,31,3,0,3,3,1.0,0.0,90.0,0.0,0,16.91704 -737,ml-ops,https://github.com/skops-dev/skops,,,,skops-dev/skops,skops,227,32,7,"['huggingface', 'machine-learning', 'mlops', 'scikit-learn', 'hacktoberfest']",Python,https://skops.readthedocs.io/en/stable/,skops is a Python library helping you share your scikit-learn based models and put them in production,skops-dev,2022-12-18,2022-12-16,2022-05-04,32,6.93886462882096,9,2,5,"['huggingface', 'jsainsburyplc,sainsburys-tech']",,2.48,138,104,8,0,4,6,4,138.0,530.0,90.0,3.8,4,38.30099 -83,ml,https://github.com/stan-dev/pystan,,,,stan-dev/pystan,pystan,226,45,12,[],Python,,"PyStan, a Python interface to Stan, a platform for statistical modeling. Documentation: https://pystan.readthedocs.io",stan-dev,2022-12-16,2022-11-26,2017-09-17,274,0.8243877019280875,11,1,5,['lumoanalytics'],,0.48,23,16,64,1,0,4,4,23.0,58.0,90.0,2.5,26,37.72237 -274,data,https://github.com/amzn/ion-python,,,,amzn/ion-python,ion-python,215,49,23,[],Python,http://amzn.github.io/ion-docs/,ion-python: A Python implementation of Amazon Ion.,amzn,2022-12-16,2022-12-12,2016-04-07,349,0.615038823048631,25,2,5,"['amazon', 'amzn']",,0.33,13,5,82,0,3,2,3,13.0,6.0,90.0,0.5,16,38.05117 -491,gis,https://github.com/cogeotiff/rio-cogeo,,,,cogeotiff/rio-cogeo,rio-cogeo,213,30,44,"['satellite', 'cog', 'geotiff', 'rasterio', 'cogeotiff']",Python,https://cogeotiff.github.io/rio-cogeo/,rio-cogeo: Cloud Optimized GeoTIFF creation and validation plugin for rasterio,cogeotiff,2022-12-16,2022-10-26,2018-03-09,249,0.8539518900343642,13,3,5,"['developmentseed', 'regrowag', 'uav4geo']",,0.63,4,3,58,2,0,12,12,4.0,6.0,90.0,1.5,11,37.22211 -888,study,https://github.com/amaargiru/pyroad,,,,amaargiru/pyroad,pyroad,205,26,5,"['python', 'roadmap', 'tutorial']",Jupyter Notebook,,pyroad: Detailed Python developer roadmap,amaargiru,2022-12-18,2022-12-13,2022-11-03,6,31.195652173913043,1,1,5,['oznadigitalsolutions'],,0.92,2,0,2,0,0,0,0,2.0,4.0,90.0,2.0,0,14.54184 -249,sim,https://github.com/bilhim/trafficsimulator,,,,bilhim/trafficsimulator,trafficSimulator,204,77,13,[],Python,,bilhim/trafficsimulator,bilhim,2022-12-12,2021-09-07,2021-09-05,67,3.0382978723404257,2,0,5,[],,0.0,0,0,16,16,0,0,0,0.0,0.0,90.0,0.0,4,5.92078 -243,ml,https://github.com/carla-recourse/carla,,,,carla-recourse/carla,CARLA,198,42,5,"['python', 'machine-learning', 'artificial-intelligence', 'explainable-ai', 'explainable-ml', 'explainability', 'counterfactual-explanations', 'counterfactuals', 'counterfactual', 'recourse', 'benchmark', 'benchmarking', 'tensorflow', 'tensorflow2', 'pytorch']",Python,,CARLA: A Python Library to Benchmark Algorithmic Recourse and Counterfactual Explanation Algorithms,carla-recourse,2022-12-16,2022-09-07,2020-12-09,105,1.872972972972973,7,1,5,['bezerocarbon'],,0.81,1,0,25,3,0,0,0,1.0,0.0,90.0,0.0,0,15.22609 -240,sim,https://github.com/nv-tlabs/gamegan_code,,,,nv-tlabs/gamegan_code,GameGAN_code,198,32,9,[],Python,,GameGAN_code: Learning to Simulate Dynamic Environments with GameGAN (CVPR 2020),nv-tlabs,2022-12-14,2021-11-11,2020-12-11,105,1.8780487804878048,2,0,5,[],,0.0,0,0,25,13,0,0,0,0.0,0.0,90.0,0.0,2,6.52341 -865,ml-ops,https://github.com/astronomer/astro-sdk,,,,astronomer/astro-sdk,astro-sdk,197,27,13,"['python', 'sql', 'pandas', 'airflow', 'sqlite', 'bigquery', 'postgres', 'snowflake', 'gcs', 's3', 'etl', 'elt', 'dags', 'workflows', 'data-analysis', 'data-science', 'apache-airflow']",Python,https://docs.astronomer.io/learn/astro-python-sdk-etl,"astro-sdk: Astro SDK allows rapid and clean development of {Extract, Load, Transform} workflows using Python and SQL, powered by Apache Airflow.",astronomer,2022-12-18,2022-12-18,2021-12-06,54,3.6481481481481484,32,2,5,"['astronomer', 'astronomerio']",,13.54,677,489,13,0,42,49,42,677.0,784.0,90.0,1.2,112,52.56646 -836,gis,https://github.com/r-barnes/richdem,,,,r-barnes/richdem,richdem,195,57,14,"['digital-elevation-model', 'geosciences', 'geospatial', 'hydrology', 'hydrologic-modeling', 'big-data']",C++,,richdem: High-performance Terrain and Hydrology Analysis ,r-barnes,2022-12-15,2022-11-18,2013-01-06,519,0.3756191524490919,4,2,5,"['universityofcolorado', 'universityofidaho']",,0.79,9,1,121,1,2,2,2,9.0,5.0,90.0,0.6,84,34.882 -733,ml,https://github.com/autonlab/auton-survival,,,,autonlab/auton-survival,auton-survival,194,48,6,"['survival-analysis', 'reliability-analysis', 'python', 'data-science', 'deep-learning', 'machine-learning', 'time-to-event', 'counterfactual-inference', 'regression', 'causal-inference', 'graphical-models']",Python,http://autonlab.github.io/auton-survival,"auton-survival: Auton Survival - an open source package for Regression, Counterfactual Estimation, Evaluation and Phenotyping with Censored Time-to-Events ",autonlab,2022-12-02,2022-11-05,2020-04-01,141,1.3689516129032258,10,2,5,"['carnegiemellonuniversity', 'universityofcambridge']",,2.85,8,5,33,1,0,0,0,8.0,27.0,90.0,3.4,12,34.90097 -859,jupyter,https://github.com/jupyter/nbformat,,,,jupyter/nbformat,nbformat,193,142,26,[],Python,http://nbformat.readthedocs.io/,nbformat: Reference implementation of the Jupyter Notebook format,jupyter,2022-12-01,2022-12-18,2015-04-09,401,0.48061188189256493,70,4,5,"['mongodb', 'noteable-io', 'quansight-labs', 'simularesearchlaboratory']",,3.35,40,30,94,0,9,4,9,40.0,40.0,90.0,1.0,1138,57.95342 -456,gis,https://github.com/graal-research/deepparse,,,,graal-research/deepparse,deepparse,190,23,4,"['machine-learning', 'python', 'addresses-parsing']",Python,https://deepparse.org/,Deepparse is a state-of-the-art library for parsing multinational street addresses using deep learning,graal-research,2022-12-16,2022-12-01,2020-07-01,128,1.4761376248612652,6,1,5,['baseline.québec'],,4.54,17,15,30,1,20,18,20,17.0,15.0,90.0,0.9,34,36.85866 -337,util,https://github.com/mrabarnett/mrab-regex,,,,mrabarnett/mrab-regex,mrab-regex,189,24,5,[],C,,mrabarnett/mrab-regex,mrabarnett,2022-12-17,2022-10-31,2020-11-02,111,1.7027027027027026,9,2,5,"['facebook', 'google']",,0.31,7,6,26,2,0,6,6,7.0,15.0,90.0,2.1,2311,42.54368 -446,gis,https://github.com/pysal/spopt,,,,pysal/spopt,spopt,184,32,13,"['spatial-optimization', 'regionalization', 'facility-location', 'routing', 'transportation', 'spatial-analysis', 'location-allocation', 'location-modeling', 'resource-planning', 'python']",Python,https://pysal.org/spopt/,spopt: Spatial Optimization,pysal,2022-12-14,2022-12-14,2019-03-01,198,0.9272858171346292,15,3,5,"['center-for-open-geographical-science', 'centerforopengeographicalscience', 'ornl']",,6.38,75,58,46,0,3,3,3,75.0,73.0,90.0,1.0,104,46.87672 -207,util,https://github.com/aws/aws-lambda-python-runtime-interface-client,,,,aws/aws-lambda-python-runtime-interface-client,aws-lambda-python-runtime-interface-client,181,42,13,[],Python,,aws/aws-lambda-python-runtime-interface-client,aws,2022-12-18,2022-08-16,2020-09-02,119,1.5119331742243436,21,2,5,"['356', 'amazonwebservices']",,0.31,7,1,28,4,0,3,3,7.0,6.0,90.0,0.9,2,27.78369 -467,math,https://github.com/lukaszahradnik/pyneuralogic,,,,lukaszahradnik/pyneuralogic,PyNeuraLogic,181,14,5,"['machine-learning', 'deep-learning', 'graph-neural-networks', 'relational-learning', 'python', 'geometric-deep-learning', 'pytorch', 'logic-programming', 'differentiable-programming']",Python,https://pyneuralogic.readthedocs.io/,PyNeuraLogic lets you use Python to create Differentiable Logic Programs,lukaszahradnik,2022-12-18,2022-12-18,2020-12-06,106,1.705248990578735,3,2,5,"['adevinta', 'czechtechnicaluniversity']",,7.31,1,1,25,0,16,17,16,1.0,0.0,90.0,0.0,0,26.83212 -899,gis,https://github.com/kuanb/peartree,,,,kuanb/peartree,peartree,181,16,13,"['network-analysis', 'transit', 'graphs', 'gtfs', 'spatial-analysis', 'gis', 'modeling']",Python,,peartree: A library for converting transit data into a directed graph for sketch network analysis.,kuanb,2022-12-15,2021-01-18,2017-11-12,266,0.6800858829844337,5,2,5,"['eradb', 'mapbox']",,0.0,1,0,62,23,0,3,3,1.0,0.0,90.0,0.0,0,15.66025 -520,gis,https://github.com/lydorn/polygonization-by-frame-field-learning,,,,lydorn/polygonization-by-frame-field-learning,Polygonization-by-Frame-Field-Learning,179,51,11,"['segmentation', 'polygonization', 'remote', 'sensing', 'frame', 'field']",Python,,Polygonization-by-Frame-Field-Learning: This repository contains the code for our fast polygonal building extraction from overhead images pipeline.,lydorn,2022-12-15,2022-12-09,2020-05-26,133,1.3372465314834578,1,0,5,[],,0.13,2,0,31,0,0,0,0,2.0,11.0,90.0,5.5,0,19.32606 -585,gis,https://github.com/spatialucr/geosnap,,,,spatialucr/geosnap,geosnap,176,28,17,[],Python,https://spatialucr.github.io/geosnap-guide,geosnap: The Geospatial Neighborhood Analysis Package,spatialucr,2022-12-08,2022-10-24,2018-09-19,221,0.7938144329896907,9,5,5,"['center-for-open-geographical-science', 'centerforopengeographicalscience', 'mansueto-institute', 'ornl', 'universityofnorthtexas']",,0.94,4,2,52,2,4,7,4,4.0,1.0,90.0,0.2,16,33.9214 -731,gis,https://github.com/bowenc0221/boundary-iou-api,,,,bowenc0221/boundary-iou-api,boundary-iou-api,175,17,8,[],Python,,boundary-iou-api: Boundary IoU API (Beta version),bowenc0221,2022-12-15,2021-04-05,2021-03-29,90,1.9444444444444444,2,0,5,[],,0.0,0,0,21,21,0,0,0,0.0,0.0,90.0,0.0,0,3.03493 -266,nlp,https://github.com/allenai/s2orc-doc2json,,,,allenai/s2orc-doc2json,s2orc-doc2json,174,30,6,[],Python,,"s2orc-doc2json: Parsers for scientific papers (PDF2JSON, TEX2JSON, JATS2JSON)",allenai,2022-12-16,2022-12-09,2020-12-10,105,1.6481732070365358,9,3,5,"['allenai', 'castedo.com', 'kafkodersfrontiersin']",,0.13,6,5,25,0,0,0,0,6.0,2.0,90.0,0.3,0,25.05772 -33,gis,https://github.com/jasonrig/address-net,,,,jasonrig/address-net,address-net,171,71,13,"['rnn', 'deep-learning', 'machine-learning', 'address-parser']",Python,,address-net: A package to structure Australian addresses,jasonrig,2022-12-01,2020-09-09,2018-12-05,210,0.8115254237288135,2,2,5,"['deceptiveai', 'monash-mercpay-baymax']",,0.0,2,0,49,28,0,0,0,2.0,5.0,90.0,2.5,0,15.83578 -461,nlp,https://github.com/yoadtew/zero-shot-image-to-text,,,,yoadtew/zero-shot-image-to-text,zero-shot-image-to-text,165,23,7,[],Python,,zero-shot-image-to-text: Implementation of Zero-Shot Image-to-Text Generation for Visual-Semantic Arithmetic,yoadtew,2022-12-11,2022-09-17,2021-11-26,55,2.9768041237113403,6,0,5,[],,0.12,7,2,13,3,0,0,0,7.0,1.0,90.0,0.1,0,11.24106 -415,ml-dl,https://github.com/rafiqhasan/auto-tensorflow,,,,rafiqhasan/auto-tensorflow,auto-tensorflow,163,33,12,"['tensorflow', 'deeplearning', 'neural-networks', 'machinelearning', 'tfx', 'machine-learning', 'automl', 'auto-tensorflow', 'autotensorflow']",Python,,auto-tensorflow: Build Low Code Automated Tensorflow explainable models in just 3 lines of code. Library created by: Hasan Rafiq - https://www.linkedin.com/in/sam04/,rafiqhasan,2022-12-17,2022-12-09,2021-07-05,76,2.1447368421052633,1,1,5,['google'],,0.1,0,0,18,0,2,5,2,0.0,0.0,90.0,0.0,0,14.66177 -819,time-series,https://github.com/salesforce/deeptime,,,,salesforce/deeptime,DeepTime,161,22,5,"['deep-learning', 'forecasting', 'meta-learning', 'time-series', 'time-series-forecasting', 'time-series-regression', 'implicit-neural-representation']",Python,,PyTorch code for DeepTime: Deep Time-Index Meta-Learning for Non-Stationary Time-Series Forecasting,salesforce,2022-12-17,2022-11-03,2022-06-27,25,6.44,2,0,5,[],,0.21,3,1,6,2,0,0,0,3.0,9.0,90.0,3.0,0,12.75654 -339,perf,https://github.com/tlkh/tf-metal-experiments,,,,tlkh/tf-metal-experiments,tf-metal-experiments,160,17,9,"['gpu', 'deep-learning', 'tensorflow', 'm1', 'm1-max', 'benchmark', 'bert']",Jupyter Notebook,,tf-metal-experiments: TensorFlow Metal Backend on Apple Silicon Experiments (just for fun),tlkh,2022-11-30,2021-11-15,2021-10-26,59,2.6730310262529833,2,1,5,['singaporeuniversityoftechnologyanddesign'],,0.0,1,1,14,13,0,0,0,1.0,0.0,90.0,0.0,0,7.56236 -890,graph,https://github.com/h4kor/graph-force,,,,h4kor/graph-force,graph-force,159,0,9,"['force-directed-graphs', 'graph-algorithms', 'python', 'python3']",Rust,https://pypi.org/project/graph-force/,"graph-force: Python library for embedding large graphs in 2D space, using force-directed layouts.",h4kor,2022-12-15,2022-11-28,2022-11-28,3,53.0,2,0,5,[],,0.77,4,0,1,1,0,0,0,4.0,0.0,90.0,0.0,0,5.11876 -743,study,https://github.com/koaning/calm-notebooks,,,,koaning/calm-notebooks,calm-notebooks,158,135,7,[],Jupyter Notebook,https://calmcode.io,calm-notebooks: notebooks that are used at calmcode.io,koaning,2022-12-15,2021-10-21,2020-03-01,146,1.0811339198435972,1,1,5,['explosion'],,0.0,0,0,34,14,0,0,0,0.0,0.0,90.0,0.0,5,10.60689 -775,sim,https://github.com/activitysim/activitysim,,,,activitysim/activitysim,activitysim,145,86,43,"['python', 'travel-modeling', 'data-science', 'bsd-3-clause', 'microsimulation', 'activitysim']",Jupyter Notebook,https://activitysim.github.io,activitysim: An Open Platform for Activity-Based Travel Modeling,activitysim,2022-12-14,2022-09-14,2014-06-18,443,0.3267868641339343,25,5,5,"['cambridgesystematics|georgiatech', 'populus-ai', 'populus-aimapcraftlabsoaklandanalytics', 'ptvgroup', 'rsginc']",,2.9,43,19,104,3,4,2,4,43.0,68.0,90.0,1.6,28,45.77213 -606,util,https://github.com/pyscript/pyscript-cli,,,,pyscript/pyscript-cli,pyscript-cli,142,14,12,[],Python,,pyscript-cli: A CLI for PyScript,pyscript,2022-12-16,2022-12-13,2022-05-01,33,4.2844827586206895,7,1,5,['anaconda'],,1.35,5,4,8,0,0,9,9,5.0,4.0,90.0,0.8,0,24.94297 -869,util,https://github.com/hugovk/pypistats,,,,hugovk/pypistats,pypistats,138,25,4,"['python', 'python3', 'pypi', 'statistics', 'stats', 'api', 'cli', 'command-line', 'command-line-tool', 'downloads', 'hacktoberfest']",Python,https://pypistats.org/api/,pypistats: Command-line interface to PyPI Stats API to get download stats for Python packages,hugovk,2022-12-15,2022-12-03,2018-09-22,221,0.6236281471917366,12,1,5,['nordsoftware'],,1.42,14,13,52,0,3,6,3,14.0,11.0,90.0,0.8,8,34.33206 -901,gis,https://github.com/amazon-science/earth-forecasting-transformer,,,,amazon-science/earth-forecasting-transformer,earth-forecasting-transformer,137,20,7,[],Jupyter Notebook,,earth-forecasting-transformer: Official implementation of Earthformer,amazon-science,2022-12-17,2022-12-15,2022-09-12,14,9.785714285714286,5,5,5,"['amazon', 'amazonai', 'amazonwebservices', 'hongkonguniversityofscienceandtechnology', 'universityoftennessee']",,0.71,39,38,3,0,0,0,0,39.0,46.0,90.0,1.2,0,26.47835 -231,template,https://github.com/crmne/cookiecutter-modern-datascience,,,,crmne/cookiecutter-modern-datascience,cookiecutter-modern-datascience,136,27,3,"['cookiecutter', 'cookiecutter-template', 'cookiecutter-data-science', 'python', 'datascience']",Python,,cookiecutter-modern-datascience: Start a data science project with modern tools,crmne,2022-12-14,2022-06-10,2020-07-06,128,1.0625,2,1,5,['freshflowai'],,0.02,4,0,30,6,0,0,0,4.0,2.0,90.0,0.5,0,12.95187 -826,diffusion,https://github.com/thereforegames/unprompted,,,,thereforegames/unprompted,unprompted,134,10,4,[],Python,,unprompted: Text generator written for Stable Diffusion workflows.,thereforegames,2022-12-16,2022-12-14,2022-10-31,7,19.142857142857142,2,1,5,['awesomehamster'],,1.29,22,16,2,0,0,0,0,22.0,74.0,90.0,3.4,0,20.95058 -564,gis,https://github.com/geopandas/pyogrio,,,,geopandas/pyogrio,pyogrio,134,8,8,[],Python,https://pyogrio.readthedocs.io,pyogrio: Vectorized vector I/O using OGR,geopandas,2022-12-16,2022-12-18,2020-03-27,142,0.9408224674022067,8,2,5,"['astutespruce', 'udl-ai']",,1.87,43,29,33,0,6,3,6,43.0,84.0,90.0,2.0,5,38.2158 -147,graph,https://github.com/guyallard/markov_clustering,,,,guyallard/markov_clustering,markov_clustering,132,33,9,"['markov-clustering', 'clustering', 'python', 'networks']",Python,,markov_clustering: markov clustering in python,guyallard,2022-11-15,2018-12-11,2017-09-27,272,0.48402304871660556,3,0,5,[],,0.0,2,1,64,49,0,0,0,2.0,1.0,90.0,0.5,0,7.43119 -774,sim,https://github.com/openfisca/openfisca-core,,,,openfisca/openfisca-core,openfisca-core,131,71,24,"['legislation-as-code', 'rules-as-code', 'better-rules', 'microsimulation']",Python,https://openfisca.org,openfisca-core: OpenFisca core engine. See other repositories for countries-specific code & data.,openfisca,2022-12-06,2022-12-12,2013-12-29,468,0.27982911199267624,58,1,5,['codeworksfrance'],,3.31,61,35,109,0,0,43,43,62.0,83.0,90.0,1.3,53,50.57802 -785,util,https://github.com/brokenloop/jsontopydantic,,,,brokenloop/jsontopydantic,jsontopydantic,128,7,3,[],TypeScript,https://jsontopydantic.com,jsontopydantic: Web tool for generating Pydantic models from JSON objects,brokenloop,2022-12-12,2022-05-13,2020-11-28,107,1.193075898801598,2,0,5,[],,0.08,2,0,25,7,0,0,0,2.0,0.0,90.0,0.0,0,6.81611 -290,template,https://github.com/eugeneyan/python-collab-template,,,,eugeneyan/python-collab-template,python-collab-template,125,35,4,"['python', 'unit-testing', 'linting', 'type-checking', 'github-actions', 'makefile', 'coverage', 'hacktoberfest']",Python,https://eugeneyan.com/writing/setting-up-python-project-for-automation-and-collaboration/,"python-collab-template: 🛠 Python project template with unit tests, code coverage, linting, type checking, Makefile wrapper, and GitHub Actions.",eugeneyan,2022-12-13,2022-07-02,2020-06-21,130,0.960482985729967,2,1,5,['amzn'],,0.04,0,0,30,6,0,0,0,0.0,0.0,90.0,0.0,0,10.15293 -583,web,https://github.com/developmentseed/fastai-serving,,,,developmentseed/fastai-serving,fastai-serving,121,11,8,"['machine-learning', 'python', 'deep-learning', 'pytorch', 'docker']",Python,,"fastai-serving: A Docker image for serving fast.ai models, mimicking the API of Tensorflow Serving",developmentseed,2022-04-08,2020-02-10,2019-07-01,181,0.6685082872928176,2,1,5,['cloud-gov(work)+personalprojects;'],,0.0,0,0,42,35,0,0,0,0.0,0.0,90.0,0.0,0,6.87157 -305,util,https://github.com/xrudelis/pytrait,,,,xrudelis/pytrait,pytrait,121,3,3,[],Python,,pytrait: Traits for Python3,xrudelis,2022-11-15,2021-11-27,2021-11-21,56,2.1552162849872776,2,0,5,[],,0.0,0,0,13,13,0,0,0,0.0,0.0,90.0,0.0,0,3.03493 -555,ml,https://github.com/nicolas-chaulet/torch-points3d,,,,nicolas-chaulet/torch-points3d,torch-points3d,118,30,0,[],,https://torch-points3d.readthedocs.io/en/latest/,torch-points3d: Pytorch framework for doing deep learning on point clouds.,nicolas-chaulet,2022-12-12,2021-12-10,2022-01-09,49,2.4011627906976742,29,3,5,"['canoapbc', 'grid.ai|pytorchlightning', 'universityoftexasatdallas']",,0.0,0,0,11,12,0,11,11,0.0,0.0,90.0,0.0,38,27.00509 -316,util,https://github.com/irmen/pyminiaudio,,,,irmen/pyminiaudio,pyminiaudio,117,13,3,[],C,,"pyminiaudio: python interface to the miniaudio audio playback, recording, decoding and conversion library",irmen,2022-11-22,2022-11-15,2019-06-30,181,0.6458990536277602,4,1,5,['closedlooplabs'],,0.44,4,4,42,1,7,9,7,4.0,6.0,90.0,1.5,8,29.75635 -571,gis,https://github.com/developmentseed/geojson-pydantic,,,,developmentseed/geojson-pydantic,geojson-pydantic,113,27,11,"['geojson', 'pydantic', 'geojson-spec']",Python,,geojson-pydantic: Pydantic data models for the GeoJSON spec,developmentseed,2022-11-29,2022-12-16,2020-05-21,134,0.8397027600849257,19,3,5,"['bigbear.ai', 'cloud-gov(work)+personalprojects;', 'developmentseed']",,1.21,4,1,31,0,0,6,6,4.0,3.0,90.0,0.8,5,35.69967 -893,sim,https://github.com/crowdbotp/socialways,,,,crowdbotp/socialways,socialways,110,45,9,"['trajectory-prediction', 'human-trajectory-prediction', 'gan', 'social-navigation', 'social-ways', 'pedestrian-trajectories', 'pedestrian', 'social-gan', 'social-robots', 'generative-adversarial-network', 'trajectory-forecasting', 'self-driving-car', 'prediction-model', 'info-gan', 'crowd-simulation']",Python,,socialways: Social Ways: Learning Multi-Modal Distributions of Pedestrian Trajectories with GANs (CVPR 2019),crowdbotp,2022-12-13,2020-03-20,2019-04-23,190,0.5763473053892215,3,2,5,"['cimat', 'inriaresearchcenter']",,0.0,0,0,44,33,0,0,0,0.0,0.0,90.0,0.0,0,9.90736 -407,data,https://github.com/google/weather-tools,,,,google/weather-tools,weather-tools,109,23,12,"['python', 'apache-beam', 'weather']",Python,https://weather-tools.readthedocs.io/,weather-tools: Apache Beam pipelines to make weather data accessible and useful.,google,2022-12-14,2022-12-13,2021-11-22,56,1.9464285714285714,25,1,5,['infocuspinnovationspvt.ltd.'],,2.19,48,25,13,0,8,8,8,48.0,29.0,90.0,0.6,0,31.70445 -466,nlp,https://github.com/infinitylogesh/mutate,,,,infinitylogesh/mutate,mutate,105,7,3,"['nlp-library', 'text-generation', 'language-model', 'data-augmentation', 'data-labeling']",Python,,mutate: A library to synthesize text datasets using Large Language Models (LLM),infinitylogesh,2022-11-08,2022-04-18,2021-12-29,50,2.0704225352112675,2,1,5,['argilla'],,0.27,0,0,12,8,0,0,0,0.0,0.0,90.0,0.0,0,7.74479 -463,data,https://github.com/psycoguana/subredditmediadownloader,,,,psycoguana/subredditmediadownloader,SubredditMediaDownloader,102,7,3,[],Python,,SubredditMediaDownloader: Simple Python script to download images and videos from public subreddits without using Reddit's API 😎,psycoguana,2022-12-16,2022-11-20,2022-02-18,43,2.348684210526316,2,0,5,[],,0.4,7,7,10,1,0,0,0,7.0,21.0,90.0,3.0,0,16.54447 -527,ml,https://github.com/hazyresearch/domino,,,,hazyresearch/domino,domino,99,14,20,[],Python,,hazyresearch/domino,hazyresearch,2022-12-16,2022-08-02,2021-11-29,55,1.8,6,0,5,[],,1.19,4,1,13,5,1,6,1,4.0,0.0,90.0,0.0,6,15.10553 -847,gis,https://github.com/remotesensinglab/raster4ml,,,,remotesensinglab/raster4ml,raster4ml,97,12,4,"['agriculture-research', 'data-science', 'geospatial-data', 'machine-learning', 'remote-sensing', 'vegetation', 'vegetation-index', 'python']",Python,https://raster4ml.readthedocs.io,raster4ml: A geospatial raster processing library for machine learning,remotesensinglab,2022-12-04,2022-11-01,2022-07-11,23,4.217391304347826,1,1,5,['saintlouisuniversity'],,0.96,0,0,5,2,1,2,1,0.0,0.0,90.0,0.0,0,9.39903 -533,gis,https://github.com/gdaosu/lod2buildingmodel,,,,gdaosu/lod2buildingmodel,LOD2BuildingModel,96,23,9,[],Python,,LOD2BuildingModel: SAT2LoD2: Automated LoD-2 Model Reconstruction from Satellite-derived DSM and Orthophoto,gdaosu,2022-12-06,2022-07-21,2021-08-30,68,1.411764705882353,2,1,5,['ohiostateuniversity'],,0.85,1,0,16,5,0,0,0,1.0,1.0,90.0,1.0,0,13.45798 -529,nlp,https://github.com/hazyresearch/fonduer-tutorials,,,,hazyresearch/fonduer-tutorials,fonduer-tutorials,96,23,18,[],Jupyter Notebook,https://github.com/HazyResearch/fonduer,fonduer-tutorials: A collection of simple tutorials for using Fonduer,hazyresearch,2022-12-01,2020-05-27,2018-03-23,247,0.38799076212471134,6,3,5,"['https://snorkel.ai/', 'numbersstationai', 'vodafone']",,0.0,0,0,58,31,0,3,3,0.0,0.0,90.0,0.0,0,16.15219 -457,nlp,https://github.com/coastalcph/lex-glue,,,,coastalcph/lex-glue,lex-glue,95,22,6,"['legal', 'nlp', 'benchmark', 'legaltech', 'lawtech']",Python,,lex-glue: LexGLUE: A Benchmark Dataset for Legal Language Understanding in English,coastalcph,2022-12-08,2022-11-04,2021-09-27,64,1.484375,2,0,5,[],,0.6,4,4,15,1,0,0,0,4.0,11.0,90.0,2.8,8,20.76397 -781,gis,https://github.com/ghislainv/forestatrisk,,,,ghislainv/forestatrisk,forestatrisk,95,20,4,"['python', 'land-use-change', 'spatial-modelling', 'spatial-analysis', 'forecasting', 'spatial-autocorrelation', 'tropical-forests', 'roads', 'protected-areas', 'biodiversity-scenario', 'ipbes', 'co2-emissions', 'ipcc', 'forest-cover-change', 'deforestation', 'deforestation-risk', 'redd']",Python,https://ecology.ghislainv.fr/forestatrisk,forestatrisk: :package: :snake: Python package to model and forecast the risk of deforestation,ghislainv,2022-11-07,2022-08-23,2016-12-01,315,0.30104119511090993,6,5,5,"['cirad', 'faoopenforis', 'lancasteruniversity', 'uiuc', 'weecology,univofflorida']",,0.56,1,0,74,4,1,0,1,1.0,0.0,90.0,0.0,22,28.9049 -558,gis,https://github.com/darribas/gds_env,,,,darribas/gds_env,gds_env,93,37,10,"['geographic-data-science', 'docker', 'python', 'r', 'latex', 'jupyter-lab']",Jupyter Notebook,https://darribas.org/gds_env,gds_env: A containerised platform for Geographic Data Science,darribas,2022-11-16,2022-12-09,2016-08-12,331,0.2806034482758621,8,3,5,"['actions', 'udl-ai', 'universityofliverpool']",,0.83,3,0,77,0,1,2,1,3.0,1.0,90.0,0.3,79,35.75315 -835,typing,https://github.com/jellezijlstra/autotyping,,,,jellezijlstra/autotyping,autotyping,91,8,3,[],Python,,jellezijlstra/autotyping,jellezijlstra,2022-12-18,2022-12-18,2021-06-25,77,1.1752767527675276,6,3,5,"['quora', 'sendcloud', 'softformance']",,0.25,12,7,18,0,2,1,2,12.0,23.0,90.0,1.9,3,31.95208 -534,ml-dl,https://github.com/benedekrozemberczki/tigerlily,,,,benedekrozemberczki/tigerlily,tigerlily,90,10,1,"['node', 'embedding', 'node-embedding', 'graph-embedding', 'ddi', 'drug-drug-interaction', 'gradient-boosting', 'graph', 'pharmaceuticals', 'network-science', 'biology', 'heterogeneous-graph', 'knowledge-graph', 'deep-learning', 'machine-learning', 'unsupervised-learning', 'tigergraph', 'graph-database', 'graph-machine-learning']",Jupyter Notebook,,TigerLily: Finding drug interactions in silico with the Graph.,benedekrozemberczki,2022-09-11,2022-12-17,2022-02-28,42,2.142857142857143,1,1,5,['isomorphiclabs'],,1.98,0,0,10,0,1,1,1,0.0,0.0,90.0,0.0,0,14.29446 -667,gis,https://github.com/zorzi-s/polyworldpretrainednetwork,,,,zorzi-s/polyworldpretrainednetwork,PolyWorldPretrainedNetwork,90,13,7,[],Python,,PolyWorldPretrainedNetwork: PolyWorld: Polygonal Building Extraction with Graph Neural Networks in Satellite Images,zorzi-s,2022-12-17,2022-11-10,2022-03-23,38,2.3247232472324724,1,0,5,[],,0.4,7,2,9,1,0,0,0,7.0,19.0,90.0,2.7,0,14.18236 -744,ml-ops,https://github.com/aiqc/aiqc,,,,aiqc/aiqc,AIQC,88,19,4,[],Jupyter Notebook,,AIQC: End-to-end deep learning on your desktop or server.,aiqc,2022-11-21,2022-12-16,2020-12-02,106,0.8246318607764391,8,2,5,"['aiqc', 'deuteronomyworks']",,8.5,0,0,25,0,0,0,0,0.0,0.0,90.0,0.0,2,25.25604 -485,gis,https://github.com/scisco/area,,,,scisco/area,area,87,19,3,[],Python,,area: Calculate the area inside of any GeoJSON geometry. This is a port of Mapbox's geojson-area for Python,scisco,2022-12-14,2018-10-31,2015-11-25,368,0.23595505617977527,3,0,5,[],,0.0,0,0,86,50,0,0,0,0.0,0.0,90.0,0.0,0,5.13983 -269,term,https://github.com/deeplook/sparklines,,,,deeplook/sparklines,sparklines,83,6,3,"['python', 'command-line-tool', 'graphs', 'ascii', 'sparklines', 'sparkline-graphs']",Python,,sparklines: Text-based sparkline command line mimicking those of Edward Tuft.,deeplook,2022-11-26,2021-06-26,2016-05-17,343,0.2413793103448276,7,3,5,"['deepsourcelabs', 'investnext', 'quantifiedcode']",,0.0,0,0,80,18,0,0,0,0.0,0.0,90.0,0.0,0,16.10308 -746,data,https://github.com/ktrueda/parquet-tools,,,,ktrueda/parquet-tools,parquet-tools,82,10,3,"['parquet', 'parquet-tools', 'cli']",Python,,parquet-tools: easy install parquet-tools,ktrueda,2022-12-07,2022-06-14,2020-05-02,137,0.5972944849115505,10,2,5,"['discogs', 'shopify']",,0.1,2,0,32,6,2,6,2,2.0,0.0,90.0,0.0,5,21.9127 -562,gis,https://github.com/geopandas/xyzservices,,,,geopandas/xyzservices,xyzservices,81,19,11,[],Python,https://xyzservices.readthedocs.io/,xyzservices: Source of XYZ tiles providers,geopandas,2022-12-06,2022-12-15,2021-05-21,82,0.9826689774696707,17,2,5,"['quantstack', 'udl-ai']",,1.13,9,6,19,0,7,10,7,9.0,5.0,90.0,0.6,0,30.65109 -668,gis,https://github.com/zorzi-s/projectregularization,,,,zorzi-s/projectregularization,projectRegularization,80,7,2,[],Python,,projectRegularization: Regularization of Building Boundaries using Adversarial and Regularized losses,zorzi-s,2022-11-10,2021-09-17,2021-05-18,82,0.9655172413793104,1,0,5,[],,0.0,0,0,19,15,0,0,0,0.0,0.0,90.0,0.0,0,2.46223 -842,jupyter,https://github.com/cmudig/autoprofiler,,,,cmudig/autoprofiler,AutoProfiler,79,4,1,"['jupyter', 'pandas', 'python']",Svelte,,AutoProfiler: Automatically profile dataframes in the Jupyter sidebar,cmudig,2022-12-04,2022-12-16,2022-03-24,38,2.0481481481481483,2,2,5,"['cmu', 'cmu,apple']",,3.58,94,70,9,0,0,0,0,94.0,41.0,90.0,0.4,0,24.1815 -769,ml-dl,https://github.com/praw-dev/asyncpraw,,,,praw-dev/asyncpraw,asyncpraw,79,14,3,"['python', 'api', 'oauth', 'reddit', 'reddit-api', 'async', 'asyncpraw', 'praw']",Python,https://asyncpraw.readthedocs.io,"asyncpraw: Async PRAW, an abbreviation for ""Asynchronous Python Reddit API Wrapper"", is a python package that allows for simple access to Reddit's API.",praw-dev,2022-12-18,2022-12-09,2019-02-05,201,0.3913658881811748,226,4,5,"['appfolio', 'billy', 'indeed', 'netflix']",,4.1,29,26,47,0,2,3,2,29.0,12.0,90.0,0.4,14,48.02319 -327,security,https://github.com/sonatype-nexus-community/jake,,,,sonatype-nexus-community/jake,jake,75,19,8,"['python', 'vulnerabilities', 'vulnerability-scanners', 'ossindex', 'nexus-iq', 'sonatype-iq']",Python,https://jake.readthedocs.io/,jake: Check your Python environments for vulnerable Open Source packages with OSS Index or Sonatype Nexus Lifecycle.,sonatype-nexus-community,2022-12-14,2022-12-14,2019-10-10,166,0.4502572898799314,15,3,5,"['nginxinc', 'sonatype', 'sonatypecyclonedx']",,1.0,5,4,39,0,12,41,12,5.0,8.0,90.0,1.6,30,41.82917 -851,profiling,https://github.com/kshitij12345/torchnnprofiler,,,,kshitij12345/torchnnprofiler,torchnnprofiler,72,2,4,[],Python,,torchnnprofiler: Context Manager to profile the forward and backward times of PyTorch's nn.Module,kshitij12345,2022-12-16,2022-11-02,2022-10-22,8,8.689655172413794,1,1,5,['quansight'],,0.96,6,3,2,2,0,0,0,6.0,1.0,90.0,0.2,2,11.50637 -530,ml,https://github.com/brohrer/cottonwood,,,,brohrer/cottonwood,cottonwood,72,13,14,[],Python,https://end-to-end-machine-learning.teachable.com/p/write-a-neural-network-framework/,cottonwood: A flexible neural network framework for running experiments and trying ideas.,brohrer,2022-09-23,2020-02-02,2019-09-29,168,0.4282073067119796,3,2,5,"['azerbaijanpug', 'tum,imperialcollege,openmined']",,0.0,0,0,39,35,0,4,4,0.0,0.0,90.0,0.0,11,16.80633 -584,gis,https://github.com/developmentseed/cogeo-mosaic,,,,developmentseed/cogeo-mosaic,cogeo-mosaic,70,19,8,[],Python,https://developmentseed.org/cogeo-mosaic/,cogeo-mosaic: Create and use COG mosaic based on mosaicJSON,developmentseed,2022-12-14,2022-11-21,2019-05-14,187,0.3726235741444867,8,3,5,"['developmentseed', 'regrowag', 'satellogic']",,0.44,7,6,44,1,0,11,11,7.0,7.0,90.0,1.0,6,34.77557 -234,crypto,https://github.com/blockchainsllc/in3,,,,blockchainsllc/in3,in3,65,18,12,"['blockchain', 'verify', 'crypto-economic', 'ethereum', 'ipfs']",C,https://in3.readthedocs.io/en/develop/index.html,in3: The IN3 client (written in C).,blockchainsllc,2022-11-17,2022-04-01,2019-09-17,169,0.3826745164003364,35,2,5,"['blockchains', 'sni']",,3.81,2,0,40,9,0,28,28,2.0,2.0,90.0,1.0,3,33.49362 -568,sim,https://github.com/gboeing/street-network-models,,,,gboeing/street-network-models,street-network-models,64,4,2,[],Python,https://osf.io/f2dqc,street-network-models: Street network models and indicators for every urban area in the world,gboeing,2022-12-13,2021-03-05,2020-04-13,140,0.45714285714285713,1,1,5,['universityofsoutherncalifornia'],,0.0,0,0,33,22,0,0,0,0.0,0.0,90.0,0.0,2,8.24433 -453,gis,https://github.com/googlecloudplatform/dataflow-geobeam,,,,googlecloudplatform/dataflow-geobeam,dataflow-geobeam,61,25,9,[],Python,,googlecloudplatform/dataflow-geobeam,googlecloudplatform,2022-11-08,2022-11-29,2021-02-04,97,0.6251830161054173,5,3,5,"['calthorpeanalytics', 'carto', 'google']",,0.79,6,3,23,1,0,3,3,6.0,3.0,90.0,0.5,4,28.2204 -535,gis,https://github.com/cloudsen12/easystac,,,,cloudsen12/easystac,easystac,57,1,3,"['stac', 'remote-sensing', 'gis', 'earth-observation', 'python', 'python3', 'spatio-temporal', 'spatio-temporal-data', 'planetary-computer', 'radiant']",Python,https://easystac.readthedocs.io/,easystac: A Python package for simple STAC queries,cloudsen12,2022-11-26,2022-08-07,2022-01-20,47,1.1981981981981982,3,3,5,"['emcdestudent', 'regrowag', 'rsc4earth|universityofleipzig']",,1.06,0,0,11,4,1,1,1,0.0,0.0,90.0,0.0,0,15.24661 -521,gis,https://github.com/lydorn/mapalignment,,,,lydorn/mapalignment,mapalignment,55,14,4,[],Python,,mapalignment: Aligning and Updating Cadaster Maps with Remote Sensing Images,lydorn,2022-12-16,2020-09-03,2018-09-05,223,0.24584929757343552,2,0,5,[],,0.0,1,0,52,28,0,0,0,1.0,0.0,90.0,0.0,0,4.99287 -854,util,https://github.com/backtick-se/cowait,,,,backtick-se/cowait,cowait,55,5,8,"['python', 'task-scheduler', 'data-science', 'data-engineering', 'spark', 'dask', 'kubernetes', 'docker', 'workflow-engine']",Python,https://cowait.io,cowait: Containerized distributed programming framework for Python,backtick-se,2022-11-16,2022-09-22,2019-09-18,169,0.32407407407407407,10,1,5,['backticktechnologies'],,0.33,13,2,40,3,3,14,3,13.0,2.0,90.0,0.2,0,22.04893 -816,util,https://github.com/aws-samples/sagemaker-ssh-helper,,,,aws-samples/sagemaker-ssh-helper,sagemaker-ssh-helper,51,7,6,"['amazon-sagemaker', 'aws', 'aws-systems-manager', 'machine-learning', 'pycharm', 'sagemaker', 'sagemaker-studio', 'ssh', 'vscode']",Python,,sagemaker-ssh-helper: A helper library to connect into Amazon SageMaker with AWS Systems Manager and SSH,aws-samples,2022-12-15,2022-12-15,2022-10-14,9,5.409090909090909,4,2,5,"['amazon', 'amazonwebservices(aws)']",,0.5,9,5,2,0,3,18,3,9.0,16.0,90.0,1.8,0,22.89248 -326,security,https://github.com/snyk-labs/pysnyk,,,,snyk-labs/pysnyk,pysnyk,50,91,10,"['snyk', 'python', 'api']",Python,https://snyk.docs.apiary.io/,pysnyk: A Python client for the Snyk API.,snyk-labs,2022-11-04,2022-12-12,2019-02-03,202,0.24734982332155478,22,3,5,"['gitpod-io', 'replicated.com', 'snyk']",,0.29,10,1,47,0,8,5,8,10.0,4.0,90.0,0.4,4,35.76346 -400,study,https://github.com/dylanhogg/crazy-awesome-python,,,,dylanhogg/crazy-awesome-python,crazy-awesome-python,47,8,3,"['python', 'python-data', 'awesome-list', 'python-machine-learning', 'python-nlp', 'python-frameworks', 'python-library', 'data', 'machine-learning', 'natural-language-processing']",HTML,https://www.awesomepython.org/,"crazy-awesome-python: A curated list of awesome Python frameworks, with a bias towards data and machine learning",dylanhogg,2022-12-09,2022-12-10,2020-06-20,130,0.3607456140350877,2,0,5,[],,1.62,6,6,30,0,0,2,2,6.0,0.0,90.0,0.0,0,17.7477 -401,crypto,https://github.com/dylanhogg/crazy-awesome-crypto,,,,dylanhogg/crazy-awesome-crypto,crazy-awesome-crypto,43,13,4,"['crypto', 'cryptocurrency', 'blockchain', 'bitcoin', 'ethereum', 'awesome-list', 'data', 'data-analysis', 'github', 'awesome']",Python,https://www.awesomecrypto.xyz/,crazy-awesome-crypto: A list of awesome crypto and blockchain projects,dylanhogg,2022-12-16,2022-12-10,2021-09-27,64,0.671875,1,0,5,[],,0.63,0,0,15,0,0,2,2,0.0,0.0,90.0,0.0,0,11.50913 -202,crypto,https://github.com/nerolation/ethereum-datafarm,,,,nerolation/ethereum-datafarm,ethereum-datafarm,37,8,1,[],Python,,ethereum-datafarm: Scrap blockchain data from the public API of Etherscan.io,nerolation,2022-12-18,2022-11-19,2021-03-13,92,0.40092879256965946,1,1,5,['viennauniversityofeconomicsandbusiness(wu)'],,1.71,0,0,22,1,0,0,0,0.0,0.0,90.0,0.0,0,13.00466 -776,sim,https://github.com/activitysim/populationsim,,,,activitysim/populationsim,populationsim,37,27,11,"['python', 'data-science', 'population-synthesis', 'activitysim', 'bsd-3-clause', 'microsimulation']",Jupyter Notebook,https://activitysim.github.io/populationsim,populationsim: An Open Platform for Population Synthesis,activitysim,2022-08-23,2021-11-19,2017-02-14,304,0.12136832239925023,9,2,5,"['ptvgroup', 'rsginc']",,0.0,1,0,71,13,0,1,1,1.0,3.0,90.0,3.0,0,23.36645 -821,pandas,https://github.com/ddelange/mapply,,,,ddelange/mapply,mapply,35,2,3,[],Python,,mapply: Sensible multi-core apply function for Pandas,ddelange,2022-12-14,2022-12-16,2020-10-26,112,0.3125,1,0,5,[],,0.29,7,7,26,0,9,9,9,7.0,12.0,90.0,1.7,0,21.63002 -386,nlp,https://github.com/ferdinandzhong/punctuator,,,,ferdinandzhong/punctuator,punctuator,35,5,1,"['bert', 'nlp', 'seq2seq', 'punctuation', 'deep-learning', 'pytorch', 'bert-ner', 'chinese-nlp']",Python,,punctuator: A small seq2seq punctuator tool based on DistilBERT,ferdinandzhong,2022-10-19,2022-09-28,2020-11-19,108,0.3223684210526316,4,0,5,[],,0.17,2,1,25,3,2,2,2,2.0,13.0,90.0,6.5,0,21.05313 -333,util,https://github.com/gondolav/pyfuncol,,,,gondolav/pyfuncol,pyfuncol,32,3,3,"['functional', 'collections', 'python', 'parallel', 'python3', 'extension-functions']",Python,https://pyfuncol.readthedocs.io/,pyfuncol: Functional collections extension functions for Python,gondolav,2022-11-16,2022-11-16,2021-12-16,52,0.6086956521739131,4,1,5,['epfl'],,0.98,27,20,12,1,7,7,7,27.0,38.0,90.0,1.4,0,25.43196 -711,gis,https://github.com/artelys/geonetworkx,,,,artelys/geonetworkx,geonetworkx,30,1,7,[],Python,,geonetworkx: Python tools for geographic graphs,artelys,2022-10-27,2021-06-28,2019-10-24,164,0.18229166666666666,6,1,5,['argonnenationallaboratory'],,0.0,1,1,38,18,0,2,2,1.0,1.0,90.0,1.0,0,16.39984 -502,gis,https://github.com/gregorhd/mapcompare,,,,gregorhd/mapcompare,mapcompare,28,0,2,"['visualisation-libraries', 'sample-visualisation', 'comparison', 'data-visualisation', 'data-viz', 'urban-data-science', 'interactive-visualisations']",Python,,mapcompare: Comparison of Python packages and libraries for visualising geospatial vector data: applications for Smarter Cities.,gregorhd,2022-12-06,2022-12-03,2021-05-21,82,0.3396880415944541,1,1,5,['gafag'],,0.17,0,0,19,0,0,2,2,0.0,0.0,90.0,0.0,0,14.89266 -894,sim,https://github.com/crowddynamics/crowddynamics,,,,crowddynamics/crowddynamics,crowddynamics,27,9,9,"['crowd-dynamics', 'multi-agent', 'continuous-time', 'crowd-simulation']",Python,https://jaantollander.com/post/how-to-implement-continuous-time-multi-agent-crowd-simulation/,crowddynamics: Continuous-time multi-agent crowd simulation engine implemented in Python using Numba and Numpy for performance.,crowddynamics,2022-12-16,2020-01-02,2016-03-22,351,0.07673568818514007,7,2,5,"['aaltouniversity', 'pyupio']",,0.0,0,0,82,36,0,0,0,0.0,0.0,90.0,0.0,0,13.11651 -688,ml-dl,https://github.com/jerryyli/valhalla-nmt,,,,jerryyli/valhalla-nmt,valhalla-nmt,23,3,1,"['computer-vision', 'machine-translation', 'multimodal-learning', 'natural-language-processing']",Python,,"valhalla-nmt: Code repository for CVPR 2022 paper ""VALHALLA: Visual Hallucination for Machine Translation""",jerryyli,2022-11-26,2022-06-06,2022-03-22,38,0.5919117647058824,3,1,5,['mit-ibmwatsonailab'],,0.31,0,0,9,6,1,1,1,0.0,0.0,90.0,0.0,0,9.80233 -37,math,https://github.com/jszymon/pacal,,,,jszymon/pacal,pacal,21,8,6,[],Python,,PaCAL - ProbAbilistic CALculator,jszymon,2022-11-02,2022-11-02,2014-08-04,437,0.04805491990846682,8,0,5,[],,0.04,1,0,102,2,0,0,0,1.0,0.0,90.0,0.0,5,18.50268 -840,data,https://github.com/codait/pardata,,,,codait/pardata,pardata,18,5,11,"['dataset', 'python', 'machine-learning', 'artificial-intelligence', 'data-science']",Python,https://pardata.readthedocs.io/en/latest/,codait/pardata,codait,2022-08-14,2021-12-01,2020-11-17,108,0.16535433070866143,7,2,5,"['google', 'ibmcodait']",,0.0,7,0,25,13,0,3,3,7.0,0.0,90.0,0.0,0,16.56351 -578,term,https://github.com/matthewdeanmartin/terminaltables,,,,matthewdeanmartin/terminaltables,terminaltables,17,4,0,[],Python,https://robpol86.github.io/terminaltables,terminaltables: Generate simple tables in terminals from a nested list of strings.,matthewdeanmartin,2022-11-15,2022-01-30,2021-12-04,54,0.3131578947368421,10,1,5,['adobe'],,0.02,1,0,13,11,0,14,14,1.0,0.0,90.0,0.0,31,21.96317 -679,util,https://github.com/markhershey/arxiv-dl,,,,markhershey/arxiv-dl,arxiv-dl,16,4,2,"['arxiv', 'paper', 'downloader', 'command-line-tool', 'paper-with-code', 'cvpr']",Python,https://pypi.org/project/arxiv-dl/,"arxiv-dl: Command-line ArXiv & CVF (CVPR, ICCV, WACV) Paper Downloader",markhershey,2022-12-02,2022-12-06,2021-01-21,99,0.1606886657101865,2,0,5,[],,0.48,1,1,23,0,2,3,2,1.0,1.0,90.0,1.0,0,17.35809 -669,gis,https://github.com/zorzi-s/maprepair,,,,zorzi-s/maprepair,MapRepair,16,4,2,[],Python,,MapRepair: Deep Cadastre Maps Alignment and Temporal Inconsistencies Fix in Satellite Images,zorzi-s,2022-12-06,2021-05-17,2020-07-30,124,0.12844036697247707,1,0,5,[],,0.0,0,0,29,19,0,0,0,0.0,0.0,90.0,0.0,0,2.90949 -892,util,https://github.com/pyodide/micropip,,,,pyodide/micropip,micropip,10,4,5,"['package-installer', 'pyodide', 'python', 'webassembly']",Python,https://micropip.pyodide.org,micropip: A lightweight Python package installer for Pyodide,pyodide,2022-12-15,2022-12-12,2022-09-15,13,0.7368421052631579,6,1,5,['mitmathdepartment'],,0.54,37,27,3,0,0,8,8,37.0,70.0,90.0,1.9,3,28.65104 -702,data,https://github.com/harangju/wikinet,,,,harangju/wikinet,wikinet,10,5,3,[],Jupyter Notebook,,wikinet: Python library for exploring networks of hyperlinked Wikipedia articles,harangju,2022-12-16,2022-01-25,2019-08-05,176,0.056818181818181816,6,0,5,[],,0.1,0,0,41,11,0,0,0,0.0,0.0,90.0,0.0,9,12.73981 -608,typing,https://github.com/tk0miya/docutils-stubs,,,,tk0miya/docutils-stubs,docutils-stubs,7,5,6,[],Python,,tk0miya/docutils-stubs,tk0miya,2022-01-02,2022-01-02,2018-11-02,215,0.03249336870026525,6,2,5,"['timeintermedia(timedia)', 'unist']",,0.04,0,0,50,12,0,5,5,0.0,0.0,90.0,0.0,8,21.32329 -180,sim,https://github.com/artemyk/dynpy,,,,artemyk/dynpy,dynpy,5,5,3,[],Python,,dynpy: Dynamical systems for Python,artemyk,2021-09-24,2018-09-28,2014-09-12,431,0.011589403973509934,5,0,5,[],,0.0,0,0,101,51,0,0,0,0.0,0.0,90.0,0.0,3,9.08824 -526,gis,https://github.com/lycantropos/wagyu,,,,lycantropos/wagyu,wagyu,3,2,1,[],Python,https://github.com/mapbox/wagyu,wagyu: Python port of mapbox/wagyu library (with separate C++ binding),lycantropos,2022-07-19,2020-11-21,2020-06-30,128,0.02328159645232816,2,0,5,[],,0.0,0,0,30,25,0,2,2,0.0,0.0,90.0,0.0,0,5.4272 -751,gis,https://github.com/edomel/boundaryvt,,,,edomel/boundaryvt,BoundaryVT,2,0,2,[],Python,,edomel/boundaryvt,edomel,2022-12-07,2022-09-29,2022-07-29,20,0.0979020979020979,2,1,5,['ethzurich'],,0.1,0,0,5,3,0,0,0,0.0,0.0,90.0,0.0,0,7.59265 -420,template,https://github.com/dylanhogg/python-project-template,,,,dylanhogg/python-project-template,python-project-template,1,0,2,"['python', 'template', 'jupyterlab', 'cookiecutter']",Python,,python-project-template: A quick-start Python project template with helpful functionality and common libraries.,dylanhogg,2022-08-19,2022-08-19,2020-02-12,148,0.0067243035542747355,2,0,5,[],,0.1,1,0,35,4,0,1,1,1.0,0.0,90.0,0.0,0,9.75574 +,category,githuburl,featured,links,description,_repopath,_reponame,_stars,_forks,_watches,_language,_homepage,_description,_organization,_updated_at,_created_at,_age_weeks,_stars_per_week,_topics,_last_commit_date,_pop_contributor_count,_pop_contributor_logins,_pop_contributor_orgs_len,_pop_contributor_orgs_max,_pop_contributor_orgs,_pop_contributor_orgs_raw,_pop_contributor_orgs_error,_pop_commit_frequency,_pop_updated_issues_count,_pop_closed_issues_count,_pop_created_since_days,_pop_updated_since_days,_pop_recent_releases_count,_pop_recent_releases_estimated_tags,_pop_recent_releases_adjusted_count,_pop_issue_count,_pop_comment_count,_pop_comment_count_lookback_days,_pop_comment_frequency,_pop_dependents_count,_pop_score +89,ml-dl,https://github.com/tensorflow/tensorflow,,,,tensorflow/tensorflow,tensorflow,171400,87832,7764,C++,https://tensorflow.org,tensorflow: An Open Source Machine Learning Framework for Everyone,tensorflow,2023-02-21,2015-11-07,380,450.37537537537537,"['tensorflow', 'machine-learning', 'python', 'deep-learning', 'deep-neural-networks', 'neural-network', 'ml', 'distributed']",2023-02-21,4275,"['benoitsteiner', 'caisq@google', 'gunan@googletensorflow', 'hawkinsp@google', 'mihaimaruseac@google', 'mrry', 'roserg', 'tensorflower-gardener', 'vrv@carnegiemellonuniversity', 'yongtang']",3,10,"['carnegiemellonuniversity', 'google', 'googletensorflow']","['@google @tensorflow ', 'Carnegie Mellon University', 'Google']",,321.21,2254,1372,89,0,27,26,27,2255.0,6541.0,90.0,2.9,0,72.75049 +405,study,https://github.com/thealgorithms/python,,,,thealgorithms/python,Python,153358,39092,5962,Python,https://the-algorithms.com/,Python: All Algorithms implemented in Python,thealgorithms,2023-02-21,2016-07-16,344,445.0688225538972,"['python', 'algorithm', 'algorithms-implemented', 'algorithm-competitions', 'algos', 'sorts', 'searches', 'sorting-algorithms', 'education', 'learn', 'practice', 'community-driven', 'interview', 'hacktoberfest']",2023-02-21,978,"['AnupKumarPanwar@thealgorithmsgojek', 'MaximSmolskiy', 'SandersLin', 'cclauss@christianclauss', 'christianbender', 'daniel-s-ingram@torcrobotics', 'dhruvmanila', 'duyuanch@thealgorithms', 'dynamitechetan@fossasiagojekthealgorithms', 'harshildarji@universitätpassau']",6,10,"['christianclauss', 'fossasiagojekthealgorithms', 'thealgorithms', 'thealgorithmsgojek', 'torcrobotics', 'universitätpassau']","['@TheAlgorithms', '@TheAlgorithms @Gojek', '@fossasia @gojek @thealgorithms', 'Christian Clauss', 'Torc Robotics', 'Universität Passau']",,6.52,169,110,80,0,0,0,0,169.0,169.0,90.0,1.0,0,52.52774 +112,nlp,https://github.com/huggingface/transformers,,,,huggingface/transformers,transformers,81769,18127,899,Python,https://huggingface.co/transformers,"🤗 Transformers: State-of-the-art Machine Learning for Pytorch, TensorFlow, and JAX.",huggingface,2023-02-21,2018-10-29,225,362.9568801521877,"['nlp', 'natural-language-processing', 'pytorch', 'language-model', 'tensorflow', 'bert', 'language-models', 'pytorch-transformers', 'nlp-library', 'transformer', 'model-hub', 'pretrained-models', 'jax', 'flax', 'seq2seq', 'speech-recognition', 'hacktoberfest', 'python', 'machine-learning', 'deep-learning']",2023-02-21,1746,"['LysandreJik@huggingface', 'Narsil@huggingface', 'julien-c@huggingface', 'patil-suraj@huggingface', 'patrickvonplaten', 'sgugger', 'sshleifer@facebookresearch', 'stas00@stasosphereonline/huggingface', 'thomwolf@huggingface', 'ydshieh']",3,10,"['facebookresearch', 'huggingface', 'stasosphereonline/huggingface']","['@facebookresearch', '@huggingface ', 'Hugging Face', 'Huggingface', 'Stasosphere Online Inc. / HuggingFace Inc.']",,56.77,1870,1554,53,0,22,27,22,1870.0,5676.0,90.0,3.0,0,65.87611 +14,web,https://github.com/django/django,,,,django/django,django,68891,28667,2266,Python,https://www.djangoproject.com/,django: The Web framework for perfectionists with deadlines.,django,2023-02-21,2012-04-28,564,122.02353238866397,"['python', 'django', 'web', 'framework', 'orm', 'templates', 'models', 'views', 'apps']",2023-02-21,2880,"['aaugustin@qonto', 'adrianholovaty', 'charettes@zapier', 'claudep@2xlibre.netsàrl', 'felixxm@django', 'freakboy3742', 'jacobian@latacora', 'jezdez@anaconda', 'malcolmt', 'timgraham']",6,10,"['2xlibre.netsàrl', 'anaconda', 'django', 'latacora', 'qonto', 'zapier']","['2xlibre.net Sàrl', '@anaconda', '@django', '@qonto', '@zapier', 'Latacora']",,18.23,339,292,132,0,0,34,34,339.0,723.0,90.0,2.1,0,66.98389 +76,ml-dl,https://github.com/pytorch/pytorch,,,,pytorch/pytorch,pytorch,62941,17471,1637,C++,https://pytorch.org,pytorch: Tensors and Dynamic neural networks in Python with strong GPU acceleration,pytorch,2023-02-21,2016-08-13,340,184.8099832214765,"['neural-network', 'autograd', 'gpu', 'numpy', 'deep-learning', 'tensor', 'python', 'machine-learning']",2023-02-21,3855,"['apaszke@google', 'ezyang', 'gchanan', 'jerryzh168@facebook', 'malfet', 'pytorchmergebot', 'soumith@facebookairesearch', 'suo', 'zdevito', 'zou3519']",3,10,"['facebook', 'facebookairesearch', 'google']","['@facebook', '@google', 'Facebook AI Research']",,224.5,7890,5476,79,0,5,110,5,7886.0,36088.0,22.0,4.6,0,71.86173 +57,web,https://github.com/pallets/flask,,,,pallets/flask,flask,61974,15472,2145,Python,https://flask.palletsprojects.com,flask: The Python micro framework for building web applications.,pallets,2023-02-21,2010-04-06,672,92.20361317747077,"['python', 'flask', 'wsgi', 'web-framework', 'werkzeug', 'jinja', 'pallets']",2023-02-16,808,"['DasIch@zalandose', 'davidism', 'dependabot-preview[bot]', 'greyli', 'kennethreitz', 'keyan@stripe', 'mitsuhiko@sentry', 'pgjones', 'rduplain', 'untitaker@getsentry']",4,10,"['getsentry', 'sentry', 'stripe', 'zalandose']","['@getsentry ', 'Sentry', 'Zalando SE', 'stripe']",,4.15,126,123,157,0,8,4,8,126.0,130.0,90.0,1.0,0,54.48656 +189,util,https://github.com/home-assistant/core,,,,home-assistant/core,core,58219,22051,1348,Python,https://www.home-assistant.io,core: :house_with_garden: Open source home automation that puts local control and privacy first.,home-assistant,2023-02-21,2013-09-17,492,118.29695210449927,"['python', 'home-automation', 'iot', 'internet-of-things', 'mqtt', 'raspberry-pi', 'asyncio', 'hacktoberfest']",2023-02-21,3559,"['Kane610', 'bachya', 'balloob@home-assistant,nabucasa', 'bdraco', 'cdce8p', 'emontnemery', 'epenet', 'fabaff', 'frenck@home-assistanthassio-addons', 'pvizeli@nabucasa']",3,10,"['home-assistant,nabucasa', 'home-assistanthassio-addons', 'nabucasa']","['@NabuCasa', '@home-assistant @hassio-addons', '@home-assistant, @nabucasa']",,233.4,8972,6338,115,0,181,113,181,8971.0,28860.0,22.0,3.2,0,74.08225 +40,ml-dl,https://github.com/keras-team/keras,,,,keras-team/keras,keras,57357,19295,1927,Python,http://keras.io/,keras: Deep Learning for humans,keras-team,2023-02-21,2015-03-28,412,139.02319944598338,"['deep-learning', 'tensorflow', 'neural-networks', 'machine-learning', 'data-science', 'python']",2023-02-18,1161,"['chenmoneygithub', 'farizrahman4u', 'fchollet', 'gabrieldemarmiesse@preligens', 'haifeng-jin@keras-teamtensorflowgooglers', 'mattdangerw@google', 'ozabluda', 'qlzh727@google', 'taehoonlee@sktelecom', 'tensorflower-gardener']",4,10,"['google', 'keras-teamtensorflowgooglers', 'preligens', 'sktelecom']","['@keras-team @tensorflow @googlers', 'Google', 'Preligens', 'SK Telecom']",,19.67,463,323,96,0,10,9,10,463.0,1009.0,90.0,2.2,0,61.22163 +135,web,https://github.com/tiangolo/fastapi,1.0,,,tiangolo/fastapi,fastapi,54734,4530,619,Python,https://fastapi.tiangolo.com/,"FastAPI framework, high performance, easy to learn, fast to code, ready for production",tiangolo,2023-02-21,2018-12-08,219,249.2765126870527,"['python', 'json', 'swagger-ui', 'redoc', 'starlette', 'openapi', 'api', 'openapi3', 'framework', 'async', 'asyncio', 'uvicorn', 'python3', 'python-types', 'pydantic', 'json-schema', 'fastapi', 'swagger', 'rest', 'web']",2023-02-21,415,"['Kludex@encode', 'dependabot[bot]', 'dmontagu@formlogic', 'euri10', 'github-actions[bot]', 'jaystone776', 'mariacamilagl', 'tiangolo', 'tokusumi', 'waynerv']",2,10,"['encode', 'formlogic']","['@encode', 'Formlogic']",,13.67,918,491,51,0,27,35,27,918.0,1925.0,90.0,2.1,0,55.99277 +78,ml,https://github.com/scikit-learn/scikit-learn,,,,scikit-learn/scikit-learn,scikit-learn,53008,23961,2159,Python,https://scikit-learn.org,scikit-learn: machine learning in Python,scikit-learn,2023-02-21,2010-08-17,653,81.1583552055993,"['machine-learning', 'python', 'statistics', 'data-science', 'data-analysis']",2023-02-20,2858,"['agramfort@meta', 'amueller@microsoft', 'glouppe@uliège', 'jnothman@canva', 'larsmans', 'mblondel@googleresearch,brainteam', 'ogrisel@inria', 'pprett', 'thomasjpfan@quansight-labs', 'vene@uvalanguagetechnologylabltl-uva']",8,10,"['canva', 'googleresearch,brainteam', 'inria', 'meta', 'microsoft', 'quansight-labs', 'uliège', 'uvalanguagetechnologylabltl-uva']","['@Quansight-Labs ', 'Canva', 'Google Research, Brain team', 'Inria', 'Meta', 'Microsoft', 'ULiège', 'UvA Language Technology Lab @ltl-uva']",,30.67,965,631,152,0,6,10,6,965.0,2270.0,90.0,2.4,0,68.27998 +399,util,https://github.com/python/cpython,,,,python/cpython,cpython,50776,25865,1472,Python,https://www.python.org/,cpython: The Python programming language,python,2023-02-21,2017-02-10,314,161.33999092147073,[],2023-02-21,2374,"['benjaminp', 'birkenfeld@fzjülich', 'freddrake@keepertech', 'gvanrossum@microsoft', 'jackjansen@centrumvoorwiskundeeninformatica', 'loewis', 'pitrou', 'rhettinger@mutableminds', 'serhiy-storchaka@neu.ro', 'vstinner@redhatofficial']",7,10,"['centrumvoorwiskundeeninformatica', 'fzjülich', 'keepertech', 'microsoft', 'mutableminds', 'neu.ro', 'redhatofficial']","['@RedHatOfficial', '@keepertech ', 'Centrum voor Wiskunde en Informatica', 'FZ Jülich', 'Microsoft', 'Mutable Minds, Inc.', 'Neu.ro']",,66.17,3850,2536,73,0,0,89,89,3845.0,8805.0,90.0,2.3,0,71.46139 +177,web,https://github.com/psf/requests,,,,psf/requests,requests,49080,8971,1354,Python,https://requests.readthedocs.io/en/latest/,"requests: A simple, yet elegant, HTTP library.",psf,2023-02-21,2011-02-13,627,78.22404371584699,"['python', 'http', 'forhumans', 'requests', 'python-requests', 'client', 'humans', 'cookies']",2023-01-21,727,"['BraulioVM', 'Lukasa@apple', 'daftshady@marsauto', 'dpursehouse', 'jerem@newlogic', 'jgorset@schibsted', 'kennethreitz', 'nateprewitt@amazonwebservices', 'sigmavirus24@tableau&salesforce', 'slingamn']",6,10,"['amazonwebservices', 'apple', 'marsauto', 'newlogic', 'schibsted', 'tableau&salesforce']","['@marsauto ', '@newlogic', '@schibsted', '@tableau & @salesforce', 'Amazon Web Services', 'Apple']",,0.6,91,62,146,1,3,12,3,91.0,135.0,90.0,1.5,0,50.96412 +80,data,https://github.com/scrapy/scrapy,,,,scrapy/scrapy,scrapy,46216,9865,1781,Python,https://scrapy.org,"Scrapy, a fast high-level web crawling & scraping framework for Python.",scrapy,2023-02-21,2010-02-22,678,68.13647851727043,"['python', 'scraping', 'crawling', 'framework', 'crawler', 'hacktoberfest', 'web-scraping', 'web-scraping-python']",2023-02-14,587,"['Gallaecio@scrapinghub', 'curita@scrapinghub', 'dangra@superfly', 'elacuesta', 'eliasdorneles', 'kmike@zytedata,scrapinghub', 'pablohoffman@zytedata(formerlyscrapinghub)', 'redapple', 'void', 'wRAR@zyte']",5,10,"['scrapinghub', 'superfly', 'zyte', 'zytedata(formerlyscrapinghub)', 'zytedata,scrapinghub']","['@superfly ', '@zytedata (formerly @scrapinghub)', '@zytedata, @ScrapingHub', 'Scrapinghub', 'Zyte']",,6.21,199,140,158,0,9,9,9,199.0,368.0,90.0,1.8,0,57.09075 +695,ml-dl,https://github.com/deepfakes/faceswap,,,,deepfakes/faceswap,faceswap,43685,12120,1501,Python,https://www.faceswap.dev,faceswap: Deepfakes Software For All,deepfakes,2023-02-21,2017-12-19,270,161.7107350608144,"['faceswap', 'face-swap', 'deep-learning', 'deeplearning', 'deep-neural-networks', 'deepfakes', 'deepface', 'deep-face-swap', 'fakeapp', 'neural-networks', 'neural-nets', 'openfaceswap', 'myfakeapp', 'machine-learning']",2023-02-21,95,"['Clorr', 'Ganonmaster@transip', 'andenixa', 'bryanlyon@arkavianinc', 'deepfakes', 'gdunstone', 'geewiz94', 'kilroythethird', 'kvrooman', 'torzdf']",2,10,"['arkavianinc', 'transip']","['@transip', 'Arkavian Inc']",,5.54,21,21,63,0,0,1,1,21.0,16.0,90.0,0.8,0,39.40007 +736,diffusion,https://github.com/compvis/stable-diffusion,,,,compvis/stable-diffusion,stable-diffusion,42441,6653,406,Jupyter Notebook,https://ommer-lab.com/research/latent-diffusion-models/,stable-diffusion: A latent text-to-image diffusion model,compvis,2023-02-21,2022-08-10,28,1515.75,[],2022-11-16,8,"['LuChengTHU', 'ablattmann', 'apolinario', 'cpacker@ucberkeley', 'owenvincent', 'patrickvonplaten', 'pesser@runwayml', 'rromb']",2,10,"['runwayml', 'ucberkeley']","['@runwayml ', 'UC Berkeley']",,0.33,201,38,6,3,0,0,0,201.0,293.0,90.0,1.5,0,23.4026 +179,term,https://github.com/willmcgugan/rich,,,,willmcgugan/rich,rich,42127,1496,541,Python,https://rich.readthedocs.io/en/latest/,Rich is a Python library for rich text and beautiful formatting in the terminal.,willmcgugan,2023-02-21,2019-11-10,171,245.74083333333334,"['python', 'python3', 'python-library', 'terminal', 'terminal-color', 'markdown', 'tables', 'syntax-highlighting', 'ansi-colors', 'progress-bar-python', 'progress-bar', 'traceback', 'rich', 'tracebacks-rich', 'emoji', 'tui']",2023-02-19,207,"['althonos@embl,zellerlab', 'amartya-dev@ohurutech', 'darrenburns', 'davep@davep.org', 'dependabot[bot]', 'evantkchong', 'hedyhli', 'olivierphi@lastmileict', 'toto6038@nationaltaiwannormaluniversity', 'willmcgugan@textualize']",6,10,"['davep.org', 'embl,zellerlab', 'lastmileict', 'nationaltaiwannormaluniversity', 'ohurutech', 'textualize']","['@lastmileICT ', 'EMBL, @zellerlab', 'National Taiwan Normal University', 'Ohuru Tech', 'Textualize', 'davep.org']",,11.48,189,124,40,0,19,45,19,189.0,395.0,90.0,2.1,0,54.80614 +262,web,https://github.com/sherlock-project/sherlock,,,,sherlock-project/sherlock,sherlock,39212,4648,978,Python,http://sherlock-project.github.io,sherlock: 🔎 Hunt down social media accounts by username across social networks,sherlock-project,2023-02-21,2018-12-24,217,180.46285338593032,"['osint', 'reconnaissance', 'linux', 'macos', 'cli', 'sherlock', 'python3', 'windows', 'redteam', 'tools', 'information-gathering', 'hacktoberfest', 'hacktoberfest2022', 'python']",2023-02-17,215,"['Czechball', 'SethFalco@kodify', 'TheYahya@paackeng', 'aristosgi@athensuniversityofbuisnessandeconomics', 'cclauss@christianclauss', 'hoadlck', 'irazasyed@lukonet', 'ptalmeida', 'roopeshvs', 'sdushantha']",5,10,"['athensuniversityofbuisnessandeconomics', 'christianclauss', 'kodify', 'lukonet', 'paackeng']","['@PaackEng', '@kodify', '@lukonet', 'Athens University Of Buisness And Economics', 'Christian Clauss']",,4.08,167,159,51,0,0,0,0,167.0,151.0,90.0,0.9,0,45.86808 +432,study,https://github.com/jakevdp/pythondatasciencehandbook,,,,jakevdp/pythondatasciencehandbook,PythonDataScienceHandbook,37544,16546,1771,Jupyter Notebook,http://jakevdp.github.io/PythonDataScienceHandbook,PythonDataScienceHandbook: Python Data Science Handbook: full text in Jupyter Notebooks,jakevdp,2023-02-21,2016-08-10,341,110.09970674486803,"['scikit-learn', 'numpy', 'python', 'jupyter-notebook', 'matplotlib', 'pandas']",2018-11-30,17,"['aaronvanderlip', 'choldgraf@ucberkeley', 'fuglede@kvantify', 'habi@instituteofanatomy,unversityofbern,switzerland', 'henrystokeley', 'jackboot7@credijusto', 'jakevdp@google', 'namreg@softswiss', 'ncclementi@coiled', 'vfdev-5@quansight']",8,10,"['coiled', 'credijusto', 'google', 'instituteofanatomy,unversityofbern,switzerland', 'kvantify', 'quansight', 'softswiss', 'ucberkeley']","['@Quansight', '@coiled', '@credijusto ', 'Google', 'Institute of Anatomy, Unversity of Bern, Switzerland', 'Kvantify', 'SoftSwiss', 'UC Berkeley']",,0.0,10,2,80,51,0,0,0,10.0,7.0,90.0,0.7,0,24.51845 +694,ml-dl,https://github.com/iperov/deepfacelab,,,,iperov/deepfacelab,DeepFaceLab,37460,8390,1056,Python,,DeepFaceLab is the leading software for creating deepfakes.,iperov,2023-02-21,2018-06-04,246,152.0997679814385,"['faceswap', 'face-swap', 'deep-learning', 'deeplearning', 'deep-neural-networks', 'deepfakes', 'deepface', 'deep-face-swap', 'fakeapp', 'neural-networks', 'neural-nets', 'deepfacelab', 'creating-deepfakes', 'arxiv', 'machine-learning']",2022-12-31,21,"['Auroir', 'ChrisTopherTa54321', 'IMIYOU', 'MaksV79', 'NemirovD', 'TooMuchFun', 'andenixa', 'iperov', 'lbfs', 'sergeevii123']",0,10,[],[],,0.19,60,16,57,2,0,0,0,60.0,67.0,90.0,1.1,0,24.04501 +59,pandas,https://github.com/pandas-dev/pandas,1.0,,,pandas-dev/pandas,pandas,36929,15788,1109,Python,https://pandas.pydata.org,"pandas: Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more",pandas-dev,2023-02-21,2010-08-24,652,56.62716319824754,"['data-analysis', 'pandas', 'flexible', 'alignment', 'python', 'data-science']",2023-02-21,3235,"['TomAugspurger@microsoft', 'cpcloud@voltrondata', 'gfyoung', 'jbrockmendel', 'jorisvandenbossche', 'jreback', 'mroeschke@rapidsai', 'phofl@d-finegmbh', 'simonjayhawkins', 'wesm@voltrondata']",4,10,"['d-finegmbh', 'microsoft', 'rapidsai', 'voltrondata']","['@microsoft', '@rapidsai ', '@voltrondata', 'd-fine GmbH']",,48.52,2484,1788,152,0,9,13,9,2481.0,5545.0,90.0,2.2,0,68.25003 +838,diffusion,https://github.com/automatic1111/stable-diffusion-webui,,,,automatic1111/stable-diffusion-webui,stable-diffusion-webui,36902,6920,364,Python,,stable-diffusion-webui: Stable Diffusion web UI,automatic1111,2023-02-21,2022-08-22,26,1403.8804347826087,[],2023-02-20,352,"['36DB', 'AUTOMATIC1111', 'C43H66N12O12S2', 'R-N', 'brkirch', 'd8ahazard', 'dfaker', 'dtlnor', 'mezotaken', 'yfszzx']",0,10,[],[],,55.06,2991,1776,6,0,1,2,1,2991.0,9276.0,90.0,3.1,0,45.75582 +64,util,https://github.com/psf/black,,,,psf/black,black,31408,2026,229,Python,https://black.readthedocs.io/en/stable/,black: The uncompromising Python code formatter,psf,2023-02-21,2018-03-14,258,121.73643410852713,"['python', 'code', 'formatter', 'codeformatter', 'gofmt', 'yapf', 'autopep8', 'pre-commit-hook', 'hacktoberfest']",2023-02-14,360,"['JelleZijlstra@quora', 'ambv@psf', 'cooperlees@clc', 'dependabot[bot]', 'felix-hilden', 'hugovk@nordsoftware', 'ichard26', 'isidentical@fal-ai', 'yilei', 'zsol@facebook']",6,10,"['clc', 'facebook', 'fal-ai', 'nordsoftware', 'psf', 'quora']","['@facebook ', '@fal-ai', '@psf', '@quora ', 'CLC', 'Nord Software']",,4.63,309,178,60,0,7,9,7,309.0,589.0,90.0,1.9,0,54.61606 +220,util,https://github.com/pyenv/pyenv,,,,pyenv/pyenv,pyenv,30674,2712,384,Roff,,pyenv: Simple Python version management,pyenv,2023-02-21,2012-08-31,546,56.106088319832764,"['python', 'shell']",2023-02-15,410,"['Samureus@meluria', 'anton-petrov', 'blueyed@freelancer,upforhire', 'cclauss@christianclauss', 'josh', 'joshfriend@squareup', 'mislav', 'native-api', 'sstephenson', 'yyuu@treasuredata']",5,10,"['christianclauss', 'freelancer,upforhire', 'meluria', 'squareup', 'treasuredata']","['@squareup ', 'Christian Clauss', 'Freelancer, up for hire', 'Meluria', 'Treasure Data Inc.']",,4.0,137,124,128,0,15,13,15,137.0,286.0,90.0,2.1,0,56.40938 +55,sim,https://github.com/openai/gym,,,,openai/gym,gym,30067,8235,1013,Python,https://www.gymlibrary.dev,gym: A toolkit for developing and comparing reinforcement learning algorithms.,openai,2023-02-21,2016-04-27,356,84.45786516853933,[],2023-01-30,384,"['christopherhesse@openai', 'gdb', 'jietang', 'jkterry1', 'jonasschneider', 'joschu', 'pseudo-rnd-thoughts', 'pzhokhov', 'tlbtlbtlb@umbrellaresearch', 'zuoxingdong@navercorp']",3,10,"['navercorp', 'openai', 'umbrellaresearch']","['NAVER Corp', 'OpenAI', 'Umbrella Research']",,4.52,47,27,83,1,10,8,10,47.0,150.0,90.0,3.2,0,50.66956 +963,security,https://github.com/certbot/certbot,,,,certbot/certbot,certbot,29653,3324,763,Python,,Certbot is EFF's tool to obtain certs from Let's Encrypt and (optionally) auto-enable HTTPS on your server. It can also act as a client for any other CA that uses the ACME protocol.,certbot,2023-02-21,2014-11-12,432,68.64120370370371,"['acme', 'acme-client', 'certbot', 'certificate', 'letsencrypt', 'python']",2023-02-16,508,"['SwartzCr', 'adferrand@amadeusitgroupefforgecomundo-eu', 'alexzorin', 'bmw@electronicfrontierfoundation', 'jdkasten@google', 'joohoi', 'jsha', 'kuba', 'ohemorange', 'pde@efforg']",4,10,"['amadeusitgroupefforgecomundo-eu', 'efforg', 'electronicfrontierfoundation', 'google']","['@AmadeusITGroup @EFForg @EcoMundo-EU', '@EFForg ', 'Electronic Frontier Foundation', 'Google']",,4.75,181,120,101,0,14,15,14,181.0,281.0,90.0,1.6,0,55.23174 +118,ml-ops,https://github.com/apache/airflow,,,,apache/airflow,airflow,29215,11960,761,Python,https://airflow.apache.org/,"airflow: Apache Airflow - A platform to programmatically author, schedule, and monitor workflows",apache,2023-02-21,2015-04-13,410,71.20647632311977,"['airflow', 'apache', 'apache-airflow', 'python', 'scheduler', 'workflow', 'hacktoberfest']",2023-02-21,2732,"['ashb@astronomer.io', 'bolkedebruin', 'ephraimbuddy@astronomerio', 'jedcunningham@astronomer', 'jlowin@prefecthq', 'kaxil@astronomer', 'mik-laj@snowflakedb', 'mistercrunch@preset-io', 'potiuk@apachesoftwarefoundation', 'turbaszek@snowflakedb']",7,10,"['apachesoftwarefoundation', 'astronomer', 'astronomer.io', 'astronomerio', 'prefecthq', 'preset-io', 'snowflakedb']","['@PrefectHQ ', '@Snowflakedb', '@astronomer', '@astronomer ', 'Apache Software Foundation', 'Astronomer.io', 'Astronomerio', 'preset-io']",,69.88,2140,1680,96,0,17,352,17,2141.0,5002.0,90.0,2.3,0,71.19137 +592,util,https://github.com/mingrammer/diagrams,,,,mingrammer/diagrams,diagrams,27871,1711,347,Python,https://diagrams.mingrammer.com,diagrams: :art: Diagram as Code for prototyping cloud system architectures,mingrammer,2023-02-21,2020-02-02,159,174.81810035842295,"['diagram', 'diagram-as-code', 'architecture', 'graphviz']",2023-01-13,127,"['Slach@altinity', 'bdsoha@kloudkit', 'dependabot[bot]', 'gabriel-tessier@luxeys', 'guyzyl', 'hagaishapira@torqio', 'leandrodamascena@aws', 'mingrammer@daangn', 'nlamirault@swan', 'yu-iskw']",7,10,"['altinity', 'aws', 'daangn', 'kloudkit', 'luxeys', 'swan', 'torqio']","['@aws', '@daangn ', '@torqio', 'Altinity', 'KloudKIT', 'Luxeys', 'Swan']",,1.25,91,40,37,1,4,13,4,91.0,82.0,90.0,0.9,0,43.49369 +257,crypto,https://github.com/ccxt/ccxt,,,,ccxt/ccxt,ccxt,27328,6698,940,JavaScript,,ccxt: A JavaScript / Python / PHP cryptocurrency trading API with support for more than 100 bitcoin/altcoin exchanges,ccxt,2023-02-21,2017-05-14,301,90.66161137440758,"['altcoin', 'api', 'arbitrage', 'bitcoin', 'bot', 'cryptocurrency', 'crypto', 'e-commerce', 'ethereum', 'exchange', 'invest', 'library', 'strategy', 'trading', 'btc', 'eth', 'trade', 'merchant', 'market-data']",2023-02-21,723,"['Dan-krm', 'carlosmiei', 'frosty00@ccxt', 'kroitor@ccxt', 'mkutny', 'ndubel', 'npomfret', 'samgermain@ccxt', 'sc0Vu', 'ttodua']",1,10,['ccxt'],"['@ccxt', 'CCXT']",,202.52,1460,1142,70,0,0,89,89,1460.0,2188.0,90.0,1.5,0,60.7662 +245,ml,https://github.com/tencentarc/gfpgan,,,,tencentarc/gfpgan,GFPGAN,26636,4095,393,Python,,GFPGAN aims at developing Practical Algorithms for Real-world Face Restoration.,tencentarc,2023-02-21,2021-03-19,100,264.4709219858156,"['pytorch', 'gan', 'deep-learning', 'super-resolution', 'face-restoration', 'image-restoration', 'gfpgan']",2022-09-16,11,"['AK391@huggingface', 'Wscats@tencent', 'amckenna41', 'bramton', 'chenxwh', 'darbazali@gatewayict', 'mdanish-kh@xflowresearch', 'mostafavtp', 'tuhins', 'xinntao@tencent']",4,10,"['gatewayict', 'huggingface', 'tencent', 'xflowresearch']","['@Tencent ', 'Gateway ICT', 'Huggingface', 'Tencent', 'xFlow Research Inc.']",,0.44,43,10,23,5,3,8,3,43.0,56.0,90.0,1.3,0,29.06059 +677,ml-dl,https://github.com/facebookresearch/detectron,,,,facebookresearch/detectron,Detectron,25535,5488,960,Python,,"Detectron: FAIR's research platform for object detection research, implementing popular algorithms like Mask R-CNN and RetinaNet.",facebookresearch,2023-02-21,2017-10-05,280,90.91810783316379,[],2021-03-27,40,"['Juggernaut93', 'KaimingHe@facebook', 'ashwinb', 'bddppq', 'ir413@ucberkeley', 'newstzpz', 'rbgirshick@ucberkeley', 'seanbell@grokstyle', 'shenyunhang', 'smessmer']",3,10,"['facebook', 'grokstyle', 'ucberkeley']","['Facebook', 'GrokStyle Inc.', 'UC Berkeley']",,0.02,12,1,66,0,0,0,0,12.0,4.0,90.0,0.3,0,30.77211 +17,nlp,https://github.com/explosion/spacy,,,,explosion/spacy,spaCy,25292,4027,547,Python,https://spacy.io,spaCy: 💫 Industrial-strength Natural Language Processing (NLP) in Python,explosion,2023-02-21,2014-07-03,450,56.09759188846641,"['natural-language-processing', 'data-science', 'machine-learning', 'python', 'cython', 'nlp', 'artificial-intelligence', 'ai', 'spacy', 'nlp-library', 'neural-network', 'neural-networks', 'deep-learning', 'named-entity-recognition', 'entity-linking', 'text-classification', 'tokenization']",2023-02-16,715,"['adrianeboyd', 'geovedi', 'github-actions[bot]', 'henningpeters', 'honnibal@founderexplosion', 'ines@founderexplosion', 'jimregan', 'polm@cotonoha', 'svlandeg@explosion&oxykodit', 'syllog1sm@founderexplosion']",3,10,"['cotonoha', 'explosion&oxykodit', 'founderexplosion']","['Cotonoha', 'Explosion & OxyKodit', 'Founder @explosion', 'Founder @explosion ']",,8.62,351,304,105,0,19,16,19,351.0,579.0,90.0,1.6,0,57.65784 +917,ml-ops,https://github.com/ray-project/ray,,,,ray-project/ray,ray,24206,4209,441,Python,https://ray.io,Ray is a unified framework for scaling AI and Python applications. Ray consists of a core distributed runtime and a toolkit of libraries (Ray AIR) for accelerating ML workloads.,ray-project,2023-02-21,2016-10-25,330,73.31977498918218,"['ray', 'distributed', 'parallel', 'machine-learning', 'reinforcement-learning', 'deep-learning', 'python', 'rllib', 'hyperparameter-search', 'optimization', 'data-science', 'automl', 'hyperparameter-optimization', 'model-selection', 'java', 'serving', 'deployment', 'pytorch', 'tensorflow']",2023-02-21,818,"['edoakes@universityofcalifornia,berkeley', 'ericl@anyscale', 'krfricke', 'pcmoritz@anyscale', 'richardliaw@anyscale', 'rkooo567@anyscale,softwareengineer', 'robertnishihara@anyscale', 'simon-mo', 'stephanie-wang', 'sven1977@anyscale.com']",4,10,"['anyscale', 'anyscale,softwareengineer', 'anyscale.com', 'universityofcalifornia,berkeley']","['@anyscale', 'Anyscale', 'Anyscale, Software Engineer', 'University of California, Berkeley', 'anyscale.com']",,86.58,3479,2185,77,0,9,11,9,3481.0,5325.0,90.0,1.5,0,63.67163 +501,ml,https://github.com/ageron/handson-ml2,,,,ageron/handson-ml2,handson-ml2,24146,11653,631,Jupyter Notebook,,"handson-ml2: A series of Jupyter notebooks that walk you through the fundamentals of Machine Learning and Deep Learning in Python using Scikit-Learn, Keras and TensorFlow 2.",ageron,2023-02-21,2019-01-08,215,112.2324037184595,[],2023-02-04,75,"['ChrisQlasty', 'ageron', 'alexdombos', 'gsundeep-tech', 'ibeauregard', 'mbreemhaar@verifai', 'nbgraham', 'pizzaz93', 'rickiepark', 'ziembla']",1,10,['verifai'],['Verifai'],,0.15,10,5,50,1,0,0,0,11.0,14.0,90.0,1.3,0,29.97508 +163,term,https://github.com/tqdm/tqdm,1.0,,,tqdm/tqdm,tqdm,24051,1222,208,Python,https://tqdm.github.io,"tqdm: A Fast, Extensible Progress Bar for Python and CLI",tqdm,2023-02-21,2015-06-03,403,59.67990074441688,"['progressbar', 'progressmeter', 'progress-bar', 'meter', 'rate', 'console', 'terminal', 'time', 'progress', 'gui', 'python', 'parallel', 'cli', 'utilities', 'jupyter', 'discord', 'telegram', 'pandas', 'keras', 'closember']",2022-09-03,112,"['altendky', 'casperdcl', 'hadim@valence', 'kmike@zytedata,scrapinghub', 'lrq3000@giga-consciousness-comasciencegroup-university&hospitalofliège', 'mbargull', 'nishnash54@flockfreight', 'noamraph', 'obiwanus', 'richardsheridan']",4,10,"['flockfreight', 'giga-consciousness-comasciencegroup-university&hospitalofliège', 'valence', 'zytedata,scrapinghub']","['@zytedata, @ScrapingHub', 'Flock Freight', 'GIGA-Consciousness - Coma Science Group - University & Hospital of Liège', 'Valence']",,0.48,56,9,94,6,5,20,5,55.0,41.0,90.0,0.7,0,37.85303 +26,term,https://github.com/google/python-fire,,,,google/python-fire,python-fire,23949,1364,383,Python,,python-fire: Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object.,google,2023-02-21,2017-02-21,313,76.4794708029197,"['python', 'cli']",2023-02-13,59,"['MichaelCG8', 'dbieber@googlebrain', 'hugovk@nordsoftware', 'jacobaustin123@google', 'jaredtrog', 'jgarst', 'joejoevictor@google', 'jtratner', 'rchen152', 'saurabhkpatel@syracuseuniversity']",4,10,"['google', 'googlebrain', 'nordsoftware', 'syracuseuniversity']","['Google', 'Google Brain', 'Nord Software', 'Syracuse University']",,0.52,54,35,73,0,1,2,1,54.0,77.0,90.0,1.4,0,40.67284 +103,ml,https://github.com/dmlc/xgboost,,,,dmlc/xgboost,xgboost,23781,8545,926,C++,https://xgboost.ai/,"xgboost: Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library, for Python, R, Java, Scala, C++ and more. Runs on single machine, Hadoop, Spark, Dask, Flink and DataFlow",dmlc,2023-02-21,2014-02-06,471,50.39872842870118,"['gbdt', 'gbrt', 'gbm', 'distributed-systems', 'xgboost', 'machine-learning']",2023-02-17,593,"['CodingCat@safegraph', 'RAMitchell@nvidia', 'hcho3@nvidia', 'hetong007@amazonai', 'khotilov@cerner', 'pommedeterresautee@els-rdlefebvresarrut', 'rongou@nvidia', 'terrytangyuan@akuity', 'tqchen@cmu,octoml', 'trivialfis@nvidia']",7,10,"['akuity', 'amazonai', 'cerner', 'cmu,octoml', 'els-rdlefebvresarrut', 'nvidia', 'safegraph']","['@ELS-RD Lefebvre Sarrut', '@NVIDIA', '@akuity', 'Amazon AI', 'CMU, OctoML', 'Cerner', 'NVIDIA', 'Nvidia', 'SafeGraph']",,10.02,418,345,110,0,10,5,10,418.0,626.0,90.0,1.5,0,59.86101 +646,util,https://github.com/python-poetry/poetry,,,,python-poetry/poetry,poetry,23738,1906,184,Python,https://python-poetry.org,poetry: Python packaging and dependency management made easy,python-poetry,2023-02-21,2018-02-28,260,91.3,"['python', 'dependency-manager', 'package-manager', 'packaging', 'poetry']",2023-02-17,436,"['Secrus', 'abn', 'branchvincent', 'dimbleby', 'finswimmer', 'mkniewallner@backmarket', 'neersighted@mirantis', 'pre-commit-ci[bot]', 'radoering', 'sdispater']",2,10,"['backmarket', 'mirantis']","['@BackMarket ', '@Mirantis']",,13.42,658,443,61,1,13,24,13,659.0,1725.0,90.0,2.6,0,53.99236 +678,ml-dl,https://github.com/facebookresearch/detectron2,,,,facebookresearch/detectron2,detectron2,23636,6452,365,Python,https://detectron2.readthedocs.io/en/latest/,"Detectron2 is a platform for object detection, segmentation and other visual recognition tasks.",facebookresearch,2023-02-21,2019-09-05,180,130.68878357030016,[],2023-02-17,234,"['MarcSzafraniec', 'alexander-kirillov@facebookairesearch', 'bowenc0221', 'chenbohua3', 'lyttonhao', 'patricklabatut@facebook', 'ppwwyyxx', 'vkhalidov', 'wat3rBro', 'wenliangzhao2018']",2,10,"['facebook', 'facebookairesearch']","['Facebook', 'Facebook AI Research']",,1.75,203,153,42,0,0,3,3,203.0,278.0,90.0,1.4,0,44.76215 +289,ml-dl,https://github.com/rwightman/pytorch-image-models,,,,rwightman/pytorch-image-models,pytorch-image-models,23631,3909,299,Python,https://huggingface.co/docs/timm,"pytorch-image-models: PyTorch image models, scripts, pretrained weights -- ResNet, ResNeXT, EfficientNet, EfficientNetV2, NFNet, Vision Transformer, MixNet, MobileNet-V3/V2, RegNet, DPN, CSPNet, and more",rwightman,2023-02-21,2019-02-02,211,111.69277515192438,"['pytorch', 'imagenet-classifier', 'resnet', 'dual-path-networks', 'cnn-classification', 'pretrained-models', 'pretrained-weights', 'distributed-training', 'mobile-deep-learning', 'mobilenet-v2', 'mnasnet', 'mobilenetv3', 'efficientnet', 'augmix', 'randaugment', 'mixnet', 'efficientnet-training', 'vision-transformer-models', 'nfnets', 'normalization-free-training']",2023-02-21,93,"['ChristophReich1996@technicaluniversityofdarmstadt', 'VRandme@independent', 'alexander-soare', 'amaarora@weights&biases', 'fffffgggg54', 'kaczmarj@stonybrookmedicine', 'michalwols', 'mrT23', 'nateraw@huggingface', 'rwightman']",5,10,"['huggingface', 'independent', 'stonybrookmedicine', 'technicaluniversityofdarmstadt', 'weights&biases']","['@huggingface', 'Stony Brook Medicine', 'Technical University of Darmstadt', 'Weights & Biases', 'independent']",,7.12,105,78,49,0,11,10,11,105.0,180.0,90.0,1.7,0,49.39281 +550,ml,https://github.com/open-mmlab/mmdetection,,,,open-mmlab/mmdetection,mmdetection,23042,8362,361,Python,https://mmdetection.readthedocs.io,mmdetection: OpenMMLab Detection Toolbox and Benchmark,open-mmlab,2023-02-21,2018-08-22,235,98.05106382978724,"['object-detection', 'instance-segmentation', 'fast-rcnn', 'faster-rcnn', 'mask-rcnn', 'cascade-rcnn', 'ssd', 'retinanet', 'pytorch', 'panoptic-segmentation', 'rtmdet', 'semisupervised-learning', 'swin-transformer', 'transformer', 'vision-transformer', 'yolo', 'convnext', 'detr']",2023-02-01,390,"['AronLin@open-mmlab', 'BIGWangYuDong', 'OceanPang@shanghaiailaboratory', 'RangiLyu@shanghaiartificialintelligencelaboratory', 'ZwwWayne@mmlab,ntu', 'hellock@open-mmlab', 'hhaAndroid@nuaa', 'jshilong@shanghaiailab', 'xvjiarui@ucsd', 'yhcao6@cuhk,mmlab']",8,10,"['cuhk,mmlab', 'mmlab,ntu', 'nuaa', 'open-mmlab', 'shanghaiailab', 'shanghaiailaboratory', 'shanghaiartificialintelligencelaboratory', 'ucsd']","['@open-mmlab', '@open-mmlab ', 'CUHK, MMLab', 'MMLab, NTU', 'Shanghai AI Lab', 'Shanghai AI Laboratory', 'Shanghai Artificial Intelligence Laboratory', 'UCSD', 'nuaa']",,4.38,639,463,55,1,18,12,18,639.0,830.0,90.0,1.3,0,55.80078 +86,viz,https://github.com/streamlit/streamlit,,,,streamlit/streamlit,streamlit,22762,2028,284,Python,https://streamlit.io,Streamlit — The fastest way to build data apps in Python,streamlit,2023-02-21,2019-08-24,182,124.67449139280126,"['python', 'machine-learning', 'data-science', 'deep-learning', 'data-visualization', 'streamlit', 'data-analysis', 'developer-tools']",2023-02-17,166,"['AnOctopus@streamlit', 'aaj-st', 'jrhone', 'kantuni', 'karriebear', 'kmcgrady', 'tconkling@independent', 'treuille@streamlit', 'tvst@streamlit', 'vdonato@streamlit']",2,10,"['independent', 'streamlit']","['@streamlit', '@streamlit ', 'Streamlit', 'independent']",,12.81,649,412,43,0,22,341,22,650.0,923.0,90.0,1.4,0,51.22655 +54,math,https://github.com/numpy/numpy,1.0,,,numpy/numpy,numpy,22742,7766,573,Python,https://numpy.org,numpy: The fundamental package for scientific computing with Python.,numpy,2023-02-21,2010-09-13,649,35.02618261826183,"['numpy', 'python']",2023-02-21,1584,"['BvB93@vuamsterdam', 'charris@retired', 'cournape@mercarijp', 'eric-wieser@universityofcambridge', 'mattip@quansightlabs', 'pearu@quansight', 'pv', 'rgommers@quansight', 'seberg', 'teoliphant@quansight,openteams']",7,10,"['mercarijp', 'quansight', 'quansight,openteams', 'quansightlabs', 'retired', 'universityofcambridge', 'vuamsterdam']","['Mercari JP', 'Quansight', 'Quansight Labs', 'Quansight, OpenTeams', 'Retired', 'University of Cambridge', 'VU Amsterdam']",,30.06,1008,759,151,0,17,18,17,1008.0,2800.0,90.0,2.8,0,68.35448 +689,ml-dl,https://github.com/matterport/mask_rcnn,,,,matterport/mask_rcnn,Mask_RCNN,22685,11254,596,Python,,Mask_RCNN: Mask R-CNN for object detection and instance segmentation on Keras and TensorFlow,matterport,2023-02-21,2017-10-19,278,81.3498975409836,"['mask-rcnn', 'tensorflow', 'object-detection', 'instance-segmentation', 'keras']",2019-03-31,47,"['Borda@grid.ai|pytorchlightning', 'Cpruce', 'JNingWei@alibaba', 'akTwelve', 'gakarak@uiipnasb', 'keineahnung2345', 'maxfrei750@universityofduisburg-essen', 'philferriere@freelance', 'ps48@aws,opensearch-project', 'waleedka@apple']",7,10,"['alibaba', 'apple', 'aws,opensearch-project', 'freelance', 'grid.ai|pytorchlightning', 'uiipnasb', 'universityofduisburg-essen']","['@aws, @opensearch-project ', 'Alibaba', 'Apple', 'Freelance', 'Grid.ai | PytorchLightning', 'UIIP NASB', 'University of Duisburg-Essen']",,0.0,69,15,65,48,0,1,1,69.0,82.0,90.0,1.2,0,31.05883 +649,util,https://github.com/keon/algorithms,,,,keon/algorithms,algorithms,22182,4436,641,Python,,algorithms: Minimal examples of data structures and algorithms in Python,keon,2023-02-21,2016-11-17,326,67.8645104895105,"['algorithm', 'python', 'competitive-programming', 'data-structure', 'algorithms', 'sort', 'search', 'tree', 'graph']",2022-11-12,193,"['SaadBenn', 'ankit167@gojek', 'christianbender', 'geon0325@kaist', 'goswami-rahul@google', 'keon', 'nickolaswiebe', 'ofek@datadog', 'quang2705', 'yunshuipiao']",4,10,"['datadog', 'gojek', 'google', 'kaist']","['@datadog', 'GoJek', 'Google', 'KAIST']",,0.25,14,7,76,3,0,0,0,14.0,2.0,90.0,0.1,0,33.7948 +183,ml,https://github.com/google/jax,,,,google/jax,jax,21986,2065,309,Python,http://jax.readthedocs.io/,"jax: Composable transformations of Python+NumPy programs: differentiate, vectorize, JIT to GPU/TPU, and more",google,2023-02-21,2018-10-25,225,97.34471853257432,['jax'],2023-02-21,507,"['apaszke@google', 'froystig@googleresearch,brainteam', 'gnecula@google', 'hawkinsp@google', 'jakevdp@google', 'mattjj@google', 'sharadmv@google', 'shoyer@google', 'skye', 'yashk2810@google']",2,10,"['google', 'googleresearch,brainteam']","['@Google', '@google', '@google ', 'Google', 'google research, brain team']",,53.63,1211,918,53,0,39,38,39,1214.0,1238.0,90.0,1.0,0,57.63921 +252,ml-dl,https://github.com/pytorchlightning/pytorch-lightning,1.0,,,pytorchlightning/pytorch-lightning,lightning,21623,2751,229,Python,https://lightning.ai,"lightning: Deep learning framework to train, deploy, and ship AI products Lightning fast.",pytorchlightning,2023-02-21,2019-03-31,203,106.29283707865169,"['python', 'deep-learning', 'artificial-intelligence', 'ai', 'pytorch', 'data-science', 'machine-learning']",2023-02-20,831,"['Borda@grid.ai|pytorchlightning', 'akihironitta@lightning-ai', 'ananthsub', 'awaelchli@lightningai', 'carmocca@lightning-ai', 'dependabot[bot]', 'kaushikb11@lightning-ai', 'rohitgr7@current:opentowork|previouslylightning-ai,episource', 'tchaton@lightning.ai|pytorchlightning', 'williamFalcon@lightningai']",5,10,"['current:opentowork|previouslylightning-ai,episource', 'grid.ai|pytorchlightning', 'lightning-ai', 'lightning.ai|pytorchlightning', 'lightningai']","['@Lightning-AI', '@Lightning-AI ', 'Current: Open to work | Previously @Lightning-AI, @EpisourceLLC', 'Grid.ai | PytorchLightning', 'Lightning AI', 'Lightning.ai | Pytorch Lightning']",,43.12,1283,995,47,0,42,46,42,1284.0,2015.0,90.0,1.6,0,62.95876 +952,ml,https://github.com/lutzroeder/netron,,,,lutzroeder/netron,netron,21366,2399,274,JavaScript,https://netron.app,"netron: Visualizer for neural network, deep learning, and machine learning models",lutzroeder,2023-02-21,2010-12-26,634,33.67755010132853,"['neural-network', 'deep-learning', 'machine-learning', 'deeplearning', 'machinelearning', 'ai', 'ml', 'visualizer', 'onnx', 'keras', 'tensorflow', 'tensorflow-lite', 'coreml', 'caffe', 'caffe2', 'mxnet', 'pytorch', 'torch', 'paddle', 'darknet']",2023-02-20,1,['lutzroeder@microsoft'],1,10,['microsoft'],['@microsoft'],,23.1,90,78,148,0,3,0,3,90.0,88.0,90.0,1.0,0,34.04759 +90,web,https://github.com/tornadoweb/tornado,1.0,,,tornadoweb/tornado,tornado,20978,5489,1004,Python,http://www.tornadoweb.org/,"Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.",tornadoweb,2023-02-21,2009-09-09,702,29.883190883190885,"['python', 'asynchronous']",2023-02-17,435,"['ajdavis@mongodb', 'alekstorm@flexport', 'bdarnell', 'finiteloop', 'minrk@simularesearchlaboratory', 'mivade@ascendanalytics', 'pitrou', 'ploxiln@healthbyro', 'takluyver', 'wolever@sheertex']",6,10,"['ascendanalytics', 'flexport', 'healthbyro', 'mongodb', 'sheertex', 'simularesearchlaboratory']","['@HealthByRo ', '@mongodb ', 'Ascend Analytics', 'Flexport, Inc.', 'Sheertex', 'Simula Research Laboratory']",,1.79,60,41,164,0,0,5,5,60.0,96.0,90.0,1.6,0,52.52141 +8,perf,https://github.com/celery/celery,,,,celery/celery,celery,20971,4434,475,Python,https://docs.celeryq.dev,celery: Distributed Task Queue (development branch),celery,2023-02-21,2009-04-24,721,29.057205067300078,"['python', 'task-manager', 'task-scheduler', 'task-runner', 'queue-workers', 'queued-jobs', 'queue-tasks', 'amqp', 'redis', 'sqs', 'sqs-queue', 'python3', 'python-library', 'redis-queue']",2023-02-19,1263,"['Nusnus@katz-consulting-group,celery', 'ask@robinhoodmarkets', 'auvipy@celerypsfapacheencode', 'ionelmc', 'maybe-sybr', 'mher', 'nvie@liveblocks', 'piotrmaslanka@smok.co', 'pre-commit-ci[bot]', 'thedrow']",5,10,"['celerypsfapacheencode', 'katz-consulting-group,celery', 'liveblocks', 'robinhoodmarkets', 'smok.co']","['@Celery @PSF @apache @encode', '@Katz-Consulting-Group, @celery', '@liveblocks', '@robinhoodmarkets ', 'smok.co']",,5.21,385,122,168,0,7,17,7,385.0,465.0,90.0,1.2,0,57.88888 +75,nlp,https://github.com/pytorch/fairseq,,,,pytorch/fairseq,fairseq,20949,5235,356,Python,,fairseq: Facebook AI Research Sequence-to-Sequence Toolkit written in Python.,pytorch,2023-02-21,2017-08-29,286,73.21168247628557,"['python', 'pytorch', 'artificial-intelligence']",2023-02-09,413,"['alexeib@characterai', 'cndn@facebook', 'dianaml0', 'edunov@facebookairesearch', 'kahne@facebookresearch', 'myleott', 'sravyapopuri388', 'sshleifer@facebookresearch', 'tangyuq@alexaai', 'theweiho']",5,10,"['alexaai', 'characterai', 'facebook', 'facebookairesearch', 'facebookresearch']","['@facebook', '@facebookresearch', 'Alexa AI', 'Character AI', 'Facebook AI Research']",,2.96,204,81,67,0,3,3,3,204.0,188.0,90.0,0.9,0,50.04934 +255,crypto,https://github.com/freqtrade/freqtrade,,,,freqtrade/freqtrade,freqtrade,20799,4462,595,Python,https://www.freqtrade.io,"freqtrade: Free, open source crypto trading bot",freqtrade,2023-02-21,2017-05-17,301,69.09966777408638,"['python', 'cryptocurrencies', 'trading-bot', 'telegram-bot', 'bitcoin', 'trade', 'cryptocurrency', 'algorithmic-trading', 'freqtrade']",2023-02-20,290,"['dependabot-preview[bot]', 'dependabot[bot]', 'hroff-1902@freqtradecoredev;frizzleapps/whatsitwhatsit', 'mishaker', 'pyup-bot@pyupio', 'robcaulk@emergentmethods', 'samgermain@ccxt', 'shusso', 'vertti@polarsquad', 'xmatthias']",5,10,"['ccxt', 'emergentmethods', 'freqtradecoredev;frizzleapps/whatsitwhatsit', 'polarsquad', 'pyupio']","['@pyupio', 'CCXT', 'Emergent Methods', 'Freqtrade core dev; FrizzleApps/Whatsitwhatsit', 'Polar Squad']",,62.81,468,438,70,0,17,13,17,469.0,1281.0,90.0,2.7,0,61.1575 +45,testing,https://github.com/locustio/locust,1.0,,,locustio/locust,locust,20705,2636,434,Python,,locust: Scalable load testing tool written in Python,locustio,2023-02-21,2011-02-17,626,33.02985414767548,"['locust', 'python', 'load-testing', 'performance-testing', 'http', 'benchmarking', 'load-generator']",2023-02-18,277,"['HeyHugo@5m', 'Jahaja@embarkstudios', 'Trouv', 'ajt89', 'cgbystrom@epicgames/epicgames', 'cyberw@redshirtconsultingab', 'heyman@heylab', 'max-rocket-internet@deliveryhero', 'mbeacom@aws', 'mboutet']",7,10,"['5m', 'aws', 'deliveryhero', 'embarkstudios', 'epicgames/epicgames', 'heylab', 'redshirtconsultingab']","['@5m ', '@EmbarkStudios', '@aws', 'Delivery Hero', 'Epic Games / @EpicGames', 'Heylab', 'Red Shirt Consulting AB']",,7.62,62,54,146,0,19,9,19,62.0,136.0,90.0,2.2,0,57.09268 +273,ml,https://github.com/google/mediapipe,,,,google/mediapipe,mediapipe,20578,4291,502,C++,https://mediapipe.dev,"mediapipe: Cross-platform, customizable ML solutions for live and streaming media.",google,2023-02-21,2019-06-13,192,106.70074074074074,"['mediapipe', 'c-plus-plus', 'computer-vision', 'deep-learning', 'android', 'video-processing', 'audio-processing', 'mobile-development', 'machine-learning', 'inference', 'graph-framework', 'graph-based', 'calculator', 'framework', 'pipeline-framework', 'stream-processing', 'perception']",2023-02-19,28,"['NikolayChirkov@googleinc', 'acozzette@google', 'camillol', 'khanhlvg@google', 'kinaryml', 'kuaashish', 'markmcd@google', 'priankakariatyml', 'schmidt-sebastian', 'ziyeqinghan@google']",2,10,"['google', 'googleinc']","['@google ', 'Google', 'Google Inc']",,19.75,475,319,45,0,5,12,5,476.0,1542.0,90.0,3.2,0,46.77753 +2,ml-dl,https://github.com/apache/incubator-mxnet,,,,apache/incubator-mxnet,mxnet,20257,6873,1089,C++,https://mxnet.apache.org,"mxnet: Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler; for Python, R, Julia, Scala, Go, Javascript and more",apache,2023-02-21,2015-04-30,407,49.666900175131346,['mxnet'],2023-01-26,981,"['antinucleon@facebook', 'eric-haibin-lin@ex-awsai,bytedanceaml', 'leezu@amazonwebservices', 'mli@amazon', 'piiswrong@universityofwashington', 'pluskid@mit', 'szha@amazonai', 'tqchen@cmu,octoml', 'vchuravy@mit', 'yzhliu@amazonwebservices']",8,10,"['amazon', 'amazonai', 'amazonwebservices', 'cmu,octoml', 'ex-awsai,bytedanceaml', 'facebook', 'mit', 'universityofwashington']","['@mit', 'Amazon', 'Amazon AI', 'Amazon Web Services', 'CMU, OctoML', 'Facebook', 'MIT', 'University of Washington', 'ex-AWS AI, Bytedance AML']",,1.94,57,23,95,1,4,6,4,57.0,70.0,90.0,1.2,0,52.36291 +607,util,https://github.com/norvig/pytudes,,,,norvig/pytudes,pytudes,20072,2276,738,Jupyter Notebook,,"pytudes: Python programs, usually short, of considerable difficulty, to perfect particular skills.",norvig,2023-02-20,2017-03-01,312,64.33333333333333,"['python', 'python-3', 'programming', 'practice', 'demonstrate-skills']",2023-02-08,44,"['Carreau@quansight-labs', 'Naereen', 'alexrkopp', 'ghurley', 'mco-gh@googlecloudplatform', 'norvig@google', 'pathcl', 'ramalho@thoughtworksthoughtworksinc', 'rmeertens', 'vladimirlojanica']",4,10,"['google', 'googlecloudplatform', 'quansight-labs', 'thoughtworksthoughtworksinc']","['@GoogleCloudPlatform ', '@Quansight-Labs', '@thoughtworks @ThoughtWorksInc ', 'Google']",,1.44,4,3,73,0,0,0,0,4.0,1.0,90.0,0.2,0,33.33224 +409,perf,https://github.com/google/flatbuffers,,,,google/flatbuffers,flatbuffers,19937,3021,645,C++,http://google.github.io/flatbuffers/,FlatBuffers: Memory Efficient Serialization Library,google,2023-02-21,2014-05-19,457,43.59856294907841,"['flatbuffers', 'serialization', 'serialization-library', 'json-parser', 'marshalling', 'rpc', 'zero-copy', 'mmap', 'cross-platform', 'c-plus-plus', 'java', 'c-sharp', 'go', 'python', 'rust', 'javascript', 'typescript', 'grpc', 'c', 'protobuf']",2023-02-18,627,"['CasperN', 'TGIshib', 'aardappel@voxraygames', 'bjornharrtell@septima', 'dbaileychess@google', 'krojew', 'paulovap@bookingcom', 'rw@cto', 'vaind', 'vglavnyy']",5,10,"['bookingcom', 'cto', 'google', 'septima', 'voxraygames']","['@Septima', '@bookingcom', 'CTO', 'Google', 'VoxRay Games']",,7.1,222,153,107,0,13,4,13,222.0,445.0,90.0,2.0,0,58.22131 +350,ml-dl,https://github.com/paddlepaddle/paddle,,,,paddlepaddle/paddle,Paddle,19617,4910,731,C++,http://www.paddlepaddle.org/,Paddle: PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice (『飞桨』核心框架,深度学习&机器学习高性能单机、分布式训练和跨平台部署),paddlepaddle,2023-02-21,2016-08-15,340,57.64861460957179,"['paddlepaddle', 'deep-learning', 'scalability', 'machine-learning', 'neural-network', 'python', 'efficiency', 'distributed-training']",2023-02-21,923,"['JiayiFeng', 'dzhwinter@baidu', 'gangliao@tiktok', 'jacquesqiao@baidubdg/idl/dltp', 'luotao1@paddlepaddle', 'qingqing01', 'reyoung@tencent', 'sneaxiy', 'tensor-tang', 'velconia@baiduaigroup']",6,10,"['baidu', 'baiduaigroup', 'baidubdg/idl/dltp', 'paddlepaddle', 'tencent', 'tiktok']","['@PaddlePaddle ', 'Baidu', 'Baidu AI Group', 'Baidu BDG/IDL/DLTP', 'Tencent', 'TikTok']",,110.25,4560,3726,79,0,6,11,6,4558.0,5534.0,90.0,1.2,0,65.50145 +232,template,https://github.com/cookiecutter/cookiecutter,,,,cookiecutter/cookiecutter,cookiecutter,18960,1787,231,Python,https://pypi.org/project/cookiecutter/,"cookiecutter: A cross-platform command-line utility that creates projects from cookiecutters (project templates), e.g. Python package projects, C projects.",cookiecutter,2023-02-21,2013-07-14,501,37.81196581196581,"['python', 'cookiecutter']",2022-09-09,285,"['audreyfeldroy@margaritahumanitarian', 'freakboy3742', 'hackebrot@mozilla', 'insspb', 'jensens@klein&partnerkgandbluedynamics', 'michaeljoseph', 'pfmoore', 'pydanny@octoenergy', 'simobasso@ovalmoney', 'ssbarnea@redhatansible']",6,10,"['klein&partnerkgandbluedynamics', 'margaritahumanitarian', 'mozilla', 'octoenergy', 'ovalmoney', 'redhatansible']","['@OvalMoney ', '@margaritahumanitarian', '@mozilla', '@octoenergy ', 'Klein & Partner KG and @bluedynamics ', 'Red Hat @ansible']",,3.0,64,10,117,6,2,3,2,64.0,74.0,90.0,1.2,0,44.30751 +789,study,https://github.com/wesm/pydata-book,,,,wesm/pydata-book,pydata-book,18877,13983,1470,Jupyter Notebook,,"pydata-book: Materials and IPython notebooks for ""Python for Data Analysis"" by Wes McKinney, published by O'Reilly Media",wesm,2023-02-21,2012-06-30,555,33.97762921059398,[],2022-11-03,9,"['ColdFire87', 'betatim@nvidia', 'crwilcox@googlecloud', 'kmather73', 'mbiesiad', 'rothwerx', 'thisizkp@vndly', 'wesm@voltrondata', 'y33-j3T@two-little-epochs']",5,10,"['googlecloud', 'nvidia', 'two-little-epochs', 'vndly', 'voltrondata']","['@two-little-epochs ', '@voltrondata', 'Google Cloud', 'Nvidia ', 'VNDLY']",,0.13,3,3,130,4,0,0,0,3.0,4.0,90.0,1.3,0,28.62547 +186,ml,https://github.com/harisiqbal88/plotneuralnet,,,,harisiqbal88/plotneuralnet,PlotNeuralNet,18856,2577,222,TeX,,PlotNeuralNet: Latex code for making neural networks diagrams,harisiqbal88,2023-02-21,2018-07-24,239,78.84826762246117,"['latex', 'deep-neural-networks']",2020-11-06,13,"['Alyetama', 'Brandon-HY-Lin', 'HarisIqbal88', 'StevenShi-23@nationaluniversityofsingapore', 'jackyko1991@universityofoxford', 'lukasliebel@tensoreye,technicaluniversityofmunich', 'mbrukman@google', 'pedrodiamel@cesarbr', 'weiji14@developmentseed', 'weslynn']",6,10,"['cesarbr', 'developmentseed', 'google', 'nationaluniversityofsingapore', 'tensoreye,technicaluniversityofmunich', 'universityofoxford']","['@CESARBR', '@Google', '@developmentseed', 'National University of Singapore', 'Tensoreye, Technical University of Munich', 'University of Oxford']",,0.0,6,2,56,28,0,0,0,6.0,3.0,90.0,0.5,0,22.31841 +187,ml-interpretability,https://github.com/slundberg/shap,,,,slundberg/shap,shap,18576,2804,262,Jupyter Notebook,,shap: A game theoretic approach to explain the output of any machine learning model.,slundberg,2023-02-21,2016-11-22,326,56.95663600525624,"['interpretability', 'machine-learning', 'deep-learning', 'gradient-boosting', 'shap', 'shapley', 'explainability']",2022-06-16,205,"['QuentinAmbard', 'RAMitchell@nvidia', 'anusham1990', 'dependabot[bot]', 'floidgilbert', 'gabrieltseng@mila-iqia', 'imatiach-msft@microsoft', 'ryserrao', 'slundberg@microsoftresearch', 'vivekchettiar@microsoft']",4,10,"['microsoft', 'microsoftresearch', 'mila-iqia', 'nvidia']","['@mila-iqia', 'Microsoft', 'Microsoft Research', 'Nvidia']",,1.88,152,22,76,8,1,8,1,152.0,135.0,90.0,0.9,0,39.28205 +763,ml-dl,https://github.com/xinntao/real-esrgan,,,,xinntao/real-esrgan,Real-ESRGAN,18200,1965,185,Python,,Real-ESRGAN aims at developing Practical Algorithms for General Image/Video Restoration.,xinntao,2023-02-21,2021-07-19,83,218.52487135506004,"['esrgan', 'pytorch', 'real-esrgan', 'super-resolution', 'image-restoration', 'denoise', 'jpeg-compression', 'amine']",2022-09-20,11,"['AK391@huggingface', 'Asiimoviet', 'Jared-02', 'NayamAmarshe@$shell', 'ToTheBeginning@tencent', 'cclauss@christianclauss', 'cobanov@refikanadolstudio', 'pratikgl@housinghq', 'rogachevai@vk|hse', 'xinntao@tencent']",7,10,"['$shell', 'christianclauss', 'housinghq', 'huggingface', 'refikanadolstudio', 'tencent', 'vk|hse']","['$SHELL', '@RefikAnadolStudio ', '@housinghq', 'Christian Clauss', 'Huggingface', 'Tencent', 'VK | HSE']",,0.6,99,13,19,5,2,12,2,99.0,93.0,90.0,0.9,0,30.50811 +61,viz,https://github.com/plotly/dash,,,,plotly/dash,dash,18119,1845,410,Python,https://plotly.com/dash,dash: Data Apps & Dashboards for Python. No JavaScript Required.,plotly,2023-02-21,2015-04-10,410,44.115826086956524,"['dash', 'plotly', 'data-visualization', 'data-science', 'gui-framework', 'flask', 'react', 'python', 'finance', 'bioinformatics', 'technical-computing', 'charting', 'plotly-dash', 'web-app', 'productivity', 'modeling', 'r', 'rstats', 'jupyter', 'julia']",2023-02-15,132,"['AnnMarieW@nostarchpress-thebookofdash', 'HammadTheOne', 'Marc-Andre-Rivet@plotly', 'T4rk1n', 'alexcjohnson', 'byronz', 'chriddyp@plotly', 'rmarren1', 'rpkyle', 'valentijnnieman']",2,10,"['nostarchpress-thebookofdash', 'plotly']","['@plotly ', 'No Starch Press - The Book of Dash', 'Plotly']",,11.44,156,80,96,0,12,11,12,156.0,180.0,90.0,1.2,0,48.86529 +931,nlp,https://github.com/acheong08/chatgpt,,,,acheong08/chatgpt,ChatGPT,18011,2728,198,Python,,ChatGPT: Reverse engineered ChatGPT API,acheong08,2023-02-21,2022-12-03,11,1556.5061728395062,"['chatgpt', 'cli', 'library', 'pypi-package', 'gptchat', 'revchatgpt']",2023-02-21,77,"['DiamondDemon669', 'Harry-Jing', 'Jamminroot@deeplay.io', 'MonsterDruide1', 'PyRo1121@bankofamerica', 'acheong08', 'robbiebusinessacc', 'scottleibrand@netskope', 'skippyyy', 'snowmeow2']",3,10,"['bankofamerica', 'deeplay.io', 'netskope']","['Bank of America', 'Deeplay.io', 'Netskope, Inc.']",,16.37,700,695,3,0,141,604,141,700.0,3921.0,90.0,5.6,0,50.03437 +228,term,https://github.com/willmcgugan/textual,,,,willmcgugan/textual,textual,17792,521,158,Python,https://textual.textualize.io/,Textual is a TUI (Text User Interface) framework for Python inspired by modern web development.,willmcgugan,2023-02-21,2021-04-08,97,181.8160583941606,"['terminal', 'python', 'tui', 'rich', 'cli', 'framework']",2023-02-21,69,"['aaronst@mandiant', 'darrenburns', 'davep@davep.org', 'driscollis', 'lllama@nccgroup', 'nitzan-shaked', 'olivierphi@lastmileict', 'overflowy', 'rodrigogiraoserrao', 'willmcgugan@textualize']",5,10,"['davep.org', 'lastmileict', 'mandiant', 'nccgroup', 'textualize']","['@lastmileICT ', '@mandiant', 'NCC Group', 'Textualize', 'davep.org']",,71.12,588,485,23,0,19,14,19,589.0,1138.0,90.0,1.9,0,54.15102 +107,sim,https://github.com/atsushisakai/pythonrobotics,,,,atsushisakai/pythonrobotics,PythonRobotics,17554,5525,505,Python,https://atsushisakai.github.io/PythonRobotics/,PythonRobotics: Python sample codes for robotics algorithms.,atsushisakai,2023-02-21,2016-03-21,361,48.58758402530645,"['python', 'robotics', 'algorithm', 'path-planning', 'control', 'animation', 'localization', 'slam', 'cvxpy', 'ekf', 'autonomous-vehicles', 'autonomous-driving', 'mapping', 'autonomous-navigation', 'robot', 'hacktoberfest']",2023-02-21,107,"['AtsushiSakai', 'Gjacquenot', 'araffin@dlr-rm', 'daniel-s-ingram@torcrobotics', 'dependabot[bot]', 'drewtu2', 'goktug97@idealworks', 'guilyx@tiiuae', 'karanchawla', 'takayuki5168@tier4']",5,10,"['dlr-rm', 'idealworks', 'tier4', 'tiiuae', 'torcrobotics']","['@DLR-RM', '@idealworks', '@tier4', '@tiiuae', 'Torc Robotics']",,2.04,45,43,84,0,0,0,0,45.0,14.0,90.0,0.3,0,40.88796 +349,ml,https://github.com/jina-ai/jina,,,,jina-ai/jina,jina,17391,2035,192,Python,https://docs.jina.ai,jina: 🔮 Build multimodal AI services via cloud native technologies · Neural Search · Generative AI · Cloud Native,jina-ai,2023-02-21,2020-02-13,157,110.16923076923077,"['neural-search', 'cloud-native', 'deep-learning', 'machine-learning', 'framework', 'vector-search-engine', 'grpc', 'kubernetes', 'microservices', 'semantic-search', 'multimodal', 'crossmodal', 'creative-ai', 'aiops', 'mlops', 'pipeline', 'workflow', 'airflow', 'fastapi', 'generative-ai']",2023-02-20,163,"['JoanFM@jina-ai', 'alaeddine-13', 'alexcg1@jina-ai', 'bwanglzu@jina-ai', 'cristianmtr', 'deepankarm@jina-ai', 'hanxiao@jina-ai', 'jina-bot@jina-ai', 'maximilianwerk', 'nan-wang@jinaai']",2,10,"['jina-ai', 'jinaai']","['@jina-ai', '@jina-ai ', 'Jina AI']",,20.96,310,281,37,0,108,121,108,310.0,713.0,90.0,2.3,0,52.4715 +6,viz,https://github.com/bokeh/bokeh,,,,bokeh/bokeh,bokeh,17253,4037,448,Python,https://bokeh.org,"bokeh: Interactive Data Visualization in the browser, from Python",bokeh,2023-02-21,2012-03-26,569,30.306398996235885,"['bokeh', 'python', 'interactive-plots', 'javascript', 'visualization', 'plotting', 'plots', 'data-visualisation', 'notebooks', 'jupyter', 'visualisation', 'numfocus']",2023-02-21,635,"['Maggie-M@continuumanalytics', 'almarklein@independentsoftwareengineer', 'bryevdv@nvidia', 'canavandl', 'canavandl-test', 'damianavila', 'fpliger', 'havocp', 'mattpap', 'paddymul@independent']",4,10,"['continuumanalytics', 'independent', 'independentsoftwareengineer', 'nvidia']","['Continuum Analytics, Inc.', 'Independent', 'Independent software engineer', 'Nvidia']",,8.38,305,177,133,0,0,10,10,305.0,574.0,90.0,1.9,0,57.63469 +144,nlp,https://github.com/openai/gpt-2,,,,openai/gpt-2,gpt-2,17116,4330,598,Python,https://openai.com/blog/better-language-models/,"gpt-2: Code for the paper ""Language Models are Unsupervised Multitask Learners""",openai,2023-02-21,2019-02-11,210,81.39402173913044,['paper'],2020-12-02,16,"['ArmaanBhullar', 'GitHub30', 'WuTheFWasThat', 'albertwujj', 'christopherhesse@openai', 'imgntn', 'jackclarksf', 'madisonmay@indicodatasolutions', 'natemurthy', 'webproduktion01']",2,10,"['indicodatasolutions', 'openai']","['@IndicoDataSolutions ', 'OpenAI']",,0.0,8,2,49,27,0,0,0,8.0,9.0,90.0,1.1,0,20.06364 +31,data,https://github.com/jaidedai/easyocr,,,,jaidedai/easyocr,EasyOCR,17067,2464,283,Python,https://www.jaided.ai,"EasyOCR: Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc.",jaidedai,2023-02-21,2020-03-14,153,111.1339534883721,"['ocr', 'deep-learning', 'crnn', 'pytorch', 'lstm', 'machine-learning', 'scene-text', 'scene-text-recognition', 'optical-character-recognition', 'cnn', 'data-mining', 'image-processing', 'python', 'easyocr', 'information-retrieval']",2023-01-06,114,"['JaidedTeam@jaidedai', 'SamSamhuns@nyu,tii', ""arkya-art@delhitechnologicaluniversity(dtu'22)"", 'dakotahorstman@duratechindustries', 'danielinux7', 'jpotter@enveritas', 'rkcosmos@jaidedai', 'ronaldaug', 'sardasumit', 'visutida']",5,10,"[""delhitechnologicaluniversity(dtu'22)"", 'duratechindustries', 'enveritas', 'jaidedai', 'nyu,tii']","['@JaidedAI', ""Delhi Technological university (DTU'22)"", 'DuraTech Industries', 'Enveritas', 'Jaided AI', 'NYU, TII']",,1.0,104,38,36,2,5,7,5,104.0,123.0,90.0,1.2,0,41.52995 +48,viz,https://github.com/matplotlib/matplotlib,,,,matplotlib/matplotlib,matplotlib,16895,6739,592,Python,https://matplotlib.org/stable/,matplotlib: plotting with Python,matplotlib,2023-02-21,2011-02-19,626,26.96420428636571,"['matplotlib', 'data-visualization', 'data-science', 'python', 'qt', 'wx', 'gtk', 'plotting', 'tk', 'hacktoberfest']",2023-02-21,1473,"['NelleV@timc', 'QuLogic', 'anntzer', 'dstansby@ucl', 'efiring@universityofhawaii', 'jdh2358', 'jklymak@universityofvictoria', 'mdboom@microsoft', 'tacaswell@brookhavennationallab', 'timhoffm']",6,10,"['brookhavennationallab', 'microsoft', 'timc', 'ucl', 'universityofhawaii', 'universityofvictoria']","['Brookhaven National Lab', 'Microsoft', 'TIMC', 'UCL', 'University of Hawaii', 'University of Victoria']",,40.5,1299,800,146,0,10,10,10,1298.0,2691.0,90.0,2.1,0,66.46063 +30,web,https://github.com/huge-success/sanic,,,,huge-success/sanic,sanic,16848,1492,413,Python,https://sanic.dev,sanic: Accelerate your web app development | Build fast. Run fast.,huge-success,2023-02-21,2016-05-26,351,47.8830694275274,"['python', 'framework', 'asyncio', 'api-server', 'web', 'web-server', 'web-framework', 'asgi', 'sanic']",2023-02-21,327,"['38elements', 'Tronic', 'ahopkins@packetfabric', 'ashleysommer@csiro', 'channelcat', 'harshanarayana@ciscosystems', 'r0fls', 'seemethere@pytorch', 'sjsadowski@metameta', 'yunstanford@airbnb']",6,10,"['airbnb', 'ciscosystems', 'csiro', 'metameta', 'packetfabric', 'pytorch']","['@Airbnb', '@PacketFabric', '@csiro ', '@pytorch', 'Cisco Systems', 'Meta Meta LLC']",,2.33,121,81,82,0,11,12,11,121.0,305.0,90.0,2.5,0,54.55089 +373,ml-dl,https://github.com/pyg-team/pytorch_geometric,,,,pyg-team/pytorch_geometric,pytorch_geometric,16809,3094,250,Python,https://pyg.org,pytorch_geometric: Graph Neural Network Library for PyTorch,pyg-team,2023-02-21,2017-10-06,280,59.879389312977096,"['pytorch', 'geometric-deep-learning', 'graph-neural-networks', 'deep-learning', 'graph-convolutional-networks']",2023-02-21,380,"['EdisonLeeeee@sunyat-senuniversity', 'Padarn@myteksi', 'dongkwan-kim@uilab-githubsparcs-kaist', 'ekagra-ranjan', 'janericlenssen@max-planckinstituteforinformatics,kumo.ai', 'lgray', 'lightaime@kaustivul', 'mananshah99@kumo-ai', 'rusty1s', 'wsad1']",6,10,"['kaustivul', 'kumo-ai', 'max-planckinstituteforinformatics,kumo.ai', 'myteksi', 'sunyat-senuniversity', 'uilab-githubsparcs-kaist']","['@kumo-ai ', '@myteksi', '@uilab-github @sparcs-kaist ', 'KAUST IVUL', 'Max-Planck Institute for Informatics, Kumo.ai', 'Sun Yat-sen University']",,20.0,594,503,65,0,3,6,3,594.0,1001.0,90.0,1.7,0,56.82484 +426,study,https://github.com/fchollet/deep-learning-with-python-notebooks,,,,fchollet/deep-learning-with-python-notebooks,deep-learning-with-python-notebooks,16456,8022,641,Jupyter Notebook,,"deep-learning-with-python-notebooks: Jupyter notebooks for the code samples of the book ""Deep Learning with Python""",fchollet,2023-02-21,2017-09-05,285,57.71142284569138,[],2023-02-13,9,"['DerekChia', 'Kuz-man', 'bfaissal@moroccojug', 'fchollet', 'iamaziz', 'rama100', 'var-nan']",1,10,['moroccojug'],['MoroccoJUG'],,0.1,10,5,66,0,0,0,0,10.0,7.0,90.0,0.7,0,25.38372 +102,ml-ops,https://github.com/spotify/luigi,,,,spotify/luigi,luigi,16333,2356,483,Python,,"Luigi is a Python module that helps you build complex pipelines of batch jobs. It handles dependency resolution, workflow management, visualization etc. It also comes with Hadoop support built in. ",spotify,2023-02-21,2012-09-20,543,30.03178355660625,"['python', 'luigi', 'orchestration-framework', 'scheduling', 'hadoop']",2023-02-09,597,"['Tarrasch@google', 'daveFNbuck@houzz', 'dlstadther@q2ebanking', 'erikbern', 'freider@modallabs', 'gpoulin', 'honnix@spotify', 'themalkolm', 'ulzha', 'vitling']",5,10,"['google', 'houzz', 'modallabs', 'q2ebanking', 'spotify']","['@spotify ', 'Google', 'Houzz', 'Modal Labs', 'Q2ebanking']",,0.73,26,14,127,0,3,6,3,26.0,48.0,90.0,1.8,0,50.1409 +328,security,https://github.com/aquasecurity/trivy,,,,aquasecurity/trivy,trivy,16289,1582,154,Go,https://aquasecurity.github.io/trivy,"trivy: Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more",aquasecurity,2023-02-21,2019-04-11,201,80.69568294409059,"['security', 'security-tools', 'docker', 'containers', 'vulnerability-scanners', 'vulnerability-detection', 'vulnerability', 'golang', 'go', 'kubernetes', 'hacktoberfest', 'devsecops', 'misconfiguration', 'infrastructure-as-code', 'iac']",2023-02-20,283,"['DmitriyLewen', 'afdesk', 'dependabot[bot]', 'josedonizetti', 'knqyf263', 'liamg@ghostsecurity', 'masahiro331', 'owenrumney@ghostsecurity', 'simar7', 'tomoyamachi@goodwithtech']",2,10,"['ghostsecurity', 'goodwithtech']","['@ghostsecurity', '@ghostsecurity ', '@goodwithtech ']",,15.79,609,410,47,0,38,28,38,609.0,1227.0,90.0,2.0,0,54.42537 +834,util,https://github.com/micropython/micropython,,,,micropython/micropython,micropython,15968,6198,733,C,https://micropython.org,MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems,micropython,2023-02-21,2013-12-20,478,33.35601313040883,"['micropython', 'python', 'embedded', 'microcontroller']",2023-02-21,555,"['dhylands', 'dlech', 'dpgeorge', 'glennrub', 'iabdalkader@openmv', 'jimmo@micropython', 'pfalcon', 'pi-anl', 'robert-hh', 'stinos']",2,10,"['micropython', 'openmv']","['@micropython', 'OpenMV']",,23.6,441,275,112,0,1,6,1,441.0,1242.0,90.0,2.8,0,54.89231 +109,data,https://github.com/binux/pyspider,,,,binux/pyspider,pyspider,15742,3669,905,Python,http://docs.pyspider.org/,pyspider: A Powerful Spider(Web Crawler) System in Python.,binux,2023-02-21,2014-02-21,469,33.513990267639905,"['python', 'crawler']",2020-08-02,62,"['binux', 'eromoe', 'farmercode', 'ihipop', 'jtwaleson@easeebv', 'lushl9301@sun', 'machinewu', 'tiancheng91', 'tunstek', 'xyb']",2,10,"['easeebv', 'sun']","['Easee BV', 'SUN']",,0.0,3,0,110,31,0,1,1,3.0,3.0,90.0,1.0,0,25.02245 +873,util,https://github.com/ipython/ipython,,,,ipython/ipython,ipython,15699,4414,769,Python,https://ipython.readthedocs.org,"ipython: Official repository for IPython itself. Other repos in the IPython organization contain things like the website, documentation builds, etc.",ipython,2023-02-21,2010-05-10,667,23.52665382145151,"['ipython', 'jupyter', 'data-science', 'notebook', 'python', 'repl', 'closember', 'hacktoberfest']",2023-02-21,937,"['Carreau@quansight-labs', 'bfroehle@google', 'ellisonbg@amazonwebservices', 'fperez@universityofcalifornia,berkeley.', 'ivanov', 'jasongrout@databricks', 'jdfreder@google', 'minrk@simularesearchlaboratory', 'takluyver', 'vivainio@basware']",7,10,"['amazonwebservices', 'basware', 'databricks', 'google', 'quansight-labs', 'simularesearchlaboratory', 'universityofcalifornia,berkeley.']","['@Quansight-Labs', '@databricks', '@google ', 'Amazon Web Services', 'Basware', 'Google', 'Simula Research Laboratory', 'University of California, Berkeley.']",,6.71,173,96,156,0,0,12,12,173.0,271.0,90.0,1.6,0,59.70582 +176,debug,https://github.com/cool-rr/pysnooper,1.0,,,cool-rr/pysnooper,PySnooper,15686,939,235,Python,,PySnooper: Never use print for debugging again,cool-rr,2023-02-21,2019-04-18,200,78.09530583214794,"['python', 'debug', 'debugger', 'introspection', 'logging']",2023-01-03,27,"['alexbers', 'alexmojaki', 'bittner@painless-software', 'cool-RR', 'czietz', 'frenzymadness@redhat', 'iory@japan', 'pikez', 'pohmelie@aratar.tech', 'zasdfgbnm@nvidia']",5,10,"['aratar.tech', 'japan', 'nvidia', 'painless-software', 'redhat']","['@painless-software ', 'Japan', 'NVIDIA', 'Red Hat', 'aratar.tech']",,0.1,5,2,47,3,0,4,4,5.0,12.0,90.0,2.4,0,34.31563 +493,ml-dl,https://github.com/rasbt/deeplearning-models,,,,rasbt/deeplearning-models,deeplearning-models,15610,3846,594,Jupyter Notebook,,"deeplearning-models: A collection of various deep learning architectures, models, and tips",rasbt,2023-02-21,2019-06-05,194,80.4639175257732,[],2023-02-16,11,"['AdilZouitine@irtsaint-exupéry', 'AlexZhou1995@alibaba-inc&nanjinguniversity', 'Vijayabhaskar96', 'imatiach-msft@microsoft', 'javierlorenzod', 'niklaskeerl', 'optixlab@intelcorp.', 'rasbt@lightning-ai,universityofwisconsin-madison']",5,10,"['alibaba-inc&nanjinguniversity', 'intelcorp.', 'irtsaint-exupéry', 'lightning-ai,universityofwisconsin-madison', 'microsoft']","['@Lightning-AI , University of Wisconsin-Madison', 'Alibaba-inc & Nanjing University', 'IRT Saint-Exupéry', 'Intel Corp.', 'Microsoft']",,0.92,3,3,45,0,0,0,0,3.0,2.0,90.0,0.7,0,30.32482 +41,util,https://github.com/kivy/kivy,,,,kivy/kivy,kivy,15534,2990,620,Python,https://kivy.org,"kivy: Open source UI framework written in Python, running on Windows, Linux, macOS, Android and iOS",kivy,2023-02-21,2010-11-03,642,24.19626168224299,"['python', 'ui', 'windows', 'ios', 'android', 'macos', 'linux', 'app', 'kivy']",2023-02-21,580,"['KeyWeeUsr', 'Zen-CODE@zencode', 'akshayaurora@freelance', 'dessant', 'geojeff', 'inclement', 'kived@ijettech-dev', 'matham@cornelluniversity', 'tito@meltingrocks', 'tshirtman@imc.com']",6,10,"['cornelluniversity', 'freelance', 'ijettech-dev', 'imc.com', 'meltingrocks', 'zencode']","['@ijettech-dev', 'Cornell University', 'Freelance', 'Melting Rocks', 'ZenCODE', 'imc.com']",,1.73,142,81,150,0,1,3,1,142.0,236.0,90.0,1.7,0,52.52735 +19,time-series,https://github.com/facebook/prophet,1.0,,,facebook/prophet,prophet,15521,4370,422,Python,https://facebook.github.io/prophet,prophet: Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth.,facebook,2023-02-21,2016-11-16,327,47.464831804281346,"['forecasting', 'r', 'python']",2023-01-31,163,"['Igevorse', 'baogorek@spencerhealthsolutions', 'bletham', 'dependabot[bot]', 'joseangel-sc@pinterest', 'ryankarlos', 'seanjtaylor', 'seriousran@ncsoftaivisionlabgenerationteam', 'sss-ng', 'tcuongd@canva']",4,10,"['canva', 'ncsoftaivisionlabgenerationteam', 'pinterest', 'spencerhealthsolutions']","['@Canva ', '@NCSoft AI Vision Lab Generation Team', 'Pinterest', 'spencer Health Solutions, Inc.']",,1.04,277,148,76,1,3,2,3,277.0,169.0,90.0,0.6,0,43.96541 +604,web,https://github.com/pyscript/pyscript,,,,pyscript/pyscript,pyscript,15466,1160,176,Python,https://github.com/pyscript/pyscript/discussions,pyscript: Home Page: https://pyscript.net Examples: https://pyscript.net/examples,pyscript,2023-02-21,2022-02-21,52,295.7978142076503,"['python', 'html', 'javascript', 'wasm']",2023-02-21,98,"['FabioRosado@anaconda', 'JeffersGlass', 'antocuni', 'fpliger', 'madhur-tandon', 'philippjfr@anaconda', 'pre-commit-ci[bot]', 'pww217', 'tedpatrick@pyscriptanaconda', 'woxtu']",2,10,"['anaconda', 'pyscriptanaconda']","['@pyscript @anaconda', 'Anaconda', 'Anaconda Inc.']",,12.98,272,216,12,0,4,4,4,272.0,435.0,90.0,1.6,0,43.38437 +36,data,https://github.com/joke2k/faker,,,,joke2k/faker,faker,15410,1726,221,Python,https://faker.readthedocs.io,Faker is a Python package that generates fake data for you.,joke2k,2023-02-21,2012-11-12,536,28.734683004794885,"['python', 'fake', 'testing', 'dataset', 'fake-data', 'test-data', 'test-data-generator']",2023-02-19,506,"['Newman101', 'chrisvoncsefalvay@starschema', 'fcurella@minted', 'grantbachman@google', 'illia-v@sailoboats', 'jdufresne@pioneervalleybooks', 'joke2k@selfemployed', 'malefice', 'mdxs@mdxs', 'reverbc']",7,10,"['google', 'mdxs', 'minted', 'pioneervalleybooks', 'sailoboats', 'selfemployed', 'starschema']","['@minted', '@sailoboats', 'Google', 'MDXS', 'Pioneer Valley Books', 'Self Employed', 'Starschema']",,6.81,70,54,125,0,56,27,56,70.0,94.0,90.0,1.3,0,57.8015 +469,util,https://github.com/alievk/avatarify-python,,,,alievk/avatarify-python,avatarify-python,15401,2399,301,Python,,"avatarify-python: Avatars for Zoom, Skype and other video-conferencing apps.",alievk,2023-02-21,2020-04-06,150,102.47813688212928,[],2022-11-11,23,"['645775992', 'JohanAR', 'MartinDelille@lylomediagroup', 'alievk', 'christianll9@universityofhildesheim', 'giorgiop', 'iamphi', 'karfly@entrepreneur', 'mikaelhg', 'mynameisfiber@digital-witness-lab']",4,10,"['digital-witness-lab', 'entrepreneur', 'lylomediagroup', 'universityofhildesheim']","['@digital-witness-lab ', 'Entrepreneur', 'Lylo Media Group', 'University of Hildesheim']",,0.02,65,16,35,3,0,1,1,65.0,245.0,90.0,3.8,0,34.84284 +137,nlp,https://github.com/huggingface/datasets,,,,huggingface/datasets,datasets,15276,2025,262,Python,https://huggingface.co/docs/datasets,"datasets: 🤗 The largest hub of ready-to-use datasets for ML models with fast, easy-to-use and efficient data manipulation tools",huggingface,2023-02-21,2020-03-26,151,100.59454374412041,"['nlp', 'datasets', 'metrics', 'evaluation', 'pytorch', 'tensorflow', 'pandas', 'numpy', 'natural-language-processing', 'computer-vision', 'machine-learning', 'deep-learning', 'speech', 'hacktoberfest']",2023-02-21,493,"['abhishekkrthakur@huggingface', 'albertvillanova@huggingfaceaiinnova', 'lewtun@huggingface', 'lhoestq@huggingface', 'mariosasko@huggingface', 'patrickvonplaten', 'sashavor@huggingface', 'stevhliu@huggingface', 'thomwolf@huggingface', 'yjernite@cims,nyu']",3,10,"['cims,nyu', 'huggingface', 'huggingfaceaiinnova']","['@huggingface', '@huggingface ', '@huggingface @Aiinnova', 'CIMS, NYU', 'Hugging Face', 'HuggingFace']",,17.19,368,265,35,0,20,24,20,368.0,1116.0,90.0,3.0,0,56.92121 +74,typing,https://github.com/python/mypy,,,,python/mypy,mypy,14873,2450,228,Python,https://www.mypy-lang.org/,mypy: Optional static typing for Python,python,2023-02-21,2012-12-07,532,27.91928130866184,"['python', 'types', 'typing', 'typechecker', 'linter']",2023-02-20,631,"['JukkaL', 'Michael0x2a', 'ddfisher', 'gvanrossum@microsoft', 'hauntsaninja@openai', 'ilevkivskyi', 'ivuk', 'msullivan@edgedb', 'sobolevn', 'spkersten@philipshue']",4,10,"['edgedb', 'microsoft', 'openai', 'philipshue']","['@OpenAI', 'EdgeDB', 'Microsoft', 'Philips Hue']",,16.92,869,495,124,0,0,7,7,869.0,1600.0,90.0,1.8,0,59.43172 +868,ml-dl,https://github.com/hpcaitech/colossalai,,,,hpcaitech/colossalai,ColossalAI,14661,1530,188,Python,https://www.colossalai.org/,"ColossalAI: Making big AI models cheaper, easier, and more scalable",hpcaitech,2023-02-21,2021-10-28,68,212.91908713692945,"['deep-learning', 'hpc', 'large-scale', 'data-parallelism', 'pipeline-parallelism', 'model-parallelism', 'ai', 'big-model', 'distributed-computing', 'inference', 'heterogeneous-training']",2023-02-21,97,"['1SAA@hpcaitech', 'Cypher30@fudanuniversity', 'FrankLeeeee', 'Wesley-Jzy', 'YuliangLiu0306', 'binmakeswell@nationaluniversityofsingapore', 'feifeibear', 'github-actions[bot]', 'oahzxl@nationaluniversityofsingapore', 'ver217@hpcaitech']",3,10,"['fudanuniversity', 'hpcaitech', 'nationaluniversityofsingapore']","['@Fudan University', '@hpcaitech', '@hpcaitech ', 'National University of Singapore']",,36.31,942,802,16,0,24,20,24,943.0,842.0,90.0,0.9,0,50.39878 +148,data,https://github.com/twintproject/twint,,,,twintproject/twint,twint,14418,2474,312,Python,,"twint: An advanced Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API, allowing you to scrape a user's followers, following, Tweets and more while evading most API limitations.",twintproject,2023-02-21,2017-06-10,297,48.452232357177145,"['osint', 'twitter', 'python', 'scrape', 'tweets', 'elasticsearch', 'kibana', 'scrape-followers', 'scrape-likes', 'scrape-following', 'twint', 'tweep']",2021-03-02,65,"['Jamim@itechartgroup', 'Mehdzor@maximlevin', 'NoSuck', 'calebglawson@ololabs', 'fshabashev', 'haccer', 'himanshudabas', 'hpiedcoq', 'pielco11@none', 'yunusemrecatalcam@yechops']",5,10,"['itechartgroup', 'maximlevin', 'none', 'ololabs', 'yechops']","['@NONE', '@ololabs', 'Maxim Levin', 'YechOps', 'iTechArt Group']",,0.0,3,1,69,24,0,4,4,3.0,1.0,90.0,0.3,0,28.3125 +718,perf,https://github.com/pola-rs/polars,1.0,,,pola-rs/polars,polars,14234,712,121,Rust,https://pola.rs/,"polars: Fast multi-threaded, hybrid-out-of-core DataFrame library in Rust | Python | Node.js",pola-rs,2023-02-21,2020-05-13,145,98.1655172413793,"['dataframe-library', 'dataframe', 'dataframes', 'rust', 'arrow', 'python', 'out-of-core']",2023-02-21,173,"['Dandandan@godatadriven', 'MarcoGorelli@quansight', 'alexander-beedie', 'ghuls@aertslab', 'ibENPC', 'matteosantama@universityofcalifornia,berkeley', 'ritchie46', 'stinodego', 'universalmind303', 'zundertj']",4,10,"['aertslab', 'godatadriven', 'quansight', 'universityofcalifornia,berkeley']","['@aertslab ', '@godatadriven', 'Quansight', 'University of California, Berkeley']",,42.81,1628,1331,34,0,44,128,44,1628.0,3211.0,90.0,2.0,0,57.92702 +175,util,https://github.com/delgan/loguru,1.0,,,delgan/loguru,loguru,14165,585,120,Python,,loguru: Python logging made (stupidly) simple,delgan,2023-02-21,2017-08-15,288,49.159643034209225,"['python', 'logging', 'logger', 'log']",2023-02-01,42,"['AdrianDeAnda', 'AndrewYakimets', 'Delgan', 'benhowes', 'blueyed@freelancer,upforhire', 'dependabot[bot]', 'layday', 'mayanyax', 'nasyxx', 'ponponon']",1,10,"['freelancer,upforhire']","['Freelancer, up for hire']",,2.06,69,51,67,1,0,3,3,69.0,119.0,90.0,1.7,0,36.69806 +332,sim,https://github.com/unity-technologies/ml-agents,,,,unity-technologies/ml-agents,ml-agents,14133,3722,549,C#,https://unity.com/products/machine-learning-agents,ml-agents: The Unity Machine Learning Agents Toolkit (ML-Agents) is an open-source project that enables games and simulations to serve as environments for training intelligent agents using deep reinforcement learning and imitation learning.,unity-technologies,2023-02-21,2017-09-08,284,49.6392373306573,"['reinforcement-learning', 'unity3d', 'deep-learning', 'unity', 'deep-reinforcement-learning', 'neural-networks', 'machine-learning']",2023-01-25,147,"['andrewcoh', 'awjuliani', 'chriselion@ziplineinternational', 'dongruoping@unitytechnologies/carnegiemellonuniversity', 'ervteng', 'pderichai@google', 'shihzy@facebook', 'surfnerd', 'vincentpierre', 'xiaomaogy@unitytechnologies']",5,10,"['facebook', 'google', 'unitytechnologies', 'unitytechnologies/carnegiemellonuniversity', 'ziplineinternational']","['@google', 'Facebook', 'Unity Technologies', 'Unity Technologies/Carnegie Mellon University', 'Zipline International']",,1.13,138,78,66,1,1,25,1,138.0,60.0,90.0,0.4,0,41.58796 +124,ml,https://github.com/onnx/onnx,,,,onnx/onnx,onnx,14114,3330,428,Python,https://onnx.ai/,onnx: Open standard for machine learning interoperability,onnx,2023-02-21,2017-09-07,284,49.54764292878636,"['deep-learning', 'deep-neural-networks', 'neural-network', 'onnx', 'pytorch', 'mxnet', 'tensorflow', 'keras', 'scikit-learn', 'ml', 'machine-learning', 'dnn']",2023-02-21,269,"['anderspapitto', 'askhade', 'bddppq', 'gramalingam@microsoftresearch', 'houseroad', 'jcwchen@microsoft', 'linkerzhang', 'prasanthpul@microsoft', 'smessmer', 'yuanbyu@microsoft']",2,10,"['microsoft', 'microsoftresearch']","['@Microsoft', 'Microsoft', 'Microsoft Research']",,5.83,356,228,66,0,2,4,2,356.0,440.0,90.0,1.2,0,47.56062 +104,nlp,https://github.com/rare-technologies/gensim,,,,rare-technologies/gensim,gensim,13972,4322,429,Python,https://radimrehurek.com/gensim,gensim: Topic Modelling for Humans,rare-technologies,2023-02-21,2011-02-10,627,22.253469852104665,"['gensim', 'topic-modeling', 'information-retrieval', 'machine-learning', 'natural-language-processing', 'nlp', 'data-science', 'python', 'data-mining', 'word2vec', 'word-embeddings', 'neural-network', 'document-similarity', 'word-similarity', 'fasttext']",2023-02-17,441,"['Witiko@masarykuniversity', 'chinmayapancholi13', 'cscorley', 'gojomo@http://xavvy.com', 'jayantj@mixpanel', 'menshikh-iv@constructor.io,embedika', 'mpenkov@profoundnetworks', 'piskvorky@rare-technologies', 'sotte', 'tmylk']",6,10,"['constructor.io,embedika', 'http://xavvy.com', 'masarykuniversity', 'mixpanel', 'profoundnetworks', 'rare-technologies']","['@ProfoundNetworks', '@RARE-Technologies', '@mixpanel', 'Constructor.io, Embedika', 'Masaryk University', 'http://xavvy.com']",,1.79,68,52,146,0,2,6,2,68.0,149.0,90.0,2.2,0,52.44887 +972,ml,https://github.com/openai/baselines,,,,openai/baselines,baselines,13741,4526,613,Python,,OpenAI Baselines: high-quality implementations of reinforcement learning algorithms,openai,2023-02-21,2017-05-24,300,45.803333333333335,[],2020-01-31,115,"['20chase', 'AurelianTactics', 'MatPoliquin', 'andrewliao11@universityoftoronto', 'christopherhesse@openai', 'joschu', 'pzhokhov', 'siemanko@openai', 'unixpickle', 'zuoxingdong@navercorp']",3,10,"['navercorp', 'openai', 'universityoftoronto']","['NAVER Corp', 'OpenAI', 'University of Toronto']",,0.0,12,4,70,37,0,0,0,12.0,6.0,90.0,0.5,0,26.07025 +119,ml-ops,https://github.com/mlflow/mlflow,,,,mlflow/mlflow,mlflow,13685,3201,286,Python,https://mlflow.org,mlflow: Open source platform for the machine learning lifecycle,mlflow,2023-02-21,2018-06-05,246,55.59779454439931,"['machine-learning', 'ai', 'ml', 'mlflow', 'apache-spark', 'model-management']",2023-02-21,547,"['BenWilson2@databricks', 'WeichenXu123@databricks', 'aarondav', 'dbczumar', 'harupy', 'mlflow-automation', 'mparkhe@databricks', 'smurching', 'sunishsheth2009@databricks.exlinkedin', 'tomasatdatabricks']",2,10,"['databricks', 'databricks.exlinkedin']","['@databricks', '@databricks ', '@databricks. Ex LinkedIn', 'Databricks']",,23.5,625,440,57,0,13,24,13,625.0,1531.0,90.0,2.4,0,56.77433 +674,ml-dl,https://github.com/borisdayma/dalle-mini,,,,borisdayma/dalle-mini,dalle-mini,13681,1055,104,Python,https://www.craiyon.com,dalle-mini: DALL·E Mini - Generate images from a text prompt,borisdayma,2023-02-21,2021-07-03,85,159.87813021702837,[],2023-02-10,27,"['AetherUnbound@automattic', 'Gertie01', 'borisdayma', 'ghosh-r', 'khalidsaifullaah@universityofmaryland,collegepark', 'mallorbc@brillibits', 'patil-suraj@huggingface', 'patrickpiccini@linx|stone', 'pcuenca', 'tmabraham']",5,10,"['automattic', 'brillibits', 'huggingface', 'linx|stone', 'universityofmaryland,collegepark']","['Automattic', 'Brillibits', 'Huggingface', 'Linx | Stone ', 'University of Maryland, College Park']",,2.42,16,5,20,0,3,2,3,16.0,26.0,90.0,1.6,0,37.28145 +56,term,https://github.com/pallets/click,,,,pallets/click,click,13511,1313,180,Python,https://click.palletsprojects.com,click: Python composable command line interface toolkit,pallets,2023-02-21,2014-04-24,460,29.3171109733416,"['python', 'cli', 'click', 'pallets']",2023-02-07,337,"['davidism', 'dependabot-preview[bot]', 'dependabot[bot]', 'iKevinY', 'jcrotts', 'julen', 'mitsuhiko@sentry', 'pre-commit-ci[bot]', 'sirosen', 'untitaker@getsentry']",2,10,"['getsentry', 'sentry']","['@getsentry ', 'Sentry']",,1.1,73,47,108,0,4,5,4,73.0,48.0,90.0,0.7,0,45.01838 +544,ml,https://github.com/aleju/imgaug,,,,aleju/imgaug,imgaug,13310,2358,231,Python,http://imgaug.readthedocs.io,imgaug: Image augmentation for machine learning experiments.,aleju,2023-02-21,2015-07-10,397,33.46623563218391,"['image-augmentation', 'machine-learning', 'augmentation', 'deep-learning', 'images', 'affine-transformation', 'polygon', 'heatmap', 'segmentation-maps', 'keypoints', 'bounding-boxes', 'augment-images', 'crop', 'contrast']",2020-06-01,36,"['Borda@grid.ai|pytorchlightning', 'Erotemic@kitware', 'SarthakYadav@idiap', 'adamwkraft', 'aleju', 'creinders', 'gaborvecsei', 'jgraving@maxplanckinstituteofanimalbehavior', 'stnk20', 'wkentaro@mujin']",5,10,"['grid.ai|pytorchlightning', 'idiap', 'kitware', 'maxplanckinstituteofanimalbehavior', 'mujin']","['@Kitware', '@mujin', 'Grid.ai | PytorchLightning', 'IDIAP', 'Max Planck Institute of Animal Behavior']",,0.0,11,3,93,33,0,2,2,11.0,11.0,90.0,1.0,0,28.83625 +408,web,https://github.com/aio-libs/aiohttp,,,,aio-libs/aiohttp,aiohttp,13285,1866,228,Python,https://docs.aiohttp.org,aiohttp: Asynchronous HTTP client/server framework for asyncio and Python,aio-libs,2023-02-21,2013-10-01,490,27.10434275721364,"['aiohttp', 'asyncio', 'python', 'http', 'http-server', 'http-client', 'async', 'hacktoberfest']",2023-02-16,665,"['Dreamsorcerer', 'asvetlov@neu.ro', 'dependabot-preview[bot]', 'dependabot[bot]', 'fafhrd91@microsoft', 'kxepal', 'patchback[bot]', 'popravich@evo-company', 'pyup-bot@pyupio', 'webknjaz@ansiblecoreredhatofficial']",5,10,"['ansiblecoreredhatofficial', 'evo-company', 'microsoft', 'neu.ro', 'pyupio']","['@Ansible Core @ @RedHatOfficial', '@evo-company', '@pyupio', 'Microsoft', 'Neu.ro']",,7.0,177,101,114,0,3,25,3,177.0,471.0,90.0,2.7,0,56.73031 +956,ml,https://github.com/openai/openai-cookbook,,,,openai/openai-cookbook,openai-cookbook,13284,1661,304,Jupyter Notebook,,openai-cookbook: Examples and guides for using the OpenAI API,openai,2023-02-21,2022-03-11,49,267.2068965517241,[],2023-02-17,38,"['BorisPower', 'MikeHeaton', 'cmurtz-msft@microsoft', 'colin-jarvis', 'colin-openai', 'filipeabperes', 'isafulf', 'logankilpatrick@openaijulialang', 'shyamal-anadkat@openai', 'ted-at-openai@openai']",3,10,"['microsoft', 'openai', 'openaijulialang']","['@OpenAI @JuliaLang', 'Microsoft', 'OpenAI']",,2.67,121,96,12,0,0,0,0,121.0,193.0,90.0,1.6,0,35.96004 +942,nlp,https://github.com/karpathy/mingpt,,,,karpathy/mingpt,minGPT,13102,1477,228,Python,,minGPT: A minimal PyTorch re-implementation of the OpenAI GPT (Generative Pretrained Transformer) training,karpathy,2023-02-21,2020-08-17,131,99.79760609357997,[],2023-01-08,15,"['brchristian', 'ericjang', 'fpgaminer', 'karpathy', 'luigidisotto@aitechnologiessrl', 'michaellavelle@ml4jjvmtorch', 'mishig25@huggingface', 'nat@github', 'shivamtawari', 't-vi@mathinfhttps://mathinf.eu/']",5,10,"['aitechnologiessrl', 'github', 'huggingface', 'mathinfhttps://mathinf.eu/', 'ml4jjvmtorch']","['@huggingface ', '@ml4j @jvmtorch ', 'AI Technologies srl', 'GitHub', 'MathInf https://mathinf.eu/']",,0.96,20,4,31,1,0,0,0,20.0,6.0,90.0,0.3,0,28.72505 +554,ml-ops,https://github.com/horovod/horovod,,,,horovod/horovod,horovod,13034,2157,331,Python,http://horovod.ai,"horovod: Distributed training framework for TensorFlow, Keras, PyTorch, and Apache MXNet.",horovod,2023-02-21,2017-08-09,289,45.10034602076124,"['tensorflow', 'uber', 'machine-learning', 'machinelearning', 'mpi', 'baidu', 'deep-learning', 'deeplearning', 'keras', 'pytorch', 'mxnet', 'spark', 'ray']",2023-02-18,164,"['EnricoMi', 'abditag2@uber', 'alsrgv@carbonrobotics', 'chongxiaoc@uber', 'irasit@uber', 'maxhgerlach@deeplse', 'nvcastet@nvidia', 'romerojosh@nvidia', 'tgaddair@uber', 'yuxihu@aws']",5,10,"['aws', 'carbonrobotics', 'deeplse', 'nvidia', 'uber']","['@AWS', '@carbonrobotics', '@uber ', 'DeepL SE', 'NVIDIA', 'Uber', 'Uber ']",,3.06,110,75,67,0,8,13,8,110.0,159.0,90.0,1.4,0,49.51296 +507,ml,https://github.com/tensorflow/tensor2tensor,,,,tensorflow/tensor2tensor,tensor2tensor,13006,3175,459,Python,,tensor2tensor: Library of deep learning models and datasets designed to make deep learning more accessible and accelerate ML research.,tensorflow,2023-02-21,2017-06-15,296,43.81231953801733,"['machine-learning', 'machine-translation', 'deep-learning', 'reinforcement-learning', 'tpu']",2023-02-17,243,"['MechCoder@googlebrain', 'afrozenator@google', 'blazejosinski', 'dustinvtran@googlebrain', 'koz4k@mimuw', 'lukaszkaiser@google', 'mbz@universityofillinoisaturbana–champaign', 'nshazeer', 'urvashik', 'vthorsteinsson@mideind']",5,10,"['google', 'googlebrain', 'mideind', 'mimuw', 'universityofillinoisaturbana–champaign']","['@mideind ', 'Google', 'Google Brain', 'MIMUW', 'University of Illinois at Urbana–Champaign']",,0.25,6,1,69,0,0,13,13,6.0,5.0,90.0,0.8,0,43.80581 +62,viz,https://github.com/plotly/plotly.py,,,,plotly/plotly.py,plotly.py,12956,2301,276,Python,https://plotly.com/python/,plotly.py: The interactive graphing library for Python (includes Plotly Express) :sparkles:,plotly,2023-02-21,2013-11-21,482,26.831952662721893,"['python', 'd3', 'plotly', 'plotlyjs', 'webgl', 'dashboard', 'visualization', 'graph-library', 'plotly-dash', 'jupyter-notebook', 'sparkles', 'regl', 'declarative', 'interactive']",2023-01-31,219,"['Kully', 'LiamConnors', 'chriddyp@plotly', 'cldougl@plotly', 'emmanuelle', 'etpinard@r2-inc', 'jonmmease@hextechnologies', 'nicolaskruchten', 'theengineear@netflix', 'yankev']",4,10,"['hextechnologies', 'netflix', 'plotly', 'r2-inc']","['@R2-inc', 'Hex Technologies', 'Netflix', 'Plotly']",,5.21,235,102,113,0,9,15,9,235.0,316.0,90.0,1.3,0,52.14271 +812,nlp,https://github.com/gunthercox/chatterbot,,,,gunthercox/chatterbot,ChatterBot,12942,4234,551,Python,https://chatterbot.readthedocs.io,"ChatterBot is a machine learning, conversational dialog engine for creating chat bots",gunthercox,2023-02-21,2014-09-28,438,29.519061583577713,"['chatterbot', 'machine-learning', 'chatbot', 'python', 'conversation', 'language', 'bot']",2021-06-01,103,"['DarkmatterVale@amazonwebservices', 'JulianoEngineer@uplicativos', 'Martmists-GH@claritycafe', 'davizucon', 'gunthercox', 'lesleslie@wedgwoodwebworks', 'manoelrui', 'navyad', 'rafak360', 'rmdort@self']",5,10,"['amazonwebservices', 'claritycafe', 'self', 'uplicativos', 'wedgwoodwebworks']","['@ClarityCafe', '@self', 'Amazon Web Services', 'Uplicativos', 'Wedgwood Web Works']",,0.0,26,5,102,21,0,10,10,26.0,25.0,90.0,1.0,0,36.14244 +346,viz,https://github.com/gradio-app/gradio,,,,gradio-app/gradio,gradio,12879,846,102,HTML,http://www.gradio.app,gradio: Create UIs for your machine learning model in Python in 3 minutes,gradio-app,2023-02-21,2018-12-19,218,59.07798165137615,"['machine-learning', 'models', 'ui', 'ui-components', 'interface', 'python', 'data-science', 'data-visualization', 'deep-learning', 'data-analysis', 'gradio', 'gradio-interface', 'python-notebook', 'deploy']",2023-02-21,135,"['AK391@huggingface', 'FarukOzderim@pennstate', 'abidlabs', 'aliabd', 'aliabid94', 'dawoodkhan82', 'freddyaboulton', 'ikaharudin', 'pngwn', 'testaliabid']",2,10,"['huggingface', 'pennstate']","['Huggingface', 'Penn State']",,24.69,756,569,51,0,92,23,92,758.0,2128.0,90.0,2.8,0,54.68992 +281,util,https://github.com/squidfunk/mkdocs-material,,,,squidfunk/mkdocs-material,mkdocs-material,12836,2816,111,TypeScript,https://squidfunk.github.io/mkdocs-material/,mkdocs-material: Documentation that simply works,squidfunk,2023-02-21,2016-01-28,368,34.7993803253292,"['mkdocs', 'theme', 'documentation', 'material-design', 'template', 'static']",2023-02-20,192,"['Stanzilla', 'XhmikosR', 'coliff@trimble-oss', 'dependabot-preview[bot]', 'dependabot-support', 'dependabot[bot]', 'facelessuser', 'greenkeeper[bot]', 'squidfunk@stylezen', 'timvink']",2,10,"['stylezen', 'trimble-oss']","['@stylezen', '@trimble-oss']",,16.73,326,306,86,0,61,44,61,327.0,847.0,90.0,2.6,0,55.05145 +39,jupyter,https://github.com/jupyterlab/jupyterlab,,,,jupyterlab/jupyterlab,jupyterlab,12647,2557,312,TypeScript,https://jupyterlab.readthedocs.io/,JupyterLab computational environment.,jupyterlab,2023-02-21,2016-06-03,350,36.06069246435845,"['jupyterlab', 'jupyter']",2023-02-21,527,"['afshin@jupyterquantstack', 'blink1073@mongodb', 'echarles@datalayer', 'ellisonbg@amazonwebservices', 'fcollonval@quantstack', 'ian-r-rose@coiled', 'jasongrout@databricks', 'jtpio@quantstack', 'saulshanabrook', 'telamonian@jpmorgan']",8,10,"['amazonwebservices', 'coiled', 'databricks', 'datalayer', 'jpmorgan', 'jupyterquantstack', 'mongodb', 'quantstack']","['@Datalayer', '@QuantStack', '@coiled ', '@databricks', '@jupyter @quantstack', 'Amazon Web Services', 'JP Morgan', 'MongoDB']",,16.13,1286,932,82,0,50,5044,50,1287.0,2291.0,90.0,1.8,0,63.69518 +314,util,https://github.com/samuelcolvin/pydantic,,,,samuelcolvin/pydantic,pydantic,12551,1161,89,Python,https://docs.pydantic.dev,pydantic: Data validation using Python type hints,samuelcolvin,2023-02-21,2017-05-03,303,41.42244224422442,"['validation', 'parsing', 'json-schema', 'python37', 'python38', 'pydantic', 'python39', 'python', 'hints', 'python310', 'python311']",2023-02-19,349,"['Bobronium@pheon', 'Gr1N@pandadoc', 'PrettyWood@toucantoco', 'dependabot-preview[bot]', 'dependabot[bot]', 'dmontagu@formlogic', 'hramezani@crate', 'pyup-bot@pyupio', 'samuelcolvin@pydantic', 'tiangolo']",7,10,"['crate', 'formlogic', 'pandadoc', 'pheon', 'pydantic', 'pyupio', 'toucantoco']","['@PandaDoc', '@ToucanToco', '@crate ', '@pydantic', '@pyupio', 'Formlogic', 'Pheon']",,6.13,395,237,71,0,11,16,11,395.0,951.0,90.0,2.4,0,57.7591 +127,ml,https://github.com/microsoft/nni,,,,microsoft/nni,nni,12525,1749,283,Python,https://nni.readthedocs.io,"nni: An open source AutoML toolkit for automate machine learning lifecycle, including feature engineering, neural architecture search, model compression and hyper-parameter tuning.",microsoft,2023-02-21,2018-06-01,246,50.76722640416908,"['automl', 'deep-learning', 'neural-architecture-search', 'hyperparameter-optimization', 'distributed', 'bayesian-optimization', 'automated-machine-learning', 'machine-learning', 'machine-learning-algorithms', 'data-science', 'tensorflow', 'pytorch', 'neural-network', 'deep-neural-network', 'model-compression', 'feature-engineering', 'nas', 'python', 'hyperparameter-tuning', 'mlops']",2023-02-20,186,"['J-shang', 'Lijiaoa', 'QuanluZhang', 'SparkSnail', 'chicm-ms', 'liuzhe-lz', 'lvybriage@inspur', 'squirrelsc@microsoft', 'suiguoxin@msra', 'ultmaster@microsoft']",3,10,"['inspur', 'microsoft', 'msra']","['Inspur', 'MSRA', 'Microsoft']",,7.02,188,101,58,0,4,10,4,188.0,240.0,90.0,1.3,0,48.02149 +152,nlp,https://github.com/flairnlp/flair,,,,flairnlp/flair,flair,12498,1997,202,Python,,flair: A very simple framework for state-of-the-art Natural Language Processing (NLP),flairnlp,2023-02-21,2018-06-11,245,50.95282469423413,"['pytorch', 'nlp', 'named-entity-recognition', 'sequence-labeling', 'semantic-role-labeling', 'word-embeddings', 'natural-language-processing', 'machine-learning']",2023-02-21,240,"['alanakbik', 'dobbersc@humboldt-universitätzuberlin', 'helpmefindaname@researchindustrialsystemsengineering(rise)', 'leonweber@lmumunich', 'marcelmmm', 'pommedeterresautee@els-rdlefebvresarrut', 'stefan-it', 'tabergma@rasahq', 'whoisjones@humboldtuniversität', 'yosipk']",6,10,"['els-rdlefebvresarrut', 'humboldt-universitätzuberlin', 'humboldtuniversität', 'lmumunich', 'rasahq', 'researchindustrialsystemsengineering(rise)']","['@ELS-RD Lefebvre Sarrut', '@RasaHQ ', 'Humboldt Universität', 'Humboldt-Universität zu Berlin', 'LMU Munich', 'Research Industrial Systems Engineering (RISE)']",,11.46,216,164,57,0,1,5,1,216.0,271.0,90.0,1.3,0,50.96846 +52,graph,https://github.com/networkx/networkx,,,,networkx/networkx,networkx,12242,2844,279,Python,https://networkx.org,networkx: Network Analysis in Python,networkx,2023-02-21,2010-09-06,650,18.825571177504393,"['python', 'complex-networks', 'graph-theory', 'graph-algorithms', 'graph-analysis', 'graph-generation', 'graph-visualization']",2023-02-19,641,"['MridulS', 'chebee7i', 'dschult', 'hagberg', 'jarrodmillman@ucberkeley', 'jfinkels', 'jtorrents', 'loicseguin', 'rossbar@caltech', 'ysitu']",2,10,"['caltech', 'ucberkeley']","['Caltech', 'UC Berkeley']",,9.12,384,236,152,0,16,7,16,384.0,508.0,90.0,1.3,0,55.43338 +575,perf,https://github.com/pybind/pybind11,,,,pybind/pybind11,pybind11,12238,1776,246,C++,https://pybind11.readthedocs.io/,pybind11: Seamless operability between C++11 and Python,pybind,2023-02-21,2015-07-05,398,30.715668698458227,"['python', 'bindings']",2023-02-20,315,"['Skylion007@facebookresearch', 'YannickJadoul@maxplanckinstituteforpsycholinguistics&vrijeuniversiteitbrussel', 'aldanor', 'dean0x7d@lumicks', 'dependabot[bot]', 'henryiii@princetonuniversity', 'jagerman', 'pre-commit-ci[bot]', 'rwgk@google', 'wjakob@epfl']",6,10,"['epfl', 'facebookresearch', 'google', 'lumicks', 'maxplanckinstituteforpsycholinguistics&vrijeuniversiteitbrussel', 'princetonuniversity']","['@facebookresearch ', '@lumicks ', 'EPFL', 'Google', 'Max Planck Institute for Psycholinguistics & Vrije Universiteit Brussel', 'Princeton University']",,4.71,168,111,93,0,5,7,5,168.0,387.0,90.0,2.3,0,54.62509 +425,ml-dl,https://github.com/albumentations-team/albumentations,,,,albumentations-team/albumentations,albumentations,11585,1472,123,Python,https://albumentations.ai,albumentations: Fast image augmentation library and an easy-to-use wrapper around other libraries. Documentation: https://albumentations.ai/docs/ Paper about the library: https://www.mdpi.com/2078-2489/11/2/125,albumentations-team,2023-02-21,2018-06-06,246,47.09349593495935,"['image-augmentation', 'machine-learning', 'augmentation', 'deep-learning', 'detection', 'fast-augmentations', 'segmentation', 'image-segmentation', 'image-processing', 'image-classification', 'python', 'object-detection']",2023-02-15,126,"['BloodAxe@deci-ai', 'Dipet', 'MichaelMonashev', 'albu', 'arsenyinfo', 'creafz', 'i-aki-y', 'ternaus@ternaus.com', 'vfdev-5@quansight', 'zakajd@eyeq']",4,10,"['deci-ai', 'eyeq', 'quansight', 'ternaus.com']","['@Deci-AI ', '@Quansight', 'EyeQ', 'Ternaus.com']",,1.42,83,38,57,0,3,3,3,83.0,133.0,90.0,1.6,0,44.86309 +105,nlp,https://github.com/nltk/nltk,,,,nltk/nltk,nltk,11540,2693,469,Python,https://www.nltk.org,NLTK Source,nltk,2023-02-21,2009-09-07,702,16.432058584214808,"['nltk', 'python', 'nlp', 'natural-language-processing', 'machine-learning']",2023-02-20,438,"['alvations', 'dhgarrette@googleresearch', 'dimazest', 'fievelk', 'heatherleaf@universityofgothenburg', 'iliakur@datadog', 'kmike@zytedata,scrapinghub', 'stevenbird', 'tomaarsen@argilla', 'wroberts@humboldtuniversitätzuberlin']",6,10,"['argilla', 'datadog', 'googleresearch', 'humboldtuniversitätzuberlin', 'universityofgothenburg', 'zytedata,scrapinghub']","['@zytedata, @ScrapingHub', 'Argilla', 'Datadog', 'Google Research', 'Humboldt Universität zu Berlin', 'University of Gothenburg']",,2.37,95,73,164,0,0,3,3,95.0,167.0,90.0,1.8,0,53.15712 +242,ml,https://github.com/deepmind/deepmind-research,,,,deepmind/deepmind-research,deepmind-research,11445,2347,329,Jupyter Notebook,,deepmind-research: This repository contains implementations and illustrative code to accompany DeepMind publications,deepmind,2023-02-21,2019-01-15,214,53.44563042028019,[],2023-01-31,91,"['Augustin-Zidek', 'alimuldal@deepmind', 'altche@deepmind', 'alvarosg@deepmind', 'derpson@deepmind', 'diegolascasas@deepmind', 'dpfau', 'jsspencer', 'wanglouis49', 'yilei']",1,10,['deepmind'],"['@deepmind', 'DeepMind']",,0.67,23,3,50,1,0,0,0,23.0,20.0,90.0,0.9,0,30.58624 +114,nlp,https://github.com/allenai/allennlp,,,,allenai/allennlp,allennlp,11404,2241,281,Python,http://www.allennlp.org,"allennlp: An open-source NLP research library, built on PyTorch.",allenai,2023-02-21,2017-05-15,301,37.8511142721669,"['pytorch', 'nlp', 'natural-language-processing', 'deep-learning', 'data-science', 'python']",2022-11-22,265,"['DeNeutoy', 'brendan-ai2@ai2', 'bryant1410@michigannlp', 'dependabot[bot]', 'dirkgr', 'epwalsh', 'joelgrus', 'matt-gardner@microsoftsemanticmachines', 'nelson-liu@stanfordnlp', 'schmmd']",4,10,"['ai2', 'michigannlp', 'microsoftsemanticmachines', 'stanfordnlp']","['@MichiganNLP', '@stanfordnlp', 'AI2', 'Microsoft Semantic Machines']",,1.12,8,6,70,3,5,11,5,8.0,12.0,90.0,1.5,0,41.60382 +120,ml-ops,https://github.com/prefecthq/prefect,,,,prefecthq/prefect,prefect,11345,1128,154,Python,https://prefect.io,prefect: The easiest way to coordinate your dataflow,prefecthq,2023-02-21,2018-06-29,242,46.742201294879344,"['python', 'workflow', 'data-engineering', 'data-science', 'workflow-engine', 'prefect', 'infrastructure', 'ml-ops', 'data-ops', 'automation', 'orchestration', 'orion', 'data', 'observability', 'pipeline']",2023-02-20,128,"['anticorrelator', 'cicdw@prefecthq', 'jlowin@prefecthq', 'madkinsz@prefect', 'peytonrunyan', 'pleek91', 'stackoverfloweth', 'tpdorsey@prefect.io', 'zangell44@prefect', 'znicholasbrown']",3,10,"['prefect', 'prefect.io', 'prefecthq']","['@PrefectHQ ', 'Prefect', 'Prefect.io']",,106.08,1372,1022,57,0,55,36,55,1370.0,2479.0,90.0,1.8,0,58.17338 +320,gui,https://github.com/pysimplegui/pysimplegui,1.0,,,pysimplegui/pysimplegui,PySimpleGUI,11261,1674,218,Python,,"PySimpleGUI: Launched in 2018. It's 2023 and PySimpleGUI is actively developed & supported. Create complex windows simply. Supports tkinter, Qt, WxPython, Remi (in browser). Create GUI applications trivially with a full set of widgets. Multi-Window applications are also simple. 3.4 to 3.11 supported. 325+ Demo programs & Cookbook for rapid start. Extensive docs",pysimplegui,2023-02-21,2018-07-11,241,46.726141078838175,"['pysimplegui', 'gui-framework', 'python', 'tkinter', 'tkinter-python', 'tkinter-gui', 'wxpython', 'pyside2', 'qt', 'qt-gui', 'remi', 'gui', 'gui-window', 'gui-programming', 'datavisualization', 'games', 'beginner-friendly', 'systemtray', 'python-gui', 'user-interface']",2023-02-19,18,"['AltoRetrato', 'Chr0nicT', 'JorjMcKie', 'MikeTheWatchGuy', 'PySimpleGUI@pysimplegui', 'cclauss@christianclauss', 'deajan@netperfect', 'jackyOO7', 'jason990420', 'mikeckennedy@talkpython']",4,10,"['christianclauss', 'netperfect', 'pysimplegui', 'talkpython']","['Christian Clauss', 'NetPerfect', 'PySimpleGUI', 'Talk Python']",,9.0,235,204,56,0,5,1,5,235.0,746.0,90.0,3.2,0,46.6065 +192,template,https://github.com/tiangolo/full-stack-fastapi-postgresql,,,,tiangolo/full-stack-fastapi-postgresql,full-stack-fastapi-postgresql,11160,2035,182,Python,,"full-stack-fastapi-postgresql: Full stack, modern web application generator. Using FastAPI, PostgreSQL as database, Docker, automatic HTTPS and more.",tiangolo,2023-02-21,2019-02-23,208,53.50684931506849,"['python', 'python3', 'json', 'json-schema', 'docker', 'postgresql', 'frontend', 'backend', 'fastapi', 'traefik', 'letsencrypt', 'swagger', 'celery', 'jwt', 'vue', 'vuex', 'cookiecutter', 'openapi', 'openapi3', 'pgadmin']",2020-06-05,17,"['RCheese@messagg', 'abhisheksms', 'airibarne@dribiadataresearch', 'ashears', 'br3ndonland@intelliatherapeutics', 'daniel-butler', 'dmontagu@formlogic', 'ebreton@cortexia', 'jcaguirre89', 'tiangolo']",5,10,"['cortexia', 'dribiadataresearch', 'formlogic', 'intelliatherapeutics', 'messagg']","['Cortexia', 'Dribia Data Research', 'Formlogic', 'Intellia Therapeutics', 'MessAgg']",,0.0,55,19,49,33,0,1,1,55.0,40.0,90.0,0.7,0,26.05926 +1,data,https://github.com/apache/arrow,,,,apache/arrow,arrow,11126,2745,343,C++,https://arrow.apache.org/,arrow: Apache Arrow is a multi-language toolbox for accelerated data interchange and in-memory processing,apache,2023-02-21,2016-02-17,366,30.398907103825138,['arrow'],2023-02-21,1017,"['andygrove@nvidia', 'bkietz@voltrondata', 'jorisvandenbossche', 'kou@clear-code', 'kszucs@voltron-data/ursa-computing', 'lidavidm', 'nealrichardson', 'pitrou', 'wesm@voltrondata', 'xhochy@quantco']",5,10,"['clear-code', 'nvidia', 'quantco', 'voltron-data/ursa-computing', 'voltrondata']","['@Quantco ', '@clear-code', '@voltron-data / @ursa-computing', '@voltrondata', '@voltrondata ', 'NVIDIA']",,41.1,12762,11288,85,0,0,10,10,12762.0,30000.0,90.0,2.4,0,66.45598 +190,ml-dl,https://github.com/dmlc/dgl,,,,dmlc/dgl,dgl,11119,2708,174,Python,http://dgl.ai,"dgl: Python package built to ease deep learning on graph, on top of existing DL frameworks.",dmlc,2023-02-21,2018-04-20,252,43.998304126625214,"['deep-learning', 'graph-neural-networks']",2023-02-21,249,"['BarclayII@awsshanghai', 'Rhett-Ying', 'VoVAllen@tensorchord', 'aksnzhy', 'classicsong@amazon', 'frozenbugs@amazon', 'jermainewang@newyorkuniversity', 'mufeili@awsailabshanghai', 'yzh119@uwsampl', 'zheng-da@aws']",7,10,"['amazon', 'aws', 'awsailabshanghai', 'awsshanghai', 'newyorkuniversity', 'tensorchord', 'uwsampl']","['@tensorchord ', '@uwsampl ', 'AWS', 'AWS AI Lab Shanghai', 'AWS Shanghai', 'Amazon', 'New York University']",,14.0,600,451,59,0,9,7,9,600.0,2587.0,90.0,4.3,0,59.93821 +122,data,https://github.com/iterative/dvc,,,,iterative/dvc,dvc,11109,1031,135,Python,https://dvc.org,dvc: 🦉Data Version Control | Git for Data & Models | ML Experiments Management,iterative,2023-02-21,2017-03-04,311,35.65474552957359,"['data-science', 'machine-learning', 'reproducibility', 'data-version-control', 'git', 'developer-tools', 'collaboration', 'ai', 'python', 'hacktoberfest']",2023-02-21,281,"['Suor', 'casperdcl', 'daavoo@iterative', 'dependabot[bot]', 'dmpetrov@iterative.ai', 'efiop@iterative', 'karajan1001', 'pared', 'pmrowla', 'skshetry']",2,10,"['iterative', 'iterative.ai']","['@iterative', '@iterative ', 'iterative.ai']",,21.83,680,495,73,0,65,72,65,680.0,1563.0,90.0,2.3,0,56.60129 +759,diffusion,https://github.com/invoke-ai/invokeai,,,,invoke-ai/invokeai,InvokeAI,11021,1268,127,Jupyter Notebook,https://invoke-ai.github.io/InvokeAI/,"InvokeAI is a leading creative engine for Stable Diffusion models, empowering professionals, artists, and enthusiasts to generate and create visual media using the latest AI-driven technologies. The solution offers an industry leading WebUI, supports terminal use through a CLI, and serves as the foundation for multiple commercial products.",invoke-ai,2023-02-21,2022-08-17,27,408.18518518518516,"['ai-art', 'artificial-intelligence', 'generative-art', 'image-generation', 'img2img', 'inpainting', 'latent-diffusion', 'linux', 'macos', 'outpainting', 'txt2img', 'windows', 'stable-diffusion']",2023-02-21,177,"['Oceanswave@baristalabs', 'blessedcoolant', 'cmdr2', 'damian0815', 'ebr@brodsky.dev', 'keturn', 'lstein@ontarioinstituteforcancerresearch', 'mauwii@ares-consulting', 'psychedelicious', 'santisbon']",4,10,"['ares-consulting', 'baristalabs', 'brodsky.dev', 'ontarioinstituteforcancerresearch']","['@ARES-Consulting', '@BaristaLabs ', 'Ontario Institute for Cancer Research', 'brodsky.dev']",,47.02,1130,713,6,0,14,176,14,1130.0,3239.0,90.0,2.9,0,53.57946 +79,ml,https://github.com/scipy/scipy,,,,scipy/scipy,scipy,10859,4598,344,Python,https://scipy.org,SciPy library main repository,scipy,2023-02-21,2011-03-09,624,17.40224358974359,"['python', 'scipy', 'algorithms', 'closember', 'scientific-computing']",2023-02-20,1425,"['WarrenWeckesser', 'alexbrc', 'andyfaff', 'cournape@mercarijp', 'ev-br', 'mdhaber', 'pv', 'rgommers@quansight', 'teoliphant@quansight,openteams', 'tylerjereddy@lanl']",4,10,"['lanl', 'mercarijp', 'quansight', 'quansight,openteams']","['LANL', 'Mercari JP', 'Quansight', 'Quansight, OpenTeams']",,29.85,1113,685,146,0,12,13,12,1114.0,3048.0,90.0,2.7,0,65.04859 +218,ml,https://github.com/spotify/annoy,,,,spotify/annoy,annoy,10785,1072,325,C++,,annoy: Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk,spotify,2023-02-21,2013-04-01,516,20.889596015495297,"['c-plus-plus', 'python', 'nearest-neighbor-search', 'locality-sensitive-hashing', 'approximate-nearest-neighbor-search', 'golang', 'lua']",2022-10-27,82,"['LTLA@genentech', 'ReneHollander@google', 'berkerpeksag', 'chdsbd', 'eddelbuettel', 'erikbern', 'novoselrok', 'psobot@spotify', 'starius', 'tjrileywisc']",3,10,"['genentech', 'google', 'spotify']","['@Genentech', '@spotify', 'Google']",,0.12,15,7,120,4,1,3,1,15.0,34.0,90.0,2.3,0,36.6723 +11,perf,https://github.com/dask/dask,,,,dask/dask,dask,10752,1595,215,Python,https://dask.org,dask: Parallel computing with task scheduling,dask,2023-02-21,2015-01-04,424,25.332884550656345,"['dask', 'python', 'pydata', 'numpy', 'pandas', 'scikit-learn', 'scipy']",2023-02-20,577,"['TomAugspurger@microsoft', 'cowlicks', 'jakirkham', 'jcrist@voltrondata', 'jrbourbeau@coiled', 'jsignell@azavea', 'martindurant@anaconda', 'mrocklin@coiled', 'rjzamora@nvidia', 'sinhrks']",6,10,"['anaconda', 'azavea', 'coiled', 'microsoft', 'nvidia', 'voltrondata']","['@NVIDIA', '@azavea', '@coiled ', '@microsoft', '@voltrondata', 'Anaconda, inc.']",,10.5,377,210,99,0,0,32,32,377.0,785.0,90.0,2.1,0,61.04973 +780,diffusion,https://github.com/huggingface/diffusers,,,,huggingface/diffusers,diffusers,10685,2095,117,Python,https://huggingface.co/docs/diffusers,🤗 Diffusers: State-of-the-art diffusion models for image and audio generation in PyTorch,huggingface,2023-02-21,2022-05-30,38,279.0858208955224,"['deep-learning', 'diffusion', 'image-generation', 'pytorch', 'score-based-generative-modeling', 'image2image', 'text2image', 'stable-diffusion', 'hacktoberfest']",2023-02-21,229,"['anton-l@huggingface', 'daspartho', 'kashif', 'natolambert', 'patil-suraj@huggingface', 'patrickvonplaten', 'pcuenca', 'sayakpaul@huggingface', 'shirayu@megagonlabs', 'williamberman']",2,10,"['huggingface', 'megagonlabs']","['@huggingface', '@megagonlabs', 'Hugging Face', 'Huggingface']",,32.5,1324,1064,9,0,29,46,29,1324.0,4777.0,90.0,3.6,0,54.17807 +857,viz,https://github.com/visgl/deck.gl,,,,visgl/deck.gl,deck.gl,10616,1930,1721,JavaScript,https://deck.gl,deck.gl: WebGL2 powered visualization framework,visgl,2023-02-21,2015-12-15,375,28.2985529322163,"['webgl', 'data-visualization', 'javascript', 'visualization', 'python', 'geospatial-analysis', 'maps']",2023-02-19,216,"['1chandu', 'Pessimistress', 'ajduberstein', 'alasarr@carto', 'felixpalmer', 'georgios-uber@uber', 'gnavvy@metaplatforms', 'heshan0131', 'ibgreen@foursquare', 'jianhuang01']",4,10,"['carto', 'foursquare', 'metaplatforms', 'uber']","['Carto', 'Foursquare', 'Meta Platforms, Inc.', 'Uber']",,6.92,196,151,88,0,56,73,56,196.0,269.0,90.0,1.4,0,54.00901 +72,util,https://github.com/python-pillow/pillow,,,,python-pillow/pillow,Pillow,10535,1983,216,Python,https://python-pillow.org,Pillow: Python Imaging Library (Fork),python-pillow,2023-02-21,2012-07-24,552,19.080206985769728,"['c', 'cross-platform', 'pil', 'pillow', 'python', 'python-3', 'image-processing', 'image']",2023-02-21,427,"['DWesl', 'aclark4life@aclark.net', 'cgohlke', 'homm@uploadcare', 'hugovk@nordsoftware', 'jdufresne@pioneervalleybooks', 'mergify[bot]', 'nulano', 'radarhere', 'wiredfool']",4,10,"['aclark.net', 'nordsoftware', 'pioneervalleybooks', 'uploadcare']","['ACLARK.NET, LLC', 'Nord Software', 'Pioneer Valley Books', 'Uploadcare']",,18.71,311,246,129,0,5,8,5,311.0,590.0,90.0,1.9,0,56.96283 +173,term,https://github.com/tiangolo/typer,1.0,,,tiangolo/typer,typer,10494,424,67,Python,https://typer.tiangolo.com/,"Typer, build great CLIs. Easy to code. Based on Python type hints.",tiangolo,2023-02-21,2019-12-24,165,63.54498269896194,"['cli', 'click', 'python3', 'typehints', 'terminal', 'shell', 'python', 'typer']",2023-02-21,32,"['IamCathal', 'briancohan@pbdtools', 'cgabard@papernest', 'dependabot[bot]', 'mariacamilagl', 'mrcartoonster@lofidynamics', 'pre-commit-ci[bot]', 'theMarix@blueyondergmbh', 'tiangolo', 'victorphoenix3@bloomberg']",5,10,"['bloomberg', 'blueyondergmbh', 'lofidynamics', 'papernest', 'pbdtools']","['@bloomberg', '@papernest ', 'Blue Yonder GmbH', 'PBD Tools LLC', 'lofi dynamics LLC']",,2.83,127,35,38,0,6,8,6,127.0,194.0,90.0,1.5,0,42.91079 +110,ml-interpretability,https://github.com/marcotcr/lime,,,,marcotcr/lime,lime,10436,1704,270,JavaScript,,Lime: Explaining the predictions of any machine learning classifier,marcotcr,2023-02-21,2016-03-15,362,28.817357001972386,[],2021-07-29,62,"['aikramer2@system1', 'desilinguist@educationaltestingservice', 'dhimmel@related-sciences', 'dyanni3', 'echo66', 'elacx', 'jamesmyatt@capgeminiengineering', 'marcotcr', 'nicolewhite', 'sokollip']",4,10,"['capgeminiengineering', 'educationaltestingservice', 'related-sciences', 'system1']","['@related-sciences', 'Capgemini Engineering', 'Educational Testing Service', 'System1']",,0.0,16,4,84,19,0,3,3,16.0,12.0,90.0,0.8,0,30.92784 +427,ml-dl,https://github.com/facebookresearch/detr,,,,facebookresearch/detr,detr,10436,1918,149,Python,,detr: End-to-End Object Detection with Transformers,facebookresearch,2023-02-21,2020-05-26,143,72.9061876247505,[],2023-02-07,26,"['AniKar@universityofbonn', 'DanielFennhagen', 'alexander-kirillov@facebookairesearch', 'dcyoung@scansemoffettdatadetectlabs', 'dmitryvinn@engineeringmanagerai/mlmeta', 'fatihbaltaci@ddosify', 'fmassa@facebookaireseach', 'lessw2020', 'szagoruyko@mtsai', 'zhiqwang@axera']",8,10,"['axera', 'ddosify', 'engineeringmanagerai/mlmeta', 'facebookaireseach', 'facebookairesearch', 'mtsai', 'scansemoffettdatadetectlabs', 'universityofbonn']","['@ddosify', '@scanse @MoffettData @detectlabs', 'Engineering Manager AI/ML@Meta', 'Facebook AI Reseach', 'Facebook AI Research', 'MTS AI', 'University of Bonn', 'axera']",,0.04,37,11,33,0,0,0,0,37.0,43.0,90.0,1.2,0,36.17634 +50,viz,https://github.com/mwaskom/seaborn,,,,mwaskom/seaborn,seaborn,10370,1703,253,Python,https://seaborn.pydata.org,seaborn: Statistical data visualization in Python,mwaskom,2023-02-21,2012-06-18,557,18.608049218149194,"['python', 'data-visualization', 'data-science', 'matplotlib', 'pandas']",2023-02-20,186,"['JWarmenhoven', 'MaozGelbart', 'TomAugspurger@microsoft', 'dcgemperline', 'joelostblom@universityofbritishcolumbia', 'lukauskas', 'mwaskom', 'olgabot@bridgebioanalytics', 'phobson@coiled', 'yarikoptic@dartmouthcollege,debian,datalad,pymvpa,fail2ban']",5,10,"['bridgebioanalytics', 'coiled', 'dartmouthcollege,debian,datalad,pymvpa,fail2ban', 'microsoft', 'universityofbritishcolumbia']","['@BridgeBioAnalytics ', '@coiled', '@microsoft', 'Dartmouth College, @Debian, @DataLad, @PyMVPA, @fail2ban', 'University of British Columbia']",,4.92,139,117,130,0,9,3,9,139.0,281.0,90.0,2.0,0,53.51371 +166,sim,https://github.com/bulletphysics/bullet3,,,,bulletphysics/bullet3,bullet3,10260,2659,405,C++,http://bulletphysics.org,"bullet3: Bullet Physics SDK: real-time collision detection and multi-physics simulation for VR, games, visual effects, robotics, machine learning etc.",bulletphysics,2023-02-21,2011-04-12,619,16.57129672358099,"['simulation', 'robotics', 'kinematics', 'virtual-reality', 'reinforcement-learning', 'computer-animation', 'game-development', 'simulator', 'pybullet']",2022-09-25,299,"['BlGene', 'NiranthS', 'YunfeiBai', 'benelot@idsc.io', 'erwincoumans', 'fuchuyuan', 'jyc-n', 'lunkhound', 'nicolaichuk', 'xhan0619@ucla']",2,10,"['idsc.io', 'ucla']","['IDSC.io', 'UCLA']",,0.87,44,12,144,5,2,2,2,44.0,40.0,90.0,0.9,0,38.66676 +60,pandas,https://github.com/pandas-profiling/pandas-profiling,1.0,,,pandas-profiling/pandas-profiling,ydata-profiling,10206,1437,150,Python,https://ydata-profiling.ydata.ai,ydata-profiling: Create HTML profiling reports from pandas DataFrame objects,pandas-profiling,2023-02-21,2016-01-09,371,27.46712802768166,"['pandas-profiling', 'pandas-dataframe', 'statistics', 'jupyter-notebook', 'exploration', 'data-science', 'python', 'pandas', 'machine-learning', 'deep-learning', 'exploratory-data-analysis', 'eda', 'data-quality', 'html-report', 'data-exploration', 'data-analysis', 'jupyter', 'big-data-analytics', 'data-profiling', 'hacktoberfest']",2023-01-30,108,"['JosPolfliet@metamaze', 'alexbarros', 'aquemy@ydataai', 'dependabot-preview[bot]', 'dependabot[bot]', 'fabclmnt@ydataai', 'loopyme@cqu-ai', 'romainx', 'sbrugman', 'vascoalramos@ydataai']",3,10,"['cqu-ai', 'metamaze', 'ydataai']","['@CQU-AI ', '@Metamaze', '@ydataai', '@ydataai ']",,4.96,142,96,87,1,9,26,9,142.0,167.0,90.0,1.2,0,46.12641 +536,profiling,https://github.com/bloomberg/memray,1.0,,,bloomberg/memray,memray,10133,279,52,Python,https://bloomberg.github.io/memray/,Memray is a memory profiler for Python,bloomberg,2023-02-21,2022-04-08,45,221.659375,"['memory', 'memory-leak', 'memory-leak-detection', 'memory-profiler', 'profiler', 'python', 'python3', 'hacktoberfest']",2023-02-16,22,"['chaimhaas@bloomberg', 'dependabot[bot]', 'godlygeek', 'lkollar@bloomberg', 'matthiasdiener@researchscientistuiuc-pplillinois-ceesd', 'pablogsal@bloomberg', 'pradyunsg@bloombergpythoninfrastructure', 'q-posev@qubitpharmaceuticals', 'tal66', 'tonybaloney@microsoft']",5,10,"['bloomberg', 'bloombergpythoninfrastructure', 'microsoft', 'qubitpharmaceuticals', 'researchscientistuiuc-pplillinois-ceesd']","['@Bloomberg', '@bloomberg', '@bloomberg Python Infrastructure', 'Microsoft', 'Qubit Pharmaceuticals', 'Research Scientist @UIUC-PPL @illinois-ceesd']",,7.46,68,51,11,0,11,14,11,68.0,85.0,90.0,1.2,0,40.61836 +805,web,https://github.com/encode/httpx,,,,encode/httpx,httpx,10079,666,112,Python,https://www.python-httpx.org/,httpx: A next generation HTTP client for Python. 🦋,encode,2023-02-21,2019-04-04,202,49.68521126760563,"['python', 'http', 'trio', 'asyncio']",2023-02-15,186,"['JayH5@yelp', 'Kludex@encode', 'adriangb', 'cdeler@amazon', 'dependabot[bot]', 'florimondmanca', 'j178', 'jcugat', 'sethmlarson@elastic', 'tomchristie@encodeoss']",5,10,"['amazon', 'elastic', 'encode', 'encodeoss', 'yelp']","['@elastic', '@encode', 'Amazon', 'Encode OSS', 'Yelp']",,3.04,118,95,47,0,4,20,4,118.0,179.0,90.0,1.5,0,48.32943 +87,math,https://github.com/sympy/sympy,1.0,,,sympy/sympy,sympy,10062,3854,285,Python,https://sympy.org/,sympy: A computer algebra system written in pure Python,sympy,2023-02-20,2010-04-30,668,15.046784875026704,"['python', 'math', 'computer-algebra', 'science', 'hacktoberfest']",2023-02-21,1200,"['Upabjojr', 'asmeurer@quansight', 'certik@gsitechnology', 'jksuom', 'mattpap', 'oscarbenjamin', 'oscargus', 'skirpichev', 'smichr', 'sylee957']",2,10,"['gsitechnology', 'quansight']","['@Quansight ', 'GSI Technology']",,41.6,632,354,156,0,7,7,7,632.0,2771.0,90.0,4.4,0,62.50988 +645,util,https://github.com/pyinstaller/pyinstaller,,,,pyinstaller/pyinstaller,pyinstaller,10045,1861,232,Python,http://www.pyinstaller.org,pyinstaller: Freeze (package) Python programs into stand-alone executables,pyinstaller,2023-02-21,2011-11-23,587,17.11243611584327,"['python', 'python-3', 'bundle', 'package', 'pyinstaller', 'python-to-exe', 'py2exe', 'py2app']",2023-02-19,446,"['Legorooj', 'bjones1@mississippistateuniversity', 'bwoodsend', 'codewarrior0', 'htgoebel', 'matysek', 'naufraghi@develersrl', 'pyup-bot@pyupio', 'rasky@develers.r.l.', 'rokm']",4,10,"['develers.r.l.', 'develersrl', 'mississippistateuniversity', 'pyupio']","['@develersrl', '@pyupio', 'Develer S.r.l.', 'Mississippi State University']",,7.08,280,249,137,0,13,5,13,280.0,365.0,90.0,1.3,0,56.02904 +24,ml,https://github.com/google/dopamine,,,,google/dopamine,dopamine,10018,1339,442,Jupyter Notebook,https://github.com/google/dopamine,Dopamine is a research framework for fast prototyping of reinforcement learning algorithms. ,google,2023-02-20,2018-07-26,238,41.94138755980861,"['rl', 'ml', 'ai', 'google', 'tensorflow']",2022-11-28,15,"['agarwl@google', 'avassalotti@google', 'btaba', 'cwhsu-google@google', 'evcu@google', 'jingconan@storytell.ai', 'joshgreaves@google', 'psc-g@google', 'smoitra-g@googlebrain', 'tlwillke']",3,10,"['google', 'googlebrain', 'storytell.ai']","['@google', '@google ', 'Google', 'Google Brain', 'Google LLC', 'Storytell.ai']",,0.37,1,0,56,3,0,0,0,1.0,3.0,90.0,3.0,0,27.87535 +71,testing,https://github.com/pytest-dev/pytest,,,,pytest-dev/pytest,pytest,9827,2254,194,Python,https://pytest.org,"pytest: The pytest framework makes it easy to write small tests, yet scales to support complex functional testing",pytest-dev,2023-02-21,2015-06-15,401,24.48878604485582,"['unit-testing', 'test', 'testing', 'python', 'hacktoberfest']",2023-02-18,854,"['RonnyPfannschmidt@redhatinsights', 'The-Compiler@bruhinsoftware', 'asottile', 'benjaminp', 'bluetech', 'blueyed@freelancer,upforhire', 'dependabot[bot]', 'flub', 'hpk42@merlinux', 'nicoddemus@esss']",5,10,"['bruhinsoftware', 'esss', 'freelancer,upforhire', 'merlinux', 'redhatinsights']","['@RedHatInsights ', 'Bruhin Software', 'ESSS', 'Freelancer, up for hire', 'merlinux']",,6.25,251,167,94,0,6,23,6,251.0,424.0,90.0,1.7,0,57.03065 +412,util,https://github.com/pre-commit/pre-commit,,,,pre-commit/pre-commit,pre-commit,9809,705,90,Python,https://pre-commit.com,pre-commit: A framework for managing and maintaining multi-language pre-commit hooks.,pre-commit,2023-02-21,2014-03-13,466,21.010709914320685,"['git', 'pre-commit', 'python', 'linter', 'refactoring']",2023-02-21,147,"['DanielChabrowski', 'asottile', 'chriskuehl@yelp', 'geieredgar', 'georgeyk', 'lorenzwalthert@ponte-energy-partners', 'pre-commit-ci[bot]', 'scop@upcloudltd', 'struys@twitter', 'tdeo@pennylane-hq']",5,10,"['pennylane-hq', 'ponte-energy-partners', 'twitter', 'upcloudltd', 'yelp']","['@UpCloudLtd ', '@Yelp', '@pennylane-hq ', '@ponte-energy-partners', 'Twitter']",,3.27,192,185,109,0,10,20,10,192.0,333.0,90.0,1.7,0,52.33644 +22,nlp,https://github.com/facebookresearch/parlai,,,,facebookresearch/parlai,ParlAI,9806,1992,289,Python,https://parl.ai,ParlAI: A framework for training and evaluating AI models on a variety of openly available dialogue datasets.,facebookresearch,2023-02-20,2017-04-24,304,32.226291079812206,[],2023-02-17,204,"['EricMichaelSmith', 'JackUrb', 'alexholdenmiller@facebookresearch', 'emilydinan@facebookairesearch', 'jaseweston', 'klshuster', 'samhumeau@nabla', 'stephenroller', 'uralik', 'yf225']",3,10,"['facebookairesearch', 'facebookresearch', 'nabla']","['@facebookresearch ', '@nabla', 'Facebook AI Research']",,4.4,107,81,71,0,3,6,3,107.0,161.0,90.0,1.5,0,47.50863 +38,jupyter,https://github.com/jupyter/notebook,,,,jupyter/notebook,notebook,9789,4013,321,Jupyter Notebook,https://jupyter-notebook.readthedocs.io/,notebook: Jupyter Interactive Notebook,jupyter,2023-02-21,2015-04-09,410,23.82579972183588,"['closember', 'jupyter', 'jupyter-notebook', 'notebook']",2023-02-20,623,"['Carreau@quansight-labs', 'ellisonbg@amazonwebservices', 'fperez@universityofcalifornia,berkeley.', 'gnestor@hammiesshorts', 'ivanov', 'jasongrout@databricks', 'jdfreder@google', 'jtpio@quantstack', 'minrk@simularesearchlaboratory', 'takluyver']",8,10,"['amazonwebservices', 'databricks', 'google', 'hammiesshorts', 'quansight-labs', 'quantstack', 'simularesearchlaboratory', 'universityofcalifornia,berkeley.']","['@Quansight-Labs', '@QuantStack', '@databricks', '@google ', 'Amazon Web Services', 'Hammies Shorts', 'Simula Research Laboratory', 'University of California, Berkeley.']",,8.58,153,99,96,0,21,38,21,153.0,321.0,90.0,2.1,0,60.60717 +653,profiling,https://github.com/benfred/py-spy,,,,benfred/py-spy,py-spy,9748,346,111,Rust,,py-spy: Sampling profiler for Python programs,benfred,2023-02-21,2018-08-01,238,40.95798319327731,"['profiler', 'python', 'performance-analysis', 'profiling']",2022-12-09,31,"['Jongy', 'adamchainz@django,djangolondon', 'akhramov', 'benfred@nvidia', 'dependabot[bot]', 'github-actions[bot]', 'jarus@sap', 'kxepal', 'marcstreeter', 'messense']",3,10,"['django,djangolondon', 'nvidia', 'sap']","['@SAP ', '@django, @djangolondon', '@nvidia']",,0.52,31,11,56,2,3,7,3,31.0,25.0,90.0,0.8,0,33.3898 +517,typing,https://github.com/microsoft/pyright,,,,microsoft/pyright,pyright,9743,810,90,Python,,pyright: Static type checker for Python,microsoft,2023-02-21,2019-03-12,206,47.26334026334026,[],2023-02-21,86,"['PylanceBot', 'bschnurr@microsoft', 'cdce8p', 'debonte@microsoft', 'dependabot[bot]', 'erictraut@microsoftcorp.', 'heejaechang@microsoft', 'jakebailey@microsoft', 'msfterictraut@microsoft', 'rchiodo@microsoft']",2,10,"['microsoft', 'microsoftcorp.']","['@Microsoft ', 'Microsoft', 'Microsoft Corp.']",,21.23,425,410,48,0,71,95,71,425.0,1138.0,90.0,2.7,0,52.32759 +315,gui,https://github.com/hoffstadt/dearpygui,,,,hoffstadt/dearpygui,DearPyGui,9684,510,139,C++,https://dearpygui.readthedocs.io/en/latest/,DearPyGui: Dear PyGui: A fast and powerful Graphical User Interface Toolkit for Python with minimal dependencies,hoffstadt,2023-02-21,2020-05-28,142,67.788,"['cpp', 'python', 'imgui', 'toolkit', 'native', 'tools', 'gui', 'graphics', 'macos', 'linux', 'ui', 'python-gui', 'cross-platform', 'windows', 'dearpygui']",2023-02-14,56,"['CodeCox', 'DataExplorerUser', 'JMatthysen@benoitpremiumthreading', 'Jah-On', 'Mstpyt', 'Pcothren@benoitpremiumthreading', 'hoffstadt@metecs', 'iFreilicht', 'liu-kan@wbg,cas', 'v-ein']",3,10,"['benoitpremiumthreading', 'metecs', 'wbg,cas']","['Benoit Premium Threading', 'Metecs', 'WBG, CAS']",,2.56,186,134,33,0,7,8,7,186.0,192.0,90.0,1.0,0,42.43637 +225,util,https://github.com/pyodide/pyodide,,,,pyodide/pyodide,pyodide,9631,626,126,Python,https://pyodide.org/en/stable/,Pyodide is a Python distribution for the browser and Node.js based on WebAssembly,pyodide,2023-02-20,2018-02-23,260,36.94082191780822,"['python', 'webassembly']",2023-02-20,164,"['casatir@éducationnationale', 'dalcde', 'henryiii@princetonuniversity', 'hoodmane@mitmathdepartment', 'mdboom@microsoft', 'msabramo@adobe', 'pre-commit-ci[bot]', 'rth', 'ryanking13', 'wlach@voltus']",6,10,"['adobe', 'microsoft', 'mitmathdepartment', 'princetonuniversity', 'voltus', 'éducationnationale']","['@adobe', 'MIT Math Department', 'Microsoft', 'Princeton University', 'Voltus, Inc.', 'Éducation Nationale']",,15.6,345,257,61,0,16,13,16,345.0,622.0,90.0,1.8,0,55.85916 +142,nlp,https://github.com/ukplab/sentence-transformers,,,,ukplab/sentence-transformers,sentence-transformers,9457,1858,120,Python,https://www.SBERT.net,sentence-transformers: Multilingual Sentence & Image Embeddings with BERT,ukplab,2023-02-21,2019-07-24,187,50.57219251336898,[],2023-01-26,107,"['ArzelaAscoIi@developerdeepset-ai', 'NimaBoscarino@huggingface', 'PhilipMay@telekom', 'andrewkittredge@calcbench', 'cpcdoy', 'fros1y', 'kwang2049', 'nreimers@huggingface', 'osanseviero@huggingface', 'sidhantls']",4,10,"['calcbench', 'developerdeepset-ai', 'huggingface', 'telekom']","['@telekom', 'Calcbench', 'Developer @deepset-ai', 'Hugging Face', 'Huggingface', 'huggingface']",,1.63,134,29,44,1,2,9,2,134.0,141.0,90.0,1.1,0,40.96096 +238,data,https://github.com/tiangolo/sqlmodel,1.0,,,tiangolo/sqlmodel,sqlmodel,9406,405,123,Python,https://sqlmodel.tiangolo.com/,"sqlmodel: SQL databases in Python, designed for simplicity, compatibility, and robustness.",tiangolo,2023-02-21,2021-08-24,78,120.3692870201097,"['python', 'sql', 'sqlalchemy', 'pydantic', 'fastapi', 'json', 'json-schema']",2023-02-21,54,"['Batalex', 'alucarddelta', 'aminalaee', 'andrewbolster@farsetlabswhitehatsec', 'byrman', 'chrisgoddard@pdi', 'chriswhite199', 'dependabot[bot]', 'jalvaradosegura', 'tiangolo']",2,10,"['farsetlabswhitehatsec', 'pdi']","['@FarsetLabs @WhiteHatSec', 'PDI']",,2.94,103,27,18,0,2,5,2,103.0,194.0,90.0,1.9,0,38.00588 +155,data,https://github.com/s0md3v/photon,,,,s0md3v/photon,Photon,9406,1377,325,Python,,Photon: Incredibly fast crawler designed for OSINT.,s0md3v,2023-02-21,2018-03-30,255,36.783240223463686,"['crawler', 'spider', 'python', 'osint', 'information-gathering']",2022-12-20,21,"['BBerastegui', 'alessaba', 'connorskees', 'fabaff', 'joeyliechty@bloomreach', 'neutrinoguy', 'oXis', 's0md3v', 'sirfoga', 'snehm@na']",2,10,"['bloomreach', 'na']","['Bloomreach', 'NA']",,0.04,3,0,60,2,0,4,4,3.0,1.0,90.0,0.3,0,26.32857 +655,util,https://github.com/magicstack/uvloop,,,,magicstack/uvloop,uvloop,9186,537,226,Cython,,uvloop: Ultra fast asyncio event loop.,magicstack,2023-02-21,2015-11-08,380,24.146451370634622,"['asyncio', 'async-await', 'async', 'high-performance', 'libuv', 'python', 'python-3', 'event-loop', 'networking', 'async-python']",2023-01-15,56,"['1st1@edgedb', 'Jackenmen', 'asvetlov@neu.ro', 'cclauss@christianclauss', 'claws', 'elprans@edgedb', 'fantix@edgedb', 'graingert', 'jensbjorgensen', 'jlaine']",3,10,"['christianclauss', 'edgedb', 'neu.ro']","['@edgedb', 'Christian Clauss', 'EdgeDB Inc.', 'Neu.ro']",,0.6,12,3,89,1,1,11,1,12.0,21.0,90.0,1.8,0,36.44397 +371,viz,https://github.com/marceloprates/prettymaps,,,,marceloprates/prettymaps,prettymaps,9068,440,74,Jupyter Notebook,,"prettymaps: A small set of Python functions to draw pretty maps from OpenStreetMap data. Based on osmnx, matplotlib and shapely libraries.",marceloprates,2023-02-19,2021-03-05,102,88.28372739916551,"['matplotlib', 'jupyter-notebook', 'python', 'generative-art', 'cartography', 'maps', 'openstreetmap']",2023-02-15,15,"['CharbelAD', 'G21-Goose', 'JonFreer', 'TheJokersThief', 'chrieke@up42', 'kinow@barcelonasupercomputingcenter', 'marceloprates', 'matthewfeickert@universityofwisconsin-madison', 'mfbehrens99', 'sacovo@studentfhnw']",4,10,"['barcelonasupercomputingcenter', 'studentfhnw', 'universityofwisconsin-madison', 'up42']","['@up42', 'Barcelona Supercomputing Center', 'University of Wisconsin-Madison', 'student@FHNW']",,0.83,9,3,24,0,1,9,1,9.0,17.0,90.0,1.9,0,32.7836 +157,util,https://github.com/pallets/jinja,,,,pallets/jinja,jinja,9065,1539,250,Python,https://jinja.palletsprojects.com,jinja: A very fast and expressive template engine.,pallets,2023-02-21,2010-10-17,644,14.066725781423187,"['python', 'template-engine', 'jinja', 'jinja2', 'templates', 'pallets']",2023-02-07,304,"['ThiefMaster@cern/indico', 'amy-lei', 'birkenfeld@fzjülich', 'davidism', 'dependabot-preview[bot]', 'dependabot[bot]', 'mitsuhiko@sentry', 'pre-commit-ci[bot]', 'tux21b', 'untitaker@getsentry']",4,10,"['cern/indico', 'fzjülich', 'getsentry', 'sentry']","['@getsentry ', 'CERN / @indico ', 'FZ Jülich', 'Sentry']",,1.29,66,51,150,0,3,4,3,66.0,43.0,90.0,0.7,0,47.23291 +398,web,https://github.com/falconry/falcon,,,,falconry/falcon,falcon,9018,901,267,Python,https://falcon.readthedocs.io/en/stable/,"falcon: The no-magic web data plane API and microservices framework for Python developers, with a focus on reliability, correctness, and performance at scale.",falconry,2023-02-21,2012-12-06,532,16.92386058981233,"['python', 'framework', 'rest', 'microservices', 'web', 'api', 'http', 'wsgi', 'asgi', 'api-rest']",2023-01-18,196,"['CaselIT', 'fxfitz@centurylink', 'jmvrbanac@liquidweb', 'kgriffs', 'lichray@broadcom', 'myusko', 'painterjd@.', 'santeyio', 'steven-upside', 'vytas7']",4,10,"['.', 'broadcom', 'centurylink', 'liquidweb']","['.', '@liquidweb', 'Broadcom Inc.', 'CenturyLink']",,1.06,48,19,124,1,8,7,8,48.0,47.0,90.0,1.0,0,45.40573 +126,ml-dl,https://github.com/microsoft/deepspeed,,,,microsoft/deepspeed,DeepSpeed,8958,1077,146,Python,https://www.deepspeed.ai/,"DeepSpeed is a deep learning optimization library that makes distributed training and inference easy, efficient, and effective.",microsoft,2023-02-21,2020-01-23,160,55.68916518650089,"['deep-learning', 'pytorch', 'gpu', 'machine-learning', 'billion-parameters', 'data-parallelism', 'model-parallelism', 'inference', 'pipeline-parallelism', 'compression', 'mixture-of-experts', 'trillion-parameters', 'zero']",2023-02-17,159,"['RezaYazdaniAminabadi@microsoft', 'ShadenSmith@microsoft', 'awan-10@microsoft', 'cli99@microsoft', 'conglongli@microsoft', 'jeffra@microsoft', 'mrwyattii', 'samyam', 'stas00@stasosphereonline/huggingface', 'tjruwase']",2,10,"['microsoft', 'stasosphereonline/huggingface']","['@microsoft', '@microsoft ', 'Microsoft', 'Stasosphere Online Inc. / HuggingFace Inc.']",,9.04,449,277,38,0,17,18,17,449.0,840.0,90.0,1.9,0,50.10762 +523,ml-dl,https://github.com/lucidrains/dalle2-pytorch,,,,lucidrains/dalle2-pytorch,DALLE2-pytorch,8951,772,123,Python,,"DALLE2-pytorch: Implementation of DALL-E 2, OpenAI's updated text-to-image synthesis neural network, in Pytorch",lucidrains,2023-02-21,2022-04-07,45,195.1931464174455,"['artificial-intelligence', 'deep-learning', 'text-to-image']",2023-02-12,16,"['Conight', 'JiaHeng-DLUT', 'Light-V', 'Veldrovive', 'kashif', 'krish240574', 'lucidrains', 'nousr', 'rom1504@google', 'zaaachos']",1,10,['google'],['@google'],,11.23,18,5,11,0,334,376,334,17.0,19.0,90.0,1.1,0,33.88867 +132,ml,https://github.com/epistasislab/tpot,,,,epistasislab/tpot,tpot,8947,1516,294,Python,http://epistasislab.github.io/tpot/,tpot: A Python Automated Machine Learning tool that optimizes machine learning pipelines using genetic programming.,epistasislab,2023-02-21,2015-11-03,381,23.474137931034484,"['machine-learning', 'python', 'data-science', 'automl', 'automation', 'scikit-learn', 'hyperparameter-optimization', 'model-selection', 'parameter-tuning', 'automated-machine-learning', 'random-forest', 'gradient-boosting', 'feature-engineering', 'aiml', 'alzheimer', 'alzheimers', 'nia', 'u01ag066833', 'ag066833', 'adsp']",2022-07-29,112,"['GJena', 'JDRomano2@universityofpennsylvania', 'PGijsbers@eindhovenuniversityoftechnology', 'TomAugspurger@microsoft', 'bartleyn@usc', 'beckernick@nvidia', 'pronojitsaha', 'rasbt@lightning-ai,universityofwisconsin-madison', 'rhiever', ""weixuanfu@children'shospitalofphiladelphia""]",7,10,"[""children'shospitalofphiladelphia"", 'eindhovenuniversityoftechnology', 'lightning-ai,universityofwisconsin-madison', 'microsoft', 'nvidia', 'universityofpennsylvania', 'usc']","['@Lightning-AI , University of Wisconsin-Madison', '@NVIDIA', '@microsoft', ""Children's Hospital of Philadelphia"", 'Eindhoven University of Technology', 'USC', 'University of Pennsylvania']",,0.35,17,3,89,7,0,4,4,17.0,13.0,90.0,0.8,0,38.03047 +244,util,https://github.com/aws/serverless-application-model,,,,aws/serverless-application-model,serverless-application-model,8923,2295,297,Python,https://aws.amazon.com/serverless/sam,serverless-application-model: The AWS Serverless Application Model (AWS SAM) transform is a AWS CloudFormation macro that transforms SAM templates into CloudFormation templates.,aws,2023-02-21,2016-10-10,332,26.853396388650044,"['serverless', 'aws', 'lambda', 'aws-sam', 'sam', 'sam-specification', 'serverless-applications', 'serverless-application-model']",2023-02-17,260,"['GavinZZ@aws', 'aahung@aws', 'brettstack@amazonwebservices-serverlessapplications', 'hawflau@aws', 'hoffa@aws', 'jfuss@awslambda', 'keetonian@leland', 'mndeveci', 'praneetap@aws', 'sanathkr@rarecamp']",5,10,"['amazonwebservices-serverlessapplications', 'aws', 'awslambda', 'leland', 'rarecamp']","['@AWS Lambda', '@RareCamp', '@aws', '@aws ', 'AWS', 'Amazon Web Services - Serverless Applications', 'Leland']",,7.81,470,349,78,0,18,10,18,470.0,284.0,90.0,0.6,0,54.13288 +470,nlp,https://github.com/microsoft/unilm,,,,microsoft/unilm,unilm,8880,1535,231,Python,https://aka.ms/nlpagi,"unilm: Large-scale Self-supervised Pre-training Across Tasks, Languages, and Modalities",microsoft,2023-02-21,2019-07-23,187,47.45038167938932,"['nlp', 'language-understanding', 'language-generation', 'pre-trained-model', 'small-pre-trained-model', 'unilm', 'minilm', 'layoutlm', 'infoxlm', 'multimodal-pre-trained-model', 'layoutxlm', 'beit', 'document-ai', 'trocr', 'wavlm', 'beit-3', 'foundation-models', 'xlm-e', 'deepnet', 'document-foundation-model']",2023-02-10,55,"['Dod-o', 'MarkWuNLP@microsoftresearch', 'addf400@harbininstituteoftechnology', 'donglixp@microsoftresearch', 'getao@microsoft', 'gitnlp', 'lockon-n', 'ranpox', 'shumingma@microsoftresearch', 'wolfshow']",3,10,"['harbininstituteoftechnology', 'microsoft', 'microsoftresearch']","['Harbin Institute of Technology', 'Microsoft', 'Microsoft Research']",,6.06,120,52,44,0,0,1,1,121.0,154.0,90.0,1.3,0,41.41346 +961,util,https://github.com/charliermarsh/ruff,,,,charliermarsh/ruff,ruff,8846,278,40,Rust,https://beta.ruff.rs,"ruff: An extremely fast Python linter, written in Rust.",charliermarsh,2023-02-21,2022-08-09,28,314.3248730964467,"['linter', 'pep8', 'python', 'python3', 'rust', 'rustpython', 'static-analysis', 'static-code-analysis', 'style-guide', 'styleguide', 'ruff']",2023-02-21,128,"['JonathanPlasse@drotek', 'akx@valohai', 'andersk@zulip', 'charliermarsh', 'colin99d', 'edgarrmondragon@meltano', 'harupy', 'not-my-profile', 'sbrugman', 'squiddy@momox']",5,10,"['drotek', 'meltano', 'momox', 'valohai', 'zulip']","['@Meltano ', '@valohai ', '@zulip', 'Drotek', 'momox']",,49.71,2307,2097,7,0,230,402,230,2313.0,4979.0,90.0,2.2,0,55.45157 +5,web,https://github.com/benoitc/gunicorn,,,,benoitc/gunicorn,gunicorn,8788,1628,231,Python,http://www.gunicorn.org,"gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications.",benoitc,2023-02-20,2009-11-30,690,12.730960264900663,"['http-server', 'http', 'python', 'wsgi-server', 'wsgi']",2023-01-26,383,"['alq666@datadog', 'benoitc@enkimultimedia', 'berkerpeksag', 'collinanderson', 'davisp', 'hramezani@crate', 'javabrett@confluentinc', 'matrixise@mgx.io', 'sirkonst', 'tilgovi@nytimes']",6,10,"['confluentinc', 'crate', 'datadog', 'enkimultimedia', 'mgx.io', 'nytimes']","['@DataDog ', '@confluentinc', '@crate ', '@nytimes', 'Enki Multimedia', 'Mgx.IO']",,0.5,99,30,161,1,0,7,7,99.0,126.0,90.0,1.3,0,49.53829 +92,ml-ops,https://github.com/uber/ludwig,,,,uber/ludwig,ludwig,8766,1030,183,Python,http://ludwig.ai,ludwig: Data-centric declarative deep learning framework,uber,2023-02-20,2018-12-27,216,40.42292490118577,"['deep-learning', 'deeplearning', 'deep', 'learning', 'machine-learning', 'machinelearning', 'machine', 'natural-language-processing', 'natural-language', 'computer-vision', 'data-centric', 'data-science', 'python', 'pytorch', 'neural-network', 'ml', 'datascience']",2023-02-21,130,"['arnavgarg1@predibase', 'connor-mccorm', 'dantreiman@predibase', 'geoffreyangus', 'jimthompson5802', 'jppgks@predibase', 'justinxzhao', 'msaisumanth@uber', 'tgaddair@uber', 'w4nderlust']",2,10,"['predibase', 'uber']","['@Predibase', '@uber ', 'Predibase', 'Uber']",,17.62,370,311,51,0,15,9,15,371.0,524.0,90.0,1.4,0,50.24584 +134,ml-dl,https://github.com/keras-team/autokeras,,,,keras-team/autokeras,autokeras,8743,1392,306,Python,http://autokeras.com/,autokeras: AutoML library for deep learning,keras-team,2023-02-21,2017-11-19,274,31.858927641853203,"['automl', 'neural-architecture-search', 'automated-machine-learning', 'python', 'deep-learning', 'machine-learning', 'autodl', 'tensorflow', 'keras']",2023-02-20,140,"['abgese', 'boyuangong', 'dependabot[bot]', 'droidadroit@texasa&muniversity', 'gabrieldemarmiesse@preligens', 'haifeng-jin@keras-teamtensorflowgooglers', 'qingquansong', 'satyakesav@texasa&muniversity,collegestation', 'taobupt', 'tl-yang']",4,10,"['keras-teamtensorflowgooglers', 'preligens', 'texasa&muniversity', 'texasa&muniversity,collegestation']","['@keras-team @tensorflow @googlers', 'Preligens', 'Texas A&M University', 'Texas A&M University, College Station']",,1.54,59,42,64,0,3,11,3,59.0,56.0,90.0,0.9,0,44.01804 +495,data,https://github.com/duckdb/duckdb,1.0,,,duckdb/duckdb,duckdb,8585,801,130,C++,http://www.duckdb.org,DuckDB is an in-process SQL OLAP Database Management System,duckdb,2023-02-21,2018-06-26,243,35.30846063454759,"['sql', 'database', 'olap', 'analytics', 'embedded-database']",2023-02-21,236,"['Mause@duckdblabs', 'Mytherin@duckdblabs', 'Tishj', 'hannes@cwi', 'krlmlr@cynkra', 'lnkuiper@cwi', 'pdet@duckdblabs', 'samansmink@universityofamsterdam', 'taniabogatsch', 'tiagokepe']",4,10,"['cwi', 'cynkra', 'duckdblabs', 'universityofamsterdam']","['@cynkra ', '@duckdblabs', 'CWI', 'DuckDB Labs', 'University of Amsterdam']",,143.83,987,814,57,0,8,7,8,987.0,1819.0,90.0,1.8,0,59.11768 +151,nlp,https://github.com/sloria/textblob,,,,sloria/textblob,TextBlob,8440,1112,270,Python,https://textblob.readthedocs.io/,"TextBlob: Simple, Pythonic, text processing--Sentiment analysis, part-of-speech tagging, noun phrase extraction, translation, and more.",sloria,2023-02-20,2013-06-30,503,16.76503972758229,"['nlp', 'nltk', 'pattern', 'python', 'python-3', 'python-2', 'natural-language-processing']",2021-10-22,36,"['RomanYankovsky@urbaninfrastructure', 'danong@google', 'dependabot-preview[bot]', 'dependabot-support', 'evandempsey', 'jammmo', 'jeffakolb', 'jschnurr@google', 'pyup-bot@pyupio', 'sloria']",3,10,"['google', 'pyupio', 'urbaninfrastructure']","['@pyupio', '@urbaninfrastructure ', 'Google']",,0.0,11,3,117,16,0,4,4,11.0,6.0,90.0,0.5,0,28.79614 +100,nlp,https://github.com/clips/pattern,,,,clips/pattern,pattern,8419,1595,547,Python,https://github.com/clips/pattern/wiki,"pattern: Web mining module for Python, with tools for scraping, natural language processing, machine learning, network analysis and visualization.",clips,2023-02-21,2011-05-03,616,13.664038952005564,"['python', 'machine-learning', 'natural-language-processing', 'web-mining', 'wordnet', 'sentiment-analysis', 'network-analysis']",2020-04-25,30,"['Xsardas1000', 'fdb@nodebox', 'frederik-elwert@ruhr-universitybochum', 'jgrivolla@universitatpompeufabra', 'kkoch986@zentail', 'markus-beuckelmann', 'napsternxg@twitter-research', 'newworldorder', 'sloria', 'tom-de-smedt']",5,10,"['nodebox', 'ruhr-universitybochum', 'twitter-research', 'universitatpompeufabra', 'zentail']","['@nodebox ', '@twitter-research ', 'Ruhr-University Bochum', 'Universitat Pompeu Fabra', 'Zentail']",,0.0,5,1,144,34,1,0,1,5.0,5.0,90.0,1.0,0,27.21469 +125,perf,https://github.com/modin-project/modin,,,,modin-project/modin,modin,8392,592,108,Python,http://modin.readthedocs.io,Modin: Scale your Pandas workflows by changing a single line of code,modin-project,2023-02-20,2018-06-21,243,34.41359109548916,"['dataframe', 'pandas', 'distributed', 'datascience', 'modin', 'sql', 'python', 'analytics', 'data-science', 'hacktoberfest']",2023-02-20,110,"['YarShev', 'amyskov', 'anmyachev', 'dchigarev', 'devin-petersohn@ponder', 'gshimansky@intelcorporation', 'mvashishtha@ponder.io', 'prutskov', 'vnlitvinov', 'williamma12']",3,10,"['intelcorporation', 'ponder', 'ponder.io']","['Intel Corporation', 'Ponder', 'ponder.io']",,9.25,559,371,57,0,14,14,14,559.0,572.0,90.0,1.0,0,49.96798 +815,ml-dl,https://github.com/danielgatis/rembg,,,,danielgatis/rembg,rembg,8368,1050,105,Python,,Rembg is a tool to remove images background,danielgatis,2023-02-21,2020-08-10,132,63.25701943844492,"['image-processing', 'background-removal', 'python']",2022-12-28,33,"['0xflotus', 'MadMaxInfinity', 'carlogrisetti', 'cclauss@christianclauss', 'danielgatis', 'iory@japan', 'jangop@recommendy', 'jaric', 'rcrvano', 'samiede@leonardo-interactive']",4,10,"['christianclauss', 'japan', 'leonardo-interactive', 'recommendy']","['@Leonardo-Interactive ', 'Christian Clauss', 'Japan', 'Recommendy']",,1.71,75,56,31,2,16,13,16,75.0,152.0,90.0,2.0,0,40.64398 +53,perf,https://github.com/numba/numba,,,,numba/numba,numba,8287,998,208,Python,http://numba.pydata.org/,numba: NumPy aware dynamic Python compiler using LLVM,numba,2023-02-21,2012-03-08,571,14.491381463902073,"['python', 'numpy', 'llvm', 'compiler', 'cuda', 'parallel']",2023-02-20,330,"['DrTodd13@intellabs', 'esc@anaconda', 'gmarkall@nvidia', 'guilhermeleobas', 'markflorisson@mlabs', 'pitrou', 'rjenc29', 'seibert', 'sklam', 'stuartarchibald']",4,10,"['anaconda', 'intellabs', 'mlabs', 'nvidia']","['@nvidia', 'Anaconda Inc.', 'Intel Labs', 'MLabs']",,27.08,386,213,133,0,5,17,5,385.0,918.0,90.0,2.4,0,57.58023 +282,util,https://github.com/arrow-py/arrow,,,,arrow-py/arrow,arrow,8227,640,134,Python,https://arrow.readthedocs.io,arrow: 🏹 Better dates & times for Python,arrow-py,2023-02-21,2012-11-18,535,15.365261472785486,"['python', 'arrow', 'datetime', 'date', 'time', 'timestamp', 'timezones', 'hacktoberfest']",2022-11-15,268,"['andrewelkins', 'anishnya@caen', 'chrishaines', 'crsmithdev', 'cyriaka90', 'jadchaar@amazon', 'krisfremen', 'ramonsaraiva@consumeraffairs', 'systemcatch', 'zcribe']",3,10,"['amazon', 'caen', 'consumeraffairs']","['@CAEN', '@ConsumerAffairs ', 'Amazon']",,0.52,8,0,125,3,0,5,5,8.0,7.0,90.0,0.9,0,38.77284 +84,ml,https://github.com/statsmodels/statsmodels,,,,statsmodels/statsmodels,statsmodels,8206,2660,275,Python,http://www.statsmodels.org/devel/,Statsmodels: statistical modeling and econometrics in Python,statsmodels,2023-02-21,2011-06-12,610,13.443014275684531,"['python', 'statistics', 'econometrics', 'data-analysis', 'generalized-linear-models', 'timeseries-analysis', 'regression-models', 'count-model', 'data-science', 'forecasting', 'hypothesis-testing', 'prediction', 'robust-estimation']",2023-02-20,407,"['ChadFulton', 'bashtage', 'j-grana6', 'jbrockmendel', 'josef-pkt', 'jseabold@hcahealthcare', 'kshedden', 'thequackdaddy', 'vincentarelbundock', 'wesm@voltrondata']",2,10,"['hcahealthcare', 'voltrondata']","['@voltrondata', 'HCA Healthcare']",,4.79,448,181,142,0,3,4,3,450.0,617.0,90.0,1.4,0,50.75221 +294,util,https://github.com/paramiko/paramiko,,,,paramiko/paramiko,paramiko,8176,1910,319,Python,http://paramiko.org,paramiko: The leading native Python SSHv2 protocol library.,paramiko,2023-02-21,2009-02-02,733,11.149814923046952,[],2023-02-16,179,"['alex', 'bitprophet@jumptrading', 'bz2', 'dorianpula@amberpenguinsoftware', 'jaraco@google', 'lndbrg', 'mwilliamson', 'offbyone', 'ploxiln@healthbyro', 'scottkmaxwell@codecobblers,inc']",5,10,"['amberpenguinsoftware', 'codecobblers,inc', 'google', 'healthbyro', 'jumptrading']","['@HealthByRo ', '@jumptrading', 'Amber Penguin Software', 'Code Cobblers, Inc', 'Google']",,3.42,97,35,171,0,0,13,13,97.0,187.0,90.0,1.9,0,52.3012 +116,ml-ops,https://github.com/kedro-org/kedro,,From: https://github.com/quantumblacklabs/kedro,,kedro-org/kedro,kedro,8114,764,104,Python,https://kedro.org,"kedro: A Python framework for creating reproducible, maintainable and modular data science code.",kedro-org,2023-02-21,2019-04-18,200,40.39687055476529,"['pipeline', 'kedro', 'hacktoberfest', 'mlops', 'experiment-tracking', 'python', 'machine-learning']",2023-02-21,185,"['921kiyo', 'AntonyMilneQB', 'DmitriiDeriabinQB@quantumblack', 'andrii-ivaniuk', 'deepyaman@foundingmleclaypotai', 'idanov@quantumblack', 'limdauto', 'lorenabalan@softwareengineeratquantumblacklabs', 'merelcht@quantumblack', 'yetudada@quantumblack']",3,10,"['foundingmleclaypotai', 'quantumblack', 'softwareengineeratquantumblacklabs']","['@quantumblack', '@quantumblack ', 'Founding MLE @claypotai', 'QuantumBlack', 'Software Engineer at @quantumblacklabs ']",,6.71,421,233,47,0,7,9,7,420.0,464.0,90.0,1.1,0,49.01443 +773,ml-dl,https://github.com/sanster/lama-cleaner,,,,sanster/lama-cleaner,lama-cleaner,8112,717,64,Python,https://lama-cleaner-docs.vercel.app/,"lama-cleaner: Image inpainting tool powered by SOTA AI Model. Remove any unwanted object, defect, people from your pictures or erase and replace(powered by stable diffusion) any thing on your pictures.",sanster,2023-02-21,2021-11-15,66,122.37931034482759,"['inpainting', 'pytorch', 'lama', 'latent-diffusion', 'mat', 'zits', 'stable-diffusion']",2023-02-19,12,"['BedirYilmaz@tiermobility', 'LinuxSuRen@opensource-f2f', 'Niek@nivademab.v.', 'Sanster', 'blessedcoolant', 'callmepantoine', 'davidbejarcaceres', 'eltociear@bandism', 'fiskbil', 'loretoparisi@musixmatchdev']",5,10,"['bandism', 'musixmatchdev', 'nivademab.v.', 'opensource-f2f', 'tiermobility']","['@Musixmatchdev ', '@bandism ', '@opensource-f2f', 'Nivadema B.V.', 'Tier Mobility']",,7.83,88,70,15,0,42,36,42,88.0,150.0,90.0,1.7,0,42.52804 +706,sim,https://github.com/isl-org/open3d,,,,isl-org/open3d,Open3D,8096,1891,173,C++,http://www.open3d.org,Open3D: A Modern Library for 3D Data Processing,isl-org,2023-02-21,2016-12-02,324,24.932688077430708,"['mesh-processing', 'computer-graphics', 'opengl', 'cpp', 'python', 'reconstruction', 'odometry', 'visualization', 'registration', 'machine-learning', '3d', 'pointcloud', 'rendering', 'gui', '3d-perception', 'gpu', 'arm', 'cuda', 'pytorch', 'tensorflow']",2023-02-20,183,"['benjaminum', 'errissa', 'griegler', 'prewettg', 'qianyizh@formatechnologies', 'reyanshsolis@agv-iit-kgpacr-iitkgp', 'ssheorey@intelisl', 'syncle@postech', 'takanokage', 'yxlao@hku-cs']",5,10,"['agv-iit-kgpacr-iitkgp', 'formatechnologies', 'hku-cs', 'intelisl', 'postech']","['@AGV-IIT-KGP @acr-iitkgp ', 'Forma Technologies', 'HKU-CS', 'Intel ISL', 'POSTECH']",,4.02,352,193,76,0,1,4,1,352.0,496.0,90.0,1.4,0,49.24217 +128,viz,https://github.com/altair-viz/altair,,,,altair-viz/altair,altair,8056,715,147,Python,https://altair-viz.github.io/,altair: Declarative statistical visualization library for Python,altair-viz,2023-02-21,2015-09-19,387,20.785845927018062,[],2023-02-19,150,"['ChristopherDavisUCI@ucirvine', 'afonit', 'binste', 'domoritz@cmu,apple', 'eitanlees', 'ellisonbg@amazonwebservices', 'jakevdp@google', 'joelostblom@universityofbritishcolumbia', 'mattijn', 'palewire@reuters']",6,10,"['amazonwebservices', 'cmu,apple', 'google', 'reuters', 'ucirvine', 'universityofbritishcolumbia']","['Amazon Web Services', 'CMU, Apple', 'Google', 'Reuters', 'UC Irvine', 'University of British Columbia']",,4.21,269,199,90,0,2,4,2,270.0,768.0,90.0,2.8,0,52.43499 +758,diffusion,https://github.com/divamgupta/diffusionbee-stable-diffusion-ui,,,,divamgupta/diffusionbee-stable-diffusion-ui,diffusionbee-stable-diffusion-ui,8018,321,77,JavaScript,https://diffusionbee.com,diffusionbee-stable-diffusion-ui: Diffusion Bee is the easiest way to run Stable Diffusion locally on your M1 Mac. Comes with a one-click installer. No dependencies or technical knowledge needed.,divamgupta,2023-02-21,2022-09-06,24,332.1065088757396,"['electron-app', 'macos', 'stable-diffusion']",2023-02-13,16,"['AEtheve', 'CrudeDiatribe', 'EthanMcKanna', 'Iktwo', 'Itangalo', 'divamgupta', 'lachlanjc@watershed-climate', 'piotrski@noaignite', 'trebor', 'w3cdotorg']",2,10,"['noaignite', 'watershed-climate']","['@watershed-climate', 'NoA Ignite']",,3.9,96,11,6,0,14,30,14,96.0,207.0,90.0,2.2,0,35.34106 +29,ml-ops,https://github.com/great-expectations/great_expectations,,,,great-expectations/great_expectations,great_expectations,7998,1233,71,Python,https://docs.greatexpectations.io/,great_expectations: Always know what to expect from your data.,great-expectations,2023-02-21,2017-09-11,284,28.133668341708542,"['pipeline-tests', 'dataquality', 'datacleaning', 'datacleaner', 'data-science', 'data-profiling', 'pipeline', 'pipeline-testing', 'cleandata', 'dataunittest', 'data-unit-tests', 'eda', 'exploratory-data-analysis', 'exploratory-analysis', 'exploratorydataanalysis', 'data-quality', 'data-engineering', 'pipeline-debt', 'data-profilers', 'mlops']",2023-02-18,368,"['Aylr', 'NathanFarmer@gxlabs', 'Shinnnyshinshin@superconductive', 'abegong@superconductive', 'alexsherstinsky', 'anthonyburdi@gxlabs', 'cdkini', 'eugmandel@superconductive', 'jcampbell', 'roblim']",2,10,"['gxlabs', 'superconductive']","['GX Labs', 'Superconductive', 'Superconductive ']",,40.6,952,841,66,0,55,41,55,953.0,1848.0,90.0,1.9,0,58.17139 +394,web,https://github.com/encode/starlette,,,,encode/starlette,starlette,7905,715,112,Python,https://www.starlette.io/,starlette: The little ASGI framework that shines. 🌟,encode,2023-02-21,2018-06-25,243,32.49266001174398,"['python', 'async', 'websockets', 'http']",2023-02-20,224,"['JayH5@yelp', 'Kludex@encode', 'adriangb', 'aminalaee', 'blueyed@freelancer,upforhire', 'dependabot[bot]', 'florimondmanca', 'graingert', 'tiangolo', 'tomchristie@encodeoss']",4,10,"['encode', 'encodeoss', 'freelancer,upforhire', 'yelp']","['@encode', 'Encode OSS', 'Freelancer, up for hire', 'Yelp']",,3.46,113,86,57,0,13,27,13,113.0,245.0,90.0,2.2,0,51.36611 +7,util,https://github.com/boto/boto3,,,,boto/boto3,boto3,7900,1721,238,Python,https://aws.amazon.com/sdk-for-python/,boto3: AWS SDK for Python,boto,2023-02-20,2014-10-03,437,18.048302872062663,"['python', 'aws', 'cloud', 'cloud-management', 'aws-sdk']",2023-02-20,140,"['JordonPhillips@amazonwebservices', 'aws-sdk-python-automation', 'awstools', 'danielgtaylor@istreamplanet', 'jamesls', 'joguSD', 'kyleknap@amazonwebservices', 'nateprewitt@amazonwebservices', 'rayluo@microsoft', 'shepazon@aws']",4,10,"['amazonwebservices', 'aws', 'istreamplanet', 'microsoft']","['@AWS', 'Amazon Web Services', 'Microsoft', 'iStreamPlanet']",,10.04,180,140,102,0,0,149,149,178.0,348.0,90.0,2.0,0,54.57842 +951,web,https://github.com/bottlepy/bottle,,,,bottlepy/bottle,bottle,7900,1444,313,Python,http://bottlepy.org/,bottle.py is a fast and simple micro-framework for python web-applications.,bottlepy,2023-02-21,2009-06-30,712,11.093279839518555,"['python', 'wsgi', 'rest', 'web-framework', 'bottle']",2022-09-05,227,"['defnull@gwdggöttingen', 'eric-wieser@universityofcambridge', 'fredj@camptocamp', 'hartwork', 'iurisilvio@buser', 'michael-k', 'myzhan@alibaba-inc', 'oz123@spectrocloud', 'sc68cal', 'sgala@redhat']",7,10,"['alibaba-inc', 'buser', 'camptocamp', 'gwdggöttingen', 'redhat', 'spectrocloud', 'universityofcambridge']","['@camptocamp', 'Alibaba-inc', 'Buser', 'GWDG Göttingen', 'Red Hat', 'Spectro Cloud', 'University of Cambridge']",,0.29,14,6,166,6,0,6,6,14.0,8.0,90.0,0.6,0,41.30719 +367,ml,https://github.com/megvii-basedetection/yolox,,,,megvii-basedetection/yolox,YOLOX,7875,1903,72,Python,,"YOLOX is a high-performance anchor-free YOLO, exceeding yolov3~v5 with MegEngine, ONNX, TensorRT, ncnn, and OpenVINO supported. Documentation: https://yolox.readthedocs.io/",megvii-basedetection,2023-02-21,2021-07-17,83,94.23076923076923,"['yolox', 'yolov3', 'onnx', 'tensorrt', 'ncnn', 'openvino', 'pytorch', 'megengine', 'object-detection', 'yolo', 'deep-learning']",2023-02-16,69,"['DefTruth@paddlepaddle', 'FateScript@megvii-basedetection', 'GOATmessi7', 'Joker316701882@megviibasedetection', 'ankandrew', 'developer0hye@markany', 'ianpundar@wuhanuniversity', 'manangoel99@wandb', 'wwqgtxx', 'yancie-yjr@hust']",7,10,"['hust', 'markany', 'megvii-basedetection', 'megviibasedetection', 'paddlepaddle', 'wandb', 'wuhanuniversity']","['@Megvii-BaseDetection ', '@PaddlePaddle', '@wandb ', 'HUST', 'MarkAny', 'Megvii BaseDetection', 'Wuhan University']",,0.79,99,51,19,0,1,3,1,99.0,122.0,90.0,1.2,0,40.77119 +970,study,https://github.com/openai/spinningup,,,,openai/spinningup,spinningup,7852,1838,217,Python,https://spinningup.openai.com/,spinningup: An educational resource to help anyone learn deep reinforcement learning.,openai,2023-02-21,2018-11-07,224,35.05357142857143,[],2020-02-07,25,"['albertwujj', 'allanbreyes', 'alok', 'bchess@openai', 'christopherhesse@openai', 'jachiam', 'maksay', 'marko-bast', 'mimoralea', 'rootulp@celestiaorg']",2,10,"['celestiaorg', 'openai']","['@celestiaorg', '@openai ', 'OpenAI']",,0.0,10,4,52,37,0,1,1,10.0,6.0,90.0,0.6,0,21.20581 +422,ml-dl,https://github.com/pyro-ppl/pyro,,,,pyro-ppl/pyro,pyro,7795,962,201,Python,http://pyro.ai,pyro: Deep universal probabilistic programming with Python and PyTorch,pyro-ppl,2023-02-21,2017-06-16,296,26.271064034665383,"['python', 'pytorch', 'machine-learning', 'bayesian', 'probabilistic-programming', 'bayesian-inference', 'variational-inference', 'probabilistic-modeling', 'deep-learning']",2023-02-03,134,"['eb8680', 'fehiepsi@google', 'fritzo@generatebiomedicines', 'jpchen@facebook', 'karalets', 'martinjankowiak', 'neerajprad@meta', 'null-a', 'ordabayevy@broadinstitute', 'stefanwebb']",5,10,"['broadinstitute', 'facebook', 'generatebiomedicines', 'google', 'meta']","['@facebook', 'Broad Institute', 'Generate Biomedicines', 'Google', 'Meta']",,1.37,30,23,69,1,4,6,4,30.0,64.0,90.0,2.1,0,44.77261 +615,testing,https://github.com/robotframework/robotframework,,,,robotframework/robotframework,robotframework,7777,2076,474,Python,http://robotframework.org,robotframework: Generic automation framework for acceptance testing and RPA,robotframework,2023-02-21,2014-06-27,451,17.216635041113218,"['robotframework', 'testing', 'automation', 'testautomation', 'attd', 'bdd', 'rpa', 'python']",2023-02-15,174,"['Tattoo', 'asyrjasalo', 'jrantanen@reaktor', 'jussimalinen@reaktor', 'khusa@reaktorinnovations', 'mikahanninen@robocorp', 'mkorpela@reaktor', 'pekkaklarck@eligaoy', 'spooning', 'yanne@reaktor']",4,10,"['eligaoy', 'reaktor', 'reaktorinnovations', 'robocorp']","['@reaktor ', 'Eliga Oy', 'Reaktor', 'Reaktor Innovations', 'Robocorp']",,9.48,172,91,105,0,13,15,13,172.0,294.0,90.0,1.7,0,53.2116 +440,ml-dl,https://github.com/kornia/kornia,,,,kornia/kornia,kornia,7774,781,120,Python,https://kornia.github.io/kornia/,kornia: Open Source Differentiable Computer Vision Library,kornia,2023-02-20,2018-08-22,235,33.08085106382979,"['computer-vision', 'image-processing', 'machine-learning', 'pytorch', 'deep-learning', 'neural-network', 'python', 'artificial-intelligence']",2023-02-20,204,"['HassanAlsamahi@brightskiesinc', 'ananyamukh6', 'dependabot[bot]', 'ducha-aiki@czechtechnicaluniversityinprague', 'dvd42', 'edgarriba@kornia.org', 'johnnv1', 'pre-commit-ci[bot]', 'priba@computervisioncenter', 'shijianjian@kaust']",5,10,"['brightskiesinc', 'computervisioncenter', 'czechtechnicaluniversityinprague', 'kaust', 'kornia.org']","['Brightskies Inc', 'Computer Vision Center', 'Czech Technical University in Prague', 'KAUST', 'Kornia.org']",,7.23,238,189,55,0,7,8,7,238.0,340.0,90.0,1.4,0,51.79183 +95,perf,https://github.com/vaexio/vaex,,,,vaexio/vaex,vaex,7770,584,141,Python,https://vaex.io,"vaex: Out-of-Core hybrid Apache Arrow/NumPy DataFrame for Python, ML, visualization and exploration of big tabular data at a billion rows per second 🚀",vaexio,2023-02-21,2014-09-27,438,17.71661237785016,"['dataframe', 'python', 'bigdata', 'tabular-data', 'visualization', 'memory-mapped-file', 'hdf5', 'machine-learning', 'machinelearning', 'data-science', 'pyarrow']",2022-12-08,72,"['Ben-Epstein@rungalileo', 'JovanVeljanoski', 'NickCrews', 'byaminov', 'honno@quansight', 'kmcentush@cuberg', 'maartenbreddels@maartenbreddels', 'rieder@universitédegenève', 'saikiran2603@navigateconsulting', 'xdssio@xdss']",7,10,"['cuberg', 'maartenbreddels', 'navigateconsulting', 'quansight', 'rungalileo', 'universitédegenève', 'xdss']","['@Quansight', '@maartenbreddels', '@navigateconsulting ', '@rungalileo', 'Cuberg', 'Université de Genève', 'XDSS']",,3.37,88,22,102,2,0,43,43,88.0,143.0,90.0,1.6,0,48.44287 +10,util,https://github.com/cython/cython,,,,cython/cython,cython,7686,1363,232,Python,https://cython.org,cython: The most widely used Python to C compiler,cython,2023-02-20,2010-11-21,639,12.020107238605899,"['python', 'cython', 'cpython', 'cpython-extensions', 'c', 'cpp', 'performance', 'big-data']",2023-02-21,490,"['da-woods', 'dalcinl@ecrcatkaust', 'insertinterestingnamehere@utaustincsemprogram', 'jdemeyer@be-mobile', 'larsmans', 'markflorisson@mlabs', 'mattip@quansightlabs', 'robertwb', 'scoder', 'vitek']",5,10,"['be-mobile', 'ecrcatkaust', 'mlabs', 'quansightlabs', 'utaustincsemprogram']","['@ecrc at KAUST ', 'Be-Mobile', 'MLabs', 'Quansight Labs', 'UT Austin CSEM Program']",,8.21,194,116,149,0,6,15,6,195.0,399.0,90.0,2.0,0,56.51943 +547,ml,https://github.com/optuna/optuna,,,,optuna/optuna,optuna,7600,805,123,Python,https://optuna.org,optuna: A hyperparameter optimization framework,optuna,2023-02-21,2018-02-21,261,29.118773946360154,"['python', 'machine-learning', 'parallel', 'distributed', 'hyperparameter-optimization', 'hacktoberfest']",2023-02-21,227,"['HideakiImamura@preferrednetworks', 'c-bata', 'contramundum53', 'crcrpar@nvidia', 'g-votte', 'himkt', 'hvy@preferrednetworks', 'nzw0301@ibm', 'sile', 'toshihikoyanase@preferrednetworks']",3,10,"['ibm', 'nvidia', 'preferrednetworks']","['@ibm', 'NVIDIA', 'Preferred Networks', 'Preferred Networks, Inc.']",,43.5,292,231,61,0,12,11,12,292.0,750.0,90.0,2.6,0,56.08551 +322,web,https://github.com/graphql-python/graphene,,,,graphql-python/graphene,graphene,7583,809,145,Python,http://graphene-python.org/,graphene: GraphQL framework for Python,graphql-python,2023-02-21,2015-09-24,386,19.601550960118168,"['graphql', 'python', 'relay', 'framework', 'graphene']",2022-12-25,196,"['Cito@ghga-de', 'Globegitter', 'adamcharnock', 'aryaniyaps', 'dan98765@checkr', 'ekampf@twingate', 'erikwrede', 'jkimbo', 'justinrmiller@zefr-inc', 'syrusakbary@wasmerio']",5,10,"['checkr', 'ghga-de', 'twingate', 'wasmerio', 'zefr-inc']","['@Twingate ', '@ZEFR-INC ', '@ghga-de', '@wasmerio ', 'Checkr']",,0.75,36,22,90,2,4,8,4,36.0,69.0,90.0,1.9,0,44.75897 +28,ml-dl,https://github.com/google/trax,,,,google/trax,trax,7365,765,146,Python,,Trax — Deep Learning with Clear Code and Speed,google,2023-02-21,2019-10-05,176,41.71116504854369,"['jax', 'numpy', 'deep-learning', 'deep-reinforcement-learning', 'machine-learning', 'transformer', 'reinforcement-learning']",2023-02-15,78,"['SauravMaheshkar@ml-gde', 'afrozenator@google', 'hawkinsp@google', 'henrykmichalewski', 'j2i2', 'koz4k@mimuw', 'sebastianjaszczur', 'syzymon@universityofwarsaw', 'trax-robot', 'wangpengmit@mitcsail']",5,10,"['google', 'mimuw', 'mitcsail', 'ml-gde', 'universityofwarsaw']","['@ml-gde', 'Google', 'MIMUW', 'MIT CSAIL', 'University of Warsaw']",,0.4,16,6,41,0,0,5,5,16.0,8.0,90.0,0.5,0,38.82244 +650,profiling,https://github.com/plasma-umass/scalene,1.0,,,plasma-umass/scalene,scalene,7358,247,72,JavaScript,,"Scalene: a high-performance, high-precision CPU, GPU, and memory profiler for Python with AI-powered optimization proposals",plasma-umass,2023-02-21,2019-12-17,166,44.2871883061049,"['python', 'profiling', 'performance-analysis', 'cpu-profiling', 'profiler', 'python-profilers', 'gpu-programming', 'scalene', 'profiles-memory', 'performance-cpu', 'cpu', 'memory-allocation', 'gpu', 'memory-consumption']",2023-02-20,37,"['Birdi7', 'Insutanto', 'SnoopJ', 'cclauss@christianclauss', 'dependabot[bot]', 'emeryberger@universityofmassachusettsamherst', 'groutr@lynkertechnologies', 'jaltmayerpizzorno', 'johanvergeer@johanvergeer', 'sternj@umassamherst']",5,10,"['christianclauss', 'johanvergeer', 'lynkertechnologies', 'umassamherst', 'universityofmassachusettsamherst']","['@johanvergeer', 'Christian Clauss', 'Lynker Technologies', 'UMass Amherst', 'University of Massachusetts Amherst']",,10.12,83,50,39,0,16,12,16,83.0,138.0,90.0,1.7,0,47.03754 +165,nlp,https://github.com/doccano/doccano,,,,doccano/doccano,doccano,7356,1488,125,Python,https://doccano.herokuapp.com,doccano: Open source annotation tool for machine learning practitioners.,doccano,2023-02-21,2018-05-09,250,29.424,"['natural-language-processing', 'machine-learning', 'annotation-tool', 'python', 'datasets', 'dataset', 'data-labeling', 'text-annotation', 'nuxtjs', 'vue', 'vuejs', 'nuxt']",2023-02-16,100,"['BrambleXu', 'Collinbrown95@statisticscanada', 'Hironsan', 'SwiftPredator@haustierglück.de(deprecated)', 'c-w@noom', 'cgill95@leibnizuniversitäthannover', 'dependabot[bot]', 'j-frei', 'kuraga', 'youichiro@classi']",5,10,"['classi', 'haustierglück.de(deprecated)', 'leibnizuniversitäthannover', 'noom', 'statisticscanada']","['@noom ', 'Classi', 'Haustierglück.de (deprecated)', 'Leibniz Universität Hannover', 'Statistics Canada']",,7.71,101,50,58,0,8,7,8,101.0,112.0,90.0,1.1,0,48.20806 +70,ml,https://github.com/pymc-devs/pymc3,,,,pymc-devs/pymc3,pymc,7329,1746,226,Python,https://docs.pymc.io/,pymc: Bayesian Modeling in Python,pymc-devs,2023-02-21,2009-05-05,720,10.177147391390598,"['python', 'statistical-analysis', 'bayesian-inference', 'mcmc', 'variational-inference', 'probabilistic-programming', 'pytensor']",2023-02-20,439,"['ColCarroll@google', 'aloctavodia@imasl-conicet', 'apatil', 'brandonwillard', 'bwengals', 'ferrine@msueconomics/skoltechcs', 'jsalvatier', 'michaelosthege@forschungszentrumjülichgmbh', 'ricardoV94', 'twiecki@pymclabs']",5,10,"['forschungszentrumjülichgmbh', 'google', 'imasl-conicet', 'msueconomics/skoltechcs', 'pymclabs']","['Forschungszentrum Jülich GmbH', 'Google', 'IMASL-CONICET', 'MSU Economics / Skoltech CS', 'PyMC Labs']",,15.73,266,177,168,0,23,5,23,266.0,651.0,90.0,2.4,0,60.46996 +455,ml-dl,https://github.com/tensorlayer/tensorlayer,,,,tensorlayer/tensorlayer,TensorLayer,7143,1617,466,Python,http://tensorlayerx.com,TensorLayer: Deep Learning and Reinforcement Learning Library for Scientists and Engineers ,tensorlayer,2023-02-20,2016-06-07,350,20.400244798041616,"['tensorlayer', 'deep-learning', 'tensorflow', 'neural-network', 'reinforcement-learning', 'artificial-intelligence', 'gan', 'a3c', 'tensorflow-tutorials', 'dqn', 'object-detection', 'chatbot', 'python', 'tensorflow-tutorial', 'imagenet', 'google']",2023-02-18,132,"['ChrisWu1997@columbiauniversity', 'DEKHTIARJonathan@nvidia', 'JingqingZ@imperialcollegelondon,pangaeadata', 'Laicheng0830@pengchenglab', 'lgarithm', 'luomai@universityofedinburgh', 'quantumiracle', 'wagamamaz', 'warshallrho@pekinguniversity', 'zsdonghao@pekinguniversity']",6,10,"['columbiauniversity', 'imperialcollegelondon,pangaeadata', 'nvidia', 'pekinguniversity', 'pengchenglab', 'universityofedinburgh']","['@NVIDIA', 'Columbia University', 'Imperial College London, Pangaea Data', 'Peking University', 'Peng Cheng Lab', 'University of Edinburgh']",,0.06,0,0,82,0,0,12,12,0.0,0.0,90.0,0.0,0,38.5739 +197,nlp,https://github.com/eleutherai/gpt-neo,,,,eleutherai/gpt-neo,gpt-neo,7107,697,169,Python,https://www.eleuther.ai,gpt-neo: An implementation of model parallel GPT-2 and GPT-3-style models using the mesh-tensorflow library.,eleutherai,2023-02-21,2020-07-05,137,51.71413721413722,"['language-model', 'transformers', 'gpt', 'gpt-2', 'gpt-3']",2022-02-25,29,"['ClashLuke', 'ConnorJL', 'Mistobaan', 'StellaAthena@boozallenhamilton', 'anishthite@clarosai', 'kevinwatkins', 'leogao2', 'lucidrains', 'sdtblck', 'srulikbd']",2,10,"['boozallenhamilton', 'clarosai']","['@ClarosAI', 'Booz Allen Hamilton']",,0.0,0,0,32,12,0,2,2,0.0,0.0,90.0,0.0,0,19.03195 +753,study,https://github.com/karpathy/nn-zero-to-hero,,,,karpathy/nn-zero-to-hero,nn-zero-to-hero,7085,644,232,Jupyter Notebook,,nn-zero-to-hero: Neural Networks: Zero to Hero,karpathy,2023-02-21,2022-09-08,23,296.9760479041916,[],2023-01-17,2,"['edvenson', 'karpathy']",0,10,[],[],,0.19,16,3,6,1,0,0,0,16.0,3.0,90.0,0.2,0,10.09209 +846,time-series,https://github.com/blue-yonder/tsfresh,,,,blue-yonder/tsfresh,tsfresh,7079,1111,160,Jupyter Notebook,http://tsfresh.readthedocs.io,tsfresh: Automatic extraction of relevant features from time series:,blue-yonder,2023-02-21,2016-10-26,330,21.451515151515153,"['data-science', 'feature-extraction', 'time-series']",2022-12-31,84,"['CYHSM', 'MaxBenChrist', 'dbarbier', 'delyanr', 'earthgecko', 'jneuff', 'kempa-liehr@universityofauckland', 'nikhase', 'nils-braun', 'pnb@universityofillinoisurbana–champaign']",2,10,"['universityofauckland', 'universityofillinoisurbana–champaign']","['University of Auckland', 'University of Illinois Urbana–Champaign']",,0.31,23,14,77,0,1,5,1,23.0,42.0,90.0,1.8,0,38.4815 +286,data,https://github.com/simonw/datasette,1.0,,,simonw/datasette,datasette,7078,491,100,Python,https://datasette.io,datasette: An open source multi-tool for exploring and publishing data,simonw,2023-02-21,2017-10-23,278,25.43429158110883,"['sqlite', 'python', 'datasets', 'json', 'docker', 'datasette', 'automatic-api', 'asgi', 'csv', 'datasette-io', 'sql']",2023-01-28,73,"['abdusco@abdusco', 'bgrins@mozilla', 'dependabot-preview[bot]', 'dependabot[bot]', 'fgregg@datamade,partner', 'jacobian@latacora', 'rgieseke', 'rixx@pretalx.com', 'russss', 'simonw@datasette']",6,10,"['abdusco', 'datamade,partner', 'datasette', 'latacora', 'mozilla', 'pretalx.com']","['@datamade, Partner', 'AbdusCo', 'Datasette', 'Latacora', 'Mozilla', 'pretalx.com']",,8.23,160,71,65,1,17,25,17,160.0,441.0,90.0,2.8,0,51.08547 +171,ml-dl,https://github.com/facebookresearch/pytorch3d,,,,facebookresearch/pytorch3d,pytorch3d,6982,1067,142,Python,https://pytorch3d.org/,PyTorch3D is FAIR's library of reusable components for deep learning with 3D data,facebookresearch,2023-02-21,2019-10-25,173,40.192434210526315,[],2023-02-20,113,"['bottler', 'classner@epicgames', 'davidsonic@meta', 'davnov134@facebookairesearch', 'gkioxari@caltech', 'jcjohnson@universityofmichigan/fair', 'megluyagao', 'nikhilaravi', 'patricklabatut@facebook', 'shapovalov@facebookairesearch']",6,10,"['caltech', 'epicgames', 'facebook', 'facebookairesearch', 'meta', 'universityofmichigan/fair']","['Caltech', 'Epic Games', 'Facebook', 'Facebook AI Research', 'Meta', 'University of Michigan / FAIR']",,6.85,121,57,40,0,4,4,4,121.0,189.0,90.0,1.6,0,48.29862 +150,ml,https://github.com/catboost/catboost,,,,catboost/catboost,catboost,6952,1088,192,C,https://catboost.ai,"catboost: A fast, scalable, high performance Gradient Boosting on Decision Trees library, used for ranking, classification, regression and other machine learning tasks for Python, R, Java, C++. Supports computation on CPU and GPU.",catboost,2023-02-21,2017-07-18,292,23.796577017114913,"['machine-learning', 'decision-trees', 'gradient-boosting', 'gbm', 'gbdt', 'python', 'r', 'kaggle', 'gpu-computing', 'catboost', 'tutorial', 'categorical-features', 'gpu', 'coreml', 'data-science', 'big-data', 'cuda', 'data-mining']",2023-02-20,1065,"['Evgueni-Petrov-aka-espetrov', 'VestniK', 'andrey-khropov@yandexnv', 'arcadia-devtools', 'frazenshtein', 'georgthegreat', 'kizill@yandex', 'orivej', 'shadchin@yandex', 'smertnik3sh']",2,10,"['yandex', 'yandexnv']","['@Yandex', 'Yandex', 'Yandex NV']",,453.54,171,62,68,0,4,15,4,171.0,204.0,90.0,1.2,0,58.09104 +382,ml-ops,https://github.com/deepset-ai/haystack,,,,deepset-ai/haystack,haystack,6939,1047,97,Python,https://haystack.deepset.ai,"haystack: :mag: Haystack is an open source NLP framework to interact with your data using Transformer models and LLMs (GPT-3 and alike). Haystack offers production-ready tools to quickly build ChatGPT-like question answering, semantic search, text generation, and more.",deepset-ai,2023-02-21,2019-11-14,170,40.612876254180605,"['nlp', 'question-answering', 'bert', 'transfer-learning', 'language-model', 'pytorch', 'semantic-search', 'squad', 'elasticsearch', 'information-retrieval', 'summarization', 'transformers', 'natural-language-processing', 'machine-learning', 'ai', 'python', 'chatgpt', 'gpt-3', 'large-language-models', 'generative-ai']",2023-02-21,157,"['Timoeller@deepset', 'ZanSara@deepset-ai', 'bogdankostic@deepset-ai', 'brandenchan', 'julian-risch@deepset', 'masci@deepset-ai', 'tanaysoni', 'tholor@deepset', 'tstadel', 'vblagoje']",2,10,"['deepset', 'deepset-ai']","['@deepset-ai', '@deepset-ai ', 'deepset']",,15.85,738,496,40,0,26,15,26,738.0,1032.0,90.0,1.4,0,51.74174 +65,ml,https://github.com/pycaret/pycaret,,,,pycaret/pycaret,pycaret,6914,1574,126,Jupyter Notebook,https://www.pycaret.org,"pycaret: An open-source, low-code machine learning library in Python",pycaret,2023-02-21,2019-11-23,169,40.77337826453243,"['data-science', 'citizen-data-scientists', 'python', 'machine-learning', 'pycaret', 'ml', 'gpu', 'time-series', 'regression', 'classification', 'anomaly-detection', 'nlp', 'clustering']",2023-02-20,115,"['TremaMiguel@konfio', 'Yard1@softwareengineeranyscale', 'andrinbuerli', 'batmanscode', 'daikikatsuragawa@japan', 'goodwanghan', 'moezali1@pycaret', 'ngupta23@o9solutions', 'timho102003', 'tvdboom']",5,10,"['japan', 'konfio', 'o9solutions', 'pycaret', 'softwareengineeranyscale']","['Japan', 'Konfio', 'PyCaret', 'Software Engineer @ Anyscale', 'o9 Solutions Inc.']",,19.25,314,241,40,0,4,9,4,314.0,338.0,90.0,1.1,0,49.93948 +532,util,https://github.com/facebookresearch/hydra,,,,facebookresearch/hydra,hydra,6807,556,86,Python,https://hydra.cc,Hydra is a framework for elegantly configuring complex applications,facebookresearch,2023-02-21,2019-06-12,193,35.26943005181347,[],2023-02-07,110,"['3janeAI', 'Jasha10', 'dependabot[bot]', 'jan-matthis@google', 'jieru-hu', 'jrapin@facebookairesearch', 'odelalleau', 'omry@facebookairesearch', 'pixelb@facebook', 'shagunsodhani@facebook']",3,10,"['facebook', 'facebookairesearch', 'google']","['@facebook', 'Facebook AI Research', 'Google']",,3.77,123,80,45,0,4,6,4,123.0,168.0,90.0,1.4,0,44.81556 +82,data,https://github.com/sqlalchemy/sqlalchemy,,,,sqlalchemy/sqlalchemy,sqlalchemy,6805,1076,92,Python,https://www.sqlalchemy.org,sqlalchemy: The Database Toolkit for Python,sqlalchemy,2023-02-21,2018-11-27,221,30.771963824289404,"['sqlalchemy', 'sql', 'python']",2023-02-20,603,"['CaselIT', 'dianaclarke', 'empty', 'gdementen@federalplanningbureau', 'gordthompson@self-employed', 'jbellis@datastax', 'jek', 'lelit', 'pjenvey@mozilla', 'zzzeek@redhat']",5,10,"['datastax', 'federalplanningbureau', 'mozilla', 'redhat', 'self-employed']","['DataStax', 'Federal Planning Bureau', 'Mozilla', 'Red Hat', 'self-employed']",,15.02,365,286,52,0,27,65,27,367.0,1200.0,90.0,3.3,0,61.00064 +131,ml,https://github.com/automl/auto-sklearn,,,,automl/auto-sklearn,auto-sklearn,6746,1214,212,Python,https://automl.github.io/auto-sklearn,auto-sklearn: Automated Machine Learning with scikit-learn,automl,2023-02-21,2015-07-02,398,16.913323782234958,"['automl', 'scikit-learn', 'automated-machine-learning', 'hyperparameter-optimization', 'hyperparameter-tuning', 'hyperparameter-search', 'bayesian-optimization', 'metalearning', 'meta-learning', 'smac']",2022-12-07,88,"['KEggensperger@universityoftübingen', 'aaronkl@awsberlin', 'adomashnev', 'ahn1340@centerforarmyanalysisandsimulation', 'axsapronov', 'eddiebergman@automl.org', 'franchuterivera@universityoffreiburg', 'gui-miotto@uni-freiburg', 'mfeurer@albert-ludwigs-universitätfreiburg', 'stokasto']",7,10,"['albert-ludwigs-universitätfreiburg', 'automl.org', 'awsberlin', 'centerforarmyanalysisandsimulation', 'uni-freiburg', 'universityoffreiburg', 'universityoftübingen']","['AWS Berlin', 'Albert-Ludwigs-Universität Freiburg', 'Center for Army Analysis and Simulation', 'Uni-Freiburg', 'University of Freiburg', 'University of Tübingen', 'automl.org']",,2.02,38,19,93,3,2,5,2,38.0,44.0,90.0,1.2,0,42.13433 +389,data,https://github.com/yzhao062/pyod,,,,yzhao062/pyod,pyod,6745,1233,151,Python,http://pyod.readthedocs.io,pyod: A Comprehensive and Scalable Python Library for Outlier Detection (Anomaly Detection),yzhao062,2023-02-21,2017-10-03,281,23.991361788617887,"['outlier-detection', 'anomaly-detection', 'outlier-ensembles', 'outliers', 'anomaly', 'python', 'machine-learning', 'data-mining', 'unsupervised-learning', 'python2', 'python3', 'fraud-detection', 'autoencoder', 'neural-networks', 'deep-learning', 'data-science', 'data-analysis', 'novelty-detection', 'out-of-distribution-detection']",2022-12-16,46,"['John-Almardeny', 'KulikDM', 'RoelBouman', 'ZainNasrullah@royalbankofcanada(rbc)', 'agoodge@nationaluniversityofsingapore', 'ingonader', 'mbongaerts@erasmusmedicalcentre', 'tam17aki', 'xhan97@universityofmacau', 'yzhao062@carnegiemellonuniversity']",5,10,"['carnegiemellonuniversity', 'erasmusmedicalcentre', 'nationaluniversityofsingapore', 'royalbankofcanada(rbc)', 'universityofmacau']","['Carnegie Mellon University', 'Erasmus Medical Centre', 'National University of Singapore', 'Royal Bank of Canada (RBC)', 'University of Macau']",,3.6,27,6,66,2,10,6,10,27.0,43.0,90.0,1.6,0,41.62461 +824,study,https://github.com/firmai/industry-machine-learning,,,,firmai/industry-machine-learning,industry-machine-learning,6725,1123,392,Jupyter Notebook,https://www.linkedin.com/company/firmai,industry-machine-learning: A curated list of applied machine learning and data science notebooks and libraries across different industries (by @firmai),firmai,2023-02-19,2019-05-03,198,33.84255930984903,"['machine-learning', 'jupyter-notebook', 'datascience', 'example', 'python', 'practical-machine-learning', 'data-science', 'firmai']",2021-12-18,6,"['Hefeweizen', 'RF-Nelson@spotify', 'blokhin@tilde-lab', 'firmai@alanturinginstitute,firmai', 'gaulinmp@universityofutah', 'skvrahul']",4,10,"['alanturinginstitute,firmai', 'spotify', 'tilde-lab', 'universityofutah']","['@tilde-lab', 'Alan Turing Institute, FirmAI', 'Spotify', 'University of Utah']",,0.0,0,0,46,14,0,0,0,0.0,0.0,90.0,0.0,0,16.07364 +716,util,https://github.com/jazzband/pip-tools,,,,jazzband/pip-tools,pip-tools,6638,564,104,Python,https://pip-tools.rtfd.io,pip-tools: A set of tools to keep your pinned Python dependencies fresh.,jazzband,2023-02-21,2012-09-10,545,12.173434634529736,"['python', 'packaging', 'pip', 'pip-tools', 'pip-compile', 'setuptools', 'requirements', 'lockfile', 'hashes']",2023-02-20,182,"['atugushev', 'blueyed@freelancer,upforhire', 'davidovich', 'hramezani@crate', 'jdufresne@pioneervalleybooks', 'nvie@liveblocks', 'pre-commit-ci[bot]', 'richafrank@quantopian', 'vphilippon@ubisoftinc', 'webknjaz@ansiblecoreredhatofficial']",7,10,"['ansiblecoreredhatofficial', 'crate', 'freelancer,upforhire', 'liveblocks', 'pioneervalleybooks', 'quantopian', 'ubisoftinc']","['@Ansible Core @ @RedHatOfficial', '@Ubisoftinc', '@crate ', '@liveblocks', '@quantopian', 'Freelancer, up for hire', 'Pioneer Valley Books']",,2.46,117,74,127,0,11,11,11,117.0,192.0,90.0,1.6,0,53.238 +215,debug,https://github.com/gruns/icecream,,,,gruns/icecream,icecream,6603,135,50,Python,,icecream: 🍦 Never use print() to debug again.,gruns,2023-02-21,2018-02-13,262,25.188555858310625,"['python', 'python3', 'library', 'inspects', 'debug', 'debugging', 'debugging-tool', 'print']",2022-12-04,21,"['Akshay-Thakare@twilio', 'DominikRafacz@biogenies', 'HelinXu@pku-epic', 'alexmojaki', 'atusy@fixpoint', 'baopham', 'ehud-nym', 'gruns@https://arc.io,https://pep.dev', 'palfrey', 'ss18@kpn']",6,10,"['biogenies', 'fixpoint', 'https://arc.io,https://pep.dev', 'kpn', 'pku-epic', 'twilio']","['@BioGenies ', '@PKU-EPIC ', '@Twilio', '@kpn', 'Fixpoint INC.', 'https://arc.io, https://pep.dev']",,0.62,9,2,61,3,1,1,1,9.0,10.0,90.0,1.1,0,32.36563 +133,ml,https://github.com/hyperopt/hyperopt,,,,hyperopt/hyperopt,hyperopt,6590,1009,126,Python,http://hyperopt.github.io/hyperopt,hyperopt: Distributed Asynchronous Hyperparameter Optimization in Python,hyperopt,2023-02-19,2011-09-06,598,11.017434917602102,[],2021-11-29,93,"['WeichenXu123@databricks', 'birbbit', 'cclauss@christianclauss', 'dwf', 'jaberg@kindred.ai', 'marctorsoc@globality', 'marload@contxts-io', 'maxpumperla', 'temporaer@microsoft', 'yamins81']",6,10,"['christianclauss', 'contxts-io', 'databricks', 'globality', 'kindred.ai', 'microsoft']","['@Microsoft', '@contxts-io ', '@databricks', 'Christian Clauss', 'Globality', 'kindred.ai']",,0.0,23,7,140,15,0,1,1,23.0,17.0,90.0,0.7,0,34.18091 +67,web,https://github.com/pyeve/eve,,,,pyeve/eve,eve,6586,753,229,Python,https://python-eve.org,eve: REST API framework designed for human beings,pyeve,2023-02-20,2012-10-22,539,12.212450331125828,"['python', 'rest', 'flask', 'mongodb']",2022-11-10,211,"['amagdas', 'arnauorriols@denoland', 'einarhuseby', 'girogiro', 'graffic@myself', 'joshvillbrandt', 'kynan@google', 'nckpark', 'nicolaiarocci@cir2000', 'petrjasek@sourcefabric']",5,10,"['cir2000', 'denoland', 'google', 'myself', 'sourcefabric']","['@denoland ', 'CIR 2000', 'Google', 'MySelf', 'Sourcefabric']",,0.73,7,3,126,3,0,5,5,7.0,5.0,90.0,0.7,0,40.72882 +121,ml-ops,https://github.com/dagster-io/dagster,,,,dagster-io/dagster,dagster,6584,826,92,Python,https://dagster.io,"dagster: An orchestration platform for the development, production, and observation of data assets.",dagster-io,2023-02-21,2018-04-30,251,26.20125071063104,"['data-pipelines', 'dagster', 'workflow', 'data-science', 'workflow-automation', 'python', 'scheduler', 'data-orchestrator', 'etl', 'analytics', 'data-engineering', 'mlops', 'orchestration', 'data-integration', 'metadata']",2023-02-17,274,"['alangenfeld@elementl', 'bengotow@foundry376', 'dpeng817@elementl', 'gibsondan', 'hellendag@elementl', 'mgasner', 'prha', 'schrockn@elementl', 'sryza@elementl', 'yuhan@elementl']",2,10,"['elementl', 'foundry376']","['Elementl', 'Foundry376']",,64.4,1933,1484,59,0,61,135,61,1932.0,4145.0,90.0,2.1,0,59.02248 +459,ml-ops,https://github.com/dbt-labs/dbt-core,,,,dbt-labs/dbt-core,dbt-core,6555,1158,134,Python,https://getdbt.com,dbt-core: dbt enables data analysts and engineers to transform their data using the same practices that software engineers use to build applications.,dbt-labs,2023-02-21,2016-03-10,362,18.06496062992126,"['dbt-viewpoint', 'slack', 'pypa', 'data-modeling', 'business-intelligence', 'analytics', 'elt']",2023-02-20,266,"['beckjake', 'cmcarthur@fishtownanalytics', 'drewbanin@dbt-labs', 'emmyoop@dbt-labs', 'gshank', 'iknox-fa@fishtownanalytics', 'jtcohen6@dbt-labs', 'kconvey@verilylifesciences', 'leahwicz', 'nathaniel-may@dbt-labs']",3,10,"['dbt-labs', 'fishtownanalytics', 'verilylifesciences']","['@dbt-labs', '@dbt-labs ', 'Fishtown Analytics', 'Verily Life Sciences']",,10.67,1006,676,85,0,47,22,47,1006.0,1572.0,90.0,1.6,0,56.56106 +288,testing,https://github.com/hypothesisworks/hypothesis,1.0,,,hypothesisworks/hypothesis,hypothesis,6533,549,67,Python,https://hypothesis.works,"Hypothesis is a powerful, flexible, and easy to use library for property-based testing.",hypothesisworks,2023-02-20,2013-03-10,519,12.577282728272827,"['python', 'testing', 'fuzzing', 'property-based-testing']",2023-02-17,302,"['Cheukting@anaconda', 'DRMacIver', 'Zac-HD@anthropic', 'Zalathar', 'alexwlchan@weomecollection', 'amw-zero@vts', 'honno@quansight', 'pyup-bot@pyupio', 'rsokl', 'sobolevn']",6,10,"['anaconda', 'anthropic', 'pyupio', 'quansight', 'vts', 'weomecollection']","['@Quansight', '@pyupio', '@wellcomecollection ', 'Anaconda', 'Anthropic', 'VTS']",,14.88,85,60,121,0,101,134,101,85.0,159.0,90.0,1.9,0,58.12019 +141,ml,https://github.com/featurelabs/featuretools,1.0,,,featurelabs/featuretools,featuretools,6518,842,158,Python,https://www.featuretools.com,featuretools: An open source python library for automated feature engineering,featurelabs,2023-02-21,2017-09-08,284,22.893125940792775,"['feature-engineering', 'machine-learning', 'data-science', 'automated-machine-learning', 'automl', 'python', 'scikit-learn', 'automated-feature-engineering']",2023-02-19,69,"['Seth-Rothschild', 'frances-h', 'github-actions[bot]', 'gsheni@alteryx', 'kmax12', 'machineFL', 'rwedge', 'sbadithe', 'tamargrey@alteryxinnovationlabs', 'thehomebrewnerd']",2,10,"['alteryx', 'alteryxinnovationlabs']","['@alteryx', 'Alteryx Innovation Labs']",,6.04,147,117,66,0,25,28,25,147.0,101.0,90.0,0.7,0,45.57716 +230,template,https://github.com/drivendata/cookiecutter-data-science,1.0,,,drivendata/cookiecutter-data-science,cookiecutter-data-science,6508,2073,113,Python,http://drivendata.github.io/cookiecutter-data-science/,"cookiecutter-data-science: A logical, reasonably standardized, but flexible project structure for doing and sharing data science work.",drivendata,2023-02-21,2015-10-30,381,17.04940119760479,"['cookiecutter-data-science', 'cookiecutter', 'cookiecutter-template', 'data-science', 'machine-learning', 'ai']",2022-03-11,45,"['Midnighter@unseenbio', 'adamkgoldfarb', 'andrewsanchez@ankihub', 'codyrioux@netflix', 'hwartig@contentful', 'isms', 'jbrambleDC@localfoodgroup', 'liudonghs@hellosoda', 'niloch', 'pjbull@drivendata']",7,10,"['ankihub', 'contentful', 'drivendata', 'hellosoda', 'localfoodgroup', 'netflix', 'unseenbio']","['@UnseenBio', '@contentful', 'AnkiHub', 'DrivenData', 'Hello Soda', 'Local Food Group', 'Netflix']",,0.04,6,1,89,12,0,0,0,6.0,4.0,90.0,0.7,0,29.6664 +153,util,https://github.com/marshmallow-code/marshmallow,,,,marshmallow-code/marshmallow,marshmallow,6428,620,81,Python,https://marshmallow.readthedocs.io/,marshmallow: A lightweight library for converting complex objects to and from simple Python datatypes.,marshmallow-code,2023-02-21,2013-11-10,484,13.269242111471542,"['serialization', 'deserialization', 'validation', 'python', 'marshalling', 'python-3', 'serde', 'schema', 'hacktoberfest']",2023-02-21,204,"['dependabot-preview[bot]', 'dependabot-support', 'dependabot[bot]', 'lafrech@nobatek', 'mgetka', 'pyup-bot@pyupio', 'sirosen', 'sloria', 'taion', 'zblz']",2,10,"['nobatek', 'pyupio']","['@Nobatek', '@pyupio']",,1.92,55,41,113,0,0,18,18,55.0,57.0,90.0,1.0,0,47.09598 +356,ml-ops,https://github.com/netflix/metaflow,,,,netflix/metaflow,metaflow,6414,610,246,Python,https://metaflow.org,metaflow: :rocket: Build and manage real-life data science projects with ease!,netflix,2023-02-21,2019-09-17,179,35.803827751196174,"['machine-learning', 'data-science', 'productivity', 'model-management', 'ai', 'ml', 'ml-platform', 'ml-infrastructure', 'python', 'r', 'rstats', 'reproducible-research', 'r-package', 'mlops', 'datascience', 'cli', 'high-performance-computing', 'kubernetes']",2023-02-20,64,"['akyrola@missingexponent', 'cclauss@christianclauss', 'dependabot[bot]', 'jackie-ob', 'jasonge27@netflix', 'mdneuzerling', 'oavdeev@outerbounds', 'romain-intel', 'savingoyal@outerbounds', 'valayDave']",4,10,"['christianclauss', 'missingexponent', 'netflix', 'outerbounds']","['@Outerbounds', 'Christian Clauss', 'Missing Exponent', 'Netflix']",,2.94,117,74,42,0,31,25,31,117.0,171.0,90.0,1.5,0,47.03671 +556,ml-dl,https://github.com/arogozhnikov/einops,,,,arogozhnikov/einops,einops,6401,288,63,Python,https://einops.rocks,"einops: Deep learning operations reinvented (for pytorch, tensorflow, jax and others)",arogozhnikov,2023-02-21,2018-09-22,230,27.761462205700123,"['deep-learning', 'pytorch', 'tensorflow', 'numpy', 'gluon', 'cupy', 'chainer', 'keras', 'tensor', 'jax']",2023-01-18,22,"['EPronovost', 'Ldpe2G@sunyat-senuniversity', 'MilesCranmer@princetonuniversity', 'adam-r-kowalski@simspace', 'arogozhnikov@aperturescience', 'boeddeker@paderbornuniversity', 'cgarciae@quansight', 'danielhavir@apple', 'ollema', 'rentainhe@idea']",8,10,"['aperturescience', 'apple', 'idea', 'paderbornuniversity', 'princetonuniversity', 'quansight', 'simspace', 'sunyat-senuniversity']","['@apple', 'Aperture Science', 'IDEA', 'Paderborn University', 'Princeton University', 'Quansight', 'Sun Yat-sen University', 'simspace']",,2.71,14,7,54,1,3,2,3,14.0,17.0,90.0,1.2,0,38.93087 +602,testing,https://github.com/newsapps/beeswithmachineguns,,,,newsapps/beeswithmachineguns,beeswithmachineguns,6288,662,227,Python,http://apps.chicagotribune.com/,beeswithmachineguns: A utility for arming (creating) many bees (micro EC2 instances) to attack (load test) targets (web applications).,newsapps,2023-02-20,2010-06-29,660,9.525210993291495,[],2017-12-20,49,"['Altonymous', 'R4wm@https://github.com/verizondigital/', 'abanna@ixsystems', 'cosmin@facebook', 'ddworken@google', 'deanmalmgren@datascopeanalytics', 'edwardmeshuris', 'nfarina@kuto', 'onyxfish@fivethirtyeight', 'richardtylee@br']",8,10,"['br', 'datascopeanalytics', 'facebook', 'fivethirtyeight', 'google', 'https://github.com/verizondigital/', 'ixsystems', 'kuto']","['@br ', '@facebook', '@fivethirtyeight', '@iXsystems ', 'Datascope Analytics', 'Google', 'Kuto', 'https://github.com/VerizonDigital/']",,0.0,1,1,154,63,0,0,0,1.0,0.0,90.0,0.0,0,24.10701 +800,web,https://github.com/pallets/werkzeug,,,,pallets/werkzeug,werkzeug,6286,1680,227,Python,https://werkzeug.palletsprojects.com,werkzeug: The comprehensive WSGI web application library.,pallets,2023-02-21,2010-10-18,644,9.756541019955653,"['python', 'wsgi', 'werkzeug', 'http', 'pallets']",2023-02-17,468,"['DasIch@zalandose', 'EnTeQuAk@mozilla', 'RonnyPfannschmidt@redhatinsights', 'birkenfeld@fzjülich', 'davidism', 'dependabot-preview[bot]', 'dependabot[bot]', 'mitsuhiko@sentry', 'pgjones', 'untitaker@getsentry']",6,10,"['fzjülich', 'getsentry', 'mozilla', 'redhatinsights', 'sentry', 'zalandose']","['@RedHatInsights ', '@getsentry ', 'FZ Jülich', 'Mozilla', 'Sentry', 'Zalando SE']",,2.81,82,80,150,0,7,7,7,82.0,61.0,90.0,0.7,0,52.63041 +20,typing,https://github.com/facebook/pyre-check,,,,facebook/pyre-check,pyre-check,6240,415,112,OCaml,https://pyre-check.org/,pyre-check: Performant type-checking for python.,facebook,2023-02-18,2017-11-10,275,22.632124352331605,"['python', 'typechecker', 'type-check', 'static-analysis', 'ocaml', 'code-quality', 'abstract-interpretation', 'security', 'program-analysis', 'taint-analysis', 'control-flow-analysis']",2023-02-17,234,"['MaggieMoss', 'arthaud@facebook', 'dkgi', 'fahndrich', 'grievejia@facebook', 'mrkmndz@facebook', 'pradeep90', 'shannonzhu', 'sinancepel', 'stroxler@metaplatforms']",2,10,"['facebook', 'metaplatforms']","['@facebook', '@facebook ', 'Facebook Inc.', 'Meta Platforms']",,48.08,23,9,64,0,2,16,2,23.0,27.0,90.0,1.2,0,46.43409 +681,ml,https://github.com/hips/autograd,,,,hips/autograd,autograd,6197,848,216,Python,,autograd: Efficiently computes derivatives of numpy code.,hips,2023-02-21,2014-11-24,430,14.402058432934927,[],2022-09-29,52,"['JasperSnoek', 'clemisch', 'dougalm@googlebrain', 'duvenaud@universityoftoronto', 'gcampanella@visa', 'j-towns@universityofamsterdam', 'kcarnold', 'mattjj@google', 'rainwoodman@loonr&d', 'yukoba']",6,10,"['google', 'googlebrain', 'loonr&d', 'universityofamsterdam', 'universityoftoronto', 'visa']","['@visa', 'Google', 'Google Brain', 'Loon R&D', 'University of Amsterdam', 'University of Toronto']",,0.08,4,1,100,5,0,0,0,4.0,3.0,90.0,0.8,0,31.6566 +410,web,https://github.com/encode/uvicorn,,,,encode/uvicorn,uvicorn,6176,547,84,Python,https://www.uvicorn.org/,"uvicorn: An ASGI web server, for Python. 🦄",encode,2023-02-21,2017-05-31,299,20.65551839464883,"['python', 'asyncio', 'asgi', 'http', 'http-server']",2023-02-21,152,"['Kludex@encode', 'almarklein@independentsoftwareengineer', 'dependabot[bot]', 'euri10', 'florimondmanca', 'graingert', 'johnthagen', 'maximilianhurl', 'simonw@datasette', 'tomchristie@encodeoss']",4,10,"['datasette', 'encode', 'encodeoss', 'independentsoftwareengineer']","['@encode', 'Datasette', 'Encode OSS', 'Independent software engineer']",,3.42,123,96,70,0,7,25,7,123.0,283.0,90.0,2.3,0,50.04647 +879,time-series,https://github.com/sktime/sktime,1.0,,,sktime/sktime,sktime,6165,1028,108,Python,https://www.sktime.net,sktime: A unified framework for machine learning with time series,sktime,2023-02-21,2018-11-06,224,27.504780114722752,"['time-series', 'machine-learning', 'scikit-learn', 'time-series-classification', 'time-series-regression', 'forecasting', 'time-series-analysis', 'data-science', 'data-mining']",2023-02-20,235,"['MatthewMiddlehurst@universityofeastanglia', 'TonyBagnall@universityofeastanglia', 'ViktorKaz', 'aiwalter@scikit-time', 'fkiraly@gfkse,ucl,sktime', 'goastler', 'jasonlines@universityofeastanglia(uea)', 'lmmentel', 'mloning@uclalan-turing-instituteesrc-cdrc', 'sajaysurya@universitycollegelondon']",6,10,"['gfkse,ucl,sktime', 'scikit-time', 'uclalan-turing-instituteesrc-cdrc', 'universitycollegelondon', 'universityofeastanglia', 'universityofeastanglia(uea)']","['@GfKse, @UCL, @sktime', '@UCL @alan-turing-institute @ESRC-CDRC ', '@scikit-time', 'University College London', 'University of East Anglia', 'University of East Anglia (UEA)']",,18.33,530,354,52,0,18,9,18,530.0,1521.0,90.0,2.9,0,58.84311 +682,diffusion,https://github.com/compvis/latent-diffusion,,,,compvis/latent-diffusion,latent-diffusion,6148,841,76,Jupyter Notebook,,latent-diffusion: High-Resolution Image Synthesis with Latent Diffusion Models,compvis,2023-02-21,2021-12-20,61,100.31701631701631,[],2022-07-26,5,"['AK391@huggingface', 'ablattmann', 'crowsonkb', 'pesser@runwayml', 'rromb']",2,10,"['huggingface', 'runwayml']","['@runwayml ', 'Huggingface']",,0.44,70,15,14,7,0,0,0,70.0,101.0,90.0,1.4,0,21.0764 +73,gis,https://github.com/python-visualization/folium,,,,python-visualization/folium,folium,6095,2167,164,Python,https://python-visualization.github.io/folium/,folium: Python Data. Leaflet.js Maps. ,python-visualization,2023-02-21,2013-05-09,510,11.93092841163311,"['closember', 'data-science', 'data-visualization', 'javascript', 'maps', 'python']",2023-02-17,149,"['BibMartin@datartibus', 'Conengmo', 'JamesGardiner@jgardinerconsultingltd.', 'birdage@neyasystems', 'fullonic', 'halfdanrump@nowcast', 'joshuacano', 'ocefpaf', 'themiurgo@spotify', 'wrobstory@stripe']",6,10,"['datartibus', 'jgardinerconsultingltd.', 'neyasystems', 'nowcast', 'spotify', 'stripe']","['DatArtibus', 'J Gardiner Consulting Ltd.', 'Neya Systems LLC', 'Nowcast Inc.', 'Spotify', 'Stripe']",,1.9,130,109,119,0,2,2,2,130.0,203.0,90.0,1.6,0,49.57497 +537,nlp,https://github.com/espnet/espnet,,,,espnet/espnet,espnet,6089,1844,178,Python,https://espnet.github.io/espnet/,espnet: End-to-End Speech Processing Toolkit,espnet,2023-02-21,2017-12-13,271,22.468634686346864,"['deep-learning', 'end-to-end', 'chainer', 'pytorch', 'kaldi', 'speech-recognition', 'speech-synthesis', 'speech-translation', 'machine-translation', 'voice-conversion', 'speech-enhancement', 'speech-separation', 'singing-voice-synthesis', 'speaker-diarization', 'spoken-language-understanding']",2023-02-20,331,"['Emrys365@shanghaijiaotonguniversity', 'Fhrozen@hitachir&d', 'ShigekiKarita', 'b-flo', 'ftshijt@carnegiemellonuniversity', 'hirofumi0810@fairatmetaai', 'kamo-naoyuki', 'kan-bayashi@nagoyauniversity', 'mergify[bot]', 'sw005320']",5,10,"['carnegiemellonuniversity', 'fairatmetaai', 'hitachir&d', 'nagoyauniversity', 'shanghaijiaotonguniversity']","['Carnegie Mellon University', 'FAIR at Meta AI', 'Hitachi R&D', 'Nagoya University', 'Shanghai Jiao Tong University']",,38.65,247,142,63,0,6,9,6,247.0,653.0,90.0,2.6,0,57.44013 +44,ml,https://github.com/lmcinnes/umap,,,,lmcinnes/umap,umap,6054,700,126,Python,,umap: Uniform Manifold Approximation and Projection,lmcinnes,2023-02-21,2017-07-02,294,20.561863173216885,"['umap', 'dimensionality-reduction', 'visualization', 'machine-learning', 'topological-data-analysis']",2023-01-30,111,"['adalmia96@microsoft', 'gclen', 'jlmelville', 'josephcourtney', 'leriomaggio@anaconda', 'lmcinnes@tutteinstituteformathematicsandcomputing', 'paxtonfitzpatrick@contextlabcosanlab', 'sleighsoft', 'timsainb@harvardmedicalschool', 'usul83@popsa-hq']",6,10,"['anaconda', 'contextlabcosanlab', 'harvardmedicalschool', 'microsoft', 'popsa-hq', 'tutteinstituteformathematicsandcomputing']","['@ContextLab @cosanlab', '@anaconda ', '@popsa-hq ', 'Harvard Medical School', 'Microsoft', 'Tutte Institute for Mathematics and Computing']",,1.06,40,16,69,1,1,5,1,40.0,60.0,90.0,1.5,0,42.18101 +599,gis,https://github.com/domlysz/blendergis,,,,domlysz/blendergis,BlenderGIS,6037,1125,243,Python,,BlenderGIS: Blender addons to make the bridge between Blender and geographic data,domlysz,2023-02-21,2014-05-08,458,13.156600249066003,"['blender', 'addon', 'geospatial', 'gis', 'shapefile', 'delaunay-triangulation', 'raster', 'openstreetmap', 'python', 'dem', '3dgis', 'map', 'geodata', 'georeferencing', 'importexport', '3d', 'terrain-model', 'basemap', '3d-map']",2022-05-31,15,"['cclauss@christianclauss', 'domlysz', 'ericgrosso', 'kant', 'lfdebrux@alphagov', 'lobnico', 'mef@mango-information-systems', 's-leger', 'stuarta0', 'wolfgangp']",3,10,"['alphagov', 'christianclauss', 'mango-information-systems']","['@Mango-information-systems', '@alphagov', 'Christian Clauss']",,0.19,26,2,107,9,2,2,2,26.0,67.0,90.0,2.6,0,31.0254 +313,util,https://github.com/pypa/pipx,,,,pypa/pipx,pipx,6028,276,72,Python,https://pypa.github.io/pipx/,pipx: Install and Run Python Applications in Isolated Environments,pypa,2023-02-21,2018-10-06,228,26.3725,"['pip', 'cli', 'pypi', 'venv', 'hacktoberfest', 'python']",2023-02-11,86,"['backwardspy@binkhq', 'chrahunt', 'cs01', 'dependabot[bot]', 'gaborbernat@bloomberglp', 'itsayellow', 'meowmeowmeowcat', 'pfmoore', 'spazm@lemurlabs.dev', 'uranusjr@astronomer']",4,10,"['astronomer', 'binkhq', 'bloomberglp', 'lemurlabs.dev']","['@astronomer', '@binkhq ', 'Bloomberg LP', 'LemurLabs.dev']",,0.65,59,30,53,0,1,12,1,59.0,78.0,90.0,1.3,0,40.84233 +777,util,https://github.com/google/latexify_py,,,,google/latexify_py,latexify_py,5989,327,52,Python,,latexify_py: A library to generate LaTeX expression from Python code.,google,2023-02-21,2020-07-25,134,44.504246284501065,[],2023-01-14,24,"['1MLightyears', 'ShigekiKarita', 'ZibingZhang', 'afrozchakure@citi', 'chunibyo-wly', 'erica-w-fu', 'jianan1104', 'odashi@inspired-co', 'ryosuketc@google', 'ryxcommar']",3,10,"['citi', 'google', 'inspired-co']","['@Citi', '@google', '@inspired-co']",,1.71,60,48,31,1,3,3,3,60.0,182.0,90.0,3.0,0,38.07639 +783,diffusion,https://github.com/carson-katri/dream-textures,,,,carson-katri/dream-textures,dream-textures,5872,299,92,Python,,dream-textures: Stable Diffusion built-in to Blender,carson-katri,2023-02-21,2022-09-08,23,246.1317365269461,"['ai', 'blender', 'blender-addon', 'image-generation', 'stable-diffusion']",2023-02-15,10,"['Dekker3D', 'GottfriedHofmann@blenderdiplom', 'JasonHoku@jasonhoku', 'NullSenseStudio', 'blastframe@blastframe', 'carson-katri', 'eltociear@bandism', 'gregnr', 'playerla', 'timmyL17@adobe']",5,10,"['adobe', 'bandism', 'blastframe', 'blenderdiplom', 'jasonhoku']","['@bandism ', 'Adobe', 'Blastframe', 'BlenderDiplom', 'JasonHoku']",,2.44,191,110,6,0,10,20,10,191.0,485.0,90.0,2.5,0,38.77146 +345,jupyter,https://github.com/mwouts/jupytext,,,,mwouts/jupytext,jupytext,5822,376,68,Python,https://jupytext.readthedocs.io,"jupytext: Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts",mwouts,2023-02-20,2018-06-15,244,23.791009924109748,"['jupyter-notebook', 'jupyterlab-extension', 'version-control', 'knitr', 'rstudio', 'markdown', 'rmarkdown', 'python', 'hydrogen', 'notebooks', 'jupyterlab']",2023-02-21,77,"['Skylion007@facebookresearch', 'bzinberg', 'choldgraf@ucberkeley', 'chrisjsewell@imperialcollegelondon', 'dependabot[bot]', 'kiendang', 'martinRenou@quantstack', 'matthew-brett@londoninterdisciplinaryschool', 'matthewfeickert@universityofwisconsin-madison', 'mwouts']",6,10,"['facebookresearch', 'imperialcollegelondon', 'londoninterdisciplinaryschool', 'quantstack', 'ucberkeley', 'universityofwisconsin-madison']","['@QuantStack', '@facebookresearch ', 'Imperial College London', 'London Interdisciplinary School', 'UC Berkeley', 'University of Wisconsin-Madison']",,1.13,44,28,57,0,6,28,6,44.0,117.0,90.0,2.7,0,46.8101 +69,util,https://github.com/pygithub/pygithub,,,,pygithub/pygithub,PyGithub,5804,1595,113,Python,https://pygithub.readthedocs.io/,PyGithub: Typed interactions with the GitHub API v3,pygithub,2023-02-21,2012-02-25,573,10.119053549190536,"['pygithub', 'python', 'github', 'github-api']",2023-02-20,295,"['akfish', 'allevin', 'enix223', 'jacquev6', 'jayfk', 'jzelinskie@authzed', 'martinqt', 's-t-e-v-e-n-k@suse', 'sfdye@zendesk', 'thialfihar']",3,10,"['authzed', 'suse', 'zendesk']","['@authzed', '@zendesk ', 'SUSE']",,0.5,115,37,134,0,3,9,3,115.0,202.0,90.0,1.8,0,47.6147 +969,ml,https://github.com/thu-ml/tianshou,,,,thu-ml/tianshou,tianshou,5768,905,83,Python,https://tianshou.readthedocs.io,tianshou: An elegant PyTorch deep reinforcement learning library.,thu-ml,2023-02-21,2018-04-16,253,22.7727016356458,"['pytorch', 'policy-gradient', 'dqn', 'double-dqn', 'a2c', 'ddpg', 'ppo', 'td3', 'sac', 'imitation-learning', 'mujoco', 'atari', 'bcq', 'library', 'rl', 'drl', 'benchmark', 'trpo', 'npg', 'cql']",2023-02-03,49,"['ChenDRAG@tsinghuauniversity', 'Markus28', 'Mehooz@hedgefund', 'Trinkle23897@openai', 'danagi', 'duburcqa', 'gogoduan@tsinghuauniversity', 'nuance1979', 'rocknamx8', 'youkaichao']",3,10,"['hedgefund', 'openai', 'tsinghuauniversity']","['@openai ', 'Hedge Fund', 'Tsinghua University']",,1.21,47,29,59,1,7,5,7,47.0,93.0,90.0,2.0,0,40.69802 +68,gamedev,https://github.com/pygame/pygame,1.0,,,pygame/pygame,pygame,5740,2520,157,C,https://www.pygame.org,"pygame: 🐍🎮 pygame (the library) is a Free and Open Source python programming language library for making multimedia applications like games built on top of the excellent SDL library. C, Python, Native, OpenGL.",pygame,2023-02-21,2017-03-26,308,18.610467809170913,"['python', 'pygame', 'sdl2', 'sdl', 'game-development', 'gamedev', 'game-dev']",2023-02-21,274,"['MyreMylar', 'PeterShinners', 'Starbuck5', 'ankith26', 'charlesej', 'dlon', 'illume', 'llindstrom', 'sublimator', 'takluyver']",0,10,[],[],,5.25,283,229,72,0,4,13,4,283.0,495.0,90.0,1.7,0,43.90623 +730,ml,https://github.com/cleverhans-lab/cleverhans,,,,cleverhans-lab/cleverhans,cleverhans,5707,1378,191,Jupyter Notebook,,"cleverhans: An adversarial example library for constructing attacks, building defenses, and benchmarking both",cleverhans-lab,2023-02-21,2016-09-15,335,16.99234368353892,"['machine-learning', 'security', 'benchmarking']",2023-01-31,130,"['AlexeyKurakin', 'WindQAQ@googlers', 'carlini', 'david-berthelot', 'fartashf@universityoftoronto', 'goodfeli', 'jonasguan', 'michaelshiyu', 'npapernot@universityoftoronto', 'steverab']",2,10,"['googlers', 'universityoftoronto']","['@googlers ', 'University of Toronto']",,0.02,3,1,78,1,0,1,1,3.0,0.0,90.0,0.0,0,30.58329 +106,ml,https://github.com/nicolashug/surprise,,,,nicolashug/surprise,Surprise,5696,969,147,Python,http://surpriselib.com,Surprise: A Python scikit for building and analyzing recommender systems,nicolashug,2023-02-20,2016-10-23,330,17.23821876351059,"['recommender', 'systems', 'recommendation', 'svd', 'matrix', 'factorization', 'machine-learning']",2023-01-27,45,"['NicolasHug', 'PFGimenez@centralesupelec', 'ashtou', 'hengji-liu', 'janniks@hirosystems', 'kman0', 'lenatech', 'mahermalaeb', 'naturale0', 'timgates42@iress']",3,10,"['centralesupelec', 'hirosystems', 'iress']","['@CentraleSupelec', '@hirosystems', 'IRESS']",,0.54,23,9,77,1,0,2,2,23.0,16.0,90.0,0.7,0,35.09811 +643,util,https://github.com/theskumar/python-dotenv,,,,theskumar/python-dotenv,python-dotenv,5689,356,33,Python,https://saurabh-kumar.com/python-dotenv/,python-dotenv: Reads key-value pairs from a .env file and can set them as environment variables. It helps in developing applications following the 12-factor principles.,theskumar,2023-02-21,2014-09-06,441,12.883532837269492,"['python', 'devops-tools', 'dotenv', '12-factor-app', 'configuration', 'env', 'environment-variables']",2023-01-21,87,"['altendky', 'bbc2', 'greyli', 'hugochinchilla@codiumteam', 'jacobian@latacora', 'pjona', 'smsearcy', 'theskumar@fueled', 'ulyssessouza@docker', 'venthur@debianflix-tech']",5,10,"['codiumteam', 'debianflix-tech', 'docker', 'fueled', 'latacora']","['@Fueled', '@debian @flix-tech ', '@docker ', 'Codium Team', 'Latacora']",,0.77,23,13,103,1,2,5,2,23.0,19.0,90.0,0.8,0,40.29713 +723,ml,https://github.com/py-why/dowhy,,,,py-why/dowhy,dowhy,5688,816,137,Python,https://www.pywhy.org/dowhy,"DoWhy is a Python library for causal inference that supports explicit modeling and testing of causal assumptions. DoWhy is based on a unified language for causal inference, combining causal graphical models and potential outcomes frameworks. ",py-why,2023-02-21,2018-05-31,246,23.041666666666668,"['causal-inference', 'machine-learning', 'graphical-models', 'bayesian-networks', 'data-science', 'python3', 'causality', 'causal-models', 'treatment-effects', 'do-calculus', 'causal-machine-learning']",2023-02-14,71,"['Arshiaarya', 'Tanmay-Kulkarni101', 'akelleh@barclaysib;columbia', 'allcontributors[bot]', 'amit-sharma', 'andresmor-ms', 'bloebp@amazon', 'darthtrevino@microsoft', 'kailashbuki', 'petergtz@amazonwebservices']",4,10,"['amazon', 'amazonwebservices', 'barclaysib;columbia', 'microsoft']","['@Microsoft ', 'Amazon', 'Amazon Web Services', 'Barclays IB; Columbia']",,6.23,133,89,58,0,4,3,4,133.0,337.0,90.0,2.5,0,47.76062 +910,perf,https://github.com/exaloop/codon,,,,exaloop/codon,codon,5649,187,48,C++,https://docs.exaloop.io/codon,"codon: A high-performance, zero-overhead, extensible Python compiler using LLVM",exaloop,2023-02-21,2021-09-27,73,77.08187134502924,"['python', 'compiler', 'llvm', 'high-performance', 'gpu-programming', 'parallel-programming']",2023-02-06,7,"['HarisSmajlovic@universityofvictoria', 'arshajii', 'inumanag@universityofvictoria', 'isnumanagic', 'learnforpractice', 'markhend', 'stephenberry']",1,10,['universityofvictoria'],['University of Victoria'],,1.73,140,100,17,0,5,4,5,140.0,316.0,90.0,2.3,0,32.81497 +193,util,https://github.com/pycqa/isort,,,,pycqa/isort,isort,5623,518,46,Python,https://pycqa.github.io/isort/,isort: A Python utility / library to sort imports.,pycqa,2023-02-21,2013-09-02,494,11.376011560693641,"['auto-formatter', 'isort', 'sorting-imports', 'python-utility', 'cli', 'linter', 'cleaner', 'formatter', 'python', 'python3', 'hacktoberfest']",2023-02-26,280,"['akonsta@opennms', 'anirudnits@google', 'blueyed@freelancer,upforhire', 'gofr', 'jdufresne@pioneervalleybooks', 'mkurnikov', 'orsinium@sendcloud', 'staticdev@swisscom', 'sztamas', 'timothycrosley@stripe']",7,10,"['freelancer,upforhire', 'google', 'opennms', 'pioneervalleybooks', 'sendcloud', 'stripe', 'swisscom']","['@sendcloud', 'Freelancer, up for hire', 'Google', 'OpenNMS', 'Pioneer Valley Books', 'Stripe', 'Swisscom']",,2.31,154,121,115,0,8,15,8,154.0,168.0,90.0,1.1,0,53.34844 +538,nlp,https://github.com/nvidia/nemo,,,,nvidia/nemo,NeMo,5618,1388,136,Python,https://nvidia.github.io/NeMo/,NeMo: a toolkit for conversational AI,nvidia,2023-02-21,2019-08-05,185,30.320740169622205,"['deep-learning', 'speech-recognition', 'nlp', 'nlp-machine-learning', 'neural-network', 'machine-translation', 'speech-synthesis', 'speech-to-text', 'text-to-speech', 'nmt', 'language-model', 'speaker-diarization', 'speaker-recognition', 'text-normalization', 'asr', 'tts']",2023-02-18,206,"['VahidooX@nvidia', 'blisc', 'chiphuyen', 'ekmb@nyu,nvidia', 'ericharper', 'okuchaiev@nvidia', 'redoctopus@nvidia', 'titu1994@nvidia', 'tkornuta-nvidia@nvidia', 'yzhang123@nvidia']",2,10,"['nvidia', 'nyu,nvidia']","['@NVIDIA', '@nvidia', 'NVIDIA', 'NYU, NVIDIA']",,18.37,671,575,43,0,13,12,13,671.0,988.0,90.0,1.5,0,51.93578 +439,perf,https://github.com/mher/flower,,,,mher/flower,flower,5566,999,143,Python,https://flower.readthedocs.io,flower: Real-time monitor and web admin for Celery distributed task queue,mher,2023-02-21,2012-07-08,554,10.039165163617625,"['celery', 'task-queue', 'monitoring', 'administration', 'workers', 'rabbitmq', 'redis', 'python', 'asynchronous']",2022-11-14,196,"['Melevir@zipsale', 'Tomasz-Kluczkowski', 'adamgreig', 'ask@robinhoodmarkets', 'david-thorman@kloudless', 'igeorgievsky', 'jerzyk@trilab.pl', 'mher', 'pazur', 'tebeka@353solutions']",5,10,"['353solutions', 'kloudless', 'robinhoodmarkets', 'trilab.pl', 'zipsale']","['353solutions', '@robinhoodmarkets ', 'Kloudless Inc.', 'Zipsale', 'trilab.pl']",,0.27,27,4,129,3,0,2,2,27.0,28.0,90.0,1.0,0,40.47152 +784,diffusion,https://github.com/xavierxiao/dreambooth-stable-diffusion,,,,xavierxiao/dreambooth-stable-diffusion,Dreambooth-Stable-Diffusion,5515,607,80,Jupyter Notebook,,Dreambooth-Stable-Diffusion: Implementation of Dreambooth (https://arxiv.org/abs/2208.12242) with Stable Diffusion,xavierxiao,2023-02-21,2022-09-06,24,228.4319526627219,"['pytorch', 'pytorch-lightning', 'stable-diffusion', 'text-to-image']",2022-09-21,1,['XavierXiao@universityofchicago'],1,10,['universityofchicago'],['University of Chicago'],,0.6,45,2,6,5,0,0,0,45.0,55.0,90.0,1.2,0,13.2426 +161,ml,https://github.com/wandb/client,,,,wandb/client,wandb,5483,428,44,Python,https://wandb.ai,wandb: 🔥 A tool for visualizing and tracking your machine learning experiments. This repo contains the CLI and Python API.,wandb,2023-02-21,2017-03-24,308,17.760758907913004,"['machine-learning', 'experiment-track', 'deep-learning', 'keras', 'tensorflow', 'pytorch', 'hyperparameter-search', 'reinforcement-learning', 'mlops', 'data-science', 'collaboration', 'hyperparameter-optimization', 'reproducibility', 'hyperparameter-tuning', 'data-versioning', 'model-versioning', 'ml-platform']",2023-02-18,137,"['KyleGoyette', 'adrianbg', 'adrnswanberg', 'dmitryduev', 'kptkin', 'lukas@weightsandbiases', 'raubitsj', 'shawnlewis', 'tssweeney', 'vanpelt@crowdflower.com']",2,10,"['crowdflower.com', 'weightsandbiases']","['Weights and Biases', 'crowdflower.com']",,12.52,830,442,72,0,28,21,28,832.0,1626.0,90.0,2.0,0,53.35655 +511,ml,https://github.com/google/automl,,,,google/automl,automl,5477,1409,157,Jupyter Notebook,,automl: Google Brain AutoML,google,2023-02-21,2020-03-12,153,35.59795728876509,"['automl', 'efficientdet', 'object-detection', 'efficientnet', 'efficientnetv2']",2023-02-15,40,"['Ely-S', 'LucasSloan@google', 'NikZak', 'Samjith888@detecttechnologies', 'fsx950223@amd', 'jcburnel', 'kartik4949', 'mingxingtan@google', 'mmaithani', 'wuhy08']",3,10,"['amd', 'detecttechnologies', 'google']","['@google', 'AMD', 'Detect Technologies', 'Google']",,0.42,10,6,36,0,0,1,1,10.0,5.0,90.0,0.5,0,32.47305 +896,diffusion,https://github.com/apple/ml-stable-diffusion,,,,apple/ml-stable-diffusion,ml-stable-diffusion,5472,253,71,Python,,ml-stable-diffusion: Stable Diffusion with Core ML on Apple Silicon,apple,2023-02-21,2022-11-16,14,390.85714285714283,[],2023-02-15,15,"['JustinMeans@outtakes•voosey', 'Wanaldino', 'atiorh', 'cclauss@christianclauss', 'godly-devotion', 'kasima', 'littleowl', 'liuliu', 'nathantannar4', 'pcuenca']",2,10,"['christianclauss', 'outtakes•voosey']","['Christian Clauss', 'Outtakes • Voosey']",,0.5,132,47,3,0,2,8,2,132.0,399.0,90.0,3.0,0,31.03472 +579,ml,https://github.com/probml/pyprobml,,,,probml/pyprobml,pyprobml,5446,1303,178,Jupyter Notebook,,"pyprobml: Python code for ""Probabilistic Machine learning"" book by Kevin Murphy",probml,2023-02-21,2016-08-17,340,16.01764705882353,"['jupyter-notebooks', 'machine-learning', 'colab', 'pml', 'probabilistic-programming', 'jax', 'tensorflow', 'pytorch', 'pymc3', 'numpyro', 'flax', 'pyro', 'blackjax']",2023-01-20,67,"['Drishttii', 'Duane321@lyft', 'Neoanarika@collaborative,learning,andadaptiverobots(clear)', 'ashishpapanai', 'gerdm@queenmaryuniversityoflondon', 'karalleyna', 'karm-patel@indianinstituteofscience(iisc)', 'mjsML@nvidia', 'murphyk@google', 'patel-zeel@iitgandhinagar']",7,10,"['collaborative,learning,andadaptiverobots(clear)', 'google', 'iitgandhinagar', 'indianinstituteofscience(iisc)', 'lyft', 'nvidia', 'queenmaryuniversityoflondon']","['@NVIDIA ', 'Collaborative, Learning, and Adaptive Robots (CLEAR)', 'Google', 'IIT Gandhinagar', 'Indian Institute of Science (IISc)', 'Lyft', 'Queen Mary University of London']",,9.54,8,6,79,1,1,0,1,8.0,13.0,90.0,1.6,0,43.07153 +880,time-series,https://github.com/unit8co/darts,,,,unit8co/darts,darts,5405,597,42,Python,https://unit8co.github.io/darts/,darts: A python library for user-friendly forecasting and anomaly detection on time series.,unit8co,2023-02-20,2018-09-13,231,23.31176833025262,"['python', 'time-series', 'forecasting', 'machine-learning', 'deep-learning', 'anomaly-detection', 'data-science']",2023-02-21,79,"['LeoTafti', 'TheMP@unit8co', 'dennisbader', 'endrjuskr@unit8sa', 'gdevos010@episci', 'hrzn@unit8co', 'inverniz', 'madtoinou', 'pennfranc', 'tomasvanpottelbergh']",3,10,"['episci', 'unit8co', 'unit8sa']","['@unit8co ', 'EpiSci', 'Unit8 SA']",,4.25,340,210,54,0,7,8,7,340.0,572.0,90.0,1.7,0,47.21094 +932,nlp,https://github.com/lucidrains/palm-rlhf-pytorch,,,,lucidrains/palm-rlhf-pytorch,PaLM-rlhf-pytorch,5372,405,109,Python,,PaLM-rlhf-pytorch: Implementation of RLHF (Reinforcement Learning with Human Feedback) on top of the PaLM architecture. Basically ChatGPT but with PaLM,lucidrains,2023-02-21,2022-12-09,10,501.38666666666666,"['artificial-intelligence', 'attention-mechanisms', 'deep-learning', 'reinforcement-learning', 'transformers', 'human-feedback']",2023-02-15,4,"['ell-hol@orange', 'eltociear@bandism', 'hypnopump', 'lucidrains']",2,10,"['bandism', 'orange']","['@bandism ', 'Orange']",,1.83,29,20,2,0,59,359,59,29.0,94.0,90.0,3.2,0,30.726 +971,ml,https://github.com/keras-rl/keras-rl,,,,keras-rl/keras-rl,keras-rl,5372,1360,211,Python,http://keras-rl.readthedocs.io/,keras-rl: Deep Reinforcement Learning for Keras.,keras-rl,2023-02-18,2016-07-02,346,15.500412201154163,"['keras', 'tensorflow', 'theano', 'reinforcement-learning', 'neural-networks', 'machine-learning']",2019-11-11,41,"['RaphaelMeudec', 'RyanHope', 'aliostad', 'bstriner', 'jorahn@42digital', 'kashif', 'matthiasplappert', 'raj-rohan', 'raopku', 'rmst']",1,10,['42digital'],['@42DIGITAL '],,0.0,2,2,81,40,0,1,1,2.0,1.0,90.0,0.5,0,19.90157 +632,util,https://github.com/pyca/cryptography,,,,pyca/cryptography,cryptography,5364,1133,120,Python,https://cryptography.io,cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.,pyca,2023-02-21,2013-08-07,498,10.771084337349398,"['python', 'cryptography']",2023-02-21,281,"['Ayrx', 'alex', 'dependabot[bot]', 'dreid', 'dstufft@datadog', 'lvh@latacora', 'muattiyah', 'public@purple-dot', 'pyca-boringbot[bot]', 'reaperhulk']",3,10,"['datadog', 'latacora', 'purple-dot']","['@DataDog', '@Latacora', '@purple-dot ']",,19.96,638,611,116,0,0,11,11,638.0,490.0,90.0,0.8,0,55.07288 +96,data,https://github.com/vi3k6i5/flashtext,,,,vi3k6i5/flashtext,flashtext,5352,597,139,Python,,flashtext: Extract Keywords from sentence or Replace keywords in sentences.,vi3k6i5,2023-02-18,2017-08-15,288,18.574119980168568,"['search-in-text', 'keyword-extraction', 'nlp', 'word2vec', 'data-extraction']",2020-05-03,7,"['delirious-lettuce', 'remiadon', 'rompom', 'slotlocker2', 'vi3k6i5@meta']",1,10,['meta'],['Meta'],,0.0,3,0,67,34,0,0,0,3.0,1.0,90.0,0.3,0,12.8452 +214,nlp,https://github.com/speechbrain/speechbrain,,,,speechbrain/speechbrain,speechbrain,5345,1013,115,Python,http://speechbrain.github.io,speechbrain: A PyTorch-based Speech Toolkit,speechbrain,2023-02-21,2020-04-28,147,36.3252427184466,"['speech-recognition', 'speech-toolkit', 'speaker-recognition', 'speech-to-text', 'speech-enhancement', 'speech-separation', 'audio', 'audio-processing', 'speech-processing', 'speechrecognition', 'asr', 'voice-recognition', 'spoken-language-understanding', 'speaker-diarization', 'speaker-verification', 'pytorch', 'huggingface', 'transformers', 'language-model', 'deep-learning']",2023-02-20,196,"['30stomercury@ilcc,universityofedinburgh', 'Gastron', 'JianyuanZhong', 'TParcollet@samsung', 'flexthink', 'mravanelli@universityofmontreal', 'nauman-daw@mit', 'popcornell@marchepolytechnicuniversity', 'pplantinga@jpmorganchase', 'ycemsubakan']",6,10,"['ilcc,universityofedinburgh', 'jpmorganchase', 'marchepolytechnicuniversity', 'mit', 'samsung', 'universityofmontreal']","['@jpmorganchase', 'ILCC, University of Edinburgh', 'MIT', 'Marche Polytechnic University', 'Samsung', 'University of Montreal']",,18.54,151,82,34,0,2,3,2,151.0,377.0,90.0,2.5,0,51.72347 +471,util,https://github.com/parthjadhav/tkinter-designer,,,,parthjadhav/tkinter-designer,Tkinter-Designer,5343,507,57,Python,,Tkinter-Designer: An easy and fast way to create a Python GUI 🐍,parthjadhav,2023-02-21,2021-05-18,92,57.986046511627904,"['tkinter', 'tkinter-gui', 'tkinter-python', 'tkinter-graphic-interface', 'python3', 'tkinter-widgets', 'gui-application', 'python-script', 'drag-and-drop', 'easy', 'easy-to-use', 'fast', 'gui', 'tkinter-designer', 'figma', 'python', 'automatic', 'collaborate', 'learn', 'hacktoberfest']",2023-02-05,35,"['ParthJadhav@xd2sketch', 'TanmayBansode', 'greenmagenta', 'jrobchin@microsoftazure', 'jvendegna', 'mehmet-mert', 'neilbaldwin', 'piccoloser', 'ralphg6@bancodobrasil', 'saur0x']",3,10,"['bancodobrasil', 'microsoftazure', 'xd2sketch']","['@XD2Sketch ', '@bancodobrasil', 'Microsoft Azure']",,0.94,19,7,21,1,2,5,2,19.0,10.0,90.0,0.5,0,30.89819 +3,ml,https://github.com/awslabs/autogluon,,,,awslabs/autogluon,autogluon,5343,698,93,Python,https://auto.gluon.ai/,"AutoGluon: AutoML for Image, Text, Time Series, and Tabular Data",awslabs,2023-02-20,2019-07-29,186,28.68174846625767,"['automl', 'machine-learning', 'data-science', 'deep-learning', 'ensemble-learning', 'image-classification', 'computer-vision', 'natural-language-processing', 'structured-data', 'object-detection', 'gluon', 'transfer-learning', 'pytorch', 'automated-machine-learning', 'scikit-learn', 'autogluon', 'tabular-data', 'hyperparameter-optimization', 'time-series', 'forecasting']",2023-02-21,100,"['FANGAreNotGnu@amazonwebservices', 'Innixma@amazonai', 'canerturkmen@awsawslabs', 'gradientsky@amazonai', 'jwmueller@cleanlab', 'shchur', 'sxjscience@amazonwebservices', 'yinweisu@amazon', 'zhanghang1989', 'zhiqiangdon@awsai']",6,10,"['amazon', 'amazonai', 'amazonwebservices', 'awsai', 'awsawslabs', 'cleanlab']","['@aws @awslabs', 'AWS AI', 'Amazon', 'Amazon AI', 'Amazon Web Services', 'Cleanlab']",,15.88,685,541,43,0,12,7,12,683.0,1322.0,90.0,1.9,0,54.3459 +283,util,https://github.com/sdispater/pendulum,,,,sdispater/pendulum,pendulum,5336,319,64,Python,https://pendulum.eustace.io,pendulum: Python datetimes made easy,sdispater,2023-02-20,2016-06-27,347,15.364870423693953,"['python', 'datetime', 'date', 'time', 'python3', 'timezones']",2022-12-23,87,"['NickFabry', 'Secrus', 'altendky', 'bryanforbes@sitepen', 'erosennin', 'guyzmo', 'maedox', 'pre-commit-ci[bot]', 'redlickigrzegorz@stxnext', 'sdispater']",2,10,"['sitepen', 'stxnext']","['@stxnext', 'SitePen, Inc.']",,0.73,22,4,81,2,1,8,1,22.0,11.0,90.0,0.5,0,33.04196 +909,web,https://github.com/pynecone-io/pynecone,,,,pynecone-io/pynecone,pynecone,5300,183,54,Python,https://pynecone.io,pynecone: 🕸 Web apps in pure Python 🐍,pynecone-io,2023-02-21,2022-10-25,17,309.1666666666667,"['fullstack', 'python', 'webdev', 'framework', 'web', 'python-library', 'python3', 'open-source', 'infrastructure']",2023-02-21,30,"['Alek99@pynecone', 'ElijahAhianyo', 'FHU-yezi', 'HellAmbro@rutershok', 'Lendemor', 'PeterYusuke', 'advo-kat', 'picklelo@pynecone', 'qu3vipon@asleep-ai', 'r0b2g1t@deutschetelekomag']",4,10,"['asleep-ai', 'deutschetelekomag', 'pynecone', 'rutershok']","['@Rutershok', '@asleep-ai', 'Deutsche Telekom AG', 'Pynecone', 'Pynecone ']",,4.02,488,381,4,0,11,33,11,488.0,771.0,90.0,1.6,0,40.95055 +223,nlp,https://github.com/kingoflolz/mesh-transformer-jax,1.0,,,kingoflolz/mesh-transformer-jax,mesh-transformer-jax,5296,757,92,Python,,mesh-transformer-jax: Model parallel transformers in JAX and Haiku,kingoflolz,2023-02-21,2021-03-13,101,52.14064697609001,[],2023-01-12,23,"['AeroScripts', 'CurtisASmith', 'StellaAthena@boozallenhamilton', 'ablacklama@cardsagainsthumanity', 'cclauss@christianclauss', 'djoldman', 'kingoflolz', 'leogao2', 'narphorium', 'nostalgebraist']",3,10,"['boozallenhamilton', 'cardsagainsthumanity', 'christianclauss']","['@cardsagainsthumanity', 'Booz Allen Hamilton', 'Christian Clauss']",,0.02,19,4,24,1,0,0,0,19.0,27.0,90.0,1.4,0,28.70588 +603,ml,https://github.com/cleanlab/cleanlab,,,,cleanlab/cleanlab,cleanlab,5286,447,67,Python,https://cleanlab.ai,"cleanlab: The standard data-centric AI package for data quality and machine learning with messy, real-world data and labels.",cleanlab,2023-02-21,2018-05-11,249,21.168192219679632,"['weak-supervision', 'robust-machine-learning', 'data-cleaning', 'classification', 'data-quality', 'data-science', 'exploratory-data-analysis', 'label-errors', 'noisy-labels', 'data-centric-ai', 'machine-learning', 'out-of-distribution-detection', 'outlier-detection', 'data-validation', 'active-learning', 'crowdsourcing', 'image-tagging', 'data-labeling', 'entity-recognition', 'annotations']",2023-02-19,29,"['JohnsonKuan', 'aditya1503@home', 'anishathalye@mitcsail', 'calebchiam@stanforduniversity', 'cgnorthcutt@cleanlab|mit', 'elisno', 'huiwengoh', 'jwmueller@cleanlab', 'ulya-tkch@cleanlab', 'weijinglok']",5,10,"['cleanlab', 'cleanlab|mit', 'home', 'mitcsail', 'stanforduniversity']","['@Cleanlab | MIT', '@cleanlab ', 'Cleanlab', 'Home', 'MIT CSAIL', 'Stanford University']",,9.02,136,94,58,0,4,1,4,136.0,184.0,90.0,1.4,0,45.24406 +278,data,https://github.com/airbnb/knowledge-repo,,,,airbnb/knowledge-repo,knowledge-repo,5281,706,176,Python,,knowledge-repo: A next-generation curated knowledge sharing platform for data scientists and other technical professions.,airbnb,2023-02-20,2016-08-17,340,15.532352941176471,"['data', 'data-science', 'knowledge', 'data-analysis']",2023-02-20,72,"['JJJ000', 'NiharikaRay', 'bulam', 'csharplus@airbnb', 'danfrankj', 'dorianbrown@dorianbrownanalytics', 'earthmancash2@eppo', 'matthewwardrop@datascientistatnetflix', 'mengting1010', 'naoyak@airbnb']",4,10,"['airbnb', 'datascientistatnetflix', 'dorianbrownanalytics', 'eppo']","['@airbnb', 'Airbnb', 'Data Scientist at @Netflix', 'Dorian Brown Analytics', 'Eppo']",,10.25,75,67,79,0,2,5,2,75.0,16.0,90.0,0.2,0,43.25949 +434,util,https://github.com/scikit-image/scikit-image,,,,scikit-image/scikit-image,scikit-image,5246,2102,185,Python,https://scikit-image.org,scikit-image: Image processing in Python,scikit-image,2023-02-20,2011-07-07,606,8.644538606403014,"['image-processing', 'python', 'computer-vision', 'hacktoberfest', 'closember']",2023-02-20,591,"['JDWarner', 'ahojnnes@microsoft', 'blink1073@mongodb', 'emmanuelle', 'grlee77@nvidia', 'hmaarrfk@californiainstituteoftechnology', 'jni@biomedicinediscoveryinstitute,monashuniversity', 'soupault@mipt-oulu,oulu-imeds', 'stefanv@universityofcalifornia,berkeley', 'vighneshbirodkar@google']",8,10,"['biomedicinediscoveryinstitute,monashuniversity', 'californiainstituteoftechnology', 'google', 'microsoft', 'mipt-oulu,oulu-imeds', 'mongodb', 'nvidia', 'universityofcalifornia,berkeley']","['@MIPT-Oulu, @Oulu-IMEDS ', 'Biomedicine Discovery Institute, Monash University', 'California Institute of Technology', 'Google', 'Microsoft', 'MongoDB', 'NVIDIA', 'University of California, Berkeley']",,5.75,431,171,142,0,6,9,6,431.0,558.0,90.0,1.3,0,58.18437 +552,ml,https://github.com/open-mmlab/mmsegmentation,,,,open-mmlab/mmsegmentation,mmsegmentation,5231,1934,52,Python,https://mmsegmentation.readthedocs.io/en/latest/,mmsegmentation: OpenMMLab Semantic Segmentation Toolbox and Benchmark.,open-mmlab,2023-02-21,2020-06-14,140,37.25025432349949,"['semantic-segmentation', 'pytorch', 'pspnet', 'deeplabv3', 'transformer', 'swin-transformer', 'realtime-segmentation', 'vessel-segmentation', 'retinal-vessel-segmentation', 'image-segmentation', 'medical-image-segmentation']",2023-02-21,135,"['Junjun2016', 'MengzhangLI@shanghaiailaboratory', 'MeowZheng@openmmlab', 'RockeyCoss', 'linfangjian01@alibaba', 'sennnnn@xxx', 'sshuair', 'xiexinch@openmmlab', 'xvjiarui@ucsd', 'yamengxi']",5,10,"['alibaba', 'openmmlab', 'shanghaiailaboratory', 'ucsd', 'xxx']","['Alibaba', 'OpenMMLab', 'Shanghai AI Laboratory', 'UCSD', 'xxx']",,3.65,433,266,33,0,18,14,18,433.0,639.0,90.0,1.5,0,50.82597 +352,ml-ops,https://github.com/activeloopai/hub,,,,activeloopai/hub,deeplake,5225,418,65,Python,https://activeloop.ai,"deeplake: Data Lake for Deep Learning. Build, manage, query, version, & visualize datasets. Stream data real-time to PyTorch/TensorFlow. https://activeloop.ai ",activeloopai,2023-02-19,2019-08-09,184,28.28692962103635,"['datasets', 'deep-learning', 'machine-learning', 'data-science', 'pytorch', 'tensorflow', 'data-version-control', 'python', 'ai', 'ml', 'mlops', 'computer-vision', 'cv', 'data-processing', 'image-processing', 'data-centric', 'jupyter-notebook', 'datalake', 'lakehouse']",2023-02-20,107,"['AbhinavTuli@activeloop', 'FayazRahman', 'benchislett', 'davidbuniat@activeloopai', 'edogrigqv2', 'farizrahman4u', 'imshashank@self', 'kristinagrig06', 'nollied', 'thisiseshan@northeasternuniversity']",4,10,"['activeloop', 'activeloopai', 'northeasternuniversity', 'self']","['@activeloopai', 'Activeloop', 'Northeastern University', 'Self']",,24.62,196,164,43,0,59,34,59,196.0,191.0,90.0,1.0,0,51.6355 +81,util,https://github.com/sphinx-doc/sphinx,,,,sphinx-doc/sphinx,sphinx,5218,1863,142,Python,https://www.sphinx-doc.org/,sphinx: The Sphinx documentation generator,sphinx-doc,2023-02-21,2015-01-02,424,12.285906491759166,"['python', 'documentation', 'documentation-tool', 'sphinx', 'markdown', 'restructuredtext']",2023-02-18,770,"['AA-Turner', 'TimKam@signaviosphinx-docsphinx-contrib', 'birkenfeld@fzjülich', 'jakobandersen', 'jfbu', 'keewis', 'lehmannro', 'shimizukawa@beproud', 'stephenfin@redhat', 'tk0miya@timeintermedia(timedia)']",5,10,"['beproud', 'fzjülich', 'redhat', 'signaviosphinx-docsphinx-contrib', 'timeintermedia(timedia)']","['@signavio @sphinx-doc @sphinx-contrib ', 'BeProud', 'FZ Jülich', 'Red Hat', 'Time Intermedia (@timedia)']",,13.46,381,147,99,0,20,31,20,381.0,439.0,90.0,1.2,0,59.33798 +686,util,https://github.com/py-pdf/pypdf2,,,,py-pdf/pypdf2,pypdf,5218,1165,143,Python,https://pypdf.readthedocs.io/en/latest/,"pypdf: A pure-python PDF library capable of splitting, merging, cropping, and transforming the pages of PDF files",py-pdf,2023-02-21,2012-01-06,580,8.985485854858549,"['pypdf2', 'pdf', 'python', 'pdf-parser', 'pdf-parsing', 'pdf-manipulation', 'pdf-documents', 'help-wanted']",2023-02-15,168,"['MartinThoma', 'MasterOdin@popsql', 'jamma313', 'knowah', 'mozbugbox', 'mstamy2', 'mtd91429', 'pubpub-zz', 'switham', 'sylvainpelissier']",1,10,['popsql'],['@popsql'],,13.58,239,183,135,0,54,6,54,239.0,759.0,90.0,3.2,0,53.25838 +404,perf,https://github.com/python-trio/trio,,,,python-trio/trio,trio,5167,294,88,Python,https://trio.readthedocs.io,Trio – a friendly Python library for async concurrency and I/O,python-trio,2023-02-20,2017-01-16,318,16.233842010771994,"['python', 'async', 'async-await', 'networking', 'io', 'trio', 'structured-concurrency']",2023-02-20,140,"['A5rocks', 'Fuyukai', 'agronholm@nextdaysolutionsoy', 'buhman@verizonmedia', 'dependabot-preview[bot]', 'dependabot-support', 'dependabot[bot]', 'njsmith', 'oremanj@hudsonrivertrading', 'pquentin@elastic']",4,10,"['elastic', 'hudsonrivertrading', 'nextdaysolutionsoy', 'verizonmedia']","['@elastic', '@verizonmedia', 'Hudson River Trading', 'NextDay Solutions Oy']",,5.96,119,95,74,0,0,4,4,119.0,270.0,90.0,2.3,0,49.8598 +301,data,https://github.com/kaggle/kaggle-api,,,,kaggle/kaggle-api,kaggle-api,5166,983,194,Python,,kaggle-api: Official Kaggle API,kaggle,2023-02-21,2018-01-25,264,19.50485436893204,[],2021-03-15,36,"['Conengmo', 'chrisgorgo@google', 'danieljanes@adapgmbh', 'dpmcna', 'filipefilardi', 'philippegr', 'pizzaz93', 'rysteboe', 'vsoch', 'washcycle@aspen-insights']",3,10,"['adapgmbh', 'aspen-insights', 'google']","['@aspen-insights ', 'Adap GmbH', 'Google LLC']",,0.0,21,5,62,24,0,0,0,21.0,18.0,90.0,0.9,0,25.13979 +546,ml-dl,https://github.com/facebookresearch/mmf,,,,facebookresearch/mmf,mmf,5146,909,117,Python,https://mmf.sh/,mmf: A modular framework for vision & language multimodal research from Facebook AI Research (FAIR),facebookresearch,2023-02-20,2018-06-27,243,21.17695473251029,"['pytorch', 'vqa', 'pretrained-models', 'multimodal', 'deep-learning', 'captioning', 'dialog', 'textvqa', 'hateful-memes', 'multi-tasking']",2023-02-02,109,"['Ryan-Qiyu-Jiang@uwstudent', 'YuJiang01@facebook', 'apsdehal@researchhuggingface,contributorjquery,pastfacebookresearch', 'dependabot[bot]', 'jknoxville@facebook', 'meetps', 'ronghanghu@metaai', 'suzyahyah', 'vedanuj', 'ytsheng']",4,10,"['facebook', 'metaai', 'researchhuggingface,contributorjquery,pastfacebookresearch', 'uwstudent']","['@Facebook', 'Facebook', 'Meta AI', 'Research @huggingface, Contributor @jquery, Past @facebookresearch ', 'UW student']",,0.87,98,84,57,1,0,1,1,98.0,90.0,90.0,0.9,0,40.41016 +652,profiling,https://github.com/joerick/pyinstrument,,,,joerick/pyinstrument,pyinstrument,5127,220,55,Python,https://pyinstrument.readthedocs.io/,pyinstrument: 🚴 Call stack profiler for Python. Shows you why your code is slow!,joerick,2023-02-21,2014-03-13,466,10.981946144430845,"['python', 'django', 'profiler', 'performance', 'profile', 'async']",2022-12-27,47,"['asmeurer@quansight', 'cclauss@christianclauss', 'codelol', 'dependabot[bot]', 'goxberry@datadog,formerlyllnl', 'iddan@flycode-org', 'jnsquire', 'joerick@nordprojects', 'telamonian@jpmorgan', 'tonybaloney@microsoft']",7,10,"['christianclauss', 'datadog,formerlyllnl', 'flycode-org', 'jpmorgan', 'microsoft', 'nordprojects', 'quansight']","['@DataDog, formerly @LLNL ', '@Quansight ', '@flycode-org', 'Christian Clauss', 'JP Morgan', 'Microsoft', 'Nord Projects']",,1.92,11,5,109,2,0,6,6,11.0,10.0,90.0,0.9,0,40.7073 +279,jupyter,https://github.com/nteract/papermill,,,,nteract/papermill,papermill,5120,386,91,Python,http://papermill.readthedocs.io/en/latest/,"papermill: 📚 Parameterize, execute, and analyze notebooks",nteract,2023-02-21,2017-07-06,293,17.42343218279047,"['jupyter', 'notebooks', 'notebook-generator', 'nteract', 'publishing', 'pipeline', 'notebook', 'python', 'r', 'julia', 'scala']",2022-10-18,108,"['MSeal@noteable-io', 'VincentBLortie', 'betatim@nvidia', 'ewmassey', 'gogasca@google', 'janfreyberg@google', 'mpacer@netflix', 'rgbkrk@noteable-io', 'vizhur@microsoft', 'willingc@willingconsulting']",6,10,"['google', 'microsoft', 'netflix', 'noteable-io', 'nvidia', 'willingconsulting']","['@Noteable-io', '@google ', '@noteable-io', 'Google', 'Microsoft', 'Netflix', 'Nvidia ', 'Willing Consulting']",,0.58,15,1,69,4,0,14,14,15.0,23.0,90.0,1.5,0,40.87479 +605,jupyter,https://github.com/connorferster/handcalcs,,,,connorferster/handcalcs,handcalcs,5115,398,78,CSS,,handcalcs: Python library for converting Python calculations into rendered latex.,connorferster,2023-02-20,2020-02-19,157,32.5796178343949,[],2022-12-27,11,"['anishLearnsToCode@wedosarl', 'cclauss@christianclauss', 'connorferster@rjc-development', 'daradib@applemontechnologies', 'eriknw', 'gxyd', 'icaroscherma', 'michaellisitsa@clearcalcs', 'omouraenko', 'shawnbrown']",5,10,"['applemontechnologies', 'christianclauss', 'clearcalcs', 'rjc-development', 'wedosarl']","['@rjc-development ', 'Applemon Technologies', 'Christian Clauss', 'ClearCalcs', 'WEDO Sarl']",,1.08,18,6,37,2,3,3,3,18.0,11.0,90.0,0.6,0,30.97697 +15,ml-dl,https://github.com/skorch-dev/skorch,,,,skorch-dev/skorch,skorch,5041,336,82,Jupyter Notebook,,skorch: A scikit-learn compatible neural network library that wraps PyTorch,skorch-dev,2023-02-20,2017-07-18,292,17.255256723716382,"['scikit-learn', 'pytorch', 'machine-learning', 'hacktoberfest']",2023-02-13,54,"['BenjaminBossan', 'adelevie@casetext', 'asberk', 'benjamin-work@ottogroupbi', 'dnouri', 'ottonemo@ottogroupbi', 'stsievert', 'taketwo@aeolusrobotics', 'thomasjpfan@quansight-labs', 'timokau']",4,10,"['aeolusrobotics', 'casetext', 'ottogroupbi', 'quansight-labs']","['@Quansight-Labs ', '@casetext ', 'Aeolus Robotics, Inc.', 'Otto Group BI']",,1.08,21,12,68,0,2,3,2,21.0,69.0,90.0,3.3,0,42.65678 +953,security,https://github.com/stamparm/maltrail,,,,stamparm/maltrail,maltrail,4978,932,216,Python,,maltrail: Malicious traffic detection system,stamparm,2023-02-20,2014-12-04,428,11.60759493670886,"['security', 'malware', 'intrusion-detection', 'sensor', 'python', 'network-monitoring', 'attack-detection']",2023-02-21,40,"['D9ping', 'MikhailKasimov', 'PeterDaveHello@dnscryptnodejsmaintainerscampus-expertstransmission-remote-gui', 'arons@logobjectag', 'dyussekeyev@nazarbayevuniversity', 'jtkristoff', 'laciKE', 'stamparm', 't3chn0m4g3@deutschetelekomsecuritygmbh', 'wesinator']",4,10,"['deutschetelekomsecuritygmbh', 'dnscryptnodejsmaintainerscampus-expertstransmission-remote-gui', 'logobjectag', 'nazarbayevuniversity']","['@DNSCrypt @nodejs @maintainers @campus-experts @transmission-remote-gui', 'Deutsche Telekom Security GmbH', 'LogObject AG', 'Nazarbayev University']",,249.54,15,10,100,0,12,5,12,15.0,42.0,90.0,2.8,0,52.69608 +181,security,https://github.com/pycqa/bandit,,,,pycqa/bandit,bandit,4968,505,66,Python,https://bandit.readthedocs.io,Bandit is a tool designed to find common security issues in Python code.,pycqa,2023-02-21,2018-04-26,251,19.72546795235394,"['linter', 'bandit', 'security-tools', 'security-scanner', 'security', 'static-code-analysis', 'python']",2023-02-11,161,"['brantlk@ibm', 'chair6', 'cjschaef@ibm', 'ehooo', 'ericwb@securesauce', 'lukehinds@redhat,inc', 'pwnetrationguru@ubertechnologies', 'sigmavirus24@tableau&salesforce', 'stannum-l@pwc', 'viraptor']",6,10,"['ibm', 'pwc', 'redhat,inc', 'securesauce', 'tableau&salesforce', 'ubertechnologies']","['@IBM ', '@tableau & @salesforce', 'IBM', 'PwC', 'Red Hat, Inc', 'Secure Sauce', 'UBER Technologies']",,1.37,31,12,59,0,2,8,2,31.0,24.0,90.0,0.8,0,43.73491 +380,data,https://github.com/alirezamika/autoscraper,,,,alirezamika/autoscraper,autoscraper,4946,520,125,Python,,"autoscraper: A Smart, Automatic, Fast and Lightweight Web Scraper for Python",alirezamika,2023-02-21,2020-08-31,129,38.25635359116022,"['scraping', 'scraper', 'scrape', 'webscraping', 'crawler', 'web-scraping', 'ai', 'artificial-intelligence', 'python', 'webautomation', 'automation', 'machine-learning']",2022-07-17,8,"['Narasimha1997@cognitifai', 'PickNickChock', 'alirezamika', 'cthulhu-irl', 'gsakkis', 'jasonleonhard@http://stackoverflow.com/users/1783588/jasonleonhard', 'maxbachmann']",2,10,"['cognitifai', 'http://stackoverflow.com/users/1783588/jasonleonhard']","['cognitifai', 'http://stackoverflow.com/users/1783588/jasonleonhard']",,0.04,6,5,30,7,1,6,1,6.0,9.0,90.0,1.5,0,22.55609 +687,util,https://github.com/bndr/pipreqs,,,,bndr/pipreqs,pipreqs,4888,331,58,Python,,pipreqs - Generate pip requirements.txt file based on imports of any project. Looking for maintainers to move this project forward.,bndr,2023-02-21,2015-04-22,409,11.951100244498777,[],2023-01-14,53,"['AlexPHorta@buey', 'KaySackey@9cloud', 'Ohcanep', 'alan-barzilay', 'bndr', 'hdformat', 'jonafato', 'littmus', 'mapattacker', 'raxod502@plaid']",3,10,"['9cloud', 'buey', 'plaid']","['9Cloud LLC', '@plaid', 'Buey']",,0.04,34,8,95,1,0,3,3,34.0,22.0,90.0,0.6,0,35.82595 +169,nlp,https://github.com/minimaxir/textgenrnn,,,,minimaxir/textgenrnn,textgenrnn,4866,750,138,Python,,textgenrnn: Easily train your own text-generating neural network of any size and complexity on any text dataset with a few lines of code.,minimaxir,2023-02-21,2017-08-07,289,16.820740740740742,"['keras', 'deep-learning', 'text-generation', 'tensorflow', 'python']",2020-07-14,19,"['EdwardBetts', 'IrekRybark@sivantos', 'akx@valohai', 'bafonso', 'danielgrijalva', 'dkavraal', 'fahadh4ilyas', 'minimaxir@buzzfeed', 'netr', 'torokati44']",3,10,"['buzzfeed', 'sivantos', 'valohai']","['@buzzfeed ', '@valohai ', 'Sivantos, Inc.']",,0.0,3,0,67,32,0,2,2,3.0,3.0,90.0,1.0,0,22.71027 +569,ml,https://github.com/mdbloice/augmentor,,,,mdbloice/augmentor,Augmentor,4858,857,123,Python,https://augmentor.readthedocs.io/en/stable,Augmentor: Image augmentation library in Python for machine learning.,mdbloice,2023-02-19,2016-03-01,364,13.340918007061592,"['augmentation', 'machine-learning', 'deep-learning', 'neural-networks']",2023-01-24,23,"['CarkusL', 'Evizero', 'YananJian', 'eddiesmo@connectedpapers', 'juneoh', 'kmader', 'lradacher', 'mdbloice@medicaluniversitygraz', 'puhoshville', 's-ai-kia@lsbg,hamburg']",3,10,"['connectedpapers', 'lsbg,hamburg', 'medicaluniversitygraz']","['@ConnectedPapers ', 'LSBG, Hamburg', 'Medical University Graz']",,0.19,5,2,85,1,0,3,3,5.0,2.0,90.0,0.4,0,31.00201 +513,util,https://github.com/agronholm/apscheduler,,,,agronholm/apscheduler,apscheduler,4851,617,122,Python,,apscheduler: Task scheduling library for Python,agronholm,2023-02-21,2016-03-27,360,13.4589774078478,[],2023-02-07,38,"['AntonKorobkov', 'adamkalis', 'agronholm@nextdaysolutionsoy', 'bjmc', 'c-oreills', 'eendebakpt', 'jvillar@wetaca', 'linuxdynasty', 'nikolas@columbiauniversity', 'pre-commit-ci[bot]']",3,10,"['columbiauniversity', 'nextdaysolutionsoy', 'wetaca']","['Columbia University', 'NextDay Solutions Oy', 'Wetaca']",,2.63,25,15,84,0,0,8,8,25.0,33.0,90.0,1.3,0,41.63671 +661,study,https://github.com/udacity/deep-learning-v2-pytorch,,,,udacity/deep-learning-v2-pytorch,deep-learning-v2-pytorch,4848,5211,174,Jupyter Notebook,,deep-learning-v2-pytorch: Projects and exercises for the latest Deep Learning ND program https://www.udacity.com/course/deep-learning-nanodegree--nd101,udacity,2023-02-20,2018-09-04,233,20.794117647058822,"['deep-learning', 'neural-network', 'convolutional-networks', 'pytorch', 'recurrent-networks', 'style-transfer', 'sentiment-analysis']",2022-12-24,98,"['HanzTantiangco@universityofsheffield', 'NadimKawwa', 'SudKul@udacity', 'abhiojha8@udacity', 'cezannec', 'festusdrakon', 'jchernus@lumafield', 'mcleonard@bardeen', 'ronny-udacity', 'rrrrrr8@flow']",5,10,"['bardeen', 'flow', 'lumafield', 'udacity', 'universityofsheffield']","['@lumafield ', 'Bardeen', 'Udacity', 'University of Sheffield', 'flow']",,0.1,2,1,54,2,0,0,0,2.0,0.0,90.0,0.0,0,30.02014 +642,util,https://github.com/pycqa/pycodestyle,,,,pycqa/pycodestyle,pycodestyle,4775,694,120,Python,https://pycodestyle.pycqa.org,pycodestyle: Simple Python style checker in one Python file,pycqa,2023-02-19,2009-10-02,698,6.833980781026375,"['python', 'pep8', 'styleguide', 'style-guide', 'linter-plugin', 'linter-flake8', 'flake8-plugin']",2022-12-13,131,"['IanLee1521@llnl', 'asottile', 'cdce8p', 'florentx', 'gward', 'jcrocholl', 'jdufresne@pioneervalleybooks', 'pre-commit-ci[bot]', 'reinout@nens', 'sigmavirus24@tableau&salesforce']",4,10,"['llnl', 'nens', 'pioneervalleybooks', 'tableau&salesforce']","['@LLNL', '@nens ', '@tableau & @salesforce', 'Pioneer Valley Books']",,0.73,16,13,163,2,0,3,3,16.0,18.0,90.0,1.1,0,40.78992 +265,util,https://github.com/pytransitions/transitions,,,,pytransitions/transitions,transitions,4761,511,91,Python,,"transitions: A lightweight, object-oriented finite state machine implementation in Python with many extensions",pytransitions,2023-02-20,2014-10-12,436,10.90900163666121,"['python', 'state-machine', 'nested-states', 'hierarchical-state-machine', 'state-diagram']",2023-01-06,75,"['Synss@tribe29gmbh', 'TheMysteriousX', 'aleneum@caretechowl,fhbielefeld', 'ankostis@jrc-stu', 'artofhuman', 'ollamh', 'svdgraaf@teamookla/downdetector', 'thedrow', 'tyarkoni@twitter', 'wtgee']",5,10,"['caretechowl,fhbielefeld', 'jrc-stu', 'teamookla/downdetector', 'tribe29gmbh', 'twitter']","['@JRC-STU ', '@teamookla / Downdetector', '@tribe29 GmbH', 'CareTech OWL, FH Bielefeld', 'Twitter']",,0.62,8,3,102,2,2,5,2,8.0,11.0,90.0,1.4,0,38.40109 +551,ml,https://github.com/open-mmlab/mmcv,,,,open-mmlab/mmcv,mmcv,4699,1394,84,Python,https://mmcv.readthedocs.io/en/latest/,mmcv: OpenMMLab Computer Vision Foundation,open-mmlab,2023-02-21,2018-08-22,235,19.995744680851065,[],2023-02-17,249,"['MeowZheng@openmmlab', 'ZwwWayne@mmlab,ntu', 'dreamerlin@shanghaiailab', 'grimoire', 'hellock@open-mmlab', 'jshilong@shanghaiailab', 'teamwong111', 'xvjiarui@ucsd', 'yhcao6@cuhk,mmlab', 'zhouzaida']",6,10,"['cuhk,mmlab', 'mmlab,ntu', 'open-mmlab', 'openmmlab', 'shanghaiailab', 'ucsd']","['@open-mmlab ', 'CUHK, MMLab', 'MMLab, NTU', 'OpenMMLab', 'Shanghai AI Lab', 'UCSD']",,5.54,208,145,55,0,16,23,16,208.0,260.0,90.0,1.2,0,53.40651 +213,data,https://github.com/facebookresearch/augly,,,,facebookresearch/augly,AugLy,4668,274,62,Python,https://ai.facebook.com/blog/augly-a-new-data-augmentation-library-to-help-build-more-robust-ai-models/,"AugLy: A data augmentations library for audio, image, text, and video.",facebookresearch,2023-02-21,2021-06-09,89,52.449438202247194,[],2022-12-05,26,"['Adib234', 'AghilesAzzoug@créditagricolesa', 'Cloud9c', 'amyreese@omnilib', 'cclauss@christianclauss', 'iAdityaEmpire', 'jbitton@facebookresearch', 'mayaliliya', 'membriux@intuit', 'zpapakipos']",5,10,"['christianclauss', 'créditagricolesa', 'facebookresearch', 'intuit', 'omnilib']","['@facebookresearch', '@intuit', '@omnilib ', 'Christian Clauss', 'Crédit Agricole SA']",,0.9,2,0,21,3,1,4,1,2.0,0.0,90.0,0.0,0,25.16645 +830,typing,https://github.com/python-attrs/attrs,1.0,,,python-attrs/attrs,attrs,4643,333,57,Python,https://www.attrs.org/,attrs: Python Classes Without Boilerplate,python-attrs,2023-02-21,2015-01-27,421,11.024762550881954,"['python', 'boilerplate', 'classes', 'oop', 'attributes']",2023-02-12,139,"['Tinche@pocketzworld', 'altendky', 'cournape@mercarijp', 'euresti', 'hynek@variomediaag', 'pre-commit-ci[bot]', 'radix', 'sscherfke', 'wbolster', 'webknjaz@ansiblecoreredhatofficial']",4,10,"['ansiblecoreredhatofficial', 'mercarijp', 'pocketzworld', 'variomediaag']","['@Ansible Core @ @RedHatOfficial', '@pocketzworld ', 'Mercari JP', 'Variomedia AG']",,4.25,68,48,98,0,2,3,2,68.0,207.0,90.0,3.0,0,49.09899 +97,jupyter,https://github.com/voila-dashboards/voila,,,,voila-dashboards/voila,voila,4572,457,78,Python,https://voila.readthedocs.io,voila: Voilà turns Jupyter notebooks into standalone web applications,voila-dashboards,2023-02-21,2018-08-21,235,19.443499392466585,"['jupyter', 'jupyter-notebook', 'jupyterlab-extension', 'dashboarding']",2023-02-20,64,"['SylvainCorlay@quantstack', 'davidbrochart@quantstack', 'dependabot[bot]', 'github-actions[bot]', 'jtpio@quantstack', 'maartenbreddels@maartenbreddels', 'martinRenou@quantstack', 'mkcor', 'timkpaine@point72', 'trungleduc@quantstack']",3,10,"['maartenbreddels', 'point72', 'quantstack']","['@Point72', '@QuantStack', '@maartenbreddels', 'QuantStack']",,1.9,39,21,55,0,14,29,14,39.0,105.0,90.0,2.7,0,45.08834 +247,util,https://github.com/jorgebastida/awslogs,,,,jorgebastida/awslogs,awslogs,4556,328,59,Python,,awslogs: AWS CloudWatch logs for Humans™,jorgebastida,2023-02-20,2015-01-21,422,10.796208530805687,[],2020-07-10,39,"['WhyNotHugo', 'blueyed@freelancer,upforhire', 'carlnordenfelt@bynordenfelt', 'galenhuntington', 'graingert', 'jorgebastida@infiniteforksl', 'juhani-hietikko@reaktor', 'rwolfson', 'sj26@buildkite', 'vlcinsky']",5,10,"['buildkite', 'bynordenfelt', 'freelancer,upforhire', 'infiniteforksl', 'reaktor']","['@Buildkite', 'Freelancer, up for hire', 'Infinite Fork SL', 'Reaktor', 'by nordenfelt']",,0.0,9,1,98,32,0,1,1,9.0,8.0,90.0,0.9,0,27.70605 +312,util,https://github.com/indygreg/pyoxidizer,,,,indygreg/pyoxidizer,PyOxidizer,4539,196,60,Rust,,PyOxidizer: A modern Python application packaging and distribution tool,indygreg,2023-02-21,2018-12-18,218,20.807465618860512,[],2023-01-21,53,"['Tipuch', 'dae', 'durin42', 'dvc94ch', 'indygreg', 'jayvdb@franklin-ai', 'ralpha', 'ryancinsight@insightec', 'stuhood@toolchainlabs', 'wkschwartz@isaadvisers']",4,10,"['franklin-ai', 'insightec', 'isaadvisers', 'toolchainlabs']","['@franklin-ai', '@isaadvisers ', 'Insightec ', 'Toolchain Labs']",,26.0,51,14,51,1,12,88,12,51.0,59.0,90.0,1.2,0,45.04344 +66,util,https://github.com/pycqa/pylint,,,,pycqa/pylint,pylint,4515,973,75,Python,http://pylint.pycqa.org,pylint: It's not just a linter that annoys you!,pycqa,2023-02-20,2015-12-09,376,12.007978723404255,"['static-analysis', 'linter', 'static-code-analysis', 'code-quality', 'pep8', 'closember', 'hacktoberfest']",2023-02-21,514,"['DanielNoord@channable', 'DudeNr33@siemensmobilitygmbh', 'PCManticore', 'Pierre-Sassoulas', 'cdce8p', 'dependabot[bot]', 'godfryd@graphcore', 'hippo91', 'jacobtylerwalls@element84', 'mbyrnepr2']",4,10,"['channable', 'element84', 'graphcore', 'siemensmobilitygmbh']","['@channable', 'Element 84', 'Graphcore', 'Siemens Mobility GmbH']",,37.73,718,469,88,0,34,24,34,718.0,2198.0,90.0,3.1,0,63.04546 +570,util,https://github.com/jd/tenacity,1.0,,,jd/tenacity,tenacity,4487,222,44,Python,http://tenacity.readthedocs.io,tenacity: Retrying library for Python,jd,2023-02-21,2016-08-11,340,13.16387259010897,"['python', 'failure', 'retry', 'retry-library', 'hacktoberfest']",2023-02-09,77,"['asqui', 'bersace@dalibo', 'harlowja@waymo', 'immerrr', 'jd@mergifyio', 'mergify[bot]', 'mezgerj', 'penguinolog', 'rholder', 'sileht@mergifyio']",3,10,"['dalibo', 'mergifyio', 'waymo']","['@Dalibo', '@Mergifyio', 'Waymo']",,0.38,37,25,80,0,0,9,9,37.0,54.0,90.0,1.5,0,42.92561 +196,viz,https://github.com/lux-org/lux,,,,lux-org/lux,lux,4435,344,86,Python,,lux: Automatically visualize your pandas dataframe via a single print! 📊 💡,lux-org,2023-02-20,2020-01-08,163,27.208588957055216,"['visualization-tools', 'jupyter', 'python', 'data-science', 'exploratory-data-analysis', 'visualization', 'pandas']",2022-05-21,20,"['19thyneb', 'caitlynachen', 'cgarciae@quansight', 'dorisjlee@ponder-org', 'jaywoo123', 'jinimukh@year', 'jrdzha', 'micahtyong@ucberkeley', 'thyneb19', 'westernguy2']",4,10,"['ponder-org', 'quansight', 'ucberkeley', 'year']","['@ponder-org', 'Quansight', 'UC Berkeley', 'Year']",,0.13,6,0,38,9,0,4,4,6.0,7.0,90.0,1.2,0,27.41563 +206,ml,https://github.com/lucidrains/deep-daze,,,,lucidrains/deep-daze,deep-daze,4385,330,75,Python,,deep-daze: Simple command line tool for text to image generation using OpenAI's CLIP and Siren (Implicit neural representation network). Technique was originally created by https://twitter.com/advadnoun,lucidrains,2023-02-19,2021-01-17,109,40.07180156657964,"['artificial-intelligence', 'deep-learning', 'transformers', 'siren', 'implicit-neural-representation', 'text-to-image', 'multi-modality']",2022-03-13,14,"['Fliens', 'Incog5', 'NotNANtoN@adalab', 'RaymondTerry', 'akx@valohai', 'dginev@kwarc', 'donno2048', 'lorcalhost@bitpolito', 'lucidrains', 'russelldc@midjourney']",5,10,"['adalab', 'bitpolito', 'kwarc', 'midjourney', 'valohai']","['@BITPoliTO', '@KWARC ', '@midjourney', '@valohai ', 'Adalab']",,0.02,0,0,26,12,1,31,1,0.0,0.0,90.0,0.0,0,19.33567 +764,ml-dl,https://github.com/xpixelgroup/basicsr,,,,xpixelgroup/basicsr,BasicSR,4374,891,90,Python,https://basicsr.readthedocs.io/en/latest/,"BasicSR: Open Source Image and Video Restoration Toolbox for Super-resolution, Denoise, Deblurring, etc. Currently, it includes EDSR, RCAN, SRResNet, SRGAN, ESRGAN, EDVR, BasicVSR, SwinIR, ECBSR, etc. Also support StyleGAN2, DFDNet.",xpixelgroup,2023-02-21,2018-04-19,252,17.298305084745763,"['basicsr', 'esrgan', 'edsr', 'rcan', 'edvr', 'srresnet', 'srgan', 'super-resolution', 'restoration', 'pytorch', 'stylegan2', 'dfdnet', 'basicvsr', 'swinir', 'ecbsr']",2023-02-02,19,"['Cugtyt@msft', 'JeremyIV', 'LiangbinXie@um&siat', 'Lotayou@videocodinglaboratory,pekinguniversity', 'My-Zhu@sigs,tsinghuauniversity', 'henrymai', 'ljzycmd', 'wwhio', 'xinntao@tencent', 'zestloveheart@whut']",6,10,"['msft', 'sigs,tsinghuauniversity', 'tencent', 'um&siat', 'videocodinglaboratory,pekinguniversity', 'whut']","['MSFT', 'SIGS, Tsinghua University', 'Tencent', 'UM & SIAT', 'Video Coding Laboratory, Peking University', 'WHUT']",,1.02,23,4,59,1,3,7,3,23.0,12.0,90.0,0.5,0,34.86486 +927,util,https://github.com/openai/point-e,,,,openai/point-e,point-e,4359,432,159,Python,,point-e: Point cloud diffusion for 3D model synthesis,openai,2023-02-21,2022-12-06,11,391.1923076923077,[],2022-12-20,2,"['heewooj', 'unixpickle']",0,10,[],[],,0.06,73,24,3,2,0,0,0,73.0,144.0,90.0,2.0,0,13.69709 +21,nlp,https://github.com/facebookresearch/drqa,,,,facebookresearch/drqa,DrQA,4350,906,165,Python,,DrQA: Reading Wikipedia to Answer Open-Domain Questions,facebookresearch,2023-02-19,2017-07-07,293,14.810311284046692,[],2021-05-18,12,"['ajfisch@mitnlp', 'dfenglei@hewlett-packardenterprise', 'hpasapp@asappinc', 'jaseweston', 'lbaligand', 'ousou@iprally', 'pemazare', 'rashoodkhan@yellowmessenger', 'stephenroller', 'sundeep']",5,10,"['asappinc', 'hewlett-packardenterprise', 'iprally', 'mitnlp', 'yellowmessenger']","['@ASAPPinc ', '@iprally ', '@mitnlp ', 'Hewlett-Packard Enterprise ', 'Yellow Messenger']",,0.0,2,0,68,21,0,0,0,2.0,2.0,90.0,1.0,0,22.38055 +101,ml,https://github.com/rasbt/mlxtend,,,,rasbt/mlxtend,mlxtend,4271,804,118,Python,http://rasbt.github.io/mlxtend/,mlxtend: A library of extension and helper modules for Python's data analysis and machine learning libraries.,rasbt,2023-02-21,2014-08-14,444,9.600834938985228,"['python', 'machine-learning', 'data-science', 'data-mining', 'association-rules', 'supervised-learning', 'unsupervised-learning']",2023-01-31,92,"['JJLWHarrison', 'Maitreyee1', 'NimaSarajpoor', 'jaksmid@blindspotsolutions', 'jrbourbeau@coiled', 'kota7', 'labdmitriy', 'rasbt@lightning-ai,universityofwisconsin-madison', 'reiinakano@openai', 'zdgriffith@ssec']",5,10,"['blindspotsolutions', 'coiled', 'lightning-ai,universityofwisconsin-madison', 'openai', 'ssec']","['@Lightning-AI , University of Wisconsin-Madison', '@coiled ', '@openai', '@ssec', 'Blindspot Solutions']",,4.52,17,14,104,1,2,3,2,17.0,36.0,90.0,2.1,0,44.56575 +717,data,https://github.com/jazzband/tablib,,,,jazzband/tablib,tablib,4226,571,142,Python,https://tablib.readthedocs.io/,"tablib: Python Module for Tabular Datasets in XLS, CSV, JSON, YAML, &c.",jazzband,2023-02-19,2011-03-28,621,6.80202345366751,[],2023-02-17,120,"['claudep@2xlibre.netsàrl', 'durden@http://www.lukelee.me', 'hugovk@nordsoftware', 'iurisilvio@buser', 'jdufresne@pioneervalleybooks', 'kennethreitz', 'lbeltrame', 'rogersmark@guildeducation', 'timofurrer@gitlabhq', 'xdanielsb']",7,10,"['2xlibre.netsàrl', 'buser', 'gitlabhq', 'guildeducation', 'http://www.lukelee.me', 'nordsoftware', 'pioneervalleybooks']","['2xlibre.net Sàrl', '@gitlabhq', 'Buser', 'Guild Education', 'Nord Software', 'Pioneer Valley Books', 'http://www.lukelee.me']",,0.33,17,14,145,0,2,4,2,17.0,44.0,90.0,2.6,0,46.96355 +370,time-series,https://github.com/facebookresearch/kats,,,,facebookresearch/kats,Kats,4221,449,72,Python,,"Kats, a kit to analyze time series data, a lightweight, easy-to-use, generalizable, and extendable framework to perform time series analysis, from understanding the key statistics and characteristics, detecting change points and anomalies, to forecasting future trends. ",facebookresearch,2023-02-21,2021-02-25,103,40.6423658872077,[],2023-02-14,126,"['MariusGuerard', 'ahmetburhanfb', 'facebook-github-bot@facebook', 'iamxiaodong@facebook', 'michaelbrundage@meta', 'ourownstory@stanforduniversity', 'peiyizhang@meta', 'rohanfb', 'uthakore@facebook', 'yangbk560@facebooklnc.']",4,10,"['facebook', 'facebooklnc.', 'meta', 'stanforduniversity']","['@facebook', 'Facebook', 'Facebook lnc.', 'Meta', 'Stanford University']",,3.54,37,21,24,0,1,1,1,37.0,28.0,90.0,0.8,0,40.12931 +542,util,https://github.com/mamba-org/mamba,,,,mamba-org/mamba,mamba,4220,244,44,C++,https://mamba.readthedocs.io,mamba: The Fast Cross-Platform Package Manager,mamba-org,2023-02-21,2019-03-05,207,20.372413793103448,[],2023-02-20,109,"['AntoinePrv@quantstack', 'Hind-M', 'JohanMabille@quantstack', 'Klaim', 'adriendelsalle@quantstack', 'davidbrochart@quantstack', 'isuruf@universityofillinois', 'jonashaag@quantco', 'marimeireles@anaconda', 'wolfv@prefix.devgmbh']",5,10,"['anaconda', 'prefix.devgmbh', 'quantco', 'quantstack', 'universityofillinois']","['@QuantStack', '@Quantco', '@anaconda', 'QuantStack', 'University of Illinois', 'prefix.dev GmbH']",,9.85,276,158,48,0,15,52,15,277.0,756.0,90.0,2.7,0,53.2679 +734,ml-dl,https://github.com/pytorch/ignite,1.0,,,pytorch/ignite,ignite,4206,579,59,Python,https://pytorch-ignite.ai,ignite: High-level library to help with training and evaluating neural networks in PyTorch flexibly and transparently.,pytorch,2023-02-21,2017-11-23,273,15.358372456964005,"['pytorch', 'neural-network', 'python', 'machine-learning', 'deep-learning', 'metrics', 'hacktoberfest', 'closember']",2023-02-18,187,"['Ishan-Kumar2@sdsdatasciencegroupdsgiitr', 'KickItLikeShika@cision', 'Moh-Yakoub', 'alykhantejani@sharechat', 'anmolsjoshi', 'puhuk', 'sadra-barikbin@pytorch-ignite', 'sdesrozis@pytorch-ignitemichelin', 'trsvchn@bimsbbioinfopytorch-ignite', 'vfdev-5@quansight']",7,10,"['bimsbbioinfopytorch-ignite', 'cision', 'pytorch-ignite', 'pytorch-ignitemichelin', 'quansight', 'sdsdatasciencegroupdsgiitr', 'sharechat']","['@BIMSBbioinfo @pytorch-ignite', '@Quansight', '@ShareChat', '@cision', '@pytorch-ignite', '@pytorch-ignite @michelin', 'SDS Data Science Group @dsgiitr ']",,3.58,115,96,64,0,3,4,3,115.0,181.0,90.0,1.6,0,50.47067 +293,util,https://github.com/pytoolz/toolz,,,,pytoolz/toolz,toolz,4167,249,82,Python,http://toolz.readthedocs.org/,toolz: A functional standard library for Python.,pytoolz,2023-02-20,2013-09-13,492,8.457233980864018,[],2022-11-03,74,"['bartvm@google', 'cpcloud@voltrondata', 'eriknw', 'groutr@lynkertechnologies', 'hugovk@nordsoftware', 'llllllllll@formerlyquantopian', 'medecau', 'mrocklin@coiled', 'obmarg@redbadger', 'tacaswell@brookhavennationallab']",8,10,"['brookhavennationallab', 'coiled', 'formerlyquantopian', 'google', 'lynkertechnologies', 'nordsoftware', 'redbadger', 'voltrondata']","['@coiled ', '@google', '@voltrondata', 'Brookhaven National Lab', 'Lynker Technologies', 'Nord Software', 'Red Badger', 'formerly @quantopian']",,0.25,18,7,115,4,1,3,1,18.0,32.0,90.0,1.8,0,39.87594 +27,typing,https://github.com/google/pytype,,,,google/pytype,pytype,4120,263,56,Python,https://google.github.io/pytype,pytype: A static type analyzer for Python code,google,2023-02-21,2015-03-18,414,9.951690821256038,"['python', 'typing', 'typechecker', 'linter', 'types', 'static-analysis', 'static-code-analysis']",2023-02-17,87,"['Solumin', 'alvarocaceres', 'bsolomon1124', 'dbaum', 'martindemello@google', 'matthiaskramm', 'pludemann@google', 'rchen152', 'rpalaguachi', 'sivachandra@googledart-langflutter']",2,10,"['google', 'googledart-langflutter']","['@google @dart-lang @flutter ', 'Google']",,11.63,63,53,97,0,0,21,21,63.0,53.0,90.0,0.8,0,46.96301 +362,ml-ops,https://github.com/allegroai/clearml,,,,allegroai/clearml,clearml,4115,556,85,Python,https://clear.ml/docs,"ClearML - Auto-Magical CI/CD to streamline your ML workflow. Experiment Manager, MLOps and Data-Management",allegroai,2023-02-21,2019-06-10,193,21.289726533628972,"['version-control', 'experiment-manager', 'version', 'control', 'experiment', 'deeplearning', 'deep-learning', 'machine-learning', 'machinelearning', 'ai', 'trains', 'trainsai', 'clearml', 'k8s', 'devops', 'mlops']",2023-02-19,71,"['H4dr1en', 'Rizwan-Hasan@techlearnersincallegroai', 'allegroai-git@allegroai', 'danmalowany-allegro@allegro.ai', 'erezalg', 'eugen-ajechiloae-clearml', 'jalexand3r', 'jkhenning', 'pollfly', 'thepycoder']",3,10,"['allegro.ai', 'allegroai', 'techlearnersincallegroai']","['@TechLearnersInc @allegroai', 'AllegroAI', 'allegro.ai']",,1.44,135,51,45,0,22,36,22,135.0,306.0,90.0,2.3,0,46.3109 +754,study,https://github.com/karpathy/micrograd,,,,karpathy/micrograd,micrograd,4113,440,90,Jupyter Notebook,,micrograd: A tiny scalar-valued autograd engine and a neural net library on top of it with PyTorch-like API,karpathy,2023-02-21,2020-04-13,149,27.551196172248805,[],2020-04-18,2,"['bpesquet@enscognitique', 'karpathy']",1,10,['enscognitique'],['ENS Cognitique'],,0.0,8,3,35,35,0,0,0,8.0,8.0,90.0,1.0,0,11.85175 +227,ml,https://github.com/online-ml/river,1.0,,,online-ml/river,river,4087,458,83,Python,https://riverml.xyz,river: 🌊 Online machine learning in Python,online-ml,2023-02-20,2019-01-24,212,19.200671140939598,"['incremental-learning', 'machine-learning', 'python', 'online-learning', 'online-statistics', 'data-science', 'streaming', 'online-machine-learning', 'streaming-data', 'concept-drift', 'real-time-processing', 'stream-processing']",2023-02-20,94,"['AdilZouitine@irtsaint-exupéry', 'Darkmyter', 'MaxHalford@carbonfact', 'garawalid@sfr', 'gbolmier@volvo-cars', 'guimatsumoto', 'jacobmontiel@universityofwaikato', 'krifiMedAmine', 'raphaelsty@manomano', 'smastelini@phdcandidateatuniversityofsãopaulo']",7,10,"['carbonfact', 'irtsaint-exupéry', 'manomano', 'phdcandidateatuniversityofsãopaulo', 'sfr', 'universityofwaikato', 'volvo-cars']","['@carbonfact', '@volvo-cars', 'IRT Saint-Exupéry', 'ManoMano', 'PhD candidate at University of São Paulo', 'SFR', 'University of Waikato']",,5.58,68,58,50,0,6,7,6,68.0,182.0,90.0,2.7,0,50.40081 +549,ml,https://github.com/open-mmlab/mmediting,,,,open-mmlab/mmediting,mmediting,4069,728,86,Python,https://mmediting.readthedocs.io/en/latest/,"mmediting: OpenMMLab Image and Video Restoration, Editing and Generation Toolbox",open-mmlab,2023-02-21,2019-08-23,182,22.269741985926505,"['super-resolution', 'inpainting', 'matting', 'image-generation', 'generative-adversarial-network', 'pytorch', 'deep-learning', 'video-interpolation', 'video-frame-interpolation', 'video-super-resolution', 'computer-vision', 'image-editing', 'image-processing', 'image-synthesis']",2023-02-21,66,"['EndlessSora@nanyangtechnologicaluniversity', 'Yshuo-Li', 'ckkelvinchan@googleresearch', 'hejm37@universityofalberta', 'hellock@open-mmlab', 'innerlee@cuhk', 'nbei', 'wangruohui', 'wwhio', 'zengyh1900@openmmlab']",6,10,"['cuhk', 'googleresearch', 'nanyangtechnologicaluniversity', 'open-mmlab', 'openmmlab', 'universityofalberta']","['@open-mmlab ', 'CUHK', 'Google Research', 'Nanyang Technological University', 'OpenMMLab', 'University of Alberta']",,2.83,238,197,43,0,12,6,12,238.0,252.0,90.0,1.1,0,47.89301 +343,web,https://github.com/vitalik/django-ninja,,,,vitalik/django-ninja,django-ninja,4068,259,60,Python,https://django-ninja.rest-framework.com,"django-ninja: 💨 Fast, Async-ready, Openapi, type hints based framework for building APIs",vitalik,2023-02-21,2020-05-19,144,28.222001982160556,"['python', 'django', 'rest-api', 'openapi', 'pydantic', 'swagger', 'swagger-ui', 'django-ninja']",2023-02-10,77,"['OtherBarry@spiralblue', 'SmileyChris', 'areski@star2billing//dialerai', 'baseplate-admin', 'fojetin', 'hiaselhans', 'jairhenrique@grupoboticario', 'stephenrauch', 'vitalik', 'wimolivier']",3,10,"['grupoboticario', 'spiralblue', 'star2billing//dialerai']","['@grupoboticario ', '@spiralblue ', 'Star2Billing // DialerAI']",,2.94,112,65,34,0,4,9,4,112.0,241.0,90.0,2.2,0,43.86003 +565,gis,https://github.com/gboeing/osmnx,,,,gboeing/osmnx,osmnx,4053,744,121,Python,https://geoffboeing.com/publications/osmnx-complex-street-networks/,"OSMnx: Python for street networks. Retrieve, model, analyze, and visualize street networks and other spatial data from OpenStreetMap.",gboeing,2023-02-21,2016-07-24,343,11.801580698835275,"['openstreetmap', 'gis', 'street-networks', 'overpass-api', 'networkx', 'spatial-analysis', 'geospatial', 'urban-planning', 'transportation', 'geography', 'osmnx', 'networks', 'spatial-data', 'urban', 'osm', 'spatial', 'python', 'transport', 'mapping', 'routing']",2023-01-27,74,"['AtelierLibre', 'HTenkanen@aaltouniversity', 'RunOrVeith', 'd-wasserman@alta', 'eumiro', 'gboeing@universityofsoutherncalifornia', 'migurski', 'mxndrwgrdnr', 'pmartincalvo', 'samuelduchesne@mitsustainabledesignlabelementa-engineering']",4,10,"['aaltouniversity', 'alta', 'mitsustainabledesignlabelementa-engineering', 'universityofsoutherncalifornia']","['@MITSustainableDesignLab @Elementa-Engineering', 'Aalto University', 'Alta', 'University of Southern California']",,3.27,51,43,80,1,0,8,8,51.0,96.0,90.0,1.9,0,45.15682 +258,crypto,https://github.com/ethereum/web3.py,1.0,,,ethereum/web3.py,web3.py,4039,1309,117,Python,http://web3py.readthedocs.io,web3.py: A python interface for interacting with the Ethereum blockchain and ecosystem.,ethereum,2023-02-21,2016-04-14,357,11.286626746506986,[],2023-02-16,219,"['carver@ethereumfoundation', 'djrtwo@ctrl^t', 'dylanjw', 'fselmo@ethereum', 'kclowes', 'njgheorghita@ethereum', 'pipermerriam@ethereumfoundation', 'tmckenzie51', 'voith@cryptexfinance', 'wolovim']",4,10,"['cryptexfinance', 'ctrl^t', 'ethereum', 'ethereumfoundation']","['@cryptexfinance', '@ethereum', '@ethereum ', 'Ctrl^T', 'Ethereum Foundation']",,5.94,153,113,83,0,0,28,28,153.0,151.0,90.0,1.0,0,52.53779 +184,ml-dl,https://github.com/google/flax,,,,google/flax,flax,4033,475,77,Python,https://flax.readthedocs.io,Flax is a neural network library for JAX that is designed for flexibility.,google,2023-02-21,2020-01-10,162,24.78577699736611,['jax'],2023-02-19,187,"['8bitmp3@tensorflow,jax,flax', 'IvyZX@google', 'andsteing@google', 'avital@google', 'cgarciae@quansight', 'jheek', 'levskaya', 'marcvanzee@google', 'mohitreddy1996@fennel-ai', 'wrzadkow@istaustria']",5,10,"['fennel-ai', 'google', 'istaustria', 'quansight', 'tensorflow,jax,flax']","['@fennel-ai', '@google', 'Google', 'IST Austria', 'Quansight', 'tensorflow, jax, flax']",,10.0,287,201,38,0,13,8,13,287.0,458.0,90.0,1.6,0,52.66872 +376,util,https://github.com/spotify/pedalboard,,,,spotify/pedalboard,pedalboard,3992,166,50,C++,,pedalboard: 🎛 🔊 A Python library for working with audio.,spotify,2023-02-20,2021-07-06,85,46.88590604026846,"['vst3', 'vst3-host', 'python', 'juce', 'tensorflow', 'audio-unit', 'pybind11', 'audio-processing', 'audio-production', 'audio-research', 'audio']",2023-02-15,25,"['AK391@huggingface', 'andrerics', 'astagi@italiateamdigitale', 'brettcannon@microsoft', 'christinesutcliffe', 'drubinstein@spotify', 'emilio1234', 'paulm12@myr', 'psobot@spotify', 'rm-star@b3ta']",6,10,"['b3ta', 'huggingface', 'italiateamdigitale', 'microsoft', 'myr', 'spotify']","['@b3ta', '@italia @teamdigitale', '@microsoft ', '@spotify', 'Huggingface', 'MYR']",,4.69,44,33,20,0,25,24,25,44.0,41.0,90.0,0.9,0,42.58001 +355,ml-ops,https://github.com/feast-dev/feast,,,,feast-dev/feast,feast,3979,744,74,Python,https://feast.dev,feast: Feature Store for Machine Learning,feast-dev,2023-02-21,2018-12-10,219,18.14527687296417,"['machine-learning', 'features', 'ml', 'big-data', 'feature-store', 'python', 'mlops', 'data-engineering', 'data-science', 'data-quality']",2023-02-17,189,"['achals@tectonai', 'adchia@tecton', 'davidheryanto', 'felixwang9817', 'jklegar', 'kevjumba', 'pyalex@tecton-ai', 'terryyylim@gojek', 'woop@tecton', 'zhilingc@gojekindonesia']",5,10,"['gojek', 'gojekindonesia', 'tecton', 'tecton-ai', 'tectonai']","['@gojekindonesia ', '@tecton-ai', 'Gojek', 'Tecton', 'Tecton AI']",,13.67,260,174,51,0,30,30,30,260.0,408.0,90.0,1.6,0,54.89907 +13,ml,https://github.com/districtdatalabs/yellowbrick,,,,districtdatalabs/yellowbrick,yellowbrick,3913,543,101,Python,http://www.scikit-yb.org/,yellowbrick: Visual analysis and diagnostic tools to facilitate machine learning model selection.,districtdatalabs,2023-02-20,2016-05-18,353,11.08498583569405,"['machine-learning', 'visual-analysis', 'model-selection', 'visualization', 'scikit-learn', 'visualizer', 'matplotlib', 'python', 'estimator', 'anaconda']",2023-01-13,111,"['Kautumn06', 'bbengfort@rotationalio', 'jkeung', 'lwgray', 'mgarod', 'naresh-bachwani', 'ndanielsen', 'pdamodaran', 'ralle123', 'rebeccabilbro@rotationallabs']",2,10,"['rotationalio', 'rotationallabs']","['@rotationalio ', 'Rotational Labs, LLC']",,0.48,11,6,82,1,1,4,1,11.0,14.0,90.0,1.3,0,36.06359 +43,data,https://github.com/lk-geimfari/mimesis,,,,lk-geimfari/mimesis,mimesis,3902,309,64,Python,https://mimesis.name,"Mimesis is a high-performance fake data generator for Python, which provides data for a variety of purposes in a variety of languages. ",lk-geimfari,2023-02-20,2016-09-09,336,11.58845990666101,"['mimesis', 'fake', 'data', 'generator', 'fixtures', 'dummy', 'json', 'schema', 'testing', 'python', 'json-generator', 'faker', 'mock', 'synthetic-data', 'datascience', 'api-mock']",2023-01-27,113,"['dependabot-preview[bot]', 'dependabot[bot]', 'eumiro', 'hoefling@ionos-cloud', 'lk-geimfari@roskomsvoboda', 'ngnpope@infogrid', 'sinecode@extendi', 'sobolevn', 'valerievich', 'wikkiewikkie@42software']",5,10,"['42software', 'extendi', 'infogrid', 'ionos-cloud', 'roskomsvoboda']","['42 Software LLC', '@ionos-cloud ', '@roskomsvoboda', 'Extendi', 'Infogrid']",,2.75,25,14,79,0,8,8,8,25.0,25.0,90.0,1.0,0,45.85826 +199,viz,https://github.com/man-group/dtale,,,,man-group/dtale,dtale,3876,329,68,TypeScript,http://alphatechadmin.pythonanywhere.com,dtale: Visualizer for pandas data structures,man-group,2023-02-21,2019-07-15,188,20.585735963581183,"['python27', 'python3', 'react', 'flask', 'pandas', 'ipython', 'jupyter-notebook', 'react-virtualized', 'data-analysis', 'data-visualization', 'visualization', 'plotly-dash', 'data-science', 'xarray']",2023-02-07,29,"['AnthraX1', 'appznoix', 'ariffrahimin@asiadigitalengineering', 'aschonfeld', 'cdeil@heidelbergcement', 'colin-jensen', 'dependabot[bot]', 'jasonkholden', 'matrach', 'phillipdupuis']",2,10,"['asiadigitalengineering', 'heidelbergcement']","['Asia Digital Engineering', 'HeidelbergCement']",,1.87,36,28,44,0,17,40,17,36.0,76.0,90.0,2.1,0,40.69836 +309,crypto,https://github.com/crytic/slither,,,,crytic/slither,slither,3819,694,61,Python,https://blog.trailofbits.com/2018/10/19/slither-a-solidity-static-analysis-framework/,slither: Static Analyzer for Solidity,crytic,2023-02-21,2018-09-05,233,16.390557939914164,"['solidity', 'ethereum', 'static-analysis']",2023-02-14,101,"['0xalpharush@trailofbits', 'Xenomega@trailofbits', 'elopez@trailofbits', 'ggrieco-tob@trailofbits', 'htadashi', 'montyly', 'rajeevgopalakrishna', 'rmi7', 'samczsun', 'smonicas']",1,10,['trailofbits'],"['@trailofbits', '@trailofbits ']",,8.94,298,172,54,0,4,7,4,298.0,316.0,90.0,1.1,0,43.43518 +790,diffusion,https://github.com/ashawkey/stable-dreamfusion,,,,ashawkey/stable-dreamfusion,stable-dreamfusion,3817,332,83,Python,,"stable-dreamfusion: A pytorch implementation of text-to-3D dreamfusion, powered by stable diffusion.",ashawkey,2023-02-21,2022-10-06,19,192.22302158273382,"['text-to-3d', 'gui', 'nerf', 'stable-diffusion', 'dreamfusion']",2023-02-18,8,"['abesmon@ctcmedia', 'ashawkey@pekinguniversity', 'elliottzheng', 'flobotics@floboticsrobotics', 'jogloran', 'johnrobinsn', 'nside']",3,10,"['ctcmedia', 'floboticsrobotics', 'pekinguniversity']","['CTC Media', 'Flobotics Robotics', 'Peking University']",,1.46,79,36,5,0,0,0,0,79.0,186.0,90.0,2.4,0,29.51257 +388,nlp,https://github.com/makcedward/nlpaug,,,,makcedward/nlpaug,nlpaug,3810,429,39,Jupyter Notebook,https://makcedward.github.io/,nlpaug: Data augmentation for NLP ,makcedward,2023-02-21,2019-03-21,204,18.598326359832637,"['nlp', 'augmentation', 'machine-learning', 'artificial-intelligence', 'data-science', 'natural-language-processing', 'adversarial-attacks', 'adversarial-example', 'ai', 'ml']",2022-07-07,33,"['DrMatters', 'JohnGiorgi@universityoftoronto', 'Logigo', 'amitness', 'avostryakov', 'baskrahmer', 'bdalal@cresta', 'chiragjn@truefoundry', 'makcedward@toyotaconnected', 'ricardopieper@clevertech']",5,10,"['clevertech', 'cresta', 'toyotaconnected', 'truefoundry', 'universityoftoronto']","['@cresta ', '@truefoundry ', 'Clevertech', 'Toyota Connected', 'University of Toronto']",,0.29,16,1,48,8,1,7,1,16.0,5.0,90.0,0.3,0,27.90894 +91,ml,https://github.com/uber/causalml,,,,uber/causalml,causalml,3800,608,78,Python,,causalml: Uplift modeling and causal inference with machine learning algorithms,uber,2023-02-20,2019-07-09,189,20.090634441087612,"['incubation', 'machine-learning', 'causal-inference', 'uplift-modeling']",2023-02-03,49,"['huigangchen', 'jeongyoonlee@uber', 'manojbalaji1@datascientist', 'paullo0106@uber', 'peterfoley', 'ppstacy', 't-tte@toyotaresearchinstitute', 'yluogit', 'yungmsh@spotify', 'zhenyuz0500@tencent']",5,10,"['datascientist', 'spotify', 'tencent', 'toyotaresearchinstitute', 'uber']","['Data Scientist', 'Spotify', 'Tencent', 'Toyota Research Institute', 'Uber']",,0.85,24,8,44,1,2,3,2,24.0,38.0,90.0,1.6,0,38.03905 +280,nlp,https://github.com/maartengr/bertopic,,,,maartengr/bertopic,BERTopic,3798,487,45,Python,https://maartengr.github.io/BERTopic/,BERTopic: Leveraging BERT and c-TF-IDF to create easily interpretable topics. ,maartengr,2023-02-21,2020-09-22,126,30.108720271800678,"['bert', 'transformers', 'topic-modeling', 'sentence-embeddings', 'nlp', 'machine-learning', 'topic', 'ldavis', 'topic-modelling', 'topic-models']",2023-02-15,19,"['FelSiq@icmc,universityofsãopaulo', 'MaartenGr@iknl', 'anubhabdaserrr@textifyai(t3xtifyai)', 'domenicrosati@scitedotai', 'dwhdai@ada', 'leloykun@expedock', 'nreimers@huggingface', 'proselotis@mustanganalytics', 'rafaelvalero', 'xwwwwww@tsinghuauniversity']",9,10,"['ada', 'expedock', 'huggingface', 'icmc,universityofsãopaulo', 'iknl', 'mustanganalytics', 'scitedotai', 'textifyai(t3xtifyai)', 'tsinghuauniversity']","['@scitedotai ', 'Ada', 'Expedock', 'Huggingface', 'ICMC, University of São Paulo', 'IKNL', 'Mustang Analytics', 'Textify AI (@T3xtifyai)', 'Tsinghua University']",,0.56,239,149,29,0,5,11,5,239.0,606.0,90.0,2.5,0,44.43289 +822,ml,https://github.com/project-monai/monai,,,,project-monai/monai,MONAI,3790,728,88,Python,https://monai.io/,MONAI: AI Toolkit for Healthcare Imaging,project-monai,2023-02-21,2019-10-11,175,21.56910569105691,"['healthcare-imaging', 'deep-learning', 'medical-image-computing', 'medical-image-processing', 'pytorch', 'python3', 'monai']",2023-02-20,138,"['Can-Zhao@nvidia', 'KumoLiu@nvidia', 'Nic-Ma@nvidia', 'drbeh@nvidia', ""ericspod@king'scollegelondon"", 'hjmjohnson@theuniversityofiowa', 'myron@nvidia', ""rijobro@king'scollegelondon"", 'wyli@nvidia', 'yiheng-wang-nv']",3,10,"[""king'scollegelondon"", 'nvidia', 'theuniversityofiowa']","['@NVIDIA', ""King's College London"", 'NVIDIA', 'Nvidia', 'The University of Iowa']",,14.27,477,367,41,0,5,21,5,478.0,911.0,90.0,1.9,0,50.30081 +357,data,https://github.com/amundsen-io/amundsen,,,,amundsen-io/amundsen,amundsen,3780,907,246,Python,https://www.amundsen.io/amundsen/,"Amundsen is a metadata driven application for improving the productivity of data analysts, data scientists and engineers when interacting with data.",amundsen-io,2023-02-18,2019-05-14,197,19.17391304347826,"['amundsen', 'metadata', 'data-catalog', 'data-discovery', 'linuxfoundation']",2023-02-14,217,"['Golodhros@lyft', 'allisonsuarez', 'dependabot-preview[bot]', 'dorianj', 'feng-tao@databricksamundsen-ioapache', 'jinhyukchang@lyft', 'jornh', 'mgorsk1', 'ttannis@lyft', 'verdan']",2,10,"['databricksamundsen-ioapache', 'lyft']","['@databricks @amundsen-io @apache ', '@lyft', 'Lyft']",,3.31,282,265,46,0,39,32,39,283.0,162.0,90.0,0.6,0,47.82923 +855,profiling,https://github.com/pythonprofilers/memory_profiler,,,,pythonprofilers/memory_profiler,memory_profiler,3768,366,76,Python,http://pypi.python.org/pypi/memory_profiler,memory_profiler: Monitor Memory usage of Python code,pythonprofilers,2023-02-21,2011-10-14,592,6.357194504699928,[],2022-12-06,101,"['Afoucaul@cardiologs', 'altendky', 'astrojuanlu@kedro-org', 'bbengfort@rotationalio', 'cclauss@christianclauss', 'd-ryzhikov', 'demiurg906@jetbrains', 'fabianp@google', 'mgbckr@universityofrostock', 'pgervais']",7,10,"['cardiologs', 'christianclauss', 'google', 'jetbrains', 'kedro-org', 'rotationalio', 'universityofrostock']","['@JetBrains', '@google', '@kedro-org', '@rotationalio ', 'Cardiologs', 'Christian Clauss', 'University of Rostock']",,0.63,7,4,138,3,0,4,4,7.0,12.0,90.0,1.7,0,41.8095 +778,study,https://github.com/nielsrogge/transformers-tutorials,,,,nielsrogge/transformers-tutorials,Transformers-Tutorials,3760,589,84,Jupyter Notebook,,Transformers-Tutorials: This repository contains demos I made with the Transformers library by HuggingFace.,nielsrogge,2023-02-21,2020-08-31,129,29.082872928176794,"['transformers', 'pytorch', 'bert', 'vision-transformer', 'layoutlm', 'gpt-2']",2023-02-09,5,"['FrancescoSaverioZuppichini@roboflow', 'NielsRogge@huggingface', 'grahamannett']",2,10,"['huggingface', 'roboflow']","['HuggingFace', 'roboflow']",,2.71,57,11,30,0,0,0,0,58.0,94.0,90.0,1.6,0,29.57123 +354,ml-interpretability,https://github.com/pytorch/captum,,,,pytorch/captum,captum,3751,402,213,Python,https://captum.ai,captum: Model interpretability and understanding for PyTorch,pytorch,2023-02-21,2019-08-27,182,20.59372549019608,"['interpretability', 'interpretable-ai', 'interpretable-ml', 'feature-importance', 'feature-attribution']",2023-02-03,98,"['99warriors', 'J0Nreynolds', 'NarineK', 'ProGamerGov', 'aobo-y@facebook', 'bilalsal@viennauniversityoftechnology', 'edward-io', 'miguelmartin75@meta', 'orionr@facebook', 'vivekmig']",3,10,"['facebook', 'meta', 'viennauniversityoftechnology']","['@facebook', '@facebook ', 'Meta', 'Vienna University of Technology']",,2.0,57,33,42,1,2,2,2,57.0,155.0,90.0,2.7,0,41.64473 +793,ml-ops,https://github.com/orchest/orchest,,,,orchest/orchest,orchest,3731,221,39,Python,https://orchest.io,"orchest: Build data pipelines, the easy way 🛠️",orchest,2023-02-21,2020-05-21,143,25.93545183714002,"['data-science', 'machine-learning', 'pipelines', 'ide', 'jupyter', 'cloud', 'self-hosted', 'jupyterlab', 'notebooks', 'docker', 'python', 'data-pipelines', 'orchest', 'deployment', 'kubernetes', 'airflow', 'dag', 'etl', 'etl-pipeline']",2023-01-20,31,"['astrojuanlu@kedro-org', 'dependabot[bot]', 'fruttasecca@orchest', 'iannbing@orchest.io', 'joe-bell@bigattic', 'mausworks@orchest', 'ncspost', 'nhaghighat@orchestmangrovesdb', 'ricklamers@orchest', 'yannickperrenet@orchest']",5,10,"['bigattic', 'kedro-org', 'orchest', 'orchest.io', 'orchestmangrovesdb']","['@Orchest', '@bigattic', '@kedro-org', '@orchest', '@orchest ', '@orchest @mangrovesdb', 'Orchest.io']",,75.04,82,65,34,1,96,72,96,82.0,79.0,90.0,1.0,0,47.53071 +58,gamedev,https://github.com/panda3d/panda3d,,,,panda3d/panda3d,panda3d,3724,754,195,C++,https://www.panda3d.org/,"panda3d: Powerful, mature open-source cross-platform game engine for Python and C++, developed by Disney and CMU",panda3d,2023-02-21,2013-09-30,490,7.5955710955710956,"['game-engine', 'open-source', 'panda3d', 'cross-platform', 'python', 'panda3d-game-engine', 'game-development', 'opengl', 'multi-platform', 'gamedev', 'c-plus-plus']",2023-02-20,160,"['CFSworks', 'Moguri', 'darrenr555', 'drwrose', 'gyedo', 'jyelon', 'nthparameter', 'rdb', 'shochet@codespark,homer', 'zpavlov']",1,10,"['codespark,homer']","['codeSpark, Homer']",,8.33,157,81,114,0,2,2,2,157.0,217.0,90.0,1.4,0,45.09643 +200,ml,https://github.com/huggingface/accelerate,,,,huggingface/accelerate,accelerate,3705,335,69,Python,https://huggingface.co/docs/accelerate,"accelerate: 🚀 A simple way to train and use PyTorch models with multi-GPU, TPU, mixed-precision",huggingface,2023-02-21,2020-10-30,120,30.692307692307693,[],2023-02-20,92,"['Chris-hughes10@microsoft', 'muellerzr@huggingface', 'pacman100@huggingface', 'patrickvonplaten', 'philschmid@huggingface', 'ryanrussell', 'sgugger', 'sywangyi@intel', 'thomwolf@huggingface', 'younesbelkada@ensparissaclay']",4,10,"['ensparissaclay', 'huggingface', 'intel', 'microsoft']","['@HuggingFace', '@huggingface', '@huggingface ', 'ENS Paris Saclay', 'Hugging Face', 'Intel', 'Microsoft']",,8.81,269,219,28,0,16,10,16,269.0,718.0,90.0,2.7,0,50.76608 +209,web,https://github.com/pywebio/pywebio,,,,pywebio/pywebio,PyWebIO,3694,331,52,Python,https://pywebio.readthedocs.io,PyWebIO: Write interactive web app in script way.,pywebio,2023-02-21,2020-02-29,155,23.744719926538107,['pywebio'],2023-02-06,17,"['Priler@howdy-ho', 'brumar@evidenceb', 'cclauss@christianclauss', 'dependabot[bot]', 'dmesquita', 'donno2048', 'mawoka-myblock', 'muxueqz', 'pikhosh', 'wang0618']",3,10,"['christianclauss', 'evidenceb', 'howdy-ho']","['@Howdy-Ho ', 'Christian Clauss', 'EvidenceB']",,1.67,33,11,36,0,0,9,9,33.0,40.0,90.0,1.2,0,36.92339 +762,sim,https://github.com/quantumlib/cirq,,,,quantumlib/cirq,Cirq,3659,828,177,Python,,"Cirq: A python framework for creating, editing, and invoking Noisy Intermediate Scale Quantum (NISQ) circuits.",quantumlib,2023-02-21,2017-12-14,270,13.50896624472574,"['quantum-circuits', 'nisq', 'quantum-algorithms', 'quantum-computing', 'cirq']",2023-02-19,184,"['95-martin-orion', 'MichaelBroughton', 'Strilanc@google', 'balopat@dukeuniversity', 'dabacon', 'daxfohl', 'dstrain115@google', 'maffoo@google', 'tanujkhattar@google', 'viathor']",2,10,"['dukeuniversity', 'google']","['Duke University', 'Google']",,13.0,92,49,63,0,5,5,5,92.0,102.0,90.0,1.1,0,46.68584 +423,util,https://github.com/tebelorg/rpa-python,,,,tebelorg/rpa-python,RPA-Python,3653,537,99,Python,,RPA-Python: Python package for doing RPA,tebelorg,2023-02-21,2019-03-30,203,17.94456140350877,"['rpa', 'python', 'opencv', 'tesseract', 'tagui', 'sikuli', 'cross-platform']",2022-09-07,3,"['fi-do@universityofappliedtrialanderror', 'kensoh', 'pradishb']",1,10,['universityofappliedtrialanderror'],['University of applied trial and error'],,1.1,22,18,47,6,3,13,3,22.0,42.0,90.0,1.9,0,24.40784 +757,util,https://github.com/pypa/hatch,,,,pypa/hatch,hatch,3653,179,46,Python,https://hatch.pypa.io/latest/,"hatch: Modern, extensible Python project management",pypa,2023-02-21,2017-05-31,299,12.217391304347826,"['python', 'cli', 'virtualenv', 'packaging', 'versioning', 'build', 'plugin']",2023-02-09,26,"['RobertRosca@europeanxfel', 'blink1073@mongodb', 'cclauss@christianclauss', 'dependabot[bot]', 'ischaojie@douban', 'maresb@m²hycongmbh', 'matthewfeickert@universityofwisconsin-madison', 'musicinmybrain', 'ofek@datadog', 'olgarithms@bloomberg']",8,10,"['bloomberg', 'christianclauss', 'datadog', 'douban', 'europeanxfel', 'mongodb', 'm²hycongmbh', 'universityofwisconsin-madison']","['@datadog', 'Bloomberg', 'Christian Clauss', 'Douban', 'European XFEL', 'MongoDB', 'University of Wisconsin-Madison', 'm²hycon GmbH']",,9.12,144,83,70,0,56,15,56,144.0,338.0,90.0,2.3,0,51.72874 +770,data,https://github.com/gristlabs/grist-core,,,,gristlabs/grist-core,grist-core,3651,169,41,TypeScript,https://support.getgrist.com/self-managed/,grist-core: Grist is the evolution of spreadsheets.,gristlabs,2023-02-21,2020-05-22,143,25.404572564612327,"['awesome', 'database', 'spreadsheet']",2023-02-21,38,"['CamilleLegeron', 'LouisDelbosc', 'alexmojaki', 'arnaudpeich@didask', 'berhalak', 'cpind', 'dsagal', 'georgegevoian@gristlabs', 'paulfitz@gristlabs', 'yohanboniface@enix']",3,10,"['didask', 'enix', 'gristlabs']","['@Didask', '@gristlabs ', 'Enix', 'Grist Labs']",,12.08,98,45,34,0,10,5,10,98.0,214.0,90.0,2.2,0,45.05504 +442,gis,https://github.com/osgeo/gdal,,,,osgeo/gdal,gdal,3607,2008,163,C++,https://gdal.org,GDAL is an open source MIT licensed translator library for raster and vector geospatial data formats.,osgeo,2023-02-21,2012-10-09,541,6.665522703273496,"['raster', 'geospatial-data', 'vector', 'remote-sensing']",2023-02-21,511,"['etiennesky@bsc', 'hobu@hobu', 'landam@czechtechnicaluniversityinprague', 'mloskot@cadcorp', 'nyalldawson@northroad', 'rouault@spatialys', 'schwehr@google', 'strezen', 'szekerest', 'warmerdam']",7,10,"['bsc', 'cadcorp', 'czechtechnicaluniversityinprague', 'google', 'hobu', 'northroad', 'spatialys']","['@Cadcorp', 'BSC', 'Czech Technical University in Prague', 'Google', 'Hobu, Inc.', 'North Road', 'Spatialys']",,46.85,566,526,126,0,9,14,9,565.0,707.0,90.0,1.3,0,62.13824 +616,testing,https://github.com/spulec/freezegun,,,,spulec/freezegun,freezegun,3581,245,32,Python,,freezegun: Let your Python tests travel through time,spulec,2023-02-21,2012-12-11,532,6.729395973154363,[],2023-02-17,109,"['CrazyPython', 'boxed@dryft-technologies', 'hugovk@nordsoftware', 'jdufresne@pioneervalleybooks', 'kylegibson', 'micromoses', 'ojii@henngek.k.', 'pganssle@google', 'rinslow@dapulse', 'spulec@yipitdata']",7,10,"['dapulse', 'dryft-technologies', 'google', 'henngek.k.', 'nordsoftware', 'pioneervalleybooks', 'yipitdata']","['@DaPulse ', '@Dryft-Technologies ', '@Google', 'HENNGE K.K.', 'Nord Software', 'Pioneer Valley Books', 'YipitData']",,0.56,26,11,124,0,0,5,5,26.0,18.0,90.0,0.7,0,45.15119 +287,gis,https://github.com/geopandas/geopandas,1.0,,,geopandas/geopandas,geopandas,3554,790,106,Python,http://geopandas.org/,geopandas: Python tools for geographic data,geopandas,2023-02-21,2013-06-27,503,7.053586617521973,[],2023-02-11,189,"['IamJeffG@conservationmetrics', 'adriangb', 'jdmcbr', 'jorisvandenbossche', 'jtratner', 'jwass', 'kjordahl@planetlabs', 'm-richards', 'martinfleis', 'snowman2@corteva']",3,10,"['conservationmetrics', 'corteva', 'planetlabs']","['@ConservationMetrics ', '@corteva ', 'Planet Labs']",,2.9,219,143,118,0,5,3,5,219.0,344.0,90.0,1.6,0,49.74752 +782,diffusion,https://github.com/jina-ai/discoart,,,,jina-ai/discoart,discoart,3538,217,33,Python,,discoart: 🪩 Create Disco Diffusion artworks in one line,jina-ai,2023-02-21,2022-06-30,33,104.49789029535864,"['creative-ai', 'disco-diffusion', 'cross-modal', 'dalle', 'generative-art', 'multimodal', 'diffusion', 'prompts', 'midjourney', 'imgen', 'discodiffusion', 'creative-art', 'clip-guided-diffusion', 'latent-diffusion', 'stable-diffusion']",2022-08-17,6,"['Hugo-Dz', 'Nick17t@jinaai', 'hanxiao@jina-ai', 'jina-bot@jina-ai', 'nan-wang@jinaai', 'thegenerativegeneration']",2,10,"['jina-ai', 'jinaai']","['@jina-ai', 'Jina AI']",,7.21,3,0,8,6,110,181,110,3.0,2.0,90.0,0.7,0,24.05867 +866,ml-ops,https://github.com/mage-ai/mage-ai,1.0,,,mage-ai/mage-ai,mage-ai,3487,270,45,Python,https://www.mage.ai/,"mage-ai: 🧙 The modern replacement for Airflow. Build, run, and manage data pipelines for integrating and transforming data.",mage-ai,2023-02-21,2022-05-16,40,86.55673758865248,"['machine-learning', 'artificial-intelligence', 'data', 'data-engineering', 'data-science', 'python', 'elt', 'etl', 'pipelines', 'data-pipelines', 'orchestration', 'data-integration', 'sql', 'spark', 'dbt', 'pipeline', 'reverse-etl', 'transformation']",2023-02-21,22,"['ci-mage', 'csharplus@airbnb', 'dy46', 'jlondonobo@humanlivingdata', 'johnson-mage', 'nathaniel-mage', 'shrey-mage', 'skunichetty', 'tommydangerous@mage', 'wangxiaoyou1993']",3,10,"['airbnb', 'humanlivingdata', 'mage']","['Airbnb', 'Human Living Data', 'Mage']",,47.5,585,546,9,0,4,5,4,585.0,160.0,90.0,0.3,0,40.4631 +368,nlp,https://github.com/layout-parser/layout-parser,,,,layout-parser/layout-parser,layout-parser,3471,345,59,Python,https://layout-parser.github.io/,layout-parser: A Unified Toolkit for Deep Learning Based Document Image Analysis,layout-parser,2023-02-20,2020-06-10,141,24.617021276595743,"['layout-analysis', 'deep-learning', 'object-detection', 'ocr', 'layout-parser', 'detectron2', 'document-layout-analysis', 'computer-vision', 'document-image-processing', 'layout-detection']",2022-08-06,8,"['Jim-Salmons@factminers', 'RosenZhang', 'an1018', 'dumbPy', 'edisongustavo@amazon', 'k-for-code', 'lolipopshock@clinicalmlallenai', 'yusanshi@ustc']",4,10,"['amazon', 'clinicalmlallenai', 'factminers', 'ustc']","['@clinicalml @allenai ', 'Amazon', 'FactMiners', 'USTC']",,0.21,15,2,33,7,2,4,2,15.0,16.0,90.0,1.1,0,25.62282 +140,nlp,https://github.com/neuml/txtai,,,,neuml/txtai,txtai,3455,293,61,Python,https://neuml.github.io/txtai,txtai: 💡 Build AI-powered semantic search applications ,neuml,2023-02-21,2020-08-09,132,26.089536138079826,"['python', 'search', 'machine-learning', 'nlp', 'deep-learning', 'document-search', 'audio-search', 'image-search', 'video-search', 'semantic-search', 'similarity-search', 'neural-search', 'contextual-search', 'vector-search', 'machine-learning-workflows', 'machine-learning-pipelines', 'microservice', 'api', 'cloud-native', 'txtai']",2023-02-21,10,"['0206pdh', '0xflotus', 'adin786@bigtincan', 'csheargm', 'csnelsonchu@superinsight.ai', 'davidmezzetti@neuml', 'hi019', 'hsm207@rasahq', 'lipusz@liferay']",5,10,"['bigtincan', 'liferay', 'neuml', 'rasahq', 'superinsight.ai']","['@RasaHQ ', '@neuml ', 'Bigtincan', 'Liferay Inc.', 'Superinsight.ai']",,6.19,60,49,31,0,11,11,11,60.0,112.0,90.0,1.9,0,41.76986 +462,util,https://github.com/rspeer/python-ftfy,,,,rspeer/python-ftfy,python-ftfy,3441,116,75,Python,http://ftfy.readthedocs.org,"python-ftfy: Fixes mojibake and other glitches in Unicode text, after the fact.",rspeer,2023-02-21,2012-08-24,547,6.282472613458529,[],2022-10-25,18,"['airhorns', 'alin-luminoso', 'jacopofar@flix-tech', 'jaredly@khanacademy', 'jwilk', 'lumitim@luminoso', 'moss@luminoso', 'rmax@paige.ai', 'rspeer@elementalcognition', 'slibs63']",5,10,"['elementalcognition', 'flix-tech', 'khanacademy', 'luminoso', 'paige.ai']","['@flix-tech ', 'Elemental Cognition', 'Khan Academy', 'Luminoso', 'Paige.AI']",,0.04,4,1,128,4,0,13,13,4.0,2.0,90.0,0.5,0,32.82908 +833,util,https://github.com/adafruit/circuitpython,,,,adafruit/circuitpython,circuitpython,3405,914,128,C,https://circuitpython.org,CircuitPython - a Python implementation for teaching coding with microcontrollers,adafruit,2023-02-21,2016-08-20,339,10.027345393352967,"['circuitpython', 'micropython', 'python', 'embedded', 'microcontroller', 'education', 'beginner', 'cpython', 'python3', 'hacktoberfest']",2023-02-21,891,"['MicroDev1@microdevsystems', 'danicampora@embeddedconsultingbv', 'dhalbert', 'dpgeorge', 'glennrub', 'hierophect@adafruit', 'jepler@unpythonicnetworks', 'pfalcon', 'tannewt@chickadee-tech', 'weblate@weblateorg']",6,10,"['adafruit', 'chickadee-tech', 'embeddedconsultingbv', 'microdevsystems', 'unpythonicnetworks', 'weblateorg']","['@WeblateOrg ', '@chickadee-tech ', 'Adafruit', 'Embedded Consulting BV', 'MicroDev Systems', 'Unpythonic Networks ']",,34.56,529,347,79,0,29,38,29,530.0,1225.0,90.0,2.3,0,64.46755 +321,gui,https://github.com/r0x0r/pywebview,,,,r0x0r/pywebview,pywebview,3373,441,58,Python,https://pywebview.flowrl.com,"pywebview: Build GUI for your Python program with JavaScript, HTML, and CSS",r0x0r,2023-02-21,2014-11-20,430,7.828580901856764,"['python', 'webkit', 'gtk', 'linux', 'windows', 'gui', 'osx', 'cocoa', 'html', 'javascript', 'qt', 'cef']",2023-02-20,102,"['AlexCovizzi', 'AstraLuma', 'Fizzadar@beeper', 'ODtian', 'dependabot[bot]', 'javad94', 'r0x0r', 'sardination', 'sbbosco', 'shivaprsd']",1,10,['beeper'],['@Beeper '],,2.6,87,68,100,0,8,6,8,87.0,213.0,90.0,2.4,0,44.83771 +895,time-series,https://github.com/awslabs/gluonts,,,,awslabs/gluonts,gluonts,3358,675,71,Python,https://ts.gluon.ai,gluonts: Probabilistic time series modeling in Python,awslabs,2023-02-20,2019-05-15,197,17.04568527918782,"['time-series', 'deep-learning', 'forecasting', 'neural-networks', 'machine-learning', 'time-series-prediction', 'time-series-forecasting', 'mxnet', 'pytorch', 'aws', 'sagemaker', 'timeseries', 'artificial-intelligence', 'data-science']",2023-02-20,101,"['AaronSpieler', 'arangatang', 'benidis@amazonai', 'dcmaddix@amazonwebservices', 'jaheba@awslabs', 'jgasthaus@meta', 'kashif', 'lostella@awsawsawslabs', 'rshyamsundar@amazon', 'vafl@amazon']",6,10,"['amazon', 'amazonai', 'amazonwebservices', 'awsawsawslabs', 'awslabs', 'meta']","['@awslabs', 'AWS @aws @awslabs', 'Amazon', 'Amazon AI', 'Amazon Web Services', 'Meta']",,7.06,247,189,46,0,40,22,40,247.0,271.0,90.0,1.1,0,51.78439 +897,viz,https://github.com/has2k1/plotnine,,,,has2k1/plotnine,plotnine,3355,193,68,Python,https://plotnine.readthedocs.io/en/stable/,plotnine: A grammar of graphics for Python,has2k1,2023-02-20,2017-04-24,304,11.025821596244132,"['plotting', 'grammar', 'graphics', 'python', 'data-analysis']",2023-02-01,99,"['TyberiusPrime', 'arnfred', 'dan-blanchard@coiled', 'funnell@mskcc', 'gdowding', 'glamp', 'has2k1', 'hernamesbarbara', 'jankatins@kreuzwerker', 'matthias-k']",3,10,"['coiled', 'kreuzwerker', 'mskcc']","['@coiled ', '@kreuzwerker', 'MSKCC']",,2.98,26,8,71,1,3,2,3,26.0,34.0,90.0,1.3,0,40.46847 +421,ml,https://github.com/facebookresearch/reagent,,,,facebookresearch/reagent,ReAgent,3347,506,150,Python,https://reagent.ai,"ReAgent: A platform for Reasoning systems (Reinforcement Learning, Contextual Bandits, etc.)",facebookresearch,2023-02-21,2017-07-27,290,11.5073673870334,[],2023-02-17,151,"['YitaoLiang', 'alexnikulkov', 'badrinarayan@facebook', 'czxttkl', 'econti@banditml', 'gji1@facebookai', 'igfox', 'kaiwenw@cornell', 'kittipatv', 'sfujim@mcgilluniversity']",5,10,"['banditml', 'cornell', 'facebook', 'facebookai', 'mcgilluniversity']","['@banditml ', 'Cornell', 'Facebook', 'Facebook AI', 'McGill University']",,2.0,17,12,68,0,0,0,0,17.0,38.0,90.0,2.2,0,43.6301 +4,pandas,https://github.com/aws/aws-sdk-pandas,1.0,,,aws/aws-sdk-pandas,aws-sdk-pandas,3334,579,60,Python,https://aws-sdk-pandas.readthedocs.io,"aws-sdk-pandas: pandas on AWS - Easy integration with Athena, Glue, Redshift, Timestream, Neptune, OpenSearch, QuickSight, Chime, CloudWatchLogs, DynamoDB, EMR, SecretManager, PostgreSQL, MySQL, SQLServer and S3 (Parquet, CSV, JSON and EXCEL).",aws,2023-02-21,2019-02-26,208,16.017844886753604,"['python', 'aws', 'pandas', 'apache-arrow', 'apache-parquet', 'data-engineering', 'etl', 'data-science', 'redshift', 'athena', 'lambda', 'aws-lambda', 'aws-glue', 'emr', 'amazon-athena', 'glue-catalog', 'mysql', 'amazon-sagemaker-notebook']",2023-02-21,124,"['LeonLuttenberger@amazonwebservices', 'bryanyang0528@taiwansparkusergroup', 'cnfait@aws', 'dependabot[bot]', 'igorborgest@vtex', 'jaidisido@aws', 'kukushking', 'luigift', 'malachi-constant@amazonwebservices', 'maxispeicher@twaice']",5,10,"['amazonwebservices', 'aws', 'taiwansparkusergroup', 'twaice', 'vtex']","['@TWAICE ', '@TaiwanSparkUserGroup ', '@aws', '@vtex', 'AWS', 'Amazon Web Services']",,5.38,366,330,49,0,14,25,14,366.0,1265.0,90.0,3.5,0,54.18247 +99,ml,https://github.com/skvark/opencv-python,,,,skvark/opencv-python,opencv-python,3282,638,83,Shell,https://pypi.org/project/opencv-python/,"opencv-python: Automated CI toolchain to produce precompiled opencv-python, opencv-python-headless, opencv-contrib-python and opencv-contrib-python-headless packages.",skvark,2023-02-21,2016-04-08,358,9.149342891278375,"['opencv', 'python', 'wheel', 'python-3', 'opencv-python', 'opencv-contrib-python', 'precompiled', 'pypi', 'manylinux']",2023-02-21,43,"['abhiTronix@autodidact•researcher•open-sourcerer', 'asenyaev', 'asmorkalov@xperience.ai', 'c-martinez@nlesc', 'cclauss@christianclauss', 'johnthagen', 'native-api', 'sergregory', 'skvark@softlandia-ltd', 'vallentin']",5,10,"['autodidact•researcher•open-sourcerer', 'christianclauss', 'nlesc', 'softlandia-ltd', 'xperience.ai']","['@NLeSC ', '@Softlandia-Ltd', 'Autodidact • Researcher • Open-sourcerer', 'Christian Clauss', 'Xperience.AI']",,0.98,71,46,84,0,6,10,6,71.0,177.0,90.0,2.5,0,45.70774 +663,util,https://github.com/zeromq/pyzmq,,,,zeromq/pyzmq,pyzmq,3271,615,102,Python,http://zguide.zeromq.org/py:all,PyZMQ: Python bindings for zeromq,zeromq,2023-02-20,2010-07-21,657,4.97869101978691,"['cython', 'python', 'zeromq']",2023-02-20,188,"['asteven', 'bluca@microsoft', 'claws', 'ellisonbg@amazonwebservices', 'fperez@universityofcalifornia,berkeley.', 'guidog', 'iblislin@chinamedicaluniversityhospital', 'minrk@simularesearchlaboratory', 'pre-commit-ci[bot]', 'sakurai-youhei']",5,10,"['amazonwebservices', 'chinamedicaluniversityhospital', 'microsoft', 'simularesearchlaboratory', 'universityofcalifornia,berkeley.']","['@microsoft', 'Amazon Web Services', 'China Medical University Hospital', 'Simula Research Laboratory', 'University of California, Berkeley.']",,3.6,36,27,153,0,0,6,6,36.0,49.0,90.0,1.4,0,49.61757 +361,ml-ops,https://github.com/polyaxon/polyaxon,,,,polyaxon/polyaxon,polyaxon,3255,320,78,,https://polyaxon.com,polyaxon: MLOps Tools For Managing & Orchestrating The Machine Learning LifeCycle,polyaxon,2023-02-20,2016-12-26,321,10.131169408626056,"['deep-learning', 'machine-learning', 'artificial-intelligence', 'data-science', 'reinforcement-learning', 'kubernetes', 'tensorflow', 'pytorch', 'keras', 'mxnet', 'caffe', 'ml', 'k8s', 'jupyter', 'notebook', 'jupyterlab', 'pipelines', 'workflow', 'mlops', 'hyperparameter-optimization']",2023-02-20,98,"['DXist', 'dependabot[bot]', 'gzcf', 'javidgon', 'lgeiger@plumerailarq', 'mmourafiq', 'polyaxon-ci', 'polyaxon-team', 'vfdev-5@quansight', 'wbuchwalter@microsoftresearch']",3,10,"['microsoftresearch', 'plumerailarq', 'quansight']","['@Quansight', '@plumerai @larq ', 'Microsoft Research']",,4.9,11,1,75,0,0,24,24,11.0,3.0,90.0,0.3,0,42.19509 +93,web,https://github.com/unbit/uwsgi,,,,unbit/uwsgi,uwsgi,3254,671,114,C,http://projects.unbit.it/uwsgi,uWSGI application server container,unbit,2023-02-20,2011-10-09,593,5.483389504092441,[],2023-01-10,352,"['Darvame', 'Shir0kamii@numberly', 'aldur', 'awelzel', 'funkybob@codealchemy', 'prymitive', 'rdeioris@blitter', 'robygior@20tabsrl', 'unbit@unbit', 'xrmx@menodizero.it']",6,10,"['20tabsrl', 'blitter', 'codealchemy', 'menodizero.it', 'numberly', 'unbit']","['20tab Srl', 'Blitter', 'Code Alchemy', 'Unbit', 'menodizero.it', 'numberly']",,0.46,30,10,138,1,0,11,11,30.0,37.0,90.0,1.2,0,48.27038 +804,util,https://github.com/miguelgrinberg/python-socketio,,,,miguelgrinberg/python-socketio,python-socketio,3237,522,62,Python,,python-socketio: Python Socket.IO server and client,miguelgrinberg,2023-02-21,2015-07-15,397,8.153652392947103,"['socket-io', 'socketio', 'socketio-server', 'websocket', 'long-polling', 'low-latency', 'web-server', 'python', 'asyncio', 'eventlet', 'gevent']",2023-02-16,61,"['Molkree', 'VincentM@untienots', 'aaqibb13@graphicweave', 'andreyrusanov', 'dependabot[bot]', 'etseidler', 'greyli', 'kurlov@redhat', 'miguelgrinberg', 'tsangwpx']",3,10,"['graphicweave', 'redhat', 'untienots']","['@Untienots', '@graphicweave', 'Red Hat']",,1.15,26,21,93,0,0,11,11,26.0,35.0,90.0,1.3,0,43.03178 +208,crypto,https://github.com/cyberpunkmetalhead/binance-volatility-trading-bot,,,,cyberpunkmetalhead/binance-volatility-trading-bot,Binance-volatility-trading-bot,3237,761,146,Python,,Binance-volatility-trading-bot: This is a fully functioning Binance trading bot that measures the volatility of every coin on Binance and places trades with the highest gaining coins If you like this project consider donating though the Brave browser to allow me to continuously improve the script.,cyberpunkmetalhead,2023-02-19,2021-05-08,93,34.59389312977099,[],2021-06-10,19,"['CyberPunkMetalHead', 'Davidobot@mazette!', 'FreshLondon@freshlondon', 'ShogunMan', 'Tarantinooo', 'amitman3', 'bcsingh50', 'datapush3r@splunk', 'getsec', 'singer-yang@kaust']",4,10,"['freshlondon', 'kaust', 'mazette!', 'splunk']","['@splunk', 'FreshLondon', 'KAUST', 'mazette!']",,0.0,3,0,22,21,0,0,0,3.0,0.0,90.0,0.0,0,17.23854 +557,jupyter,https://github.com/executablebooks/jupyter-book,,,,executablebooks/jupyter-book,jupyter-book,3236,607,60,Python,http://jupyterbook.org,"jupyter-book: Create beautiful, publication-quality books and documents from computational content.",executablebooks,2023-02-20,2018-06-14,244,13.215869311551925,"['jupyter', 'sphinx-doc', 'documentation-generator']",2023-02-19,120,"['AakashGfude', 'SamLau95@data-8ds-100', 'choldgraf@ucberkeley', 'chrisjsewell@imperialcollegelondon', 'dependabot[bot]', 'emdupre@stanforduniversity', 'joergbrech', 'martinagvilas@ernststrüngmannandmax-planck-institute', 'mmcky', 'najuzilu@georgetownuniversity']",6,10,"['data-8ds-100', 'ernststrüngmannandmax-planck-institute', 'georgetownuniversity', 'imperialcollegelondon', 'stanforduniversity', 'ucberkeley']","['@data-8 @DS-100', 'Ernst Strüngmann and Max-Planck-Institute', 'Georgetown University', 'Imperial College London', 'Stanford University', 'UC Berkeley']",,1.38,86,34,57,0,5,8,5,86.0,157.0,90.0,1.8,0,47.33945 +319,gui,https://github.com/dddomodossola/remi,,,,dddomodossola/remi,remi,3229,395,120,Python,,"remi: Python REMote Interface library. Platform independent. In about 100 Kbytes, perfect for your diet.",dddomodossola,2023-02-21,2014-03-20,465,6.931309414290095,"['python', 'gui-library', 'remi', 'platform-independent', 'ui', 'gui']",2023-02-01,56,"['Bethany-1', 'Eothred@europeanspallationsourceeric', 'Ksengine@moonharelabs', 'PURPORC', 'awesomebytes', 'cyberpro4', 'dddomodossola@imtssrl', 'mcondarelli', 'nzjrs', 'smurfix@norisnetworkag']",4,10,"['europeanspallationsourceeric', 'imtssrl', 'moonharelabs', 'norisnetworkag']","['@ImtsSrl ', '@moonharelabs', 'European Spallation Source ERIC', 'noris network AG']",,0.6,6,1,109,1,0,3,3,6.0,12.0,90.0,2.0,0,38.65468 +518,util,https://github.com/spack/spack,,,,spack/spack,spack,3207,1833,104,Python,https://spack.io,"spack: A flexible package manager that supports multiple versions, configurations, platforms, and compilers.",spack,2023-02-20,2014-01-08,476,6.737394957983193,"['python', 'spack', 'package-manager', 'hpc', 'build-tools', 'radiuss', 'scientific-computing', 'macos', 'linux']",2023-02-21,1354,"['adamjstewart@universityofillinoisaturbana-champaign', 'alalazo@np-complete', 'becker33@llnl', 'darmac@(huawei)hisilicontechnologiesco.,limited.', 'davydden', 'glennpj', 'haampie', 'iarspider', 'michaelkuhn', 'tgamblin@llnl']",4,10,"['(huawei)hisilicontechnologiesco.,limited.', 'llnl', 'np-complete', 'universityofillinoisaturbana-champaign']","['(Huawei) HiSilicon Technologies CO.,LIMITED.', '@LLNL', '@LLNL ', 'University of Illinois at Urbana-Champaign', 'np-complete']",,85.79,2026,1443,111,0,6,5,6,2026.0,4724.0,90.0,2.3,0,65.81639 +966,ml-dl,https://github.com/facebookresearch/pytorch-biggraph,,,,facebookresearch/pytorch-biggraph,PyTorch-BigGraph,3188,437,93,Python,https://torchbiggraph.readthedocs.io/,PyTorch-BigGraph: Generate embeddings from large-scale graph-structured data.,facebookresearch,2023-02-20,2018-10-01,229,13.90404984423676,[],2022-12-08,29,"['StanislavGlebik', 'adamlerer', 'amyreese@omnilib', 'chandlerzuo@https://github.com/facebook', 'dmitryvinn@engineeringmanagerai/mlmeta', 'ezyang', 'indonoso', 'lw@facebook', 'rkindi@meta', 'simonepri@universityofcambridge,sapienzauniversityofrome']",6,10,"['engineeringmanagerai/mlmeta', 'facebook', 'https://github.com/facebook', 'meta', 'omnilib', 'universityofcambridge,sapienzauniversityofrome']","['@facebook', '@https://github.com/facebook', '@omnilib ', 'Engineering Manager AI/ML@Meta', 'Meta', 'University of Cambridge, Sapienza University of Rome']",,0.13,4,0,53,2,0,1,1,4.0,2.0,90.0,0.5,0,30.3107 +182,testing,https://github.com/tox-dev/tox,,,,tox-dev/tox,tox,3186,462,41,Python,https://tox.wiki,tox: Command line driven CI frontend and development task automation tool.,tox-dev,2023-02-21,2016-09-17,335,9.494252873563218,"['testing', 'python', 'virtualenv', 'continuous-integration', 'cli', 'automation', 'venv', 'travis', 'appveyor', 'gitlab', 'circleci', 'azure-pipelines', 'hacktoberfest', 'actions', 'pep-621']",2023-02-21,40,"['eumiro', 'gaborbernat@bloomberglp', 'gnikonorov', 'hexagonrecursion', 'jugmac00@canonical', 'kurtmckee', 'masenf@delltechnologies', 'q0w', 'ssbarnea@redhatansible', 'stephenfin@redhat']",5,10,"['bloomberglp', 'canonical', 'delltechnologies', 'redhat', 'redhatansible']","['@canonical', 'Bloomberg LP', 'Dell Technologies', 'Red Hat', 'Red Hat @ansible']",,4.48,421,376,78,0,54,29,54,421.0,971.0,90.0,2.3,0,51.88548 +443,gis,https://github.com/shapely/shapely,1.0,,,shapely/shapely,shapely,3175,513,85,Python,https://shapely.readthedocs.io/en/stable/,shapely: Manipulation and analysis of geometric objects,shapely,2023-02-20,2011-12-31,581,5.459346597887497,[],2023-02-13,144,"['aronbierbaum', 'brendan-ward@astutespruce', 'caspervdw@nelen&schuurmans', 'jorisvandenbossche', 'jwass', 'mwtoews@gnsscience', 'olt@omniscale', 'sgillies@planetlabs', 'snorfalorpagus', 'tomplex@faradayio']",6,10,"['astutespruce', 'faradayio', 'gnsscience', 'nelen&schuurmans', 'omniscale', 'planetlabs']","['@faradayio', '@planetlabs', 'Astute Spruce, LLC', 'GNS Science', 'Nelen & Schuurmans', 'Omniscale']",,3.44,193,122,136,0,13,9,13,193.0,635.0,90.0,3.3,0,55.45947 +348,ml-ops,https://github.com/evidentlyai/evidently,,,,evidentlyai/evidently,evidently,3172,341,35,Python,,evidently: Evaluate and monitor ML models from validation to production. Join our Discord: https://discord.com/invite/xZjKRaNp8b,evidentlyai,2023-02-21,2020-11-25,117,27.11111111111111,"['data-drift', 'jupyter-notebook', 'pandas-dataframe', 'machine-learning', 'model-monitoring', 'html-report', 'production-machine-learning', 'machine-learning-operations', 'mlops', 'data-science', 'hacktoberfest']",2023-02-20,35,"['0lgaF', 'AntonisCSt', 'Liraim', 'SangamSwadiK', 'Tapot@intento,evidentlyai', 'burkovae', 'elenasamuylova@evidentlyai', 'emeli-dral', 'inderpreetsingh01', 'strickvl@zenml']",3,10,"['evidentlyai', 'intento,evidentlyai', 'zenml']","['Evidently AI', 'Intento, Evidently AI', 'ZenML']",,14.87,78,64,27,0,22,20,22,78.0,77.0,90.0,1.0,0,44.02081 +250,web,https://github.com/websocket-client/websocket-client,,,,websocket-client/websocket-client,websocket-client,3166,730,90,Python,https://github.com/websocket-client/websocket-client,websocket-client: WebSocket client for Python,websocket-client,2023-02-18,2010-12-28,634,4.992565893219194,"['websocket', 'websockets', 'websocket-client', 'websockets-client', 'python', 'rfc-6455']",2023-02-05,207,"['Mottl', 'allanlewis@piclo', 'bubbleboy14', 'ekeydar', 'engn33r@yacademy', 'hugovk@nordsoftware', 'liris', 'louisliu', 'mjhanninen', 'ralphbean@redhat,inc']",4,10,"['nordsoftware', 'piclo', 'redhat,inc', 'yacademy']","['@piclo', 'Nord Software', 'Red Hat, Inc', 'yAcademy']",,0.75,34,28,148,1,9,6,9,34.0,57.0,90.0,1.7,0,46.7638 +384,nlp,https://github.com/minimaxir/gpt-2-simple,,,,minimaxir/gpt-2-simple,gpt-2-simple,3162,650,74,Python,,gpt-2-simple: Python package to easily retrain OpenAI's GPT-2 text-generating model on new texts,minimaxir,2023-02-21,2019-04-13,201,15.686746987951807,"['text-generation', 'tensorflow', 'openai', 'textgenrnn']",2022-05-22,21,"['biranchi2018', 'carlos-aguayo@appian', 'charliekmorris', 'chrisrytting@byuperception,cognition,andcontrollab', 'duhaime@universityofnotredame', 'erjanmx', 'gte620v', 'k0a1a@cosmicberlin', 'minimaxir@buzzfeed', 'woctezuma']",5,10,"['appian', 'buzzfeed', 'byuperception,cognition,andcontrollab', 'cosmicberlin', 'universityofnotredame']","['@CosmicBerlin ', '@appian', '@buzzfeed ', 'BYU Perception, Cognition, and Control Lab', 'University of Notre Dame']",,0.02,9,1,47,9,0,4,4,9.0,7.0,90.0,0.8,0,28.64718 +35,data,https://github.com/jmcnamara/xlsxwriter,,,,jmcnamara/xlsxwriter,XlsxWriter,3158,592,122,Python,https://xlsxwriter.readthedocs.io,XlsxWriter: A Python module for creating Excel XLSX files.,jmcnamara,2023-02-20,2013-01-04,528,5.972980275601189,"['python', 'xlsx-files', 'libxlsxwriter', 'pandas', 'charts', 'spreadsheet', 'xlsx', 'xlsxwriter']",2023-02-19,47,"['danielquinn', 'dieterv77', 'eddiechapman', 'hugovk@nordsoftware', 'jkyeung', 'jmcnamara', 'jonasdiemer', 'jvrsantacruz', 'krysros', 'percious@crunch.io']",2,10,"['crunch.io', 'nordsoftware']","['Crunch.io', 'Nord Software']",,1.1,42,34,123,0,0,15,15,42.0,102.0,90.0,2.4,0,44.30669 +381,ml-ops,https://github.com/aimhubio/aim,,,,aimhubio/aim,aim,3157,196,37,TypeScript,https://aimstack.io,Aim 💫 — easy-to-use and performant open-source ML experiment tracker.,aimhubio,2023-02-21,2019-05-31,194,16.213499633162144,"['python', 'ai', 'data-science', 'data-visualization', 'experiment-tracking', 'machine-learning', 'metadata', 'metadata-tracking', 'ml', 'mlflow', 'mlops', 'pytorch', 'tensorboard', 'tensorflow', 'visualization']",2023-02-09,52,"['KaroMourad@aim', 'SGevorg@aimhubio', 'VkoHov@aimhub', 'alberttorosyan', 'arsengit@aimstack', 'devfox-se', 'gorarakelyan@aimstack', 'mihran113@aimhubio', 'roubkar@aimhubio', 'rubenaprikyan@aimhub']",4,10,"['aim', 'aimhub', 'aimhubio', 'aimstack']","['@aimhubio', '@aimhubio ', 'Aim', 'AimHub', 'AimStack', 'Aimhub']",,11.23,240,154,45,0,41,41,41,240.0,330.0,90.0,1.4,0,49.38852 +0,data,https://github.com/andialbrecht/sqlparse,,,,andialbrecht/sqlparse,sqlparse,3153,623,94,Python,,sqlparse: A non-validating SQL parser module for Python,andialbrecht,2023-02-21,2012-04-18,566,5.570671378091872,[],2023-01-05,102,"['adamgreenhall', 'andialbrecht', 'darikg', 'dbczumar', 'jdufresne@pioneervalleybooks', 'mrmasterplan@delegate.dk', 'phdru', 'piranna@mafalda-sfu', 'sjoerdjob', 'vmuriart']",3,10,"['delegate.dk', 'mafalda-sfu', 'pioneervalleybooks']","['@Mafalda-SFU', 'Delegate.dk', 'Pioneer Valley Books']",,0.71,35,11,132,2,0,3,3,35.0,58.0,90.0,1.7,0,40.46812 +905,util,https://github.com/pypi/warehouse,,,,pypi/warehouse,warehouse,3146,910,103,Python,https://pypi.org,warehouse: The Python Package Index,pypi,2023-02-20,2013-03-30,516,6.090154867256637,[],2023-02-19,332,"['brainwane@changesetconsulting', 'dependabot[bot]', 'di@google', 'dstufft@datadog', 'ewdurbin@psf', 'miketheman', 'nlhkabu', 'pyup-bot@pyupio', 'weblate@weblateorg', 'woodruffw@trailofbits']",7,10,"['changesetconsulting', 'datadog', 'google', 'psf', 'pyupio', 'trailofbits', 'weblateorg']","['@DataDog', '@WeblateOrg ', '@google', '@psf', '@pyupio', '@trailofbits ', 'Changeset Consulting']",,8.96,585,451,120,0,0,0,0,584.0,692.0,90.0,1.2,0,53.89572 +610,testing,https://github.com/seleniumbase/seleniumbase,,,,seleniumbase/seleniumbase,SeleniumBase,3128,756,121,Python,https://seleniumbase.io,SeleniumBase: A Python browser automation framework for creating reliable end-to-end tests.,seleniumbase,2023-02-21,2014-03-04,468,6.681721086359475,"['python', 'selenium', 'webdriver', 'selenium-python', 'e2e-testing', 'seleniumbase', 'pytest-plugin', 'web-automation', 'pytest', 'behave', 'chrome', 'webkit', 'chromedriver', 'firefox', 'test', 'python3']",2023-02-18,35,"['TaylorMcGinnis', 'aklajnert@akamaitechnologies', 'alexrudd2@numat', 'dimaspivak@streamsets', 'johnhiggs', 'mdmintz@https://www.iboss.com/', 'piotrkochan', 'rogererens', 'stevemachacz@nausetconsulting', 'surevs']",5,10,"['akamaitechnologies', 'https://www.iboss.com/', 'nausetconsulting', 'numat', 'streamsets']","['@numat ', '@streamsets ', 'Akamai Technologies', 'Nauset Consulting', 'https://www.iboss.com/']",,25.67,156,155,109,0,148,87,148,156.0,233.0,90.0,1.5,0,52.56264 +260,util,https://github.com/python-markdown/markdown,,,,python-markdown/markdown,markdown,3125,810,75,Python,https://python-markdown.github.io/,markdown: A Python implementation of John Gruber’s Markdown with Extension support.,python-markdown,2023-02-21,2010-05-29,664,4.702278589853826,"['python-markdown', 'markdown', 'markdown-parser', 'markdown-to-html', 'python', 'python3']",2023-01-09,165,"['artynusov', 'davidchambers', 'facelessuser', 'lahwaacz', 'lama7', 'mdirolf', 'mitya57@theinterfacefinancialgroup', 'slig', 'waylan', 'yuri@rangle.io']",2,10,"['rangle.io', 'theinterfacefinancialgroup']","['The Interface Financial Group', 'rangle.io']",,0.62,18,15,155,1,0,4,4,18.0,38.0,90.0,2.1,0,42.01948 +832,pandas,https://github.com/blaze/blaze,,,,blaze/blaze,blaze,3123,387,199,Python,blaze.pydata.org,blaze: NumPy and Pandas interface to Big Data,blaze,2023-02-20,2012-10-26,538,5.797136038186157,[],2019-08-15,65,"['aterrel@numfocus', 'brittainhard', 'cpcloud@voltrondata', 'kwmsmith', 'llllllllll@formerlyquantopian', 'markflorisson@mlabs', 'mrocklin@coiled', 'mwiebe@awsthinkbox', 'sdiehl', 'teoliphant@quansight,openteams']",7,10,"['awsthinkbox', 'coiled', 'formerlyquantopian', 'mlabs', 'numfocus', 'quansight,openteams', 'voltrondata']","['@coiled ', '@voltrondata', 'AWS Thinkbox', 'MLabs', 'NumFOCUS', 'Quansight, OpenTeams', 'formerly @quantopian']",,0.0,2,1,126,43,0,5,5,2.0,0.0,90.0,0.0,0,28.6932 +715,ml-ops,https://github.com/flyteorg/flyte,,,,flyteorg/flyte,flyte,3112,326,267,Python,https://flyte.org,"flyte: Kubernetes-native workflow automation platform for complex, mission-critical data and ML processes at scale. It has been battle-tested at Lyft, Spotify, Freenome, and others and is truly open-source.",flyteorg,2023-02-21,2019-10-21,174,17.85573770491803,"['flyte', 'machine-learning', 'golang', 'scale', 'workflow', 'data-science', 'data-analysis', 'data', 'kubernetes-operator', 'kubernetes', 'orchestration-engine', 'mlops', 'dataops', 'grpc', 'python', 'battle-tested', 'production', 'production-grade', 'declarative', 'hacktoberfest']",2023-02-14,114,"['EngHabu@flyteorg', 'SandraGH5@union.ai', 'SmritiSatyanV', 'cosmicBboy@unionai', 'evalsocket@unionai', 'flyte-bot', 'jeevb@freenome', 'katrogan@unionai', 'kumare3@unionai', 'wild-endeavor']",4,10,"['flyteorg', 'freenome', 'union.ai', 'unionai']","['@flyteorg ', '@unionai', '@unionai ', 'Freenome', 'Union.ai', 'unionai']",,5.0,377,155,41,0,28,25,28,377.0,320.0,90.0,0.8,0,49.18723 +336,ml,https://github.com/apple/coremltools,,,,apple/coremltools,coremltools,3111,488,113,Python,https://coremltools.readme.io,"coremltools: Core ML tools contain supporting tools for Core ML model conversion, editing, and validation.",apple,2023-02-21,2017-06-30,294,10.55598642753272,"['coremltools', 'tensorflow', 'pytorch', 'coreml', 'machine-learning', 'model-converter', 'model-conversion']",2023-02-20,145,"['1duo', 'TobyRoseman@apple', 'aseemw', 'bhushan23@stealthmode', 'fukatani', 'gustavla', 'jakesabathia2', 'slin07@apple', 'srikris@apple', 'tonybove-apple@expertsupport-apple']",3,10,"['apple', 'expertsupport-apple', 'stealthmode']","['@apple', 'Apple', 'Expert Support - Apple', 'Stealth Mode']",,2.08,143,80,69,0,6,6,6,143.0,317.0,90.0,2.2,0,47.78229 +363,ml-ops,https://github.com/kubeflow/pipelines,,,,kubeflow/pipelines,pipelines,3107,1382,102,Python,https://www.kubeflow.org/docs/components/pipelines/,pipelines: Machine Learning Pipelines for Kubeflow,kubeflow,2023-02-21,2018-05-12,249,12.449341728677734,"['kubeflow-pipelines', 'mlops', 'kubeflow', 'machine-learning', 'kubernetes', 'pipeline', 'data-science']",2023-02-20,359,"['Ark-kun@google', 'Bobgy@google', 'IronPan@google', 'SinaChavoshi@google', 'chensun@google', 'connor-mccarthy@google', 'gaoning777@google', 'hongye-sun', 'rileyjbauer', 'zijianjoy']",1,10,['google'],"['@Google', '@google', 'Google']",,14.94,724,341,58,0,32,28,32,723.0,1455.0,90.0,2.0,0,53.50119 +221,jupyter,https://github.com/jupyterlite/jupyterlite,,,,jupyterlite/jupyterlite,jupyterlite,3088,194,43,Python,https://jupyterlite.rtfd.io/en/latest/try/lab,jupyterlite: Wasm powered Jupyter running in the browser 💡,jupyterlite,2023-02-21,2021-03-27,99,31.012912482065996,"['jupyter', 'jupyterlab', 'jupyterlab-extension', 'lite', 'webassembly', 'wasm', 'pyodide']",2023-02-15,44,"['agoose77', 'bollwyvl', 'dependabot[bot]', 'dsblank@comet-ml', 'github-actions[bot]', 'joemarshall', 'jtpio@quantstack', 'madhur-tandon', 'martinRenou@quantstack', 'psychemedia@theopenuniversity']",3,10,"['comet-ml', 'quantstack', 'theopenuniversity']","['@QuantStack', '@comet-ml ', 'The Open University']",,12.98,135,71,23,0,19,459,19,135.0,370.0,90.0,2.7,0,46.84988 +138,ml-interpretability,https://github.com/pair-code/lit,1.0,,,pair-code/lit,lit,3081,327,70,TypeScript,https://pair-code.github.io/lit,lit: The Learning Interpretability Tool: Interactively analyze ML models to understand their behavior in an extensible and framework agnostic interface.,pair-code,2023-02-20,2020-07-28,134,22.968051118210862,"['machine-learning', 'natural-language-processing', 'visualization']",2022-12-02,27,"['EmilyReif', 'RyanMullins@google', 'ankurtaly', 'aryan1107', 'cjqian@deepmind', 'eberts-google', 'ellenjiang7', 'iftenney@google', 'jameswex@google', 'tolga-b@google']",2,10,"['deepmind', 'google']","['@deepmind', '@google ', 'Google', 'Google, Inc.']",,6.21,88,75,31,3,1,3,1,88.0,17.0,90.0,0.2,0,31.1621 +42,nlp,https://github.com/life4/textdistance,,,,life4/textdistance,textdistance,3059,242,61,Python,,"textdistance: Compute distance between sequences. 30+ algorithms, pure python implementation, common interface, optional external libs usage.",life4,2023-02-21,2017-05-05,302,10.105238319962247,"['distance', 'algorithm', 'python', 'textdistance', 'hamming-distance', 'levenshtein-distance', 'damerau-levenshtein', 'damerau-levenshtein-distance', 'algorithms', 'distance-calculation', 'jellyfish', 'diff', 'levenshtein']",2022-09-18,13,"['ArchangeGabriel@archlinux', 'Inokenty90', 'Reindert94', 'davebulaval@baseline.québec', 'eliadl', 'juliangilbey@universityofcambridge', 'kinow@barcelonasupercomputingcenter', 'maxbachmann', 'orsinium@sendcloud', 'wynksaiddestroy']",5,10,"['archlinux', 'barcelonasupercomputingcenter', 'baseline.québec', 'sendcloud', 'universityofcambridge']","['@ArchLinux', '@sendcloud', 'Barcelona Supercomputing Center', 'Baseline.québec', 'University of Cambridge']",,0.79,0,0,71,5,3,2,3,0.0,0.0,90.0,0.0,0,25.64275 +698,util,https://github.com/joblib/joblib,,,,joblib/joblib,joblib,3056,366,63,Python,http://joblib.readthedocs.org,joblib: Computing with Python functions.,joblib,2023-02-21,2010-05-07,667,4.576807873341891,"['python', 'parallel-computing', 'caching', 'multiprocessing', 'threading', 'memoization']",2023-02-20,117,"['GaelVaroquaux', 'aabadie@inria', 'esc@anaconda', 'lesteve', 'ogrisel@inria', 'pberkes@nagra,kudelski', 'pgervais', 'pierreglaser@ucl', 'tomMoral@inriasaclay-parietalteam', 'yarikoptic@dartmouthcollege,debian,datalad,pymvpa,fail2ban']",6,10,"['anaconda', 'dartmouthcollege,debian,datalad,pymvpa,fail2ban', 'inria', 'inriasaclay-parietalteam', 'nagra,kudelski', 'ucl']","['Anaconda Inc.', 'Dartmouth College, @Debian, @DataLad, @PyMVPA, @fail2ban', 'INRIA Saclay - Parietal team', 'Inria', 'Nagra, Kudelski', 'UCL']",,0.85,64,36,156,0,0,6,6,64.0,102.0,90.0,1.6,0,48.44274 +285,crypto,https://github.com/ethereum/consensus-specs,,,,ethereum/consensus-specs,consensus-specs,3054,782,244,Python,,consensus-specs: Ethereum Proof-of-Stake Consensus Specifications,ethereum,2023-02-21,2018-09-20,230,13.228960396039604,[],2023-02-20,135,"['CarlBeek@ethereum', 'JustinDrake', 'dankrad', 'djrtwo@ctrl^t', 'hwwhww', 'mkalinin', 'protolambda@oplabs', 'ralexstokes', 'terencechain', 'vbuterin']",3,10,"['ctrl^t', 'ethereum', 'oplabs']","['@ethereum', 'Ctrl^T', 'OP Labs']",,11.0,187,147,54,0,12,16,12,187.0,266.0,90.0,1.4,0,49.79512 +765,diffusion,https://github.com/lkwq007/stablediffusion-infinity,,,,lkwq007/stablediffusion-infinity,stablediffusion-infinity,3021,238,32,Python,,stablediffusion-infinity: Outpainting with Stable Diffusion on an infinite canvas,lkwq007,2023-02-21,2022-09-02,24,122.23699421965318,"['outpainting', 'stablediffusion']",2023-01-24,7,"['LEBMD', 'adripo', 'donlinglok', 'ipsin', 'lkwq007@cuhk', 'mspiegel@thoughtdealership', 'tpsjr7']",2,10,"['cuhk', 'thoughtdealership']","['CUHK', 'Thought Dealership']",,4.56,46,19,6,1,0,6,6,46.0,72.0,90.0,1.6,0,29.38463 +390,diffusion,https://github.com/openai/glide-text2im,,,,openai/glide-text2im,glide-text2im,3019,431,123,Python,,glide-text2im: GLIDE: a diffusion-based text-conditional image synthesis model,openai,2023-02-21,2021-12-10,62,48.13895216400911,[],2022-03-21,4,"['kcosta42', 'lochiego@texasa&mcenterforappliedtechnology', 'prafullasd', 'unixpickle']",1,10,['texasa&mcenterforappliedtechnology'],['Texas A&M Center for Applied Technology'],,0.0,0,0,15,11,0,0,0,0.0,0.0,90.0,0.0,0,8.55258 +139,viz,https://github.com/vispy/vispy,,,,vispy/vispy,vispy,3017,606,119,Python,http://vispy.org,vispy: Main repository for Vispy,vispy,2023-02-19,2013-03-21,517,5.825931034482759,"['hacktoberfest', 'python', 'opengl', 'visualization', 'closember']",2023-01-23,183,"['adamlwgriffiths@twistedpairdevelopment', 'almarklein@independentsoftwareengineer', 'asnt', 'bollu@universityofedinburgh', 'brisvag@gutsche-lab', 'campagnola', 'djhoese@spacescienceandengineeringcenter(ssec)', 'larsoner@universityofwashington', 'rossant@int-brain-labcortex-lab', 'rougier@inria']",8,10,"['gutsche-lab', 'independentsoftwareengineer', 'inria', 'int-brain-labcortex-lab', 'spacescienceandengineeringcenter(ssec)', 'twistedpairdevelopment', 'universityofedinburgh', 'universityofwashington']","['@INRIA ', '@gutsche-lab ', '@int-brain-lab @cortex-lab ', 'Independent software engineer', 'Space Science and Engineering Center (@ssec)', 'Twisted Pair Development', 'University of Edinburgh', 'University of Washington']",,3.4,37,21,121,1,4,3,4,37.0,155.0,90.0,4.2,0,52.2889 +272,data,https://github.com/praw-dev/praw,,,,praw-dev/praw,praw,3003,448,72,Python,http://praw.readthedocs.io/,"PRAW, an acronym for ""Python Reddit API Wrapper"", is a python package that allows for simple access to Reddit's API.",praw-dev,2023-02-20,2010-08-19,652,4.599781181619256,"['python', 'reddit', 'api', 'oauth', 'praw', 'reddit-api']",2023-02-19,220,"['13steinj', 'Damgaard@billy', 'LilSpazJoekp@indeed', 'PythonCoderAS', 'bboe@netflix', 'jarhill0@appfolio', 'leviroth', 'nmtake', 'tmelz', 'voussoir']",4,10,"['appfolio', 'billy', 'indeed', 'netflix']","['@appfolio', '@netflix', 'Billy', 'Indeed, Inc.']",,1.38,36,30,152,0,2,12,2,36.0,51.0,90.0,1.4,0,46.59109 +156,profiling,https://github.com/gaogaotiantian/viztracer,,,,gaogaotiantian/viztracer,viztracer,3002,290,40,Python,https://viztracer.readthedocs.io/,VizTracer is a low-overhead logging/debugging/profiling tool that can trace and visualize your python code execution.,gaogaotiantian,2023-02-20,2020-08-05,133,22.571428571428573,"['tracer', 'python3', 'debugging', 'profiling', 'visualization', 'flamegraph', 'python', 'logging']",2023-02-17,17,"['DancingSnow0517', 'PeterStolz@bitahoy', 'colesbury@facebookairesearch', 'comzyh', 'gaogaotiantian@microsoft', 'imba-tjd', 'kianmeng', 'maartenbreddels@maartenbreddels', 'ogrisel@inria', 'tanloong']",5,10,"['bitahoy', 'facebookairesearch', 'inria', 'maartenbreddels', 'microsoft']","['@bitahoy ', '@maartenbreddels', 'Facebook AI Research', 'Inria', 'Microsoft']",,1.06,20,14,31,0,7,30,7,20.0,41.0,90.0,2.0,0,38.85401 +703,util,https://github.com/openai/openai-python,,,,openai/openai-python,openai-python,2991,613,88,Python,,openai-python: The OpenAI Python library provides convenient access to the OpenAI API from applications written in the Python language.,openai,2023-02-21,2020-10-25,121,24.631764705882354,"['openai', 'python']",2023-02-07,43,"['BorisPower', 'borisdayma', 'cmurtz-msft@microsoft', 'ddeville@openai', 'hallacy@openai', 'lilianweng', 'logankilpatrick@openaijulialang', 'mpokrass', 'rachellim@openai', 'sorinsuciu-msft@microsoft']",3,10,"['microsoft', 'openai', 'openaijulialang']","['@OpenAI @JuliaLang', '@openai', '@openai ', 'Microsoft']",,1.31,92,75,28,0,18,21,18,93.0,167.0,90.0,1.8,0,42.6869 +729,ml-dl,https://github.com/mosaicml/composer,,,,mosaicml/composer,composer,2986,193,27,Python,http://docs.mosaicml.com,composer: Train neural networks up to 7x faster,mosaicml,2023-02-21,2021-10-12,71,41.971887550200805,"['deep-learning', 'pytorch', 'neural-networks', 'ml-systems', 'ml-efficiency', 'ml-training', 'machine-learning', 'neural-network']",2023-02-17,60,"['abhi-mosaic@mosaicml', 'bandish-shah', 'dakinggg', 'dependabot[bot]', 'dskhudia', 'eracah@mosaicml', 'hanlint@mosaicml', 'moinnadeem', ""mvpatel2000@stanford'22"", 'ravi-mosaicml']",2,10,"['mosaicml', ""stanford'22""]","['MosaicML', ""Stanford '22""]",,23.0,265,244,17,0,16,21,16,265.0,228.0,90.0,0.9,0,44.68434 +623,util,https://github.com/suor/funcy,,,,suor/funcy,funcy,2971,134,73,Python,,funcy: A fancy and practical functional tools,suor,2023-02-18,2012-10-13,540,5.496035940803383,"['functional-programming', 'utilities', 'python']",2023-02-19,31,"['AndrewWalker', 'Suor', 'browniebroke@festicket', 'despawnerer', 'eprykhodko', 'lukmdo', 'rocco66', 'taleinat', 'timgates42@iress', 'volker48@obsidian-security']",3,10,"['festicket', 'iress', 'obsidian-security']","['@obsidian-security ', 'Festicket', 'IRESS']",,0.29,4,3,126,0,0,5,5,4.0,6.0,90.0,1.5,0,37.72886 +811,ml-ops,https://github.com/ploomber/ploomber,,,,ploomber/ploomber,ploomber,2967,203,26,Python,https://ploomber.io,"ploomber: The fastest ⚡️ way to build data pipelines. Develop iteratively, deploy anywhere. ☁️",ploomber,2023-02-21,2020-01-20,161,18.395925597874225,"['workflow', 'machine-learning', 'data-science', 'data-engineering', 'mlops', 'papermill', 'jupyter', 'jupyter-notebooks', 'pipelines', 'vscode', 'pycharm', 'notebooks']",2023-01-31,72,"['94rain', 'Wxl19980214', 'dependabot[bot]', 'e1ha', 'edublancas@ploomber', 'fferegrino', 'grnnja', 'idomic', 'neelasha23', 'yafimvo']",1,10,['ploomber'],['Ploomber'],,10.35,41,33,38,1,0,35,35,41.0,56.0,90.0,1.4,0,41.29058 +270,web,https://github.com/strawberry-graphql/strawberry,,,,strawberry-graphql/strawberry,strawberry,2966,372,40,Python,https://strawberry.rocks,strawberry: A GraphQL library for Python that leverages type annotations 🍓,strawberry-graphql,2023-02-21,2018-12-21,217,13.623359580052494,"['graphql', 'graphql-server', 'python', 'starlette', 'asyncio', 'mypy', 'django', 'graphql-library', 'asgi', 'graphql-schema', 'strawberry', 'hacktoberfest']",2023-02-19,181,"['BryceBeagle@robinhood', 'DoctorJohn', 'botberry@strawberry-graphql', 'dependabot-preview[bot]', 'dependabot[bot]', 'estyxx@madedotcom', 'jkimbo', 'marcoacierno', 'patrick91@apollographql', 'pre-commit-ci[bot]']",4,10,"['apollographql', 'madedotcom', 'robinhood', 'strawberry-graphql']","['@apollographql ', '@madedotcom', '@strawberry-graphql', 'Robinhood']",,12.08,330,195,51,0,172,124,172,330.0,666.0,90.0,2.0,0,54.53994 +366,ml,https://github.com/facebookresearch/vissl,,,,facebookresearch/vissl,vissl,2956,309,52,Jupyter Notebook,https://vissl.ai,"VISSL is FAIR's library of extensible, modular and scalable components for SOTA Self-Supervised Learning with images.",facebookresearch,2023-02-19,2020-04-09,149,19.725452812202096,[],2022-12-28,34,"['QuentinDuval', 'akainth015', 'amyreese@omnilib', 'bottler', 'growlix@mosaicml', 'iseessel@meta', 'jingli9111@openai', 'mannatsingh@facebook', 'min-xu-ai', 'prigoyal@google']",6,10,"['facebook', 'google', 'meta', 'mosaicml', 'omnilib', 'openai']","['@omnilib ', 'Facebook', 'Google', 'Meta', 'MosaicML', 'OpenAI']",,1.02,12,2,35,2,0,1,1,12.0,22.0,90.0,1.8,0,34.79811 +77,jupyter,https://github.com/quantopian/qgrid,,,,quantopian/qgrid,qgrid,2946,419,89,Python,,"qgrid: An interactive grid for sorting, filtering, and editing DataFrames in Jupyter notebooks",quantopian,2023-02-16,2014-09-30,438,6.723834365829801,[],2020-04-07,30,"['TimShawver', 'andyfaff', 'blink1073@mongodb', 'consideRatio@sundellopensourceconsultingab', 'fhgd', 'greenberga', 'hottwaj', 'itcarroll', 'snth', 'ssanderson']",2,10,"['mongodb', 'sundellopensourceconsultingab']","['MongoDB', 'Sundell Open Source Consulting AB']",,0.0,7,0,102,35,0,3,3,7.0,3.0,90.0,0.4,0,22.79335 +792,ml-dl,https://github.com/facebookincubator/aitemplate,,,,facebookincubator/aitemplate,AITemplate,2944,232,79,Python,,AITemplate is a Python framework which renders neural network into high performance CUDA/HIP C++ code. Specialized for FP16 TensorCore (NVIDIA GPU) and MatrixCore (AMD GPU) inference.,facebookincubator,2023-02-21,2022-07-15,31,92.82882882882883,[],2023-02-21,45,"['antinucleon@facebook', 'chenyang78@meta', 'frank-wei', 'hl475', 'ipiszy@facebook', 'muchulee8', 'qxy11', 'tenpercent', 'terrychenism', 'tissue3@cornelluniversity']",3,10,"['cornelluniversity', 'facebook', 'meta']","['Cornell University', 'Facebook', 'Meta']",,3.08,218,169,7,0,2,3,2,218.0,673.0,90.0,3.1,0,40.09043 +624,util,https://github.com/more-itertools/more-itertools,,,,more-itertools/more-itertools,more-itertools,2943,235,36,Python,https://more-itertools.rtfd.io,"more-itertools: More routines for operating on iterables, beyond itertools",more-itertools,2023-02-21,2012-04-26,564,5.210166919575114,[],2023-01-26,96,"['MarcinKonowalczyk@universityofoxford', 'N8Brooks', 'bbayles@wurlinc', 'diazona', 'erikrose@mozillagoogle', 'ilai-deutel@google', 'jaraco@google', 'jferard', 'michael-celani', 'nanouasyn']",4,10,"['google', 'mozillagoogle', 'universityofoxford', 'wurlinc']","['@google', '@mozilla @google', '@wurlinc ', 'Google', 'University of Oxford']",,1.46,28,13,132,0,3,4,3,28.0,49.0,90.0,1.8,0,44.82288 +704,data,https://github.com/pyeve/cerberus,,,,pyeve/cerberus,cerberus,2938,230,48,Python,http://python-cerberus.org,"cerberus: Lightweight, extensible data validation library for Python",pyeve,2023-02-21,2012-10-10,541,5.430683918669131,"['python', 'data-validation']",2021-05-05,63,"['CD3@forthaysstateuniversity(fhsu)', 'baubie@qreserve', 'calve', 'crunk1', 'dkellner', 'funkyfuture', 'girogiro', 'hvdklauw@zupr-io', 'martijnvermaat', 'nicolaiarocci@cir2000']",4,10,"['cir2000', 'forthaysstateuniversity(fhsu)', 'qreserve', 'zupr-io']","['@zupr-io ', 'CIR 2000', 'Fort Hays State University (FHSU)', 'QReserve Inc.']",,0.0,7,2,126,22,0,2,2,7.0,8.0,90.0,1.1,0,30.76206 +476,gis,https://github.com/holoviz/datashader,1.0,,,holoviz/datashader,datashader,2925,362,95,Python,http://datashader.org,datashader: Quickly and accurately render even the largest data.,holoviz,2023-02-21,2015-12-23,374,7.820855614973262,"['holoviz', 'datashader', 'data-visualizations', 'rasterization']",2023-02-16,52,"['ceball', 'gbrener', 'ianthomas23@anaconda', 'jbcrail', 'jbednar@anaconda', 'jcrist@voltrondata', 'jonmmease@hextechnologies', 'jsignell@azavea', 'maximlt@anaconda', 'philippjfr@anaconda']",4,10,"['anaconda', 'azavea', 'hextechnologies', 'voltrondata']","['@azavea', '@voltrondata', 'Anaconda', 'Anaconda Inc.', 'Anaconda, Inc.', 'Hex Technologies']",,1.88,47,32,87,0,5,14,5,47.0,62.0,90.0,1.3,0,43.46955 +937,ml-dl,https://github.com/williamyang1991/vtoonify,,,,williamyang1991/vtoonify,VToonify,2921,356,61,Jupyter Notebook,,[SIGGRAPH Asia 2022] VToonify: Controllable High-Resolution Portrait Video Style Transfer,williamyang1991,2023-02-21,2022-09-09,23,123.17469879518072,"['face', 'siggraph-asia', 'style-transfer', 'stylegan2', 'toonify', 'video-style-transfer']",2023-02-15,4,"['AK391@huggingface', 'EndlessSora@nanyangtechnologicaluniversity', 'neeksor', 'williamyang1991@ntu']",3,10,"['huggingface', 'nanyangtechnologicaluniversity', 'ntu']","['Huggingface', 'NTU', 'Nanyang Technological University']",,3.21,22,7,6,0,0,0,0,22.0,48.0,90.0,2.2,0,27.00609 +660,ml,https://github.com/pytorch/glow,,,,pytorch/glow,glow,2915,663,155,C++,,glow: Compiler for Neural Network hardware accelerators,pytorch,2023-02-21,2017-09-29,281,10.3473630831643,[],2023-02-02,333,"['artemrakhov-glow', 'bertmaher', 'gcatron', 'jackm321@facebook', 'jfix71', 'nadavrot', 'nickgg', 'opti-mix', 'qcolombet', 'yinghai@facebook']",1,10,['facebook'],"['@facebook ', 'Facebook']",,2.73,28,5,66,1,0,0,0,28.0,43.0,90.0,1.5,0,37.76108 +761,sim,https://github.com/qiskit/qiskit,,,,qiskit/qiskit,qiskit,2896,775,97,OpenQASM,https://qiskit.org,"Qiskit is an open-source SDK for working with quantum computers at the level of circuits, algorithms, and application modules.",qiskit,2023-02-19,2018-12-12,219,13.223744292237443,"['qiskit', 'quantum-computing', 'quantum-programming-language', 'documentation']",2023-02-20,158,"['SooluThomas@ibm', 'delapuente@ibmquantum', 'derivation@ibm', 'diego-plan9@ibmresearch', 'hushaohan@jpmorganchase&co.', 'jakelishman@ibm', 'jaygambetta@ibm', 'mtreinish', 'nonhermitian@ibm', 'qiskit-bot']",4,10,"['ibm', 'ibmquantum', 'ibmresearch', 'jpmorganchase&co.']","['@IBM', '@IBM ', '@IBMQuantum', '@IBMResearch ', 'IBM', 'JPMorgan Chase & Co.']",,1.6,55,30,51,0,16,21,16,57.0,41.0,90.0,0.7,0,45.67915 +709,pandas,https://github.com/nalepae/pandarallel,1.0,,,nalepae/pandarallel,pandarallel,2896,175,26,Python,https://nalepae.github.io/pandarallel,pandarallel: A simple and efficient tool to parallelize Pandas operations on all available CPUs,nalepae,2023-02-21,2019-03-10,206,14.029065743944637,"['pandas', 'python', 'parallel']",2023-02-12,25,"['alvail', 'apahl@mpiofmolecularphysiology(dortmund)', 'bra-fsn', 'dice89@outsmart.aigmbh', 'jorenham@boatboatboat', 'masguit42@intema.ai', 'nalepae@https://www.kiln.fi/', 'till-m@swissdatasciencecenter', 'tobiasedwards', 'vaaaaanquish@caddi']",7,10,"['boatboatboat', 'caddi', 'https://www.kiln.fi/', 'intema.ai', 'mpiofmolecularphysiology(dortmund)', 'outsmart.aigmbh', 'swissdatasciencecenter']","['@SwissDataScienceCenter', 'BoatBoatBoat', 'CADDi inc.', 'INTEMA.AI', 'MPI of Molecular Physiology (Dortmund)', 'https://www.kiln.fi/', 'outsmart.ai GmbH']",,0.96,32,21,48,0,8,10,8,32.0,61.0,90.0,1.9,0,42.88483 +488,util,https://github.com/pydata/xarray,,,,pydata/xarray,xarray,2875,878,106,Python,https://xarray.dev,xarray: N-D labeled arrays and datasets in Python,pydata,2023-02-21,2013-09-30,490,5.863927738927739,"['python', 'netcdf', 'numpy', 'pandas', 'xarray', 'dask']",2023-02-14,411,"['Illviljan', 'clarkfitzg@mathandstatsdepartment', 'dcherian@ncar', 'fmaussion@universityofinnsbruck', 'fujiisoup', 'keewis', 'mathause@iacethzurich', 'max-sixty', 'shoyer@google', 'spencerkclark@allenai/noaa-gfdl']",6,10,"['allenai/noaa-gfdl', 'google', 'iacethzurich', 'mathandstatsdepartment', 'ncar', 'universityofinnsbruck']","['@NCAR', '@allenai / @NOAA-GFDL', '@google ', 'IAC @ ETH Zurich', 'Math and Stats Department', 'University of Innsbruck']",,8.63,314,156,114,0,9,8,9,314.0,666.0,90.0,2.1,0,58.05233 +261,time-series,https://github.com/salesforce/merlion,,,,salesforce/merlion,Merlion,2875,248,46,Python,,Merlion: A Machine Learning Framework for Time Series Intelligence,salesforce,2023-02-20,2021-07-28,82,35.0609756097561,"['time-series', 'anomaly-detection', 'forecasting', 'machine-learning', 'benchmarking', 'automl', 'ensemble-learning']",2023-02-15,14,"['Emerald01@salesforceresearch', 'Shreyanand@redhat', 'aadyotb@salesforce', 'chenghaoliu89', 'cnll0075', 'isenilov@twilio', 'jonwiggins@chartbeatillinoishackny', 'paulkass', 'rafaelleinio@wandercom', 'uchiiii']",6,10,"['chartbeatillinoishackny', 'redhat', 'salesforce', 'salesforceresearch', 'twilio', 'wandercom']","['@Chartbeat @Illinois @hackny', '@Salesforce', '@wandercom', 'Red Hat Inc.', 'Salesforce Research', 'Twilio']",,0.77,15,12,19,0,13,12,13,15.0,10.0,90.0,0.7,0,35.99737 +787,study,https://github.com/cosmicpython/book,,,,cosmicpython/book,book,2865,486,94,Python,https://www.cosmicpython.com,"book: A Book about Pythonic Application Architecture Patterns for Managing Complexity. Cosmos is the Opposite of Chaos you see. O'R. wouldn't actually let us call it ""Cosmic Python"" tho.",cosmicpython,2023-02-20,2019-02-05,211,13.569012178619756,[],2023-02-06,44,"['adrienbrunet', 'bobthemighty@carbon-re', 'daniel-butler', 'gaiachik@madedotcom', 'hjwp', 'katherinetozer', 'luanchang', ""nadamsoreilly@o'reillymedia"", 'susanmade', 'xtaje']",3,10,"['carbon-re', 'madedotcom', ""o'reillymedia""]","['@carbon-re ', '@madedotcom ', ""O'Reilly Media""]",,0.19,1,0,49,0,0,0,0,1.0,0.0,90.0,0.0,0,27.68912 +154,pandas,https://github.com/adamerose/pandasgui,,,,adamerose/pandasgui,PandasGUI,2839,195,55,Python,,PandasGUI: A GUI for Pandas DataFrames,adamerose,2023-02-21,2019-06-12,193,14.709844559585493,"['pandas', 'dataframe', 'gui', 'viewer']",2022-03-16,13,"['John-Ted', 'Marco-Ray', 'SayonB', 'adamerose', 'fdion@dionresearch', 'guilecardoso', 'jmartens', 'mswastik', 'slabko']",1,10,['dionresearch'],['Dion Research LLC'],,0.02,8,3,45,11,0,12,12,8.0,9.0,90.0,1.1,0,24.22223 +170,ml,https://github.com/ourownstory/neural_prophet,,,,ourownstory/neural_prophet,neural_prophet,2793,384,50,Python,https://neuralprophet.com,neural_prophet: NeuralProphet: A simple forecasting package,ourownstory,2023-02-21,2020-05-04,146,19.0927734375,"['forecasting', 'time-series', 'machine-learning', 'fbprophet', 'prophet', 'forecast', 'artificial-intelligence', 'prediction', 'trend', 'seasonality', 'autoregression', 'pytorch', 'timeseries', 'forecasting-algorithm', 'forecasting-model', 'neuralprophet', 'neural', 'neural-network', 'python', 'deep-learning']",2023-02-17,36,"['HansikaPH', 'Kevin-Chen0', 'LeonieFreisinger', 'MateusGheorghe@stanforduniversity', 'alfonsogarciadecorral', 'bhausleitner', 'judussoari', 'karl-richter@technicaluniversityofmunich', 'noxan', 'ourownstory@stanforduniversity']",2,10,"['stanforduniversity', 'technicaluniversityofmunich']","['Stanford University', 'Technical University of Munich']",,6.92,245,157,34,0,8,6,8,245.0,354.0,90.0,1.4,0,42.54581 +203,viz,https://github.com/ml-tooling/opyrator,,,,ml-tooling/opyrator,opyrator,2791,137,48,Python,https://opyrator-playground.mltooling.org,"opyrator: 🪄 Turns your machine learning code into microservices with web API, interactive GUI, and more.",ml-tooling,2023-02-20,2021-04-06,98,28.438136826783115,"['fastapi', 'streamlit', 'pydantic', 'python', 'microservices', 'serverless', 'faas', 'functions', 'python-functions', 'machine-learning', 'deployment', 'type-hints']",2021-05-06,4,"['JopaXd', 'LukasMasuch', 'adriangb', 'raethlein']",0,10,[],[],,0.0,9,4,23,22,0,6,6,9.0,6.0,90.0,0.7,0,12.97685 +641,testing,https://github.com/behave/behave,,,,behave/behave,behave,2769,608,119,Python,,"behave: BDD, Python style.",behave,2023-02-18,2011-10-25,591,4.684146930884485,[],2022-12-19,86,"['Katherinesun@smartsgroupmarketsurveillance,nasdaqomx', 'berdroid', 'bittner@painless-software', 'florentx', 'jeamland', 'jenisys', 'johbo@bo-techgmbh&co.kg', 'msabramo@adobe', 'r1chardj0n3s', 'vrutkovs@redhat']",5,10,"['adobe', 'bo-techgmbh&co.kg', 'painless-software', 'redhat', 'smartsgroupmarketsurveillance,nasdaqomx']","['@adobe', '@painless-software ', 'Red Hat', 'SMARTS Group Market Surveillance, NASDAQ OMX', 'bo-tech GmbH & Co. KG']",,0.83,19,11,138,14,0,1,1,19.0,33.0,90.0,1.7,0,36.51534 +34,nlp,https://github.com/jbesomi/texthero,,,,jbesomi/texthero,texthero,2714,230,43,Python,https://texthero.org,"texthero: Text preprocessing, representation and visualization from zero to hero.",jbesomi,2023-02-19,2020-04-06,150,18.05893536121673,"['text-preprocessing', 'text-representation', 'text-visualization', 'nlp', 'word-embeddings', 'machine-learning', 'text-mining', 'nlp-pipeline', 'text-clustering', 'texthero']",2022-10-28,20,"['ParthGandhi', 'Peritract@sigmalabs', 'cedricconol', 'henrifroese@imctrading', 'ishanarora04', 'jbesomi', 'mk2510@aaltouniversity', 'selimelawwa@incorta', 'sleeper', 'vidyap-xgboost@fiolabs-internal']",5,10,"['aaltouniversity', 'fiolabs-internal', 'imctrading', 'incorta', 'sigmalabs']","['@Incorta ', '@fiolabs-internal ', 'Aalto University', 'IMC Trading', 'Sigma Labs']",,0.04,4,1,35,4,0,2,2,4.0,3.0,90.0,0.8,0,28.15597 +915,util,https://github.com/ets-labs/python-dependency-injector,1.0,,,ets-labs/python-dependency-injector,python-dependency-injector,2685,200,45,Python,https://python-dependency-injector.ets-labs.org/,python-dependency-injector: Dependency injection framework for Python,ets-labs,2023-02-21,2015-01-04,424,6.326152810501514,"['python', 'dependency-injection', 'ioc', 'ioc-container', 'factory', 'singleton', 'design-patterns', 'dependency-injection-container', 'dependency-injection-framework', 'flask', 'aiohttp', 'asyncio', 'python3', 'python-3', 'python-2', 'flask-application', 'flask-restful', 'threadlocal']",2022-12-19,29,"['ebr@brodsky.dev', 'kinow@barcelonasupercomputingcenter', 'kootoopas@nuclearmode', 'metaperl', 'piperubio@silocydataspa', 'rda-dev', 'rmk135@ets-labspythontechnicalleader', 'sonthonaxrk', 'withshubh@tooljet', 'xotonic@lux-core']",7,10,"['barcelonasupercomputingcenter', 'brodsky.dev', 'ets-labspythontechnicalleader', 'lux-core', 'nuclearmode', 'silocydataspa', 'tooljet']","['@LUX-Core ', '@ToolJet', '@ets-labs Python Technical Leader', '@nuclearmode', 'Barcelona Supercomputing Center', 'SilocyData SPA', 'brodsky.dev']",,0.67,40,16,99,2,0,40,40,40.0,37.0,90.0,0.9,0,42.20074 +130,ml-dl,https://github.com/explosion/thinc,,,,explosion/thinc,thinc,2669,270,82,Python,https://thinc.ai,"thinc: 🔮 A refreshing functional take on deep learning, compatible with your favorite libraries",explosion,2023-02-21,2014-10-16,435,6.123566043920026,"['machine-learning', 'deep-learning', 'artificial-intelligence', 'ai', 'python', 'nlp', 'natural-language-processing', 'spacy', 'machine-learning-library', 'type-checking', 'functional-programming', 'pytorch', 'tensorflow', 'mxnet', 'jax']",2023-02-15,61,"['adrianeboyd', 'danieldk@explosion', 'henningpeters', 'honnibal@founderexplosion', 'ines@founderexplosion', 'justindujardin@dujardinconsulting,mathy', 'shadeMe', 'svlandeg@explosion&oxykodit', 'syllog1sm@founderexplosion', 'tiangolo']",4,10,"['dujardinconsulting,mathy', 'explosion', 'explosion&oxykodit', 'founderexplosion']","['@explosion ', 'DuJardin Consulting, @mathy', 'Explosion & OxyKodit', 'Founder @explosion', 'Founder @explosion ']",,3.23,56,48,102,0,13,11,13,56.0,36.0,90.0,0.6,0,45.30759 +111,ml,https://github.com/teamhg-memex/eli5,,,,teamhg-memex/eli5,eli5,2647,326,70,Jupyter Notebook,http://eli5.readthedocs.io,eli5: A library for debugging/inspecting machine learning classifiers and explaining their predictions,teamhg-memex,2023-02-17,2016-09-15,335,7.881327094853254,"['scikit-learn', 'machine-learning', 'xgboost', 'lightgbm', 'crfsuite', 'inspection', 'explanation', 'nlp', 'data-science', 'python']",2020-01-22,14,"['AshwinB-hat', 'ivanprado@www.ivanprado.es', 'jnothman@canva', 'kmike@zytedata,scrapinghub', 'krkd', 'lopuhin@zyte', 'mehaase@infosecandaimitre', 'rg2410@gardeassetmanagement', 'teabolt', 'zzz4zzz']",6,10,"['canva', 'gardeassetmanagement', 'infosecandaimitre', 'www.ivanprado.es', 'zyte', 'zytedata,scrapinghub']","['@zytedata, @ScrapingHub', 'Canva', 'Garde Asset Management', 'Infosec and AI @MITRE', 'Zyte', 'www.ivanprado.es']",,0.0,2,0,78,38,0,4,4,2.0,1.0,90.0,0.5,0,24.11151 +113,nlp,https://github.com/huggingface/neuralcoref,,,,huggingface/neuralcoref,neuralcoref,2647,461,97,C,https://huggingface.co/coref/,neuralcoref: ✨Fast Coreference Resolution in spaCy with Neural Networks,huggingface,2023-02-18,2017-07-03,294,8.994660194174758,"['python', 'machine-learning', 'coreference', 'spacy', 'coreference-resolution', 'spacy-extension', 'spacy-pipeline', 'nlp', 'neural-networks', 'pytorch']",2021-06-22,21,"['Abhijit-2592@mlgoogle', 'Elizabeth2507', 'bgamari@welltypedllp', 'cbiehl', 'janithwanni@universityofsrijayewardenepura', 'julien-c@huggingface', 'ravenscroftj@filamentai', 'shepdl', 'svlandeg@explosion&oxykodit', 'thomwolf@huggingface']",6,10,"['explosion&oxykodit', 'filamentai', 'huggingface', 'mlgoogle', 'universityofsrijayewardenepura', 'welltypedllp']","['@FilamentAI ', '@huggingface ', 'Explosion & OxyKodit', 'ML @Google', 'University of Sri Jayewardenepura', 'Well Typed LLP']",,0.0,5,2,69,20,0,1,1,5.0,3.0,90.0,0.6,0,26.26732 +428,util,https://github.com/pycqa/flake8,,,,pycqa/flake8,flake8,2645,272,34,Python,https://flake8.pycqa.org,"flake8 is a python tool that glues together pycodestyle, pyflakes, mccabe, and third-party plugins to check the style and quality of some python code.",pycqa,2023-02-21,2014-09-13,440,6.003566796368353,"['python', 'python3', 'static-analysis', 'static-code-analysis', 'linter', 'linter-flake8', 'stylelint', 'styleguide', 'style-guide', 'flake8', 'pep8', 'complexity-analysis']",2023-02-14,172,"['asottile', 'carljm@instagram', 'ericvw@bloomberg', 'florentx', 'jdufresne@pioneervalleybooks', 'pre-commit-ci[bot]', 'scop@upcloudltd', 'sigmavirus24@tableau&salesforce', 'tarekziade@elastic', 'xZise']",6,10,"['bloomberg', 'elastic', 'instagram', 'pioneervalleybooks', 'tableau&salesforce', 'upcloudltd']","['@UpCloudLtd ', '@bloomberg ', '@elastic ', '@tableau & @salesforce', 'Instagram', 'Pioneer Valley Books']",,1.73,65,61,103,0,0,10,10,65.0,110.0,90.0,1.7,0,51.1248 +801,data,https://github.com/pallets/itsdangerous,,,,pallets/itsdangerous,itsdangerous,2632,215,57,Python,https://itsdangerous.palletsprojects.com,itsdangerous: Safely pass trusted data to untrusted environments and back.,pallets,2023-02-21,2011-06-24,608,4.323867636704999,"['python', 'security', 'hmac', 'serialization', 'itsdangerous', 'pallets']",2023-02-07,42,"['ThomasWaldmann', 'alanhamlett@wakatime', 'davidism', 'dependabot-preview[bot]', 'dependabot[bot]', 'ft-arnout@fireteam', 'lepture@hsiaoming', 'mitsuhiko@sentry', 'pre-commit-ci[bot]', 'untitaker@getsentry']",5,10,"['fireteam', 'getsentry', 'hsiaoming', 'sentry', 'wakatime']","['@getsentry ', '@hsiaoming ', '@wakatime', 'Fireteam', 'Sentry']",,0.77,16,16,142,0,2,3,2,16.0,1.0,90.0,0.1,0,38.19682 +886,study,https://github.com/huggingface/deep-rl-class,,,,huggingface/deep-rl-class,deep-rl-class,2627,348,86,Jupyter Notebook,,deep-rl-class: This repo contains the syllabus of the Hugging Face Deep Reinforcement Learning Course.,huggingface,2023-02-21,2022-04-21,43,59.899022801302934,"['deep-reinforcement-learning', 'reinforcement-learning', 'reinforcement-learning-excercises', 'deep-learning']",2023-02-15,44,"['Artachtron', 'Mike-Wazowsk1', 'SuperSecureHuman', 'avoroshilov', 'dario248', 'diskshima', 'imflash217', 'osanseviero@huggingface', 'simoninithomas@huggingface', 'theicfire']",1,10,['huggingface'],"['@huggingface', 'Hugging Face']",,10.75,138,104,10,0,0,0,0,138.0,240.0,90.0,1.7,0,34.83132 +539,nlp,https://github.com/huawei-noah/pretrained-language-model,,,,huawei-noah/pretrained-language-model,Pretrained-Language-Model,2626,562,52,Python,,Pretrained-Language-Model: Pretrained language model and its related optimization techniques developed by Huawei Noah's Ark Lab.,huawei-noah,2023-02-21,2019-12-02,168,15.604414261460102,"['knowledge-distillation', 'model-compression', 'quantization', 'pretrained-models', 'large-scale-distributed']",2022-12-25,20,"['ItachiUchihaVictor', 'MiFei', 'ghaddarAbs', 'itsucks', 'jacobrxz@huawei-noah', 'jingmu123', 'jxfeb', 'mengxj08@nationaluniversityofsingapore', 'zbravo', 'zwjyyc@pekingunversity']",3,10,"['huawei-noah', 'nationaluniversityofsingapore', 'pekingunversity']","['@huawei-noah ', 'National University of Singapore', 'Peking unversity']",,0.37,18,4,39,2,0,0,0,18.0,18.0,90.0,1.0,0,28.18862 +85,graph,https://github.com/stellargraph/stellargraph,,,,stellargraph/stellargraph,stellargraph,2625,401,62,Python,https://stellargraph.readthedocs.io/,StellarGraph - Machine Learning on Graphs,stellargraph,2023-02-21,2018-04-13,253,10.346283783783784,"['graphs', 'machine-learning', 'machine-learning-algorithms', 'graph-convolutional-networks', 'networkx', 'geometric-deep-learning', 'saliency-map', 'interpretability', 'heterogeneous-networks', 'graph-neural-networks', 'graph-analysis', 'graph-machine-learning', 'gcn', 'link-prediction', 'stellargraph-library', 'graph-data', 'python', 'deep-learning', 'data-science']",2021-10-29,36,"['PantelisElinas', 'adocherty@exoflare', 'daokunzhang@monashuniversity', 'habiba-h', 'huonw@xoflare', 'kieranricardo', 'kjun9', 'sktzwhj', 'timpitman@exoflare', 'youph@data61']",4,10,"['data61', 'exoflare', 'monashuniversity', 'xoflare']","['@data61 ', '@xoflare ', 'ExoFlare', 'Monash University']",,0.0,20,3,59,16,0,5,5,20.0,16.0,90.0,0.8,0,29.71731 +748,study,https://github.com/zhanymkanov/fastapi-best-practices,,,,zhanymkanov/fastapi-best-practices,fastapi-best-practices,2619,189,51,,,fastapi-best-practices: FastAPI Best Practices and Conventions we used @ hi.peerlink.me,zhanymkanov,2023-02-21,2022-08-09,28,93.06091370558376,"['fastapi', 'best-practices']",2023-01-09,4,"['anton-shum', 'nbanic', 'paulovitorweb', 'zhanymkanov@viaprotocol']",1,10,['viaprotocol'],['@viaprotocol'],,0.87,11,6,7,1,0,0,0,11.0,19.0,90.0,1.7,0,19.58814 +611,debug,https://github.com/inducer/pudb,,,,inducer/pudb,pudb,2594,217,47,Python,https://documen.tician.de/pudb/,pudb: Full-screen console debugger for Python,inducer,2023-02-21,2011-05-13,614,4.21984661863816,"['python', 'debugger', 'pytest', 'pytest-plugin', 'pdb', 'ipython', 'bpython', 'urwid', 'debug']",2023-01-10,91,"['asmeurer@quansight', 'bulletmark', 'epmoyer', 'inducer@scientificcomputing,csuiuc', 'jstriebel@scalableminds', 'mvanderkamp', 'nmichaud', 'swarmer', 'wronglink', 'xywei@uiuc']",4,10,"['quansight', 'scalableminds', 'scientificcomputing,csuiuc', 'uiuc']","['@Quansight ', '@scalableminds', 'Scientific Computing, CS@UIUC', 'UIUC']",,0.75,16,9,143,1,2,6,2,16.0,20.0,90.0,1.2,0,40.25842 +369,nlp,https://github.com/bytedance/lightseq,,,,bytedance/lightseq,lightseq,2591,296,53,C++,,LightSeq: A High Performance Library for Sequence Processing and Generation,bytedance,2023-02-21,2019-12-06,167,15.448892674616696,"['inference', 'transformer', 'beam-search', 'bert', 'cuda', 'sampling', 'diverse-decoding', 'multilingual-nmt', 'training', 'bart', 'gpt', 'accelerate']",2023-02-17,16,"['Anychnn', 'HandH1998@beihanguniversity', 'Taka152@bytedance', 'aachong', 'godweiyang@bytedanceantnlp', 'hexisyztem@bytedance,ailab', 'lileicc@ucsb', 'neopro12@bytedanceailab', 'xingyaoww@universityofillinoisaturbana-champaign', 'zjersey@bytedancethinklab-sjtu']",8,10,"['beihanguniversity', 'bytedance', 'bytedance,ailab', 'bytedanceailab', 'bytedanceantnlp', 'bytedancethinklab-sjtu', 'ucsb', 'universityofillinoisaturbana-champaign']","['@ByteDance @AntNLP', '@bytedance @Thinklab-SJTU', 'Beihang University', 'ByteDance Inc.', 'Bytedance AI Lab', 'Bytedance, AI Lab', 'UCSB', 'University of Illinois at Urbana-Champaign']",,1.31,52,30,39,0,3,4,3,52.0,55.0,90.0,1.1,0,39.81803 +431,viz,https://github.com/holoviz/panel,,,,holoviz/panel,panel,2586,320,48,Python,https://panel.holoviz.org,panel: A high-level app and dashboarding solution for Python,holoviz,2023-02-21,2018-08-23,234,11.010948905109489,"['holoviz', 'panel', 'dashboards', 'control-panels', 'gui', 'dataapp', 'dataviz', 'bokeh', 'datascience', 'holoviews', 'hvplot', 'jupyter', 'matplotlib', 'plotly']",2023-02-21,115,"['Hoxbro', 'MarcSkovMadsen@data,modelsandanalytics', 'ceball', 'dependabot[bot]', 'jbednar@anaconda', 'jlstevens', 'jsignell@azavea', 'maximlt@anaconda', 'philippjfr@anaconda', 'xavArtley@cea']",4,10,"['anaconda', 'azavea', 'cea', 'data,modelsandanalytics']","['@azavea', 'Anaconda', 'Anaconda Inc.', 'Anaconda, Inc.', 'Data, models and analytics', 'cea']",,13.92,549,284,55,0,7,100,7,549.0,691.0,90.0,1.3,0,51.0124 +433,pandas,https://github.com/pydata/pandas-datareader,,,,pydata/pandas-datareader,pandas-datareader,2582,633,138,Python,https://pydata.github.io/pandas-datareader/stable/index.html,pandas-datareader: Extract data from a wide range of Internet sources into a pandas DataFrame.,pydata,2023-02-20,2015-01-15,422,6.106081081081081,"['html', 'data-analysis', 'data', 'dataset', 'stock-data', 'finance', 'financial-data', 'python', 'pydata', 'pandas', 'econdb', 'fama-french', 'economic-data', 'fred']",2022-03-16,85,"['addisonlynch', 'bashtage', 'davidastephens', 'femtotrader', 'gfyoung', 'gliptak', 'hayd', 'simongarisch', 'sinhrks', 'suminb@navercloud']",1,10,['navercloud'],['NAVER Cloud'],,0.04,18,5,99,11,0,3,3,18.0,166.0,90.0,9.2,0,36.57362 +675,ml-dl,https://github.com/saharmor/dalle-playground,,,,saharmor/dalle-playground,dalle-playground,2571,563,29,JavaScript,,dalle-playground: A playground to generate images from any text prompt using Stable Diffusion (past: using DALL-E Mini),saharmor,2023-02-21,2021-09-13,75,34.14990512333966,"['dall-e', 'openai', 'gan', 'text-to-image', 'transformers', 'artificial', 'artificial-intelligence', 'machine-learning', 'dalle', 'dalle-mini', 'stable-diffusion']",2023-02-19,10,"['TheGoddessInari', 'VeXHarbinger@highfalootintechnologycorp.', 'kamalkraj@saamaresearch', 'katlyn', 'randyau@bitly', 'saharmor']",3,10,"['bitly', 'highfalootintechnologycorp.', 'saamaresearch']","['@saamaresearch ', 'Bitly', 'High Falootin Technology Corp.']",,2.21,9,3,18,0,0,0,0,9.0,8.0,90.0,0.9,0,27.90602 +268,jupyter,https://github.com/jupyterlab/jupyterlab-desktop,,,,jupyterlab/jupyterlab-desktop,jupyterlab-desktop,2568,232,42,TypeScript,,"jupyterlab-desktop: JupyterLab desktop application, based on Electron.",jupyterlab,2023-02-21,2017-05-04,302,8.479245283018868,"['jupyterlab', 'jupyter', 'jupyter-notebook']",2023-02-18,34,"['cameronoelsen@google', 'ddavidebor@fermiumlabssrl(fermiumlabs)', 'declanvk', 'dependabot[bot]', 'ellisonbg@amazonwebservices', 'jupyterlab-bot', 'krassowski@universityofoxford|quansight', 'lucbouchard1', 'mbektas@netflix', 'nproctor']",5,10,"['amazonwebservices', 'fermiumlabssrl(fermiumlabs)', 'google', 'netflix', 'universityofoxford|quansight']","['@google', '@netflix', 'Amazon Web Services', 'Fermium LABS srl ( @fermiumlabs )', 'University of Oxford | Quansight']",,6.4,102,65,71,0,10,4,10,102.0,179.0,90.0,1.8,0,47.25502 +159,data,https://github.com/goldsmith/wikipedia,,,,goldsmith/wikipedia,Wikipedia,2563,519,82,Python,https://wikipedia.readthedocs.org/,Wikipedia: A Pythonic wrapper for the Wikipedia API,goldsmith,2023-02-17,2013-08-20,496,5.165850849409733,[],2020-10-09,23,"['RazerM', 'arcolife', 'fusiongyro@nationalradioastronomyobservatory', 'goldsmith@localkitchens', 'imkevinxu', 'infothrill', 'javierprovecho', 'jongoodnow@vistaprint', 'kazuar', 'sachavakili']",3,10,"['localkitchens', 'nationalradioastronomyobservatory', 'vistaprint']","['Local Kitchens', 'National Radio Astronomy Observatory', 'Vistaprint']",,0.0,7,1,116,29,0,0,0,7.0,8.0,90.0,1.1,0,23.98263 +600,gis,https://github.com/giswqs/geemap,,,,giswqs/geemap,geemap,2546,929,98,Python,https://geemap.org,"geemap: A Python package for interactive mapping with Google Earth Engine, ipyleaflet, and ipywidgets.",giswqs,2023-02-20,2020-03-08,154,16.486586493987048,"['google-earth-engine', 'gis', 'remote-sensing', 'image-processing', 'python', 'jupyter-notebook', 'ipyleaflet', 'mapping', 'earth-engine', 'ipywidgets', 'folium', 'jupyter', 'colab', 'geospatial', 'landsat', 'dataviz', 'data-science', 'streamlit', 'streamlit-webapp', 'earthengine']",2023-02-18,36,"['12rambau@faoopenforis', '3r3n-n', 'ErikSeras', 'KMarkert@google', 'cclauss@christianclauss', 'csaybar@emcdestudent', 'giswqs@universityoftennessee', 'karelvancamp', 'ppoon23', 'slowy07@google']",5,10,"['christianclauss', 'emcdestudent', 'faoopenforis', 'google', 'universityoftennessee']","['@google', 'Christian Clauss', 'EMCDE Student', 'FAO @openforis', 'University of Tennessee']",,7.33,55,53,36,0,54,47,54,55.0,80.0,90.0,1.5,0,46.53926 +94,term,https://github.com/urwid/urwid,,,,urwid/urwid,urwid,2538,310,62,Python,urwid.org,urwid: Console user interface library for Python (official repo),urwid,2023-02-18,2010-02-25,677,3.7441517386722865,[],2022-07-12,116,"['and3rson@newfirepartners,mediwareinc,holmusk,unitio-org,urwid', 'aszlig', 'eevee', 'mgiusti', 'pazz', 'tonycpsu', 'tu500', 'ulidtko', 'wackywendell', 'wardi']",1,10,"['newfirepartners,mediwareinc,holmusk,unitio-org,urwid']","['@NewfirePartners, @mediwareinc, @Holmusk, @unitio-org, @urwid']",,0.02,10,2,158,19,0,4,4,10.0,5.0,90.0,0.5,0,28.01359 +98,data,https://github.com/zoomeranalytics/xlwings,,,,zoomeranalytics/xlwings,xlwings,2525,452,119,Python,https://www.xlwings.org,xlwings is a Python library that makes it easy to call Python from Excel and vice versa. It works with Excel on Windows and macOS as well as with Google Sheets and Excel on the web. ,zoomeranalytics,2023-02-19,2014-03-17,466,5.4151348039215685,"['python', 'excel', 'reporting', 'automation', 'googlesheets', 'google-sheets']",2023-02-15,57,"['Colin-b', 'arkottke', 'efreeway', 'ericremoreynolds', 'fzumstein@xlwings', 'kgrudzin', 'knmaki', 'sdementen', 'y2kbugger', 'yuyueugene84@kyosei.ai']",2,10,"['kyosei.ai', 'xlwings']","['Kyosei.ai', 'xlwings']",,4.13,122,97,109,0,28,16,28,122.0,197.0,90.0,1.6,0,47.34912 +553,ml-dl,https://github.com/pytorch/botorch,,,,pytorch/botorch,botorch,2524,304,50,Jupyter Notebook,https://botorch.org/,botorch: Bayesian optimization in PyTorch,pytorch,2023-02-20,2018-07-30,238,10.59232613908873,[],2023-02-17,86,"['Balandat@meta', 'ItsMrLin', 'SebastianAment@meta', 'danielrjiang@facebook', 'dependabot[bot]', 'dme65@facebook', 'esantorella@meta', 'saitcakmak@meta', 'sdaulton@meta', 'wjmaddox']",2,10,"['facebook', 'meta']","['@Facebook', '@Meta', 'Facebook', 'Meta']",,6.79,203,159,56,0,12,7,12,203.0,825.0,90.0,4.1,0,49.81008 +845,time-series,https://github.com/tdameritrade/stumpy,,,,tdameritrade/stumpy,stumpy,2523,247,53,Python,https://stumpy.readthedocs.io/en/latest/,STUMPY is a powerful and scalable Python library for modern time series analysis,tdameritrade,2023-02-20,2019-05-03,198,12.696621135873473,"['data-science', 'time-series-analysis', 'dask', 'numba', 'python', 'anomaly-detection', 'pattern-matching', 'pydata', 'matrix-profile', 'motif-discovery', 'time-series-segmentation', 'time-series-data-mining']",2023-02-16,32,"['0xflotus', 'Attol8', 'NimaSarajpoor', 'SaVoAMP', 'alvii147', 'bdice@nvidia', 'bfattori-TDA@tdameritrade', 'cuichenli@dashbase/appdynamics/cisco', 'mihailescum', 'seanlaw']",3,10,"['dashbase/appdynamics/cisco', 'nvidia', 'tdameritrade']","['@NVIDIA', '@TDAmeritrade', '@dashbase / @AppDynamics / @Cisco']",,3.4,54,35,46,0,2,7,2,54.0,172.0,90.0,3.2,0,41.72119 +809,web,https://github.com/fastapi-users/fastapi-users,,,,fastapi-users/fastapi-users,fastapi-users,2493,247,34,Python,https://fastapi-users.github.io/fastapi-users/,fastapi-users: Ready-to-use and customizable users management for FastAPI,fastapi-users,2023-02-21,2019-10-05,176,14.118932038834952,"['python', 'starlette', 'fastapi', 'async', 'asyncio', 'users', 'fastapi-users']",2023-02-14,54,"['Hazedd', 'allcontributors[bot]', 'bkis@dh-cologne', 'davidbrochart@quantstack', 'dependabot-preview[bot]', 'frankie567@beemydesk', 'matyasrichter@fitctuinprague', 'nullhack', 'rnd42@intelepeer', 'yezz123@yezz.']",6,10,"['beemydesk', 'dh-cologne', 'fitctuinprague', 'intelepeer', 'quantstack', 'yezz.']","['@BeeMyDesk', '@DH-Cologne', '@QuantStack', 'FIT CTU in Prague', 'IntelePeer', 'Yezz LLC.']",,2.33,10,10,41,0,22,28,22,10.0,14.0,90.0,1.4,0,44.45805 +708,ml,https://github.com/mljar/mljar-supervised,,,,mljar/mljar-supervised,mljar-supervised,2469,323,43,Python,https://mljar.com,"mljar-supervised: Python package for AutoML on Tabular Data with Feature Engineering, Hyper-Parameters Tuning, Explanations and Automatic Documentation",mljar,2023-02-21,2018-11-05,224,11.00828025477707,"['automl', 'machine-learning', 'automatic-machine-learning', 'mljar', 'data-science', 'scikit-learn', 'hyperparameter-optimization', 'feature-engineering', 'xgboost', 'random-forest', 'neural-network', 'lightgbm', 'catboost', 'ensemble', 'tuning-algorithm', 'models-tuning', 'hyper-parameters', 'decision-tree', 'shap', 'automated-machine-learning']",2022-12-30,20,"['DanielR59', 'SuryaThiru', 'abtheo@otterclamfinance', 'aplonska@mljar', 'diogosilva30', 'neilmehta31@bitspilanihyderabadcampus', 'partrita@biomega', 'pplonski@mljar', 'shahules786', 'uditswaroopa@blockframenft']",5,10,"['biomega', 'bitspilanihyderabadcampus', 'blockframenft', 'mljar', 'otterclamfinance']","['@mljar', 'BITS Pilani Hyderabad Campus', 'Biomega', 'OtterClam Finance', 'blockframenft']",,0.4,26,13,52,2,4,12,4,26.0,62.0,90.0,2.4,0,36.98301 +907,ml,https://github.com/rucaibox/recbole,,,,rucaibox/recbole,RecBole,2464,450,40,Python,https://recbole.io/,"RecBole: A unified, comprehensive and efficient recommendation library",rucaibox,2023-02-21,2020-06-11,140,17.49290060851927,"['recommender-systems', 'collaborative-filtering', 'knowledge-graph', 'ctr-prediction', 'deep-learning', 'pytorch', 'graph-neural-networks', 'sequential-recommendation', 'recommendations', 'recommendation-system', 'recommender']",2023-02-17,59,"['2017pxy@renminuniversityofchina', 'ShanleiMu@renminuniversityofchina', 'Sherry-XLL@renminuniversityofchina', 'Wicknight', 'chenyushuo', 'chenyuwuxin', 'guijiql@bupt', 'hyp1231@renminuniversityofchina', 'linzihan-backforward@renminuniversityofchina', 'tsotfsk@bupt']",2,10,"['bupt', 'renminuniversityofchina']","['BUPT', 'Renmin University of China']",,8.67,537,492,33,0,3,3,3,537.0,236.0,90.0,0.4,0,41.74203 +735,data,https://github.com/ibis-project/ibis,1.0,,,ibis-project/ibis,ibis,2453,391,75,Python,https://ibis-project.org,ibis: Expressive analytics in Python at any scale.,ibis-project,2023-02-21,2015-04-17,409,5.987099023709902,"['python', 'impala', 'pandas', 'database', 'clickhouse', 'postgresql', 'sqlite', 'mysql', 'datafusion', 'sql', 'pyspark', 'dask', 'duckdb', 'bigquery', 'pyarrow', 'mssql', 'polars', 'snowflake', 'trino']",2023-02-21,126,"['cpcloud@voltrondata', 'datapythonista', 'gforsyth@voltrondata', 'ibis-squawk-bot[bot]', 'jcrist@voltrondata', 'krzysztof-kwitt', 'kszucs@voltron-data/ursa-computing', 'renovate[bot]', 'wesm@voltrondata', 'xmnlab@xmnlab']",3,10,"['voltron-data/ursa-computing', 'voltrondata', 'xmnlab']","['@voltron-data / @ursa-computing', '@voltrondata', 'Voltron Data', 'xmnlab']",,50.37,778,706,96,0,7,5,7,778.0,1515.0,90.0,1.9,0,55.47232 +814,data,https://github.com/deepchecks/deepchecks,,,,deepchecks/deepchecks,deepchecks,2436,173,12,Python,https://docs.deepchecks.com,Deepchecks - Tests for Continuous Validation of ML Models & Data. Deepchecks is a Python package for comprehensively validating your machine learning models and data with minimal effort.,deepchecks,2023-02-21,2021-10-11,71,34.17234468937876,"['machine-learning', 'ml', 'model-validation', 'data-validation', 'mlops', 'data-science', 'python', 'jupyter-notebook', 'model-monitoring', 'data-drift', 'html-report', 'deep-learning', 'pytorch', 'pandas-dataframe']",2023-02-21,40,"['ItayGabbay', 'JKL98ISR', 'Nadav-Barak', 'TheSolY', 'benisraeldan', 'matanper', 'nirhutnik@deepchecks', 'noamzbr@deepchecks', 'shir22', 'yromanyshyn@starnavi']",2,10,"['deepchecks', 'starnavi']","['@deepchecks ', 'Deepchecks', 'starnavi']",,12.52,361,143,17,0,21,36,21,361.0,136.0,90.0,0.4,0,41.61969 +944,ml,https://github.com/thudm/cogvideo,,,,thudm/cogvideo,CogVideo,2435,224,90,Python,,"Text-to-video generation. The repo for ICLR2023 paper ""CogVideo: Large-scale Pretraining for Text-to-Video Generation via Transformers""",thudm,2023-02-21,2022-05-29,38,63.36431226765799,[],2022-11-17,4,"['AK391@huggingface', 'mallorbc@brillibits', 'wenyihong']",2,10,"['brillibits', 'huggingface']","['Brillibits', 'Huggingface']",,0.38,9,4,9,3,0,0,0,9.0,14.0,90.0,1.6,0,19.38862 +136,nlp,https://github.com/ddangelov/top2vec,,,,ddangelov/top2vec,Top2Vec,2428,336,38,Python,,"Top2Vec learns jointly embedded topic, document and word vectors.",ddangelov,2023-02-21,2020-03-20,152,15.898971000935454,"['topic-modeling', 'word-embeddings', 'document-embedding', 'topic-vector', 'topic-search', 'text-search', 'text-semantic-similarity', 'topic-modelling', 'semantic-search', 'bert', 'top2vec', 'sentence-transformers', 'sentence-encoder', 'pre-trained-language-models']",2023-01-26,2,"['ddangelov', 'gclen']",0,10,[],[],,0.21,24,11,36,1,2,7,2,24.0,26.0,90.0,1.1,0,19.56539 +172,viz,https://github.com/facebookresearch/hiplot,,,,facebookresearch/hiplot,hiplot,2420,123,29,TypeScript,https://facebookresearch.github.io/hiplot/,HiPlot makes understanding high dimensional data easy,facebookresearch,2023-02-19,2019-11-08,171,14.093178036605657,[],2022-12-05,8,"['GoldenCorgi', 'LiewYouSheng', 'callistachang', 'danthe3rd', 'dependabot[bot]', 'dmitryvinn@engineeringmanagerai/mlmeta', 'louismartin', 'nzw0301@ibm']",2,10,"['engineeringmanagerai/mlmeta', 'ibm']","['@ibm', 'Engineering Manager AI/ML@Meta']",,0.31,6,2,40,3,0,12,12,6.0,11.0,90.0,1.8,0,28.6783 +51,testing,https://github.com/nedbat/coveragepy,,,,nedbat/coveragepy,coveragepy,2391,342,28,Python,https://coverage.readthedocs.io,coveragepy: The code coverage tool for Python,nedbat,2023-02-20,2018-06-23,243,9.81642228739003,[],2023-02-15,145,"['AndrewHoos', 'blueyed@freelancer,upforhire', 'brettcannon@microsoft', 'dependabot[bot]', 'dstanek', 'ionelmc', 'jdufresne@pioneervalleybooks', 'msabramo@adobe', 'nedbat', 'strichter@shoobx']",5,10,"['adobe', 'freelancer,upforhire', 'microsoft', 'pioneervalleybooks', 'shoobx']","['@adobe', '@microsoft ', 'Freelancer, up for hire', 'Pioneer Valley Books', 'Shoobx, Inc.']",,9.69,116,64,57,0,17,25,17,116.0,294.0,90.0,2.5,0,53.19983 +174,util,https://github.com/liiight/notifiers,,,,liiight/notifiers,notifiers,2387,92,33,Python,http://notifiers.readthedocs.io/,notifiers: The easy way to send notifications,liiight,2023-02-21,2017-06-01,298,7.987093690248566,"['python', 'notifications', 'notifier', 'notification-service', 'python3', 'pypi']",2022-07-14,19,"['Conight', 'JonShedden', 'alonm-totango@totango', 'darora-zipline', 'delirious-lettuce', 'dependabot-preview[bot]', 'dependabot[bot]', 'liiight', 'pre-commit-ci[bot]', 'pyup-bot@pyupio']",2,10,"['pyupio', 'totango']","['@pyupio', '@totango ']",,0.29,4,1,70,7,0,5,5,4.0,1.0,90.0,0.2,0,25.01699 +296,sim,https://github.com/openai/mujoco-py,,,,openai/mujoco-py,mujoco-py,2383,740,166,Cython,,"mujoco-py: MuJoCo is a physics engine for detailed, efficient rigid body simulations with contacts. mujoco-py allows using MuJoCo from Python 3.",openai,2023-02-20,2016-04-24,356,6.685771543086172,[],2022-11-17,33,"['MillionIntegrals@millionintegrals', 'aray-openai@openai', 'bayesian', 'gdb', 'jonasschneider', 'machinaut@openai', 'roboticsdashboard', 'tlbtlbtlb@umbrellaresearch', 'welinder@openai', 'wojzaremba']",3,10,"['millionintegrals', 'openai', 'umbrellaresearch']","['@openai', 'Million Integrals', 'Umbrella Research']",,0.02,27,2,83,3,0,1,1,27.0,23.0,90.0,0.9,0,31.06617 +129,viz,https://github.com/holoviz/holoviews,,,,holoviz/holoviews,holoviews,2378,370,61,Python,https://holoviews.org,"holoviews: With Holoviews, your data visualizes itself.",holoviz,2023-02-19,2014-05-07,459,5.180827886710239,"['holoviz', 'holoviews', 'plotting']",2023-02-18,131,"['Hoxbro', 'ahuang11@prefect!', 'basnijholt@microsoft', 'ceball', 'jbednar@anaconda', 'jlstevens', 'jonmmease@hextechnologies', 'maximlt@anaconda', 'philippjfr@anaconda', 'poplarShift@apn']",5,10,"['anaconda', 'apn', 'hextechnologies', 'microsoft', 'prefect!']","['@Microsoft', 'APN', 'Anaconda', 'Anaconda Inc.', 'Anaconda, Inc.', 'Hex Technologies', 'Prefect!']",,3.12,182,85,107,0,6,41,6,182.0,278.0,90.0,1.5,0,50.21171 +696,ml-dl,https://github.com/deepmind/dm-haiku,,,,deepmind/dm-haiku,dm-haiku,2374,200,39,Python,https://dm-haiku.readthedocs.io,dm-haiku: JAX-based neural network library,deepmind,2023-02-21,2020-02-18,157,15.107272727272727,"['machine-learning', 'neural-networks', 'jax', 'deep-learning', 'deep-neural-networks']",2023-02-20,69,"['8bitmp3@tensorflow,jax,flax', 'CreativeEntropy@googledeepmind', 'LenaMartens', 'aslanides@deepmind', 'chris-chris', 'hamzamerzic@googledeepmind', 'inoryy@deepmind', 'joaogui1', 'tomhennigan@deepmind', 'trevorcai@openai']",4,10,"['deepmind', 'googledeepmind', 'openai', 'tensorflow,jax,flax']","['@DeepMind', '@deepmind', '@openai', 'Google DeepMind', 'tensorflow, jax, flax']",,2.54,42,33,37,0,3,4,3,42.0,26.0,90.0,0.6,0,40.21053 +145,ml,https://github.com/nmslib/hnswlib,,,,nmslib/hnswlib,hnswlib,2363,433,62,C++,https://github.com/nmslib/hnswlib,hnswlib: Header-only C++/python library for fast approximate nearest neighbors,nmslib,2023-02-21,2017-07-06,293,8.041322314049587,[],2023-02-05,65,"['dbespalov', 'dyashuni@josh', 'groodt', 'jlmelville', 'kishorenc', 'marekhanus', 'orrorcol', 'piem@aubio', 'slice4e@intel', 'yurymalkov@twittercortex']",4,10,"['aubio', 'intel', 'josh', 'twittercortex']","['@aubio', 'Intel', 'Josh', 'Twitter Cortex']",,0.81,23,13,69,1,1,2,1,23.0,12.0,90.0,0.5,0,36.17746 +858,jupyter,https://github.com/jupyter/nbdime,,,,jupyter/nbdime,nbdime,2362,155,43,Python,http://nbdime.readthedocs.io,nbdime: Tools for diffing and merging of Jupyter notebooks.,jupyter,2023-02-18,2015-11-16,379,6.227495291902072,"['jupyterlab-extension', 'jupyter', 'jupyter-notebook', 'diff', 'diffing', 'merge', 'git', 'hg', 'mercurial', 'mergetool', 'merge-driver', 'vcs', 'version-control']",2023-01-15,43,"['ajbozarth@ibmcodait', 'baldwint@cascadedatalabs', 'fcollonval@quantstack', 'gahjelle@realpython', 'itamarst', 'krassowski@universityofoxford|quansight', 'minrk@simularesearchlaboratory', 'singingwolfboy', 'vidartf', 'willingc@willingconsulting']",7,10,"['cascadedatalabs', 'ibmcodait', 'quantstack', 'realpython', 'simularesearchlaboratory', 'universityofoxford|quansight', 'willingconsulting']","['@QuantStack', '@realpython ', 'Cascade Data Labs', 'IBM CODAIT', 'Simula Research Laboratory', 'University of Oxford | Quansight', 'Willing Consulting']",,0.19,23,8,88,1,0,9,9,23.0,21.0,90.0,0.9,0,40.80868 +691,ml-dl,https://github.com/nerdyrodent/vqgan-clip,,,,nerdyrodent/vqgan-clip,VQGAN-CLIP,2358,408,53,Python,,"VQGAN-CLIP: Just playing with getting VQGAN+CLIP running locally, rather than having to use colab.",nerdyrodent,2023-02-21,2021-07-02,85,27.51,"['text2image', 'text-to-image']",2022-10-02,7,"['DrJKL', 'caladri@azéotropecanada', 'microraptor', 'nerdyrodent', 'smn57', 'thehappydinoa@censys']",2,10,"['azéotropecanada', 'censys']","['@censys ', 'Azéotrope Canada Inc.']",,0.08,6,3,20,5,0,0,0,6.0,4.0,90.0,0.7,0,18.8917 +875,perf,https://github.com/ipython/ipyparallel,,,,ipython/ipyparallel,ipyparallel,2356,962,120,Jupyter Notebook,https://ipyparallel.readthedocs.io/,ipyparallel: IPython Parallel: Interactive Parallel Computing in Python,ipython,2023-02-20,2015-04-09,410,5.7343532684283725,"['parallel', 'jupyter', 'python']",2023-02-08,112,"['Carreau@quansight-labs', 'blink1073@mongodb', 'ellisonbg@amazonwebservices', 'fperez@universityofcalifornia,berkeley.', 'ivanov', 'minrk@simularesearchlaboratory', 'pre-commit-ci[bot]', 'sahil1105', 'takluyver', 'tomoboy@ardoq']",6,10,"['amazonwebservices', 'ardoq', 'mongodb', 'quansight-labs', 'simularesearchlaboratory', 'universityofcalifornia,berkeley.']","['@Quansight-Labs', '@ardoq ', 'Amazon Web Services', 'MongoDB', 'Simula Research Laboratory', 'University of California, Berkeley.']",,2.04,5,5,96,0,0,7,7,5.0,0.0,90.0,0.0,0,41.90857 +755,ml,https://github.com/marqo-ai/marqo,,,,marqo-ai/marqo,marqo,2340,90,26,Python,https://www.marqo.ai/,marqo: Tensor search for humans.,marqo-ai,2023-02-21,2022-08-01,29,79.90243902439025,"['deep-learning', 'information-retrieval', 'machinelearning', 'vector-search', 'tensor-search', 'clip', 'multi-modal', 'search-engine', 'transformers', 'vision-language', 'machine-learning', 'semantic-search', 'visual-search', 'natural-language-processing', 'hnsw', 'knn', 'hacktoberfest', 'chatgpt', 'gpt', 'large-language-models']",2023-02-21,21,"['Jeadie@marqo-ai', 'MichalLuck', 'VitusAcabado@marqo.ai', 'aryanagarwal9', 'danyilq', 'jn2clark', 'pandu-k', 'tomhamer@marqo-ai', 'vicilliar', 'wanliAlex']",2,10,"['marqo-ai', 'marqo.ai']","['@marqo-ai', '@marqo-ai ', '@marqo.ai']",,12.75,179,121,7,0,9,16,9,179.0,217.0,90.0,1.2,0,37.85297 +246,util,https://github.com/pyston/pyston,,,,pyston/pyston,pyston,2325,84,33,Python,https://www.pyston.org/,pyston: A faster and highly-compatible implementation of the Python programming language.,pyston,2023-02-21,2021-03-01,103,22.510373443983404,[],2022-11-23,1035,"['benjaminp', 'birkenfeld@fzjülich', 'freddrake@keepertech', 'gvanrossum@microsoft', 'jackjansen@centrumvoorwiskundeeninformatica', 'loewis', 'pitrou', 'rhettinger@mutableminds', 'serhiy-storchaka@neu.ro', 'vstinner@redhatofficial']",7,10,"['centrumvoorwiskundeeninformatica', 'fzjülich', 'keepertech', 'microsoft', 'mutableminds', 'neu.ro', 'redhatofficial']","['@RedHatOfficial', '@keepertech ', 'Centrum voor Wiskunde en Informatica', 'FZ Jülich', 'Microsoft', 'Mutable Minds, Inc.', 'Neu.ro']",,3.23,23,9,24,3,3,239,3,21.0,27.0,90.0,1.3,0,46.12774 +947,nlp,https://github.com/microsoft/biogpt,,,,microsoft/biogpt,BioGPT,2305,196,45,Python,,microsoft/biogpt,microsoft,2023-02-21,2022-08-15,27,84.47643979057591,[],2023-02-13,9,"['AH-Merii@silencetherapeutics', 'bbennett80', 'cybersaksham', 'eltociear@bandism', 'katielink@huggingface', 'kurt-biorender', 'microsoftopensource@microsoft', 'renqianluo@microsoft', 'yuta519']",4,10,"['bandism', 'huggingface', 'microsoft', 'silencetherapeutics']","['@bandism ', '@huggingface ', 'Microsoft', 'Silence Therapeutics']",,0.62,56,26,6,0,0,0,0,56.0,93.0,90.0,1.7,0,29.13536 +724,util,https://github.com/ashleve/lightning-hydra-template,,,,ashleve/lightning-hydra-template,lightning-hydra-template,2285,389,20,Python,,lightning-hydra-template: PyTorch Lightning + Hydra. A very user-friendly template for rapid and reproducible ML experimentation with best practices. ⚡🔥⚡,ashleve,2023-02-20,2020-11-04,120,19.041666666666668,"['pytorch-lightning', 'wandb', 'project-structure', 'config', 'deep-learning', 'hydra', 'template', 'pytorch', 'reproducibility', 'best-practices', 'neptune', 'mlflow', 'tensorboard', 'comet', 'mlops']",2023-02-11,27,"['Adizx12', 'CharlesGaydon', 'amorehead@universityofmissouri', 'ashleve', 'atong01@mila;udem', 'dependabot[bot]', 'elisim', 'eungbean@diml,yonseiuniv.', 'nils-werner', 'yipliu@hunanuniversity']",4,10,"['diml,yonseiuniv.', 'hunanuniversity', 'mila;udem', 'universityofmissouri']","['DIML, Yonsei Univ.', 'Hunan University', 'Mila; UdeM', 'University of Missouri']",,2.88,88,71,28,0,4,4,4,88.0,99.0,90.0,1.1,0,39.74508 +308,util,https://github.com/legrandin/pycryptodome,,,,legrandin/pycryptodome,pycryptodome,2268,417,59,C,https://www.pycryptodome.org,pycryptodome: A self-contained cryptographic library for Python,legrandin,2023-02-21,2014-05-02,459,4.9334990677439405,"['cryptography', 'security', 'python']",2023-01-28,134,"['Legrandin', 'akuchling', 'dlitz', 'hugovk@nordsoftware', 'mchlnix@none', 'mitchellrj', 'roughconsensusandrunningcode', 'sebastinas@aitaustrianinstituteoftechnology', 'stefanor@freexian,debian,ubuntu', 'thorsteneb@cisco']",5,10,"['aitaustrianinstituteoftechnology', 'cisco', 'freexian,debian,ubuntu', 'none', 'nordsoftware']","['AIT Austrian Institute of Technology', 'Cisco', 'Freexian, Debian, Ubuntu', 'None', 'Nord Software']",,2.27,94,76,107,1,4,12,4,94.0,120.0,90.0,1.3,0,46.69648 +253,ml,https://github.com/microsoft/flaml,,,,microsoft/flaml,FLAML,2265,348,40,Jupyter Notebook,https://microsoft.github.io/FLAML/,FLAML: A fast library for AutoML and tuning. Join our Discord: https://discord.gg/Cppx2vSPVP.,microsoft,2023-02-21,2020-08-20,130,17.308951965065503,"['automl', 'hyperparam', 'automated-machine-learning', 'machine-learning', 'data-science', 'python', 'jupyter-notebook', 'hyperparameter-optimization', 'random-forest', 'scikit-learn', 'deep-learning', 'natural-language-processing', 'natural-language-generation', 'timeseries-forecasting', 'classification', 'regression', 'tuning', 'finetuning', 'tabular-data']",2023-02-20,61,"['Anonymous-submission-repo', 'dependabot[bot]', 'gianpd', 'int-chaos', 'jingdong00', 'liususan091219@stevensinstituteoftechnology', 'qingyun-wu@pennsylvaniastateuniversity', 'royninja@alletec', 'skzhang1', 'sonichi@microsoft']",4,10,"['alletec', 'microsoft', 'pennsylvaniastateuniversity', 'stevensinstituteoftechnology']","['Alletec', 'Microsoft', 'Pennsylvania State University', 'Stevens Institute of Technology']",,4.79,121,70,30,0,19,21,19,121.0,187.0,90.0,1.5,0,46.20855 +878,time-series,https://github.com/nixtla/statsforecast,,,,nixtla/statsforecast,statsforecast,2233,138,18,Python,https://nixtla.github.io/statsforecast/,statsforecast: Lightning ⚡️ fast forecasting with statistical and econometric models.,nixtla,2023-02-21,2021-11-24,65,34.353846153846156,"['time-series', 'statistics', 'forecasting', 'arima', 'econometrics', 'machine-learning', 'python', 'exponential-smoothing', 'ets', 'baselines', 'predictions', 'naive', 'seasonal-naive', 'fbprophet', 'prophet', 'neuralprophet', 'mstl', 'theta', 'automl', 'data-science']",2023-02-21,18,"['FedericoGarza@nixtla', 'JeroenPeterBos', 'MMenchero', 'allcontributors[bot]', 'cchallu', 'goodwanghan', 'jmoralez@nubank', 'kdgutier', 'mergenthaler@nixtla', 'sugatoray@universityofwisconsin-milwaukee']",3,10,"['nixtla', 'nubank', 'universityofwisconsin-milwaukee']","['@Nixtla', '@nubank', 'Nixtla', 'University of Wisconsin - Milwaukee']",,15.83,98,76,15,0,22,20,22,98.0,108.0,90.0,1.1,0,41.46243 +458,ml-dl,https://github.com/nebuly-ai/nebullvm,,,,nebuly-ai/nebullvm,nebullvm,2232,126,26,Python,https://www.nebuly.com/,nebullvm: Plug and play modules to optimize the performances of your AI systems 🚀,nebuly-ai,2023-02-21,2022-02-12,53,41.664,"['deep-learning', 'pytorch', 'onnx', 'machine-learning', 'tensorflow', 'tvm', 'openvino', 'tensorrt', 'huggingface', 'compiler', 'computing', 'inference', 'neural-network', 'pypi', 'quantization', 'edge-computing', 'gpu', 'optimization', 'transformers']",2023-02-15,23,"['ZecchinLeonardo', 'arianGh1@kharazmiuniversity', 'aurimgg', 'cyclotomicextension', 'diegofiori@nebuly|epfl', 'eltociear@bandism', 'emilecourthoud@nebuly|ethzurich', 'francis-oss@nebuly-ai|mit', 'nebuly-ai@nebuly-ai', 'valeriosofi@nebuly']",7,10,"['bandism', 'kharazmiuniversity', 'nebuly', 'nebuly-ai', 'nebuly-ai|mit', 'nebuly|epfl', 'nebuly|ethzurich']","['@bandism ', '@nebuly-ai', '@nebuly-ai | MIT', 'Kharazmi University', 'Nebuly', 'Nebuly | EPFL', 'Nebuly | ETH Zurich']",,5.73,88,56,12,0,21,21,21,88.0,91.0,90.0,1.0,0,42.87075 +965,ml-dl,https://github.com/danielegrattarola/spektral,,,,danielegrattarola/spektral,spektral,2231,333,43,Python,https://graphneural.network,spektral: Graph Neural Networks with Keras and Tensorflow 2.,danielegrattarola,2023-02-20,2019-01-17,213,10.432197728790916,"['graph-neural-networks', 'keras', 'python', 'tensorflow', 'tensorflow2', 'graph-deep-learning', 'deep-learning']",2023-02-11,26,"['AlexandrMelnic', 'FilippoMB@uitthearcticuniversityofnorway', 'JackMaguire@universityofnorthcarolinaatchapelhill', 'LeviBorodenko', 'cclauss@christianclauss', 'cgarciae@quansight', 'danielegrattarola', 'djpetti', 'jackd@universityofmelbourne', 'kmader']",5,10,"['christianclauss', 'quansight', 'uitthearcticuniversityofnorway', 'universityofmelbourne', 'universityofnorthcarolinaatchapelhill']","['Christian Clauss', 'Quansight', 'UiT the Arctic University of Norway', 'University of Melbourne', 'University of North Carolina at Chapel Hill']",,1.29,16,6,50,0,2,1,2,16.0,43.0,90.0,2.7,0,39.76477 +540,nlp,https://github.com/salesforce/codegen,,,,salesforce/codegen,CodeGen,2223,169,43,Python,,CodeGen is an open-source model for program synthesis. Trained on TPU-v4. Competitive with OpenAI Codex.,salesforce,2023-02-21,2022-03-28,47,47.012084592145015,"['programsynthesis', 'generativemodel', 'codex', 'languagemodel', 'llm', 'tpu-acceleration']",2022-12-01,7,"['LowinLi', 'bpucla', 'enijkamp', 'jimjag', 'jsoref@garnercorp', 'rooa', 'vlomshakov']",1,10,['garnercorp'],['@GarnerCorp '],,0.83,14,5,11,3,0,0,0,14.0,27.0,90.0,1.9,0,20.49486 +710,pandas,https://github.com/jmcarpenter2/swifter,,,,jmcarpenter2/swifter,swifter,2216,99,29,Python,,swifter: A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner,jmcarpenter2,2023-02-21,2018-04-07,254,8.704826038159371,"['pandas', 'pandas-dataframe', 'parallel-computing', 'parallelization', 'dask', 'modin']",2022-08-16,17,"['CrafterKolyan', 'MichaelKarpe@next-gate-tech', 'apurvis', 'def-mycroft', 'devin-petersohn@ponder', 'dhendo@freshrelevance', 'jmcarpenter2@manifoldai', 'openafox', 'tcbegley@facebook', 'toddrme2178']",5,10,"['facebook', 'freshrelevance', 'manifoldai', 'next-gate-tech', 'ponder']","['@facebook', '@manifoldai ', '@next-gate-tech', 'Fresh Relevance', 'Ponder']",,0.38,6,2,59,6,0,17,17,6.0,7.0,90.0,1.2,0,33.20131 +807,web,https://github.com/flipkart-incubator/astra,,,,flipkart-incubator/astra,Astra,2177,360,85,Python,,Astra: Automated Security Testing For REST API's,flipkart-incubator,2023-02-21,2018-01-10,267,8.153558052434457,"['security', 'restapiautomation', 'python', 'owasp', 'penetration-testing-framework', 'postman-collection', 'ci-cd', 'sdlc', 'penetration-testing', 'security-automation']",2023-02-16,12,"['Anemone95@aarhusuni', 'ankurbhargava87f', 'disenchant', 'gajjar8055', 'harsh-groverfk', 'mohangcsm@myntradesignspvtltd', 'prajal', 'royingantaginting@gdp-admin', 'sagarpo']",3,10,"['aarhusuni', 'gdp-admin', 'myntradesignspvtltd']","['@GDP-ADMIN ', 'AarhusUni', 'Myntra Designs Pvt Ltd']",,0.02,6,0,62,0,0,0,0,6.0,3.0,90.0,0.5,0,27.14899 +617,testing,https://github.com/pytest-dev/pytest-testinfra,,,,pytest-dev/pytest-testinfra,pytest-testinfra,2159,321,82,Python,https://testinfra.readthedocs.io,pytest-testinfra: Testinfra test your infrastructures,pytest-dev,2023-02-20,2015-03-15,414,5.209582902447432,"['python', 'testing', 'infrastructure-as-code', 'devops', 'tdd', 'nagios', 'docker', 'tdd-utilities', 'testing-tools', 'devops-tools', 'infrastructure-testing', 'saltstack', 'chef', 'puppet', 'ansible', 'kubernetes', 'pytest-plugin']",2023-01-11,123,"['BenoitKnecht', 'atombrella', 'dcermak@suse', 'gtmanfred@autodesk', 'ianw', 'jesselang@spscommerce', 'philpep@lowatt', 'randombenj', 'romainx', 'ssbarnea@redhatansible']",5,10,"['autodesk', 'lowatt', 'redhatansible', 'spscommerce', 'suse']","['@SPSCommerce', '@lowatt', 'Autodesk', 'Red Hat @ansible', 'SUSE']",,0.5,38,20,97,1,4,10,4,38.0,20.0,90.0,0.5,0,41.57031 +871,profiling,https://github.com/reloadware/reloadium,1.0,,,reloadware/reloadium,reloadium,2159,38,24,Python,https://reloadium.io,reloadium: Advanced Hot Reloading & Profiling for Python,reloadware,2023-02-20,2022-01-15,57,37.50124069478908,"['hot-reload', 'hot-reloading', 'python', 'python3', 'edit-and-continue', 'django', 'flask', 'pandas']",2023-01-27,2,"['dkrystki@reloadware', 'siilats@bytelogics']",2,10,"['bytelogics', 'reloadware']","['Reloadware', 'bytelogics']",,0.71,35,26,13,1,0,5,5,35.0,85.0,90.0,2.4,0,27.25389 +867,util,https://github.com/dosisod/refurb,1.0,,,dosisod/refurb,refurb,2138,41,15,Python,,refurb: A tool for refurbishing and modernizing Python codebases,dosisod,2023-02-18,2022-07-27,30,71.26666666666667,"['cli', 'mypy', 'python', 'python310', 'testing', 'gplv3', 'hacktoberfest']",2023-02-21,10,"['EFord36', 'bbkgh@hamravesh', 'doomedraven', 'dosisod', 'jairhenrique@grupoboticario', 'jdevera@hotjar', 'michaeloliverx@resgroup', 'trag1c', 'yilei']",4,10,"['grupoboticario', 'hamravesh', 'hotjar', 'resgroup']","['@grupoboticario ', '@hamravesh ', '@resgroup', 'Hotjar']",,4.1,86,77,7,0,14,35,14,86.0,41.0,90.0,0.5,0,35.04298 +548,ml,https://github.com/lightly-ai/lightly,,,,lightly-ai/lightly,lightly,2135,178,24,Python,https://docs.lightly.ai/self-supervised-learning/,lightly: A python library for self-supervised learning on images.,lightly-ai,2023-02-21,2020-10-13,123,17.337587006960558,"['deep-learning', 'self-supervised-learning', 'machine-learning', 'computer-vision', 'pytorch', 'embeddings', 'contrastive-learning', 'active-learning']",2023-02-16,24,"['IgorSusmelj@lightly', 'MalteEbner@lightly', 'Ra1Nik', 'busycalibrating', 'guarin', 'ibro45@aimharvard-mgb', 'japrescott', 'michal-lightly', 'philippmwirth', 'shaundaley39']",2,10,"['aimharvard-mgb', 'lightly']","['AIM @ Harvard-MGB', 'Lightly']",,5.48,136,124,29,0,40,34,40,136.0,154.0,90.0,1.1,0,41.57105 +503,gis,https://github.com/google/earthengine-api,,,,google/earthengine-api,earthengine-api,2131,916,208,JavaScript,,earthengine-api: Python and JavaScript bindings for calling the Earth Engine API.,google,2023-02-19,2015-04-22,409,5.210268948655257,[],2023-02-15,36,"['anonymousandrew@google', 'bengalin', 'eengle', 'inazarenko', 'kpreid', 'max99x', 'mdhancher@google', 'michaelfdewitt@google', 'simonff@google', 'tylere@google']",1,10,['google'],"['@Google', '@google ', 'Google', 'Google, Inc.']",,0.0,5,2,95,0,0,32,32,5.0,2.0,90.0,0.4,0,33.87917 +198,ml,https://github.com/maif/shapash,,,,maif/shapash,shapash,2119,259,39,Jupyter Notebook,https://maif.github.io/shapash/,shapash: 🔅 Shapash makes Machine Learning models transparent and understandable by everyone,maif,2023-02-20,2020-04-29,147,14.414965986394558,"['python', 'machine-learning', 'explainability', 'explainable-ml', 'transparency', 'ethical-artificial-intelligence', 'shap', 'lime', 'interpretability']",2023-02-06,35,"['FlorineGreciet', 'Francesco-Marini', 'GAP01', 'MaxGdr@helsing', 'SebastienBidault', 'ThibaudReal', 'ThomasBouche', 'guillaume-vignal@maif', 'mathisbarthere', 'yg79@maif']",2,10,"['helsing', 'maif']","['Helsing', 'MAIF', 'Maif']",,4.6,28,14,34,0,9,9,9,28.0,8.0,90.0,0.3,0,36.36367 +813,data,https://github.com/datafold/data-diff,,,,datafold/data-diff,data-diff,2118,101,16,Python,https://www.datafold.com/blog/open-source-data-diff,data-diff: Efficiently diff data in or across relational databases,datafold,2023-02-20,2022-03-07,50,42.11931818181818,"['database', 'mysql', 'postgresql', 'snowflake', 'rdbms', 'trino', 'data-engineering', 'data-quality', 'data-science', 'data-quality-monitoring', 'databricks-sql', 'dataengineering', 'dataquality', 'oracle-database', 'postgres', 'sql', 'dbt', 'python']",2023-02-17,27,"['cfernhout', 'danthelion@brooklyn-data', 'dlawin', 'erezsh', 'glebmezh@datafold', 'jardayn', 'kylemcnair', 'leoebfolsom', 'pik94@datafold', 'sirupsen@webscaleinc']",3,10,"['brooklyn-data', 'datafold', 'webscaleinc']","['@brooklyn-data', '@datafold ', 'Datafold', 'Webscale Inc']",,14.17,104,61,12,0,16,16,16,104.0,142.0,90.0,1.4,0,41.76554 +222,data,https://github.com/pynamodb/pynamodb,1.0,,,pynamodb/pynamodb,PynamoDB,2115,414,41,Python,http://pynamodb.readthedocs.io,PynamoDB: A pythonic interface to Amazon's DynamoDB,pynamodb,2023-02-19,2014-01-20,474,4.4593373493975905,"['python', 'dynamodb', 'aws']",2023-02-21,102,"['anandswaminathan@lyft', 'betamoo', 'danielhochman@lyft', 'garrettheel', 'hallie@lyft', 'ikonst@lyft', 'jlafon@openeyescientificsoftware', 'jmphilli', 'jpinner-lyft', 'scode']",2,10,"['lyft', 'openeyescientificsoftware']","['@lyft', '@lyft ', 'Lyft', 'Lyft, Inc.', 'OpenEye Scientific Software']",,0.81,67,47,111,0,11,10,11,67.0,94.0,90.0,1.4,0,44.51654 +749,diffusion,https://github.com/nateraw/stable-diffusion-videos,,,,nateraw/stable-diffusion-videos,stable-diffusion-videos,2111,205,26,Python,,stable-diffusion-videos: Create 🔥 videos with Stable Diffusion by exploring the latent space and morphing between text prompts,nateraw,2023-02-20,2022-09-06,24,87.43786982248521,"['ai-art', 'huggingface', 'huggingface-diffusers', 'machine-learning', 'stable-diffusion']",2023-02-18,14,"['0x1355', 'Atomic-Germ@exitgardenrecords', 'Niravprajapati1@student', 'charlielito', 'codefaux', 'danielpatrickhug@earth', 'nateraw@huggingface', 'philgzl', 'seriousran@ncsoftaivisionlabgenerationteam', 'thehappydinoa@censys']",6,10,"['censys', 'earth', 'exitgardenrecords', 'huggingface', 'ncsoftaivisionlabgenerationteam', 'student']","['@NCSoft AI Vision Lab Generation Team', '@censys ', '@huggingface', 'Earth', 'Exit Garden Records', 'Student ']",,3.0,46,30,6,0,17,34,17,46.0,139.0,90.0,3.0,0,40.23409 +411,util,https://github.com/yaml/pyyaml,,,,yaml/pyyaml,pyyaml,2089,435,49,Python,,pyyaml: Canonical source repository for PyYAML,yaml,2023-02-21,2011-11-03,589,3.541535480745943,"['python', 'yaml']",2022-09-13,40,"['Thom1729', 'alex', 'cclauss@christianclauss', 'dstufft@datadog', 'ingydotnet@newfolddigital/bluehost', 'jdufresne@pioneervalleybooks', 'nitzmahone@ansible', 'perlpunk@suse', 'peterkmurphy', 'xitology']",6,10,"['ansible', 'christianclauss', 'datadog', 'newfolddigital/bluehost', 'pioneervalleybooks', 'suse']","['@DataDog', '@SUSE', '@ansible', 'Christian Clauss', 'Newfold Digital / Bluehost', 'Pioneer Valley Books']",,0.04,43,20,138,5,0,4,4,43.0,55.0,90.0,1.3,0,38.36483 +860,jupyter,https://github.com/jupyter/nbviewer,,,,jupyter/nbviewer,nbviewer,2059,537,93,Python,https://nbviewer.jupyter.org,nbviewer: nbconvert as a web service: Render Jupyter Notebooks as static web pages,jupyter,2023-02-21,2012-08-05,550,3.74072151570205,"['jupyter', 'jupyter-notebook', 'nbconvert']",2023-01-27,95,"['Carreau@quansight-labs', 'bollwyvl', 'ellisonbg@amazonwebservices', 'krinsman', 'minrk@simularesearchlaboratory', 'mrterry@nextdoor', 'parente@wearethorn', 'pelson', 'pre-commit-ci[bot]', 'rgbkrk@noteable-io']",6,10,"['amazonwebservices', 'nextdoor', 'noteable-io', 'quansight-labs', 'simularesearchlaboratory', 'wearethorn']","['@Noteable-io', '@Quansight-Labs', '@wearethorn ', 'Amazon Web Services', 'Nextdoor', 'Simula Research Laboratory']",,1.25,18,10,128,1,0,0,0,18.0,20.0,90.0,1.1,0,40.43922 +881,time-series,https://github.com/rjt1990/pyflux,,,,rjt1990/pyflux,pyflux,2010,235,70,Python,,pyflux: Open source time series library for Python,rjt1990,2023-02-20,2016-02-16,366,5.489660554038236,"['statistics', 'time-series']",2018-12-16,6,"['RJT1990', 'TerryJey', 'ThomasHoppe', 'gitter-badger@gitter', 'juanpabloaj', 'tmak@pinseekerinc']",2,10,"['gitter', 'pinseekerinc']","['Gitter', 'PinSeeker Inc']",,0.0,0,0,85,51,0,6,6,0.0,0.0,90.0,0.0,0,15.47289 +452,pandas,https://github.com/pandera-dev/pandera,1.0,,,pandera-dev/pandera,pandera,1978,162,13,Python,https://www.union.ai/pandera,"pandera: A light-weight, flexible, and expressive statistical data testing library",pandera-dev,2023-02-20,2018-11-01,224,8.79669631512071,"['pandas', 'validation', 'schema', 'dataframes', 'testing', 'pandas-validation', 'pandas-dataframe', 'data-validation', 'data-cleaning', 'data-check', 'testing-tools', 'assertions', 'data-assertions', 'data-verification', 'dataframe-schema', 'hypothesis-testing', 'pandas-validator', 'data-processing']",2023-02-20,79,"['NickCrews', 'a-recknagel@auxmoney', 'cosmicBboy@unionai', 'cristianmatache@imperialcollegelondon', 'ferhah', 'gordonhart', 'mastersplinter@bcggamma', 'ralbertazzi@bendingspoons', 'smackesey@elementl', 'the-matt-morris@rsg']",7,10,"['auxmoney', 'bcggamma', 'bendingspoons', 'elementl', 'imperialcollegelondon', 'rsg', 'unionai']","['@unionai', 'BCG Gamma', 'Bending Spoons', 'Elementl', 'Imperial College London', 'RSG, Inc.', 'auxmoney']",,2.21,66,21,52,0,15,14,15,66.0,150.0,90.0,2.3,0,49.08654 +506,ml-ops,https://github.com/adap/flower,,,,adap/flower,flower,1961,439,22,Python,https://flower.dev,Flower: A Friendly Federated Learning Framework,adap,2023-02-21,2020-02-17,157,12.467756584922798,"['flower', 'federated-learning', 'federated-learning-framework', 'pytorch-federated-learning', 'tensorflow-federated-learning', 'keras-federated-learning', 'federated-analytics', 'fleet-learning', 'fleet-intelligence', 'deep-learning', 'machine-learning', 'pytorch', 'scikit-learn', 'tensorflow']",2023-02-20,54,"['CanTuerk', 'adam-narozniak@epfl', 'akhilmathurs', 'charlesbvll@epfl', 'danieljanes@adapgmbh', 'jafermarq', 'mariaboerner1987', 'pedropgusmao', 'sisco0', 'tanertopal@adapgmbh']",2,10,"['adapgmbh', 'epfl']","['Adap GmbH', 'EPFL']",,6.85,199,166,37,0,6,5,6,199.0,65.0,90.0,0.3,0,40.67275 +323,gui,https://github.com/wxwidgets/phoenix,,,,wxwidgets/phoenix,Phoenix,1946,494,104,Python,http://wxpython.org/,"Phoenix: wxPython's Project Phoenix. A new implementation of wxPython, better, stronger, faster than he was before.",wxwidgets,2023-02-21,2012-07-17,553,3.518078512396694,"['python', 'cross-platform', 'gui-framework', 'gui-toolkit', 'gui', 'windows', 'macosx', 'linux', 'awesome', 'wxwidgets', 'wxpython']",2023-02-13,123,"['GadgetSteve', 'Metallicow@self;independant', 'RobinD42', 'cbeytas', 'dougthor42@prounlimited(contractorforgooglequantumai)', 'infinity77', 'kollivier@kosoftworks', 'mesalu', 'swt2c', 'wernerfb']",3,10,"['kosoftworks', 'prounlimited(contractorforgooglequantumai)', 'self;independant']","['KOSoftworks LLC', 'PRO Unlimited (contractor for Google Quantum AI)', 'self; Independant']",,3.35,76,38,129,0,1,2,1,76.0,143.0,90.0,1.9,0,45.67087 +590,util,https://github.com/hgrecco/pint,,,,hgrecco/pint,pint,1944,415,40,Python,http://pint.readthedocs.org/,pint: Operate and manipulate physical quantities in Python,hgrecco,2023-02-20,2012-07-13,553,3.5108359133126936,"['python', 'science', 'units']",2023-02-13,182,"['5igno@imec', 'andrewgsavage', 'bors[bot]', 'clarkgwillison', 'crusaderky', 'dalito@leibniz-institutfürkatalysee.v.(likat)', 'hgrecco', 'jthielen@coloradostateuniversity', 'jules-ch', 'keewis']",3,10,"['coloradostateuniversity', 'imec', 'leibniz-institutfürkatalysee.v.(likat)']","['Colorado State University', 'Leibniz-Institut für Katalyse e.V. (LIKAT)', 'imec']",,2.98,80,35,129,0,0,4,4,80.0,115.0,90.0,1.4,0,47.40676 +353,ml-interpretability,https://github.com/seldonio/alibi,,,,seldonio/alibi,alibi,1935,220,42,Python,https://docs.seldon.io/projects/alibi/en/stable/,alibi: Algorithms for explaining machine learning models,seldonio,2023-02-21,2019-02-26,208,9.2964996568291,"['machine-learning', 'explanations', 'interpretability', 'counterfactual', 'xai']",2023-02-20,18,"['MarcoGorelli@quansight', 'RobertSamoilescu', 'adriangonz@seldonio', 'alexcoca@universityofcambridge', 'arnaudvl', 'ascillitoe@datascienceseldonio', 'dependabot[bot]', 'gipster', 'jklaise', 'mauicv']",4,10,"['datascienceseldonio', 'quansight', 'seldonio', 'universityofcambridge']","['@SeldonIO ', 'Data Science @SeldonIO', 'Quansight', 'University of Cambridge']",,3.69,64,46,49,0,4,7,4,64.0,108.0,90.0,1.7,0,40.88781 +233,crypto,https://github.com/ethereum/py-evm,,,,ethereum/py-evm,py-evm,1927,578,98,Python,https://py-evm.readthedocs.io/en/latest/,py-evm: A Python implementation of the Ethereum Virtual Machine,ethereum,2023-02-21,2016-12-27,321,6.000444839857651,"['evm', 'ethereum', 'python', 'ethereum-virtual-machine']",2022-12-16,80,"['NIC619', 'carver@ethereumfoundation', 'cburgdorf', 'fselmo@ethereum', 'gsalgado', 'hwwhww', 'jannikluhn', 'mhchia', 'pipermerriam@ethereumfoundation', 'veox']",2,10,"['ethereum', 'ethereumfoundation']","['@ethereum', 'Ethereum Foundation']",,0.58,4,1,75,2,0,17,17,4.0,0.0,90.0,0.0,0,32.98648 +441,gis,https://github.com/rasterio/rasterio,1.0,,,rasterio/rasterio,rasterio,1882,507,152,Python,https://rasterio.readthedocs.io/,Rasterio reads and writes geospatial raster datasets,rasterio,2023-02-19,2013-11-04,485,3.878127759788048,"['python', 'gis', 'raster', 'gdal', 'cli', 'cython', 'mapbox-satellite-oss']",2023-02-13,142,"['ColinTalbert', 'brendan-ward@astutespruce', 'geowurster', 'groutr@lynkertechnologies', 'j08lue@developmentseed', 'jdmcbr', 'perrygeo', 'sgillies@planetlabs', 'snowman2@corteva', 'vincentsarago@developmentseed']",5,10,"['astutespruce', 'corteva', 'developmentseed', 'lynkertechnologies', 'planetlabs']","['@corteva ', '@developmentseed ', '@planetlabs', 'Astute Spruce, LLC', 'Development Seed', 'Lynker Technologies']",,3.77,184,116,113,0,11,18,11,184.0,323.0,90.0,1.8,0,52.4779 +829,study,https://github.com/huggingface/diffusion-models-class,,,,huggingface/diffusion-models-class,diffusion-models-class,1877,167,72,Jupyter Notebook,,diffusion-models-class: Materials for the Hugging Face Diffusion Models Course,huggingface,2023-02-21,2022-10-13,18,99.53787878787878,[],2023-02-21,17,"['RELNO@cityscopemitmedialab', 'Yorko@relx', 'darcula1993', 'dbtreasure', 'dhakalnirajan@drcfsorg', 'eltociear@bandism', 'jmelsbach@universityofcologne', 'johnowhitaker', 'lewtun@huggingface', 'xl0']",6,10,"['bandism', 'cityscopemitmedialab', 'drcfsorg', 'huggingface', 'relx', 'universityofcologne']","['@CityScope @mitmedialab ', '@bandism ', '@drcfsorg', '@huggingface', 'RELX', 'University of Cologne']",,2.88,55,47,4,0,0,0,0,55.0,69.0,90.0,1.3,0,32.77661 +856,profiling,https://github.com/jiffyclub/snakeviz,,,,jiffyclub/snakeviz,snakeviz,1876,129,23,Python,https://jiffyclub.github.io/snakeviz/,snakeviz: An in-browser Python profile viewer,jiffyclub,2023-02-21,2012-06-26,556,3.3732340097611098,[],2023-02-17,24,"['andyljones@anthropic', 'bmerry', 'dannysepler@propelinc', 'embray', 'jiffyclub@populus-ai', 'matthewfeickert@universityofwisconsin-madison', 'nschloe@mondaytech', 'takluyver', 'thomasjm@codedownio', 'yjmade@nvidia']",7,10,"['anthropic', 'codedownio', 'mondaytech', 'nvidia', 'populus-ai', 'propelinc', 'universityofwisconsin-madison']","['@codedownio ', '@populus-ai ', '@propelinc', 'Anthropic', 'Monday Tech', 'NVIDIA', 'University of Wisconsin-Madison']",,0.08,7,2,130,0,0,2,2,7.0,16.0,90.0,2.3,0,40.21195 +713,gis,https://github.com/mcordts/cityscapesscripts,,,,mcordts/cityscapesscripts,cityscapesScripts,1869,574,45,Python,,cityscapesScripts: README and scripts for the Cityscapes Dataset,mcordts,2023-02-20,2016-02-20,365,5.112543962485346,[],2022-10-22,17,"['Bhomik', 'MarvinTeichmann@universityofcambridge', 'adityassrana', 'alexander-kirillov@facebookairesearch', 'jmtatsch', 'lucasb-eyer@googlebrainzürich', 'luofan18', 'mcordts@daimlerag', 'ncgaehle', 'nicolasj92']",4,10,"['daimlerag', 'facebookairesearch', 'googlebrainzürich', 'universityofcambridge']","['@google Brain Zürich', 'Daimler AG', 'Facebook AI Research', 'University of Cambridge']",,0.02,13,6,85,4,0,0,0,13.0,19.0,90.0,1.5,0,29.94821 +823,data,https://github.com/uqfoundation/dill,1.0,,,uqfoundation/dill,dill,1859,155,22,Python,http://dill.rtfd.io,dill: serialize all of python,uqfoundation,2023-02-20,2013-06-28,503,3.6905842314237094,[],2023-02-20,40,"['Peque', 'anivegesana', 'hugovk@nordsoftware', 'jasonmyers@klaviyo', 'kernc', 'leogama@amphybio-universityofsãopaulo,medicalschool', 'matsjoyce', 'mindw', 'mmckerns@uqfoundation', 'sekikn@nttdata']",5,10,"['amphybio-universityofsãopaulo,medicalschool', 'klaviyo', 'nordsoftware', 'nttdata', 'uqfoundation']","['@amphybio - University of São Paulo, Medical School', '@uqfoundation ', 'Klaviyo', 'NTT DATA', 'Nord Software']",,1.96,26,13,118,0,3,2,3,26.0,43.0,90.0,1.7,0,43.40902 +581,ml-dl,https://github.com/alpa-projects/alpa,,,,alpa-projects/alpa,alpa,1858,225,31,Python,https://alpa.ai,alpa: Training and serving large-scale neural networks,alpa-projects,2023-02-21,2021-02-22,104,17.816438356164383,"['deep-learning', 'machine-learning', 'compiler', 'distributed-training', 'high-performance-computing', 'alpa', 'jax', 'distributed-computing', 'llm', 'auto-parallelization']",2023-02-13,35,"['JiahaoYao@universityofcalifornia,berkeley', 'PKUFlyingPig@pekinguniversity', 'ZYHowell@carnegiemellonuniversity', 'comaniac@amazonwebservices(aws)', 'ddxxdd-code', 'jiaodong@anyscale', 'merrymercy@ucberkeley', 'yf225', 'zhisbug', 'zhuohan123@ucberkeley']",6,10,"['amazonwebservices(aws)', 'anyscale', 'carnegiemellonuniversity', 'pekinguniversity', 'ucberkeley', 'universityofcalifornia,berkeley']","['Amazon Web Services (@aws)', 'Anyscale', 'Carnegie Mellon University', 'Peking University', 'UC Berkeley', 'University of California, Berkeley']",,6.4,130,98,24,0,12,6,12,128.0,195.0,90.0,1.5,0,45.75762 +201,util,https://github.com/camelot-dev/camelot,,,,camelot-dev/camelot,camelot,1835,338,46,Python,https://camelot-py.readthedocs.io,camelot: A Python library to extract tabular data from PDFs,camelot-dev,2023-02-21,2019-07-01,190,9.643393393393394,[],2023-02-07,39,"['KOLANICH@kolanich', 'MartinThoma', 'anakin87@01s', 'davidkong0987', 'dimitern@http://develated.com/', 'pravarag', 'tksumanth1994', 'vaibhavmule@polymerize', 'vinayak-mehta', 'yatintaluja@atlanhq']",5,10,"['01s', 'atlanhq', 'http://develated.com/', 'kolanich', 'polymerize']","['01S', '@Polymerize ', '@atlanhq ', 'KOLANICH inc.', 'http://develated.com/']",,0.08,26,5,44,0,0,7,7,26.0,47.0,90.0,1.8,0,40.04461 +115,perf,https://github.com/h5py/h5py,,,,h5py/h5py,h5py,1828,490,55,Python,http://www.h5py.org,h5py: HDF5 for Python -- The h5py package is a Pythonic interface to the HDF5 binary data format.,h5py,2023-02-18,2012-09-21,543,3.3620599054125067,[],2023-02-20,191,"['ajelenak@thehdfgroup', 'andrewcollette@enthought', 'aragilar@departmentofphysicsandastronomy,macquarieuniversity', 'ddale@cornelluniversity', 'dota17', 'kif@esrf', 'scopatz', 't20100@esrf', 'tacaswell@brookhavennationallab', 'takluyver']",6,10,"['brookhavennationallab', 'cornelluniversity', 'departmentofphysicsandastronomy,macquarieuniversity', 'enthought', 'esrf', 'thehdfgroup']","['Brookhaven National Lab', 'Cornell University', 'Department of Physics and Astronomy, Macquarie University', 'ESRF', 'Enthought', 'The HDF Group']",,4.08,110,83,127,0,2,4,2,110.0,340.0,90.0,3.1,0,52.86394 +46,jupyter,https://github.com/maartenbreddels/ipyvolume,,,,maartenbreddels/ipyvolume,ipyvolume,1824,235,52,TypeScript,,ipyvolume: 3d plotting for Python in the Jupyter notebook based on IPython widgets using WebGL,maartenbreddels,2023-02-20,2016-12-21,322,5.6645962732919255,"['ipython-widget', 'jupyter', 'jupyter-notebook', 'python', 'visualisation', 'volume-rendering', 'virtual-reality', 'plotting', 'dataviz', 'scientific-visualization', 'webgl', 'threejs', 'rendering-3d-volumes', 'quiver']",2023-02-17,45,"['GenevieveBuckley@monashuniversity', 'OlehKSS', 'agoose77', 'chrisjsewell@imperialcollegelondon', 'cvisl@surf', 'glyg@france-bio-imaging-data', 'jeammimi', 'jtpio@quantstack', 'maartenbreddels@maartenbreddels', 'mgeier']",6,10,"['france-bio-imaging-data', 'imperialcollegelondon', 'maartenbreddels', 'monashuniversity', 'quantstack', 'surf']","['@France-Bio-Imaging-Data ', '@QuantStack', '@maartenbreddels', 'Imperial College London', 'Monash University', 'SURF']",,0.27,17,8,75,0,0,8,8,17.0,25.0,90.0,1.5,0,42.47792 +295,util,https://github.com/pyfilesystem/pyfilesystem2,,,,pyfilesystem/pyfilesystem2,pyfilesystem2,1819,173,45,Python,https://www.pyfilesystem.org,pyfilesystem2: Python's Filesystem abstraction layer,pyfilesystem,2023-02-20,2016-10-14,331,5.4836347975882855,"['filesystem', 'pyfilesystem', 'pyfilesystem2', 'python', 'ftp', 'tar', 'zip', 'filesystem-library']",2022-10-18,47,"['althonos@embl,zellerlab', 'dargueta', 'eelkevdbos@vandenbossoftwaredevelopment', 'geoffjukes', 'lurch@raspberrypi', 'muffl0n', 'odgalvin', 'tfeldmann@mercatronicsgmbh', 'willmcgugan@textualize', 'zmej-serow@kodland.org']",6,10,"['embl,zellerlab', 'kodland.org', 'mercatronicsgmbh', 'raspberrypi', 'textualize', 'vandenbossoftwaredevelopment']","['@raspberrypi ', 'EMBL, @zellerlab', 'Textualize', 'Van den Bos Software Development', 'kodland.org', 'mercatronics GmbH']",,1.44,12,2,77,4,1,8,1,12.0,26.0,90.0,2.2,0,37.20255 +648,util,https://github.com/grahamdumpleton/wrapt,,,,grahamdumpleton/wrapt,wrapt,1817,209,45,Python,,"wrapt: A Python module for decorators, wrappers and monkey patching.",grahamdumpleton,2023-02-21,2013-05-29,508,3.576771653543307,[],2023-01-12,27,"['GrahamDumpleton', 'a-feld', 'agriffis@scampersand', 'althonos@embl,zellerlab', 'eire1130', 'hugovk@nordsoftware', 'jouve', 'thorwhalen@analogdevices', 'varunagrawal@georgiatech', 'yarikoptic@dartmouthcollege,debian,datalad,pymvpa,fail2ban']",6,10,"['analogdevices', 'dartmouthcollege,debian,datalad,pymvpa,fail2ban', 'embl,zellerlab', 'georgiatech', 'nordsoftware', 'scampersand']","['@scampersand', 'Analog Devices', 'Dartmouth College, @Debian, @DataLad, @PyMVPA, @fail2ban', 'EMBL, @zellerlab', 'Georgia Tech', 'Nord Software']",,1.02,17,9,118,1,0,5,5,17.0,39.0,90.0,2.3,0,41.82351 +63,sim,https://github.com/projectmesa/mesa,,,,projectmesa/mesa,mesa,1813,758,89,Python,,Mesa is an agent-based modeling framework in Python,projectmesa,2023-02-20,2014-09-19,439,4.1231319038336585,"['mesa', 'agent-based-modeling', 'agent-based-simulation', 'simulation-framework', 'simulation', 'simulation-environment', 'complex-systems', 'complexity-analysis', 'modeling-agents', 'spatial-models', 'gis']",2023-02-10,121,"['Corvince', 'EwoutH', 'TaylorMutch@unitytechnologies', 'Tortar@metro-polis', 'cauemello', 'djmitche@google', 'dmasad', 'jackiekazil', 'rht', 'tpike3']",3,10,"['google', 'metro-polis', 'unitytechnologies']","['Google', 'Metro-Polis ', 'Unity Technologies']",,5.58,70,42,103,1,1,2,1,70.0,190.0,90.0,2.7,0,45.30406 +310,data,https://github.com/graphistry/pygraphistry,,,,graphistry/pygraphistry,pygraphistry,1805,187,47,Python,,"PyGraphistry is a Python library to quickly load, shape, embed, and explore big graphs with the GPU-accelerated Graphistry visual graph analyzer",graphistry,2023-02-21,2015-06-02,403,4.477321048901488,"['graph', 'visualization', 'gpu', 'graphistry', 'python', 'rapids', 'cugraph', 'networkx', 'neo4j', 'tigergraph', 'pandas', 'csv', 'webgl', 'splunk', 'cudf', 'jupyter', 'igraph', 'network-analysis', 'network-visualization', 'graph-visualization']",2022-12-23,31,"['DataBoyTX', 'cwharris@nvidia', 'juliaxdmon', 'lmeyerov@graphistry', 'lsb', 'pradkrish', 'silkspace@graphistrystayopen,pythian,tehama,cybermedicine,beatsmusic,quid,idlegames', 'szhorvat', 'thibaudh', 'trxcllnt@nvidia,inc']",4,10,"['graphistry', 'graphistrystayopen,pythian,tehama,cybermedicine,beatsmusic,quid,idlegames', 'nvidia', 'nvidia,inc']","['@graphistry @stayopen, @pythian, @tehama, @cybermedicine, @beatsMusic, @quid, @idlegames', 'Graphistry', 'NVIDIA, Inc', 'Nvidia']",,1.48,34,13,94,2,0,22,22,34.0,32.0,90.0,0.9,0,40.09107 +964,gis,https://github.com/azavea/raster-vision,,,,azavea/raster-vision,raster-vision,1797,350,83,Python,https://docs.rastervision.io,raster-vision: An open source library and framework for deep learning on satellite and aerial imagery.,azavea,2023-02-20,2017-02-02,315,5.689280868385346,"['deep-learning', 'computer-vision', 'remote-sensing', 'geospatial', 'object-detection', 'semantic-segmentation', 'classification', 'machine-learning', 'pytorch']",2023-02-21,30,"['AdeelH@azavea', 'citerana', 'dependabot[bot]', 'jamesmcclain', 'jmorrison1847@umbra', 'jpolchlo', 'lewfish@azavea', 'lmbak@eyetelligence', 'lossyrob@microsoft', 'simonkassel@azavea']",4,10,"['azavea', 'eyetelligence', 'microsoft', 'umbra']","['@azavea ', '@microsoft', 'Azavea', 'Eyetelligence', 'Umbra']",,8.29,154,124,74,0,3,3,3,154.0,129.0,90.0,0.8,0,43.55576 +601,gis,https://github.com/plant99/felicette,,,,plant99/felicette,felicette,1793,85,39,Python,,felicette: Satellite imagery for dummies.,plant99,2023-02-14,2020-07-12,136,13.14240837696335,"['geospatial-data', 'gis', 'geospatial-visualization', 'geospatial', 'python', 'python3', 'geoinformatics', 'earth-observation', 'earth-science', 'satellite-imagery', 'satellite-images', 'satellite-data']",2021-09-08,6,"['AlexanderDavid@clemsonuniversity', 'dependabot[bot]', 'epogrebnyak@financeandeconomicsdepartment,mgimo-odintsovo', 'mmatongo@tempulsenoirlinuxmulindisourcehaus', 'plant99']",3,10,"['clemsonuniversity', 'financeandeconomicsdepartment,mgimo-odintsovo', 'tempulsenoirlinuxmulindisourcehaus']","['@tempulse @noirlinux @mulindi @sourcehaus', 'Clemson University', 'Finance and Economics Department, MGIMO-Odintsovo']",,0.0,0,0,32,18,0,2,2,0.0,0.0,90.0,0.0,0,15.49221 +32,nlp,https://github.com/jamesturk/jellyfish,,,,jamesturk/jellyfish,jellyfish,1788,153,42,Python,https://jamesturk.github.io/jellyfish/,jellyfish: 🪼 a python library for doing approximate and phonetic matching of strings.,jamesturk,2023-02-19,2010-07-09,658,2.7143786597267403,"['python', 'levenshtein', 'soundex', 'hamming', 'metaphone', 'jaro-winkler', 'fuzzy-search', 'hacktoberfest']",2023-02-03,28,"['DimitriPapadopoulos@cea', 'J535D165@utrechtuniversity', 'PeterScott@cue', 'dependabot[bot]', 'diego-plan9@ibmresearch', 'dparrol', 'jamesturk@universityofchicago', 'mikejs@sunlightlabs', 'nchammas', 'ofek@datadog']",7,10,"['cea', 'cue', 'datadog', 'ibmresearch', 'sunlightlabs', 'universityofchicago', 'utrechtuniversity']","['@IBMResearch ', '@datadog', 'CEA', 'Cue', 'Sunlight Labs', 'University of Chicago', 'Utrecht University']",,0.35,4,4,154,1,0,2,2,4.0,2.0,90.0,0.5,0,35.98416 +843,ml,https://github.com/aws/sagemaker-python-sdk,,,,aws/sagemaker-python-sdk,sagemaker-python-sdk,1777,936,135,Python,https://sagemaker.readthedocs.io/,sagemaker-python-sdk: A library for training and deploying machine learning models on Amazon SageMaker,aws,2023-02-20,2017-11-14,275,6.458463136033229,"['aws', 'mxnet', 'tensorflow', 'machine-learning', 'python', 'pytorch', 'sagemaker', 'huggingface']",2023-02-20,333,"['ChoiByungWook@amazon.com', 'ajaykarpur', 'chuyang-deng', 'icywang86rui', 'knakad', 'laurenyu', 'metrizable@google', 'mvsusp', 'nadiaya@amazon.com', 'yangaws']",2,10,"['amazon.com', 'google']","['Amazon.com', 'Google']",,9.79,316,180,64,0,76,92,76,317.0,3351.0,90.0,10.6,0,59.58423 +732,study,https://github.com/amanchadha/coursera-deep-learning-specialization,,,,amanchadha/coursera-deep-learning-specialization,coursera-deep-learning-specialization,1771,1542,17,Jupyter Notebook,,"coursera-deep-learning-specialization: Notes, programming assignments and quizzes from all courses within the Coursera Deep Learning specialization offered by deeplearning.ai: (i) Neural Networks and Deep Learning; (ii) Improving Deep Neural Networks: Hyperparameter tuning, Regularization and Optimization; (iii) Structuring Machine Learning Projects; (iv) Convolutional Neural Networks; (v) Sequence Models",amanchadha,2023-02-21,2020-06-24,139,12.741007194244604,"['deep-learning', 'coursera', 'coursera-assignment', 'coursera-specialization', 'coursera-machine-learning', 'andrew-ng', 'andrew-ng-course', 'convolutional-neural-networks', 'cnns', 'recurrent-neural-networks', 'rnns', 'convolutional-neural-network', 'recurrent-neural-network', 'hyperparameter-optimization', 'hyperparameter-tuning', 'neural-network', 'neural-networks', 'neural-machine-translation', 'neural-style-transfer', 'regularization']",2022-02-07,6,"['BHUVAN-RJ', 'Ehsanahmadi1400@readytocollaborateonaiprojects', 'amanchadha@amazon/stanforduniversity', 'lengocloi1805', 'zen7vik']",2,10,"['amazon/stanforduniversity', 'readytocollaborateonaiprojects']","['Amazon Inc. / Stanford University', 'Ready to collaborate on AI projects']",,0.0,0,0,32,13,0,0,0,0.0,0.0,90.0,0.0,0,12.86912 +297,util,https://github.com/pyparsing/pyparsing,,,,pyparsing/pyparsing,pyparsing,1765,240,23,Python,,pyparsing: Python library for creating PEG parsers,pyparsing,2023-02-21,2017-05-14,301,5.855450236966824,"['python', 'python2', 'python3', 'python-2', 'python-3', 'parser-combinators', 'parsing-expression-grammar', 'parsing', 'parsing-library', 'text-processing', 'peg-parsers']",2023-02-12,53,"['cngkaygusuz@google', 'djpohly', 'hugovk@nordsoftware', 'jdufresne@pioneervalleybooks', 'mattcarmody', 'maxfischer2781', 'mcepl@suse', 'multimeric', 'ptmcg', 'sirosen']",4,10,"['google', 'nordsoftware', 'pioneervalleybooks', 'suse']","['Google', 'Nord Software', 'Pioneer Valley Books', 'SUSE']",,2.56,17,7,70,0,2,9,2,17.0,25.0,90.0,1.5,0,40.8162 +543,data,https://github.com/sqlalchemy/alembic,,,,sqlalchemy/alembic,alembic,1760,175,19,Python,,alembic: A database migrations tool for SQLAlchemy.,sqlalchemy,2023-02-21,2018-11-27,221,7.958656330749354,"['sqlalchemy', 'sql', 'python']",2023-02-16,158,"['AKamyshnikova@mirantis', 'BryceLohr', 'CaselIT', 'bbinet@helioslite', 'dahlia@planetarium', 'dtheodor', 'exhuma', 'gordthompson@self-employed', 'marcinkuzminski@rhodecode', 'zzzeek@redhat']",6,10,"['helioslite', 'mirantis', 'planetarium', 'redhat', 'rhodecode', 'self-employed']","['@Mirantis', '@planetarium ', 'HeliosLite', 'Red Hat', 'RhodeCode Inc.', 'self-employed']",,1.5,42,27,52,0,8,26,8,42.0,111.0,90.0,2.6,0,49.1058 +9,ml,https://github.com/contextlab/hypertools,,,,contextlab/hypertools,hypertools,1760,160,60,Python,http://hypertools.readthedocs.io/en/latest/,hypertools: A Python toolbox for gaining geometric insights into high-dimensional data,contextlab,2023-02-15,2016-09-27,334,5.267208208636169,"['data-visualization', 'high-dimensional-data', 'python', 'topic-modeling', 'text-vectorization', 'data-wrangling', 'visualization', 'time-series']",2022-02-12,21,"['KirstensGitHub', 'alysivji', 'andrewheusser@akiliinteractive', 'chaseWilliams@together', 'jeremymanning@dartmouthcollege', 'joefink2896', 'lmcinnes@tutteinstituteformathematicsandcomputing', 'paxtonfitzpatrick@contextlabcosanlab', 'rarredon', 'swaroopgj@vicariousai']",6,10,"['akiliinteractive', 'contextlabcosanlab', 'dartmouthcollege', 'together', 'tutteinstituteformathematicsandcomputing', 'vicariousai']","['@ContextLab @cosanlab', 'Akili Interactive', 'Dartmouth College', 'Together', 'Tutte Institute for Mathematics and Computing', 'Vicarious AI']",,0.0,1,0,78,12,0,3,3,1.0,0.0,90.0,0.0,0,25.46581 +25,util,https://github.com/google/gin-config,,,,google/gin-config,gin-config,1755,110,24,Python,,gin-config: Gin provides a lightweight configuration framework for Python,google,2023-02-21,2018-06-27,243,7.222222222222222,"['python', 'configuration-management', 'tensorflow', 'tensorflow-experiments']",2022-12-05,23,"['Conchylicultor@google', 'adarob@google', 'cghawthorne', 'dhr', 'ericjang', 'gmrukwa@netguru', 'jaingaurav@google', 'kbanoop@google', 'sguada@google', 'yilei']",2,10,"['google', 'netguru']","['@google', 'Google', 'Netguru']",,0.12,5,1,57,3,0,0,0,5.0,1.0,90.0,0.2,0,23.4123 +806,web,https://github.com/python-restx/flask-restx,,,,python-restx/flask-restx,flask-restx,1752,293,70,Python,https://flask-restx.readthedocs.io/en/latest/,"flask-restx: Fork of Flask-RESTPlus: Fully featured framework for fast, easy and documented API development with Flask",python-restx,2023-02-21,2020-01-09,162,10.757894736842106,"['python', 'api', 'swagger', 'flask', 'rest', 'json', 'restful', 'restplus', 'restx']",2023-02-19,140,"['SteadBytes', 'arajkumar@timescale', 'avilaton', 'awiddersheim', 'calvin620707@kloudless', 'frol@q-bit', 'j5awry@canonical', 'noirbizarre@apihackers', 'plowman@parkade', 'ziirish']",6,10,"['apihackers', 'canonical', 'kloudless', 'parkade', 'q-bit', 'timescale']","['@Timescale', '@apihackers ', '@kloudless', 'Canonical', 'Parkade', 'Q-bit']",,0.73,49,19,38,0,3,4,3,49.0,79.0,90.0,1.6,0,44.43811 +825,study,https://github.com/alirezadir/machine-learning-interview-enlightener,,,,alirezadir/machine-learning-interview-enlightener,machine-learning-interviews,1745,352,49,Jupyter Notebook,,machine-learning-interviews: This repo is meant to serve as a guide for Machine Learning/AI technical interviews. ,alirezadir,2023-02-21,2021-01-31,107,16.243351063829788,"['machine-learning', 'machine-learning-algorithms', 'ai', 'deep-learning', 'system-design', 'scalable-applications', 'interview', 'interview-preparation', 'interview-practice', 'interviews']",2023-02-20,6,"['Anirudh257', 'alirezadir@meta', 'aroraayush@sdeliveramp', 'erjanmx', 'jthaller@bnl-ml-group', 'mehdizade']",3,10,"['bnl-ml-group', 'meta', 'sdeliveramp']","['@BNL-ML-Group', 'Meta', 'SDE @ Liveramp']",,0.6,1,0,25,0,0,0,0,1.0,0.0,90.0,0.0,0,21.44873 +302,template,https://github.com/pyscaffold/pyscaffold,,,,pyscaffold/pyscaffold,pyscaffold,1723,173,40,Python,https://pyscaffold.org,pyscaffold: 🛠 Python project template generator with batteries included,pyscaffold,2023-02-20,2014-04-02,464,3.7133620689655173,"['python', 'release-automation', 'git', 'distribution', 'package-creation', 'template-project', 'project-template', 'package']",2023-02-20,56,"['CarliJoy', 'FlorianWilhelm@inovex', 'HolgerPeters', 'QuLogic', 'abravalheri@universityofbristol', 'cpaulik@vandersat', 'jayvdb@franklin-ai', 'pre-commit-ci[bot]', 'smartsammler@karlsruheinstituteoftechnology', 'willu47@kth']",6,10,"['franklin-ai', 'inovex', 'karlsruheinstituteoftechnology', 'kth', 'universityofbristol', 'vandersat']","['@franklin-ai', '@inovex', '@vandersat ', 'KTH', 'Karlsruhe Institute of Technology', 'University of Bristol']",,2.83,29,27,108,0,8,22,8,29.0,44.0,90.0,1.5,0,46.97122 +767,study,https://github.com/fluentpython/example-code-2e,,,,fluentpython/example-code-2e,example-code-2e,1718,517,53,Python,https://amzn.to/3J48u2J,"example-code-2e: Example code for Fluent Python, 2nd edition (O'Reilly 2022) ",fluentpython,2023-02-21,2019-03-21,204,8.386331938633194,"['python', 'python3', 'concurrency', 'iterators', 'metaprogramming', 'special-methods']",2022-04-24,7,"['Akay7', 'ScottMcCormack', 'anancds@huawei', 'dependabot[bot]', 'eumiro', 'kbaikov', 'ramalho@thoughtworksthoughtworksinc']",2,10,"['huawei', 'thoughtworksthoughtworksinc']","['@thoughtworks @ThoughtWorksInc ', 'huawei']",,0.06,6,0,48,10,0,0,0,6.0,1.0,90.0,0.2,0,17.01612 +365,ml,https://github.com/rentruewang/koila,,,,rentruewang/koila,koila,1715,63,11,Python,https://rentruewang.github.io/koila,koila: Prevent PyTorch's `CUDA error: out of memory` in just 1 line of code.,rentruewang,2023-02-21,2021-11-17,66,25.984848484848484,"['pytorch', 'lazy-evaluation', 'out-of-memory', 'python', 'machine-learning', 'deep-learning', 'memory-management', 'gradient-accumulation', 'neural-network']",2023-02-07,4,"['dependabot[bot]', 'github-actions[bot]', 'ousou@iprally', 'rentruewang@collegeofcomputing,georgiatech']",2,10,"['collegeofcomputing,georgiatech', 'iprally']","['@iprally ', 'College of Computing, Georgia Tech']",,0.5,1,1,15,0,0,2,2,1.0,0.0,90.0,0.0,0,20.24635 +699,util,https://github.com/grantjenks/python-diskcache,,,,grantjenks/python-diskcache,python-diskcache,1702,105,19,Python,http://www.grantjenks.com/docs/diskcache/,python-diskcache: Python disk-backed cache (Django-compatible). Faster than Redis and Memcached. Pure-Python.,grantjenks,2023-02-21,2016-02-03,368,4.625,"['python', 'cache', 'persistence', 'key-value-store', 'filesystem']",2022-02-20,24,"['AbhinavOmprakash', 'Cologler', 'elistevens@zoox', 'grantjenks', 'i404788', 'jugmac00@canonical', 'maxking', 'raratiru', 'rkubik', 'tamirOK']",2,10,"['canonical', 'zoox']","['@canonical', 'Zoox']",,0.0,10,6,86,12,0,12,12,10.0,20.0,90.0,2.0,0,31.18506 +416,ml,https://github.com/bmabey/pyldavis,,,,bmabey/pyldavis,pyLDAvis,1686,349,57,Jupyter Notebook,,pyLDAvis: Python library for interactive topic model visualization. Port of the R LDAvis package.,bmabey,2023-02-21,2015-04-09,410,4.103616133518776,[],2023-02-15,39,"['OliRafa', 'betolink', 'bmabey', 'cemoody@gumtap', 'cpsievert@rstudio', 'janrygl@rndr.janrygl', 'mattilyra@zalandose', 'msusol@google', 'paul-english', 'yxtay']",5,10,"['google', 'gumtap', 'rndr.janrygl', 'rstudio', 'zalandose']","['@gumtap ', '@rstudio', 'Google', 'RNDr. Jan Rygl', 'Zalando SE']",,0.29,37,33,96,0,1,3,1,37.0,32.0,90.0,0.9,0,39.54568 +383,nlp,https://github.com/minimaxir/aitextgen,,,,minimaxir/aitextgen,aitextgen,1679,194,36,Python,https://docs.aitextgen.io,aitextgen: A robust Python tool for text-based AI training and generation using GPT-2.,minimaxir,2023-02-21,2019-12-29,164,10.211120764552563,[],2022-08-09,9,"['BPCZ', 'cdpierse@quantcopy', 'cuuupid', 'kaushikb11@lightning-ai', 'leetfin@arisiainc', 'minimaxir@buzzfeed', 'reducibly', 'tientr']",4,10,"['arisiainc', 'buzzfeed', 'lightning-ai', 'quantcopy']","['@ArisiaInc', '@Lightning-AI', '@buzzfeed ', '@quantcopy']",,0.1,16,3,38,7,1,4,1,16.0,19.0,90.0,1.2,0,25.80243 +217,ml,https://github.com/linkedin/greykite,1.0,,,linkedin/greykite,greykite,1672,92,37,Python,,"greykite: A flexible, intuitive and fast forecasting library",linkedin,2023-02-20,2021-04-27,95,17.573573573573572,[],2022-08-31,8,"['KaixuYang@linkedin', 'Reza1317', 'al-bert', 'dromare@pepsico', 'martinmenchon@bayer', 'njusu@linkedin']",3,10,"['bayer', 'linkedin', 'pepsico']","['Bayer', 'LinkedIn', 'PepsiCo']",,0.08,9,3,22,6,1,2,1,9.0,18.0,90.0,2.0,0,24.36706 +795,web,https://github.com/starlite-api/starlite,,,,starlite-api/starlite,starlite,1669,166,27,Python,https://starliteproject.dev,"starlite: Light, Flexible and Extensible ASGI API framework | Effortlessly Build Performant APIs",starlite-api,2023-02-20,2021-12-06,63,26.372460496613996,"['python', 'api', 'rest', 'pydantic', 'asgi', 'openapi', 'redoc', 'starlite', 'starlite-api', 'swagger', 'starlite-framework']",2023-02-21,89,"['Goldziher@safehousetechnologies', 'allcontributors[bot]', 'ashwinvin', 'cofin', 'dkress59@alexhealthcaregmbh', 'jtraub', 'peterschutt', 'provinzkraut', 'seladb', 'yudjinn@vestrasoftware']",3,10,"['alexhealthcaregmbh', 'safehousetechnologies', 'vestrasoftware']","['SafeHouse Technologies', 'Vestra Software, LLC', 'alex healthcare GmbH']",,17.92,385,356,15,0,102,109,102,385.0,786.0,90.0,2.0,0,49.75725 +256,crypto,https://github.com/bmoscon/cryptofeed,,,,bmoscon/cryptofeed,cryptofeed,1669,539,75,Python,,cryptofeed: Cryptocurrency Exchange Websocket Data Feed Handler,bmoscon,2023-02-21,2017-12-16,270,6.168426610348469,"['python', 'trading', 'market-data', 'cryptocurrency', 'bitcoin', 'exchange', 'websockets', 'coinbase', 'binance', 'influxdb', 'asyncio', 'websocket', 'ftx-exchange', 'trading-platform', 'ethereum', 'cryptocurrencies', 'btc', 'crypto', 'coinbase-api']",2023-02-16,105,"['Dynamikey', 'MarechJ', 'PandaXcentric', 'abashinfection', 'bmoscon', 'dependabot[bot]', 'evil-maid', 'olibre', 'peedrr', 'vdbelt']",0,10,[],[],,2.23,20,12,63,0,5,14,5,20.0,17.0,90.0,0.8,0,34.64775 +195,sim,https://github.com/pettingzoo-team/pettingzoo,,,,pettingzoo-team/pettingzoo,PettingZoo,1667,266,19,Python,https://pettingzoo.farama.org,"PettingZoo: A standard API for multi-agent reinforcement learning environments, with popular reference environments and related utilities",pettingzoo-team,2023-02-21,2020-01-20,161,10.33569530558016,[],2023-02-20,81,"['AnanthHari', 'Kyle-Sang', 'MarioJayakumar@morganstanley', 'RyanNavillus', 'WillDudley', 'benblack769', 'jjshoots', 'jkterry1', 'lssr', 'rodrigodelazcano']",1,10,['morganstanley'],['Morgan Stanley'],,7.71,27,12,38,0,12,11,12,27.0,24.0,90.0,0.9,0,39.62154 +424,debug,https://github.com/gotcha/ipdb,,,,gotcha/ipdb,ipdb,1664,146,27,Python,,ipdb: Integration of IPython pdb,gotcha,2023-02-20,2011-01-15,631,2.63469803211943,"['python', 'ipython', 'debugger']",2022-12-13,54,"['MrMino@nokia', 'PiDelport', 'Psycojoker', 'alanbernstein@pilosa', ""alexandrebarbaruiva@let'sdelivery"", 'andreagrandi@laterpay', 'dimasad@universidadefederaldeminasgerais', 'gnebehay@locatee', 'gotcha@bubblenet', 'takluyver']",7,10,"['bubblenet', 'laterpay', ""let'sdelivery"", 'locatee', 'nokia', 'pilosa', 'universidadefederaldeminasgerais']","['@laterpay', '@pilosa ', 'BubbleNet', ""Let's Delivery"", 'Locatee', 'Nokia', 'Universidade Federal de Minas Gerais']",,0.25,24,15,147,2,0,3,3,24.0,39.0,90.0,1.6,0,41.3888 +922,profiling,https://github.com/pyutils/line_profiler,,,,pyutils/line_profiler,line_profiler,1655,96,16,Cython,,line_profiler: Line-by-line profiling for Python,pyutils,2023-02-21,2019-12-10,167,9.901709401709402,[],2022-12-09,38,"['Erotemic@kitware', 'Hanaasagi', 'Nodd@onera', 'Theelx', 'artemisart', 'caethan', 'dependabot[bot]', 'kmike@zytedata,scrapinghub', 'mforbes@washingtonstateuniversity', 'rkern@enthought']",5,10,"['enthought', 'kitware', 'onera', 'washingtonstateuniversity', 'zytedata,scrapinghub']","['@Kitware', '@enthought ', '@zytedata, @ScrapingHub', 'ONERA', 'Washington State University']",,1.48,16,6,39,2,5,6,5,16.0,43.0,90.0,2.7,0,38.86244 +330,nlp,https://github.com/franck-dernoncourt/neuroner,,,,franck-dernoncourt/neuroner,NeuroNER,1645,485,84,Python,http://neuroner.com,NeuroNER: Named-entity recognition using neural networks. Easy-to-use and state-of-the-art results.,franck-dernoncourt,2023-02-19,2017-03-07,311,5.286960514233241,"['nlp', 'machine-learning', 'neural-networks', 'named-entity-recognition', 'deep-learning', 'tensorflow']",2019-10-02,7,"['Franck-Dernoncourt', 'Gregory-Howard', 'JohnGiorgi@universityoftoronto', 'jennyjylee', 'toltoxgh', 'tompollard@mit']",2,10,"['mit', 'universityoftoronto']","['MIT', 'University of Toronto']",,0.0,1,1,73,41,0,0,0,1.0,1.0,90.0,1.0,0,16.4226 +436,nlp,https://github.com/recognai/rubrix,,,,recognai/rubrix,argilla,1639,150,19,Python,https://docs.argilla.io,argilla: ✨ Open-source tool for data-centric NLP. Argilla helps domain experts and data teams to build better NLP datasets in less time.,recognai,2023-02-21,2021-04-28,95,17.25263157894737,"['python', 'data-science', 'human-in-the-loop', 'natural-language-processing', 'mlops', 'artificial-intelligence', 'knowledge-graph', 'developer-tools', 'text-labeling', 'annotation-tool', 'nlp', 'machine-learning', 'active-learning', 'weak-supervision', 'weakly-supervised-learning', 'spacy', 'text-classification', 'dataops', 'text-annotation', 'hacktoberfest']",2023-02-21,39,"['davidberenstein1957@argilla-io', 'dcfidalgo@maxplanckcomputing&datafacility', 'dependabot[bot]', 'dvsrepo@argilla.io', 'frascuchon@recognai', 'ignacioct@aarhusuniversity,vestas', 'keithCuniah@argilla.io', 'leireropl', 'leiyre', 'tomaarsen@argilla']",6,10,"['aarhusuniversity,vestas', 'argilla', 'argilla-io', 'argilla.io', 'maxplanckcomputing&datafacility', 'recognai']","['@argilla-io ', 'Aarhus University, Vestas', 'Argilla', 'Argilla.io', 'Max Planck Computing & Data Facility', 'Recognai', 'argilla.io']",,10.23,533,343,22,0,22,49,22,533.0,575.0,90.0,1.1,0,48.66356 +768,ml-dl,https://github.com/fepegar/torchio,,,,fepegar/torchio,torchio,1636,202,17,Python,http://www.torchio.org,torchio: Medical imaging toolkit for deep learning,fepegar,2023-02-21,2019-11-26,169,9.672297297297296,"['pytorch', 'medical-image-computing', 'deep-learning', 'data-augmentation', 'medical-images', 'machine-learning', 'python', 'medical-image-processing', 'medical-image-analysis', 'medical-imaging-datasets', 'medical-imaging-with-deep-learning', 'augmentation']",2023-02-15,41,"['GFabien', 'JulianKlug', 'allcontributors[bot]', 'dmus', 'dvolgyes', 'efirdc', 'fepegar@microsoftuclkcl-bmeis', 'justusschock@lightning-ai', 'mattwarkentin@universityofcalgary', 'pre-commit-ci[bot]']",3,10,"['lightning-ai', 'microsoftuclkcl-bmeis', 'universityofcalgary']","['@Lightning-AI', '@microsoft @UCL @KCL-BMEIS', 'University of Calgary']",,2.44,34,21,39,0,0,79,79,34.0,56.0,90.0,1.6,0,42.80703 +779,nlp,https://github.com/deepset-ai/farm,,,,deepset-ai/farm,FARM,1627,233,54,Python,https://farm.deepset.ai,FARM: :house_with_garden: Fast & easy transfer learning for NLP. Harvesting language models for the industry. Focus on Question Answering.,deepset-ai,2023-02-16,2019-07-17,188,8.654255319148936,"['language-models', 'bert', 'nlp', 'deep-learning', 'transfer-learning', 'pytorch', 'nlp-library', 'nlp-framework', 'xlnet-pytorch', 'ner', 'question-answering', 'pretrained-models', 'roberta', 'germanbert']",2022-08-31,37,"['PhilipMay@telekom', 'Timoeller@deepset', 'bogdankostic@deepset-ai', 'brandenchan', 'ftesser', 'johann-petrak@sheffieldnlp,gatenlp,ofai', 'julian-risch@deepset', 'kolk', 'tanaysoni', 'tholor@deepset']",4,10,"['deepset', 'deepset-ai', 'sheffieldnlp,gatenlp,ofai', 'telekom']","['@deepset-ai', '@sheffieldnlp, @GateNLP, @OFAI', '@telekom', 'deepset']",,0.04,5,3,44,6,0,7,7,5.0,6.0,90.0,1.2,0,31.82847 +799,web,https://github.com/pallets/quart,,,,pallets/quart,quart,1618,99,25,Python,https://quart.palletsprojects.com,quart: An async Python micro framework for building web applications. ,pallets,2023-02-21,2017-11-10,275,5.86839378238342,"['asyncio', 'python', 'http-server', 'asgi', 'quart']",2023-02-12,84,"['andrewshadura@collabora', 'arminweigl', 'arusahni@materializeinc', 'briancappello', 'laggardkernel@none', 'pgjones', 'potomak', 'pszpetkowski@pkobp', 'sanderfoobar', 'wwwjfy@grab']",5,10,"['collabora', 'grab', 'materializeinc', 'none', 'pkobp']","['@Grab', '@MaterializeInc ', 'Collabora', 'None', 'PKO BP']",,2.0,15,11,64,0,0,10,10,15.0,13.0,90.0,0.9,0,43.80907 +683,util,https://github.com/spotify/basic-pitch,,,,spotify/basic-pitch,basic-pitch,1618,91,31,Python,https://basicpitch.io,basic-pitch: A lightweight yet powerful audio-to-MIDI converter with pitch bend detection,spotify,2023-02-20,2022-05-03,42,38.39322033898305,"['lightweight', 'machine-learning', 'midi', 'music', 'pitch-detection', 'polyphonic', 'transcription', 'audio', 'python', 'typescript']",2023-02-10,11,"['cclauss@christianclauss', 'dohertyguirand', 'drubinstein@spotify', 'gudgud96@bandlab', 'johngao2@spotify', 'jvbalen', 'michaelhball@merantix', 'perploug@spotify', 'rabitt']",4,10,"['bandlab', 'christianclauss', 'merantix', 'spotify']","['@bandlab', '@merantix ', '@spotify', 'Christian Clauss', 'Spotify']",,0.79,21,9,10,0,0,0,0,21.0,7.0,90.0,0.3,0,26.47297 +509,ml,https://github.com/tensorflow/addons,,,,tensorflow/addons,addons,1611,600,58,Python,,addons: Useful extra functionality for TensorFlow 2.x maintained by SIG-addons,tensorflow,2023-02-20,2018-11-26,221,7.280180761781795,"['machine-learning', 'deep-learning', 'tensorflow', 'neural-network', 'tensorflow-addons', 'python']",2022-12-14,200,"['Squadrick@thoughtspot', 'WindQAQ@googlers', 'autoih', 'bhack', 'facaiy', 'fsx950223@amd', 'gabrieldemarmiesse@preligens', 'guillaumekln@systran', 'qlzh727@google', 'seanpmorgan@aws']",7,10,"['amd', 'aws', 'google', 'googlers', 'preligens', 'systran', 'thoughtspot']","['@Aws', '@SYSTRAN', '@googlers ', '@thoughtspot', 'AMD', 'Google', 'Preligens']",,0.9,42,18,52,2,4,8,4,42.0,70.0,90.0,1.7,0,44.70853 +205,debug,https://github.com/alexmojaki/heartrate,,,,alexmojaki/heartrate,heartrate,1610,123,33,Python,,heartrate: Simple real time visualisation of the execution of a Python program.,alexmojaki,2023-02-21,2019-04-24,200,8.05,"['python', 'visualization', 'debugger']",2021-11-13,3,"['alexmojaki', 'lvelvee']",0,10,[],[],,0.0,1,0,47,16,0,0,0,1.0,0.0,90.0,0.0,0,6.85468 +377,ml-interpretability,https://github.com/jalammar/ecco,,,,jalammar/ecco,ecco,1605,116,21,Jupyter Notebook,https://ecco.readthedocs.io,"ecco: Explain, analyze, and visualize NLP language models. Ecco creates interactive visualizations directly in Jupyter notebooks explaining the behavior of Transformer-based language models (like GPT2, BERT, RoBERTA, T5, and T0).",jalammar,2023-02-20,2020-11-07,119,13.422939068100359,"['nlp', 'visualization', 'explorables', 'natural-language-processing', 'pytorch', 'language-models']",2022-01-18,10,"['Haziqa-coder', 'JoaoLages@outsystems', 'SSamDav@outsystems', 'chiragjn@truefoundry', 'jalammar@cohere-ai', 'joaonadkarni', 'nostalgebraist', 'sugatoray@universityofwisconsin-milwaukee', 'thomas-chong@hkust']",5,10,"['cohere-ai', 'hkust', 'outsystems', 'truefoundry', 'universityofwisconsin-milwaukee']","['@cohere-ai ', '@truefoundry ', 'HKUST', 'OutSystems', 'Outsystems', 'University of Wisconsin - Milwaukee']",,0.0,3,1,28,13,0,5,5,3.0,2.0,90.0,0.7,0,24.08712 +597,time-series,https://github.com/uber/orbit,,,,uber/orbit,orbit,1602,120,33,Python,https://orbit-ml.readthedocs.io/en/stable/,orbit: A Python package for Bayesian forecasting with object-oriented design and probabilistic models under the hood.,uber,2023-02-21,2020-01-07,163,9.819614711033275,"['python', 'forecasting', 'bayesian', 'exponential-smoothing', 'pyro', 'stan', 'pystan', 'probabilistic-programming', 'probabilistic', 'forecast', 'orbit', 'time-series', 'regression', 'arima', 'changepoint', 'bayesian-methods', 'bayesian-statistics', 'machine-learning', 'regression-models', 'pytorch']",2023-01-29,18,"['Ariel77', 'FreeRealEstate221@uber', 'GavinSteiningerUber', 'edwinnglabs@uber', 'pochoi@ucdavis', 'ppstacy', 'steveyang90', 'szmark001@google', 'vincewu51@uber', 'wangzhishi']",3,10,"['google', 'uber', 'ucdavis']","['@Google', 'UC Davis', 'Uber']",,1.56,20,12,38,1,7,8,7,20.0,18.0,90.0,0.9,0,34.13204 +263,sim,https://github.com/quantecon/quantecon.py,,,,quantecon/quantecon.py,QuantEcon.py,1600,2141,148,Python,https://quantecon.org/quantecon-py/,QuantEcon.py: A community based Python library for quantitative economics,quantecon,2023-02-20,2013-03-22,517,3.0905077262693155,[],2023-01-29,40,"['QBatista@mit', 'Smit-create', 'cc7768@umaprotocol', 'davidrpugh@kingabdullahuniversityofscienceandtechnology', 'jstac@australiannationaluniversity', 'mmcky', 'oyamad@universityoftokyo', 'rht', 'sglyon@valorumdata', 'shizejin']",6,10,"['australiannationaluniversity', 'kingabdullahuniversityofscienceandtechnology', 'mit', 'umaprotocol', 'universityoftokyo', 'valorumdata']","['@UMAprotocol', 'Australian National University', 'King Abdullah University of Science and Technology', 'MIT', 'University of Tokyo', 'Valorum Data']",,1.94,58,40,121,1,2,4,2,58.0,183.0,90.0,3.2,0,45.13758 +876,study,https://github.com/rasbt/machine-learning-book,,,,rasbt/machine-learning-book,machine-learning-book,1594,599,30,Jupyter Notebook,https://sebastianraschka.com/books/#machine-learning-with-pytorch-and-scikit-learn,machine-learning-book: Code Repository for Machine Learning with PyTorch and Scikit-Learn,rasbt,2023-02-21,2021-12-19,61,25.948837209302326,"['machine-learning', 'scikit-learn', 'deep-learning', 'neural-networks', 'pytorch']",2023-02-02,11,"['SalMireles', 'asrjy@zodhya-git', 'capac', 'ericgarza70', 'haydenliu', 'mbrukman@google', 'naiborhujosua', 'paw-lu', 'rasbt@lightning-ai,universityofwisconsin-madison', 'rnckp']",3,10,"['google', 'lightning-ai,universityofwisconsin-madison', 'zodhya-git']","['@Google', '@Lightning-AI , University of Wisconsin-Madison', '@zodhya-git ']",,1.73,16,7,14,1,1,2,1,16.0,14.0,90.0,0.9,0,27.67259 +299,util,https://github.com/julienpalard/pipe,,,,julienpalard/pipe,Pipe,1594,103,27,Python,,Pipe: A Python library to use infix notation in Python,julienpalard,2023-02-20,2010-04-08,671,2.3725281735062724,[],2022-11-16,25,"['Abdur-rahmaanJ@compileralchemy', 'Amper@victoriametrics', 'Briaoeuidhtns', 'JulienPalard', 'brentp@universityofutah', 'dalexander', 'j450h1@microsoft', 'jerabaul29', 'nykh@sumologic', 'righthandabacus']",5,10,"['compileralchemy', 'microsoft', 'sumologic', 'universityofutah', 'victoriametrics']","['@VictoriaMetrics', '@compileralchemy ', 'Microsoft', 'Sumo Logic', 'University of Utah']",,0.29,4,1,157,3,1,0,1,4.0,2.0,90.0,0.5,0,31.13677 +596,data,https://github.com/uber/petastorm,,,,uber/petastorm,petastorm,1582,267,43,Python,,"Petastorm library enables single machine or distributed training and evaluation of deep learning models from datasets in Apache Parquet format. It supports ML frameworks such as Tensorflow, Pytorch, and PySpark and can be used from pure Python code.",uber,2023-02-21,2018-06-15,244,6.464681844716871,"['tensorflow', 'pytorch', 'deep-learning', 'machine-learning', 'sysml', 'pyspark', 'pyarrow', 'parquet', 'parquet-files']",2023-02-03,48,"['Ivan-Dimitrov', 'WeichenXu123@databricks', 'abditag2@uber', 'chongxiaoc@uber', 'liangz1@databricks', 'megaserg', 'praateekmahajan@iterable', 'rgruener@netflix', 'selitvin', 'tgaddair@uber']",4,10,"['databricks', 'iterable', 'netflix', 'uber']","['@Iterable ', '@Netflix', '@databricks', '@databricks ', '@uber ', 'Uber', 'Uber ']",,0.4,18,4,57,1,10,24,10,18.0,24.0,90.0,1.3,0,38.4399 +378,ml-interpretability,https://github.com/oegedijk/explainerdashboard,,,,oegedijk/explainerdashboard,explainerdashboard,1578,208,18,Python,http://explainerdashboard.readthedocs.io,"explainerdashboard: Quickly build Explainable AI dashboards that show the inner workings of so-called ""blackbox"" machine learning models.",oegedijk,2023-02-18,2019-10-30,173,9.121387283236995,"['dash', 'shap-values', 'dashboard', 'model-predictions', 'data-scientists', 'explainer', 'interactive-dashboards', 'permutation-importances', 'shap', 'plotly', 'inner-workings', 'interactive-plots', 'xai-library', 'xai']",2023-02-18,19,"['Simon-Free', 'absynthe@amazonwebservices', 'achimgaedke', 'brandonserna@u.s.geologicalsurvey', 'mekomlusa', 'oegedijk@thoughtworks', 'oegesam', 'rajgupt@optum', 'raybellwaves@dtn', 'yanhong-zhao-ef@educationfirst']",6,10,"['amazonwebservices', 'dtn', 'educationfirst', 'optum', 'thoughtworks', 'u.s.geologicalsurvey']","['Amazon Web Services', 'DTN', 'Education First', 'Optum', 'ThoughtWorks', 'U.S. Geological Survey']",,1.6,32,28,40,0,7,23,7,32.0,93.0,90.0,2.9,0,42.7865 +900,ml,https://github.com/shankarpandala/lazypredict,,,,shankarpandala/lazypredict,lazypredict,1573,190,22,Python,,lazypredict: Lazy Predict help build a lot of basic models without much code and helps understand which models works better without any parameter tuning,shankarpandala,2023-02-21,2019-11-16,170,9.221943048576215,"['machine-learning', 'automl', 'regression', 'classification']",2022-09-28,18,"['Ankur-singh@zoop.one', 'Arritmic@universityofoulu', 'brendalf@wildlife-studios', 'dataprofessor@streamlit', 'dependabot[bot]', 'felipesassi', 'pyup-bot@pyupio', 'shankarpandala@appliedmaterials', 'shyamcody', 'vidyap-xgboost@fiolabs-internal']",7,10,"['appliedmaterials', 'fiolabs-internal', 'pyupio', 'streamlit', 'universityofoulu', 'wildlife-studios', 'zoop.one']","['@fiolabs-internal ', '@pyupio', '@wildlife-studios', 'Applied Materials', 'Streamlit Inc.', 'University of Oulu', 'zoop.one']",,0.6,38,3,40,5,1,4,1,38.0,24.0,90.0,0.6,0,30.57017 +143,nlp,https://github.com/plasticityai/magnitude,,,,plasticityai/magnitude,magnitude,1559,113,37,Python,,"magnitude: A fast, efficient universal vector embedding utility package.",plasticityai,2023-02-21,2018-02-24,260,5.983004385964913,"['python', 'natural-language-processing', 'nlp', 'machine-learning', 'vectors', 'embeddings', 'word2vec', 'fasttext', 'glove', 'gensim', 'fast', 'memory-efficient', 'machine-learning-library', 'word-embeddings']",2020-07-17,4,"['AjayP13', 'alexsands', 'jweese', 'plasticity-admin@plasticityai']",1,10,['plasticityai'],['@plasticityai'],,0.0,0,0,61,32,0,28,28,0.0,0.0,90.0,0.0,0,15.27622 +662,util,https://github.com/numba/llvmlite,,,,numba/llvmlite,llvmlite,1557,297,53,Python,http://llvmlite.pydata.org/,llvmlite: A lightweight LLVM python binding for writing JIT compilers,numba,2023-02-20,2014-08-07,445,3.4921499519384813,[],2023-02-14,81,"['apmasell', 'esc@anaconda', 'franzhaas', 'gmarkall@nvidia', 'john-tornblom', 'pitrou', 'seibert', 'sklam', 'stuartarchibald', 'whitequark']",2,10,"['anaconda', 'nvidia']","['@nvidia', 'Anaconda Inc.']",,1.5,33,13,104,0,0,13,13,33.0,103.0,90.0,3.1,0,45.49609 +311,util,https://github.com/linkedin/shiv,,,,linkedin/shiv,shiv,1552,84,26,Python,,"shiv is a command line utility for building fully self contained Python zipapps as outlined in PEP 441, but with all their dependencies included.",linkedin,2023-02-20,2018-03-13,258,6.012174875484228,[],2022-11-04,39,"['ChrisCarini@linkedin', 'anthrotype', 'bzzzzzz@linkedin', 'dsully@linkedin', 'ipmb@lincolnloop', 'jhermann@mam-dev', 'lorencarvalho@linkedin', 'pfmoore', 'timgates42@iress', 'warsaw@linkedin']",4,10,"['iress', 'lincolnloop', 'linkedin', 'mam-dev']","['@LinkedIn', '@linkedin', '@mam-dev ', 'IRESS', 'Lincoln Loop', 'LinkedIn']",,0.15,5,3,60,4,2,4,2,5.0,5.0,90.0,1.0,0,31.55807 +635,debug,https://github.com/alexmojaki/birdseye,,,,alexmojaki/birdseye,birdseye,1539,77,43,JavaScript,https://birdseye.readthedocs.io,birdseye: Graphical Python debugger which lets you easily view the values of all evaluated expressions,alexmojaki,2023-02-18,2017-07-22,291,5.278294953454189,"['python-debugger', 'python', 'debugger', 'debugging', 'birdseye', 'ast']",2022-05-18,10,"['MichaelCurrin@actcommodities', 'aivarannamaa@cybernetica', 'alexmojaki', 'bugosiphionah', 'houluy@beijinguniversityofpostsandtelecomms.', 'skeledrew@skelevilletechnologysolutions', 'spamegg1']",4,10,"['actcommodities', 'beijinguniversityofpostsandtelecomms.', 'cybernetica', 'skelevilletechnologysolutions']","['ACT Commodities', 'Beijing University of Posts and Telecomms.', 'Cybernetica', 'Skeleville Technology Solutions']",,0.02,1,0,68,9,0,1,1,1.0,2.0,90.0,2.0,0,25.67002 +224,sim,https://github.com/google/brax,,,,google/brax,brax,1537,159,37,Jupyter Notebook,,brax: Massively parallel rigidbody physics simulation on accelerator hardware.,google,2023-02-19,2021-06-02,90,17.07777777777778,"['jax', 'reinforcement-learning', 'robotics', 'physics-simulation']",2023-02-09,27,"['7thStringofZhef', 'cdfreeman-google@google', 'cemlyn007@instadeep', 'danielsuo@princetonuniversity', 'erikfrey', 'lebrice', 'namheegordonkim', 'sgillen', 'traversaro@italianinstituteoftechnology', 'vwxyzjn@drexeluniversity']",5,10,"['drexeluniversity', 'google', 'instadeep', 'italianinstituteoftechnology', 'princetonuniversity']","['Drexel University', 'Google', 'InstaDeep', 'Italian Institute of Technology', 'Princeton University']",,0.37,48,31,21,0,8,9,8,48.0,72.0,90.0,1.5,0,39.00585 +612,testing,https://github.com/pytest-dev/pytest-mock,,,,pytest-dev/pytest-mock,pytest-mock,1525,121,33,Python,https://pytest-mock.readthedocs.io/en/latest/,pytest-mock: Thin-wrapper around the mock package for easier use with pytest,pytest-dev,2023-02-21,2014-07-17,448,3.3975175047740294,"['pytest', 'mock', 'hacktoberfest']",2023-02-14,64,"['The-Compiler@bruhinsoftware', 'blueyed@freelancer,upforhire', 'fogo', 'graingert', 'hugovk@nordsoftware', 'inderpreet99@wayfair', 'jurko-gospodnetic@pkesistemi', 'nicoddemus@esss', 'pre-commit-ci[bot]', 'tirkarthi@visa']",7,10,"['bruhinsoftware', 'esss', 'freelancer,upforhire', 'nordsoftware', 'pkesistemi', 'visa', 'wayfair']","['Bruhin Software', 'ESSS', 'Freelancer, up for hire', 'Nord Software', 'PKE sistemi', 'Visa Inc.', 'Wayfair']",,0.96,15,13,105,0,5,7,5,15.0,9.0,90.0,0.6,0,43.24972 +591,template,https://github.com/buuntu/fastapi-react,,,,buuntu/fastapi-react,fastapi-react,1510,260,36,Python,,"fastapi-react: 🚀 Cookiecutter Template for FastAPI + React Projects. Using PostgreSQL, SQLAlchemy, and Docker",buuntu,2023-02-21,2020-03-21,152,9.897003745318353,"['fastapi', 'postgres', 'cookiecutter', 'react', 'react-admin', 'nginx', 'boilerplate', 'full-stack', 'typescript', 'sqlalchemy', 'jwt', 'oauth2', 'docker']",2022-02-18,13,"['Buuntu@facebook', 'F1r3Hydr4nt', 'JasonHoku@jasonhoku', 'RobbertH', 'adamnieto@pfizer', 'arihantsurana@nearmap', 'cdeil@heidelbergcement', 'dependabot-preview[bot]', 'dependabot[bot]', 'ilyakam']",5,10,"['facebook', 'heidelbergcement', 'jasonhoku', 'nearmap', 'pfizer']","['@facebook', '@nearmap ', '@pfizer', 'HeidelbergCement', 'JasonHoku']",,0.0,4,2,36,12,0,1,1,4.0,2.0,90.0,0.5,0,23.47502 +438,gis,https://github.com/giswqs/leafmap,,,,giswqs/leafmap,leafmap,1500,183,45,Python,https://leafmap.org,leafmap: A Python package for interactive mapping and geospatial analysis with minimal coding in a Jupyter environment,giswqs,2023-02-20,2021-03-10,102,14.705882352941176,"['ipyleaflet', 'folium', 'mapping', 'python', 'geopython', 'jupyter-notebook', 'jupyter', 'gis', 'dataviz', 'data-science', 'whiteboxtools', 'geospatial', 'geospatial-analysis', 'leafmap', 'streamlit', 'streamlit-webapp', 'plotly', 'pydeck', 'keplergl']",2023-02-17,20,"['ajstewartlang@universityofmanchester', 'amorfinv', 'darrenwiens', 'giswqs@universityoftennessee', 'jbednar@anaconda', 'junjiez', 'rowheat02@naxa', 'sackh', 'sdruskat@germanaerospacecenter(dlr)', 'sugatoray@universityofwisconsin-milwaukee']",6,10,"['anaconda', 'germanaerospacecenter(dlr)', 'naxa', 'universityofmanchester', 'universityoftennessee', 'universityofwisconsin-milwaukee']","['Anaconda, Inc.', 'German Aerospace Center (DLR)', 'NAXA', 'University of Manchester', 'University of Tennessee', 'University of Wisconsin - Milwaukee']",,4.35,49,42,24,0,39,35,39,49.0,50.0,90.0,1.0,0,42.83276 +531,ml-dl,https://github.com/neuralmagic/sparseml,,,,neuralmagic/sparseml,sparseml,1499,113,39,Python,,"sparseml: Libraries for applying sparsification recipes to neural networks with a few lines of code, enabling faster and smaller models",neuralmagic,2023-02-19,2020-12-11,114,13.067247820672478,"['pytorch', 'keras', 'model-sparsification', 'sparsification-recipes', 'tensorflow', 'smaller-models', 'deep-learning-library', 'deep-learning-algorithms', 'deep-learning-models', 'automl', 'pruning-algorithms', 'sparsity', 'sparsification', 'recipe-driven-approaches', 'pruning', 'computer-vision-algorithms', 'object-detection', 'image-classification', 'nlp', 'onnx']",2023-02-20,40,"['KSGulin@neuralmagic', 'bfineran@neuralmagic', 'corey-nm', 'dbogunowicz', 'eldarkurtic', 'jeanniefinks@neuralmagic', 'kevinaer@neuralmagic', 'markurtz@neuralmagic', 'natuan', 'rahul-tuli@neuralmagic']",1,10,['neuralmagic'],"['@neuralmagic', '@neuralmagic ', 'Neural Magic']",,8.54,243,222,27,0,13,13,13,243.0,95.0,90.0,0.4,0,39.34342 +828,sim,https://github.com/farama-foundation/gymnasium,,,,farama-foundation/gymnasium,Gymnasium,1495,169,18,Python,https://gymnasium.farama.org,"Gymnasium: A standard API for single-agent reinforcement learning environments, with popular reference environments and related utilities (formerly Gym)",farama-foundation,2023-02-21,2022-09-08,23,62.66467065868263,[],2023-02-21,410,"['RedTachyon', 'gdb', 'jietang', 'jkterry1', 'jonasschneider', 'joschu', 'pseudo-rnd-thoughts', 'pzhokhov', 'tlbtlbtlb@umbrellaresearch', 'zuoxingdong@navercorp']",2,10,"['navercorp', 'umbrellaresearch']","['NAVER Corp', 'Umbrella Research']",,8.63,221,185,6,0,6,12,6,221.0,334.0,90.0,1.5,0,45.34824 +498,ml-dl,https://github.com/vt-vl-lab/fgvc,,,,vt-vl-lab/fgvc,FGVC,1482,244,68,Python,,FGVC: [ECCV 2020] Flow-edge Guided Video Completion ,vt-vl-lab,2023-02-19,2020-09-09,128,11.578125,[],2021-12-14,3,"['Korbpw', 'gaochen315@meta', 'jbhuang0604@virginiatech']",2,10,"['meta', 'virginiatech']","['Meta', 'Virginia Tech']",,0.0,0,0,30,14,0,0,0,0.0,0.0,90.0,0.0,0,11.00056 +372,gis,https://github.com/microsoft/torchgeo,,,,microsoft/torchgeo,torchgeo,1462,171,39,Python,https://torchgeo.rtfd.io,"TorchGeo: datasets, samplers, transforms, and pre-trained models for geospatial data",microsoft,2023-02-21,2021-05-21,91,15.940809968847352,"['pytorch', 'torchvision', 'datasets', 'models', 'transforms', 'remote-sensing', 'deep-learning', 'earth-observation']",2023-02-20,34,"['MATRIX4284', 'RitwikGupta@ucberkeley', 'adamjstewart@universityofillinoisaturbana-champaign', 'ashnair1', 'calebrob6@microsoft', 'dependabot[bot]', 'iejMac@stabilityai', 'isaaccorley@dronebase', 'nilsleh', 'remtav@nrcan']",6,10,"['dronebase', 'microsoft', 'nrcan', 'stabilityai', 'ucberkeley', 'universityofillinoisaturbana-champaign']","['@NRCan ', 'DroneBase', 'Microsoft', 'StabilityAI', 'UC Berkeley', 'University of Illinois at Urbana-Champaign']",,8.77,298,244,21,0,4,4,4,298.0,467.0,90.0,1.6,0,45.49611 +324,security,https://github.com/pyupio/safety,,,,pyupio/safety,safety,1460,124,31,Python,https://pyup.io/safety/,Safety checks Python dependencies for known security vulnerabilities and suggests the proper remediations for vulnerabilities detected.,pyupio,2023-02-21,2016-10-19,331,4.410876132930514,"['python', 'security', 'security-vulnerability', 'travis', 'vulnerability-scanners', 'vulnerability-detection']",2022-12-08,40,"['Jwomers@pyupio', 'cb22@roomsh', 'chowmean@practoolacabslearnstepsletusdevops', 'jayfk', 'lesleycla@pyupio', 'mgedmin@programmersofvilnius', 'nicholasks@syncsketch', 'pyup-bot@pyupio', 'rafaelpivato', 'yeisonvargasf@pyupio']",5,10,"['practoolacabslearnstepsletusdevops', 'programmersofvilnius', 'pyupio', 'roomsh', 'syncsketch']","['@practo @olacabs @learnsteps @letusdevops', '@pyupio', '@pyupio ', '@roomsh ', 'Programmers of Vilnius', 'SyncSketch']",,2.06,41,30,77,2,11,9,11,41.0,39.0,90.0,1.0,0,41.27583 +298,crypto,https://github.com/blankly-finance/blankly,,,,blankly-finance/blankly,blankly,1458,192,29,Python,https://package.blankly.finance,"blankly: 🚀 💸 Easily build, backtest and deploy your algo in just a few lines of code. Trade stocks, cryptos, and forex across exchanges w/ one package.",blankly-finance,2023-02-21,2021-03-09,102,14.274125874125874,"['cryptocurrency', 'bot-framework', 'investment', 'bots', 'bot', 'coinbase', 'binance', 'blankly', 'stocks', 'platform', 'framework', 'trading', 'trading-bot', 'trading-strategies', 'python', 'crypto', 'algotrading']",2023-02-02,16,"['AlgoQ@algoq', 'Aryan34', 'AydinGokce', 'EmersonDove@student', 'arun-annamalai@amazonwebservices', 'bfan1256', 'jkalish14', 'jordibeen@develeopardscheck-mobility', 'mehta-avi', 'qmatias@open-shade']",5,10,"['algoq', 'amazonwebservices', 'develeopardscheck-mobility', 'open-shade', 'student']","['@Develeopards @check-mobility ', '@open-shade ', 'AlgoQ', 'Amazon Web Services', 'Student']",,7.21,16,5,24,1,3,14,3,16.0,36.0,90.0,2.2,0,37.0026 +977,ml,https://github.com/lucidrains/musiclm-pytorch,1.0,,,lucidrains/musiclm-pytorch,musiclm-pytorch,1458,91,71,Python,,"musiclm-pytorch: Implementation of MusicLM, Google's new SOTA model for music generation using attention networks, in Pytorch",lucidrains,2023-02-21,2023-01-27,3,392.53846153846155,"['artificial-intelligence', 'attention-mechanisms', 'deep-learning', 'music-synthesis', 'transformers']",2023-02-17,1,['lucidrains'],0,10,[],[],,1.06,22,20,1,0,25,304,25,22.0,110.0,90.0,5.0,0,22.5318 +861,jupyter,https://github.com/jupyter/nbconvert,,,,jupyter/nbconvert,nbconvert,1446,512,51,Python,https://nbconvert.readthedocs.io/,nbconvert: Jupyter Notebook Conversion,jupyter,2023-02-20,2015-04-09,410,3.519471488178025,[],2023-02-20,256,"['Carreau@quansight-labs', 'MSeal@noteable-io', 'SylvainCorlay@quantstack', 'blink1073@mongodb', 'damianavila', 'jdfreder@google', 'jhamrick', 'minrk@simularesearchlaboratory', 'mpacer@netflix', 'takluyver']",7,10,"['google', 'mongodb', 'netflix', 'noteable-io', 'quansight-labs', 'quantstack', 'simularesearchlaboratory']","['@Quansight-Labs', '@google ', '@noteable-io', 'MongoDB', 'Netflix', 'QuantStack', 'Simula Research Laboratory']",,3.0,69,28,96,0,21,9,21,69.0,85.0,90.0,1.2,0,53.23685 +949,nlp,https://github.com/alibaba/easynlp,,,,alibaba/easynlp,EasyNLP,1442,178,31,Python,,EasyNLP: A Comprehensive and Easy-to-use NLP Toolkit,alibaba,2023-02-21,2022-04-06,46,31.347826086956523,"['transformers', 'bert', 'nlp', 'pretrained-models', 'deep-learning', 'pytorch', 'fewshot-learning', 'knowledge-distillation', 'knowledge-pretraining', 'text-image-retrieval', 'text-to-image-synthesis', 'machine-learning', 'text-classification', 'transfer-learning']",2023-02-21,33,"['Chen9154', 'LZYSaltedFish', 'Longpai@cqu', 'chywang', 'deplay', 'lwmlyy@shanghaiuniversityoffinanceandeconomics', 'minghui@alibabagroup', 'ttliu-kiwi@daseecnu', 'wjn1996@http://www.wjn1996.cn', 'zhuxiangru']",5,10,"['alibabagroup', 'cqu', 'daseecnu', 'http://www.wjn1996.cn', 'shanghaiuniversityoffinanceandeconomics']","['Alibaba Group', 'CQU', 'Dase@Ecnu', 'Shanghai University of Finance and Economics', 'http://www.wjn1996.cn']",,11.25,52,40,11,0,1,1,1,52.0,41.0,90.0,0.8,0,37.93277 +638,perf,https://github.com/dask/distributed,,,,dask/distributed,distributed,1440,674,58,Python,https://distributed.dask.org,distributed: A distributed task scheduler for Dask,dask,2023-02-20,2015-09-13,388,3.7072453107760204,"['pydata', 'dask', 'distributed-computing', 'python', 'hacktoberfest']",2023-02-20,306,"['crusaderky', 'fjetter@coiled', 'gjoseph92@coiled', 'graingert', 'hendrikmakait@coiled', 'jacobtomlinson@nvidia', 'jakirkham', 'jrbourbeau@coiled', 'mrocklin@coiled', 'pitrou']",2,10,"['coiled', 'nvidia']","['@coiled', '@coiled ', '@nvidia']",,14.63,297,171,91,0,0,26,26,297.0,809.0,90.0,2.7,0,55.90811 +429,jupyter,https://github.com/jupyter-lsp/jupyterlab-lsp,,,,jupyter-lsp/jupyterlab-lsp,jupyterlab-lsp,1428,118,17,TypeScript,,jupyterlab-lsp: Coding assistance for JupyterLab (code navigation + hover suggestions + linters + autocompletion + rename) using Language Server Protocol,jupyter-lsp,2023-02-21,2019-08-17,183,7.778988326848249,"['jupyterlab', 'jupyterlab-extension', 'language-server-protocol', 'jupyter-lab', 'lsp', 'linter', 'jupyter', 'jupyter-notebook', 'notebook', 'notebook-jupyter', 'ipython', 'autocompletion', 'julia-language', 'r']",2023-01-02,46,"['Carreau@quansight-labs', 'JessicaBarh', 'bollwyvl', 'dependabot[bot]', 'fcollonval@quantstack', 'jtpio@quantstack', 'karlaspuldaro@ibm-codait', 'krassowski@universityofoxford|quansight', 'martinRenou@quantstack', 'trajamsmith@google']",5,10,"['google', 'ibm-codait', 'quansight-labs', 'quantstack', 'universityofoxford|quansight']","['@Quansight-Labs', '@QuantStack', 'Google', 'IBM - CODAIT', 'University of Oxford | Quansight']",,3.19,46,23,43,2,2,12,2,46.0,77.0,90.0,1.7,0,39.48395 +108,util,https://github.com/nficano/python-lambda,,,,nficano/python-lambda,python-lambda,1427,228,32,Python,,python-lambda: A toolkit for developing and deploying serverless Python code in AWS Lambda. ,nficano,2023-02-21,2016-02-26,364,3.9126517822169995,"['python', 'aws', 'aws-lambda', 'microservices', 'serverless']",2022-06-03,48,"['asaolabs', 'dependabot-preview[bot]', 'gmyers-amfam@amfamlabs', 'jmeekhof@charliehealth', 'loide', 'mwbenowitz', 'nficano', 'rishabh-bhargava@stanforduniversity', 'slapula', 'soapergem@gemovationlabs']",4,10,"['amfamlabs', 'charliehealth', 'gemovationlabs', 'stanforduniversity']","['@AmFamLabs ', 'Charlie Health', 'Gemovation Labs, LLC', 'Stanford University']",,0.02,3,0,85,9,0,8,8,3.0,0.0,90.0,0.0,0,28.83879 +721,util,https://github.com/omry/omegaconf,,,,omry/omegaconf,omegaconf,1405,74,16,Python,,omegaconf: Flexible Python configuration system. The last one you will ever need.,omry,2023-02-20,2018-09-03,233,6.022657685241886,"['python', 'yaml', 'yaml-configuration', 'configuration-files', 'configuration-loader', 'python-types', 'schema-validator']",2022-12-20,28,"['Jasha10', 'anthonytec2@upenn', 'jgehring@facebookairesearch', 'kfollesdal', 'maresb@m²hycongmbh', 'odelalleau', 'omry@facebookairesearch', 'pereman2@ibmceph', 'pixelb@facebook', 'sugatoray@universityofwisconsin-milwaukee']",6,10,"['facebook', 'facebookairesearch', 'ibmceph', 'm²hycongmbh', 'universityofwisconsin-milwaukee', 'upenn']","['@facebook', '@ibm @ceph', '@upenn', 'Facebook AI Research', 'University of Wisconsin - Milwaukee', 'm²hycon GmbH']",,2.06,34,18,54,2,4,4,4,34.0,75.0,90.0,2.2,0,40.18628 +317,gamedev,https://github.com/pyglet/pyglet,,,,pyglet/pyglet,pyglet,1402,252,32,Python,http://pyglet.org,"pyglet is a cross-platform windowing and multimedia library for Python, for developing games and other visually rich applications.",pyglet,2023-02-18,2019-06-09,193,7.248153618906942,"['pyglet', 'python', 'opengl', 'gamedev', 'scientific-visualization']",2023-02-19,143,"['aholkner', 'andy-5', 'benmoran56', 'caffeinepills', 'dangillet', 'einarf@zetta.io', 'phillip-nguyen', 'reidrac@itv', 'silvester747@tomtom-international', 'techtonik']",3,10,"['itv', 'tomtom-international', 'zetta.io']","['@ITV ', '@tomtom-international', 'Zetta.IO']",,7.92,79,54,45,0,9,15,9,79.0,193.0,90.0,2.4,0,48.74554 +149,data,https://github.com/simple-salesforce/simple-salesforce,,,,simple-salesforce/simple-salesforce,simple-salesforce,1397,614,89,Python,,simple-salesforce: A very simple Salesforce.com REST API client for Python,simple-salesforce,2023-02-21,2013-01-17,526,2.6515726681127982,"['salesforce', 'api', 'api-client', 'python']",2023-01-18,75,"['andscoop', 'demianbrecht@salesforce', 'fr-anthony', 'hello-josh', 'jasonschroeder-sfdc@salesforce', 'jon-wobken', 'llazzaro@:+1:', 'nickcatal', 'scottpersinger@tatari', 'shawalli']",3,10,"[':+1:', 'salesforce', 'tatari']","[':+1: ', '@salesforce', '@salesforce ', 'Tatari']",,0.23,54,30,123,1,5,4,5,54.0,37.0,90.0,0.7,0,39.77074 +318,gamedev,https://github.com/pythonarcade/arcade,1.0,,,pythonarcade/arcade,arcade,1395,263,56,Python,http://arcade.academy,arcade: Easy to use Python library for creating 2D arcade games.,pythonarcade,2023-02-20,2016-01-04,372,3.74712202609363,"['python3', 'python', 'arcade-framework', 'arcade-api', 'arcade-learning-environment', 'opengl', 'educational-technology', 'educational-resources']",2023-02-21,137,"['Cleptomania', 'SirGnip', 'chpurdy', 'dangillet', 'einarf@zetta.io', 'eruvanos@vw-dilab', 'janscas', 'pauleveritt@jetbrains', 'pushfoo@freelance,opentofull-time', 'pvcraven@optimizely']",5,10,"['freelance,opentofull-time', 'jetbrains', 'optimizely', 'vw-dilab', 'zetta.io']","['@vw-dilab ', 'Freelance, open to full-time', 'JetBrains', 'Optimizely', 'Zetta.IO']",,15.06,213,173,87,0,0,18,18,213.0,246.0,90.0,1.2,0,53.98334 +613,testing,https://github.com/pytest-dev/pytest-cov,,,,pytest-dev/pytest-cov,pytest-cov,1391,191,34,Python,,pytest-cov: Coverage plugin for pytest.,pytest-dev,2023-02-20,2014-04-17,461,3.0117537890504176,"['pytest', 'python']",2022-12-03,81,"['blueyed@freelancer,upforhire', 'davidszotten', 'graingert', 'hugovk@nordsoftware', 'ionelmc', 'nedbat', 'nicoddemus@esss', 'pre-commit-ci[bot]', 'schlamar', 'wolph']",3,10,"['esss', 'freelancer,upforhire', 'nordsoftware']","['ESSS', 'Freelancer, up for hire', 'Nord Software']",,0.62,32,13,108,3,0,5,5,32.0,78.0,90.0,2.4,0,40.53243 +284,data,https://github.com/sdispater/orator,,,,sdispater/orator,orator,1385,164,46,Python,https://orator-orm.com,orator: The Orator ORM provides a simple yet beautiful ActiveRecord implementation.,sdispater,2023-02-21,2015-05-24,404,3.42458495231367,"['python', 'orm', 'database']",2022-03-13,32,"['ArthurYdalgo', 'BrandonShar@ezcater', 'cselmer', 'denislins', 'ihumanable', 'jiahut', 'josephmancuso@masoniteframework', 'scorphus@gitlab', 'sdispater', 'vaibhavmule@polymerize']",4,10,"['ezcater', 'gitlab', 'masoniteframework', 'polymerize']","['@GitLab', '@MasoniteFramework ', '@Polymerize ', 'ezCater']",,0.02,2,0,94,12,0,3,3,2.0,1.0,90.0,0.5,0,27.42174 +267,nlp,https://github.com/arxiv-vanity/arxiv-vanity,,,,arxiv-vanity/arxiv-vanity,arxiv-vanity,1384,89,22,Python,https://www.arxiv-vanity.com,arxiv-vanity: Renders papers from arXiv as responsive web pages so you don't have to squint at a PDF.,arxiv-vanity,2023-02-18,2017-08-12,288,4.796039603960396,"['latex', 'academic-publishing', 'science', 'arxiv']",2022-01-18,9,"['ImgBotApp@imgbot', 'bfirsh@replicate', 'dependabot-preview[bot]', 'dependabot-support', 'dependabot[bot]', 'jai-deepsource@deepsourcelabs', 'jkukul', 'ryota-mo']",3,10,"['deepsourcelabs', 'imgbot', 'replicate']","['@deepsourcelabs ', '@replicate', 'Imgbot']",,0.0,20,8,67,13,0,0,0,20.0,11.0,90.0,0.6,0,22.65393 +766,diffusion,https://github.com/divamgupta/stable-diffusion-tensorflow,,,,divamgupta/stable-diffusion-tensorflow,stable-diffusion-tensorflow,1371,192,22,Python,,stable-diffusion-tensorflow: Stable Diffusion in TensorFlow / Keras,divamgupta,2023-02-21,2022-09-15,22,59.98125,[],2022-11-22,13,"['AK391@huggingface', 'Lime-Cakes', 'PabloRosales', 'ShaunXZ', 'adietrichs', 'alexgann', 'costiash', 'divamgupta', 'fchollet', 'virtualramblas']",1,10,['huggingface'],['Huggingface'],,1.79,11,1,5,3,0,0,0,11.0,21.0,90.0,1.9,0,20.14572 +478,ml-dl,https://github.com/tensorflow/mesh,,,,tensorflow/mesh,mesh,1370,240,47,Python,,Mesh TensorFlow: Model Parallelism Made Easier,tensorflow,2023-02-21,2018-09-20,230,5.9344059405940595,[],2023-01-25,49,"['adarob@google', 'craffel@uncandhuggingface', 'dustinvtran@googlebrain', 'hwchung27', 'katelee168', 'mmatena', 'nfiedel@google', 'nshazeer', 'sharannarang', 'toponado-zz@google']",3,10,"['google', 'googlebrain', 'uncandhuggingface']","['@Google', '@google', 'Google', 'Google Brain', 'UNC and Hugging Face']",,0.12,2,0,54,1,0,1,1,2.0,0.0,90.0,0.0,0,27.92751 +659,ml,https://github.com/tensorly/tensorly,,,,tensorly/tensorly,tensorly,1367,267,46,Python,http://tensorly.org,TensorLy: Tensor Learning in Python.,tensorly,2023-02-21,2016-10-21,330,4.133477321814254,"['machine-learning', 'tensor', 'decomposition', 'tensor-algebra', 'tensorly', 'tensor-learning', 'python', 'tensor-methods', 'pytorch', 'mxnet', 'jax', 'tensorflow', 'cupy', 'numpy', 'tensor-decomposition', 'tensor-factorization', 'tensor-regression', 'regression']",2023-02-16,59,"['JeanKossaifi@nvidiaai', 'MarieRoald@simulametropolitan', 'aarmey@universityofcalifornia,losangeles', 'asmeurer@quansight', 'caglayantuna@inria', 'cyrillustan', 'merajhashemi', 'scopatz', 'taylorpatti', 'yngvem@bouvet']",6,10,"['bouvet', 'inria', 'nvidiaai', 'quansight', 'simulametropolitan', 'universityofcalifornia,losangeles']","['@Quansight ', 'Bouvet', 'INRIA', 'NVIDIA AI', 'Simula Metropolitan', 'University of California, Los Angeles']",,5.31,50,33,77,0,1,3,1,50.0,104.0,90.0,2.1,0,45.87107 +460,nlp,https://github.com/google-research/language,,,,google-research/language,language,1363,318,64,Python,https://ai.google/research/teams/language/,language: Shared repository for open-sourced projects from the Google AI Language team.,google-research,2023-02-20,2018-10-16,227,6.00062893081761,"['natural-language-processing', 'machine-learning', 'research']",2023-02-14,10,"['Harmon758', 'bdhingra', 'calberti', 'dhgarrette@googleresearch', 'djweiss@google', 'jhclark-google@google', 'kentonl@universityofwashington', 'manzilz', 'oja', 'slavpetrov']",3,10,"['google', 'googleresearch', 'universityofwashington']","['Google', 'Google Research', 'University of Washington']",,0.1,5,1,53,0,0,0,0,5.0,1.0,90.0,0.2,0,25.86332 +676,gis,https://github.com/apache/incubator-sedona,,,,apache/incubator-sedona,sedona,1359,558,105,Java,http://sedona.apache.org/,sedona: A cluster computing framework for processing large-scale geospatial data,apache,2023-02-20,2015-04-24,408,3.3250611674239776,"['cluster-computing', 'spatial-sql', 'geospatial', 'spatial-analysis', 'spatial-query', 'scala', 'java', 'python']",2023-02-20,93,"['Imbruced', 'Kontinuation@wherobots', 'jiayuasu@wherobots', 'jinxuan@bloomberg', 'kanchanchy', 'mbasmanova', 'netanel246@upstreamsecurity', 'sekikn@nttdata', 'umartin', 'zongsizhang@grab']",5,10,"['bloomberg', 'grab', 'nttdata', 'upstreamsecurity', 'wherobots']","['Bloomberg', 'Grab', 'NTT DATA', 'Upstream Security ', 'Wherobots Inc.']",,4.27,180,176,95,0,4,9,4,180.0,97.0,90.0,0.5,0,47.12692 +898,ml-ops,https://github.com/hi-primus/optimus,,,,hi-primus/optimus,optimus,1338,224,42,Python,https://hi-optimus.com,"optimus: :truck: Agile Data Preparation Workflows made easy with Pandas, Dask, cuDF, Dask-cuDF, Vaex and PySpark",hi-primus,2023-02-19,2017-07-13,292,4.568780487804878,"['spark', 'pyspark', 'data-wrangling', 'bigdata', 'big-data-cleaning', 'data-science', 'data-cleansing', 'data-cleaner', 'data-transformation', 'machine-learning', 'data-profiling', 'data-extraction', 'data-exploration', 'data-analysis', 'data-preparation', 'cudf', 'dask', 'dask-cudf', 'data-cleaning']",2022-10-17,24,"['FavioVazquez@life', 'Jarrioja@boitas', 'MrPowers', 'argenisleon@bumblebee', 'arpit1997@socialcopsdeviiitvatlanhq', 'dependabot[bot]', 'eschizoid', 'joseangelhernao', 'luis11011@bumblebee', 'pyup-bot@pyupio']",5,10,"['boitas', 'bumblebee', 'life', 'pyupio', 'socialcopsdeviiitvatlanhq']","['@boitas', '@pyupio', '@socialcopsdev @iiitv @atlanhq', 'Bumblebee', 'Life']",,3.13,11,6,68,4,7,23,7,11.0,7.0,90.0,0.6,0,35.30256 +338,perf,https://github.com/tlkh/asitop,,,,tlkh/asitop,asitop,1334,79,19,Python,https://tlkh.github.io/asitop/,asitop: Perf monitoring CLI tool for Apple Silicon,tlkh,2023-02-21,2021-10-27,69,19.333333333333332,"['cpu', 'gpu', 'cli', 'macos', 'm1', 'apple-silicon']",2023-01-24,8,"['Lunar-ZZ', 'TienTim', 'ardacoskunses', 'iiSeymour@oxfordnanoporetechnologies', 'mend-bolt-for-github[bot]', 'paul-nameless', 'tlkh@singaporeuniversityoftechnologyanddesign']",2,10,"['oxfordnanoporetechnologies', 'singaporeuniversityoftechnologyanddesign']","['Oxford Nanopore Technologies', 'Singapore University of Technology and Design']",,0.29,13,2,16,1,0,0,0,13.0,25.0,90.0,1.9,0,24.24257 +450,gis,https://github.com/jupyter-widgets/ipyleaflet,,,,jupyter-widgets/ipyleaflet,ipyleaflet,1331,350,61,JavaScript,https://ipyleaflet.readthedocs.io,ipyleaflet: A Jupyter - Leaflet.js bridge,jupyter-widgets,2023-02-20,2014-05-07,459,2.899782135076253,"['jupyterlab-extension', 'leaflet', 'visualization', 'jupyter']",2023-02-10,82,"['HaudinFlorence@quantstack', 'SylvainCorlay@quantstack', 'VasavanThiru', 'davidbrochart@quantstack', 'dependabot[bot]', 'ellisonbg@amazonwebservices', 'fitoprincipe@ldc', 'jasongrout@databricks', 'martinRenou@quantstack', 'sackh']",4,10,"['amazonwebservices', 'databricks', 'ldc', 'quantstack']","['@QuantStack', '@databricks', 'Amazon Web Services', 'LDC', 'QuantStack']",,1.87,34,6,107,0,4,9,4,34.0,43.0,90.0,1.3,0,43.59071 +877,time-series,https://github.com/alkaline-ml/pmdarima,,,,alkaline-ml/pmdarima,pmdarima,1324,220,36,Python,https://www.alkaline-ml.com/pmdarima,"pmdarima: A statistical library designed to fill the void in Python's time series analysis capabilities, including the equivalent of R's auto.arima function.",alkaline-ml,2023-02-20,2017-03-30,307,4.300696055684455,"['arima', 'time-series', 'forecasting', 'forecasting-models', 'python', 'econometrics', 'pmdarima', 'machine-learning', 'sarimax']",2022-12-20,22,"['aaronreidsmith@sevcosecurity', 'anne-decusatis', 'charlesdrotar@microsoft', 'chivalry@chivalrysoftware', 'christopher-siewert', 'felix-hilden', 'garyForeman', 'ryanrussell', 'telamonian@jpmorgan', 'tgsmith61591@toyota-connected']",5,10,"['chivalrysoftware', 'jpmorgan', 'microsoft', 'sevcosecurity', 'toyota-connected']","['@toyota-connected ', 'Chivalry Software', 'JP Morgan', 'Microsoft', 'Sevco Security']",,0.4,14,6,72,2,5,7,5,14.0,8.0,90.0,0.6,0,34.26207 +465,ml-dl,https://github.com/pytorch/torchrec,,,,pytorch/torchrec,torchrec,1321,226,26,Python,,torchrec: Pytorch domain library for recommendation systems,pytorch,2023-02-21,2021-07-12,84,15.672881355932203,"['pytorch', 'gpu', 'deep-learning', 'cuda', 'recommender-system', 'recommendation-system', 'sharding']",2023-02-18,140,"['RenfeiChen-FB', 'YLGH', 'YazhiGao@facebookai', 'colin2328@pytorch', 'facebook-github-bot@facebook', 'joshuadeng', 's4ayub', 'samiwilf', 'xing-liu@facebookai', 'zyan0@meta']",4,10,"['facebook', 'facebookai', 'meta', 'pytorch']","['@facebook', '@pytorch ', 'Facebook AI', 'Meta']",,14.08,244,191,20,0,4,3,4,231.0,565.0,90.0,2.4,0,49.15202 +941,data,https://github.com/datastax/python-driver,,,,datastax/python-driver,python-driver,1318,510,81,Python,,python-driver: DataStax Python Driver for Apache Cassandra,datastax,2023-02-17,2013-07-08,502,2.624004550625711,[],2023-01-24,187,"['GregBestland', 'TheRealFalcon@canonical', 'aboudreault@kovarogroup', 'aholmberg', 'bdeggleston@apple', 'beltran@google', 'joaquincasares@audiusproject', 'mambocab@rapid7', 'rustyrazorblade@apple', 'thobbs@anticlassicstudios']",7,10,"['anticlassicstudios', 'apple', 'audiusproject', 'canonical', 'google', 'kovarogroup', 'rapid7']","['@AudiusProject', 'Anticlassic Studios, LLC', 'Apple', 'Canonical', 'Google LLC', 'Kovaro Group', 'Rapid7']",,0.25,8,4,117,1,0,9,9,8.0,13.0,90.0,1.6,0,45.8438 +885,time-series,https://github.com/aistream-peelout/flow-forecast,,,,aistream-peelout/flow-forecast,flow-forecast,1317,224,21,Python,https://flow-forecast.atlassian.net/wiki/spaces/FF/overview,"flow-forecast: Deep learning PyTorch library for time series forecasting, classification, and anomaly detection (originally for flood forecasting).",aistream-peelout,2023-02-20,2019-08-15,183,7.163170163170163,"['deep-learning', 'pytorch', 'time-series-forecasting', 'time-series', 'transfer-learning', 'deep-neural-networks', 'transformer', 'forecasting', 'lstm', 'time-series-regression', 'state-of-the-art-models', 'anomaly-detection', 'time-series-analysis', 'hacktoberfest']",2023-02-20,14,"['97harsh', 'MaggieWYZW@bumbleinc', 'Pranjalya@deepsync-technologies', 'codeananda', 'dependabot-preview[bot]', 'dependabot[bot]', 'isaacmg', 'kritim13', 'michaelwang1994', 'wwymak']",2,10,"['bumbleinc', 'deepsync-technologies']","['@deepsync-technologies', 'Bumble Inc']",,4.42,28,21,43,0,6,11,6,28.0,27.0,90.0,1.0,0,35.90675 +391,data,https://github.com/mchong6/jojogan,,,,mchong6/jojogan,JoJoGAN,1300,193,25,Jupyter Notebook,,Official PyTorch repo for JoJoGAN: One Shot Face Stylization,mchong6,2023-02-20,2021-12-17,61,21.064814814814813,"['image-translation', 'gans', 'anime']",2022-02-05,3,"['AK391@huggingface', 'mchong6', 'vganapati']",1,10,['huggingface'],['Huggingface'],,0.0,6,1,14,13,0,0,0,6.0,2.0,90.0,0.3,0,10.33555 +514,data,https://github.com/agronholm/sqlacodegen,,,,agronholm/sqlacodegen,sqlacodegen,1293,200,21,Python,,sqlacodegen: Automatic model code generator for SQLAlchemy,agronholm,2023-02-19,2016-12-28,321,4.02803738317757,[],2022-11-23,16,"['KhirilovA', 'agronholm@nextdaysolutionsoy', 'andrewcarretta', 'd10n', 'danohu', 'dhirschfeld', 'laurentS', 'leonarduschen', 'mzpqnxow@mzpqnxow', 'pre-commit-ci[bot]']",2,10,"['mzpqnxow', 'nextdaysolutionsoy']","['MZPQNXOW, LLC', 'NextDay Solutions Oy']",,0.69,16,3,75,3,0,3,3,16.0,55.0,90.0,3.4,0,33.00863 +435,data,https://github.com/sdv-dev/sdv,,,,sdv-dev/sdv,SDV,1288,206,40,Python,https://sdv.dev/SDV,"SDV: Synthetic Data Generation for tabular, relational and time series data.",sdv-dev,2023-02-21,2018-05-11,249,5.157894736842105,"['synthetic-data', 'machine-learning', 'relational-datasets', 'multi-table', 'time-series', 'synthetic-data-generation', 'sdv', 'data-generation', 'generative-adversarial-network', 'gan', 'gans', 'deep-learning', 'generative-ai', 'generative-model']",2023-01-24,41,"['JDTheRipperPC', 'ManuelAlvarezC@precognit', 'amontanez24', 'csala@pythiac', 'fealho@datacebo', 'katxiao', 'kveerama@mit', 'npatki@datacebo', 'pvk-developer@sdv-dev', 'xamm@h&mgroup']",6,10,"['datacebo', 'h&mgroup', 'mit', 'precognit', 'pythiac', 'sdv-dev']","['@datacebo', '@precognit ', '@pythiac ', '@sdv-dev ', 'DataCebo', 'H&M Group', 'MIT']",,2.83,189,159,58,1,8,9,8,189.0,198.0,90.0,1.0,0,44.45314 +474,nlp,https://github.com/neuralmagic/deepsparse,,,,neuralmagic/deepsparse,deepsparse,1273,80,40,Python,,deepsparse: Inference runtime offering GPU-class performance on CPUs and APIs to integrate ML into your application,neuralmagic,2023-02-21,2020-12-14,114,11.13875,"['ml', 'machinelearning', 'pytorch', 'tensorflow', 'onnx', 'deepsparse-engine', 'sparsified-models', 'sparsification-recipe', 'inference', 'computer-vision', 'object-detection', 'pruning', 'quantization', 'pretrained-models', 'nlp', 'auto-ml', 'cpus', 'yolov3', 'sparsification', 'cpu-inference-api']",2023-02-20,31,"['InquestGeronimo@neuralmagic', 'bfineran@neuralmagic', 'corey-nm', 'dbogunowicz', 'dhuangnm@neuralmagic', 'jeanniefinks@neuralmagic', 'kylesayrs', 'markurtz@neuralmagic', 'mgoin@neuralmagic', 'rahul-tuli@neuralmagic']",1,10,['neuralmagic'],"['@neuralmagic', 'Neural Magic']",,7.31,152,139,27,0,15,14,15,152.0,85.0,90.0,0.6,0,38.5848 +178,nlp,https://github.com/explosion/spacy-models,,,,explosion/spacy-models,spacy-models,1253,282,50,Python,https://spacy.io,spacy-models: 💫 Models for the spaCy Natural Language Processing (NLP) library,explosion,2023-02-21,2017-03-14,310,4.040073698756333,"['spacy', 'nlp', 'natural-language-processing', 'machine-learning', 'models', 'machine-learning-models', 'statistical-models', 'spacy-models']",2023-01-23,14,"['BreakBB@codecentric', 'adrianeboyd', 'davidefiocco@frontiersin', 'explosion-bot@explosion', 'honnibal@founderexplosion', 'ines@founderexplosion', 'kuk@alexanderkukushkindatasciencelaboratory', 'manojkumarvohra', 'maziyarpanahi@iscpifjohnsnowlabs', 'polm@cotonoha']",7,10,"['alexanderkukushkindatasciencelaboratory', 'codecentric', 'cotonoha', 'explosion', 'founderexplosion', 'frontiersin', 'iscpifjohnsnowlabs']","['@ISCPIF @JohnSnowLabs', '@codecentric', '@explosion', '@frontiersin', 'Alexander Kukushkin Data Science Laboratory', 'Cotonoha', 'Founder @explosion ']",,5.1,8,8,72,1,246,138,246,8.0,0.0,90.0,0.0,0,38.50456 +264,data,https://github.com/collerek/ormar,,,,collerek/ormar,ormar,1249,63,16,Python,https://collerek.github.io/ormar/,ormar: python async orm with fastapi in mind and pydantic validation,collerek,2023-02-20,2020-08-02,133,9.360813704496788,"['orm', 'sqlalchemy', 'async-orm', 'python-orm', 'fastapi', 'pydantic', 'alembic', 'databases']",2023-01-29,30,"['Abdeldjalil-H', 'EspenAlbert@wheel-me', 'ProgrammerPlus1998@金色财经', 'SepehrBazyar@gpsir', 'collerek@kaizentech', 'dependabot[bot]', 'johnthagen', 'mojixcoder@snapp-cab', 'ponytailer@leyantech', 's3rius']",6,10,"['gpsir', 'kaizentech', 'leyantech', 'snapp-cab', 'wheel-me', '金色财经']","['@snapp-cab', '@wheel-me ', 'GPSIR', 'KaizenTech', 'leyantech', '金色财经']",,4.88,75,51,31,1,7,30,7,75.0,77.0,90.0,1.0,0,41.22413 +414,nlp,https://github.com/chrismattmann/tika-python,,,,chrismattmann/tika-python,tika-python,1240,224,38,Python,,Tika-Python is a Python binding to the Apache Tika™ REST services allowing Tika to be called natively in the Python community.,chrismattmann,2023-02-15,2014-06-26,451,2.74423016123933,"['tika-server', 'python', 'tika-python', 'tika-server-jar', 'parser-interface', 'parse', 'translation-interface', 'usc', 'text-extraction', 'mime', 'buffer', 'memex', 'text-recognition', 'detection', 'recognition', 'nlp', 'nlp-machine-learning', 'nlp-library', 'covid-19', 'extraction']",2023-01-22,68,"['ACSC-CyberLab', 'Pehat', 'carantunes@cern', 'chrismattmann@nasa', 'dongnizh', 'igormp', 'jjelosua@elevenpaths', 'kdurril', 'matthewdavislee', 'yashtanna93@amzn']",4,10,"['amzn', 'cern', 'elevenpaths', 'nasa']","['@amzn', '@cern', 'Elevenpaths', 'NASA']",,0.25,92,88,105,1,2,3,2,92.0,75.0,90.0,0.8,0,40.39795 +194,web,https://github.com/jordaneremieff/mangum,,,,jordaneremieff/mangum,mangum,1216,79,16,Python,https://mangum.io/,mangum: AWS Lambda support for ASGI applications,jordaneremieff,2023-02-21,2019-01-14,214,5.674666666666667,"['asgi', 'aws', 'lambda', 'serverless', 'python', 'asyncio', 'api-gateway', 'starlette', 'fastapi', 'quart', 'django', 'sanic', 'aws-lambda', 'python3']",2022-11-27,29,"['SKalt@resurety', 'allan-simon@rosaly', 'aminalaee', 'emcpow2', 'jordaneremieff', 'koxudaxi@tractabletractableai', 'lsorber', 'nathanglover@thewaltdisneycompany', 'simonw@datasette', 'zachmullen@kitware']",6,10,"['datasette', 'kitware', 'resurety', 'rosaly', 'thewaltdisneycompany', 'tractabletractableai']","['@Kitware ', '@REsurety', '@Rosaly', 'Datasette', 'The Walt Disney Company', 'Tractable @tractableai']",,0.35,12,7,50,3,7,14,7,12.0,11.0,90.0,0.9,0,35.34099 +566,gis,https://github.com/gboeing/osmnx-examples,,,,gboeing/osmnx-examples,osmnx-examples,1215,449,54,Jupyter Notebook,https://github.com/gboeing/osmnx,"osmnx-examples: Usage examples, demos, and tutorials for OSMnx.",gboeing,2023-02-19,2017-07-22,291,4.167074963253307,"['street-networks', 'binder', 'jupyter-notebook', 'notebooks', 'urban-planning', 'city', 'cities', 'openstreetmap', 'network-analysis', 'transport', 'transportation', 'accessibility', 'urban-data-science', 'urban-analytics', 'public-transport', 'python', 'transit', 'urban-design']",2023-01-01,1,['gboeing@universityofsoutherncalifornia'],1,10,['universityofsoutherncalifornia'],['University of Southern California'],,0.48,4,4,68,2,0,2,2,4.0,3.0,90.0,0.8,0,20.35291 +720,math,https://github.com/facebookresearch/theseus,,,,facebookresearch/theseus,theseus,1214,82,28,Python,,theseus: A library for differentiable nonlinear optimization,facebookresearch,2023-02-20,2021-11-18,65,18.433839479392624,"['differentiable-optimization', 'robotics', 'embodied-ai', 'nonlinear-least-squares', 'pytorch', 'deep-learning', 'computer-vision', 'gauss-newton', 'levenberg-marquardt', 'implicit-differentiation', 'bilevel-optimization']",2023-02-20,19,"['bamos@metaai(fair)', 'brentyi', 'cpaxton', 'exhaustin', 'fantaosha', 'jeffin07', 'joeaortiz', 'luisenp@facebookairesearchfacebookresearch', 'maurimo', 'mhmukadam@metaai']",3,10,"['facebookairesearchfacebookresearch', 'metaai', 'metaai(fair)']","['Facebook AI Research @facebookresearch ', 'Meta AI', 'Meta AI (FAIR)']",,4.15,102,76,15,0,5,6,5,103.0,48.0,90.0,0.5,0,35.78901 +916,math,https://github.com/google-research/torchsde,,,,google-research/torchsde,torchsde,1213,144,33,Python,,torchsde: Differentiable SDE solvers with GPU support and efficient sensitivity analysis. ,google-research,2023-02-20,2020-07-06,137,8.835587929240374,"['deep-learning', 'deep-neural-networks', 'pytorch', 'dynamical-systems', 'differential-equations', 'stochastic-processes', 'stochastic-differential-equations', 'stochastic-volatility-models', 'neural-differential-equations']",2021-07-26,5,"['dhirschfeld', 'lxuechen', 'mtsokol@bcg-gamma', 'patrick-kidger@googlex', 'ucalyptus']",2,10,"['bcg-gamma', 'googlex']","['@BCG-Gamma', 'Google X']",,0.0,6,2,32,19,0,2,2,6.0,3.0,90.0,0.5,0,17.3522 +162,nlp,https://github.com/explosion/spacy-transformers,,,,explosion/spacy-transformers,spacy-transformers,1209,155,30,Python,https://spacy.io/usage/embeddings-transformers,"spacy-transformers: 🛸 Use pretrained transformers like BERT, XLNet and GPT-2 in spaCy",explosion,2023-02-21,2019-07-26,186,6.47513389441469,"['spacy', 'spacy-pipeline', 'spacy-extension', 'nlp', 'natural-language-processing', 'natural-language-understanding', 'pytorch', 'bert', 'google', 'pytorch-model', 'openai', 'language-model', 'machine-learning', 'huggingface', 'transfer-learning', 'xlnet', 'gpt-2']",2023-02-17,20,"['KennethEnevoldsen@centerforhumanitiescomputingaarhus', 'adrianeboyd', 'bryant1410@michigannlp', 'danieldk@explosion', 'honnibal@founderexplosion', 'ines@founderexplosion', 'ryndaniels', 'shadeMe', 'svlandeg@explosion&oxykodit', 'tamuhey@indeedeng']",6,10,"['centerforhumanitiescomputingaarhus', 'explosion', 'explosion&oxykodit', 'founderexplosion', 'indeedeng', 'michigannlp']","['@MichiganNLP', '@explosion ', '@indeedeng', 'Center for Humanities Computing Aarhus', 'Explosion & OxyKodit', 'Founder @explosion ']",,0.81,21,19,44,0,8,12,8,21.0,21.0,90.0,1.0,0,39.37273 +304,nlp,https://github.com/featureform/embeddinghub,,,,featureform/embeddinghub,featureform,1205,46,13,Go,https://www.featureform.com,featureform: The Virtual Feature Store. Turn your existing data infrastructure into a feature store.,featureform,2023-02-20,2020-10-16,122,9.819557625145517,"['machine-learning', 'data-science', 'vector-database', 'embeddings-similarity', 'embeddings', 'hacktoberfest', 'feature-store', 'mlops', 'data-quality', 'feature-engineering', 'ml', 'python']",2023-02-15,20,"['RiddhiBagadiaa', 'Sami1309', 'ahmadnazeri', 'antony-eng', 'ksshiraja', 'saadhvi27', 'sdreyer', 'shabbyjoon', 'simba-git@featureform', 'steffitan23']",1,10,['featureform'],['Featureform'],,45.13,97,84,29,0,13,7,13,97.0,84.0,90.0,0.9,0,40.34776 +451,util,https://github.com/imageio/imageio,,,,imageio/imageio,imageio,1201,244,32,Python,https://imageio.readthedocs.io,imageio: Python library for reading and writing image data,imageio,2023-02-19,2013-05-04,511,2.347668249092432,"['python', 'imageio', 'animated-gif', 'video', 'webcam-capture', 'scientific-formats', 'dicom']",2023-02-13,96,"['FirefoxMetzger@usr-lab', 'actions-user@actions', 'almarklein@independentsoftwareengineer', 'anntzer', 'blink1073@mongodb', 'dennisvang', 'hmaarrfk@californiainstituteoftechnology', 'jni@biomedicinediscoveryinstitute,monashuniversity', 'kuchi', 'paulmueller@gucklab']",7,10,"['actions', 'biomedicinediscoveryinstitute,monashuniversity', 'californiainstituteoftechnology', 'gucklab', 'independentsoftwareengineer', 'mongodb', 'usr-lab']","['@GuckLab ', '@actions', '@usr-lab ', 'Biomedicine Discovery Institute, Monash University', 'California Institute of Technology', 'Independent software engineer', 'MongoDB']",,2.13,46,25,119,0,23,7,23,46.0,134.0,90.0,2.9,0,52.88358 +636,util,https://github.com/pygments/pygments,,,,pygments/pygments,pygments,1201,504,32,Python,http://pygments.org/,Pygments is a generic syntax highlighter written in Python,pygments,2023-02-20,2019-08-31,181,6.614476789929189,"['python', 'syntax-highlighting']",2023-02-16,763,"['Anteru@amd', 'EricFromCanada', 'birkenfeld@fzjülich', 'blu-base', 'hoelzro', 'jaingaurav@google', 'jeanas', 'jrnold', 'roskakori', 'thatch']",3,10,"['amd', 'fzjülich', 'google']","['AMD', 'FZ Jülich', 'Google']",,5.46,171,101,42,0,3,17,3,171.0,181.0,90.0,1.1,0,49.91588 +725,typing,https://github.com/patrick-kidger/torchtyping,,,,patrick-kidger/torchtyping,torchtyping,1201,28,14,Python,,"torchtyping: Type annotations and dynamic checking for a tensor's shape, dtype, names, etc.",patrick-kidger,2023-02-20,2021-03-28,99,12.079022988505747,"['tensors', 'named-tensors', 'shape', 'pytorch', 'typing', 'python-typing']",2023-01-20,6,"['AdilZouitine@irtsaint-exupéry', 'anivegesana', 'gkorepanov@avatarify', 'olliethomas@universityofsussexairesearchgroup', 'patrick-kidger@googlex', 'teichert']",4,10,"['avatarify', 'googlex', 'irtsaint-exupéry', 'universityofsussexairesearchgroup']","['Avatarify', 'Google X', 'IRT Saint-Exupéry', 'University of Sussex AI Research Group']",,0.04,6,3,23,1,0,0,0,6.0,11.0,90.0,1.8,0,26.10474 +802,util,https://github.com/open-telemetry/opentelemetry-python,,,,open-telemetry/opentelemetry-python,opentelemetry-python,1189,429,35,Python,https://opentelemetry.io,opentelemetry-python: OpenTelemetry Python API and SDK ,open-telemetry,2023-02-21,2019-05-07,198,6.000720980533526,"['python', 'opentelemetry', 'tracecontext', 'correlationcontext', 'distributed-tracing', 'logging', 'metrics', 'sdk']",2023-02-17,184,"['Oberon00@dynatrace', 'aabmass@google', 'c24t@google', 'codeboten@lightstep', 'lzchen@microsoftcorporation', 'mauriciovasquezbernal@microsoft(kinvolk)', 'ocelotl', 'owais@splunk', 'srikanthccv@signoz.io', 'toumorokoshi@google']",7,10,"['dynatrace', 'google', 'lightstep', 'microsoft(kinvolk)', 'microsoftcorporation', 'signoz.io', 'splunk']","['@Dynatrace ', '@google', '@google ', '@microsoft (@kinvolk)', '@splunk', 'Google', 'Lightstep', 'Microsoft Corporation', 'signoz.io']",,4.88,209,121,46,0,10,13,10,209.0,360.0,90.0,1.7,0,52.5902 +647,data,https://github.com/pytables/pytables,,,,pytables/pytables,PyTables,1187,240,59,Python,http://www.pytables.org,PyTables: A Python package to manage extremely large amounts of data,pytables,2023-02-15,2011-06-03,611,1.9404483886034563,[],2023-02-09,111,"['FrancescAlted@francescalted', 'andreabedini@tweag', 'avalentino', 'eumiro', 'joshayers', 'keszybz@redhat', 'matham@cornelluniversity', 'oscargm98', 'scopatz', 'tomkooij@coornhertgymnasium']",5,10,"['coornhertgymnasium', 'cornelluniversity', 'francescalted', 'redhat', 'tweag']","['@FrancescAlted', '@tweag ', 'Coornhert Gymnasium', 'Cornell University', 'Red Hat']",,5.52,39,29,143,0,1,4,1,39.0,117.0,90.0,3.0,0,48.79921 +403,perf,https://github.com/agronholm/anyio,,,,agronholm/anyio,anyio,1183,101,26,Python,,anyio: High level asynchronous concurrency and networking framework that works on top of either trio or asyncio,agronholm,2023-02-20,2018-08-19,235,5.024878640776699,"['async-await', 'trio', 'asyncio', 'curio']",2023-02-13,38,"['agronholm@nextdaysolutionsoy', 'belm0', 'daa', 'danielhasan1', 'graingert', 'gschaffner@andrewjayichlabucsb', 'jhominal', 'pre-commit-ci[bot]', 'smurfix@norisnetworkag', 'uSpike']",3,10,"['andrewjayichlabucsb', 'nextdaysolutionsoy', 'norisnetworkag']","['Andrew Jayich Lab @ UCSB', 'NextDay Solutions Oy', 'noris network AG']",,2.02,31,12,55,0,0,10,10,30.0,45.0,90.0,1.5,0,41.0117 +489,gis,https://github.com/scitools/cartopy,,,,scitools/cartopy,cartopy,1178,337,55,Python,https://scitools.org.uk/cartopy/docs/latest,Cartopy - a cartographic python library with matplotlib support,scitools,2023-02-21,2012-08-03,550,2.1390402075226977,"['cartopy', 'matplotlib', 'python', 'geometry', 'maps', 'spatial', 'projections']",2023-02-02,118,"['QuLogic', 'ajdawson', 'bjlittle@metoffice', 'dopplershift@ucar/unidata', 'esc24', 'greglucas@lasp/lasp/swxtrec', 'pelson', 'rhattersley@metoffice', 'scmc72', 'stefraynaud@shom']",4,10,"['lasp/lasp/swxtrec', 'metoffice', 'shom', 'ucar/unidata']","['@MetOffice ', 'LASP / @lasp / @SWxTREC', 'Met Office', 'Shom', 'UCAR/@Unidata']",,1.17,48,28,128,0,3,4,3,48.0,109.0,90.0,2.3,0,46.73635 +494,ml-dl,https://github.com/hysts/pytorch_image_classification,,,,hysts/pytorch_image_classification,pytorch_image_classification,1170,289,27,Python,,pytorch_image_classification: PyTorch implementation of image classification models for CIFAR-10/CIFAR-100/MNIST/FashionMNIST/Kuzushiji-MNIST/ImageNet,hysts,2023-02-21,2017-12-09,271,4.308258811152025,"['pytorch', 'computer-vision', 'cifar10', 'fashion-mnist', 'imagenet']",2021-12-12,1,['hysts'],0,10,[],[],,0.0,0,0,63,15,0,0,0,0.0,0.0,90.0,0.0,0,5.31559 +396,web,https://github.com/neoteroi/blacksheep,,,,neoteroi/blacksheep,BlackSheep,1166,52,23,Python,https://www.neoteroi.dev/blacksheep/,BlackSheep: Fast ASGI web framework for Python,neoteroi,2023-02-20,2018-11-22,221,5.255634256278172,"['asyncio', 'server', 'http', 'asgi', 'blacksheep', 'python', 'web', 'framework', 'http-server']",2023-02-17,10,"['Klavionik', 'RobertoPrevato', 'YassineElbouchaibi', 'antipooh', 'dependabot[bot]', 'gitter-badger@gitter', 'jack-fireworkhq@loopsocial', 'myusko', 'q0w', 'skivis']",2,10,"['gitter', 'loopsocial']","['@loopsocial', 'Gitter']",,0.62,24,19,52,0,8,8,8,24.0,40.0,90.0,1.7,0,35.0036 +862,jupyter,https://github.com/jupyter/nbgrader,,,,jupyter/nbgrader,nbgrader,1163,318,42,Python,https://nbgrader.readthedocs.io/,nbgrader: A system for assigning and grading notebooks,jupyter,2023-02-14,2014-09-13,440,2.6397535667963683,"['nbgrader', 'jupyter', 'jupyter-notebook', 'jupyterhub', 'teaching', 'grading']",2023-01-06,98,"['BertR', 'Carreau@quansight-labs', 'Lawrence37', 'brichet@quantstack', 'danielmaitre', 'jhamrick', 'lgpage', 'rkdarst@aaltouniversity', 'sigurdurb', 'willingc@willingconsulting']",4,10,"['aaltouniversity', 'quansight-labs', 'quantstack', 'willingconsulting']","['@Quansight-Labs', '@quantstack', 'Aalto University', 'Willing Consulting']",,3.92,67,18,103,2,7,3,7,67.0,97.0,90.0,1.4,0,44.37565 +16,perf,https://github.com/eventlet/eventlet,,,,eventlet/eventlet,eventlet,1154,298,63,Python,https://eventlet.net,eventlet: Concurrent networking library for Python,eventlet,2023-02-15,2012-12-11,532,2.1685906040268454,"['python', 'concurrency', 'network', 'c10k', 'greenlet', 'production-ready']",2023-02-02,183,"['denik', 'edwardgeorge@apmøller—mærsk', 'geoffsalmon', 'hisbreathliness', 'jstasiak', 'rdw', 'tavisrudd@http://twitter.com/tavisrudd/', 'temoto', 'tipabu', 'whichlinden']",2,10,"['apmøller—mærsk', 'http://twitter.com/tavisrudd/']","['AP Møller — Mærsk', 'http://twitter.com/tavisrudd/']",,0.27,40,21,124,37,0,5,5,40.0,66.0,90.0,1.6,0,34.99646 +666,ml,https://github.com/huggingface/evaluate,,,,huggingface/evaluate,evaluate,1149,115,42,Python,https://huggingface.co/docs/evaluate,🤗 Evaluate: A library for easily evaluating machine learning models and datasets.,huggingface,2023-02-20,2022-03-30,47,24.4468085106383,"['evaluation', 'machine-learning']",2023-02-15,115,"['BramVanroy@lt3kuleuven', 'albertvillanova@huggingfaceaiinnova', 'lewtun@huggingface', 'lhoestq@huggingface', 'lvwerra@huggingface', 'mariosasko@huggingface', 'mathemakitten', 'patrickvonplaten', 'sashavor@huggingface', 'thomwolf@huggingface']",3,10,"['huggingface', 'huggingfaceaiinnova', 'lt3kuleuven']","['@huggingface', '@huggingface ', '@huggingface @Aiinnova', '@lt3 @kuleuven', 'Hugging Face', 'HuggingFace']",,7.79,87,43,11,0,8,9,8,87.0,177.0,90.0,2.0,0,44.01943 +817,ml-dl,https://github.com/calculatedcontent/weightwatcher,,,,calculatedcontent/weightwatcher,WeightWatcher,1145,100,30,Python,,WeightWatcher: The WeightWatcher tool for predicting the accuracy of Deep Neural Networks,calculatedcontent,2023-02-18,2018-11-28,221,5.180995475113122,[],2023-02-21,8,"['Burhan-Q', 'RichardScottOZ@ozminerals', 'cdhinrichs', 'charlesmartin14@calculationconsulting', 'pachevalier@etalab', 'reserena']",3,10,"['calculationconsulting', 'etalab', 'ozminerals']","['Calculation Consulting', 'Etalab', 'OZ Minerals']",,6.96,63,31,52,0,1,2,1,63.0,89.0,90.0,1.4,0,36.36122 +903,util,https://github.com/ossf/criticality_score,,,,ossf/criticality_score,criticality_score,1141,87,30,Go,,criticality_score: Gives criticality score for an open source project,ossf,2023-02-15,2020-11-17,118,9.657799274486095,[],2023-02-17,19,"['Yikun', 'azeemshaikh38', 'calebbrown', 'coni2k@forcrowd', 'dependabot[bot]', 'inferno-chromium@google', 'lehors@ibm', 'nathannaveen', 'nuthanmunaiah@rochesterinstituteoftechnology', 'oliverchang@google']",4,10,"['forcrowd', 'google', 'ibm', 'rochesterinstituteoftechnology']","['@Google', '@forCrowd', '@google ', 'IBM', 'Rochester Institute of Technology']",,2.38,91,61,28,0,0,2,2,90.0,64.0,90.0,0.7,0,36.69193 +545,ml,https://github.com/borealisai/advertorch,,,,borealisai/advertorch,advertorch,1136,180,27,Jupyter Notebook,,advertorch: A Toolbox for Adversarial Robustness Research,borealisai,2023-02-20,2018-11-29,220,5.14359637774903,"['pytorch', 'adversarial-examples', 'adversarial-example', 'adversarial-perturbations', 'adversarial-attacks', 'adversarial-machine-learning', 'adversarial-learning', 'robustness', 'toolbox', 'security', 'machine-learning', 'benchmarking']",2022-05-29,21,"['CaesarQ@wohin', 'LaurentMnr95', 'ashutoshbsathe', 'benfei', 'feinsteinben', 'fra31', 'gwding@ecopiaai', 'msalihs', 'tarokiritani@exawizards', 'tracyjin']",3,10,"['ecopiaai', 'exawizards', 'wohin']","['Ecopia AI', 'Exawizards', 'Wohin Inc.']",,0.31,0,0,51,9,0,0,0,0.0,0.0,90.0,0.0,0,19.84477 +904,crypto,https://github.com/ofek/bit,,,,ofek/bit,bit,1128,188,48,Python,https://ofek.dev/bit/,Bitcoin made easy.,ofek,2023-02-19,2016-11-12,327,3.443523767989533,"['bitcoin', 'python', 'libraries', 'cryptocurrencies', 'payments']",2023-02-11,15,"['ChristianOConnor', 'EazyServer', 'GauthamramRavichandran', 'NateNate60', 'Qxe5', 'bjarnemagnussen', 'mgaitan', 'ofek@datadog', 'pedr0-fr', 'philsippl']",1,10,['datadog'],['@datadog'],,0.02,8,2,76,0,0,0,0,8.0,3.0,90.0,0.4,0,25.45365 +618,testing,https://github.com/pytest-dev/pytest-bdd,,,,pytest-dev/pytest-bdd,pytest-bdd,1124,187,53,Python,https://pytest-bdd.readthedocs.io/en/latest/,pytest-bdd: BDD library for the py.test runner,pytest-dev,2023-02-20,2013-03-29,516,2.175283384019906,[],2023-02-06,53,"['The-Compiler@bruhinsoftware', 'amakhnach', 'asottile', 'bubenkoff', 'drothlis@stb-tester', 'olegpidsadnyi@fareharbor', 'pre-commit-ci[bot]', 'sambarluc@pix4d', 'sliwinski-milosz', 'youtux']",4,10,"['bruhinsoftware', 'fareharbor', 'pix4d', 'stb-tester']","['@FareHarbor', '@stb-tester', 'Bruhin Software', 'Pix4D']",,3.87,22,14,121,0,2,10,2,22.0,23.0,90.0,1.0,0,42.31413 +448,gis,https://github.com/pysal/pysal,1.0,,,pysal/pysal,pysal,1112,290,81,Jupyter Notebook,http://pysal.org/pysal,PySAL: Python Spatial Analysis Library Meta-Package,pysal,2023-02-17,2013-02-19,522,2.1296853625170997,[],2023-01-28,77,"['TaylorOshan@geoda/asu', 'darribas', 'dfolch@northernarizonauniversity', 'jlaura@usgsastrogeology', 'ljwolf@geogbristol', 'mhwang4', 'nmalizia@telluslabs', 'pastephens', 'schmidtc', 'sjsrey@centerforopengeographicalscience']",6,10,"['centerforopengeographicalscience', 'geoda/asu', 'geogbristol', 'northernarizonauniversity', 'telluslabs', 'usgsastrogeology']","['@geogbristol ', '@telluslabs ', 'Center for Open Geographical Science', 'Geoda/ASU', 'Northern Arizona University', 'USGS Astrogeology']",,0.23,5,5,122,1,4,3,4,5.0,6.0,90.0,1.2,0,40.69243 +928,util,https://github.com/p0dalirius/coercer,,,,p0dalirius/coercer,Coercer,1109,120,18,Python,https://podalirius.net/,Coercer: A python script to automatically coerce a Windows server to authenticate on an arbitrary machine through 12 methods.,p0dalirius,2023-02-20,2022-06-30,33,32.755274261603375,"['authentication', 'automatic', 'call', 'coerce', 'privilege-escalation', 'rpc', 'ntlm', 'fuzzing']",2023-01-18,4,"['exploide', 'jenaye@orange-cyberdefenseinshallhackcmepw', 'p0dalirius@podalirius', 'shoxxdj']",2,10,"['orange-cyberdefenseinshallhackcmepw', 'podalirius']","['@Orange-Cyberdefense @Inshallhack @CMEPW', 'Podalirius']",,1.5,36,29,8,1,9,14,9,36.0,14.0,90.0,0.4,0,25.4663 +651,profiling,https://github.com/p403n1x87/austin,,,,p403n1x87/austin,austin,1109,37,14,C,,austin: Python frame stack sampler for CPython,p403n1x87,2023-02-21,2018-09-20,230,4.803836633663367,"['python', 'profiling', 'performance', 'debugging-tools']",2022-10-28,7,"['Mortal@madalgo', 'P403n1x87@datadog', 'hatboysam@habosaapps', 'ivoanjo@datadog', 'mitchblank', 'tonybaloney@microsoft', 'xmatthias']",4,10,"['datadog', 'habosaapps', 'madalgo', 'microsoft']","['@DataDog', '@Datadog', 'Habosa Apps', 'MADALGO', 'Microsoft']",,1.71,14,10,54,0,3,6,3,14.0,28.0,90.0,2.0,0,35.8312 +417,pandas,https://github.com/pyjanitor-devs/pyjanitor,1.0,,,pyjanitor-devs/pyjanitor,pyjanitor,1108,159,21,Python,https://pyjanitor-devs.github.io/pyjanitor,pyjanitor: Clean APIs for data cleaning. Python implementation of R package Janitor,pyjanitor-devs,2023-02-20,2018-03-04,259,4.270925110132159,"['pandas', 'dataframe', 'data', 'cleaning-data', 'data-engineering', 'pydata', 'hacktoberfest']",2023-02-19,106,"['Zeroto521', 'dave-frazzetto', 'dsouzadaniel@pqdev', 'ericmjl', 'hectormz@amdi', 'jk3587', 'samukweku@datajanitor', 'szuckerman', 'thatlittleboy', 'zbarry@springdiscovery']",4,10,"['amdi', 'datajanitor', 'pqdev', 'springdiscovery']","['@pqdev', 'AMDI', 'Data Janitor', 'Spring Discovery']",,2.27,56,33,60,0,2,10,2,56.0,121.0,90.0,2.2,0,45.03108 +798,data,https://github.com/jsonpickle/jsonpickle,,,,jsonpickle/jsonpickle,jsonpickle,1102,153,31,Python,https://jsonpickle.github.io,"jsonpickle: Python library for serializing any arbitrary object graph into JSON. It can take almost any Python object and turn the object into JSON. Additionally, it can reconstitute the object back into Python.",jsonpickle,2023-02-17,2009-12-10,688,1.5997511406055578,"['json', 'python', 'serialization', 'pickle', 'deserialization', 'objectstorage', 'bsd-3-clause']",2022-12-29,69,"['EelcoHoogendoorn@3dhubs', 'Theelx', 'aldanor', 'davvid@waltdisneyanimationstudios', 'hugovk@nordsoftware', 'jaraco@google', 'johnpaulett@equium-io', 'marcintustin', 'meatballhat@rstudio', 'parsons-kyle-89']",6,10,"['3dhubs', 'equium-io', 'google', 'nordsoftware', 'rstudio', 'waltdisneyanimationstudios']","['3dhubs', '@equium-io', '@rstudio', 'Google', 'Nord Software', 'Walt Disney Animation Studios']",,2.08,26,23,161,2,0,3,3,26.0,44.0,90.0,1.7,0,43.42882 +512,typing,https://github.com/agronholm/typeguard,,,,agronholm/typeguard,typeguard,1101,83,16,Python,,typeguard: Run-time type checker for Python,agronholm,2023-02-13,2015-12-27,373,2.948355011476664,[],2023-02-12,25,"['EPronovost', 'agronholm@nextdaysolutionsoy', 'andyljones@anthropic', 'cjolowicz@cloudflare', 'pre-commit-ci[bot]', 'prescod@salesforce.org', 'reinhrst', 'rfrowe@indeed', 'supersergiy', 'wbolster']",5,10,"['anthropic', 'cloudflare', 'indeed', 'nextdaysolutionsoy', 'salesforce.org']","['@cloudflare', 'Anthropic', 'Indeed', 'NextDay Solutions Oy', 'Salesforce.org']",,1.67,54,44,87,0,0,6,6,54.0,188.0,90.0,3.5,0,45.69895 +619,testing,https://github.com/pytest-dev/pytest-asyncio,,,,pytest-dev/pytest-asyncio,pytest-asyncio,1099,118,34,Python,https://pytest-asyncio.readthedocs.io,pytest-asyncio: Asyncio support for pytest,pytest-dev,2023-02-19,2015-04-11,410,2.676757132915797,[],2023-02-14,41,"['Tadaboody', 'Tinche@pocketzworld', 'agronholm@nextdaysolutionsoy', 'alblasco', 'asvetlov@neu.ro', 'dependabot[bot]', 'nicoddemus@esss', 'sashgorokhov@epam', 'seifertm', 'simonfagerholm']",5,10,"['epam', 'esss', 'neu.ro', 'nextdaysolutionsoy', 'pocketzworld']","['@epam', '@pocketzworld ', 'ESSS', 'Neu.ro', 'NextDay Solutions Oy']",,2.73,64,54,96,0,7,5,7,64.0,51.0,90.0,0.8,0,44.43623 +726,perf,https://github.com/omyyyy/pycom,,,,omyyyy/pycom,pycom,1099,21,17,C++,,"pycom: A Python compiler, down to native code, using C++",omyyyy,2023-02-19,2022-07-16,31,34.80995475113122,[],2022-08-31,6,"['BeeMoe5', 'Omyyyy', 'ikkebr@universityofcalgary', 'marcelpetrick@marcelpetrick.it', 'phodge-clipchamp']",2,10,"['marcelpetrick.it', 'universityofcalgary']","['University of Calgary', 'marcelpetrick.it']",,1.71,0,0,7,6,1,2,1,0.0,0.0,90.0,0.0,0,14.02804 +239,data,https://github.com/simonw/sqlite-utils,,,,simonw/sqlite-utils,sqlite-utils,1097,84,18,Python,https://sqlite-utils.datasette.io,sqlite-utils: Python CLI utility and library for manipulating SQLite databases,simonw,2023-02-19,2018-07-14,240,4.559976247030879,"['sqlite', 'python', 'datasette', 'sqlite-database', 'click', 'cli', 'datasette-io', 'datasette-tool']",2022-12-10,27,"['adamwolf', 'amjith', 'davidleejy@nationaluniversityofsingapore', 'dbready', 'eyeseast@usatodaynetwork', 'meatcar', 'mfa@axsemantics', 'simonw@datasette', 'simonwiles@stanforduniversity', 'tsibley']",5,10,"['axsemantics', 'datasette', 'nationaluniversityofsingapore', 'stanforduniversity', 'usatodaynetwork']","['@axsemantics ', 'Datasette', 'National University of Singapore', 'Stanford University', 'USA TODAY Network']",,2.52,21,4,56,2,8,25,8,21.0,30.0,90.0,1.4,0,38.24485 +609,testing,https://github.com/pytest-dev/pytest-xdist,,,,pytest-dev/pytest-xdist,pytest-xdist,1095,192,47,Python,https://pytest-xdist.readthedocs.io,pytest-xdist: pytest plugin for distributed testing and loop-on-failures testing modes. ,pytest-dev,2023-02-21,2015-09-01,390,2.8066642255584036,"['hacktoberfest', 'pytest', 'pytest-plugin']",2023-02-14,89,"['RonnyPfannschmidt@redhatinsights', 'bluetech', 'blueyed@freelancer,upforhire', 'bubenkoff', 'flub', 'hpk42@merlinux', 'hugovk@nordsoftware', 'nicoddemus@esss', 'pre-commit-ci[bot]', 'wronglink']",5,10,"['esss', 'freelancer,upforhire', 'merlinux', 'nordsoftware', 'redhatinsights']","['@RedHatInsights ', 'ESSS', 'Freelancer, up for hire', 'Nord Software', 'merlinux']",,1.25,49,32,91,0,0,8,8,49.0,136.0,90.0,2.8,0,48.39789 +771,data,https://github.com/google/tensorstore,,,,google/tensorstore,tensorstore,1095,79,32,C++,https://google.github.io/tensorstore/,tensorstore: Library for reading and writing large multi-dimensional arrays.,google,2023-02-16,2020-03-30,151,7.237960339943343,[],2023-02-14,10,"['QrczakMK@google', 'ckennelly', 'cpgaffney1', 'cushon', 'hectorgon', 'jbms', 'laramiel', 'mkruskal-google@protocolbuffers', 'yilei']",2,10,"['google', 'protocolbuffers']","['@google', '@protocolbuffers']",,5.73,24,13,35,0,0,11,11,24.0,125.0,90.0,5.2,0,40.27443 +772,nlp,https://github.com/huggingface/setfit,,,,huggingface/setfit,setfit,1091,112,16,Python,,setfit: Efficient few-shot learning with Sentence Transformers,huggingface,2023-02-20,2022-06-30,33,32.22362869198312,"['few-shot-learning', 'nlp', 'sentence-transformers']",2023-02-14,35,"['LuketheDukeBates', 'PhilipMay@telekom', 'blakechi', 'danielkorat@nervanasystems', 'eunseojo', 'fgbelidji@huggingface', 'lewtun@huggingface', 'mpangrazzi@wonderflow-bv', 'pdhall99', 'tomaarsen@argilla']",5,10,"['argilla', 'huggingface', 'nervanasystems', 'telekom', 'wonderflow-bv']","['@NervanaSystems ', '@huggingface', '@telekom', '@wonderflow-bv ', 'Argilla', 'Hugging Face']",,6.02,173,107,8,0,8,15,8,173.0,436.0,90.0,2.5,0,43.43285 +656,web,https://github.com/magicstack/httptools,,,,magicstack/httptools,httptools,1089,71,40,Python,,httptools: Fast HTTP parser,magicstack,2023-02-20,2016-04-25,356,3.0565356856455494,[],2022-09-13,13,"['1st1@edgedb', 'SethMichaelLarson', 'b0g3r@semrush', 'belm0', 'elprans@edgedb', 'fantix@edgedb', 'samuelcolvin@pydantic', 'trollfot', 'yohanboniface@enix', 'youknowone@youknowone.org']",5,10,"['edgedb', 'enix', 'pydantic', 'semrush', 'youknowone.org']","['@edgedb', '@pydantic', '@semrush', 'EdgeDB Inc.', 'Enix', 'youknowone.org']",,0.06,0,0,83,5,2,2,2,0.0,0.0,90.0,0.0,0,24.61524 +627,data,https://github.com/zarr-developers/zarr-python,,,,zarr-developers/zarr-python,zarr-python,1088,218,44,Python,http://zarr.readthedocs.io/,"zarr-python: An implementation of chunked, compressed, N-dimensional arrays for Python.",zarr-developers,2023-02-21,2015-12-15,375,2.9002284843869,"['hacktoberfest', 'zarr', 'ndimensional-arrays', 'compressed', 'python']",2023-02-20,83,"['Carreau@quansight-labs', 'DimitriPapadopoulos@cea', 'alimanfoo@weomesangerinstitute', 'andrewfulton9@quansight', 'dependabot[bot]', 'grlee77@nvidia', 'jakirkham', 'joshmoore@openmicroscopy', 'jrbourbeau@coiled', 'mzjp2@mavensecurities']",8,10,"['cea', 'coiled', 'mavensecurities', 'nvidia', 'openmicroscopy', 'quansight', 'quansight-labs', 'weomesangerinstitute']","['@Quansight-Labs', '@coiled ', '@openmicroscopy', 'CEA', 'Maven Securities', 'NVIDIA', 'Quansight', 'Wellcome Sanger Institute']",,3.67,123,70,88,0,17,11,17,124.0,324.0,90.0,2.6,0,53.52288 +626,viz,https://github.com/enthought/mayavi,,,,enthought/mayavi,mayavi,1084,266,96,Python,http://docs.enthought.com/mayavi/mayavi/,mayavi: 3D visualization of scientific data in Python,enthought,2023-02-20,2011-01-24,630,1.7198549410698096,[],2022-10-18,93,"['GaelVaroquaux', 'amalss18@carnegiemellonuniversity', 'dmsurti', 'itziakos@enthought', 'kitchoi', 'larsoner@universityofwashington', 'prabhuramachandran@iitbombay', 'rahulporuri@enthought', 'stefanoborini@astrazenecauk', 'tkoyama010@ark-info-sys']",6,10,"['ark-info-sys', 'astrazenecauk', 'carnegiemellonuniversity', 'enthought', 'iitbombay', 'universityofwashington']","['@ark-info-sys', '@enthought ', 'AstraZeneca UK', 'Carnegie Mellon University', 'IIT Bombay', 'University of Washington']",,0.96,28,5,147,4,0,3,3,28.0,37.0,90.0,1.3,0,40.63198 +654,profiling,https://github.com/sumerc/yappi,,,,sumerc/yappi,yappi,1074,58,13,Python,,"yappi: Yet Another Python Profiler, but this time multithreading, asyncio and gevent aware.",sumerc,2023-02-21,2009-10-07,698,1.5386819484240688,"['profilers', 'multi-threaded-applications', 'coroutine', 'asynchronous', 'python', 'asyncio', 'performance', 'profile', 'asgi', 'cpu', 'thread', 'gevent', 'greenlet', 'multithreading']",2022-11-25,28,"['Suhail-MOHD@nutanix', 'ajdavis@mongodb', 'alioguzhan@telostat', 'dependabot[bot]', 'devxpy@dara.network', 'frohoff', 'gaborbernat@bloomberglp', 'nirs@ibm', 'orivej', 'sumerc']",6,10,"['bloomberglp', 'dara.network', 'ibm', 'mongodb', 'nutanix', 'telostat']","['@mongodb ', '@telostat', 'Bloomberg LP', 'IBM', 'Nutanix', 'dara.network']",,0.65,9,5,163,3,2,0,2,9.0,7.0,90.0,0.8,0,35.34861 +580,util,https://github.com/lidatong/dataclasses-json,,,,lidatong/dataclasses-json,dataclasses-json,1072,119,10,Python,,dataclasses-json: Easily serialize Data Classes to and from JSON,lidatong,2023-02-21,2018-04-21,252,4.244343891402715,"['dataclasses', 'json', 'python']",2022-08-14,46,"['FaraSeer@yadro', 'Glandos', 'HappyTreeBeard', 'RunOrVeith', 'USSX-Hares', 'askogvold@microsoft', 'fabaff', 'lidatong', 'r-richmond', 'rakanalh']",2,10,"['microsoft', 'yadro']","['@yadro', 'Microsoft']",,0.12,23,1,59,6,1,14,1,23.0,15.0,90.0,0.7,0,27.65179 +191,ml,https://github.com/awslabs/dgl-ke,,,,awslabs/dgl-ke,dgl-ke,1068,182,23,Python,https://dglke.dgl.ai/doc/,"dgl-ke: High performance, easy-to-use, and scalable package for learning large-scale knowledge graph embeddings.",awslabs,2023-02-21,2020-03-03,155,6.883977900552487,"['machine-learning', 'knowledge-graph', 'knowledge-graphs-embeddings', 'graph-learning', 'dgl']",2022-11-18,25,"['VoVAllen@tensorchord', 'aksnzhy', 'amazon-auto@amazon', 'classicsong@amazon', 'daikikatsuragawa@japan', 'menjarleev', 'ryantd@kwai', 'sublimotion', 'zby123', 'zheng-da@aws']",5,10,"['amazon', 'aws', 'japan', 'kwai', 'tensorchord']","['@kwai', '@tensorchord ', 'AWS', 'Amazon', 'Japan']",,0.06,7,2,36,3,0,1,1,7.0,6.0,90.0,0.9,0,29.5034 +212,data,https://github.com/sfu-db/connector-x,1.0,,,sfu-db/connector-x,connector-x,1063,77,24,Rust,https://sfu-db.github.io/connector-x/intro.html,connector-x: Fastest library to load data from DB to DataFrames in Rust and Python,sfu-db,2023-02-21,2021-01-13,110,9.663636363636364,"['rust', 'python', 'database', 'sql', 'dataframe']",2023-02-10,30,"['Wukkkinz-0725', 'Yizhou150', 'alswang18', 'auyer@estrategiaeducacional', 'dovahcrow@sfu-db', 'gruuya@splitgraph', 'jinzew', 'lBilali', 'wangxiaoying@sfu-db', 'wseaton@redhatofficial']",4,10,"['estrategiaeducacional', 'redhatofficial', 'sfu-db', 'splitgraph']","['@RedHatOfficial', '@sfu-db ', 'Estrategia Educacional', 'Splitgraph']",,5.58,57,12,26,0,4,3,4,57.0,85.0,90.0,1.5,0,40.01235 +449,gis,https://github.com/residentmario/geoplot,1.0,,,residentmario/geoplot,geoplot,1050,91,35,Python,https://residentmario.github.io/geoplot/index.html,geoplot: High-level geospatial data visualization library for Python.,residentmario,2023-02-18,2016-06-29,347,3.025936599423631,"['geospatial-visualization', 'geospatial-data', 'matplotlib', 'geopandas', 'spatial-analysis']",2022-03-18,5,"['QuLogic', 'ResidentMario', 'akarve@quiltdata', 'lmmarsano', 'martinfleis']",1,10,['quiltdata'],['@QuiltData'],,0.21,3,0,81,11,2,3,2,3.0,0.0,90.0,0.0,0,16.30778 +447,ml,https://github.com/csinva/imodels,,,,csinva/imodels,imodels,1045,97,24,Jupyter Notebook,https://csinva.io/imodels,"imodels: Interpretable ML package 🔍 for concise, transparent, and accurate predictive modeling (sklearn-compatible).",csinva,2023-02-21,2019-07-04,189,5.504138449962378,"['interpretability', 'machine-learning', 'data-science', 'artificial-intelligence', 'ml', 'ai', 'statistics', 'scikit-learn', 'python', 'optimal-classification-tree', 'rulefit', 'imodels', 'rule-learning', 'supervised-learning', 'explainable-ml', 'explainable-ai', 'rules', 'bayesian-rule-list']",2023-02-12,15,"['OmerRonen', 'aagarwal1996', 'bachsh@authomize', 'csinva@seniorresearcher', 'keyan3@berkeleyairesearchlab', 'mepland', 'sms1097', 'thewchan', 'tiffanymtang@universityofcalifornia,berkeley', 'yanshuotan']",4,10,"['authomize', 'berkeleyairesearchlab', 'seniorresearcher', 'universityofcalifornia,berkeley']","['@authomize ', 'Berkeley AI Research Lab', 'Senior researcher', 'University of California, Berkeley']",,2.81,26,20,44,0,10,8,10,26.0,55.0,90.0,2.1,0,40.63103 +644,util,https://github.com/metachris/logzero,,,,metachris/logzero,logzero,1030,69,26,Python,https://logzero.readthedocs.io,logzero: Robust and effective logging for Python 2 and 3.,metachris,2023-02-20,2017-06-12,297,3.4646804420951467,"['python', 'logging', 'logzero', 'logfiles']",2021-03-17,12,"['SitiSchu@mojurasu', 'carlodri', 'christianscott@canva', 'davidhuser@baosystems', 'delirious-lettuce', 'dmartin35', 'lumbric', 'metachris@flashbots', 'pyup-bot@pyupio', 'sebix@instituteforcommongoodtechnology']",6,10,"['baosystems', 'canva', 'flashbots', 'instituteforcommongoodtechnology', 'mojurasu', 'pyupio']","['@Canva', '@Mojurasu ', '@baosystems', '@pyupio', 'Flashbots', 'Institute for Common Good Technology']",,0.0,5,3,69,24,0,3,3,5.0,2.0,90.0,0.4,0,25.25546 +444,gis,https://github.com/toblerity/fiona,,,,toblerity/fiona,Fiona,1017,196,48,Python,https://fiona.readthedocs.io/,Fiona reads and writes geographic data files,toblerity,2023-02-18,2011-12-31,581,1.7487103905674282,"['python', 'gis', 'vector', 'gdal', 'ogr', 'cli', 'cython']",2023-02-10,66,"['QuLogic', 'geowurster', 'lordi', 'micahcochran', 'mwtoews@gnsscience', 'perrygeo', 'rbuffat', 'sgillies@planetlabs', 'snorfalorpagus', 'snowman2@corteva']",3,10,"['corteva', 'gnsscience', 'planetlabs']","['@corteva ', '@planetlabs', 'GNS Science']",,1.56,110,89,136,0,8,10,8,110.0,126.0,90.0,1.1,0,45.21246 +950,web,https://github.com/awtkns/fastapi-crudrouter,,,,awtkns/fastapi-crudrouter,fastapi-crudrouter,1017,121,12,Python,https://fastapi-crudrouter.awtkns.com,fastapi-crudrouter: A dynamic FastAPI router that automatically creates CRUD routes for your models,awtkns,2023-02-21,2020-12-19,113,8.954716981132075,"['fastapi', 'code-generation', 'crud', 'api', 'swagger-ui', 'redoc', 'fastapi-crudrouter', 'crud-routes', 'rest', 'web', 'python', 'python3', 'sql', 'framework', 'async', 'asyncio', 'openapi-route', 'openapi']",2023-01-28,21,"['DorskFR', 'agallant', 'andreipopovici', 'andrewthetechie', 'awtkns@article', 'collerek@kaizentech', 'dclimber', 'jm-moreau@anjuna', 'sondrelg@otovosnok', 'turalpb']",4,10,"['anjuna', 'article', 'kaizentech', 'otovosnok']","['@otovo @snok', 'Anjuna', 'Article', 'KaizenTech']",,0.75,19,7,26,1,1,4,1,19.0,21.0,90.0,1.1,0,31.66345 +707,util,https://github.com/brandon-rhodes/python-patterns,,,,brandon-rhodes/python-patterns,python-patterns,1015,93,254,Python,,python-patterns: Source code behind the python-patterns.guide site by Brandon Rhodes,brandon-rhodes,2023-02-21,2018-01-31,264,3.8446969696969697,[],2021-01-05,4,"['ReblochonMasque', 'brandon-rhodes', 'donkirkby@bccentreforexcellenceinhiv/aids', 'ethmcc']",1,10,['bccentreforexcellenceinhiv/aids'],['BC Centre for Excellence in HIV/AIDS'],,0.0,0,0,62,26,0,0,0,0.0,0.0,90.0,0.0,0,9.92539 +406,perf,https://github.com/pympler/pympler,,,,pympler/pympler,pympler,1009,82,10,Python,,"pympler: Development tool to measure, monitor and analyze the memory behavior of Python objects in a running Python application.",pympler,2023-02-21,2012-10-04,541,1.8621144213023992,[],2022-07-24,29,"['Pankrat@ableton', 'benjyw@toolchain', 'cjwatson', 'deemoowoor@finceptiv', 'dsuch@zatosource', 'gbtami', 'jwilk', 'mrJean1', 'thedrow', 'tirkarthi@visa']",5,10,"['ableton', 'finceptiv', 'toolchain', 'visa', 'zatosource']","['@finceptiv ', '@zatosource', 'Ableton', 'Toolchain', 'Visa Inc.']",,0.08,4,1,126,7,0,2,2,4.0,5.0,90.0,1.2,0,31.87793 +728,gis,https://github.com/geospatialpython/pyshp,,,,geospatialpython/pyshp,pyshp,1006,260,64,Python,,pyshp: This library reads and writes ESRI Shapefiles in pure Python.,geospatialpython,2023-02-20,2014-03-04,468,2.1489166920964298,[],2023-02-02,42,"['GeospatialPython@geospatialpython.com', 'ignamv', 'jmoujaes', 'karimbahgat', 'megies', 'micahcochran', 'mwtoews@gnsscience', 'pemn@valesa', 'riggsd@nationalparkservice', 'sebastic']",4,10,"['geospatialpython.com', 'gnsscience', 'nationalparkservice', 'valesa']","['@nationalparkservice ', 'GNS Science', 'GeospatialPython.com', 'Vale SA']",,0.37,4,0,109,1,2,2,2,4.0,5.0,90.0,1.2,0,35.0712 +598,data,https://github.com/uber/fiber,,,,uber/fiber,fiber,1002,113,22,Python,https://uber.github.io/fiber/,fiber: Distributed Computing for AI Made Simple,uber,2023-02-19,2020-01-07,163,6.141856392294221,"['python', 'distributed-computing', 'multiprocessing', 'sandbox', 'machine-learning']",2021-03-15,5,"['agrimrules@litesgroup', 'calio', 'danilopeixoto@delltechnologies', 'jimjag', 'rongou@nvidia']",3,10,"['delltechnologies', 'litesgroup', 'nvidia']","['@LitesGroup ', '@NVIDIA', 'Dell Technologies']",,0.0,3,0,38,24,0,1,1,3.0,2.0,90.0,0.7,0,17.28826 +614,testing,https://github.com/teemu/pytest-sugar,,,,teemu/pytest-sugar,pytest-sugar,997,68,17,Python,,"pytest-sugar: a plugin for py.test that changes the default look and feel of py.test (e.g. progressbar, show tests that fail instantly)",teemu,2023-02-16,2013-06-25,504,1.9776140549730803,"['pytest', 'pytest-sugar', 'python', 'testing', 'pytest-plugin']",2022-12-11,45,"['GuillaumeFavelier@inria', 'Teemu@wolt', 'blueyed@freelancer,upforhire', 'emlove@homechef', 'graingert', 'jpvanhal@falcony-io', 'justinmayer', 'msabramo@adobe', 'or', 'thedrow']",6,10,"['adobe', 'falcony-io', 'freelancer,upforhire', 'homechef', 'inria', 'wolt']","['@adobe', '@falcony-io', '@homechef', 'Freelancer, up for hire', 'INRIA', 'Wolt']",,0.81,8,4,118,2,0,1,1,8.0,18.0,90.0,2.2,0,38.96457 +739,pandas,https://github.com/machow/siuba,,,,machow/siuba,siuba,995,42,21,Python,https://siuba.org,siuba: Python library for using dplyr like syntax with pandas and SQL,machow,2023-02-19,2019-02-09,210,4.725237449118046,"['data-analysis', 'python', 'pandas', 'sql', 'dplyr']",2022-11-16,10,"['bakera81', 'breichholf', 'dependabot[bot]', 'isabelizimm@rstudio', 'ismayc@flatiron-school', 'kianmeng', 'kirillseva', 'machow@rstudio', 'sethvargo@google', 'tmastny']",3,10,"['flatiron-school', 'google', 'rstudio']","['@Google', '@flatiron-school', '@rstudio']",,2.79,12,2,49,3,10,9,10,12.0,20.0,90.0,1.7,0,32.915 +740,ml,https://github.com/koaning/scikit-lego,,,,koaning/scikit-lego,scikit-lego,974,101,19,Python,https://scikit-lego.netlify.app,scikit-lego: Extra blocks for scikit-learn pipelines.,koaning,2023-02-19,2019-01-21,213,4.566644340254521,"['scikit-learn', 'machine-learning', 'common-sense']",2022-12-21,56,"['Garve', 'MBrouns@xcceleratedpydataamsterdam', 'Pverheijen@hollandstartup', 'arthurpaulino@yatimainc', 'daimonie', 'koaning@explosion', 'ktiamur', 'maxibor@maxplanckinstituteforevolutionaryanthropology', 'pim-hoeven', 'stephanecollot@m-gate']",6,10,"['explosion', 'hollandstartup', 'm-gate', 'maxplanckinstituteforevolutionaryanthropology', 'xcceleratedpydataamsterdam', 'yatimainc']","['@Xccelerated @PyDataAmsterdam ', '@explosion', 'Holland Startup', 'M-GaTE', 'Max Planck institute for Evolutionary Anthropology', 'Yatima Inc']",,0.5,8,4,50,2,5,8,5,8.0,32.0,90.0,4.0,0,41.01292 +631,util,https://github.com/pyca/bcrypt,,,,pyca/bcrypt,bcrypt,972,135,28,Python,,bcrypt: Modern(-ish) password hashing for your software and your servers,pyca,2023-02-20,2013-05-11,510,1.9037493005036374,['python'],2023-02-18,31,"['alex', 'bsoyka', 'chris-erickson', 'dependabot[bot]', 'dstufft@datadog', 'jazzyb', 'jdufresne@pioneervalleybooks', 'odidev@puresoftware', 'reaperhulk', 'webknjaz@ansiblecoreredhatofficial']",4,10,"['ansiblecoreredhatofficial', 'datadog', 'pioneervalleybooks', 'puresoftware']","['@Ansible Core @ @RedHatOfficial', '@DataDog', 'Pioneer Valley Books', 'Puresoftware']",,3.31,56,56,119,0,0,2,2,56.0,21.0,90.0,0.4,0,40.6756 +482,gis,https://github.com/sentinel-hub/eo-learn,,,,sentinel-hub/eo-learn,eo-learn,971,280,48,Python,,eo-learn: Earth observation processing framework for machine learning in Python,sentinel-hub,2023-02-20,2018-05-31,246,3.933449074074074,"['machine-learning', 'eo-data', 'eo-research', 'python-package']",2023-01-24,50,"['AleksMat@google', 'andrejburja', 'batic@sinergise', 'devisperessutti@sinergisesentinel-hub', 'iovsn', 'lojzezust', 'mlubej@eoresearchteamsinergise', 'tomislijepcevic', 'wouellette@https://soilwatch.eu', 'zigaLuksic@sinergise']",5,10,"['eoresearchteamsinergise', 'google', 'https://soilwatch.eu', 'sinergise', 'sinergisesentinel-hub']","['@sinergise ', '@sinergise @sentinel-hub ', 'EO Research Team @ Sinergise', 'Google', 'Sinergise', 'https://soilwatch.eu']",,3.96,70,61,58,1,10,8,10,70.0,60.0,90.0,0.9,0,43.4794 +379,ml-interpretability,https://github.com/cdpierse/transformers-interpret,,,,cdpierse/transformers-interpret,transformers-interpret,966,85,17,Jupyter Notebook,,transformers-interpret: Model explainability that works seamlessly with 🤗 transformers. Explain your transformers model in just 2 lines of code. ,cdpierse,2023-02-20,2020-05-27,143,6.755244755244755,"['nlp', 'machine-learning', 'natural-language-processing', 'explainable-ai', 'transformers', 'model-explainability', 'transformers-model', 'captum', 'deep-learning', 'neural-network', 'interpretability', 'computer-vision']",2023-01-14,7,"['Voyz', 'cdpierse@quantcopy', 'cwenner@mavenoid;omnimodular', 'dependabot[bot]', 'lalitpagaria@oraikatechnologies', 'pabvald@dfki/universitätdessaarlandes', 'rinapch@exhuman-ai']",5,10,"['dfki/universitätdessaarlandes', 'exhuman-ai', 'mavenoid;omnimodular', 'oraikatechnologies', 'quantcopy']","['@exhuman-ai ', '@quantcopy', 'DFKI / Universität des Saarlandes', 'Mavenoid; OmniModular', 'Oraika Technologies']",,0.85,10,1,33,1,4,4,4,10.0,16.0,90.0,1.6,0,31.59486 +271,crypto,https://github.com/man-c/pycoingecko,,,,man-c/pycoingecko,pycoingecko,962,257,33,Python,,pycoingecko: Python wrapper for the CoinGecko API,man-c,2023-02-19,2018-08-24,234,4.098600121728546,"['python3', 'api-wrapper', 'api', 'wrapper', 'cryptocurrency', 'crypto', 'coingecko', 'python', 'nft', 'nfts']",2022-10-26,14,"['EmperorMew@snowcone', 'gkrasulya', 'glints', 'hmallen', 'man-c', 'mfiro', 'nejcb1', 'scrambldchannel', 'trevisanj', 'tsifrer']",1,10,['snowcone'],['Snowcone '],,0.29,3,2,55,4,0,4,4,3.0,3.0,90.0,1.0,0,24.77178 +980,ml,https://github.com/google/vizier,,,,google/vizier,vizier,949,44,20,Python,https://oss-vizier.readthedocs.io,"vizier: Python-based research interface for blackbox and hyperparameter optimization, based on the internal Google Vizier Service.",google,2023-02-21,2022-02-16,53,17.90566037735849,"['vizier', 'hyperparameter-optimization', 'tuning', 'tuning-parameters', 'blackbox-optimization', 'hyperparameter-tuning', 'bayesian-optimization', 'evolutionary-algorithms', 'distributed-systems', 'distributed-computing', 'grpc', 'open-source', 'google', 'algorithm', 'deep-learning', 'machine-learning', 'optimization']",2023-02-16,15,"['Ark-kun@google', 'SetarehAr@northeasternuniversity', 'belenkil', 'chansoo-google', 'daiyip', 'emilyfertig', 'qiuyiz@google', 'rchen152', 'sagipe', 'xingyousong@googlebrain']",3,10,"['google', 'googlebrain', 'northeasternuniversity']","['@google', 'Google', 'Google Brain', 'Northeastern University']",,8.88,187,173,12,0,19,20,19,187.0,42.0,90.0,0.2,0,37.95323 +820,viz,https://github.com/facultyai/dash-bootstrap-components,,,,facultyai/dash-bootstrap-components,dash-bootstrap-components,949,202,21,JavaScript,https://dash-bootstrap-components.opensource.faculty.ai/,dash-bootstrap-components: Bootstrap components for Plotly Dash,facultyai,2023-02-19,2018-09-21,230,4.113312693498452,"['bootstrap', 'plotly-dash', 'python', 'dashboards', 'r', 'julia']",2023-02-17,29,"['AnnMarieW@nostarchpress-thebookofdash', 'acroz@facultyai', 'ann-marie-ward', 'dependabot[bot]', 'glsdown', 'pbugnion@facultyai', 'romainmartinez@universitédemontréal', 'shwinnn', 'srstevenson', 'tcbegley@facebook']",4,10,"['facebook', 'facultyai', 'nostarchpress-thebookofdash', 'universitédemontréal']","['@facebook', '@facultyai', '@facultyai ', 'No Starch Press - The Book of Dash', 'Université de Montréal']",,1.52,56,52,54,0,15,33,15,56.0,33.0,90.0,0.6,0,41.17363 +236,sim,https://github.com/salesforce/ai-economist,1.0,,,salesforce/ai-economist,ai-economist,945,194,46,Python,https://www.einstein.ai/the-ai-economist,"ai-economist: Foundation is a flexible, modular, and composable framework to model socio-economic behaviors and dynamics with both agents and governments. This framework can be used in conjunction with reinforcement learning to learn optimal economic policies, as done by the AI Economist (https://www.einstein.ai/the-ai-economist).",salesforce,2023-02-21,2020-07-02,137,6.8549222797927465,"['ai', 'ml', 'multi-agent', 'multi-agent-reinforcement-learning', 'deep-reinforcement-learning', 'reinforcement-learning-environments', 'simulation-framework', 'python-3', 'economics']",2022-05-09,8,"['NoSoyTuMadre@capgemini&threescoopstransport', 'alextrott16', 'dependabot[bot]', 'sunil-s@salesforceresearch', 'svc-scm', 'tljstewart@apple']",3,10,"['apple', 'capgemini&threescoopstransport', 'salesforceresearch']","['Apple Inc.', 'Capgemini & Three Scoops Transport, LLC', 'Salesforce Research']",,0.12,2,0,32,10,0,0,0,2.0,0.0,90.0,0.0,0,16.51814 +402,perf,https://github.com/tiangolo/asyncer,,,,tiangolo/asyncer,asyncer,945,38,15,Python,https://asyncer.tiangolo.com/,"Asyncer, async and await, focused on developer experience.",tiangolo,2023-02-21,2022-01-04,59,15.978260869565217,"['python', 'async', 'asyncio', 'trio', 'anyio']",2023-02-21,10,"['JonasKs@snok,intility', 'Kludex@encode', 'dependabot[bot]', 'michaeloliverx@resgroup', 'pre-commit-ci[bot]', 'sanders41@ethyca', 'tiangolo', 'vrslev', 'windson']",4,10,"['encode', 'ethyca', 'resgroup', 'snok,intility']","['@encode', '@ethyca', '@resgroup', '@snok, @intility']",,1.19,14,8,14,0,1,2,1,14.0,24.0,90.0,1.7,0,31.33805 +633,util,https://github.com/pyca/pynacl,,,,pyca/pynacl,pynacl,944,219,27,C,https://pynacl.readthedocs.io/,pynacl: Python binding to the Networking and Cryptography (NaCl) library,pyca,2023-02-15,2013-02-22,521,1.809419496166484,"['cryptography', 'libsodium', 'nacl', 'python']",2023-01-19,64,"['Ayrx', 'DMRobertson@vector-im', 'JackWink', 'alex', 'davidfischer', 'dependabot[bot]', 'dstufft@datadog', 'lmctv', 'reaperhulk', 'warner']",2,10,"['datadog', 'vector-im']","['@DataDog', '@vector-im']",,0.37,13,10,122,1,0,2,2,13.0,10.0,90.0,0.8,0,35.45584 +962,util,https://github.com/fabiocaccamo/python-benedict,,,,fabiocaccamo/python-benedict,python-benedict,940,41,12,Python,,"python-benedict: :blue_book: dict subclass with keylist/keypath support, built-in I/O operations (base64, csv, ini, json, pickle, plist, query-string, toml, xls, xml, yaml), s3 support and many utilities.",fabiocaccamo,2023-02-21,2019-05-17,196,4.7785039941902685,"['python', 'dict', 'dictionary', 'keypath', 'base64', 'csv', 'json', 'pickle', 'plist', 'query-string', 'toml', 'xml', 'yaml', 'encode', 'decode', 'filter', 'flatten', 'subset', 'traverse', 'xls']",2023-02-21,5,"['dependabot[bot]', 'fabiocaccamo@blackfoundry', 'github-actions[bot]', ""neutrinoceros@institutdeplanétologieetd'astrophysiquedegrenoble(ipag)"", 'pre-commit-ci[bot]']",2,10,"['blackfoundry', ""institutdeplanétologieetd'astrophysiquedegrenoble(ipag)""]","['Black Foundry', ""Institut de Planétologie et d'Astrophysique de Grenoble (IPAG)""]",,3.88,111,107,46,0,11,14,11,111.0,110.0,90.0,1.0,0,36.35259 +541,util,https://github.com/pdoc3/pdoc,,,,pdoc3/pdoc,pdoc,937,137,9,Python,https://pdoc3.github.io/pdoc/,pdoc: :snake: :arrow_right: :scroll: Auto-generate API documentation for Python projects,pdoc3,2023-02-21,2019-01-02,216,4.337962962962963,"['documentation', 'generator', 'documentation-generator', 'documentation-tool', 'documentation-dumper', 'api-documentation', 'python', 'python3', 'docs', 'docs-generator', 'docstrings', 'docstring', 'docstring-documentation', 'pdoc', 'hacktoberfest']",2022-12-21,58,"['BurntSushi@salesforce', 'Hibou57', 'aomader', 'cortesi', 'dhimmel@related-sciences', 'jvantuyl', 'kchmck', 'kernc', 'knadh@zerodha', 'mhils']",3,10,"['related-sciences', 'salesforce', 'zerodha']","['@related-sciences', '@salesforce', 'Zerodha']",,0.1,9,3,50,2,0,12,12,9.0,6.0,90.0,0.7,0,34.55542 +935,nlp,https://github.com/jonasgeiping/cramming,,,,jonasgeiping/cramming,cramming,935,60,18,Python,,Cramming the training of a (BERT-type) language model into limited compute.,jonasgeiping,2023-02-21,2022-12-29,7,119.0,"['english-language', 'language-model', 'machine-learning']",2023-02-19,3,"['JonasGeiping@computerscienceatumd', 'ss18@kpn', 'w32zhong']",2,10,"['computerscienceatumd', 'kpn']","['@kpn', 'Computer Science at UMD']",,0.5,12,10,2,0,0,0,0,12.0,33.0,90.0,2.8,0,21.69742 +504,gis,https://github.com/anitagraser/movingpandas,,,,anitagraser/movingpandas,movingpandas,928,168,38,Python,http://movingpandas.org,movingpandas: Implementation of Trajectory classes and functions built on top of GeoPandas,anitagraser,2023-02-18,2018-12-16,218,4.248528449967299,"['geopandas', 'trajectory', 'movement-data', 'trajectory-analysis', 'python', 'spatial-data-analysis']",2023-02-16,30,"['JaviBecerra@panoimagen', 'Robinlovelace@universityofleeds', 'anitagraser', 'astrojuanlu@kedro-org', 'boiko', 'giorgostheo', 'gprichter', 'parnelandr', 'raybellwaves@dtn', 'sglvladi@universityofliverpool']",5,10,"['dtn', 'kedro-org', 'panoimagen', 'universityofleeds', 'universityofliverpool']","['@PANOimagen ', '@kedro-org', 'DTN', 'University of Leeds', 'University of Liverpool']",,2.13,35,23,51,0,6,3,6,35.0,49.0,90.0,1.4,0,41.7708 +468,ml,https://github.com/huggingface/optimum,,,,huggingface/optimum,optimum,925,133,41,Python,https://huggingface.co/docs/optimum/,optimum: 🏎️ Accelerate training and inference of 🤗 Transformers with easy to use hardware optimization tools,huggingface,2023-02-20,2021-07-20,83,11.125429553264604,"['onnx', 'pytorch', 'inference', 'training', 'intel', 'graphcore', 'onnxruntime', 'transformers', 'quantization', 'habana', 'optimization']",2023-02-21,52,"['JingyaHuang@huggingface', 'echarlaix@huggingface', 'fxmarty@huggingface', 'lewtun@huggingface', 'madlag', 'mfuntowicz@huggingface', 'mht-sharma', 'michaelbenayoun@huggingface', 'regisss', 'younesbelkada@ensparissaclay']",2,10,"['ensparissaclay', 'huggingface']","['@huggingface', '@huggingface ', 'ENS Paris Saclay', 'Hugging Face']",,8.19,340,262,19,0,18,15,18,342.0,947.0,90.0,2.8,0,46.27999 +251,ml-dl,https://github.com/tensorflow/similarity,,,,tensorflow/similarity,similarity,923,90,31,Python,,similarity: TensorFlow Similarity is a python package focused on making similarity learning quick and easy.,tensorflow,2023-02-16,2020-06-15,140,6.579429735234216,"['similarity-learning', 'metric-learning', 'similarity-search', 'nearest-neighbor-search', 'nearest-neighbors', 'deep-learning', 'tensorflow', 'contrastive-learning', 'machine-learning', 'unsupervised-learning', 'clustering', 'python', 'simclr', 'simclr2', 'barlow-twins', 'simsiam', 'cosine-similarity', 'knn']",2023-01-16,23,"['DominikSchmidtqq@google', 'abhisharsinha@indianinstituteoftechnologyhyderabad', 'adammichaelwood@google', 'dependabot[bot]', 'ebursztein@google', 'hanneshapke@digits', 'jamlong@google', 'owenvallis@google', 'shun-lin@google', 'yonigottesman']",3,10,"['digits', 'google', 'indianinstituteoftechnologyhyderabad']","['@digits ', '@google', '@google ', 'Google', 'Indian Institute of Technology Hyderabad']",,0.71,17,10,33,1,1,1,1,17.0,33.0,90.0,1.9,0,32.85191 +387,nlp,https://github.com/shivam5992/textstat,,,,shivam5992/textstat,textstat,919,148,17,Python,https://textstat.org,"textstat: :memo: python package to calculate readability statistics of a text object - paragraphs, sentences, articles.",shivam5992,2023-02-19,2014-06-18,453,2.0286975717439293,"['python', 'textstat', 'readability', 'flesch-kincaid-grade', 'smog', 'flesch-reading-ease']",2022-07-08,46,"['GuillemGSubies', 'LKirst', 'MKaras93', 'alonsoC1s', 'alxwrd@tessian', 'cclauss@christianclauss', 'hugovk@nordsoftware', 'lukaschoebel', 'massvoice', 'shivam5992']",3,10,"['christianclauss', 'nordsoftware', 'tessian']","['@Tessian', 'Christian Clauss', 'Nord Software']",,0.1,1,0,106,8,1,2,1,1.0,2.0,90.0,2.0,0,30.05037 +750,data,https://github.com/pytorch/data,,,,pytorch/data,data,916,111,26,Python,,data: A PyTorch repo for data loading and utilities to be shared by the PyTorch domain libraries.,pytorch,2023-02-18,2021-05-12,93,9.849462365591398,[],2023-02-17,66,"['DanilBaibak', 'NivekT', 'VitalyFedyunin', 'dahsh', 'ejguan@facebook', 'gaikwadabhishek', 'msaroufim@pytorch', 'ninginthecloud@universityofwashington/facebook', 'pmeier@quansight', 'ydaiming']",4,10,"['facebook', 'pytorch', 'quansight', 'universityofwashington/facebook']","['@PyTorch', '@Quansight ', '@facebook', 'University of Washington/ Facebook']",,6.37,183,134,22,0,5,7,5,183.0,505.0,90.0,2.8,0,46.45688 +219,template,https://github.com/tezromach/python-package-template,1.0,,,tezromach/python-package-template,python-package-template,914,92,6,Python,,python-package-template: 🚀 Your next Python package needs a bleeding-edge project structure.,tezromach,2023-02-20,2020-04-15,149,6.134228187919463,"['python', 'cookiecutter', 'best-practices', 'semantic-versions', 'python-packages', 'codestyle', 'formatters', 'makefile', 'poetry', 'template']",2022-05-18,13,"['ChenghaoMou@docusign', 'Dectinc@evision', 'N720720', 'TezRomacH', 'abassel', 'dependabot-preview[bot]', 'dependabot[bot]', 'hexfaker', 'pksol', 'volemont']",2,10,"['docusign', 'evision']","['Docusign', 'eVision']",,0.02,108,75,35,9,0,8,8,108.0,77.0,90.0,0.7,0,28.26058 +88,testing,https://github.com/taverntesting/tavern,,,,taverntesting/tavern,tavern,909,182,28,Python,https://taverntesting.github.io/,"tavern: A command-line tool and Python library and Pytest plugin for automated testing of RESTful APIs, with a simple, concise and flexible YAML-based syntax",taverntesting,2023-02-20,2017-11-01,277,3.2815884476534296,"['python', 'pytest', 'testing', 'test-automation', 'mqtt', 'http']",2023-02-16,57,"['Birne94@zalando', 'WhileLoop@opensourceart', 'benhowes', 'bitdivision', 'cetanu@atlassian', 'dependabot[bot]', 'imkaka@yellowmessengerprev-vogolabs', 'mbfr@forgerock', 'michaelboulton', 'tommilligan@reinfer,acquiredbyuipath']",6,10,"['atlassian', 'forgerock', 'opensourceart', 'reinfer,acquiredbyuipath', 'yellowmessengerprev-vogolabs', 'zalando']","['@Atlassian', '@OpenSourceArt', '@Zalando', '@reinfer, acquired by @UiPath', '@yellowmessenger Prev - @vogolabs', 'Forgerock']",,1.63,46,38,65,0,0,37,37,46.0,41.0,90.0,0.9,0,46.48366 +622,util,https://github.com/pytoolz/cytoolz,,,,pytoolz/cytoolz,cytoolz,906,67,23,Python,,cytoolz: Cython implementation of Toolz: High performance functional utilities,pytoolz,2023-02-21,2014-04-04,463,1.9537892791127542,[],2022-12-19,20,"['cpcloud@voltrondata', 'dependabot[bot]', 'eriknw', 'groutr@lynkertechnologies', 'hmaarrfk@californiainstituteoftechnology', 'jcrist@voltrondata', 'larsmans', 'llllllllll@formerlyquantopian', 'mrocklin@coiled', 'pitrou']",5,10,"['californiainstituteoftechnology', 'coiled', 'formerlyquantopian', 'lynkertechnologies', 'voltrondata']","['@coiled ', '@voltrondata', 'California Institute of Technology', 'Lynker Technologies', 'formerly @quantopian']",,0.56,9,7,108,2,2,2,2,9.0,11.0,90.0,1.2,0,35.10481 +891,util,https://github.com/xl0/lovely-tensors,,,,xl0/lovely-tensors,lovely-tensors,905,14,8,Jupyter Notebook,https://xl0.github.io/lovely-tensors,"lovely-tensors: Tensors, ready for human consumption",xl0,2023-02-20,2022-10-07,19,45.905797101449274,"['deep-learning', 'library', 'pytorch', 'statistics', 'visualization']",2023-01-27,1,['xl0'],0,10,[],[],,1.88,12,11,5,1,0,41,41,12.0,70.0,90.0,5.8,0,23.915 +672,perf,https://github.com/markshannon/faster-cpython,,,,markshannon/faster-cpython,faster-cpython,899,21,83,,,faster-cpython: How to make CPython faster.,markshannon,2023-02-20,2020-10-19,122,7.3516355140186915,[],2020-10-28,4,"['brettcannon@microsoft', 'ericvsmith', 'markshannon', 'yasoob@colgateuniversity']",2,10,"['colgateuniversity', 'microsoft']","['@microsoft ', 'Colgate University']",,0.0,0,0,28,28,0,0,0,0.0,0.0,90.0,0.0,0,9.83617 +204,debug,https://github.com/alexmojaki/snoop,,,,alexmojaki/snoop,snoop,899,31,17,Python,,"snoop: A powerful set of Python debugging tools, based on PySnooper",alexmojaki,2023-02-20,2019-05-13,197,4.556842867487328,"['python', 'debugging', 'debugger', 'debugging-tools', 'logging']",2022-12-22,22,"['alexbers', 'alexmojaki', 'bittner@painless-software', 'cool-RR', 'czietz', 'danr@pharmbio', 'gpshead@google', 'marksmayo@teremtech', 'pohmelie@aratar.tech', 'volpatto@esss']",6,10,"['aratar.tech', 'esss', 'google', 'painless-software', 'pharmbio', 'teremtech']","['@ESSS', '@TeremTech ', '@painless-software ', '@pharmbio ', 'Google', 'aratar.tech']",,0.17,11,3,46,2,0,1,1,11.0,18.0,90.0,1.6,0,33.19135 +630,gis,https://github.com/pytroll/satpy,,,,pytroll/satpy,satpy,896,260,31,Python,http://satpy.readthedocs.org/en/latest/,satpy: Python package for earth-observing satellite data processing,pytroll,2023-02-20,2016-02-09,367,2.440466926070039,"['python', 'satellite', 'weather', 'hacktoberfest', 'dask', 'xarray', 'closember']",2023-02-21,135,"['adybbroe@smhi', 'ameraner@eumetsat', 'djhoese@spacescienceandengineeringcenter(ssec)', 'gerritholl@deutscherwetterdienst', 'joleenf@cooperativeinstituteformeteorologicalsatellitestudies/spacescienceandengineeringcenter', 'mraspaud@smhi', 'pnuu', 'sfinkens@dwd', 'simonrp84@nationalcentreforearthobservation', 'strandgren']",7,10,"['cooperativeinstituteformeteorologicalsatellitestudies/spacescienceandengineeringcenter', 'deutscherwetterdienst', 'dwd', 'eumetsat', 'nationalcentreforearthobservation', 'smhi', 'spacescienceandengineeringcenter(ssec)']","['Cooperative Institute for Meteorological Satellite Studies/Space Science and Engineering Center', 'DWD', 'Deutscher Wetterdienst', 'EUMETSAT', 'National Centre for Earth Observation', 'SMHI', 'Space Science and Engineering Center (@ssec)']",,22.65,160,117,86,0,7,11,7,160.0,646.0,90.0,4.0,0,57.4605 +700,perf,https://github.com/intel/scikit-learn-intelex,,,,intel/scikit-learn-intelex,scikit-learn-intelex,892,145,26,Python,https://intel.github.io/scikit-learn-intelex/,scikit-learn-intelex: Intel(R) Extension for Scikit-learn is a seamless way to speed up your Scikit-learn application,intel,2023-02-20,2018-08-07,237,3.76144578313253,"['oneapi', 'scikit-learn', 'machine-learning-algorithms', 'data-analysis', 'machine-learning', 'python', 'swrepo', 'ai-machine-learning', 'big-data', 'analytics', 'ai-training', 'ai-inference', 'gpu', 'intel']",2023-02-16,66,"['Alexander-Makaryev', 'Alexsandruss@intel', 'OnlyDeniko', 'Pahandrovich', 'PetrovKP@intel', 'fschlimb@intel', 'napetrov@intel', 'oleksandr-pavlyk@intelcorporation', 'owerbat', 'renovate[bot]']",2,10,"['intel', 'intelcorporation']","['@intel', '@intel ', 'Intel', 'Intel Corporation']",,1.87,204,172,55,0,2,5,2,204.0,224.0,90.0,1.1,0,41.01989 +291,pandas,https://github.com/stitchfix/hamilton,,,,stitchfix/hamilton,hamilton,890,44,19,Python,https://hamilton-docs.gitbook.io/docs/,"hamilton: A scalable general purpose micro-framework for defining dataflows. You can use it to build dataframes, numpy matrices, python objects, ML models, etc. Embed Hamilton anywhere python runs, e.g. spark, airflow, jupyter, fastapi, python scripts, etc.",stitchfix,2023-02-21,2020-05-26,143,6.217564870259481,"['python', 'pandas', 'dag', 'data-science', 'data-engineering', 'numpy', 'software-engineering', 'etl-framework', 'etl-pipeline', 'etl', 'feature-engineering', 'featurization', 'dataframe', 'stitch-fix', 'data-platform', 'hamilton', 'hamiltonian', 'machine-learning']",2023-02-20,19,"['bovem@redhat', 'chmp', 'datarshreya', 'elijahbenizzy@stitchfix', 'frenchfrywpepper', 'ivirshup@helmholtzmunich', 'jameslamb@spothero', 'rinsoft-sf@stitchfix', 'shellyjang', 'skrawcz']",4,10,"['helmholtzmunich', 'redhat', 'spothero', 'stitchfix']","['@spothero', 'Helmholtz Munich', 'Red Hat', 'Stitch Fix']",,6.12,99,76,33,0,16,7,16,99.0,177.0,90.0,1.8,0,43.77127 +341,term,https://github.com/jquast/blessed,,,,jquast/blessed,blessed,889,67,23,Python,http://pypi.python.org/pypi/blessed,"Blessed is an easy, practical library for making python terminal apps",jquast,2023-02-17,2014-03-01,468,1.8972560975609756,"['terminal', 'curses', 'cli']",2023-02-04,25,"['avylove', 'croepha', 'dlax@dalibo', 'erikrose@mozillagoogle', 'fishermans-friend', 'jquast', 'jwezel', 'msabramo@adobe', 'thomasballinger', 'vitek']",3,10,"['adobe', 'dalibo', 'mozillagoogle']","['@adobe', '@dalibo', '@mozilla @google']",,0.23,11,9,109,1,1,6,1,11.0,18.0,90.0,1.6,0,34.58303 +392,pandas,https://github.com/tkrabel/bamboolib,,,,tkrabel/bamboolib,bamboolib,876,95,31,Jupyter Notebook,https://bamboolib.com,bamboolib - a GUI for pandas DataFrames,tkrabel,2023-02-20,2019-05-29,195,4.492307692307692,"['pandas', 'pandas-dataframes', 'jupyter-notebook', 'jupyterlab', 'python']",2022-09-27,4,"['FlorianWetschoreck@bamboolib', 'fwetdb@databricks', 'susmitpy', 'tkrabel@8080labs']",3,10,"['8080labs', 'bamboolib', 'databricks']","['@8080labs', '@databricks ', 'bamboolib']",,0.19,0,0,45,5,0,0,0,0.0,0.0,90.0,0.0,0,16.54058 +697,data,https://github.com/scholarly-python-package/scholarly,,,,scholarly-python-package/scholarly,scholarly,870,255,24,Python,https://scholarly.readthedocs.io/,"scholarly: Retrieve author and publication information from Google Scholar in a friendly, Pythonic way without having to worry about CAPTCHAs!",scholarly-python-package,2023-02-20,2014-12-02,429,2.0272969374167777,"['scholar', 'googlescholar', 'scholarly-articles', 'scholarly-communications', 'python3', 'python-3', 'python', 'citation-network', 'citation-analysis', 'citations', 'citation-index', 'publication-data']",2023-01-16,42,"['1ucian0', 'OrganicIrradiation', 'TomBrien@cardiffuniversity', 'arunkannawadi@princetonuniversity', 'bielsnohr@ukaea', 'ipeirotis@newyorkuniversity', 'programize-admin', 'silvavn@universityofalberta', 'stefanct', 'waynehuu']",5,10,"['cardiffuniversity', 'newyorkuniversity', 'princetonuniversity', 'ukaea', 'universityofalberta']","[' New York University', '@ukaea', 'Cardiff University', 'Princeton University', 'University of Alberta']",,1.88,33,28,100,1,17,8,17,33.0,68.0,90.0,2.1,0,45.32403 +712,ml,https://github.com/google-research/deeplab2,,,,google-research/deeplab2,deeplab2,868,146,22,Python,,"DeepLab2 is a TensorFlow library for deep labeling, aiming to provide a unified and state-of-the-art TensorFlow codebase for dense pixel labeling tasks.",google-research,2023-02-18,2021-05-12,93,9.333333333333334,[],2023-01-17,12,"['ClaireXie', 'YknZhu@google', 'aquariusjay', 'csrhddlam@johnshopkinsuniversity', 'davidblom603@shell', 'joe-siyuan-qiao@johnshopkinsuniversity', 'markweberdev', 'meijieru@johnshopkinsuniversityccvl', 'yuanliangzhe', 'yucornetto@johnshopkinsuniversity']",4,10,"['google', 'johnshopkinsuniversity', 'johnshopkinsuniversityccvl', 'shell']","['Google', 'Johns Hopkins University', 'Johns Hopkins University @ccvl', 'Shell']",,0.79,10,4,22,1,0,0,0,10.0,15.0,90.0,1.5,0,28.62047 +628,data,https://github.com/intake/intake,,,,intake/intake,intake,868,125,41,Python,https://intake.readthedocs.io/,"Intake is a lightweight package for finding, investigating, loading and disseminating data.",intake,2023-02-18,2017-08-14,288,3.010901883052527,"['python', 'data-access', 'data-catalog']",2023-02-15,79,"['CJ-Wright', 'bryevdv@nvidia', 'danielballan@brookhavennationallab', 'gwbischof@nsls-ii', 'ian-r-rose@coiled', 'jbcrail', 'jsignell@azavea', 'martindurant@anaconda', 'philippjfr@anaconda', 'seibert']",6,10,"['anaconda', 'azavea', 'brookhavennationallab', 'coiled', 'nsls-ii', 'nvidia']","['@NSLS-II ', '@azavea', '@coiled ', 'Anaconda Inc.', 'Anaconda, inc.', 'Brookhaven National Lab', 'Nvidia']",,0.85,15,12,67,0,0,7,7,15.0,42.0,90.0,2.8,0,46.11345 +347,nlp,https://github.com/norskregnesentral/skweak,,,,norskregnesentral/skweak,skweak,863,69,27,Python,,skweak: A software toolkit for weak supervision applied to NLP tasks,norskregnesentral,2023-02-13,2021-03-16,101,8.532485875706215,"['weak-supervision', 'nlp-machine-learning', 'distant-supervision', 'nlp-library', 'spacy', 'python', 'data-science', 'training-data', 'natural-language-processing']",2022-11-08,11,"['aliaksah@universityofoslo', 'jerbarnes@universityofthebasquecountryupv/ehu', 'lidiexy-palinode@palinode', 'marioangst@universityofzurich,digitalsocietyinitiative', 'plison@norwegiancomputingcentre', 'ruanchaves', 'udayankumar']",5,10,"['norwegiancomputingcentre', 'palinode', 'universityofoslo', 'universityofthebasquecountryupv/ehu', 'universityofzurich,digitalsocietyinitiative']","['Norwegian Computing Centre', 'Palinode', 'University of Oslo', 'University of Zurich, Digital Society Initiative', 'University of the Basque Country UPV/EHU']",,0.35,2,1,24,4,1,1,1,2.0,0.0,90.0,0.0,0,22.58919 +351,ml,https://github.com/jina-ai/finetuner,,,,jina-ai/finetuner,finetuner,857,48,24,Python,https://finetuner.jina.ai,finetuner: :dart: Task-oriented finetuning for better embeddings on neural search,jina-ai,2023-02-21,2021-08-11,80,10.7125,"['fine-tuning', 'pretrained-models', 'few-shot-learning', 'negative-sampling', 'metric-learning', 'siamese-network', 'triplet-loss', 'transfer-learning', 'jina', 'neural-search', 'finetuning', 'similarity-learning']",2023-02-15,32,"['LMMilliken', 'azayz@jinaai', 'bwanglzu@jina-ai', 'gmastrapas@jinaai', 'guenthermi@jinaai', 'hanxiao@jina-ai', 'jina-bot@jina-ai', 'jupyterjazz@jina-ai', 'nomagick@jina-ai', 'scott-martens@jina-ai']",2,10,"['jina-ai', 'jinaai']","['@jina-ai', '@jina-ai ', 'Jina AI']",,4.23,68,62,19,0,12,21,12,68.0,159.0,90.0,2.3,0,40.64492 +445,gis,https://github.com/pyproj4/pyproj,,,,pyproj4/pyproj,pyproj,856,190,30,Python,https://pyproj4.github.io/pyproj,pyproj: Python interface to PROJ (cartographic projections and coordinate transformations library),pyproj4,2023-02-18,2014-12-29,425,2.012764528048371,"['geospatial', 'python', 'coordinate-systems', 'coordinate-transformation', 'cartographic-projection', 'geodesic', 'hacktoberfest']",2023-01-20,58,"['cjmayo', 'dependabot[bot]', 'greglucas@lasp/lasp/swxtrec', 'idanmiara@viatransportation', 'jdkloe@knmi', 'jorisvandenbossche', 'jswhit', 'micahcochran', 'paultcochrane', 'snowman2@corteva']",4,10,"['corteva', 'knmi', 'lasp/lasp/swxtrec', 'viatransportation']","['@corteva ', 'KNMI', 'LASP / @lasp / @SWxTREC', 'Via Transportation']",,3.0,63,52,99,1,7,7,7,63.0,135.0,90.0,2.1,0,45.24434 +484,gis,https://github.com/sentinelsat/sentinelsat,,,,sentinelsat/sentinelsat,sentinelsat,847,229,59,Python,https://sentinelsat.readthedocs.io,sentinelsat: Search and download Copernicus Sentinel satellite images,sentinelsat,2023-02-15,2015-05-22,404,2.0928344511118957,"['sentinel', 'copernicus', 'esa', 'remote-sensing', 'satellite-imagery', 'geographic-data', 'open-data', 'hacktoberfest']",2022-11-03,42,"['avalentino', 'gbaier', 'j08lue@developmentseed', 'kr-stn', 'lucadelu@fondazioneedmundmach', 'sdf94', 'thomasyoung-audet@deloitte', 'valgur@milremrobotics', 'viktorbahr', 'willemarcel@developmentseed']",4,10,"['deloitte', 'developmentseed', 'fondazioneedmundmach', 'milremrobotics']","['@developmentseed ', 'Deloitte', 'Development Seed', 'Fondazione Edmund Mach', 'Milrem Robotics']",,0.13,8,2,94,4,0,3,3,8.0,23.0,90.0,2.9,0,36.24327 +887,sim,https://github.com/pyscf/pyscf,,,,pyscf/pyscf,pyscf,846,454,76,Python,,pyscf: Python module for quantum chemistry,pyscf,2023-02-21,2014-05-02,459,1.8402734617775016,[],2023-02-07,141,"['Samragni-93@theohiostateuniversity', 'fishjojo', 'jdmcclain47', 'kovalp@simuneatomisticss.l.', ""obackhouse@king'scollege,london"", 'pulkin', 'ssh2', 'sunqm', 'tberkel@columbiauniversityandflatironinstitute', 'xwang862']",4,10,"['columbiauniversityandflatironinstitute', ""king'scollege,london"", 'simuneatomisticss.l.', 'theohiostateuniversity']","['Columbia University and Flatiron Institute', ""King's College, London"", 'Simune Atomistics S.L.', 'The Ohio State University']",,5.35,122,69,107,1,2,8,2,122.0,222.0,90.0,1.8,0,47.10729 +639,ml,https://github.com/dask/dask-ml,,,,dask/dask-ml,dask-ml,838,237,41,Python,http://ml.dask.org,dask-ml: Scalable Machine Learning with Dask,dask,2023-02-21,2017-06-15,296,2.8229066410009627,['hacktoberfest'],2023-02-10,77,"['TomAugspurger@microsoft', 'abduhbm', 'jameslamb@spothero', 'jcrist@voltrondata', 'jrbourbeau@coiled', 'mmccarty@nvidia', 'mrocklin@coiled', 'raybellwaves@dtn', 'stsievert', 'thomasjpfan@quansight-labs']",7,10,"['coiled', 'dtn', 'microsoft', 'nvidia', 'quansight-labs', 'spothero', 'voltrondata']","['@Quansight-Labs ', '@coiled ', '@microsoft', '@spothero', '@voltrondata', 'DTN', 'NVIDIA']",,0.25,20,7,69,0,1,6,1,20.0,29.0,90.0,1.4,0,41.53054 +395,web,https://github.com/emmett-framework/emmett,,,,emmett-framework/emmett,emmett,827,62,31,Python,,emmett: The web framework for inventors,emmett-framework,2023-02-20,2014-10-20,435,1.8999015425008206,"['python', 'web-framework', 'asgi', 'asyncio', 'emmett']",2023-01-30,22,"['GiantCrocodile', 'Leon0824', 'bronte2k7', 'cassiobotaro', 'gi0baro', 'ianonavy', 'lethargilistic@lawstudent', 'mijdavis2@praxiskit', 'vanadium23@ostrovok.ru', 'waghanza@cashbee-team']",4,10,"['cashbee-team', 'lawstudent', 'ostrovok.ru', 'praxiskit']","['@cashbee-team', '@praxiskit ', 'Law Student', 'Ostrovok.ru']",,0.9,5,5,102,1,11,13,11,5.0,4.0,90.0,0.8,0,36.72439 +926,study,https://github.com/roboflow/notebooks,,,,roboflow/notebooks,notebooks,805,125,22,Jupyter Notebook,https://roboflow.com/models,notebooks: Set of Jupyter Notebooks linked to Roboflow blog posts and used in our YouTube videos.,roboflow,2023-02-21,2022-11-18,13,58.697916666666664,"['computer-vision', 'deep-learning', 'deep-neural-networks', 'image-classification', 'image-segmentation', 'object-detection', 'yolov5', 'yolov6', 'yolov7', 'pytorch', 'tutorial', 'amazon-sagemaker-lab', 'kaggle', 'yolov8', 'google-colab', 'machine-learning']",2023-02-14,9,"['FrancescoSaverioZuppichini@roboflow', 'Jacobsolawetz@roboflow.com', 'SkalskiP@roboflow', 'capjamesg@roboflow', 'hansent', 'mmcquade11', 'partheee@spritle']",3,10,"['roboflow', 'roboflow.com', 'spritle']","['@Roboflow', '@roboflow', 'Spritle', 'roboflow', 'roboflow.com']",,2.52,52,48,3,0,1,4,1,52.0,157.0,90.0,3.0,0,31.25547 +850,util,https://github.com/wolph/python-progressbar,,,,wolph/python-progressbar,python-progressbar,804,95,22,Python,http://progressbar-2.readthedocs.org/en/latest/,"python-progressbar: Progressbar 2 - A progress bar for Python 2 and Python 3 - ""pip install progressbar2""",wolph,2023-02-21,2012-02-20,574,1.4,"['python', 'progressbar', 'progress-bar', 'rate', 'eta', 'percentage', 'console', 'terminal', 'time', 'progress', 'bar', 'cli', 'gui', 'library']",2023-02-02,42,"['NiltonVolpato@google', 'Zannick', 'joe-antognini@whisper', 'matthewwardrop@datascientistatnetflix', 'paulo-raca', 'ritze', 'stuertz@cslab', 'takluyver', 'terencehonles', 'wolph']",4,10,"['cslab', 'datascientistatnetflix', 'google', 'whisper']","['@cslab', 'Data Scientist at @Netflix', 'Google', 'Whisper']",,1.1,5,1,134,1,3,9,3,5.0,7.0,90.0,1.4,0,37.51963 +738,perf,https://github.com/zerointensity/pointers.py,,,,zerointensity/pointers.py,pointers.py,802,11,4,Python,https://pointers.zintensity.dev/,pointers.py: Bringing the hell of pointers to Python.,zerointensity,2023-02-20,2022-03-09,50,16.04,"['python', 'pointers', 'python-pointers']",2023-02-14,8,"['2231puppy', '5HT2', 'UltraStudioLTD', 'ZeroIntensity', 'bswck', 'joshua-auchincloss@royalbankofcanada', 'shenanigansd', 'shenjackyuanjie@china']",2,10,"['china', 'royalbankofcanada']","['China', 'Royal Bank of Canada']",,3.48,4,3,12,0,8,8,8,4.0,11.0,90.0,2.8,0,31.96097 +490,viz,https://github.com/luispedro/mahotas,,,,luispedro/mahotas,mahotas,795,151,48,Python,https://mahotas.rtfd.io,mahotas: Computer Vision in Python,luispedro,2023-02-17,2010-01-31,681,1.1666666666666667,"['computer-vision', 'numpy', 'python', 'c-plus-plus', 'python-2', 'python-3']",2022-11-14,32,"['cgohlke', 'jakirkham', 'langner@google', 'lstolcman', 'luispedro@fudanuniversity', 'meawoppl@theexclosure', 'michaelaye@lasp', 'mindw', 'stefanv@universityofcalifornia,berkeley', 'wang1211']",5,10,"['fudanuniversity', 'google', 'lasp', 'theexclosure', 'universityofcalifornia,berkeley']","['Fudan University', 'Google', 'LASP', 'The Exclosure', 'University of California, Berkeley']",,0.15,5,1,159,3,1,4,1,5.0,9.0,90.0,1.8,0,34.3741 +226,sim,https://github.com/facebookresearch/droidlet,,,,facebookresearch/droidlet,fairo,792,79,38,Jupyter Notebook,,fairo: A modular embodied agent architecture and platform for building embodied agents,facebookresearch,2023-01-20,2020-11-02,120,6.584323040380047,[],2023-02-01,43,"['1heart', 'Rebecca-Qian', 'anuragprat1k', 'aszlam', 'exhaustin', 'kavyasrinet@facebookairesearch', 'lshamis', 'snyxan@facebookairesearch', 'soumith@facebookairesearch', 'zephirefaith@facebookresearch']",2,10,"['facebookairesearch', 'facebookresearch']","['@facebookresearch ', 'Facebook AI Research']",,8.12,23,9,28,1,0,0,0,23.0,31.0,90.0,1.3,0,33.48744 +908,viz,https://github.com/datapane/datapane,,,,datapane/datapane,datapane,782,64,16,Python,https://datapane.com,Datapane is the easiest way to create data science reports from Python.,datapane,2023-02-20,2020-04-23,147,5.288888888888889,"['dashboard', 'reporting', 'data-visualization', 'python', 'hacktoberfest']",2023-02-21,11,"['Buroni@datapane', 'antdking@datapane', 'datapane-ci-bot', 'dependabot[bot]', 'lanthias@datapane', 'mallok-s', 'mands@datapane', 'radiac', 'shahinrostami@datasciencelabpolyra', 'spookylukey']",2,10,"['datapane', 'datasciencelabpolyra']","['@Datapane', '@datapane', '@datapane ', 'Data Science Lab @ Polyra', 'datapane']",,5.56,11,6,34,0,0,18,18,11.0,21.0,90.0,1.9,0,37.01252 +810,data,https://github.com/neo4j/neo4j-python-driver,,,,neo4j/neo4j-python-driver,neo4j-python-driver,771,171,98,Python,https://neo4j.com/docs/api/python-driver/current/,neo4j-python-driver: Neo4j Bolt driver for Python,neo4j,2023-02-21,2015-05-05,407,1.8936842105263159,"['python', 'graph-database', 'driver', 'neo4j', 'database-driver', 'protocol', 'cypher', 'query-language', 'python3', 'binary-protocol']",2023-02-09,41,"['2hdddg', 'RagnarW', 'jakewins@tibber', 'martin-neotech@neo4j', 'nigelsmall', 'pontusmelke@neotechnology', 'robsdedude', 'srbaker', 'technige@elastic', 'zhenlineo']",4,10,"['elastic', 'neo4j', 'neotechnology', 'tibber']","['@tibber ', 'Elastic', 'Neo Technology', 'Neo4j']",,2.77,42,38,95,0,18,14,18,42.0,30.0,90.0,0.7,0,44.31298 +853,data,https://github.com/eliasdabbas/advertools,,,,eliasdabbas/advertools,advertools,770,163,34,Python,https://advertools.readthedocs.io,advertools - online marketing productivity and analysis tools,eliasdabbas,2023-02-19,2017-05-14,301,2.5545023696682465,"['marketing', 'advertising', 'adwords', 'python', 'digital-marketing', 'online-marketing', 'keywords', 'search-engine-marketing', 'twitter-api', 'search-engine-optimization', 'seo', 'serp', 'social-media', 'youtube', 'robots-txt', 'scrapy', 'seo-crawler', 'log-analysis', 'google-ads', 'logfile-parser']",2022-12-13,7,"['amrrs', 'dreadedhamish', 'eliasdabbas@themediasupermarket', 'lgtm-migrator@github', 'pyup-bot@pyupio']",3,10,"['github', 'pyupio', 'themediasupermarket']","['@github', '@pyupio', 'The Media Supermarket']",,1.33,20,17,70,2,0,6,6,20.0,38.0,90.0,1.9,0,33.83792 +658,util,https://github.com/rasbt/watermark,,,,rasbt/watermark,watermark,765,82,13,Python,,"watermark: An IPython magic extension for printing date and time stamps, version numbers, and hardware information",rasbt,2023-02-21,2014-07-30,447,1.7114093959731544,"['python', 'magic-extension', 'jupyter', 'ipython']",2022-09-13,17,"['GreatBahram', 'Hugovdberg@brabantwater', 'askras', 'e9t@upstageai,hkust', 'iamaziz', 'jGaboardi@ornl', 'jamesmyatt@capgeminiengineering', 'pjbull@drivendata', 'proinsias@hospiq', 'rasbt@lightning-ai,universityofwisconsin-madison']",7,10,"['brabantwater', 'capgeminiengineering', 'drivendata', 'hospiq', 'lightning-ai,universityofwisconsin-madison', 'ornl', 'upstageai,hkust']","['@Lightning-AI , University of Wisconsin-Madison', '@UpstageAI, @hkust', '@hospiq ', 'Brabant Water', 'Capgemini Engineering', 'DrivenData', 'ORNL']",,0.06,0,0,104,5,1,2,1,0.0,0.0,90.0,0.0,0,26.54468 +146,util,https://github.com/zenodo/zenodo,,,,zenodo/zenodo,zenodo,762,228,40,Python,https://zenodo.org,zenodo: Research. Shared.,zenodo,2023-02-15,2013-02-11,523,1.4561834561834561,"['zenodo', 'invenio', 'python', 'research-data-repository', 'research-data-management', 'flask', 'digital-library', 'open-science', 'open-access', 'scientific-publications', 'library-management', 'elasticsearch', 'postgresql', 'inveniosoftware']",2023-02-20,67,"['ChiaraBi', 'Glignos@skribble', 'JavierDelgadoFernandez', 'SamiHiltunen', 'frankois@ibekso', 'jainaman224@codingninjas', 'kaplun@protonmail', 'lnielsen@cern', 'mitsosf', 'slint@cern']",5,10,"['cern', 'codingninjas', 'ibekso', 'protonmail', 'skribble']","['@ProtonMail ', 'CERN', 'Coding Ninjas', 'Ibekso', 'Skribble']",,1.46,409,61,122,0,0,41,41,409.0,58.0,90.0,0.1,0,47.03687 +559,jupyter,https://github.com/vizzuhq/ipyvizzu,,,,vizzuhq/ipyvizzu,ipyvizzu,759,59,16,Python,https://ipyvizzu.vizzuhq.com,ipyvizzu: Build animated charts in Jupyter Notebook and similar environments with a simple Python syntax.,vizzuhq,2023-02-18,2022-01-05,59,12.864406779661017,"['jupyter', 'jupyter-notebook', 'python', 'plotting', 'graphs', 'data-visualization', 'graphing', 'ipython', 'chart', 'charts', 'dataviz', 'animation', 'storytelling', 'charting', 'vizzu']",2023-02-17,10,"['KleinK0910@vizzu', 'ParkerKain', 'ShruAgarwal', 'csaladenes@denesdata', 'm1lk4', 'nyirog@oneidentity(balabit)', 'petervidos@vizzuhq', 'simzer@vizzuhq', 'sugatoray@universityofwisconsin-milwaukee', 'veghdev']",5,10,"['denesdata', 'oneidentity(balabit)', 'universityofwisconsin-milwaukee', 'vizzu', 'vizzuhq']","['@VizzuHQ', '@denesdata ', '@vizzuhq', 'One Identity (BalaBit)', 'University of Wisconsin - Milwaukee', 'Vizzu']",,7.62,19,11,14,0,13,16,13,19.0,13.0,90.0,0.7,0,36.47319 +334,util,https://github.com/clarete/forbiddenfruit,,,,clarete/forbiddenfruit,forbiddenfruit,757,49,28,Python,https://clarete.li/forbiddenfruit/,forbiddenfruit: Patch built-in python objects,clarete,2023-02-08,2013-04-03,516,1.4670542635658914,"['python', 'monkey-patching']",2022-03-12,15,"['Cologler', 'Jongy', 'Julian', 'adamchainz@django,djangolondon', 'bitdeli-chef@bitdeli', 'clarete', 'lukasgraf@4teamworkag', 'pschanely', 'smola@datadog', 'timgates42@iress']",5,10,"['4teamworkag', 'bitdeli', 'datadog', 'django,djangolondon', 'iress']","['4teamwork AG', '@datadog', '@django, @djangolondon', 'Bitdeli', 'IRESS']",,0.0,0,0,120,16,0,1,1,0.0,0.0,90.0,0.0,0,22.50173 +791,sim,https://github.com/viblo/pymunk,1.0,,,viblo/pymunk,pymunk,754,178,22,Python,http://www.pymunk.org,Pymunk is a easy-to-use pythonic 2d physics library that can be used whenever you need 2d rigid body physics from Python,viblo,2023-02-20,2013-10-02,490,1.5387755102040817,"['python', 'physics-2d', 'library', 'pygame', 'pyglet', 'physics-engine', 'physics-simulation', 'python-library']",2023-01-29,17,"['Berserker66@skamrahlitsolutions', 'Norberg', 'anthemion', 'cclauss@christianclauss', 'illume', 'mikhail@google', 'msis@blksail', 'oprypin@google', 'viblo', 'zman97211']",4,10,"['blksail', 'christianclauss', 'google', 'skamrahlitsolutions']","['@google', '@google ', 'Christian Clauss', 'Skamrahl IT Solutions', 'blkSAIL']",,1.35,9,6,114,1,2,3,2,9.0,14.0,90.0,1.6,0,36.2249 +976,sim,https://github.com/a-r-j/graphein,,,,a-r-j/graphein,graphein,751,95,16,Jupyter Notebook,https://graphein.ai/,graphein: Protein Graph Library,a-r-j,2023-02-21,2019-08-28,182,4.126373626373627,"['protein', 'protein-structure', 'deep-learning', 'pytorch', 'graph-neural-networks', 'dgl', 'computational-biology', 'bioinformatics', 'structural-biology', 'protein-data-bank', 'protein-design', 'geometric-deep-learning', 'pytorch-geometric', 'python', 'interactomics', 'interactome', 'rna', 'ppi-networks', 'gene-regulatory-networks', 'drug-discovery']",2023-02-13,21,"['Seanny123@proteinqure', 'a-r-j@universityofcambridge', 'anton-bushuiev', 'cch1999@univeristyofcambridge', 'dependabot-preview[bot]', 'ericmjl', 'kamurani@rewiredbio', 'kexinhuang12345', 'pre-commit-ci[bot]', 'rvinas']",4,10,"['proteinqure', 'rewiredbio', 'univeristyofcambridge', 'universityofcambridge']","['@rewiredbio', 'ProteinQure', 'Univeristy of Cambridge', 'University of Cambridge']",,1.48,43,30,42,0,8,3,8,43.0,106.0,90.0,2.5,0,41.43113 +325,security,https://github.com/trailofbits/pip-audit,,,,trailofbits/pip-audit,pip-audit,751,48,20,Python,https://pypi.org/project/pip-audit/,pip-audit: Audits Python environments and dependency trees for known vulnerabilities,trailofbits,2023-02-20,2021-09-02,76,9.771375464684015,"['security', 'security-audit', 'python', 'pip', 'supply-chain']",2023-02-16,20,"['Elkasitu@redhat', 'JeffreyVdb', 'ameily', 'cooperlees@clc', 'dependabot[bot]', 'di@google', 'redbmk@anthem-ai', 'tetsuo-cpp@trailofbits', 'woodruffw@trailofbits', 'xsc27@digitalr00ts']",6,10,"['anthem-ai', 'clc', 'digitalr00ts', 'google', 'redhat', 'trailofbits']","['@anthem-ai', '@google', '@trailofbits', '@trailofbits ', 'CLC', 'Red Hat', 'digitalr00ts']",,4.19,119,101,18,0,25,30,25,119.0,238.0,90.0,2.0,0,44.96211 +975,gis,https://github.com/microsoft/globalmlbuildingfootprints,,,,microsoft/globalmlbuildingfootprints,GlobalMLBuildingFootprints,747,92,31,Python,,GlobalMLBuildingFootprints: Worldwide building footprints derived from satellite imagery ,microsoft,2023-02-21,2022-04-22,43,17.08823529411765,[],2022-11-16,4,"['andwoi', 'dakotabenjamin@hotosm', 'microsoft-github-operations[bot]', 'microsoftopensource@microsoft']",2,10,"['hotosm', 'microsoft']","['@hotosm ', 'Microsoft']",,0.46,7,1,10,3,0,0,0,6.0,3.0,90.0,0.5,0,16.5975 +634,profiling,https://github.com/csurfer/pyheat,,,,csurfer/pyheat,pyheat,741,40,13,Python,,pyheat: pprofile + matplotlib = Python program profiled as an awesome heatmap!,csurfer,2023-02-19,2017-02-04,315,2.348121321865097,"['profiling', 'python', 'heatmap', 'matplotlib']",2021-09-18,5,"['AaronRobson@citrix', 'csurfer@lyft', 'hinnefe2']",2,10,"['citrix', 'lyft']","['@Citrix', 'Lyft']",,0.0,0,0,74,17,0,0,0,0.0,0.0,90.0,0.0,0,13.84075 +419,util,https://github.com/sethmmorton/natsort,,,,sethmmorton/natsort,natsort,733,42,15,Python,https://pypi.org/project/natsort/,natsort: Simple yet flexible natural sorting in Python.,sethmmorton,2023-02-21,2012-05-03,563,1.2999746643020016,"['python', 'natural-sort', 'sorting-interface', 'sorting', 'natsort']",2023-01-11,21,"['Gilthans@siasol', 'MinchinWeb', 'SethMMorton', 'cpburnz', 'hugovk@nordsoftware', 'jdufresne@pioneervalleybooks', 'kuraga', 'madphysicist', 'rinslow@dapulse', 'swt2c']",4,10,"['dapulse', 'nordsoftware', 'pioneervalleybooks', 'siasol']","['@DaPulse ', 'Nord Software', 'Pioneer Valley Books', 'Siasol']",,0.23,3,2,132,1,0,5,5,3.0,13.0,90.0,4.3,0,38.84271 +23,math,https://github.com/fredrik-johansson/mpmath,,,,fredrik-johansson/mpmath,mpmath,729,152,40,Python,http://mpmath.org,mpmath: Python library for arbitrary-precision floating-point arithmetic,fredrik-johansson,2023-02-21,2011-12-07,585,1.2461538461538462,"['python', 'arbitrary-precision', 'multiprecision', 'floating-point', 'special-functions', 'numerical-integration', 'numerical-methods', 'plotting', 'complex-numbers', 'ordinary-differential-equations', 'numerical-optimization']",2023-01-10,47,"['ariasdereyna', 'asmeurer@quansight', 'casevh', 'certik@gsitechnology', 'fredrik-johansson@inria&institutdemathématiquesdebordeaux', 'klkuhlm', 'paulmasson', 'skirpichev', 'vks', 'warnerjon12']",3,10,"['gsitechnology', 'inria&institutdemathématiquesdebordeaux', 'quansight']","['@Quansight ', 'GSI Technology', 'INRIA & Institut de Mathématiques de Bordeaux']",,0.23,12,5,136,1,0,1,1,12.0,12.0,90.0,1.0,0,35.09977 +701,profiling,https://github.com/pythonspeed/filprofiler,,,,pythonspeed/filprofiler,filprofiler,722,21,9,Rust,https://pythonspeed.com/products/filmemoryprofiler/,filprofiler: A Python memory profiler for data processing and scientific computing applications,pythonspeed,2023-02-21,2020-06-18,139,5.162410623084781,"['python', 'memory-profiler', 'memory-profiling', 'memory-leak', 'memory-leaks', 'memory-leak-detection', 'memory-leak-finder', 'memory', 'memory-']",2023-02-14,6,"['PLNech@algolia', 'bast@uit-noneicnordic', 'dependabot[bot]', 'itamarst', 'pythonspeed@hyphenatedenterprises', 'whalesalad@whalesalad']",4,10,"['algolia', 'hyphenatedenterprises', 'uit-noneicnordic', 'whalesalad']","['@uit-no @neicnordic', 'Algolia', 'Hyphenated Enterprises LLC', 'WHALESALAD']",,3.33,36,25,33,0,13,23,13,36.0,24.0,90.0,0.7,0,36.12388 +621,testing,https://github.com/wolever/parameterized,,,,wolever/parameterized,parameterized,720,96,18,Python,,Parameterized testing with any Python test framework,wolever,2023-02-14,2012-03-10,571,1.2596850787303173,[],2021-01-09,24,"['AlexRiina@klaviyo', 'charlsagente', 'curtissiemens@zillow.com', 'danielbradburn@crunchr', 'duncan-webb', 'ntflc', 'shazow', 'smspillaz', 'ukinau', 'wolever@sheertex']",4,10,"['crunchr', 'klaviyo', 'sheertex', 'zillow.com']","['@crunchr ', '@klaviyo', 'Sheertex', 'Zillow.com']",,0.0,9,0,133,26,0,1,1,9.0,7.0,90.0,0.8,0,25.78955 +358,data,https://github.com/hyperqueryhq/whale,,,,hyperqueryhq/whale,whale,719,38,41,Python,https://rsyi.gitbook.io/whale,whale: 🐳 The stupidly simple CLI workspace for your data warehouse.,hyperqueryhq,2023-02-01,2020-05-27,143,5.027972027972028,"['data-documentation', 'data-catalog', 'data-discovery']",2022-10-13,17,"['bachng2017@nttcommunications', 'biomunky', 'cantzakas@vmware', 'dependabot[bot]', 'jhh3000@dataframehq', 'jwodder', 'manuelzander', 'peterthesling@shopify', 'rsyi@dataframe', 'yosupmoon@harvarduniversity']",6,10,"['dataframe', 'dataframehq', 'harvarduniversity', 'nttcommunications', 'shopify', 'vmware']","['@dataframehq', '@vmware', 'Dataframe', 'Harvard University', 'NTT Communications', 'Shopify']",,0.13,5,2,33,4,0,10,10,5.0,1.0,90.0,0.2,0,29.49195 +477,pandas,https://github.com/holoviz/hvplot,,,,holoviz/hvplot,hvplot,716,80,23,Python,https://hvplot.holoviz.org,"hvplot: A high-level plotting API for pandas, dask, xarray, and networkx built on HoloViews",holoviz,2023-02-21,2018-03-19,257,2.782898389783454,"['holoviz', 'holoviews', 'plotting', 'datashader']",2023-02-10,39,"['Hoxbro', 'MarcSkovMadsen@data,modelsandanalytics', 'MridulS', 'ahuang11@prefect!', 'ceball', 'jbednar@anaconda', 'jlstevens', 'jsignell@azavea', 'maximlt@anaconda', 'philippjfr@anaconda']",4,10,"['anaconda', 'azavea', 'data,modelsandanalytics', 'prefect!']","['@azavea', 'Anaconda', 'Anaconda Inc.', 'Anaconda, Inc.', 'Data, models and analytics', 'Prefect!']",,2.04,139,23,60,0,3,22,3,139.0,98.0,90.0,0.7,0,40.39827 +593,gis,https://github.com/matplotlib/basemap,,,,matplotlib/basemap,basemap,710,395,60,Python,,basemap: Plot on map projections (with coastlines and political boundaries) using matplotlib,matplotlib,2023-02-20,2011-02-19,626,1.1331509347925217,"['gis', 'maps', 'plots']",2022-11-29,69,"['DWesl', 'WeatherGod@atmosphericandenvironmentalresearch', 'efiring@universityofhawaii', 'guziy@eccc', 'j08lue@developmentseed', 'joferkington@planetlabs', 'jswhit', 'micahcochran', 'molinav@germanaerospacecenter(dlr)', 'ocefpaf']",6,10,"['atmosphericandenvironmentalresearch', 'developmentseed', 'eccc', 'germanaerospacecenter(dlr)', 'planetlabs', 'universityofhawaii']","['@planetlabs ', 'Atmospheric and Environmental Research, Inc.', 'Development Seed', 'ECCC', 'German Aerospace Center (DLR)', 'University of Hawaii']",,2.12,5,3,146,3,4,3,4,5.0,21.0,90.0,4.2,0,43.64817 +360,ml-ops,https://github.com/tensorflow/data-validation,,,,tensorflow/data-validation,data-validation,699,149,49,Python,,data-validation: Library for exploring and validating machine learning data,tensorflow,2023-02-21,2018-07-02,242,2.8850235849056602,[],2023-02-17,25,"['abdel91', 'brills', 'caveness', 'etiennedaspe', 'npoly', 'paulgc@google', 'santosh-d3vpl3x', 'terrytangyuan@akuity', 'tfx-copybara', 'zwestrick']",2,10,"['akuity', 'google']","['@akuity', '@google ']",,2.5,10,7,56,0,6,9,6,10.0,15.0,90.0,1.5,0,36.89527 +168,gis,https://github.com/openeventdata/mordecai,,,,openeventdata/mordecai,mordecai,693,93,36,Python,,mordecai: Full text geoparsing as a Python library,openeventdata,2023-02-05,2016-06-23,347,1.9921971252566735,"['geoparsing', 'geonames', 'nlp', 'geocoding', 'spacy', 'toponym-resolution']",2021-02-01,6,"['ahalterman@msupoliticalscience', 'arfon@github', 'chilland@maxar', 'johnb30', 'riordan@phillymedia']",4,10,"['github', 'maxar', 'msupoliticalscience', 'phillymedia']","['@github', '@phillymedia ', 'MSU Political Science', 'Maxar']",,0.0,3,0,81,25,0,1,1,3.0,4.0,90.0,1.3,0,21.8184 +818,ml,https://github.com/automl/tabpfn,,,,automl/tabpfn,TabPFN,692,49,16,Python,https://arxiv.org/abs/2207.01848,TabPFN: Official implementation of the TabPFN and the tabpfn package.,automl,2023-02-21,2022-07-01,33,20.52542372881356,[],2023-02-05,6,"['David-Schnurr', 'SamuelGabriel', 'eddiebergman@automl.org', 'frank-hutter@universityoffreiburg', 'noahho', 'tabpfn-anonym']",2,10,"['automl.org', 'universityoffreiburg']","['University of Freiburg ', 'automl.org']",,2.35,12,11,8,1,0,0,0,12.0,37.0,90.0,3.1,0,25.98879 +620,jupyter,https://github.com/nbqa-dev/nbqa,,,,nbqa-dev/nbqa,nbQA,692,35,7,Python,https://nbqa.readthedocs.io/en/latest/index.html,"nbQA: Run isort, pyupgrade, mypy, pylint, flake8, and more on Jupyter Notebooks",nbqa-dev,2023-02-17,2020-07-11,136,5.066945606694561,"['python', 'jupyter-notebook', 'pre-commit', 'codequality', 'lint', 'isort', 'black', 'flake8', 'doctest', 'pyupgrade', 'pylint', 'mypy', 'yapf', 'pre-commit-hook']",2023-02-20,23,"['MarcoGorelli@quansight', 'allcontributors[bot]', 'bdice@nvidia', 'caioariede@tesorio', 'girip11', 'janosh@cambridgeuniversity', 'neomatrix369@seniorsoftware,data,mlengnr(self-employed)', 'pre-commit-ci[bot]', 's-weigand', 'tovrstra@ghentuniversity']",6,10,"['cambridgeuniversity', 'ghentuniversity', 'nvidia', 'quansight', 'seniorsoftware,data,mlengnr(self-employed)', 'tesorio']","['@NVIDIA', '@Tesorio', 'Cambridge University', 'Ghent University', 'Quansight', 'Senior Software, Data, ML Engnr (Self-employed)']",,1.27,28,26,32,0,0,32,32,28.0,48.0,90.0,1.7,0,42.99862 +572,gis,https://github.com/developmentseed/landsat-util,,,,developmentseed/landsat-util,landsat-util,684,155,127,Python,,"landsat-util: A utility to search, download and process Landsat 8 satellite imagery",developmentseed,2023-02-17,2014-08-01,446,1.5311800447713464,[],2018-07-30,24,"['angevineMiller@ucsdschoolofmedicine', 'astrojuanlu@kedro-org', 'drewbo@cloud-gov(work)+personalprojects;', 'julesair@ledgy', 'kamicut@developmentseed', 'lpinner', 'matthewhanson@element84', 'mileswwatkins', 'njwilson23@fortyninemaps', 'scisco']",7,10,"['cloud-gov(work)+personalprojects;', 'developmentseed', 'element84', 'fortyninemaps', 'kedro-org', 'ledgy', 'ucsdschoolofmedicine']","['@Ledgy ', '@cloud-gov (work) + personal projects; ', '@developmentseed ', '@element84', '@fortyninemaps', '@kedro-org', 'UCSD School of Medicine']",,0.0,0,0,104,56,0,2,2,0.0,0.0,90.0,0.0,0,22.5539 +393,perf,https://github.com/klen/py-frameworks-bench,,,,klen/py-frameworks-bench,py-frameworks-bench,682,81,27,Python,https://klen.github.io/py-frameworks-bench/,py-frameworks-bench: Another benchmark for some python frameworks,klen,2023-01-21,2015-04-30,407,1.67215411558669,"['benchmark', 'python-frameworks']",2022-03-14,10,"['Kludex@encode', 'abersheeran@get-post-technology', 'alkorgun', 'dependabot[bot]', 'gi0baro', 'github-actions[bot]', 'hawkowl@redhat', 'iurisilvio@buser', 'klen@home']",5,10,"['buser', 'encode', 'get-post-technology', 'home', 'redhat']","['@encode', '@get-post-technology', 'Buser', 'Red Hat', 'home']",,0.12,16,9,95,11,0,3,3,16.0,9.0,90.0,0.6,0,28.72468 +882,time-series,https://github.com/winedarksea/autots,,,,winedarksea/autots,AutoTS,678,65,14,Python,,AutoTS: Automated Time Series Forecasting,winedarksea,2023-02-21,2019-11-26,169,4.008445945945946,"['time-series', 'machine-learning', 'automl', 'autots', 'forecasting', 'deep-learning', 'preprocessing', 'feature-engineering']",2023-02-02,1,['winedarksea'],0,10,[],[],,3.23,13,13,39,1,7,12,7,13.0,30.0,90.0,2.3,0,24.14228 +741,data,https://github.com/koaning/human-learn,,,,koaning/human-learn,human-learn,677,54,13,Jupyter Notebook,https://koaning.github.io/human-learn/,human-learn: Natural Intelligence is still a pretty good idea.,koaning,2023-02-21,2020-07-11,136,4.957112970711297,"['scikit-learn', 'machine-learning', 'benchmark']",2021-10-05,5,"['kayhoogland@floryn', 'koaning@explosion', 'nthomsencph@nttdatabusinesssolutions', 'ogabrielluiz', 'synapticarbors']",3,10,"['explosion', 'floryn', 'nttdatabusinesssolutions']","['@explosion', 'Floryn', 'NTT Data Business Solutions']",,0.0,2,0,32,17,0,0,0,2.0,10.0,90.0,5.0,0,21.59978 +483,gis,https://github.com/sentinel-hub/sentinelhub-py,,,,sentinel-hub/sentinelhub-py,sentinelhub-py,674,218,47,Python,http://sentinelhub-py.readthedocs.io/en/latest/,sentinelhub-py: Download and process satellite imagery in Python using Sentinel Hub services.,sentinel-hub,2023-02-17,2017-05-17,301,2.2392026578073088,"['python-library', 'sentinel-hub', 'aws', 'ogc-services', 'satellite-imagery']",2023-02-16,44,"['AleksMat@google', 'andrejburja', 'batic@sinergise', 'blazs', 'devisperessutti@sinergisesentinel-hub', 'iovsn', 'jgersak', 'mlubej@eoresearchteamsinergise', 'rmocnik@sinergise', 'zigaLuksic@sinergise']",4,10,"['eoresearchteamsinergise', 'google', 'sinergise', 'sinergisesentinel-hub']","['@Sinergise', '@sinergise ', '@sinergise @sentinel-hub ', 'EO Research Team @ Sinergise', 'Google', 'Sinergise']",,4.67,65,64,70,0,13,9,13,65.0,37.0,90.0,0.6,0,44.30491 +629,gis,https://github.com/makepath/xarray-spatial,,,,makepath/xarray-spatial,xarray-spatial,672,76,24,Python,https://xarray-spatial.org,xarray-spatial: Raster-based Spatial Analytics for Python,makepath,2023-02-20,2020-02-08,158,4.237837837837838,"['python', 'raster-analysis', 'spatial-analysis', 'numba', 'datashader', 'xarray']",2023-02-16,28,"['SapirLastimoza-Dooley@esri', 'a7az0th@software-supreme', 'brendancol@makepath', 'calexat-123', 'chase-dwelle', 'giancastro@makepath', 'ianthomas23@anaconda', 'kristinepetrosyan', 'marcozimmermannpm', 'thuydotm@makepath']",4,10,"['anaconda', 'esri', 'makepath', 'software-supreme']","['@makepath', '@makepath ', 'Anaconda, Inc.', 'Esri', 'Software-Supreme']",,1.02,107,41,37,0,3,12,3,107.0,40.0,90.0,0.4,0,37.0362 +164,nlp,https://github.com/explosion/spacy-stanza,,,,explosion/spacy-stanza,spacy-stanza,672,50,26,Python,,spacy-stanza: 💥 Use the latest Stanza (StanfordNLP) research models directly in spaCy,explosion,2023-02-18,2019-01-31,211,3.171948752528658,"['nlp', 'natural-language-processing', 'machine-learning', 'data-science', 'spacy', 'spacy-pipeline', 'stanford-nlp', 'stanford-corenlp', 'stanford-machine-learning', 'corenlp', 'stanza']",2022-05-27,7,"['BramVanroy@lt3kuleuven', 'SergeyShk@anna.money', 'adrianeboyd', 'buhrmann@graphext', 'honnibal@founderexplosion', 'ines@founderexplosion', 'yuhaozhang@stanforduniversity']",5,10,"['anna.money', 'founderexplosion', 'graphext', 'lt3kuleuven', 'stanforduniversity']","['@graphext ', '@lt3 @kuleuven', 'ANNA.MONEY', 'Founder @explosion ', 'Stanford University']",,0.06,4,1,49,9,1,4,1,4.0,5.0,90.0,1.2,0,24.75566 +938,web,https://github.com/koxudaxi/fastapi-code-generator,,,,koxudaxi/fastapi-code-generator,fastapi-code-generator,662,76,14,Python,,fastapi-code-generator: This code generator creates FastAPI app from an openapi file.,koxudaxi,2023-02-17,2020-06-14,140,4.714140386571719,"['fastapi', 'openapi', 'generator', 'python', 'pydantic']",2023-02-15,18,"['allen-munsch', 'baophamtd', 'david-westreicher', 'dependabot-preview[bot]', 'dependabot[bot]', 'ioggstream@teamdigitale', 'koxudaxi@tractabletractableai', 'n0nvme', 'rominf@aiven', 'ytoml']",3,10,"['aiven', 'teamdigitale', 'tractabletractableai']","['@teamdigitale', 'Aiven', 'Tractable @tractableai']",,0.65,33,22,33,0,4,14,4,33.0,42.0,90.0,1.3,0,35.44654 +475,viz,https://github.com/holoviz/holoviz,1.0,,,holoviz/holoviz,holoviz,659,116,35,Python,https://holoviz.org/,holoviz: High-level tools to simplify visualization in Python.,holoviz,2023-02-16,2017-09-22,282,2.330975240020212,"['holoviz', 'holoviews', 'geoviews', 'datashader', 'panel', 'hvplot', 'colorcet']",2023-01-30,21,"['Hoxbro', 'ceball', 'droumis', 'jbednar@anaconda', 'jlstevens', 'jsignell@azavea', 'kebowen730', 'maximlt@anaconda', 'philippjfr@anaconda', 'ppwadhwa']",2,10,"['anaconda', 'azavea']","['@azavea', 'Anaconda', 'Anaconda Inc.', 'Anaconda, Inc.']",,0.71,20,16,66,1,0,15,15,20.0,39.0,90.0,1.9,0,36.98259 +808,web,https://github.com/s3rius/fastapi-template,,,,s3rius/fastapi-template,FastAPI-template,659,69,12,Python,,FastAPI-template: Feature rich robust FastAPI template.,s3rius,2023-02-17,2020-10-05,124,5.302298850574712,"['fastapi', 'cookiecutter', 'cookiecutter-template', 'cookiecutter-python3', 'sqlalchemy-orm', 'asynchronous', 'ormar', 'tortoise-orm', 'aerich', 'alembic', 'python3', 'asyncio', 'graphql', 'strawberry-graphql', 'opentelemetry', 'prometheus', 'sentry', 'fastapi-template', 'fastapi-boilerplate']",2023-02-05,13,"['Bensebabillal', 'WP-LKL', 'am1ru1@infosec', 'anton-petrov', 'chandr-andr@iponweb', 'codeleta', 'gpkc@fyndiq', 'haluk@universityofnebraska-lincoln', 's3rius', 'sorasful']",4,10,"['fyndiq', 'infosec', 'iponweb', 'universityofnebraska-lincoln']","['@fyndiq', 'IPONWEB ', 'InfoSec', 'University of Nebraska-Lincoln']",,1.08,17,14,29,1,14,10,14,17.0,36.0,90.0,2.1,0,36.57759 +637,util,https://github.com/samuelcolvin/python-devtools,,,,samuelcolvin/python-devtools,python-devtools,654,33,8,Python,https://python-devtools.helpmanual.io/,python-devtools: Dev tools for python,samuelcolvin,2023-02-18,2017-08-20,287,2.275347912524851,"['python-devtools', 'python', 'devtools']",2023-02-06,11,"['0xsirsaif', 'AlwxSin@pik.pro', 'Cielquan', 'alexmojaki', 'aliereno', 'dependabot[bot]', 'pyup-bot@pyupio', 'samuelcolvin@pydantic', 'staticf0x', 'the-vty']",3,10,"['pik.pro', 'pydantic', 'pyupio']","['@pik.pro', '@pydantic', '@pyupio']",,0.31,12,5,67,0,2,3,2,12.0,23.0,90.0,1.9,0,33.9644 +344,data,https://github.com/scikit-hep/awkward-1.0,,,,scikit-hep/awkward-1.0,awkward,648,68,17,Python,https://awkward-array.org,awkward: Manipulate JSON-like data with NumPy-like idioms.,scikit-hep,2023-02-19,2019-08-14,184,3.5217391304347827,"['json', 'numpy', 'data-analysis', 'jagged-array', 'ragged-array', 'columnar-format', 'pandas', 'numba', 'apache-arrow', 'cern-root', 'scikit-hep', 'python']",2023-02-21,36,"['agoose77', 'allcontributors[bot]', 'dependabot[bot]', 'henryiii@princetonuniversity', 'ianna', 'ioanaif', 'jpivarski@princeton,iris-hep,pyhep,scikit-hep', 'pre-commit-ci[bot]', 'reikdas@purdueuniversity', 'swishdiff@microsoft']",4,10,"['microsoft', 'princeton,iris-hep,pyhep,scikit-hep', 'princetonuniversity', 'purdueuniversity']","['@microsoft', 'Princeton University', 'Princeton, IRIS-HEP, PyHEP, Scikit-HEP', 'Purdue University']",,11.38,374,324,43,0,45,62,45,374.0,809.0,90.0,2.2,0,50.34484 +849,util,https://github.com/fsspec/s3fs,,,,fsspec/s3fs,s3fs,644,216,22,Python,http://s3fs.readthedocs.io/en/latest/,s3fs: S3 Filesystem ,fsspec,2023-02-20,2016-03-16,362,1.7790055248618784,['hacktoberfest'],2023-02-13,113,"['TomAugspurger@microsoft', 'fhoering@criteo', 'gsakkis', 'isidentical@fal-ai', 'jrbourbeau@coiled', 'koverholt@google', 'mariusvniekerk@voltrondata', 'martindurant@anaconda', 'mrocklin@coiled', 'raybellwaves@dtn']",8,10,"['anaconda', 'coiled', 'criteo', 'dtn', 'fal-ai', 'google', 'microsoft', 'voltrondata']","['@coiled ', '@criteo ', '@fal-ai', '@microsoft', '@voltrondata', 'Anaconda, inc.', 'DTN', 'Google']",,0.87,46,26,84,0,0,8,8,46.0,124.0,90.0,2.7,0,50.23661 +235,nlp,https://github.com/salesforce/codet5,,,,salesforce/codet5,CodeT5,642,121,19,Python,https://arxiv.org/abs/2109.00859,Code for CodeT5: a new code-aware pre-trained encoder-decoder model.,salesforce,2023-02-20,2021-08-16,79,8.097297297297297,"['language-model', 'code-intelligence', 'programming-language', 'representation-learning', 'nlp']",2022-07-08,3,"['svc-scm', 'yuewang-cuhk@salesforceresearch']",1,10,['salesforceresearch'],['Salesforce Research'],,0.04,21,14,18,8,0,0,0,21.0,14.0,90.0,0.7,0,15.38681 +640,data,https://github.com/dask/fastparquet,,,,dask/fastparquet,fastparquet,639,164,18,Python,,fastparquet: python implementation of the parquet columnar file format.,dask,2023-02-17,2015-11-06,380,1.6784240150093808,['hacktoberfest'],2023-02-09,86,"['TomAugspurger@microsoft', 'dscottcs@steminc', 'indera', 'jaguarx', 'jcrobak@confluentinc', 'jonathanunderwood', 'martindurant@anaconda', 'mrocklin@coiled', 'pitrou', 'yohplala']",5,10,"['anaconda', 'coiled', 'confluentinc', 'microsoft', 'steminc']","['@coiled ', '@confluentinc ', '@microsoft', 'Anaconda, inc.', 'Stem Inc']",,1.08,37,36,89,0,0,6,6,37.0,82.0,90.0,2.2,0,46.82828 +760,study,https://github.com/jackhidary/quantumcomputingbook,,,,jackhidary/quantumcomputingbook,quantumcomputingbook,633,188,55,Jupyter Notebook,,quantumcomputingbook: Companion site for the textbook Quantum Computing: An Applied Approach,jackhidary,2023-02-20,2019-02-28,207,3.045360824742268,"['quantum', 'quantum-computing', 'cirq', 'qiskit', 'rigetti', 'quantum-processor', 'sycamore', 'quantum-supremacy', 'quantum-information', 'quantum-information-science', 'google-quantum']",2021-10-14,8,"['JackHidary', 'dlyongemallo@google', 'jaeyoo@google', 'joetricot', 'kikejimenez', 'rmlarose']",1,10,['google'],['Google'],,0.0,2,1,48,16,0,0,0,2.0,2.0,90.0,1.0,0,16.24614 +18,nlp,https://github.com/explosion/spacy-streamlit,,,,explosion/spacy-streamlit,spacy-streamlit,631,102,18,Python,https://share.streamlit.io/ines/spacy-streamlit-demo/master/app.py,spacy-streamlit: 👑 spaCy building blocks and visualizers for Streamlit apps,explosion,2023-02-20,2020-06-23,139,4.534907597535934,"['spacy', 'nlp', 'natural-language-processing', 'visualizers', 'dependency-parsing', 'part-of-speech-tagging', 'named-entity-recognition', 'ner', 'streamlit', 'visualizer', 'text-classification', 'word-vectors', 'tokenization', 'machine-learning']",2022-08-23,12,"['Jcharis@jcharistech', 'Jette16', 'adrianeboyd', 'callistachang', 'discdiver', 'ines@founderexplosion', 'narayanacharya6', 'pmbaumgartner@explosion', 'svlandeg@explosion&oxykodit', 'tvst@streamlit']",5,10,"['explosion', 'explosion&oxykodit', 'founderexplosion', 'jcharistech', 'streamlit']","['@explosion', 'Explosion & OxyKodit', 'Founder @explosion ', 'JCharisTech', 'Streamlit']",,0.25,2,0,32,6,2,4,2,2.0,2.0,90.0,1.0,0,25.72105 +839,util,https://github.com/idanya/algo-trader,,,,idanya/algo-trader,algo-trader,631,67,22,Python,,"algo-trader: Trading bot with support for realtime trading, backtesting, custom strategies and much more.",idanya,2023-02-20,2021-09-14,75,8.397338403041825,"['algorithmic-trading', 'backtesting', 'crypto-bot', 'python', 'technical-analysis', 'trading-bot', 'trading-strategies']",2023-01-20,4,"['ChrisAnstey', 'idanya@fireblocks', ""scottsdevelopment@scott'sdevelopment""]",2,10,"['fireblocks', ""scott'sdevelopment""]","['Fireblocks', ""Scott's Development""]",,0.6,13,11,18,1,5,3,5,13.0,16.0,90.0,1.2,0,26.2415 +397,web,https://github.com/klen/muffin,,,,klen/muffin,muffin,625,25,31,Python,,"Muffin is a fast, simple and asyncronous web-framework for Python 3",klen,2023-02-02,2015-02-03,420,1.4875892553553214,"['python', 'asyncio', 'trio', 'asgi', 'webframework', 'muffin', 'curio']",2023-02-21,13,"['DanielBacci@nubank', 'Krukov', 'MarSoft', 'abnerpc@loadsmart', 'dependabot[bot]', 'drgarcia1986', 'dveselov', 'ei-grad@faceapp', 'klen@home', 'msabramo@adobe']",5,10,"['adobe', 'faceapp', 'home', 'loadsmart', 'nubank']","['@adobe', '@loadsmart', 'FaceApp', 'Nubank', 'home']",,0.52,0,0,98,0,0,42,42,0.0,0.0,90.0,0.0,0,33.94907 +595,gis,https://github.com/uber/h3-py,,,,uber/h3-py,h3-py,625,116,36,Python,https://uber.github.io/h3-py,"h3-py: Python bindings for H3, a hierarchical hexagonal geospatial indexing system",uber,2023-02-16,2018-06-12,245,2.5495337995337994,"['uber', 'python', 'hexagonal-architecture', 'h3', 'geospatial', 'geocoding', 'gis']",2022-11-24,16,"['TengHu@softwareengineer,uber', 'ajfriend', 'dfellis@alantech', 'henryiii@princetonuniversity', 'isaacbrodsky@unfoldedinc', 'karentycoon', 'kylebarron', 'nastasi-oq@g.e.m.foundation', 'nrabinowitz', 'wwchen']",5,10,"['alantech', 'g.e.m.foundation', 'princetonuniversity', 'softwareengineer,uber', 'unfoldedinc']","['@UnfoldedInc ', '@alantech', 'G.E.M. Foundation', 'Princeton University', 'Software Engineer, Uber']",,0.46,21,8,57,3,4,4,4,21.0,32.0,90.0,1.5,0,34.23485 +690,util,https://github.com/pyfpdf/fpdf2,,,,pyfpdf/fpdf2,fpdf2,615,163,17,Python,https://pyfpdf.github.io/fpdf2/,fpdf2: Simple PDF generation for Python,pyfpdf,2023-02-21,2017-03-15,310,1.9838709677419355,"['pdf-generation', 'pdf', 'python', 'hacktoberfest', 'barcode', 'pdf-library', 'python3', 'library', 'svg', 'markdown']",2023-02-20,87,"['Lucas-C@sncfconnect&techvoyages-sncf-technologies', 'RedShy', 'RomanKharin', 'alexanderankin@lymaconsulting', 'allcontributors[bot]', 'andersonhc', 'eumiro', 'fbernhart', 'gmischler', 'reingart@onapsis']",3,10,"['lymaconsulting', 'onapsis', 'sncfconnect&techvoyages-sncf-technologies']","['@Onapsis', 'Lyma Consulting', 'SNCF Connect & Tech @voyages-sncf-technologies']",,6.06,109,81,72,0,9,6,9,109.0,257.0,90.0,2.4,0,48.61551 +680,util,https://github.com/lukasschwab/arxiv.py,,,,lukasschwab/arxiv.py,arxiv.py,608,81,16,Python,,arxiv.py: Python wrapper for the arXiv API,lukasschwab,2023-02-21,2015-11-25,378,1.6084656084656084,"['arxiv', 'arxiv-api', 'python-wrapper', 'pdf']",2023-02-01,14,"['Japoneris', 'Miguel-ASM@bbkbootcamp(code4jobs)', 'arkel23@nycupcs', 'jacquerie@aws', 'lukasschwab', 'mdamien', 'mhils', 'msoelch', 'natfarleydev', 'windisch']",3,10,"['aws', 'bbkbootcamp(code4jobs)', 'nycupcs']","['@aws', 'BBK Bootcamp (Code 4 Jobs)', 'NYCU PCS']",,0.15,8,8,88,1,1,3,1,8.0,4.0,90.0,0.5,0,29.82391 +796,graph,https://github.com/westhealth/pyvis,,,,westhealth/pyvis,pyvis,607,115,15,HTML,http://pyvis.readthedocs.io/en/latest/,pyvis: Python package for creating and visualizing interactive network graphs.,westhealth,2023-02-19,2018-05-10,249,2.429388221841052,"['network-visualization', 'python', 'networkx']",2023-02-10,32,"['BerserkerGaruk', 'Darkproduct', 'Nanoseb', 'WilsonHChung', 'aalok-sathe@mitbrain&cognitivesciences', 'boludo00', 'jhunpingco@westhealthinstitute', 'js-konda@westhealth', 'nocluebutalotofit', 'olive004@universityofoxford']",4,10,"['mitbrain&cognitivesciences', 'universityofoxford', 'westhealth', 'westhealthinstitute']","['@MIT Brain & Cognitive Sciences', 'University of Oxford', 'West Health Institute ', 'WestHealth']",,0.69,32,3,58,0,3,1,3,32.0,25.0,90.0,0.8,0,36.7923 +982,ml,https://github.com/googlecloudplatform/vertex-ai-samples,,,,googlecloudplatform/vertex-ai-samples,vertex-ai-samples,604,407,37,Jupyter Notebook,https://cloud.google.com/vertex-ai,"vertex-ai-samples: Sample code and notebooks for Vertex AI, the end-to-end machine learning platform on Google Cloud",googlecloudplatform,2023-02-20,2021-05-27,90,6.647798742138365,"['samples', 'gcp', 'google-cloud-platform', 'vertex-ai', 'notebook', 'python', 'ai', 'ml', 'data-science', 'mlops']",2023-02-18,98,"['andrewferlitsch', 'inardini@googlecloud', 'ivanmkc@google', 'krishr2d2@springml-code', 'kweinmeister@google', 'morgandu@google', 'renovate-bot@mend', 'soheilazangeneh@google', 'sudarshan-SpringML', 'udaypunna@springml']",5,10,"['google', 'googlecloud', 'mend', 'springml', 'springml-code']","['@google ', '@mend', '@springml-code ', 'Google', 'Google Cloud ', 'SpringML']",,23.08,279,235,21,0,0,0,0,275.0,473.0,90.0,1.7,0,46.36474 +831,typing,https://github.com/python-attrs/cattrs,,,,python-attrs/cattrs,cattrs,597,87,16,Python,,cattrs: Complex custom class converters for attrs.,python-attrs,2023-02-19,2016-08-28,338,1.7640354579991557,"['attrs', 'deserialization', 'serialization']",2023-02-05,45,"['MicaelJarniac@micaeljarniac', 'Tinche@pocketzworld', 'adetokunbo', 'bibajz', 'bluetech', 'dswistowski', 'jap', 'joeldodge79@looker', 'raabf@siemensag', 'toumorokoshi@google']",5,10,"['google', 'looker', 'micaeljarniac', 'pocketzworld', 'siemensag']","['@google', '@pocketzworld ', 'Looker', 'Micael Jarniac', 'Siemens AG']",,2.13,21,15,79,0,0,4,4,21.0,49.0,90.0,2.3,0,44.0484 +958,web,https://github.com/long2ice/fastapi-cache,,,,long2ice/fastapi-cache,fastapi-cache,596,88,9,Python,https://github.com/long2ice/fastapi-cache,"fastapi-cache is a tool to cache fastapi response and function result, with backends support redis and memcached.",long2ice,2023-02-21,2020-08-25,130,4.579582875960483,"['cache', 'fastapi', 'redis', 'memcached']",2023-02-15,24,"['DevLucca@redventures', 'Mrreadiness', 'cpbotha', 'dveleztx@tamusa-acm', 'geo-mathijs', 'hackjammer', 'long2ice', 'schmocker@axpogridag', 'squaresmile', 'vvanglro']",3,10,"['axpogridag', 'redventures', 'tamusa-acm']","['@RedVentures ', '@TAMUSA-ACM', 'Axpo Grid AG']",,1.02,30,21,30,0,3,4,3,30.0,50.0,90.0,1.7,0,36.51021 +505,gis,https://github.com/scikit-mobility/scikit-mobility,,,,scikit-mobility/scikit-mobility,scikit-mobility,593,137,28,Python,https://scikit-mobility.github.io/scikit-mobility/,scikit-mobility: mobility analysis in Python,scikit-mobility,2023-02-20,2019-04-30,199,2.9777618364418936,"['data-science', 'data-analysis', 'human-mobility', 'complex-systems', 'network-science', 'statistics', 'scikit-mobility', 'mobility-analysis', 'risk-assessment', 'mobility-flows', 'synthetic-flows']",2023-01-20,23,"['FilippoSimini@argonnenationallaboratory', 'GiulianoCornacchia', 'gbarlacchi', 'jonpappalord@isti-cnr', 'lcandeago', 'miccferr', 'michelegirolami@isti-cnr', 'pareyesv@barcelonasupercomputingcenter,bsc', 'pellungrobe', 'sebxwolf']",3,10,"['argonnenationallaboratory', 'barcelonasupercomputingcenter,bsc', 'isti-cnr']","['Argonne National Laboratory', 'Barcelona Supercomputing Center, BSC', 'ISTI-CNR']",,1.1,50,36,46,1,1,2,1,50.0,32.0,90.0,0.6,0,33.02958 +889,gis,https://github.com/osgeo/grass,,,,osgeo/grass,grass,590,218,43,C,https://grass.osgeo.org,GRASS GIS - free and open source Geographic Information System (GIS),osgeo,2023-02-21,2019-05-17,196,2.999273783587509,"['osgeo', 'grass-gis', 'geospatial', 'geospatial-analysis', 'raster', 'vector', 'timeseries-analysis', 'earth-observation', 'gis', 'hacktoberfest', 'open-science', 'remote-sensing', 'science', 'spatial']",2023-02-20,96,"['HamishB', 'HuidaeCho@newmexicostateuniversity', 'glynnc', 'huhabla', 'landam@czechtechnicaluniversityinprague', 'lucadelu@fondazioneedmundmach', 'metzm', 'neteler@mundialis', 'petrasovaa@ncsu', 'wenzeslaus@northcarolinastateuniversity']",6,10,"['czechtechnicaluniversityinprague', 'fondazioneedmundmach', 'mundialis', 'ncsu', 'newmexicostateuniversity', 'northcarolinastateuniversity']","['@mundialis ', 'Czech Technical University in Prague', 'Fondazione Edmund Mach', 'NCSU', 'New Mexico State University', 'North Carolina State University']",,7.02,416,196,46,0,12,36,12,416.0,628.0,90.0,1.5,0,51.45629 +117,nlp,https://github.com/iclrandd/blackstone,,,,iclrandd/blackstone,Blackstone,585,93,37,Python,https://research.iclr.co.uk,Blackstone: :black_circle: A spaCy pipeline and model for NLP on unstructured legal text.,iclrandd,2023-02-21,2019-03-25,204,2.8636363636363638,"['law', 'caselaw', 'nlp', 'spacy-models', 'legaltech']",2021-01-31,8,"['DeNeutoy', 'ICLRandD@theincorporatedcounciloflawreportingforenglandandwales', 'danielhoadley', 'hueyy', 'richardbatstone']",1,10,['theincorporatedcounciloflawreportingforenglandandwales'],['The Incorporated Council of Law Reporting for England and Wales'],,0.0,0,0,48,25,0,0,0,0.0,0.0,90.0,0.0,0,11.02523 +957,ml,https://github.com/facebookresearch/balance,,,,facebookresearch/balance,balance,584,27,5,Python,https://import-balance.org,balance: The balance python package offers a simple workflow and methods for dealing with biased data samples when looking to infer from them to some target population of interest.,facebookresearch,2023-02-21,2022-11-15,14,41.292929292929294,[],2023-02-19,11,"['SarigT', 'antonk52', 'facebook-github-bot@facebook', 'jknoxville@facebook', 'talgalili@telavivuniversity', 'zbraiterman']",2,10,"['facebook', 'telavivuniversity']","['@facebook', 'Facebook', 'Tel Aviv University']",,1.88,22,18,3,0,5,20,5,22.0,89.0,90.0,4.0,0,31.68279 +752,diffusion,https://github.com/sharonzhou/long_stable_diffusion,,,,sharonzhou/long_stable_diffusion,long_stable_diffusion,583,48,14,Python,,"long_stable_diffusion: Long-form text-to-images generation, using a pipeline of deep generative models (GPT-3 and Stable Diffusion)",sharonzhou,2023-02-19,2022-09-04,24,23.86549707602339,[],2022-10-30,2,"['andreykurenkov@stanford', 'sharonzhou']",1,10,['stanford'],['Stanford'],,0.44,0,0,6,4,0,0,0,0.0,0.0,90.0,0.0,0,7.88204 +671,ml,https://github.com/apple/ml-ane-transformers,,,,apple/ml-ane-transformers,ml-ane-transformers,581,30,33,Python,,ml-ane-transformers: Reference implementation of the Transformer architecture optimized for Apple Neural Engine (ANE),apple,2023-02-20,2022-06-03,37,15.405303030303031,[],2022-08-09,1,['atiorh'],0,10,[],[],,0.1,0,0,9,7,3,4,3,0.0,0.0,90.0,0.0,0,5.09876 +167,nlp,https://github.com/lexpredict/lexpredict-lexnlp,,,,lexpredict/lexpredict-lexnlp,lexpredict-lexnlp,581,157,50,HTML,,lexpredict-lexnlp: LexNLP by LexPredict,lexpredict,2023-02-21,2017-09-30,281,2.063419583967529,"['nlp', 'ml', 'legal', 'legaltech', 'linguistics', 'law', 'contracts', 'analytics', 'data']",2022-08-10,8,"['AndreyCorelli', 'kpmarsh', 'mjbommar', 'mviktorov', 'pchestek', 'reddalexx', 'warrenagin']",0,10,[],[],,0.06,5,1,66,6,0,0,0,5.0,4.0,90.0,0.8,0,15.92043 +906,data,https://github.com/googleapis/python-bigquery,,,,googleapis/python-bigquery,python-bigquery,568,229,57,Python,,googleapis/python-bigquery,googleapis,2023-02-18,2019-12-10,167,3.398290598290598,[],2023-02-16,122,"['HemangChothani', 'alixhami', 'dhermes@co-founderhardfinhq', 'gcf-owl-bot[bot]', 'jba@google', 'plamut@independentcontractor', 'release-please[bot]', 'renovate-bot@mend', 'tseaver@agendalessconsulting', 'tswast@google']",5,10,"['agendalessconsulting', 'co-founderhardfinhq', 'google', 'independentcontractor', 'mend']","['@mend', 'Agendaless Consulting, Inc.', 'Co-founder @hardfinhq', 'Google', 'Independent contractor']",,3.52,132,75,39,0,21,38,21,132.0,132.0,90.0,1.0,0,48.52903 +160,nlp,https://github.com/nipunsadvilkar/pysbd,,,,nipunsadvilkar/pysbd,pySBD,567,65,10,Python,,pySBD: 🐍💯pySBD (Python Sentence Boundary Disambiguation) is a rule-based sentence boundary detection that works out-of-the-box.,nipunsadvilkar,2023-02-17,2017-06-11,297,1.9063400576368876,"['sentence-boundary-detection', 'python', 'segmentation', 'rule-based', 'sentence-tokenizer', 'sentence']",2021-02-11,6,"['matthen', 'misotrnka@gerulatatechnologies', 'nipunsadvilkar@explosion', 'spate141']",2,10,"['explosion', 'gerulatatechnologies']","['@explosion', 'Gerulata Technologies']",,0.0,3,1,69,25,0,3,3,3.0,3.0,90.0,1.0,0,20.04679 +567,sim,https://github.com/gboeing/pynamical,,,,gboeing/pynamical,pynamical,566,109,31,Python,https://geoffboeing.com/publications/nonlinear-chaos-fractals-prediction/,"Pynamical is a Python package for modeling and visualizing discrete nonlinear dynamical systems, chaos, and fractals.",gboeing,2023-02-20,2014-09-28,438,1.290974258716194,"['chaos', 'nonlinear', 'fractal', 'logistic', 'visualization', 'modeling', 'animation', 'math', 'physics', 'python', 'pandas', 'numba', 'numpy', 'matplotlib', 'ipynb', 'bifurcation-diagram', 'fractals', 'systems', 'phase-diagram', 'cobweb-plot']",2022-05-24,1,['gboeing@universityofsoutherncalifornia'],1,10,['universityofsoutherncalifornia'],['University of Southern California'],,0.13,0,0,102,9,0,1,1,0.0,0.0,90.0,0.0,0,12.48188 +306,crypto,https://github.com/palkeo/panoramix,,,,palkeo/panoramix,panoramix,559,154,31,Python,,panoramix: Ethereum decompiler,palkeo,2023-02-21,2020-02-17,157,3.5540417801998183,[],2020-08-22,4,"['cleanunicorn@ethereum', 'kolinko@eveem.org']",2,10,"['ethereum', 'eveem.org']","['Ethereum', 'Eveem.org']",,0.0,7,1,37,30,0,1,1,7.0,4.0,90.0,0.6,0,15.4819 +259,crypto,https://github.com/pmaji/crypto-whale-watching-app,,,,pmaji/crypto-whale-watching-app,crypto-whale-watching-app,555,134,48,Python,,crypto-whale-watching-app: Python Dash app that tracks whale activity in cryptocurrency markets.,pmaji,2023-02-08,2018-01-23,265,2.0932112068965516,"['gdax', 'python', 'cryptocurrency', 'ethereum', 'litecoin', 'bitcoin', 'cryptocurrency-exchanges', 'python3', 'dash', 'ethereum-blockchain', 'bitcoin-api', 'bitcoin-price', 'cryptocurrency-price-ticker', 'cryptocurrency-prices', 'litecoin-price', 'ethereum-price', 'gdax-api', 'gdax-python', 'plotly', 'plotly-dash']",2022-12-08,8,"['CrackLord', 'dependabot[bot]', 'mifunetoshiro', 'pmaji@capitalone', 'stainedhat', 'theimo1221']",1,10,['capitalone'],['Capital One'],,0.06,2,2,62,2,0,0,0,2.0,0.0,90.0,0.0,0,18.55593 +576,util,https://github.com/fsspec/filesystem_spec,,,,fsspec/filesystem_spec,filesystem_spec,548,236,22,Python,,filesystem_spec: A specification that python filesystems should adhere to.,fsspec,2023-02-21,2018-04-23,252,2.172140430351076,[],2023-02-17,170,"['TomAugspurger@microsoft', 'asford@abcellerabiologics', 'efiop@iterative', 'ianthomas23@anaconda', 'isidentical@fal-ai', 'juliospain', 'martindurant@anaconda', 'rjzamora@nvidia', 'sodre@zeroae', 'xyb']",7,10,"['abcellerabiologics', 'anaconda', 'fal-ai', 'iterative', 'microsoft', 'nvidia', 'zeroae']","['@NVIDIA', '@fal-ai', '@iterative', '@microsoft', 'AbCellera Biologics', 'Anaconda, Inc.', 'Anaconda, inc.', 'ZeroAE LLC']",,2.88,98,67,59,0,0,14,14,98.0,199.0,90.0,2.0,0,52.34155 +685,ml,https://github.com/nvidia/cuda-python,,,,nvidia/cuda-python,cuda-python,543,42,22,Python,https://nvidia.github.io/cuda-python/,cuda-python: CUDA Python Low-level Bindings,nvidia,2023-02-21,2021-06-28,86,6.293046357615894,[],2022-12-09,2,"['mmccarty@nvidia', 'vzhurba01']",1,10,['nvidia'],['NVIDIA'],,0.19,12,9,20,2,6,5,6,12.0,24.0,90.0,2.0,0,23.00183 +883,time-series,https://github.com/autoviml/auto_ts,,,,autoviml/auto_ts,Auto_TS,540,95,17,Jupyter Notebook,,"Auto_TS: Automatically build ARIMA, SARIMAX, VAR, FB Prophet and XGBoost Models on Time Series data sets with a Single Line of Code. Now updated with Dask to handle millions of rows.",autoviml,2023-02-21,2020-02-15,157,3.42701722574796,"['time-series', 'time-series-analysis', 'auto-timeseries', 'automl', 'autosklearn', 'tpot', 'autokeras', 'python3', 'prophet', 'python', 'sklearn', 'arima', 'auto-arima', 'auto-sklearn']",2022-08-16,6,"['AutoViML', 'JimmyBroomfield', 'Kevin-Chen0', 'ngupta23@o9solutions', 'rsesha']",1,10,['o9solutions'],['o9 Solutions Inc.'],,0.12,3,2,37,6,0,1,1,3.0,4.0,90.0,1.3,0,19.60673 +625,gis,https://github.com/scitools/iris,,,,scitools/iris,iris,536,264,45,Python,https://scitools-iris.readthedocs.io/en/latest/,"iris: A powerful, format-agnostic, and community-driven Python package for analysing and visualising Earth science data",scitools,2023-02-16,2012-08-06,550,0.9740394600207685,"['iris', 'python', 'netcdf', 'grib', 'visualisation', 'data-analysis', 'earth-science', 'meteorology', 'oceanography', 'spaceweather']",2023-02-20,100,"['DPeterK@informatics-lab', 'QuLogic', 'ajdawson', 'bblay', 'bjlittle@metoffice', 'esc24', 'lbdreyer', 'pelson', 'pp-mo@metoffice', 'rhattersley@metoffice']",2,10,"['informatics-lab', 'metoffice']","['@MetOffice ', '@informatics-lab ', 'Met Office', 'MetOffice']",,5.58,174,98,128,0,8,7,8,174.0,237.0,90.0,1.4,0,47.48923 +874,util,https://github.com/ipython/ipykernel,,,,ipython/ipykernel,ipykernel,535,336,34,Python,https://ipython.readthedocs.io/en/stable/,ipykernel: IPython Kernel for Jupyter,ipython,2023-02-20,2015-04-09,410,1.3021557719054242,"['ipython', 'ipython-kernel', 'jupyter', 'python', 'closember', 'jupyter-notebook', 'kernel']",2023-02-16,165,"['Carreau@quansight-labs', 'SylvainCorlay@quantstack', 'blink1073@mongodb', 'echarles@datalayer', 'ellisonbg@amazonwebservices', 'fperez@universityofcalifornia,berkeley.', 'github-actions[bot]', 'minrk@simularesearchlaboratory', 'pre-commit-ci[bot]', 'takluyver']",7,10,"['amazonwebservices', 'datalayer', 'mongodb', 'quansight-labs', 'quantstack', 'simularesearchlaboratory', 'universityofcalifornia,berkeley.']","['@Datalayer', '@Quansight-Labs', 'Amazon Web Services', 'MongoDB', 'QuantStack', 'Simula Research Laboratory', 'University of California, Berkeley.']",,4.37,92,61,96,0,32,14,32,92.0,225.0,90.0,2.4,0,55.46458 +516,ml-dl,https://github.com/kakaobrain/rq-vae-transformer,,,,kakaobrain/rq-vae-transformer,rq-vae-transformer,535,61,15,Jupyter Notebook,,rq-vae-transformer: The official implementation of Autoregressive Image Generation using Residual Quantization (CVPR '22),kakaobrain,2023-02-21,2022-03-03,50,10.519662921348315,[],2022-08-18,1,['LeeDoYup@kakaobrain'],1,10,['kakaobrain'],['Kakao Brain'],,0.08,2,1,12,6,0,0,0,2.0,2.0,90.0,1.0,0,11.14385 +525,gis,https://github.com/toblerity/rtree,,,,toblerity/rtree,rtree,527,123,30,Python,https://rtree.readthedocs.io/en/latest/,Rtree: spatial index for Python GIS ¶,toblerity,2023-02-21,2011-06-19,609,0.8647444913267698,[],2023-01-23,39,"['EwoutH', 'KennethAdamMiller', 'adamjstewart@universityofillinoisaturbana-champaign', 'brentp@universityofutah', 'dependabot[bot]', 'dokai@facebook', 'hobu@hobu', 'mwtoews@gnsscience', 'sgillies@planetlabs', 'sr-murthy']",6,10,"['facebook', 'gnsscience', 'hobu', 'planetlabs', 'universityofillinoisaturbana-champaign', 'universityofutah']","['@planetlabs', 'Facebook', 'GNS Science', 'Hobu, Inc.', 'University of Illinois at Urbana-Champaign', 'University of Utah']",,0.35,6,5,142,1,2,1,2,6.0,4.0,90.0,0.7,0,37.10679 +589,ml-ops,https://github.com/kedro-org/kedro-viz,,,,kedro-org/kedro-viz,kedro-viz,522,87,11,JavaScript,https://demo.kedro.org/,kedro-viz: Visualise your Kedro data and machine-learning pipelines and track your experiments. ,kedro-org,2023-02-20,2019-05-09,197,2.6382671480144406,"['kedro', 'kedro-plugin', 'data-visualization', 'hacktoberfest', 'react', 'experiment-tracking', 'python']",2023-02-21,38,"['921kiyo', 'AntonyMilneQB', 'bru5', 'dependabot[bot]', 'limdauto', 'rashidakanchwala', 'richardwestenra@medshr', 'snyk-bot@snyk', 'studioswong', 'tynandebold@kedro-org,quantumblacklabs']",3,10,"['kedro-org,quantumblacklabs', 'medshr', 'snyk']","['@Snyk', '@kedro-org, @quantumblacklabs', 'MedShr']",,4.06,136,98,46,0,13,14,13,136.0,141.0,90.0,1.0,0,43.35078 +665,study,https://github.com/rasbt/stat453-deep-learning-ss20,,,,rasbt/stat453-deep-learning-ss20,stat453-deep-learning-ss20,521,154,36,Jupyter Notebook,http://pages.stat.wisc.edu/~sraschka/teaching/stat453-ss2020/,stat453-deep-learning-ss20: STAT 453: Intro to Deep Learning @ UW-Madison (Spring 2020),rasbt,2023-02-15,2020-01-20,161,3.2302922940655447,[],2020-05-01,1,"['rasbt@lightning-ai,universityofwisconsin-madison']",1,10,"['lightning-ai,universityofwisconsin-madison']","['@Lightning-AI , University of Wisconsin-Madison']",,0.0,0,0,38,34,0,0,0,0.0,0.0,90.0,0.0,0,5.58105 +359,ml-ops,https://github.com/google/ml-metadata,,,,google/ml-metadata,ml-metadata,519,118,29,C++,https://www.tensorflow.org/tfx/guide/mlmd,ml-metadata: For recording and retrieving metadata associated with ML developer and data scientist workflows.,google,2023-02-19,2019-01-15,214,2.4236157438292194,[],2023-02-18,15,"['BrianSong', 'CandiedCode', 'StefanoFioravanzo@arrikto', 'atn832', 'daikeshi@spotify', 'hughmiao', 'mzinkevi', 'npoly', 'yupbank@shopify', 'zijianjoy']",3,10,"['arrikto', 'shopify', 'spotify']","['@Shopify ', 'Arrikto', 'Spotify']",,0.56,6,3,50,0,6,8,6,6.0,8.0,90.0,1.3,0,34.17193 +413,util,https://github.com/bastibe/python-soundfile,,,,bastibe/python-soundfile,python-soundfile,518,87,17,Python,,"python-soundfile: SoundFile is an audio library based on libsndfile, CFFI, and NumPy",bastibe,2023-02-15,2013-08-27,495,1.0461627236006925,[],2023-02-15,29,"['Jajcus', 'bastibe', 'davidblewett', 'gesellkammer', 'jonashaag@quantco', 'mgeier', 'peircej@universityofnottingham', 'tgarc@self', 'tillahoffmann@harvardt.h.chanschoolofpublichealth', 'upsuper@canva']",5,10,"['canva', 'harvardt.h.chanschoolofpublichealth', 'quantco', 'self', 'universityofnottingham']","['@Canva ', '@Quantco', 'Harvard T.H. Chan School of Public Health', 'University of Nottingham', 'self']",,0.48,20,14,116,0,7,3,7,20.0,73.0,90.0,3.6,0,44.69617 +797,ml-interpretability,https://github.com/selfexplainml/piml-toolbox,,,,selfexplainml/piml-toolbox,PiML-Toolbox,513,61,14,Jupyter Notebook,https://selfexplainml.github.io/PiML-Toolbox,PiML-Toolbox: PiML (Python Interpretable Machine Learning) toolbox for model development and model validation,selfexplainml,2023-02-21,2022-04-29,42,12.010033444816054,"['interpretable-machine-learning', 'low-code', 'ml-workflow', 'model-diagnostics']",2023-02-09,6,"['CnBDM-Su@cityuniversityofhongkong', 'Eveyz', 'ZebinYang', 'ajzhanghk', 'parulnith@h2oai', 'simoncos']",2,10,"['cityuniversityofhongkong', 'h2oai']","['@h2oai', 'City University of HongKong']",,4.29,9,8,10,0,15,19,15,9.0,27.0,90.0,3.0,0,33.42323 +673,perf,https://github.com/brandtbucher/specialist,,,,brandtbucher/specialist,specialist,511,9,10,Python,,"specialist: Visualize CPython 3.11's specializing, adaptive interpreter. :fire:",brandtbucher,2023-02-21,2022-06-01,38,13.447368421052632,[],2022-12-15,2,"['brandtbucher@microsoft', 'cclauss@christianclauss']",2,10,"['christianclauss', 'microsoft']","['@microsoft', 'Christian Clauss']",,1.0,2,0,9,2,10,14,10,2.0,6.0,90.0,3.0,0,23.47966 +47,data,https://github.com/macbre/sql-metadata,1.0,,,macbre/sql-metadata,sql-metadata,506,86,15,Python,https://pypi.python.org/pypi/sql-metadata,sql-metadata: Uses tokenized query returned by python-sqlparse and generates query metadata,macbre,2023-02-21,2017-06-06,298,1.6971729755630092,"['sql', 'parser', 'database', 'sql-parser', 'metadata', 'sqlparse', 'python-package', 'python3-library', 'hiveql', 'hive', 'mysql-query']",2023-02-16,13,"['Governa', 'Jedi18', 'aborecki', 'christopherpickering@atlas-bi', 'collerek@kaizentech', 'dependabot[bot]', 'dylanhogg@infocruncher', 'glentakahashi', 'macbre@automattic', 'vakhmenin']",4,10,"['atlas-bi', 'automattic', 'infocruncher', 'kaizentech']","['@atlas-bi', '@automattic', 'Infocruncher', 'KaizenTech']",,0.92,22,8,70,0,3,5,3,22.0,10.0,90.0,0.5,0,34.63214 +794,gis,https://github.com/kvos/coastsat,,,,kvos/coastsat,CoastSat,501,205,23,Jupyter Notebook,http://coastsat.wrl.unsw.edu.au/,CoastSat: Global shoreline mapping tool from satellite imagery,kvos,2023-02-18,2018-09-28,229,2.1809701492537314,"['google-earth-engine', 'earth-engine', 'remote-sensing', 'satellite-images', 'coastal-engineering', 'shoreline-detection']",2023-02-16,14,"['2320sharon@sacramentostate', 'KristenSplinter@unswsydney', 'SBFRF@usaceerdc-fieldresearchfacility', 'borgstad', 'chrisleaman@waterresearchlaboratory(unsw)', 'hcastrol', 'ianlturner', 'kant', 'kvos@waterresearchlaboratory']",5,10,"['sacramentostate', 'unswsydney', 'usaceerdc-fieldresearchfacility', 'waterresearchlaboratory', 'waterresearchlaboratory(unsw)']","['Sacramento State', 'UNSW Sydney', 'USACE ERDC - Field Research Facility ', 'Water Research Laboratory', 'Water Research Laboratory (UNSW)']",,1.44,26,20,54,0,4,3,4,26.0,46.0,90.0,1.8,0,39.24157 +216,ml-ops,https://github.com/nccr-itmo/fedot,,,,nccr-itmo/fedot,FEDOT,497,68,10,Python,https://fedot.readthedocs.io,FEDOT: Automated modeling and machine learning framework FEDOT,nccr-itmo,2023-02-20,2020-01-13,162,3.0625,"['automl', 'machine-learning', 'evolutionary-algorithms', 'genetic-programming', 'structural-learning', 'automated-machine-learning', 'hyperparameter-optimization', 'parameter-tuning', 'automation', 'multimodality', 'fedot']",2023-02-21,27,"['BarabanovaIrina', 'Dreamlone@wiredhut', 'J3FALL', 'MorrisNein', 'YamLyubov', 'YanaPolonskaya@mail.rugroup', 'gkirgizov@itmo-nss-team', 'maypink@itmo-nss-team', 'nicl-nno@itmouniversity', 'valer1435']",4,10,"['itmo-nss-team', 'itmouniversity', 'mail.rugroup', 'wiredhut']","['@ITMO-NSS-team', 'ITMO University', 'Mail.Ru Group', 'Wiredhut']",,4.81,101,74,38,0,3,4,3,101.0,99.0,90.0,1.0,0,40.67645 +241,ml,https://github.com/microsoft/focal-transformer,,,,microsoft/focal-transformer,Focal-Transformer,492,58,17,Python,,"Focal-Transformer: [NeurIPS 2021 Spotlight] Official code for ""Focal Self-attention for Local-Global Interactions in Vision Transformers""",microsoft,2023-02-06,2021-07-10,84,5.8175675675675675,[],2022-03-27,2,['jwyang@microsoft'],1,10,['microsoft'],['Microsoft'],,0.04,0,0,20,11,0,0,0,0.0,0.0,90.0,0.0,0,7.87529 +582,gis,https://github.com/developmentseed/titiler,,,,developmentseed/titiler,titiler,479,103,18,Python,https://developmentseed.org/titiler/,titiler: Build your own Raster dynamic map tile services,developmentseed,2023-02-20,2019-06-28,190,2.5116104868913856,"['fastapi', 'cog', 'aws-cdk', 'aws-lambda', 'stac', 'cogeotiff', 'mosaicjson', 'raster', 'dynamic', 'server', 'rest', 'gdal', 'rasterio', 'tile', 'map-tile-server', 'map-tiles']",2023-02-14,32,"['FischerLGLN@lgln-landesamtfürgeoinformationundlandesvermessungniedersachsen', 'RichardScottOZ@ozminerals', 'abarciauskas-bgse@developmentseed', 'drnextgis@satellogic', 'emmanuelmathot@terradue', 'fredliporace@amskepler', 'geospatial-jeff@regrowag', 'kylebarron', 'samn@upstream-tech', 'vincentsarago@developmentseed']",8,10,"['amskepler', 'developmentseed', 'lgln-landesamtfürgeoinformationundlandesvermessungniedersachsen', 'ozminerals', 'regrowag', 'satellogic', 'terradue', 'upstream-tech']","['@Terradue', '@Upstream-Tech ', '@developmentseed ', '@regrowag', '@satellogic', 'AMS Kepler', 'Development Seed', 'LGLN - Landesamt für Geoinformation und Landesvermessung Niedersachsen', 'OZ Minerals']",,2.0,36,30,44,0,0,14,14,36.0,36.0,90.0,1.0,0,44.28822 +487,gis,https://github.com/fatiando/verde,,,,fatiando/verde,verde,473,59,21,Python,https://www.fatiando.org/verde,verde: Processing and interpolating spatial data with a twist of machine learning,fatiando,2023-02-17,2018-04-25,252,1.876984126984127,"['geophysics', 'earth-science', 'geospatial', 'python', 'scipy', 'interpolation', 'python3', 'scipy-stack', 'fatiando-a-terra', 'geoscience']",2022-12-09,13,"['Esteban82@institutodegeocienciasbásicas,aplicadasyambientalesdebuenosaires-igeba(universityofbuenosaires-conicet)', 'Goto15', 'JamesSample@nivanorge', 'arfon@github', 'dcslagel@codefarm', 'djhoese@spacescienceandengineeringcenter(ssec)', 'fatiando-bot@fatiando', 'jessepisel', 'leouieda@universityofliverpool', 'santisoler@fatiandoubcgifcompgeolabgeolatinas']",8,10,"['codefarm', 'fatiando', 'fatiandoubcgifcompgeolabgeolatinas', 'github', 'institutodegeocienciasbásicas,aplicadasyambientalesdebuenosaires-igeba(universityofbuenosaires-conicet)', 'nivanorge', 'spacescienceandengineeringcenter(ssec)', 'universityofliverpool']","['@NIVANorge', '@fatiando', '@fatiando @ubcgif @compgeolab @GeoLatinas', '@github', 'Code Farm LLC', 'Instituto de Geociencias Básicas, Aplicadas y Ambientales de Buenos Aires - IGEBA (University of Buenos Aires-CONICET)', 'Space Science and Engineering Center (@ssec)', 'University of Liverpool']",,0.54,6,3,59,2,1,3,1,6.0,5.0,90.0,0.8,0,32.18733 +211,time-series,https://github.com/firmai/atspy,,,,firmai/atspy,atspy,471,88,20,Python,https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3580631,AtsPy: Automated Time Series Models in Python (by @firmai),firmai,2023-02-07,2020-01-28,160,2.9411239964317573,"['time-series', 'time-series-analysis', 'automated', 'python', 'forecasting', 'forecasting-models', 'finance']",2021-12-18,5,"['0xflotus', 'Finance-781', 'dependabot[bot]', 'fatihbaltaci@ddosify', 'firmai@alanturinginstitute,firmai']",2,10,"['alanturinginstitute,firmai', 'ddosify']","['@ddosify', 'Alan Turing Institute, FirmAI']",,0.0,1,0,37,14,0,0,0,1.0,0.0,90.0,0.0,0,13.09882 +329,ml-dl,https://github.com/facebookresearch/ppuda,,,,facebookresearch/ppuda,ppuda,466,60,19,Python,,ppuda: Code for Parameter Prediction for Unseen Deep Architectures (NeurIPS 2021),facebookresearch,2023-02-17,2021-10-21,69,6.670756646216769,[],2022-07-26,3,"['GeraldCSC', 'bknyaz@samsung-saitailab,montreal', 'michaldrozdzal']",1,10,"['samsung-saitailab,montreal']","['Samsung - SAIT AI Lab, Montreal']",,0.19,0,0,16,7,0,0,0,0.0,0.0,90.0,0.0,0,9.37574 +914,ml,https://github.com/cvxgrp/pymde,,,,cvxgrp/pymde,pymde,465,26,9,Python,https://pymde.org,pymde: Minimum-distortion embedding with PyTorch,cvxgrp,2023-02-19,2020-11-29,116,3.9938650306748467,"['embedding', 'visualization', 'feature-vectors', 'machine-learning', 'dimensionality-reduction', 'graph-embedding', 'pytorch', 'cuda', 'gpu']",2022-11-20,10,"['BastianZim@arche-finanz', 'adamgayoso@ucberkeley', 'adswa@psychoinformatics-de', 'akshayka@cvxgrpcvxpy', 'angeris', 'frederikschubert@leibnizuniversitäthannover', 'kashif', 'kruus@neclabsamerica', 'rajarshi', 'theresekoch@utsouthwesternmedicalcenter']",7,10,"['arche-finanz', 'cvxgrpcvxpy', 'leibnizuniversitäthannover', 'neclabsamerica', 'psychoinformatics-de', 'ucberkeley', 'utsouthwesternmedicalcenter']","[' @psychoinformatics-de', '@arche-finanz', '@cvxgrp @cvxpy', 'Leibniz Universität Hannover', 'NEC Labs America', 'UC Berkeley', 'UT Southwestern Medical Center']",,0.25,4,1,27,3,3,9,3,4.0,10.0,90.0,2.5,0,31.36028 +497,ml-dl,https://github.com/mcahny/deep-video-inpainting,,,,mcahny/deep-video-inpainting,Deep-Video-Inpainting,463,87,14,Python,,"Deep-Video-Inpainting: Official pytorch implementation for ""Deep Video Inpainting"" (CVPR 2019)",mcahny,2023-02-19,2019-05-22,196,2.3622448979591835,[],2020-12-10,3,"['SeokjuLee@kentech', 'mcahny']",1,10,['kentech'],['KENTECH'],,0.0,2,0,46,27,0,0,0,2.0,0.0,90.0,0.0,0,9.25973 +872,pandas,https://github.com/eventual-inc/daft,,,,eventual-inc/daft,Daft,463,17,6,Python,,Daft: The Python DataFrame for Complex Data,eventual-inc,2023-02-21,2022-04-25,43,10.696369636963697,"['image-processing', 'machine-learning', 'python', 'data-engineering', 'data-science', 'dataframe', 'deep-learning', 'distributed-computing']",2023-02-21,6,"['Asrst@dataamazon', 'dependabot[bot]', 'jaychia@lyft', 'jeevb@freenome', 'samster25@eventual-inc', 'xcharleslin']",4,10,"['dataamazon', 'eventual-inc', 'freenome', 'lyft']","['@Eventual-Inc ', '@lyft', 'Data @ Amazon', 'Freenome']",,11.98,266,227,10,0,0,28,28,265.0,139.0,90.0,0.5,0,38.73064 +437,pandas,https://github.com/polyaxon/datatile,,,,polyaxon/datatile,traceml,460,40,13,Python,,"traceml: Engine for ML/Data tracking, visualization, explainability, drift detection, and dashboards for Polyaxon.",polyaxon,2023-02-11,2016-03-25,360,1.2752475247524753,"['pandas', 'pandas-summary', 'dataframes', 'data-science', 'spark', 'dask', 'plotly', 'statistics', 'matplotlib', 'data-profiling', 'data-visualization', 'data-exploration', 'dataops', 'mlops', 'data-quality', 'data-quality-checks', 'explainable-ai', 'pytorch', 'tensorflow', 'tracking']",2023-02-14,98,"['DXist', 'dependabot[bot]', 'gzcf', 'javidgon', 'lgeiger@plumerailarq', 'mmourafiq', 'polyaxon-ci', 'polyaxon-team', 'vfdev-5@quansight', 'wbuchwalter@microsoftresearch']",3,10,"['microsoftresearch', 'plumerailarq', 'quansight']","['@Quansight', '@plumerai @larq ', 'Microsoft Research']",,1.98,0,0,84,0,0,1,1,0.0,0.0,90.0,0.0,0,33.49053 +479,gis,https://github.com/holoviz/geoviews,,,,holoviz/geoviews,geoviews,458,68,28,Python,http://geoviews.org,"geoviews: Simple, concise geographical visualization in Python",holoviz,2023-02-14,2016-04-19,357,1.2824,"['holoviz', 'geoviews', 'holoviews', 'geographic-visualizations', 'cartopy', 'plotting']",2023-01-17,28,"['Hoxbro', 'ahuang11@prefect!', 'bjlittle@metoffice', 'ceball', 'jbednar@anaconda', 'jlstevens', 'jsignell@azavea', 'marqh', 'maximlt@anaconda', 'philippjfr@anaconda']",4,10,"['anaconda', 'azavea', 'metoffice', 'prefect!']","['@azavea', 'Anaconda', 'Anaconda Inc.', 'Anaconda, Inc.', 'Met Office', 'Prefect!']",,0.73,82,19,83,1,2,10,2,82.0,23.0,90.0,0.3,0,35.49567 +375,viz,https://github.com/vhranger/nodevectors,,,,vhranger/nodevectors,nodevectors,453,53,11,Python,,nodevectors: Fastest network node embeddings in the west,vhranger,2023-02-19,2019-07-25,186,2.4243119266055047,[],2021-11-06,6,"['VHRanger', 'cthoyt@harvardmedicalschool', 'kannankumar@sap', 'ldorigo']",2,10,"['harvardmedicalschool', 'sap']","['Harvard Medical School', 'SAP']",,0.0,5,2,44,16,0,3,3,5.0,4.0,90.0,0.8,0,20.1182 +742,nlp,https://github.com/koaning/whatlies,,,,koaning/whatlies,whatlies,451,50,13,Python,https://koaning.github.io/whatlies/,"whatlies: Toolkit to help understand ""what lies"" in word embeddings. Also benchmarking! ",koaning,2023-02-11,2020-02-22,156,2.8804744525547443,"['nlp', 'embeddings', 'visualisations']",2023-02-06,13,"['Arsilla@kpmgnetherlands', 'Ayushsunny@inviiiwardrobedoor', 'Raghibshams456', 'RensDimmendaal', 'itsabdelrahman@trivago', 'koaning@explosion', 'louisguitton@motain', 'mkaze', 'timvink', 'tttthomasssss@zalandose']",6,10,"['explosion', 'inviiiwardrobedoor', 'kpmgnetherlands', 'motain', 'trivago', 'zalandose']","['@INVIII @wardrobedoor', '@explosion', '@motain ', 'KPMG Netherlands', 'Zalando SE', 'trivago']",,0.12,1,1,36,0,1,9,1,1.0,2.0,90.0,2.0,0,32.74481 +837,gis,https://github.com/perrygeo/python-rasterstats,,,,perrygeo/python-rasterstats,python-rasterstats,444,109,33,Python,,python-rasterstats: Summary statistics of geospatial raster datasets based on vector geometries.,perrygeo,2023-02-13,2013-09-18,492,0.9024390243902439,[],2023-02-16,30,"['Zeitsperre@ouranos', 'brendancol@makepath', 'drnextgis@satellogic', 'hawkaa@duneanalytics', 'mwtoews@gnsscience', 'ozak@southernmethodistuniversity', 'perrygeo', 'sdtaylor', 'sgoodm@aiddata', 'theroggy']",7,10,"['aiddata', 'duneanalytics', 'gnsscience', 'makepath', 'ouranos', 'satellogic', 'southernmethodistuniversity']","['@aiddata', '@duneanalytics', '@makepath ', '@satellogic', 'GNS Science', 'Ouranos', 'Southern Methodist University']",,0.38,29,21,115,0,2,2,2,29.0,32.0,90.0,1.1,0,41.49109 +573,gis,https://github.com/developmentseed/label-maker,,,,developmentseed/label-maker,label-maker,443,112,52,Python,http://devseed.com/label-maker/,label-maker: Data Preparation for Satellite Machine Learning,developmentseed,2023-01-20,2018-01-10,267,1.6591760299625469,"['satellite-imagery', 'data-preparation', 'deep-learning', 'computer-vision', 'remote-sensing', 'keras']",2020-11-19,15,"['Geoyi@regrow', 'PallawiSinghal@heretechnologies', 'achyutjoshi', 'drewbo@cloud-gov(work)+personalprojects;', 'giswqs@universityoftennessee', 'jreiberkyle@planetlabs', 'martham93@developmentseed', 'palacima', 'vincentsarago@developmentseed', 'wronk']",6,10,"['cloud-gov(work)+personalprojects;', 'developmentseed', 'heretechnologies', 'planetlabs', 'regrow', 'universityoftennessee']","['@cloud-gov (work) + personal projects; ', '@developmentseed ', '@planetlabs ', 'Development Seed', 'Here Technologies ', 'Regrow', 'University of Tennessee']",,0.0,0,0,62,27,0,3,3,0.0,0.0,90.0,0.0,0,21.67001 +844,perf,https://github.com/joblib/loky,,,,joblib/loky,loky,442,43,10,Python,http://loky.readthedocs.io/en/stable/,loky: Robust and reusable Executor for joblib,joblib,2023-02-21,2015-12-25,373,1.1827217125382263,"['multiprocessing-library', 'python']",2023-02-17,17,"['aabadie@inria', 'albertcthomas', 'basnijholt@microsoft', 'glemaitre@scikit-learninriafoundation', 'haim0n@private', 'jeremiedbb', 'ogrisel@inria', 'pierreglaser@ucl', 'rth', 'tomMoral@inriasaclay-parietalteam']",6,10,"['inria', 'inriasaclay-parietalteam', 'microsoft', 'private', 'scikit-learninriafoundation', 'ucl']","['@Microsoft', 'INRIA Saclay - Parietal team', 'Inria', 'Private', 'Scikit-learn @ Inria foundation', 'UCL']",,0.35,15,9,87,0,0,5,5,15.0,24.0,90.0,1.6,0,39.78378 +913,util,https://github.com/methexis-inc/terminal-copilot,,,,methexis-inc/terminal-copilot,terminal-copilot,439,23,6,Python,,terminal-copilot: A smart terminal assistant that helps you find the right command.,methexis-inc,2023-02-21,2022-12-11,10,42.0958904109589,[],2023-01-25,8,"['2mawi2', 'EdwardTheLegend', 'JoelKronander', 'cedarbaum', 'instance-id@instance.id', 'kafischer@stanforduniversity', 'rebelzion', 'rmax@paige.ai']",3,10,"['instance.id', 'paige.ai', 'stanforduniversity']","['Paige.AI', 'Stanford University', 'instance.id']",,1.42,39,25,2,1,1,6,1,39.0,71.0,90.0,1.8,0,25.77479 +292,util,https://github.com/fastai/ghapi,,,,fastai/ghapi,ghapi,437,45,8,Jupyter Notebook,https://ghapi.fast.ai/,ghapi: A delightful and complete interface to GitHub's amazing API,fastai,2023-02-17,2020-11-21,117,3.7168894289185905,"['github-api', 'github', 'nbdev', 'openapi', 'api-client']",2022-09-27,16,"['danpalmer@google', 'dependabot[bot]', 'hamelsmu@github', 'hwine', 'jph00@fastai', 'jrieke@streamlit', 'lfdebrux@alphagov', 'mszhanyi@microsoft', 'muellerzr@huggingface', 'rshk']",7,10,"['alphagov', 'fastai', 'github', 'google', 'huggingface', 'microsoft', 'streamlit']","['@Google', '@HuggingFace', '@alphagov', '@fastai ', '@github ', '@streamlit', 'Microsoft']",,1.08,2,0,27,5,6,9,6,2.0,3.0,90.0,1.5,0,31.1749 +863,ml-ops,https://github.com/astronomer/astronomer,,,,astronomer/astronomer,astronomer,437,80,44,Python,https://www.astronomer.io,"astronomer: Helm Charts for the Astronomer Platform, Apache Airflow as a Service on Kubernetes",astronomer,2023-02-15,2018-01-15,266,1.6410944206008584,"['apache-airflow', 'kubernetes', 'docker', 'astronomer-platform']",2023-02-20,71,"['andriisoldatenko', 'andscoop', 'bote795', 'cwurtz', 'danielhoherd@astronomer', 'jpweber@astronomer(formerlyheptiovmware)', 'pgvishnuram@astronomer', 'schnie@astronomer', 'sjmiller609@coredb', 'tedmiston@mandolin-dev']",4,10,"['astronomer', 'astronomer(formerlyheptiovmware)', 'coredb', 'mandolin-dev']","['@astronomer', '@astronomer ', '@astronomer (formerly @heptio @vmware)', '@mandolin-dev', 'Astronomer', 'CoreDB']",,8.94,77,74,62,0,28,68,28,77.0,55.0,90.0,0.7,0,47.90965 +188,math,https://github.com/dit/dit,,,,dit/dit,dit,429,78,24,Python,http://docs.dit.io,dit: Python package for information theory.,dit,2023-02-21,2013-09-29,490,0.8747451208855229,"['python', 'information-theory']",2022-07-25,20,"['Autoplectic', 'Ejjaffe', 'agrif', 'artemyk', 'chebee7i', 'feeds@phdstudentepfl', 'marcharper@google', 'robince', 'stsievert', 'volpatto@esss']",3,10,"['esss', 'google', 'phdstudentepfl']","['@ESSS', 'Google', 'PhD student @ EPFL']",,0.19,1,0,114,7,1,3,1,1.0,3.0,90.0,3.0,0,29.64526 +481,sim,https://github.com/udst/urbansim,,,,udst/urbansim,urbansim,423,125,78,Python,https://udst.github.io/urbansim/,urbansim: Platform for building statistical models of cities and regions,udst,2023-02-17,2013-08-15,496,0.8513513513513513,[],2020-05-11,20,"['Eh2406@amazon', 'bridwell', 'daradib@applemontechnologies', 'fscottfoti@populus-aimapcraftlabsoaklandanalytics', 'gonzalobenegas', 'janowicz', 'jiffyclub@populus-ai', 'pksohn@google', 'smmaurer@urbansim', 'waddell']",6,10,"['amazon', 'applemontechnologies', 'google', 'populus-ai', 'populus-aimapcraftlabsoaklandanalytics', 'urbansim']","['@Amazon ', '@populus-ai ', '@populus-ai @mapcraftlabs @oaklandanalytics ', 'Applemon Technologies', 'Google', 'UrbanSim Inc.']",,0.0,1,0,116,34,0,1,1,1.0,0.0,90.0,0.0,0,22.63401 +486,gis,https://github.com/earthlab/earthpy,,,,earthlab/earthpy,earthpy,421,151,21,Python,https://earthpy.readthedocs.io,earthpy: A package built to support working with spatial data using open source python,earthlab,2023-02-16,2018-02-20,261,1.6121444201312911,"['spatial-data', 'raster', 'vector', 'python', 'education']",2021-12-20,43,"['PowerChell@radiantearth', 'annaspiers', 'arfon@github', 'betatim@nvidia', 'mbjoseph@silviaterra', 'mgraber@nycplanning', 'nkorinek', 'pyup-bot@pyupio', 'sgillies@planetlabs', 'windnage@nationalsnowandicedatacenteratcu,boulder']",8,10,"['github', 'nationalsnowandicedatacenteratcu,boulder', 'nvidia', 'nycplanning', 'planetlabs', 'pyupio', 'radiantearth', 'silviaterra']","['@NYCPlanning', '@SilviaTerra', '@github', '@planetlabs', '@pyupio', '@radiantearth ', 'National Snow and Ice Data Center at CU, Boulder', 'Nvidia ']",,0.0,57,49,61,14,0,7,7,58.0,100.0,90.0,1.7,0,38.14719 +472,nlp,https://github.com/google-research/byt5,,,,google-research/byt5,byt5,413,25,11,Python,,google-research/byt5,google-research,2023-02-15,2021-05-26,91,4.538461538461538,[],2022-03-02,2,"['lintingxue', 'nconstant-google']",0,10,[],[],,0.02,0,0,21,12,0,0,0,0.0,0.0,90.0,0.0,0,4.35923 +705,ml-ops,https://github.com/bodywork-ml/bodywork-core,,,,bodywork-ml/bodywork-core,bodywork-core,413,18,9,Python,https://bodywork.readthedocs.io/en/latest/,"bodywork-core: ML pipeline orchestration and model deployments on Kubernetes, made really easy.",bodywork-ml,2023-02-01,2020-11-17,118,3.4957678355501813,"['mlops', 'python', 'kubernetes', 'data-science', 'machine-learning', 'pipeline', 'serving', 'continuous-deployment', 'batch', 'devops', 'framework', 'cicd', 'orchestration']",2022-07-04,4,"['AlexIoannides@bodywork-mllloydsbankinggroup', 'Marios85@bodyworkmachinelearning']",2,10,"['bodywork-mllloydsbankinggroup', 'bodyworkmachinelearning']","['@bodywork-ml @lloydsbankinggroup', 'Bodywork Machine Learning']",,2.35,0,0,28,8,0,26,26,0.0,0.0,90.0,0.0,0,20.64757 +786,util,https://github.com/gefyrahq/gefyra,,,,gefyrahq/gefyra,gefyra,410,23,7,Python,https://gefyra.dev,"gefyra: Blazingly-fast :rocket:, rock-solid, local application development :arrow_right: with Kubernetes.",gefyrahq,2023-02-20,2021-11-18,65,6.225596529284165,"['kubernetes', 'development', 'developer-tool', 'containers', 'coding', 'tunnel', 'docker', 'k8s']",2023-02-20,13,"['LittleFox94@anexia,anexia-it', 'Schille@blueshoe', 'SteinRobert@blueshoe', 'buschNT', 'cappuc', 'dependabot[bot]', 'georgkrause', 'kianmeng', 'tschale@blueshoeunikubehq', 'vvvityaaa']",3,10,"['anexia,anexia-it', 'blueshoe', 'blueshoeunikubehq']","['@Blueshoe ', '@Blueshoe @unikubehq ', '@anexia, @anexia-it', 'Blueshoe']",,7.23,80,68,15,0,41,42,41,80.0,139.0,90.0,1.7,0,40.53883 +275,crypto,https://github.com/ethtx/ethtx,,,,ethtx/ethtx,ethtx,406,62,16,Python,https://www.ethtx.info,ethtx: Python package with core transaction decoding functions.,ethtx,2023-02-19,2021-06-28,86,4.7052980132450335,[],2022-12-01,6,"['dudzicz@tokenflowinsights', 'kchojn@py-world', 'piotr-rudnik', 'rmaganza@tokenflowinsights', 'tmierzwa@tokenflowinsights', 'wolololol']",2,10,"['py-world', 'tokenflowinsights']","['@TokenFlowInsights ', 'Py-World', 'Token Flow Insights']",,1.08,12,11,20,3,12,22,12,12.0,10.0,90.0,0.8,0,26.64022 +722,perf,https://github.com/noxdafox/pebble,,,,noxdafox/pebble,pebble,405,46,10,Python,,pebble: Multi threading and processing eye-candy.,noxdafox,2023-02-15,2013-10-16,488,0.8299180327868853,"['threading', 'multiprocessing', 'python', 'pool', 'decorators', 'asyncio']",2022-11-15,14,"['Gistbatch@technicaluniversityofmunich', 'alanjds', 'ampolloreno@universityofcoloradoboulder', 'art049@codspeedhq', 'cbrnr@universityofgraz', 'marxin', 'noxdafox@getcujo', 'sam-harding', 'villind', 'wimglenn']",5,10,"['codspeedhq', 'getcujo', 'technicaluniversityofmunich', 'universityofcoloradoboulder', 'universityofgraz']","['@CodSpeedHQ ', '@getCUJO', 'Technical University of Munich', 'University of Colorado Boulder', 'University of Graz']",,0.98,2,1,114,3,4,2,4,2.0,1.0,90.0,0.5,0,31.50469 +803,util,https://github.com/open-telemetry/opentelemetry-python-contrib,,,,open-telemetry/opentelemetry-python-contrib,opentelemetry-python-contrib,404,314,15,Python,https://opentelemetry.io,opentelemetry-python-contrib: OpenTelemetry instrumentation for Python modules,open-telemetry,2023-02-20,2019-11-08,171,2.3527454242928454,[],2023-02-20,182,"['NathanielRN', 'codeboten@lightstep', 'lzchen@microsoftcorporation', 'mariojonke', 'mauriciovasquezbernal@microsoft(kinvolk)', 'nemoshlag@epsagon', 'ocelotl', 'ofek@datadog', 'owais@splunk', 'srikanthccv@signoz.io']",7,10,"['datadog', 'epsagon', 'lightstep', 'microsoft(kinvolk)', 'microsoftcorporation', 'signoz.io', 'splunk']","['@datadog', '@microsoft (@kinvolk)', '@splunk', 'Epsagon', 'Lightstep', 'Microsoft Corporation', 'signoz.io']",,6.08,300,171,40,0,10,11,10,299.0,363.0,90.0,1.2,0,52.15824 +254,ml,https://github.com/amzn/pecos,,,,amzn/pecos,pecos,401,87,21,Python,https://libpecos.org/,PECOS - Prediction for Enormous and Correlated Spaces,amzn,2023-02-20,2020-08-12,132,3.037878787878788,"['machine-learning-algorithms', 'extreme-multi-label-classification', 'extreme-multi-label-ranking', 'transformers', 'approximate-nearest-neighbor-search']",2023-02-17,25,"['OctoberChang@amazon', 'Patrick-H-Chen', 'bhl00@sfhacksdubhacks', 'dependabot[bot]', 'hallogameboy@amazonsearchandai', 'jiong-zhang', 'nishant4995', 'rofuyu', 'weiliw-amz', 'yaushian']",3,10,"['amazon', 'amazonsearchandai', 'sfhacksdubhacks']","['@sfhacks @dubhacks', 'Amazon', 'Amazon Search and AI']",,1.12,44,42,31,0,2,2,2,44.0,21.0,90.0,0.5,0,34.49137 +577,jupyter,https://github.com/computationalmodelling/nbval,,,,computationalmodelling/nbval,nbval,395,51,10,Python,,nbval: A py.test plugin to validate Jupyter notebooks,computationalmodelling,2023-02-01,2015-04-09,410,0.9614047287899861,"['ipython-notebook', 'jupyter-notebook', 'python', 'testing', 'pytest-plugin', 'pytest']",2023-01-11,33,"['bsipocz@caltech/ipac', 'ceball', 'fangohr@mpsd&universityofsouthampton', 'gliptak', 'kanderso-nrel@nationalrenewableenergylaboratory', 'maxalbert', 'minrk@simularesearchlaboratory', 'takluyver', 'vidartf', 'wence-']",4,10,"['caltech/ipac', 'mpsd&universityofsouthampton', 'nationalrenewableenergylaboratory', 'simularesearchlaboratory']","['Caltech/IPAC', 'MPSD & University of Southampton', 'National Renewable Energy Laboratory', 'Simula Research Laboratory']",,0.25,9,7,96,1,0,2,2,9.0,10.0,90.0,1.1,0,35.67526 +841,util,https://github.com/carlospuenteg/file-injector,,,,carlospuenteg/file-injector,File-Injector,395,19,7,Python,,File-Injector: File Injector is a script that allows you to store any file in an image using steganography,carlospuenteg,2023-02-15,2022-10-22,17,22.479674796747968,"['image', 'image-manipulation', 'image-processing', 'noise', 'numpy', 'photography', 'python', 'python3', 'file', 'files', 'extraction', 'injection', 'storage', 'steganography', 'file-injection', 'file-injector']",2022-11-18,1,['carlospuenteg'],0,10,[],[],,0.77,1,0,4,3,13,40,13,1.0,1.0,90.0,1.0,0,11.56456 +528,nlp,https://github.com/hazyresearch/fonduer,,,,hazyresearch/fonduer,fonduer,390,79,27,Python,https://fonduer.readthedocs.io/,fonduer: A knowledge base construction engine for richly formatted data,hazyresearch,2023-01-27,2018-02-02,263,1.4788732394366197,"['multimodality', 'machine-learning', 'knowledge-base-construction']",2021-06-23,14,"['HiromuHota@https://snorkel.ai/', 'KenSugimoto@hitachiamerica,ltd.', 'YasushiMiyata', 'annelhote@mesr', 'bhancock8@snorkel-ai', 'j-rausch', 'lukehsiao@numbersstationai', 'payalbajaj', 'senwu', 'wajdikhattel@think-it-labs']",6,10,"['hitachiamerica,ltd.', 'https://snorkel.ai/', 'mesr', 'numbersstationai', 'snorkel-ai', 'think-it-labs']","['@NumbersStationAI ', '@Think-iT-Labs', '@snorkel-ai ', 'Hitachi America, Ltd.', 'MESR', 'https://snorkel.ai/']",,0.0,0,0,62,20,0,6,6,0.0,0.0,90.0,0.0,0,23.19624 +185,math,https://github.com/willianfuks/tfcausalimpact,,,,willianfuks/tfcausalimpact,tfcausalimpact,389,53,10,Python,,tfcausalimpact: Python Causal Impact Implementation Based on Google's R Package. Built using TensorFlow Probability.,willianfuks,2023-02-16,2020-08-17,131,2.9630032644178455,"['causalimpact', 'tensorflow-probability', 'python', 'causal-inference']",2022-12-20,3,"['WillianFuks', 'glentakahashi', 'kjappelbaum@epfl']",1,10,['epfl'],['EPFL'],,0.21,6,5,31,2,8,6,8,6.0,15.0,90.0,2.5,0,25.18055 +561,gis,https://github.com/geopandas/contextily,,,,geopandas/contextily,contextily,386,67,14,Jupyter Notebook,https://contextily.readthedocs.io/en/latest/,contextily: Context geo-tiles in Python,geopandas,2023-02-20,2016-09-08,336,1.1458863443596268,"['tiles', 'stamen', 'openstreetmap', 'python', 'tile', 'mapping', 'webtiles', 'geography', 'cartography', 'matplotlib', 'osm', 'stamen-maps']",2023-02-06,20,"['EwoutH', 'choldgraf@ucberkeley', 'darribas', 'dependabot[bot]', 'hugovk@nordsoftware', 'jGaboardi@ornl', 'jorisvandenbossche', 'ljwolf@geogbristol', 'martinfleis', 'ocefpaf']",4,10,"['geogbristol', 'nordsoftware', 'ornl', 'ucberkeley']","['@geogbristol ', 'Nord Software', 'ORNL', 'UC Berkeley']",,0.15,14,11,79,0,1,1,1,14.0,12.0,90.0,0.9,0,34.84159 +929,util,https://github.com/heuer/segno,,,,heuer/segno,segno,385,42,11,Python,https://pypi.org/project/segno/,segno: Python QR Code and Micro QR Code encoder,heuer,2023-02-19,2016-08-04,341,1.1262014208106979,"['qrcode', 'barcode', 'micro-qrcode', 'matrix-barcode', 'qr-code', 'segno', 'python', 'qr-generator', 'iso-18004', 'structured-append', 'python-qrcode', 'micro-qr-code']",2022-12-10,9,"['DerBiasto', 'barbashovtd', 'bitcoinhodler', 'christian-oudard', 'eduardomazolini@intera', 'heuer', 'jayaddison', 'neycyanshi', 'stefanoborini@astrazenecauk']",2,10,"['astrazenecauk', 'intera']","['AstraZeneca UK', 'Intera']",,0.81,3,1,80,2,1,7,1,3.0,4.0,90.0,1.3,0,27.05394 +12,nlp,https://github.com/dialogflow/dialogflow-python-client-v2,,,,dialogflow/dialogflow-python-client-v2,python-dialogflow,385,145,53,Python,https://dialogflow.com/,python-dialogflow: Python client for Dialogflow: Design and integrate a conversational user interface into your applications and devices.,dialogflow,2023-02-05,2017-10-24,278,1.384180790960452,"['python', 'machine-learning', 'dialogflow']",2023-02-16,34,"['busunkim96@googleapis', 'crwilcox@googlecloud', 'dandhlee@googlecloudplatform', 'galz10@google', 'gcf-owl-bot[bot]', 'lukesneeringer@highsignalsystems', 'parthea@google', 'release-please[bot]', 'renovate-bot@mend', 'yoshi-automation@googleapis']",6,10,"['google', 'googleapis', 'googlecloud', 'googlecloudplatform', 'highsignalsystems', 'mend']","['@GoogleCloudPlatform', '@googleapis', '@mend', 'Google', 'Google ', 'Google Cloud', 'High Signal Systems']",,2.12,29,28,65,0,15,9,15,29.0,31.0,90.0,1.1,0,44.35539 +496,ml,https://github.com/linkedin/fasttreeshap,,,,linkedin/fasttreeshap,FastTreeSHAP,384,23,7,Python,,FastTreeSHAP: Fast SHAP value computation for interpreting tree-based models,linkedin,2023-02-20,2022-01-24,56,6.822335025380711,"['explainable-ai', 'interpretability', 'lightgbm', 'machine-learning', 'random-forest', 'shap', 'xgboost']",2022-11-29,3,['jlyang1990@linkedincorporation'],1,10,['linkedincorporation'],['LinkedIn Corporation'],,0.15,6,3,13,3,2,3,2,6.0,15.0,90.0,2.5,0,20.11946 +331,ml,https://github.com/jacopotagliabue/reclist,,,,jacopotagliabue/reclist,reclist,384,21,9,Python,,"reclist: Behavioral ""black-box"" testing for recommender systems",jacopotagliabue,2023-02-17,2021-11-08,67,5.707006369426751,"['recommender-system', 'machine-learning', 'qa-automation']",2023-01-26,7,"['briankosw', 'jacopotagliabue', 'nsbits', 'patrickjohncyh', 'vinid@stanforduniversity']",1,10,['stanforduniversity'],['Stanford University'],,0.65,11,3,16,1,0,5,5,11.0,4.0,90.0,0.4,0,22.54706 +492,gis,https://github.com/cogeotiff/rio-tiler,,,,cogeotiff/rio-tiler,rio-tiler,379,88,66,Python,https://cogeotiff.github.io/rio-tiler/,rio-tiler: User friendly Rasterio plugin to read raster datasets.,cogeotiff,2023-02-10,2017-10-06,280,1.3501272264631043,"['satellite', 'cog', 'cogeotiff', 'maptile', 'raster-processing', 'mercator', 'tile', 'slippy-map', 'gdal', 'rasterio', 'raster']",2023-02-15,21,"['DanSchoppe', 'benjaminleighton@csiro', 'chrieke@up42', 'emmanuelmathot@terradue', 'fredliporace@amskepler', 'kant', 'kylebarron', 'samsammurphy@ecmwf', 'sgillies@planetlabs', 'vincentsarago@developmentseed']",7,10,"['amskepler', 'csiro', 'developmentseed', 'ecmwf', 'planetlabs', 'terradue', 'up42']","['@Terradue', '@developmentseed ', '@planetlabs', '@up42', 'AMS Kepler', 'CSIRO', 'ECMWF']",,1.13,19,16,65,0,0,23,23,19.0,6.0,90.0,0.3,0,41.11773 +747,study,https://github.com/bayesianmodelingandcomputationinpython/bookcode_edition1,,,,bayesianmodelingandcomputationinpython/bookcode_edition1,BookCode_Edition1,378,93,17,Jupyter Notebook,https://www.bayesiancomputationbook.com,bayesianmodelingandcomputationinpython/bookcode_edition1,bayesianmodelingandcomputationinpython,2023-02-18,2021-08-17,79,4.776173285198556,[],2023-01-09,10,"['OriolAbril', 'aloctavodia@imasl-conicet', 'canyon289', 'dependabot[bot]', 'erocarrera', 'ikarosilva@philips', 'jmshea@universityofflorida', 'junpenglao@google', 'paw-lu']",4,10,"['google', 'imasl-conicet', 'philips', 'universityofflorida']","['@google ', 'IMASL-CONICET', 'Philips', 'University of Florida']",,0.52,8,3,18,1,0,0,0,8.0,6.0,90.0,0.8,0,25.72526 +756,ml-dl,https://github.com/samuela/git-re-basin,,,,samuela/git-re-basin,git-re-basin,372,32,5,Python,https://arxiv.org/abs/2209.04836,"git-re-basin: Code release for ""Git Re-Basin: Merging Models modulo Permutation Symmetries""",samuela,2023-02-20,2022-09-13,23,16.074074074074073,"['deep-learning', 'deeplearning', 'jax', 'machine-learning', 'neural-networks']",2023-01-09,1,['samuela'],0,10,[],[],,0.46,5,1,5,1,0,0,0,5.0,10.0,90.0,2.0,0,11.6321 +335,ml,https://github.com/mrdbourke/m1-machine-learning-test,,,,mrdbourke/m1-machine-learning-test,m1-machine-learning-test,371,120,12,Jupyter Notebook,,m1-machine-learning-test: Code for testing various M1 Chip benchmarks with TensorFlow.,mrdbourke,2023-02-21,2021-11-14,66,5.58494623655914,"['tensorflow', 'tensorflow-macos', 'metal', 'machine-learning']",2022-07-16,2,"['KittyBorgX', 'mrdbourke']",0,10,[],[],,0.06,0,0,15,7,0,0,0,0.0,0.0,90.0,0.0,0,4.83454 +49,util,https://github.com/mozillazg/pypy,,,,mozillazg/pypy,pypy,367,59,11,Python,https://foss.heptapod.net/pypy/pypy,pypy: The unofficial GitHub mirror of PyPy,mozillazg,2023-02-14,2015-08-03,394,0.9307971014492754,"['pypy', 'github-mirror', 'unofficial', 'unofficial-mirror', 'read-only-repository', 'readonly']",2023-02-14,374,"['alex', 'amauryfa', 'antocuni', 'bdkearns', 'cfbolz', 'fijal@pypy,baroquesoftware', 'mattip@quansightlabs', 'mwhudson@canonicalltd', 'pedronis', 'rlamy']",3,10,"['canonicalltd', 'pypy,baroquesoftware', 'quansightlabs']","['@CanonicalLtd', 'PyPy, baroquesoftware', 'Quansight Labs']",,11.08,1,0,92,0,0,22,22,1.0,0.0,90.0,0.0,0,44.61147 +560,gis,https://github.com/corteva/rioxarray,,,,corteva/rioxarray,rioxarray,364,61,14,Python,https://corteva.github.io/rioxarray,rioxarray: geospatial xarray extension powered by rasterio,corteva,2023-02-21,2019-04-16,201,1.8096590909090908,"['gis', 'rasterio', 'xarray', 'geospatial', 'python', 'gdal', 'raster', 'netcdf', 'hacktoberfest']",2023-02-07,29,"['RichardScottOZ@ozminerals', 'alexamici@bopen', 'cheginit@universityofhouston', 'davidbrochart@quantstack', 'mraspaud@smhi', 'mwtoews@gnsscience', 'raybellwaves@dtn', 'remi-braun@icube-sertit', 'scottyhq@universityofwashington,uwescience', 'snowman2@corteva']",10,10,"['bopen', 'corteva', 'dtn', 'gnsscience', 'icube-sertit', 'ozminerals', 'quantstack', 'smhi', 'universityofhouston', 'universityofwashington,uwescience']","['@QuantStack', '@bopen', '@corteva ', 'DTN', 'GNS Science', 'ICube-SERTIT', 'OZ Minerals', 'SMHI', 'University of Houston', 'University of Washington, @uwescience']",,2.27,29,19,47,0,14,16,14,29.0,58.0,90.0,2.0,0,46.5875 +586,gis,https://github.com/pysal/momepy,,,,pysal/momepy,momepy,364,47,16,Python,https://docs.momepy.org,momepy: Urban Morphology Measuring Toolkit,pysal,2023-02-21,2018-03-30,255,1.423463687150838,"['urban', 'morphology', 'morphological-analysis', 'morphometrics', 'urban-morphometrics', 'urban-street-networks']",2023-01-09,10,"['AleFeli', 'PratyushTripathy', 'Thaulino', 'amorfinv', 'gregmaya', 'jGaboardi@ornl', 'kopytjuk', 'martinfleis', 'matthew-law', 'phuismann@gas-undwärme-institutessen']",2,10,"['gas-undwärme-institutessen', 'ornl']","['Gas- und Wärme-Institut Essen', 'ORNL']",,0.98,26,11,60,1,2,3,2,26.0,64.0,90.0,2.5,0,32.83054 +522,gis,https://github.com/pygeos/pygeos,,,,pygeos/pygeos,pygeos,361,40,16,Python,https://pygeos.readthedocs.io,pygeos: Wraps GEOS geometry functions in numpy ufuncs.,pygeos,2023-02-14,2019-06-10,193,1.8677014042867701,[],2022-12-14,13,"['0phoff@eavise,kuleuven', 'brendan-ward@astutespruce', 'caspervdw@nelen&schuurmans', 'chaitan94@adonmo(adonmo)', 'jamesmyatt@capgeminiengineering', 'jorisvandenbossche', 'martinfleis', 'martinlackner@tuwien', 'mwtoews@gnsscience', 'snowman2@corteva']",8,10,"['adonmo(adonmo)', 'astutespruce', 'capgeminiengineering', 'corteva', 'eavise,kuleuven', 'gnsscience', 'nelen&schuurmans', 'tuwien']","['@corteva ', 'Adonmo (@adonmo)', 'Astute Spruce, LLC', 'Capgemini Engineering', 'EAVISE, KU Leuven', 'GNS Science', 'Nelen & Schuurmans', 'TU Wien']",,0.19,19,18,45,2,2,5,2,19.0,12.0,90.0,0.6,0,33.1215 +519,gis,https://github.com/scikit-geometry/scikit-geometry,,,,scikit-geometry/scikit-geometry,scikit-geometry,360,50,14,Jupyter Notebook,https://scikit-geometry.github.io/scikit-geometry,scikit-geometry: Scientific Python Geometric Algorithms Library,scikit-geometry,2023-01-20,2016-03-28,360,0.9992069785884219,"['cgal', 'geometry', 'python', 'geometric-algorithms', 'wrapper']",2022-10-14,15,"['JingMatrix', 'anjiro@universityofcopenhagen', 'eboix', 'jskrzypek@resonance', 'mjd3@ambirobotics', 'mozzsa', 'poke1024@leipziguniversity', 'sanatladkat', 'timsavage@westpac', 'wolfv@prefix.devgmbh']",6,10,"['ambirobotics', 'leipziguniversity', 'prefix.devgmbh', 'resonance', 'universityofcopenhagen', 'westpac']","['@resonance ', 'Ambi Robotics', 'Leipzig University', 'University of Copenhagen', 'Westpac', 'prefix.dev GmbH']",,0.08,4,0,84,4,0,0,0,4.0,1.0,90.0,0.2,0,26.17292 +499,ml-dl,https://github.com/researchmm/sttn,,,,researchmm/sttn,STTN,360,72,20,Jupyter Notebook,https://arxiv.org/abs/2007.10247,[ECCV'2020] STTN: Learning Joint Spatial-Temporal Transformations for Video Inpainting,researchmm,2023-02-20,2020-07-10,136,2.633228840125392,"['video-inpainting', 'completing-videos', 'transformer', 'spatial-temporal']",2021-07-26,2,['zengyh1900@openmmlab'],1,10,['openmmlab'],['OpenMMLab'],,0.0,0,0,32,19,0,0,0,0.0,0.0,90.0,0.0,0,7.66416 +563,gis,https://github.com/geopandas/dask-geopandas,,,,geopandas/dask-geopandas,dask-geopandas,357,35,23,Python,https://dask-geopandas.readthedocs.io/,dask-geopandas: Parallel GeoPandas with Dask,geopandas,2023-02-18,2020-02-13,157,2.2615384615384615,[],2023-01-23,17,"['DahnJ@sylveraio', 'TomAugspurger@microsoft', 'fbunt', 'gadomski@element84', 'jorisvandenbossche', 'jsignell@azavea', 'martinfleis', 'raybellwaves@dtn', 'slumnitz@europeanspaceagency,esrin', 'tastatham@mr']",7,10,"['azavea', 'dtn', 'element84', 'europeanspaceagency,esrin', 'microsoft', 'mr', 'sylveraio']","['@Element84', '@SylveraIO', '@azavea', '@microsoft', 'DTN', 'European Space Agency, ESRIN', 'Mr']",,0.44,19,10,37,1,7,4,7,19.0,30.0,90.0,1.6,0,37.5218 +902,util,https://github.com/ofek/pypinfo,,,,ofek/pypinfo,pypinfo,356,31,14,Python,,pypinfo: Easily view PyPI download statistics via Google's BigQuery.,ofek,2023-02-20,2017-05-13,301,1.1804831833254381,"['python', 'bigquery', 'pypi', 'statistics']",2022-11-30,9,"['JulienPalard', 'bskinn@openteams', 'hugovk@nordsoftware', 'jdufresne@pioneervalleybooks', 'jwilk', 'mayeut', 'ofek@datadog', 'rahiel@kabisa', 'tswast@google']",6,10,"['datadog', 'google', 'kabisa', 'nordsoftware', 'openteams', 'pioneervalleybooks']","['@datadog', '@kabisa', 'Google', 'Nord Software', 'OpenTeams', 'Pioneer Valley Books']",,0.29,2,1,70,3,0,4,4,1.0,4.0,90.0,4.0,0,34.33698 +510,ml-dl,https://github.com/leondgarse/keras_cv_attention_models,,,,leondgarse/keras_cv_attention_models,keras_cv_attention_models,355,57,17,Python,,"keras_cv_attention_models: Keras beit,botnet,CMT,CoaT,CoAtNet,convnext,cotnet,davit,efficientdet,edgenext,efficientformer,efficientnet,fbnet,flexivit,gcvit,ghostnet,gmlp,gpvit,halonet,hornet,iformer,lcnet,levit,maxvit,mlp-mixer,mobilevit,nat,nfnets,pvt,regnet,resmlp,resnest,resnext,resnetd,swin,tinynet,uniformer,volo,wavemlp,yolor,yolov7,yolox",leondgarse,2023-02-21,2021-08-02,81,4.367311072056239,"['tensorflow', 'visualizing', 'keras', 'attention', 'model', 'imagenet', 'coco', 'recognition', 'detection', 'anchor-free', 'tf', 'tf2']",2023-02-18,4,"['AminHP@koala-team', 'awsaf49@wandb', 'dcleres@resmonicsag', 'leondgarse']",3,10,"['koala-team', 'resmonicsag', 'wandb']","['@koala-team', '@wandb', 'Resmonics AG']",,6.31,9,7,19,0,21,67,21,9.0,31.0,90.0,3.4,0,36.81393 +237,ml,https://github.com/salesforce/warp-drive,,,,salesforce/warp-drive,warp-drive,349,64,13,Python,,warp-drive: Extremely Fast End-to-End Deep Multi-Agent Reinforcement Learning Framework on a GPU (JMLR 2022),salesforce,2023-02-17,2021-08-25,78,4.4743589743589745,"['reinforcement-learning', 'gpu', 'cuda', 'multiagent-reinforcement-learning', 'deep-learning', 'high-throughput', 'pytorch', 'numba']",2023-01-17,6,"['Emerald01@salesforceresearch', 'blchu', 'sunil-s@salesforceresearch', 'svc-scm']",1,10,['salesforceresearch'],['Salesforce Research'],,2.29,13,13,18,1,2,1,2,13.0,18.0,90.0,1.4,0,25.64781 +978,ml,https://github.com/tanelp/tiny-diffusion,,,,tanelp/tiny-diffusion,tiny-diffusion,348,21,6,Jupyter Notebook,,tiny-diffusion: A minimal PyTorch implementation of probabilistic diffusion models for 2D datasets.,tanelp,2023-02-19,2023-01-13,5,60.9,[],2023-02-19,1,['tanelp'],0,10,[],[],,0.06,1,1,1,0,0,0,0,1.0,0.0,90.0,0.0,0,4.67185 +692,util,https://github.com/paperswithcode/axcell,,,,paperswithcode/axcell,axcell,348,55,13,Python,,axcell: Tools for extracting tables and results from Machine Learning papers,paperswithcode,2023-02-10,2019-06-27,190,1.8233532934131738,[],2021-06-23,7,"['PiotrCzapla', 'RJT1990', 'VXenomac@xyzlab', 'mkardas', 'rstojnic', 'timbmg@ukplab,tudarmstadt']",2,10,"['ukplab,tudarmstadt', 'xyzlab']","['@xyzlab ', 'UKP Lab, TU Darmstadt']",,0.0,1,0,44,20,0,0,0,1.0,0.0,90.0,0.0,0,13.4829 +340,term,https://github.com/federicoceratto/dashing,,,,federicoceratto/dashing,dashing,346,30,9,Python,https://dashing.readthedocs.io/en/latest/,dashing: Terminal dashboards for Python,federicoceratto,2023-02-10,2017-06-03,298,1.1588516746411484,"['python', 'python3', 'terminal', 'dashboard', 'terminal-based', 'gauges', 'charts']",2020-09-06,2,"['Aareon', 'FedericoCeratto@ooni/torproject/debian']",1,10,['ooni/torproject/debian'],['OONI / Tor Project / Debian'],,0.0,0,0,70,30,0,0,0,0.0,0.0,90.0,0.0,0,8.46859 +848,gis,https://github.com/mapbox/mercantile,,,,mapbox/mercantile,mercantile,346,60,117,Python,,mercantile: Spherical mercator tile and coordinate utilities,mapbox,2023-02-19,2014-02-12,471,0.7346072186836518,"['satellite', 'pxm', 'imagery']",2021-10-22,20,"['brendan-ward@astutespruce', 'daniel-j-h@robofarmio', 'dnomadb', 'fxjung@tudresden', 'kapadia@planetlabs', 'perrygeo', 'pratikyadav@mapbox', 'samsammurphy@ecmwf', 'sgillies@planetlabs', 'youngpm']",6,10,"['astutespruce', 'ecmwf', 'mapbox', 'planetlabs', 'robofarmio', 'tudresden']","['@planetlabs', '@planetlabs ', '@robofarmio ', 'Astute Spruce, LLC', 'ECMWF', 'Mapbox', 'TU Dresden']",,0.0,0,0,110,16,0,4,4,0.0,0.0,90.0,0.0,0,25.43303 +158,jupyter,https://github.com/nteract/testbook,,,,nteract/testbook,testbook,345,38,15,Python,https://testbook.readthedocs.io,testbook: 🧪 📗 Unit test your Jupyter Notebooks the right way,nteract,2023-02-06,2020-02-26,156,2.2115384615384617,"['jupyter-notebook', 'unit-testing', 'pytest', 'nteract', 'python', 'testbook']",2022-11-29,15,"['MSeal@noteable-io', 'alonme', 'bensenberner@doordash', 'dav009', 'fcollonval@quantstack', 'lfunderburk@seaspancorporation', 'nastra@tabular-io', 'rohitsanj@noteable-io', 'ronnie-llamado', 'willingc@willingconsulting']",6,10,"['doordash', 'noteable-io', 'quantstack', 'seaspancorporation', 'tabular-io', 'willingconsulting']","['@QuantStack', '@noteable-io', '@tabular-io', 'DoorDash', 'Seaspan Corporation', 'Willing Consulting']",,0.04,11,2,36,3,0,5,5,11.0,8.0,90.0,0.7,0,30.6549 +684,util,https://github.com/sciunto-org/python-bibtexparser,,,,sciunto-org/python-bibtexparser,python-bibtexparser,344,118,16,Python,https://bibtexparser.readthedocs.io,python-bibtexparser: Bibtex parser for Python 3,sciunto-org,2023-02-20,2013-01-05,528,0.6508108108108108,"['bibtex', 'bibtex-files', 'latex', 'python', 'hacktoberfest2022']",2023-01-03,45,"['MiWeiss@universitàdellasvizzeraitaliana(testingautomated-usi)', 'Phyks', 'bcbnz', 'cao@ruhruniversitybochum', 'drakeguan@kkstream', 'flopraden@quicksign', 'grochmal', 'michaelfruth@universityofpassau', 'omangin', 'sciunto@paris-saclayuniversity']",6,10,"['kkstream', 'paris-saclayuniversity', 'quicksign', 'ruhruniversitybochum', 'universityofpassau', 'universitàdellasvizzeraitaliana(testingautomated-usi)']","['KKStream', 'Paris-Saclay University', 'QuickSign', 'Ruhr University Bochum', 'University of Passau', 'Università della Svizzera Italiana (@testingautomated-usi)']",,0.65,12,9,123,2,2,2,2,12.0,9.0,90.0,0.8,0,37.86279 +464,data,https://github.com/dmarx/psaw,,,,dmarx/psaw,psaw,341,54,9,Python,,psaw: Python Pushshift.io API Wrapper (for comment/submission search),dmarx,2023-01-30,2018-04-15,253,1.3455467869222097,[],2022-07-09,8,"['Jabb0', 'arlenk', 'dmarx@stability.ai,eleuther.ai', 'lolamathematician', 'melaniewalsh', 'mental32@iworkoncompilersandstuff.', 'robhawkins', ""wassname@i'mjustaguywholikestomachinelearn""]",3,10,"[""i'mjustaguywholikestomachinelearn"", 'iworkoncompilersandstuff.', 'stability.ai,eleuther.ai']","['I work on compilers and stuff.', ""I'm just a guy who likes to machine learn"", 'Stability.ai, Eleuther.ai']",,0.04,5,1,59,8,0,0,0,5.0,8.0,90.0,1.6,0,23.36265 +664,study,https://github.com/rasbt/stat451-machine-learning-fs20,,,,rasbt/stat451-machine-learning-fs20,stat451-machine-learning-fs20,339,179,18,Jupyter Notebook,,stat451-machine-learning-fs20: STAT 451: Intro to Machine Learning @ UW-Madison (Fall 2020),rasbt,2023-02-18,2020-08-06,132,2.5516129032258066,[],2020-12-03,1,"['rasbt@lightning-ai,universityofwisconsin-madison']",1,10,"['lightning-ai,universityofwisconsin-madison']","['@Lightning-AI , University of Wisconsin-Madison']",,0.0,0,0,31,27,0,0,0,0.0,0.0,90.0,0.0,0,5.64316 +719,gis,https://github.com/weecology/deepforest,,,,weecology/deepforest,DeepForest,336,132,15,JavaScript,https://deepforest.readthedocs.io/,DeepForest: Python Package for Tree Crown Detection in Airborne RGB imagery,weecology,2023-02-17,2018-03-07,259,1.2972972972972974,[],2023-02-20,11,"['ElliotSalisbury', 'PolarNick239@agisoft-', 'bw4sz@weecology', 'cbudac-fwig', 'davidnyberg', 'dingyif@rbccapitalmarkets', 'dwaipayan05', 'ethanwhite@weecology,univofflorida', 'henrykironde@universityofflorida']",5,10,"['agisoft-', 'rbccapitalmarkets', 'universityofflorida', 'weecology', 'weecology,univofflorida']","['@agisoft-llc ', '@weecology ', '@weecology, Univ of Florida ', 'RBC Capital Markets', 'University of Florida']",,0.4,26,7,60,0,0,13,13,26.0,52.0,90.0,2.0,0,39.39703 +943,sim,https://github.com/crflynn/stochastic,,,,crflynn/stochastic,stochastic,331,64,15,Python,http://stochastic.readthedocs.io/en/stable/,stochastic: Generate realizations of stochastic processes in python.,crflynn,2023-02-13,2017-02-17,313,1.0551001821493624,"['stochastic-processes', 'stochastic', 'stochastic-differential-equations', 'probability', 'stochastic-volatility-models', 'stochastic-simulation-algorithm']",2022-07-12,7,"['Anna-Strakovskaia', 'Gabinou', 'JJJerome', 'MichaelHogervorst', 'anntzer', 'crflynn', 'firefly-cpp']",0,10,[],[],,0.06,2,0,73,7,1,0,1,2.0,0.0,90.0,0.0,0,13.29685 +745,perf,https://github.com/blosc/python-blosc,,,,blosc/python-blosc,python-blosc,329,75,14,Python,https://www.blosc.org/python-blosc/python-blosc.html,python-blosc: A Python wrapper for the extremely fast Blosc compression library ,blosc,2023-02-07,2010-09-30,646,0.508613074204947,"['python', 'wrapper', 'blosc', 'compression']",2023-01-11,43,"['DimitriPapadopoulos@cea', 'FrancescAlted@francescalted', 'esc@anaconda', 'hmaarrfk@californiainstituteoftechnology', 'keszybz@redhat', 'lgarrison@scientificcomputingcore,flatironinstitute', 'oscargm98', 'robbmcleod@hitachihigh-techcanada', 'sdvillal', 'thewtex@kitware']",8,10,"['anaconda', 'californiainstituteoftechnology', 'cea', 'francescalted', 'hitachihigh-techcanada', 'kitware', 'redhat', 'scientificcomputingcore,flatironinstitute']","['@FrancescAlted', '@Kitware', 'Anaconda Inc.', 'CEA', 'California Institute of Technology', 'Hitachi High-tech Canada Inc.', 'Red Hat', 'Scientific Computing Core, Flatiron Institute']",,0.96,25,23,151,1,1,4,1,25.0,26.0,90.0,1.0,0,41.06758 +727,web,https://github.com/rstudio/py-shiny,,,,rstudio/py-shiny,py-shiny,328,20,22,JavaScript,https://shiny.rstudio.com/py/,py-shiny: Shiny for Python,rstudio,2023-02-18,2021-07-27,82,3.9930434782608697,[],2023-02-15,8,"['cclauss@christianclauss', 'cpsievert@rstudio', 'fpgmaas@freelance', 'gregswinehart', 'jcheng5@rstudio', 'jonmoore', 'schloerke@rstudio', 'wch@posit-pbc']",4,10,"['christianclauss', 'freelance', 'posit-pbc', 'rstudio']","['@posit-pbc', '@rstudio', '@rstudio ', 'Christian Clauss', 'Freelance']",,9.02,30,11,19,0,8,7,8,30.0,22.0,90.0,0.7,0,35.50042 +364,ml-ops,https://github.com/kubeflow/fairing,,,,kubeflow/fairing,fairing,326,146,39,Jsonnet,,"fairing: Python SDK for building, training, and deploying ML models",kubeflow,2023-02-14,2018-09-03,233,1.3974280465401103,[],2021-08-26,41,"['Jeffwan@bytedance', 'abhi-g@google', 'hamedhsn@playstation', 'jinchihe@ibm', 'jlewi', 'karthikv2k@google', 'r2d4', 'rpasricha', 'wbuchwalter@microsoftresearch', 'xauthulei@ibm']",5,10,"['bytedance', 'google', 'ibm', 'microsoftresearch', 'playstation']","['@google ', 'Bytedance', 'Google', 'IBM', 'Microsoft Research', 'Playstation']",,0.0,0,0,54,18,0,1,1,0.0,0.0,90.0,0.0,0,22.96074 +500,study,https://github.com/googlecloudplatform/practical-ml-vision-book,,,,googlecloudplatform/practical-ml-vision-book,practical-ml-vision-book,325,147,19,Jupyter Notebook,,googlecloudplatform/practical-ml-vision-book,googlecloudplatform,2023-02-18,2020-11-18,118,2.7542372881355934,[],2022-11-21,6,"['enakai00', 'lakshmanok', 'martin-gorner@google', 'ryangillard']",1,10,['google'],['Google'],,0.08,1,0,28,3,0,0,0,1.0,1.0,90.0,1.0,0,17.18696 +960,nlp,https://github.com/cqcl/lambeq,,,,cqcl/lambeq,lambeq,323,70,25,Python,https://cqcl.github.io/lambeq,lambeq: A high-level Python library for Quantum Natural Language Processing,cqcl,2023-02-18,2021-10-10,71,4.522,[],2023-01-09,8,"['KentaroAOKI', 'Thommy257', 'dimkart', 'ianyfan', 'kinianlo', 'y-richie-y']",0,10,[],[],,0.19,6,3,17,1,9,9,9,6.0,10.0,90.0,1.7,0,22.38168 +594,gis,https://github.com/geopython/owslib,,,,geopython/owslib,OWSLib,320,261,30,Python,https://geopython.github.io/OWSLib,"OWSLib is a Python package for client programming with Open Geospatial Consortium (OGC) web service (hence OWS) interface standards, and their related content models.",geopython,2023-02-20,2012-01-13,579,0.5519960571710202,[],2023-02-20,140,"['JuergenWeichand', 'bradh', 'cehbrecht', 'daf', 'huard@ouranos', 'jachym@opengeolabs,maptiler', 'kalxas@opensourcegeospatialfoundation', 'kwilcox@axiom-data-science', 'sgillies@planetlabs', 'tomkralidis@geopythonwmo-imopengeospatial']",6,10,"['axiom-data-science', 'geopythonwmo-imopengeospatial', 'opengeolabs,maptiler', 'opensourcegeospatialfoundation', 'ouranos', 'planetlabs']","['@OpenGeoLabs , @maptiler ', '@axiom-data-science ', '@geopython @wmo-im @opengeospatial', '@planetlabs', 'Open Source Geospatial Foundation', 'Ouranos']",,1.1,27,14,135,0,4,7,4,27.0,39.0,90.0,1.4,0,47.00517 +967,ml-dl,https://github.com/suanrong/sdne,,,,suanrong/sdne,SDNE,310,124,10,Python,http://www.kdd.org/kdd2016/subtopic/view/structural-deep-network-embedding,SDNE: This is a implementation of SDNE (Structural Deep Network embedding),suanrong,2023-01-04,2016-11-30,325,0.9538461538461539,[],2021-09-10,6,['suanrong@tsinghuauniversity'],1,10,['tsinghuauniversity'],['Tsinghua University'],,0.0,0,0,76,18,0,0,0,0.0,0.0,90.0,0.0,0,12.2092 +788,study,https://github.com/mynameisfiber/high_performance_python_2e,,,,mynameisfiber/high_performance_python_2e,high_performance_python_2e,306,98,6,Python,,"high_performance_python_2e: Code for the book ""High Performance Python 2e"" by Micha Gorelick and Ian Ozsvald with OReilly ",mynameisfiber,2023-02-16,2020-04-12,149,2.0478011472275335,"['python', 'high-performance', 'code-samples', 'oreilly', 'oreilly-books']",2023-01-18,2,"['ianozsvald@http://morconsulting.com/', 'mynameisfiber@digital-witness-lab']",2,10,"['digital-witness-lab', 'http://morconsulting.com/']","['@digital-witness-lab ', 'http://morconsulting.com/']",,0.02,0,0,35,1,0,0,0,0.0,0.0,90.0,0.0,0,15.5492 +827,gis,https://github.com/datasystemslab/geotorch,,,,datasystemslab/geotorch,GeoTorchAI,306,21,9,Python,https://kanchanchy.github.io/geotorchai/,GeoTorchAI: A Spatiotemporal Deep Learning Framework (https://dl.acm.org/doi/abs/10.1145/3557915.3561036),datasystemslab,2023-02-15,2022-05-23,39,7.789090909090909,"['classification-model', 'convlstm-pytorch', 'deep-learning', 'deep-neural-networks', 'deepsat', 'prediction-model', 'raster-data', 'satellite-images', 'segmentation-models', 'sequence-models', 'spatial-data-analysis', 'spatio-temporal-analysis', 'spatio-temporal-models', 'spatio-temporal-prediction', 'st-resnet', 'satellite-classification']",2023-02-05,4,"['Sarwat@wherobots', 'kanchan-chy@amberit', 'kanchanchy']",2,10,"['amberit', 'wherobots']","['Amber IT', 'Wherobots Inc.']",,2.6,21,12,9,1,1,1,1,21.0,25.0,90.0,1.2,0,24.4545 +473,ml-dl,https://github.com/nyandwi/modernconvnets,,,,nyandwi/modernconvnets,ModernConvNets,306,32,7,Jupyter Notebook,,ModernConvNets: Revisions and implementations of modern Convolutional Neural Networks architectures in TensorFlow and Keras,nyandwi,2023-02-17,2022-02-10,53,5.681697612732095,"['convnets', 'deep-learning-algorithms', 'computer-vision', 'tensorflow', 'keras', 'convolutional-neural-networks', 'neural-networks', 'image-classification', 'cnns']",2022-10-05,1,['Nyandwi@cargeniemellon'],1,10,['cargeniemellon'],['Cargenie Mellon'],,0.52,0,0,13,5,0,0,0,0.0,0.0,90.0,0.0,0,8.10713 +930,ml,https://github.com/google-research/maxvit,,,,google-research/maxvit,maxvit,306,19,6,Jupyter Notebook,,"[ECCV 2022] Official repository for ""MaxViT: Multi-Axis Vision Transformer"". SOTA foundation models for classification, detection, segmentation, image quality, and generative modeling...",google-research,2023-02-21,2022-07-07,32,9.31304347826087,"['architecture', 'classification', 'cnn', 'computer-vision', 'image', 'image-processing', 'mlp', 'object-detection', 'transformer', 'transformer-architecture', 'vision-transformer', 'segmentation', 'resnet']",2022-10-23,1,['Yinxiaoli@columbiauniversity'],1,10,['columbiauniversity'],['Columbia University'],,0.06,6,4,8,4,0,0,0,6.0,5.0,90.0,0.8,0,11.80627 +430,jupyter,https://github.com/chaoleili/jupyterlab_tensorboard,,,,chaoleili/jupyterlab_tensorboard,jupyterlab_tensorboard,298,36,11,TypeScript,,jupyterlab_tensorboard: Tensorboard extension for jupyterlab.,chaoleili,2023-01-30,2018-08-14,236,1.2619479733817303,"['jupyterlab-extension', 'tensorboard', 'jupyterlab']",2022-07-18,7,"['Queuecumber@researchscientistnvidia', 'carmark', 'chaoleili', 'consideRatio@sundellopensourceconsultingab', 'dependabot[bot]', 'twalcari@imec-idlab,departmentofinformationtechnology,ghentuniversity,belgium', 'wexder']",3,10,"['imec-idlab,departmentofinformationtechnology,ghentuniversity,belgium', 'researchscientistnvidia', 'sundellopensourceconsultingab']","['Research Scientist @NVIDIA', 'Sundell Open Source Consulting AB', 'imec - IDLab, Department of Information Technology, Ghent University, Belgium']",,0.0,0,0,55,7,0,0,0,0.0,0.0,90.0,0.0,0,17.31958 +939,web,https://github.com/dmontagu/fastapi_client,,,,dmontagu/fastapi_client,fastapi_client,294,39,8,Python,,fastapi_client: FastAPI client generator,dmontagu,2023-02-16,2019-08-03,185,1.584295612009238,[],2021-02-11,8,"['ChristopheLallement', 'Toumetis', 'b0g3r@semrush', 'daveholladay', 'dmontagu@formlogic', 'fj-sanchez']",2,10,"['formlogic', 'semrush']","['@semrush', 'Formlogic']",,0.0,0,0,43,25,0,0,0,0.0,0.0,90.0,0.0,0,12.75052 +300,nlp,https://github.com/openai/grade-school-math,,,,openai/grade-school-math,grade-school-math,293,62,9,Python,,openai/grade-school-math,openai,2023-02-20,2021-10-20,70,4.185714285714286,[],2021-11-19,2,"['kcobbe', 'vineetsk10@openai']",1,10,['openai'],['OpenAI'],,0.0,1,0,16,15,0,0,0,1.0,0.0,90.0,0.0,0,7.06312 +884,time-series,https://github.com/pastas/pastas,,,,pastas/pastas,pastas,291,53,18,Python,https://pastas.readthedocs.io,pastas: :spaghetti: Pastas is an open-source Python framework for the analysis of groundwater time series.,pastas,2023-02-17,2016-04-15,357,0.8134984025559105,"['hydrology', 'groundwater', 'python', 'timeseries', 'analysis', 'pastas']",2023-02-07,17,"['EitvanderMeulen@amo', 'Hugovdberg@brabantwater', 'OnnoEbbens', 'dbrakenhoff@artesiawater', 'dcslagel@codefarm', 'martinvonk', 'mbakker7@tudelft', 'raoulcollenteur@karl-franzensuniversityofgraz', 'rubencalje@artesia-water', 'saklop']",7,10,"['amo', 'artesia-water', 'artesiawater', 'brabantwater', 'codefarm', 'karl-franzensuniversityofgraz', 'tudelft']","['AMO', 'Artesia Water', 'Artesia-water', 'Brabant Water', 'Code Farm LLC', 'Karl-Franzens University of Graz', 'TU Delft']",,4.73,158,115,83,0,7,4,7,158.0,298.0,90.0,1.9,0,47.04193 +946,web,https://github.com/aeternalis-ingenium/fastapi-backend-template,,,,aeternalis-ingenium/fastapi-backend-template,FastAPI-Backend-Template,288,48,9,Python,,"FastAPI-Backend-Template: A backend project template with FastAPI, PostgreSQL with asynchronous SQLAlchemy 2.0, Alembic for asynchronous database migration, and Docker.",aeternalis-ingenium,2023-02-20,2022-12-05,11,25.518987341772153,"['asynchronous', 'docker', 'docker-compose', 'fastapi', 'postgresql', 'python', 'sqlalchemy', 'codecov', 'githubactions', 'jwt', 'pre-commit', 'alembic', 'asyncpg', 'coverage', 'pytest']",2023-02-05,4,"['Aeternalis-Ingenium@j.a.r.v.i.s.', 'cclauss@christianclauss', 'kumaravelabinbev', 'pre-commit-ci[bot]']",2,10,"['christianclauss', 'j.a.r.v.i.s.']","['Christian Clauss', 'J. A. R.V. I. S.']",,1.19,13,12,3,1,0,0,0,13.0,3.0,90.0,0.2,0,17.2391 +574,gis,https://github.com/developmentseed/geolambda,,,,developmentseed/geolambda,geolambda,281,85,49,Dockerfile,,geolambda: Create and deploy Geospatial AWS Lambda functions,developmentseed,2023-01-24,2017-05-02,303,0.9269557021677662,[],2021-02-16,6,"['bluetyson', 'kylebarron', 'matthewhanson@element84', 'robertd', 'seilerman@jupiter', 'vincentsarago@developmentseed']",3,10,"['developmentseed', 'element84', 'jupiter']","['@developmentseed ', '@element84', 'Jupiter']",,0.0,2,0,71,24,0,1,1,2.0,0.0,90.0,0.0,0,16.76788 +524,util,https://github.com/venth/aws-adfs,,,,venth/aws-adfs,aws-adfs,280,92,11,Python,,aws-adfs: Command line tool to ease aws cli authentication against ADFS (multi factor authentication with active directory),venth,2023-01-31,2016-06-25,347,0.8055898068228524,"['aws', 'adfs', 'python', 'command-line', 'tools', 'multi-factor-authentication', 'duo-security']",2022-12-14,46,"['KyleJamesWalker@zefr', 'b0rken', 'bghinkle', 'brandond@rancher', 'dependabot[bot]', 'mikereinhold', 'pdecat@claranet', 'pvbouwel', 'trav-c', 'venth']",3,10,"['claranet', 'rancher', 'zefr']","['@claranet', '@rancher', 'ZEFR']",,2.04,14,5,81,2,20,17,20,14.0,9.0,90.0,0.6,0,37.98202 +342,term,https://github.com/rockhopper-technologies/enlighten,,,,rockhopper-technologies/enlighten,enlighten,275,19,4,Python,https://python-enlighten.readthedocs.io,Enlighten Progress Bar for Python Console Apps,rockhopper-technologies,2023-02-20,2017-09-22,282,0.9727134916624558,['python'],2023-02-04,5,"['MicaelJarniac@micaeljarniac', 'avylove', 'bunjiboys', 'sourcery-ai[bot]']",1,10,['micaeljarniac'],['Micael Jarniac'],,0.73,3,2,66,1,3,5,3,3.0,4.0,90.0,1.3,0,25.62278 +123,util,https://github.com/mgedmin/check-manifest,,,,mgedmin/check-manifest,check-manifest,274,37,7,Python,https://pypi.org/p/check-manifest,check-manifest: Tool to check the completeness of MANIFEST.in for Python packages,mgedmin,2023-02-06,2013-03-05,520,0.5267783575940675,[],2022-12-11,22,"['GhostofGoes', 'brechtm@opqode', 'hugovk@nordsoftware', 'jdufresne@pioneervalleybooks', 'jwilk', 'mauritsvanrees@zestsoftware', 'mgedmin@programmersofvilnius', 'myint', 'phijor', 'tobiasraabe@quantilope']",6,10,"['nordsoftware', 'opqode', 'pioneervalleybooks', 'programmersofvilnius', 'quantilope', 'zestsoftware']","['@opqode ', '@quantilope', '@zestsoftware ', 'Nord Software', 'Pioneer Valley Books', 'Programmers of Vilnius']",,0.58,2,2,121,2,0,6,6,2.0,4.0,90.0,2.0,0,37.70974 +210,util,https://github.com/tiangolo/poetry-version-plugin,,,,tiangolo/poetry-version-plugin,poetry-version-plugin,274,24,5,Python,,poetry-version-plugin: Poetry plugin for dynamically extracting the package version from a __version__ variable or a Git tag.,tiangolo,2023-02-20,2021-05-27,90,3.0157232704402515,"['python-poetry', 'packaging', 'python', 'python3', 'pypi', 'packaging-for-pypi']",2021-05-28,3,"['Gl0deanR@belike', 'tiangolo']",1,10,['belike'],['beLIKE'],,0.0,1,0,21,21,0,1,1,1.0,0.0,90.0,0.0,0,8.94624 +385,nlp,https://github.com/kootenpv/contractions,,,,kootenpv/contractions,contractions,272,35,7,Python,,contractions: Fixes contractions such as `you're` to `you are`,kootenpv,2023-02-19,2016-12-25,321,0.8462222222222222,[],2022-11-15,14,"['Kev-Y-Huang', 'Wan-Yifei', 'christian-storm@independentresearch', 'daikikatsuragawa@japan', 'harshasomisetty', 'kootenpv@vankootenaisolutions/ex-mgnr', 'maximkir-fl', 'misha345a', 'nickumia', 'sajal2692@unscramblinc']",4,10,"['independentresearch', 'japan', 'unscramblinc', 'vankootenaisolutions/ex-mgnr']","['Independent Research', 'Japan', 'Unscrambl Inc', 'Van Kooten AI Solutions / ex-mgnr']",,0.1,1,1,75,3,0,0,0,1.0,1.0,90.0,1.0,0,26.66134 +418,pandas,https://github.com/zsailer/pandas_flavor,,,,zsailer/pandas_flavor,pandas_flavor,272,17,11,Python,https://zsailer.github.io/software/pandas-flavor/,pandas_flavor: The easy way to write your own flavor of Pandas,zsailer,2023-02-17,2018-01-25,264,1.0269687162891046,['pandas'],2023-02-03,9,"['Zsailer@apple', 'asmirnov69', 'ericmjl', 'eyaltrabelsi@bigabid', 'haimjether', 'musicinmybrain', 'partev', 'pre-commit-ci[bot]', 'toddrme2178']",2,10,"['apple', 'bigabid']","['Apple', 'Bigabid']",,1.06,6,3,62,1,1,1,1,6.0,7.0,90.0,1.2,0,28.32898 +307,crypto,https://github.com/ethereum/eth-utils,,,,ethereum/eth-utils,eth-utils,270,141,18,Python,https://eth-utils.readthedocs.io/en/latest/,eth-utils: Utility functions for working with ethereum related codebases.,ethereum,2023-02-13,2017-02-07,315,0.85675430643699,"['ethereum', 'python', 'utility-library']",2022-11-17,31,"['Alegzander', 'Christofon', 'carver@ethereumfoundation', 'cburgdorf', 'davesque', 'gsalgado', 'kclowes', 'njgheorghita@ethereum', 'pipermerriam@ethereumfoundation', 'reiven']",2,10,"['ethereum', 'ethereumfoundation']","['@ethereum ', 'Ethereum Foundation']",,0.31,4,2,74,3,0,10,10,4.0,1.0,90.0,0.2,0,29.53826 +852,web,https://github.com/conradbez/hstream,,,,conradbez/hstream,hstream,267,11,6,Python,,hstream: Hyper Stream,conradbez,2023-01-29,2022-11-03,15,16.83783783783784,[],2023-02-10,5,"['blackary@streamlit', 'charliec443', 'collingreen', 'conradbez', 'thewchan']",1,10,['streamlit'],['Streamlit'],,0.81,0,0,4,0,0,0,0,0.0,0.0,90.0,0.0,0,13.30904 +714,ml-ops,https://github.com/unionai-oss/unionml,,,,unionai-oss/unionml,unionml,263,38,4,Python,https://www.union.ai/unionml,UnionML: the easiest way to build and deploy machine learning microservices,unionai-oss,2023-02-18,2021-11-17,66,3.984848484848485,"['machine-learning', 'mlops', 'hacktoberfest']",2022-12-21,15,"['MrKrishnaAgarwal@letsopen-source', 'Smartmind12', 'SmritiSatyanV', 'bilal-aamer', 'cosmicBboy@unionai', 'eapolinario', 'evalsocket@unionai', 'jonwiggins@chartbeatillinoishackny', 'sugatoray@universityofwisconsin-milwaukee', 'zevisert@revelasystems']",5,10,"['chartbeatillinoishackny', 'letsopen-source', 'revelasystems', 'unionai', 'universityofwisconsin-milwaukee']","['@Chartbeat @Illinois @hackny', '@LetsOpen-Source', '@unionai', 'Revela Systems', 'University of Wisconsin - Milwaukee', 'unionai']",,4.5,23,4,15,2,18,15,18,23.0,10.0,90.0,0.4,0,33.44889 +508,data,https://github.com/facebookresearch/mephisto,,,,facebookresearch/mephisto,Mephisto,263,59,15,JavaScript,https://mephisto.ai/,Mephisto: A suite of tools for managing crowdsourcing tasks from the inception through to data packaging for research use. ,facebookresearch,2023-02-19,2019-08-19,183,1.4349181605611847,[],2023-02-18,36,"['EricMichaelSmith', 'Etesam913@spectatorpublishingcorrelation-one', 'JackUrb', 'bottler', 'dependabot[bot]', 'jxmsML@facebookresearch', 'mojtaba-komeili@facebookresearch', 'pringshia', 'salelkafrawy', 'sghmk12@federato']",3,10,"['facebookresearch', 'federato', 'spectatorpublishingcorrelation-one']","['@facebookresearch ', '@spectatorpublishing @correlation-one ', 'Federato']",,14.0,81,71,43,0,5,6,5,81.0,68.0,90.0,0.8,0,42.36031 +670,gis,https://github.com/cgal/cgal-swig-bindings,,,,cgal/cgal-swig-bindings,cgal-swig-bindings,261,80,26,C++,,cgal-swig-bindings: CGAL bindings using SWIG,cgal,2023-02-09,2015-03-14,414,0.629565816678153,[],2023-02-20,21,"['WillieMaddox', 'afabri@geometryfactory', 'dependabot[bot]', 'lrineau@geometryfactory', 'maxGimeno', 'sgiraudot', 'sloriot@geometryfactory', 'snoyer', 'thopiekar', 'xantares']",1,10,['geometryfactory'],['GeometryFactory'],,2.44,6,4,97,0,3,0,3,6.0,12.0,90.0,2.0,0,34.8825 +737,ml-ops,https://github.com/skops-dev/skops,,,,skops-dev/skops,skops,260,42,7,Python,https://skops.readthedocs.io/en/stable/,skops is a Python library helping you share your scikit-learn based models and put them in production,skops-dev,2023-02-16,2022-05-04,42,6.190476190476191,"['huggingface', 'machine-learning', 'mlops', 'scikit-learn', 'hacktoberfest']",2023-02-14,13,"['BenjaminBossan', 'E-Aho@bumble-tech', 'EdAbati', 'adrinjalali@huggingface', 'anferico@pischool,translated', 'ayyucedemirbas', 'dependabot[bot]', 'eltociear@bandism', 'merveenoyan@huggingface', 'omar-araboghli@tib']",5,10,"['bandism', 'bumble-tech', 'huggingface', 'pischool,translated', 'tib']","['@PiSchool, @Translated', '@bandism ', '@bumble-tech', '@huggingface ', 'TIB']",,2.98,117,81,10,0,6,7,6,117.0,377.0,90.0,3.2,0,40.21635 +303,util,https://github.com/airbnb/ottr,,,,airbnb/ottr,ottr,259,28,8,Python,,ottr: Serverless Public Key Infrastructure Framework,airbnb,2023-01-08,2021-08-27,77,3.332720588235294,[],2022-01-04,2,['yangkenneth@coinbase'],1,10,['coinbase'],['@coinbase'],,0.0,0,0,18,14,0,0,0,0.0,0.0,90.0,0.0,0,7.01559 +454,gis,https://github.com/openaddresses/pyesridump,,,,openaddresses/pyesridump,pyesridump,258,60,16,Python,,pyesridump: Scrapes an ESRI MapServer REST endpoint to spit out more generally-usable geodata.,openaddresses,2023-02-17,2013-12-06,480,0.5367013372956909,[],2023-02-01,12,"['ahmednoureldeen@cartologic', 'albarrentine', 'andrewharvey@alantgeo', 'candrsn@nlt', 'dionysio@bringg', 'fgregg@datamade,partner', 'hancush@datamade', 'iandees', 'ingalls@openaddressesdevelopmentseed', 'ramSeraph']",7,10,"['alantgeo', 'bringg', 'cartologic', 'datamade', 'datamade,partner', 'nlt', 'openaddressesdevelopmentseed']","['@bringg', '@cartologic', '@datamade', '@datamade, Partner', '@openaddresses @developmentseed', 'Alantgeo', 'NLT']",,0.4,4,0,112,1,2,2,2,4.0,3.0,90.0,0.8,0,33.3239 +826,diffusion,https://github.com/thereforegames/unprompted,,,,thereforegames/unprompted,unprompted,258,30,10,Python,,unprompted: Text generator written for Stable Diffusion workflows.,thereforegames,2023-02-21,2022-10-31,16,15.842105263157896,[],2023-02-16,4,"['MaikoTan@awesomehamster', 'ThereforeGames', 'WeberSamuel', 'kylechallis']",1,10,['awesomehamster'],['@AwesomeHamster'],,2.42,48,28,4,0,0,0,0,48.0,137.0,90.0,2.9,0,24.67721 +480,pandas,https://github.com/holoviz/spatialpandas,,,,holoviz/spatialpandas,spatialpandas,255,22,22,Python,,spatialpandas: Pandas extension arrays for spatial/geometric operations,holoviz,2023-02-13,2019-10-28,173,1.471558120362737,"['holoviz', 'spatialpandas', 'pandas', 'geopandas', 'geographic-data']",2023-01-09,9,"['Hoxbro', 'brl0@datum-tech', 'iameskild@quansight', 'ianthomas23@anaconda', 'jbednar@anaconda', 'jonmmease@hextechnologies', 'jrbourbeau@coiled', 'maximlt@anaconda', 'philippjfr@anaconda']",5,10,"['anaconda', 'coiled', 'datum-tech', 'hextechnologies', 'quansight']","['@Datum-Tech ', '@coiled ', '@quansight', 'Anaconda', 'Anaconda Inc.', 'Anaconda, Inc.', 'Hex Technologies']",,0.35,11,7,40,1,3,11,3,11.0,5.0,90.0,0.5,0,30.41929 +587,ml,https://github.com/merantix-momentum/squirrel-core,,,,merantix-momentum/squirrel-core,squirrel-core,254,6,13,Python,https://squirrel-core.readthedocs.io/,"squirrel-core: A Python library that enables ML teams to share, load, and transform data in a collaborative, flexible, and efficient way :chestnut:",merantix-momentum,2023-02-16,2022-02-11,53,4.7287234042553195,"['python', 'ml', 'machine-learning', 'data-science', 'computer-vision', 'cv', 'nlp', 'natural-language-processing', 'ai', 'pytorch', 'tensorflow', 'jax', 'datasets', 'distributed', 'dataops', 'collaboration', 'deep-learning', 'data-mesh', 'data-ingestion', 'cloud-computing']",2023-02-14,12,"['AdemFr', 'AlirezaSohofi@merantixlabs', 'AlpAribal', 'MaxSchambach@merantixmomentum', 'ThomasWollmann@merantix&pw-solutions', 'TiansuYu@idealointernetgmbh', 'axkoenig@merantixmomentum', 'kai-tub', 'pzdkn@merantix-momentum', 'winfried-ripken']",5,10,"['idealointernetgmbh', 'merantix&pw-solutions', 'merantix-momentum', 'merantixlabs', 'merantixmomentum']","['@merantix-momentum ', 'Idealo Internet GmbH', 'Merantix & PW-Solutions', 'Merantix Labs', 'Merantix Momentum']",,2.0,14,10,12,0,14,14,14,14.0,11.0,90.0,0.8,0,34.8932 +693,data,https://github.com/paperswithcode/sota-extractor,,,,paperswithcode/sota-extractor,sota-extractor,252,28,13,Python,,sota-extractor: The SOTA extractor pipeline,paperswithcode,2022-12-26,2018-12-07,219,1.1469440832249675,[],2022-03-09,8,"['RJT1990', 'alefnula@https://alefnula.io', 'gcucurull', 'mkardas', 'omarsar@dair.ai', 'rstojnic', 'thatch', 'zeke@replicate']",3,10,"['dair.ai', 'https://alefnula.io', 'replicate']","['@replicate ', 'DAIR.AI', 'https://alefnula.io']",,0.02,0,0,51,12,0,4,4,0.0,0.0,90.0,0.0,0,19.17837 +374,data,https://github.com/ndrplz/google-drive-downloader,,,,ndrplz/google-drive-downloader,google-drive-downloader,252,62,11,Python,,google-drive-downloader: Minimal class to download shared files from Google Drive.,ndrplz,2023-02-21,2017-12-08,271,0.9274447949526814,[],2019-02-09,4,"['DavideA', 'TheZoc', 'kant', 'ndrplz@nomitri-perceptionaiformobile']",1,10,['nomitri-perceptionaiformobile'],['Nomitri - Perception AI for Mobile'],,0.0,5,1,63,49,0,0,0,5.0,5.0,90.0,1.0,0,13.10976 +248,util,https://github.com/rpgreen/apilogs,,,,rpgreen/apilogs,apilogs,249,19,9,Python,,apilogs: Easy logging and debugging for Amazon API Gateway and AWS Lambda Serverless APIs,rpgreen,2023-02-10,2016-09-07,337,0.7388724035608308,"['api', 'gateway', 'api-gateway', 'aws', 'cloudwatch-logs', 'logging', 'lambda', 'aws-lambda', 'aws-apigateway']",2019-11-13,23,"['adamchainz@django,djangolondon', 'agonzalezro@auth0', 'alanc10n', 'angelabad', 'graingert', 'nathanleiby@engineeringstableauto', 'obestwalter@avira', 'philipn@encycla', 'rpgreen', 'vlcinsky']",5,10,"['auth0', 'avira', 'django,djangolondon', 'encycla', 'engineeringstableauto']","['@Auth0', '@Avira', '@django, @djangolondon', 'Encycla', 'Engineering @ Stable Auto']",,0.0,0,0,79,40,0,0,0,0.0,0.0,90.0,0.0,0,19.21007 +515,data,https://github.com/jovianml/opendatasets,,,,jovianml/opendatasets,opendatasets,248,123,13,Python,,"opendatasets: A Python library for downloading datasets from Kaggle, Google Drive, and other online sources.",jovianml,2023-02-21,2020-09-17,126,1.954954954954955,"['data-science', 'machine-learning', 'datasets', 'python']",2022-11-01,3,"['BirajCoder@jovian', 'aakashns@jovianml']",2,10,"['jovian', 'jovianml']","['@JovianML', 'Jovian']",,0.13,3,0,30,4,0,0,0,3.0,1.0,90.0,0.3,0,15.9744 +888,study,https://github.com/amaargiru/pyroad,,,,amaargiru/pyroad,pyroad,248,27,6,Jupyter Notebook,,pyroad: Detailed Python developer roadmap,amaargiru,2023-02-19,2022-11-03,15,15.63963963963964,"['python', 'roadmap', 'tutorial']",2023-01-04,1,['amaargiru@oznadigitalsolutions'],1,10,['oznadigitalsolutions'],['OZNA Digital Solutions'],,1.04,2,0,4,2,0,0,0,2.0,4.0,90.0,2.0,0,13.20316 +864,ml-ops,https://github.com/astronomer/airflow-chart,,,,astronomer/airflow-chart,airflow-chart,244,87,44,Python,,airflow-chart: A Helm chart to install Apache Airflow on Kubernetes,astronomer,2023-02-20,2020-01-22,161,1.515527950310559,"['helm-chart', 'airflow', 'apache-airflow', 'kubernetes']",2023-02-10,48,"['andriisoldatenko', 'andscoop', 'cwurtz', 'danielhoherd@astronomer', 'ianstanton@coredb', 'kaxil@astronomer', 'pgvishnuram@astronomer', 'schnie@astronomer', 'sjmiller609@coredb', 'tedmiston@mandolin-dev']",3,10,"['astronomer', 'coredb', 'mandolin-dev']","['@astronomer', '@astronomer ', '@mandolin-dev', 'Astronomer', 'CoreDB']",,1.85,33,30,38,0,17,29,17,33.0,24.0,90.0,0.7,0,40.54065 +870,ml,https://github.com/infer-actively/pymdp,,,,infer-actively/pymdp,pymdp,244,37,24,Python,,pymdp: A Python implementation of active inference for Markov Decision Processes,infer-actively,2023-02-20,2019-11-27,169,1.4437869822485208,[],2022-12-08,12,"['Arun-Niranjan@bud', 'BerenMillidge', 'alec-tschantz', 'conorheins', 'dependabot[bot]', 'mahault', 'pitmonticone@universityofturin']",2,10,"['bud', 'universityofturin']","['Bud', 'University of Turin']",,1.31,5,4,39,2,3,2,3,5.0,3.0,90.0,0.6,0,27.0733 +277,data,https://github.com/airbnb/omniduct,,,,airbnb/omniduct,omniduct,243,47,31,Python,,"omniduct: A toolkit providing a uniform interface for connecting to and extracting data from a wide variety of (potentially remote) data stores (including HDFS, Hive, Presto, MySQL, etc).",airbnb,2023-02-19,2017-02-22,313,0.7763578274760383,[],2022-05-09,12,"['danfrankj', 'delirious-lettuce', 'foxyblue', 'gloutsch', 'gthomas-slack@slack', 'harsham4026', 'kination@line', 'ljharb@tc39', 'matthewwardrop@datascientistatnetflix', 'naoyak@airbnb']",5,10,"['airbnb', 'datascientistatnetflix', 'line', 'slack', 'tc39']","['@airbnb', '@line', '@tc39', 'Data Scientist at @Netflix', 'Slack']",,0.04,1,1,73,10,1,12,1,1.0,1.0,90.0,1.0,0,25.75513 +657,template,https://github.com/sqlalchemy/mako,,,,sqlalchemy/mako,mako,243,46,11,Python,https://www.makotemplates.org,Mako Templates for Python,sqlalchemy,2023-02-09,2018-11-26,221,1.0981278244028405,[],2023-01-03,59,"['CaselIT', 'bbangert@mozilla,nabucasa', 'bourke@iter8ve', 'donkopotamus', 'mindw', 'olduvaihand@google,inc', 'pjenvey@mozilla', 'vincent-ferotin', 'wichert@simplonb.v.', 'zzzeek@redhat']",6,10,"['google,inc', 'iter8ve', 'mozilla', 'mozilla,nabucasa', 'redhat', 'simplonb.v.']","['@mozilla, @NabuCasa', 'Google, Inc', 'Mozilla', 'Red Hat', 'Simplon B.V.', 'iter8ve']",,0.54,6,4,52,2,5,15,5,6.0,18.0,90.0,3.0,0,40.17338 +229,data,https://github.com/microsoft/genalog,,,,microsoft/genalog,genalog,243,24,10,Jupyter Notebook,https://microsoft.github.io/genalog/,"Genalog is an open source, cross-platform python package allowing generation of synthetic document images with custom degradations and text alignment capabilities.",microsoft,2023-02-13,2020-06-15,140,1.7321792260692463,"['ner', 'ocr-recognition', 'python', 'text-alignment', 'data-generation', 'data-science', 'machine-learning', 'synthetic-data', 'synthetic-images', 'synthetic-data-generation']",2023-02-14,5,"['dbanda@microsoft', 'jgc128', 'laserprec', 'microsoft-github-operations[bot]', 'microsoftopensource@microsoft']",1,10,['microsoft'],['Microsoft'],,0.04,1,1,33,0,0,3,3,1.0,0.0,90.0,0.0,0,20.49959 +276,crypto,https://github.com/ethtx/ethtx_ce,,,,ethtx/ethtx_ce,ethtx_ce,241,60,13,Python,https://ethtx.info,ethtx_ce: Ethereum transaction decoder (community version).,ethtx,2023-02-12,2021-07-26,82,2.9288194444444446,[],2022-12-22,7,"['dudzicz@tokenflowinsights', 'feld', 'kchojn@py-world', 'piotr-rudnik', 'tmierzwa@tokenflowinsights', 'wolololol', 'zdumitru']",2,10,"['py-world', 'tokenflowinsights']","['Py-World', 'Token Flow Insights']",,0.6,9,8,19,2,0,0,0,9.0,2.0,90.0,0.2,0,20.47013 +588,data,https://github.com/tokern/data-lineage,,,,tokern/data-lineage,data-lineage,241,28,8,Python,https://tokern.io/data-lineage/,data-lineage: Generate and Visualize Data Lineage from query history,tokern,2023-02-04,2020-03-17,153,1.5736940298507462,"['data-lineage', 'data-governance', 'python', 'postgresql', 'jupyter']",2022-05-02,4,"['dependabot[bot]', 'dorianj', 'vrajat']",0,10,[],[],,0.04,6,1,36,10,0,9,9,6.0,1.0,90.0,0.2,0,14.19444 +83,ml,https://github.com/stan-dev/pystan,,,,stan-dev/pystan,pystan,240,46,13,Python,,"PyStan, a Python interface to Stan, a platform for statistical modeling. Documentation: https://pystan.readthedocs.io",stan-dev,2023-02-16,2017-09-17,283,0.8467741935483871,[],2022-11-26,11,"['MichaelClerx@universityofnottingham', 'ahartikainen@lumoanalytics', 'amas0', 'asottile', 'jburroni', 'jgabry@columbiauniversitystan-dev', 'mjcarter95', 'riddell-stan', 'smoh']",3,10,"['columbiauniversitystan-dev', 'lumoanalytics', 'universityofnottingham']","['@lumoanalytics ', 'Columbia University @stan-dev', 'University of Nottingham']",,0.35,5,1,66,3,0,4,4,5.0,2.0,90.0,0.4,0,27.10742 +923,gis,https://github.com/giswqs/aws-open-data-geo,,,,giswqs/aws-open-data-geo,aws-open-data-geo,234,6,9,Python,,aws-open-data-geo: A list of open geospatial datasets on AWS,giswqs,2023-02-20,2022-12-18,9,24.818181818181817,"['aws', 'environment', 'geospatial', 'mapping', 'open-data', 'satellite-imagery', 'sustainability']",2023-02-18,2,"['actions-user@actions', 'giswqs@universityoftennessee']",2,10,"['actions', 'universityoftennessee']","['@actions', 'University of Tennessee']",,0.75,1,0,2,0,0,0,0,1.0,4.0,90.0,4.0,0,19.38091 +865,ml-ops,https://github.com/astronomer/astro-sdk,,,,astronomer/astro-sdk,astro-sdk,230,31,14,Python,https://astro-sdk-python.rtfd.io/,"astro-sdk: Astro SDK allows rapid and clean development of {Extract, Load, Transform} workflows using Python and SQL, powered by Apache Airflow.",astronomer,2023-02-20,2021-12-06,63,3.63431151241535,"['python', 'sql', 'pandas', 'airflow', 'sqlite', 'bigquery', 'postgres', 'snowflake', 'gcs', 's3', 'etl', 'elt', 'dags', 'workflows', 'data-analysis', 'data-science', 'apache-airflow']",2023-02-21,32,"['dimberman@astronomerio', 'feluelle@astronomer', 'kaxil@astronomer', 'pankajastro@astronomer', 'pankajkoti@astronomer', 'pre-commit-ci[bot]', 'rajaths010494', 'sunank200@astronomer', 'tatiana@astronomer', 'utkarsharma2@astronomer']",2,10,"['astronomer', 'astronomerio']","['@astronomer', '@astronomer ', '@astronomerio', 'Astronomer']",,15.13,628,492,15,0,41,54,41,628.0,770.0,90.0,1.2,0,44.54659 +933,nlp,https://github.com/lucidrains/medical-chatgpt,,,,lucidrains/medical-chatgpt,medical-chatgpt,227,19,25,Python,,"medical-chatgpt: Implementation of ChatGPT, but tailored towards primary care medicine, with the reward being able to collect patient histories in a thorough and efficient manner and come up with a reasonable differential diagnosis",lucidrains,2023-02-20,2022-12-10,10,21.472972972972972,"['artificial-intelligence', 'attention-mechanisms', 'deep-learning', 'transformers', 'medicine']",2023-02-12,2,"['ell-hol@orange', 'lucidrains']",1,10,['orange'],['Orange'],,0.21,2,2,2,0,0,0,0,2.0,0.0,90.0,0.0,0,10.9728 +274,data,https://github.com/amzn/ion-python,,,,amzn/ion-python,ion-python,223,49,25,Python,https://amazon-ion.github.io/ion-docs/,ion-python: A Python implementation of Amazon Ion.,amzn,2023-02-21,2016-04-07,358,0.6214171974522293,[],2023-02-14,25,"['Antrikshy@amazon', 'almann', 'cheqianh@amazon', 'daniel-butler', 'dlurton@amzn', 'mijamo911@nope', 'popematt@amzn', 'rmarrowstone@amazon', 'rubcuevas', 'tgregg']",3,10,"['amazon', 'amzn', 'nope']","['@amzn ', 'Amazon', 'Nope']",,0.38,25,13,84,0,3,2,3,25.0,11.0,90.0,0.4,0,35.22364 +491,gis,https://github.com/cogeotiff/rio-cogeo,,,,cogeotiff/rio-cogeo,rio-cogeo,218,31,44,Python,https://cogeotiff.github.io/rio-cogeo/,rio-cogeo: Cloud Optimized GeoTIFF creation and validation plugin for rasterio,cogeotiff,2023-02-10,2018-03-09,258,0.8426283821093319,"['satellite', 'cog', 'geotiff', 'rasterio', 'cogeotiff']",2022-10-26,13,"['drnextgis@satellogic', 'geospatial-jeff@regrowag', 'j08lue@developmentseed', 'kant', 'kylebarron', 'perliedman@solvi', 'pierotofy@uav4geo', 'rukku@phl-microsatdpad', 'sgillies@planetlabs', 'vincentsarago@developmentseed']",7,10,"['developmentseed', 'phl-microsatdpad', 'planetlabs', 'regrowag', 'satellogic', 'solvi', 'uav4geo']","['@developmentseed ', '@planetlabs', '@regrowag', '@satellogic', 'Development Seed', 'PHL-Microsat DPAD', 'Solvi', 'UAV4GEO']",,0.52,3,1,60,4,0,12,12,3.0,14.0,90.0,4.7,0,37.74126 +249,sim,https://github.com/bilhim/trafficsimulator,,,,bilhim/trafficsimulator,trafficSimulator,217,81,16,Python,,bilhim/trafficsimulator,bilhim,2023-02-19,2021-09-05,76,2.839252336448598,[],2021-09-07,2,"['BilHim', 'hamolicious']",0,10,[],[],,0.0,1,0,18,18,0,0,0,1.0,0.0,90.0,0.0,0,3.51364 +337,util,https://github.com/mrabarnett/mrab-regex,,,,mrabarnett/mrab-regex,mrab-regex,214,27,6,C,,mrabarnett/mrab-regex,mrabarnett,2023-02-19,2020-11-02,120,1.7790973871733966,[],2022-10-31,9,"['animalize', 'gpshead@google', 'mrabarnett', 'zsol@facebook']",2,10,"['facebook', 'google']","['@facebook ', 'Google']",,0.25,7,3,28,4,0,6,6,7.0,12.0,90.0,1.7,0,26.52439 +520,gis,https://github.com/lydorn/polygonization-by-frame-field-learning,,,,lydorn/polygonization-by-frame-field-learning,Polygonization-by-Frame-Field-Learning,214,54,11,Python,,Polygonization-by-Frame-Field-Learning: This repository contains the code for our fast polygonal building extraction from overhead images pipeline.,lydorn,2023-02-18,2020-05-26,143,1.4950099800399201,"['segmentation', 'polygonization', 'remote', 'sensing', 'frame', 'field']",2022-12-09,1,['Lydorn'],0,10,[],[],,0.13,5,0,33,2,0,0,0,5.0,2.0,90.0,0.4,0,10.7437 +467,math,https://github.com/lukaszahradnik/pyneuralogic,,,,lukaszahradnik/pyneuralogic,PyNeuraLogic,214,17,5,Python,https://pyneuralogic.readthedocs.io/,PyNeuraLogic lets you use Python to create Differentiable Logic Programs,lukaszahradnik,2023-02-20,2020-12-06,115,1.853960396039604,"['machine-learning', 'deep-learning', 'graph-neural-networks', 'relational-learning', 'python', 'geometric-deep-learning', 'pytorch', 'logic-programming', 'differentiable-programming']",2023-02-20,3,"['GustikS@czechtechnicaluniversity', 'LukasZahradnik', 'joaquincabezas@adevinta']",2,10,"['adevinta', 'czechtechnicaluniversity']","['Adevinta', 'Czech Technical University']",,6.06,4,4,27,0,18,17,18,4.0,7.0,90.0,1.8,0,32.56937 +981,util,https://github.com/google/pyglove,1.0,,,google/pyglove,pyglove,212,8,6,Python,,pyglove: Manipulating Python Programs,google,2023-02-20,2022-05-12,40,5.188811188811189,"['automl', 'evolution', 'machine-learning', 'meta-learning', 'meta-programming', 'symbolic-programming', 'manipulation', 'python']",2023-02-08,5,"['D-X-Y@google', 'daiyip', 'rchen152', 'sinopalnikov', 'xingyousong@googlebrain']",2,10,"['google', 'googlebrain']","['Google', 'Google Brain']",,2.21,29,27,9,0,3,5,3,29.0,14.0,90.0,0.5,0,26.81938 +819,time-series,https://github.com/salesforce/deeptime,,,,salesforce/deeptime,DeepTime,207,32,7,Python,,PyTorch code for DeepTime: Deep Time-Index Meta-Learning for Non-Stationary Time-Series Forecasting,salesforce,2023-02-20,2022-06-27,34,6.0375,"['deep-learning', 'forecasting', 'meta-learning', 'time-series', 'time-series-forecasting', 'time-series-regression', 'implicit-neural-representation']",2022-11-03,2,"['dependabot[bot]', 'gorold']",0,10,[],[],,0.21,4,1,8,4,0,0,0,4.0,5.0,90.0,1.2,0,9.73728 +243,ml,https://github.com/carla-recourse/carla,,,,carla-recourse/carla,CARLA,206,48,5,Python,,CARLA: A Python Library to Benchmark Algorithmic Recourse and Counterfactual Explanation Algorithms,carla-recourse,2023-02-08,2020-12-09,115,1.791304347826087,"['python', 'machine-learning', 'artificial-intelligence', 'explainable-ai', 'explainable-ml', 'explainability', 'counterfactual-explanations', 'counterfactuals', 'counterfactual', 'recourse', 'benchmark', 'benchmarking', 'tensorflow', 'tensorflow2', 'pytorch']",2023-02-21,7,"['JohanvandenHeuvel', 'Philoso-Fish', 'Voulgaris-Sot', 'ah-ansari', 'aredelmeier', 'indyfree@bezerocarbon']",1,10,['bezerocarbon'],['@BeZeroCarbon '],,0.67,8,5,27,0,0,0,0,8.0,0.0,90.0,0.0,0,20.94776 +733,ml,https://github.com/autonlab/auton-survival,,,,autonlab/auton-survival,auton-survival,206,51,7,Python,http://autonlab.github.io/auton-survival,"auton-survival: Auton Survival - an open source package for Regression, Counterfactual Estimation, Evaluation and Phenotyping with Censored Time-to-Events ",autonlab,2023-02-21,2020-04-01,151,1.3642384105960266,"['survival-analysis', 'reliability-analysis', 'python', 'data-science', 'deep-learning', 'machine-learning', 'time-to-event', 'counterfactual-inference', 'regression', 'causal-inference', 'graphical-models']",2022-11-05,10,"['Jeanselme@universityofcambridge', 'PotosnakW', 'chiragnagpal@carnegiemellonuniversity', 'chufangao@carnegiemellonuniversity', 'haivanle', 'kishanmaharaj@indianinstituteoftechnologybombay', 'shikhareddy']",3,10,"['carnegiemellonuniversity', 'indianinstituteoftechnologybombay', 'universityofcambridge']","['Carnegie Mellon University', 'Indian Institute Of Technology Bombay ', 'University of Cambridge']",,2.23,4,3,35,4,0,0,0,4.0,7.0,90.0,1.8,0,26.70285 +240,sim,https://github.com/nv-tlabs/gamegan_code,,,,nv-tlabs/gamegan_code,GameGAN_code,205,34,10,Python,,GameGAN_code: Learning to Simulate Dynamic Environments with GameGAN (CVPR 2020),nv-tlabs,2023-02-20,2020-12-11,114,1.7870485678704857,[],2021-11-11,2,"['daniel-kukiela', 'seung-kim']",0,10,[],[],,0.0,0,0,27,16,0,0,0,0.0,0.0,90.0,0.0,0,4.25902 +859,jupyter,https://github.com/jupyter/nbformat,,,,jupyter/nbformat,nbformat,204,143,25,Python,http://nbformat.readthedocs.io/,nbformat: Reference implementation of the Jupyter Notebook format,jupyter,2023-02-11,2015-04-09,410,0.4965229485396384,[],2023-02-17,74,"['Carreau@quansight-labs', 'MSeal@noteable-io', 'blink1073@mongodb', 'ellisonbg@amazonwebservices', 'jdfreder@google', 'jhamrick', 'minrk@simularesearchlaboratory', 'mpacer@netflix', 'pre-commit-ci[bot]', 'takluyver']",7,10,"['amazonwebservices', 'google', 'mongodb', 'netflix', 'noteable-io', 'quansight-labs', 'simularesearchlaboratory']","['@Quansight-Labs', '@google ', '@noteable-io', 'Amazon Web Services', 'MongoDB', 'Netflix', 'Simula Research Laboratory']",,3.5,22,18,96,0,12,4,12,22.0,6.0,90.0,0.3,0,45.80314 +456,gis,https://github.com/graal-research/deepparse,,,,graal-research/deepparse,deepparse,203,23,4,Python,https://deepparse.org/,Deepparse is a state-of-the-art library for parsing multinational street addresses using deep learning,graal-research,2023-02-20,2020-07-01,138,1.4710144927536233,"['machine-learning', 'python', 'addresses-parsing']",2023-02-20,6,"['GameSetAndMatch@baseline', 'MAYAS3', 'davebulaval@baseline.québec', 'dependabot[bot]', 'freud14', 'yogeshchandrasekharuni']",2,10,"['baseline', 'baseline.québec']","['Baseline.québec', 'baseline']",,3.35,14,14,32,0,15,17,15,14.0,1.0,90.0,0.1,0,30.94 +836,gis,https://github.com/r-barnes/richdem,,,,r-barnes/richdem,richdem,199,59,14,C++,,richdem: High-performance Terrain and Hydrology Analysis ,r-barnes,2023-02-17,2013-01-06,528,0.376588267099216,"['digital-elevation-model', 'geosciences', 'geospatial', 'hydrology', 'hydrologic-modeling', 'big-data']",2022-11-18,4,"['benbovy', 'mcflugen@universityofcolorado', 'r-barnes', 'tbartholomaus@universityofidaho']",2,10,"['universityofcolorado', 'universityofidaho']","['University of Colorado', 'University of Idaho']",,0.56,8,1,123,3,0,2,2,8.0,2.0,90.0,0.2,0,23.68795 +207,util,https://github.com/aws/aws-lambda-python-runtime-interface-client,,,,aws/aws-lambda-python-runtime-interface-client,aws-lambda-python-runtime-interface-client,195,48,15,Python,,aws/aws-lambda-python-runtime-interface-client,aws,2023-02-10,2020-09-02,129,1.5116279069767442,[],2023-02-16,23,"['SukanyaHanumanthu@356', 'aboelhamd@aws', 'adamchainz@django,djangolondon', 'amazon-auto@amazon', 'carlzogh@amazonwebservices', 'keshayad@amazonwebservices', 'preearor', 'smirnoal', 'stefanbotez', 'zsombor-balogh']",5,10,"['356', 'amazon', 'amazonwebservices', 'aws', 'django,djangolondon']","['356', '@aws', '@django, @djangolondon', 'Amazon', 'Amazon Web Services']",,0.37,8,2,30,0,0,2,2,8.0,4.0,90.0,0.5,0,32.48782 +954,diffusion,https://github.com/lunarring/latentblending,,,,lunarring/latentblending,latentblending,194,18,11,Python,,"latentblending: Create butter-smooth transitions between prompts, powered by stable diffusion",lunarring,2023-02-20,2022-11-19,13,14.294736842105262,"['animation', 'diffusion', 'stable-diffusion']",2023-02-21,9,"['brianfitzgerald', 'jjnnss', 'lunarring', 'maxlund']",0,10,[],[],,3.12,8,7,3,0,0,0,0,8.0,27.0,90.0,3.4,0,21.41306 +899,gis,https://github.com/kuanb/peartree,,,,kuanb/peartree,peartree,192,17,13,Python,,peartree: A library for converting transit data into a directed graph for sketch network analysis.,kuanb,2023-02-16,2017-11-12,275,0.6970954356846473,"['network-analysis', 'transit', 'graphs', 'gtfs', 'spatial-analysis', 'gis', 'modeling']",2021-01-18,5,"['bryanculbertson@eradb', 'd3netxer', 'kuanb@mapbox', 'pitrz']",2,10,"['eradb', 'mapbox']","['@eradb ', '@mapbox']",,0.0,2,0,64,25,0,3,3,2.0,0.0,90.0,0.0,0,15.82059 +446,gis,https://github.com/pysal/spopt,,,,pysal/spopt,spopt,187,34,13,Python,https://pysal.org/spopt/,spopt: Spatial Optimization,pysal,2023-02-13,2019-03-01,207,0.9002751031636864,"['spatial-optimization', 'regionalization', 'facility-location', 'routing', 'transportation', 'spatial-analysis', 'location-allocation', 'location-modeling', 'resource-planning', 'python']",2023-02-13,17,"['TimMcCauley', 'dependabot[bot]', 'erinrolson', 'gegen07', 'jGaboardi@ornl', 'knaaptime@center-for-open-geographical-science', 'pre-commit-ci[bot]', 'rwei5', 'sjsrey@centerforopengeographicalscience', 'xf37@universityofoklahoma']",4,10,"['center-for-open-geographical-science', 'centerforopengeographicalscience', 'ornl', 'universityofoklahoma']","['@center-for-open-geographical-science', 'Center for Open Geographical Science', 'ORNL', 'University of Oklahoma']",,6.63,57,43,48,0,6,4,6,57.0,79.0,90.0,1.4,0,41.4941 +339,perf,https://github.com/tlkh/tf-metal-experiments,,,,tlkh/tf-metal-experiments,tf-metal-experiments,187,19,11,Jupyter Notebook,,tf-metal-experiments: TensorFlow Metal Backend on Apple Silicon Experiments (just for fun),tlkh,2023-02-21,2021-10-26,69,2.7045454545454546,"['gpu', 'deep-learning', 'tensorflow', 'm1', 'm1-max', 'benchmark', 'bert']",2021-11-15,2,"['mend-bolt-for-github[bot]', 'tlkh@singaporeuniversityoftechnologyanddesign']",1,10,['singaporeuniversityoftechnologyanddesign'],['Singapore University of Technology and Design'],,0.0,2,0,16,15,0,0,0,2.0,0.0,90.0,0.0,0,7.34315 +266,nlp,https://github.com/allenai/s2orc-doc2json,,,,allenai/s2orc-doc2json,s2orc-doc2json,181,34,6,Python,,"s2orc-doc2json: Parsers for scientific papers (PDF2JSON, TEX2JSON, JATS2JSON)",allenai,2023-02-06,2020-12-10,114,1.5758706467661692,[],2022-12-09,9,"['Kabongosalomon@universityofhannover,l3sandtib', 'TrellixVulnTeam', 'a3nm', 'castedo@castedo.com', 'gabrielmbmb', 'kyleclo@allenai', 'lucylw', 'nayha-auradkar', 'tsogi']",3,10,"['allenai', 'castedo.com', 'universityofhannover,l3sandtib']","['@allenai ', 'University of Hannover, L3S and TIB', 'castedo.com']",,0.12,3,2,27,2,0,0,0,3.0,1.0,90.0,0.3,0,21.66414 +585,gis,https://github.com/spatialucr/geosnap,,,,spatialucr/geosnap,geosnap,181,28,17,Python,https://spatialucr.github.io/geosnap-guide,geosnap: The Geospatial Neighborhood Analysis Package,spatialucr,2023-02-14,2018-09-19,231,0.7835497835497836,[],2023-01-25,9,"['AnGWar26@mansueto-institute', 'jGaboardi@ornl', 'knaaptime@center-for-open-geographical-science', 'ljwolf@geogbristol', 'renanxcortes', 'sjsrey@centerforopengeographicalscience', 'suhanmappingideas', 'weikang9009@universityofnorthtexas']",6,10,"['center-for-open-geographical-science', 'centerforopengeographicalscience', 'geogbristol', 'mansueto-institute', 'ornl', 'universityofnorthtexas']","['@center-for-open-geographical-science', '@geogbristol ', '@mansueto-institute', 'Center for Open Geographical Science', 'ORNL', 'University of North Texas']",,0.98,10,4,54,1,4,6,4,10.0,20.0,90.0,2.0,0,35.50316 +461,nlp,https://github.com/yoadtew/zero-shot-image-to-text,,,,yoadtew/zero-shot-image-to-text,zero-shot-image-to-text,181,26,7,Python,,zero-shot-image-to-text: Implementation of Zero-Shot Image-to-Text Generation for Visual-Semantic Arithmetic,yoadtew,2023-02-19,2021-11-26,64,2.7969094922737305,[],2022-09-17,6,"['YoadTew', 'chenxwh', 'idansc', 'itsyoavshalev']",0,10,[],[],,0.1,3,1,15,5,0,0,0,3.0,0.0,90.0,0.0,0,9.38013 +731,gis,https://github.com/bowenc0221/boundary-iou-api,,,,bowenc0221/boundary-iou-api,boundary-iou-api,178,19,8,Python,,boundary-iou-api: Boundary IoU API (Beta version),bowenc0221,2023-01-12,2021-03-29,99,1.7928057553956835,[],2021-04-05,2,"['bowenc0221', 'ppwwyyxx']",0,10,[],[],,0.0,0,0,23,23,0,0,0,0.0,0.0,90.0,0.0,0,3.03493 +33,gis,https://github.com/jasonrig/address-net,,,,jasonrig/address-net,address-net,175,73,13,Python,,address-net: A package to structure Australian addresses,jasonrig,2023-02-20,2018-12-05,220,0.7954545454545454,"['rnn', 'deep-learning', 'machine-learning', 'address-parser']",2020-09-09,2,"['Stallon-niranjan@deceptiveai', 'jasonrig@monash-mercpay-baymax']",2,10,"['deceptiveai', 'monash-mercpay-baymax']","['@monash-merc @Pay-Baymax', 'Deceptive AI']",,0.0,1,0,51,30,0,0,0,1.0,0.0,90.0,0.0,0,10.17262 +415,ml-dl,https://github.com/rafiqhasan/auto-tensorflow,,,,rafiqhasan/auto-tensorflow,auto-tensorflow,174,34,13,Python,,auto-tensorflow: Build Low Code Automated Tensorflow explainable models in just 3 lines of code. Library created by: Hasan Rafiq - https://www.linkedin.com/in/sam04/,rafiqhasan,2023-02-17,2021-07-05,85,2.040201005025126,"['tensorflow', 'deeplearning', 'neural-networks', 'machinelearning', 'tfx', 'machine-learning', 'automl', 'auto-tensorflow', 'autotensorflow']",2022-12-09,1,['rafiqhasan@google'],1,10,['google'],['Google'],,0.1,0,0,20,2,2,5,2,0.0,0.0,90.0,0.0,0,12.21225 +948,nlp,https://github.com/ibm/transition-amr-parser,,,,ibm/transition-amr-parser,transition-amr-parser,173,39,9,Python,,transition-amr-parser: SoTA Abstract Meaning Representation (AMR) parsing with word-node alignments in Pytorch. Includes checkpoints and other tools such as statistical significance Smatch.,ibm,2023-02-10,2019-10-08,176,0.9821573398215734,"['machine-learning', 'nlp', 'semantic-parsing', 'amr', 'amr-parser', 'abstract-meaning-representation', 'amr-parsing', 'amr-graphs']",2023-02-01,15,"['cpendus', 'gangiswag', 'jzhou316', 'kant', 'kjbarker-work', 'mrdrozdov', 'ramon-astudillo@ibm', 'sadhana01', 'tahira', 'ysuklee@github.com/ibm']",2,10,"['github.com/ibm', 'ibm']","['@IBM', 'github.com/IBM']",,5.83,9,6,41,1,0,4,4,9.0,9.0,90.0,1.0,0,32.53758 +901,gis,https://github.com/amazon-science/earth-forecasting-transformer,,,,amazon-science/earth-forecasting-transformer,earth-forecasting-transformer,171,29,10,Jupyter Notebook,,earth-forecasting-transformer: Official implementation of Earthformer,amazon-science,2023-02-19,2022-09-12,23,7.343558282208589,[],2023-02-03,6,"['amazon-auto@amazon', 'bryanyzhu@amazonai', 'gaozhihan@hongkonguniversityofscienceandtechnology', 'giswqs@universityoftennessee', 'sxjscience@amazonwebservices', 'vitusbenson']",5,10,"['amazon', 'amazonai', 'amazonwebservices', 'hongkonguniversityofscienceandtechnology', 'universityoftennessee']","['Amazon', 'Amazon AI', 'Amazon Web Services', 'Hong Kong University of Science and Technology', 'University of Tennessee']",,0.77,15,13,5,1,0,0,0,15.0,7.0,90.0,0.5,0,23.2917 +955,diffusion,https://github.com/coyote-a/ultimate-upscale-for-automatic1111,,,,coyote-a/ultimate-upscale-for-automatic1111,ultimate-upscale-for-automatic1111,170,14,4,Python,,coyote-a/ultimate-upscale-for-automatic1111,coyote-a,2023-02-21,2023-01-02,7,23.333333333333332,[],2023-02-07,4,"['Coyote-A', 'Danamir', 'Jopezzia']",0,10,[],[],,1.19,33,16,2,0,0,0,0,33.0,83.0,90.0,2.5,0,18.18387 +959,util,https://github.com/cqcl/tket,,,,cqcl/tket,tket,167,30,14,C++,,"tket: Source code for the TKET quantum compiler, Python bindings and utilities",cqcl,2023-02-18,2021-09-13,75,2.218216318785579,"['quantum-computing', 'compiler']",2023-02-20,22,"['CalMacCQ@quantinuum', 'Roland-djee', 'aborgna-q@quantinuum', 'cqc-alec', 'cqc-melf', 'lmondada@cambridgequantumcomputing', 'sjdilkes', 'ss2165@quantinuum', 'willsimmons1465@cambridgequantumcomputing', 'yao-cqc']",2,10,"['cambridgequantumcomputing', 'quantinuum']","['Cambridge Quantum Computing', 'Quantinuum']",,7.48,109,95,18,0,53,57,53,109.0,58.0,90.0,0.5,0,38.91665 +743,study,https://github.com/koaning/calm-notebooks,,,,koaning/calm-notebooks,calm-notebooks,166,150,7,Jupyter Notebook,https://calmcode.io,calm-notebooks: notebooks that are used at calmcode.io,koaning,2023-02-07,2020-03-01,155,1.068014705882353,[],2021-10-21,1,['koaning@explosion'],1,10,['explosion'],['@explosion'],,0.0,0,0,36,16,0,0,0,0.0,0.0,90.0,0.0,0,7.2234 +890,graph,https://github.com/h4kor/graph-force,,,,h4kor/graph-force,graph-force,163,0,9,Rust,https://pypi.org/project/graph-force/,"graph-force: Python library for embedding large graphs in 2D space, using force-directed layouts.",h4kor,2023-02-16,2022-11-28,12,13.267441860465116,"['force-directed-graphs', 'graph-algorithms', 'python', 'python3']",2022-11-28,2,['H4kor'],0,10,[],[],,0.77,4,0,3,3,0,0,0,4.0,0.0,90.0,0.0,0,5.11876 +775,sim,https://github.com/activitysim/activitysim,,,,activitysim/activitysim,activitysim,150,87,42,Jupyter Notebook,https://activitysim.github.io,activitysim: An Open Platform for Activity-Based Travel Modeling,activitysim,2023-02-15,2014-06-18,453,0.33112582781456956,"['python', 'travel-modeling', 'data-science', 'bsd-3-clause', 'microsimulation', 'activitysim']",2023-01-31,31,"['JoeJimFlood', 'bstabler@ptvgroup', 'chesterharvey', 'dhensle', 'fscottfoti@populus-aimapcraftlabsoaklandanalytics', 'jiffyclub@populus-ai', 'jpn--@cambridgesystematics|georgiatech', 'mxndrwgrdnr', 'nick-fournier-rsg@rsg', 'toliwaga']",5,10,"['cambridgesystematics|georgiatech', 'populus-ai', 'populus-aimapcraftlabsoaklandanalytics', 'ptvgroup', 'rsg']","['@populus-ai ', '@populus-ai @mapcraftlabs @oaklandanalytics ', 'Cambridge Systematics | Georgia Tech', 'PTV Group', 'RSG Inc.']",,14.88,55,35,106,1,5,2,5,55.0,56.0,90.0,1.0,0,44.23018 +606,util,https://github.com/pyscript/pyscript-cli,,,,pyscript/pyscript-cli,pyscript-cli,146,14,12,Python,,pyscript-cli: A CLI for PyScript,pyscript,2023-02-19,2022-05-01,42,3.441077441077441,[],2023-02-20,8,"['KennyOliver@sixthformcsstudent', 'anaconda-renovate-bot', 'fpliger', 'mattkram@anaconda', 'ntoll', 'ozanturker', 'pre-commit-ci[bot]', 'pww217']",2,10,"['anaconda', 'sixthformcsstudent']","['Anaconda, Inc.', 'Sixth Form CS Student']",,1.58,34,26,10,0,0,7,7,34.0,17.0,90.0,0.5,0,29.11971 +869,util,https://github.com/hugovk/pypistats,,,,hugovk/pypistats,pypistats,145,26,4,Python,https://pypistats.org/api/,pypistats: Command-line interface to PyPI Stats API to get download stats for Python packages,hugovk,2023-02-15,2018-09-22,230,0.6288723667905824,"['python', 'python3', 'pypi', 'statistics', 'stats', 'api', 'cli', 'command-line', 'command-line-tool', 'downloads', 'hacktoberfest']",2023-02-14,12,"['CozyDoomer', 'banesullivan@kitware', 'cclauss@christianclauss', 'dependabot-preview[bot]', 'dependabot[bot]', 'erayerdin', 'github-actions[bot]', 'hugovk@nordsoftware', 'pre-commit-ci[bot]', 'renovate[bot]']",3,10,"['christianclauss', 'kitware', 'nordsoftware']","['@Kitware', 'Christian Clauss', 'Nord Software']",,1.52,16,15,54,0,3,6,3,16.0,14.0,90.0,0.9,0,34.36093 +936,ml,https://github.com/jonasgeiping/breaching,,,,jonasgeiping/breaching,breaching,144,32,3,Python,,Breaching privacy in federated learning scenarios for vision and text,jonasgeiping,2023-02-19,2022-02-15,53,2.7096774193548385,"['security', 'machine-learning', 'pytorch', 'federated-learning', 'decentralized-learning', 'privacy-audit']",2023-02-09,17,"['JonasGeiping@computerscienceatumd', 'YuxinWenRick@universityofmaryland', 'lhfowl']",2,10,"['computerscienceatumd', 'universityofmaryland']","['Computer Science at UMD', 'University of Maryland']",,0.88,1,1,12,0,0,0,0,1.0,1.0,90.0,1.0,0,24.64049 +231,template,https://github.com/crmne/cookiecutter-modern-datascience,,,,crmne/cookiecutter-modern-datascience,cookiecutter-modern-datascience,142,29,3,Python,,cookiecutter-modern-datascience: Start a data science project with modern tools,crmne,2023-01-15,2020-07-06,137,1.0343392299687826,"['cookiecutter', 'cookiecutter-template', 'cookiecutter-data-science', 'python', 'datascience']",2022-06-10,2,"['crmne@freshflowai', 'dependabot[bot]']",1,10,['freshflowai'],['@freshflowai'],,0.02,5,0,32,9,0,0,0,5.0,1.0,90.0,0.2,0,11.40933 +785,util,https://github.com/brokenloop/jsontopydantic,,,,brokenloop/jsontopydantic,jsontopydantic,140,8,3,TypeScript,https://jsontopydantic.com,jsontopydantic: Web tool for generating Pydantic models from JSON objects,brokenloop,2023-02-04,2020-11-28,116,1.2009803921568627,[],2022-05-13,2,"['brokenloop', 'matthieudesprez']",0,10,[],[],,0.06,2,0,27,9,0,0,0,2.0,0.0,90.0,0.0,0,6.41868 +466,nlp,https://github.com/infinitylogesh/mutate,,,,infinitylogesh/mutate,mutate,140,11,3,Python,,mutate: A library to synthesize text datasets using Large Language Models (LLM),infinitylogesh,2023-02-16,2021-12-29,60,2.3333333333333335,"['nlp-library', 'text-generation', 'language-model', 'data-augmentation', 'data-labeling']",2023-01-17,2,"['davidberenstein1957@argilla-io', 'infinitylogesh']",1,10,['argilla-io'],['@argilla-io '],,0.23,3,3,14,1,0,0,0,3.0,7.0,90.0,2.3,0,18.71194 +774,sim,https://github.com/openfisca/openfisca-core,,,,openfisca/openfisca-core,openfisca-core,139,70,24,Python,https://openfisca.org,openfisca-core: OpenFisca core engine. See other repositories for countries-specific code & data.,openfisca,2023-02-08,2013-12-29,477,0.29114302812687015,"['legislation-as-code', 'rules-as-code', 'better-rules', 'microsimulation']",2023-01-24,58,"['Anna-Livia', 'HAEKADI@codeworks', 'MattiSG', 'Morendil@codeworksfrance', 'benjello', 'clems', 'eraviart', 'fpagnoux', 'maukoquiroga', 'sandcha']",2,10,"['codeworks', 'codeworksfrance']","['@CodeWorksFrance', 'CodeWorks']",,3.0,52,31,111,1,0,42,42,52.0,69.0,90.0,1.3,0,43.44183 +564,gis,https://github.com/geopandas/pyogrio,,,,geopandas/pyogrio,pyogrio,139,10,9,Python,https://pyogrio.readthedocs.io,pyogrio: Vectorized vector I/O using OGR,geopandas,2023-02-19,2020-03-27,151,0.916195856873823,[],2023-02-08,9,"['EwoutH', 'TheBiggerGuy', 'brendan-ward@astutespruce', 'dependabot[bot]', 'jorisvandenbossche', 'martinfleis', 'theroggy', 'tqa236@descartesunderwriting', 'weiji14@developmentseed']",3,10,"['astutespruce', 'descartesunderwriting', 'developmentseed']","['@developmentseed', 'Astute Spruce, LLC', 'Descartes Underwriting']",,2.08,54,41,35,0,7,3,7,54.0,83.0,90.0,1.5,0,36.81719 +555,ml,https://github.com/nicolas-chaulet/torch-points3d,,,,nicolas-chaulet/torch-points3d,torch-points3d,133,32,0,,https://torch-points3d.readthedocs.io/en/latest/,torch-points3d: Pytorch framework for doing deep learning on point clouds.,nicolas-chaulet,2023-02-21,2022-01-09,58,2.2762836185819073,[],2021-12-10,29,"['CCInc@universityoftexasatdallas', 'daili650', 'ggrzeczkowicz', 'humanpose1', 'liubigli', 'loicland@strudel/ign', 'nicolas-chaulet@canoapbc', 'tchaton@lightning.ai|pytorchlightning', 'tristanheywood', 'zeliu98@microsoftresearchasia']",5,10,"['canoapbc', 'lightning.ai|pytorchlightning', 'microsoftresearchasia', 'strudel/ign', 'universityoftexasatdallas']","['@CanoaPBC', 'Lightning.ai | Pytorch Lightning', 'Microsoft Research Asia', 'STRUDEL/ IGN', 'University of Texas at Dallas']",,0.0,0,0,14,15,0,9,9,0.0,0.0,90.0,0.0,0,22.13799 +147,graph,https://github.com/guyallard/markov_clustering,,,,guyallard/markov_clustering,markov_clustering,133,34,9,Python,,markov_clustering: markov clustering in python,guyallard,2023-02-21,2017-09-27,282,0.4716312056737589,"['markov-clustering', 'clustering', 'python', 'networks']",2018-12-11,3,"['GuyAllard', 'jonahar']",0,10,[],[],,0.0,1,0,66,51,0,0,0,1.0,1.0,90.0,1.0,0,7.87128 +316,util,https://github.com/irmen/pyminiaudio,,,,irmen/pyminiaudio,pyminiaudio,128,16,3,C,,"pyminiaudio: python interface to the miniaudio audio playback, recording, decoding and conversion library",irmen,2023-02-14,2019-06-30,190,0.6721680420105026,[],2023-02-09,4,"['cameronmaske@closedlooplabs', 'irmen', 'martinosspa', 'shauneccles']",1,10,['closedlooplabs'],['Closed Loop Labs'],,0.4,4,1,44,0,6,9,6,4.0,9.0,90.0,2.2,0,27.75683 +290,template,https://github.com/eugeneyan/python-collab-template,,,,eugeneyan/python-collab-template,python-collab-template,127,37,4,Python,https://eugeneyan.com/writing/setting-up-python-project-for-automation-and-collaboration/,"python-collab-template: 🛠 Python project template with unit tests, code coverage, linting, type checking, Makefile wrapper, and GitHub Actions.",eugeneyan,2023-01-24,2020-06-21,139,0.9108606557377049,"['python', 'unit-testing', 'linting', 'type-checking', 'github-actions', 'makefile', 'coverage', 'hacktoberfest']",2022-07-02,2,"['eugeneyan@amzn', 'segunadelowo']",1,10,['amzn'],['@amzn'],,0.04,0,0,32,8,0,0,0,0.0,0.0,90.0,0.0,0,9.68979 +407,data,https://github.com/google/weather-tools,,,,google/weather-tools,weather-tools,125,27,15,Python,https://weather-tools.readthedocs.io/,weather-tools: Apache Beam pipelines to make weather data accessible and useful.,google,2023-02-14,2021-11-22,65,1.9146608315098468,"['python', 'apache-beam', 'weather']",2023-02-15,26,"['CillianFn', 'alxmrs', 'deepgabani8@infocuspinnovationspvt.ltd.', 'dlowell12', 'ksic8', 'mahrsee1997', 'pbattaglia', 'pramodg', 'sgreenberg@google', 'uhager']",2,10,"['google', 'infocuspinnovationspvt.ltd.']","['Google', 'Infocusp Innovations Pvt. Ltd.']",,1.79,48,29,15,0,5,7,5,47.0,25.0,90.0,0.5,0,32.99876 +835,typing,https://github.com/jellezijlstra/autotyping,,,,jellezijlstra/autotyping,autotyping,124,9,4,Python,,jellezijlstra/autotyping,jellezijlstra,2023-02-16,2021-06-25,86,1.42998352553542,[],2023-02-14,7,"['DmytroLitvinov@softformance', 'JelleZijlstra@quora', 'MarcoGorelli@quansight', 'hauntsaninja@openai', 'jakkdl', 'orsinium@sendcloud', 'sobolevn']",5,10,"['openai', 'quansight', 'quora', 'sendcloud', 'softformance']","['@OpenAI', '@quora ', '@sendcloud', '@softformance ', 'Quansight']",,0.35,15,14,20,0,2,2,2,15.0,25.0,90.0,1.7,0,32.47544 +305,util,https://github.com/xrudelis/pytrait,,,,xrudelis/pytrait,pytrait,123,3,3,Python,,pytrait: Traits for Python3,xrudelis,2023-02-15,2021-11-21,65,1.8799126637554586,[],2021-11-27,2,"['sobolevn', 'xrudelis']",0,10,[],[],,0.0,0,0,15,15,0,0,0,0.0,0.0,90.0,0.0,0,3.03493 +571,gis,https://github.com/developmentseed/geojson-pydantic,,,,developmentseed/geojson-pydantic,geojson-pydantic,122,28,11,Python,,geojson-pydantic: Pydantic data models for the GeoJSON spec,developmentseed,2023-02-21,2020-05-21,143,0.8480635551142006,"['geojson', 'pydantic', 'geojson-spec']",2023-02-10,19,"['dorianturba', 'drewbo@cloud-gov(work)+personalprojects;', 'eseglem@bigbear.ai', 'geospatial-jeff@regrowag', 'hawkaa@duneanalytics', 'iwpnd@tiermobility', 'moradology', 'regisfbrilhante', 'vincentsarago@developmentseed', 'yellowcap']",6,10,"['bigbear.ai', 'cloud-gov(work)+personalprojects;', 'developmentseed', 'duneanalytics', 'regrowag', 'tiermobility']","['@TierMobility ', '@cloud-gov (work) + personal projects; ', '@developmentseed ', '@duneanalytics', '@regrowag', 'BigBear.ai']",,1.44,24,17,34,0,0,5,5,24.0,53.0,90.0,2.2,0,40.41622 +583,web,https://github.com/developmentseed/fastai-serving,,,,developmentseed/fastai-serving,fastai-serving,121,11,8,Python,,"fastai-serving: A Docker image for serving fast.ai models, mimicking the API of Tensorflow Serving",developmentseed,2022-04-08,2019-07-01,190,0.6358858858858859,"['machine-learning', 'python', 'deep-learning', 'pytorch', 'docker']",2020-02-10,2,['drewbo@cloud-gov(work)+personalprojects;'],1,10,['cloud-gov(work)+personalprojects;'],['@cloud-gov (work) + personal projects; '],,0.0,0,0,44,37,0,0,0,0.0,0.0,90.0,0.0,0,6.85046 +973,data,https://github.com/nickreynke/python-gedcom,,,,nickreynke/python-gedcom,python-gedcom,121,31,16,Python,https://nickreynke.github.io/python-gedcom/gedcom/index.html,"python-gedcom: Python module for parsing, analyzing, and manipulating GEDCOM files",nickreynke,2023-02-17,2018-01-09,267,0.45294117647058824,"['python', 'gedcom', 'parser', 'gedcom-parser']",2021-06-03,16,"['KeithPetro', 'damonbrodie', 'joephayes@telegraphio', 'jonorthwash', 'madprime@openhumans', 'mameen', 'mtdcr', 'nickreynke', 'paulproteus@day:reduct.night:?!', 'scavone']",3,10,"['day:reduct.night:?!', 'openhumans', 'telegraphio']","['@OpenHumans ', '@telegraphio', 'Day: Reduct. Night: ?!']",,0.0,2,1,62,21,0,2,2,2.0,0.0,90.0,0.0,0,20.40746 +463,data,https://github.com/psycoguana/subredditmediadownloader,,,,psycoguana/subredditmediadownloader,SubredditMediaDownloader,112,8,3,Python,,SubredditMediaDownloader: Simple Python script to download images and videos from public subreddits without using Reddit's API 😎,psycoguana,2023-02-19,2022-02-18,52,2.124661246612466,[],2023-01-17,2,"['Psycoguana', 'coenvlietstra']",0,10,[],[],,0.37,3,3,12,1,0,0,0,3.0,12.0,90.0,4.0,0,16.90682 +893,sim,https://github.com/crowdbotp/socialways,,,,crowdbotp/socialways,socialways,111,45,9,Python,,socialways: Social Ways: Learning Multi-Modal Distributions of Pedestrian Trajectories with GANs (CVPR 2019),crowdbotp,2023-01-26,2019-04-23,200,0.5546038543897216,"['trajectory-prediction', 'human-trajectory-prediction', 'gan', 'social-navigation', 'social-ways', 'pedestrian-trajectories', 'pedestrian', 'social-gan', 'social-robots', 'generative-adversarial-network', 'trajectory-forecasting', 'self-driving-car', 'prediction-model', 'info-gan', 'crowd-simulation']",2020-03-20,3,"['amiryanj@inriaresearchcenter', 'franciscovalentecastro', 'jbhayet@cimat']",2,10,"['cimat', 'inriaresearchcenter']","['CIMAT', 'Inria Research Center']",,0.0,0,0,47,36,0,0,0,0.0,0.0,90.0,0.0,0,9.85825 +945,web,https://github.com/rawheel/fastapi-boilerplate,,,,rawheel/fastapi-boilerplate,fastapi-boilerplate,108,10,1,Python,,"fastapi-boilerplate: Dockerized FastAPI boiler plate similar to Django code structure with views, serializers(pydantic) and model( Sqlalchemy ORM) with dockerized database(PostgresSQL) and PgAdmin. 🚀 ",rawheel,2023-02-20,2022-12-28,8,13.5,"['alembic', 'boilerplate', 'docker', 'fastapi', 'fastapi-boilerplate', 'fastapi-sqlalchemy', 'postgresql', 'pydantic', 'python3', 'docker-compose', 'sqlalchemy', 'sqlalchemy-orm', 'poetry-python', 'orm']",2023-01-07,3,"['rawheel@github', 'sebastianmarines@clickit:devops&softwaredevelopment']",2,10,"['clickit:devops&softwaredevelopment', 'github']","['ClickIT: DevOps & Software Development', 'GitHub']",,0.27,1,1,2,2,0,0,0,1.0,0.0,90.0,0.0,0,10.58417 +847,gis,https://github.com/remotesensinglab/raster4ml,,,,remotesensinglab/raster4ml,raster4ml,105,12,4,Python,https://raster4ml.readthedocs.io,raster4ml: A geospatial raster processing library for machine learning,remotesensinglab,2023-02-09,2022-07-11,32,3.252212389380531,"['agriculture-research', 'data-science', 'geospatial-data', 'machine-learning', 'remote-sensing', 'vegetation', 'vegetation-index', 'python']",2022-11-01,1,['souravbhadra@saintlouisuniversity'],1,10,['saintlouisuniversity'],['Saint Louis University'],,0.96,0,0,8,4,1,2,1,0.0,0.0,90.0,0.0,0,9.14056 +527,ml,https://github.com/hazyresearch/domino,,,,hazyresearch/domino,domino,104,16,20,Python,,hazyresearch/domino,hazyresearch,2023-02-15,2021-11-29,64,1.6177777777777778,[],2022-08-02,6,['seyuboglu'],0,10,[],[],,1.08,0,0,15,7,1,5,1,0.0,0.0,90.0,0.0,0,9.56023 +533,gis,https://github.com/gdaosu/lod2buildingmodel,,,,gdaosu/lod2buildingmodel,LOD2BuildingModel,102,23,9,Python,,LOD2BuildingModel: SAT2LoD2: Automated LoD-2 Model Reconstruction from Satellite-derived DSM and Orthophoto,gdaosu,2023-02-19,2021-08-30,77,1.3197781885397413,[],2022-07-21,2,"['Ggs1mida', 'HeavenswordG@ohiostateuniversity']",1,10,['ohiostateuniversity'],['Ohio State University'],,0.44,2,0,18,7,0,0,0,2.0,2.0,90.0,1.0,0,12.8785 +667,gis,https://github.com/zorzi-s/polyworldpretrainednetwork,,,,zorzi-s/polyworldpretrainednetwork,PolyWorldPretrainedNetwork,101,15,7,Python,,PolyWorldPretrainedNetwork: PolyWorld: Polygonal Building Extraction with Graph Neural Networks in Satellite Images,zorzi-s,2023-02-19,2022-03-23,48,2.1041666666666665,[],2022-11-10,1,['zorzi-s'],0,10,[],[],,0.4,5,2,11,3,0,0,0,5.0,11.0,90.0,2.2,0,12.11452 +457,nlp,https://github.com/coastalcph/lex-glue,,,,coastalcph/lex-glue,lex-glue,101,24,6,Python,,lex-glue: LexGLUE: A Benchmark Dataset for Legal Language Understanding in English,coastalcph,2023-02-18,2021-09-27,73,1.3781676413255362,"['legal', 'nlp', 'benchmark', 'legaltech', 'lawtech']",2022-11-04,2,"['danigoju', 'iliaschalkidis']",0,10,[],[],,0.38,1,1,17,4,0,0,0,1.0,2.0,90.0,2.0,0,12.34477 +529,nlp,https://github.com/hazyresearch/fonduer-tutorials,,,,hazyresearch/fonduer-tutorials,fonduer-tutorials,97,25,18,Jupyter Notebook,https://github.com/HazyResearch/fonduer,fonduer-tutorials: A collection of simple tutorials for using Fonduer,hazyresearch,2023-02-05,2018-03-23,256,0.3778519755147468,[],2020-05-27,6,"['HiromuHota@https://snorkel.ai/', 'j-rausch', 'lukehsiao@numbersstationai', 'nicholaschiang@numbersstationai', 'rehanguha@vodafone', 'senwu']",3,10,"['https://snorkel.ai/', 'numbersstationai', 'vodafone']","['@NumbersStationAI', '@NumbersStationAI ', '@Vodafone', 'https://snorkel.ai/']",,0.0,0,0,60,33,0,2,2,0.0,0.0,90.0,0.0,0,15.5718 +746,data,https://github.com/ktrueda/parquet-tools,,,,ktrueda/parquet-tools,parquet-tools,96,12,3,Python,,parquet-tools: easy install parquet-tools,ktrueda,2023-02-18,2020-05-02,146,0.6549707602339181,"['parquet', 'parquet-tools', 'cli']",2023-01-18,12,"['dependabot[bot]', 'engstrom@discogs', 'exaspace', 'fabaff', 'jdblischak', 'ktrueda', 'mrdavidlaing@shopify', 'omo', 'sattler@tumi8', 'sbrandtb@fri-day']",4,10,"['discogs', 'fri-day', 'shopify', 'tumi8']","['@FRI-DAY ', '@Shopify ', '@discogs ', '@tumi8']",,0.19,7,5,34,1,2,6,2,7.0,4.0,90.0,0.6,0,28.92828 +781,gis,https://github.com/ghislainv/forestatrisk,,,,ghislainv/forestatrisk,forestatrisk,95,21,4,Python,https://ecology.ghislainv.fr/forestatrisk,forestatrisk: :package: :snake: Python package to model and forecast the risk of deforestation,ghislainv,2023-01-31,2016-12-01,324,0.29243623570800353,"['python', 'land-use-change', 'spatial-modelling', 'spatial-analysis', 'forecasting', 'spatial-autocorrelation', 'tropical-forests', 'roads', 'protected-areas', 'biodiversity-scenario', 'ipbes', 'co2-emissions', 'ipcc', 'forest-cover-change', 'deforestation', 'deforestation-risk', 'redd']",2022-08-23,6,"['12rambau@faoopenforis', 'danielskatz@uiuc', 'ethanwhite@weecology,univofflorida', 'ghislainv@cirad', 'kbarnhart', 'molgor@lancasteruniversity']",5,10,"['cirad', 'faoopenforis', 'lancasteruniversity', 'uiuc', 'weecology,univofflorida']","['@weecology, Univ of Florida ', 'Cirad', 'FAO @openforis', 'Lancaster University', 'UIUC']",,0.15,1,0,76,6,1,0,1,1.0,0.0,90.0,0.0,0,22.00262 +558,gis,https://github.com/darribas/gds_env,,,,darribas/gds_env,gds_env,93,36,9,Jupyter Notebook,https://darribas.org/gds_env,gds_env: A containerised platform for Geographic Data Science,darribas,2022-11-16,2016-08-12,340,0.2729559748427673,"['geographic-data-science', 'docker', 'python', 'r', 'latex', 'jupyter-lab']",2022-12-09,8,"['actions-user@actions', 'darribas', 'fcorowe@universityofliverpool', 'jreades@ucl', 'ljwolf@geogbristol', 'martinfleis', 'ocefpaf']",4,10,"['actions', 'geogbristol', 'ucl', 'universityofliverpool']","['@actions', '@geogbristol ', 'UCL', 'University of Liverpool']",,0.79,4,1,79,2,1,2,1,4.0,2.0,90.0,0.5,0,27.5601 +534,ml-dl,https://github.com/benedekrozemberczki/tigerlily,,,,benedekrozemberczki/tigerlily,tigerlily,91,9,1,Jupyter Notebook,,TigerLily: Finding drug interactions in silico with the Graph.,benedekrozemberczki,2022-12-30,2022-02-28,51,1.7743732590529249,"['node', 'embedding', 'node-embedding', 'graph-embedding', 'ddi', 'drug-drug-interaction', 'gradient-boosting', 'graph', 'pharmaceuticals', 'network-science', 'biology', 'heterogeneous-graph', 'knowledge-graph', 'deep-learning', 'machine-learning', 'unsupervised-learning', 'tigergraph', 'graph-database', 'graph-machine-learning']",2022-12-17,1,['benedekrozemberczki@isomorphiclabs'],1,10,['isomorphiclabs'],['@isomorphiclabs'],,1.98,0,0,12,2,1,1,1,0.0,0.0,90.0,0.0,0,12.00923 +744,ml-ops,https://github.com/aiqc/aiqc,,,,aiqc/aiqc,AIQC,91,20,4,Jupyter Notebook,,AIQC: End-to-end deep learning on your desktop or server.,aiqc,2023-02-18,2020-12-02,116,0.7844827586206896,[],2022-12-16,8,"['Bennylave', 'aiqc@aiqc', 'amoh-godwin@deuteronomyworks', 'layne-sadler@aiqc', 'sahilgupta2105']",2,10,"['aiqc', 'deuteronomyworks']","['AIQC', 'Deuteronomy Works']",,6.9,0,0,27,2,0,0,0,0.0,0.0,90.0,0.0,0,20.45884 +842,jupyter,https://github.com/cmudig/autoprofiler,,,,cmudig/autoprofiler,AutoProfiler,87,4,1,Svelte,,AutoProfiler: Automatically profile dataframes in the Jupyter sidebar,cmudig,2023-02-09,2022-03-24,47,1.817910447761194,"['jupyter', 'pandas', 'python']",2023-02-20,4,"['domoritz@cmu,apple', 'vaish399', 'willeppy@cmu', 'yuqizhang99']",2,10,"['cmu', 'cmu,apple']","['CMU', 'CMU, Apple']",,4.17,41,30,11,0,0,0,0,41.0,19.0,90.0,0.5,0,25.403 +485,gis,https://github.com/scisco/area,,,,scisco/area,area,87,20,3,Python,,area: Calculate the area inside of any GeoJSON geometry. This is a port of Mapbox's geojson-area for Python,scisco,2022-12-14,2015-11-25,378,0.23015873015873015,[],2018-10-31,3,"['lgw4', 'scisco']",0,10,[],[],,0.0,0,0,88,52,0,0,0,0.0,0.0,90.0,0.0,0,5.10122 +974,data,https://github.com/vmiklos/ged2dot,,,,vmiklos/ged2dot,ged2dot,87,17,6,Python,https://vmiklos.hu/ged2dot/,ged2dot: GEDCOM to Graphviz converter,vmiklos,2023-02-12,2013-11-01,485,0.17911764705882352,"['gedcom', 'dot', 'python', 'libreoffice']",2023-02-17,9,"['ColinChargy', 'bAndie91', 'dougstarfish@starfishstorage', 'drzraf', 'fetsorn', 'rgerkin@ozymandianindustries', 'schuellerf', 'vmiklos']",2,10,"['ozymandianindustries', 'starfishstorage']","['Ozymandian Industries', 'Starfish Storage']",,0.83,14,14,113,0,2,2,2,14.0,0.0,90.0,0.0,0,30.09989 +562,gis,https://github.com/geopandas/xyzservices,,,,geopandas/xyzservices,xyzservices,84,19,11,Python,https://xyzservices.readthedocs.io/,xyzservices: Source of XYZ tiles providers,geopandas,2023-01-04,2021-05-21,91,0.9158878504672897,[],2023-02-19,17,"['EdwardBetts', 'HaudinFlorence@quantstack', 'SylvainCorlay@quantstack', 'benoit9126@roseautechnologies', 'darribas', 'davidbrochart@quantstack', 'dependabot[bot]', 'drnextgis@satellogic', 'martinfleis', 'tsutterley@uw-eduappliedphysicslaboratory']",4,10,"['quantstack', 'roseautechnologies', 'satellogic', 'uw-eduappliedphysicslaboratory']","['@QuantStack', '@RoseauTechnologies ', '@satellogic', '@uw-edu Applied Physics Laboratory', 'QuantStack']",,0.94,2,2,21,0,5,10,5,2.0,0.0,90.0,0.0,0,29.30759 +269,term,https://github.com/deeplook/sparklines,,,,deeplook/sparklines,sparklines,84,6,3,Python,,sparklines: Text-based sparkline command line mimicking those of Edward Tuft.,deeplook,2022-12-28,2016-05-17,353,0.23786407766990292,"['python', 'command-line-tool', 'graphs', 'ascii', 'sparklines', 'sparkline-graphs']",2021-06-26,7,"['aldencolerain', 'deeplook', 'deepsource-autofix[bot]', 'deepsourcebot@deepsourcelabs', 'mkgs@investnext', 'quantifiedcode-bot@quantifiedcode']",3,10,"['deepsourcelabs', 'investnext', 'quantifiedcode']","['@deepsourcelabs', '@investnext', 'QuantifiedCode']",,0.0,0,0,82,20,0,0,0,0.0,0.0,90.0,0.0,0,15.91739 +769,ml-dl,https://github.com/praw-dev/asyncpraw,,,,praw-dev/asyncpraw,asyncpraw,82,13,3,Python,https://asyncpraw.readthedocs.io,"asyncpraw: Async PRAW, an abbreviation for ""Asynchronous Python Reddit API Wrapper"", is a python package that allows for simple access to Reddit's API.",praw-dev,2023-01-31,2019-02-05,211,0.38836265223274696,"['python', 'api', 'oauth', 'reddit', 'reddit-api', 'async', 'asyncpraw', 'praw']",2023-02-19,226,"['13steinj', 'Damgaard@billy', 'LilSpazJoekp@indeed', 'PythonCoderAS', 'bboe@netflix', 'jarhill0@appfolio', 'leviroth', 'nmtake', 'tmelz', 'voussoir']",4,10,"['appfolio', 'billy', 'indeed', 'netflix']","['@appfolio', '@netflix', 'Billy', 'Indeed, Inc.']",,1.67,34,34,49,0,2,2,2,34.0,6.0,90.0,0.2,0,41.79714 +925,gis,https://github.com/benbovy/spherely,,,,benbovy/spherely,spherely,82,2,4,C++,https://spherely.readthedocs.io/,spherely: Manipulation and analysis of geometric objects on the sphere.,benbovy,2023-02-09,2022-11-24,12,6.377777777777778,[],2023-01-12,2,"['benbovy', 'jorisvandenbossche']",0,10,[],[],,0.79,14,10,3,1,0,0,0,14.0,30.0,90.0,2.1,0,14.05385 +668,gis,https://github.com/zorzi-s/projectregularization,,,,zorzi-s/projectregularization,projectRegularization,81,7,2,Python,,projectRegularization: Regularization of Building Boundaries using Adversarial and Regularized losses,zorzi-s,2023-02-09,2021-05-18,92,0.8790697674418605,[],2021-09-17,1,['zorzi-s'],0,10,[],[],,0.0,0,0,21,17,0,0,0,0.0,0.0,90.0,0.0,0,2.4071 +327,security,https://github.com/sonatype-nexus-community/jake,,,,sonatype-nexus-community/jake,jake,80,21,8,Python,https://jake.readthedocs.io/,jake: Check your Python environments for vulnerable Open Source packages with OSS Index or Sonatype Nexus Lifecycle.,sonatype-nexus-community,2023-01-25,2019-10-10,175,0.45491470349309504,"['python', 'vulnerabilities', 'vulnerability-scanners', 'ossindex', 'nexus-iq', 'sonatype-iq']",2022-12-14,15,"['ButterB0wl@nginxinc', 'DarthHater@sonatype', 'allenhsieh', 'arichtman@silverrail', 'bhamail', 'daviskirk@oniqgmbh', 'jwa5426', 'madpah@sonatypecyclonedx', 'sanzoghenzo', 'therealak12']",5,10,"['nginxinc', 'oniqgmbh', 'silverrail', 'sonatype', 'sonatypecyclonedx']","['@nginxinc ', '@sonatype ', '@sonatype @CycloneDX ', 'ONIQ GmbH', 'SilverRail']",,0.54,6,3,41,2,4,39,4,6.0,4.0,90.0,0.7,0,31.08477 +816,util,https://github.com/aws-samples/sagemaker-ssh-helper,,,,aws-samples/sagemaker-ssh-helper,sagemaker-ssh-helper,80,10,7,Python,,sagemaker-ssh-helper: A helper library to connect into Amazon SageMaker with AWS Systems Manager and SSH,aws-samples,2023-02-17,2022-10-14,18,4.2748091603053435,"['amazon-sagemaker', 'aws', 'aws-systems-manager', 'machine-learning', 'pycharm', 'sagemaker', 'sagemaker-studio', 'ssh', 'vscode']",2023-01-20,4,"['amazon-auto@amazon', 'gilinachum@amazon', 'ivan-khvostishkov@amazonwebservices(aws)']",2,10,"['amazon', 'amazonwebservices(aws)']","['Amazon', 'Amazon Web Services (AWS)']",,0.73,12,6,4,1,5,15,5,12.0,20.0,90.0,1.7,0,23.54515 +584,gis,https://github.com/developmentseed/cogeo-mosaic,,,,developmentseed/cogeo-mosaic,cogeo-mosaic,78,20,8,Python,https://developmentseed.org/cogeo-mosaic/,cogeo-mosaic: Create and use COG mosaic based on mosaicJSON,developmentseed,2023-02-14,2019-05-14,197,0.39565217391304347,[],2023-02-06,9,"['AndreaGiardini', 'RichardScottOZ@ozminerals', 'andrewharvey@alantgeo', 'christoe@qualicodeconsulting', 'drnextgis@satellogic', 'geospatial-jeff@regrowag', 'kylebarron', 'lseelenbinder@stadiamaps', 'vincentsarago@developmentseed']",7,10,"['alantgeo', 'developmentseed', 'ozminerals', 'qualicodeconsulting', 'regrowag', 'satellogic', 'stadiamaps']","['@developmentseed ', '@regrowag', '@satellogic', '@stadiamaps ', 'Alantgeo', 'OZ Minerals', 'Qualicode Consulting']",,0.5,4,4,46,0,0,11,11,4.0,3.0,90.0,0.8,0,35.85076 +530,ml,https://github.com/brohrer/cottonwood,,,,brohrer/cottonwood,cottonwood,74,13,14,Python,https://end-to-end-machine-learning.teachable.com/p/write-a-neural-network-framework/,cottonwood: A flexible neural network framework for running experiments and trying ideas.,brohrer,2023-02-11,2019-09-29,177,0.4170692431561997,[],2020-02-02,3,"['ShahriyarR@azerbaijanpug', 'brohrer', 'gkaissis@tum,imperialcollege,openmined']",2,10,"['azerbaijanpug', 'tum,imperialcollege,openmined']","['Azerbaijan PUG', 'TUM, Imperial College, OpenMined']",,0.0,0,0,41,37,0,4,4,0.0,0.0,90.0,0.0,0,12.33775 +851,profiling,https://github.com/kshitij12345/torchnnprofiler,,,,kshitij12345/torchnnprofiler,torchnnprofiler,74,3,4,Python,,torchnnprofiler: Context Manager to profile the forward and backward times of PyTorch's nn.Module,kshitij12345,2023-01-17,2022-10-22,17,4.211382113821138,[],2022-11-02,1,['kshitij12345@quansight'],1,10,['quansight'],['Quansight'],,0.96,3,2,4,4,0,0,0,3.0,7.0,90.0,2.3,0,13.24375 +453,gis,https://github.com/googlecloudplatform/dataflow-geobeam,,,,googlecloudplatform/dataflow-geobeam,dataflow-geobeam,67,26,10,Python,,googlecloudplatform/dataflow-geobeam,googlecloudplatform,2023-02-19,2021-02-04,106,0.6270053475935828,[],2022-11-29,5,"['hashkanna', 'koshy1123@calthorpeanalytics', 'mbforr@carto', 'remylouisew', 'tjwebb@googlegooglecloudplatform']",3,10,"['calthorpeanalytics', 'carto', 'googlegooglecloudplatform']","['@CalthorpeAnalytics ', '@google @GoogleCloudPlatform ', 'CARTO']",,0.62,1,0,25,3,0,2,2,1.0,1.0,90.0,1.0,0,22.54524 +234,crypto,https://github.com/blockchainsllc/in3,,,,blockchainsllc/in3,in3,66,19,12,C,https://in3.readthedocs.io/en/develop/index.html,in3: The IN3 client (written in C).,blockchainsllc,2023-01-30,2019-09-17,179,0.3684210526315789,"['blockchain', 'verify', 'crypto-economic', 'ethereum', 'ipfs']",2022-04-01,35,"['cerealkill@sni', 'chirag-parmar@slock.it', 'devrajsinghrawat', 'hu55a1n1', 'jbentke', 'kgeweniger@slock.it', 'leonardostsouza', 'leonardotc', 'simon-jentzsch@blockchains', 'unparalleled-js']",3,10,"['blockchains', 'slock.it', 'sni']","['@SNI', '@slock.it', 'Blockchains LLC', 'Slock.it']",,0.87,2,0,42,11,0,27,27,2.0,2.0,90.0,1.0,0,30.48011 +568,sim,https://github.com/gboeing/street-network-models,,,,gboeing/street-network-models,street-network-models,64,4,2,Python,https://osf.io/f2dqc,street-network-models: Street network models and indicators for every urban area in the world,gboeing,2022-12-13,2020-04-13,149,0.42870813397129187,[],2021-03-05,1,['gboeing@universityofsoutherncalifornia'],1,10,['universityofsoutherncalifornia'],['University of Southern California'],,0.0,0,0,35,24,0,0,0,0.0,0.0,90.0,0.0,0,6.21011 +968,math,https://github.com/albahnsen/pycircular,1.0,,,albahnsen/pycircular,pycircular,60,3,5,Python,,pycircular is a Python module for circular data analysis,albahnsen,2023-02-20,2022-09-12,23,2.576687116564417,[],2023-01-21,5,"['albahnsen', 'jdacevedo3010', 'jussalcedoga']",0,10,[],[],,0.83,13,3,5,1,1,2,1,13.0,0.0,90.0,0.0,0,12.69101 +535,gis,https://github.com/cloudsen12/easystac,,,,cloudsen12/easystac,easystac,60,1,3,Python,https://easystac.readthedocs.io/,easystac: A Python package for simple STAC queries,cloudsen12,2023-02-20,2022-01-20,56,1.0552763819095476,"['stac', 'remote-sensing', 'gis', 'earth-observation', 'python', 'python3', 'spatio-temporal', 'spatio-temporal-data', 'planetary-computer', 'radiant']",2022-08-07,3,"['csaybar@emcdestudent', 'davemlz@rsc4earth|universityofleipzig', 'duckontheweb@regrowag']",3,10,"['emcdestudent', 'regrowag', 'rsc4earth|universityofleipzig']","['@regrowag', 'EMCDE Student', 'RSC4Earth | University of Leipzig']",,0.08,0,0,13,7,1,1,1,0.0,0.0,90.0,0.0,0,13.37216 +912,security,https://github.com/abnamro/repository-scanner,,,,abnamro/repository-scanner,repository-scanner,57,2,6,Python,,repository-scanner: Tool to detect secrets in source code management systems.,abnamro,2023-02-19,2022-09-08,23,2.3892215568862274,[],2023-02-21,6,"['DamienVermaas', 'Peter-v-d-Spek', 'Usman2ABN', 'ajaikuruppath', 'amrityamrout', 'b-abderrahmane-abnamro']",0,10,[],[],,0.73,38,36,6,0,5,10,5,38.0,2.0,90.0,0.1,0,19.70884 +521,gis,https://github.com/lydorn/mapalignment,,,,lydorn/mapalignment,mapalignment,57,14,4,Python,,mapalignment: Aligning and Updating Cadaster Maps with Remote Sensing Images,lydorn,2023-02-10,2018-09-05,233,0.2446351931330472,[],2020-09-03,2,"['Lydorn', 'netsimilarity']",0,10,[],[],,0.0,0,0,54,30,0,0,0,0.0,0.0,90.0,0.0,0,4.44142 +854,util,https://github.com/backtick-se/cowait,,,,backtick-se/cowait,cowait,55,5,8,Python,https://cowait.io,cowait: Containerized distributed programming framework for Python,backtick-se,2022-11-16,2019-09-18,179,0.30726256983240224,"['python', 'task-scheduler', 'data-science', 'data-engineering', 'spark', 'dask', 'kubernetes', 'docker', 'workflow-engine']",2022-09-22,10,"['MTullbergDebricked', 'Martomate', 'OskarHandmark@backticktechnologies', 'dependabot[bot]', 'emil-debricked', 'emilwareus', 'fredrikolsson96@backticktechnologies', 'johanhenriksson', 'michalstypa@backticktechnologies']",1,10,['backticktechnologies'],['Backtick Technologies'],,0.25,6,0,42,5,3,13,3,6.0,0.0,90.0,0.0,0,19.0544 +400,study,https://github.com/dylanhogg/crazy-awesome-python,,,,dylanhogg/crazy-awesome-python,crazy-awesome-python,53,8,3,HTML,https://www.awesomepython.org/,"crazy-awesome-python: A curated list of awesome Python frameworks, with a bias towards data and machine learning",dylanhogg,2023-02-17,2020-06-20,139,0.3797338792221085,"['python', 'python-data', 'awesome-list', 'python-machine-learning', 'python-nlp', 'python-frameworks', 'python-library', 'data', 'machine-learning', 'natural-language-processing']",2023-02-11,2,"['dependabot[bot]', 'dylanhogg@infocruncher']",1,10,['infocruncher'],['Infocruncher'],,1.54,2,2,33,0,0,2,2,2.0,0.0,90.0,0.0,0,20.15192 +326,security,https://github.com/snyk-labs/pysnyk,,,,snyk-labs/pysnyk,pysnyk,52,93,10,Python,https://snyk.docs.apiary.io/,pysnyk: A Python client for the Snyk API.,snyk-labs,2023-01-20,2019-02-03,211,0.24594594594594596,"['snyk', 'python', 'api']",2023-01-20,30,"['colinbarr@paddlehq', 'garethr@snyk', 'jdewinne@replicated.com', 'jgresty', 'lili2311@snyk', 'maxjeffos', 'mnimmny', 'mrzarquon@gitpod-io', 'nirfuchs@snyk', 'xavierxmorris']",4,10,"['gitpod-io', 'paddlehq', 'replicated.com', 'snyk']","['@PaddleHQ', '@gitpod-io ', '@snyk', '@snyk ', 'Snyk', 'replicated.com']",,0.56,28,16,49,1,8,5,8,28.0,21.0,90.0,0.8,0,36.73425 +401,crypto,https://github.com/dylanhogg/crazy-awesome-crypto,,,,dylanhogg/crazy-awesome-crypto,crazy-awesome-crypto,46,15,4,Python,https://www.awesomecrypto.xyz/,crazy-awesome-crypto: A list of awesome crypto and blockchain projects,dylanhogg,2023-02-18,2021-09-27,73,0.6276803118908382,"['crypto', 'cryptocurrency', 'blockchain', 'bitcoin', 'ethereum', 'awesome-list', 'data', 'data-analysis', 'github', 'awesome']",2023-02-13,1,['dylanhogg@infocruncher'],1,10,['infocruncher'],['Infocruncher'],,0.33,0,0,17,0,0,1,1,0.0,0.0,90.0,0.0,0,14.12879 +924,gis,https://github.com/radiantearth/radiant-mlhub,,,,radiantearth/radiant-mlhub,radiant-mlhub,46,10,5,Python,https://radiant-mlhub.readthedocs.io/,radiant-mlhub: A Python client for the Radiant MLHub API (https://mlhub.earth).,radiantearth,2023-02-02,2020-10-13,123,0.37354988399071926,"['machine-learning', 'satellite-imagery', 'python', 'python-client', 'python-3', 'stac']",2023-02-13,9,"['PowerChell@radiantearth', 'adamjstewart@universityofillinoisaturbana-champaign', 'dependabot[bot]', 'duckontheweb@regrowag', 'guidorice@regrow', 'kbgg@radiantearth', 'rowenarono95']",4,10,"['radiantearth', 'regrow', 'regrowag', 'universityofillinoisaturbana-champaign']","['@radiantearth ', '@regrowag', 'Regrow', 'University of Illinois at Urbana-Champaign']",,1.44,12,8,29,0,7,8,7,12.0,7.0,90.0,0.6,0,33.11436 +202,crypto,https://github.com/nerolation/ethereum-datafarm,,,,nerolation/ethereum-datafarm,ethereum-datafarm,45,10,1,Python,,ethereum-datafarm: Scrap blockchain data from the public API of Etherscan.io,nerolation,2023-02-19,2021-03-13,101,0.4430379746835443,[],2023-01-21,1,['nerolation@viennauniversityofeconomicsandbusiness(wu)'],1,10,['viennauniversityofeconomicsandbusiness(wu)'],['Vienna University of Economics and Business (WU)'],,1.69,0,0,24,1,0,0,0,0.0,0.0,90.0,0.0,0,13.1966 +776,sim,https://github.com/activitysim/populationsim,,,,activitysim/populationsim,populationsim,40,27,11,Jupyter Notebook,https://activitysim.github.io/populationsim,populationsim: An Open Platform for Population Synthesis,activitysim,2023-02-15,2017-02-14,314,0.1273306048203729,"['python', 'data-science', 'population-synthesis', 'activitysim', 'bsd-3-clause', 'microsimulation']",2021-11-19,9,"['bettinardi@oregondepartmentoftransportation', 'binnympaul', 'blakerosenthal', 'bstabler@ptvgroup', 'jamiecook', 'jfdman', 'johnklawlor', 'toliwaga']",2,10,"['oregondepartmentoftransportation', 'ptvgroup']","['Oregon Department of Transportation', 'PTV Group']",,0.0,5,1,73,15,0,1,1,5.0,4.0,90.0,0.8,0,20.95529 +979,sim,https://github.com/glpcc/pokerpy,,,,glpcc/pokerpy,PokerPy,40,4,1,C++,,PokerPy: Texas Hold'em Poker Probability Calculator in Python,glpcc,2023-02-10,2022-12-11,10,3.835616438356164,"['cpp', 'fast', 'performance', 'poker', 'pybind11', 'python', 'texas-holdem']",2023-02-10,2,"['glpcc@universidadpolitécnicademadrid', 'luigibrancati']",1,10,['universidadpolitécnicademadrid'],['Universidad Politécnica de Madrid'],,1.08,1,1,2,0,0,0,0,1.0,8.0,90.0,8.0,0,20.65858 +821,pandas,https://github.com/ddelange/mapply,,,,ddelange/mapply,mapply,39,3,4,Python,,mapply: Sensible multi-core apply function for Pandas,ddelange,2023-02-15,2020-10-26,121,0.3215547703180212,[],2022-12-16,1,['ddelange'],0,10,[],[],,0.29,5,4,28,2,9,8,9,5.0,8.0,90.0,1.6,0,18.42685 +940,data,https://github.com/scylladb/python-driver,,,,scylladb/python-driver,python-driver,38,27,6,Python,https://python-driver.docs.scylladb.com,"python-driver: ScyllaDB Python Driver, originally DataStax Python Driver for Apache Cassandra",scylladb,2023-02-02,2018-11-20,222,0.17106109324758842,"['scylladb', 'python']",2023-02-15,204,"['GregBestland', 'TheRealFalcon@canonical', 'aboudreault@kovarogroup', 'aholmberg', 'bdeggleston@apple', 'fruch@scylladb', 'joaquincasares@audiusproject', 'mambocab@rapid7', 'rustyrazorblade@apple', 'thobbs@anticlassicstudios']",7,10,"['anticlassicstudios', 'apple', 'audiusproject', 'canonical', 'kovarogroup', 'rapid7', 'scylladb']","['@AudiusProject', '@scylladb', 'Anticlassic Studios, LLC', 'Apple', 'Canonical', 'Kovaro Group', 'Rapid7']",,1.75,36,23,52,0,0,26,26,36.0,67.0,90.0,1.9,0,51.45826 +386,nlp,https://github.com/ferdinandzhong/punctuator,,,,ferdinandzhong/punctuator,punctuator,36,5,1,Python,,punctuator: A small seq2seq punctuator tool based on DistilBERT,ferdinandzhong,2023-02-07,2020-11-19,117,0.3054545454545455,"['bert', 'nlp', 'seq2seq', 'punctuation', 'deep-learning', 'pytorch', 'bert-ner', 'chinese-nlp']",2022-09-28,4,['FerdinandZhong'],0,10,[],[],,0.17,0,0,27,5,2,2,2,0.0,0.0,90.0,0.0,0,10.45315 +918,ml-ops,https://github.com/anyscale/airflow-provider-ray,,,,anyscale/airflow-provider-ray,airflow-provider-ray,32,10,13,Python,,airflow-provider-ray: Ray provider for Apache Airflow,anyscale,2022-11-16,2021-03-05,102,0.31154381084840055,[],2021-10-03,8,"['dimberman@astronomerio', 'mrrobby@advocatingdistributeddataplatforms', 'petedejoy@astronomer', 'pgzmnk@astronomer.io', 'richardliaw@anyscale', 'sunkickr@astronomer']",5,10,"['advocatingdistributeddataplatforms', 'anyscale', 'astronomer', 'astronomer.io', 'astronomerio']","['@anyscale', '@astronomer', '@astronomerio', 'Advocating Distributed Data Platforms', 'Astronomer', 'Astronomer.io']",,0.0,1,0,24,17,0,0,0,1.0,3.0,90.0,3.0,0,22.02763 +333,util,https://github.com/gondolav/pyfuncol,,,,gondolav/pyfuncol,pyfuncol,32,2,3,Python,https://pyfuncol.readthedocs.io/,pyfuncol: Functional collections extension functions for Python,gondolav,2022-11-16,2021-12-16,61,0.5173210161662818,"['functional', 'collections', 'python', 'parallel', 'python3', 'extension-functions']",2023-01-14,4,"['Gondolav', 'dependabot[bot]', 'm-doescode', 'samuelchassot@epfl']",1,10,['epfl'],['EPFL'],,0.71,25,20,14,1,1,6,1,25.0,30.0,90.0,1.2,0,22.63874 +921,util,https://github.com/python-odin/odin,,,,python-odin/odin,odin,29,7,3,Python,https://odin.readthedocs.org/en/latest/,"odin: Data-structure definition/validation/traversal, mapping and serialisation toolkit for Python",python-odin,2023-02-14,2013-08-20,496,0.05845090699683271,"['python', 'validation', 'data-structures', 'data-mapping', 'serialize', 'de-serialize', 'json', 'csv', 'msgpack', 'xml', 'yaml']",2023-02-19,8,"['dependabot-preview[bot]', 'dependabot[bot]', 'pyup-bot@pyupio', 'thedrow', 'timsavage@westpac']",2,10,"['pyupio', 'westpac']","['@pyupio', 'Westpac']",,2.21,11,9,116,0,12,7,12,11.0,13.0,90.0,1.2,0,36.35804 +711,gis,https://github.com/artelys/geonetworkx,,,,artelys/geonetworkx,geonetworkx,29,1,7,Python,,geonetworkx: Python tools for geographic graphs,artelys,2022-12-22,2019-10-24,173,0.16680361544782252,[],2021-06-28,6,"['Hyrae', 'frapac@argonnenationallaboratory']",1,10,['argonnenationallaboratory'],['Argonne National Laboratory'],,0.0,0,0,41,20,0,2,2,0.0,0.0,90.0,0.0,0,12.43753 +502,gis,https://github.com/gregorhd/mapcompare,,,,gregorhd/mapcompare,mapcompare,28,0,2,Python,,mapcompare: Comparison of Python packages and libraries for visualising geospatial vector data: applications for Smarter Cities.,gregorhd,2022-12-06,2021-05-21,91,0.3052959501557632,"['visualisation-libraries', 'sample-visualisation', 'comparison', 'data-visualisation', 'data-viz', 'urban-data-science', 'interactive-visualisations']",2022-12-03,1,['gregorhd@gafag'],1,10,['gafag'],['GAF AG'],,0.04,0,0,21,3,0,2,2,0.0,0.0,90.0,0.0,0,11.52513 +934,ml,https://github.com/pgniewko/forward_forward_vhts,,,,pgniewko/forward_forward_vhts,forward_forward_vhts,28,5,1,Jupyter Notebook,,forward_forward_vhts: The Forward-Forward Algorithm for Drug Discovery,pgniewko,2023-02-18,2022-12-29,7,3.5636363636363635,[],2022-12-30,1,['pgniewko@atomwise'],1,10,['atomwise'],"['Atomwise, Inc.']",,0.12,1,1,2,2,0,0,0,1.0,0.0,90.0,0.0,0,6.46599 +894,sim,https://github.com/crowddynamics/crowddynamics,,,,crowddynamics/crowddynamics,crowddynamics,28,9,9,Python,https://jaantollander.com/post/how-to-implement-continuous-time-multi-agent-crowd-simulation/,crowddynamics: Continuous-time multi-agent crowd simulation engine implemented in Python using Numba and Numpy for performance.,crowddynamics,2023-01-31,2016-03-22,361,0.07753164556962025,"['crowd-dynamics', 'multi-agent', 'continuous-time', 'crowd-simulation']",2020-01-02,7,"['jaantollander@aaltouniversity', 'pyup-bot@pyupio']",2,10,"['aaltouniversity', 'pyupio']","['@pyupio', 'Aalto University']",,0.0,1,0,84,38,0,0,0,1.0,0.0,90.0,0.0,0,13.52448 +578,term,https://github.com/matthewdeanmartin/terminaltables,,,,matthewdeanmartin/terminaltables,terminaltables,25,5,0,Python,https://robpol86.github.io/terminaltables,terminaltables: Generate simple tables in terminals from a nested list of strings.,matthewdeanmartin,2023-02-16,2021-12-04,63,0.39325842696629215,[],2022-01-30,10,"['Robpol86', 'aleivag', 'bcho', 'kovacsbalu', 'liiight', 'matthewdeanmartin', 'mgorny@projg2', 'msabramo@adobe', 'zqqf16']",2,10,"['adobe', 'projg2']","['@adobe', '@projg2']",,0.0,1,0,15,13,0,12,12,1.0,0.0,90.0,0.0,0,17.39845 +688,ml-dl,https://github.com/jerryyli/valhalla-nmt,,,,jerryyli/valhalla-nmt,valhalla-nmt,23,4,1,Python,,"valhalla-nmt: Code repository for CVPR 2022 paper ""VALHALLA: Visual Hallucination for Machine Translation""",jerryyli,2023-02-11,2022-03-22,48,0.47774480712166173,"['computer-vision', 'machine-translation', 'multimodal-learning', 'natural-language-processing']",2023-02-19,3,"['JerryYLi', 'rpand002@mit-ibmwatsonailab']",1,10,['mit-ibmwatsonailab'],['MIT-IBM Watson AI Lab'],,0.33,1,1,11,0,2,2,2,1.0,2.0,90.0,2.0,0,21.3917 +37,math,https://github.com/jszymon/pacal,,,,jszymon/pacal,pacal,21,8,6,Python,,PaCAL - ProbAbilistic CALculator,jszymon,2022-11-02,2014-08-04,446,0.0470550576184379,[],2022-11-02,8,"['jszymon', 'mkorzen1729', 'ricardoV94']",0,10,[],[],,0.04,1,0,104,4,0,0,0,1.0,0.0,90.0,0.0,0,14.08397 +840,data,https://github.com/codait/pardata,,,,codait/pardata,pardata,18,5,11,Python,https://pardata.readthedocs.io/en/latest/,codait/pardata,codait,2022-08-14,2020-11-17,118,0.1523579201934704,"['dataset', 'python', 'machine-learning', 'artificial-intelligence', 'data-science']",2021-12-01,7,"['cclauss@christianclauss', 'dependabot[bot]', 'djalova', 'edwardleardi@ibmcodait', 'renovate[bot]', 'tlzhu19@ibm', 'xuhdev@google']",4,10,"['christianclauss', 'google', 'ibm', 'ibmcodait']","['@Google', '@IBM @CODAIT ', 'Christian Clauss', 'IBM']",,0.0,0,0,28,15,0,3,3,0.0,0.0,90.0,0.0,0,17.57394 +919,study,https://github.com/anyscale/rl-course,,,,anyscale/rl-course,rl-course,17,0,5,Jupyter Notebook,,anyscale/rl-course,anyscale,2023-02-07,2022-03-01,51,0.3324022346368715,[],2023-01-02,2,['maxpumperla'],0,10,[],[],,4.96,0,0,12,2,0,0,0,0.0,0.0,90.0,0.0,0,9.67179 +669,gis,https://github.com/zorzi-s/maprepair,,,,zorzi-s/maprepair,MapRepair,17,4,2,Python,,MapRepair: Deep Cadastre Maps Alignment and Temporal Inconsistencies Fix in Satellite Images,zorzi-s,2023-02-17,2020-07-30,133,0.12700106723585913,[],2021-05-17,1,['zorzi-s'],0,10,[],[],,0.0,0,0,31,22,0,0,0,0.0,0.0,90.0,0.0,0,2.72495 +679,util,https://github.com/markhershey/arxiv-dl,,,,markhershey/arxiv-dl,arxiv-dl,16,4,2,Python,https://pypi.org/project/arxiv-dl/,"arxiv-dl: Command-line ArXiv & CVF (CVPR, ICCV, WACV) Paper Downloader",markhershey,2022-12-02,2021-01-21,108,0.14698162729658792,"['arxiv', 'paper', 'downloader', 'command-line-tool', 'paper-with-code', 'cvpr']",2023-01-30,2,"['MarkHershey', 'lambdaofgod']",0,10,[],[],,0.37,1,0,25,1,1,3,1,1.0,1.0,90.0,1.0,0,14.52017 +892,util,https://github.com/pyodide/micropip,,,,pyodide/micropip,micropip,16,5,5,Python,https://micropip.pyodide.org,micropip: A lightweight Python package installer for Pyodide,pyodide,2023-01-26,2022-09-15,22,0.7,"['package-installer', 'pyodide', 'python', 'webassembly']",2023-02-20,6,"['hoodmane@mitmathdepartment', 'joemarshall', 'mentalisttraceur', 'pre-commit-ci[bot]', 'rth', 'ryanking13']",1,10,['mitmathdepartment'],['MIT Math Department'],,0.71,30,27,5,0,0,7,7,30.0,37.0,90.0,1.2,0,25.81524 +702,data,https://github.com/harangju/wikinet,,,,harangju/wikinet,wikinet,10,5,3,Jupyter Notebook,,wikinet: Python library for exploring networks of hyperlinked Wikipedia articles,harangju,2022-12-16,2019-08-05,185,0.05397070161912105,[],2022-01-25,6,"['erteich', 'harangju']",0,10,[],[],,0.0,0,0,43,13,0,0,0,0.0,0.0,90.0,0.0,0,8.18476 +608,typing,https://github.com/tk0miya/docutils-stubs,,,,tk0miya/docutils-stubs,docutils-stubs,7,5,6,Python,,tk0miya/docutils-stubs,tk0miya,2022-01-02,2018-11-02,224,0.031150667514303877,[],2022-01-02,6,"['Huy-Ngo', 'McSinyx@unist', 'cocoatomo', 'danieleades', 'flying-sheep@cellarity', 'tk0miya@timeintermedia(timedia)']",3,10,"['cellarity', 'timeintermedia(timedia)', 'unist']","['@Cellarity', 'Time Intermedia (@timedia)', 'UNIST']",,0.0,0,0,52,14,0,4,4,0.0,0.0,90.0,0.0,0,18.14607 +920,ml-ops,https://github.com/anyscale/prefect-anyscale,,,,anyscale/prefect-anyscale,prefect-anyscale,6,1,3,Python,,prefect-anyscale: Prefect integration with Anyscale,anyscale,2023-02-20,2022-11-07,15,0.3925233644859813,[],2023-02-15,1,['pcmoritz@anyscale'],1,10,['anyscale'],['Anyscale'],,0.44,10,8,4,0,8,24,8,10.0,4.0,90.0,0.4,0,18.40751 +180,sim,https://github.com/artemyk/dynpy,,,,artemyk/dynpy,dynpy,6,5,3,Python,,dynpy: Dynamical systems for Python,artemyk,2022-12-27,2014-09-12,440,0.013614262560777957,[],2018-09-28,5,"['artemyk', 'gdmcbain']",0,10,[],[],,0.0,0,0,103,54,0,0,0,0.0,0.0,90.0,0.0,0,6.51255 +911,data,https://github.com/malloydata/malloy-py,,,,malloydata/malloy-py,malloy-py,3,1,4,Python,,malloy-py: Python package for executing Malloy,malloydata,2023-02-07,2022-11-02,16,0.1875,"['business-analytics', 'business-intelligence', 'data', 'data-modeling', 'python', 'sql', 'semantic-modeling']",2023-01-17,1,['gmaden'],0,10,[],[],,1.02,1,0,4,1,1,15,1,1.0,1.0,90.0,1.0,0,10.01689 +526,gis,https://github.com/lycantropos/wagyu,,,,lycantropos/wagyu,wagyu,3,2,1,Python,https://github.com/mapbox/wagyu,wagyu: Python port of mapbox/wagyu library (with separate C++ binding),lycantropos,2022-07-19,2020-06-30,138,0.02171664943123061,[],2020-11-21,2,"['lycantropos', 'synapticarbors']",0,10,[],[],,0.0,0,0,32,27,0,2,2,0.0,0.0,90.0,0.0,0,5.39877 +420,template,https://github.com/dylanhogg/python-project-template,,,,dylanhogg/python-project-template,python-project-template,1,0,2,Python,,python-project-template: A quick-start Python project template with helpful functionality and common libraries.,dylanhogg,2022-08-19,2020-02-12,158,0.006329113924050633,"['python', 'template', 'jupyterlab', 'cookiecutter']",2022-08-19,2,"['dependabot[bot]', 'dylanhogg@infocruncher']",1,10,['infocruncher'],['Infocruncher'],,0.04,2,0,37,6,0,1,1,2.0,0.0,90.0,0.0,0,12.64824 +751,gis,https://github.com/edomel/boundaryvt,,,,edomel/boundaryvt,BoundaryVT,1,0,2,Python,,edomel/boundaryvt,edomel,2022-12-19,2022-07-29,29,0.03365384615384615,[],2023-01-11,3,"['ajadchhatkuli@ethzurich', 'edomel']",1,10,['ethzurich'],['ETH Zurich'],,0.13,1,0,7,0,0,0,0,1.0,1.0,90.0,1.0,0,15.95957 diff --git a/github_data.json b/github_data.json index 0d8e170..6e36cc1 100644 --- a/github_data.json +++ b/github_data.json @@ -45,10 +45,6 @@ "name": "_watches", "type": "integer" }, - { - "name": "_topics", - "type": "string" - }, { "name": "_language", "type": "string" @@ -69,10 +65,6 @@ "name": "_updated_at", "type": "string" }, - { - "name": "_last_commit_date", - "type": "string" - }, { "name": "_created_at", "type": "string" @@ -85,10 +77,22 @@ "name": "_stars_per_week", "type": "number" }, + { + "name": "_topics", + "type": "string" + }, + { + "name": "_last_commit_date", + "type": "string" + }, { "name": "_pop_contributor_count", "type": "integer" }, + { + "name": "_pop_contributor_logins", + "type": "string" + }, { "name": "_pop_contributor_orgs_len", "type": "integer" @@ -101,6 +105,10 @@ "name": "_pop_contributor_orgs", "type": "string" }, + { + "name": "_pop_contributor_orgs_raw", + "type": "string" + }, { "name": "_pop_contributor_orgs_error", "type": "string" @@ -201,9 +209,17 @@ "description": null, "_repopath": "tensorflow/tensorflow", "_reponame": "tensorflow", - "_stars": 169751, - "_forks": 87558, - "_watches": 7793, + "_stars": 171400, + "_forks": 87832, + "_watches": 7764, + "_language": "C++", + "_homepage": "https://tensorflow.org", + "_description": "tensorflow: An Open Source Machine Learning Framework for Everyone", + "_organization": "tensorflow", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-11-07T00:00:00.000Z", + "_age_weeks": 380, + "_stars_per_week": 450.38, "_topics": [ "tensorflow", "machine-learning", @@ -214,37 +230,47 @@ "ml", "distributed" ], - "_language": "C++", - "_homepage": "https://tensorflow.org", - "_description": "tensorflow: An Open Source Machine Learning Framework for Everyone", - "_organization": "tensorflow", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2015-11-07T00:00:00.000Z", - "_age_weeks": 371, - "_stars_per_week": 457.2, - "_pop_contributor_count": 4198, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 4275, + "_pop_contributor_logins": [ + "benoitsteiner", + "caisq@google", + "gunan@googletensorflow", + "hawkinsp@google", + "mihaimaruseac@google", + "mrry", + "roserg", + "tensorflower-gardener", + "vrv@carnegiemellonuniversity", + "yongtang" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "carnegiemellonuniversity", "google", "googletensorflow" ], + "_pop_contributor_orgs_raw": [ + "@google @tensorflow ", + "Carnegie Mellon University", + "Google" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 312.65, - "_pop_updated_issues_count": 2393, - "_pop_closed_issues_count": 1430, - "_pop_created_since_days": 87, + "_pop_commit_frequency": 321.21, + "_pop_updated_issues_count": 2254, + "_pop_closed_issues_count": 1372, + "_pop_created_since_days": 89, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 32, + "_pop_recent_releases_count": 27, "_pop_recent_releases_estimated_tags": 26, - "_pop_recent_releases_adjusted_count": 32, - "_pop_issue_count": 2393.0, - "_pop_comment_count": 6694.0, + "_pop_recent_releases_adjusted_count": 27, + "_pop_issue_count": 2255.0, + "_pop_comment_count": 6541.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.8, - "_pop_dependents_count": 175460, - "_pop_score": 92.8, + "_pop_comment_frequency": 2.9, + "_pop_dependents_count": 0, + "_pop_score": 72.75, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tensorflow/tensorflow/master/README.md", "_readme_localurl": "tensorflow~tensorflow~README.md", @@ -261,9 +287,17 @@ "description": null, "_repopath": "thealgorithms/python", "_reponame": "Python", - "_stars": 150017, - "_forks": 38545, - "_watches": 5937, + "_stars": 153358, + "_forks": 39092, + "_watches": 5962, + "_language": "Python", + "_homepage": "https://the-algorithms.com/", + "_description": "Python: All Algorithms implemented in Python", + "_organization": "thealgorithms", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-07-16T00:00:00.000Z", + "_age_weeks": 344, + "_stars_per_week": 445.07, "_topics": [ "python", "algorithm", @@ -280,39 +314,53 @@ "interview", "hacktoberfest" ], - "_language": "Python", - "_homepage": "https://the-algorithms.com/", - "_description": "Python: All Algorithms implemented in Python", - "_organization": "thealgorithms", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2016-07-16T00:00:00.000Z", - "_age_weeks": 335, - "_stars_per_week": 447.43, - "_pop_contributor_count": 973, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 978, + "_pop_contributor_logins": [ + "AnupKumarPanwar@thealgorithmsgojek", + "MaximSmolskiy", + "SandersLin", + "cclauss@christianclauss", + "christianbender", + "daniel-s-ingram@torcrobotics", + "dhruvmanila", + "duyuanch@thealgorithms", + "dynamitechetan@fossasiagojekthealgorithms", + "harshildarji@universit\u00e4tpassau" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "christianclauss", "fossasiagojekthealgorithms", + "thealgorithms", "thealgorithmsgojek", + "torcrobotics", "universit\u00e4tpassau" ], + "_pop_contributor_orgs_raw": [ + "@TheAlgorithms", + "@TheAlgorithms @Gojek", + "@fossasia @gojek @thealgorithms", + "Christian Clauss", + "Torc Robotics", + "Universit\u00e4t Passau" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.31, - "_pop_updated_issues_count": 1926, - "_pop_closed_issues_count": 1831, - "_pop_created_since_days": 78, + "_pop_commit_frequency": 6.52, + "_pop_updated_issues_count": 169, + "_pop_closed_issues_count": 110, + "_pop_created_since_days": 80, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 1926.0, - "_pop_comment_count": 2356.0, + "_pop_issue_count": 169.0, + "_pop_comment_count": 169.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 3296, - "_pop_score": 69.3, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 52.53, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/thealgorithms/python/master/README.md", "_readme_localurl": "thealgorithms~python~README.md", @@ -338,9 +386,17 @@ "description": null, "_repopath": "huggingface/transformers", "_reponame": "transformers", - "_stars": 76398, - "_forks": 17261, - "_watches": 866, + "_stars": 81769, + "_forks": 18127, + "_watches": 899, + "_language": "Python", + "_homepage": "https://huggingface.co/transformers", + "_description": "\ud83e\udd17 Transformers: State-of-the-art Machine Learning for Pytorch, TensorFlow, and JAX.", + "_organization": "huggingface", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-10-29T00:00:00.000Z", + "_age_weeks": 225, + "_stars_per_week": 362.96, "_topics": [ "nlp", "natural-language-processing", @@ -363,37 +419,49 @@ "machine-learning", "deep-learning" ], - "_language": "Python", - "_homepage": "https://huggingface.co/transformers", - "_description": "\ud83e\udd17 Transformers: State-of-the-art Machine Learning for Pytorch, TensorFlow, and JAX.", - "_organization": "huggingface", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2018-10-29T00:00:00.000Z", - "_age_weeks": 216, - "_stars_per_week": 353.69, - "_pop_contributor_count": 1650, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 1746, + "_pop_contributor_logins": [ + "LysandreJik@huggingface", + "Narsil@huggingface", + "julien-c@huggingface", + "patil-suraj@huggingface", + "patrickvonplaten", + "sgugger", + "sshleifer@facebookresearch", + "stas00@stasosphereonline/huggingface", + "thomwolf@huggingface", + "ydshieh" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "facebookresearch", "huggingface", - "stasosphereonline" + "stasosphereonline/huggingface" + ], + "_pop_contributor_orgs_raw": [ + "@facebookresearch", + "@huggingface ", + "Hugging Face", + "Huggingface", + "Stasosphere Online Inc. / HuggingFace Inc." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 56.79, - "_pop_updated_issues_count": 2247, - "_pop_closed_issues_count": 1896, - "_pop_created_since_days": 50, + "_pop_commit_frequency": 56.77, + "_pop_updated_issues_count": 1870, + "_pop_closed_issues_count": 1554, + "_pop_created_since_days": 53, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 24, - "_pop_recent_releases_estimated_tags": 28, - "_pop_recent_releases_adjusted_count": 24, - "_pop_issue_count": 2248.0, - "_pop_comment_count": 6558.0, + "_pop_recent_releases_count": 22, + "_pop_recent_releases_estimated_tags": 27, + "_pop_recent_releases_adjusted_count": 22, + "_pop_issue_count": 1870.0, + "_pop_comment_count": 5676.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.9, - "_pop_dependents_count": 10695, - "_pop_score": 81.11, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 0, + "_pop_score": 65.88, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/huggingface/transformers/master/README.md", "_readme_localurl": "huggingface~transformers~README.md", @@ -419,9 +487,17 @@ "description": null, "_repopath": "django/django", "_reponame": "django", - "_stars": 67753, - "_forks": 28322, - "_watches": 2271, + "_stars": 68891, + "_forks": 28667, + "_watches": 2266, + "_language": "Python", + "_homepage": "https://www.djangoproject.com/", + "_description": "django: The Web framework for perfectionists with deadlines.", + "_organization": "django", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-04-28T00:00:00.000Z", + "_age_weeks": 564, + "_stars_per_week": 122.02, "_topics": [ "python", "django", @@ -433,36 +509,53 @@ "views", "apps" ], - "_language": "Python", - "_homepage": "https://www.djangoproject.com/", - "_description": "django: The Web framework for perfectionists with deadlines.", - "_organization": "django", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2012-04-28T00:00:00.000Z", - "_age_weeks": 555, - "_stars_per_week": 122.01, - "_pop_contributor_count": 2842, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 2880, + "_pop_contributor_logins": [ + "aaugustin@qonto", + "adrianholovaty", + "charettes@zapier", + "claudep@2xlibre.nets\u00e0rl", + "felixxm@django", + "freakboy3742", + "jacobian@latacora", + "jezdez@anaconda", + "malcolmt", + "timgraham" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "2xlibre.nets\u00e0rl" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 18.12, - "_pop_updated_issues_count": 377, - "_pop_closed_issues_count": 307, - "_pop_created_since_days": 130, - "_pop_updated_since_days": 1, + "2xlibre.nets\u00e0rl", + "anaconda", + "django", + "latacora", + "qonto", + "zapier" + ], + "_pop_contributor_orgs_raw": [ + "2xlibre.net S\u00e0rl", + "@anaconda", + "@django", + "@qonto", + "@zapier", + "Latacora" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 18.23, + "_pop_updated_issues_count": 339, + "_pop_closed_issues_count": 292, + "_pop_created_since_days": 132, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 34, "_pop_recent_releases_adjusted_count": 34, - "_pop_issue_count": 377.0, - "_pop_comment_count": 957.0, + "_pop_issue_count": 339.0, + "_pop_comment_count": 723.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 61720, - "_pop_score": 79.49, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 0, + "_pop_score": 66.98, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/django/django/master/README.rst", "_readme_localurl": "django~django~README.rst", @@ -479,71 +572,6 @@ "django~django~pyproject.toml" ] }, - { - "index": 57, - "category": "web", - "githuburl": "https://github.com/pallets/flask", - "featured": null, - "links": null, - "description": null, - "_repopath": "pallets/flask", - "_reponame": "flask", - "_stars": 61341, - "_forks": 15349, - "_watches": 2146, - "_topics": [ - "python", - "flask", - "wsgi", - "web-framework", - "werkzeug", - "jinja", - "pallets" - ], - "_language": "Python", - "_homepage": "https://flask.palletsprojects.com", - "_description": "flask: The Python micro framework for building web applications.", - "_organization": "pallets", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-25T00:00:00.000Z", - "_created_at": "2010-04-06T00:00:00.000Z", - "_age_weeks": 662, - "_stars_per_week": 92.54, - "_pop_contributor_count": 800, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "getsentry", - "sentry" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.71, - "_pop_updated_issues_count": 76, - "_pop_closed_issues_count": 65, - "_pop_created_since_days": 155, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 8, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 76.0, - "_pop_comment_count": 61.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 8741, - "_pop_score": 65.15, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pallets/flask/master/README.rst", - "_readme_localurl": "pallets~flask~README.rst", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pallets/flask/master/setup.py" - ], - "_requirements_localurls": [ - "pallets~flask~setup.py" - ] - }, { "index": 76, "category": "ml-dl", @@ -553,9 +581,17 @@ "description": null, "_repopath": "pytorch/pytorch", "_reponame": "pytorch", - "_stars": 61054, - "_forks": 17007, - "_watches": 1624, + "_stars": 62941, + "_forks": 17471, + "_watches": 1637, + "_language": "C++", + "_homepage": "https://pytorch.org", + "_description": "pytorch: Tensors and Dynamic neural networks in Python with strong GPU acceleration", + "_organization": "pytorch", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-08-13T00:00:00.000Z", + "_age_weeks": 340, + "_stars_per_week": 184.81, "_topics": [ "neural-network", "autograd", @@ -566,36 +602,47 @@ "python", "machine-learning" ], - "_language": "C++", - "_homepage": "https://pytorch.org", - "_description": "pytorch: Tensors and Dynamic neural networks in Python with strong GPU acceleration", - "_organization": "pytorch", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2016-08-13T00:00:00.000Z", - "_age_weeks": 331, - "_stars_per_week": 184.29, - "_pop_contributor_count": 3755, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 3855, + "_pop_contributor_logins": [ + "apaszke@google", + "ezyang", + "gchanan", + "jerryzh168@facebook", + "malfet", + "pytorchmergebot", + "soumith@facebookairesearch", + "suo", + "zdevito", + "zou3519" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "facebookairesearch" + "facebook", + "facebookairesearch", + "google" + ], + "_pop_contributor_orgs_raw": [ + "@facebook", + "@google", + "Facebook AI Research" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 216.04, - "_pop_updated_issues_count": 8263, - "_pop_closed_issues_count": 5684, - "_pop_created_since_days": 77, + "_pop_commit_frequency": 224.5, + "_pop_updated_issues_count": 7890, + "_pop_closed_issues_count": 5476, + "_pop_created_since_days": 79, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 120, + "_pop_recent_releases_estimated_tags": 110, "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 8258.0, - "_pop_comment_count": 34479.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 4.2, - "_pop_dependents_count": 961352, - "_pop_score": 91.48, + "_pop_issue_count": 7886.0, + "_pop_comment_count": 36088.0, + "_pop_comment_count_lookback_days": 22.0, + "_pop_comment_frequency": 4.6, + "_pop_dependents_count": 0, + "_pop_score": 71.86, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pytorch/pytorch/master/README.md", "_readme_localurl": "pytorch~pytorch~README.md", @@ -616,67 +663,88 @@ ] }, { - "index": 40, - "category": "ml-dl", - "githuburl": "https://github.com/keras-team/keras", + "index": 57, + "category": "web", + "githuburl": "https://github.com/pallets/flask", "featured": null, "links": null, "description": null, - "_repopath": "keras-team/keras", - "_reponame": "keras", - "_stars": 56861, - "_forks": 19228, - "_watches": 1936, + "_repopath": "pallets/flask", + "_reponame": "flask", + "_stars": 61974, + "_forks": 15472, + "_watches": 2145, + "_language": "Python", + "_homepage": "https://flask.palletsprojects.com", + "_description": "flask: The Python micro framework for building web applications.", + "_organization": "pallets", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2010-04-06T00:00:00.000Z", + "_age_weeks": 672, + "_stars_per_week": 92.2, "_topics": [ - "deep-learning", - "tensorflow", - "neural-networks", - "machine-learning", - "data-science", - "python" + "python", + "flask", + "wsgi", + "web-framework", + "werkzeug", + "jinja", + "pallets" ], - "_language": "Python", - "_homepage": "http://keras.io/", - "_description": "keras: Deep Learning for humans", - "_organization": "keras-team", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2015-03-28T00:00:00.000Z", - "_age_weeks": 403, - "_stars_per_week": 140.99, - "_pop_contributor_count": 1133, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 808, + "_pop_contributor_logins": [ + "DasIch@zalandose", + "davidism", + "dependabot-preview[bot]", + "greyli", + "kennethreitz", + "keyan@stripe", + "mitsuhiko@sentry", + "pgjones", + "rduplain", + "untitaker@getsentry" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google", - "sktelecom" + "getsentry", + "sentry", + "stripe", + "zalandose" + ], + "_pop_contributor_orgs_raw": [ + "@getsentry ", + "Sentry", + "Zalando SE", + "stripe" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 20.58, - "_pop_updated_issues_count": 486, - "_pop_closed_issues_count": 353, - "_pop_created_since_days": 94, + "_pop_commit_frequency": 4.15, + "_pop_updated_issues_count": 126, + "_pop_closed_issues_count": 123, + "_pop_created_since_days": 157, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 13, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 486.0, - "_pop_comment_count": 894.0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 126.0, + "_pop_comment_count": 130.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 3088, - "_pop_score": 73.04, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/keras-team/keras/master/README.md", - "_readme_localurl": "keras-team~keras~README.md", + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 54.49, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pallets/flask/master/README.rst", + "_readme_localurl": "pallets~flask~README.rst", "_requirements_filenames": [ - "requirements.txt" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/keras-team/keras/master/requirements.txt" + "https://raw.githubusercontent.com/pallets/flask/master/pyproject.toml" ], "_requirements_localurls": [ - "keras-team~keras~requirements.txt" + "pallets~flask~pyproject.toml" ] }, { @@ -688,9 +756,17 @@ "description": null, "_repopath": "home-assistant/core", "_reponame": "core", - "_stars": 56762, - "_forks": 20995, - "_watches": 1345, + "_stars": 58219, + "_forks": 22051, + "_watches": 1348, + "_language": "Python", + "_homepage": "https://www.home-assistant.io", + "_description": "core: :house_with_garden: Open source home automation that puts local control and privacy first.", + "_organization": "home-assistant", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2013-09-17T00:00:00.000Z", + "_age_weeks": 492, + "_stars_per_week": 118.3, "_topics": [ "python", "home-automation", @@ -701,37 +777,47 @@ "asyncio", "hacktoberfest" ], - "_language": "Python", - "_homepage": "https://www.home-assistant.io", - "_description": "core: :house_with_garden: Open source home automation that puts local control and privacy first.", - "_organization": "home-assistant", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2013-09-17T00:00:00.000Z", - "_age_weeks": 482, - "_stars_per_week": 117.55, - "_pop_contributor_count": 3475, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 3559, + "_pop_contributor_logins": [ + "Kane610", + "bachya", + "balloob@home-assistant,nabucasa", + "bdraco", + "cdce8p", + "emontnemery", + "epenet", + "fabaff", + "frenck@home-assistanthassio-addons", + "pvizeli@nabucasa" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "home-assistant,nabucasa", - "home-assistanthassio-addons" + "home-assistanthassio-addons", + "nabucasa" + ], + "_pop_contributor_orgs_raw": [ + "@NabuCasa", + "@home-assistant @hassio-addons", + "@home-assistant, @nabucasa" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 241.85, - "_pop_updated_issues_count": 7960, - "_pop_closed_issues_count": 5914, - "_pop_created_since_days": 113, + "_pop_commit_frequency": 233.4, + "_pop_updated_issues_count": 8972, + "_pop_closed_issues_count": 6338, + "_pop_created_since_days": 115, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 173, - "_pop_recent_releases_estimated_tags": 111, - "_pop_recent_releases_adjusted_count": 173, - "_pop_issue_count": 7960.0, - "_pop_comment_count": 23769.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.0, - "_pop_dependents_count": 3239, - "_pop_score": 86.91, + "_pop_recent_releases_count": 181, + "_pop_recent_releases_estimated_tags": 113, + "_pop_recent_releases_adjusted_count": 181, + "_pop_issue_count": 8971.0, + "_pop_comment_count": 28860.0, + "_pop_comment_count_lookback_days": 22.0, + "_pop_comment_frequency": 3.2, + "_pop_dependents_count": 0, + "_pop_score": 74.08, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/home-assistant/core/master/README.rst", "_readme_localurl": "home-assistant~core~README.rst", @@ -748,6 +834,90 @@ "home-assistant~core~pyproject.toml" ] }, + { + "index": 40, + "category": "ml-dl", + "githuburl": "https://github.com/keras-team/keras", + "featured": null, + "links": null, + "description": null, + "_repopath": "keras-team/keras", + "_reponame": "keras", + "_stars": 57357, + "_forks": 19295, + "_watches": 1927, + "_language": "Python", + "_homepage": "http://keras.io/", + "_description": "keras: Deep Learning for humans", + "_organization": "keras-team", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-03-28T00:00:00.000Z", + "_age_weeks": 412, + "_stars_per_week": 139.02, + "_topics": [ + "deep-learning", + "tensorflow", + "neural-networks", + "machine-learning", + "data-science", + "python" + ], + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 1161, + "_pop_contributor_logins": [ + "chenmoneygithub", + "farizrahman4u", + "fchollet", + "gabrieldemarmiesse@preligens", + "haifeng-jin@keras-teamtensorflowgooglers", + "mattdangerw@google", + "ozabluda", + "qlzh727@google", + "taehoonlee@sktelecom", + "tensorflower-gardener" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "google", + "keras-teamtensorflowgooglers", + "preligens", + "sktelecom" + ], + "_pop_contributor_orgs_raw": [ + "@keras-team @tensorflow @googlers", + "Google", + "Preligens", + "SK Telecom" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 19.67, + "_pop_updated_issues_count": 463, + "_pop_closed_issues_count": 323, + "_pop_created_since_days": 96, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 463.0, + "_pop_comment_count": 1009.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 0, + "_pop_score": 61.22, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/keras-team/keras/master/README.md", + "_readme_localurl": "keras-team~keras~README.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/keras-team/keras/master/requirements.txt" + ], + "_requirements_localurls": [ + "keras-team~keras~requirements.txt" + ] + }, { "index": 135, "category": "web", @@ -757,9 +927,17 @@ "description": null, "_repopath": "tiangolo/fastapi", "_reponame": "fastapi", - "_stars": 52565, - "_forks": 4303, - "_watches": 603, + "_stars": 54734, + "_forks": 4530, + "_watches": 619, + "_language": "Python", + "_homepage": "https://fastapi.tiangolo.com/", + "_description": "FastAPI framework, high performance, easy to learn, fast to code, ready for production", + "_organization": "tiangolo", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-12-08T00:00:00.000Z", + "_age_weeks": 219, + "_stars_per_week": 249.28, "_topics": [ "python", "json", @@ -782,34 +960,45 @@ "rest", "web" ], - "_language": "Python", - "_homepage": "https://fastapi.tiangolo.com/", - "_description": "FastAPI framework, high performance, easy to learn, fast to code, ready for production", - "_organization": "tiangolo", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2018-12-08T00:00:00.000Z", - "_age_weeks": 210, - "_stars_per_week": 249.97, - "_pop_contributor_count": 401, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 415, + "_pop_contributor_logins": [ + "Kludex@encode", + "dependabot[bot]", + "dmontagu@formlogic", + "euri10", + "github-actions[bot]", + "jaystone776", + "mariacamilagl", + "tiangolo", + "tokusumi", + "waynerv" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "encode", + "formlogic" + ], + "_pop_contributor_orgs_raw": [ + "@encode", + "Formlogic" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 12.75, - "_pop_updated_issues_count": 1366, - "_pop_closed_issues_count": 887, - "_pop_created_since_days": 49, + "_pop_commit_frequency": 13.67, + "_pop_updated_issues_count": 918, + "_pop_closed_issues_count": 491, + "_pop_created_since_days": 51, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 25, + "_pop_recent_releases_count": 27, "_pop_recent_releases_estimated_tags": 35, - "_pop_recent_releases_adjusted_count": 25, - "_pop_issue_count": 1366.0, - "_pop_comment_count": 3158.0, + "_pop_recent_releases_adjusted_count": 27, + "_pop_issue_count": 918.0, + "_pop_comment_count": 1925.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.3, - "_pop_dependents_count": 4316, - "_pop_score": 66.19, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 0, + "_pop_score": 55.99, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tiangolo/fastapi/master/README.md", "_readme_localurl": "tiangolo~fastapi~README.md", @@ -832,9 +1021,17 @@ "description": null, "_repopath": "scikit-learn/scikit-learn", "_reponame": "scikit-learn", - "_stars": 52354, - "_forks": 23790, - "_watches": 2167, + "_stars": 53008, + "_forks": 23961, + "_watches": 2159, + "_language": "Python", + "_homepage": "https://scikit-learn.org", + "_description": "scikit-learn: machine learning in Python", + "_organization": "scikit-learn", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2010-08-17T00:00:00.000Z", + "_age_weeks": 653, + "_stars_per_week": 81.16, "_topics": [ "machine-learning", "python", @@ -842,39 +1039,57 @@ "data-science", "data-analysis" ], - "_language": "Python", - "_homepage": "https://scikit-learn.org", - "_description": "scikit-learn: machine learning in Python", - "_organization": "scikit-learn", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2010-08-17T00:00:00.000Z", - "_age_weeks": 643, - "_stars_per_week": 81.31, - "_pop_contributor_count": 2806, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 2858, + "_pop_contributor_logins": [ + "agramfort@meta", + "amueller@microsoft", + "glouppe@uli\u00e8ge", + "jnothman@canva", + "larsmans", + "mblondel@googleresearch,brainteam", + "ogrisel@inria", + "pprett", + "thomasjpfan@quansight-labs", + "vene@uvalanguagetechnologylabltl-uva" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "canva", + "googleresearch,brainteam", "inria", "meta", "microsoft", - "uli\u00e8ge" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 31.21, - "_pop_updated_issues_count": 1080, - "_pop_closed_issues_count": 710, - "_pop_created_since_days": 150, + "quansight-labs", + "uli\u00e8ge", + "uvalanguagetechnologylabltl-uva" + ], + "_pop_contributor_orgs_raw": [ + "@Quansight-Labs ", + "Canva", + "Google Research, Brain team", + "Inria", + "Meta", + "Microsoft", + "ULi\u00e8ge", + "UvA Language Technology Lab @ltl-uva" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 30.67, + "_pop_updated_issues_count": 965, + "_pop_closed_issues_count": 631, + "_pop_created_since_days": 152, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 6, "_pop_recent_releases_estimated_tags": 10, "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 1079.0, - "_pop_comment_count": 2656.0, + "_pop_issue_count": 965.0, + "_pop_comment_count": 2270.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 36390, - "_pop_score": 84.49, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 0, + "_pop_score": 68.28, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/scikit-learn/scikit-learn/master/README.rst", "_readme_localurl": "scikit-learn~scikit-learn~README.rst", @@ -900,43 +1115,67 @@ "description": null, "_repopath": "python/cpython", "_reponame": "cpython", - "_stars": 49550, - "_forks": 25219, - "_watches": 1465, - "_topics": [], + "_stars": 50776, + "_forks": 25865, + "_watches": 1472, "_language": "Python", "_homepage": "https://www.python.org/", "_description": "cpython: The Python programming language", "_organization": "python", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2017-02-10T00:00:00.000Z", - "_age_weeks": 305, - "_stars_per_week": 162.23, - "_pop_contributor_count": 2294, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_age_weeks": 314, + "_stars_per_week": 161.34, + "_topics": [], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 2374, + "_pop_contributor_logins": [ + "benjaminp", + "birkenfeld@fzj\u00fclich", + "freddrake@keepertech", + "gvanrossum@microsoft", + "jackjansen@centrumvoorwiskundeeninformatica", + "loewis", + "pitrou", + "rhettinger@mutableminds", + "serhiy-storchaka@neu.ro", + "vstinner@redhatofficial" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "centrumvoorwiskundeeninformatica", "fzj\u00fclich", "keepertech", "microsoft", + "mutableminds", + "neu.ro", "redhatofficial" ], + "_pop_contributor_orgs_raw": [ + "@RedHatOfficial", + "@keepertech ", + "Centrum voor Wiskunde en Informatica", + "FZ J\u00fclich", + "Microsoft", + "Mutable Minds, Inc.", + "Neu.ro" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 68.56, - "_pop_updated_issues_count": 4833, - "_pop_closed_issues_count": 3383, - "_pop_created_since_days": 71, + "_pop_commit_frequency": 66.17, + "_pop_updated_issues_count": 3850, + "_pop_closed_issues_count": 2536, + "_pop_created_since_days": 73, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 91, - "_pop_recent_releases_adjusted_count": 91, - "_pop_issue_count": 4833.0, - "_pop_comment_count": 11415.0, + "_pop_recent_releases_estimated_tags": 89, + "_pop_recent_releases_adjusted_count": 89, + "_pop_issue_count": 3845.0, + "_pop_comment_count": 8805.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.4, - "_pop_dependents_count": 11228, - "_pop_score": 86.26, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 71.46, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/python/cpython/master/README.rst", "_readme_localurl": "python~cpython~README.rst", @@ -953,9 +1192,17 @@ "description": null, "_repopath": "psf/requests", "_reponame": "requests", - "_stars": 48718, - "_forks": 8929, - "_watches": 1362, + "_stars": 49080, + "_forks": 8971, + "_watches": 1354, + "_language": "Python", + "_homepage": "https://requests.readthedocs.io/en/latest/", + "_description": "requests: A simple, yet elegant, HTTP library.", + "_organization": "psf", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2011-02-13T00:00:00.000Z", + "_age_weeks": 627, + "_stars_per_week": 78.22, "_topics": [ "python", "http", @@ -966,38 +1213,53 @@ "humans", "cookies" ], - "_language": "Python", - "_homepage": "https://requests.readthedocs.io/en/latest/", - "_description": "requests: A simple, yet elegant, HTTP library.", - "_organization": "psf", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-21T00:00:00.000Z", - "_created_at": "2011-02-13T00:00:00.000Z", - "_age_weeks": 618, - "_stars_per_week": 78.81, - "_pop_contributor_count": 723, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-01-21T00:00:00.000Z", + "_pop_contributor_count": 727, + "_pop_contributor_logins": [ + "BraulioVM", + "Lukasa@apple", + "daftshady@marsauto", + "dpursehouse", + "jerem@newlogic", + "jgorset@schibsted", + "kennethreitz", + "nateprewitt@amazonwebservices", + "sigmavirus24@tableau&salesforce", + "slingamn" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "amazonwebservices", "apple", + "marsauto", + "newlogic", + "schibsted", "tableau&salesforce" ], + "_pop_contributor_orgs_raw": [ + "@marsauto ", + "@newlogic", + "@schibsted", + "@tableau & @salesforce", + "Amazon Web Services", + "Apple" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.87, - "_pop_updated_issues_count": 89, - "_pop_closed_issues_count": 56, - "_pop_created_since_days": 144, + "_pop_commit_frequency": 0.6, + "_pop_updated_issues_count": 91, + "_pop_closed_issues_count": 62, + "_pop_created_since_days": 146, "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 4, + "_pop_recent_releases_count": 3, "_pop_recent_releases_estimated_tags": 12, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 89.0, - "_pop_comment_count": 124.0, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 91.0, + "_pop_comment_count": 135.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 9183, - "_pop_score": 64.97, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 50.96, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/psf/requests/master/README.md", "_readme_localurl": "psf~requests~README.md", @@ -1023,49 +1285,72 @@ "description": null, "_repopath": "scrapy/scrapy", "_reponame": "scrapy", - "_stars": 45399, - "_forks": 9807, - "_watches": 1789, + "_stars": 46216, + "_forks": 9865, + "_watches": 1781, + "_language": "Python", + "_homepage": "https://scrapy.org", + "_description": "Scrapy, a fast high-level web crawling & scraping framework for Python.", + "_organization": "scrapy", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2010-02-22T00:00:00.000Z", + "_age_weeks": 678, + "_stars_per_week": 68.14, "_topics": [ "python", "scraping", "crawling", "framework", "crawler", - "hacktoberfest" + "hacktoberfest", + "web-scraping", + "web-scraping-python" + ], + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 587, + "_pop_contributor_logins": [ + "Gallaecio@scrapinghub", + "curita@scrapinghub", + "dangra@superfly", + "elacuesta", + "eliasdorneles", + "kmike@zytedata,scrapinghub", + "pablohoffman@zytedata(formerlyscrapinghub)", + "redapple", + "void", + "wRAR@zyte" ], - "_language": "Python", - "_homepage": "https://scrapy.org", - "_description": "Scrapy, a fast high-level web crawling & scraping framework for Python.", - "_organization": "scrapy", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2010-02-22T00:00:00.000Z", - "_age_weeks": 669, - "_stars_per_week": 67.86, - "_pop_contributor_count": 569, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "scrapinghub", "superfly", + "zyte", "zytedata(formerlyscrapinghub)", "zytedata,scrapinghub" ], + "_pop_contributor_orgs_raw": [ + "@superfly ", + "@zytedata (formerly @scrapinghub)", + "@zytedata, @ScrapingHub", + "Scrapinghub", + "Zyte" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.71, - "_pop_updated_issues_count": 259, - "_pop_closed_issues_count": 190, - "_pop_created_since_days": 156, + "_pop_commit_frequency": 6.21, + "_pop_updated_issues_count": 199, + "_pop_closed_issues_count": 140, + "_pop_created_since_days": 158, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 8, + "_pop_recent_releases_count": 9, "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 260.0, - "_pop_comment_count": 538.0, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 199.0, + "_pop_comment_count": 368.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 1159, - "_pop_score": 67.91, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 57.09, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/scrapy/scrapy/master/README.rst", "_readme_localurl": "scrapy~scrapy~README.rst", @@ -1088,9 +1373,17 @@ "description": null, "_repopath": "deepfakes/faceswap", "_reponame": "faceswap", - "_stars": 42994, - "_forks": 12012, - "_watches": 1502, + "_stars": 43685, + "_forks": 12120, + "_watches": 1501, + "_language": "Python", + "_homepage": "https://www.faceswap.dev", + "_description": "faceswap: Deepfakes Software For All", + "_organization": "deepfakes", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-12-19T00:00:00.000Z", + "_age_weeks": 270, + "_stars_per_week": 161.71, "_topics": [ "faceswap", "face-swap", @@ -1107,34 +1400,45 @@ "myfakeapp", "machine-learning" ], - "_language": "Python", - "_homepage": "https://www.faceswap.dev", - "_description": "faceswap: Deepfakes Software For All", - "_organization": "deepfakes", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2017-12-19T00:00:00.000Z", - "_age_weeks": 260, - "_stars_per_week": 164.82, - "_pop_contributor_count": 94, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 95, + "_pop_contributor_logins": [ + "Clorr", + "Ganonmaster@transip", + "andenixa", + "bryanlyon@arkavianinc", + "deepfakes", + "gdunstone", + "geewiz94", + "kilroythethird", + "kvrooman", + "torzdf" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "arkavianinc", + "transip" + ], + "_pop_contributor_orgs_raw": [ + "@transip", + "Arkavian Inc" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.87, + "_pop_commit_frequency": 5.54, "_pop_updated_issues_count": 21, - "_pop_closed_issues_count": 14, - "_pop_created_since_days": 61, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 63, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, "_pop_issue_count": 21.0, - "_pop_comment_count": 17.0, + "_pop_comment_count": 16.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 1192, - "_pop_score": 46.16, + "_pop_dependents_count": 0, + "_pop_score": 39.4, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/deepfakes/faceswap/master/README.md", "_readme_localurl": "deepfakes~faceswap~README.md", @@ -1149,17 +1453,96 @@ ] }, { - "index": 179, - "category": "term", - "githuburl": "https://github.com/willmcgugan/rich", + "index": 736, + "category": "diffusion", + "githuburl": "https://github.com/compvis/stable-diffusion", "featured": null, "links": null, "description": null, - "_repopath": "willmcgugan/rich", - "_reponame": "rich", - "_stars": 41137, - "_forks": 1447, - "_watches": 541, + "_repopath": "compvis/stable-diffusion", + "_reponame": "stable-diffusion", + "_stars": 42441, + "_forks": 6653, + "_watches": 406, + "_language": "Jupyter Notebook", + "_homepage": "https://ommer-lab.com/research/latent-diffusion-models/", + "_description": "stable-diffusion: A latent text-to-image diffusion model", + "_organization": "compvis", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-08-10T00:00:00.000Z", + "_age_weeks": 28, + "_stars_per_week": 1515.75, + "_topics": [], + "_last_commit_date": "2022-11-16T00:00:00.000Z", + "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "LuChengTHU", + "ablattmann", + "apolinario", + "cpacker@ucberkeley", + "owenvincent", + "patrickvonplaten", + "pesser@runwayml", + "rromb" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "runwayml", + "ucberkeley" + ], + "_pop_contributor_orgs_raw": [ + "@runwayml ", + "UC Berkeley" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.33, + "_pop_updated_issues_count": 201, + "_pop_closed_issues_count": 38, + "_pop_created_since_days": 6, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 201.0, + "_pop_comment_count": 293.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 23.4, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/compvis/stable-diffusion/master/README.md", + "_readme_localurl": "compvis~stable-diffusion~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/compvis/stable-diffusion/master/setup.py" + ], + "_requirements_localurls": [ + "compvis~stable-diffusion~setup.py" + ] + }, + { + "index": 179, + "category": "term", + "githuburl": "https://github.com/willmcgugan/rich", + "featured": null, + "links": null, + "description": null, + "_repopath": "willmcgugan/rich", + "_reponame": "rich", + "_stars": 42127, + "_forks": 1496, + "_watches": 541, + "_language": "Python", + "_homepage": "https://rich.readthedocs.io/en/latest/", + "_description": "Rich is a Python library for rich text and beautiful formatting in the terminal.", + "_organization": "willmcgugan", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-11-10T00:00:00.000Z", + "_age_weeks": 171, + "_stars_per_week": 245.74, "_topics": [ "python", "python3", @@ -1178,37 +1561,53 @@ "emoji", "tui" ], - "_language": "Python", - "_homepage": "https://rich.readthedocs.io/en/latest/", - "_description": "Rich is a Python library for rich text and beautiful formatting in the terminal.", - "_organization": "willmcgugan", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", - "_created_at": "2019-11-10T00:00:00.000Z", - "_age_weeks": 162, - "_stars_per_week": 253.71, - "_pop_contributor_count": 203, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 207, + "_pop_contributor_logins": [ + "althonos@embl,zellerlab", + "amartya-dev@ohurutech", + "darrenburns", + "davep@davep.org", + "dependabot[bot]", + "evantkchong", + "hedyhli", + "olivierphi@lastmileict", + "toto6038@nationaltaiwannormaluniversity", + "willmcgugan@textualize" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "davep.org", + "embl,zellerlab", + "lastmileict", + "nationaltaiwannormaluniversity", + "ohurutech", "textualize" ], + "_pop_contributor_orgs_raw": [ + "@lastmileICT ", + "EMBL, @zellerlab", + "National Taiwan Normal University", + "Ohuru Tech", + "Textualize", + "davep.org" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 13.44, - "_pop_updated_issues_count": 197, - "_pop_closed_issues_count": 147, - "_pop_created_since_days": 38, + "_pop_commit_frequency": 11.48, + "_pop_updated_issues_count": 189, + "_pop_closed_issues_count": 124, + "_pop_created_since_days": 40, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 17, + "_pop_recent_releases_count": 19, "_pop_recent_releases_estimated_tags": 45, - "_pop_recent_releases_adjusted_count": 17, - "_pop_issue_count": 197.0, - "_pop_comment_count": 392.0, + "_pop_recent_releases_adjusted_count": 19, + "_pop_issue_count": 189.0, + "_pop_comment_count": 395.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 3007, - "_pop_score": 64.9, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 0, + "_pop_score": 54.81, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/willmcgugan/rich/master/README.md", "_readme_localurl": "willmcgugan~rich~README.md", @@ -1234,9 +1633,17 @@ "description": null, "_repopath": "sherlock-project/sherlock", "_reponame": "sherlock", - "_stars": 37843, - "_forks": 4466, - "_watches": 963, + "_stars": 39212, + "_forks": 4648, + "_watches": 978, + "_language": "Python", + "_homepage": "http://sherlock-project.github.io", + "_description": "sherlock: \ud83d\udd0e Hunt down social media accounts by username across social networks", + "_organization": "sherlock-project", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-12-24T00:00:00.000Z", + "_age_weeks": 217, + "_stars_per_week": 180.46, "_topics": [ "osint", "reconnaissance", @@ -1253,36 +1660,51 @@ "hacktoberfest2022", "python" ], - "_language": "Python", - "_homepage": "http://sherlock-project.github.io", - "_description": "sherlock: \ud83d\udd0e Hunt down social media accounts by username across social networks", - "_organization": "sherlock-project", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-10-21T00:00:00.000Z", - "_created_at": "2018-12-24T00:00:00.000Z", - "_age_weeks": 208, - "_stars_per_week": 181.94, - "_pop_contributor_count": 209, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 215, + "_pop_contributor_logins": [ + "Czechball", + "SethFalco@kodify", + "TheYahya@paackeng", + "aristosgi@athensuniversityofbuisnessandeconomics", + "cclauss@christianclauss", + "hoadlck", + "irazasyed@lukonet", + "ptalmeida", + "roopeshvs", + "sdushantha" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "athensuniversityofbuisnessandeconomics", + "christianclauss", + "kodify", + "lukonet", "paackeng" ], + "_pop_contributor_orgs_raw": [ + "@PaackEng", + "@kodify", + "@lukonet", + "Athens University Of Buisness And Economics", + "Christian Clauss" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.25, - "_pop_updated_issues_count": 194, - "_pop_closed_issues_count": 117, - "_pop_created_since_days": 48, - "_pop_updated_since_days": 2, + "_pop_commit_frequency": 4.08, + "_pop_updated_issues_count": 167, + "_pop_closed_issues_count": 159, + "_pop_created_since_days": 51, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 194.0, - "_pop_comment_count": 179.0, + "_pop_issue_count": 167.0, + "_pop_comment_count": 151.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 415, - "_pop_score": 47.96, + "_pop_dependents_count": 0, + "_pop_score": 45.87, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/sherlock-project/sherlock/master/README.md", "_readme_localurl": "sherlock-project~sherlock~README.md", @@ -1296,62 +1718,6 @@ "sherlock-project~sherlock~requirements.txt" ] }, - { - "index": 736, - "category": "diffusion", - "githuburl": "https://github.com/compvis/stable-diffusion", - "featured": null, - "links": null, - "description": null, - "_repopath": "compvis/stable-diffusion", - "_reponame": "stable-diffusion", - "_stars": 37519, - "_forks": 5790, - "_watches": 355, - "_topics": [], - "_language": "Jupyter Notebook", - "_homepage": "https://ommer-lab.com/research/latent-diffusion-models/", - "_description": "stable-diffusion: A latent text-to-image diffusion model", - "_organization": "compvis", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-16T00:00:00.000Z", - "_created_at": "2022-08-10T00:00:00.000Z", - "_age_weeks": 18, - "_stars_per_week": 2004.83, - "_pop_contributor_count": 8, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "runwayml" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.4, - "_pop_updated_issues_count": 324, - "_pop_closed_issues_count": 77, - "_pop_created_since_days": 4, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 324.0, - "_pop_comment_count": 729.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.2, - "_pop_dependents_count": 53, - "_pop_score": 31.38, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/compvis/stable-diffusion/master/README.md", - "_readme_localurl": "compvis~stable-diffusion~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/compvis/stable-diffusion/master/setup.py" - ], - "_requirements_localurls": [ - "compvis~stable-diffusion~setup.py" - ] - }, { "index": 432, "category": "study", @@ -1361,9 +1727,17 @@ "description": null, "_repopath": "jakevdp/pythondatasciencehandbook", "_reponame": "PythonDataScienceHandbook", - "_stars": 36840, - "_forks": 16265, - "_watches": 1768, + "_stars": 37544, + "_forks": 16546, + "_watches": 1771, + "_language": "Jupyter Notebook", + "_homepage": "http://jakevdp.github.io/PythonDataScienceHandbook", + "_description": "PythonDataScienceHandbook: Python Data Science Handbook: full text in Jupyter Notebooks", + "_organization": "jakevdp", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-08-10T00:00:00.000Z", + "_age_weeks": 341, + "_stars_per_week": 110.1, "_topics": [ "scikit-learn", "numpy", @@ -1372,39 +1746,57 @@ "matplotlib", "pandas" ], - "_language": "Jupyter Notebook", - "_homepage": "http://jakevdp.github.io/PythonDataScienceHandbook", - "_description": "PythonDataScienceHandbook: Python Data Science Handbook: full text in Jupyter Notebooks", - "_organization": "jakevdp", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2018-11-30T00:00:00.000Z", - "_created_at": "2016-08-10T00:00:00.000Z", - "_age_weeks": 331, - "_stars_per_week": 111.06, "_pop_contributor_count": 17, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "aaronvanderlip", + "choldgraf@ucberkeley", + "fuglede@kvantify", + "habi@instituteofanatomy,unversityofbern,switzerland", + "henrystokeley", + "jackboot7@credijusto", + "jakevdp@google", + "namreg@softswiss", + "ncclementi@coiled", + "vfdev-5@quansight" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "coiled", + "credijusto", "google", + "instituteofanatomy,unversityofbern,switzerland", "kvantify", - "quansight" + "quansight", + "softswiss", + "ucberkeley" + ], + "_pop_contributor_orgs_raw": [ + "@Quansight", + "@coiled", + "@credijusto ", + "Google", + "Institute of Anatomy, Unversity of Bern, Switzerland", + "Kvantify", + "SoftSwiss", + "UC Berkeley" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 19, - "_pop_closed_issues_count": 11, - "_pop_created_since_days": 77, - "_pop_updated_since_days": 49, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 80, + "_pop_updated_since_days": 51, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 19.0, - "_pop_comment_count": 17.0, + "_pop_issue_count": 10.0, + "_pop_comment_count": 7.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 172, - "_pop_score": 32.72, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 24.52, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jakevdp/pythondatasciencehandbook/master/README.md", "_readme_localurl": "jakevdp~pythondatasciencehandbook~README.md", @@ -1418,6 +1810,83 @@ "jakevdp~pythondatasciencehandbook~requirements.txt" ] }, + { + "index": 694, + "category": "ml-dl", + "githuburl": "https://github.com/iperov/deepfacelab", + "featured": null, + "links": null, + "description": null, + "_repopath": "iperov/deepfacelab", + "_reponame": "DeepFaceLab", + "_stars": 37460, + "_forks": 8390, + "_watches": 1056, + "_language": "Python", + "_homepage": "", + "_description": "DeepFaceLab is the leading software for creating deepfakes.", + "_organization": "iperov", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-06-04T00:00:00.000Z", + "_age_weeks": 246, + "_stars_per_week": 152.1, + "_topics": [ + "faceswap", + "face-swap", + "deep-learning", + "deeplearning", + "deep-neural-networks", + "deepfakes", + "deepface", + "deep-face-swap", + "fakeapp", + "neural-networks", + "neural-nets", + "deepfacelab", + "creating-deepfakes", + "arxiv", + "machine-learning" + ], + "_last_commit_date": "2022-12-31T00:00:00.000Z", + "_pop_contributor_count": 21, + "_pop_contributor_logins": [ + "Auroir", + "ChrisTopherTa54321", + "IMIYOU", + "MaksV79", + "NemirovD", + "TooMuchFun", + "andenixa", + "iperov", + "lbfs", + "sergeevii123" + ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.19, + "_pop_updated_issues_count": 60, + "_pop_closed_issues_count": 16, + "_pop_created_since_days": 57, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 60.0, + "_pop_comment_count": 67.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 24.05, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/iperov/deepfacelab/master/README.md", + "_readme_localurl": "iperov~deepfacelab~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 59, "category": "pandas", @@ -1427,9 +1896,17 @@ "description": null, "_repopath": "pandas-dev/pandas", "_reponame": "pandas", - "_stars": 36289, - "_forks": 15523, - "_watches": 1119, + "_stars": 36929, + "_forks": 15788, + "_watches": 1109, + "_language": "Python", + "_homepage": "https://pandas.pydata.org", + "_description": "pandas: Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more", + "_organization": "pandas-dev", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2010-08-24T00:00:00.000Z", + "_age_weeks": 652, + "_stars_per_week": 56.63, "_topics": [ "data-analysis", "pandas", @@ -1438,37 +1915,49 @@ "python", "data-science" ], - "_language": "Python", - "_homepage": "https://pandas.pydata.org", - "_description": "pandas: Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more", - "_organization": "pandas-dev", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2010-08-24T00:00:00.000Z", - "_age_weeks": 642, - "_stars_per_week": 56.45, - "_pop_contributor_count": 3189, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 3235, + "_pop_contributor_logins": [ + "TomAugspurger@microsoft", + "cpcloud@voltrondata", + "gfyoung", + "jbrockmendel", + "jorisvandenbossche", + "jreback", + "mroeschke@rapidsai", + "phofl@d-finegmbh", + "simonjayhawkins", + "wesm@voltrondata" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "d-finegmbh", + "microsoft", "rapidsai", "voltrondata" ], + "_pop_contributor_orgs_raw": [ + "@microsoft", + "@rapidsai ", + "@voltrondata", + "d-fine GmbH" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 45.63, - "_pop_updated_issues_count": 4619, - "_pop_closed_issues_count": 3022, - "_pop_created_since_days": 150, + "_pop_commit_frequency": 48.52, + "_pop_updated_issues_count": 2484, + "_pop_closed_issues_count": 1788, + "_pop_created_since_days": 152, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 10, - "_pop_recent_releases_estimated_tags": 12, - "_pop_recent_releases_adjusted_count": 10, - "_pop_issue_count": 4619.0, - "_pop_comment_count": 5418.0, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 2481.0, + "_pop_comment_count": 5545.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 4975, - "_pop_score": 80.24, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 0, + "_pop_score": 68.25, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pandas-dev/pandas/master/README.md", "_readme_localurl": "pandas-dev~pandas~README.md", @@ -1486,68 +1975,71 @@ ] }, { - "index": 694, - "category": "ml-dl", - "githuburl": "https://github.com/iperov/deepfacelab", + "index": 838, + "category": "diffusion", + "githuburl": "https://github.com/automatic1111/stable-diffusion-webui", "featured": null, "links": null, "description": null, - "_repopath": "iperov/deepfacelab", - "_reponame": "DeepFaceLab", - "_stars": 36190, - "_forks": 8167, - "_watches": 1044, - "_topics": [ - "faceswap", - "face-swap", - "deep-learning", - "deeplearning", - "deep-neural-networks", - "deepfakes", - "deepface", - "deep-face-swap", - "fakeapp", - "neural-networks", - "neural-nets", - "deepfacelab", - "creating-deepfakes", - "arxiv", - "machine-learning" - ], + "_repopath": "automatic1111/stable-diffusion-webui", + "_reponame": "stable-diffusion-webui", + "_stars": 36902, + "_forks": 6920, + "_watches": 364, "_language": "Python", - "_homepage": "", - "_description": "DeepFaceLab is the leading software for creating deepfakes.", - "_organization": "iperov", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-10-31T00:00:00.000Z", - "_created_at": "2018-06-04T00:00:00.000Z", - "_age_weeks": 237, - "_stars_per_week": 152.7, - "_pop_contributor_count": 21, + "_homepage": null, + "_description": "stable-diffusion-webui: Stable Diffusion web UI", + "_organization": "automatic1111", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-08-22T00:00:00.000Z", + "_age_weeks": 26, + "_stars_per_week": 1403.88, + "_topics": [], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 352, + "_pop_contributor_logins": [ + "36DB", + "AUTOMATIC1111", + "C43H66N12O12S2", + "R-N", + "brkirch", + "d8ahazard", + "dfaker", + "dtlnor", + "mezotaken", + "yfszzx" + ], "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.19, - "_pop_updated_issues_count": 63, - "_pop_closed_issues_count": 12, - "_pop_created_since_days": 55, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 63.0, - "_pop_comment_count": 53.0, + "_pop_commit_frequency": 55.06, + "_pop_updated_issues_count": 2991, + "_pop_closed_issues_count": 1776, + "_pop_created_since_days": 6, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 2991.0, + "_pop_comment_count": 9276.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 333, - "_pop_score": 33.57, + "_pop_comment_frequency": 3.1, + "_pop_dependents_count": 0, + "_pop_score": 45.76, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/iperov/deepfacelab/master/README.md", - "_readme_localurl": "iperov~deepfacelab~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/automatic1111/stable-diffusion-webui/master/README.md", + "_readme_localurl": "automatic1111~stable-diffusion-webui~README.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/automatic1111/stable-diffusion-webui/master/requirements.txt" + ], + "_requirements_localurls": [ + "automatic1111~stable-diffusion-webui~requirements.txt" + ] }, { "index": 64, @@ -1558,9 +2050,17 @@ "description": null, "_repopath": "psf/black", "_reponame": "black", - "_stars": 30470, - "_forks": 1949, - "_watches": 227, + "_stars": 31408, + "_forks": 2026, + "_watches": 229, + "_language": "Python", + "_homepage": "https://black.readthedocs.io/en/stable/", + "_description": "black: The uncompromising Python code formatter", + "_organization": "psf", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-03-14T00:00:00.000Z", + "_age_weeks": 258, + "_stars_per_week": 121.74, "_topics": [ "python", "code", @@ -1572,39 +2072,53 @@ "pre-commit-hook", "hacktoberfest" ], - "_language": "Python", - "_homepage": "https://black.readthedocs.io/en/stable/", - "_description": "black: The uncompromising Python code formatter", - "_organization": "psf", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2018-03-14T00:00:00.000Z", - "_age_weeks": 248, - "_stars_per_week": 122.51, - "_pop_contributor_count": 350, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 360, + "_pop_contributor_logins": [ + "JelleZijlstra@quora", + "ambv@psf", + "cooperlees@clc", + "dependabot[bot]", + "felix-hilden", + "hugovk@nordsoftware", + "ichard26", + "isidentical@fal-ai", + "yilei", + "zsol@facebook" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "clc", "facebook", + "fal-ai", + "nordsoftware", "psf", "quora" ], + "_pop_contributor_orgs_raw": [ + "@facebook ", + "@fal-ai", + "@psf", + "@quora ", + "CLC", + "Nord Software" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.35, - "_pop_updated_issues_count": 295, - "_pop_closed_issues_count": 176, - "_pop_created_since_days": 58, + "_pop_commit_frequency": 4.63, + "_pop_updated_issues_count": 309, + "_pop_closed_issues_count": 178, + "_pop_created_since_days": 60, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 7, "_pop_recent_releases_estimated_tags": 9, "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 299.0, - "_pop_comment_count": 585.0, + "_pop_issue_count": 309.0, + "_pop_comment_count": 589.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 28929, - "_pop_score": 71.53, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 54.62, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/psf/black/master/README.md", "_readme_localurl": "psf~black~README.md", @@ -1627,43 +2141,66 @@ "description": null, "_repopath": "pyenv/pyenv", "_reponame": "pyenv", - "_stars": 29882, - "_forks": 2655, - "_watches": 380, - "_topics": [ - "python", - "shell" - ], + "_stars": 30674, + "_forks": 2712, + "_watches": 384, "_language": "Roff", "_homepage": "", "_description": "pyenv: Simple Python version management", "_organization": "pyenv", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2012-08-31T00:00:00.000Z", - "_age_weeks": 537, - "_stars_per_week": 55.6, - "_pop_contributor_count": 402, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 546, + "_stars_per_week": 56.11, + "_topics": [ + "python", + "shell" + ], + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 410, + "_pop_contributor_logins": [ + "Samureus@meluria", + "anton-petrov", + "blueyed@freelancer,upforhire", + "cclauss@christianclauss", + "josh", + "joshfriend@squareup", + "mislav", + "native-api", + "sstephenson", + "yyuu@treasuredata" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "christianclauss", + "freelancer,upforhire", + "meluria", + "squareup", "treasuredata" ], + "_pop_contributor_orgs_raw": [ + "@squareup ", + "Christian Clauss", + "Freelancer, up for hire", + "Meluria", + "Treasure Data Inc." + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.25, - "_pop_updated_issues_count": 133, - "_pop_closed_issues_count": 117, - "_pop_created_since_days": 125, + "_pop_commit_frequency": 4.0, + "_pop_updated_issues_count": 137, + "_pop_closed_issues_count": 124, + "_pop_created_since_days": 128, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 12, + "_pop_recent_releases_count": 15, "_pop_recent_releases_estimated_tags": 13, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 133.0, - "_pop_comment_count": 307.0, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 137.0, + "_pop_comment_count": 286.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.3, - "_pop_dependents_count": 1883, - "_pop_score": 64.04, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 0, + "_pop_score": 56.41, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pyenv/pyenv/master/README.md", "_readme_localurl": "pyenv~pyenv~README.md", @@ -1680,38 +2217,59 @@ "description": null, "_repopath": "openai/gym", "_reponame": "gym", - "_stars": 29439, - "_forks": 8120, - "_watches": 999, - "_topics": [], + "_stars": 30067, + "_forks": 8235, + "_watches": 1013, "_language": "Python", "_homepage": "https://www.gymlibrary.dev", "_description": "gym: A toolkit for developing and comparing reinforcement learning algorithms.", "_organization": "openai", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-10-25T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2016-04-27T00:00:00.000Z", - "_age_weeks": 346, - "_stars_per_week": 84.91, + "_age_weeks": 356, + "_stars_per_week": 84.46, + "_topics": [], + "_last_commit_date": "2023-01-30T00:00:00.000Z", "_pop_contributor_count": 384, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_pop_contributor_logins": [ + "christopherhesse@openai", + "gdb", + "jietang", + "jkterry1", + "jonasschneider", + "joschu", + "pseudo-rnd-thoughts", + "pzhokhov", + "tlbtlbtlb@umbrellaresearch", + "zuoxingdong@navercorp" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "navercorp", + "openai", + "umbrellaresearch" + ], + "_pop_contributor_orgs_raw": [ + "NAVER Corp", + "OpenAI", + "Umbrella Research" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.62, - "_pop_updated_issues_count": 113, - "_pop_closed_issues_count": 83, - "_pop_created_since_days": 81, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 11, + "_pop_commit_frequency": 4.52, + "_pop_updated_issues_count": 47, + "_pop_closed_issues_count": 27, + "_pop_created_since_days": 83, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 10, "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 113.0, - "_pop_comment_count": 261.0, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 47.0, + "_pop_comment_count": 150.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.3, - "_pop_dependents_count": 7204, - "_pop_score": 59.54, + "_pop_comment_frequency": 3.2, + "_pop_dependents_count": 0, + "_pop_score": 50.67, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/openai/gym/master/README.md", "_readme_localurl": "openai~gym~README.md", @@ -1731,6 +2289,84 @@ "openai~gym~pyproject.toml" ] }, + { + "index": 963, + "category": "security", + "githuburl": "https://github.com/certbot/certbot", + "featured": null, + "links": null, + "description": null, + "_repopath": "certbot/certbot", + "_reponame": "certbot", + "_stars": 29653, + "_forks": 3324, + "_watches": 763, + "_language": "Python", + "_homepage": "", + "_description": "Certbot is EFF's tool to obtain certs from Let's Encrypt and (optionally) auto-enable HTTPS on your server. It can also act as a client for any other CA that uses the ACME protocol.", + "_organization": "certbot", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-11-12T00:00:00.000Z", + "_age_weeks": 432, + "_stars_per_week": 68.64, + "_topics": [ + "acme", + "acme-client", + "certbot", + "certificate", + "letsencrypt", + "python" + ], + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 508, + "_pop_contributor_logins": [ + "SwartzCr", + "adferrand@amadeusitgroupefforgecomundo-eu", + "alexzorin", + "bmw@electronicfrontierfoundation", + "jdkasten@google", + "joohoi", + "jsha", + "kuba", + "ohemorange", + "pde@efforg" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "amadeusitgroupefforgecomundo-eu", + "efforg", + "electronicfrontierfoundation", + "google" + ], + "_pop_contributor_orgs_raw": [ + "@AmadeusITGroup @EFForg @EcoMundo-EU", + "@EFForg ", + "Electronic Frontier Foundation", + "Google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.75, + "_pop_updated_issues_count": 181, + "_pop_closed_issues_count": 120, + "_pop_created_since_days": 101, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 181.0, + "_pop_comment_count": 281.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 55.23, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/certbot/certbot/master/README.rst", + "_readme_localurl": "certbot~certbot~README.rst", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 118, "category": "ml-ops", @@ -1740,9 +2376,17 @@ "description": null, "_repopath": "apache/airflow", "_reponame": "airflow", - "_stars": 28488, - "_forks": 11690, - "_watches": 764, + "_stars": 29215, + "_forks": 11960, + "_watches": 761, + "_language": "Python", + "_homepage": "https://airflow.apache.org/", + "_description": "airflow: Apache Airflow - A platform to programmatically author, schedule, and monitor workflows", + "_organization": "apache", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-04-13T00:00:00.000Z", + "_age_weeks": 410, + "_stars_per_week": 71.21, "_topics": [ "airflow", "apache", @@ -1752,40 +2396,56 @@ "workflow", "hacktoberfest" ], - "_language": "Python", - "_homepage": "https://airflow.apache.org/", - "_description": "airflow: Apache Airflow - A platform to programmatically author, schedule, and monitor workflows", - "_organization": "apache", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2015-04-13T00:00:00.000Z", - "_age_weeks": 401, - "_stars_per_week": 71.04, - "_pop_contributor_count": 2662, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 2732, + "_pop_contributor_logins": [ + "ashb@astronomer.io", + "bolkedebruin", + "ephraimbuddy@astronomerio", + "jedcunningham@astronomer", + "jlowin@prefecthq", + "kaxil@astronomer", + "mik-laj@snowflakedb", + "mistercrunch@preset-io", + "potiuk@apachesoftwarefoundation", + "turbaszek@snowflakedb" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "apachesoftwarefoundation", "astronomer", "astronomer.io", + "astronomerio", + "prefecthq", "preset-io", "snowflakedb" ], + "_pop_contributor_orgs_raw": [ + "@PrefectHQ ", + "@Snowflakedb", + "@astronomer", + "@astronomer ", + "Apache Software Foundation", + "Astronomer.io", + "Astronomerio", + "preset-io" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 70.71, - "_pop_updated_issues_count": 2090, - "_pop_closed_issues_count": 1667, - "_pop_created_since_days": 94, + "_pop_commit_frequency": 69.88, + "_pop_updated_issues_count": 2140, + "_pop_closed_issues_count": 1680, + "_pop_created_since_days": 96, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 17, - "_pop_recent_releases_estimated_tags": 337, + "_pop_recent_releases_estimated_tags": 352, "_pop_recent_releases_adjusted_count": 17, - "_pop_issue_count": 2091.0, - "_pop_comment_count": 4975.0, + "_pop_issue_count": 2141.0, + "_pop_comment_count": 5002.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.4, - "_pop_dependents_count": 13010, - "_pop_score": 86.77, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 71.19, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/apache/airflow/master/README.md", "_readme_localurl": "apache~airflow~README.md", @@ -1811,46 +2471,72 @@ "description": null, "_repopath": "mingrammer/diagrams", "_reponame": "diagrams", - "_stars": 27457, - "_forks": 1675, - "_watches": 350, + "_stars": 27871, + "_forks": 1711, + "_watches": 347, + "_language": "Python", + "_homepage": "https://diagrams.mingrammer.com", + "_description": "diagrams: :art: Diagram as Code for prototyping cloud system architectures", + "_organization": "mingrammer", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-02-02T00:00:00.000Z", + "_age_weeks": 159, + "_stars_per_week": 174.82, "_topics": [ "diagram", "diagram-as-code", "architecture", "graphviz" ], - "_language": "Python", - "_homepage": "https://diagrams.mingrammer.com", - "_description": "diagrams: :art: Diagram as Code for prototyping cloud system architectures", - "_organization": "mingrammer", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-27T00:00:00.000Z", - "_created_at": "2020-02-02T00:00:00.000Z", - "_age_weeks": 150, - "_stars_per_week": 182.87, - "_pop_contributor_count": 123, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_last_commit_date": "2023-01-13T00:00:00.000Z", + "_pop_contributor_count": 127, + "_pop_contributor_logins": [ + "Slach@altinity", + "bdsoha@kloudkit", + "dependabot[bot]", + "gabriel-tessier@luxeys", + "guyzyl", + "hagaishapira@torqio", + "leandrodamascena@aws", + "mingrammer@daangn", + "nlamirault@swan", + "yu-iskw" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "altinity", + "aws", "daangn", - "luxeys" + "kloudkit", + "luxeys", + "swan", + "torqio" + ], + "_pop_contributor_orgs_raw": [ + "@aws", + "@daangn ", + "@torqio", + "Altinity", + "KloudKIT", + "Luxeys", + "Swan" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.17, - "_pop_updated_issues_count": 165, - "_pop_closed_issues_count": 63, - "_pop_created_since_days": 35, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 4, + "_pop_commit_frequency": 1.25, + "_pop_updated_issues_count": 91, + "_pop_closed_issues_count": 40, + "_pop_created_since_days": 37, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 4, "_pop_recent_releases_estimated_tags": 13, "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 165.0, - "_pop_comment_count": 168.0, + "_pop_issue_count": 91.0, + "_pop_comment_count": 82.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 59, - "_pop_score": 46.67, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 43.49, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/mingrammer/diagrams/master/README.md", "_readme_localurl": "mingrammer~diagrams~README.md", @@ -1873,9 +2559,17 @@ "description": null, "_repopath": "ccxt/ccxt", "_reponame": "ccxt", - "_stars": 26668, - "_forks": 6520, - "_watches": 930, + "_stars": 27328, + "_forks": 6698, + "_watches": 940, + "_language": "JavaScript", + "_homepage": "", + "_description": "ccxt: A JavaScript / Python / PHP cryptocurrency trading API with support for more than 100 bitcoin/altcoin exchanges", + "_organization": "ccxt", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-05-14T00:00:00.000Z", + "_age_weeks": 301, + "_stars_per_week": 90.66, "_topics": [ "altcoin", "api", @@ -1897,36 +2591,44 @@ "merchant", "market-data" ], - "_language": "JavaScript", - "_homepage": "", - "_description": "ccxt: A JavaScript / Python / PHP cryptocurrency trading API with support for more than 100 bitcoin/altcoin exchanges", - "_organization": "ccxt", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2017-05-14T00:00:00.000Z", - "_age_weeks": 292, - "_stars_per_week": 91.28, - "_pop_contributor_count": 709, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 723, + "_pop_contributor_logins": [ + "Dan-krm", + "carlosmiei", + "frosty00@ccxt", + "kroitor@ccxt", + "mkutny", + "ndubel", + "npomfret", + "samgermain@ccxt", + "sc0Vu", + "ttodua" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "ccxt" ], + "_pop_contributor_orgs_raw": [ + "@ccxt", + "CCXT" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 235.92, - "_pop_updated_issues_count": 1408, - "_pop_closed_issues_count": 1047, - "_pop_created_since_days": 68, + "_pop_commit_frequency": 202.52, + "_pop_updated_issues_count": 1460, + "_pop_closed_issues_count": 1142, + "_pop_created_since_days": 70, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 142, - "_pop_recent_releases_adjusted_count": 142, - "_pop_issue_count": 1408.0, - "_pop_comment_count": 2198.0, + "_pop_recent_releases_estimated_tags": 89, + "_pop_recent_releases_adjusted_count": 89, + "_pop_issue_count": 1460.0, + "_pop_comment_count": 2188.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 37950, - "_pop_score": 79.89, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 60.77, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ccxt/ccxt/master/README.md", "_readme_localurl": "ccxt~ccxt~README.md", @@ -1935,57 +2637,92 @@ "_requirements_localurls": [] }, { - "index": 838, - "category": "diffusion", - "githuburl": "https://github.com/automatic1111/stable-diffusion-webui", + "index": 245, + "category": "ml", + "githuburl": "https://github.com/tencentarc/gfpgan", "featured": null, "links": null, "description": null, - "_repopath": "automatic1111/stable-diffusion-webui", - "_reponame": "stable-diffusion-webui", - "_stars": 25507, - "_forks": 4618, - "_watches": 247, - "_topics": [], + "_repopath": "tencentarc/gfpgan", + "_reponame": "GFPGAN", + "_stars": 26636, + "_forks": 4095, + "_watches": 393, "_language": "Python", - "_homepage": null, - "_description": "stable-diffusion-webui: Stable Diffusion web UI", - "_organization": "automatic1111", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-10T00:00:00.000Z", - "_created_at": "2022-08-22T00:00:00.000Z", - "_age_weeks": 17, - "_stars_per_week": 1500.41, - "_pop_contributor_count": 278, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_homepage": "", + "_description": "GFPGAN aims at developing Practical Algorithms for Real-world Face Restoration.", + "_organization": "tencentarc", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-03-19T00:00:00.000Z", + "_age_weeks": 100, + "_stars_per_week": 264.47, + "_topics": [ + "pytorch", + "gan", + "deep-learning", + "super-resolution", + "face-restoration", + "image-restoration", + "gfpgan" + ], + "_last_commit_date": "2022-09-16T00:00:00.000Z", + "_pop_contributor_count": 11, + "_pop_contributor_logins": [ + "AK391@huggingface", + "Wscats@tencent", + "amckenna41", + "bramton", + "chenxwh", + "darbazali@gatewayict", + "mdanish-kh@xflowresearch", + "mostafavtp", + "tuhins", + "xinntao@tencent" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "gatewayict", + "huggingface", + "tencent", + "xflowresearch" + ], + "_pop_contributor_orgs_raw": [ + "@Tencent ", + "Gateway ICT", + "Huggingface", + "Tencent", + "xFlow Research Inc." + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 42.46, - "_pop_updated_issues_count": 3672, - "_pop_closed_issues_count": 2189, - "_pop_created_since_days": 4, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 3672.0, - "_pop_comment_count": 13755.0, + "_pop_commit_frequency": 0.44, + "_pop_updated_issues_count": 43, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 23, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 43.0, + "_pop_comment_count": 56.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.7, - "_pop_dependents_count": 863, - "_pop_score": 55.6, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 29.06, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/automatic1111/stable-diffusion-webui/master/README.md", - "_readme_localurl": "automatic1111~stable-diffusion-webui~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/tencentarc/gfpgan/master/README.md", + "_readme_localurl": "tencentarc~gfpgan~README.md", "_requirements_filenames": [ - "requirements.txt" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/automatic1111/stable-diffusion-webui/master/requirements.txt" + "https://raw.githubusercontent.com/tencentarc/gfpgan/master/requirements.txt", + "https://raw.githubusercontent.com/tencentarc/gfpgan/master/setup.py" ], "_requirements_localurls": [ - "automatic1111~stable-diffusion-webui~requirements.txt" + "tencentarc~gfpgan~requirements.txt", + "tencentarc~gfpgan~setup.py" ] }, { @@ -1997,41 +2734,59 @@ "description": null, "_repopath": "facebookresearch/detectron", "_reponame": "Detectron", - "_stars": 25464, - "_forks": 5480, - "_watches": 959, - "_topics": [], + "_stars": 25535, + "_forks": 5488, + "_watches": 960, "_language": "Python", "_homepage": "", "_description": "Detectron: FAIR's research platform for object detection research, implementing popular algorithms like Mask R-CNN and RetinaNet.", "_organization": "facebookresearch", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2021-03-27T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2017-10-05T00:00:00.000Z", - "_age_weeks": 271, - "_stars_per_week": 93.77, + "_age_weeks": 280, + "_stars_per_week": 90.92, + "_topics": [], + "_last_commit_date": "2021-03-27T00:00:00.000Z", "_pop_contributor_count": 40, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Juggernaut93", + "KaimingHe@facebook", + "ashwinb", + "bddppq", + "ir413@ucberkeley", + "newstzpz", + "rbgirshick@ucberkeley", + "seanbell@grokstyle", + "shenyunhang", + "smessmer" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "facebook", + "grokstyle", "ucberkeley" ], + "_pop_contributor_orgs_raw": [ + "Facebook", + "GrokStyle Inc.", + "UC Berkeley" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 11, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 63, - "_pop_updated_since_days": 21, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 66, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 11.0, - "_pop_comment_count": 3.0, + "_pop_issue_count": 12.0, + "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.3, - "_pop_dependents_count": 865, - "_pop_score": 34.18, + "_pop_dependents_count": 0, + "_pop_score": 30.77, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/detectron/master/README.md", "_readme_localurl": "facebookresearch~detectron~README.md", @@ -2048,74 +2803,6 @@ "facebookresearch~detectron~setup.py" ] }, - { - "index": 245, - "category": "ml", - "githuburl": "https://github.com/tencentarc/gfpgan", - "featured": null, - "links": null, - "description": null, - "_repopath": "tencentarc/gfpgan", - "_reponame": "GFPGAN", - "_stars": 25179, - "_forks": 3809, - "_watches": 373, - "_topics": [ - "pytorch", - "gan", - "deep-learning", - "super-resolution", - "face-restoration", - "image-restoration", - "gfpgan" - ], - "_language": "Python", - "_homepage": "", - "_description": "GFPGAN aims at developing Practical Algorithms for Real-world Face Restoration.", - "_organization": "tencentarc", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-09-16T00:00:00.000Z", - "_created_at": "2021-03-19T00:00:00.000Z", - "_age_weeks": 91, - "_stars_per_week": 275.4, - "_pop_contributor_count": 11, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "huggingface", - "tencent" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.6, - "_pop_updated_issues_count": 59, - "_pop_closed_issues_count": 16, - "_pop_created_since_days": 21, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 58.0, - "_pop_comment_count": 54.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 11, - "_pop_score": 32.67, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/tencentarc/gfpgan/master/README.md", - "_readme_localurl": "tencentarc~gfpgan~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/tencentarc/gfpgan/master/requirements.txt", - "https://raw.githubusercontent.com/tencentarc/gfpgan/master/setup.py" - ], - "_requirements_localurls": [ - "tencentarc~gfpgan~requirements.txt", - "tencentarc~gfpgan~setup.py" - ] - }, { "index": 17, "category": "nlp", @@ -2125,9 +2812,17 @@ "description": null, "_repopath": "explosion/spacy", "_reponame": "spaCy", - "_stars": 24789, - "_forks": 3988, - "_watches": 549, + "_stars": 25292, + "_forks": 4027, + "_watches": 547, + "_language": "Python", + "_homepage": "https://spacy.io", + "_description": "spaCy: \ud83d\udcab Industrial-strength Natural Language Processing (NLP) in Python", + "_organization": "explosion", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-07-03T00:00:00.000Z", + "_age_weeks": 450, + "_stars_per_week": 56.1, "_topics": [ "natural-language-processing", "data-science", @@ -2147,37 +2842,48 @@ "text-classification", "tokenization" ], - "_language": "Python", - "_homepage": "https://spacy.io", - "_description": "spaCy: \ud83d\udcab Industrial-strength Natural Language Processing (NLP) in Python", - "_organization": "explosion", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2014-07-03T00:00:00.000Z", - "_age_weeks": 441, - "_stars_per_week": 56.14, - "_pop_contributor_count": 710, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 715, + "_pop_contributor_logins": [ + "adrianeboyd", + "geovedi", + "github-actions[bot]", + "henningpeters", + "honnibal@founderexplosion", + "ines@founderexplosion", + "jimregan", + "polm@cotonoha", + "svlandeg@explosion&oxykodit", + "syllog1sm@founderexplosion" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "cotonoha", "explosion&oxykodit", "founderexplosion" ], + "_pop_contributor_orgs_raw": [ + "Cotonoha", + "Explosion & OxyKodit", + "Founder @explosion", + "Founder @explosion " + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 8.85, - "_pop_updated_issues_count": 356, - "_pop_closed_issues_count": 316, - "_pop_created_since_days": 103, + "_pop_commit_frequency": 8.62, + "_pop_updated_issues_count": 351, + "_pop_closed_issues_count": 304, + "_pop_created_since_days": 105, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 19, "_pop_recent_releases_estimated_tags": 16, "_pop_recent_releases_adjusted_count": 19, - "_pop_issue_count": 356.0, - "_pop_comment_count": 577.0, + "_pop_issue_count": 351.0, + "_pop_comment_count": 579.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 5776, - "_pop_score": 71.79, + "_pop_dependents_count": 0, + "_pop_score": 57.66, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/explosion/spacy/master/README.md", "_readme_localurl": "explosion~spacy~README.md", @@ -2197,6 +2903,98 @@ "explosion~spacy~pyproject.toml" ] }, + { + "index": 917, + "category": "ml-ops", + "githuburl": "https://github.com/ray-project/ray", + "featured": null, + "links": null, + "description": null, + "_repopath": "ray-project/ray", + "_reponame": "ray", + "_stars": 24206, + "_forks": 4209, + "_watches": 441, + "_language": "Python", + "_homepage": "https://ray.io", + "_description": "Ray is a unified framework for scaling AI and Python applications. Ray consists of a core distributed runtime and a toolkit of libraries (Ray AIR) for accelerating ML workloads.", + "_organization": "ray-project", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-10-25T00:00:00.000Z", + "_age_weeks": 330, + "_stars_per_week": 73.32, + "_topics": [ + "ray", + "distributed", + "parallel", + "machine-learning", + "reinforcement-learning", + "deep-learning", + "python", + "rllib", + "hyperparameter-search", + "optimization", + "data-science", + "automl", + "hyperparameter-optimization", + "model-selection", + "java", + "serving", + "deployment", + "pytorch", + "tensorflow" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 818, + "_pop_contributor_logins": [ + "edoakes@universityofcalifornia,berkeley", + "ericl@anyscale", + "krfricke", + "pcmoritz@anyscale", + "richardliaw@anyscale", + "rkooo567@anyscale,softwareengineer", + "robertnishihara@anyscale", + "simon-mo", + "stephanie-wang", + "sven1977@anyscale.com" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "anyscale", + "anyscale,softwareengineer", + "anyscale.com", + "universityofcalifornia,berkeley" + ], + "_pop_contributor_orgs_raw": [ + "@anyscale", + "Anyscale", + "Anyscale, Software Engineer", + "University of California, Berkeley", + "anyscale.com" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 86.58, + "_pop_updated_issues_count": 3479, + "_pop_closed_issues_count": 2185, + "_pop_created_since_days": 77, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 3481.0, + "_pop_comment_count": 5325.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 63.67, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/ray-project/ray/master/README.rst", + "_readme_localurl": "ray-project~ray~README.rst", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 501, "category": "ml", @@ -2206,38 +3004,55 @@ "description": null, "_repopath": "ageron/handson-ml2", "_reponame": "handson-ml2", - "_stars": 23709, - "_forks": 11459, - "_watches": 625, - "_topics": [], + "_stars": 24146, + "_forks": 11653, + "_watches": 631, "_language": "Jupyter Notebook", "_homepage": null, "_description": "handson-ml2: A series of Jupyter notebooks that walk you through the fundamentals of Machine Learning and Deep Learning in Python using Scikit-Learn, Keras and TensorFlow 2.", "_organization": "ageron", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-08T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2019-01-08T00:00:00.000Z", - "_age_weeks": 205, - "_stars_per_week": 115.17, + "_age_weeks": 215, + "_stars_per_week": 112.23, + "_topics": [], + "_last_commit_date": "2023-02-04T00:00:00.000Z", "_pop_contributor_count": 75, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_pop_contributor_logins": [ + "ChrisQlasty", + "ageron", + "alexdombos", + "gsundeep-tech", + "ibeauregard", + "mbreemhaar@verifai", + "nbgraham", + "pizzaz93", + "rickiepark", + "ziembla" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "verifai" + ], + "_pop_contributor_orgs_raw": [ + "Verifai" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.29, - "_pop_updated_issues_count": 21, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 48, + "_pop_commit_frequency": 0.15, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 50, "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 21.0, - "_pop_comment_count": 31.0, + "_pop_issue_count": 11.0, + "_pop_comment_count": 14.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 1115, - "_pop_score": 39.81, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 29.98, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ageron/handson-ml2/master/README.md", "_readme_localurl": "ageron~handson-ml2~README.md", @@ -2260,9 +3075,17 @@ "description": null, "_repopath": "tqdm/tqdm", "_reponame": "tqdm", - "_stars": 23582, - "_forks": 1199, - "_watches": 207, + "_stars": 24051, + "_forks": 1222, + "_watches": 208, + "_language": "Python", + "_homepage": "https://tqdm.github.io", + "_description": "tqdm: A Fast, Extensible Progress Bar for Python and CLI", + "_organization": "tqdm", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-06-03T00:00:00.000Z", + "_age_weeks": 403, + "_stars_per_week": 59.68, "_topics": [ "progressbar", "progressmeter", @@ -2285,37 +3108,49 @@ "keras", "closember" ], - "_language": "Python", - "_homepage": "https://tqdm.github.io", - "_description": "tqdm: A Fast, Extensible Progress Bar for Python and CLI", - "_organization": "tqdm", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-09-03T00:00:00.000Z", - "_created_at": "2015-06-03T00:00:00.000Z", - "_age_weeks": 393, - "_stars_per_week": 59.9, "_pop_contributor_count": 112, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "altendky", + "casperdcl", + "hadim@valence", + "kmike@zytedata,scrapinghub", + "lrq3000@giga-consciousness-comasciencegroup-university&hospitalofli\u00e8ge", + "mbargull", + "nishnash54@flockfreight", + "noamraph", + "obiwanus", + "richardsheridan" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "flockfreight", "giga-consciousness-comasciencegroup-university&hospitalofli\u00e8ge", - "valence" + "valence", + "zytedata,scrapinghub" + ], + "_pop_contributor_orgs_raw": [ + "@zytedata, @ScrapingHub", + "Flock Freight", + "GIGA-Consciousness - Coma Science Group - University & Hospital of Li\u00e8ge", + "Valence" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.52, - "_pop_updated_issues_count": 69, - "_pop_closed_issues_count": 11, - "_pop_created_since_days": 92, - "_pop_updated_since_days": 4, + "_pop_commit_frequency": 0.48, + "_pop_updated_issues_count": 56, + "_pop_closed_issues_count": 9, + "_pop_created_since_days": 94, + "_pop_updated_since_days": 6, "_pop_recent_releases_count": 5, "_pop_recent_releases_estimated_tags": 20, "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 69.0, - "_pop_comment_count": 82.0, + "_pop_issue_count": 55.0, + "_pop_comment_count": 41.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 6644, - "_pop_score": 53.31, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 37.85, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/tqdm/tqdm/master/README.rst", "_readme_localurl": "tqdm~tqdm~README.rst", @@ -2332,6 +3167,89 @@ "tqdm~tqdm~pyproject.toml" ] }, + { + "index": 26, + "category": "term", + "githuburl": "https://github.com/google/python-fire", + "featured": null, + "links": null, + "description": null, + "_repopath": "google/python-fire", + "_reponame": "python-fire", + "_stars": 23949, + "_forks": 1364, + "_watches": 383, + "_language": "Python", + "_homepage": "", + "_description": "python-fire: Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object.", + "_organization": "google", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-02-21T00:00:00.000Z", + "_age_weeks": 313, + "_stars_per_week": 76.48, + "_topics": [ + "python", + "cli" + ], + "_last_commit_date": "2023-02-13T00:00:00.000Z", + "_pop_contributor_count": 59, + "_pop_contributor_logins": [ + "MichaelCG8", + "dbieber@googlebrain", + "hugovk@nordsoftware", + "jacobaustin123@google", + "jaredtrog", + "jgarst", + "joejoevictor@google", + "jtratner", + "rchen152", + "saurabhkpatel@syracuseuniversity" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "google", + "googlebrain", + "nordsoftware", + "syracuseuniversity" + ], + "_pop_contributor_orgs_raw": [ + "Google", + "Google Brain", + "Nord Software", + "Syracuse University" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.52, + "_pop_updated_issues_count": 54, + "_pop_closed_issues_count": 35, + "_pop_created_since_days": 73, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 54.0, + "_pop_comment_count": 77.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 40.67, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/google/python-fire/master/README.md", + "_readme_localurl": "google~python-fire~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/google/python-fire/master/requirements.txt", + "https://raw.githubusercontent.com/google/python-fire/master/setup.py" + ], + "_requirements_localurls": [ + "google~python-fire~requirements.txt", + "google~python-fire~setup.py" + ] + }, { "index": 103, "category": "ml", @@ -2341,9 +3259,17 @@ "description": null, "_repopath": "dmlc/xgboost", "_reponame": "xgboost", - "_stars": 23555, - "_forks": 8535, - "_watches": 931, + "_stars": 23781, + "_forks": 8545, + "_watches": 926, + "_language": "C++", + "_homepage": "https://xgboost.ai/", + "_description": "xgboost: Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library, for Python, R, Java, Scala, C++ and more. Runs on single machine, Hadoop, Spark, Dask, Flink and DataFlow", + "_organization": "dmlc", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-02-06T00:00:00.000Z", + "_age_weeks": 471, + "_stars_per_week": 50.4, "_topics": [ "gbdt", "gbrt", @@ -2352,39 +3278,57 @@ "xgboost", "machine-learning" ], - "_language": "C++", - "_homepage": "https://xgboost.ai/", - "_description": "xgboost: Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library, for Python, R, Java, Scala, C++ and more. Runs on single machine, Hadoop, Spark, Dask, Flink and DataFlow", - "_organization": "dmlc", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2014-02-06T00:00:00.000Z", - "_age_weeks": 462, - "_stars_per_week": 50.92, - "_pop_contributor_count": 589, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 593, + "_pop_contributor_logins": [ + "CodingCat@safegraph", + "RAMitchell@nvidia", + "hcho3@nvidia", + "hetong007@amazonai", + "khotilov@cerner", + "pommedeterresautee@els-rdlefebvresarrut", + "rongou@nvidia", + "terrytangyuan@akuity", + "tqchen@cmu,octoml", + "trivialfis@nvidia" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "akuity", "amazonai", + "cerner", "cmu,octoml", "els-rdlefebvresarrut", - "nvidia" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 9.9, - "_pop_updated_issues_count": 464, - "_pop_closed_issues_count": 372, - "_pop_created_since_days": 108, + "nvidia", + "safegraph" + ], + "_pop_contributor_orgs_raw": [ + "@ELS-RD Lefebvre Sarrut", + "@NVIDIA", + "@akuity", + "Amazon AI", + "CMU, OctoML", + "Cerner", + "NVIDIA", + "Nvidia", + "SafeGraph" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 10.02, + "_pop_updated_issues_count": 418, + "_pop_closed_issues_count": 345, + "_pop_created_since_days": 110, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 9, + "_pop_recent_releases_count": 10, "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 9, - "_pop_issue_count": 464.0, - "_pop_comment_count": 840.0, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 418.0, + "_pop_comment_count": 626.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 1612, - "_pop_score": 71.15, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 59.86, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/dmlc/xgboost/master/README.md", "_readme_localurl": "dmlc~xgboost~README.md", @@ -2393,67 +3337,82 @@ "_requirements_localurls": [] }, { - "index": 26, - "category": "term", - "githuburl": "https://github.com/google/python-fire", + "index": 646, + "category": "util", + "githuburl": "https://github.com/python-poetry/poetry", "featured": null, "links": null, "description": null, - "_repopath": "google/python-fire", - "_reponame": "python-fire", - "_stars": 23487, - "_forks": 1353, - "_watches": 380, + "_repopath": "python-poetry/poetry", + "_reponame": "poetry", + "_stars": 23738, + "_forks": 1906, + "_watches": 184, + "_language": "Python", + "_homepage": "https://python-poetry.org", + "_description": "poetry: Python packaging and dependency management made easy", + "_organization": "python-poetry", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-02-28T00:00:00.000Z", + "_age_weeks": 260, + "_stars_per_week": 91.3, "_topics": [ "python", - "cli" + "dependency-manager", + "package-manager", + "packaging", + "poetry" ], - "_language": "Python", - "_homepage": "", - "_description": "python-fire: Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object.", - "_organization": "google", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", - "_created_at": "2017-02-21T00:00:00.000Z", - "_age_weeks": 303, - "_stars_per_week": 77.3, - "_pop_contributor_count": 55, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 436, + "_pop_contributor_logins": [ + "Secrus", + "abn", + "branchvincent", + "dimbleby", + "finswimmer", + "mkniewallner@backmarket", + "neersighted@mirantis", + "pre-commit-ci[bot]", + "radoering", + "sdispater" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google", - "googlebrain", - "syracuseuniversity" + "backmarket", + "mirantis" + ], + "_pop_contributor_orgs_raw": [ + "@BackMarket ", + "@Mirantis" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.37, - "_pop_updated_issues_count": 48, - "_pop_closed_issues_count": 26, - "_pop_created_since_days": 71, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 48.0, - "_pop_comment_count": 43.0, + "_pop_commit_frequency": 13.42, + "_pop_updated_issues_count": 658, + "_pop_closed_issues_count": 443, + "_pop_created_since_days": 61, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 24, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 659.0, + "_pop_comment_count": 1725.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 114, - "_pop_score": 46.38, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 0, + "_pop_score": 53.99, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/google/python-fire/master/README.md", - "_readme_localurl": "google~python-fire~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/python-poetry/poetry/master/README.md", + "_readme_localurl": "python-poetry~poetry~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/google/python-fire/master/requirements.txt", - "https://raw.githubusercontent.com/google/python-fire/master/setup.py" + "https://raw.githubusercontent.com/python-poetry/poetry/master/pyproject.toml" ], "_requirements_localurls": [ - "google~python-fire~requirements.txt", - "google~python-fire~setup.py" + "python-poetry~poetry~pyproject.toml" ] }, { @@ -2465,40 +3424,57 @@ "description": null, "_repopath": "facebookresearch/detectron2", "_reponame": "detectron2", - "_stars": 23127, - "_forks": 6313, + "_stars": 23636, + "_forks": 6452, "_watches": 365, - "_topics": [], "_language": "Python", "_homepage": "https://detectron2.readthedocs.io/en/latest/", "_description": "Detectron2 is a platform for object detection, segmentation and other visual recognition tasks.", "_organization": "facebookresearch", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2019-09-05T00:00:00.000Z", - "_age_weeks": 171, - "_stars_per_week": 134.8, - "_pop_contributor_count": 227, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 180, + "_stars_per_week": 130.69, + "_topics": [], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 234, + "_pop_contributor_logins": [ + "MarcSzafraniec", + "alexander-kirillov@facebookairesearch", + "bowenc0221", + "chenbohua3", + "lyttonhao", + "patricklabatut@facebook", + "ppwwyyxx", + "vkhalidov", + "wat3rBro", + "wenliangzhao2018" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "facebook", "facebookairesearch" ], + "_pop_contributor_orgs_raw": [ + "Facebook", + "Facebook AI Research" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.67, - "_pop_updated_issues_count": 214, - "_pop_closed_issues_count": 132, - "_pop_created_since_days": 40, + "_pop_commit_frequency": 1.75, + "_pop_updated_issues_count": 203, + "_pop_closed_issues_count": 153, + "_pop_created_since_days": 42, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 214.0, - "_pop_comment_count": 258.0, + "_pop_issue_count": 203.0, + "_pop_comment_count": 278.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 23330, - "_pop_score": 60.12, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 44.76, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/detectron2/master/README.md", "_readme_localurl": "facebookresearch~detectron2~README.md", @@ -2513,77 +3489,25 @@ ] }, { - "index": 646, - "category": "util", - "githuburl": "https://github.com/python-poetry/poetry", + "index": 289, + "category": "ml-dl", + "githuburl": "https://github.com/rwightman/pytorch-image-models", "featured": null, "links": null, "description": null, - "_repopath": "python-poetry/poetry", - "_reponame": "poetry", - "_stars": 22961, - "_forks": 1857, - "_watches": 184, - "_topics": [ - "python", - "dependency-manager", - "package-manager", - "packaging", - "poetry" - ], + "_repopath": "rwightman/pytorch-image-models", + "_reponame": "pytorch-image-models", + "_stars": 23631, + "_forks": 3909, + "_watches": 299, "_language": "Python", - "_homepage": "https://python-poetry.org", - "_description": "poetry: Python packaging and dependency management made easy", - "_organization": "python-poetry", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2018-02-28T00:00:00.000Z", - "_age_weeks": 250, - "_stars_per_week": 91.58, - "_pop_contributor_count": 417, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 13.08, - "_pop_updated_issues_count": 1180, - "_pop_closed_issues_count": 864, - "_pop_created_since_days": 58, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 13, - "_pop_recent_releases_estimated_tags": 25, - "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 1181.0, - "_pop_comment_count": 2846.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.4, - "_pop_dependents_count": 2403, - "_pop_score": 64.6, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/python-poetry/poetry/master/README.md", - "_readme_localurl": "python-poetry~poetry~README.md", - "_requirements_filenames": [ - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/python-poetry/poetry/master/pyproject.toml" - ], - "_requirements_localurls": [ - "python-poetry~poetry~pyproject.toml" - ] - }, - { - "index": 289, - "category": "ml-dl", - "githuburl": "https://github.com/rwightman/pytorch-image-models", - "featured": null, - "links": null, - "description": null, - "_repopath": "rwightman/pytorch-image-models", - "_reponame": "pytorch-image-models", - "_stars": 22569, - "_forks": 3759, - "_watches": 292, + "_homepage": "https://huggingface.co/docs/timm", + "_description": "pytorch-image-models: PyTorch image models, scripts, pretrained weights -- ResNet, ResNeXT, EfficientNet, EfficientNetV2, NFNet, Vision Transformer, MixNet, MobileNet-V3/V2, RegNet, DPN, CSPNet, and more", + "_organization": "rwightman", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-02-02T00:00:00.000Z", + "_age_weeks": 211, + "_stars_per_week": 111.69, "_topics": [ "pytorch", "imagenet-classifier", @@ -2606,38 +3530,51 @@ "nfnets", "normalization-free-training" ], - "_language": "Python", - "_homepage": "https://huggingface.co/docs/timm", - "_description": "pytorch-image-models: PyTorch image models, scripts, pretrained weights -- ResNet, ResNeXT, EfficientNet, EfficientNetV2, NFNet, Vision Transformer, MixNet, MobileNet-V3/V2, RegNet, DPN, CSPNet, and more", - "_organization": "rwightman", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2019-02-02T00:00:00.000Z", - "_age_weeks": 202, - "_stars_per_week": 111.57, - "_pop_contributor_count": 89, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 93, + "_pop_contributor_logins": [ + "ChristophReich1996@technicaluniversityofdarmstadt", + "VRandme@independent", + "alexander-soare", + "amaarora@weights&biases", + "fffffgggg54", + "kaczmarj@stonybrookmedicine", + "michalwols", + "mrT23", + "nateraw@huggingface", + "rwightman" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "huggingface", "independent", + "stonybrookmedicine", + "technicaluniversityofdarmstadt", "weights&biases" ], + "_pop_contributor_orgs_raw": [ + "@huggingface", + "Stony Brook Medicine", + "Technical University of Darmstadt", + "Weights & Biases", + "independent" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.46, - "_pop_updated_issues_count": 111, - "_pop_closed_issues_count": 72, - "_pop_created_since_days": 47, + "_pop_commit_frequency": 7.12, + "_pop_updated_issues_count": 105, + "_pop_closed_issues_count": 78, + "_pop_created_since_days": 49, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 10, + "_pop_recent_releases_count": 11, "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 10, - "_pop_issue_count": 111.0, - "_pop_comment_count": 146.0, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 105.0, + "_pop_comment_count": 180.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 159, - "_pop_score": 55.29, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 49.39, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/rwightman/pytorch-image-models/master/README.md", "_readme_localurl": "rwightman~pytorch-image-models~README.md", @@ -2654,73 +3591,6 @@ "rwightman~pytorch-image-models~setup.py" ] }, - { - "index": 689, - "category": "ml-dl", - "githuburl": "https://github.com/matterport/mask_rcnn", - "featured": null, - "links": null, - "description": null, - "_repopath": "matterport/mask_rcnn", - "_reponame": "Mask_RCNN", - "_stars": 22507, - "_forks": 11179, - "_watches": 597, - "_topics": [ - "mask-rcnn", - "tensorflow", - "object-detection", - "instance-segmentation", - "keras" - ], - "_language": "Python", - "_homepage": null, - "_description": "Mask_RCNN: Mask R-CNN for object detection and instance segmentation on Keras and TensorFlow", - "_organization": "matterport", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2019-03-31T00:00:00.000Z", - "_created_at": "2017-10-19T00:00:00.000Z", - "_age_weeks": 269, - "_stars_per_week": 83.49, - "_pop_contributor_count": 47, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "apple", - "freelance", - "grid.ai|pytorchlightning" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 89, - "_pop_closed_issues_count": 18, - "_pop_created_since_days": 63, - "_pop_updated_since_days": 46, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 89.0, - "_pop_comment_count": 107.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 1541, - "_pop_score": 41.14, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/matterport/mask_rcnn/master/README.md", - "_readme_localurl": "matterport~mask_rcnn~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/matterport/mask_rcnn/master/requirements.txt", - "https://raw.githubusercontent.com/matterport/mask_rcnn/master/setup.py" - ], - "_requirements_localurls": [ - "matterport~mask_rcnn~requirements.txt", - "matterport~mask_rcnn~setup.py" - ] - }, { "index": 550, "category": "ml", @@ -2730,55 +3600,89 @@ "description": null, "_repopath": "open-mmlab/mmdetection", "_reponame": "mmdetection", - "_stars": 22420, - "_forks": 8168, - "_watches": 362, + "_stars": 23042, + "_forks": 8362, + "_watches": 361, + "_language": "Python", + "_homepage": "https://mmdetection.readthedocs.io", + "_description": "mmdetection: OpenMMLab Detection Toolbox and Benchmark", + "_organization": "open-mmlab", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-08-22T00:00:00.000Z", + "_age_weeks": 235, + "_stars_per_week": 98.05, "_topics": [ "object-detection", "instance-segmentation", - "rpn", "fast-rcnn", "faster-rcnn", "mask-rcnn", "cascade-rcnn", "ssd", "retinanet", - "pytorch" - ], - "_language": "Python", - "_homepage": "https://mmdetection.readthedocs.io", - "_description": "mmdetection: OpenMMLab Detection Toolbox and Benchmark", - "_organization": "open-mmlab", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-23T00:00:00.000Z", - "_created_at": "2018-08-22T00:00:00.000Z", - "_age_weeks": 225, - "_stars_per_week": 99.33, - "_pop_contributor_count": 377, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "pytorch", + "panoptic-segmentation", + "rtmdet", + "semisupervised-learning", + "swin-transformer", + "transformer", + "vision-transformer", + "yolo", + "convnext", + "detr" + ], + "_last_commit_date": "2023-02-01T00:00:00.000Z", + "_pop_contributor_count": 390, + "_pop_contributor_logins": [ + "AronLin@open-mmlab", + "BIGWangYuDong", + "OceanPang@shanghaiailaboratory", + "RangiLyu@shanghaiartificialintelligencelaboratory", + "ZwwWayne@mmlab,ntu", + "hellock@open-mmlab", + "hhaAndroid@nuaa", + "jshilong@shanghaiailab", + "xvjiarui@ucsd", + "yhcao6@cuhk,mmlab" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "cuhk,mmlab", "mmlab,ntu", "nuaa", "open-mmlab", + "shanghaiailab", + "shanghaiailaboratory", + "shanghaiartificialintelligencelaboratory", "ucsd" ], + "_pop_contributor_orgs_raw": [ + "@open-mmlab", + "@open-mmlab ", + "CUHK, MMLab", + "MMLab, NTU", + "Shanghai AI Lab", + "Shanghai AI Laboratory", + "Shanghai Artificial Intelligence Laboratory", + "UCSD", + "nuaa" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.21, - "_pop_updated_issues_count": 876, - "_pop_closed_issues_count": 652, - "_pop_created_since_days": 53, + "_pop_commit_frequency": 4.38, + "_pop_updated_issues_count": 639, + "_pop_closed_issues_count": 463, + "_pop_created_since_days": 55, "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 16, - "_pop_recent_releases_estimated_tags": 11, - "_pop_recent_releases_adjusted_count": 16, - "_pop_issue_count": 873.0, - "_pop_comment_count": 1322.0, + "_pop_recent_releases_count": 18, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 18, + "_pop_issue_count": 639.0, + "_pop_comment_count": 830.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 4620, - "_pop_score": 69.61, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 55.8, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/open-mmlab/mmdetection/master/README.md", "_readme_localurl": "open-mmlab~mmdetection~README.md", @@ -2795,6 +3699,84 @@ "open-mmlab~mmdetection~setup.py" ] }, + { + "index": 86, + "category": "viz", + "githuburl": "https://github.com/streamlit/streamlit", + "featured": null, + "links": null, + "description": null, + "_repopath": "streamlit/streamlit", + "_reponame": "streamlit", + "_stars": 22762, + "_forks": 2028, + "_watches": 284, + "_language": "Python", + "_homepage": "https://streamlit.io", + "_description": "Streamlit \u2014 The fastest way to build data apps in Python", + "_organization": "streamlit", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-08-24T00:00:00.000Z", + "_age_weeks": 182, + "_stars_per_week": 124.67, + "_topics": [ + "python", + "machine-learning", + "data-science", + "deep-learning", + "data-visualization", + "streamlit", + "data-analysis", + "developer-tools" + ], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 166, + "_pop_contributor_logins": [ + "AnOctopus@streamlit", + "aaj-st", + "jrhone", + "kantuni", + "karriebear", + "kmcgrady", + "tconkling@independent", + "treuille@streamlit", + "tvst@streamlit", + "vdonato@streamlit" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "independent", + "streamlit" + ], + "_pop_contributor_orgs_raw": [ + "@streamlit", + "@streamlit ", + "Streamlit", + "independent" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 12.81, + "_pop_updated_issues_count": 649, + "_pop_closed_issues_count": 412, + "_pop_created_since_days": 43, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 22, + "_pop_recent_releases_estimated_tags": 341, + "_pop_recent_releases_adjusted_count": 22, + "_pop_issue_count": 650.0, + "_pop_comment_count": 923.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 51.23, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/streamlit/streamlit/master/README.md", + "_readme_localurl": "streamlit~streamlit~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 54, "category": "math", @@ -2804,47 +3786,70 @@ "description": null, "_repopath": "numpy/numpy", "_reponame": "numpy", - "_stars": 22230, - "_forks": 7600, - "_watches": 571, - "_topics": [ - "numpy", - "python", - "closember" - ], + "_stars": 22742, + "_forks": 7766, + "_watches": 573, "_language": "Python", "_homepage": "https://numpy.org", "_description": "numpy: The fundamental package for scientific computing with Python.", "_organization": "numpy", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2010-09-13T00:00:00.000Z", - "_age_weeks": 640, - "_stars_per_week": 34.73, - "_pop_contributor_count": 1556, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 649, + "_stars_per_week": 35.03, + "_topics": [ + "numpy", + "python" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 1584, + "_pop_contributor_logins": [ + "BvB93@vuamsterdam", + "charris@retired", + "cournape@mercarijp", + "eric-wieser@universityofcambridge", + "mattip@quansightlabs", + "pearu@quansight", + "pv", + "rgommers@quansight", + "seberg", + "teoliphant@quansight,openteams" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "mercarijp", + "quansight", "quansight,openteams", "quansightlabs", - "retired" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 29.58, - "_pop_updated_issues_count": 907, - "_pop_closed_issues_count": 655, - "_pop_created_since_days": 149, + "retired", + "universityofcambridge", + "vuamsterdam" + ], + "_pop_contributor_orgs_raw": [ + "Mercari JP", + "Quansight", + "Quansight Labs", + "Quansight, OpenTeams", + "Retired", + "University of Cambridge", + "VU Amsterdam" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 30.06, + "_pop_updated_issues_count": 1008, + "_pop_closed_issues_count": 759, + "_pop_created_since_days": 151, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 20, + "_pop_recent_releases_count": 17, "_pop_recent_releases_estimated_tags": 18, - "_pop_recent_releases_adjusted_count": 20, - "_pop_issue_count": 908.0, - "_pop_comment_count": 2325.0, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 1008.0, + "_pop_comment_count": 2800.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.6, - "_pop_dependents_count": 27499, - "_pop_score": 84.17, + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 0, + "_pop_score": 68.35, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/numpy/numpy/master/README.md", "_readme_localurl": "numpy~numpy~README.md", @@ -2861,6 +3866,98 @@ "numpy~numpy~pyproject.toml" ] }, + { + "index": 689, + "category": "ml-dl", + "githuburl": "https://github.com/matterport/mask_rcnn", + "featured": null, + "links": null, + "description": null, + "_repopath": "matterport/mask_rcnn", + "_reponame": "Mask_RCNN", + "_stars": 22685, + "_forks": 11254, + "_watches": 596, + "_language": "Python", + "_homepage": null, + "_description": "Mask_RCNN: Mask R-CNN for object detection and instance segmentation on Keras and TensorFlow", + "_organization": "matterport", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-10-19T00:00:00.000Z", + "_age_weeks": 278, + "_stars_per_week": 81.35, + "_topics": [ + "mask-rcnn", + "tensorflow", + "object-detection", + "instance-segmentation", + "keras" + ], + "_last_commit_date": "2019-03-31T00:00:00.000Z", + "_pop_contributor_count": 47, + "_pop_contributor_logins": [ + "Borda@grid.ai|pytorchlightning", + "Cpruce", + "JNingWei@alibaba", + "akTwelve", + "gakarak@uiipnasb", + "keineahnung2345", + "maxfrei750@universityofduisburg-essen", + "philferriere@freelance", + "ps48@aws,opensearch-project", + "waleedka@apple" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "alibaba", + "apple", + "aws,opensearch-project", + "freelance", + "grid.ai|pytorchlightning", + "uiipnasb", + "universityofduisburg-essen" + ], + "_pop_contributor_orgs_raw": [ + "@aws, @opensearch-project ", + "Alibaba", + "Apple", + "Freelance", + "Grid.ai | PytorchLightning", + "UIIP NASB", + "University of Duisburg-Essen" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 69, + "_pop_closed_issues_count": 15, + "_pop_created_since_days": 65, + "_pop_updated_since_days": 48, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 69.0, + "_pop_comment_count": 82.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 31.06, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/matterport/mask_rcnn/master/README.md", + "_readme_localurl": "matterport~mask_rcnn~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/matterport/mask_rcnn/master/requirements.txt", + "https://raw.githubusercontent.com/matterport/mask_rcnn/master/setup.py" + ], + "_requirements_localurls": [ + "matterport~mask_rcnn~requirements.txt", + "matterport~mask_rcnn~setup.py" + ] + }, { "index": 649, "category": "util", @@ -2870,9 +3967,17 @@ "description": null, "_repopath": "keon/algorithms", "_reponame": "algorithms", - "_stars": 21936, - "_forks": 4425, - "_watches": 643, + "_stars": 22182, + "_forks": 4436, + "_watches": 641, + "_language": "Python", + "_homepage": "", + "_description": "algorithms: Minimal examples of data structures and algorithms in Python", + "_organization": "keon", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-11-17T00:00:00.000Z", + "_age_weeks": 326, + "_stars_per_week": 67.86, "_topics": [ "algorithm", "python", @@ -2884,37 +3989,49 @@ "tree", "graph" ], - "_language": "Python", - "_homepage": "", - "_description": "algorithms: Minimal examples of data structures and algorithms in Python", - "_organization": "keon", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-12T00:00:00.000Z", - "_created_at": "2016-11-17T00:00:00.000Z", - "_age_weeks": 317, - "_stars_per_week": 69.07, "_pop_contributor_count": 193, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "SaadBenn", + "ankit167@gojek", + "christianbender", + "geon0325@kaist", + "goswami-rahul@google", + "keon", + "nickolaswiebe", + "ofek@datadog", + "quang2705", + "yunshuipiao" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "datadog", "gojek", - "google" + "google", + "kaist" + ], + "_pop_contributor_orgs_raw": [ + "@datadog", + "GoJek", + "Google", + "KAIST" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.37, - "_pop_updated_issues_count": 11, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 74, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 0.25, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 76, + "_pop_updated_since_days": 3, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 11.0, - "_pop_comment_count": 4.0, + "_pop_issue_count": 14.0, + "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.4, - "_pop_dependents_count": 74, - "_pop_score": 41.01, + "_pop_comment_frequency": 0.1, + "_pop_dependents_count": 0, + "_pop_score": 33.79, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/keon/algorithms/master/README.md", "_readme_localurl": "keon~algorithms~README.md", @@ -2928,66 +4045,6 @@ "keon~algorithms~setup.py" ] }, - { - "index": 86, - "category": "viz", - "githuburl": "https://github.com/streamlit/streamlit", - "featured": null, - "links": null, - "description": null, - "_repopath": "streamlit/streamlit", - "_reponame": "streamlit", - "_stars": 21862, - "_forks": 1957, - "_watches": 284, - "_topics": [ - "python", - "machine-learning", - "data-science", - "deep-learning", - "data-visualization", - "streamlit", - "data-analysis", - "developer-tools" - ], - "_language": "Python", - "_homepage": "https://streamlit.io", - "_description": "Streamlit \u2014 The fastest way to build data apps in Python", - "_organization": "streamlit", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2019-08-24T00:00:00.000Z", - "_age_weeks": 173, - "_stars_per_week": 126.16, - "_pop_contributor_count": 160, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "independent", - "streamlit" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 12.52, - "_pop_updated_issues_count": 1080, - "_pop_closed_issues_count": 630, - "_pop_created_since_days": 40, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 22, - "_pop_recent_releases_estimated_tags": 347, - "_pop_recent_releases_adjusted_count": 22, - "_pop_issue_count": 1080.0, - "_pop_comment_count": 1206.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 1546, - "_pop_score": 64.16, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/streamlit/streamlit/master/README.md", - "_readme_localurl": "streamlit~streamlit~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 183, "category": "ml", @@ -2997,42 +4054,62 @@ "description": null, "_repopath": "google/jax", "_reponame": "jax", - "_stars": 21230, - "_forks": 1987, - "_watches": 288, - "_topics": [ - "jax" - ], + "_stars": 21986, + "_forks": 2065, + "_watches": 309, "_language": "Python", "_homepage": "http://jax.readthedocs.io/", "_description": "jax: Composable transformations of Python+NumPy programs: differentiate, vectorize, JIT to GPU/TPU, and more", "_organization": "google", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2018-10-25T00:00:00.000Z", - "_age_weeks": 216, - "_stars_per_week": 98.03, - "_pop_contributor_count": 484, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 225, + "_stars_per_week": 97.34, + "_topics": [ + "jax" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 507, + "_pop_contributor_logins": [ + "apaszke@google", + "froystig@googleresearch,brainteam", + "gnecula@google", + "hawkinsp@google", + "jakevdp@google", + "mattjj@google", + "sharadmv@google", + "shoyer@google", + "skye", + "yashk2810@google" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google" + "google", + "googleresearch,brainteam" + ], + "_pop_contributor_orgs_raw": [ + "@Google", + "@google", + "@google ", + "Google", + "google research, brain team" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 50.02, - "_pop_updated_issues_count": 1255, - "_pop_closed_issues_count": 952, - "_pop_created_since_days": 50, + "_pop_commit_frequency": 53.63, + "_pop_updated_issues_count": 1211, + "_pop_closed_issues_count": 918, + "_pop_created_since_days": 53, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 39, "_pop_recent_releases_estimated_tags": 38, "_pop_recent_releases_adjusted_count": 39, - "_pop_issue_count": 1254.0, - "_pop_comment_count": 1433.0, + "_pop_issue_count": 1214.0, + "_pop_comment_count": 1238.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 6513, - "_pop_score": 71.27, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 57.64, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google/jax/master/README.md", "_readme_localurl": "google~jax~README.md", @@ -3055,9 +4132,17 @@ "description": null, "_repopath": "pytorchlightning/pytorch-lightning", "_reponame": "lightning", - "_stars": 20989, - "_forks": 2683, - "_watches": 227, + "_stars": 21623, + "_forks": 2751, + "_watches": 229, + "_language": "Python", + "_homepage": "https://lightning.ai", + "_description": "lightning: Deep learning framework to train, deploy, and ship AI products Lightning fast.", + "_organization": "pytorchlightning", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-03-31T00:00:00.000Z", + "_age_weeks": 203, + "_stars_per_week": 106.29, "_topics": [ "python", "deep-learning", @@ -3067,39 +4152,52 @@ "data-science", "machine-learning" ], - "_language": "Python", - "_homepage": "https://lightning.ai", - "_description": "lightning: Build and train PyTorch models and connect them to the ML lifecycle using Lightning App templates, without handling DIY infrastructure, cost management, scaling, and other headaches.", - "_organization": "pytorchlightning", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2019-03-31T00:00:00.000Z", - "_age_weeks": 194, - "_stars_per_week": 108.11, - "_pop_contributor_count": 811, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 831, + "_pop_contributor_logins": [ + "Borda@grid.ai|pytorchlightning", + "akihironitta@lightning-ai", + "ananthsub", + "awaelchli@lightningai", + "carmocca@lightning-ai", + "dependabot[bot]", + "kaushikb11@lightning-ai", + "rohitgr7@current:opentowork|previouslylightning-ai,episource", + "tchaton@lightning.ai|pytorchlightning", + "williamFalcon@lightningai" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "current:opentowork|previouslylightning-ai,episource", "grid.ai|pytorchlightning", "lightning-ai", + "lightning.ai|pytorchlightning", "lightningai" ], + "_pop_contributor_orgs_raw": [ + "@Lightning-AI", + "@Lightning-AI ", + "Current: Open to work | Previously @Lightning-AI, @EpisourceLLC", + "Grid.ai | PytorchLightning", + "Lightning AI", + "Lightning.ai | Pytorch Lightning" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 39.56, - "_pop_updated_issues_count": 1617, - "_pop_closed_issues_count": 1237, - "_pop_created_since_days": 45, + "_pop_commit_frequency": 43.12, + "_pop_updated_issues_count": 1283, + "_pop_closed_issues_count": 995, + "_pop_created_since_days": 47, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 41, + "_pop_recent_releases_count": 42, "_pop_recent_releases_estimated_tags": 46, - "_pop_recent_releases_adjusted_count": 41, - "_pop_issue_count": 1616.0, - "_pop_comment_count": 2285.0, + "_pop_recent_releases_adjusted_count": 42, + "_pop_issue_count": 1284.0, + "_pop_comment_count": 2015.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 550, - "_pop_score": 73.04, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 62.96, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pytorchlightning/pytorch-lightning/master/README.md", "_readme_localurl": "pytorchlightning~pytorch-lightning~README.md", @@ -3119,6 +4217,83 @@ "pytorchlightning~pytorch-lightning~pyproject.toml" ] }, + { + "index": 952, + "category": "ml", + "githuburl": "https://github.com/lutzroeder/netron", + "featured": null, + "links": null, + "description": null, + "_repopath": "lutzroeder/netron", + "_reponame": "netron", + "_stars": 21366, + "_forks": 2399, + "_watches": 274, + "_language": "JavaScript", + "_homepage": "https://netron.app", + "_description": "netron: Visualizer for neural network, deep learning, and machine learning models", + "_organization": "lutzroeder", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2010-12-26T00:00:00.000Z", + "_age_weeks": 634, + "_stars_per_week": 33.68, + "_topics": [ + "neural-network", + "deep-learning", + "machine-learning", + "deeplearning", + "machinelearning", + "ai", + "ml", + "visualizer", + "onnx", + "keras", + "tensorflow", + "tensorflow-lite", + "coreml", + "caffe", + "caffe2", + "mxnet", + "pytorch", + "torch", + "paddle", + "darknet" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "lutzroeder@microsoft" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "microsoft" + ], + "_pop_contributor_orgs_raw": [ + "@microsoft" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 23.1, + "_pop_updated_issues_count": 90, + "_pop_closed_issues_count": 78, + "_pop_created_since_days": 148, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 90.0, + "_pop_comment_count": 88.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 34.05, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/lutzroeder/netron/master/README.md", + "_readme_localurl": "lutzroeder~netron~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 90, "category": "web", @@ -3128,56 +4303,83 @@ "description": null, "_repopath": "tornadoweb/tornado", "_reponame": "tornado", - "_stars": 20902, - "_forks": 5485, - "_watches": 1006, - "_topics": [ - "python", - "asynchronous" - ], + "_stars": 20978, + "_forks": 5489, + "_watches": 1004, "_language": "Python", "_homepage": "http://www.tornadoweb.org/", "_description": "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.", "_organization": "tornadoweb", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2009-09-09T00:00:00.000Z", - "_age_weeks": 692, - "_stars_per_week": 30.17, - "_pop_contributor_count": 432, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_age_weeks": 702, + "_stars_per_week": 29.88, + "_topics": [ + "python", + "asynchronous" + ], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 435, + "_pop_contributor_logins": [ + "ajdavis@mongodb", + "alekstorm@flexport", + "bdarnell", + "finiteloop", + "minrk@simularesearchlaboratory", + "mivade@ascendanalytics", + "pitrou", + "ploxiln@healthbyro", + "takluyver", + "wolever@sheertex" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "ascendanalytics", + "flexport", "healthbyro", - "mongodb" + "mongodb", + "sheertex", + "simularesearchlaboratory" + ], + "_pop_contributor_orgs_raw": [ + "@HealthByRo ", + "@mongodb ", + "Ascend Analytics", + "Flexport, Inc.", + "Sheertex", + "Simula Research Laboratory" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.42, - "_pop_updated_issues_count": 39, - "_pop_closed_issues_count": 24, - "_pop_created_since_days": 162, + "_pop_commit_frequency": 1.79, + "_pop_updated_issues_count": 60, + "_pop_closed_issues_count": 41, + "_pop_created_since_days": 164, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 5, "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 39.0, - "_pop_comment_count": 62.0, + "_pop_issue_count": 60.0, + "_pop_comment_count": 96.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 879, - "_pop_score": 59.61, + "_pop_dependents_count": 0, + "_pop_score": 52.52, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/tornadoweb/tornado/master/README.rst", "_readme_localurl": "tornadoweb~tornado~README.rst", "_requirements_filenames": [ + "requirements.txt", "setup.py", "pyproject.toml" ], "_requirements_giturls": [ + "https://raw.githubusercontent.com/tornadoweb/tornado/master/requirements.txt", "https://raw.githubusercontent.com/tornadoweb/tornado/master/setup.py", "https://raw.githubusercontent.com/tornadoweb/tornado/master/pyproject.toml" ], "_requirements_localurls": [ + "tornadoweb~tornado~requirements.txt", "tornadoweb~tornado~setup.py", "tornadoweb~tornado~pyproject.toml" ] @@ -3191,9 +4393,17 @@ "description": null, "_repopath": "celery/celery", "_reponame": "celery", - "_stars": 20658, - "_forks": 4395, - "_watches": 476, + "_stars": 20971, + "_forks": 4434, + "_watches": 475, + "_language": "Python", + "_homepage": "https://docs.celeryq.dev", + "_description": "celery: Distributed Task Queue (development branch)", + "_organization": "celery", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2009-04-24T00:00:00.000Z", + "_age_weeks": 721, + "_stars_per_week": 29.06, "_topics": [ "python", "task-manager", @@ -3210,37 +4420,51 @@ "python-library", "redis-queue" ], - "_language": "Python", - "_homepage": "https://docs.celeryq.dev", - "_description": "celery: Distributed Task Queue (development branch)", - "_organization": "celery", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2009-04-24T00:00:00.000Z", - "_age_weeks": 712, - "_stars_per_week": 29.0, - "_pop_contributor_count": 1255, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 1263, + "_pop_contributor_logins": [ + "Nusnus@katz-consulting-group,celery", + "ask@robinhoodmarkets", + "auvipy@celerypsfapacheencode", + "ionelmc", + "maybe-sybr", + "mher", + "nvie@liveblocks", + "piotrmaslanka@smok.co", + "pre-commit-ci[bot]", + "thedrow" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "celerypsfapache", - "robinhoodmarkets" + "celerypsfapacheencode", + "katz-consulting-group,celery", + "liveblocks", + "robinhoodmarkets", + "smok.co" + ], + "_pop_contributor_orgs_raw": [ + "@Celery @PSF @apache @encode", + "@Katz-Consulting-Group, @celery", + "@liveblocks", + "@robinhoodmarkets ", + "smok.co" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.23, - "_pop_updated_issues_count": 297, - "_pop_closed_issues_count": 166, - "_pop_created_since_days": 166, + "_pop_commit_frequency": 5.21, + "_pop_updated_issues_count": 385, + "_pop_closed_issues_count": 122, + "_pop_created_since_days": 168, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 8, + "_pop_recent_releases_count": 7, "_pop_recent_releases_estimated_tags": 17, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 297.0, - "_pop_comment_count": 543.0, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 385.0, + "_pop_comment_count": 465.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 6865, - "_pop_score": 71.58, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 57.89, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/celery/celery/master/README.rst", "_readme_localurl": "celery~celery~README.rst", @@ -3257,75 +4481,6 @@ "celery~celery~pyproject.toml" ] }, - { - "index": 45, - "category": "testing", - "githuburl": "https://github.com/locustio/locust", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "locustio/locust", - "_reponame": "locust", - "_stars": 20331, - "_forks": 2602, - "_watches": 431, - "_topics": [ - "locust", - "python", - "load-testing", - "performance-testing", - "http", - "benchmarking", - "load-generator" - ], - "_language": "Python", - "_homepage": "", - "_description": "locust: Scalable load testing tool written in Python", - "_organization": "locustio", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2011-02-17T00:00:00.000Z", - "_age_weeks": 617, - "_stars_per_week": 32.92, - "_pop_contributor_count": 271, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "5m", - "heylab", - "redshirtconsultingab" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 9.37, - "_pop_updated_issues_count": 96, - "_pop_closed_issues_count": 83, - "_pop_created_since_days": 144, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 26, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 26, - "_pop_issue_count": 96.0, - "_pop_comment_count": 201.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 596, - "_pop_score": 66.4, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/locustio/locust/master/README.md", - "_readme_localurl": "locustio~locust~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/locustio/locust/master/setup.py", - "https://raw.githubusercontent.com/locustio/locust/master/pyproject.toml" - ], - "_requirements_localurls": [ - "locustio~locust~setup.py", - "locustio~locust~pyproject.toml" - ] - }, { "index": 75, "category": "nlp", @@ -3335,46 +4490,67 @@ "description": null, "_repopath": "pytorch/fairseq", "_reponame": "fairseq", - "_stars": 20311, - "_forks": 5092, - "_watches": 355, - "_topics": [ - "python", - "pytorch", - "artificial-intelligence" - ], + "_stars": 20949, + "_forks": 5235, + "_watches": 356, "_language": "Python", "_homepage": null, "_description": "fairseq: Facebook AI Research Sequence-to-Sequence Toolkit written in Python.", "_organization": "pytorch", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2017-08-29T00:00:00.000Z", - "_age_weeks": 276, - "_stars_per_week": 73.36, - "_pop_contributor_count": 412, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 286, + "_stars_per_week": 73.21, + "_topics": [ + "python", + "pytorch", + "artificial-intelligence" + ], + "_last_commit_date": "2023-02-09T00:00:00.000Z", + "_pop_contributor_count": 413, + "_pop_contributor_logins": [ + "alexeib@characterai", + "cndn@facebook", + "dianaml0", + "edunov@facebookairesearch", + "kahne@facebookresearch", + "myleott", + "sravyapopuri388", + "sshleifer@facebookresearch", + "tangyuq@alexaai", + "theweiho" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "alexaai", + "characterai", "facebook", "facebookairesearch", "facebookresearch" ], + "_pop_contributor_orgs_raw": [ + "@facebook", + "@facebookresearch", + "Alexa AI", + "Character AI", + "Facebook AI Research" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.77, - "_pop_updated_issues_count": 277, - "_pop_closed_issues_count": 114, - "_pop_created_since_days": 65, + "_pop_commit_frequency": 2.96, + "_pop_updated_issues_count": 204, + "_pop_closed_issues_count": 81, + "_pop_created_since_days": 67, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 3, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 277.0, - "_pop_comment_count": 248.0, + "_pop_issue_count": 204.0, + "_pop_comment_count": 188.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 81045, - "_pop_score": 69.01, + "_pop_dependents_count": 0, + "_pop_score": 50.05, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pytorch/fairseq/master/README.md", "_readme_localurl": "pytorch~fairseq~README.md", @@ -3391,62 +4567,6 @@ "pytorch~fairseq~pyproject.toml" ] }, - { - "index": 2, - "category": "ml-dl", - "githuburl": "https://github.com/apache/incubator-mxnet", - "featured": null, - "links": null, - "description": null, - "_repopath": "apache/incubator-mxnet", - "_reponame": "mxnet", - "_stars": 20194, - "_forks": 6876, - "_watches": 1088, - "_topics": [ - "mxnet" - ], - "_language": "C++", - "_homepage": "https://mxnet.apache.org", - "_description": "mxnet: Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler; for Python, R, Julia, Scala, Go, Javascript and more", - "_organization": "apache", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-09-26T00:00:00.000Z", - "_created_at": "2015-04-30T00:00:00.000Z", - "_age_weeks": 398, - "_stars_per_week": 50.67, - "_pop_contributor_count": 980, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "amazon", - "cmu,octoml", - "facebook", - "mit", - "universityofwashington" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.65, - "_pop_updated_issues_count": 95, - "_pop_closed_issues_count": 14, - "_pop_created_since_days": 93, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 95.0, - "_pop_comment_count": 53.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 1919, - "_pop_score": 61.54, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/apache/incubator-mxnet/master/README.md", - "_readme_localurl": "apache~incubator-mxnet~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 255, "category": "crypto", @@ -3456,9 +4576,17 @@ "description": null, "_repopath": "freqtrade/freqtrade", "_reponame": "freqtrade", - "_stars": 20137, - "_forks": 4263, + "_stars": 20799, + "_forks": 4462, "_watches": 595, + "_language": "Python", + "_homepage": "https://www.freqtrade.io", + "_description": "freqtrade: Free, open source crypto trading bot", + "_organization": "freqtrade", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-05-17T00:00:00.000Z", + "_age_weeks": 301, + "_stars_per_week": 69.1, "_topics": [ "python", "cryptocurrencies", @@ -3470,36 +4598,51 @@ "algorithmic-trading", "freqtrade" ], - "_language": "Python", - "_homepage": "https://www.freqtrade.io", - "_description": "freqtrade: Free, open source crypto trading bot", - "_organization": "freqtrade", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2017-05-17T00:00:00.000Z", - "_age_weeks": 291, - "_stars_per_week": 69.03, - "_pop_contributor_count": 284, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 290, + "_pop_contributor_logins": [ + "dependabot-preview[bot]", + "dependabot[bot]", + "hroff-1902@freqtradecoredev;frizzleapps/whatsitwhatsit", + "mishaker", + "pyup-bot@pyupio", + "robcaulk@emergentmethods", + "samgermain@ccxt", + "shusso", + "vertti@polarsquad", + "xmatthias" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "freqtradecoredev;frizzleapps/whatsitwhatsit" + "ccxt", + "emergentmethods", + "freqtradecoredev;frizzleapps/whatsitwhatsit", + "polarsquad", + "pyupio" + ], + "_pop_contributor_orgs_raw": [ + "@pyupio", + "CCXT", + "Emergent Methods", + "Freqtrade core dev; FrizzleApps/Whatsitwhatsit", + "Polar Squad" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 69.62, - "_pop_updated_issues_count": 530, - "_pop_closed_issues_count": 502, - "_pop_created_since_days": 68, + "_pop_commit_frequency": 62.81, + "_pop_updated_issues_count": 468, + "_pop_closed_issues_count": 438, + "_pop_created_since_days": 70, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 17, "_pop_recent_releases_estimated_tags": 13, "_pop_recent_releases_adjusted_count": 17, - "_pop_issue_count": 530.0, - "_pop_comment_count": 1379.0, + "_pop_issue_count": 469.0, + "_pop_comment_count": 1281.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.6, - "_pop_dependents_count": 1085, - "_pop_score": 68.41, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 0, + "_pop_score": 61.16, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/freqtrade/freqtrade/master/README.md", "_readme_localurl": "freqtrade~freqtrade~README.md", @@ -3520,65 +4663,97 @@ ] }, { - "index": 607, - "category": "util", - "githuburl": "https://github.com/norvig/pytudes", - "featured": null, + "index": 45, + "category": "testing", + "githuburl": "https://github.com/locustio/locust", + "featured": 1.0, "links": null, "description": null, - "_repopath": "norvig/pytudes", - "_reponame": "pytudes", - "_stars": 19802, - "_forks": 2265, - "_watches": 730, + "_repopath": "locustio/locust", + "_reponame": "locust", + "_stars": 20705, + "_forks": 2636, + "_watches": 434, + "_language": "Python", + "_homepage": "", + "_description": "locust: Scalable load testing tool written in Python", + "_organization": "locustio", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2011-02-17T00:00:00.000Z", + "_age_weeks": 626, + "_stars_per_week": 33.03, "_topics": [ + "locust", "python", - "python-3", - "programming", - "practice", - "demonstrate-skills" + "load-testing", + "performance-testing", + "http", + "benchmarking", + "load-generator" ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "pytudes: Python programs, usually short, of considerable difficulty, to perfect particular skills.", - "_organization": "norvig", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2017-03-01T00:00:00.000Z", - "_age_weeks": 302, - "_stars_per_week": 65.41, - "_pop_contributor_count": 44, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 277, + "_pop_contributor_logins": [ + "HeyHugo@5m", + "Jahaja@embarkstudios", + "Trouv", + "ajt89", + "cgbystrom@epicgames/epicgames", + "cyberw@redshirtconsultingab", + "heyman@heylab", + "max-rocket-internet@deliveryhero", + "mbeacom@aws", + "mboutet" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google" + "5m", + "aws", + "deliveryhero", + "embarkstudios", + "epicgames/epicgames", + "heylab", + "redshirtconsultingab" + ], + "_pop_contributor_orgs_raw": [ + "@5m ", + "@EmbarkStudios", + "@aws", + "Delivery Hero", + "Epic Games / @EpicGames", + "Heylab", + "Red Shirt Consulting AB" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.38, - "_pop_updated_issues_count": 5, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 71, + "_pop_commit_frequency": 7.62, + "_pop_updated_issues_count": 62, + "_pop_closed_issues_count": 54, + "_pop_created_since_days": 146, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 5.0, - "_pop_comment_count": 2.0, + "_pop_recent_releases_count": 19, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 19, + "_pop_issue_count": 62.0, + "_pop_comment_count": 136.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.4, - "_pop_dependents_count": 17, - "_pop_score": 34.84, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 0, + "_pop_score": 57.09, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/norvig/pytudes/master/README.md", - "_readme_localurl": "norvig~pytudes~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/locustio/locust/master/README.md", + "_readme_localurl": "locustio~locust~README.md", "_requirements_filenames": [ - "requirements.txt" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/norvig/pytudes/master/requirements.txt" + "https://raw.githubusercontent.com/locustio/locust/master/setup.py", + "https://raw.githubusercontent.com/locustio/locust/master/pyproject.toml" ], "_requirements_localurls": [ - "norvig~pytudes~requirements.txt" + "locustio~locust~setup.py", + "locustio~locust~pyproject.toml" ] }, { @@ -3590,9 +4765,17 @@ "description": null, "_repopath": "google/mediapipe", "_reponame": "mediapipe", - "_stars": 19756, - "_forks": 4148, - "_watches": 494, + "_stars": 20578, + "_forks": 4291, + "_watches": 502, + "_language": "C++", + "_homepage": "https://mediapipe.dev", + "_description": "mediapipe: Cross-platform, customizable ML solutions for live and streaming media.", + "_organization": "google", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-06-13T00:00:00.000Z", + "_age_weeks": 192, + "_stars_per_week": 106.7, "_topics": [ "mediapipe", "c-plus-plus", @@ -3612,36 +4795,46 @@ "stream-processing", "perception" ], - "_language": "C++", - "_homepage": "https://mediapipe.dev", - "_description": "mediapipe: Cross-platform, customizable ML solutions for live and streaming media.", - "_organization": "google", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2019-06-13T00:00:00.000Z", - "_age_weeks": 183, - "_stars_per_week": 107.62, - "_pop_contributor_count": 21, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 28, + "_pop_contributor_logins": [ + "NikolayChirkov@googleinc", + "acozzette@google", + "camillol", + "khanhlvg@google", + "kinaryml", + "kuaashish", + "markmcd@google", + "priankakariatyml", + "schmidt-sebastian", + "ziyeqinghan@google" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google" + "google", + "googleinc" + ], + "_pop_contributor_orgs_raw": [ + "@google ", + "Google", + "Google Inc" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 11.92, - "_pop_updated_issues_count": 556, - "_pop_closed_issues_count": 322, - "_pop_created_since_days": 43, + "_pop_commit_frequency": 19.75, + "_pop_updated_issues_count": 475, + "_pop_closed_issues_count": 319, + "_pop_created_since_days": 45, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 13, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 556.0, - "_pop_comment_count": 1433.0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 476.0, + "_pop_comment_count": 1542.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.6, - "_pop_dependents_count": 111, - "_pop_score": 50.71, + "_pop_comment_frequency": 3.2, + "_pop_dependents_count": 0, + "_pop_score": 46.78, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google/mediapipe/master/README.md", "_readme_localurl": "google~mediapipe~README.md", @@ -3658,6 +4851,171 @@ "google~mediapipe~setup.py" ] }, + { + "index": 2, + "category": "ml-dl", + "githuburl": "https://github.com/apache/incubator-mxnet", + "featured": null, + "links": null, + "description": null, + "_repopath": "apache/incubator-mxnet", + "_reponame": "mxnet", + "_stars": 20257, + "_forks": 6873, + "_watches": 1089, + "_language": "C++", + "_homepage": "https://mxnet.apache.org", + "_description": "mxnet: Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler; for Python, R, Julia, Scala, Go, Javascript and more", + "_organization": "apache", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-04-30T00:00:00.000Z", + "_age_weeks": 407, + "_stars_per_week": 49.67, + "_topics": [ + "mxnet" + ], + "_last_commit_date": "2023-01-26T00:00:00.000Z", + "_pop_contributor_count": 981, + "_pop_contributor_logins": [ + "antinucleon@facebook", + "eric-haibin-lin@ex-awsai,bytedanceaml", + "leezu@amazonwebservices", + "mli@amazon", + "piiswrong@universityofwashington", + "pluskid@mit", + "szha@amazonai", + "tqchen@cmu,octoml", + "vchuravy@mit", + "yzhliu@amazonwebservices" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "amazon", + "amazonai", + "amazonwebservices", + "cmu,octoml", + "ex-awsai,bytedanceaml", + "facebook", + "mit", + "universityofwashington" + ], + "_pop_contributor_orgs_raw": [ + "@mit", + "Amazon", + "Amazon AI", + "Amazon Web Services", + "CMU, OctoML", + "Facebook", + "MIT", + "University of Washington", + "ex-AWS AI, Bytedance AML" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.94, + "_pop_updated_issues_count": 57, + "_pop_closed_issues_count": 23, + "_pop_created_since_days": 95, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 57.0, + "_pop_comment_count": 70.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 52.36, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/apache/incubator-mxnet/master/README.md", + "_readme_localurl": "apache~incubator-mxnet~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 607, + "category": "util", + "githuburl": "https://github.com/norvig/pytudes", + "featured": null, + "links": null, + "description": null, + "_repopath": "norvig/pytudes", + "_reponame": "pytudes", + "_stars": 20072, + "_forks": 2276, + "_watches": 738, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "pytudes: Python programs, usually short, of considerable difficulty, to perfect particular skills.", + "_organization": "norvig", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2017-03-01T00:00:00.000Z", + "_age_weeks": 312, + "_stars_per_week": 64.33, + "_topics": [ + "python", + "python-3", + "programming", + "practice", + "demonstrate-skills" + ], + "_last_commit_date": "2023-02-08T00:00:00.000Z", + "_pop_contributor_count": 44, + "_pop_contributor_logins": [ + "Carreau@quansight-labs", + "Naereen", + "alexrkopp", + "ghurley", + "mco-gh@googlecloudplatform", + "norvig@google", + "pathcl", + "ramalho@thoughtworksthoughtworksinc", + "rmeertens", + "vladimirlojanica" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "google", + "googlecloudplatform", + "quansight-labs", + "thoughtworksthoughtworksinc" + ], + "_pop_contributor_orgs_raw": [ + "@GoogleCloudPlatform ", + "@Quansight-Labs", + "@thoughtworks @ThoughtWorksInc ", + "Google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.44, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 73, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 0, + "_pop_score": 33.33, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/norvig/pytudes/master/README.md", + "_readme_localurl": "norvig~pytudes~README.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/norvig/pytudes/master/requirements.txt" + ], + "_requirements_localurls": [ + "norvig~pytudes~requirements.txt" + ] + }, { "index": 409, "category": "perf", @@ -3667,9 +5025,17 @@ "description": null, "_repopath": "google/flatbuffers", "_reponame": "flatbuffers", - "_stars": 19528, - "_forks": 2976, - "_watches": 649, + "_stars": 19937, + "_forks": 3021, + "_watches": 645, + "_language": "C++", + "_homepage": "http://google.github.io/flatbuffers/", + "_description": "FlatBuffers: Memory Efficient Serialization Library", + "_organization": "google", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-05-19T00:00:00.000Z", + "_age_weeks": 457, + "_stars_per_week": 43.6, "_topics": [ "flatbuffers", "serialization", @@ -3692,38 +5058,51 @@ "c", "protobuf" ], - "_language": "C++", - "_homepage": "http://google.github.io/flatbuffers/", - "_description": "FlatBuffers: Memory Efficient Serialization Library", - "_organization": "google", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2014-05-19T00:00:00.000Z", - "_age_weeks": 448, - "_stars_per_week": 43.59, - "_pop_contributor_count": 613, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 627, + "_pop_contributor_logins": [ + "CasperN", + "TGIshib", + "aardappel@voxraygames", + "bjornharrtell@septima", + "dbaileychess@google", + "krojew", + "paulovap@bookingcom", + "rw@cto", + "vaind", + "vglavnyy" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "bookingcom", "cto", "google", + "septima", "voxraygames" ], + "_pop_contributor_orgs_raw": [ + "@Septima", + "@bookingcom", + "CTO", + "Google", + "VoxRay Games" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 7.4, - "_pop_updated_issues_count": 227, - "_pop_closed_issues_count": 156, - "_pop_created_since_days": 104, + "_pop_commit_frequency": 7.1, + "_pop_updated_issues_count": 222, + "_pop_closed_issues_count": 153, + "_pop_created_since_days": 107, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 9, + "_pop_recent_releases_count": 13, "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 9, - "_pop_issue_count": 227.0, - "_pop_comment_count": 576.0, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 222.0, + "_pop_comment_count": 445.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 3175, - "_pop_score": 70.7, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 58.22, "_readme_filename": "readme.md", "_readme_giturl": "https://raw.githubusercontent.com/google/flatbuffers/master/readme.md", "_readme_localurl": "google~flatbuffers~readme.md", @@ -3740,9 +5119,17 @@ "description": null, "_repopath": "paddlepaddle/paddle", "_reponame": "Paddle", - "_stars": 19328, - "_forks": 4834, - "_watches": 734, + "_stars": 19617, + "_forks": 4910, + "_watches": 731, + "_language": "C++", + "_homepage": "http://www.paddlepaddle.org/", + "_description": "Paddle: PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice \uff08\u300e\u98de\u6868\u300f\u6838\u5fc3\u6846\u67b6\uff0c\u6df1\u5ea6\u5b66\u4e60&\u673a\u5668\u5b66\u4e60\u9ad8\u6027\u80fd\u5355\u673a\u3001\u5206\u5e03\u5f0f\u8bad\u7ec3\u548c\u8de8\u5e73\u53f0\u90e8\u7f72\uff09", + "_organization": "paddlepaddle", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-08-15T00:00:00.000Z", + "_age_weeks": 340, + "_stars_per_week": 57.65, "_topics": [ "paddlepaddle", "deep-learning", @@ -3753,38 +5140,53 @@ "efficiency", "distributed-training" ], - "_language": "C++", - "_homepage": "http://www.paddlepaddle.org/", - "_description": "Paddle: PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice \uff08\u300e\u98de\u6868\u300f\u6838\u5fc3\u6846\u67b6\uff0c\u6df1\u5ea6\u5b66\u4e60&\u673a\u5668\u5b66\u4e60\u9ad8\u6027\u80fd\u5355\u673a\u3001\u5206\u5e03\u5f0f\u8bad\u7ec3\u548c\u8de8\u5e73\u53f0\u90e8\u7f72\uff09", - "_organization": "paddlepaddle", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2016-08-15T00:00:00.000Z", - "_age_weeks": 331, - "_stars_per_week": 58.39, - "_pop_contributor_count": 895, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 923, + "_pop_contributor_logins": [ + "JiayiFeng", + "dzhwinter@baidu", + "gangliao@tiktok", + "jacquesqiao@baidubdg/idl/dltp", + "luotao1@paddlepaddle", + "qingqing01", + "reyoung@tencent", + "sneaxiy", + "tensor-tang", + "velconia@baiduaigroup" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "baidu", + "baiduaigroup", "baidubdg/idl/dltp", "paddlepaddle", - "tencent" + "tencent", + "tiktok" + ], + "_pop_contributor_orgs_raw": [ + "@PaddlePaddle ", + "Baidu", + "Baidu AI Group", + "Baidu BDG/IDL/DLTP", + "Tencent", + "TikTok" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 110.33, - "_pop_updated_issues_count": 4106, - "_pop_closed_issues_count": 3158, - "_pop_created_since_days": 77, + "_pop_commit_frequency": 110.25, + "_pop_updated_issues_count": 4560, + "_pop_closed_issues_count": 3726, + "_pop_created_since_days": 79, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 7, + "_pop_recent_releases_count": 6, "_pop_recent_releases_estimated_tags": 11, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 4104.0, - "_pop_comment_count": 6254.0, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 4558.0, + "_pop_comment_count": 5534.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 19940, - "_pop_score": 80.96, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 65.5, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/paddlepaddle/paddle/master/README.md", "_readme_localurl": "paddlepaddle~paddle~README.md", @@ -3801,45 +5203,68 @@ "description": null, "_repopath": "cookiecutter/cookiecutter", "_reponame": "cookiecutter", - "_stars": 18574, - "_forks": 1762, - "_watches": 236, - "_topics": [ - "python", - "cookiecutter" - ], + "_stars": 18960, + "_forks": 1787, + "_watches": 231, "_language": "Python", "_homepage": "https://pypi.org/project/cookiecutter/", "_description": "cookiecutter: A cross-platform command-line utility that creates projects from cookiecutters (project templates), e.g. Python package projects, C projects.", "_organization": "cookiecutter", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-09-09T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2013-07-14T00:00:00.000Z", - "_age_weeks": 492, - "_stars_per_week": 37.74, + "_age_weeks": 501, + "_stars_per_week": 37.81, + "_topics": [ + "python", + "cookiecutter" + ], + "_last_commit_date": "2022-09-09T00:00:00.000Z", "_pop_contributor_count": 285, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_pop_contributor_logins": [ + "audreyfeldroy@margaritahumanitarian", + "freakboy3742", + "hackebrot@mozilla", + "insspb", + "jensens@klein&partnerkgandbluedynamics", + "michaeljoseph", + "pfmoore", + "pydanny@octoenergy", + "simobasso@ovalmoney", + "ssbarnea@redhatansible" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "klein&partnerkgandbluedynamics", "margaritahumanitarian", "mozilla", - "octoenergy" + "octoenergy", + "ovalmoney", + "redhatansible" + ], + "_pop_contributor_orgs_raw": [ + "@OvalMoney ", + "@margaritahumanitarian", + "@mozilla", + "@octoenergy ", + "Klein & Partner KG and @bluedynamics ", + "Red Hat @ansible" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.08, - "_pop_updated_issues_count": 50, + "_pop_commit_frequency": 3.0, + "_pop_updated_issues_count": 64, "_pop_closed_issues_count": 10, - "_pop_created_since_days": 115, - "_pop_updated_since_days": 3, + "_pop_created_since_days": 117, + "_pop_updated_since_days": 6, "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 50.0, - "_pop_comment_count": 43.0, + "_pop_issue_count": 64.0, + "_pop_comment_count": 74.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 611, - "_pop_score": 53.64, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 44.31, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/cookiecutter/cookiecutter/master/README.md", "_readme_localurl": "cookiecutter~cookiecutter~README.md", @@ -3865,42 +5290,62 @@ "description": null, "_repopath": "wesm/pydata-book", "_reponame": "pydata-book", - "_stars": 18518, - "_forks": 13789, - "_watches": 1456, - "_topics": [], + "_stars": 18877, + "_forks": 13983, + "_watches": 1470, "_language": "Jupyter Notebook", "_homepage": "", "_description": "pydata-book: Materials and IPython notebooks for \"Python for Data Analysis\" by Wes McKinney, published by O'Reilly Media", "_organization": "wesm", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-03T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2012-06-30T00:00:00.000Z", - "_age_weeks": 546, - "_stars_per_week": 33.9, + "_age_weeks": 555, + "_stars_per_week": 33.98, + "_topics": [], + "_last_commit_date": "2022-11-03T00:00:00.000Z", "_pop_contributor_count": 9, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "ColdFire87", + "betatim@nvidia", + "crwilcox@googlecloud", + "kmather73", + "mbiesiad", + "rothwerx", + "thisizkp@vndly", + "wesm@voltrondata", + "y33-j3T@two-little-epochs" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "googlecloud", + "nvidia", + "two-little-epochs", "vndly", "voltrondata" ], + "_pop_contributor_orgs_raw": [ + "@two-little-epochs ", + "@voltrondata", + "Google Cloud", + "Nvidia ", + "VNDLY" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.15, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 127, - "_pop_updated_since_days": 2, + "_pop_commit_frequency": 0.13, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 130, + "_pop_updated_since_days": 4, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 7.0, - "_pop_comment_count": 6.0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 5, - "_pop_score": 30.95, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 28.63, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/wesm/pydata-book/master/README.md", "_readme_localurl": "wesm~pydata-book~README.md", @@ -3923,44 +5368,68 @@ "description": null, "_repopath": "harisiqbal88/plotneuralnet", "_reponame": "PlotNeuralNet", - "_stars": 18466, - "_forks": 2542, - "_watches": 219, - "_topics": [ - "latex", - "deep-neural-networks" - ], + "_stars": 18856, + "_forks": 2577, + "_watches": 222, "_language": "TeX", "_homepage": null, "_description": "PlotNeuralNet: Latex code for making neural networks diagrams", "_organization": "harisiqbal88", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2020-11-06T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2018-07-24T00:00:00.000Z", - "_age_weeks": 229, - "_stars_per_week": 80.34, + "_age_weeks": 239, + "_stars_per_week": 78.85, + "_topics": [ + "latex", + "deep-neural-networks" + ], + "_last_commit_date": "2020-11-06T00:00:00.000Z", "_pop_contributor_count": 13, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Alyetama", + "Brandon-HY-Lin", + "HarisIqbal88", + "StevenShi-23@nationaluniversityofsingapore", + "jackyko1991@universityofoxford", + "lukasliebel@tensoreye,technicaluniversityofmunich", + "mbrukman@google", + "pedrodiamel@cesarbr", + "weiji14@developmentseed", + "weslynn" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "cesarbr", + "developmentseed", + "google", + "nationaluniversityofsingapore", + "tensoreye,technicaluniversityofmunich", "universityofoxford" ], + "_pop_contributor_orgs_raw": [ + "@CESARBR", + "@Google", + "@developmentseed", + "National University of Singapore", + "Tensoreye, Technical University of Munich", + "University of Oxford" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 54, - "_pop_updated_since_days": 26, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 56, + "_pop_updated_since_days": 28, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 4.0, - "_pop_comment_count": 5.0, + "_pop_issue_count": 6.0, + "_pop_comment_count": 3.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 35, - "_pop_score": 25.79, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 22.32, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/harisiqbal88/plotneuralnet/master/README.md", "_readme_localurl": "harisiqbal88~plotneuralnet~README.md", @@ -3977,9 +5446,17 @@ "description": null, "_repopath": "slundberg/shap", "_reponame": "shap", - "_stars": 18176, - "_forks": 2729, - "_watches": 259, + "_stars": 18576, + "_forks": 2804, + "_watches": 262, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "shap: A game theoretic approach to explain the output of any machine learning model.", + "_organization": "slundberg", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-11-22T00:00:00.000Z", + "_age_weeks": 326, + "_stars_per_week": 56.96, "_topics": [ "interpretability", "machine-learning", @@ -3989,38 +5466,49 @@ "shapley", "explainability" ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "shap: A game theoretic approach to explain the output of any machine learning model.", - "_organization": "slundberg", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-06-16T00:00:00.000Z", - "_created_at": "2016-11-22T00:00:00.000Z", - "_age_weeks": 316, - "_stars_per_week": 57.36, "_pop_contributor_count": 205, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "QuentinAmbard", + "RAMitchell@nvidia", + "anusham1990", + "dependabot[bot]", + "floidgilbert", + "gabrieltseng@mila-iqia", + "imatiach-msft@microsoft", + "ryserrao", + "slundberg@microsoftresearch", + "vivekchettiar@microsoft" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "microsoft", "microsoftresearch", - "mila-iqia" + "mila-iqia", + "nvidia" + ], + "_pop_contributor_orgs_raw": [ + "@mila-iqia", + "Microsoft", + "Microsoft Research", + "Nvidia" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.31, - "_pop_updated_issues_count": 187, - "_pop_closed_issues_count": 27, - "_pop_created_since_days": 74, - "_pop_updated_since_days": 6, + "_pop_commit_frequency": 1.88, + "_pop_updated_issues_count": 152, + "_pop_closed_issues_count": 22, + "_pop_created_since_days": 76, + "_pop_updated_since_days": 8, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 8, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 187.0, - "_pop_comment_count": 160.0, + "_pop_issue_count": 152.0, + "_pop_comment_count": 135.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 439, - "_pop_score": 50.17, + "_pop_dependents_count": 0, + "_pop_score": 39.28, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/slundberg/shap/master/README.md", "_readme_localurl": "slundberg~shap~README.md", @@ -4040,6 +5528,101 @@ "slundberg~shap~pyproject.toml" ] }, + { + "index": 763, + "category": "ml-dl", + "githuburl": "https://github.com/xinntao/real-esrgan", + "featured": null, + "links": null, + "description": null, + "_repopath": "xinntao/real-esrgan", + "_reponame": "Real-ESRGAN", + "_stars": 18200, + "_forks": 1965, + "_watches": 185, + "_language": "Python", + "_homepage": "", + "_description": "Real-ESRGAN aims at developing Practical Algorithms for General Image/Video Restoration.", + "_organization": "xinntao", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-07-19T00:00:00.000Z", + "_age_weeks": 83, + "_stars_per_week": 218.52, + "_topics": [ + "esrgan", + "pytorch", + "real-esrgan", + "super-resolution", + "image-restoration", + "denoise", + "jpeg-compression", + "amine" + ], + "_last_commit_date": "2022-09-20T00:00:00.000Z", + "_pop_contributor_count": 11, + "_pop_contributor_logins": [ + "AK391@huggingface", + "Asiimoviet", + "Jared-02", + "NayamAmarshe@$shell", + "ToTheBeginning@tencent", + "cclauss@christianclauss", + "cobanov@refikanadolstudio", + "pratikgl@housinghq", + "rogachevai@vk|hse", + "xinntao@tencent" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "$shell", + "christianclauss", + "housinghq", + "huggingface", + "refikanadolstudio", + "tencent", + "vk|hse" + ], + "_pop_contributor_orgs_raw": [ + "$SHELL", + "@RefikAnadolStudio ", + "@housinghq", + "Christian Clauss", + "Huggingface", + "Tencent", + "VK | HSE" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.6, + "_pop_updated_issues_count": 99, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 19, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 99.0, + "_pop_comment_count": 93.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 30.51, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/xinntao/real-esrgan/master/README.md", + "_readme_localurl": "xinntao~real-esrgan~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/xinntao/real-esrgan/master/requirements.txt", + "https://raw.githubusercontent.com/xinntao/real-esrgan/master/setup.py" + ], + "_requirements_localurls": [ + "xinntao~real-esrgan~requirements.txt", + "xinntao~real-esrgan~setup.py" + ] + }, { "index": 61, "category": "viz", @@ -4049,9 +5632,17 @@ "description": null, "_repopath": "plotly/dash", "_reponame": "dash", - "_stars": 17833, - "_forks": 1815, - "_watches": 409, + "_stars": 18119, + "_forks": 1845, + "_watches": 410, + "_language": "Python", + "_homepage": "https://plotly.com/dash", + "_description": "dash: Data Apps & Dashboards for Python. No JavaScript Required.", + "_organization": "plotly", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-04-10T00:00:00.000Z", + "_age_weeks": 410, + "_stars_per_week": 44.12, "_topics": [ "dash", "plotly", @@ -4074,36 +5665,46 @@ "jupyter", "julia" ], - "_language": "Python", - "_homepage": "https://plotly.com/dash", - "_description": "dash: Analytical Web Apps for Python, R, Julia, and Jupyter. No JavaScript Required.", - "_organization": "plotly", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2015-04-10T00:00:00.000Z", - "_age_weeks": 401, - "_stars_per_week": 44.42, + "_last_commit_date": "2023-02-15T00:00:00.000Z", "_pop_contributor_count": 132, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "AnnMarieW@nostarchpress-thebookofdash", + "HammadTheOne", + "Marc-Andre-Rivet@plotly", + "T4rk1n", + "alexcjohnson", + "byronz", + "chriddyp@plotly", + "rmarren1", + "rpkyle", + "valentijnnieman" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "nostarchpress-thebookofdash", "plotly" ], + "_pop_contributor_orgs_raw": [ + "@plotly ", + "No Starch Press - The Book of Dash", + "Plotly" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 12.54, - "_pop_updated_issues_count": 177, - "_pop_closed_issues_count": 85, - "_pop_created_since_days": 94, + "_pop_commit_frequency": 11.44, + "_pop_updated_issues_count": 156, + "_pop_closed_issues_count": 80, + "_pop_created_since_days": 96, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 12, "_pop_recent_releases_estimated_tags": 11, "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 177.0, - "_pop_comment_count": 210.0, + "_pop_issue_count": 156.0, + "_pop_comment_count": 180.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 5155, - "_pop_score": 62.42, + "_pop_dependents_count": 0, + "_pop_score": 48.87, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/plotly/dash/master/README.md", "_readme_localurl": "plotly~dash~README.md", @@ -4118,145 +5719,171 @@ ] }, { - "index": 763, - "category": "ml-dl", - "githuburl": "https://github.com/xinntao/real-esrgan", + "index": 931, + "category": "nlp", + "githuburl": "https://github.com/acheong08/chatgpt", "featured": null, "links": null, "description": null, - "_repopath": "xinntao/real-esrgan", - "_reponame": "Real-ESRGAN", - "_stars": 17026, - "_forks": 1811, - "_watches": 181, - "_topics": [ - "esrgan", - "pytorch", - "real-esrgan", - "super-resolution", - "image-restoration", - "denoise", - "jpeg-compression", - "amine" - ], + "_repopath": "acheong08/chatgpt", + "_reponame": "ChatGPT", + "_stars": 18011, + "_forks": 2728, + "_watches": 198, "_language": "Python", "_homepage": "", - "_description": "Real-ESRGAN aims at developing Practical Algorithms for General Image/Video Restoration.", - "_organization": "xinntao", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-09-20T00:00:00.000Z", - "_created_at": "2021-07-19T00:00:00.000Z", - "_age_weeks": 74, - "_stars_per_week": 230.08, - "_pop_contributor_count": 11, + "_description": "ChatGPT: Reverse engineered ChatGPT API", + "_organization": "acheong08", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-12-03T00:00:00.000Z", + "_age_weeks": 11, + "_stars_per_week": 1556.51, + "_topics": [ + "chatgpt", + "cli", + "library", + "pypi-package", + "gptchat", + "revchatgpt" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 77, + "_pop_contributor_logins": [ + "DiamondDemon669", + "Harry-Jing", + "Jamminroot@deeplay.io", + "MonsterDruide1", + "PyRo1121@bankofamerica", + "acheong08", + "robbiebusinessacc", + "scottleibrand@netskope", + "skippyyy", + "snowmeow2" + ], "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "huggingface", - "tencent", - "vk|hse" + "bankofamerica", + "deeplay.io", + "netskope" + ], + "_pop_contributor_orgs_raw": [ + "Bank of America", + "Deeplay.io", + "Netskope, Inc." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.69, - "_pop_updated_issues_count": 87, - "_pop_closed_issues_count": 7, - "_pop_created_since_days": 17, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 14, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 87.0, - "_pop_comment_count": 78.0, + "_pop_commit_frequency": 16.37, + "_pop_updated_issues_count": 700, + "_pop_closed_issues_count": 695, + "_pop_created_since_days": 3, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 141, + "_pop_recent_releases_estimated_tags": 604, + "_pop_recent_releases_adjusted_count": 141, + "_pop_issue_count": 700.0, + "_pop_comment_count": 3921.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 67, - "_pop_score": 35.54, + "_pop_comment_frequency": 5.6, + "_pop_dependents_count": 0, + "_pop_score": 50.03, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/xinntao/real-esrgan/master/README.md", - "_readme_localurl": "xinntao~real-esrgan~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/acheong08/chatgpt/master/README.md", + "_readme_localurl": "acheong08~chatgpt~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/xinntao/real-esrgan/master/requirements.txt", - "https://raw.githubusercontent.com/xinntao/real-esrgan/master/setup.py" + "https://raw.githubusercontent.com/acheong08/chatgpt/master/setup.py" ], "_requirements_localurls": [ - "xinntao~real-esrgan~requirements.txt", - "xinntao~real-esrgan~setup.py" + "acheong08~chatgpt~setup.py" ] }, { - "index": 6, - "category": "viz", - "githuburl": "https://github.com/bokeh/bokeh", + "index": 228, + "category": "term", + "githuburl": "https://github.com/willmcgugan/textual", "featured": null, "links": null, "description": null, - "_repopath": "bokeh/bokeh", - "_reponame": "bokeh", - "_stars": 17007, - "_forks": 4012, - "_watches": 451, + "_repopath": "willmcgugan/textual", + "_reponame": "textual", + "_stars": 17792, + "_forks": 521, + "_watches": 158, + "_language": "Python", + "_homepage": "https://textual.textualize.io/", + "_description": "Textual is a TUI (Text User Interface) framework for Python inspired by modern web development.", + "_organization": "willmcgugan", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-04-08T00:00:00.000Z", + "_age_weeks": 97, + "_stars_per_week": 181.82, "_topics": [ - "bokeh", + "terminal", "python", - "interactive-plots", - "javascript", - "visualization", - "plotting", - "plots", - "data-visualisation", - "notebooks", - "jupyter", - "visualisation", - "numfocus" + "tui", + "rich", + "cli", + "framework" ], - "_language": "Python", - "_homepage": "https://bokeh.org", - "_description": "bokeh: Interactive Data Visualization in the browser, from Python", - "_organization": "bokeh", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2012-03-26T00:00:00.000Z", - "_age_weeks": 560, - "_stars_per_week": 30.37, - "_pop_contributor_count": 624, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 69, + "_pop_contributor_logins": [ + "aaronst@mandiant", + "darrenburns", + "davep@davep.org", + "driscollis", + "lllama@nccgroup", + "nitzan-shaked", + "olivierphi@lastmileict", + "overflowy", + "rodrigogiraoserrao", + "willmcgugan@textualize" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "nvidia" + "davep.org", + "lastmileict", + "mandiant", + "nccgroup", + "textualize" + ], + "_pop_contributor_orgs_raw": [ + "@lastmileICT ", + "@mandiant", + "NCC Group", + "Textualize", + "davep.org" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 8.15, - "_pop_updated_issues_count": 405, - "_pop_closed_issues_count": 275, - "_pop_created_since_days": 131, + "_pop_commit_frequency": 71.12, + "_pop_updated_issues_count": 588, + "_pop_closed_issues_count": 485, + "_pop_created_since_days": 23, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 10, - "_pop_issue_count": 405.0, - "_pop_comment_count": 824.0, + "_pop_recent_releases_count": 19, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 19, + "_pop_issue_count": 589.0, + "_pop_comment_count": 1138.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 1783, - "_pop_score": 67.11, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 54.15, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/bokeh/bokeh/master/README.md", - "_readme_localurl": "bokeh~bokeh~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/willmcgugan/textual/master/README.md", + "_readme_localurl": "willmcgugan~textual~README.md", "_requirements_filenames": [ - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/bokeh/bokeh/master/setup.py", - "https://raw.githubusercontent.com/bokeh/bokeh/master/pyproject.toml" + "https://raw.githubusercontent.com/willmcgugan/textual/master/pyproject.toml" ], "_requirements_localurls": [ - "bokeh~bokeh~setup.py", - "bokeh~bokeh~pyproject.toml" + "willmcgugan~textual~pyproject.toml" ] }, { @@ -4268,9 +5895,17 @@ "description": null, "_repopath": "atsushisakai/pythonrobotics", "_reponame": "PythonRobotics", - "_stars": 16987, - "_forks": 5385, - "_watches": 503, + "_stars": 17554, + "_forks": 5525, + "_watches": 505, + "_language": "Python", + "_homepage": "https://atsushisakai.github.io/PythonRobotics/", + "_description": "PythonRobotics: Python sample codes for robotics algorithms.", + "_organization": "atsushisakai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-03-21T00:00:00.000Z", + "_age_weeks": 361, + "_stars_per_week": 48.59, "_topics": [ "python", "robotics", @@ -4289,37 +5924,51 @@ "robot", "hacktoberfest" ], - "_language": "Python", - "_homepage": "https://atsushisakai.github.io/PythonRobotics/", - "_description": "PythonRobotics: Python sample codes for robotics algorithms.", - "_organization": "atsushisakai", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2016-03-21T00:00:00.000Z", - "_age_weeks": 352, - "_stars_per_week": 48.26, - "_pop_contributor_count": 102, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 107, + "_pop_contributor_logins": [ + "AtsushiSakai", + "Gjacquenot", + "araffin@dlr-rm", + "daniel-s-ingram@torcrobotics", + "dependabot[bot]", + "drewtu2", + "goktug97@idealworks", + "guilyx@tiiuae", + "karanchawla", + "takayuki5168@tier4" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "dlr-rm", "idealworks", - "tiiuae" + "tier4", + "tiiuae", + "torcrobotics" + ], + "_pop_contributor_orgs_raw": [ + "@DLR-RM", + "@idealworks", + "@tier4", + "@tiiuae", + "Torc Robotics" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.15, + "_pop_commit_frequency": 2.04, "_pop_updated_issues_count": 45, - "_pop_closed_issues_count": 35, - "_pop_created_since_days": 82, + "_pop_closed_issues_count": 43, + "_pop_created_since_days": 84, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, "_pop_issue_count": 45.0, - "_pop_comment_count": 24.0, + "_pop_comment_count": 14.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 950, - "_pop_score": 50.12, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 0, + "_pop_score": 40.89, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/atsushisakai/pythonrobotics/master/README.md", "_readme_localurl": "atsushisakai~pythonrobotics~README.md", @@ -4336,9 +5985,17 @@ "description": null, "_repopath": "jina-ai/jina", "_reponame": "jina", - "_stars": 16915, - "_forks": 2000, - "_watches": 183, + "_stars": 17391, + "_forks": 2035, + "_watches": 192, + "_language": "Python", + "_homepage": "https://docs.jina.ai", + "_description": "jina: \ud83d\udd2e Build multimodal AI services via cloud native technologies \u00b7 Neural Search \u00b7 Generative AI \u00b7 Cloud Native", + "_organization": "jina-ai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-02-13T00:00:00.000Z", + "_age_weeks": 157, + "_stars_per_week": 110.17, "_topics": [ "neural-search", "cloud-native", @@ -4361,37 +6018,46 @@ "fastapi", "generative-ai" ], - "_language": "Python", - "_homepage": "https://docs.jina.ai", - "_description": "jina: \ud83d\udd2e Build multimodal AI services via cloud native technologies \u00b7 Neural Search \u00b7 Generative AI \u00b7 Cloud Native", - "_organization": "jina-ai", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2020-02-13T00:00:00.000Z", - "_age_weeks": 148, - "_stars_per_week": 113.85, - "_pop_contributor_count": 161, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 163, + "_pop_contributor_logins": [ + "JoanFM@jina-ai", + "alaeddine-13", + "alexcg1@jina-ai", + "bwanglzu@jina-ai", + "cristianmtr", + "deepankarm@jina-ai", + "hanxiao@jina-ai", + "jina-bot@jina-ai", + "maximilianwerk", + "nan-wang@jinaai" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "jina-ai", "jinaai" ], + "_pop_contributor_orgs_raw": [ + "@jina-ai", + "@jina-ai ", + "Jina AI" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 23.48, - "_pop_updated_issues_count": 403, - "_pop_closed_issues_count": 374, - "_pop_created_since_days": 35, + "_pop_commit_frequency": 20.96, + "_pop_updated_issues_count": 310, + "_pop_closed_issues_count": 281, + "_pop_created_since_days": 37, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 109, - "_pop_recent_releases_estimated_tags": 127, - "_pop_recent_releases_adjusted_count": 109, - "_pop_issue_count": 403.0, - "_pop_comment_count": 797.0, + "_pop_recent_releases_count": 108, + "_pop_recent_releases_estimated_tags": 121, + "_pop_recent_releases_adjusted_count": 108, + "_pop_issue_count": 310.0, + "_pop_comment_count": 713.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 1437, - "_pop_score": 65.5, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 52.47, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jina-ai/jina/master/README.md", "_readme_localurl": "jina-ai~jina~README.md", @@ -4412,210 +6078,171 @@ ] }, { - "index": 30, - "category": "web", - "githuburl": "https://github.com/huge-success/sanic", + "index": 6, + "category": "viz", + "githuburl": "https://github.com/bokeh/bokeh", "featured": null, "links": null, "description": null, - "_repopath": "huge-success/sanic", - "_reponame": "sanic", - "_stars": 16695, - "_forks": 1484, - "_watches": 414, - "_topics": [ - "python", - "framework", - "asyncio", - "api-server", - "web", - "web-server", - "web-framework", - "asgi", - "sanic" - ], + "_repopath": "bokeh/bokeh", + "_reponame": "bokeh", + "_stars": 17253, + "_forks": 4037, + "_watches": 448, "_language": "Python", - "_homepage": "https://sanic.dev", - "_description": "sanic: Next generation Python web server/framework | Build fast. Run fast.", - "_organization": "huge-success", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2016-05-26T00:00:00.000Z", - "_age_weeks": 342, - "_stars_per_week": 48.73, - "_pop_contributor_count": 325, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "airbnb", - "packetfabric", - "pytorch" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.42, - "_pop_updated_issues_count": 121, - "_pop_closed_issues_count": 91, - "_pop_created_since_days": 80, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 14, - "_pop_recent_releases_estimated_tags": 12, - "_pop_recent_releases_adjusted_count": 14, - "_pop_issue_count": 121.0, - "_pop_comment_count": 310.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.6, - "_pop_dependents_count": 62, - "_pop_score": 59.8, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/huge-success/sanic/master/README.rst", - "_readme_localurl": "huge-success~sanic~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/huge-success/sanic/master/setup.py", - "https://raw.githubusercontent.com/huge-success/sanic/master/pyproject.toml" - ], - "_requirements_localurls": [ - "huge-success~sanic~setup.py", - "huge-success~sanic~pyproject.toml" - ] - }, - { - "index": 228, - "category": "term", - "githuburl": "https://github.com/willmcgugan/textual", - "featured": null, - "links": null, - "description": null, - "_repopath": "willmcgugan/textual", - "_reponame": "textual", - "_stars": 16593, - "_forks": 476, - "_watches": 151, + "_homepage": "https://bokeh.org", + "_description": "bokeh: Interactive Data Visualization in the browser, from Python", + "_organization": "bokeh", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-03-26T00:00:00.000Z", + "_age_weeks": 569, + "_stars_per_week": 30.31, "_topics": [ - "terminal", + "bokeh", "python", - "tui", - "rich", - "cli", - "framework" + "interactive-plots", + "javascript", + "visualization", + "plotting", + "plots", + "data-visualisation", + "notebooks", + "jupyter", + "visualisation", + "numfocus" ], - "_language": "Python", - "_homepage": "https://textual.textualize.io/", - "_description": "Textual is a TUI (Text User Interface) framework for Python inspired by modern web development.", - "_organization": "willmcgugan", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2021-04-08T00:00:00.000Z", - "_age_weeks": 88, - "_stars_per_week": 187.34, - "_pop_contributor_count": 61, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 635, + "_pop_contributor_logins": [ + "Maggie-M@continuumanalytics", + "almarklein@independentsoftwareengineer", + "bryevdv@nvidia", + "canavandl", + "canavandl-test", + "damianavila", + "fpliger", + "havocp", + "mattpap", + "paddymul@independent" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "davep.org", - "lastmileict", - "textualize" + "continuumanalytics", + "independent", + "independentsoftwareengineer", + "nvidia" + ], + "_pop_contributor_orgs_raw": [ + "Continuum Analytics, Inc.", + "Independent", + "Independent software engineer", + "Nvidia" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 50.9, - "_pop_updated_issues_count": 650, - "_pop_closed_issues_count": 542, - "_pop_created_since_days": 21, + "_pop_commit_frequency": 8.38, + "_pop_updated_issues_count": 305, + "_pop_closed_issues_count": 177, + "_pop_created_since_days": 133, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 13, + "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 650.0, - "_pop_comment_count": 957.0, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 305.0, + "_pop_comment_count": 574.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 26, - "_pop_score": 55.84, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 57.63, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/willmcgugan/textual/master/README.md", - "_readme_localurl": "willmcgugan~textual~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/bokeh/bokeh/master/README.md", + "_readme_localurl": "bokeh~bokeh~README.md", "_requirements_filenames": [ + "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/willmcgugan/textual/master/pyproject.toml" + "https://raw.githubusercontent.com/bokeh/bokeh/master/setup.py", + "https://raw.githubusercontent.com/bokeh/bokeh/master/pyproject.toml" ], "_requirements_localurls": [ - "willmcgugan~textual~pyproject.toml" + "bokeh~bokeh~setup.py", + "bokeh~bokeh~pyproject.toml" ] }, { - "index": 48, - "category": "viz", - "githuburl": "https://github.com/matplotlib/matplotlib", + "index": 144, + "category": "nlp", + "githuburl": "https://github.com/openai/gpt-2", "featured": null, "links": null, "description": null, - "_repopath": "matplotlib/matplotlib", - "_reponame": "matplotlib", - "_stars": 16560, - "_forks": 6641, - "_watches": 587, + "_repopath": "openai/gpt-2", + "_reponame": "gpt-2", + "_stars": 17116, + "_forks": 4330, + "_watches": 598, + "_language": "Python", + "_homepage": "https://openai.com/blog/better-language-models/", + "_description": "gpt-2: Code for the paper \"Language Models are Unsupervised Multitask Learners\"", + "_organization": "openai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-02-11T00:00:00.000Z", + "_age_weeks": 210, + "_stars_per_week": 81.39, "_topics": [ - "matplotlib", - "data-visualization", - "data-science", - "python", - "qt", - "wx", - "gtk", - "plotting", - "tk", - "hacktoberfest" + "paper" + ], + "_last_commit_date": "2020-12-02T00:00:00.000Z", + "_pop_contributor_count": 16, + "_pop_contributor_logins": [ + "ArmaanBhullar", + "GitHub30", + "WuTheFWasThat", + "albertwujj", + "christopherhesse@openai", + "imgntn", + "jackclarksf", + "madisonmay@indicodatasolutions", + "natemurthy", + "webproduktion01" ], - "_language": "Python", - "_homepage": "https://matplotlib.org/stable/", - "_description": "matplotlib: plotting with Python", - "_organization": "matplotlib", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2011-02-19T00:00:00.000Z", - "_age_weeks": 617, - "_stars_per_week": 26.83, - "_pop_contributor_count": 1447, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "brookhavennationallab", - "microsoft" + "indicodatasolutions", + "openai" + ], + "_pop_contributor_orgs_raw": [ + "@IndicoDataSolutions ", + "OpenAI" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 35.75, - "_pop_updated_issues_count": 2020, - "_pop_closed_issues_count": 1442, - "_pop_created_since_days": 144, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 7, - "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 2020.0, - "_pop_comment_count": 2716.0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 27, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 8.0, + "_pop_comment_count": 9.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 7290, - "_pop_score": 76.87, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 20.06, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/matplotlib/matplotlib/master/README.md", - "_readme_localurl": "matplotlib~matplotlib~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/openai/gpt-2/master/README.md", + "_readme_localurl": "openai~gpt-2~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/matplotlib/matplotlib/master/setup.py", - "https://raw.githubusercontent.com/matplotlib/matplotlib/master/pyproject.toml" + "https://raw.githubusercontent.com/openai/gpt-2/master/requirements.txt" ], "_requirements_localurls": [ - "matplotlib~matplotlib~setup.py", - "matplotlib~matplotlib~pyproject.toml" + "openai~gpt-2~requirements.txt" ] }, { @@ -4627,9 +6254,17 @@ "description": null, "_repopath": "jaidedai/easyocr", "_reponame": "EasyOCR", - "_stars": 16541, - "_forks": 2390, - "_watches": 284, + "_stars": 17067, + "_forks": 2464, + "_watches": 283, + "_language": "Python", + "_homepage": "https://www.jaided.ai", + "_description": "EasyOCR: Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc.", + "_organization": "jaidedai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-03-14T00:00:00.000Z", + "_age_weeks": 153, + "_stars_per_week": 111.13, "_topics": [ "ocr", "deep-learning", @@ -4647,37 +6282,52 @@ "easyocr", "information-retrieval" ], - "_language": "Python", - "_homepage": "https://www.jaided.ai", - "_description": "EasyOCR: Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc.", - "_organization": "jaidedai", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-18T00:00:00.000Z", - "_created_at": "2020-03-14T00:00:00.000Z", - "_age_weeks": 144, - "_stars_per_week": 114.64, - "_pop_contributor_count": 110, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_last_commit_date": "2023-01-06T00:00:00.000Z", + "_pop_contributor_count": 114, + "_pop_contributor_logins": [ + "JaidedTeam@jaidedai", + "SamSamhuns@nyu,tii", + "arkya-art@delhitechnologicaluniversity(dtu'22)", + "dakotahorstman@duratechindustries", + "danielinux7", + "jpotter@enveritas", + "rkcosmos@jaidedai", + "ronaldaug", + "sardasumit", + "visutida" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "delhitechnologicaluniversity(dtu'22)", + "duratechindustries", "enveritas", - "jaidedai" + "jaidedai", + "nyu,tii" + ], + "_pop_contributor_orgs_raw": [ + "@JaidedAI", + "Delhi Technological university (DTU'22)", + "DuraTech Industries", + "Enveritas", + "Jaided AI", + "NYU, TII" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 1.0, - "_pop_updated_issues_count": 86, - "_pop_closed_issues_count": 31, - "_pop_created_since_days": 34, - "_pop_updated_since_days": 0, + "_pop_updated_issues_count": 104, + "_pop_closed_issues_count": 38, + "_pop_created_since_days": 36, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 5, "_pop_recent_releases_estimated_tags": 7, "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 86.0, - "_pop_comment_count": 125.0, + "_pop_issue_count": 104.0, + "_pop_comment_count": 123.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 122, - "_pop_score": 49.49, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 41.53, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jaidedai/easyocr/master/README.md", "_readme_localurl": "jaidedai~easyocr~README.md", @@ -4694,6 +6344,195 @@ "jaidedai~easyocr~setup.py" ] }, + { + "index": 48, + "category": "viz", + "githuburl": "https://github.com/matplotlib/matplotlib", + "featured": null, + "links": null, + "description": null, + "_repopath": "matplotlib/matplotlib", + "_reponame": "matplotlib", + "_stars": 16895, + "_forks": 6739, + "_watches": 592, + "_language": "Python", + "_homepage": "https://matplotlib.org/stable/", + "_description": "matplotlib: plotting with Python", + "_organization": "matplotlib", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2011-02-19T00:00:00.000Z", + "_age_weeks": 626, + "_stars_per_week": 26.96, + "_topics": [ + "matplotlib", + "data-visualization", + "data-science", + "python", + "qt", + "wx", + "gtk", + "plotting", + "tk", + "hacktoberfest" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 1473, + "_pop_contributor_logins": [ + "NelleV@timc", + "QuLogic", + "anntzer", + "dstansby@ucl", + "efiring@universityofhawaii", + "jdh2358", + "jklymak@universityofvictoria", + "mdboom@microsoft", + "tacaswell@brookhavennationallab", + "timhoffm" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "brookhavennationallab", + "microsoft", + "timc", + "ucl", + "universityofhawaii", + "universityofvictoria" + ], + "_pop_contributor_orgs_raw": [ + "Brookhaven National Lab", + "Microsoft", + "TIMC", + "UCL", + "University of Hawaii", + "University of Victoria" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 40.5, + "_pop_updated_issues_count": 1299, + "_pop_closed_issues_count": 800, + "_pop_created_since_days": 146, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 1298.0, + "_pop_comment_count": 2691.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 0, + "_pop_score": 66.46, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/matplotlib/matplotlib/master/README.md", + "_readme_localurl": "matplotlib~matplotlib~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/matplotlib/matplotlib/master/setup.py", + "https://raw.githubusercontent.com/matplotlib/matplotlib/master/pyproject.toml" + ], + "_requirements_localurls": [ + "matplotlib~matplotlib~setup.py", + "matplotlib~matplotlib~pyproject.toml" + ] + }, + { + "index": 30, + "category": "web", + "githuburl": "https://github.com/huge-success/sanic", + "featured": null, + "links": null, + "description": null, + "_repopath": "huge-success/sanic", + "_reponame": "sanic", + "_stars": 16848, + "_forks": 1492, + "_watches": 413, + "_language": "Python", + "_homepage": "https://sanic.dev", + "_description": "sanic: Accelerate your web app development | Build fast. Run fast.", + "_organization": "huge-success", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-05-26T00:00:00.000Z", + "_age_weeks": 351, + "_stars_per_week": 47.88, + "_topics": [ + "python", + "framework", + "asyncio", + "api-server", + "web", + "web-server", + "web-framework", + "asgi", + "sanic" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 327, + "_pop_contributor_logins": [ + "38elements", + "Tronic", + "ahopkins@packetfabric", + "ashleysommer@csiro", + "channelcat", + "harshanarayana@ciscosystems", + "r0fls", + "seemethere@pytorch", + "sjsadowski@metameta", + "yunstanford@airbnb" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "airbnb", + "ciscosystems", + "csiro", + "metameta", + "packetfabric", + "pytorch" + ], + "_pop_contributor_orgs_raw": [ + "@Airbnb", + "@PacketFabric", + "@csiro ", + "@pytorch", + "Cisco Systems", + "Meta Meta LLC" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.33, + "_pop_updated_issues_count": 121, + "_pop_closed_issues_count": 81, + "_pop_created_since_days": 82, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 121.0, + "_pop_comment_count": 305.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 0, + "_pop_score": 54.55, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/huge-success/sanic/master/README.rst", + "_readme_localurl": "huge-success~sanic~README.rst", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/huge-success/sanic/master/setup.py", + "https://raw.githubusercontent.com/huge-success/sanic/master/pyproject.toml" + ], + "_requirements_localurls": [ + "huge-success~sanic~setup.py", + "huge-success~sanic~pyproject.toml" + ] + }, { "index": 373, "category": "ml-dl", @@ -4703,9 +6542,17 @@ "description": null, "_repopath": "pyg-team/pytorch_geometric", "_reponame": "pytorch_geometric", - "_stars": 16385, - "_forks": 2991, - "_watches": 246, + "_stars": 16809, + "_forks": 3094, + "_watches": 250, + "_language": "Python", + "_homepage": "https://pyg.org", + "_description": "pytorch_geometric: Graph Neural Network Library for PyTorch", + "_organization": "pyg-team", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-10-06T00:00:00.000Z", + "_age_weeks": 280, + "_stars_per_week": 59.88, "_topics": [ "pytorch", "geometric-deep-learning", @@ -4713,50 +6560,131 @@ "deep-learning", "graph-convolutional-networks" ], - "_language": "Python", - "_homepage": "https://pytorch-geometric.readthedocs.io/", - "_description": "pytorch_geometric: Graph Neural Network Library for PyTorch", - "_organization": "pyg-team", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2017-10-06T00:00:00.000Z", - "_age_weeks": 271, - "_stars_per_week": 60.37, - "_pop_contributor_count": 351, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 380, + "_pop_contributor_logins": [ + "EdisonLeeeee@sunyat-senuniversity", + "Padarn@myteksi", + "dongkwan-kim@uilab-githubsparcs-kaist", + "ekagra-ranjan", + "janericlenssen@max-planckinstituteforinformatics,kumo.ai", + "lgray", + "lightaime@kaustivul", + "mananshah99@kumo-ai", + "rusty1s", + "wsad1" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "kaustivul", + "kumo-ai", "max-planckinstituteforinformatics,kumo.ai", + "myteksi", + "sunyat-senuniversity", "uilab-githubsparcs-kaist" ], + "_pop_contributor_orgs_raw": [ + "@kumo-ai ", + "@myteksi", + "@uilab-github @sparcs-kaist ", + "KAUST IVUL", + "Max-Planck Institute for Informatics, Kumo.ai", + "Sun Yat-sen University" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 16.75, - "_pop_updated_issues_count": 996, - "_pop_closed_issues_count": 819, - "_pop_created_since_days": 63, + "_pop_commit_frequency": 20.0, + "_pop_updated_issues_count": 594, + "_pop_closed_issues_count": 503, + "_pop_created_since_days": 65, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 4, + "_pop_recent_releases_count": 3, "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 995.0, - "_pop_comment_count": 1179.0, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 594.0, + "_pop_comment_count": 1001.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 47, - "_pop_score": 59.25, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 56.82, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pyg-team/pytorch_geometric/master/README.md", "_readme_localurl": "pyg-team~pytorch_geometric~README.md", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pyg-team/pytorch_geometric/master/setup.py" + "https://raw.githubusercontent.com/pyg-team/pytorch_geometric/master/setup.py", + "https://raw.githubusercontent.com/pyg-team/pytorch_geometric/master/pyproject.toml" ], "_requirements_localurls": [ - "pyg-team~pytorch_geometric~setup.py" + "pyg-team~pytorch_geometric~setup.py", + "pyg-team~pytorch_geometric~pyproject.toml" ] }, + { + "index": 426, + "category": "study", + "githuburl": "https://github.com/fchollet/deep-learning-with-python-notebooks", + "featured": null, + "links": null, + "description": null, + "_repopath": "fchollet/deep-learning-with-python-notebooks", + "_reponame": "deep-learning-with-python-notebooks", + "_stars": 16456, + "_forks": 8022, + "_watches": 641, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "deep-learning-with-python-notebooks: Jupyter notebooks for the code samples of the book \"Deep Learning with Python\"", + "_organization": "fchollet", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-09-05T00:00:00.000Z", + "_age_weeks": 285, + "_stars_per_week": 57.71, + "_topics": [], + "_last_commit_date": "2023-02-13T00:00:00.000Z", + "_pop_contributor_count": 9, + "_pop_contributor_logins": [ + "DerekChia", + "Kuz-man", + "bfaissal@moroccojug", + "fchollet", + "iamaziz", + "rama100", + "var-nan" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "moroccojug" + ], + "_pop_contributor_orgs_raw": [ + "MoroccoJUG" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 66, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 10.0, + "_pop_comment_count": 7.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 25.38, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/fchollet/deep-learning-with-python-notebooks/master/README.md", + "_readme_localurl": "fchollet~deep-learning-with-python-notebooks~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 102, "category": "ml-ops", @@ -4766,9 +6694,17 @@ "description": null, "_repopath": "spotify/luigi", "_reponame": "luigi", - "_stars": 16191, - "_forks": 2352, - "_watches": 486, + "_stars": 16333, + "_forks": 2356, + "_watches": 483, + "_language": "Python", + "_homepage": null, + "_description": "Luigi is a Python module that helps you build complex pipelines of batch jobs. It handles dependency resolution, workflow management, visualization etc. It also comes with Hadoop support built in. ", + "_organization": "spotify", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-09-20T00:00:00.000Z", + "_age_weeks": 543, + "_stars_per_week": 30.03, "_topics": [ "python", "luigi", @@ -4776,38 +6712,51 @@ "scheduling", "hadoop" ], - "_language": "Python", - "_homepage": null, - "_description": "Luigi is a Python module that helps you build complex pipelines of batch jobs. It handles dependency resolution, workflow management, visualization etc. It also comes with Hadoop support built in. ", - "_organization": "spotify", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", - "_created_at": "2012-09-20T00:00:00.000Z", - "_age_weeks": 534, - "_stars_per_week": 30.29, - "_pop_contributor_count": 596, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-09T00:00:00.000Z", + "_pop_contributor_count": 597, + "_pop_contributor_logins": [ + "Tarrasch@google", + "daveFNbuck@houzz", + "dlstadther@q2ebanking", + "erikbern", + "freider@modallabs", + "gpoulin", + "honnix@spotify", + "themalkolm", + "ulzha", + "vitling" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "google", "houzz", - "modallabs" + "modallabs", + "q2ebanking", + "spotify" + ], + "_pop_contributor_orgs_raw": [ + "@spotify ", + "Google", + "Houzz", + "Modal Labs", + "Q2ebanking" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.81, - "_pop_updated_issues_count": 21, - "_pop_closed_issues_count": 10, - "_pop_created_since_days": 125, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 2, + "_pop_commit_frequency": 0.73, + "_pop_updated_issues_count": 26, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 127, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 21.0, - "_pop_comment_count": 32.0, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 26.0, + "_pop_comment_count": 48.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 387, - "_pop_score": 55.86, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 50.14, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/spotify/luigi/master/README.rst", "_readme_localurl": "spotify~luigi~README.rst", @@ -4822,110 +6771,160 @@ ] }, { - "index": 426, - "category": "study", - "githuburl": "https://github.com/fchollet/deep-learning-with-python-notebooks", + "index": 328, + "category": "security", + "githuburl": "https://github.com/aquasecurity/trivy", "featured": null, "links": null, "description": null, - "_repopath": "fchollet/deep-learning-with-python-notebooks", - "_reponame": "deep-learning-with-python-notebooks", - "_stars": 16168, - "_forks": 7914, - "_watches": 647, - "_topics": [], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "deep-learning-with-python-notebooks: Jupyter notebooks for the code samples of the book \"Deep Learning with Python\"", - "_organization": "fchollet", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-02-10T00:00:00.000Z", - "_created_at": "2017-09-05T00:00:00.000Z", - "_age_weeks": 275, - "_stars_per_week": 58.61, - "_pop_contributor_count": 6, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_repopath": "aquasecurity/trivy", + "_reponame": "trivy", + "_stars": 16289, + "_forks": 1582, + "_watches": 154, + "_language": "Go", + "_homepage": "https://aquasecurity.github.io/trivy", + "_description": "trivy: Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more", + "_organization": "aquasecurity", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-04-11T00:00:00.000Z", + "_age_weeks": 201, + "_stars_per_week": 80.7, + "_topics": [ + "security", + "security-tools", + "docker", + "containers", + "vulnerability-scanners", + "vulnerability-detection", + "vulnerability", + "golang", + "go", + "kubernetes", + "hacktoberfest", + "devsecops", + "misconfiguration", + "infrastructure-as-code", + "iac" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 283, + "_pop_contributor_logins": [ + "DmitriyLewen", + "afdesk", + "dependabot[bot]", + "josedonizetti", + "knqyf263", + "liamg@ghostsecurity", + "masahiro331", + "owenrumney@ghostsecurity", + "simar7", + "tomoyamachi@goodwithtech" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "ghostsecurity", + "goodwithtech" + ], + "_pop_contributor_orgs_raw": [ + "@ghostsecurity", + "@ghostsecurity ", + "@goodwithtech " + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.02, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 64, - "_pop_updated_since_days": 10, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 4.0, - "_pop_comment_count": 5.0, + "_pop_commit_frequency": 15.79, + "_pop_updated_issues_count": 609, + "_pop_closed_issues_count": 410, + "_pop_created_since_days": 47, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 38, + "_pop_recent_releases_estimated_tags": 28, + "_pop_recent_releases_adjusted_count": 38, + "_pop_issue_count": 609.0, + "_pop_comment_count": 1227.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 2, - "_pop_score": 16.67, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 54.43, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/fchollet/deep-learning-with-python-notebooks/master/README.md", - "_readme_localurl": "fchollet~deep-learning-with-python-notebooks~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/aquasecurity/trivy/master/README.md", + "_readme_localurl": "aquasecurity~trivy~README.md", "_requirements_filenames": [], "_requirements_giturls": [], "_requirements_localurls": [] }, { - "index": 144, - "category": "nlp", - "githuburl": "https://github.com/openai/gpt-2", + "index": 834, + "category": "util", + "githuburl": "https://github.com/micropython/micropython", "featured": null, "links": null, "description": null, - "_repopath": "openai/gpt-2", - "_reponame": "gpt-2", - "_stars": 15919, - "_forks": 4021, - "_watches": 584, + "_repopath": "micropython/micropython", + "_reponame": "micropython", + "_stars": 15968, + "_forks": 6198, + "_watches": 733, + "_language": "C", + "_homepage": "https://micropython.org", + "_description": "MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems", + "_organization": "micropython", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2013-12-20T00:00:00.000Z", + "_age_weeks": 478, + "_stars_per_week": 33.36, "_topics": [ - "paper" + "micropython", + "python", + "embedded", + "microcontroller" ], - "_language": "Python", - "_homepage": "https://openai.com/blog/better-language-models/", - "_description": "gpt-2: Code for the paper \"Language Models are Unsupervised Multitask Learners\"", - "_organization": "openai", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2020-12-02T00:00:00.000Z", - "_created_at": "2019-02-11T00:00:00.000Z", - "_age_weeks": 201, - "_stars_per_week": 79.2, - "_pop_contributor_count": 16, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 555, + "_pop_contributor_logins": [ + "dhylands", + "dlech", + "dpgeorge", + "glennrub", + "iabdalkader@openmv", + "jimmo@micropython", + "pfalcon", + "pi-anl", + "robert-hh", + "stinos" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "openai" + "micropython", + "openmv" + ], + "_pop_contributor_orgs_raw": [ + "@micropython", + "OpenMV" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 5, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 47, - "_pop_updated_since_days": 25, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 5.0, - "_pop_comment_count": 3.0, + "_pop_commit_frequency": 23.6, + "_pop_updated_issues_count": 441, + "_pop_closed_issues_count": 275, + "_pop_created_since_days": 112, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 441.0, + "_pop_comment_count": 1242.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 365, - "_pop_score": 27.03, + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 0, + "_pop_score": 54.89, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/openai/gpt-2/master/README.md", - "_readme_localurl": "openai~gpt-2~README.md", - "_requirements_filenames": [ - "requirements.txt" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/openai/gpt-2/master/requirements.txt" - ], - "_requirements_localurls": [ - "openai~gpt-2~requirements.txt" - ] + "_readme_giturl": "https://raw.githubusercontent.com/micropython/micropython/master/README.md", + "_readme_localurl": "micropython~micropython~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { "index": 109, @@ -4936,41 +6935,60 @@ "description": null, "_repopath": "binux/pyspider", "_reponame": "pyspider", - "_stars": 15686, - "_forks": 3660, - "_watches": 906, - "_topics": [ - "python", - "crawler" - ], + "_stars": 15742, + "_forks": 3669, + "_watches": 905, "_language": "Python", "_homepage": "http://docs.pyspider.org/", "_description": "pyspider: A Powerful Spider(Web Crawler) System in Python.", "_organization": "binux", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2020-08-02T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2014-02-21T00:00:00.000Z", - "_age_weeks": 460, - "_stars_per_week": 34.07, + "_age_weeks": 469, + "_stars_per_week": 33.51, + "_topics": [ + "python", + "crawler" + ], + "_last_commit_date": "2020-08-02T00:00:00.000Z", "_pop_contributor_count": 62, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_pop_contributor_logins": [ + "binux", + "eromoe", + "farmercode", + "ihipop", + "jtwaleson@easeebv", + "lushl9301@sun", + "machinewu", + "tiancheng91", + "tunstek", + "xyb" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "easeebv", + "sun" + ], + "_pop_contributor_orgs_raw": [ + "Easee BV", + "SUN" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 8, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 107, - "_pop_updated_since_days": 29, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 110, + "_pop_updated_since_days": 31, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 8.0, - "_pop_comment_count": 5.0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 3.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 243, - "_pop_score": 29.95, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 25.02, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/binux/pyspider/master/README.md", "_readme_localurl": "binux~pyspider~README.md", @@ -4987,62 +7005,6 @@ "binux~pyspider~setup.py" ] }, - { - "index": 834, - "category": "util", - "githuburl": "https://github.com/micropython/micropython", - "featured": null, - "links": null, - "description": null, - "_repopath": "micropython/micropython", - "_reponame": "micropython", - "_stars": 15625, - "_forks": 6002, - "_watches": 731, - "_topics": [ - "micropython", - "python", - "embedded", - "microcontroller" - ], - "_language": "C", - "_homepage": "https://micropython.org", - "_description": "MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems", - "_organization": "micropython", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2013-12-20T00:00:00.000Z", - "_age_weeks": 469, - "_stars_per_week": 33.29, - "_pop_contributor_count": 536, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "micropython", - "openmv" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 25.54, - "_pop_updated_issues_count": 524, - "_pop_closed_issues_count": 330, - "_pop_created_since_days": 110, - "_pop_updated_since_days": 7, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 524.0, - "_pop_comment_count": 1537.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.9, - "_pop_dependents_count": 17483, - "_pop_score": 68.38, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/micropython/micropython/master/README.md", - "_readme_localurl": "micropython~micropython~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 873, "category": "util", @@ -5052,9 +7014,17 @@ "description": null, "_repopath": "ipython/ipython", "_reponame": "ipython", - "_stars": 15614, - "_forks": 4403, - "_watches": 775, + "_stars": 15699, + "_forks": 4414, + "_watches": 769, + "_language": "Python", + "_homepage": "https://ipython.readthedocs.org", + "_description": "ipython: Official repository for IPython itself. Other repos in the IPython organization contain things like the website, documentation builds, etc.", + "_organization": "ipython", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2010-05-10T00:00:00.000Z", + "_age_weeks": 667, + "_stars_per_week": 23.53, "_topics": [ "ipython", "jupyter", @@ -5065,39 +7035,56 @@ "closember", "hacktoberfest" ], - "_language": "Python", - "_homepage": "https://ipython.readthedocs.org", - "_description": "ipython: Official repository for IPython itself. Other repos in the IPython organization contain things like the website, documentation builds, etc.", - "_organization": "ipython", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", - "_created_at": "2010-05-10T00:00:00.000Z", - "_age_weeks": 658, - "_stars_per_week": 23.73, - "_pop_contributor_count": 925, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 937, + "_pop_contributor_logins": [ + "Carreau@quansight-labs", + "bfroehle@google", + "ellisonbg@amazonwebservices", + "fperez@universityofcalifornia,berkeley.", + "ivanov", + "jasongrout@databricks", + "jdfreder@google", + "minrk@simularesearchlaboratory", + "takluyver", + "vivainio@basware" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "amazonwebservices", + "basware", + "databricks", "google", "quansight-labs", - "simularesearchlaboratory" + "simularesearchlaboratory", + "universityofcalifornia,berkeley." + ], + "_pop_contributor_orgs_raw": [ + "@Quansight-Labs", + "@databricks", + "@google ", + "Amazon Web Services", + "Basware", + "Google", + "Simula Research Laboratory", + "University of California, Berkeley." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.67, - "_pop_updated_issues_count": 183, - "_pop_closed_issues_count": 91, - "_pop_created_since_days": 154, + "_pop_commit_frequency": 6.71, + "_pop_updated_issues_count": 173, + "_pop_closed_issues_count": 96, + "_pop_created_since_days": 156, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 12, "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 183.0, - "_pop_comment_count": 194.0, + "_pop_issue_count": 173.0, + "_pop_comment_count": 271.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 14264, - "_pop_score": 73.37, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 59.71, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/ipython/ipython/master/README.rst", "_readme_localurl": "ipython~ipython~README.rst", @@ -5123,9 +7110,17 @@ "description": null, "_repopath": "cool-rr/pysnooper", "_reponame": "PySnooper", - "_stars": 15499, - "_forks": 932, - "_watches": 234, + "_stars": 15686, + "_forks": 939, + "_watches": 235, + "_language": "Python", + "_homepage": "", + "_description": "PySnooper: Never use print for debugging again", + "_organization": "cool-rr", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-04-18T00:00:00.000Z", + "_age_weeks": 200, + "_stars_per_week": 78.1, "_topics": [ "python", "debug", @@ -5133,51 +7128,65 @@ "introspection", "logging" ], - "_language": "Python", - "_homepage": "", - "_description": "PySnooper: Never use print for debugging again", - "_organization": "cool-rr", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-11T00:00:00.000Z", - "_created_at": "2019-04-18T00:00:00.000Z", - "_age_weeks": 191, - "_stars_per_week": 80.9, + "_last_commit_date": "2023-01-03T00:00:00.000Z", "_pop_contributor_count": 27, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "alexbers", + "alexmojaki", + "bittner@painless-software", + "cool-RR", + "czietz", + "frenzymadness@redhat", + "iory@japan", + "pikez", + "pohmelie@aratar.tech", + "zasdfgbnm@nvidia" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "aratar.tech", "japan", - "nvidia" + "nvidia", + "painless-software", + "redhat" + ], + "_pop_contributor_orgs_raw": [ + "@painless-software ", + "Japan", + "NVIDIA", + "Red Hat", + "aratar.tech" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.12, - "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 45, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 47, + "_pop_updated_since_days": 3, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 3.0, - "_pop_comment_count": 5.0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 5.0, + "_pop_comment_count": 12.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 10, - "_pop_score": 37.33, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 0, + "_pop_score": 34.32, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/cool-rr/pysnooper/master/README.md", "_readme_localurl": "cool-rr~pysnooper~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ "https://raw.githubusercontent.com/cool-rr/pysnooper/master/requirements.txt", - "https://raw.githubusercontent.com/cool-rr/pysnooper/master/setup.py" + "https://raw.githubusercontent.com/cool-rr/pysnooper/master/pyproject.toml" ], "_requirements_localurls": [ "cool-rr~pysnooper~requirements.txt", - "cool-rr~pysnooper~setup.py" + "cool-rr~pysnooper~pyproject.toml" ] }, { @@ -5189,43 +7198,61 @@ "description": null, "_repopath": "rasbt/deeplearning-models", "_reponame": "deeplearning-models", - "_stars": 15476, - "_forks": 3828, - "_watches": 598, - "_topics": [], + "_stars": 15610, + "_forks": 3846, + "_watches": 594, "_language": "Jupyter Notebook", "_homepage": null, "_description": "deeplearning-models: A collection of various deep learning architectures, models, and tips", "_organization": "rasbt", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-16T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2019-06-05T00:00:00.000Z", - "_age_weeks": 184, - "_stars_per_week": 83.78, + "_age_weeks": 194, + "_stars_per_week": 80.46, + "_topics": [], + "_last_commit_date": "2023-02-16T00:00:00.000Z", "_pop_contributor_count": 11, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "AdilZouitine@irtsaint-exup\u00e9ry", + "AlexZhou1995@alibaba-inc&nanjinguniversity", + "Vijayabhaskar96", + "imatiach-msft@microsoft", + "javierlorenzod", + "niklaskeerl", + "optixlab@intelcorp.", + "rasbt@lightning-ai,universityofwisconsin-madison" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "alibaba-inc&nanjinguniversity", + "intelcorp.", "irtsaint-exup\u00e9ry", "lightning-ai,universityofwisconsin-madison", "microsoft" ], + "_pop_contributor_orgs_raw": [ + "@Lightning-AI , University of Wisconsin-Madison", + "Alibaba-inc & Nanjing University", + "IRT Saint-Exup\u00e9ry", + "Intel Corp.", + "Microsoft" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.4, - "_pop_updated_issues_count": 4, + "_pop_commit_frequency": 0.92, + "_pop_updated_issues_count": 3, "_pop_closed_issues_count": 3, - "_pop_created_since_days": 43, - "_pop_updated_since_days": 1, + "_pop_created_since_days": 45, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 4.0, - "_pop_comment_count": 1.0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.2, - "_pop_dependents_count": 49, - "_pop_score": 33.69, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 30.32, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/rasbt/deeplearning-models/master/README.md", "_readme_localurl": "rasbt~deeplearning-models~README.md", @@ -5242,9 +7269,17 @@ "description": null, "_repopath": "kivy/kivy", "_reponame": "kivy", - "_stars": 15305, - "_forks": 2966, - "_watches": 619, + "_stars": 15534, + "_forks": 2990, + "_watches": 620, + "_language": "Python", + "_homepage": "https://kivy.org", + "_description": "kivy: Open source UI framework written in Python, running on Windows, Linux, macOS, Android and iOS", + "_organization": "kivy", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2010-11-03T00:00:00.000Z", + "_age_weeks": 642, + "_stars_per_week": 24.2, "_topics": [ "python", "ui", @@ -5256,40 +7291,53 @@ "app", "kivy" ], - "_language": "Python", - "_homepage": "https://kivy.org", - "_description": "kivy: Open source UI framework written in Python, running on Windows, Linux, macOS, Android and iOS", - "_organization": "kivy", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2010-11-03T00:00:00.000Z", - "_age_weeks": 632, - "_stars_per_week": 24.19, - "_pop_contributor_count": 577, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 580, + "_pop_contributor_logins": [ + "KeyWeeUsr", + "Zen-CODE@zencode", + "akshayaurora@freelance", + "dessant", + "geojeff", + "inclement", + "kived@ijettech-dev", + "matham@cornelluniversity", + "tito@meltingrocks", + "tshirtman@imc.com" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "cornelluniversity", "freelance", + "ijettech-dev", "imc.com", "meltingrocks", "zencode" ], + "_pop_contributor_orgs_raw": [ + "@ijettech-dev", + "Cornell University", + "Freelance", + "Melting Rocks", + "ZenCODE", + "imc.com" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.21, - "_pop_updated_issues_count": 117, - "_pop_closed_issues_count": 65, - "_pop_created_since_days": 148, + "_pop_commit_frequency": 1.73, + "_pop_updated_issues_count": 142, + "_pop_closed_issues_count": 81, + "_pop_created_since_days": 150, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 117.0, - "_pop_comment_count": 187.0, + "_pop_issue_count": 142.0, + "_pop_comment_count": 236.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 6614, - "_pop_score": 67.36, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 52.53, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/kivy/kivy/master/README.md", "_readme_localurl": "kivy~kivy~README.md", @@ -5307,177 +7355,149 @@ ] }, { - "index": 469, - "category": "util", - "githuburl": "https://github.com/alievk/avatarify-python", - "featured": null, + "index": 19, + "category": "time-series", + "githuburl": "https://github.com/facebook/prophet", + "featured": 1.0, "links": null, "description": null, - "_repopath": "alievk/avatarify-python", - "_reponame": "avatarify-python", - "_stars": 15297, - "_forks": 2357, - "_watches": 306, - "_topics": [], + "_repopath": "facebook/prophet", + "_reponame": "prophet", + "_stars": 15521, + "_forks": 4370, + "_watches": 422, "_language": "Python", - "_homepage": "", - "_description": "avatarify-python: Avatars for Zoom, Skype and other video-conferencing apps.", - "_organization": "alievk", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-11T00:00:00.000Z", - "_created_at": "2020-04-06T00:00:00.000Z", - "_age_weeks": 141, - "_stars_per_week": 108.49, - "_pop_contributor_count": 22, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "entrepreneur", - "occrp,the-markup", - "universityofhildesheim" + "_homepage": "https://facebook.github.io/prophet", + "_description": "prophet: Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth.", + "_organization": "facebook", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-11-16T00:00:00.000Z", + "_age_weeks": 327, + "_stars_per_week": 47.46, + "_topics": [ + "forecasting", + "r", + "python" ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.02, - "_pop_updated_issues_count": 58, - "_pop_closed_issues_count": 15, - "_pop_created_since_days": 33, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 58.0, - "_pop_comment_count": 174.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.0, - "_pop_dependents_count": 0, - "_pop_score": 34.3, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/alievk/avatarify-python/master/README.md", - "_readme_localurl": "alievk~avatarify-python~README.md", - "_requirements_filenames": [ - "requirements.txt" + "_last_commit_date": "2023-01-31T00:00:00.000Z", + "_pop_contributor_count": 163, + "_pop_contributor_logins": [ + "Igevorse", + "baogorek@spencerhealthsolutions", + "bletham", + "dependabot[bot]", + "joseangel-sc@pinterest", + "ryankarlos", + "seanjtaylor", + "seriousran@ncsoftaivisionlabgenerationteam", + "sss-ng", + "tcuongd@canva" ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/alievk/avatarify-python/master/requirements.txt" + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "canva", + "ncsoftaivisionlabgenerationteam", + "pinterest", + "spencerhealthsolutions" ], - "_requirements_localurls": [ - "alievk~avatarify-python~requirements.txt" - ] - }, - { - "index": 328, - "category": "security", - "githuburl": "https://github.com/aquasecurity/trivy", - "featured": null, - "links": null, - "description": null, - "_repopath": "aquasecurity/trivy", - "_reponame": "trivy", - "_stars": 15287, - "_forks": 1475, - "_watches": 145, - "_topics": [ - "security", - "security-tools", - "docker", - "containers", - "vulnerability-scanners", - "vulnerability-detection", - "vulnerability", - "golang", - "go", - "kubernetes", - "hacktoberfest", - "devsecops", - "misconfiguration", - "infrastructure-as-code", - "iac" + "_pop_contributor_orgs_raw": [ + "@Canva ", + "@NCSoft AI Vision Lab Generation Team", + "Pinterest", + "spencer Health Solutions, Inc." ], - "_language": "Go", - "_homepage": "https://trivy.dev", - "_description": "trivy: Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more", - "_organization": "aquasecurity", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2019-04-11T00:00:00.000Z", - "_age_weeks": 192, - "_stars_per_week": 79.38, - "_pop_contributor_count": 268, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 15.67, - "_pop_updated_issues_count": 547, - "_pop_closed_issues_count": 334, - "_pop_created_since_days": 45, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 35, - "_pop_recent_releases_estimated_tags": 28, - "_pop_recent_releases_adjusted_count": 35, - "_pop_issue_count": 547.0, - "_pop_comment_count": 947.0, + "_pop_commit_frequency": 1.04, + "_pop_updated_issues_count": 277, + "_pop_closed_issues_count": 148, + "_pop_created_since_days": 76, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 277.0, + "_pop_comment_count": 169.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 2726, - "_pop_score": 62.29, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 43.97, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/aquasecurity/trivy/master/README.md", - "_readme_localurl": "aquasecurity~trivy~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/facebook/prophet/master/README.md", + "_readme_localurl": "facebook~prophet~README.md", "_requirements_filenames": [], "_requirements_giturls": [], "_requirements_localurls": [] }, { - "index": 19, - "category": "time-series", - "githuburl": "https://github.com/facebook/prophet", - "featured": 1.0, + "index": 604, + "category": "web", + "githuburl": "https://github.com/pyscript/pyscript", + "featured": null, "links": null, "description": null, - "_repopath": "facebook/prophet", - "_reponame": "prophet", - "_stars": 15280, - "_forks": 4341, - "_watches": 426, + "_repopath": "pyscript/pyscript", + "_reponame": "pyscript", + "_stars": 15466, + "_forks": 1160, + "_watches": 176, + "_language": "Python", + "_homepage": "https://github.com/pyscript/pyscript/discussions", + "_description": "pyscript: Home Page: https://pyscript.net Examples: https://pyscript.net/examples", + "_organization": "pyscript", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-02-21T00:00:00.000Z", + "_age_weeks": 52, + "_stars_per_week": 295.8, "_topics": [ - "forecasting", - "r", - "python" + "python", + "html", + "javascript", + "wasm" ], - "_language": "Python", - "_homepage": "https://facebook.github.io/prophet", - "_description": "prophet: Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth.", - "_organization": "facebook", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-09-21T00:00:00.000Z", - "_created_at": "2016-11-16T00:00:00.000Z", - "_age_weeks": 317, - "_stars_per_week": 48.09, - "_pop_contributor_count": 158, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 98, + "_pop_contributor_logins": [ + "FabioRosado@anaconda", + "JeffersGlass", + "antocuni", + "fpliger", + "madhur-tandon", + "philippjfr@anaconda", + "pre-commit-ci[bot]", + "pww217", + "tedpatrick@pyscriptanaconda", + "woxtu" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "canva" + "anaconda", + "pyscriptanaconda" + ], + "_pop_contributor_orgs_raw": [ + "@pyscript @anaconda", + "Anaconda", + "Anaconda Inc." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.88, - "_pop_updated_issues_count": 88, - "_pop_closed_issues_count": 26, - "_pop_created_since_days": 74, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 88.0, - "_pop_comment_count": 95.0, + "_pop_commit_frequency": 12.98, + "_pop_updated_issues_count": 272, + "_pop_closed_issues_count": 216, + "_pop_created_since_days": 12, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 272.0, + "_pop_comment_count": 435.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 1139, - "_pop_score": 48.78, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 43.38, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/facebook/prophet/master/README.md", - "_readme_localurl": "facebook~prophet~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pyscript/pyscript/master/README.md", + "_readme_localurl": "pyscript~pyscript~README.md", "_requirements_filenames": [], "_requirements_giturls": [], "_requirements_localurls": [] @@ -5491,9 +7511,17 @@ "description": null, "_repopath": "joke2k/faker", "_reponame": "faker", - "_stars": 15170, - "_forks": 1708, - "_watches": 220, + "_stars": 15410, + "_forks": 1726, + "_watches": 221, + "_language": "Python", + "_homepage": "https://faker.readthedocs.io", + "_description": "Faker is a Python package that generates fake data for you.", + "_organization": "joke2k", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-11-12T00:00:00.000Z", + "_age_weeks": 536, + "_stars_per_week": 28.73, "_topics": [ "python", "fake", @@ -5503,39 +7531,55 @@ "test-data", "test-data-generator" ], - "_language": "Python", - "_homepage": "http://faker.rtfd.org", - "_description": "Faker is a Python package that generates fake data for you.", - "_organization": "joke2k", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", - "_created_at": "2012-11-12T00:00:00.000Z", - "_age_weeks": 527, - "_stars_per_week": 28.79, - "_pop_contributor_count": 489, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 506, + "_pop_contributor_logins": [ + "Newman101", + "chrisvoncsefalvay@starschema", + "fcurella@minted", + "grantbachman@google", + "illia-v@sailoboats", + "jdufresne@pioneervalleybooks", + "joke2k@selfemployed", + "malefice", + "mdxs@mdxs", + "reverbc" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "google", "mdxs", "minted", + "pioneervalleybooks", "sailoboats", - "selfemployed" + "selfemployed", + "starschema" + ], + "_pop_contributor_orgs_raw": [ + "@minted", + "@sailoboats", + "Google", + "MDXS", + "Pioneer Valley Books", + "Self Employed", + "Starschema" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.06, - "_pop_updated_issues_count": 76, - "_pop_closed_issues_count": 51, - "_pop_created_since_days": 123, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 55, - "_pop_recent_releases_estimated_tags": 26, - "_pop_recent_releases_adjusted_count": 55, - "_pop_issue_count": 76.0, - "_pop_comment_count": 136.0, + "_pop_commit_frequency": 6.81, + "_pop_updated_issues_count": 70, + "_pop_closed_issues_count": 54, + "_pop_created_since_days": 125, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 56, + "_pop_recent_releases_estimated_tags": 27, + "_pop_recent_releases_adjusted_count": 56, + "_pop_issue_count": 70.0, + "_pop_comment_count": 94.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 6153, - "_pop_score": 69.77, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 57.8, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/joke2k/faker/master/README.rst", "_readme_localurl": "joke2k~faker~README.rst", @@ -5550,58 +7594,81 @@ ] }, { - "index": 604, - "category": "web", - "githuburl": "https://github.com/pyscript/pyscript", + "index": 469, + "category": "util", + "githuburl": "https://github.com/alievk/avatarify-python", "featured": null, "links": null, "description": null, - "_repopath": "pyscript/pyscript", - "_reponame": "pyscript", - "_stars": 15152, - "_forks": 1110, - "_watches": 180, - "_topics": [ - "python", - "html", - "javascript" - ], + "_repopath": "alievk/avatarify-python", + "_reponame": "avatarify-python", + "_stars": 15401, + "_forks": 2399, + "_watches": 301, "_language": "Python", - "_homepage": "https://community.anaconda.cloud/c/tech-topics/pyscript", - "_description": "pyscript: Home Page: https://pyscript.net Examples: https://pyscript.net/examples", - "_organization": "pyscript", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2022-02-21T00:00:00.000Z", - "_age_weeks": 43, - "_stars_per_week": 352.37, - "_pop_contributor_count": 95, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_homepage": "", + "_description": "avatarify-python: Avatars for Zoom, Skype and other video-conferencing apps.", + "_organization": "alievk", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-04-06T00:00:00.000Z", + "_age_weeks": 150, + "_stars_per_week": 102.48, + "_topics": [], + "_last_commit_date": "2022-11-11T00:00:00.000Z", + "_pop_contributor_count": 23, + "_pop_contributor_logins": [ + "645775992", + "JohanAR", + "MartinDelille@lylomediagroup", + "alievk", + "christianll9@universityofhildesheim", + "giorgiop", + "iamphi", + "karfly@entrepreneur", + "mikaelhg", + "mynameisfiber@digital-witness-lab" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "anaconda" + "digital-witness-lab", + "entrepreneur", + "lylomediagroup", + "universityofhildesheim" + ], + "_pop_contributor_orgs_raw": [ + "@digital-witness-lab ", + "Entrepreneur", + "Lylo Media Group", + "University of Hildesheim" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 12.27, - "_pop_updated_issues_count": 497, - "_pop_closed_issues_count": 367, - "_pop_created_since_days": 10, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 497.0, - "_pop_comment_count": 1009.0, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 65, + "_pop_closed_issues_count": 16, + "_pop_created_since_days": 35, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 65.0, + "_pop_comment_count": 245.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 34, - "_pop_score": 48.57, + "_pop_comment_frequency": 3.8, + "_pop_dependents_count": 0, + "_pop_score": 34.84, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pyscript/pyscript/master/README.md", - "_readme_localurl": "pyscript~pyscript~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/alievk/avatarify-python/master/README.md", + "_readme_localurl": "alievk~avatarify-python~README.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/alievk/avatarify-python/master/requirements.txt" + ], + "_requirements_localurls": [ + "alievk~avatarify-python~requirements.txt" + ] }, { "index": 137, @@ -5612,9 +7679,17 @@ "description": null, "_repopath": "huggingface/datasets", "_reponame": "datasets", - "_stars": 14923, - "_forks": 1942, - "_watches": 260, + "_stars": 15276, + "_forks": 2025, + "_watches": 262, + "_language": "Python", + "_homepage": "https://huggingface.co/docs/datasets", + "_description": "datasets: \ud83e\udd17 The largest hub of ready-to-use datasets for ML models with fast, easy-to-use and efficient data manipulation tools", + "_organization": "huggingface", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-03-26T00:00:00.000Z", + "_age_weeks": 151, + "_stars_per_week": 100.59, "_topics": [ "nlp", "datasets", @@ -5631,37 +7706,50 @@ "speech", "hacktoberfest" ], - "_language": "Python", - "_homepage": "https://huggingface.co/docs/datasets", - "_description": "datasets: \ud83e\udd17 The largest hub of ready-to-use datasets for ML models with fast, easy-to-use and efficient data manipulation tools", - "_organization": "huggingface", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2020-03-26T00:00:00.000Z", - "_age_weeks": 142, - "_stars_per_week": 104.67, - "_pop_contributor_count": 474, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 493, + "_pop_contributor_logins": [ + "abhishekkrthakur@huggingface", + "albertvillanova@huggingfaceaiinnova", + "lewtun@huggingface", + "lhoestq@huggingface", + "mariosasko@huggingface", + "patrickvonplaten", + "sashavor@huggingface", + "stevhliu@huggingface", + "thomwolf@huggingface", + "yjernite@cims,nyu" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "cims,nyu", "huggingface", "huggingfaceaiinnova" ], + "_pop_contributor_orgs_raw": [ + "@huggingface", + "@huggingface ", + "@huggingface @Aiinnova", + "CIMS, NYU", + "Hugging Face", + "HuggingFace" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 18.37, - "_pop_updated_issues_count": 643, - "_pop_closed_issues_count": 505, - "_pop_created_since_days": 33, + "_pop_commit_frequency": 17.19, + "_pop_updated_issues_count": 368, + "_pop_closed_issues_count": 265, + "_pop_created_since_days": 35, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 23, - "_pop_recent_releases_estimated_tags": 25, - "_pop_recent_releases_adjusted_count": 23, - "_pop_issue_count": 643.0, - "_pop_comment_count": 1331.0, + "_pop_recent_releases_count": 20, + "_pop_recent_releases_estimated_tags": 24, + "_pop_recent_releases_adjusted_count": 20, + "_pop_issue_count": 368.0, + "_pop_comment_count": 1116.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 2106, - "_pop_score": 69.08, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 0, + "_pop_score": 56.92, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/huggingface/datasets/master/README.md", "_readme_localurl": "huggingface~datasets~README.md", @@ -5687,9 +7775,17 @@ "description": null, "_repopath": "python/mypy", "_reponame": "mypy", - "_stars": 14361, - "_forks": 2385, - "_watches": 223, + "_stars": 14873, + "_forks": 2450, + "_watches": 228, + "_language": "Python", + "_homepage": "https://www.mypy-lang.org/", + "_description": "mypy: Optional static typing for Python", + "_organization": "python", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-12-07T00:00:00.000Z", + "_age_weeks": 532, + "_stars_per_week": 27.92, "_topics": [ "python", "types", @@ -5697,38 +7793,49 @@ "typechecker", "linter" ], - "_language": "Python", - "_homepage": "http://www.mypy-lang.org/", - "_description": "mypy: Optional static typing for Python", - "_organization": "python", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2012-12-07T00:00:00.000Z", - "_age_weeks": 523, - "_stars_per_week": 27.44, - "_pop_contributor_count": 618, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 631, + "_pop_contributor_logins": [ + "JukkaL", + "Michael0x2a", + "ddfisher", + "gvanrossum@microsoft", + "hauntsaninja@openai", + "ilevkivskyi", + "ivuk", + "msullivan@edgedb", + "sobolevn", + "spkersten@philipshue" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "edgedb", "microsoft", - "openai" + "openai", + "philipshue" + ], + "_pop_contributor_orgs_raw": [ + "@OpenAI", + "EdgeDB", + "Microsoft", + "Philips Hue" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 16.12, - "_pop_updated_issues_count": 944, - "_pop_closed_issues_count": 561, - "_pop_created_since_days": 122, + "_pop_commit_frequency": 16.92, + "_pop_updated_issues_count": 869, + "_pop_closed_issues_count": 495, + "_pop_created_since_days": 124, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 7, "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 944.0, - "_pop_comment_count": 2100.0, + "_pop_issue_count": 869.0, + "_pop_comment_count": 1600.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.2, - "_pop_dependents_count": 21972, - "_pop_score": 76.84, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 59.43, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/python/mypy/master/README.md", "_readme_localurl": "python~mypy~README.md", @@ -5745,6 +7852,94 @@ "python~mypy~pyproject.toml" ] }, + { + "index": 868, + "category": "ml-dl", + "githuburl": "https://github.com/hpcaitech/colossalai", + "featured": null, + "links": null, + "description": null, + "_repopath": "hpcaitech/colossalai", + "_reponame": "ColossalAI", + "_stars": 14661, + "_forks": 1530, + "_watches": 188, + "_language": "Python", + "_homepage": "https://www.colossalai.org/", + "_description": "ColossalAI: Making big AI models cheaper, easier, and more scalable", + "_organization": "hpcaitech", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-10-28T00:00:00.000Z", + "_age_weeks": 68, + "_stars_per_week": 212.92, + "_topics": [ + "deep-learning", + "hpc", + "large-scale", + "data-parallelism", + "pipeline-parallelism", + "model-parallelism", + "ai", + "big-model", + "distributed-computing", + "inference", + "heterogeneous-training" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 97, + "_pop_contributor_logins": [ + "1SAA@hpcaitech", + "Cypher30@fudanuniversity", + "FrankLeeeee", + "Wesley-Jzy", + "YuliangLiu0306", + "binmakeswell@nationaluniversityofsingapore", + "feifeibear", + "github-actions[bot]", + "oahzxl@nationaluniversityofsingapore", + "ver217@hpcaitech" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "fudanuniversity", + "hpcaitech", + "nationaluniversityofsingapore" + ], + "_pop_contributor_orgs_raw": [ + "@Fudan University", + "@hpcaitech", + "@hpcaitech ", + "National University of Singapore" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 36.31, + "_pop_updated_issues_count": 942, + "_pop_closed_issues_count": 802, + "_pop_created_since_days": 16, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 24, + "_pop_recent_releases_estimated_tags": 20, + "_pop_recent_releases_adjusted_count": 24, + "_pop_issue_count": 943.0, + "_pop_comment_count": 842.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 50.4, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/hpcaitech/colossalai/master/README.md", + "_readme_localurl": "hpcaitech~colossalai~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/hpcaitech/colossalai/master/setup.py" + ], + "_requirements_localurls": [ + "hpcaitech~colossalai~setup.py" + ] + }, { "index": 148, "category": "data", @@ -5754,9 +7949,17 @@ "description": null, "_repopath": "twintproject/twint", "_reponame": "twint", - "_stars": 14185, - "_forks": 2432, - "_watches": 310, + "_stars": 14418, + "_forks": 2474, + "_watches": 312, + "_language": "Python", + "_homepage": "", + "_description": "twint: An advanced Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API, allowing you to scrape a user's followers, following, Tweets and more while evading most API limitations.", + "_organization": "twintproject", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-06-10T00:00:00.000Z", + "_age_weeks": 297, + "_stars_per_week": 48.45, "_topics": [ "osint", "twitter", @@ -5771,37 +7974,51 @@ "twint", "tweep" ], - "_language": "Python", - "_homepage": "", - "_description": "twint: An advanced Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API, allowing you to scrape a user's followers, following, Tweets and more while evading most API limitations.", - "_organization": "twintproject", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2021-03-02T00:00:00.000Z", - "_created_at": "2017-06-10T00:00:00.000Z", - "_age_weeks": 288, - "_stars_per_week": 49.2, "_pop_contributor_count": 65, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Jamim@itechartgroup", + "Mehdzor@maximlevin", + "NoSuck", + "calebglawson@ololabs", + "fshabashev", + "haccer", + "himanshudabas", + "hpiedcoq", + "pielco11@none", + "yunusemrecatalcam@yechops" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "itechartgroup", "maximlevin", - "none" + "none", + "ololabs", + "yechops" + ], + "_pop_contributor_orgs_raw": [ + "@NONE", + "@ololabs", + "Maxim Levin", + "YechOps", + "iTechArt Group" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 1, + "_pop_updated_issues_count": 3, "_pop_closed_issues_count": 1, - "_pop_created_since_days": 67, - "_pop_updated_since_days": 22, + "_pop_created_since_days": 69, + "_pop_updated_since_days": 24, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 4, "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 1.0, - "_pop_comment_count": 0.0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 313, - "_pop_score": 33.76, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 0, + "_pop_score": 28.31, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/twintproject/twint/master/README.md", "_readme_localurl": "twintproject~twint~README.md", @@ -5819,20 +8036,264 @@ ] }, { - "index": 124, - "category": "ml", - "githuburl": "https://github.com/onnx/onnx", - "featured": null, + "index": 718, + "category": "perf", + "githuburl": "https://github.com/pola-rs/polars", + "featured": 1.0, "links": null, "description": null, - "_repopath": "onnx/onnx", - "_reponame": "onnx", - "_stars": 13818, - "_forks": 3231, - "_watches": 430, - "_topics": [ - "deep-learning", - "deep-neural-networks", + "_repopath": "pola-rs/polars", + "_reponame": "polars", + "_stars": 14234, + "_forks": 712, + "_watches": 121, + "_language": "Rust", + "_homepage": "https://pola.rs/", + "_description": "polars: Fast multi-threaded, hybrid-out-of-core DataFrame library in Rust | Python | Node.js", + "_organization": "pola-rs", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-05-13T00:00:00.000Z", + "_age_weeks": 145, + "_stars_per_week": 98.17, + "_topics": [ + "dataframe-library", + "dataframe", + "dataframes", + "rust", + "arrow", + "python", + "out-of-core" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 173, + "_pop_contributor_logins": [ + "Dandandan@godatadriven", + "MarcoGorelli@quansight", + "alexander-beedie", + "ghuls@aertslab", + "ibENPC", + "matteosantama@universityofcalifornia,berkeley", + "ritchie46", + "stinodego", + "universalmind303", + "zundertj" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "aertslab", + "godatadriven", + "quansight", + "universityofcalifornia,berkeley" + ], + "_pop_contributor_orgs_raw": [ + "@aertslab ", + "@godatadriven", + "Quansight", + "University of California, Berkeley" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 42.81, + "_pop_updated_issues_count": 1628, + "_pop_closed_issues_count": 1331, + "_pop_created_since_days": 34, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 44, + "_pop_recent_releases_estimated_tags": 128, + "_pop_recent_releases_adjusted_count": 44, + "_pop_issue_count": 1628.0, + "_pop_comment_count": 3211.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 57.93, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pola-rs/polars/master/README.md", + "_readme_localurl": "pola-rs~polars~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 175, + "category": "util", + "githuburl": "https://github.com/delgan/loguru", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "delgan/loguru", + "_reponame": "loguru", + "_stars": 14165, + "_forks": 585, + "_watches": 120, + "_language": "Python", + "_homepage": "", + "_description": "loguru: Python logging made (stupidly) simple", + "_organization": "delgan", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-08-15T00:00:00.000Z", + "_age_weeks": 288, + "_stars_per_week": 49.16, + "_topics": [ + "python", + "logging", + "logger", + "log" + ], + "_last_commit_date": "2023-02-01T00:00:00.000Z", + "_pop_contributor_count": 42, + "_pop_contributor_logins": [ + "AdrianDeAnda", + "AndrewYakimets", + "Delgan", + "benhowes", + "blueyed@freelancer,upforhire", + "dependabot[bot]", + "layday", + "mayanyax", + "nasyxx", + "ponponon" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "freelancer,upforhire" + ], + "_pop_contributor_orgs_raw": [ + "Freelancer, up for hire" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.06, + "_pop_updated_issues_count": 69, + "_pop_closed_issues_count": 51, + "_pop_created_since_days": 67, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 69.0, + "_pop_comment_count": 119.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 36.7, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/delgan/loguru/master/README.rst", + "_readme_localurl": "delgan~loguru~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/delgan/loguru/master/setup.py" + ], + "_requirements_localurls": [ + "delgan~loguru~setup.py" + ] + }, + { + "index": 332, + "category": "sim", + "githuburl": "https://github.com/unity-technologies/ml-agents", + "featured": null, + "links": null, + "description": null, + "_repopath": "unity-technologies/ml-agents", + "_reponame": "ml-agents", + "_stars": 14133, + "_forks": 3722, + "_watches": 549, + "_language": "C#", + "_homepage": "https://unity.com/products/machine-learning-agents", + "_description": "ml-agents: The Unity Machine Learning Agents Toolkit (ML-Agents) is an open-source project that enables games and simulations to serve as environments for training intelligent agents using deep reinforcement learning and imitation learning.", + "_organization": "unity-technologies", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-09-08T00:00:00.000Z", + "_age_weeks": 284, + "_stars_per_week": 49.64, + "_topics": [ + "reinforcement-learning", + "unity3d", + "deep-learning", + "unity", + "deep-reinforcement-learning", + "neural-networks", + "machine-learning" + ], + "_last_commit_date": "2023-01-25T00:00:00.000Z", + "_pop_contributor_count": 147, + "_pop_contributor_logins": [ + "andrewcoh", + "awjuliani", + "chriselion@ziplineinternational", + "dongruoping@unitytechnologies/carnegiemellonuniversity", + "ervteng", + "pderichai@google", + "shihzy@facebook", + "surfnerd", + "vincentpierre", + "xiaomaogy@unitytechnologies" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "facebook", + "google", + "unitytechnologies", + "unitytechnologies/carnegiemellonuniversity", + "ziplineinternational" + ], + "_pop_contributor_orgs_raw": [ + "@google", + "Facebook", + "Unity Technologies", + "Unity Technologies/Carnegie Mellon University", + "Zipline International" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.13, + "_pop_updated_issues_count": 138, + "_pop_closed_issues_count": 78, + "_pop_created_since_days": 66, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 25, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 138.0, + "_pop_comment_count": 60.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 41.59, + "_readme_filename": "", + "_readme_giturl": "", + "_readme_localurl": "", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 124, + "category": "ml", + "githuburl": "https://github.com/onnx/onnx", + "featured": null, + "links": null, + "description": null, + "_repopath": "onnx/onnx", + "_reponame": "onnx", + "_stars": 14114, + "_forks": 3330, + "_watches": 428, + "_language": "Python", + "_homepage": "https://onnx.ai/", + "_description": "onnx: Open standard for machine learning interoperability", + "_organization": "onnx", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-09-07T00:00:00.000Z", + "_age_weeks": 284, + "_stars_per_week": 49.55, + "_topics": [ + "deep-learning", + "deep-neural-networks", "neural-network", "onnx", "pytorch", @@ -5844,37 +8305,46 @@ "machine-learning", "dnn" ], - "_language": "Python", - "_homepage": "https://onnx.ai/", - "_description": "onnx: Open standard for machine learning interoperability", - "_organization": "onnx", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2017-09-07T00:00:00.000Z", - "_age_weeks": 275, - "_stars_per_week": 50.14, - "_pop_contributor_count": 264, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 269, + "_pop_contributor_logins": [ + "anderspapitto", + "askhade", + "bddppq", + "gramalingam@microsoftresearch", + "houseroad", + "jcwchen@microsoft", + "linkerzhang", + "prasanthpul@microsoft", + "smessmer", + "yuanbyu@microsoft" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "microsoft", "microsoftresearch" ], + "_pop_contributor_orgs_raw": [ + "@Microsoft", + "Microsoft", + "Microsoft Research" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.88, - "_pop_updated_issues_count": 267, - "_pop_closed_issues_count": 175, - "_pop_created_since_days": 64, + "_pop_commit_frequency": 5.83, + "_pop_updated_issues_count": 356, + "_pop_closed_issues_count": 228, + "_pop_created_since_days": 66, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 267.0, - "_pop_comment_count": 461.0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 356.0, + "_pop_comment_count": 440.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 32190, - "_pop_score": 66.79, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 47.56, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/onnx/onnx/master/README.md", "_readme_localurl": "onnx~onnx~README.md", @@ -5903,9 +8373,17 @@ "description": null, "_repopath": "rare-technologies/gensim", "_reponame": "gensim", - "_stars": 13801, - "_forks": 4298, - "_watches": 430, + "_stars": 13972, + "_forks": 4322, + "_watches": 429, + "_language": "Python", + "_homepage": "https://radimrehurek.com/gensim", + "_description": "gensim: Topic Modelling for Humans", + "_organization": "rare-technologies", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2011-02-10T00:00:00.000Z", + "_age_weeks": 627, + "_stars_per_week": 22.25, "_topics": [ "gensim", "topic-modeling", @@ -5923,39 +8401,53 @@ "word-similarity", "fasttext" ], - "_language": "Python", - "_homepage": "https://radimrehurek.com/gensim", - "_description": "gensim: Topic Modelling for Humans", - "_organization": "rare-technologies", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2011-02-10T00:00:00.000Z", - "_age_weeks": 618, - "_stars_per_week": 22.31, - "_pop_contributor_count": 440, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 441, + "_pop_contributor_logins": [ + "Witiko@masarykuniversity", + "chinmayapancholi13", + "cscorley", + "gojomo@http://xavvy.com", + "jayantj@mixpanel", + "menshikh-iv@constructor.io,embedika", + "mpenkov@profoundnetworks", + "piskvorky@rare-technologies", + "sotte", + "tmylk" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "constructor.io,embedika", "http://xavvy.com", + "masarykuniversity", + "mixpanel", "profoundnetworks", "rare-technologies" ], + "_pop_contributor_orgs_raw": [ + "@ProfoundNetworks", + "@RARE-Technologies", + "@mixpanel", + "Constructor.io, Embedika", + "Masaryk University", + "http://xavvy.com" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.77, - "_pop_updated_issues_count": 51, - "_pop_closed_issues_count": 41, - "_pop_created_since_days": 144, + "_pop_commit_frequency": 1.79, + "_pop_updated_issues_count": 68, + "_pop_closed_issues_count": 52, + "_pop_created_since_days": 146, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 1, + "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 51.0, - "_pop_comment_count": 100.0, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 68.0, + "_pop_comment_count": 149.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 156, - "_pop_score": 58.49, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 0, + "_pop_score": 52.45, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/rare-technologies/gensim/master/README.md", "_readme_localurl": "rare-technologies~gensim~README.md", @@ -5970,122 +8462,163 @@ ] }, { - "index": 332, - "category": "sim", - "githuburl": "https://github.com/unity-technologies/ml-agents", + "index": 972, + "category": "ml", + "githuburl": "https://github.com/openai/baselines", "featured": null, "links": null, "description": null, - "_repopath": "unity-technologies/ml-agents", - "_reponame": "ml-agents", - "_stars": 13800, - "_forks": 3635, - "_watches": 539, - "_topics": [ - "reinforcement-learning", - "unity3d", - "deep-learning", - "unity", - "deep-reinforcement-learning", - "neural-networks", - "machine-learning" + "_repopath": "openai/baselines", + "_reponame": "baselines", + "_stars": 13741, + "_forks": 4526, + "_watches": 613, + "_language": "Python", + "_homepage": "", + "_description": "OpenAI Baselines: high-quality implementations of reinforcement learning algorithms", + "_organization": "openai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-05-24T00:00:00.000Z", + "_age_weeks": 300, + "_stars_per_week": 45.8, + "_topics": [], + "_last_commit_date": "2020-01-31T00:00:00.000Z", + "_pop_contributor_count": 115, + "_pop_contributor_logins": [ + "20chase", + "AurelianTactics", + "MatPoliquin", + "andrewliao11@universityoftoronto", + "christopherhesse@openai", + "joschu", + "pzhokhov", + "siemanko@openai", + "unixpickle", + "zuoxingdong@navercorp" ], - "_language": "C#", - "_homepage": "https://unity.com/products/machine-learning-agents", - "_description": "ml-agents: The Unity Machine Learning Agents Toolkit (ML-Agents) is an open-source project that enables games and simulations to serve as environments for training intelligent agents using deep reinforcement learning and imitation learning.", - "_organization": "unity-technologies", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2017-09-08T00:00:00.000Z", - "_age_weeks": 275, - "_stars_per_week": 50.1, - "_pop_contributor_count": 147, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "ziplineinternational" + "navercorp", + "openai", + "universityoftoronto" + ], + "_pop_contributor_orgs_raw": [ + "NAVER Corp", + "OpenAI", + "University of Toronto" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.85, - "_pop_updated_issues_count": 198, - "_pop_closed_issues_count": 145, - "_pop_created_since_days": 64, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 26, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 198.0, - "_pop_comment_count": 155.0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 70, + "_pop_updated_since_days": 37, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 12.0, + "_pop_comment_count": 6.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 428, - "_pop_score": 51.65, - "_readme_filename": "", - "_readme_giturl": "", - "_readme_localurl": "", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 26.07, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/openai/baselines/master/README.md", + "_readme_localurl": "openai~baselines~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/openai/baselines/master/setup.py" + ], + "_requirements_localurls": [ + "openai~baselines~setup.py" + ] }, { - "index": 175, - "category": "util", - "githuburl": "https://github.com/delgan/loguru", - "featured": 1.0, + "index": 119, + "category": "ml-ops", + "githuburl": "https://github.com/mlflow/mlflow", + "featured": null, "links": null, "description": null, - "_repopath": "delgan/loguru", - "_reponame": "loguru", - "_stars": 13598, - "_forks": 570, - "_watches": 119, + "_repopath": "mlflow/mlflow", + "_reponame": "mlflow", + "_stars": 13685, + "_forks": 3201, + "_watches": 286, + "_language": "Python", + "_homepage": "https://mlflow.org", + "_description": "mlflow: Open source platform for the machine learning lifecycle", + "_organization": "mlflow", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-06-05T00:00:00.000Z", + "_age_weeks": 246, + "_stars_per_week": 55.6, "_topics": [ - "python", - "logging", - "logger", - "log" + "machine-learning", + "ai", + "ml", + "mlflow", + "apache-spark", + "model-management" ], - "_language": "Python", - "_homepage": "", - "_description": "loguru: Python logging made (stupidly) simple", - "_organization": "delgan", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", - "_created_at": "2017-08-15T00:00:00.000Z", - "_age_weeks": 278, - "_stars_per_week": 48.76, - "_pop_contributor_count": 41, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 547, + "_pop_contributor_logins": [ + "BenWilson2@databricks", + "WeichenXu123@databricks", + "aarondav", + "dbczumar", + "harupy", + "mlflow-automation", + "mparkhe@databricks", + "smurching", + "sunishsheth2009@databricks.exlinkedin", + "tomasatdatabricks" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "freelancer,upforhire" + "databricks", + "databricks.exlinkedin" + ], + "_pop_contributor_orgs_raw": [ + "@databricks", + "@databricks ", + "@databricks. Ex LinkedIn", + "Databricks" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.17, - "_pop_updated_issues_count": 92, - "_pop_closed_issues_count": 68, - "_pop_created_since_days": 65, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 92.0, - "_pop_comment_count": 198.0, + "_pop_commit_frequency": 23.5, + "_pop_updated_issues_count": 625, + "_pop_closed_issues_count": 440, + "_pop_created_since_days": 57, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 24, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 625.0, + "_pop_comment_count": 1531.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.2, - "_pop_dependents_count": 258, - "_pop_score": 46.46, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 0, + "_pop_score": 56.77, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/delgan/loguru/master/README.rst", - "_readme_localurl": "delgan~loguru~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/mlflow/mlflow/master/README.rst", + "_readme_localurl": "mlflow~mlflow~README.rst", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/delgan/loguru/master/setup.py" + "https://raw.githubusercontent.com/mlflow/mlflow/master/setup.py", + "https://raw.githubusercontent.com/mlflow/mlflow/master/pyproject.toml" ], "_requirements_localurls": [ - "delgan~loguru~setup.py" + "mlflow~mlflow~setup.py", + "mlflow~mlflow~pyproject.toml" ] }, { @@ -6097,41 +8630,63 @@ "description": null, "_repopath": "borisdayma/dalle-mini", "_reponame": "dalle-mini", - "_stars": 13453, - "_forks": 1011, - "_watches": 103, - "_topics": [], + "_stars": 13681, + "_forks": 1055, + "_watches": 104, "_language": "Python", "_homepage": "https://www.craiyon.com", "_description": "dalle-mini: DALL\u00b7E Mini - Generate images from a text prompt", "_organization": "borisdayma", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-09T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2021-07-03T00:00:00.000Z", - "_age_weeks": 76, - "_stars_per_week": 176.35, + "_age_weeks": 85, + "_stars_per_week": 159.88, + "_topics": [], + "_last_commit_date": "2023-02-10T00:00:00.000Z", "_pop_contributor_count": 27, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "AetherUnbound@automattic", + "Gertie01", + "borisdayma", + "ghosh-r", + "khalidsaifullaah@universityofmaryland,collegepark", + "mallorbc@brillibits", + "patil-suraj@huggingface", + "patrickpiccini@linx|stone", + "pcuenca", + "tmabraham" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "automattic", + "brillibits", "huggingface", + "linx|stone", "universityofmaryland,collegepark" ], + "_pop_contributor_orgs_raw": [ + "Automattic", + "Brillibits", + "Huggingface", + "Linx | Stone ", + "University of Maryland, College Park" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.35, - "_pop_updated_issues_count": 13, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 18, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 2.42, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 20, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 13.0, - "_pop_comment_count": 32.0, + "_pop_issue_count": 16.0, + "_pop_comment_count": 26.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 121, - "_pop_score": 42.31, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 37.28, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/borisdayma/dalle-mini/master/README.md", "_readme_localurl": "borisdayma~dalle-mini~README.md", @@ -6157,123 +8712,73 @@ "description": null, "_repopath": "pallets/click", "_reponame": "click", - "_stars": 13290, - "_forks": 1299, - "_watches": 183, + "_stars": 13511, + "_forks": 1313, + "_watches": 180, + "_language": "Python", + "_homepage": "https://click.palletsprojects.com", + "_description": "click: Python composable command line interface toolkit", + "_organization": "pallets", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-04-24T00:00:00.000Z", + "_age_weeks": 460, + "_stars_per_week": 29.32, "_topics": [ "python", "cli", "click", "pallets" ], - "_language": "Python", - "_homepage": "https://click.palletsprojects.com", - "_description": "click: Python composable command line interface toolkit", - "_organization": "pallets", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-01T00:00:00.000Z", - "_created_at": "2014-04-24T00:00:00.000Z", - "_age_weeks": 451, - "_stars_per_week": 29.43, - "_pop_contributor_count": 333, + "_last_commit_date": "2023-02-07T00:00:00.000Z", + "_pop_contributor_count": 337, + "_pop_contributor_logins": [ + "davidism", + "dependabot-preview[bot]", + "dependabot[bot]", + "iKevinY", + "jcrotts", + "julen", + "mitsuhiko@sentry", + "pre-commit-ci[bot]", + "sirosen", + "untitaker@getsentry" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "getsentry", "sentry" ], + "_pop_contributor_orgs_raw": [ + "@getsentry ", + "Sentry" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.23, - "_pop_updated_issues_count": 65, - "_pop_closed_issues_count": 24, - "_pop_created_since_days": 105, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 5, + "_pop_commit_frequency": 1.1, + "_pop_updated_issues_count": 73, + "_pop_closed_issues_count": 47, + "_pop_created_since_days": 108, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 65.0, - "_pop_comment_count": 62.0, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 73.0, + "_pop_comment_count": 48.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 3073, - "_pop_score": 57.21, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 45.02, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pallets/click/master/README.rst", "_readme_localurl": "pallets~click~README.rst", "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pallets/click/master/setup.py" - ], - "_requirements_localurls": [ - "pallets~click~setup.py" - ] - }, - { - "index": 119, - "category": "ml-ops", - "githuburl": "https://github.com/mlflow/mlflow", - "featured": null, - "links": null, - "description": null, - "_repopath": "mlflow/mlflow", - "_reponame": "mlflow", - "_stars": 13208, - "_forks": 3082, - "_watches": 285, - "_topics": [ - "machine-learning", - "ai", - "ml", - "mlflow", - "apache-spark", - "model-management" - ], - "_language": "Python", - "_homepage": "https://mlflow.org", - "_description": "mlflow: Open source platform for the machine learning lifecycle", - "_organization": "mlflow", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2018-06-05T00:00:00.000Z", - "_age_weeks": 236, - "_stars_per_week": 55.76, - "_pop_contributor_count": 526, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "databricks" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 22.33, - "_pop_updated_issues_count": 849, - "_pop_closed_issues_count": 680, - "_pop_created_since_days": 55, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 13, - "_pop_recent_releases_estimated_tags": 24, - "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 850.0, - "_pop_comment_count": 2007.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.4, - "_pop_dependents_count": 955, - "_pop_score": 67.32, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/mlflow/mlflow/master/README.rst", - "_readme_localurl": "mlflow~mlflow~README.rst", - "_requirements_filenames": [ - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/mlflow/mlflow/master/setup.py", - "https://raw.githubusercontent.com/mlflow/mlflow/master/pyproject.toml" + "https://raw.githubusercontent.com/pallets/click/master/pyproject.toml" ], "_requirements_localurls": [ - "mlflow~mlflow~setup.py", - "mlflow~mlflow~pyproject.toml" + "pallets~click~pyproject.toml" ] }, { @@ -6285,9 +8790,17 @@ "description": null, "_repopath": "aleju/imgaug", "_reponame": "imgaug", - "_stars": 13184, - "_forks": 2333, - "_watches": 228, + "_stars": 13310, + "_forks": 2358, + "_watches": 231, + "_language": "Python", + "_homepage": "http://imgaug.readthedocs.io", + "_description": "imgaug: Image augmentation for machine learning experiments.", + "_organization": "aleju", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-07-10T00:00:00.000Z", + "_age_weeks": 397, + "_stars_per_week": 33.47, "_topics": [ "image-augmentation", "machine-learning", @@ -6304,38 +8817,51 @@ "crop", "contrast" ], - "_language": "Python", - "_homepage": "http://imgaug.readthedocs.io", - "_description": "imgaug: Image augmentation for machine learning experiments.", - "_organization": "aleju", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2020-06-01T00:00:00.000Z", - "_created_at": "2015-07-10T00:00:00.000Z", - "_age_weeks": 388, - "_stars_per_week": 33.94, "_pop_contributor_count": 36, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Borda@grid.ai|pytorchlightning", + "Erotemic@kitware", + "SarthakYadav@idiap", + "adamwkraft", + "aleju", + "creinders", + "gaborvecsei", + "jgraving@maxplanckinstituteofanimalbehavior", + "stnk20", + "wkentaro@mujin" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "grid.ai|pytorchlightning", + "idiap", "kitware", "maxplanckinstituteofanimalbehavior", "mujin" ], + "_pop_contributor_orgs_raw": [ + "@Kitware", + "@mujin", + "Grid.ai | PytorchLightning", + "IDIAP", + "Max Planck Institute of Animal Behavior" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 5, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 91, - "_pop_updated_since_days": 31, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 93, + "_pop_updated_since_days": 33, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 5.0, - "_pop_comment_count": 8.0, + "_pop_issue_count": 11.0, + "_pop_comment_count": 11.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 383, - "_pop_score": 37.77, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 28.84, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/aleju/imgaug/master/README.md", "_readme_localurl": "aleju~imgaug~README.md", @@ -6361,9 +8887,17 @@ "description": null, "_repopath": "aio-libs/aiohttp", "_reponame": "aiohttp", - "_stars": 13100, - "_forks": 1836, - "_watches": 227, + "_stars": 13285, + "_forks": 1866, + "_watches": 228, + "_language": "Python", + "_homepage": "https://docs.aiohttp.org", + "_description": "aiohttp: Asynchronous HTTP client/server framework for asyncio and Python", + "_organization": "aio-libs", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2013-10-01T00:00:00.000Z", + "_age_weeks": 490, + "_stars_per_week": 27.1, "_topics": [ "aiohttp", "asyncio", @@ -6374,38 +8908,51 @@ "async", "hacktoberfest" ], - "_language": "Python", - "_homepage": "https://docs.aiohttp.org", - "_description": "aiohttp: Asynchronous HTTP client/server framework for asyncio and Python", - "_organization": "aio-libs", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", - "_created_at": "2013-10-01T00:00:00.000Z", - "_age_weeks": 480, - "_stars_per_week": 27.24, - "_pop_contributor_count": 661, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 665, + "_pop_contributor_logins": [ + "Dreamsorcerer", + "asvetlov@neu.ro", + "dependabot-preview[bot]", + "dependabot[bot]", + "fafhrd91@microsoft", + "kxepal", + "patchback[bot]", + "popravich@evo-company", + "pyup-bot@pyupio", + "webknjaz@ansiblecoreredhatofficial" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "ansiblecoreredhatofficial", + "evo-company", "microsoft", - "neu.ro" + "neu.ro", + "pyupio" + ], + "_pop_contributor_orgs_raw": [ + "@Ansible Core @ @RedHatOfficial", + "@evo-company", + "@pyupio", + "Microsoft", + "Neu.ro" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 8.35, - "_pop_updated_issues_count": 303, - "_pop_closed_issues_count": 207, - "_pop_created_since_days": 112, + "_pop_commit_frequency": 7.0, + "_pop_updated_issues_count": 177, + "_pop_closed_issues_count": 101, + "_pop_created_since_days": 114, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 26, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 303.0, - "_pop_comment_count": 598.0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 25, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 177.0, + "_pop_comment_count": 471.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 5253, - "_pop_score": 69.77, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 0, + "_pop_score": 56.73, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/aio-libs/aiohttp/master/README.rst", "_readme_localurl": "aio-libs~aiohttp~README.rst", @@ -6422,6 +8969,154 @@ "aio-libs~aiohttp~pyproject.toml" ] }, + { + "index": 956, + "category": "ml", + "githuburl": "https://github.com/openai/openai-cookbook", + "featured": null, + "links": null, + "description": null, + "_repopath": "openai/openai-cookbook", + "_reponame": "openai-cookbook", + "_stars": 13284, + "_forks": 1661, + "_watches": 304, + "_language": "Jupyter Notebook", + "_homepage": null, + "_description": "openai-cookbook: Examples and guides for using the OpenAI API", + "_organization": "openai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-03-11T00:00:00.000Z", + "_age_weeks": 49, + "_stars_per_week": 267.21, + "_topics": [], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 38, + "_pop_contributor_logins": [ + "BorisPower", + "MikeHeaton", + "cmurtz-msft@microsoft", + "colin-jarvis", + "colin-openai", + "filipeabperes", + "isafulf", + "logankilpatrick@openaijulialang", + "shyamal-anadkat@openai", + "ted-at-openai@openai" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "microsoft", + "openai", + "openaijulialang" + ], + "_pop_contributor_orgs_raw": [ + "@OpenAI @JuliaLang", + "Microsoft", + "OpenAI" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.67, + "_pop_updated_issues_count": 121, + "_pop_closed_issues_count": 96, + "_pop_created_since_days": 12, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 121.0, + "_pop_comment_count": 193.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 35.96, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/openai/openai-cookbook/master/README.md", + "_readme_localurl": "openai~openai-cookbook~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 942, + "category": "nlp", + "githuburl": "https://github.com/karpathy/mingpt", + "featured": null, + "links": null, + "description": null, + "_repopath": "karpathy/mingpt", + "_reponame": "minGPT", + "_stars": 13102, + "_forks": 1477, + "_watches": 228, + "_language": "Python", + "_homepage": null, + "_description": "minGPT: A minimal PyTorch re-implementation of the OpenAI GPT (Generative Pretrained Transformer) training", + "_organization": "karpathy", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-08-17T00:00:00.000Z", + "_age_weeks": 131, + "_stars_per_week": 99.8, + "_topics": [], + "_last_commit_date": "2023-01-08T00:00:00.000Z", + "_pop_contributor_count": 15, + "_pop_contributor_logins": [ + "brchristian", + "ericjang", + "fpgaminer", + "karpathy", + "luigidisotto@aitechnologiessrl", + "michaellavelle@ml4jjvmtorch", + "mishig25@huggingface", + "nat@github", + "shivamtawari", + "t-vi@mathinfhttps://mathinf.eu/" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "aitechnologiessrl", + "github", + "huggingface", + "mathinfhttps://mathinf.eu/", + "ml4jjvmtorch" + ], + "_pop_contributor_orgs_raw": [ + "@huggingface ", + "@ml4j @jvmtorch ", + "AI Technologies srl", + "GitHub", + "MathInf https://mathinf.eu/" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.96, + "_pop_updated_issues_count": 20, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 20.0, + "_pop_comment_count": 6.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 0, + "_pop_score": 28.73, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/karpathy/mingpt/master/README.md", + "_readme_localurl": "karpathy~mingpt~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/karpathy/mingpt/master/setup.py" + ], + "_requirements_localurls": [ + "karpathy~mingpt~setup.py" + ] + }, { "index": 554, "category": "ml-ops", @@ -6431,9 +9126,17 @@ "description": null, "_repopath": "horovod/horovod", "_reponame": "horovod", - "_stars": 12898, - "_forks": 2145, - "_watches": 332, + "_stars": 13034, + "_forks": 2157, + "_watches": 331, + "_language": "Python", + "_homepage": "http://horovod.ai", + "_description": "horovod: Distributed training framework for TensorFlow, Keras, PyTorch, and Apache MXNet.", + "_organization": "horovod", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-08-09T00:00:00.000Z", + "_age_weeks": 289, + "_stars_per_week": 45.1, "_topics": [ "tensorflow", "uber", @@ -6449,38 +9152,53 @@ "spark", "ray" ], - "_language": "Python", - "_homepage": "http://horovod.ai", - "_description": "horovod: Distributed training framework for TensorFlow, Keras, PyTorch, and Apache MXNet.", - "_organization": "horovod", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-10T00:00:00.000Z", - "_created_at": "2017-08-09T00:00:00.000Z", - "_age_weeks": 279, - "_stars_per_week": 46.11, - "_pop_contributor_count": 163, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 164, + "_pop_contributor_logins": [ + "EnricoMi", + "abditag2@uber", + "alsrgv@carbonrobotics", + "chongxiaoc@uber", + "irasit@uber", + "maxhgerlach@deeplse", + "nvcastet@nvidia", + "romerojosh@nvidia", + "tgaddair@uber", + "yuxihu@aws" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "aws", "carbonrobotics", + "deeplse", "nvidia", "uber" ], + "_pop_contributor_orgs_raw": [ + "@AWS", + "@carbonrobotics", + "@uber ", + "DeepL SE", + "NVIDIA", + "Uber", + "Uber " + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.12, - "_pop_updated_issues_count": 128, + "_pop_commit_frequency": 3.06, + "_pop_updated_issues_count": 110, "_pop_closed_issues_count": 75, - "_pop_created_since_days": 65, + "_pop_created_since_days": 67, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 7, - "_pop_recent_releases_estimated_tags": 14, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 128.0, - "_pop_comment_count": 269.0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 110.0, + "_pop_comment_count": 159.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 93, - "_pop_score": 56.58, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 49.51, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/horovod/horovod/master/README.rst", "_readme_localurl": "horovod~horovod~README.rst", @@ -6503,9 +9221,17 @@ "description": null, "_repopath": "tensorflow/tensor2tensor", "_reponame": "tensor2tensor", - "_stars": 12835, - "_forks": 3147, - "_watches": 458, + "_stars": 13006, + "_forks": 3175, + "_watches": 459, + "_language": "Python", + "_homepage": "", + "_description": "tensor2tensor: Library of deep learning models and datasets designed to make deep learning more accessible and accelerate ML research.", + "_organization": "tensorflow", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-06-15T00:00:00.000Z", + "_age_weeks": 296, + "_stars_per_week": 43.81, "_topics": [ "machine-learning", "machine-translation", @@ -6513,38 +9239,51 @@ "reinforcement-learning", "tpu" ], - "_language": "Python", - "_homepage": "", - "_description": "tensor2tensor: Library of deep learning models and datasets designed to make deep learning more accessible and accelerate ML research.", - "_organization": "tensorflow", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-10-24T00:00:00.000Z", - "_created_at": "2017-06-15T00:00:00.000Z", - "_age_weeks": 287, - "_stars_per_week": 44.63, + "_last_commit_date": "2023-02-17T00:00:00.000Z", "_pop_contributor_count": 243, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "MechCoder@googlebrain", + "afrozenator@google", + "blazejosinski", + "dustinvtran@googlebrain", + "koz4k@mimuw", + "lukaszkaiser@google", + "mbz@universityofillinoisaturbana\u2013champaign", + "nshazeer", + "urvashik", + "vthorsteinsson@mideind" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "google", + "googlebrain", + "mideind", "mimuw", "universityofillinoisaturbana\u2013champaign" ], + "_pop_contributor_orgs_raw": [ + "@mideind ", + "Google", + "Google Brain", + "MIMUW", + "University of Illinois at Urbana\u2013Champaign" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.23, - "_pop_updated_issues_count": 14, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 67, - "_pop_updated_since_days": 2, + "_pop_commit_frequency": 0.25, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 69, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 14, - "_pop_recent_releases_adjusted_count": 14, - "_pop_issue_count": 14.0, - "_pop_comment_count": 15.0, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 6.0, + "_pop_comment_count": 5.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 295, - "_pop_score": 50.81, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 43.81, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tensorflow/tensor2tensor/master/README.md", "_readme_localurl": "tensorflow~tensor2tensor~README.md", @@ -6558,6 +9297,101 @@ "tensorflow~tensor2tensor~setup.py" ] }, + { + "index": 62, + "category": "viz", + "githuburl": "https://github.com/plotly/plotly.py", + "featured": null, + "links": null, + "description": null, + "_repopath": "plotly/plotly.py", + "_reponame": "plotly.py", + "_stars": 12956, + "_forks": 2301, + "_watches": 276, + "_language": "Python", + "_homepage": "https://plotly.com/python/", + "_description": "plotly.py: The interactive graphing library for Python (includes Plotly Express) :sparkles:", + "_organization": "plotly", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2013-11-21T00:00:00.000Z", + "_age_weeks": 482, + "_stars_per_week": 26.83, + "_topics": [ + "python", + "d3", + "plotly", + "plotlyjs", + "webgl", + "dashboard", + "visualization", + "graph-library", + "plotly-dash", + "jupyter-notebook", + "sparkles", + "regl", + "declarative", + "interactive" + ], + "_last_commit_date": "2023-01-31T00:00:00.000Z", + "_pop_contributor_count": 219, + "_pop_contributor_logins": [ + "Kully", + "LiamConnors", + "chriddyp@plotly", + "cldougl@plotly", + "emmanuelle", + "etpinard@r2-inc", + "jonmmease@hextechnologies", + "nicolaskruchten", + "theengineear@netflix", + "yankev" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "hextechnologies", + "netflix", + "plotly", + "r2-inc" + ], + "_pop_contributor_orgs_raw": [ + "@R2-inc", + "Hex Technologies", + "Netflix", + "Plotly" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.21, + "_pop_updated_issues_count": 235, + "_pop_closed_issues_count": 102, + "_pop_created_since_days": 113, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 235.0, + "_pop_comment_count": 316.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 52.14, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/plotly/plotly.py/master/README.md", + "_readme_localurl": "plotly~plotly.py~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/plotly/plotly.py/master/setup.py", + "https://raw.githubusercontent.com/plotly/plotly.py/master/pyproject.toml" + ], + "_requirements_localurls": [ + "plotly~plotly.py~setup.py", + "plotly~plotly.py~pyproject.toml" + ] + }, { "index": 812, "category": "nlp", @@ -6567,9 +9401,17 @@ "description": null, "_repopath": "gunthercox/chatterbot", "_reponame": "ChatterBot", - "_stars": 12738, - "_forks": 4189, - "_watches": 552, + "_stars": 12942, + "_forks": 4234, + "_watches": 551, + "_language": "Python", + "_homepage": "https://chatterbot.readthedocs.io", + "_description": "ChatterBot is a machine learning, conversational dialog engine for creating chat bots", + "_organization": "gunthercox", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-09-28T00:00:00.000Z", + "_age_weeks": 438, + "_stars_per_week": 29.52, "_topics": [ "chatterbot", "machine-learning", @@ -6579,37 +9421,51 @@ "language", "bot" ], - "_language": "Python", - "_homepage": "https://chatterbot.readthedocs.io", - "_description": "ChatterBot is a machine learning, conversational dialog engine for creating chat bots", - "_organization": "gunthercox", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2021-06-01T00:00:00.000Z", - "_created_at": "2014-09-28T00:00:00.000Z", - "_age_weeks": 429, - "_stars_per_week": 29.68, "_pop_contributor_count": 103, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "DarkmatterVale@amazonwebservices", + "JulianoEngineer@uplicativos", + "Martmists-GH@claritycafe", + "davizucon", + "gunthercox", + "lesleslie@wedgwoodwebworks", + "manoelrui", + "navyad", + "rafak360", + "rmdort@self" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "amazonwebservices", + "claritycafe", + "self", + "uplicativos", "wedgwoodwebworks" ], + "_pop_contributor_orgs_raw": [ + "@ClarityCafe", + "@self", + "Amazon Web Services", + "Uplicativos", + "Wedgwood Web Works" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 27, - "_pop_closed_issues_count": 10, - "_pop_created_since_days": 100, - "_pop_updated_since_days": 19, + "_pop_updated_issues_count": 26, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 102, + "_pop_updated_since_days": 21, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 10, "_pop_recent_releases_adjusted_count": 10, - "_pop_issue_count": 27.0, - "_pop_comment_count": 17.0, + "_pop_issue_count": 26.0, + "_pop_comment_count": 25.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 247, - "_pop_score": 42.31, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 36.14, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/gunthercox/chatterbot/master/README.md", "_readme_localurl": "gunthercox~chatterbot~README.md", @@ -6627,79 +9483,180 @@ ] }, { - "index": 62, + "index": 346, "category": "viz", - "githuburl": "https://github.com/plotly/plotly.py", + "githuburl": "https://github.com/gradio-app/gradio", "featured": null, "links": null, "description": null, - "_repopath": "plotly/plotly.py", - "_reponame": "plotly.py", - "_stars": 12630, - "_forks": 2251, - "_watches": 275, + "_repopath": "gradio-app/gradio", + "_reponame": "gradio", + "_stars": 12879, + "_forks": 846, + "_watches": 102, + "_language": "HTML", + "_homepage": "http://www.gradio.app", + "_description": "gradio: Create UIs for your machine learning model in Python in 3 minutes", + "_organization": "gradio-app", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-12-19T00:00:00.000Z", + "_age_weeks": 218, + "_stars_per_week": 59.08, "_topics": [ + "machine-learning", + "models", + "ui", + "ui-components", + "interface", "python", - "d3", - "plotly", - "plotlyjs", - "webgl", - "dashboard", - "visualization", - "graph-library", - "plotly-dash", - "jupyter-notebook", - "sparkles", - "regl", - "declarative", - "interactive" + "data-science", + "data-visualization", + "deep-learning", + "data-analysis", + "gradio", + "gradio-interface", + "python-notebook", + "deploy" ], - "_language": "Python", - "_homepage": "https://plotly.com/python/", - "_description": "plotly.py: The interactive graphing library for Python (includes Plotly Express) :sparkles:", - "_organization": "plotly", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-10-27T00:00:00.000Z", - "_created_at": "2013-11-21T00:00:00.000Z", - "_age_weeks": 473, - "_stars_per_week": 26.67, - "_pop_contributor_count": 201, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 135, + "_pop_contributor_logins": [ + "AK391@huggingface", + "FarukOzderim@pennstate", + "abidlabs", + "aliabd", + "aliabid94", + "dawoodkhan82", + "freddyaboulton", + "ikaharudin", + "pngwn", + "testaliabid" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "hextechnologies", - "netflix", - "plotly" + "huggingface", + "pennstate" + ], + "_pop_contributor_orgs_raw": [ + "Huggingface", + "Penn State" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.52, - "_pop_updated_issues_count": 166, - "_pop_closed_issues_count": 40, - "_pop_created_since_days": 110, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 9, - "_pop_recent_releases_estimated_tags": 15, - "_pop_recent_releases_adjusted_count": 9, - "_pop_issue_count": 166.0, - "_pop_comment_count": 236.0, + "_pop_commit_frequency": 24.69, + "_pop_updated_issues_count": 756, + "_pop_closed_issues_count": 569, + "_pop_created_since_days": 51, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 92, + "_pop_recent_releases_estimated_tags": 23, + "_pop_recent_releases_adjusted_count": 92, + "_pop_issue_count": 758.0, + "_pop_comment_count": 2128.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 2044, - "_pop_score": 60.49, + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 0, + "_pop_score": 54.69, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/plotly/plotly.py/master/README.md", - "_readme_localurl": "plotly~plotly.py~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/gradio-app/gradio/master/README.md", + "_readme_localurl": "gradio-app~gradio~README.md", + "_requirements_filenames": [ + "requirements.txt", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/gradio-app/gradio/master/requirements.txt", + "https://raw.githubusercontent.com/gradio-app/gradio/master/pyproject.toml" + ], + "_requirements_localurls": [ + "gradio-app~gradio~requirements.txt", + "gradio-app~gradio~pyproject.toml" + ] + }, + { + "index": 281, + "category": "util", + "githuburl": "https://github.com/squidfunk/mkdocs-material", + "featured": null, + "links": null, + "description": null, + "_repopath": "squidfunk/mkdocs-material", + "_reponame": "mkdocs-material", + "_stars": 12836, + "_forks": 2816, + "_watches": 111, + "_language": "TypeScript", + "_homepage": "https://squidfunk.github.io/mkdocs-material/", + "_description": "mkdocs-material: Documentation that simply works", + "_organization": "squidfunk", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-01-28T00:00:00.000Z", + "_age_weeks": 368, + "_stars_per_week": 34.8, + "_topics": [ + "mkdocs", + "theme", + "documentation", + "material-design", + "template", + "static" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 192, + "_pop_contributor_logins": [ + "Stanzilla", + "XhmikosR", + "coliff@trimble-oss", + "dependabot-preview[bot]", + "dependabot-support", + "dependabot[bot]", + "facelessuser", + "greenkeeper[bot]", + "squidfunk@stylezen", + "timvink" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "stylezen", + "trimble-oss" + ], + "_pop_contributor_orgs_raw": [ + "@stylezen", + "@trimble-oss" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 16.73, + "_pop_updated_issues_count": 326, + "_pop_closed_issues_count": 306, + "_pop_created_since_days": 86, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 61, + "_pop_recent_releases_estimated_tags": 44, + "_pop_recent_releases_adjusted_count": 61, + "_pop_issue_count": 327.0, + "_pop_comment_count": 847.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 0, + "_pop_score": 55.05, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/README.md", + "_readme_localurl": "squidfunk~mkdocs-material~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/plotly/plotly.py/master/setup.py", - "https://raw.githubusercontent.com/plotly/plotly.py/master/pyproject.toml" + "https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/requirements.txt", + "https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/setup.py", + "https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/pyproject.toml" ], "_requirements_localurls": [ - "plotly~plotly.py~setup.py", - "plotly~plotly.py~pyproject.toml" + "squidfunk~mkdocs-material~requirements.txt", + "squidfunk~mkdocs-material~setup.py", + "squidfunk~mkdocs-material~pyproject.toml" ] }, { @@ -6711,47 +9668,72 @@ "description": null, "_repopath": "jupyterlab/jupyterlab", "_reponame": "jupyterlab", - "_stars": 12515, - "_forks": 2511, - "_watches": 311, - "_topics": [ - "jupyterlab", - "jupyter" - ], + "_stars": 12647, + "_forks": 2557, + "_watches": 312, "_language": "TypeScript", "_homepage": "https://jupyterlab.readthedocs.io/", "_description": "JupyterLab computational environment.", "_organization": "jupyterlab", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2016-06-03T00:00:00.000Z", - "_age_weeks": 341, - "_stars_per_week": 36.65, - "_pop_contributor_count": 517, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 350, + "_stars_per_week": 36.06, + "_topics": [ + "jupyterlab", + "jupyter" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 527, + "_pop_contributor_logins": [ + "afshin@jupyterquantstack", + "blink1073@mongodb", + "echarles@datalayer", + "ellisonbg@amazonwebservices", + "fcollonval@quantstack", + "ian-r-rose@coiled", + "jasongrout@databricks", + "jtpio@quantstack", + "saulshanabrook", + "telamonian@jpmorgan" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "amazonwebservices", "coiled", "databricks", + "datalayer", + "jpmorgan", "jupyterquantstack", "mongodb", "quantstack" ], + "_pop_contributor_orgs_raw": [ + "@Datalayer", + "@QuantStack", + "@coiled ", + "@databricks", + "@jupyter @quantstack", + "Amazon Web Services", + "JP Morgan", + "MongoDB" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 15.75, - "_pop_updated_issues_count": 777, - "_pop_closed_issues_count": 555, - "_pop_created_since_days": 80, + "_pop_commit_frequency": 16.13, + "_pop_updated_issues_count": 1286, + "_pop_closed_issues_count": 932, + "_pop_created_since_days": 82, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 53, - "_pop_recent_releases_estimated_tags": 5006, - "_pop_recent_releases_adjusted_count": 53, - "_pop_issue_count": 777.0, - "_pop_comment_count": 1800.0, + "_pop_recent_releases_count": 50, + "_pop_recent_releases_estimated_tags": 5044, + "_pop_recent_releases_adjusted_count": 50, + "_pop_issue_count": 1287.0, + "_pop_comment_count": 2291.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.3, - "_pop_dependents_count": 5103, - "_pop_score": 76.86, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 63.7, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jupyterlab/jupyterlab/master/README.md", "_readme_localurl": "jupyterlab~jupyterlab~README.md", @@ -6768,6 +9750,101 @@ "jupyterlab~jupyterlab~pyproject.toml" ] }, + { + "index": 314, + "category": "util", + "githuburl": "https://github.com/samuelcolvin/pydantic", + "featured": null, + "links": null, + "description": null, + "_repopath": "samuelcolvin/pydantic", + "_reponame": "pydantic", + "_stars": 12551, + "_forks": 1161, + "_watches": 89, + "_language": "Python", + "_homepage": "https://docs.pydantic.dev", + "_description": "pydantic: Data validation using Python type hints", + "_organization": "samuelcolvin", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-05-03T00:00:00.000Z", + "_age_weeks": 303, + "_stars_per_week": 41.42, + "_topics": [ + "validation", + "parsing", + "json-schema", + "python37", + "python38", + "pydantic", + "python39", + "python", + "hints", + "python310", + "python311" + ], + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 349, + "_pop_contributor_logins": [ + "Bobronium@pheon", + "Gr1N@pandadoc", + "PrettyWood@toucantoco", + "dependabot-preview[bot]", + "dependabot[bot]", + "dmontagu@formlogic", + "hramezani@crate", + "pyup-bot@pyupio", + "samuelcolvin@pydantic", + "tiangolo" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "crate", + "formlogic", + "pandadoc", + "pheon", + "pydantic", + "pyupio", + "toucantoco" + ], + "_pop_contributor_orgs_raw": [ + "@PandaDoc", + "@ToucanToco", + "@crate ", + "@pydantic", + "@pyupio", + "Formlogic", + "Pheon" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.13, + "_pop_updated_issues_count": 395, + "_pop_closed_issues_count": 237, + "_pop_created_since_days": 71, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 16, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 395.0, + "_pop_comment_count": 951.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 0, + "_pop_score": 57.76, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/samuelcolvin/pydantic/master/README.md", + "_readme_localurl": "samuelcolvin~pydantic~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/samuelcolvin/pydantic/master/pyproject.toml" + ], + "_requirements_localurls": [ + "samuelcolvin~pydantic~pyproject.toml" + ] + }, { "index": 127, "category": "ml", @@ -6777,10 +9854,18 @@ "description": null, "_repopath": "microsoft/nni", "_reponame": "nni", - "_stars": 12327, - "_forks": 1729, - "_watches": 282, - "_topics": [ + "_stars": 12525, + "_forks": 1749, + "_watches": 283, + "_language": "Python", + "_homepage": "https://nni.readthedocs.io", + "_description": "nni: An open source AutoML toolkit for automate machine learning lifecycle, including feature engineering, neural architecture search, model compression and hyper-parameter tuning.", + "_organization": "microsoft", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-06-01T00:00:00.000Z", + "_age_weeks": 246, + "_stars_per_week": 50.77, + "_topics": [ "automl", "deep-learning", "neural-architecture-search", @@ -6802,36 +9887,47 @@ "hyperparameter-tuning", "mlops" ], - "_language": "Python", - "_homepage": "https://nni.readthedocs.io", - "_description": "nni: An open source AutoML toolkit for automate machine learning lifecycle, including feature engineering, neural architecture search, model compression and hyper-parameter tuning.", - "_organization": "microsoft", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2018-06-01T00:00:00.000Z", - "_age_weeks": 237, - "_stars_per_week": 51.92, - "_pop_contributor_count": 185, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 186, + "_pop_contributor_logins": [ + "J-shang", + "Lijiaoa", + "QuanluZhang", + "SparkSnail", + "chicm-ms", + "liuzhe-lz", + "lvybriage@inspur", + "squirrelsc@microsoft", + "suiguoxin@msra", + "ultmaster@microsoft" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "microsoft" + "inspur", + "microsoft", + "msra" + ], + "_pop_contributor_orgs_raw": [ + "Inspur", + "MSRA", + "Microsoft" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 7.79, - "_pop_updated_issues_count": 212, - "_pop_closed_issues_count": 115, - "_pop_created_since_days": 55, + "_pop_commit_frequency": 7.02, + "_pop_updated_issues_count": 188, + "_pop_closed_issues_count": 101, + "_pop_created_since_days": 58, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, + "_pop_recent_releases_count": 4, "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 213.0, - "_pop_comment_count": 379.0, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 188.0, + "_pop_comment_count": 240.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 186, - "_pop_score": 55.62, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 48.02, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/microsoft/nni/master/README.md", "_readme_localurl": "microsoft~nni~README.md", @@ -6854,9 +9950,17 @@ "description": null, "_repopath": "flairnlp/flair", "_reponame": "flair", - "_stars": 12300, - "_forks": 1977, - "_watches": 206, + "_stars": 12498, + "_forks": 1997, + "_watches": 202, + "_language": "Python", + "_homepage": "", + "_description": "flair: A very simple framework for state-of-the-art Natural Language Processing (NLP)", + "_organization": "flairnlp", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-06-11T00:00:00.000Z", + "_age_weeks": 245, + "_stars_per_week": 50.95, "_topics": [ "pytorch", "nlp", @@ -6867,38 +9971,53 @@ "natural-language-processing", "machine-learning" ], - "_language": "Python", - "_homepage": "", - "_description": "flair: A very simple framework for state-of-the-art Natural Language Processing (NLP)", - "_organization": "flairnlp", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2018-06-11T00:00:00.000Z", - "_age_weeks": 236, - "_stars_per_week": 52.12, - "_pop_contributor_count": 235, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 240, + "_pop_contributor_logins": [ + "alanakbik", + "dobbersc@humboldt-universit\u00e4tzuberlin", + "helpmefindaname@researchindustrialsystemsengineering(rise)", + "leonweber@lmumunich", + "marcelmmm", + "pommedeterresautee@els-rdlefebvresarrut", + "stefan-it", + "tabergma@rasahq", + "whoisjones@humboldtuniversit\u00e4t", + "yosipk" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "els-rdlefebvresarrut", + "humboldt-universit\u00e4tzuberlin", "humboldtuniversit\u00e4t", + "lmumunich", "rasahq", "researchindustrialsystemsengineering(rise)" ], + "_pop_contributor_orgs_raw": [ + "@ELS-RD Lefebvre Sarrut", + "@RasaHQ ", + "Humboldt Universit\u00e4t", + "Humboldt-Universit\u00e4t zu Berlin", + "LMU Munich", + "Research Industrial Systems Engineering (RISE)" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 11.98, - "_pop_updated_issues_count": 195, - "_pop_closed_issues_count": 127, - "_pop_created_since_days": 55, + "_pop_commit_frequency": 11.46, + "_pop_updated_issues_count": 216, + "_pop_closed_issues_count": 164, + "_pop_created_since_days": 57, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 5, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 195.0, - "_pop_comment_count": 260.0, + "_pop_issue_count": 216.0, + "_pop_comment_count": 271.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 254, - "_pop_score": 57.84, + "_pop_dependents_count": 0, + "_pop_score": 50.97, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/flairnlp/flair/master/README.md", "_readme_localurl": "flairnlp~flair~README.md", @@ -6921,140 +10040,6 @@ "flairnlp~flair~Pipfile" ] }, - { - "index": 281, - "category": "util", - "githuburl": "https://github.com/squidfunk/mkdocs-material", - "featured": null, - "links": null, - "description": null, - "_repopath": "squidfunk/mkdocs-material", - "_reponame": "mkdocs-material", - "_stars": 12080, - "_forks": 2664, - "_watches": 110, - "_topics": [ - "mkdocs", - "theme", - "documentation", - "material-design", - "template", - "static" - ], - "_language": "TypeScript", - "_homepage": "https://squidfunk.github.io/mkdocs-material/", - "_description": "mkdocs-material: Documentation that simply works", - "_organization": "squidfunk", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2016-01-28T00:00:00.000Z", - "_age_weeks": 359, - "_stars_per_week": 33.6, - "_pop_contributor_count": 173, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "stylezen", - "trimble-oss" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 14.37, - "_pop_updated_issues_count": 245, - "_pop_closed_issues_count": 232, - "_pop_created_since_days": 84, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 58, - "_pop_recent_releases_estimated_tags": 43, - "_pop_recent_releases_adjusted_count": 58, - "_pop_issue_count": 245.0, - "_pop_comment_count": 619.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 13300, - "_pop_score": 70.98, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/README.md", - "_readme_localurl": "squidfunk~mkdocs-material~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/requirements.txt", - "https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/setup.py", - "https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/pyproject.toml" - ], - "_requirements_localurls": [ - "squidfunk~mkdocs-material~requirements.txt", - "squidfunk~mkdocs-material~setup.py", - "squidfunk~mkdocs-material~pyproject.toml" - ] - }, - { - "index": 575, - "category": "perf", - "githuburl": "https://github.com/pybind/pybind11", - "featured": null, - "links": null, - "description": null, - "_repopath": "pybind/pybind11", - "_reponame": "pybind11", - "_stars": 11971, - "_forks": 1736, - "_watches": 247, - "_topics": [ - "python", - "bindings" - ], - "_language": "C++", - "_homepage": "https://pybind11.readthedocs.io/", - "_description": "pybind11: Seamless operability between C++11 and Python", - "_organization": "pybind", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2015-07-05T00:00:00.000Z", - "_age_weeks": 389, - "_stars_per_week": 30.76, - "_pop_contributor_count": 312, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "epfl", - "lumicks", - "princetonuniversity" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.27, - "_pop_updated_issues_count": 230, - "_pop_closed_issues_count": 176, - "_pop_created_since_days": 91, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 230.0, - "_pop_comment_count": 886.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.9, - "_pop_dependents_count": 1836, - "_pop_score": 67.65, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pybind/pybind11/master/README.rst", - "_readme_localurl": "pybind~pybind11~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pybind/pybind11/master/setup.py", - "https://raw.githubusercontent.com/pybind/pybind11/master/pyproject.toml" - ], - "_requirements_localurls": [ - "pybind~pybind11~setup.py", - "pybind~pybind11~pyproject.toml" - ] - }, { "index": 52, "category": "graph", @@ -7064,9 +10049,17 @@ "description": null, "_repopath": "networkx/networkx", "_reponame": "networkx", - "_stars": 11960, - "_forks": 2803, - "_watches": 276, + "_stars": 12242, + "_forks": 2844, + "_watches": 279, + "_language": "Python", + "_homepage": "https://networkx.org", + "_description": "networkx: Network Analysis in Python", + "_organization": "networkx", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2010-09-06T00:00:00.000Z", + "_age_weeks": 650, + "_stars_per_week": 18.83, "_topics": [ "python", "complex-networks", @@ -7076,36 +10069,45 @@ "graph-generation", "graph-visualization" ], - "_language": "Python", - "_homepage": "https://networkx.org", - "_description": "networkx: Network Analysis in Python", - "_organization": "networkx", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2010-09-06T00:00:00.000Z", - "_age_weeks": 641, - "_stars_per_week": 18.66, - "_pop_contributor_count": 636, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 641, + "_pop_contributor_logins": [ + "MridulS", + "chebee7i", + "dschult", + "hagberg", + "jarrodmillman@ucberkeley", + "jfinkels", + "jtorrents", + "loicseguin", + "rossbar@caltech", + "ysitu" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "caltech", "ucberkeley" ], + "_pop_contributor_orgs_raw": [ + "Caltech", + "UC Berkeley" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 9.06, - "_pop_updated_issues_count": 390, - "_pop_closed_issues_count": 241, - "_pop_created_since_days": 150, + "_pop_commit_frequency": 9.12, + "_pop_updated_issues_count": 384, + "_pop_closed_issues_count": 236, + "_pop_created_since_days": 152, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 16, "_pop_recent_releases_estimated_tags": 7, "_pop_recent_releases_adjusted_count": 16, - "_pop_issue_count": 390.0, - "_pop_comment_count": 500.0, + "_pop_issue_count": 384.0, + "_pop_comment_count": 508.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 957, - "_pop_score": 65.75, + "_pop_dependents_count": 0, + "_pop_score": 55.43, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/networkx/networkx/master/README.rst", "_readme_localurl": "networkx~networkx~README.rst", @@ -7120,142 +10122,90 @@ ] }, { - "index": 314, - "category": "util", - "githuburl": "https://github.com/samuelcolvin/pydantic", + "index": 575, + "category": "perf", + "githuburl": "https://github.com/pybind/pybind11", "featured": null, "links": null, "description": null, - "_repopath": "samuelcolvin/pydantic", - "_reponame": "pydantic", - "_stars": 11924, - "_forks": 1113, - "_watches": 88, + "_repopath": "pybind/pybind11", + "_reponame": "pybind11", + "_stars": 12238, + "_forks": 1776, + "_watches": 246, + "_language": "C++", + "_homepage": "https://pybind11.readthedocs.io/", + "_description": "pybind11: Seamless operability between C++11 and Python", + "_organization": "pybind", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-07-05T00:00:00.000Z", + "_age_weeks": 398, + "_stars_per_week": 30.72, "_topics": [ - "validation", - "parsing", - "json-schema", - "python37", - "python38", - "pydantic", - "python39", "python", - "hints", - "python310", - "python311" + "bindings" ], - "_language": "Python", - "_homepage": "https://docs.pydantic.dev", - "_description": "pydantic: Data parsing and validation using Python type hints", - "_organization": "samuelcolvin", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2017-05-03T00:00:00.000Z", - "_age_weeks": 293, - "_stars_per_week": 40.6, - "_pop_contributor_count": 333, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 315, + "_pop_contributor_logins": [ + "Skylion007@facebookresearch", + "YannickJadoul@maxplanckinstituteforpsycholinguistics&vrijeuniversiteitbrussel", + "aldanor", + "dean0x7d@lumicks", + "dependabot[bot]", + "henryiii@princetonuniversity", + "jagerman", + "pre-commit-ci[bot]", + "rwgk@google", + "wjakob@epfl" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "pydantic", - "pyupio", - "toucantoco" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.4, - "_pop_updated_issues_count": 340, - "_pop_closed_issues_count": 204, - "_pop_created_since_days": 68, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 11, - "_pop_recent_releases_estimated_tags": 17, - "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 340.0, - "_pop_comment_count": 668.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 1774, - "_pop_score": 66.62, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/samuelcolvin/pydantic/master/README.md", - "_readme_localurl": "samuelcolvin~pydantic~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/samuelcolvin/pydantic/master/setup.py", - "https://raw.githubusercontent.com/samuelcolvin/pydantic/master/pyproject.toml" - ], - "_requirements_localurls": [ - "samuelcolvin~pydantic~setup.py", - "samuelcolvin~pydantic~pyproject.toml" - ] - }, - { - "index": 114, - "category": "nlp", - "githuburl": "https://github.com/allenai/allennlp", - "featured": null, - "links": null, - "description": null, - "_repopath": "allenai/allennlp", - "_reponame": "allennlp", - "_stars": 11332, - "_forks": 2231, - "_watches": 280, - "_topics": [ - "pytorch", - "nlp", - "natural-language-processing", - "deep-learning", - "data-science", - "python" + "epfl", + "facebookresearch", + "google", + "lumicks", + "maxplanckinstituteforpsycholinguistics&vrijeuniversiteitbrussel", + "princetonuniversity" ], - "_language": "Python", - "_homepage": "http://www.allennlp.org", - "_description": "allennlp: An open-source NLP research library, built on PyTorch.", - "_organization": "allenai", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-22T00:00:00.000Z", - "_created_at": "2017-05-15T00:00:00.000Z", - "_age_weeks": 292, - "_stars_per_week": 38.81, - "_pop_contributor_count": 265, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "microsoftsemanticmachines" + "_pop_contributor_orgs_raw": [ + "@facebookresearch ", + "@lumicks ", + "EPFL", + "Google", + "Max Planck Institute for Psycholinguistics & Vrije Universiteit Brussel", + "Princeton University" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.6, - "_pop_updated_issues_count": 36, - "_pop_closed_issues_count": 32, - "_pop_created_since_days": 68, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 12, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 36.0, - "_pop_comment_count": 98.0, + "_pop_commit_frequency": 4.71, + "_pop_updated_issues_count": 168, + "_pop_closed_issues_count": 111, + "_pop_created_since_days": 93, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 168.0, + "_pop_comment_count": 387.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.7, - "_pop_dependents_count": 331, - "_pop_score": 53.48, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/allenai/allennlp/master/README.md", - "_readme_localurl": "allenai~allennlp~README.md", + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 54.63, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pybind/pybind11/master/README.rst", + "_readme_localurl": "pybind~pybind11~README.rst", "_requirements_filenames": [ "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/allenai/allennlp/master/setup.py", - "https://raw.githubusercontent.com/allenai/allennlp/master/pyproject.toml" + "https://raw.githubusercontent.com/pybind/pybind11/master/setup.py", + "https://raw.githubusercontent.com/pybind/pybind11/master/pyproject.toml" ], "_requirements_localurls": [ - "allenai~allennlp~setup.py", - "allenai~allennlp~pyproject.toml" + "pybind~pybind11~setup.py", + "pybind~pybind11~pyproject.toml" ] }, { @@ -7267,9 +10217,17 @@ "description": null, "_repopath": "albumentations-team/albumentations", "_reponame": "albumentations", - "_stars": 11325, - "_forks": 1447, - "_watches": 124, + "_stars": 11585, + "_forks": 1472, + "_watches": 123, + "_language": "Python", + "_homepage": "https://albumentations.ai", + "_description": "albumentations: Fast image augmentation library and an easy-to-use wrapper around other libraries. Documentation: https://albumentations.ai/docs/ Paper about the library: https://www.mdpi.com/2078-2489/11/2/125", + "_organization": "albumentations-team", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-06-06T00:00:00.000Z", + "_age_weeks": 246, + "_stars_per_week": 47.09, "_topics": [ "image-augmentation", "machine-learning", @@ -7284,37 +10242,49 @@ "python", "object-detection" ], - "_language": "Python", - "_homepage": "https://albumentations.ai", - "_description": "albumentations: Fast image augmentation library and an easy-to-use wrapper around other libraries. Documentation: https://albumentations.ai/docs/ Paper about the library: https://www.mdpi.com/2078-2489/11/2/125", - "_organization": "albumentations-team", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-24T00:00:00.000Z", - "_created_at": "2018-06-06T00:00:00.000Z", - "_age_weeks": 236, - "_stars_per_week": 47.84, - "_pop_contributor_count": 123, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 126, + "_pop_contributor_logins": [ + "BloodAxe@deci-ai", + "Dipet", + "MichaelMonashev", + "albu", + "arsenyinfo", + "creafz", + "i-aki-y", + "ternaus@ternaus.com", + "vfdev-5@quansight", + "zakajd@eyeq" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "deci-ai", + "eyeq", + "quansight", "ternaus.com" ], + "_pop_contributor_orgs_raw": [ + "@Deci-AI ", + "@Quansight", + "EyeQ", + "Ternaus.com" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.29, - "_pop_updated_issues_count": 95, - "_pop_closed_issues_count": 40, - "_pop_created_since_days": 55, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 1.42, + "_pop_updated_issues_count": 83, + "_pop_closed_issues_count": 38, + "_pop_created_since_days": 57, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 95.0, + "_pop_issue_count": 83.0, "_pop_comment_count": 133.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 24, - "_pop_score": 45.97, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 44.86, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/albumentations-team/albumentations/master/README.md", "_readme_localurl": "albumentations-team~albumentations~README.md", @@ -7337,9 +10307,17 @@ "description": null, "_repopath": "nltk/nltk", "_reponame": "nltk", - "_stars": 11321, - "_forks": 2671, + "_stars": 11540, + "_forks": 2693, "_watches": 469, + "_language": "Python", + "_homepage": "https://www.nltk.org", + "_description": "NLTK Source", + "_organization": "nltk", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2009-09-07T00:00:00.000Z", + "_age_weeks": 702, + "_stars_per_week": 16.43, "_topics": [ "nltk", "python", @@ -7347,37 +10325,53 @@ "natural-language-processing", "machine-learning" ], - "_language": "Python", - "_homepage": "https://www.nltk.org", - "_description": "NLTK Source", - "_organization": "nltk", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2009-09-07T00:00:00.000Z", - "_age_weeks": 693, - "_stars_per_week": 16.34, - "_pop_contributor_count": 435, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 438, + "_pop_contributor_logins": [ + "alvations", + "dhgarrette@googleresearch", + "dimazest", + "fievelk", + "heatherleaf@universityofgothenburg", + "iliakur@datadog", + "kmike@zytedata,scrapinghub", + "stevenbird", + "tomaarsen@argilla", + "wroberts@humboldtuniversit\u00e4tzuberlin" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "argilla", + "datadog", "googleresearch", + "humboldtuniversit\u00e4tzuberlin", + "universityofgothenburg", "zytedata,scrapinghub" ], + "_pop_contributor_orgs_raw": [ + "@zytedata, @ScrapingHub", + "Argilla", + "Datadog", + "Google Research", + "Humboldt Universit\u00e4t zu Berlin", + "University of Gothenburg" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.29, - "_pop_updated_issues_count": 66, - "_pop_closed_issues_count": 52, - "_pop_created_since_days": 162, + "_pop_commit_frequency": 2.37, + "_pop_updated_issues_count": 95, + "_pop_closed_issues_count": 73, + "_pop_created_since_days": 164, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 66.0, - "_pop_comment_count": 154.0, + "_pop_issue_count": 95.0, + "_pop_comment_count": 167.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.3, - "_pop_dependents_count": 4758, - "_pop_score": 64.34, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 53.16, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/nltk/nltk/master/README.md", "_readme_localurl": "nltk~nltk~README.md", @@ -7391,77 +10385,6 @@ "nltk~nltk~setup.py" ] }, - { - "index": 346, - "category": "viz", - "githuburl": "https://github.com/gradio-app/gradio", - "featured": null, - "links": null, - "description": null, - "_repopath": "gradio-app/gradio", - "_reponame": "gradio", - "_stars": 11301, - "_forks": 717, - "_watches": 88, - "_topics": [ - "machine-learning", - "models", - "ui", - "ui-components", - "interface", - "python", - "data-science", - "data-visualization", - "deep-learning", - "data-analysis", - "gradio", - "gradio-interface", - "python-notebook", - "deploy" - ], - "_language": "HTML", - "_homepage": "http://www.gradio.app", - "_description": "gradio: Create UIs for your machine learning model in Python in 3 minutes", - "_organization": "gradio-app", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2018-12-19T00:00:00.000Z", - "_age_weeks": 208, - "_stars_per_week": 54.15, - "_pop_contributor_count": 118, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "pennstate" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 29.58, - "_pop_updated_issues_count": 698, - "_pop_closed_issues_count": 489, - "_pop_created_since_days": 49, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 75, - "_pop_recent_releases_estimated_tags": 19, - "_pop_recent_releases_adjusted_count": 75, - "_pop_issue_count": 698.0, - "_pop_comment_count": 1859.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.7, - "_pop_dependents_count": 794, - "_pop_score": 64.23, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/gradio-app/gradio/master/README.md", - "_readme_localurl": "gradio-app~gradio~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/gradio-app/gradio/master/setup.py" - ], - "_requirements_localurls": [ - "gradio-app~gradio~setup.py" - ] - }, { "index": 242, "category": "ml", @@ -7471,40 +10394,56 @@ "description": null, "_repopath": "deepmind/deepmind-research", "_reponame": "deepmind-research", - "_stars": 11213, - "_forks": 2300, - "_watches": 325, - "_topics": [], + "_stars": 11445, + "_forks": 2347, + "_watches": 329, "_language": "Jupyter Notebook", "_homepage": "", "_description": "deepmind-research: This repository contains implementations and illustrative code to accompany DeepMind publications", "_organization": "deepmind", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-10-24T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2019-01-15T00:00:00.000Z", - "_age_weeks": 204, - "_stars_per_week": 54.74, + "_age_weeks": 214, + "_stars_per_week": 53.45, + "_topics": [], + "_last_commit_date": "2023-01-31T00:00:00.000Z", "_pop_contributor_count": 91, + "_pop_contributor_logins": [ + "Augustin-Zidek", + "alimuldal@deepmind", + "altche@deepmind", + "alvarosg@deepmind", + "derpson@deepmind", + "diegolascasas@deepmind", + "dpfau", + "jsspencer", + "wanglouis49", + "yilei" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "deepmind" ], + "_pop_contributor_orgs_raw": [ + "@deepmind", + "DeepMind" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.77, - "_pop_updated_issues_count": 37, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 48, - "_pop_updated_since_days": 2, + "_pop_commit_frequency": 0.67, + "_pop_updated_issues_count": 23, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 50, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 37.0, - "_pop_comment_count": 26.0, + "_pop_issue_count": 23.0, + "_pop_comment_count": 20.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 7, - "_pop_score": 33.55, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 30.59, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/deepmind/deepmind-research/master/README.md", "_readme_localurl": "deepmind~deepmind-research~README.md", @@ -7513,272 +10452,92 @@ "_requirements_localurls": [] }, { - "index": 320, - "category": "gui", - "githuburl": "https://github.com/pysimplegui/pysimplegui", - "featured": 1.0, + "index": 114, + "category": "nlp", + "githuburl": "https://github.com/allenai/allennlp", + "featured": null, "links": null, "description": null, - "_repopath": "pysimplegui/pysimplegui", - "_reponame": "PySimpleGUI", - "_stars": 10984, - "_forks": 1632, - "_watches": 220, + "_repopath": "allenai/allennlp", + "_reponame": "allennlp", + "_stars": 11404, + "_forks": 2241, + "_watches": 281, + "_language": "Python", + "_homepage": "http://www.allennlp.org", + "_description": "allennlp: An open-source NLP research library, built on PyTorch.", + "_organization": "allenai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-05-15T00:00:00.000Z", + "_age_weeks": 301, + "_stars_per_week": 37.85, "_topics": [ - "pysimplegui", - "gui-framework", - "python", - "tkinter", - "tkinter-python", - "tkinter-gui", - "wxpython", - "pyside2", - "qt", - "qt-gui", - "remi", - "gui", - "gui-window", - "gui-programming", - "datavisualization", - "games", - "beginner-friendly", - "systemtray", - "python-gui", - "user-interface" + "pytorch", + "nlp", + "natural-language-processing", + "deep-learning", + "data-science", + "python" ], - "_language": "Python", - "_homepage": "", - "_description": "PySimpleGUI: Launched in 2018. It's 2022 and PySimpleGUI is actively developed & supported. Create complex windows simply. Supports tkinter, Qt, WxPython, Remi (in browser). Create GUI applications trivially with a full set of widgets. Multi-Window applications are also simple. 3.4 to 3.11 supported. 325+ Demo programs & Cookbook for rapid start. Extensive documentation. Examples for Machine Learning(OpenCV Integration, Chatterbot), Rainmeter-like Desktop Widgets, Matplotlib + Pyplot integration, add GUI to command line scripts, PDF & Image Viewer. For both beginning and advanced programmers. docs - PySimpleGUI.org GitHub - PySimpleGUI.com. The Minecraft of GUIs - simple to complex... does them all.", - "_organization": "pysimplegui", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2018-07-11T00:00:00.000Z", - "_age_weeks": 231, - "_stars_per_week": 47.4, - "_pop_contributor_count": 18, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "netperfect", - "pysimplegui" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 9.48, - "_pop_updated_issues_count": 242, - "_pop_closed_issues_count": 202, - "_pop_created_since_days": 54, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 242.0, - "_pop_comment_count": 689.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.8, - "_pop_dependents_count": 67, - "_pop_score": 51.25, - "_readme_filename": "readme.md", - "_readme_giturl": "https://raw.githubusercontent.com/pysimplegui/pysimplegui/master/readme.md", - "_readme_localurl": "pysimplegui~pysimplegui~readme.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pysimplegui/pysimplegui/master/setup.py" - ], - "_requirements_localurls": [ - "pysimplegui~pysimplegui~setup.py" - ] - }, - { - "index": 190, - "category": "ml-dl", - "githuburl": "https://github.com/dmlc/dgl", - "featured": null, - "links": null, - "description": null, - "_repopath": "dmlc/dgl", - "_reponame": "dgl", - "_stars": 10871, - "_forks": 2643, - "_watches": 174, - "_topics": [ - "deep-learning", - "graph-neural-networks" + "_last_commit_date": "2022-11-22T00:00:00.000Z", + "_pop_contributor_count": 265, + "_pop_contributor_logins": [ + "DeNeutoy", + "brendan-ai2@ai2", + "bryant1410@michigannlp", + "dependabot[bot]", + "dirkgr", + "epwalsh", + "joelgrus", + "matt-gardner@microsoftsemanticmachines", + "nelson-liu@stanfordnlp", + "schmmd" ], - "_language": "Python", - "_homepage": "http://dgl.ai", - "_description": "dgl: Python package built to ease deep learning on graph, on top of existing DL frameworks.", - "_organization": "dmlc", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2018-04-20T00:00:00.000Z", - "_age_weeks": 243, - "_stars_per_week": 44.66, - "_pop_contributor_count": 240, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "aws", - "awsailabshanghai", - "awsshanghai", - "newyorkuniversity", - "tensorchord" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 11.92, - "_pop_updated_issues_count": 617, - "_pop_closed_issues_count": 452, - "_pop_created_since_days": 57, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 7, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 615.0, - "_pop_comment_count": 3148.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 5.1, - "_pop_dependents_count": 47, - "_pop_score": 65.25, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/dmlc/dgl/master/README.md", - "_readme_localurl": "dmlc~dgl~README.md", - "_requirements_filenames": [ - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/dmlc/dgl/master/pyproject.toml" - ], - "_requirements_localurls": [ - "dmlc~dgl~pyproject.toml" - ] - }, - { - "index": 122, - "category": "data", - "githuburl": "https://github.com/iterative/dvc", - "featured": null, - "links": null, - "description": null, - "_repopath": "iterative/dvc", - "_reponame": "dvc", - "_stars": 10804, - "_forks": 1010, - "_watches": 136, - "_topics": [ - "data-science", - "machine-learning", - "reproducibility", - "data-version-control", - "git", - "developer-tools", - "collaboration", - "ai", - "python", - "hacktoberfest" + "ai2", + "michigannlp", + "microsoftsemanticmachines", + "stanfordnlp" ], - "_language": "Python", - "_homepage": "https://dvc.org", - "_description": "dvc: \ud83e\udd89Data Version Control | Git for Data & Models | ML Experiments Management", - "_organization": "iterative", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2017-03-04T00:00:00.000Z", - "_age_weeks": 302, - "_stars_per_week": 35.74, - "_pop_contributor_count": 276, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "iterative", - "iterative.ai" + "_pop_contributor_orgs_raw": [ + "@MichiganNLP", + "@stanfordnlp", + "AI2", + "Microsoft Semantic Machines" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 19.79, - "_pop_updated_issues_count": 520, - "_pop_closed_issues_count": 371, + "_pop_commit_frequency": 1.12, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 6, "_pop_created_since_days": 70, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 54, - "_pop_recent_releases_estimated_tags": 73, - "_pop_recent_releases_adjusted_count": 54, - "_pop_issue_count": 519.0, - "_pop_comment_count": 1066.0, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 8.0, + "_pop_comment_count": 12.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 3399, - "_pop_score": 70.22, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/iterative/dvc/master/README.rst", - "_readme_localurl": "iterative~dvc~README.rst", + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 41.6, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/allenai/allennlp/master/README.md", + "_readme_localurl": "allenai~allennlp~README.md", "_requirements_filenames": [ "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/iterative/dvc/master/setup.py", - "https://raw.githubusercontent.com/iterative/dvc/master/pyproject.toml" + "https://raw.githubusercontent.com/allenai/allennlp/master/setup.py", + "https://raw.githubusercontent.com/allenai/allennlp/master/pyproject.toml" ], "_requirements_localurls": [ - "iterative~dvc~setup.py", - "iterative~dvc~pyproject.toml" + "allenai~allennlp~setup.py", + "allenai~allennlp~pyproject.toml" ] }, - { - "index": 1, - "category": "data", - "githuburl": "https://github.com/apache/arrow", - "featured": null, - "links": null, - "description": null, - "_repopath": "apache/arrow", - "_reponame": "arrow", - "_stars": 10801, - "_forks": 2663, - "_watches": 345, - "_topics": [ - "arrow" - ], - "_language": "C++", - "_homepage": "https://arrow.apache.org/", - "_description": "arrow: Apache Arrow is a multi-language toolbox for accelerated data interchange and in-memory processing", - "_organization": "apache", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2016-02-17T00:00:00.000Z", - "_age_weeks": 356, - "_stars_per_week": 30.28, - "_pop_contributor_count": 976, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "clear-code", - "quantco", - "voltron-data/ursa-computing", - "voltrondata" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 41.44, - "_pop_updated_issues_count": 1046, - "_pop_closed_issues_count": 764, - "_pop_created_since_days": 83, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 10, - "_pop_issue_count": 1046.0, - "_pop_comment_count": 5523.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 5.3, - "_pop_dependents_count": 15514, - "_pop_score": 82.95, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/apache/arrow/master/README.md", - "_readme_localurl": "apache~arrow~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 120, "category": "ml-ops", @@ -7788,9 +10547,17 @@ "description": null, "_repopath": "prefecthq/prefect", "_reponame": "prefect", - "_stars": 10681, - "_forks": 1084, - "_watches": 152, + "_stars": 11345, + "_forks": 1128, + "_watches": 154, + "_language": "Python", + "_homepage": "https://prefect.io", + "_description": "prefect: The easiest way to coordinate your dataflow", + "_organization": "prefecthq", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-06-29T00:00:00.000Z", + "_age_weeks": 242, + "_stars_per_week": 46.74, "_topics": [ "python", "workflow", @@ -7808,37 +10575,47 @@ "observability", "pipeline" ], - "_language": "Python", - "_homepage": "https://prefect.io", - "_description": "prefect: The easiest way to coordinate your dataflow", - "_organization": "prefecthq", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2018-06-29T00:00:00.000Z", - "_age_weeks": 233, - "_stars_per_week": 45.76, - "_pop_contributor_count": 100, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 128, + "_pop_contributor_logins": [ + "anticorrelator", + "cicdw@prefecthq", + "jlowin@prefecthq", + "madkinsz@prefect", + "peytonrunyan", + "pleek91", + "stackoverfloweth", + "tpdorsey@prefect.io", + "zangell44@prefect", + "znicholasbrown" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "prefect", + "prefect.io", "prefecthq" ], + "_pop_contributor_orgs_raw": [ + "@PrefectHQ ", + "Prefect", + "Prefect.io" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 131.9, - "_pop_updated_issues_count": 1305, - "_pop_closed_issues_count": 920, - "_pop_created_since_days": 54, + "_pop_commit_frequency": 106.08, + "_pop_updated_issues_count": 1372, + "_pop_closed_issues_count": 1022, + "_pop_created_since_days": 57, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 47, + "_pop_recent_releases_count": 55, "_pop_recent_releases_estimated_tags": 36, - "_pop_recent_releases_adjusted_count": 47, - "_pop_issue_count": 1308.0, - "_pop_comment_count": 2629.0, + "_pop_recent_releases_adjusted_count": 55, + "_pop_issue_count": 1370.0, + "_pop_comment_count": 2479.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 362, - "_pop_score": 67.08, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 58.17, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/prefecthq/prefect/master/README.md", "_readme_localurl": "prefecthq~prefect~README.md", @@ -7858,6 +10635,104 @@ "prefecthq~prefect~pyproject.toml" ] }, + { + "index": 320, + "category": "gui", + "githuburl": "https://github.com/pysimplegui/pysimplegui", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "pysimplegui/pysimplegui", + "_reponame": "PySimpleGUI", + "_stars": 11261, + "_forks": 1674, + "_watches": 218, + "_language": "Python", + "_homepage": "", + "_description": "PySimpleGUI: Launched in 2018. It's 2023 and PySimpleGUI is actively developed & supported. Create complex windows simply. Supports tkinter, Qt, WxPython, Remi (in browser). Create GUI applications trivially with a full set of widgets. Multi-Window applications are also simple. 3.4 to 3.11 supported. 325+ Demo programs & Cookbook for rapid start. Extensive docs", + "_organization": "pysimplegui", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-07-11T00:00:00.000Z", + "_age_weeks": 241, + "_stars_per_week": 46.73, + "_topics": [ + "pysimplegui", + "gui-framework", + "python", + "tkinter", + "tkinter-python", + "tkinter-gui", + "wxpython", + "pyside2", + "qt", + "qt-gui", + "remi", + "gui", + "gui-window", + "gui-programming", + "datavisualization", + "games", + "beginner-friendly", + "systemtray", + "python-gui", + "user-interface" + ], + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 18, + "_pop_contributor_logins": [ + "AltoRetrato", + "Chr0nicT", + "JorjMcKie", + "MikeTheWatchGuy", + "PySimpleGUI@pysimplegui", + "cclauss@christianclauss", + "deajan@netperfect", + "jackyOO7", + "jason990420", + "mikeckennedy@talkpython" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "christianclauss", + "netperfect", + "pysimplegui", + "talkpython" + ], + "_pop_contributor_orgs_raw": [ + "Christian Clauss", + "NetPerfect", + "PySimpleGUI", + "Talk Python" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 9.0, + "_pop_updated_issues_count": 235, + "_pop_closed_issues_count": 204, + "_pop_created_since_days": 56, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 235.0, + "_pop_comment_count": 746.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.2, + "_pop_dependents_count": 0, + "_pop_score": 46.61, + "_readme_filename": "readme.md", + "_readme_giturl": "https://raw.githubusercontent.com/pysimplegui/pysimplegui/master/readme.md", + "_readme_localurl": "pysimplegui~pysimplegui~readme.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pysimplegui/pysimplegui/master/setup.py" + ], + "_requirements_localurls": [ + "pysimplegui~pysimplegui~setup.py" + ] + }, { "index": 192, "category": "template", @@ -7867,9 +10742,17 @@ "description": null, "_repopath": "tiangolo/full-stack-fastapi-postgresql", "_reponame": "full-stack-fastapi-postgresql", - "_stars": 10628, - "_forks": 1932, - "_watches": 172, + "_stars": 11160, + "_forks": 2035, + "_watches": 182, + "_language": "Python", + "_homepage": null, + "_description": "full-stack-fastapi-postgresql: Full stack, modern web application generator. Using FastAPI, PostgreSQL as database, Docker, automatic HTTPS and more.", + "_organization": "tiangolo", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-02-23T00:00:00.000Z", + "_age_weeks": 208, + "_stars_per_week": 53.51, "_topics": [ "python", "python3", @@ -7892,39 +10775,51 @@ "openapi3", "pgadmin" ], - "_language": "Python", - "_homepage": null, - "_description": "full-stack-fastapi-postgresql: Full stack, modern web application generator. Using FastAPI, PostgreSQL as database, Docker, automatic HTTPS and more.", - "_organization": "tiangolo", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2020-06-05T00:00:00.000Z", - "_created_at": "2019-02-23T00:00:00.000Z", - "_age_weeks": 199, - "_stars_per_week": 53.33, "_pop_contributor_count": 17, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "RCheese@messagg", + "abhisheksms", + "airibarne@dribiadataresearch", + "ashears", + "br3ndonland@intelliatherapeutics", + "daniel-butler", + "dmontagu@formlogic", + "ebreton@cortexia", + "jcaguirre89", + "tiangolo" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "cortexia", + "dribiadataresearch", "formlogic", "intelliatherapeutics", "messagg" ], + "_pop_contributor_orgs_raw": [ + "Cortexia", + "Dribia Data Research", + "Formlogic", + "Intellia Therapeutics", + "MessAgg" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 152, - "_pop_closed_issues_count": 51, - "_pop_created_since_days": 46, - "_pop_updated_since_days": 31, + "_pop_updated_issues_count": 55, + "_pop_closed_issues_count": 19, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 33, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 152.0, - "_pop_comment_count": 84.0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 55.0, + "_pop_comment_count": 40.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 44, - "_pop_score": 33.81, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 26.06, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tiangolo/full-stack-fastapi-postgresql/master/README.md", "_readme_localurl": "tiangolo~full-stack-fastapi-postgresql~README.md", @@ -7933,186 +10828,499 @@ "_requirements_localurls": [] }, { - "index": 79, - "category": "ml", - "githuburl": "https://github.com/scipy/scipy", + "index": 1, + "category": "data", + "githuburl": "https://github.com/apache/arrow", "featured": null, "links": null, "description": null, - "_repopath": "scipy/scipy", - "_reponame": "scipy", - "_stars": 10608, - "_forks": 4514, - "_watches": 341, + "_repopath": "apache/arrow", + "_reponame": "arrow", + "_stars": 11126, + "_forks": 2745, + "_watches": 343, + "_language": "C++", + "_homepage": "https://arrow.apache.org/", + "_description": "arrow: Apache Arrow is a multi-language toolbox for accelerated data interchange and in-memory processing", + "_organization": "apache", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-02-17T00:00:00.000Z", + "_age_weeks": 366, + "_stars_per_week": 30.4, "_topics": [ - "python", - "scipy", - "algorithms", - "closember", - "scientific-computing" + "arrow" ], - "_language": "Python", - "_homepage": "https://scipy.org", - "_description": "SciPy library main repository", - "_organization": "scipy", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2011-03-09T00:00:00.000Z", - "_age_weeks": 614, - "_stars_per_week": 17.26, - "_pop_contributor_count": 1401, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 1017, + "_pop_contributor_logins": [ + "andygrove@nvidia", + "bkietz@voltrondata", + "jorisvandenbossche", + "kou@clear-code", + "kszucs@voltron-data/ursa-computing", + "lidavidm", + "nealrichardson", + "pitrou", + "wesm@voltrondata", + "xhochy@quantco" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "quansight" + "clear-code", + "nvidia", + "quantco", + "voltron-data/ursa-computing", + "voltrondata" + ], + "_pop_contributor_orgs_raw": [ + "@Quantco ", + "@clear-code", + "@voltron-data / @ursa-computing", + "@voltrondata", + "@voltrondata ", + "NVIDIA" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 30.5, - "_pop_updated_issues_count": 1144, - "_pop_closed_issues_count": 738, - "_pop_created_since_days": 143, + "_pop_commit_frequency": 41.1, + "_pop_updated_issues_count": 12762, + "_pop_closed_issues_count": 11288, + "_pop_created_since_days": 85, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 13, - "_pop_recent_releases_estimated_tags": 13, - "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 1144.0, - "_pop_comment_count": 2983.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 12762.0, + "_pop_comment_count": 30000.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.6, - "_pop_dependents_count": 7282, - "_pop_score": 76.57, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/scipy/scipy/master/README.rst", - "_readme_localurl": "scipy~scipy~README.rst", + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 0, + "_pop_score": 66.46, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/apache/arrow/master/README.md", + "_readme_localurl": "apache~arrow~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 190, + "category": "ml-dl", + "githuburl": "https://github.com/dmlc/dgl", + "featured": null, + "links": null, + "description": null, + "_repopath": "dmlc/dgl", + "_reponame": "dgl", + "_stars": 11119, + "_forks": 2708, + "_watches": 174, + "_language": "Python", + "_homepage": "http://dgl.ai", + "_description": "dgl: Python package built to ease deep learning on graph, on top of existing DL frameworks.", + "_organization": "dmlc", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-04-20T00:00:00.000Z", + "_age_weeks": 252, + "_stars_per_week": 44.0, + "_topics": [ + "deep-learning", + "graph-neural-networks" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 249, + "_pop_contributor_logins": [ + "BarclayII@awsshanghai", + "Rhett-Ying", + "VoVAllen@tensorchord", + "aksnzhy", + "classicsong@amazon", + "frozenbugs@amazon", + "jermainewang@newyorkuniversity", + "mufeili@awsailabshanghai", + "yzh119@uwsampl", + "zheng-da@aws" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "amazon", + "aws", + "awsailabshanghai", + "awsshanghai", + "newyorkuniversity", + "tensorchord", + "uwsampl" + ], + "_pop_contributor_orgs_raw": [ + "@tensorchord ", + "@uwsampl ", + "AWS", + "AWS AI Lab Shanghai", + "AWS Shanghai", + "Amazon", + "New York University" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 14.0, + "_pop_updated_issues_count": 600, + "_pop_closed_issues_count": 451, + "_pop_created_since_days": 59, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 600.0, + "_pop_comment_count": 2587.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 4.3, + "_pop_dependents_count": 0, + "_pop_score": 59.94, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/dmlc/dgl/master/README.md", + "_readme_localurl": "dmlc~dgl~README.md", "_requirements_filenames": [ - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/scipy/scipy/master/setup.py", - "https://raw.githubusercontent.com/scipy/scipy/master/pyproject.toml" + "https://raw.githubusercontent.com/dmlc/dgl/master/pyproject.toml" ], "_requirements_localurls": [ - "scipy~scipy~setup.py", - "scipy~scipy~pyproject.toml" + "dmlc~dgl~pyproject.toml" ] }, { - "index": 11, - "category": "perf", - "githuburl": "https://github.com/dask/dask", + "index": 122, + "category": "data", + "githuburl": "https://github.com/iterative/dvc", "featured": null, "links": null, "description": null, - "_repopath": "dask/dask", - "_reponame": "dask", - "_stars": 10578, - "_forks": 1575, - "_watches": 216, + "_repopath": "iterative/dvc", + "_reponame": "dvc", + "_stars": 11109, + "_forks": 1031, + "_watches": 135, + "_language": "Python", + "_homepage": "https://dvc.org", + "_description": "dvc: \ud83e\udd89Data Version Control | Git for Data & Models | ML Experiments Management", + "_organization": "iterative", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-03-04T00:00:00.000Z", + "_age_weeks": 311, + "_stars_per_week": 35.65, "_topics": [ - "dask", + "data-science", + "machine-learning", + "reproducibility", + "data-version-control", + "git", + "developer-tools", + "collaboration", + "ai", "python", - "pydata", - "numpy", - "pandas", - "scikit-learn", - "scipy" + "hacktoberfest" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 281, + "_pop_contributor_logins": [ + "Suor", + "casperdcl", + "daavoo@iterative", + "dependabot[bot]", + "dmpetrov@iterative.ai", + "efiop@iterative", + "karajan1001", + "pared", + "pmrowla", + "skshetry" ], - "_language": "Python", - "_homepage": "https://dask.org", - "_description": "dask: Parallel computing with task scheduling", - "_organization": "dask", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2015-01-04T00:00:00.000Z", - "_age_weeks": 415, - "_stars_per_week": 25.48, - "_pop_contributor_count": 570, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "coiled", - "voltrondata" + "iterative", + "iterative.ai" + ], + "_pop_contributor_orgs_raw": [ + "@iterative", + "@iterative ", + "iterative.ai" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 11.13, - "_pop_updated_issues_count": 346, - "_pop_closed_issues_count": 211, - "_pop_created_since_days": 97, + "_pop_commit_frequency": 21.83, + "_pop_updated_issues_count": 680, + "_pop_closed_issues_count": 495, + "_pop_created_since_days": 73, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 32, - "_pop_recent_releases_adjusted_count": 32, - "_pop_issue_count": 346.0, - "_pop_comment_count": 856.0, + "_pop_recent_releases_count": 65, + "_pop_recent_releases_estimated_tags": 72, + "_pop_recent_releases_adjusted_count": 65, + "_pop_issue_count": 680.0, + "_pop_comment_count": 1563.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 3107, - "_pop_score": 71.78, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 56.6, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/dask/dask/master/README.rst", - "_readme_localurl": "dask~dask~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/iterative/dvc/master/README.rst", + "_readme_localurl": "iterative~dvc~README.rst", "_requirements_filenames": [ - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/dask/dask/master/setup.py" + "https://raw.githubusercontent.com/iterative/dvc/master/pyproject.toml" ], "_requirements_localurls": [ - "dask~dask~setup.py" + "iterative~dvc~pyproject.toml" ] }, { - "index": 218, - "category": "ml", - "githuburl": "https://github.com/spotify/annoy", + "index": 759, + "category": "diffusion", + "githuburl": "https://github.com/invoke-ai/invokeai", "featured": null, "links": null, "description": null, - "_repopath": "spotify/annoy", - "_reponame": "annoy", - "_stars": 10574, - "_forks": 1066, - "_watches": 325, + "_repopath": "invoke-ai/invokeai", + "_reponame": "InvokeAI", + "_stars": 11021, + "_forks": 1268, + "_watches": 127, + "_language": "Jupyter Notebook", + "_homepage": "https://invoke-ai.github.io/InvokeAI/", + "_description": "InvokeAI is a leading creative engine for Stable Diffusion models, empowering professionals, artists, and enthusiasts to generate and create visual media using the latest AI-driven technologies. The solution offers an industry leading WebUI, supports terminal use through a CLI, and serves as the foundation for multiple commercial products.", + "_organization": "invoke-ai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-08-17T00:00:00.000Z", + "_age_weeks": 27, + "_stars_per_week": 408.19, "_topics": [ - "c-plus-plus", - "python", - "nearest-neighbor-search", - "locality-sensitive-hashing", - "approximate-nearest-neighbor-search", - "golang", - "lua" - ], - "_language": "C++", - "_homepage": null, - "_description": "annoy: Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk", - "_organization": "spotify", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-10-27T00:00:00.000Z", - "_created_at": "2013-04-01T00:00:00.000Z", - "_age_weeks": 507, - "_stars_per_week": 20.86, + "ai-art", + "artificial-intelligence", + "generative-art", + "image-generation", + "img2img", + "inpainting", + "latent-diffusion", + "linux", + "macos", + "outpainting", + "txt2img", + "windows", + "stable-diffusion" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 177, + "_pop_contributor_logins": [ + "Oceanswave@baristalabs", + "blessedcoolant", + "cmdr2", + "damian0815", + "ebr@brodsky.dev", + "keturn", + "lstein@ontarioinstituteforcancerresearch", + "mauwii@ares-consulting", + "psychedelicious", + "santisbon" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "ares-consulting", + "baristalabs", + "brodsky.dev", + "ontarioinstituteforcancerresearch" + ], + "_pop_contributor_orgs_raw": [ + "@ARES-Consulting", + "@BaristaLabs ", + "Ontario Institute for Cancer Research", + "brodsky.dev" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 47.02, + "_pop_updated_issues_count": 1130, + "_pop_closed_issues_count": 713, + "_pop_created_since_days": 6, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 176, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 1130.0, + "_pop_comment_count": 3239.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.9, + "_pop_dependents_count": 0, + "_pop_score": 53.58, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/invoke-ai/invokeai/master/README.md", + "_readme_localurl": "invoke-ai~invokeai~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/invoke-ai/invokeai/master/pyproject.toml" + ], + "_requirements_localurls": [ + "invoke-ai~invokeai~pyproject.toml" + ] + }, + { + "index": 79, + "category": "ml", + "githuburl": "https://github.com/scipy/scipy", + "featured": null, + "links": null, + "description": null, + "_repopath": "scipy/scipy", + "_reponame": "scipy", + "_stars": 10859, + "_forks": 4598, + "_watches": 344, + "_language": "Python", + "_homepage": "https://scipy.org", + "_description": "SciPy library main repository", + "_organization": "scipy", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2011-03-09T00:00:00.000Z", + "_age_weeks": 624, + "_stars_per_week": 17.4, + "_topics": [ + "python", + "scipy", + "algorithms", + "closember", + "scientific-computing" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 1425, + "_pop_contributor_logins": [ + "WarrenWeckesser", + "alexbrc", + "andyfaff", + "cournape@mercarijp", + "ev-br", + "mdhaber", + "pv", + "rgommers@quansight", + "teoliphant@quansight,openteams", + "tylerjereddy@lanl" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "lanl", + "mercarijp", + "quansight", + "quansight,openteams" + ], + "_pop_contributor_orgs_raw": [ + "LANL", + "Mercari JP", + "Quansight", + "Quansight, OpenTeams" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 29.85, + "_pop_updated_issues_count": 1113, + "_pop_closed_issues_count": 685, + "_pop_created_since_days": 146, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 1114.0, + "_pop_comment_count": 3048.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 0, + "_pop_score": 65.05, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/scipy/scipy/master/README.rst", + "_readme_localurl": "scipy~scipy~README.rst", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/scipy/scipy/master/setup.py", + "https://raw.githubusercontent.com/scipy/scipy/master/pyproject.toml" + ], + "_requirements_localurls": [ + "scipy~scipy~setup.py", + "scipy~scipy~pyproject.toml" + ] + }, + { + "index": 218, + "category": "ml", + "githuburl": "https://github.com/spotify/annoy", + "featured": null, + "links": null, + "description": null, + "_repopath": "spotify/annoy", + "_reponame": "annoy", + "_stars": 10785, + "_forks": 1072, + "_watches": 325, + "_language": "C++", + "_homepage": null, + "_description": "annoy: Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk", + "_organization": "spotify", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2013-04-01T00:00:00.000Z", + "_age_weeks": 516, + "_stars_per_week": 20.89, + "_topics": [ + "c-plus-plus", + "python", + "nearest-neighbor-search", + "locality-sensitive-hashing", + "approximate-nearest-neighbor-search", + "golang", + "lua" + ], + "_last_commit_date": "2022-10-27T00:00:00.000Z", "_pop_contributor_count": 82, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "LTLA@genentech", + "ReneHollander@google", + "berkerpeksag", + "chdsbd", + "eddelbuettel", + "erikbern", + "novoselrok", + "psobot@spotify", + "starius", + "tjrileywisc" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google" + "genentech", + "google", + "spotify" + ], + "_pop_contributor_orgs_raw": [ + "@Genentech", + "@spotify", + "Google" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.12, - "_pop_updated_issues_count": 17, - "_pop_closed_issues_count": 9, - "_pop_created_since_days": 118, - "_pop_updated_since_days": 2, + "_pop_updated_issues_count": 15, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 120, + "_pop_updated_since_days": 4, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 17.0, - "_pop_comment_count": 28.0, + "_pop_issue_count": 15.0, + "_pop_comment_count": 34.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 66, - "_pop_score": 41.25, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 36.67, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/spotify/annoy/master/README.rst", "_readme_localurl": "spotify~annoy~README.rst", @@ -8127,117 +11335,257 @@ ] }, { - "index": 857, - "category": "viz", - "githuburl": "https://github.com/visgl/deck.gl", + "index": 11, + "category": "perf", + "githuburl": "https://github.com/dask/dask", "featured": null, "links": null, "description": null, - "_repopath": "visgl/deck.gl", - "_reponame": "deck.gl", - "_stars": 10477, - "_forks": 1892, - "_watches": 1730, + "_repopath": "dask/dask", + "_reponame": "dask", + "_stars": 10752, + "_forks": 1595, + "_watches": 215, + "_language": "Python", + "_homepage": "https://dask.org", + "_description": "dask: Parallel computing with task scheduling", + "_organization": "dask", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-01-04T00:00:00.000Z", + "_age_weeks": 424, + "_stars_per_week": 25.33, "_topics": [ - "webgl", - "data-visualization", - "javascript", - "visualization", + "dask", "python", - "geospatial-analysis", - "maps" + "pydata", + "numpy", + "pandas", + "scikit-learn", + "scipy" ], - "_language": "JavaScript", - "_homepage": "https://deck.gl", - "_description": "deck.gl: WebGL2 powered visualization framework", - "_organization": "visgl", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2015-12-15T00:00:00.000Z", - "_age_weeks": 365, - "_stars_per_week": 28.64, - "_pop_contributor_count": 209, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 577, + "_pop_contributor_logins": [ + "TomAugspurger@microsoft", + "cowlicks", + "jakirkham", + "jcrist@voltrondata", + "jrbourbeau@coiled", + "jsignell@azavea", + "martindurant@anaconda", + "mrocklin@coiled", + "rjzamora@nvidia", + "sinhrks" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "foursquare" + "anaconda", + "azavea", + "coiled", + "microsoft", + "nvidia", + "voltrondata" + ], + "_pop_contributor_orgs_raw": [ + "@NVIDIA", + "@azavea", + "@coiled ", + "@microsoft", + "@voltrondata", + "Anaconda, inc." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 7.31, - "_pop_updated_issues_count": 185, - "_pop_closed_issues_count": 127, - "_pop_created_since_days": 85, + "_pop_commit_frequency": 10.5, + "_pop_updated_issues_count": 377, + "_pop_closed_issues_count": 210, + "_pop_created_since_days": 99, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 59, - "_pop_recent_releases_estimated_tags": 74, - "_pop_recent_releases_adjusted_count": 59, - "_pop_issue_count": 186.0, - "_pop_comment_count": 250.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 32, + "_pop_recent_releases_adjusted_count": 32, + "_pop_issue_count": 377.0, + "_pop_comment_count": 785.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 273, - "_pop_score": 59.15, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 0, + "_pop_score": 61.05, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/dask/dask/master/README.rst", + "_readme_localurl": "dask~dask~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/dask/dask/master/setup.py" + ], + "_requirements_localurls": [ + "dask~dask~setup.py" + ] + }, + { + "index": 780, + "category": "diffusion", + "githuburl": "https://github.com/huggingface/diffusers", + "featured": null, + "links": null, + "description": null, + "_repopath": "huggingface/diffusers", + "_reponame": "diffusers", + "_stars": 10685, + "_forks": 2095, + "_watches": 117, + "_language": "Python", + "_homepage": "https://huggingface.co/docs/diffusers", + "_description": "\ud83e\udd17 Diffusers: State-of-the-art diffusion models for image and audio generation in PyTorch", + "_organization": "huggingface", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-05-30T00:00:00.000Z", + "_age_weeks": 38, + "_stars_per_week": 279.09, + "_topics": [ + "deep-learning", + "diffusion", + "image-generation", + "pytorch", + "score-based-generative-modeling", + "image2image", + "text2image", + "stable-diffusion", + "hacktoberfest" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 229, + "_pop_contributor_logins": [ + "anton-l@huggingface", + "daspartho", + "kashif", + "natolambert", + "patil-suraj@huggingface", + "patrickvonplaten", + "pcuenca", + "sayakpaul@huggingface", + "shirayu@megagonlabs", + "williamberman" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "huggingface", + "megagonlabs" + ], + "_pop_contributor_orgs_raw": [ + "@huggingface", + "@megagonlabs", + "Hugging Face", + "Huggingface" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 32.5, + "_pop_updated_issues_count": 1324, + "_pop_closed_issues_count": 1064, + "_pop_created_since_days": 9, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 29, + "_pop_recent_releases_estimated_tags": 46, + "_pop_recent_releases_adjusted_count": 29, + "_pop_issue_count": 1324.0, + "_pop_comment_count": 4777.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.6, + "_pop_dependents_count": 0, + "_pop_score": 54.18, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/visgl/deck.gl/master/README.md", - "_readme_localurl": "visgl~deck.gl~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/huggingface/diffusers/master/README.md", + "_readme_localurl": "huggingface~diffusers~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/huggingface/diffusers/master/setup.py", + "https://raw.githubusercontent.com/huggingface/diffusers/master/pyproject.toml" + ], + "_requirements_localurls": [ + "huggingface~diffusers~setup.py", + "huggingface~diffusers~pyproject.toml" + ] }, { - "index": 718, - "category": "perf", - "githuburl": "https://github.com/pola-rs/polars", - "featured": 1.0, + "index": 857, + "category": "viz", + "githuburl": "https://github.com/visgl/deck.gl", + "featured": null, "links": null, "description": null, - "_repopath": "pola-rs/polars", - "_reponame": "polars", - "_stars": 10407, - "_forks": 553, - "_watches": 104, + "_repopath": "visgl/deck.gl", + "_reponame": "deck.gl", + "_stars": 10616, + "_forks": 1930, + "_watches": 1721, + "_language": "JavaScript", + "_homepage": "https://deck.gl", + "_description": "deck.gl: WebGL2 powered visualization framework", + "_organization": "visgl", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-12-15T00:00:00.000Z", + "_age_weeks": 375, + "_stars_per_week": 28.3, "_topics": [ - "dataframe-library", - "dataframe", - "dataframes", - "rust", - "arrow", + "webgl", + "data-visualization", + "javascript", + "visualization", "python", - "out-of-core" + "geospatial-analysis", + "maps" ], - "_language": "Rust", - "_homepage": "https://pola.rs/", - "_description": "polars: Fast multi-threaded, hybrid-streaming DataFrame library in Rust | Python | Node.js", - "_organization": "pola-rs", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2020-05-13T00:00:00.000Z", - "_age_weeks": 135, - "_stars_per_week": 76.68, - "_pop_contributor_count": 141, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 216, + "_pop_contributor_logins": [ + "1chandu", + "Pessimistress", + "ajduberstein", + "alasarr@carto", + "felixpalmer", + "georgios-uber@uber", + "gnavvy@metaplatforms", + "heshan0131", + "ibgreen@foursquare", + "jianhuang01" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "aertslab" + "carto", + "foursquare", + "metaplatforms", + "uber" + ], + "_pop_contributor_orgs_raw": [ + "Carto", + "Foursquare", + "Meta Platforms, Inc.", + "Uber" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 39.65, - "_pop_updated_issues_count": 1083, - "_pop_closed_issues_count": 893, - "_pop_created_since_days": 32, + "_pop_commit_frequency": 6.92, + "_pop_updated_issues_count": 196, + "_pop_closed_issues_count": 151, + "_pop_created_since_days": 88, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 26, - "_pop_recent_releases_estimated_tags": 129, - "_pop_recent_releases_adjusted_count": 26, - "_pop_issue_count": 1083.0, - "_pop_comment_count": 1784.0, + "_pop_recent_releases_count": 56, + "_pop_recent_releases_estimated_tags": 73, + "_pop_recent_releases_adjusted_count": 56, + "_pop_issue_count": 196.0, + "_pop_comment_count": 269.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 102, - "_pop_score": 59.74, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 54.01, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pola-rs/polars/master/README.md", - "_readme_localurl": "pola-rs~polars~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/visgl/deck.gl/master/README.md", + "_readme_localurl": "visgl~deck.gl~README.md", "_requirements_filenames": [], "_requirements_giturls": [], "_requirements_localurls": [] @@ -8251,9 +11599,17 @@ "description": null, "_repopath": "python-pillow/pillow", "_reponame": "Pillow", - "_stars": 10374, - "_forks": 1957, - "_watches": 218, + "_stars": 10535, + "_forks": 1983, + "_watches": 216, + "_language": "Python", + "_homepage": "https://python-pillow.org", + "_description": "Pillow: Python Imaging Library (Fork)", + "_organization": "python-pillow", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-07-24T00:00:00.000Z", + "_age_weeks": 552, + "_stars_per_week": 19.08, "_topics": [ "c", "cross-platform", @@ -8264,38 +11620,49 @@ "image-processing", "image" ], - "_language": "Python", - "_homepage": "https://python-pillow.org", - "_description": "Pillow: The friendly PIL fork (Python Imaging Library)", - "_organization": "python-pillow", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2012-07-24T00:00:00.000Z", - "_age_weeks": 542, - "_stars_per_week": 19.11, - "_pop_contributor_count": 420, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 427, + "_pop_contributor_logins": [ + "DWesl", + "aclark4life@aclark.net", + "cgohlke", + "homm@uploadcare", + "hugovk@nordsoftware", + "jdufresne@pioneervalleybooks", + "mergify[bot]", + "nulano", + "radarhere", + "wiredfool" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "aclark.net", "nordsoftware", + "pioneervalleybooks", "uploadcare" ], + "_pop_contributor_orgs_raw": [ + "ACLARK.NET, LLC", + "Nord Software", + "Pioneer Valley Books", + "Uploadcare" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 19.37, - "_pop_updated_issues_count": 361, - "_pop_closed_issues_count": 295, - "_pop_created_since_days": 127, + "_pop_commit_frequency": 18.71, + "_pop_updated_issues_count": 311, + "_pop_closed_issues_count": 246, + "_pop_created_since_days": 129, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, + "_pop_recent_releases_count": 5, "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 361.0, - "_pop_comment_count": 568.0, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 311.0, + "_pop_comment_count": 590.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 26551, - "_pop_score": 74.18, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 56.96, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/python-pillow/pillow/master/README.md", "_readme_localurl": "python-pillow~pillow~README.md", @@ -8309,6 +11676,94 @@ "python-pillow~pillow~setup.py" ] }, + { + "index": 173, + "category": "term", + "githuburl": "https://github.com/tiangolo/typer", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "tiangolo/typer", + "_reponame": "typer", + "_stars": 10494, + "_forks": 424, + "_watches": 67, + "_language": "Python", + "_homepage": "https://typer.tiangolo.com/", + "_description": "Typer, build great CLIs. Easy to code. Based on Python type hints.", + "_organization": "tiangolo", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-12-24T00:00:00.000Z", + "_age_weeks": 165, + "_stars_per_week": 63.54, + "_topics": [ + "cli", + "click", + "python3", + "typehints", + "terminal", + "shell", + "python", + "typer" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 32, + "_pop_contributor_logins": [ + "IamCathal", + "briancohan@pbdtools", + "cgabard@papernest", + "dependabot[bot]", + "mariacamilagl", + "mrcartoonster@lofidynamics", + "pre-commit-ci[bot]", + "theMarix@blueyondergmbh", + "tiangolo", + "victorphoenix3@bloomberg" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "bloomberg", + "blueyondergmbh", + "lofidynamics", + "papernest", + "pbdtools" + ], + "_pop_contributor_orgs_raw": [ + "@bloomberg", + "@papernest ", + "Blue Yonder GmbH", + "PBD Tools LLC", + "lofi dynamics LLC" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.83, + "_pop_updated_issues_count": 127, + "_pop_closed_issues_count": 35, + "_pop_created_since_days": 38, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 127.0, + "_pop_comment_count": 194.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 42.91, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/tiangolo/typer/master/README.md", + "_readme_localurl": "tiangolo~typer~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/tiangolo/typer/master/pyproject.toml" + ], + "_requirements_localurls": [ + "tiangolo~typer~pyproject.toml" + ] + }, { "index": 110, "category": "ml-interpretability", @@ -8318,41 +11773,61 @@ "description": null, "_repopath": "marcotcr/lime", "_reponame": "lime", - "_stars": 10294, - "_forks": 1693, - "_watches": 272, - "_topics": [], + "_stars": 10436, + "_forks": 1704, + "_watches": 270, "_language": "JavaScript", "_homepage": "", "_description": "Lime: Explaining the predictions of any machine learning classifier", "_organization": "marcotcr", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2021-07-29T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2016-03-15T00:00:00.000Z", - "_age_weeks": 352, - "_stars_per_week": 29.17, - "_pop_contributor_count": 61, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 362, + "_stars_per_week": 28.82, + "_topics": [], + "_last_commit_date": "2021-07-29T00:00:00.000Z", + "_pop_contributor_count": 62, + "_pop_contributor_logins": [ + "aikramer2@system1", + "desilinguist@educationaltestingservice", + "dhimmel@related-sciences", + "dyanni3", + "echo66", + "elacx", + "jamesmyatt@capgeminiengineering", + "marcotcr", + "nicolewhite", + "sokollip" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "capgeminiengineering", + "educationaltestingservice", "related-sciences", "system1" ], + "_pop_contributor_orgs_raw": [ + "@related-sciences", + "Capgemini Engineering", + "Educational Testing Service", + "System1" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 25, - "_pop_closed_issues_count": 10, - "_pop_created_since_days": 82, - "_pop_updated_since_days": 17, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 84, + "_pop_updated_since_days": 19, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 25.0, - "_pop_comment_count": 19.0, + "_pop_issue_count": 16.0, + "_pop_comment_count": 12.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 145, - "_pop_score": 38.35, + "_pop_dependents_count": 0, + "_pop_score": 30.93, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/marcotcr/lime/master/README.md", "_readme_localurl": "marcotcr~lime~README.md", @@ -8375,43 +11850,69 @@ "description": null, "_repopath": "facebookresearch/detr", "_reponame": "detr", - "_stars": 10233, - "_forks": 1866, - "_watches": 146, - "_topics": [], + "_stars": 10436, + "_forks": 1918, + "_watches": 149, "_language": "Python", "_homepage": null, "_description": "detr: End-to-End Object Detection with Transformers", "_organization": "facebookresearch", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-03-07T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2020-05-26T00:00:00.000Z", - "_age_weeks": 133, - "_stars_per_week": 76.45, - "_pop_contributor_count": 25, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "axera-tech", + "_age_weeks": 143, + "_stars_per_week": 72.91, + "_topics": [], + "_last_commit_date": "2023-02-07T00:00:00.000Z", + "_pop_contributor_count": 26, + "_pop_contributor_logins": [ + "AniKar@universityofbonn", + "DanielFennhagen", + "alexander-kirillov@facebookairesearch", + "dcyoung@scansemoffettdatadetectlabs", + "dmitryvinn@engineeringmanagerai/mlmeta", + "fatihbaltaci@ddosify", + "fmassa@facebookaireseach", + "lessw2020", + "szagoruyko@mtsai", + "zhiqwang@axera" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "axera", + "ddosify", + "engineeringmanagerai/mlmeta", "facebookaireseach", "facebookairesearch", - "mtsai" + "mtsai", + "scansemoffettdatadetectlabs", + "universityofbonn" + ], + "_pop_contributor_orgs_raw": [ + "@ddosify", + "@scanse @MoffettData @detectlabs", + "Engineering Manager AI/ML@Meta", + "Facebook AI Reseach", + "Facebook AI Research", + "MTS AI", + "University of Bonn", + "axera" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.02, - "_pop_updated_issues_count": 48, - "_pop_closed_issues_count": 13, - "_pop_created_since_days": 31, - "_pop_updated_since_days": 10, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 37, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 33, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 48.0, - "_pop_comment_count": 51.0, + "_pop_issue_count": 37.0, + "_pop_comment_count": 43.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 66, - "_pop_score": 34.75, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 36.18, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/detr/master/README.md", "_readme_localurl": "facebookresearch~detr~README.md", @@ -8434,9 +11935,17 @@ "description": null, "_repopath": "mwaskom/seaborn", "_reponame": "seaborn", - "_stars": 10172, - "_forks": 1678, - "_watches": 252, + "_stars": 10370, + "_forks": 1703, + "_watches": 253, + "_language": "Python", + "_homepage": "https://seaborn.pydata.org", + "_description": "seaborn: Statistical data visualization in Python", + "_organization": "mwaskom", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-06-18T00:00:00.000Z", + "_age_weeks": 557, + "_stars_per_week": 18.61, "_topics": [ "python", "data-visualization", @@ -8444,38 +11953,51 @@ "matplotlib", "pandas" ], - "_language": "Python", - "_homepage": "https://seaborn.pydata.org", - "_description": "seaborn: Statistical data visualization in Python", - "_organization": "mwaskom", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2012-06-18T00:00:00.000Z", - "_age_weeks": 548, - "_stars_per_week": 18.56, - "_pop_contributor_count": 181, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 186, + "_pop_contributor_logins": [ + "JWarmenhoven", + "MaozGelbart", + "TomAugspurger@microsoft", + "dcgemperline", + "joelostblom@universityofbritishcolumbia", + "lukauskas", + "mwaskom", + "olgabot@bridgebioanalytics", + "phobson@coiled", + "yarikoptic@dartmouthcollege,debian,datalad,pymvpa,fail2ban" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "bridgebioanalytics", "coiled", + "dartmouthcollege,debian,datalad,pymvpa,fail2ban", + "microsoft", "universityofbritishcolumbia" ], + "_pop_contributor_orgs_raw": [ + "@BridgeBioAnalytics ", + "@coiled", + "@microsoft", + "Dartmouth College, @Debian, @DataLad, @PyMVPA, @fail2ban", + "University of British Columbia" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.69, - "_pop_updated_issues_count": 146, - "_pop_closed_issues_count": 116, - "_pop_created_since_days": 128, + "_pop_commit_frequency": 4.92, + "_pop_updated_issues_count": 139, + "_pop_closed_issues_count": 117, + "_pop_created_since_days": 130, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 8, + "_pop_recent_releases_count": 9, "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 146.0, - "_pop_comment_count": 305.0, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 139.0, + "_pop_comment_count": 281.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 522, - "_pop_score": 62.58, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 53.51, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/mwaskom/seaborn/master/README.md", "_readme_localurl": "mwaskom~seaborn~README.md", @@ -8498,9 +12020,17 @@ "description": null, "_repopath": "bulletphysics/bullet3", "_reponame": "bullet3", - "_stars": 10043, - "_forks": 2620, + "_stars": 10260, + "_forks": 2659, "_watches": 405, + "_language": "C++", + "_homepage": "http://bulletphysics.org", + "_description": "bullet3: Bullet Physics SDK: real-time collision detection and multi-physics simulation for VR, games, visual effects, robotics, machine learning etc.", + "_organization": "bulletphysics", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2011-04-12T00:00:00.000Z", + "_age_weeks": 619, + "_stars_per_week": 16.57, "_topics": [ "simulation", "robotics", @@ -8512,36 +12042,45 @@ "simulator", "pybullet" ], - "_language": "C++", - "_homepage": "http://bulletphysics.org", - "_description": "bullet3: Bullet Physics SDK: real-time collision detection and multi-physics simulation for VR, games, visual effects, robotics, machine learning etc.", - "_organization": "bulletphysics", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-09-25T00:00:00.000Z", - "_created_at": "2011-04-12T00:00:00.000Z", - "_age_weeks": 609, - "_stars_per_week": 16.47, "_pop_contributor_count": 299, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "BlGene", + "NiranthS", + "YunfeiBai", + "benelot@idsc.io", + "erwincoumans", + "fuchuyuan", + "jyc-n", + "lunkhound", + "nicolaichuk", + "xhan0619@ucla" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "idsc.io", "ucla" ], + "_pop_contributor_orgs_raw": [ + "IDSC.io", + "UCLA" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.69, - "_pop_updated_issues_count": 55, - "_pop_closed_issues_count": 14, - "_pop_created_since_days": 142, - "_pop_updated_since_days": 3, + "_pop_commit_frequency": 0.87, + "_pop_updated_issues_count": 44, + "_pop_closed_issues_count": 12, + "_pop_created_since_days": 144, + "_pop_updated_since_days": 5, "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 55.0, - "_pop_comment_count": 34.0, + "_pop_issue_count": 44.0, + "_pop_comment_count": 40.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 2098, - "_pop_score": 51.53, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 38.67, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/bulletphysics/bullet3/master/README.md", "_readme_localurl": "bulletphysics~bullet3~README.md", @@ -8556,213 +12095,282 @@ ] }, { - "index": 173, - "category": "term", - "githuburl": "https://github.com/tiangolo/typer", + "index": 60, + "category": "pandas", + "githuburl": "https://github.com/pandas-profiling/pandas-profiling", "featured": 1.0, "links": null, "description": null, - "_repopath": "tiangolo/typer", - "_reponame": "typer", - "_stars": 9986, - "_forks": 399, - "_watches": 66, + "_repopath": "pandas-profiling/pandas-profiling", + "_reponame": "ydata-profiling", + "_stars": 10206, + "_forks": 1437, + "_watches": 150, + "_language": "Python", + "_homepage": "https://ydata-profiling.ydata.ai", + "_description": "ydata-profiling: Create HTML profiling reports from pandas DataFrame objects", + "_organization": "pandas-profiling", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-01-09T00:00:00.000Z", + "_age_weeks": 371, + "_stars_per_week": 27.47, "_topics": [ - "cli", - "click", - "python3", - "typehints", - "terminal", - "shell", + "pandas-profiling", + "pandas-dataframe", + "statistics", + "jupyter-notebook", + "exploration", + "data-science", "python", - "typer" + "pandas", + "machine-learning", + "deep-learning", + "exploratory-data-analysis", + "eda", + "data-quality", + "html-report", + "data-exploration", + "data-analysis", + "jupyter", + "big-data-analytics", + "data-profiling", + "hacktoberfest" ], - "_language": "Python", - "_homepage": "https://typer.tiangolo.com/", - "_description": "Typer, build great CLIs. Easy to code. Based on Python type hints.", - "_organization": "tiangolo", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2019-12-24T00:00:00.000Z", - "_age_weeks": 155, - "_stars_per_week": 64.07, - "_pop_contributor_count": 32, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-01-30T00:00:00.000Z", + "_pop_contributor_count": 108, + "_pop_contributor_logins": [ + "JosPolfliet@metamaze", + "alexbarros", + "aquemy@ydataai", + "dependabot-preview[bot]", + "dependabot[bot]", + "fabclmnt@ydataai", + "loopyme@cqu-ai", + "romainx", + "sbrugman", + "vascoalramos@ydataai" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "lofidynamics" + "cqu-ai", + "metamaze", + "ydataai" + ], + "_pop_contributor_orgs_raw": [ + "@CQU-AI ", + "@Metamaze", + "@ydataai", + "@ydataai " ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.75, - "_pop_updated_issues_count": 183, - "_pop_closed_issues_count": 93, - "_pop_created_since_days": 36, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 183.0, - "_pop_comment_count": 342.0, + "_pop_commit_frequency": 4.96, + "_pop_updated_issues_count": 142, + "_pop_closed_issues_count": 96, + "_pop_created_since_days": 87, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 26, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 142.0, + "_pop_comment_count": 167.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.9, - "_pop_dependents_count": 381, - "_pop_score": 49.56, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 46.13, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/tiangolo/typer/master/README.md", - "_readme_localurl": "tiangolo~typer~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pandas-profiling/pandas-profiling/master/README.md", + "_readme_localurl": "pandas-profiling~pandas-profiling~README.md", "_requirements_filenames": [ - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/tiangolo/typer/master/pyproject.toml" + "https://raw.githubusercontent.com/pandas-profiling/pandas-profiling/master/requirements.txt", + "https://raw.githubusercontent.com/pandas-profiling/pandas-profiling/master/setup.py" ], "_requirements_localurls": [ - "tiangolo~typer~pyproject.toml" + "pandas-profiling~pandas-profiling~requirements.txt", + "pandas-profiling~pandas-profiling~setup.py" ] }, { - "index": 24, - "category": "ml", - "githuburl": "https://github.com/google/dopamine", - "featured": null, + "index": 536, + "category": "profiling", + "githuburl": "https://github.com/bloomberg/memray", + "featured": 1.0, "links": null, "description": null, - "_repopath": "google/dopamine", - "_reponame": "dopamine", - "_stars": 9956, - "_forks": 1337, - "_watches": 440, + "_repopath": "bloomberg/memray", + "_reponame": "memray", + "_stars": 10133, + "_forks": 279, + "_watches": 52, + "_language": "Python", + "_homepage": "https://bloomberg.github.io/memray/", + "_description": "Memray is a memory profiler for Python", + "_organization": "bloomberg", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-04-08T00:00:00.000Z", + "_age_weeks": 45, + "_stars_per_week": 221.66, "_topics": [ - "rl", - "ml", - "ai", - "google", - "tensorflow" + "memory", + "memory-leak", + "memory-leak-detection", + "memory-profiler", + "profiler", + "python", + "python3", + "hacktoberfest" ], - "_language": "Jupyter Notebook", - "_homepage": "https://github.com/google/dopamine", - "_description": "Dopamine is a research framework for fast prototyping of reinforcement learning algorithms. ", - "_organization": "google", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-11-28T00:00:00.000Z", - "_created_at": "2018-07-26T00:00:00.000Z", - "_age_weeks": 229, - "_stars_per_week": 43.37, - "_pop_contributor_count": 15, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 22, + "_pop_contributor_logins": [ + "chaimhaas@bloomberg", + "dependabot[bot]", + "godlygeek", + "lkollar@bloomberg", + "matthiasdiener@researchscientistuiuc-pplillinois-ceesd", + "pablogsal@bloomberg", + "pradyunsg@bloombergpythoninfrastructure", + "q-posev@qubitpharmaceuticals", + "tal66", + "tonybaloney@microsoft" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google" + "bloomberg", + "bloombergpythoninfrastructure", + "microsoft", + "qubitpharmaceuticals", + "researchscientistuiuc-pplillinois-ceesd" + ], + "_pop_contributor_orgs_raw": [ + "@Bloomberg", + "@bloomberg", + "@bloomberg Python Infrastructure", + "Microsoft", + "Qubit Pharmaceuticals", + "Research Scientist @UIUC-PPL @illinois-ceesd" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.44, - "_pop_updated_issues_count": 6, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 54, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 6.0, - "_pop_comment_count": 17.0, + "_pop_commit_frequency": 7.46, + "_pop_updated_issues_count": 68, + "_pop_closed_issues_count": 51, + "_pop_created_since_days": 11, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 68.0, + "_pop_comment_count": 85.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.8, - "_pop_dependents_count": 27, - "_pop_score": 33.55, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 40.62, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/google/dopamine/master/README.md", - "_readme_localurl": "google~dopamine~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/bloomberg/memray/master/README.md", + "_readme_localurl": "bloomberg~memray~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/google/dopamine/master/requirements.txt", - "https://raw.githubusercontent.com/google/dopamine/master/setup.py" + "https://raw.githubusercontent.com/bloomberg/memray/master/setup.py", + "https://raw.githubusercontent.com/bloomberg/memray/master/pyproject.toml" ], "_requirements_localurls": [ - "google~dopamine~requirements.txt", - "google~dopamine~setup.py" + "bloomberg~memray~setup.py", + "bloomberg~memray~pyproject.toml" ] }, { - "index": 60, - "category": "pandas", - "githuburl": "https://github.com/pandas-profiling/pandas-profiling", - "featured": 1.0, + "index": 805, + "category": "web", + "githuburl": "https://github.com/encode/httpx", + "featured": null, "links": null, "description": null, - "_repopath": "pandas-profiling/pandas-profiling", - "_reponame": "pandas-profiling", - "_stars": 9944, - "_forks": 1413, - "_watches": 150, + "_repopath": "encode/httpx", + "_reponame": "httpx", + "_stars": 10079, + "_forks": 666, + "_watches": 112, + "_language": "Python", + "_homepage": "https://www.python-httpx.org/", + "_description": "httpx: A next generation HTTP client for Python. \ud83e\udd8b", + "_organization": "encode", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-04-04T00:00:00.000Z", + "_age_weeks": 202, + "_stars_per_week": 49.69, "_topics": [ - "pandas-profiling", - "pandas-dataframe", - "statistics", - "jupyter-notebook", - "exploration", - "data-science", "python", - "pandas", - "machine-learning", - "deep-learning", - "exploratory-data-analysis", - "eda", - "data-quality", - "html-report", - "data-exploration", - "data-analysis", - "jupyter", - "big-data-analytics", - "data-profiling", - "hacktoberfest" + "http", + "trio", + "asyncio" ], - "_language": "Python", - "_homepage": "https://pandas-profiling.ydata.ai", - "_description": "pandas-profiling: Create HTML profiling reports from pandas DataFrame objects", - "_organization": "pandas-profiling", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2016-01-09T00:00:00.000Z", - "_age_weeks": 362, - "_stars_per_week": 27.45, - "_pop_contributor_count": 105, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 186, + "_pop_contributor_logins": [ + "JayH5@yelp", + "Kludex@encode", + "adriangb", + "cdeler@amazon", + "dependabot[bot]", + "florimondmanca", + "j178", + "jcugat", + "sethmlarson@elastic", + "tomchristie@encodeoss" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "metamaze" + "amazon", + "elastic", + "encode", + "encodeoss", + "yelp" + ], + "_pop_contributor_orgs_raw": [ + "@elastic", + "@encode", + "Amazon", + "Encode OSS", + "Yelp" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.54, - "_pop_updated_issues_count": 196, - "_pop_closed_issues_count": 144, - "_pop_created_since_days": 84, + "_pop_commit_frequency": 3.04, + "_pop_updated_issues_count": 118, + "_pop_closed_issues_count": 95, + "_pop_created_since_days": 47, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 18, + "_pop_recent_releases_estimated_tags": 20, "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 196.0, - "_pop_comment_count": 260.0, + "_pop_issue_count": 118.0, + "_pop_comment_count": 179.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 60, - "_pop_score": 50.62, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 48.33, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pandas-profiling/pandas-profiling/master/README.md", - "_readme_localurl": "pandas-profiling~pandas-profiling~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/encode/httpx/master/README.md", + "_readme_localurl": "encode~httpx~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pandas-profiling/pandas-profiling/master/requirements.txt", - "https://raw.githubusercontent.com/pandas-profiling/pandas-profiling/master/setup.py" + "https://raw.githubusercontent.com/encode/httpx/master/requirements.txt", + "https://raw.githubusercontent.com/encode/httpx/master/pyproject.toml" ], "_requirements_localurls": [ - "pandas-profiling~pandas-profiling~requirements.txt", - "pandas-profiling~pandas-profiling~setup.py" + "encode~httpx~requirements.txt", + "encode~httpx~pyproject.toml" ] }, { @@ -8774,9 +12382,17 @@ "description": null, "_repopath": "sympy/sympy", "_reponame": "sympy", - "_stars": 9887, - "_forks": 3794, - "_watches": 283, + "_stars": 10062, + "_forks": 3854, + "_watches": 285, + "_language": "Python", + "_homepage": "https://sympy.org/", + "_description": "sympy: A computer algebra system written in pure Python", + "_organization": "sympy", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2010-04-30T00:00:00.000Z", + "_age_weeks": 668, + "_stars_per_week": 15.05, "_topics": [ "python", "math", @@ -8784,48 +12400,59 @@ "science", "hacktoberfest" ], - "_language": "Python", - "_homepage": "https://sympy.org/", - "_description": "sympy: A computer algebra system written in pure Python", - "_organization": "sympy", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2010-04-30T00:00:00.000Z", - "_age_weeks": 659, - "_stars_per_week": 14.99, - "_pop_contributor_count": 1186, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 1200, + "_pop_contributor_logins": [ + "Upabjojr", + "asmeurer@quansight", + "certik@gsitechnology", + "jksuom", + "mattpap", + "oscarbenjamin", + "oscargus", + "skirpichev", + "smichr", + "sylee957" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "gsitechnology", "quansight" ], + "_pop_contributor_orgs_raw": [ + "@Quansight ", + "GSI Technology" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 40.35, - "_pop_updated_issues_count": 914, - "_pop_closed_issues_count": 247, - "_pop_created_since_days": 154, + "_pop_commit_frequency": 41.6, + "_pop_updated_issues_count": 632, + "_pop_closed_issues_count": 354, + "_pop_created_since_days": 156, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 8, + "_pop_recent_releases_count": 7, "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 914.0, - "_pop_comment_count": 1859.0, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 632.0, + "_pop_comment_count": 2771.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 7939, - "_pop_score": 76.25, + "_pop_comment_frequency": 4.4, + "_pop_dependents_count": 0, + "_pop_score": 62.51, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/sympy/sympy/master/README.md", "_readme_localurl": "sympy~sympy~README.md", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/sympy/sympy/master/setup.py" + "https://raw.githubusercontent.com/sympy/sympy/master/setup.py", + "https://raw.githubusercontent.com/sympy/sympy/master/pyproject.toml" ], "_requirements_localurls": [ - "sympy~sympy~setup.py" + "sympy~sympy~setup.py", + "sympy~sympy~pyproject.toml" ] }, { @@ -8837,9 +12464,17 @@ "description": null, "_repopath": "pyinstaller/pyinstaller", "_reponame": "pyinstaller", - "_stars": 9831, - "_forks": 1852, - "_watches": 233, + "_stars": 10045, + "_forks": 1861, + "_watches": 232, + "_language": "Python", + "_homepage": "http://www.pyinstaller.org", + "_description": "pyinstaller: Freeze (package) Python programs into stand-alone executables", + "_organization": "pyinstaller", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2011-11-23T00:00:00.000Z", + "_age_weeks": 587, + "_stars_per_week": 17.11, "_topics": [ "python", "python-3", @@ -8850,36 +12485,49 @@ "py2exe", "py2app" ], - "_language": "Python", - "_homepage": "http://www.pyinstaller.org", - "_description": "pyinstaller: Freeze (package) Python programs into stand-alone executables", - "_organization": "pyinstaller", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2011-11-23T00:00:00.000Z", - "_age_weeks": 577, - "_stars_per_week": 17.02, - "_pop_contributor_count": 443, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 446, + "_pop_contributor_logins": [ + "Legorooj", + "bjones1@mississippistateuniversity", + "bwoodsend", + "codewarrior0", + "htgoebel", + "matysek", + "naufraghi@develersrl", + "pyup-bot@pyupio", + "rasky@develers.r.l.", + "rokm" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "develers.r.l." + "develers.r.l.", + "develersrl", + "mississippistateuniversity", + "pyupio" + ], + "_pop_contributor_orgs_raw": [ + "@develersrl", + "@pyupio", + "Develer S.r.l.", + "Mississippi State University" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 7.4, - "_pop_updated_issues_count": 6291, - "_pop_closed_issues_count": 6242, - "_pop_created_since_days": 135, + "_pop_commit_frequency": 7.08, + "_pop_updated_issues_count": 280, + "_pop_closed_issues_count": 249, + "_pop_created_since_days": 137, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 14, + "_pop_recent_releases_count": 13, "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 14, - "_pop_issue_count": 6291.0, - "_pop_comment_count": 670.0, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 280.0, + "_pop_comment_count": 365.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.1, - "_pop_dependents_count": 2287, - "_pop_score": 66.5, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 56.03, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pyinstaller/pyinstaller/master/README.rst", "_readme_localurl": "pyinstaller~pyinstaller~README.rst", @@ -8900,186 +12548,327 @@ ] }, { - "index": 805, - "category": "web", - "githuburl": "https://github.com/encode/httpx", + "index": 24, + "category": "ml", + "githuburl": "https://github.com/google/dopamine", "featured": null, "links": null, "description": null, - "_repopath": "encode/httpx", - "_reponame": "httpx", - "_stars": 9786, - "_forks": 640, - "_watches": 106, + "_repopath": "google/dopamine", + "_reponame": "dopamine", + "_stars": 10018, + "_forks": 1339, + "_watches": 442, + "_language": "Jupyter Notebook", + "_homepage": "https://github.com/google/dopamine", + "_description": "Dopamine is a research framework for fast prototyping of reinforcement learning algorithms. ", + "_organization": "google", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-07-26T00:00:00.000Z", + "_age_weeks": 238, + "_stars_per_week": 41.94, "_topics": [ - "python", - "http", - "trio", - "asyncio" + "rl", + "ml", + "ai", + "google", + "tensorflow" ], - "_language": "Python", - "_homepage": "https://www.python-httpx.org/", - "_description": "httpx: A next generation HTTP client for Python. \ud83e\udd8b", - "_organization": "encode", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", - "_created_at": "2019-04-04T00:00:00.000Z", - "_age_weeks": 193, - "_stars_per_week": 50.55, - "_pop_contributor_count": 182, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-11-28T00:00:00.000Z", + "_pop_contributor_count": 15, + "_pop_contributor_logins": [ + "agarwl@google", + "avassalotti@google", + "btaba", + "cwhsu-google@google", + "evcu@google", + "jingconan@storytell.ai", + "joshgreaves@google", + "psc-g@google", + "smoitra-g@googlebrain", + "tlwillke" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "elastic", - "encodeoss" + "google", + "googlebrain", + "storytell.ai" + ], + "_pop_contributor_orgs_raw": [ + "@google", + "@google ", + "Google", + "Google Brain", + "Google LLC", + "Storytell.ai" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.13, - "_pop_updated_issues_count": 130, - "_pop_closed_issues_count": 103, - "_pop_created_since_days": 45, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 20, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 130.0, - "_pop_comment_count": 242.0, + "_pop_commit_frequency": 0.37, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 56, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 3.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.9, - "_pop_dependents_count": 2114, - "_pop_score": 59.61, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 0, + "_pop_score": 27.88, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/encode/httpx/master/README.md", - "_readme_localurl": "encode~httpx~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/google/dopamine/master/README.md", + "_readme_localurl": "google~dopamine~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/encode/httpx/master/requirements.txt", - "https://raw.githubusercontent.com/encode/httpx/master/setup.py", - "https://raw.githubusercontent.com/encode/httpx/master/pyproject.toml" + "https://raw.githubusercontent.com/google/dopamine/master/requirements.txt", + "https://raw.githubusercontent.com/google/dopamine/master/setup.py" ], "_requirements_localurls": [ - "encode~httpx~requirements.txt", - "encode~httpx~setup.py", - "encode~httpx~pyproject.toml" + "google~dopamine~requirements.txt", + "google~dopamine~setup.py" ] }, { - "index": 536, - "category": "profiling", - "githuburl": "https://github.com/bloomberg/memray", - "featured": 1.0, + "index": 71, + "category": "testing", + "githuburl": "https://github.com/pytest-dev/pytest", + "featured": null, "links": null, "description": null, - "_repopath": "bloomberg/memray", - "_reponame": "memray", - "_stars": 9678, - "_forks": 267, - "_watches": 54, + "_repopath": "pytest-dev/pytest", + "_reponame": "pytest", + "_stars": 9827, + "_forks": 2254, + "_watches": 194, + "_language": "Python", + "_homepage": "https://pytest.org", + "_description": "pytest: The pytest framework makes it easy to write small tests, yet scales to support complex functional testing", + "_organization": "pytest-dev", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-06-15T00:00:00.000Z", + "_age_weeks": 401, + "_stars_per_week": 24.49, "_topics": [ - "memory", - "memory-leak", - "memory-leak-detection", - "memory-profiler", - "profiler", + "unit-testing", + "test", + "testing", "python", - "python3", "hacktoberfest" ], - "_language": "Python", - "_homepage": "https://bloomberg.github.io/memray/", - "_description": "Memray is a memory profiler for Python", - "_organization": "bloomberg", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-09T00:00:00.000Z", - "_created_at": "2022-04-08T00:00:00.000Z", - "_age_weeks": 36, - "_stars_per_week": 265.67, - "_pop_contributor_count": 22, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 854, + "_pop_contributor_logins": [ + "RonnyPfannschmidt@redhatinsights", + "The-Compiler@bruhinsoftware", + "asottile", + "benjaminp", + "bluetech", + "blueyed@freelancer,upforhire", + "dependabot[bot]", + "flub", + "hpk42@merlinux", + "nicoddemus@esss" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "bloomberg", - "bloombergpythoninfrastructure" + "bruhinsoftware", + "esss", + "freelancer,upforhire", + "merlinux", + "redhatinsights" + ], + "_pop_contributor_orgs_raw": [ + "@RedHatInsights ", + "Bruhin Software", + "ESSS", + "Freelancer, up for hire", + "merlinux" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.85, - "_pop_updated_issues_count": 60, - "_pop_closed_issues_count": 47, - "_pop_created_since_days": 8, + "_pop_commit_frequency": 6.25, + "_pop_updated_issues_count": 251, + "_pop_closed_issues_count": 167, + "_pop_created_since_days": 94, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 9, - "_pop_recent_releases_estimated_tags": 17, - "_pop_recent_releases_adjusted_count": 9, - "_pop_issue_count": 60.0, - "_pop_comment_count": 73.0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 23, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 251.0, + "_pop_comment_count": 424.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 3, - "_pop_score": 38.4, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/bloomberg/memray/master/README.md", - "_readme_localurl": "bloomberg~memray~README.md", + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 57.03, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest/master/README.rst", + "_readme_localurl": "pytest-dev~pytest~README.rst", "_requirements_filenames": [ "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/bloomberg/memray/master/setup.py", - "https://raw.githubusercontent.com/bloomberg/memray/master/pyproject.toml" + "https://raw.githubusercontent.com/pytest-dev/pytest/master/setup.py", + "https://raw.githubusercontent.com/pytest-dev/pytest/master/pyproject.toml" ], "_requirements_localurls": [ - "bloomberg~memray~setup.py", - "bloomberg~memray~pyproject.toml" + "pytest-dev~pytest~setup.py", + "pytest-dev~pytest~pyproject.toml" ] }, { - "index": 22, - "category": "nlp", - "githuburl": "https://github.com/facebookresearch/parlai", + "index": 412, + "category": "util", + "githuburl": "https://github.com/pre-commit/pre-commit", "featured": null, "links": null, "description": null, - "_repopath": "facebookresearch/parlai", - "_reponame": "ParlAI", - "_stars": 9672, - "_forks": 1974, - "_watches": 290, - "_topics": [], + "_repopath": "pre-commit/pre-commit", + "_reponame": "pre-commit", + "_stars": 9809, + "_forks": 705, + "_watches": 90, "_language": "Python", - "_homepage": "https://parl.ai", - "_description": "ParlAI: A framework for training and evaluating AI models on a variety of openly available dialogue datasets.", - "_organization": "facebookresearch", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2017-04-24T00:00:00.000Z", - "_age_weeks": 295, - "_stars_per_week": 32.79, - "_pop_contributor_count": 204, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "facebookairesearch", - "facebookresearch" + "_homepage": "https://pre-commit.com", + "_description": "pre-commit: A framework for managing and maintaining multi-language pre-commit hooks.", + "_organization": "pre-commit", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-03-13T00:00:00.000Z", + "_age_weeks": 466, + "_stars_per_week": 21.01, + "_topics": [ + "git", + "pre-commit", + "python", + "linter", + "refactoring" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 147, + "_pop_contributor_logins": [ + "DanielChabrowski", + "asottile", + "chriskuehl@yelp", + "geieredgar", + "georgeyk", + "lorenzwalthert@ponte-energy-partners", + "pre-commit-ci[bot]", + "scop@upcloudltd", + "struys@twitter", + "tdeo@pennylane-hq" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "pennylane-hq", + "ponte-energy-partners", + "twitter", + "upcloudltd", + "yelp" + ], + "_pop_contributor_orgs_raw": [ + "@UpCloudLtd ", + "@Yelp", + "@pennylane-hq ", + "@ponte-energy-partners", + "Twitter" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.13, - "_pop_updated_issues_count": 177, - "_pop_closed_issues_count": 138, - "_pop_created_since_days": 69, + "_pop_commit_frequency": 3.27, + "_pop_updated_issues_count": 192, + "_pop_closed_issues_count": 185, + "_pop_created_since_days": 109, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 20, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 192.0, + "_pop_comment_count": 333.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 52.34, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pre-commit/pre-commit/master/README.md", + "_readme_localurl": "pre-commit~pre-commit~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pre-commit/pre-commit/master/setup.py" + ], + "_requirements_localurls": [ + "pre-commit~pre-commit~setup.py" + ] + }, + { + "index": 22, + "category": "nlp", + "githuburl": "https://github.com/facebookresearch/parlai", + "featured": null, + "links": null, + "description": null, + "_repopath": "facebookresearch/parlai", + "_reponame": "ParlAI", + "_stars": 9806, + "_forks": 1992, + "_watches": 289, + "_language": "Python", + "_homepage": "https://parl.ai", + "_description": "ParlAI: A framework for training and evaluating AI models on a variety of openly available dialogue datasets.", + "_organization": "facebookresearch", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2017-04-24T00:00:00.000Z", + "_age_weeks": 304, + "_stars_per_week": 32.23, + "_topics": [], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 204, + "_pop_contributor_logins": [ + "EricMichaelSmith", + "JackUrb", + "alexholdenmiller@facebookresearch", + "emilydinan@facebookairesearch", + "jaseweston", + "klshuster", + "samhumeau@nabla", + "stephenroller", + "uralik", + "yf225" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "facebookairesearch", + "facebookresearch", + "nabla" + ], + "_pop_contributor_orgs_raw": [ + "@facebookresearch ", + "@nabla", + "Facebook AI Research" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.4, + "_pop_updated_issues_count": 107, + "_pop_closed_issues_count": 81, + "_pop_created_since_days": 71, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_estimated_tags": 6, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 177.0, - "_pop_comment_count": 276.0, + "_pop_issue_count": 107.0, + "_pop_comment_count": 161.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 1804, - "_pop_score": 60.57, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 47.51, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/parlai/master/README.md", "_readme_localurl": "facebookresearch~parlai~README.md", @@ -9108,48 +12897,74 @@ "description": null, "_repopath": "jupyter/notebook", "_reponame": "notebook", - "_stars": 9629, - "_forks": 3983, - "_watches": 320, + "_stars": 9789, + "_forks": 4013, + "_watches": 321, + "_language": "Jupyter Notebook", + "_homepage": "https://jupyter-notebook.readthedocs.io/", + "_description": "notebook: Jupyter Interactive Notebook", + "_organization": "jupyter", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-04-09T00:00:00.000Z", + "_age_weeks": 410, + "_stars_per_week": 23.83, "_topics": [ "closember", "jupyter", "jupyter-notebook", "notebook" ], - "_language": "Jupyter Notebook", - "_homepage": "https://jupyter-notebook.readthedocs.io/", - "_description": "notebook: Jupyter Interactive Notebook", - "_organization": "jupyter", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-11T00:00:00.000Z", - "_created_at": "2015-04-09T00:00:00.000Z", - "_age_weeks": 401, - "_stars_per_week": 23.98, - "_pop_contributor_count": 622, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 623, + "_pop_contributor_logins": [ + "Carreau@quansight-labs", + "ellisonbg@amazonwebservices", + "fperez@universityofcalifornia,berkeley.", + "gnestor@hammiesshorts", + "ivanov", + "jasongrout@databricks", + "jdfreder@google", + "jtpio@quantstack", + "minrk@simularesearchlaboratory", + "takluyver" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "amazonwebservices", + "databricks", "google", + "hammiesshorts", "quansight-labs", - "simularesearchlaboratory" + "quantstack", + "simularesearchlaboratory", + "universityofcalifornia,berkeley." + ], + "_pop_contributor_orgs_raw": [ + "@Quansight-Labs", + "@QuantStack", + "@databricks", + "@google ", + "Amazon Web Services", + "Hammies Shorts", + "Simula Research Laboratory", + "University of California, Berkeley." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 9.38, - "_pop_updated_issues_count": 222, - "_pop_closed_issues_count": 148, - "_pop_created_since_days": 94, + "_pop_commit_frequency": 8.58, + "_pop_updated_issues_count": 153, + "_pop_closed_issues_count": 99, + "_pop_created_since_days": 96, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 19, - "_pop_recent_releases_estimated_tags": 30, - "_pop_recent_releases_adjusted_count": 19, - "_pop_issue_count": 222.0, - "_pop_comment_count": 373.0, + "_pop_recent_releases_count": 21, + "_pop_recent_releases_estimated_tags": 38, + "_pop_recent_releases_adjusted_count": 21, + "_pop_issue_count": 153.0, + "_pop_comment_count": 321.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 97078, - "_pop_score": 78.17, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 0, + "_pop_score": 60.61, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jupyter/notebook/master/README.md", "_readme_localurl": "jupyter~notebook~README.md", @@ -9166,74 +12981,6 @@ "jupyter~notebook~pyproject.toml" ] }, - { - "index": 71, - "category": "testing", - "githuburl": "https://github.com/pytest-dev/pytest", - "featured": null, - "links": null, - "description": null, - "_repopath": "pytest-dev/pytest", - "_reponame": "pytest", - "_stars": 9601, - "_forks": 2216, - "_watches": 195, - "_topics": [ - "unit-testing", - "test", - "testing", - "python", - "hacktoberfest" - ], - "_language": "Python", - "_homepage": "https://pytest.org", - "_description": "pytest: The pytest framework makes it easy to write small tests, yet scales to support complex functional testing", - "_organization": "pytest-dev", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2015-06-15T00:00:00.000Z", - "_age_weeks": 392, - "_stars_per_week": 24.49, - "_pop_contributor_count": 842, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "esss", - "freelancer,upforhire", - "merlinux", - "redhatinsights" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 7.56, - "_pop_updated_issues_count": 302, - "_pop_closed_issues_count": 217, - "_pop_created_since_days": 91, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 7, - "_pop_recent_releases_estimated_tags": 24, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 302.0, - "_pop_comment_count": 631.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 42749, - "_pop_score": 76.55, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest/master/README.rst", - "_readme_localurl": "pytest-dev~pytest~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pytest-dev/pytest/master/setup.py", - "https://raw.githubusercontent.com/pytest-dev/pytest/master/pyproject.toml" - ], - "_requirements_localurls": [ - "pytest-dev~pytest~setup.py", - "pytest-dev~pytest~pyproject.toml" - ] - }, { "index": 653, "category": "profiling", @@ -9243,45 +12990,64 @@ "description": null, "_repopath": "benfred/py-spy", "_reponame": "py-spy", - "_stars": 9464, - "_forks": 344, - "_watches": 107, + "_stars": 9748, + "_forks": 346, + "_watches": 111, + "_language": "Rust", + "_homepage": "", + "_description": "py-spy: Sampling profiler for Python programs", + "_organization": "benfred", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-08-01T00:00:00.000Z", + "_age_weeks": 238, + "_stars_per_week": 40.96, "_topics": [ "profiler", "python", "performance-analysis", "profiling" ], - "_language": "Rust", - "_homepage": "", - "_description": "py-spy: Sampling profiler for Python programs", - "_organization": "benfred", - "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-12-09T00:00:00.000Z", - "_created_at": "2018-08-01T00:00:00.000Z", - "_age_weeks": 228, - "_stars_per_week": 41.38, "_pop_contributor_count": 31, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Jongy", + "adamchainz@django,djangolondon", + "akhramov", + "benfred@nvidia", + "dependabot[bot]", + "github-actions[bot]", + "jarus@sap", + "kxepal", + "marcstreeter", + "messense" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "nvidia" + "django,djangolondon", + "nvidia", + "sap" + ], + "_pop_contributor_orgs_raw": [ + "@SAP ", + "@django, @djangolondon", + "@nvidia" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.58, - "_pop_updated_issues_count": 29, - "_pop_closed_issues_count": 10, - "_pop_created_since_days": 53, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.52, + "_pop_updated_issues_count": 31, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 56, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 3, "_pop_recent_releases_estimated_tags": 7, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 29.0, - "_pop_comment_count": 27.0, + "_pop_issue_count": 31.0, + "_pop_comment_count": 25.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 156, - "_pop_score": 41.81, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 33.39, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/benfred/py-spy/master/README.md", "_readme_localurl": "benfred~py-spy~README.md", @@ -9296,130 +13062,72 @@ ] }, { - "index": 225, - "category": "util", - "githuburl": "https://github.com/pyodide/pyodide", + "index": 517, + "category": "typing", + "githuburl": "https://github.com/microsoft/pyright", "featured": null, "links": null, "description": null, - "_repopath": "pyodide/pyodide", - "_reponame": "pyodide", - "_stars": 9408, - "_forks": 616, - "_watches": 124, - "_topics": [ - "python", - "webassembly" - ], + "_repopath": "microsoft/pyright", + "_reponame": "pyright", + "_stars": 9743, + "_forks": 810, + "_watches": 90, "_language": "Python", - "_homepage": "https://pyodide.org/en/stable/", - "_description": "Pyodide is a Python distribution for the browser and Node.js based on WebAssembly", - "_organization": "pyodide", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2018-02-23T00:00:00.000Z", - "_age_weeks": 251, - "_stars_per_week": 37.42, - "_pop_contributor_count": 159, + "_homepage": "", + "_description": "pyright: Static type checker for Python", + "_organization": "microsoft", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-03-12T00:00:00.000Z", + "_age_weeks": 206, + "_stars_per_week": 47.26, + "_topics": [], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 86, + "_pop_contributor_logins": [ + "PylanceBot", + "bschnurr@microsoft", + "cdce8p", + "debonte@microsoft", + "dependabot[bot]", + "erictraut@microsoftcorp.", + "heejaechang@microsoft", + "jakebailey@microsoft", + "msfterictraut@microsoft", + "rchiodo@microsoft" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "microsoft", - "mitmathdepartment" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 14.48, - "_pop_updated_issues_count": 288, - "_pop_closed_issues_count": 200, - "_pop_created_since_days": 59, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 15, - "_pop_recent_releases_estimated_tags": 13, - "_pop_recent_releases_adjusted_count": 15, - "_pop_issue_count": 289.0, - "_pop_comment_count": 724.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 60, - "_pop_score": 59.33, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pyodide/pyodide/master/README.md", - "_readme_localurl": "pyodide~pyodide~README.md", - "_requirements_filenames": [ - "requirements.txt", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pyodide/pyodide/master/requirements.txt", - "https://raw.githubusercontent.com/pyodide/pyodide/master/pyproject.toml" - ], - "_requirements_localurls": [ - "pyodide~pyodide~requirements.txt", - "pyodide~pyodide~pyproject.toml" - ] - }, - { - "index": 412, - "category": "util", - "githuburl": "https://github.com/pre-commit/pre-commit", - "featured": null, - "links": null, - "description": null, - "_repopath": "pre-commit/pre-commit", - "_reponame": "pre-commit", - "_stars": 9355, - "_forks": 689, - "_watches": 82, - "_topics": [ - "git", - "pre-commit", - "python", - "linter", - "refactoring" + "microsoftcorp." ], - "_language": "Python", - "_homepage": "https://pre-commit.com", - "_description": "pre-commit: A framework for managing and maintaining multi-language pre-commit hooks.", - "_organization": "pre-commit", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2014-03-13T00:00:00.000Z", - "_age_weeks": 457, - "_stars_per_week": 20.44, - "_pop_contributor_count": 146, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "twitter", - "yelp" + "_pop_contributor_orgs_raw": [ + "@Microsoft ", + "Microsoft", + "Microsoft Corp." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.08, - "_pop_updated_issues_count": 155, - "_pop_closed_issues_count": 139, - "_pop_created_since_days": 107, + "_pop_commit_frequency": 21.23, + "_pop_updated_issues_count": 425, + "_pop_closed_issues_count": 410, + "_pop_created_since_days": 48, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 20, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 155.0, - "_pop_comment_count": 361.0, + "_pop_recent_releases_count": 71, + "_pop_recent_releases_estimated_tags": 95, + "_pop_recent_releases_adjusted_count": 71, + "_pop_issue_count": 425.0, + "_pop_comment_count": 1138.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.3, - "_pop_dependents_count": 1348, - "_pop_score": 60.67, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 0, + "_pop_score": 52.33, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pre-commit/pre-commit/master/README.md", - "_readme_localurl": "pre-commit~pre-commit~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pre-commit/pre-commit/master/setup.py" - ], - "_requirements_localurls": [ - "pre-commit~pre-commit~setup.py" - ] + "_readme_giturl": "https://raw.githubusercontent.com/microsoft/pyright/master/README.md", + "_readme_localurl": "microsoft~pyright~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { "index": 315, @@ -9430,9 +13138,17 @@ "description": null, "_repopath": "hoffstadt/dearpygui", "_reponame": "DearPyGui", - "_stars": 9255, - "_forks": 496, - "_watches": 136, + "_stars": 9684, + "_forks": 510, + "_watches": 139, + "_language": "C++", + "_homepage": "https://dearpygui.readthedocs.io/en/latest/", + "_description": "DearPyGui: Dear PyGui: A fast and powerful Graphical User Interface Toolkit for Python with minimal dependencies", + "_organization": "hoffstadt", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-05-28T00:00:00.000Z", + "_age_weeks": 142, + "_stars_per_week": 67.79, "_topics": [ "cpp", "python", @@ -9450,37 +13166,47 @@ "windows", "dearpygui" ], - "_language": "C++", - "_homepage": "https://dearpygui.readthedocs.io/en/latest/", - "_description": "DearPyGui: Dear PyGui: A fast and powerful Graphical User Interface Toolkit for Python with minimal dependencies", - "_organization": "hoffstadt", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2020-05-28T00:00:00.000Z", - "_age_weeks": 133, - "_stars_per_week": 69.29, - "_pop_contributor_count": 51, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 56, + "_pop_contributor_logins": [ + "CodeCox", + "DataExplorerUser", + "JMatthysen@benoitpremiumthreading", + "Jah-On", + "Mstpyt", + "Pcothren@benoitpremiumthreading", + "hoffstadt@metecs", + "iFreilicht", + "liu-kan@wbg,cas", + "v-ein" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "benoitpremiumthreading", - "metecs" + "metecs", + "wbg,cas" + ], + "_pop_contributor_orgs_raw": [ + "Benoit Premium Threading", + "Metecs", + "WBG, CAS" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.42, - "_pop_updated_issues_count": 131, - "_pop_closed_issues_count": 57, - "_pop_created_since_days": 31, + "_pop_commit_frequency": 2.56, + "_pop_updated_issues_count": 186, + "_pop_closed_issues_count": 134, + "_pop_created_since_days": 33, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 10, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 10, - "_pop_issue_count": 131.0, - "_pop_comment_count": 131.0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 186.0, + "_pop_comment_count": 192.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 64, - "_pop_score": 48.22, + "_pop_dependents_count": 0, + "_pop_score": 42.44, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/hoffstadt/dearpygui/master/README.md", "_readme_localurl": "hoffstadt~dearpygui~README.md", @@ -9495,132 +13221,172 @@ ] }, { - "index": 155, - "category": "data", - "githuburl": "https://github.com/s0md3v/photon", + "index": 225, + "category": "util", + "githuburl": "https://github.com/pyodide/pyodide", "featured": null, "links": null, "description": null, - "_repopath": "s0md3v/photon", - "_reponame": "Photon", - "_stars": 9231, - "_forks": 1359, - "_watches": 324, + "_repopath": "pyodide/pyodide", + "_reponame": "pyodide", + "_stars": 9631, + "_forks": 626, + "_watches": 126, + "_language": "Python", + "_homepage": "https://pyodide.org/en/stable/", + "_description": "Pyodide is a Python distribution for the browser and Node.js based on WebAssembly", + "_organization": "pyodide", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-02-23T00:00:00.000Z", + "_age_weeks": 260, + "_stars_per_week": 36.94, "_topics": [ - "crawler", - "spider", "python", - "osint", - "information-gathering" + "webassembly" ], - "_language": "Python", - "_homepage": "", - "_description": "Photon: Incredibly fast crawler designed for OSINT.", - "_organization": "s0md3v", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-03-16T00:00:00.000Z", - "_created_at": "2018-03-30T00:00:00.000Z", - "_age_weeks": 246, - "_stars_per_week": 37.46, - "_pop_contributor_count": 21, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 164, + "_pop_contributor_logins": [ + "casatir@\u00e9ducationnationale", + "dalcde", + "henryiii@princetonuniversity", + "hoodmane@mitmathdepartment", + "mdboom@microsoft", + "msabramo@adobe", + "pre-commit-ci[bot]", + "rth", + "ryanking13", + "wlach@voltus" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "na" + "adobe", + "microsoft", + "mitmathdepartment", + "princetonuniversity", + "voltus", + "\u00e9ducationnationale" + ], + "_pop_contributor_orgs_raw": [ + "@adobe", + "MIT Math Department", + "Microsoft", + "Princeton University", + "Voltus, Inc.", + "\u00c9ducation Nationale" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.02, - "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 57, - "_pop_updated_since_days": 9, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 3.0, - "_pop_comment_count": 2.0, + "_pop_commit_frequency": 15.6, + "_pop_updated_issues_count": 345, + "_pop_closed_issues_count": 257, + "_pop_created_since_days": 61, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 16, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 16, + "_pop_issue_count": 345.0, + "_pop_comment_count": 622.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 52, - "_pop_score": 29.49, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 55.86, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/s0md3v/photon/master/README.md", - "_readme_localurl": "s0md3v~photon~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pyodide/pyodide/master/README.md", + "_readme_localurl": "pyodide~pyodide~README.md", "_requirements_filenames": [ - "requirements.txt" + "requirements.txt", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/s0md3v/photon/master/requirements.txt" + "https://raw.githubusercontent.com/pyodide/pyodide/master/requirements.txt", + "https://raw.githubusercontent.com/pyodide/pyodide/master/pyproject.toml" ], "_requirements_localurls": [ - "s0md3v~photon~requirements.txt" + "pyodide~pyodide~requirements.txt", + "pyodide~pyodide~pyproject.toml" ] }, { - "index": 655, - "category": "util", - "githuburl": "https://github.com/magicstack/uvloop", + "index": 142, + "category": "nlp", + "githuburl": "https://github.com/ukplab/sentence-transformers", "featured": null, "links": null, "description": null, - "_repopath": "magicstack/uvloop", - "_reponame": "uvloop", - "_stars": 9071, - "_forks": 525, - "_watches": 226, - "_topics": [ - "asyncio", - "async-await", - "async", - "high-performance", - "libuv", - "python", - "python-3", - "event-loop", - "networking", - "async-python" + "_repopath": "ukplab/sentence-transformers", + "_reponame": "sentence-transformers", + "_stars": 9457, + "_forks": 1858, + "_watches": 120, + "_language": "Python", + "_homepage": "https://www.SBERT.net", + "_description": "sentence-transformers: Multilingual Sentence & Image Embeddings with BERT", + "_organization": "ukplab", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-07-24T00:00:00.000Z", + "_age_weeks": 187, + "_stars_per_week": 50.57, + "_topics": [], + "_last_commit_date": "2023-01-26T00:00:00.000Z", + "_pop_contributor_count": 107, + "_pop_contributor_logins": [ + "ArzelaAscoIi@developerdeepset-ai", + "NimaBoscarino@huggingface", + "PhilipMay@telekom", + "andrewkittredge@calcbench", + "cpcdoy", + "fros1y", + "kwang2049", + "nreimers@huggingface", + "osanseviero@huggingface", + "sidhantls" ], - "_language": "Cython", - "_homepage": "", - "_description": "uvloop: Ultra fast asyncio event loop.", - "_organization": "magicstack", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-09-14T00:00:00.000Z", - "_created_at": "2015-11-08T00:00:00.000Z", - "_age_weeks": 371, - "_stars_per_week": 24.44, - "_pop_contributor_count": 55, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "edgedb" + "calcbench", + "developerdeepset-ai", + "huggingface", + "telekom" + ], + "_pop_contributor_orgs_raw": [ + "@telekom", + "Calcbench", + "Developer @deepset-ai", + "Hugging Face", + "Huggingface", + "huggingface" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.6, - "_pop_updated_issues_count": 26, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 87, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 11, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 26.0, - "_pop_comment_count": 37.0, + "_pop_commit_frequency": 1.63, + "_pop_updated_issues_count": 134, + "_pop_closed_issues_count": 29, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 134.0, + "_pop_comment_count": 141.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 569, - "_pop_score": 42.85, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/magicstack/uvloop/master/README.rst", - "_readme_localurl": "magicstack~uvloop~README.rst", + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 40.96, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/ukplab/sentence-transformers/master/README.md", + "_readme_localurl": "ukplab~sentence-transformers~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/magicstack/uvloop/master/setup.py" + "https://raw.githubusercontent.com/ukplab/sentence-transformers/master/requirements.txt", + "https://raw.githubusercontent.com/ukplab/sentence-transformers/master/setup.py" ], "_requirements_localurls": [ - "magicstack~uvloop~setup.py" + "ukplab~sentence-transformers~requirements.txt", + "ukplab~sentence-transformers~setup.py" ] }, { @@ -9632,46 +13398,65 @@ "description": null, "_repopath": "tiangolo/sqlmodel", "_reponame": "sqlmodel", - "_stars": 9061, - "_forks": 385, - "_watches": 118, - "_topics": [ - "python", - "sql", - "sqlalchemy", - "pydantic", - "fastapi", - "json", - "json-schema" - ], + "_stars": 9406, + "_forks": 405, + "_watches": 123, "_language": "Python", "_homepage": "https://sqlmodel.tiangolo.com/", "_description": "sqlmodel: SQL databases in Python, designed for simplicity, compatibility, and robustness.", "_organization": "tiangolo", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2021-08-24T00:00:00.000Z", - "_age_weeks": 68, - "_stars_per_week": 131.59, + "_age_weeks": 78, + "_stars_per_week": 120.37, + "_topics": [ + "python", + "sql", + "sqlalchemy", + "pydantic", + "fastapi", + "json", + "json-schema" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", "_pop_contributor_count": 54, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_pop_contributor_logins": [ + "Batalex", + "alucarddelta", + "aminalaee", + "andrewbolster@farsetlabswhitehatsec", + "byrman", + "chrisgoddard@pdi", + "chriswhite199", + "dependabot[bot]", + "jalvaradosegura", + "tiangolo" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "farsetlabswhitehatsec", + "pdi" + ], + "_pop_contributor_orgs_raw": [ + "@FarsetLabs @WhiteHatSec", + "PDI" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.98, - "_pop_updated_issues_count": 137, - "_pop_closed_issues_count": 67, - "_pop_created_since_days": 16, + "_pop_commit_frequency": 2.94, + "_pop_updated_issues_count": 103, + "_pop_closed_issues_count": 27, + "_pop_created_since_days": 18, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, + "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 137.0, - "_pop_comment_count": 308.0, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 103.0, + "_pop_comment_count": 194.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.2, - "_pop_dependents_count": 42, - "_pop_score": 40.84, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 38.01, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tiangolo/sqlmodel/master/README.md", "_readme_localurl": "tiangolo~sqlmodel~README.md", @@ -9686,202 +13471,169 @@ ] }, { - "index": 142, - "category": "nlp", - "githuburl": "https://github.com/ukplab/sentence-transformers", + "index": 155, + "category": "data", + "githuburl": "https://github.com/s0md3v/photon", "featured": null, "links": null, "description": null, - "_repopath": "ukplab/sentence-transformers", - "_reponame": "sentence-transformers", - "_stars": 9012, - "_forks": 1796, - "_watches": 116, - "_topics": [], + "_repopath": "s0md3v/photon", + "_reponame": "Photon", + "_stars": 9406, + "_forks": 1377, + "_watches": 325, "_language": "Python", - "_homepage": "https://www.SBERT.net", - "_description": "sentence-transformers: Multilingual Sentence & Image Embeddings with BERT", - "_organization": "ukplab", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-28T00:00:00.000Z", - "_created_at": "2019-07-24T00:00:00.000Z", - "_age_weeks": 177, - "_stars_per_week": 50.71, - "_pop_contributor_count": 106, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "huggingface", - "telekom" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.02, - "_pop_updated_issues_count": 141, - "_pop_closed_issues_count": 44, - "_pop_created_since_days": 41, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 141.0, - "_pop_comment_count": 158.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 118, - "_pop_score": 47.89, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/ukplab/sentence-transformers/master/README.md", - "_readme_localurl": "ukplab~sentence-transformers~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/ukplab/sentence-transformers/master/requirements.txt", - "https://raw.githubusercontent.com/ukplab/sentence-transformers/master/setup.py" - ], - "_requirements_localurls": [ - "ukplab~sentence-transformers~requirements.txt", - "ukplab~sentence-transformers~setup.py" - ] - }, - { - "index": 398, - "category": "web", - "githuburl": "https://github.com/falconry/falcon", - "featured": null, - "links": null, - "description": null, - "_repopath": "falconry/falcon", - "_reponame": "falcon", - "_stars": 8978, - "_forks": 898, - "_watches": 266, + "_homepage": "", + "_description": "Photon: Incredibly fast crawler designed for OSINT.", + "_organization": "s0md3v", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-03-30T00:00:00.000Z", + "_age_weeks": 255, + "_stars_per_week": 36.78, "_topics": [ + "crawler", + "spider", "python", - "framework", - "rest", - "microservices", - "web", - "api", - "http", - "wsgi", - "asgi", - "api-rest", - "hacktoberfest-accepted", - "hacktoberfest2022", - "hacktoberfest" + "osint", + "information-gathering" + ], + "_last_commit_date": "2022-12-20T00:00:00.000Z", + "_pop_contributor_count": 21, + "_pop_contributor_logins": [ + "BBerastegui", + "alessaba", + "connorskees", + "fabaff", + "joeyliechty@bloomreach", + "neutrinoguy", + "oXis", + "s0md3v", + "sirfoga", + "snehm@na" ], - "_language": "Python", - "_homepage": "https://falcon.readthedocs.io/en/stable/", - "_description": "falcon: The no-magic web data plane API and microservices framework for Python developers, with a focus on reliability, correctness, and performance at scale.", - "_organization": "falconry", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", - "_created_at": "2012-12-06T00:00:00.000Z", - "_age_weeks": 523, - "_stars_per_week": 17.15, - "_pop_contributor_count": 195, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "centurylink", - "liquidweb" + "bloomreach", + "na" + ], + "_pop_contributor_orgs_raw": [ + "Bloomreach", + "NA" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.27, - "_pop_updated_issues_count": 43, - "_pop_closed_issues_count": 26, - "_pop_created_since_days": 122, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 8, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 43.0, - "_pop_comment_count": 67.0, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 60, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 3.0, + "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 39, - "_pop_score": 50.91, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/falconry/falcon/master/README.rst", - "_readme_localurl": "falconry~falcon~README.rst", + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 0, + "_pop_score": 26.33, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/s0md3v/photon/master/README.md", + "_readme_localurl": "s0md3v~photon~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/falconry/falcon/master/setup.py", - "https://raw.githubusercontent.com/falconry/falcon/master/pyproject.toml" + "https://raw.githubusercontent.com/s0md3v/photon/master/requirements.txt" ], "_requirements_localurls": [ - "falconry~falcon~setup.py", - "falconry~falcon~pyproject.toml" + "s0md3v~photon~requirements.txt" ] }, { - "index": 157, + "index": 655, "category": "util", - "githuburl": "https://github.com/pallets/jinja", + "githuburl": "https://github.com/magicstack/uvloop", "featured": null, "links": null, "description": null, - "_repopath": "pallets/jinja", - "_reponame": "jinja", - "_stars": 8940, - "_forks": 1529, - "_watches": 252, + "_repopath": "magicstack/uvloop", + "_reponame": "uvloop", + "_stars": 9186, + "_forks": 537, + "_watches": 226, + "_language": "Cython", + "_homepage": "", + "_description": "uvloop: Ultra fast asyncio event loop.", + "_organization": "magicstack", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-11-08T00:00:00.000Z", + "_age_weeks": 380, + "_stars_per_week": 24.15, "_topics": [ + "asyncio", + "async-await", + "async", + "high-performance", + "libuv", "python", - "template-engine", - "jinja", - "jinja2", - "templates", - "pallets" + "python-3", + "event-loop", + "networking", + "async-python" + ], + "_last_commit_date": "2023-01-15T00:00:00.000Z", + "_pop_contributor_count": 56, + "_pop_contributor_logins": [ + "1st1@edgedb", + "Jackenmen", + "asvetlov@neu.ro", + "cclauss@christianclauss", + "claws", + "elprans@edgedb", + "fantix@edgedb", + "graingert", + "jensbjorgensen", + "jlaine" ], - "_language": "Python", - "_homepage": "https://jinja.palletsprojects.com", - "_description": "jinja: A very fast and expressive template engine.", - "_organization": "pallets", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-01T00:00:00.000Z", - "_created_at": "2010-10-17T00:00:00.000Z", - "_age_weeks": 635, - "_stars_per_week": 14.08, - "_pop_contributor_count": 302, "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "cern/indico", - "getsentry", - "sentry" + "christianclauss", + "edgedb", + "neu.ro" + ], + "_pop_contributor_orgs_raw": [ + "@edgedb", + "Christian Clauss", + "EdgeDB Inc.", + "Neu.ro" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.25, - "_pop_updated_issues_count": 52, - "_pop_closed_issues_count": 31, - "_pop_created_since_days": 148, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 52.0, - "_pop_comment_count": 48.0, + "_pop_commit_frequency": 0.6, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 89, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 12.0, + "_pop_comment_count": 21.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 16433, - "_pop_score": 60.78, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 36.44, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pallets/jinja/master/README.rst", - "_readme_localurl": "pallets~jinja~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/magicstack/uvloop/master/README.rst", + "_readme_localurl": "magicstack~uvloop~README.rst", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pallets/jinja/master/setup.py" + "https://raw.githubusercontent.com/magicstack/uvloop/master/setup.py" ], "_requirements_localurls": [ - "pallets~jinja~setup.py" + "magicstack~uvloop~setup.py" ] }, { @@ -9893,9 +13645,17 @@ "description": null, "_repopath": "marceloprates/prettymaps", "_reponame": "prettymaps", - "_stars": 8935, - "_forks": 428, - "_watches": 80, + "_stars": 9068, + "_forks": 440, + "_watches": 74, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "prettymaps: A small set of Python functions to draw pretty maps from OpenStreetMap data. Based on osmnx, matplotlib and shapely libraries.", + "_organization": "marceloprates", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2021-03-05T00:00:00.000Z", + "_age_weeks": 102, + "_stars_per_week": 88.28, "_topics": [ "matplotlib", "jupyter-notebook", @@ -9905,36 +13665,49 @@ "maps", "openstreetmap" ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "prettymaps: A small set of Python functions to draw pretty maps from OpenStreetMap data. Based on osmnx, matplotlib and shapely libraries.", - "_organization": "marceloprates", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-16T00:00:00.000Z", - "_created_at": "2021-03-05T00:00:00.000Z", - "_age_weeks": 93, - "_stars_per_week": 95.63, + "_last_commit_date": "2023-02-15T00:00:00.000Z", "_pop_contributor_count": 15, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "CharbelAD", + "G21-Goose", + "JonFreer", + "TheJokersThief", + "chrieke@up42", + "kinow@barcelonasupercomputingcenter", + "marceloprates", + "matthewfeickert@universityofwisconsin-madison", + "mfbehrens99", + "sacovo@studentfhnw" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "barcelonasupercomputingcenter", + "studentfhnw", + "universityofwisconsin-madison", "up42" ], + "_pop_contributor_orgs_raw": [ + "@up42", + "Barcelona Supercomputing Center", + "University of Wisconsin-Madison", + "student@FHNW" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.52, - "_pop_updated_issues_count": 11, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 22, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 11.0, - "_pop_comment_count": 7.0, + "_pop_commit_frequency": 0.83, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 24, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 9.0, + "_pop_comment_count": 17.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 14, - "_pop_score": 29.64, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 32.78, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/marceloprates/prettymaps/master/README.md", "_readme_localurl": "marceloprates~prettymaps~README.md", @@ -9952,405 +13725,810 @@ ] }, { - "index": 517, - "category": "typing", - "githuburl": "https://github.com/microsoft/pyright", - "featured": null, - "links": null, - "description": null, - "_repopath": "microsoft/pyright", - "_reponame": "pyright", - "_stars": 8923, - "_forks": 644, - "_watches": 79, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "pyright: Static type checker for Python", - "_organization": "microsoft", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2019-03-12T00:00:00.000Z", - "_age_weeks": 196, - "_stars_per_week": 45.33, - "_pop_contributor_count": 83, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "microsoft", - "microsoftcorp." - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 24.56, - "_pop_updated_issues_count": 372, - "_pop_closed_issues_count": 356, - "_pop_created_since_days": 46, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 87, - "_pop_recent_releases_estimated_tags": 97, - "_pop_recent_releases_adjusted_count": 87, - "_pop_issue_count": 370.0, - "_pop_comment_count": 924.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 1392, - "_pop_score": 64.92, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/microsoft/pyright/master/README.md", - "_readme_localurl": "microsoft~pyright~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, - { - "index": 244, + "index": 157, "category": "util", - "githuburl": "https://github.com/aws/serverless-application-model", + "githuburl": "https://github.com/pallets/jinja", "featured": null, "links": null, "description": null, - "_repopath": "aws/serverless-application-model", - "_reponame": "serverless-application-model", - "_stars": 8855, - "_forks": 2275, - "_watches": 307, + "_repopath": "pallets/jinja", + "_reponame": "jinja", + "_stars": 9065, + "_forks": 1539, + "_watches": 250, + "_language": "Python", + "_homepage": "https://jinja.palletsprojects.com", + "_description": "jinja: A very fast and expressive template engine.", + "_organization": "pallets", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2010-10-17T00:00:00.000Z", + "_age_weeks": 644, + "_stars_per_week": 14.07, "_topics": [ - "serverless", - "aws", - "lambda", - "aws-sam", - "sam", - "sam-specification", - "serverless-applications", - "serverless-application-model" + "python", + "template-engine", + "jinja", + "jinja2", + "templates", + "pallets" ], - "_language": "Python", - "_homepage": "https://aws.amazon.com/serverless/sam", - "_description": "serverless-application-model: The AWS Serverless Application Model (AWS SAM) transform is a AWS CloudFormation macro that transforms SAM templates into CloudFormation templates.", - "_organization": "aws", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2016-10-10T00:00:00.000Z", - "_age_weeks": 323, - "_stars_per_week": 27.41, - "_pop_contributor_count": 255, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-07T00:00:00.000Z", + "_pop_contributor_count": 304, + "_pop_contributor_logins": [ + "ThiefMaster@cern/indico", + "amy-lei", + "birkenfeld@fzj\u00fclich", + "davidism", + "dependabot-preview[bot]", + "dependabot[bot]", + "mitsuhiko@sentry", + "pre-commit-ci[bot]", + "tux21b", + "untitaker@getsentry" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "aws", - "leland" + "cern/indico", + "fzj\u00fclich", + "getsentry", + "sentry" + ], + "_pop_contributor_orgs_raw": [ + "@getsentry ", + "CERN / @indico ", + "FZ J\u00fclich", + "Sentry" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.06, - "_pop_updated_issues_count": 467, - "_pop_closed_issues_count": 322, - "_pop_created_since_days": 75, + "_pop_commit_frequency": 1.29, + "_pop_updated_issues_count": 66, + "_pop_closed_issues_count": 51, + "_pop_created_since_days": 150, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 13, - "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 467.0, - "_pop_comment_count": 343.0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 66.0, + "_pop_comment_count": 43.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 372, - "_pop_score": 60.48, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/aws/serverless-application-model/master/README.md", - "_readme_localurl": "aws~serverless-application-model~README.md", + "_pop_dependents_count": 0, + "_pop_score": 47.23, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pallets/jinja/master/README.rst", + "_readme_localurl": "pallets~jinja~README.rst", "_requirements_filenames": [ - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/aws/serverless-application-model/master/setup.py", - "https://raw.githubusercontent.com/aws/serverless-application-model/master/pyproject.toml" + "https://raw.githubusercontent.com/pallets/jinja/master/pyproject.toml" ], "_requirements_localurls": [ - "aws~serverless-application-model~setup.py", - "aws~serverless-application-model~pyproject.toml" + "pallets~jinja~pyproject.toml" ] }, { - "index": 132, - "category": "ml", - "githuburl": "https://github.com/epistasislab/tpot", + "index": 398, + "category": "web", + "githuburl": "https://github.com/falconry/falcon", "featured": null, "links": null, "description": null, - "_repopath": "epistasislab/tpot", - "_reponame": "tpot", - "_stars": 8846, - "_forks": 1504, - "_watches": 291, + "_repopath": "falconry/falcon", + "_reponame": "falcon", + "_stars": 9018, + "_forks": 901, + "_watches": 267, + "_language": "Python", + "_homepage": "https://falcon.readthedocs.io/en/stable/", + "_description": "falcon: The no-magic web data plane API and microservices framework for Python developers, with a focus on reliability, correctness, and performance at scale.", + "_organization": "falconry", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-12-06T00:00:00.000Z", + "_age_weeks": 532, + "_stars_per_week": 16.92, "_topics": [ - "machine-learning", "python", - "data-science", - "automl", - "automation", - "scikit-learn", - "hyperparameter-optimization", - "model-selection", - "parameter-tuning", - "automated-machine-learning", - "random-forest", - "gradient-boosting", - "feature-engineering", - "aiml", - "alzheimer", - "alzheimers", - "nia", - "u01ag066833", - "ag066833", - "adsp" + "framework", + "rest", + "microservices", + "web", + "api", + "http", + "wsgi", + "asgi", + "api-rest" ], - "_language": "Python", - "_homepage": "http://epistasislab.github.io/tpot/", - "_description": "tpot: A Python Automated Machine Learning tool that optimizes machine learning pipelines using genetic programming.", - "_organization": "epistasislab", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-07-29T00:00:00.000Z", - "_created_at": "2015-11-03T00:00:00.000Z", - "_age_weeks": 371, - "_stars_per_week": 23.79, - "_pop_contributor_count": 112, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-01-18T00:00:00.000Z", + "_pop_contributor_count": 196, + "_pop_contributor_logins": [ + "CaselIT", + "fxfitz@centurylink", + "jmvrbanac@liquidweb", + "kgriffs", + "lichray@broadcom", + "myusko", + "painterjd@.", + "santeyio", + "steven-upside", + "vytas7" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "children'shospitalofphiladelphia", - "eindhovenuniversityoftechnology", - "usc" + ".", + "broadcom", + "centurylink", + "liquidweb" + ], + "_pop_contributor_orgs_raw": [ + ".", + "@liquidweb", + "Broadcom Inc.", + "CenturyLink" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.35, - "_pop_updated_issues_count": 15, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 87, - "_pop_updated_since_days": 5, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 15.0, - "_pop_comment_count": 13.0, + "_pop_commit_frequency": 1.06, + "_pop_updated_issues_count": 48, + "_pop_closed_issues_count": 19, + "_pop_created_since_days": 124, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 48.0, + "_pop_comment_count": 47.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 20, - "_pop_score": 41.04, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/epistasislab/tpot/master/README.md", - "_readme_localurl": "epistasislab~tpot~README.md", + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 45.41, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/falconry/falcon/master/README.rst", + "_readme_localurl": "falconry~falcon~README.rst", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/epistasislab/tpot/master/requirements.txt", - "https://raw.githubusercontent.com/epistasislab/tpot/master/setup.py" + "https://raw.githubusercontent.com/falconry/falcon/master/setup.py", + "https://raw.githubusercontent.com/falconry/falcon/master/pyproject.toml" ], "_requirements_localurls": [ - "epistasislab~tpot~requirements.txt", - "epistasislab~tpot~setup.py" + "falconry~falcon~setup.py", + "falconry~falcon~pyproject.toml" ] }, { - "index": 780, - "category": "diffusion", - "githuburl": "https://github.com/huggingface/diffusers", + "index": 126, + "category": "ml-dl", + "githuburl": "https://github.com/microsoft/deepspeed", "featured": null, "links": null, "description": null, - "_repopath": "huggingface/diffusers", - "_reponame": "diffusers", - "_stars": 8780, - "_forks": 1520, - "_watches": 99, - "_topics": [ - "deep-learning", - "diffusion", - "image-generation", + "_repopath": "microsoft/deepspeed", + "_reponame": "DeepSpeed", + "_stars": 8958, + "_forks": 1077, + "_watches": 146, + "_language": "Python", + "_homepage": "https://www.deepspeed.ai/", + "_description": "DeepSpeed is a deep learning optimization library that makes distributed training and inference easy, efficient, and effective.", + "_organization": "microsoft", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-01-23T00:00:00.000Z", + "_age_weeks": 160, + "_stars_per_week": 55.69, + "_topics": [ + "deep-learning", "pytorch", - "score-based-generative-modeling", - "image2image", - "text2image", - "stable-diffusion", - "hacktoberfest" + "gpu", + "machine-learning", + "billion-parameters", + "data-parallelism", + "model-parallelism", + "inference", + "pipeline-parallelism", + "compression", + "mixture-of-experts", + "trillion-parameters", + "zero" ], - "_language": "Python", - "_homepage": "https://huggingface.co/docs/diffusers", - "_description": "\ud83e\udd17 Diffusers: State-of-the-art diffusion models for image and audio generation in PyTorch", - "_organization": "huggingface", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2022-05-30T00:00:00.000Z", - "_age_weeks": 29, - "_stars_per_week": 302.76, + "_last_commit_date": "2023-02-17T00:00:00.000Z", "_pop_contributor_count": 159, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "RezaYazdaniAminabadi@microsoft", + "ShadenSmith@microsoft", + "awan-10@microsoft", + "cli99@microsoft", + "conglongli@microsoft", + "jeffra@microsoft", + "mrwyattii", + "samyam", + "stas00@stasosphereonline/huggingface", + "tjruwase" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "huggingface" + "microsoft", + "stasosphereonline/huggingface" + ], + "_pop_contributor_orgs_raw": [ + "@microsoft", + "@microsoft ", + "Microsoft", + "Stasosphere Online Inc. / HuggingFace Inc." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 26.25, - "_pop_updated_issues_count": 1315, - "_pop_closed_issues_count": 1033, - "_pop_created_since_days": 7, + "_pop_commit_frequency": 9.04, + "_pop_updated_issues_count": 449, + "_pop_closed_issues_count": 277, + "_pop_created_since_days": 38, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 23, - "_pop_recent_releases_estimated_tags": 49, - "_pop_recent_releases_adjusted_count": 23, - "_pop_issue_count": 1315.0, - "_pop_comment_count": 5140.0, + "_pop_recent_releases_count": 17, + "_pop_recent_releases_estimated_tags": 18, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 449.0, + "_pop_comment_count": 840.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.9, - "_pop_dependents_count": 5139, - "_pop_score": 65.64, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 50.11, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/huggingface/diffusers/master/README.md", - "_readme_localurl": "huggingface~diffusers~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/microsoft/deepspeed/master/README.md", + "_readme_localurl": "microsoft~deepspeed~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/huggingface/diffusers/master/setup.py", - "https://raw.githubusercontent.com/huggingface/diffusers/master/pyproject.toml" + "https://raw.githubusercontent.com/microsoft/deepspeed/master/setup.py" ], "_requirements_localurls": [ - "huggingface~diffusers~setup.py", - "huggingface~diffusers~pyproject.toml" + "microsoft~deepspeed~setup.py" ] }, { - "index": 5, - "category": "web", - "githuburl": "https://github.com/benoitc/gunicorn", + "index": 523, + "category": "ml-dl", + "githuburl": "https://github.com/lucidrains/dalle2-pytorch", "featured": null, "links": null, "description": null, - "_repopath": "benoitc/gunicorn", - "_reponame": "gunicorn", - "_stars": 8684, - "_forks": 1619, - "_watches": 234, + "_repopath": "lucidrains/dalle2-pytorch", + "_reponame": "DALLE2-pytorch", + "_stars": 8951, + "_forks": 772, + "_watches": 123, + "_language": "Python", + "_homepage": "", + "_description": "DALLE2-pytorch: Implementation of DALL-E 2, OpenAI's updated text-to-image synthesis neural network, in Pytorch", + "_organization": "lucidrains", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-04-07T00:00:00.000Z", + "_age_weeks": 45, + "_stars_per_week": 195.19, "_topics": [ - "http-server", - "http", - "python", - "wsgi-server", - "wsgi" + "artificial-intelligence", + "deep-learning", + "text-to-image" ], - "_language": "Python", - "_homepage": "http://www.gunicorn.org", - "_description": "gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications.", - "_organization": "benoitc", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-03T00:00:00.000Z", - "_created_at": "2009-11-30T00:00:00.000Z", - "_age_weeks": 681, - "_stars_per_week": 12.75, - "_pop_contributor_count": 380, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-12T00:00:00.000Z", + "_pop_contributor_count": 16, + "_pop_contributor_logins": [ + "Conight", + "JiaHeng-DLUT", + "Light-V", + "Veldrovive", + "kashif", + "krish240574", + "lucidrains", + "nousr", + "rom1504@google", + "zaaachos" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "confluentinc", - "enkimultimedia", - "nytimes" + "google" + ], + "_pop_contributor_orgs_raw": [ + "@google" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.5, - "_pop_updated_issues_count": 167, - "_pop_closed_issues_count": 90, - "_pop_created_since_days": 159, + "_pop_commit_frequency": 11.23, + "_pop_updated_issues_count": 18, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 11, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 167.0, - "_pop_comment_count": 184.0, + "_pop_recent_releases_count": 334, + "_pop_recent_releases_estimated_tags": 376, + "_pop_recent_releases_adjusted_count": 334, + "_pop_issue_count": 17.0, + "_pop_comment_count": 19.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 2114, - "_pop_score": 62.92, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/benoitc/gunicorn/master/README.rst", - "_readme_localurl": "benoitc~gunicorn~README.rst", + "_pop_dependents_count": 0, + "_pop_score": 33.89, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/lucidrains/dalle2-pytorch/master/README.md", + "_readme_localurl": "lucidrains~dalle2-pytorch~README.md", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/benoitc/gunicorn/master/setup.py" + "https://raw.githubusercontent.com/lucidrains/dalle2-pytorch/master/setup.py" ], "_requirements_localurls": [ - "benoitc~gunicorn~setup.py" + "lucidrains~dalle2-pytorch~setup.py" ] }, { - "index": 134, - "category": "ml-dl", - "githuburl": "https://github.com/keras-team/autokeras", + "index": 132, + "category": "ml", + "githuburl": "https://github.com/epistasislab/tpot", "featured": null, "links": null, "description": null, - "_repopath": "keras-team/autokeras", - "_reponame": "autokeras", - "_stars": 8681, - "_forks": 1385, - "_watches": 306, + "_repopath": "epistasislab/tpot", + "_reponame": "tpot", + "_stars": 8947, + "_forks": 1516, + "_watches": 294, + "_language": "Python", + "_homepage": "http://epistasislab.github.io/tpot/", + "_description": "tpot: A Python Automated Machine Learning tool that optimizes machine learning pipelines using genetic programming.", + "_organization": "epistasislab", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-11-03T00:00:00.000Z", + "_age_weeks": 381, + "_stars_per_week": 23.47, "_topics": [ + "machine-learning", + "python", + "data-science", "automl", - "neural-architecture-search", + "automation", + "scikit-learn", + "hyperparameter-optimization", + "model-selection", + "parameter-tuning", "automated-machine-learning", - "python", - "deep-learning", - "machine-learning", - "autodl", - "tensorflow", - "keras" + "random-forest", + "gradient-boosting", + "feature-engineering", + "aiml", + "alzheimer", + "alzheimers", + "nia", + "u01ag066833", + "ag066833", + "adsp" + ], + "_last_commit_date": "2022-07-29T00:00:00.000Z", + "_pop_contributor_count": 112, + "_pop_contributor_logins": [ + "GJena", + "JDRomano2@universityofpennsylvania", + "PGijsbers@eindhovenuniversityoftechnology", + "TomAugspurger@microsoft", + "bartleyn@usc", + "beckernick@nvidia", + "pronojitsaha", + "rasbt@lightning-ai,universityofwisconsin-madison", + "rhiever", + "weixuanfu@children'shospitalofphiladelphia" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "children'shospitalofphiladelphia", + "eindhovenuniversityoftechnology", + "lightning-ai,universityofwisconsin-madison", + "microsoft", + "nvidia", + "universityofpennsylvania", + "usc" + ], + "_pop_contributor_orgs_raw": [ + "@Lightning-AI , University of Wisconsin-Madison", + "@NVIDIA", + "@microsoft", + "Children's Hospital of Philadelphia", + "Eindhoven University of Technology", + "USC", + "University of Pennsylvania" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.35, + "_pop_updated_issues_count": 17, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 89, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 17.0, + "_pop_comment_count": 13.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 38.03, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/epistasislab/tpot/master/README.md", + "_readme_localurl": "epistasislab~tpot~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/epistasislab/tpot/master/requirements.txt", + "https://raw.githubusercontent.com/epistasislab/tpot/master/setup.py" ], + "_requirements_localurls": [ + "epistasislab~tpot~requirements.txt", + "epistasislab~tpot~setup.py" + ] + }, + { + "index": 244, + "category": "util", + "githuburl": "https://github.com/aws/serverless-application-model", + "featured": null, + "links": null, + "description": null, + "_repopath": "aws/serverless-application-model", + "_reponame": "serverless-application-model", + "_stars": 8923, + "_forks": 2295, + "_watches": 297, "_language": "Python", - "_homepage": "http://autokeras.com/", - "_description": "autokeras: AutoML library for deep learning", - "_organization": "keras-team", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2017-11-19T00:00:00.000Z", - "_age_weeks": 265, - "_stars_per_week": 32.74, - "_pop_contributor_count": 139, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://aws.amazon.com/serverless/sam", + "_description": "serverless-application-model: The AWS Serverless Application Model (AWS SAM) transform is a AWS CloudFormation macro that transforms SAM templates into CloudFormation templates.", + "_organization": "aws", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-10-10T00:00:00.000Z", + "_age_weeks": 332, + "_stars_per_week": 26.85, + "_topics": [ + "serverless", + "aws", + "lambda", + "aws-sam", + "sam", + "sam-specification", + "serverless-applications", + "serverless-application-model" + ], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 260, + "_pop_contributor_logins": [ + "GavinZZ@aws", + "aahung@aws", + "brettstack@amazonwebservices-serverlessapplications", + "hawflau@aws", + "hoffa@aws", + "jfuss@awslambda", + "keetonian@leland", + "mndeveci", + "praneetap@aws", + "sanathkr@rarecamp" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "keras-teamtensorflowgooglers", - "preligens" + "amazonwebservices-serverlessapplications", + "aws", + "awslambda", + "leland", + "rarecamp" + ], + "_pop_contributor_orgs_raw": [ + "@AWS Lambda", + "@RareCamp", + "@aws", + "@aws ", + "AWS", + "Amazon Web Services - Serverless Applications", + "Leland" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.81, + "_pop_updated_issues_count": 470, + "_pop_closed_issues_count": 349, + "_pop_created_since_days": 78, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 18, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 18, + "_pop_issue_count": 470.0, + "_pop_comment_count": 284.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 54.13, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/aws/serverless-application-model/master/README.md", + "_readme_localurl": "aws~serverless-application-model~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/aws/serverless-application-model/master/setup.py", + "https://raw.githubusercontent.com/aws/serverless-application-model/master/pyproject.toml" + ], + "_requirements_localurls": [ + "aws~serverless-application-model~setup.py", + "aws~serverless-application-model~pyproject.toml" + ] + }, + { + "index": 470, + "category": "nlp", + "githuburl": "https://github.com/microsoft/unilm", + "featured": null, + "links": null, + "description": null, + "_repopath": "microsoft/unilm", + "_reponame": "unilm", + "_stars": 8880, + "_forks": 1535, + "_watches": 231, + "_language": "Python", + "_homepage": "https://aka.ms/nlpagi", + "_description": "unilm: Large-scale Self-supervised Pre-training Across Tasks, Languages, and Modalities", + "_organization": "microsoft", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-07-23T00:00:00.000Z", + "_age_weeks": 187, + "_stars_per_week": 47.45, + "_topics": [ + "nlp", + "language-understanding", + "language-generation", + "pre-trained-model", + "small-pre-trained-model", + "unilm", + "minilm", + "layoutlm", + "infoxlm", + "multimodal-pre-trained-model", + "layoutxlm", + "beit", + "document-ai", + "trocr", + "wavlm", + "beit-3", + "foundation-models", + "xlm-e", + "deepnet", + "document-foundation-model" + ], + "_last_commit_date": "2023-02-10T00:00:00.000Z", + "_pop_contributor_count": 55, + "_pop_contributor_logins": [ + "Dod-o", + "MarkWuNLP@microsoftresearch", + "addf400@harbininstituteoftechnology", + "donglixp@microsoftresearch", + "getao@microsoft", + "gitnlp", + "lockon-n", + "ranpox", + "shumingma@microsoftresearch", + "wolfshow" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "harbininstituteoftechnology", + "microsoft", + "microsoftresearch" + ], + "_pop_contributor_orgs_raw": [ + "Harbin Institute of Technology", + "Microsoft", + "Microsoft Research" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.6, - "_pop_updated_issues_count": 47, - "_pop_closed_issues_count": 28, - "_pop_created_since_days": 62, + "_pop_commit_frequency": 6.06, + "_pop_updated_issues_count": 120, + "_pop_closed_issues_count": 52, + "_pop_created_since_days": 44, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 11, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 47.0, - "_pop_comment_count": 42.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 121.0, + "_pop_comment_count": 154.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 3, - "_pop_score": 43.91, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 41.41, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/keras-team/autokeras/master/README.md", - "_readme_localurl": "keras-team~autokeras~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/microsoft/unilm/master/README.md", + "_readme_localurl": "microsoft~unilm~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 961, + "category": "util", + "githuburl": "https://github.com/charliermarsh/ruff", + "featured": null, + "links": null, + "description": null, + "_repopath": "charliermarsh/ruff", + "_reponame": "ruff", + "_stars": 8846, + "_forks": 278, + "_watches": 40, + "_language": "Rust", + "_homepage": "https://beta.ruff.rs", + "_description": "ruff: An extremely fast Python linter, written in Rust.", + "_organization": "charliermarsh", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-08-09T00:00:00.000Z", + "_age_weeks": 28, + "_stars_per_week": 314.32, + "_topics": [ + "linter", + "pep8", + "python", + "python3", + "rust", + "rustpython", + "static-analysis", + "static-code-analysis", + "style-guide", + "styleguide", + "ruff" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 128, + "_pop_contributor_logins": [ + "JonathanPlasse@drotek", + "akx@valohai", + "andersk@zulip", + "charliermarsh", + "colin99d", + "edgarrmondragon@meltano", + "harupy", + "not-my-profile", + "sbrugman", + "squiddy@momox" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "drotek", + "meltano", + "momox", + "valohai", + "zulip" + ], + "_pop_contributor_orgs_raw": [ + "@Meltano ", + "@valohai ", + "@zulip", + "Drotek", + "momox" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 49.71, + "_pop_updated_issues_count": 2307, + "_pop_closed_issues_count": 2097, + "_pop_created_since_days": 7, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 230, + "_pop_recent_releases_estimated_tags": 402, + "_pop_recent_releases_adjusted_count": 230, + "_pop_issue_count": 2313.0, + "_pop_comment_count": 4979.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 0, + "_pop_score": 55.45, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/charliermarsh/ruff/master/README.md", + "_readme_localurl": "charliermarsh~ruff~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/charliermarsh/ruff/master/pyproject.toml" + ], + "_requirements_localurls": [ + "charliermarsh~ruff~pyproject.toml" + ] + }, + { + "index": 5, + "category": "web", + "githuburl": "https://github.com/benoitc/gunicorn", + "featured": null, + "links": null, + "description": null, + "_repopath": "benoitc/gunicorn", + "_reponame": "gunicorn", + "_stars": 8788, + "_forks": 1628, + "_watches": 231, + "_language": "Python", + "_homepage": "http://www.gunicorn.org", + "_description": "gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications.", + "_organization": "benoitc", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2009-11-30T00:00:00.000Z", + "_age_weeks": 690, + "_stars_per_week": 12.73, + "_topics": [ + "http-server", + "http", + "python", + "wsgi-server", + "wsgi" + ], + "_last_commit_date": "2023-01-26T00:00:00.000Z", + "_pop_contributor_count": 383, + "_pop_contributor_logins": [ + "alq666@datadog", + "benoitc@enkimultimedia", + "berkerpeksag", + "collinanderson", + "davisp", + "hramezani@crate", + "javabrett@confluentinc", + "matrixise@mgx.io", + "sirkonst", + "tilgovi@nytimes" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "confluentinc", + "crate", + "datadog", + "enkimultimedia", + "mgx.io", + "nytimes" + ], + "_pop_contributor_orgs_raw": [ + "@DataDog ", + "@confluentinc", + "@crate ", + "@nytimes", + "Enki Multimedia", + "Mgx.IO" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.5, + "_pop_updated_issues_count": 99, + "_pop_closed_issues_count": 30, + "_pop_created_since_days": 161, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 99.0, + "_pop_comment_count": 126.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 49.54, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/benoitc/gunicorn/master/README.rst", + "_readme_localurl": "benoitc~gunicorn~README.rst", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/keras-team/autokeras/master/setup.py" + "https://raw.githubusercontent.com/benoitc/gunicorn/master/setup.py" ], "_requirements_localurls": [ - "keras-team~autokeras~setup.py" + "benoitc~gunicorn~setup.py" ] }, { @@ -10362,9 +14540,17 @@ "description": null, "_repopath": "uber/ludwig", "_reponame": "ludwig", - "_stars": 8670, - "_forks": 1024, - "_watches": 181, + "_stars": 8766, + "_forks": 1030, + "_watches": 183, + "_language": "Python", + "_homepage": "http://ludwig.ai", + "_description": "ludwig: Data-centric declarative deep learning framework", + "_organization": "uber", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-12-27T00:00:00.000Z", + "_age_weeks": 216, + "_stars_per_week": 40.42, "_topics": [ "deep-learning", "deeplearning", @@ -10384,37 +14570,47 @@ "ml", "datascience" ], - "_language": "Python", - "_homepage": "http://ludwig.ai", - "_description": "ludwig: Data-centric declarative deep learning framework", - "_organization": "uber", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2018-12-27T00:00:00.000Z", - "_age_weeks": 207, - "_stars_per_week": 41.77, + "_last_commit_date": "2023-02-21T00:00:00.000Z", "_pop_contributor_count": 130, + "_pop_contributor_logins": [ + "arnavgarg1@predibase", + "connor-mccorm", + "dantreiman@predibase", + "geoffreyangus", + "jimthompson5802", + "jppgks@predibase", + "justinxzhao", + "msaisumanth@uber", + "tgaddair@uber", + "w4nderlust" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "predibase", "uber" ], + "_pop_contributor_orgs_raw": [ + "@Predibase", + "@uber ", + "Predibase", + "Uber" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 15.54, - "_pop_updated_issues_count": 383, - "_pop_closed_issues_count": 334, - "_pop_created_since_days": 48, + "_pop_commit_frequency": 17.62, + "_pop_updated_issues_count": 370, + "_pop_closed_issues_count": 311, + "_pop_created_since_days": 51, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 16, + "_pop_recent_releases_count": 15, "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 16, - "_pop_issue_count": 383.0, - "_pop_comment_count": 479.0, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 371.0, + "_pop_comment_count": 524.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 54, - "_pop_score": 57.08, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 50.25, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/uber/ludwig/master/README.md", "_readme_localurl": "uber~ludwig~README.md", @@ -10435,133 +14631,172 @@ ] }, { - "index": 759, - "category": "diffusion", - "githuburl": "https://github.com/invoke-ai/invokeai", + "index": 134, + "category": "ml-dl", + "githuburl": "https://github.com/keras-team/autokeras", "featured": null, "links": null, "description": null, - "_repopath": "invoke-ai/invokeai", - "_reponame": "InvokeAI", - "_stars": 8507, - "_forks": 960, - "_watches": 102, + "_repopath": "keras-team/autokeras", + "_reponame": "autokeras", + "_stars": 8743, + "_forks": 1392, + "_watches": 306, + "_language": "Python", + "_homepage": "http://autokeras.com/", + "_description": "autokeras: AutoML library for deep learning", + "_organization": "keras-team", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-11-19T00:00:00.000Z", + "_age_weeks": 274, + "_stars_per_week": 31.86, "_topics": [ - "ai-art", - "artificial-intelligence", - "generative-art", - "image-generation", - "img2img", - "inpainting", - "latent-diffusion", - "linux", - "macos", - "outpainting", - "txt2img", - "windows", - "stable-diffusion" + "automl", + "neural-architecture-search", + "automated-machine-learning", + "python", + "deep-learning", + "machine-learning", + "autodl", + "tensorflow", + "keras" ], - "_language": "Jupyter Notebook", - "_homepage": "https://invoke-ai.github.io/InvokeAI/", - "_description": "InvokeAI: This version of Stable Diffusion features a slick WebGUI, an interactive command-line script that combines text2img and img2img functionality in a \"dream bot\" style interface, and multiple features and other enhancements. For more info, see the website link below.", - "_organization": "invoke-ai", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2022-08-17T00:00:00.000Z", - "_age_weeks": 17, - "_stars_per_week": 480.23, - "_pop_contributor_count": 146, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 140, + "_pop_contributor_logins": [ + "abgese", + "boyuangong", + "dependabot[bot]", + "droidadroit@texasa&muniversity", + "gabrieldemarmiesse@preligens", + "haifeng-jin@keras-teamtensorflowgooglers", + "qingquansong", + "satyakesav@texasa&muniversity,collegestation", + "taobupt", + "tl-yang" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "ares-consulting", - "ontarioinstituteforcancerresearch" + "keras-teamtensorflowgooglers", + "preligens", + "texasa&muniversity", + "texasa&muniversity,collegestation" + ], + "_pop_contributor_orgs_raw": [ + "@keras-team @tensorflow @googlers", + "Preligens", + "Texas A&M University", + "Texas A&M University, College Station" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 34.5, - "_pop_updated_issues_count": 1312, - "_pop_closed_issues_count": 1023, - "_pop_created_since_days": 4, + "_pop_commit_frequency": 1.54, + "_pop_updated_issues_count": 59, + "_pop_closed_issues_count": 42, + "_pop_created_since_days": 64, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 12, - "_pop_recent_releases_estimated_tags": 195, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 1312.0, - "_pop_comment_count": 5106.0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 59.0, + "_pop_comment_count": 56.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.9, - "_pop_dependents_count": 230, - "_pop_score": 60.03, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 44.02, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/invoke-ai/invokeai/master/README.md", - "_readme_localurl": "invoke-ai~invokeai~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/keras-team/autokeras/master/README.md", + "_readme_localurl": "keras-team~autokeras~README.md", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/invoke-ai/invokeai/master/setup.py" + "https://raw.githubusercontent.com/keras-team/autokeras/master/setup.py", + "https://raw.githubusercontent.com/keras-team/autokeras/master/pyproject.toml" ], "_requirements_localurls": [ - "invoke-ai~invokeai~setup.py" + "keras-team~autokeras~setup.py", + "keras-team~autokeras~pyproject.toml" ] }, { - "index": 523, - "category": "ml-dl", - "githuburl": "https://github.com/lucidrains/dalle2-pytorch", - "featured": null, + "index": 495, + "category": "data", + "githuburl": "https://github.com/duckdb/duckdb", + "featured": 1.0, "links": null, "description": null, - "_repopath": "lucidrains/dalle2-pytorch", - "_reponame": "DALLE2-pytorch", - "_stars": 8496, - "_forks": 692, - "_watches": 113, + "_repopath": "duckdb/duckdb", + "_reponame": "duckdb", + "_stars": 8585, + "_forks": 801, + "_watches": 130, + "_language": "C++", + "_homepage": "http://www.duckdb.org", + "_description": "DuckDB is an in-process SQL OLAP Database Management System", + "_organization": "duckdb", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-06-26T00:00:00.000Z", + "_age_weeks": 243, + "_stars_per_week": 35.31, "_topics": [ - "artificial-intelligence", - "deep-learning", - "text-to-image" + "sql", + "database", + "olap", + "analytics", + "embedded-database" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 236, + "_pop_contributor_logins": [ + "Mause@duckdblabs", + "Mytherin@duckdblabs", + "Tishj", + "hannes@cwi", + "krlmlr@cynkra", + "lnkuiper@cwi", + "pdet@duckdblabs", + "samansmink@universityofamsterdam", + "taniabogatsch", + "tiagokepe" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "cwi", + "cynkra", + "duckdblabs", + "universityofamsterdam" + ], + "_pop_contributor_orgs_raw": [ + "@cynkra ", + "@duckdblabs", + "CWI", + "DuckDB Labs", + "University of Amsterdam" ], - "_language": "Python", - "_homepage": "", - "_description": "DALLE2-pytorch: Implementation of DALL-E 2, OpenAI's updated text-to-image synthesis neural network, in Pytorch", - "_organization": "lucidrains", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2022-04-07T00:00:00.000Z", - "_age_weeks": 36, - "_stars_per_week": 232.31, - "_pop_contributor_count": 16, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 11.19, - "_pop_updated_issues_count": 32, - "_pop_closed_issues_count": 18, - "_pop_created_since_days": 8, + "_pop_commit_frequency": 143.83, + "_pop_updated_issues_count": 987, + "_pop_closed_issues_count": 814, + "_pop_created_since_days": 57, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 332, - "_pop_recent_releases_estimated_tags": 514, - "_pop_recent_releases_adjusted_count": 332, - "_pop_issue_count": 32.0, - "_pop_comment_count": 52.0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 987.0, + "_pop_comment_count": 1819.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 50, - "_pop_score": 38.91, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 59.12, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/lucidrains/dalle2-pytorch/master/README.md", - "_readme_localurl": "lucidrains~dalle2-pytorch~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/lucidrains/dalle2-pytorch/master/setup.py" - ], - "_requirements_localurls": [ - "lucidrains~dalle2-pytorch~setup.py" - ] + "_readme_giturl": "https://raw.githubusercontent.com/duckdb/duckdb/master/README.md", + "_readme_localurl": "duckdb~duckdb~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { "index": 151, @@ -10572,9 +14807,17 @@ "description": null, "_repopath": "sloria/textblob", "_reponame": "TextBlob", - "_stars": 8388, - "_forks": 1100, + "_stars": 8440, + "_forks": 1112, "_watches": 270, + "_language": "Python", + "_homepage": "https://textblob.readthedocs.io/", + "_description": "TextBlob: Simple, Pythonic, text processing--Sentiment analysis, part-of-speech tagging, noun phrase extraction, translation, and more.", + "_organization": "sloria", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2013-06-30T00:00:00.000Z", + "_age_weeks": 503, + "_stars_per_week": 16.77, "_topics": [ "nlp", "nltk", @@ -10584,37 +14827,47 @@ "python-2", "natural-language-processing" ], - "_language": "Python", - "_homepage": "https://textblob.readthedocs.io/", - "_description": "TextBlob: Simple, Pythonic, text processing--Sentiment analysis, part-of-speech tagging, noun phrase extraction, translation, and more.", - "_organization": "sloria", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2021-10-22T00:00:00.000Z", - "_created_at": "2013-06-30T00:00:00.000Z", - "_age_weeks": 494, - "_stars_per_week": 16.97, "_pop_contributor_count": 36, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "RomanYankovsky@urbaninfrastructure", + "danong@google", + "dependabot-preview[bot]", + "dependabot-support", + "evandempsey", + "jammmo", + "jeffakolb", + "jschnurr@google", + "pyup-bot@pyupio", + "sloria" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "google", + "pyupio", "urbaninfrastructure" ], + "_pop_contributor_orgs_raw": [ + "@pyupio", + "@urbaninfrastructure ", + "Google" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 115, - "_pop_updated_since_days": 14, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 117, + "_pop_updated_since_days": 16, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 4, "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 3.0, - "_pop_comment_count": 1.0, + "_pop_issue_count": 11.0, + "_pop_comment_count": 6.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.3, - "_pop_dependents_count": 38, - "_pop_score": 31.9, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 28.8, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/sloria/textblob/master/README.rst", "_readme_localurl": "sloria~textblob~README.rst", @@ -10637,9 +14890,17 @@ "description": null, "_repopath": "clips/pattern", "_reponame": "pattern", - "_stars": 8371, - "_forks": 1594, - "_watches": 548, + "_stars": 8419, + "_forks": 1595, + "_watches": 547, + "_language": "Python", + "_homepage": "https://github.com/clips/pattern/wiki", + "_description": "pattern: Web mining module for Python, with tools for scraping, natural language processing, machine learning, network analysis and visualization.", + "_organization": "clips", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2011-05-03T00:00:00.000Z", + "_age_weeks": 616, + "_stars_per_week": 13.66, "_topics": [ "python", "machine-learning", @@ -10649,36 +14910,51 @@ "sentiment-analysis", "network-analysis" ], - "_language": "Python", - "_homepage": "https://github.com/clips/pattern/wiki", - "_description": "pattern: Web mining module for Python, with tools for scraping, natural language processing, machine learning, network analysis and visualization.", - "_organization": "clips", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2020-04-25T00:00:00.000Z", - "_created_at": "2011-05-03T00:00:00.000Z", - "_age_weeks": 606, - "_stars_per_week": 13.79, "_pop_contributor_count": 30, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Xsardas1000", + "fdb@nodebox", + "frederik-elwert@ruhr-universitybochum", + "jgrivolla@universitatpompeufabra", + "kkoch986@zentail", + "markus-beuckelmann", + "napsternxg@twitter-research", + "newworldorder", + "sloria", + "tom-de-smedt" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "twitter-research" + "nodebox", + "ruhr-universitybochum", + "twitter-research", + "universitatpompeufabra", + "zentail" + ], + "_pop_contributor_orgs_raw": [ + "@nodebox ", + "@twitter-research ", + "Ruhr-University Bochum", + "Universitat Pompeu Fabra", + "Zentail" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 6, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 142, - "_pop_updated_since_days": 32, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 144, + "_pop_updated_since_days": 34, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 6.0, - "_pop_comment_count": 3.0, + "_pop_issue_count": 5.0, + "_pop_comment_count": 5.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 293, - "_pop_score": 31.33, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 27.21, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/clips/pattern/master/README.md", "_readme_localurl": "clips~pattern~README.md", @@ -10692,142 +14968,6 @@ "clips~pattern~setup.py" ] }, - { - "index": 126, - "category": "ml-dl", - "githuburl": "https://github.com/microsoft/deepspeed", - "featured": null, - "links": null, - "description": null, - "_repopath": "microsoft/deepspeed", - "_reponame": "DeepSpeed", - "_stars": 8355, - "_forks": 985, - "_watches": 144, - "_topics": [ - "deep-learning", - "pytorch", - "gpu", - "machine-learning", - "billion-parameters", - "data-parallelism", - "model-parallelism", - "inference", - "pipeline-parallelism", - "compression", - "mixture-of-experts", - "trillion-parameters", - "zero" - ], - "_language": "Python", - "_homepage": "https://www.deepspeed.ai/", - "_description": "DeepSpeed is a deep learning optimization library that makes distributed training and inference easy, efficient, and effective.", - "_organization": "microsoft", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2020-01-23T00:00:00.000Z", - "_age_weeks": 151, - "_stars_per_week": 55.12, - "_pop_contributor_count": 148, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "microsoft", - "stasosphereonline" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 8.46, - "_pop_updated_issues_count": 386, - "_pop_closed_issues_count": 270, - "_pop_created_since_days": 35, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 17, - "_pop_recent_releases_estimated_tags": 18, - "_pop_recent_releases_adjusted_count": 17, - "_pop_issue_count": 386.0, - "_pop_comment_count": 708.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 150, - "_pop_score": 58.34, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/microsoft/deepspeed/master/README.md", - "_readme_localurl": "microsoft~deepspeed~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/microsoft/deepspeed/master/setup.py" - ], - "_requirements_localurls": [ - "microsoft~deepspeed~setup.py" - ] - }, - { - "index": 282, - "category": "util", - "githuburl": "https://github.com/arrow-py/arrow", - "featured": null, - "links": null, - "description": null, - "_repopath": "arrow-py/arrow", - "_reponame": "arrow", - "_stars": 8167, - "_forks": 636, - "_watches": 134, - "_topics": [ - "python", - "arrow", - "datetime", - "date", - "time", - "timestamp", - "timezones", - "hacktoberfest" - ], - "_language": "Python", - "_homepage": "https://arrow.readthedocs.io", - "_description": "arrow: \ud83c\udff9 Better dates & times for Python", - "_organization": "arrow-py", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-15T00:00:00.000Z", - "_created_at": "2012-11-18T00:00:00.000Z", - "_age_weeks": 526, - "_stars_per_week": 15.52, - "_pop_contributor_count": 268, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "amazon" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.73, - "_pop_updated_issues_count": 28, - "_pop_closed_issues_count": 11, - "_pop_created_since_days": 123, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 28.0, - "_pop_comment_count": 46.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 943, - "_pop_score": 51.47, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/arrow-py/arrow/master/README.rst", - "_readme_localurl": "arrow-py~arrow~README.rst", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/arrow-py/arrow/master/setup.py" - ], - "_requirements_localurls": [ - "arrow-py~arrow~setup.py" - ] - }, { "index": 125, "category": "perf", @@ -10837,9 +14977,17 @@ "description": null, "_repopath": "modin-project/modin", "_reponame": "modin", - "_stars": 8151, - "_forks": 584, - "_watches": 110, + "_stars": 8392, + "_forks": 592, + "_watches": 108, + "_language": "Python", + "_homepage": "http://modin.readthedocs.io", + "_description": "Modin: Scale your Pandas workflows by changing a single line of code", + "_organization": "modin-project", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-06-21T00:00:00.000Z", + "_age_weeks": 243, + "_stars_per_week": 34.41, "_topics": [ "dataframe", "pandas", @@ -10852,37 +15000,47 @@ "data-science", "hacktoberfest" ], - "_language": "Python", - "_homepage": "http://modin.readthedocs.io", - "_description": "Modin: Scale your Pandas workflows by changing a single line of code", - "_organization": "modin-project", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2018-06-21T00:00:00.000Z", - "_age_weeks": 234, - "_stars_per_week": 34.75, - "_pop_contributor_count": 109, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 110, + "_pop_contributor_logins": [ + "YarShev", + "amyskov", + "anmyachev", + "dchigarev", + "devin-petersohn@ponder", + "gshimansky@intelcorporation", + "mvashishtha@ponder.io", + "prutskov", + "vnlitvinov", + "williamma12" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "intelcorporation", "ponder", "ponder.io" ], + "_pop_contributor_orgs_raw": [ + "Intel Corporation", + "Ponder", + "ponder.io" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 9.44, - "_pop_updated_issues_count": 815, - "_pop_closed_issues_count": 505, - "_pop_created_since_days": 55, + "_pop_commit_frequency": 9.25, + "_pop_updated_issues_count": 559, + "_pop_closed_issues_count": 371, + "_pop_created_since_days": 57, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 17, + "_pop_recent_releases_count": 14, "_pop_recent_releases_estimated_tags": 14, - "_pop_recent_releases_adjusted_count": 17, - "_pop_issue_count": 815.0, - "_pop_comment_count": 1026.0, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 559.0, + "_pop_comment_count": 572.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 22, - "_pop_score": 55.49, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 49.97, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/modin-project/modin/master/README.md", "_readme_localurl": "modin-project~modin~README.md", @@ -10896,6 +15054,93 @@ "modin-project~modin~setup.py" ] }, + { + "index": 815, + "category": "ml-dl", + "githuburl": "https://github.com/danielgatis/rembg", + "featured": null, + "links": null, + "description": null, + "_repopath": "danielgatis/rembg", + "_reponame": "rembg", + "_stars": 8368, + "_forks": 1050, + "_watches": 105, + "_language": "Python", + "_homepage": "", + "_description": "Rembg is a tool to remove images background", + "_organization": "danielgatis", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-08-10T00:00:00.000Z", + "_age_weeks": 132, + "_stars_per_week": 63.26, + "_topics": [ + "image-processing", + "background-removal", + "python" + ], + "_last_commit_date": "2022-12-28T00:00:00.000Z", + "_pop_contributor_count": 33, + "_pop_contributor_logins": [ + "0xflotus", + "MadMaxInfinity", + "carlogrisetti", + "cclauss@christianclauss", + "danielgatis", + "iory@japan", + "jangop@recommendy", + "jaric", + "rcrvano", + "samiede@leonardo-interactive" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "christianclauss", + "japan", + "leonardo-interactive", + "recommendy" + ], + "_pop_contributor_orgs_raw": [ + "@Leonardo-Interactive ", + "Christian Clauss", + "Japan", + "Recommendy" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.71, + "_pop_updated_issues_count": 75, + "_pop_closed_issues_count": 56, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 16, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 16, + "_pop_issue_count": 75.0, + "_pop_comment_count": 152.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 40.64, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/danielgatis/rembg/master/README.md", + "_readme_localurl": "danielgatis~rembg~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/danielgatis/rembg/master/requirements.txt", + "https://raw.githubusercontent.com/danielgatis/rembg/master/setup.py", + "https://raw.githubusercontent.com/danielgatis/rembg/master/pyproject.toml" + ], + "_requirements_localurls": [ + "danielgatis~rembg~requirements.txt", + "danielgatis~rembg~setup.py", + "danielgatis~rembg~pyproject.toml" + ] + }, { "index": 53, "category": "perf", @@ -10905,9 +15150,17 @@ "description": null, "_repopath": "numba/numba", "_reponame": "numba", - "_stars": 8074, - "_forks": 983, - "_watches": 205, + "_stars": 8287, + "_forks": 998, + "_watches": 208, + "_language": "Python", + "_homepage": "http://numba.pydata.org/", + "_description": "numba: NumPy aware dynamic Python compiler using LLVM", + "_organization": "numba", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-03-08T00:00:00.000Z", + "_age_weeks": 571, + "_stars_per_week": 14.49, "_topics": [ "python", "numpy", @@ -10916,36 +15169,49 @@ "cuda", "parallel" ], - "_language": "Python", - "_homepage": "http://numba.pydata.org/", - "_description": "numba: NumPy aware dynamic Python compiler using LLVM", - "_organization": "numba", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2012-03-08T00:00:00.000Z", - "_age_weeks": 562, - "_stars_per_week": 14.35, - "_pop_contributor_count": 327, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 330, + "_pop_contributor_logins": [ + "DrTodd13@intellabs", + "esc@anaconda", + "gmarkall@nvidia", + "guilhermeleobas", + "markflorisson@mlabs", + "pitrou", + "rjenc29", + "seibert", + "sklam", + "stuartarchibald" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "mlabs" + "anaconda", + "intellabs", + "mlabs", + "nvidia" + ], + "_pop_contributor_orgs_raw": [ + "@nvidia", + "Anaconda Inc.", + "Intel Labs", + "MLabs" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 29.77, - "_pop_updated_issues_count": 388, - "_pop_closed_issues_count": 197, - "_pop_created_since_days": 131, + "_pop_commit_frequency": 27.08, + "_pop_updated_issues_count": 386, + "_pop_closed_issues_count": 213, + "_pop_created_since_days": 133, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 7, - "_pop_recent_releases_estimated_tags": 18, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 388.0, - "_pop_comment_count": 1032.0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 17, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 385.0, + "_pop_comment_count": 918.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.7, - "_pop_dependents_count": 4467, - "_pop_score": 69.11, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 0, + "_pop_score": 57.58, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/numba/numba/master/README.rst", "_readme_localurl": "numba~numba~README.rst", @@ -10963,61 +15229,87 @@ ] }, { - "index": 294, + "index": 282, "category": "util", - "githuburl": "https://github.com/paramiko/paramiko", + "githuburl": "https://github.com/arrow-py/arrow", "featured": null, "links": null, "description": null, - "_repopath": "paramiko/paramiko", - "_reponame": "paramiko", - "_stars": 8042, - "_forks": 1887, - "_watches": 320, - "_topics": [], + "_repopath": "arrow-py/arrow", + "_reponame": "arrow", + "_stars": 8227, + "_forks": 640, + "_watches": 134, "_language": "Python", - "_homepage": "http://paramiko.org", - "_description": "paramiko: The leading native Python SSHv2 protocol library.", - "_organization": "paramiko", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-04T00:00:00.000Z", - "_created_at": "2009-02-02T00:00:00.000Z", - "_age_weeks": 724, - "_stars_per_week": 11.11, - "_pop_contributor_count": 177, + "_homepage": "https://arrow.readthedocs.io", + "_description": "arrow: \ud83c\udff9 Better dates & times for Python", + "_organization": "arrow-py", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-11-18T00:00:00.000Z", + "_age_weeks": 535, + "_stars_per_week": 15.37, + "_topics": [ + "python", + "arrow", + "datetime", + "date", + "time", + "timestamp", + "timezones", + "hacktoberfest" + ], + "_last_commit_date": "2022-11-15T00:00:00.000Z", + "_pop_contributor_count": 268, + "_pop_contributor_logins": [ + "andrewelkins", + "anishnya@caen", + "chrishaines", + "crsmithdev", + "cyriaka90", + "jadchaar@amazon", + "krisfremen", + "ramonsaraiva@consumeraffairs", + "systemcatch", + "zcribe" + ], "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "codecobblers,inc", - "healthbyro", - "jumptrading" + "amazon", + "caen", + "consumeraffairs" + ], + "_pop_contributor_orgs_raw": [ + "@CAEN", + "@ConsumerAffairs ", + "Amazon" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.71, - "_pop_updated_issues_count": 93, - "_pop_closed_issues_count": 36, - "_pop_created_since_days": 169, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 0.52, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 125, + "_pop_updated_since_days": 3, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 13, - "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 93.0, - "_pop_comment_count": 204.0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 8.0, + "_pop_comment_count": 7.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.2, - "_pop_dependents_count": 2010, - "_pop_score": 61.79, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 38.77, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/paramiko/paramiko/master/README.rst", - "_readme_localurl": "paramiko~paramiko~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/arrow-py/arrow/master/README.rst", + "_readme_localurl": "arrow-py~arrow~README.rst", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/paramiko/paramiko/master/setup.py" + "https://raw.githubusercontent.com/arrow-py/arrow/master/setup.py" ], "_requirements_localurls": [ - "paramiko~paramiko~setup.py" + "arrow-py~arrow~setup.py" ] }, { @@ -11029,9 +15321,17 @@ "description": null, "_repopath": "statsmodels/statsmodels", "_reponame": "statsmodels", - "_stars": 8013, - "_forks": 2627, - "_watches": 272, + "_stars": 8206, + "_forks": 2660, + "_watches": 275, + "_language": "Python", + "_homepage": "http://www.statsmodels.org/devel/", + "_description": "Statsmodels: statistical modeling and econometrics in Python", + "_organization": "statsmodels", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2011-06-12T00:00:00.000Z", + "_age_weeks": 610, + "_stars_per_week": 13.44, "_topics": [ "python", "statistics", @@ -11047,36 +15347,45 @@ "prediction", "robust-estimation" ], - "_language": "Python", - "_homepage": "http://www.statsmodels.org/devel/", - "_description": "Statsmodels: statistical modeling and econometrics in Python", - "_organization": "statsmodels", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-10T00:00:00.000Z", - "_created_at": "2011-06-12T00:00:00.000Z", - "_age_weeks": 601, - "_stars_per_week": 13.33, - "_pop_contributor_count": 402, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 407, + "_pop_contributor_logins": [ + "ChadFulton", + "bashtage", + "j-grana6", + "jbrockmendel", + "josef-pkt", + "jseabold@hcahealthcare", + "kshedden", + "thequackdaddy", + "vincentarelbundock", + "wesm@voltrondata" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "hcahealthcare" + "hcahealthcare", + "voltrondata" + ], + "_pop_contributor_orgs_raw": [ + "@voltrondata", + "HCA Healthcare" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.0, - "_pop_updated_issues_count": 450, - "_pop_closed_issues_count": 237, - "_pop_created_since_days": 140, + "_pop_commit_frequency": 4.79, + "_pop_updated_issues_count": 448, + "_pop_closed_issues_count": 181, + "_pop_created_since_days": 142, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 4, + "_pop_recent_releases_count": 3, "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 4, + "_pop_recent_releases_adjusted_count": 3, "_pop_issue_count": 450.0, - "_pop_comment_count": 623.0, + "_pop_comment_count": 617.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 1144, - "_pop_score": 62.27, + "_pop_dependents_count": 0, + "_pop_score": 50.75, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/statsmodels/statsmodels/master/README.rst", "_readme_localurl": "statsmodels~statsmodels~README.rst", @@ -11097,67 +15406,82 @@ ] }, { - "index": 128, - "category": "viz", - "githuburl": "https://github.com/altair-viz/altair", + "index": 294, + "category": "util", + "githuburl": "https://github.com/paramiko/paramiko", "featured": null, "links": null, "description": null, - "_repopath": "altair-viz/altair", - "_reponame": "altair", - "_stars": 7936, - "_forks": 710, - "_watches": 150, - "_topics": [], + "_repopath": "paramiko/paramiko", + "_reponame": "paramiko", + "_stars": 8176, + "_forks": 1910, + "_watches": 319, "_language": "Python", - "_homepage": "https://altair-viz.github.io/", - "_description": "altair: Declarative statistical visualization library for Python", - "_organization": "altair-viz", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2015-09-19T00:00:00.000Z", - "_age_weeks": 378, - "_stars_per_week": 20.98, - "_pop_contributor_count": 147, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_homepage": "http://paramiko.org", + "_description": "paramiko: The leading native Python SSHv2 protocol library.", + "_organization": "paramiko", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2009-02-02T00:00:00.000Z", + "_age_weeks": 733, + "_stars_per_week": 11.15, + "_topics": [], + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 179, + "_pop_contributor_logins": [ + "alex", + "bitprophet@jumptrading", + "bz2", + "dorianpula@amberpenguinsoftware", + "jaraco@google", + "lndbrg", + "mwilliamson", + "offbyone", + "ploxiln@healthbyro", + "scottkmaxwell@codecobblers,inc" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "amazonwebservices", + "amberpenguinsoftware", + "codecobblers,inc", "google", - "losangelestimesandstanford'sbiglocalnews" + "healthbyro", + "jumptrading" + ], + "_pop_contributor_orgs_raw": [ + "@HealthByRo ", + "@jumptrading", + "Amber Penguin Software", + "Code Cobblers, Inc", + "Google" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.27, - "_pop_updated_issues_count": 112, - "_pop_closed_issues_count": 69, - "_pop_created_since_days": 88, + "_pop_commit_frequency": 3.42, + "_pop_updated_issues_count": 97, + "_pop_closed_issues_count": 35, + "_pop_created_since_days": 171, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 112.0, - "_pop_comment_count": 374.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 97.0, + "_pop_comment_count": 187.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.3, - "_pop_dependents_count": 95, - "_pop_score": 55.9, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/altair-viz/altair/master/README.md", - "_readme_localurl": "altair-viz~altair~README.md", + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 52.3, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/paramiko/paramiko/master/README.rst", + "_readme_localurl": "paramiko~paramiko~README.rst", "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/altair-viz/altair/master/requirements.txt", - "https://raw.githubusercontent.com/altair-viz/altair/master/setup.py", - "https://raw.githubusercontent.com/altair-viz/altair/master/pyproject.toml" + "https://raw.githubusercontent.com/paramiko/paramiko/master/setup.py" ], "_requirements_localurls": [ - "altair-viz~altair~requirements.txt", - "altair-viz~altair~setup.py", - "altair-viz~altair~pyproject.toml" + "paramiko~paramiko~setup.py" ] }, { @@ -11169,9 +15493,17 @@ "description": null, "_repopath": "kedro-org/kedro", "_reponame": "kedro", - "_stars": 7893, - "_forks": 741, - "_watches": 102, + "_stars": 8114, + "_forks": 764, + "_watches": 104, + "_language": "Python", + "_homepage": "https://kedro.org", + "_description": "kedro: A Python framework for creating reproducible, maintainable and modular data science code.", + "_organization": "kedro-org", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-04-18T00:00:00.000Z", + "_age_weeks": 200, + "_stars_per_week": 40.4, "_topics": [ "pipeline", "kedro", @@ -11181,37 +15513,49 @@ "python", "machine-learning" ], - "_language": "Python", - "_homepage": "https://kedro.org", - "_description": "kedro: A Python framework for creating reproducible, maintainable and modular data science code.", - "_organization": "kedro-org", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2019-04-18T00:00:00.000Z", - "_age_weeks": 191, - "_stars_per_week": 41.2, - "_pop_contributor_count": 176, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 185, + "_pop_contributor_logins": [ + "921kiyo", + "AntonyMilneQB", + "DmitriiDeriabinQB@quantumblack", + "andrii-ivaniuk", + "deepyaman@foundingmleclaypotai", + "idanov@quantumblack", + "limdauto", + "lorenabalan@softwareengineeratquantumblacklabs", + "merelcht@quantumblack", + "yetudada@quantumblack" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "foundingmleclaypotai", "quantumblack", "softwareengineeratquantumblacklabs" ], + "_pop_contributor_orgs_raw": [ + "@quantumblack", + "@quantumblack ", + "Founding MLE @claypotai", + "QuantumBlack", + "Software Engineer at @quantumblacklabs " + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.88, - "_pop_updated_issues_count": 366, - "_pop_closed_issues_count": 212, - "_pop_created_since_days": 45, + "_pop_commit_frequency": 6.71, + "_pop_updated_issues_count": 421, + "_pop_closed_issues_count": 233, + "_pop_created_since_days": 47, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, + "_pop_recent_releases_count": 7, "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 366.0, - "_pop_comment_count": 529.0, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 420.0, + "_pop_comment_count": 464.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 9, - "_pop_score": 51.69, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 49.01, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/kedro-org/kedro/master/README.md", "_readme_localurl": "kedro-org~kedro~README.md", @@ -11228,6 +15572,96 @@ "kedro-org~kedro~pyproject.toml" ] }, + { + "index": 773, + "category": "ml-dl", + "githuburl": "https://github.com/sanster/lama-cleaner", + "featured": null, + "links": null, + "description": null, + "_repopath": "sanster/lama-cleaner", + "_reponame": "lama-cleaner", + "_stars": 8112, + "_forks": 717, + "_watches": 64, + "_language": "Python", + "_homepage": "https://lama-cleaner-docs.vercel.app/", + "_description": "lama-cleaner: Image inpainting tool powered by SOTA AI Model. Remove any unwanted object, defect, people from your pictures or erase and replace(powered by stable diffusion) any thing on your pictures.", + "_organization": "sanster", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-11-15T00:00:00.000Z", + "_age_weeks": 66, + "_stars_per_week": 122.38, + "_topics": [ + "inpainting", + "pytorch", + "lama", + "latent-diffusion", + "mat", + "zits", + "stable-diffusion" + ], + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 12, + "_pop_contributor_logins": [ + "BedirYilmaz@tiermobility", + "LinuxSuRen@opensource-f2f", + "Niek@nivademab.v.", + "Sanster", + "blessedcoolant", + "callmepantoine", + "davidbejarcaceres", + "eltociear@bandism", + "fiskbil", + "loretoparisi@musixmatchdev" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "bandism", + "musixmatchdev", + "nivademab.v.", + "opensource-f2f", + "tiermobility" + ], + "_pop_contributor_orgs_raw": [ + "@Musixmatchdev ", + "@bandism ", + "@opensource-f2f", + "Nivadema B.V.", + "Tier Mobility" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.83, + "_pop_updated_issues_count": 88, + "_pop_closed_issues_count": 70, + "_pop_created_since_days": 15, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 42, + "_pop_recent_releases_estimated_tags": 36, + "_pop_recent_releases_adjusted_count": 42, + "_pop_issue_count": 88.0, + "_pop_comment_count": 150.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 42.53, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/sanster/lama-cleaner/master/README.md", + "_readme_localurl": "sanster~lama-cleaner~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/sanster/lama-cleaner/master/requirements.txt", + "https://raw.githubusercontent.com/sanster/lama-cleaner/master/setup.py" + ], + "_requirements_localurls": [ + "sanster~lama-cleaner~requirements.txt", + "sanster~lama-cleaner~setup.py" + ] + }, { "index": 706, "category": "sim", @@ -11237,9 +15671,17 @@ "description": null, "_repopath": "isl-org/open3d", "_reponame": "Open3D", - "_stars": 7821, - "_forks": 1838, - "_watches": 170, + "_stars": 8096, + "_forks": 1891, + "_watches": 173, + "_language": "C++", + "_homepage": "http://www.open3d.org", + "_description": "Open3D: A Modern Library for 3D Data Processing", + "_organization": "isl-org", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-12-02T00:00:00.000Z", + "_age_weeks": 324, + "_stars_per_week": 24.93, "_topics": [ "mesh-processing", "computer-graphics", @@ -11262,38 +15704,51 @@ "pytorch", "tensorflow" ], - "_language": "C++", - "_homepage": "http://www.open3d.org", - "_description": "Open3D: A Modern Library for 3D Data Processing", - "_organization": "isl-org", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2016-12-02T00:00:00.000Z", - "_age_weeks": 315, - "_stars_per_week": 24.79, - "_pop_contributor_count": 175, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 183, + "_pop_contributor_logins": [ + "benjaminum", + "errissa", + "griegler", + "prewettg", + "qianyizh@formatechnologies", + "reyanshsolis@agv-iit-kgpacr-iitkgp", + "ssheorey@intelisl", + "syncle@postech", + "takanokage", + "yxlao@hku-cs" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "agv-iit-kgpacr-iitkgp", "formatechnologies", "hku-cs", + "intelisl", "postech" ], + "_pop_contributor_orgs_raw": [ + "@AGV-IIT-KGP @acr-iitkgp ", + "Forma Technologies", + "HKU-CS", + "Intel ISL", + "POSTECH" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.5, - "_pop_updated_issues_count": 345, - "_pop_closed_issues_count": 128, - "_pop_created_since_days": 74, + "_pop_commit_frequency": 4.02, + "_pop_updated_issues_count": 352, + "_pop_closed_issues_count": 193, + "_pop_created_since_days": 76, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 2, + "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 345.0, - "_pop_comment_count": 419.0, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 352.0, + "_pop_comment_count": 496.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 11, - "_pop_score": 52.02, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 49.24, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/isl-org/open3d/master/README.md", "_readme_localurl": "isl-org~open3d~README.md", @@ -11302,74 +15757,163 @@ "_requirements_localurls": [] }, { - "index": 7, - "category": "util", - "githuburl": "https://github.com/boto/boto3", + "index": 128, + "category": "viz", + "githuburl": "https://github.com/altair-viz/altair", "featured": null, "links": null, "description": null, - "_repopath": "boto/boto3", - "_reponame": "boto3", - "_stars": 7770, - "_forks": 1691, - "_watches": 239, - "_topics": [ - "python", - "aws", - "cloud", - "cloud-management", - "aws-sdk" - ], + "_repopath": "altair-viz/altair", + "_reponame": "altair", + "_stars": 8056, + "_forks": 715, + "_watches": 147, "_language": "Python", - "_homepage": "https://aws.amazon.com/sdk-for-python/", - "_description": "boto3: AWS SDK for Python", - "_organization": "boto", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2014-10-03T00:00:00.000Z", - "_age_weeks": 428, - "_stars_per_week": 18.14, - "_pop_contributor_count": 139, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://altair-viz.github.io/", + "_description": "altair: Declarative statistical visualization library for Python", + "_organization": "altair-viz", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-09-19T00:00:00.000Z", + "_age_weeks": 387, + "_stars_per_week": 20.79, + "_topics": [], + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 150, + "_pop_contributor_logins": [ + "ChristopherDavisUCI@ucirvine", + "afonit", + "binste", + "domoritz@cmu,apple", + "eitanlees", + "ellisonbg@amazonwebservices", + "jakevdp@google", + "joelostblom@universityofbritishcolumbia", + "mattijn", + "palewire@reuters" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "amazonwebservices", - "istreamplanet" + "cmu,apple", + "google", + "reuters", + "ucirvine", + "universityofbritishcolumbia" + ], + "_pop_contributor_orgs_raw": [ + "Amazon Web Services", + "CMU, Apple", + "Google", + "Reuters", + "UC Irvine", + "University of British Columbia" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 9.92, - "_pop_updated_issues_count": 326, - "_pop_closed_issues_count": 182, - "_pop_created_since_days": 100, + "_pop_commit_frequency": 4.21, + "_pop_updated_issues_count": 269, + "_pop_closed_issues_count": 199, + "_pop_created_since_days": 90, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 147, - "_pop_recent_releases_adjusted_count": 147, - "_pop_issue_count": 326.0, - "_pop_comment_count": 432.0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 270.0, + "_pop_comment_count": 768.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 28646, - "_pop_score": 69.85, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/boto/boto3/master/README.rst", - "_readme_localurl": "boto~boto3~README.rst", + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 0, + "_pop_score": 52.43, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/altair-viz/altair/master/README.md", + "_readme_localurl": "altair-viz~altair~README.md", "_requirements_filenames": [ "requirements.txt", "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/boto/boto3/master/requirements.txt", - "https://raw.githubusercontent.com/boto/boto3/master/setup.py", - "https://raw.githubusercontent.com/boto/boto3/master/pyproject.toml" + "https://raw.githubusercontent.com/altair-viz/altair/master/requirements.txt", + "https://raw.githubusercontent.com/altair-viz/altair/master/setup.py", + "https://raw.githubusercontent.com/altair-viz/altair/master/pyproject.toml" ], "_requirements_localurls": [ - "boto~boto3~requirements.txt", - "boto~boto3~setup.py", - "boto~boto3~pyproject.toml" + "altair-viz~altair~requirements.txt", + "altair-viz~altair~setup.py", + "altair-viz~altair~pyproject.toml" ] }, + { + "index": 758, + "category": "diffusion", + "githuburl": "https://github.com/divamgupta/diffusionbee-stable-diffusion-ui", + "featured": null, + "links": null, + "description": null, + "_repopath": "divamgupta/diffusionbee-stable-diffusion-ui", + "_reponame": "diffusionbee-stable-diffusion-ui", + "_stars": 8018, + "_forks": 321, + "_watches": 77, + "_language": "JavaScript", + "_homepage": "https://diffusionbee.com", + "_description": "diffusionbee-stable-diffusion-ui: Diffusion Bee is the easiest way to run Stable Diffusion locally on your M1 Mac. Comes with a one-click installer. No dependencies or technical knowledge needed.", + "_organization": "divamgupta", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-09-06T00:00:00.000Z", + "_age_weeks": 24, + "_stars_per_week": 332.11, + "_topics": [ + "electron-app", + "macos", + "stable-diffusion" + ], + "_last_commit_date": "2023-02-13T00:00:00.000Z", + "_pop_contributor_count": 16, + "_pop_contributor_logins": [ + "AEtheve", + "CrudeDiatribe", + "EthanMcKanna", + "Iktwo", + "Itangalo", + "divamgupta", + "lachlanjc@watershed-climate", + "piotrski@noaignite", + "trebor", + "w3cdotorg" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "noaignite", + "watershed-climate" + ], + "_pop_contributor_orgs_raw": [ + "@watershed-climate", + "NoA Ignite" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.9, + "_pop_updated_issues_count": 96, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 6, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 30, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 96.0, + "_pop_comment_count": 207.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 0, + "_pop_score": 35.34, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/divamgupta/diffusionbee-stable-diffusion-ui/master/README.md", + "_readme_localurl": "divamgupta~diffusionbee-stable-diffusion-ui~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 29, "category": "ml-ops", @@ -11379,9 +15923,17 @@ "description": null, "_repopath": "great-expectations/great_expectations", "_reponame": "great_expectations", - "_stars": 7751, - "_forks": 1156, - "_watches": 69, + "_stars": 7998, + "_forks": 1233, + "_watches": 71, + "_language": "Python", + "_homepage": "https://docs.greatexpectations.io/", + "_description": "great_expectations: Always know what to expect from your data.", + "_organization": "great-expectations", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-09-11T00:00:00.000Z", + "_age_weeks": 284, + "_stars_per_week": 28.13, "_topics": [ "pipeline-tests", "dataquality", @@ -11404,36 +15956,46 @@ "data-profilers", "mlops" ], - "_language": "Python", - "_homepage": "https://docs.greatexpectations.io/", - "_description": "great_expectations: Always know what to expect from your data.", - "_organization": "great-expectations", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2017-09-11T00:00:00.000Z", - "_age_weeks": 275, - "_stars_per_week": 28.19, - "_pop_contributor_count": 342, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 368, + "_pop_contributor_logins": [ + "Aylr", + "NathanFarmer@gxlabs", + "Shinnnyshinshin@superconductive", + "abegong@superconductive", + "alexsherstinsky", + "anthonyburdi@gxlabs", + "cdkini", + "eugmandel@superconductive", + "jcampbell", + "roblim" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "gxlabs", "superconductive" ], + "_pop_contributor_orgs_raw": [ + "GX Labs", + "Superconductive", + "Superconductive " + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 35.42, - "_pop_updated_issues_count": 638, - "_pop_closed_issues_count": 516, - "_pop_created_since_days": 64, + "_pop_commit_frequency": 40.6, + "_pop_updated_issues_count": 952, + "_pop_closed_issues_count": 841, + "_pop_created_since_days": 66, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 58, + "_pop_recent_releases_count": 55, "_pop_recent_releases_estimated_tags": 41, - "_pop_recent_releases_adjusted_count": 58, - "_pop_issue_count": 638.0, - "_pop_comment_count": 1340.0, + "_pop_recent_releases_adjusted_count": 55, + "_pop_issue_count": 953.0, + "_pop_comment_count": 1848.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 158, - "_pop_score": 64.44, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 58.17, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/great-expectations/great_expectations/master/README.md", "_readme_localurl": "great-expectations~great_expectations~README.md", @@ -11454,140 +16016,266 @@ ] }, { - "index": 422, - "category": "ml-dl", - "githuburl": "https://github.com/pyro-ppl/pyro", + "index": 394, + "category": "web", + "githuburl": "https://github.com/encode/starlette", "featured": null, "links": null, "description": null, - "_repopath": "pyro-ppl/pyro", - "_reponame": "pyro", - "_stars": 7715, - "_forks": 940, - "_watches": 203, + "_repopath": "encode/starlette", + "_reponame": "starlette", + "_stars": 7905, + "_forks": 715, + "_watches": 112, + "_language": "Python", + "_homepage": "https://www.starlette.io/", + "_description": "starlette: The little ASGI framework that shines. \ud83c\udf1f", + "_organization": "encode", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-06-25T00:00:00.000Z", + "_age_weeks": 243, + "_stars_per_week": 32.49, "_topics": [ "python", - "pytorch", - "machine-learning", - "bayesian", - "probabilistic-programming", - "bayesian-inference", - "variational-inference", - "probabilistic-modeling", - "deep-learning" + "async", + "websockets", + "http" ], - "_language": "Python", - "_homepage": "http://pyro.ai", - "_description": "pyro: Deep universal probabilistic programming with Python and PyTorch", - "_organization": "pyro-ppl", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2017-06-16T00:00:00.000Z", - "_age_weeks": 287, - "_stars_per_week": 26.84, - "_pop_contributor_count": 130, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 224, + "_pop_contributor_logins": [ + "JayH5@yelp", + "Kludex@encode", + "adriangb", + "aminalaee", + "blueyed@freelancer,upforhire", + "dependabot[bot]", + "florimondmanca", + "graingert", + "tiangolo", + "tomchristie@encodeoss" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "facebook", - "generatebiomedicines", - "meta" + "encode", + "encodeoss", + "freelancer,upforhire", + "yelp" + ], + "_pop_contributor_orgs_raw": [ + "@encode", + "Encode OSS", + "Freelancer, up for hire", + "Yelp" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.35, - "_pop_updated_issues_count": 37, - "_pop_closed_issues_count": 24, - "_pop_created_since_days": 67, + "_pop_commit_frequency": 3.46, + "_pop_updated_issues_count": 113, + "_pop_closed_issues_count": 86, + "_pop_created_since_days": 57, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 37.0, - "_pop_comment_count": 44.0, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 27, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 113.0, + "_pop_comment_count": 245.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 106, - "_pop_score": 51.01, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 0, + "_pop_score": 51.37, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pyro-ppl/pyro/master/README.md", - "_readme_localurl": "pyro-ppl~pyro~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/encode/starlette/master/README.md", + "_readme_localurl": "encode~starlette~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pyro-ppl/pyro/master/setup.py" + "https://raw.githubusercontent.com/encode/starlette/master/requirements.txt", + "https://raw.githubusercontent.com/encode/starlette/master/pyproject.toml" ], "_requirements_localurls": [ - "pyro-ppl~pyro~setup.py" + "encode~starlette~requirements.txt", + "encode~starlette~pyproject.toml" ] }, { - "index": 394, - "category": "web", - "githuburl": "https://github.com/encode/starlette", + "index": 7, + "category": "util", + "githuburl": "https://github.com/boto/boto3", "featured": null, "links": null, "description": null, - "_repopath": "encode/starlette", - "_reponame": "starlette", - "_stars": 7692, - "_forks": 693, - "_watches": 112, + "_repopath": "boto/boto3", + "_reponame": "boto3", + "_stars": 7900, + "_forks": 1721, + "_watches": 238, + "_language": "Python", + "_homepage": "https://aws.amazon.com/sdk-for-python/", + "_description": "boto3: AWS SDK for Python", + "_organization": "boto", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2014-10-03T00:00:00.000Z", + "_age_weeks": 437, + "_stars_per_week": 18.05, "_topics": [ "python", - "async", - "websockets", - "graphql", - "http" + "aws", + "cloud", + "cloud-management", + "aws-sdk" ], - "_language": "Python", - "_homepage": "https://www.starlette.io/", - "_description": "starlette: The little ASGI framework that shines. \ud83c\udf1f", - "_organization": "encode", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-09T00:00:00.000Z", - "_created_at": "2018-06-25T00:00:00.000Z", - "_age_weeks": 234, - "_stars_per_week": 32.87, - "_pop_contributor_count": 217, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 140, + "_pop_contributor_logins": [ + "JordonPhillips@amazonwebservices", + "aws-sdk-python-automation", + "awstools", + "danielgtaylor@istreamplanet", + "jamesls", + "joguSD", + "kyleknap@amazonwebservices", + "nateprewitt@amazonwebservices", + "rayluo@microsoft", + "shepazon@aws" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "encode", - "encodeoss" + "amazonwebservices", + "aws", + "istreamplanet", + "microsoft" + ], + "_pop_contributor_orgs_raw": [ + "@AWS", + "Amazon Web Services", + "Microsoft", + "iStreamPlanet" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.56, - "_pop_updated_issues_count": 129, - "_pop_closed_issues_count": 96, - "_pop_created_since_days": 55, + "_pop_commit_frequency": 10.04, + "_pop_updated_issues_count": 180, + "_pop_closed_issues_count": 140, + "_pop_created_since_days": 102, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 12, - "_pop_recent_releases_estimated_tags": 27, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 129.0, - "_pop_comment_count": 273.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 149, + "_pop_recent_releases_adjusted_count": 149, + "_pop_issue_count": 178.0, + "_pop_comment_count": 348.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 1476, - "_pop_score": 62.05, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/encode/starlette/master/README.md", - "_readme_localurl": "encode~starlette~README.md", + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 54.58, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/boto/boto3/master/README.rst", + "_readme_localurl": "boto~boto3~README.rst", "_requirements_filenames": [ "requirements.txt", "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/encode/starlette/master/requirements.txt", - "https://raw.githubusercontent.com/encode/starlette/master/setup.py", - "https://raw.githubusercontent.com/encode/starlette/master/pyproject.toml" + "https://raw.githubusercontent.com/boto/boto3/master/requirements.txt", + "https://raw.githubusercontent.com/boto/boto3/master/setup.py", + "https://raw.githubusercontent.com/boto/boto3/master/pyproject.toml" ], "_requirements_localurls": [ - "encode~starlette~requirements.txt", - "encode~starlette~setup.py", - "encode~starlette~pyproject.toml" + "boto~boto3~requirements.txt", + "boto~boto3~setup.py", + "boto~boto3~pyproject.toml" + ] + }, + { + "index": 951, + "category": "web", + "githuburl": "https://github.com/bottlepy/bottle", + "featured": null, + "links": null, + "description": null, + "_repopath": "bottlepy/bottle", + "_reponame": "bottle", + "_stars": 7900, + "_forks": 1444, + "_watches": 313, + "_language": "Python", + "_homepage": "http://bottlepy.org/", + "_description": "bottle.py is a fast and simple micro-framework for python web-applications.", + "_organization": "bottlepy", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2009-06-30T00:00:00.000Z", + "_age_weeks": 712, + "_stars_per_week": 11.09, + "_topics": [ + "python", + "wsgi", + "rest", + "web-framework", + "bottle" + ], + "_last_commit_date": "2022-09-05T00:00:00.000Z", + "_pop_contributor_count": 227, + "_pop_contributor_logins": [ + "defnull@gwdgg\u00f6ttingen", + "eric-wieser@universityofcambridge", + "fredj@camptocamp", + "hartwork", + "iurisilvio@buser", + "michael-k", + "myzhan@alibaba-inc", + "oz123@spectrocloud", + "sc68cal", + "sgala@redhat" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "alibaba-inc", + "buser", + "camptocamp", + "gwdgg\u00f6ttingen", + "redhat", + "spectrocloud", + "universityofcambridge" + ], + "_pop_contributor_orgs_raw": [ + "@camptocamp", + "Alibaba-inc", + "Buser", + "GWDG G\u00f6ttingen", + "Red Hat", + "Spectro Cloud", + "University of Cambridge" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.29, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 166, + "_pop_updated_since_days": 6, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 14.0, + "_pop_comment_count": 8.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 41.31, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/bottlepy/bottle/master/README.rst", + "_readme_localurl": "bottlepy~bottle~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/bottlepy/bottle/master/setup.py" + ], + "_requirements_localurls": [ + "bottlepy~bottle~setup.py" ] }, { @@ -11599,9 +16287,17 @@ "description": null, "_repopath": "megvii-basedetection/yolox", "_reponame": "YOLOX", - "_stars": 7687, - "_forks": 1837, + "_stars": 7875, + "_forks": 1903, "_watches": 72, + "_language": "Python", + "_homepage": "", + "_description": "YOLOX is a high-performance anchor-free YOLO, exceeding yolov3~v5 with MegEngine, ONNX, TensorRT, ncnn, and OpenVINO supported. Documentation: https://yolox.readthedocs.io/", + "_organization": "megvii-basedetection", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-07-17T00:00:00.000Z", + "_age_weeks": 83, + "_stars_per_week": 94.23, "_topics": [ "yolox", "yolov3", @@ -11615,39 +16311,55 @@ "yolo", "deep-learning" ], - "_language": "Python", - "_homepage": "", - "_description": "YOLOX is a high-performance anchor-free YOLO, exceeding yolov3~v5 with MegEngine, ONNX, TensorRT, ncnn, and OpenVINO supported. Documentation: https://yolox.readthedocs.io/", - "_organization": "megvii-basedetection", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2021-07-17T00:00:00.000Z", - "_age_weeks": 74, - "_stars_per_week": 103.48, - "_pop_contributor_count": 67, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 69, + "_pop_contributor_logins": [ + "DefTruth@paddlepaddle", + "FateScript@megvii-basedetection", + "GOATmessi7", + "Joker316701882@megviibasedetection", + "ankandrew", + "developer0hye@markany", + "ianpundar@wuhanuniversity", + "manangoel99@wandb", + "wwqgtxx", + "yancie-yjr@hust" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "hust", "markany", "megvii-basedetection", "megviibasedetection", - "wandb" + "paddlepaddle", + "wandb", + "wuhanuniversity" + ], + "_pop_contributor_orgs_raw": [ + "@Megvii-BaseDetection ", + "@PaddlePaddle", + "@wandb ", + "HUST", + "MarkAny", + "Megvii BaseDetection", + "Wuhan University" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.92, - "_pop_updated_issues_count": 122, - "_pop_closed_issues_count": 50, - "_pop_created_since_days": 17, + "_pop_commit_frequency": 0.79, + "_pop_updated_issues_count": 99, + "_pop_closed_issues_count": 51, + "_pop_created_since_days": 19, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 2, + "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 122.0, - "_pop_comment_count": 147.0, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 99.0, + "_pop_comment_count": 122.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 10, - "_pop_score": 43.4, + "_pop_dependents_count": 0, + "_pop_score": 40.77, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/megvii-basedetection/yolox/master/README.md", "_readme_localurl": "megvii-basedetection~yolox~README.md", @@ -11665,126 +16377,166 @@ ] }, { - "index": 495, - "category": "data", - "githuburl": "https://github.com/duckdb/duckdb", - "featured": 1.0, + "index": 970, + "category": "study", + "githuburl": "https://github.com/openai/spinningup", + "featured": null, "links": null, "description": null, - "_repopath": "duckdb/duckdb", - "_reponame": "duckdb", - "_stars": 7647, - "_forks": 730, - "_watches": 115, - "_topics": [ - "sql", - "database", - "olap", - "analytics", - "embedded-database" + "_repopath": "openai/spinningup", + "_reponame": "spinningup", + "_stars": 7852, + "_forks": 1838, + "_watches": 217, + "_language": "Python", + "_homepage": "https://spinningup.openai.com/", + "_description": "spinningup: An educational resource to help anyone learn deep reinforcement learning.", + "_organization": "openai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-11-07T00:00:00.000Z", + "_age_weeks": 224, + "_stars_per_week": 35.05, + "_topics": [], + "_last_commit_date": "2020-02-07T00:00:00.000Z", + "_pop_contributor_count": 25, + "_pop_contributor_logins": [ + "albertwujj", + "allanbreyes", + "alok", + "bchess@openai", + "christopherhesse@openai", + "jachiam", + "maksay", + "marko-bast", + "mimoralea", + "rootulp@celestiaorg" ], - "_language": "C++", - "_homepage": "http://www.duckdb.org", - "_description": "DuckDB is an in-process SQL OLAP Database Management System", - "_organization": "duckdb", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2018-06-26T00:00:00.000Z", - "_age_weeks": 233, - "_stars_per_week": 32.7, - "_pop_contributor_count": 215, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "cwi", - "duckdblabs" + "celestiaorg", + "openai" + ], + "_pop_contributor_orgs_raw": [ + "@celestiaorg", + "@openai ", + "OpenAI" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 131.92, - "_pop_updated_issues_count": 1149, - "_pop_closed_issues_count": 956, - "_pop_created_since_days": 55, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 8, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 1150.0, - "_pop_comment_count": 1990.0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 37, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 10.0, + "_pop_comment_count": 6.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 349, - "_pop_score": 66.69, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/duckdb/duckdb/master/README.md", - "_readme_localurl": "duckdb~duckdb~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 21.21, + "_readme_filename": "readme.md", + "_readme_giturl": "https://raw.githubusercontent.com/openai/spinningup/master/readme.md", + "_readme_localurl": "openai~spinningup~readme.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/openai/spinningup/master/setup.py" + ], + "_requirements_localurls": [ + "openai~spinningup~setup.py" + ] }, { - "index": 815, + "index": 422, "category": "ml-dl", - "githuburl": "https://github.com/danielgatis/rembg", + "githuburl": "https://github.com/pyro-ppl/pyro", "featured": null, "links": null, "description": null, - "_repopath": "danielgatis/rembg", - "_reponame": "rembg", - "_stars": 7640, - "_forks": 969, - "_watches": 99, + "_repopath": "pyro-ppl/pyro", + "_reponame": "pyro", + "_stars": 7795, + "_forks": 962, + "_watches": 201, + "_language": "Python", + "_homepage": "http://pyro.ai", + "_description": "pyro: Deep universal probabilistic programming with Python and PyTorch", + "_organization": "pyro-ppl", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-06-16T00:00:00.000Z", + "_age_weeks": 296, + "_stars_per_week": 26.27, "_topics": [ - "image-processing", - "background-removal", - "python" + "python", + "pytorch", + "machine-learning", + "bayesian", + "probabilistic-programming", + "bayesian-inference", + "variational-inference", + "probabilistic-modeling", + "deep-learning" ], - "_language": "Python", - "_homepage": "", - "_description": "Rembg is a tool to remove images background.", - "_organization": "danielgatis", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2020-08-10T00:00:00.000Z", - "_age_weeks": 123, - "_stars_per_week": 62.11, - "_pop_contributor_count": 32, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-03T00:00:00.000Z", + "_pop_contributor_count": 134, + "_pop_contributor_logins": [ + "eb8680", + "fehiepsi@google", + "fritzo@generatebiomedicines", + "jpchen@facebook", + "karalets", + "martinjankowiak", + "neerajprad@meta", + "null-a", + "ordabayevy@broadinstitute", + "stefanwebb" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "christianclauss" + "broadinstitute", + "facebook", + "generatebiomedicines", + "google", + "meta" + ], + "_pop_contributor_orgs_raw": [ + "@facebook", + "Broad Institute", + "Generate Biomedicines", + "Google", + "Meta" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.35, - "_pop_updated_issues_count": 73, - "_pop_closed_issues_count": 51, - "_pop_created_since_days": 29, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 15, - "_pop_recent_releases_estimated_tags": 13, - "_pop_recent_releases_adjusted_count": 15, - "_pop_issue_count": 73.0, - "_pop_comment_count": 149.0, + "_pop_commit_frequency": 1.37, + "_pop_updated_issues_count": 30, + "_pop_closed_issues_count": 23, + "_pop_created_since_days": 69, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 30.0, + "_pop_comment_count": 64.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 18, - "_pop_score": 44.05, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 0, + "_pop_score": 44.77, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/danielgatis/rembg/master/README.md", - "_readme_localurl": "danielgatis~rembg~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pyro-ppl/pyro/master/README.md", + "_readme_localurl": "pyro-ppl~pyro~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/danielgatis/rembg/master/requirements.txt", - "https://raw.githubusercontent.com/danielgatis/rembg/master/setup.py", - "https://raw.githubusercontent.com/danielgatis/rembg/master/pyproject.toml" + "https://raw.githubusercontent.com/pyro-ppl/pyro/master/setup.py" ], "_requirements_localurls": [ - "danielgatis~rembg~requirements.txt", - "danielgatis~rembg~setup.py", - "danielgatis~rembg~pyproject.toml" + "pyro-ppl~pyro~setup.py" ] }, { @@ -11796,9 +16548,17 @@ "description": null, "_repopath": "robotframework/robotframework", "_reponame": "robotframework", - "_stars": 7635, - "_forks": 2052, - "_watches": 483, + "_stars": 7777, + "_forks": 2076, + "_watches": 474, + "_language": "Python", + "_homepage": "http://robotframework.org", + "_description": "robotframework: Generic automation framework for acceptance testing and RPA", + "_organization": "robotframework", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-06-27T00:00:00.000Z", + "_age_weeks": 451, + "_stars_per_week": 17.22, "_topics": [ "robotframework", "testing", @@ -11809,37 +16569,50 @@ "rpa", "python" ], - "_language": "Python", - "_homepage": "http://robotframework.org", - "_description": "robotframework: Generic automation framework for acceptance testing and RPA", - "_organization": "robotframework", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-11T00:00:00.000Z", - "_created_at": "2014-06-27T00:00:00.000Z", - "_age_weeks": 442, - "_stars_per_week": 17.26, - "_pop_contributor_count": 172, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 174, + "_pop_contributor_logins": [ + "Tattoo", + "asyrjasalo", + "jrantanen@reaktor", + "jussimalinen@reaktor", + "khusa@reaktorinnovations", + "mikahanninen@robocorp", + "mkorpela@reaktor", + "pekkaklarck@eligaoy", + "spooning", + "yanne@reaktor" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "eligaoy", - "reaktor" + "reaktor", + "reaktorinnovations", + "robocorp" + ], + "_pop_contributor_orgs_raw": [ + "@reaktor ", + "Eliga Oy", + "Reaktor", + "Reaktor Innovations", + "Robocorp" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 10.92, - "_pop_updated_issues_count": 157, - "_pop_closed_issues_count": 94, - "_pop_created_since_days": 103, + "_pop_commit_frequency": 9.48, + "_pop_updated_issues_count": 172, + "_pop_closed_issues_count": 91, + "_pop_created_since_days": 105, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 14, + "_pop_recent_releases_count": 13, "_pop_recent_releases_estimated_tags": 15, - "_pop_recent_releases_adjusted_count": 14, - "_pop_issue_count": 157.0, - "_pop_comment_count": 321.0, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 172.0, + "_pop_comment_count": 294.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 1572, - "_pop_score": 64.57, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 53.21, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/robotframework/robotframework/master/README.rst", "_readme_localurl": "robotframework~robotframework~README.rst", @@ -11853,6 +16626,97 @@ "robotframework~robotframework~setup.py" ] }, + { + "index": 440, + "category": "ml-dl", + "githuburl": "https://github.com/kornia/kornia", + "featured": null, + "links": null, + "description": null, + "_repopath": "kornia/kornia", + "_reponame": "kornia", + "_stars": 7774, + "_forks": 781, + "_watches": 120, + "_language": "Python", + "_homepage": "https://kornia.github.io/kornia/", + "_description": "kornia: Open Source Differentiable Computer Vision Library", + "_organization": "kornia", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-08-22T00:00:00.000Z", + "_age_weeks": 235, + "_stars_per_week": 33.08, + "_topics": [ + "computer-vision", + "image-processing", + "machine-learning", + "pytorch", + "deep-learning", + "neural-network", + "python", + "artificial-intelligence" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 204, + "_pop_contributor_logins": [ + "HassanAlsamahi@brightskiesinc", + "ananyamukh6", + "dependabot[bot]", + "ducha-aiki@czechtechnicaluniversityinprague", + "dvd42", + "edgarriba@kornia.org", + "johnnv1", + "pre-commit-ci[bot]", + "priba@computervisioncenter", + "shijianjian@kaust" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "brightskiesinc", + "computervisioncenter", + "czechtechnicaluniversityinprague", + "kaust", + "kornia.org" + ], + "_pop_contributor_orgs_raw": [ + "Brightskies Inc", + "Computer Vision Center", + "Czech Technical University in Prague", + "KAUST", + "Kornia.org" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.23, + "_pop_updated_issues_count": 238, + "_pop_closed_issues_count": 189, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 238.0, + "_pop_comment_count": 340.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 51.79, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/kornia/kornia/master/README.md", + "_readme_localurl": "kornia~kornia~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/kornia/kornia/master/setup.py", + "https://raw.githubusercontent.com/kornia/kornia/master/pyproject.toml" + ], + "_requirements_localurls": [ + "kornia~kornia~setup.py", + "kornia~kornia~pyproject.toml" + ] + }, { "index": 95, "category": "perf", @@ -11862,9 +16726,17 @@ "description": null, "_repopath": "vaexio/vaex", "_reponame": "vaex", - "_stars": 7633, - "_forks": 581, - "_watches": 144, + "_stars": 7770, + "_forks": 584, + "_watches": 141, + "_language": "Python", + "_homepage": "https://vaex.io", + "_description": "vaex: Out-of-Core hybrid Apache Arrow/NumPy DataFrame for Python, ML, visualization and exploration of big tabular data at a billion rows per second \ud83d\ude80", + "_organization": "vaexio", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-09-27T00:00:00.000Z", + "_age_weeks": 438, + "_stars_per_week": 17.72, "_topics": [ "dataframe", "python", @@ -11878,38 +16750,55 @@ "data-science", "pyarrow" ], - "_language": "Python", - "_homepage": "https://vaex.io", - "_description": "vaex: Out-of-Core hybrid Apache Arrow/NumPy DataFrame for Python, ML, visualization and exploration of big tabular data at a billion rows per second \ud83d\ude80", - "_organization": "vaexio", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-12-08T00:00:00.000Z", - "_created_at": "2014-09-27T00:00:00.000Z", - "_age_weeks": 429, - "_stars_per_week": 17.78, "_pop_contributor_count": 72, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_pop_contributor_logins": [ + "Ben-Epstein@rungalileo", + "JovanVeljanoski", + "NickCrews", + "byaminov", + "honno@quansight", + "kmcentush@cuberg", + "maartenbreddels@maartenbreddels", + "rieder@universit\u00e9degen\u00e8ve", + "saikiran2603@navigateconsulting", + "xdssio@xdss" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "cuberg", "maartenbreddels", + "navigateconsulting", + "quansight", "rungalileo", + "universit\u00e9degen\u00e8ve", "xdss" ], + "_pop_contributor_orgs_raw": [ + "@Quansight", + "@maartenbreddels", + "@navigateconsulting ", + "@rungalileo", + "Cuberg", + "Universit\u00e9 de Gen\u00e8ve", + "XDSS" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.52, - "_pop_updated_issues_count": 131, - "_pop_closed_issues_count": 68, - "_pop_created_since_days": 100, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 3.37, + "_pop_updated_issues_count": 88, + "_pop_closed_issues_count": 22, + "_pop_created_since_days": 102, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 44, - "_pop_recent_releases_adjusted_count": 44, - "_pop_issue_count": 131.0, - "_pop_comment_count": 263.0, + "_pop_recent_releases_estimated_tags": 43, + "_pop_recent_releases_adjusted_count": 43, + "_pop_issue_count": 88.0, + "_pop_comment_count": 143.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 29, - "_pop_score": 55.82, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 48.44, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/vaexio/vaex/master/README.md", "_readme_localurl": "vaexio~vaex~README.md", @@ -11932,9 +16821,17 @@ "description": null, "_repopath": "cython/cython", "_reponame": "cython", - "_stars": 7517, - "_forks": 1345, - "_watches": 230, + "_stars": 7686, + "_forks": 1363, + "_watches": 232, + "_language": "Python", + "_homepage": "https://cython.org", + "_description": "cython: The most widely used Python to C compiler", + "_organization": "cython", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2010-11-21T00:00:00.000Z", + "_age_weeks": 639, + "_stars_per_week": 12.02, "_topics": [ "python", "cython", @@ -11945,37 +16842,51 @@ "performance", "big-data" ], - "_language": "Python", - "_homepage": "https://cython.org", - "_description": "cython: The most widely used Python to C compiler", - "_organization": "cython", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2010-11-21T00:00:00.000Z", - "_age_weeks": 630, - "_stars_per_week": 11.93, - "_pop_contributor_count": 489, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 490, + "_pop_contributor_logins": [ + "da-woods", + "dalcinl@ecrcatkaust", + "insertinterestingnamehere@utaustincsemprogram", + "jdemeyer@be-mobile", + "larsmans", + "markflorisson@mlabs", + "mattip@quansightlabs", + "robertwb", + "scoder", + "vitek" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "be-mobile", "ecrcatkaust", - "mlabs" + "mlabs", + "quansightlabs", + "utaustincsemprogram" + ], + "_pop_contributor_orgs_raw": [ + "@ecrc at KAUST ", + "Be-Mobile", + "MLabs", + "Quansight Labs", + "UT Austin CSEM Program" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 9.35, - "_pop_updated_issues_count": 222, - "_pop_closed_issues_count": 136, - "_pop_created_since_days": 147, + "_pop_commit_frequency": 8.21, + "_pop_updated_issues_count": 194, + "_pop_closed_issues_count": 116, + "_pop_created_since_days": 149, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 8, + "_pop_recent_releases_count": 6, "_pop_recent_releases_estimated_tags": 15, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 222.0, - "_pop_comment_count": 496.0, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 195.0, + "_pop_comment_count": 399.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.2, - "_pop_dependents_count": 4115, - "_pop_score": 69.16, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 56.52, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/cython/cython/master/README.rst", "_readme_localurl": "cython~cython~README.rst", @@ -11990,74 +16901,86 @@ ] }, { - "index": 440, - "category": "ml-dl", - "githuburl": "https://github.com/kornia/kornia", + "index": 547, + "category": "ml", + "githuburl": "https://github.com/optuna/optuna", "featured": null, "links": null, "description": null, - "_repopath": "kornia/kornia", - "_reponame": "kornia", - "_stars": 7514, - "_forks": 753, - "_watches": 118, + "_repopath": "optuna/optuna", + "_reponame": "optuna", + "_stars": 7600, + "_forks": 805, + "_watches": 123, + "_language": "Python", + "_homepage": "https://optuna.org", + "_description": "optuna: A hyperparameter optimization framework", + "_organization": "optuna", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-02-21T00:00:00.000Z", + "_age_weeks": 261, + "_stars_per_week": 29.12, "_topics": [ - "computer-vision", - "image-processing", - "machine-learning", - "pytorch", - "deep-learning", - "neural-network", "python", - "artificial-intelligence" + "machine-learning", + "parallel", + "distributed", + "hyperparameter-optimization", + "hacktoberfest" ], - "_language": "Python", - "_homepage": "https://kornia.github.io/kornia/", - "_description": "kornia: Open Source Differentiable Computer Vision Library", - "_organization": "kornia", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2018-08-22T00:00:00.000Z", - "_age_weeks": 225, - "_stars_per_week": 33.29, - "_pop_contributor_count": 195, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 227, + "_pop_contributor_logins": [ + "HideakiImamura@preferrednetworks", + "c-bata", + "contramundum53", + "crcrpar@nvidia", + "g-votte", + "himkt", + "hvy@preferrednetworks", + "nzw0301@ibm", + "sile", + "toshihikoyanase@preferrednetworks" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "computervisioncenter", - "czechtechnicaluniversityinprague", - "kaust", - "kornia.org" + "ibm", + "nvidia", + "preferrednetworks" + ], + "_pop_contributor_orgs_raw": [ + "@ibm", + "NVIDIA", + "Preferred Networks", + "Preferred Networks, Inc." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.37, - "_pop_updated_issues_count": 236, - "_pop_closed_issues_count": 174, - "_pop_created_since_days": 53, + "_pop_commit_frequency": 43.5, + "_pop_updated_issues_count": 292, + "_pop_closed_issues_count": 231, + "_pop_created_since_days": 61, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 236.0, - "_pop_comment_count": 411.0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 292.0, + "_pop_comment_count": 750.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 103, - "_pop_score": 59.02, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 0, + "_pop_score": 56.09, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/kornia/kornia/master/README.md", - "_readme_localurl": "kornia~kornia~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/optuna/optuna/master/README.md", + "_readme_localurl": "optuna~optuna~README.md", "_requirements_filenames": [ - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/kornia/kornia/master/setup.py", - "https://raw.githubusercontent.com/kornia/kornia/master/pyproject.toml" + "https://raw.githubusercontent.com/optuna/optuna/master/pyproject.toml" ], "_requirements_localurls": [ - "kornia~kornia~setup.py", - "kornia~kornia~pyproject.toml" + "optuna~optuna~pyproject.toml" ] }, { @@ -12069,9 +16992,17 @@ "description": null, "_repopath": "graphql-python/graphene", "_reponame": "graphene", - "_stars": 7496, - "_forks": 804, - "_watches": 146, + "_stars": 7583, + "_forks": 809, + "_watches": 145, + "_language": "Python", + "_homepage": "http://graphene-python.org/", + "_description": "graphene: GraphQL framework for Python", + "_organization": "graphql-python", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-09-24T00:00:00.000Z", + "_age_weeks": 386, + "_stars_per_week": 19.6, "_topics": [ "graphql", "python", @@ -12079,36 +17010,51 @@ "framework", "graphene" ], - "_language": "Python", - "_homepage": "http://graphene-python.org/", - "_description": "graphene: GraphQL framework for Python", - "_organization": "graphql-python", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-11T00:00:00.000Z", - "_created_at": "2015-09-24T00:00:00.000Z", - "_age_weeks": 377, - "_stars_per_week": 19.85, - "_pop_contributor_count": 194, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-12-25T00:00:00.000Z", + "_pop_contributor_count": 196, + "_pop_contributor_logins": [ + "Cito@ghga-de", + "Globegitter", + "adamcharnock", + "aryaniyaps", + "dan98765@checkr", + "ekampf@twingate", + "erikwrede", + "jkimbo", + "justinrmiller@zefr-inc", + "syrusakbary@wasmerio" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "wasmerio" + "checkr", + "ghga-de", + "twingate", + "wasmerio", + "zefr-inc" + ], + "_pop_contributor_orgs_raw": [ + "@Twingate ", + "@ZEFR-INC ", + "@ghga-de", + "@wasmerio ", + "Checkr" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.79, - "_pop_updated_issues_count": 49, - "_pop_closed_issues_count": 34, - "_pop_created_since_days": 88, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.75, + "_pop_updated_issues_count": 36, + "_pop_closed_issues_count": 22, + "_pop_created_since_days": 90, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 4, "_pop_recent_releases_estimated_tags": 8, "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 49.0, - "_pop_comment_count": 110.0, + "_pop_issue_count": 36.0, + "_pop_comment_count": 69.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.2, - "_pop_dependents_count": 1177, - "_pop_score": 55.62, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 44.76, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/graphql-python/graphene/master/README.md", "_readme_localurl": "graphql-python~graphene~README.md", @@ -12123,206 +17069,277 @@ ] }, { - "index": 470, - "category": "nlp", - "githuburl": "https://github.com/microsoft/unilm", + "index": 28, + "category": "ml-dl", + "githuburl": "https://github.com/google/trax", "featured": null, "links": null, "description": null, - "_repopath": "microsoft/unilm", - "_reponame": "unilm", - "_stars": 7463, - "_forks": 1365, - "_watches": 178, + "_repopath": "google/trax", + "_reponame": "trax", + "_stars": 7365, + "_forks": 765, + "_watches": 146, + "_language": "Python", + "_homepage": "", + "_description": "Trax \u2014 Deep Learning with Clear Code and Speed", + "_organization": "google", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-10-05T00:00:00.000Z", + "_age_weeks": 176, + "_stars_per_week": 41.71, "_topics": [ - "nlp", - "language-understanding", - "language-generation", - "pre-trained-model", - "small-pre-trained-model", - "unilm", - "minilm", - "layoutlm", - "infoxlm", - "multimodal-pre-trained-model", - "layoutxlm", - "beit", - "document-ai", - "trocr", - "wavlm", - "beit-3", - "foundation-models", - "xlm-e", - "deepnet", - "document-foundation-model" + "jax", + "numpy", + "deep-learning", + "deep-reinforcement-learning", + "machine-learning", + "transformer", + "reinforcement-learning" ], - "_language": "Python", - "_homepage": "https://aka.ms/nlpagi", - "_description": "unilm: Large-scale Self-supervised Pre-training Across Tasks, Languages, and Modalities", - "_organization": "microsoft", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-28T00:00:00.000Z", - "_created_at": "2019-07-23T00:00:00.000Z", - "_age_weeks": 177, - "_stars_per_week": 41.96, - "_pop_contributor_count": 50, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 78, + "_pop_contributor_logins": [ + "SauravMaheshkar@ml-gde", + "afrozenator@google", + "hawkinsp@google", + "henrykmichalewski", + "j2i2", + "koz4k@mimuw", + "sebastianjaszczur", + "syzymon@universityofwarsaw", + "trax-robot", + "wangpengmit@mitcsail" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "microsoftresearch" + "google", + "mimuw", + "mitcsail", + "ml-gde", + "universityofwarsaw" + ], + "_pop_contributor_orgs_raw": [ + "@ml-gde", + "Google", + "MIMUW", + "MIT CSAIL", + "University of Warsaw" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.02, - "_pop_updated_issues_count": 136, - "_pop_closed_issues_count": 79, + "_pop_commit_frequency": 0.4, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 6, "_pop_created_since_days": 41, - "_pop_updated_since_days": 1, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 136.0, - "_pop_comment_count": 207.0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 16.0, + "_pop_comment_count": 8.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 32, - "_pop_score": 42.87, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 38.82, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/microsoft/unilm/master/README.md", - "_readme_localurl": "microsoft~unilm~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/google/trax/master/README.md", + "_readme_localurl": "google~trax~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/google/trax/master/setup.py" + ], + "_requirements_localurls": [ + "google~trax~setup.py" + ] }, { - "index": 547, - "category": "ml", - "githuburl": "https://github.com/optuna/optuna", - "featured": null, + "index": 650, + "category": "profiling", + "githuburl": "https://github.com/plasma-umass/scalene", + "featured": 1.0, "links": null, "description": null, - "_repopath": "optuna/optuna", - "_reponame": "optuna", - "_stars": 7310, - "_forks": 784, - "_watches": 121, + "_repopath": "plasma-umass/scalene", + "_reponame": "scalene", + "_stars": 7358, + "_forks": 247, + "_watches": 72, + "_language": "JavaScript", + "_homepage": "", + "_description": "Scalene: a high-performance, high-precision CPU, GPU, and memory profiler for Python with AI-powered optimization proposals", + "_organization": "plasma-umass", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-12-17T00:00:00.000Z", + "_age_weeks": 166, + "_stars_per_week": 44.29, "_topics": [ "python", - "machine-learning", - "parallel", - "distributed", - "hyperparameter-optimization", - "hacktoberfest" + "profiling", + "performance-analysis", + "cpu-profiling", + "profiler", + "python-profilers", + "gpu-programming", + "scalene", + "profiles-memory", + "performance-cpu", + "cpu", + "memory-allocation", + "gpu", + "memory-consumption" ], - "_language": "Python", - "_homepage": "https://optuna.org", - "_description": "optuna: A hyperparameter optimization framework", - "_organization": "optuna", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2018-02-21T00:00:00.000Z", - "_age_weeks": 251, - "_stars_per_week": 29.04, - "_pop_contributor_count": 220, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 37, + "_pop_contributor_logins": [ + "Birdi7", + "Insutanto", + "SnoopJ", + "cclauss@christianclauss", + "dependabot[bot]", + "emeryberger@universityofmassachusettsamherst", + "groutr@lynkertechnologies", + "jaltmayerpizzorno", + "johanvergeer@johanvergeer", + "sternj@umassamherst" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "preferrednetworks" + "christianclauss", + "johanvergeer", + "lynkertechnologies", + "umassamherst", + "universityofmassachusettsamherst" + ], + "_pop_contributor_orgs_raw": [ + "@johanvergeer", + "Christian Clauss", + "Lynker Technologies", + "UMass Amherst", + "University of Massachusetts Amherst" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 46.4, - "_pop_updated_issues_count": 323, - "_pop_closed_issues_count": 226, - "_pop_created_since_days": 59, + "_pop_commit_frequency": 10.12, + "_pop_updated_issues_count": 83, + "_pop_closed_issues_count": 50, + "_pop_created_since_days": 39, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 11, - "_pop_recent_releases_estimated_tags": 11, - "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 323.0, - "_pop_comment_count": 983.0, + "_pop_recent_releases_count": 16, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 16, + "_pop_issue_count": 83.0, + "_pop_comment_count": 138.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.0, - "_pop_dependents_count": 1036, - "_pop_score": 65.44, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 47.04, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/optuna/optuna/master/README.md", - "_readme_localurl": "optuna~optuna~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/plasma-umass/scalene/master/README.md", + "_readme_localurl": "plasma-umass~scalene~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py", - "pyproject.toml" + "Pipfile" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/optuna/optuna/master/setup.py", - "https://raw.githubusercontent.com/optuna/optuna/master/pyproject.toml" + "https://raw.githubusercontent.com/plasma-umass/scalene/master/requirements.txt", + "https://raw.githubusercontent.com/plasma-umass/scalene/master/setup.py", + "https://raw.githubusercontent.com/plasma-umass/scalene/master/Pipfile" ], "_requirements_localurls": [ - "optuna~optuna~setup.py", - "optuna~optuna~pyproject.toml" + "plasma-umass~scalene~requirements.txt", + "plasma-umass~scalene~setup.py", + "plasma-umass~scalene~Pipfile" ] }, { - "index": 28, - "category": "ml-dl", - "githuburl": "https://github.com/google/trax", + "index": 165, + "category": "nlp", + "githuburl": "https://github.com/doccano/doccano", "featured": null, "links": null, "description": null, - "_repopath": "google/trax", - "_reponame": "trax", - "_stars": 7217, - "_forks": 750, - "_watches": 145, + "_repopath": "doccano/doccano", + "_reponame": "doccano", + "_stars": 7356, + "_forks": 1488, + "_watches": 125, + "_language": "Python", + "_homepage": "https://doccano.herokuapp.com", + "_description": "doccano: Open source annotation tool for machine learning practitioners.", + "_organization": "doccano", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-05-09T00:00:00.000Z", + "_age_weeks": 250, + "_stars_per_week": 29.42, "_topics": [ - "jax", - "numpy", - "deep-learning", - "deep-reinforcement-learning", + "natural-language-processing", "machine-learning", - "transformer", - "reinforcement-learning" + "annotation-tool", + "python", + "datasets", + "dataset", + "data-labeling", + "text-annotation", + "nuxtjs", + "vue", + "vuejs", + "nuxt" ], - "_language": "Python", - "_homepage": "", - "_description": "Trax \u2014 Deep Learning with Clear Code and Speed", - "_organization": "google", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-09T00:00:00.000Z", - "_created_at": "2019-10-05T00:00:00.000Z", - "_age_weeks": 167, - "_stars_per_week": 43.14, - "_pop_contributor_count": 78, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 100, + "_pop_contributor_logins": [ + "BrambleXu", + "Collinbrown95@statisticscanada", + "Hironsan", + "SwiftPredator@haustiergl\u00fcck.de(deprecated)", + "c-w@noom", + "cgill95@leibnizuniversit\u00e4thannover", + "dependabot[bot]", + "j-frei", + "kuraga", + "youichiro@classi" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google", - "mimuw" + "classi", + "haustiergl\u00fcck.de(deprecated)", + "leibnizuniversit\u00e4thannover", + "noom", + "statisticscanada" + ], + "_pop_contributor_orgs_raw": [ + "@noom ", + "Classi", + "Haustiergl\u00fcck.de (deprecated)", + "Leibniz Universit\u00e4t Hannover", + "Statistics Canada" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.38, - "_pop_updated_issues_count": 8, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 39, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 8.0, - "_pop_comment_count": 5.0, + "_pop_commit_frequency": 7.71, + "_pop_updated_issues_count": 101, + "_pop_closed_issues_count": 50, + "_pop_created_since_days": 58, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 101.0, + "_pop_comment_count": 112.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 19, - "_pop_score": 38.19, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 48.21, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/google/trax/master/README.md", - "_readme_localurl": "google~trax~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/google/trax/master/setup.py" - ], - "_requirements_localurls": [ - "google~trax~setup.py" - ] + "_readme_giturl": "https://raw.githubusercontent.com/doccano/doccano/master/README.md", + "_readme_localurl": "doccano~doccano~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { "index": 70, @@ -12333,9 +17350,17 @@ "description": null, "_repopath": "pymc-devs/pymc3", "_reponame": "pymc", - "_stars": 7187, - "_forks": 1711, - "_watches": 225, + "_stars": 7329, + "_forks": 1746, + "_watches": 226, + "_language": "Python", + "_homepage": "https://docs.pymc.io/", + "_description": "pymc: Bayesian Modeling in Python", + "_organization": "pymc-devs", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2009-05-05T00:00:00.000Z", + "_age_weeks": 720, + "_stars_per_week": 10.18, "_topics": [ "python", "statistical-analysis", @@ -12343,41 +17368,53 @@ "mcmc", "variational-inference", "probabilistic-programming", - "aesara", - "hacktoberfest", "pytensor" ], - "_language": "Python", - "_homepage": "https://docs.pymc.io/", - "_description": "pymc: Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with PyTensor", - "_organization": "pymc-devs", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2009-05-05T00:00:00.000Z", - "_age_weeks": 710, - "_stars_per_week": 10.11, - "_pop_contributor_count": 428, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 439, + "_pop_contributor_logins": [ + "ColCarroll@google", + "aloctavodia@imasl-conicet", + "apatil", + "brandonwillard", + "bwengals", + "ferrine@msueconomics/skoltechcs", + "jsalvatier", + "michaelosthege@forschungszentrumj\u00fclichgmbh", + "ricardoV94", + "twiecki@pymclabs" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "forschungszentrumj\u00fclichgmbh", + "google", + "imasl-conicet", "msueconomics/skoltechcs", "pymclabs" ], + "_pop_contributor_orgs_raw": [ + "Forschungszentrum J\u00fclich GmbH", + "Google", + "IMASL-CONICET", + "MSU Economics / Skoltech CS", + "PyMC Labs" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 17.42, - "_pop_updated_issues_count": 365, - "_pop_closed_issues_count": 279, - "_pop_created_since_days": 166, + "_pop_commit_frequency": 15.73, + "_pop_updated_issues_count": 266, + "_pop_closed_issues_count": 177, + "_pop_created_since_days": 168, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 22, + "_pop_recent_releases_count": 23, "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 22, - "_pop_issue_count": 365.0, - "_pop_comment_count": 941.0, + "_pop_recent_releases_adjusted_count": 23, + "_pop_issue_count": 266.0, + "_pop_comment_count": 651.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.6, - "_pop_dependents_count": 236, - "_pop_score": 67.67, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 0, + "_pop_score": 60.47, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pymc-devs/pymc3/master/README.rst", "_readme_localurl": "pymc-devs~pymc3~README.rst", @@ -12406,9 +17443,17 @@ "description": null, "_repopath": "tensorlayer/tensorlayer", "_reponame": "TensorLayer", - "_stars": 7126, - "_forks": 1612, - "_watches": 462, + "_stars": 7143, + "_forks": 1617, + "_watches": 466, + "_language": "Python", + "_homepage": "http://tensorlayerx.com", + "_description": "TensorLayer: Deep Learning and Reinforcement Learning Library for Scientists and Engineers ", + "_organization": "tensorlayer", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2016-06-07T00:00:00.000Z", + "_age_weeks": 350, + "_stars_per_week": 20.4, "_topics": [ "tensorlayer", "deep-learning", @@ -12427,39 +17472,53 @@ "imagenet", "google" ], - "_language": "Python", - "_homepage": "http://tensorlayer.org", - "_description": "TensorLayer: Deep Learning and Reinforcement Learning Library for Scientists and Engineers ", - "_organization": "tensorlayer", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-04-23T00:00:00.000Z", - "_created_at": "2016-06-07T00:00:00.000Z", - "_age_weeks": 340, - "_stars_per_week": 20.91, + "_last_commit_date": "2023-02-18T00:00:00.000Z", "_pop_contributor_count": 132, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "ChrisWu1997@columbiauniversity", + "DEKHTIARJonathan@nvidia", + "JingqingZ@imperialcollegelondon,pangaeadata", + "Laicheng0830@pengchenglab", + "lgarithm", + "luomai@universityofedinburgh", + "quantumiracle", + "wagamamaz", + "warshallrho@pekinguniversity", + "zsdonghao@pekinguniversity" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "columbiauniversity", "imperialcollegelondon,pangaeadata", + "nvidia", "pekinguniversity", + "pengchenglab", "universityofedinburgh" ], + "_pop_contributor_orgs_raw": [ + "@NVIDIA", + "Columbia University", + "Imperial College London, Pangaea Data", + "Peking University", + "Peng Cheng Lab", + "University of Edinburgh" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.04, - "_pop_updated_issues_count": 2, + "_pop_commit_frequency": 0.06, + "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 80, - "_pop_updated_since_days": 8, + "_pop_created_since_days": 82, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 13, - "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 2.0, - "_pop_comment_count": 2.0, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 52, - "_pop_score": 42.39, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 38.57, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tensorlayer/tensorlayer/master/README.md", "_readme_localurl": "tensorlayer~tensorlayer~README.md", @@ -12474,191 +17533,137 @@ ] }, { - "index": 165, + "index": 197, "category": "nlp", - "githuburl": "https://github.com/doccano/doccano", + "githuburl": "https://github.com/eleutherai/gpt-neo", "featured": null, "links": null, "description": null, - "_repopath": "doccano/doccano", - "_reponame": "doccano", - "_stars": 7043, - "_forks": 1449, - "_watches": 122, + "_repopath": "eleutherai/gpt-neo", + "_reponame": "gpt-neo", + "_stars": 7107, + "_forks": 697, + "_watches": 169, + "_language": "Python", + "_homepage": "https://www.eleuther.ai", + "_description": "gpt-neo: An implementation of model parallel GPT-2 and GPT-3-style models using the mesh-tensorflow library.", + "_organization": "eleutherai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-07-05T00:00:00.000Z", + "_age_weeks": 137, + "_stars_per_week": 51.71, "_topics": [ - "natural-language-processing", - "machine-learning", - "annotation-tool", - "python", - "datasets", - "dataset", - "data-labeling", - "text-annotation", - "nuxtjs", - "vue", - "vuejs", - "nuxt" + "language-model", + "transformers", + "gpt", + "gpt-2", + "gpt-3" ], - "_language": "Python", - "_homepage": "https://doccano.herokuapp.com", - "_description": "doccano: Open source annotation tool for machine learning practitioners.", - "_organization": "doccano", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2018-05-09T00:00:00.000Z", - "_age_weeks": 240, - "_stars_per_week": 29.26, - "_pop_contributor_count": 98, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-02-25T00:00:00.000Z", + "_pop_contributor_count": 29, + "_pop_contributor_logins": [ + "ClashLuke", + "ConnorJL", + "Mistobaan", + "StellaAthena@boozallenhamilton", + "anishthite@clarosai", + "kevinwatkins", + "leogao2", + "lucidrains", + "sdtblck", + "srulikbd" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "classi", - "noom", - "statisticscanada" + "boozallenhamilton", + "clarosai" + ], + "_pop_contributor_orgs_raw": [ + "@ClarosAI", + "Booz Allen Hamilton" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 12.69, - "_pop_updated_issues_count": 115, - "_pop_closed_issues_count": 68, - "_pop_created_since_days": 56, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 8, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 115.0, - "_pop_comment_count": 161.0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 32, + "_pop_updated_since_days": 12, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 94, - "_pop_score": 55.88, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 19.03, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/doccano/doccano/master/README.md", - "_readme_localurl": "doccano~doccano~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/eleutherai/gpt-neo/master/README.md", + "_readme_localurl": "eleutherai~gpt-neo~README.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/eleutherai/gpt-neo/master/requirements.txt" + ], + "_requirements_localurls": [ + "eleutherai~gpt-neo~requirements.txt" + ] }, { - "index": 758, - "category": "diffusion", - "githuburl": "https://github.com/divamgupta/diffusionbee-stable-diffusion-ui", + "index": 753, + "category": "study", + "githuburl": "https://github.com/karpathy/nn-zero-to-hero", "featured": null, "links": null, "description": null, - "_repopath": "divamgupta/diffusionbee-stable-diffusion-ui", - "_reponame": "diffusionbee-stable-diffusion-ui", - "_stars": 7014, - "_forks": 271, - "_watches": 71, - "_topics": [ - "electron-app", - "macos", - "stable-diffusion" + "_repopath": "karpathy/nn-zero-to-hero", + "_reponame": "nn-zero-to-hero", + "_stars": 7085, + "_forks": 644, + "_watches": 232, + "_language": "Jupyter Notebook", + "_homepage": null, + "_description": "nn-zero-to-hero: Neural Networks: Zero to Hero", + "_organization": "karpathy", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-09-08T00:00:00.000Z", + "_age_weeks": 23, + "_stars_per_week": 296.98, + "_topics": [], + "_last_commit_date": "2023-01-17T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "edvenson", + "karpathy" ], - "_language": "JavaScript", - "_homepage": "https://diffusionbee.com", - "_description": "diffusionbee-stable-diffusion-ui: Diffusion Bee is the easiest way to run Stable Diffusion locally on your M1 Mac. Comes with a one-click installer. No dependencies or technical knowledge needed.", - "_organization": "divamgupta", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-23T00:00:00.000Z", - "_created_at": "2022-09-06T00:00:00.000Z", - "_age_weeks": 14, - "_stars_per_week": 472.1, - "_pop_contributor_count": 16, "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.87, - "_pop_updated_issues_count": 338, - "_pop_closed_issues_count": 129, - "_pop_created_since_days": 3, + "_pop_commit_frequency": 0.19, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 6, "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 13, - "_pop_recent_releases_estimated_tags": 57, - "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 338.0, - "_pop_comment_count": 773.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 16.0, + "_pop_comment_count": 3.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.3, + "_pop_comment_frequency": 0.2, "_pop_dependents_count": 0, - "_pop_score": 29.38, + "_pop_score": 10.09, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/divamgupta/diffusionbee-stable-diffusion-ui/master/README.md", - "_readme_localurl": "divamgupta~diffusionbee-stable-diffusion-ui~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/karpathy/nn-zero-to-hero/master/README.md", + "_readme_localurl": "karpathy~nn-zero-to-hero~README.md", "_requirements_filenames": [], "_requirements_giturls": [], "_requirements_localurls": [] }, - { - "index": 868, - "category": "ml-dl", - "githuburl": "https://github.com/hpcaitech/colossalai", - "featured": null, - "links": null, - "description": null, - "_repopath": "hpcaitech/colossalai", - "_reponame": "ColossalAI", - "_stars": 7002, - "_forks": 658, - "_watches": 88, - "_topics": [ - "deep-learning", - "hpc", - "large-scale", - "data-parallelism", - "pipeline-parallelism", - "model-parallelism", - "ai", - "big-model", - "distributed-computing", - "inference", - "heterogeneous-training" - ], - "_language": "Python", - "_homepage": "https://www.colossalai.org/", - "_description": "ColossalAI: Colossal-AI: A Unified Deep Learning System for Big Model Era", - "_organization": "hpcaitech", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2021-10-28T00:00:00.000Z", - "_age_weeks": 59, - "_stars_per_week": 117.54, - "_pop_contributor_count": 82, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "hpc-aitech", - "hpcaitech" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 27.52, - "_pop_updated_issues_count": 514, - "_pop_closed_issues_count": 452, - "_pop_created_since_days": 14, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 18, - "_pop_recent_releases_estimated_tags": 17, - "_pop_recent_releases_adjusted_count": 18, - "_pop_issue_count": 511.0, - "_pop_comment_count": 266.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 3, - "_pop_score": 47.94, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/hpcaitech/colossalai/master/README.md", - "_readme_localurl": "hpcaitech~colossalai~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/hpcaitech/colossalai/master/setup.py" - ], - "_requirements_localurls": [ - "hpcaitech~colossalai~setup.py" - ] - }, { "index": 846, "category": "time-series", @@ -12668,45 +17673,61 @@ "description": null, "_repopath": "blue-yonder/tsfresh", "_reponame": "tsfresh", - "_stars": 6943, - "_forks": 1093, - "_watches": 159, - "_topics": [ - "data-science", - "feature-extraction", - "time-series" - ], + "_stars": 7079, + "_forks": 1111, + "_watches": 160, "_language": "Jupyter Notebook", "_homepage": "http://tsfresh.readthedocs.io", "_description": "tsfresh: Automatic extraction of relevant features from time series:", "_organization": "blue-yonder", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-18T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2016-10-26T00:00:00.000Z", - "_age_weeks": 320, - "_stars_per_week": 21.65, - "_pop_contributor_count": 82, + "_age_weeks": 330, + "_stars_per_week": 21.45, + "_topics": [ + "data-science", + "feature-extraction", + "time-series" + ], + "_last_commit_date": "2022-12-31T00:00:00.000Z", + "_pop_contributor_count": 84, + "_pop_contributor_logins": [ + "CYHSM", + "MaxBenChrist", + "dbarbier", + "delyanr", + "earthgecko", + "jneuff", + "kempa-liehr@universityofauckland", + "nikhase", + "nils-braun", + "pnb@universityofillinoisurbana\u2013champaign" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "apple", - "universityofauckland" + "universityofauckland", + "universityofillinoisurbana\u2013champaign" + ], + "_pop_contributor_orgs_raw": [ + "University of Auckland", + "University of Illinois Urbana\u2013Champaign" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.1, - "_pop_updated_issues_count": 24, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 75, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 0.31, + "_pop_updated_issues_count": 23, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 77, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 5, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 24.0, - "_pop_comment_count": 48.0, + "_pop_issue_count": 23.0, + "_pop_comment_count": 42.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 26, - "_pop_score": 42.06, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 38.48, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/blue-yonder/tsfresh/master/README.md", "_readme_localurl": "blue-yonder~tsfresh~README.md", @@ -12715,81 +17736,177 @@ "_requirements_localurls": [] }, { - "index": 650, - "category": "profiling", - "githuburl": "https://github.com/plasma-umass/scalene", + "index": 286, + "category": "data", + "githuburl": "https://github.com/simonw/datasette", "featured": 1.0, "links": null, "description": null, - "_repopath": "plasma-umass/scalene", - "_reponame": "scalene", - "_stars": 6939, - "_forks": 232, - "_watches": 69, + "_repopath": "simonw/datasette", + "_reponame": "datasette", + "_stars": 7078, + "_forks": 491, + "_watches": 100, + "_language": "Python", + "_homepage": "https://datasette.io", + "_description": "datasette: An open source multi-tool for exploring and publishing data", + "_organization": "simonw", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-10-23T00:00:00.000Z", + "_age_weeks": 278, + "_stars_per_week": 25.43, "_topics": [ + "sqlite", "python", - "profiling", - "performance-analysis", - "cpu-profiling", - "profiler", - "python-profilers", - "gpu-programming", - "scalene", - "profiles-memory", - "performance-cpu", - "cpu", - "memory-allocation", - "gpu", - "memory-consumption" + "datasets", + "json", + "docker", + "datasette", + "automatic-api", + "asgi", + "csv", + "datasette-io", + "sql" ], - "_language": "JavaScript", - "_homepage": "", - "_description": "Scalene: a high-performance, high-precision CPU, GPU, and memory profiler for Python", - "_organization": "plasma-umass", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2019-12-17T00:00:00.000Z", - "_age_weeks": 156, - "_stars_per_week": 44.24, - "_pop_contributor_count": 34, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-01-28T00:00:00.000Z", + "_pop_contributor_count": 73, + "_pop_contributor_logins": [ + "abdusco@abdusco", + "bgrins@mozilla", + "dependabot-preview[bot]", + "dependabot[bot]", + "fgregg@datamade,partner", + "jacobian@latacora", + "rgieseke", + "rixx@pretalx.com", + "russss", + "simonw@datasette" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "abdusco", + "datamade,partner", + "datasette", + "latacora", + "mozilla", + "pretalx.com" + ], + "_pop_contributor_orgs_raw": [ + "@datamade, Partner", + "AbdusCo", + "Datasette", + "Latacora", + "Mozilla", + "pretalx.com" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 8.23, + "_pop_updated_issues_count": 160, + "_pop_closed_issues_count": 71, + "_pop_created_since_days": 65, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 17, + "_pop_recent_releases_estimated_tags": 25, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 160.0, + "_pop_comment_count": 441.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 0, + "_pop_score": 51.09, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/simonw/datasette/master/README.md", + "_readme_localurl": "simonw~datasette~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/simonw/datasette/master/setup.py" + ], + "_requirements_localurls": [ + "simonw~datasette~setup.py" + ] + }, + { + "index": 171, + "category": "ml-dl", + "githuburl": "https://github.com/facebookresearch/pytorch3d", + "featured": null, + "links": null, + "description": null, + "_repopath": "facebookresearch/pytorch3d", + "_reponame": "pytorch3d", + "_stars": 6982, + "_forks": 1067, + "_watches": 142, + "_language": "Python", + "_homepage": "https://pytorch3d.org/", + "_description": "PyTorch3D is FAIR's library of reusable components for deep learning with 3D data", + "_organization": "facebookresearch", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-10-25T00:00:00.000Z", + "_age_weeks": 173, + "_stars_per_week": 40.19, + "_topics": [], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 113, + "_pop_contributor_logins": [ + "bottler", + "classner@epicgames", + "davidsonic@meta", + "davnov134@facebookairesearch", + "gkioxari@caltech", + "jcjohnson@universityofmichigan/fair", + "megluyagao", + "nikhilaravi", + "patricklabatut@facebook", + "shapovalov@facebookairesearch" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "umassamherst", - "universityofmassachusettsamherst" + "caltech", + "epicgames", + "facebook", + "facebookairesearch", + "meta", + "universityofmichigan/fair" + ], + "_pop_contributor_orgs_raw": [ + "Caltech", + "Epic Games", + "Facebook", + "Facebook AI Research", + "Meta", + "University of Michigan / FAIR" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 11.71, - "_pop_updated_issues_count": 93, - "_pop_closed_issues_count": 52, - "_pop_created_since_days": 37, + "_pop_commit_frequency": 6.85, + "_pop_updated_issues_count": 121, + "_pop_closed_issues_count": 57, + "_pop_created_since_days": 40, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 21, - "_pop_recent_releases_estimated_tags": 12, - "_pop_recent_releases_adjusted_count": 21, - "_pop_issue_count": 94.0, - "_pop_comment_count": 167.0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 121.0, + "_pop_comment_count": 189.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 76, - "_pop_score": 52.02, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 48.3, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/plasma-umass/scalene/master/README.md", - "_readme_localurl": "plasma-umass~scalene~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/pytorch3d/master/README.md", + "_readme_localurl": "facebookresearch~pytorch3d~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "Pipfile" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/plasma-umass/scalene/master/requirements.txt", - "https://raw.githubusercontent.com/plasma-umass/scalene/master/setup.py", - "https://raw.githubusercontent.com/plasma-umass/scalene/master/Pipfile" + "https://raw.githubusercontent.com/facebookresearch/pytorch3d/master/setup.py" ], "_requirements_localurls": [ - "plasma-umass~scalene~requirements.txt", - "plasma-umass~scalene~setup.py", - "plasma-umass~scalene~Pipfile" + "facebookresearch~pytorch3d~setup.py" ] }, { @@ -12801,9 +17918,17 @@ "description": null, "_repopath": "catboost/catboost", "_reponame": "catboost", - "_stars": 6846, - "_forks": 1070, - "_watches": 193, + "_stars": 6952, + "_forks": 1088, + "_watches": 192, + "_language": "C", + "_homepage": "https://catboost.ai", + "_description": "catboost: A fast, scalable, high performance Gradient Boosting on Decision Trees library, used for ranking, classification, regression and other machine learning tasks for Python, R, Java, C++. Supports computation on CPU and GPU.", + "_organization": "catboost", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-07-18T00:00:00.000Z", + "_age_weeks": 292, + "_stars_per_week": 23.8, "_topics": [ "machine-learning", "decision-trees", @@ -12824,37 +17949,46 @@ "cuda", "data-mining" ], - "_language": "C", - "_homepage": "https://catboost.ai", - "_description": "catboost: A fast, scalable, high performance Gradient Boosting on Decision Trees library, used for ranking, classification, regression and other machine learning tasks for Python, R, Java, C++. Supports computation on CPU and GPU.", - "_organization": "catboost", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2017-07-18T00:00:00.000Z", - "_age_weeks": 282, - "_stars_per_week": 24.2, - "_pop_contributor_count": 1038, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 1065, + "_pop_contributor_logins": [ + "Evgueni-Petrov-aka-espetrov", + "VestniK", + "andrey-khropov@yandexnv", + "arcadia-devtools", + "frazenshtein", + "georgthegreat", + "kizill@yandex", + "orivej", + "shadchin@yandex", + "smertnik3sh" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "yandex", "yandexnv" ], + "_pop_contributor_orgs_raw": [ + "@Yandex", + "Yandex", + "Yandex NV" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 117.42, - "_pop_updated_issues_count": 146, - "_pop_closed_issues_count": 58, - "_pop_created_since_days": 66, + "_pop_commit_frequency": 453.54, + "_pop_updated_issues_count": 171, + "_pop_closed_issues_count": 62, + "_pop_created_since_days": 68, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 16, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 146.0, - "_pop_comment_count": 263.0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 171.0, + "_pop_comment_count": 204.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 276, - "_pop_score": 66.94, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 58.09, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/catboost/catboost/master/README.md", "_readme_localurl": "catboost~catboost~README.md", @@ -12863,130 +17997,98 @@ "_requirements_localurls": [] }, { - "index": 171, - "category": "ml-dl", - "githuburl": "https://github.com/facebookresearch/pytorch3d", + "index": 382, + "category": "ml-ops", + "githuburl": "https://github.com/deepset-ai/haystack", "featured": null, "links": null, "description": null, - "_repopath": "facebookresearch/pytorch3d", - "_reponame": "pytorch3d", - "_stars": 6806, - "_forks": 1032, - "_watches": 140, - "_topics": [], + "_repopath": "deepset-ai/haystack", + "_reponame": "haystack", + "_stars": 6939, + "_forks": 1047, + "_watches": 97, "_language": "Python", - "_homepage": "https://pytorch3d.org/", - "_description": "PyTorch3D is FAIR's library of reusable components for deep learning with 3D data", - "_organization": "facebookresearch", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2019-10-25T00:00:00.000Z", - "_age_weeks": 164, - "_stars_per_week": 41.39, - "_pop_contributor_count": 110, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "caltech", - "facebook", - "facebookairesearch" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.92, - "_pop_updated_issues_count": 88, - "_pop_closed_issues_count": 37, - "_pop_created_since_days": 38, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 88.0, - "_pop_comment_count": 123.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 383, - "_pop_score": 54.79, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/pytorch3d/master/README.md", - "_readme_localurl": "facebookresearch~pytorch3d~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/facebookresearch/pytorch3d/master/setup.py" - ], - "_requirements_localurls": [ - "facebookresearch~pytorch3d~setup.py" - ] - }, - { - "index": 286, - "category": "data", - "githuburl": "https://github.com/simonw/datasette", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "simonw/datasette", - "_reponame": "datasette", - "_stars": 6758, - "_forks": 474, - "_watches": 99, + "_homepage": "https://haystack.deepset.ai", + "_description": "haystack: :mag: Haystack is an open source NLP framework to interact with your data using Transformer models and LLMs (GPT-3 and alike). Haystack offers production-ready tools to quickly build ChatGPT-like question answering, semantic search, text generation, and more.", + "_organization": "deepset-ai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-11-14T00:00:00.000Z", + "_age_weeks": 170, + "_stars_per_week": 40.61, "_topics": [ - "sqlite", + "nlp", + "question-answering", + "bert", + "transfer-learning", + "language-model", + "pytorch", + "semantic-search", + "squad", + "elasticsearch", + "information-retrieval", + "summarization", + "transformers", + "natural-language-processing", + "machine-learning", + "ai", "python", - "datasets", - "json", - "docker", - "datasette", - "automatic-api", - "asgi", - "csv", - "datasette-io", - "sql" + "chatgpt", + "gpt-3", + "large-language-models", + "generative-ai" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 157, + "_pop_contributor_logins": [ + "Timoeller@deepset", + "ZanSara@deepset-ai", + "bogdankostic@deepset-ai", + "brandenchan", + "julian-risch@deepset", + "masci@deepset-ai", + "tanaysoni", + "tholor@deepset", + "tstadel", + "vblagoje" ], - "_language": "Python", - "_homepage": "https://datasette.io", - "_description": "datasette: An open source multi-tool for exploring and publishing data", - "_organization": "simonw", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2017-10-23T00:00:00.000Z", - "_age_weeks": 269, - "_stars_per_week": 25.12, - "_pop_contributor_count": 72, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "datasette", - "latacora" + "deepset", + "deepset-ai" + ], + "_pop_contributor_orgs_raw": [ + "@deepset-ai", + "@deepset-ai ", + "deepset" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 8.62, - "_pop_updated_issues_count": 178, - "_pop_closed_issues_count": 108, - "_pop_created_since_days": 63, + "_pop_commit_frequency": 15.85, + "_pop_updated_issues_count": 738, + "_pop_closed_issues_count": 496, + "_pop_created_since_days": 40, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 19, - "_pop_recent_releases_estimated_tags": 25, - "_pop_recent_releases_adjusted_count": 19, - "_pop_issue_count": 178.0, - "_pop_comment_count": 853.0, + "_pop_recent_releases_count": 26, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 26, + "_pop_issue_count": 738.0, + "_pop_comment_count": 1032.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 4.8, - "_pop_dependents_count": 557, - "_pop_score": 62.27, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 51.74, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/simonw/datasette/master/README.md", - "_readme_localurl": "simonw~datasette~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/deepset-ai/haystack/master/README.md", + "_readme_localurl": "deepset-ai~haystack~README.md", "_requirements_filenames": [ - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/simonw/datasette/master/setup.py" + "https://raw.githubusercontent.com/deepset-ai/haystack/master/pyproject.toml" ], "_requirements_localurls": [ - "simonw~datasette~setup.py" + "deepset-ai~haystack~pyproject.toml" ] }, { @@ -12998,9 +18100,17 @@ "description": null, "_repopath": "pycaret/pycaret", "_reponame": "pycaret", - "_stars": 6669, - "_forks": 1522, - "_watches": 125, + "_stars": 6914, + "_forks": 1574, + "_watches": 126, + "_language": "Jupyter Notebook", + "_homepage": "https://www.pycaret.org", + "_description": "pycaret: An open-source, low-code machine learning library in Python", + "_organization": "pycaret", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-11-23T00:00:00.000Z", + "_age_weeks": 169, + "_stars_per_week": 40.77, "_topics": [ "data-science", "citizen-data-scientists", @@ -13016,39 +18126,51 @@ "nlp", "clustering" ], - "_language": "Jupyter Notebook", - "_homepage": "https://www.pycaret.org", - "_description": "pycaret: An open-source, low-code machine learning library in Python", - "_organization": "pycaret", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2019-11-23T00:00:00.000Z", - "_age_weeks": 160, - "_stars_per_week": 41.61, - "_pop_contributor_count": 107, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 115, + "_pop_contributor_logins": [ + "TremaMiguel@konfio", + "Yard1@softwareengineeranyscale", + "andrinbuerli", + "batmanscode", + "daikikatsuragawa@japan", + "goodwanghan", + "moezali1@pycaret", + "ngupta23@o9solutions", + "timho102003", + "tvdboom" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "japan", "konfio", "o9solutions", "pycaret", "softwareengineeranyscale" ], + "_pop_contributor_orgs_raw": [ + "Japan", + "Konfio", + "PyCaret", + "Software Engineer @ Anyscale", + "o9 Solutions Inc." + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 19.88, - "_pop_updated_issues_count": 307, - "_pop_closed_issues_count": 228, - "_pop_created_since_days": 37, + "_pop_commit_frequency": 19.25, + "_pop_updated_issues_count": 314, + "_pop_closed_issues_count": 241, + "_pop_created_since_days": 40, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 307.0, - "_pop_comment_count": 380.0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 314.0, + "_pop_comment_count": 338.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 194, - "_pop_score": 58.64, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 49.94, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pycaret/pycaret/master/README.md", "_readme_localurl": "pycaret~pycaret~README.md", @@ -13065,6 +18187,170 @@ "pycaret~pycaret~setup.py" ] }, + { + "index": 532, + "category": "util", + "githuburl": "https://github.com/facebookresearch/hydra", + "featured": null, + "links": null, + "description": null, + "_repopath": "facebookresearch/hydra", + "_reponame": "hydra", + "_stars": 6807, + "_forks": 556, + "_watches": 86, + "_language": "Python", + "_homepage": "https://hydra.cc", + "_description": "Hydra is a framework for elegantly configuring complex applications", + "_organization": "facebookresearch", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-06-12T00:00:00.000Z", + "_age_weeks": 193, + "_stars_per_week": 35.27, + "_topics": [], + "_last_commit_date": "2023-02-07T00:00:00.000Z", + "_pop_contributor_count": 110, + "_pop_contributor_logins": [ + "3janeAI", + "Jasha10", + "dependabot[bot]", + "jan-matthis@google", + "jieru-hu", + "jrapin@facebookairesearch", + "odelalleau", + "omry@facebookairesearch", + "pixelb@facebook", + "shagunsodhani@facebook" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "facebook", + "facebookairesearch", + "google" + ], + "_pop_contributor_orgs_raw": [ + "@facebook", + "Facebook AI Research", + "Google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.77, + "_pop_updated_issues_count": 123, + "_pop_closed_issues_count": 80, + "_pop_created_since_days": 45, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 123.0, + "_pop_comment_count": 168.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 44.82, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/hydra/master/README.md", + "_readme_localurl": "facebookresearch~hydra~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/facebookresearch/hydra/master/setup.py", + "https://raw.githubusercontent.com/facebookresearch/hydra/master/pyproject.toml" + ], + "_requirements_localurls": [ + "facebookresearch~hydra~setup.py", + "facebookresearch~hydra~pyproject.toml" + ] + }, + { + "index": 82, + "category": "data", + "githuburl": "https://github.com/sqlalchemy/sqlalchemy", + "featured": null, + "links": null, + "description": null, + "_repopath": "sqlalchemy/sqlalchemy", + "_reponame": "sqlalchemy", + "_stars": 6805, + "_forks": 1076, + "_watches": 92, + "_language": "Python", + "_homepage": "https://www.sqlalchemy.org", + "_description": "sqlalchemy: The Database Toolkit for Python", + "_organization": "sqlalchemy", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-11-27T00:00:00.000Z", + "_age_weeks": 221, + "_stars_per_week": 30.77, + "_topics": [ + "sqlalchemy", + "sql", + "python" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 603, + "_pop_contributor_logins": [ + "CaselIT", + "dianaclarke", + "empty", + "gdementen@federalplanningbureau", + "gordthompson@self-employed", + "jbellis@datastax", + "jek", + "lelit", + "pjenvey@mozilla", + "zzzeek@redhat" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "datastax", + "federalplanningbureau", + "mozilla", + "redhat", + "self-employed" + ], + "_pop_contributor_orgs_raw": [ + "DataStax", + "Federal Planning Bureau", + "Mozilla", + "Red Hat", + "self-employed" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 15.02, + "_pop_updated_issues_count": 365, + "_pop_closed_issues_count": 286, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 27, + "_pop_recent_releases_estimated_tags": 65, + "_pop_recent_releases_adjusted_count": 27, + "_pop_issue_count": 367.0, + "_pop_comment_count": 1200.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.3, + "_pop_dependents_count": 0, + "_pop_score": 61.0, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/sqlalchemy/sqlalchemy/master/README.rst", + "_readme_localurl": "sqlalchemy~sqlalchemy~README.rst", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/sqlalchemy/sqlalchemy/master/setup.py", + "https://raw.githubusercontent.com/sqlalchemy/sqlalchemy/master/pyproject.toml" + ], + "_requirements_localurls": [ + "sqlalchemy~sqlalchemy~setup.py", + "sqlalchemy~sqlalchemy~pyproject.toml" + ] + }, { "index": 131, "category": "ml", @@ -13074,9 +18360,17 @@ "description": null, "_repopath": "automl/auto-sklearn", "_reponame": "auto-sklearn", - "_stars": 6666, - "_forks": 1208, - "_watches": 213, + "_stars": 6746, + "_forks": 1214, + "_watches": 212, + "_language": "Python", + "_homepage": "https://automl.github.io/auto-sklearn", + "_description": "auto-sklearn: Automated Machine Learning with scikit-learn", + "_organization": "automl", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-07-02T00:00:00.000Z", + "_age_weeks": 398, + "_stars_per_week": 16.91, "_topics": [ "automl", "scikit-learn", @@ -13089,40 +18383,55 @@ "meta-learning", "smac" ], - "_language": "Python", - "_homepage": "https://automl.github.io/auto-sklearn", - "_description": "auto-sklearn: Automated Machine Learning with scikit-learn", - "_organization": "automl", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2015-07-02T00:00:00.000Z", - "_age_weeks": 389, - "_stars_per_week": 17.11, "_pop_contributor_count": 88, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "KEggensperger@universityoft\u00fcbingen", + "aaronkl@awsberlin", + "adomashnev", + "ahn1340@centerforarmyanalysisandsimulation", + "axsapronov", + "eddiebergman@automl.org", + "franchuterivera@universityoffreiburg", + "gui-miotto@uni-freiburg", + "mfeurer@albert-ludwigs-universit\u00e4tfreiburg", + "stokasto" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "albert-ludwigs-universit\u00e4tfreiburg", "automl.org", "awsberlin", "centerforarmyanalysisandsimulation", - "universityoffreiburg" + "uni-freiburg", + "universityoffreiburg", + "universityoft\u00fcbingen" + ], + "_pop_contributor_orgs_raw": [ + "AWS Berlin", + "Albert-Ludwigs-Universit\u00e4t Freiburg", + "Center for Army Analysis and Simulation", + "Uni-Freiburg", + "University of Freiburg", + "University of T\u00fcbingen", + "automl.org" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.65, - "_pop_updated_issues_count": 71, - "_pop_closed_issues_count": 34, - "_pop_created_since_days": 91, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, + "_pop_commit_frequency": 2.02, + "_pop_updated_issues_count": 38, + "_pop_closed_issues_count": 19, + "_pop_created_since_days": 93, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 71.0, - "_pop_comment_count": 101.0, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 38.0, + "_pop_comment_count": 44.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 388, - "_pop_score": 57.5, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 42.13, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/automl/auto-sklearn/master/README.md", "_readme_localurl": "automl~auto-sklearn~README.md", @@ -13143,65 +18452,105 @@ ] }, { - "index": 197, - "category": "nlp", - "githuburl": "https://github.com/eleutherai/gpt-neo", + "index": 389, + "category": "data", + "githuburl": "https://github.com/yzhao062/pyod", "featured": null, "links": null, "description": null, - "_repopath": "eleutherai/gpt-neo", - "_reponame": "gpt-neo", - "_stars": 6663, - "_forks": 591, - "_watches": 161, + "_repopath": "yzhao062/pyod", + "_reponame": "pyod", + "_stars": 6745, + "_forks": 1233, + "_watches": 151, + "_language": "Python", + "_homepage": "http://pyod.readthedocs.io", + "_description": "pyod: A Comprehensive and Scalable Python Library for Outlier Detection (Anomaly Detection)", + "_organization": "yzhao062", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-10-03T00:00:00.000Z", + "_age_weeks": 281, + "_stars_per_week": 23.99, "_topics": [ - "language-model", - "transformers", - "gpt", - "gpt-2", - "gpt-3" + "outlier-detection", + "anomaly-detection", + "outlier-ensembles", + "outliers", + "anomaly", + "python", + "machine-learning", + "data-mining", + "unsupervised-learning", + "python2", + "python3", + "fraud-detection", + "autoencoder", + "neural-networks", + "deep-learning", + "data-science", + "data-analysis", + "novelty-detection", + "out-of-distribution-detection" ], - "_language": "Python", - "_homepage": "https://www.eleuther.ai", - "_description": "gpt-neo: An implementation of model parallel GPT-2 and GPT-3-style models using the mesh-tensorflow library.", - "_organization": "eleutherai", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-02-25T00:00:00.000Z", - "_created_at": "2020-07-05T00:00:00.000Z", - "_age_weeks": 128, - "_stars_per_week": 52.0, - "_pop_contributor_count": 29, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "boozallenhamilton" + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_pop_contributor_count": 46, + "_pop_contributor_logins": [ + "John-Almardeny", + "KulikDM", + "RoelBouman", + "ZainNasrullah@royalbankofcanada(rbc)", + "agoodge@nationaluniversityofsingapore", + "ingonader", + "mbongaerts@erasmusmedicalcentre", + "tam17aki", + "xhan97@universityofmacau", + "yzhao062@carnegiemellonuniversity" ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.04, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 30, - "_pop_updated_since_days": 10, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "carnegiemellonuniversity", + "erasmusmedicalcentre", + "nationaluniversityofsingapore", + "royalbankofcanada(rbc)", + "universityofmacau" + ], + "_pop_contributor_orgs_raw": [ + "Carnegie Mellon University", + "Erasmus Medical Centre", + "National University of Singapore", + "Royal Bank of Canada (RBC)", + "University of Macau" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.6, + "_pop_updated_issues_count": 27, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 66, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 27.0, + "_pop_comment_count": 43.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 14, - "_pop_score": 22.22, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/eleutherai/gpt-neo/master/README.md", - "_readme_localurl": "eleutherai~gpt-neo~README.md", + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 41.62, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/yzhao062/pyod/master/README.rst", + "_readme_localurl": "yzhao062~pyod~README.rst", "_requirements_filenames": [ - "requirements.txt" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/eleutherai/gpt-neo/master/requirements.txt" + "https://raw.githubusercontent.com/yzhao062/pyod/master/requirements.txt", + "https://raw.githubusercontent.com/yzhao062/pyod/master/setup.py" ], "_requirements_localurls": [ - "eleutherai~gpt-neo~requirements.txt" + "yzhao062~pyod~requirements.txt", + "yzhao062~pyod~setup.py" ] }, { @@ -13213,9 +18562,17 @@ "description": null, "_repopath": "firmai/industry-machine-learning", "_reponame": "industry-machine-learning", - "_stars": 6654, - "_forks": 1119, + "_stars": 6725, + "_forks": 1123, "_watches": 392, + "_language": "Jupyter Notebook", + "_homepage": "https://www.linkedin.com/company/firmai", + "_description": "industry-machine-learning: A curated list of applied machine learning and data science notebooks and libraries across different industries (by @firmai)", + "_organization": "firmai", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2019-05-03T00:00:00.000Z", + "_age_weeks": 198, + "_stars_per_week": 33.84, "_topics": [ "machine-learning", "jupyter-notebook", @@ -13226,29 +18583,36 @@ "data-science", "firmai" ], - "_language": "Jupyter Notebook", - "_homepage": "https://www.linkedin.com/company/firmai", - "_description": "industry-machine-learning: A curated list of applied machine learning and data science notebooks and libraries across different industries (by @firmai)", - "_organization": "firmai", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2021-12-18T00:00:00.000Z", - "_created_at": "2019-05-03T00:00:00.000Z", - "_age_weeks": 189, - "_stars_per_week": 35.13, "_pop_contributor_count": 6, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Hefeweizen", + "RF-Nelson@spotify", + "blokhin@tilde-lab", + "firmai@alanturinginstitute,firmai", + "gaulinmp@universityofutah", + "skvrahul" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "alanturinginstitute,firmai", + "spotify", "tilde-lab", "universityofutah" ], + "_pop_contributor_orgs_raw": [ + "@tilde-lab", + "Alan Turing Institute, FirmAI", + "Spotify", + "University of Utah" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 44, - "_pop_updated_since_days": 12, + "_pop_created_since_days": 46, + "_pop_updated_since_days": 14, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -13257,7 +18621,7 @@ "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 15.22, + "_pop_score": 16.07, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/firmai/industry-machine-learning/master/README.md", "_readme_localurl": "firmai~industry-machine-learning~README.md", @@ -13266,210 +18630,186 @@ "_requirements_localurls": [] }, { - "index": 532, + "index": 716, "category": "util", - "githuburl": "https://github.com/facebookresearch/hydra", + "githuburl": "https://github.com/jazzband/pip-tools", "featured": null, "links": null, "description": null, - "_repopath": "facebookresearch/hydra", - "_reponame": "hydra", - "_stars": 6600, - "_forks": 527, - "_watches": 83, - "_topics": [], + "_repopath": "jazzband/pip-tools", + "_reponame": "pip-tools", + "_stars": 6638, + "_forks": 564, + "_watches": 104, "_language": "Python", - "_homepage": "https://hydra.cc", - "_description": "Hydra is a framework for elegantly configuring complex applications", - "_organization": "facebookresearch", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2019-06-12T00:00:00.000Z", - "_age_weeks": 183, - "_stars_per_week": 35.93, - "_pop_contributor_count": 105, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "facebook", - "facebookairesearch" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.27, - "_pop_updated_issues_count": 147, - "_pop_closed_issues_count": 91, - "_pop_created_since_days": 43, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 147.0, - "_pop_comment_count": 233.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 47, - "_pop_score": 50.43, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/hydra/master/README.md", - "_readme_localurl": "facebookresearch~hydra~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/facebookresearch/hydra/master/setup.py", - "https://raw.githubusercontent.com/facebookresearch/hydra/master/pyproject.toml" - ], - "_requirements_localurls": [ - "facebookresearch~hydra~setup.py", - "facebookresearch~hydra~pyproject.toml" - ] - }, - { - "index": 67, - "category": "web", - "githuburl": "https://github.com/pyeve/eve", - "featured": null, - "links": null, - "description": null, - "_repopath": "pyeve/eve", - "_reponame": "eve", - "_stars": 6567, - "_forks": 752, - "_watches": 229, + "_homepage": "https://pip-tools.rtfd.io", + "_description": "pip-tools: A set of tools to keep your pinned Python dependencies fresh.", + "_organization": "jazzband", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-09-10T00:00:00.000Z", + "_age_weeks": 545, + "_stars_per_week": 12.17, "_topics": [ "python", - "rest", - "flask", - "mongodb" + "packaging", + "pip", + "pip-tools", + "pip-compile", + "setuptools", + "requirements", + "lockfile", + "hashes" ], - "_language": "Python", - "_homepage": "https://python-eve.org", - "_description": "eve: REST API framework designed for human beings", - "_organization": "pyeve", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-10T00:00:00.000Z", - "_created_at": "2012-10-22T00:00:00.000Z", - "_age_weeks": 530, - "_stars_per_week": 12.39, - "_pop_contributor_count": 211, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 182, + "_pop_contributor_logins": [ + "atugushev", + "blueyed@freelancer,upforhire", + "davidovich", + "hramezani@crate", + "jdufresne@pioneervalleybooks", + "nvie@liveblocks", + "pre-commit-ci[bot]", + "richafrank@quantopian", + "vphilippon@ubisoftinc", + "webknjaz@ansiblecoreredhatofficial" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "cir2000", - "denoland", - "google" + "ansiblecoreredhatofficial", + "crate", + "freelancer,upforhire", + "liveblocks", + "pioneervalleybooks", + "quantopian", + "ubisoftinc" + ], + "_pop_contributor_orgs_raw": [ + "@Ansible Core @ @RedHatOfficial", + "@Ubisoftinc", + "@crate ", + "@liveblocks", + "@quantopian", + "Freelancer, up for hire", + "Pioneer Valley Books" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.06, - "_pop_updated_issues_count": 16, - "_pop_closed_issues_count": 9, - "_pop_created_since_days": 124, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 16.0, - "_pop_comment_count": 28.0, + "_pop_commit_frequency": 2.46, + "_pop_updated_issues_count": 117, + "_pop_closed_issues_count": 74, + "_pop_created_since_days": 127, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 117.0, + "_pop_comment_count": 192.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 34, - "_pop_score": 50.38, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 53.24, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pyeve/eve/master/README.rst", - "_readme_localurl": "pyeve~eve~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/jazzband/pip-tools/master/README.rst", + "_readme_localurl": "jazzband~pip-tools~README.rst", "_requirements_filenames": [ - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pyeve/eve/master/setup.py", - "https://raw.githubusercontent.com/pyeve/eve/master/pyproject.toml" + "https://raw.githubusercontent.com/jazzband/pip-tools/master/pyproject.toml" ], "_requirements_localurls": [ - "pyeve~eve~setup.py", - "pyeve~eve~pyproject.toml" + "jazzband~pip-tools~pyproject.toml" ] }, { - "index": 389, - "category": "data", - "githuburl": "https://github.com/yzhao062/pyod", + "index": 215, + "category": "debug", + "githuburl": "https://github.com/gruns/icecream", "featured": null, "links": null, "description": null, - "_repopath": "yzhao062/pyod", - "_reponame": "pyod", - "_stars": 6557, - "_forks": 1217, - "_watches": 151, + "_repopath": "gruns/icecream", + "_reponame": "icecream", + "_stars": 6603, + "_forks": 135, + "_watches": 50, + "_language": "Python", + "_homepage": "", + "_description": "icecream: \ud83c\udf66 Never use print() to debug again.", + "_organization": "gruns", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-02-13T00:00:00.000Z", + "_age_weeks": 262, + "_stars_per_week": 25.19, "_topics": [ - "outlier-detection", - "anomaly-detection", - "outlier-ensembles", - "outliers", - "anomaly", "python", - "machine-learning", - "data-mining", - "unsupervised-learning", - "python2", "python3", - "fraud-detection", - "autoencoder", - "neural-networks", - "deep-learning", - "data-science", - "data-analysis", - "novelty-detection", - "out-of-distribution-detection" + "library", + "inspects", + "debug", + "debugging", + "debugging-tool", + "print" ], - "_language": "Python", - "_homepage": "http://pyod.readthedocs.io", - "_description": "pyod: A Comprehensive and Scalable Python Library for Outlier Detection (Anomaly Detection)", - "_organization": "yzhao062", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2017-10-03T00:00:00.000Z", - "_age_weeks": 271, - "_stars_per_week": 24.12, - "_pop_contributor_count": 46, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "carnegiemellonuniversity", - "erasmusmedicalcentre", - "royalbankofcanada(rbc)" + "_last_commit_date": "2022-12-04T00:00:00.000Z", + "_pop_contributor_count": 21, + "_pop_contributor_logins": [ + "Akshay-Thakare@twilio", + "DominikRafacz@biogenies", + "HelinXu@pku-epic", + "alexmojaki", + "atusy@fixpoint", + "baopham", + "ehud-nym", + "gruns@https://arc.io,https://pep.dev", + "palfrey", + "ss18@kpn" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "biogenies", + "fixpoint", + "https://arc.io,https://pep.dev", + "kpn", + "pku-epic", + "twilio" + ], + "_pop_contributor_orgs_raw": [ + "@BioGenies ", + "@PKU-EPIC ", + "@Twilio", + "@kpn", + "Fixpoint INC.", + "https://arc.io, https://pep.dev" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.69, - "_pop_updated_issues_count": 28, - "_pop_closed_issues_count": 13, - "_pop_created_since_days": 63, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 12, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 28.0, - "_pop_comment_count": 59.0, + "_pop_commit_frequency": 0.62, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 61, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 9.0, + "_pop_comment_count": 10.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 66, - "_pop_score": 51.34, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/yzhao062/pyod/master/README.rst", - "_readme_localurl": "yzhao062~pyod~README.rst", + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 32.37, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/gruns/icecream/master/README.md", + "_readme_localurl": "gruns~icecream~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/yzhao062/pyod/master/requirements.txt", - "https://raw.githubusercontent.com/yzhao062/pyod/master/setup.py" + "https://raw.githubusercontent.com/gruns/icecream/master/setup.py" ], "_requirements_localurls": [ - "yzhao062~pyod~requirements.txt", - "yzhao062~pyod~setup.py" + "gruns~icecream~setup.py" ] }, { @@ -13481,42 +18821,65 @@ "description": null, "_repopath": "hyperopt/hyperopt", "_reponame": "hyperopt", - "_stars": 6511, - "_forks": 1004, + "_stars": 6590, + "_forks": 1009, "_watches": 126, - "_topics": [], "_language": "Python", "_homepage": "http://hyperopt.github.io/hyperopt", "_description": "hyperopt: Distributed Asynchronous Hyperparameter Optimization in Python", "_organization": "hyperopt", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2021-11-29T00:00:00.000Z", + "_updated_at": "2023-02-19T00:00:00.000Z", "_created_at": "2011-09-06T00:00:00.000Z", - "_age_weeks": 588, - "_stars_per_week": 11.06, + "_age_weeks": 598, + "_stars_per_week": 11.02, + "_topics": [], + "_last_commit_date": "2021-11-29T00:00:00.000Z", "_pop_contributor_count": 93, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "WeichenXu123@databricks", + "birbbit", + "cclauss@christianclauss", + "dwf", + "jaberg@kindred.ai", + "marctorsoc@globality", + "marload@contxts-io", + "maxpumperla", + "temporaer@microsoft", + "yamins81" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "christianclauss", "contxts-io", "databricks", + "globality", + "kindred.ai", + "microsoft" + ], + "_pop_contributor_orgs_raw": [ + "@Microsoft", + "@contxts-io ", + "@databricks", + "Christian Clauss", + "Globality", "kindred.ai" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 14, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 137, - "_pop_updated_since_days": 13, + "_pop_updated_issues_count": 23, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 140, + "_pop_updated_since_days": 15, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 14.0, - "_pop_comment_count": 28.0, + "_pop_issue_count": 23.0, + "_pop_comment_count": 17.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 135, - "_pop_score": 42.18, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 34.18, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/hyperopt/hyperopt/master/README.md", "_readme_localurl": "hyperopt~hyperopt~README.md", @@ -13531,203 +18894,348 @@ ] }, { - "index": 716, - "category": "util", - "githuburl": "https://github.com/jazzband/pip-tools", + "index": 67, + "category": "web", + "githuburl": "https://github.com/pyeve/eve", "featured": null, "links": null, "description": null, - "_repopath": "jazzband/pip-tools", - "_reponame": "pip-tools", - "_stars": 6473, - "_forks": 554, - "_watches": 105, + "_repopath": "pyeve/eve", + "_reponame": "eve", + "_stars": 6586, + "_forks": 753, + "_watches": 229, + "_language": "Python", + "_homepage": "https://python-eve.org", + "_description": "eve: REST API framework designed for human beings", + "_organization": "pyeve", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2012-10-22T00:00:00.000Z", + "_age_weeks": 539, + "_stars_per_week": 12.21, "_topics": [ "python", - "packaging", - "pip", - "pip-tools", - "pip-compile", - "setuptools", - "requirements", - "lockfile", - "hashes" + "rest", + "flask", + "mongodb" ], - "_language": "Python", - "_homepage": "https://pip-tools.rtfd.io", - "_description": "pip-tools: A set of tools to keep your pinned Python dependencies fresh.", - "_organization": "jazzband", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2012-09-10T00:00:00.000Z", - "_age_weeks": 536, - "_stars_per_week": 12.08, - "_pop_contributor_count": 181, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-11-10T00:00:00.000Z", + "_pop_contributor_count": 211, + "_pop_contributor_logins": [ + "amagdas", + "arnauorriols@denoland", + "einarhuseby", + "girogiro", + "graffic@myself", + "joshvillbrandt", + "kynan@google", + "nckpark", + "nicolaiarocci@cir2000", + "petrjasek@sourcefabric" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "pioneervalleybooks", - "ubisoftinc" + "cir2000", + "denoland", + "google", + "myself", + "sourcefabric" + ], + "_pop_contributor_orgs_raw": [ + "@denoland ", + "CIR 2000", + "Google", + "MySelf", + "Sourcefabric" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.67, - "_pop_updated_issues_count": 179, - "_pop_closed_issues_count": 132, - "_pop_created_since_days": 125, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 12, - "_pop_recent_releases_estimated_tags": 11, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 179.0, - "_pop_comment_count": 312.0, + "_pop_commit_frequency": 0.73, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 126, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 7.0, + "_pop_comment_count": 5.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 2531, - "_pop_score": 63.55, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 40.73, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/jazzband/pip-tools/master/README.rst", - "_readme_localurl": "jazzband~pip-tools~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pyeve/eve/master/README.rst", + "_readme_localurl": "pyeve~eve~README.rst", "_requirements_filenames": [ + "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/jazzband/pip-tools/master/pyproject.toml" + "https://raw.githubusercontent.com/pyeve/eve/master/setup.py", + "https://raw.githubusercontent.com/pyeve/eve/master/pyproject.toml" ], "_requirements_localurls": [ - "jazzband~pip-tools~pyproject.toml" + "pyeve~eve~setup.py", + "pyeve~eve~pyproject.toml" ] }, { - "index": 215, - "category": "debug", - "githuburl": "https://github.com/gruns/icecream", + "index": 121, + "category": "ml-ops", + "githuburl": "https://github.com/dagster-io/dagster", "featured": null, "links": null, "description": null, - "_repopath": "gruns/icecream", - "_reponame": "icecream", - "_stars": 6468, - "_forks": 134, - "_watches": 50, + "_repopath": "dagster-io/dagster", + "_reponame": "dagster", + "_stars": 6584, + "_forks": 826, + "_watches": 92, + "_language": "Python", + "_homepage": "https://dagster.io", + "_description": "dagster: An orchestration platform for the development, production, and observation of data assets.", + "_organization": "dagster-io", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-04-30T00:00:00.000Z", + "_age_weeks": 251, + "_stars_per_week": 26.2, "_topics": [ + "data-pipelines", + "dagster", + "workflow", + "data-science", + "workflow-automation", "python", - "python3", - "library", - "inspects", - "debug", - "debugging", - "debugging-tool", - "print" + "scheduler", + "data-orchestrator", + "etl", + "analytics", + "data-engineering", + "mlops", + "orchestration", + "data-integration", + "metadata" ], - "_language": "Python", - "_homepage": "", - "_description": "icecream: \ud83c\udf66 Never use print() to debug again.", - "_organization": "gruns", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", - "_created_at": "2018-02-13T00:00:00.000Z", - "_age_weeks": 252, - "_stars_per_week": 25.58, - "_pop_contributor_count": 21, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 274, + "_pop_contributor_logins": [ + "alangenfeld@elementl", + "bengotow@foundry376", + "dpeng817@elementl", + "gibsondan", + "hellendag@elementl", + "mgasner", + "prha", + "schrockn@elementl", + "sryza@elementl", + "yuhan@elementl" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "fixpoint", - "https://arc.io,https://pep.dev", - "pku-epic" + "elementl", + "foundry376" + ], + "_pop_contributor_orgs_raw": [ + "Elementl", + "Foundry376" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.85, - "_pop_updated_issues_count": 12, - "_pop_closed_issues_count": 5, + "_pop_commit_frequency": 64.4, + "_pop_updated_issues_count": 1933, + "_pop_closed_issues_count": 1484, "_pop_created_since_days": 59, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 12.0, - "_pop_comment_count": 26.0, + "_pop_recent_releases_count": 61, + "_pop_recent_releases_estimated_tags": 135, + "_pop_recent_releases_adjusted_count": 61, + "_pop_issue_count": 1932.0, + "_pop_comment_count": 4145.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.2, - "_pop_dependents_count": 34, - "_pop_score": 42.71, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 0, + "_pop_score": 59.02, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/gruns/icecream/master/README.md", - "_readme_localurl": "gruns~icecream~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/dagster-io/dagster/master/README.md", + "_readme_localurl": "dagster-io~dagster~README.md", "_requirements_filenames": [ - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/gruns/icecream/master/setup.py" + "https://raw.githubusercontent.com/dagster-io/dagster/master/pyproject.toml" ], "_requirements_localurls": [ - "gruns~icecream~setup.py" + "dagster-io~dagster~pyproject.toml" ] }, { - "index": 82, - "category": "data", - "githuburl": "https://github.com/sqlalchemy/sqlalchemy", + "index": 459, + "category": "ml-ops", + "githuburl": "https://github.com/dbt-labs/dbt-core", "featured": null, "links": null, "description": null, - "_repopath": "sqlalchemy/sqlalchemy", - "_reponame": "sqlalchemy", - "_stars": 6443, - "_forks": 1025, - "_watches": 94, + "_repopath": "dbt-labs/dbt-core", + "_reponame": "dbt-core", + "_stars": 6555, + "_forks": 1158, + "_watches": 134, + "_language": "Python", + "_homepage": "https://getdbt.com", + "_description": "dbt-core: dbt enables data analysts and engineers to transform their data using the same practices that software engineers use to build applications.", + "_organization": "dbt-labs", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-03-10T00:00:00.000Z", + "_age_weeks": 362, + "_stars_per_week": 18.06, "_topics": [ - "sqlalchemy", - "sql", - "python" + "dbt-viewpoint", + "slack", + "pypa", + "data-modeling", + "business-intelligence", + "analytics", + "elt" ], - "_language": "Python", - "_homepage": "https://www.sqlalchemy.org", - "_description": "sqlalchemy: The Database Toolkit for Python", - "_organization": "sqlalchemy", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2018-11-27T00:00:00.000Z", - "_age_weeks": 211, - "_stars_per_week": 30.41, - "_pop_contributor_count": 583, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 266, + "_pop_contributor_logins": [ + "beckjake", + "cmcarthur@fishtownanalytics", + "drewbanin@dbt-labs", + "emmyoop@dbt-labs", + "gshank", + "iknox-fa@fishtownanalytics", + "jtcohen6@dbt-labs", + "kconvey@verilylifesciences", + "leahwicz", + "nathaniel-may@dbt-labs" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "redhat", - "self-employed" + "dbt-labs", + "fishtownanalytics", + "verilylifesciences" + ], + "_pop_contributor_orgs_raw": [ + "@dbt-labs", + "@dbt-labs ", + "Fishtown Analytics", + "Verily Life Sciences" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 13.65, - "_pop_updated_issues_count": 304, - "_pop_closed_issues_count": 231, - "_pop_created_since_days": 49, + "_pop_commit_frequency": 10.67, + "_pop_updated_issues_count": 1006, + "_pop_closed_issues_count": 676, + "_pop_created_since_days": 85, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 21, - "_pop_recent_releases_estimated_tags": 66, - "_pop_recent_releases_adjusted_count": 21, - "_pop_issue_count": 304.0, - "_pop_comment_count": 1209.0, + "_pop_recent_releases_count": 47, + "_pop_recent_releases_estimated_tags": 22, + "_pop_recent_releases_adjusted_count": 47, + "_pop_issue_count": 1006.0, + "_pop_comment_count": 1572.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 4.0, - "_pop_dependents_count": 10439, - "_pop_score": 73.81, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/sqlalchemy/sqlalchemy/master/README.rst", - "_readme_localurl": "sqlalchemy~sqlalchemy~README.rst", + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 56.56, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/dbt-labs/dbt-core/master/README.md", + "_readme_localurl": "dbt-labs~dbt-core~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/sqlalchemy/sqlalchemy/master/setup.py", - "https://raw.githubusercontent.com/sqlalchemy/sqlalchemy/master/pyproject.toml" + "https://raw.githubusercontent.com/dbt-labs/dbt-core/master/requirements.txt", + "https://raw.githubusercontent.com/dbt-labs/dbt-core/master/setup.py" ], "_requirements_localurls": [ - "sqlalchemy~sqlalchemy~setup.py", - "sqlalchemy~sqlalchemy~pyproject.toml" + "dbt-labs~dbt-core~requirements.txt", + "dbt-labs~dbt-core~setup.py" ] }, + { + "index": 288, + "category": "testing", + "githuburl": "https://github.com/hypothesisworks/hypothesis", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "hypothesisworks/hypothesis", + "_reponame": "hypothesis", + "_stars": 6533, + "_forks": 549, + "_watches": 67, + "_language": "Python", + "_homepage": "https://hypothesis.works", + "_description": "Hypothesis is a powerful, flexible, and easy to use library for property-based testing.", + "_organization": "hypothesisworks", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2013-03-10T00:00:00.000Z", + "_age_weeks": 519, + "_stars_per_week": 12.58, + "_topics": [ + "python", + "testing", + "fuzzing", + "property-based-testing" + ], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 302, + "_pop_contributor_logins": [ + "Cheukting@anaconda", + "DRMacIver", + "Zac-HD@anthropic", + "Zalathar", + "alexwlchan@weomecollection", + "amw-zero@vts", + "honno@quansight", + "pyup-bot@pyupio", + "rsokl", + "sobolevn" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "anaconda", + "anthropic", + "pyupio", + "quansight", + "vts", + "weomecollection" + ], + "_pop_contributor_orgs_raw": [ + "@Quansight", + "@pyupio", + "@wellcomecollection ", + "Anaconda", + "Anthropic", + "VTS" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 14.88, + "_pop_updated_issues_count": 85, + "_pop_closed_issues_count": 60, + "_pop_created_since_days": 121, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 101, + "_pop_recent_releases_estimated_tags": 134, + "_pop_recent_releases_adjusted_count": 101, + "_pop_issue_count": 85.0, + "_pop_comment_count": 159.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 58.12, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/hypothesisworks/hypothesis/master/README.rst", + "_readme_localurl": "hypothesisworks~hypothesis~README.rst", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 141, "category": "ml", @@ -13737,9 +19245,17 @@ "description": null, "_repopath": "featurelabs/featuretools", "_reponame": "featuretools", - "_stars": 6424, - "_forks": 835, + "_stars": 6518, + "_forks": 842, "_watches": 158, + "_language": "Python", + "_homepage": "https://www.featuretools.com", + "_description": "featuretools: An open source python library for automated feature engineering", + "_organization": "featurelabs", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-09-08T00:00:00.000Z", + "_age_weeks": 284, + "_stars_per_week": 22.89, "_topics": [ "feature-engineering", "machine-learning", @@ -13750,36 +19266,45 @@ "scikit-learn", "automated-feature-engineering" ], - "_language": "Python", - "_homepage": "https://www.featuretools.com", - "_description": "featuretools: An open source python library for automated feature engineering", - "_organization": "featurelabs", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2017-09-08T00:00:00.000Z", - "_age_weeks": 275, - "_stars_per_week": 23.32, - "_pop_contributor_count": 68, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 69, + "_pop_contributor_logins": [ + "Seth-Rothschild", + "frances-h", + "github-actions[bot]", + "gsheni@alteryx", + "kmax12", + "machineFL", + "rwedge", + "sbadithe", + "tamargrey@alteryxinnovationlabs", + "thehomebrewnerd" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "alteryx" + "alteryx", + "alteryxinnovationlabs" + ], + "_pop_contributor_orgs_raw": [ + "@alteryx", + "Alteryx Innovation Labs" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.17, - "_pop_updated_issues_count": 161, - "_pop_closed_issues_count": 125, - "_pop_created_since_days": 64, + "_pop_commit_frequency": 6.04, + "_pop_updated_issues_count": 147, + "_pop_closed_issues_count": 117, + "_pop_created_since_days": 66, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 25, "_pop_recent_releases_estimated_tags": 28, "_pop_recent_releases_adjusted_count": 25, - "_pop_issue_count": 161.0, - "_pop_comment_count": 189.0, + "_pop_issue_count": 147.0, + "_pop_comment_count": 101.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 31, - "_pop_score": 50.92, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 45.58, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/featurelabs/featuretools/master/README.md", "_readme_localurl": "featurelabs~featuretools~README.md", @@ -13794,62 +19319,94 @@ ] }, { - "index": 288, - "category": "testing", - "githuburl": "https://github.com/hypothesisworks/hypothesis", + "index": 230, + "category": "template", + "githuburl": "https://github.com/drivendata/cookiecutter-data-science", "featured": 1.0, "links": null, "description": null, - "_repopath": "hypothesisworks/hypothesis", - "_reponame": "hypothesis", - "_stars": 6401, - "_forks": 539, - "_watches": 69, + "_repopath": "drivendata/cookiecutter-data-science", + "_reponame": "cookiecutter-data-science", + "_stars": 6508, + "_forks": 2073, + "_watches": 113, + "_language": "Python", + "_homepage": "http://drivendata.github.io/cookiecutter-data-science/", + "_description": "cookiecutter-data-science: A logical, reasonably standardized, but flexible project structure for doing and sharing data science work.", + "_organization": "drivendata", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-10-30T00:00:00.000Z", + "_age_weeks": 381, + "_stars_per_week": 17.05, "_topics": [ - "python", - "testing", - "fuzzing", - "property-based-testing" + "cookiecutter-data-science", + "cookiecutter", + "cookiecutter-template", + "data-science", + "machine-learning", + "ai" ], - "_language": "Python", - "_homepage": "https://hypothesis.works", - "_description": "Hypothesis is a powerful, flexible, and easy to use library for property-based testing.", - "_organization": "hypothesisworks", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-11T00:00:00.000Z", - "_created_at": "2013-03-10T00:00:00.000Z", - "_age_weeks": 510, - "_stars_per_week": 12.55, - "_pop_contributor_count": 297, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "anthropic", - "pyupio", - "quansight", - "weomecollection" + "_last_commit_date": "2022-03-11T00:00:00.000Z", + "_pop_contributor_count": 45, + "_pop_contributor_logins": [ + "Midnighter@unseenbio", + "adamkgoldfarb", + "andrewsanchez@ankihub", + "codyrioux@netflix", + "hwartig@contentful", + "isms", + "jbrambleDC@localfoodgroup", + "liudonghs@hellosoda", + "niloch", + "pjbull@drivendata" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "ankihub", + "contentful", + "drivendata", + "hellosoda", + "localfoodgroup", + "netflix", + "unseenbio" + ], + "_pop_contributor_orgs_raw": [ + "@UnseenBio", + "@contentful", + "AnkiHub", + "DrivenData", + "Hello Soda", + "Local Food Group", + "Netflix" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 13.75, - "_pop_updated_issues_count": 88, - "_pop_closed_issues_count": 66, - "_pop_created_since_days": 119, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 95, - "_pop_recent_releases_estimated_tags": 135, - "_pop_recent_releases_adjusted_count": 95, - "_pop_issue_count": 88.0, - "_pop_comment_count": 128.0, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 89, + "_pop_updated_since_days": 12, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 6.0, + "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 12462, - "_pop_score": 72.65, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/hypothesisworks/hypothesis/master/README.rst", - "_readme_localurl": "hypothesisworks~hypothesis~README.rst", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 29.67, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/drivendata/cookiecutter-data-science/master/README.md", + "_readme_localurl": "drivendata~cookiecutter-data-science~README.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/drivendata/cookiecutter-data-science/master/requirements.txt" + ], + "_requirements_localurls": [ + "drivendata~cookiecutter-data-science~requirements.txt" + ] }, { "index": 153, @@ -13860,9 +19417,17 @@ "description": null, "_repopath": "marshmallow-code/marshmallow", "_reponame": "marshmallow", - "_stars": 6358, - "_forks": 621, - "_watches": 82, + "_stars": 6428, + "_forks": 620, + "_watches": 81, + "_language": "Python", + "_homepage": "https://marshmallow.readthedocs.io/", + "_description": "marshmallow: A lightweight library for converting complex objects to and from simple Python datatypes.", + "_organization": "marshmallow-code", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2013-11-10T00:00:00.000Z", + "_age_weeks": 484, + "_stars_per_week": 13.27, "_topics": [ "serialization", "deserialization", @@ -13874,36 +19439,45 @@ "schema", "hacktoberfest" ], - "_language": "Python", - "_homepage": "https://marshmallow.readthedocs.io/", - "_description": "marshmallow: A lightweight library for converting complex objects to and from simple Python datatypes.", - "_organization": "marshmallow-code", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-11T00:00:00.000Z", - "_created_at": "2013-11-10T00:00:00.000Z", - "_age_weeks": 475, - "_stars_per_week": 13.38, - "_pop_contributor_count": 203, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 204, + "_pop_contributor_logins": [ + "dependabot-preview[bot]", + "dependabot-support", + "dependabot[bot]", + "lafrech@nobatek", + "mgetka", + "pyup-bot@pyupio", + "sirosen", + "sloria", + "taion", + "zblz" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "nobatek" + "nobatek", + "pyupio" + ], + "_pop_contributor_orgs_raw": [ + "@Nobatek", + "@pyupio" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.79, - "_pop_updated_issues_count": 54, - "_pop_closed_issues_count": 36, - "_pop_created_since_days": 111, + "_pop_commit_frequency": 1.92, + "_pop_updated_issues_count": 55, + "_pop_closed_issues_count": 41, + "_pop_created_since_days": 113, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 19, - "_pop_recent_releases_adjusted_count": 19, - "_pop_issue_count": 54.0, - "_pop_comment_count": 52.0, + "_pop_recent_releases_estimated_tags": 18, + "_pop_recent_releases_adjusted_count": 18, + "_pop_issue_count": 55.0, + "_pop_comment_count": 57.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 2390, - "_pop_score": 58.91, + "_pop_dependents_count": 0, + "_pop_score": 47.1, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/marshmallow-code/marshmallow/master/README.rst", "_readme_localurl": "marshmallow-code~marshmallow~README.rst", @@ -13921,68 +19495,195 @@ ] }, { - "index": 230, - "category": "template", - "githuburl": "https://github.com/drivendata/cookiecutter-data-science", - "featured": 1.0, + "index": 356, + "category": "ml-ops", + "githuburl": "https://github.com/netflix/metaflow", + "featured": null, "links": null, "description": null, - "_repopath": "drivendata/cookiecutter-data-science", - "_reponame": "cookiecutter-data-science", - "_stars": 6335, - "_forks": 2015, - "_watches": 111, + "_repopath": "netflix/metaflow", + "_reponame": "metaflow", + "_stars": 6414, + "_forks": 610, + "_watches": 246, + "_language": "Python", + "_homepage": "https://metaflow.org", + "_description": "metaflow: :rocket: Build and manage real-life data science projects with ease!", + "_organization": "netflix", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-09-17T00:00:00.000Z", + "_age_weeks": 179, + "_stars_per_week": 35.8, "_topics": [ - "cookiecutter-data-science", - "cookiecutter", - "cookiecutter-template", - "data-science", "machine-learning", - "ai" + "data-science", + "productivity", + "model-management", + "ai", + "ml", + "ml-platform", + "ml-infrastructure", + "python", + "r", + "rstats", + "reproducible-research", + "r-package", + "mlops", + "datascience", + "cli", + "high-performance-computing", + "kubernetes" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 64, + "_pop_contributor_logins": [ + "akyrola@missingexponent", + "cclauss@christianclauss", + "dependabot[bot]", + "jackie-ob", + "jasonge27@netflix", + "mdneuzerling", + "oavdeev@outerbounds", + "romain-intel", + "savingoyal@outerbounds", + "valayDave" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "christianclauss", + "missingexponent", + "netflix", + "outerbounds" + ], + "_pop_contributor_orgs_raw": [ + "@Outerbounds", + "Christian Clauss", + "Missing Exponent", + "Netflix" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.94, + "_pop_updated_issues_count": 117, + "_pop_closed_issues_count": 74, + "_pop_created_since_days": 42, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 31, + "_pop_recent_releases_estimated_tags": 25, + "_pop_recent_releases_adjusted_count": 31, + "_pop_issue_count": 117.0, + "_pop_comment_count": 171.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 47.04, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/netflix/metaflow/master/README.md", + "_readme_localurl": "netflix~metaflow~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/netflix/metaflow/master/setup.py" ], + "_requirements_localurls": [ + "netflix~metaflow~setup.py" + ] + }, + { + "index": 556, + "category": "ml-dl", + "githuburl": "https://github.com/arogozhnikov/einops", + "featured": null, + "links": null, + "description": null, + "_repopath": "arogozhnikov/einops", + "_reponame": "einops", + "_stars": 6401, + "_forks": 288, + "_watches": 63, "_language": "Python", - "_homepage": "http://drivendata.github.io/cookiecutter-data-science/", - "_description": "cookiecutter-data-science: A logical, reasonably standardized, but flexible project structure for doing and sharing data science work.", - "_organization": "drivendata", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-03-11T00:00:00.000Z", - "_created_at": "2015-10-30T00:00:00.000Z", - "_age_weeks": 372, - "_stars_per_week": 17.01, - "_pop_contributor_count": 45, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://einops.rocks", + "_description": "einops: Deep learning operations reinvented (for pytorch, tensorflow, jax and others)", + "_organization": "arogozhnikov", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-09-22T00:00:00.000Z", + "_age_weeks": 230, + "_stars_per_week": 27.76, + "_topics": [ + "deep-learning", + "pytorch", + "tensorflow", + "numpy", + "gluon", + "cupy", + "chainer", + "keras", + "tensor", + "jax" + ], + "_last_commit_date": "2023-01-18T00:00:00.000Z", + "_pop_contributor_count": 22, + "_pop_contributor_logins": [ + "EPronovost", + "Ldpe2G@sunyat-senuniversity", + "MilesCranmer@princetonuniversity", + "adam-r-kowalski@simspace", + "arogozhnikov@aperturescience", + "boeddeker@paderbornuniversity", + "cgarciae@quansight", + "danielhavir@apple", + "ollema", + "rentainhe@idea" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "contentful", - "drivendata", - "unseenbio" + "aperturescience", + "apple", + "idea", + "paderbornuniversity", + "princetonuniversity", + "quansight", + "simspace", + "sunyat-senuniversity" + ], + "_pop_contributor_orgs_raw": [ + "@apple", + "Aperture Science", + "IDEA", + "Paderborn University", + "Princeton University", + "Quansight", + "Sun Yat-sen University", + "simspace" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.04, - "_pop_updated_issues_count": 17, + "_pop_commit_frequency": 2.71, + "_pop_updated_issues_count": 14, "_pop_closed_issues_count": 7, - "_pop_created_since_days": 87, - "_pop_updated_since_days": 9, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 17.0, - "_pop_comment_count": 10.0, + "_pop_created_since_days": 54, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 14.0, + "_pop_comment_count": 17.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 28, - "_pop_score": 34.24, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 38.93, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/drivendata/cookiecutter-data-science/master/README.md", - "_readme_localurl": "drivendata~cookiecutter-data-science~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/arogozhnikov/einops/master/README.md", + "_readme_localurl": "arogozhnikov~einops~README.md", "_requirements_filenames": [ - "requirements.txt" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/drivendata/cookiecutter-data-science/master/requirements.txt" + "https://raw.githubusercontent.com/arogozhnikov/einops/master/pyproject.toml" ], "_requirements_localurls": [ - "drivendata~cookiecutter-data-science~requirements.txt" + "arogozhnikov~einops~pyproject.toml" ] }, { @@ -13994,44 +19695,69 @@ "description": null, "_repopath": "newsapps/beeswithmachineguns", "_reponame": "beeswithmachineguns", - "_stars": 6267, - "_forks": 663, + "_stars": 6288, + "_forks": 662, "_watches": 227, - "_topics": [], "_language": "Python", "_homepage": "http://apps.chicagotribune.com/", "_description": "beeswithmachineguns: A utility for arming (creating) many bees (micro EC2 instances) to attack (load test) targets (web applications).", "_organization": "newsapps", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2017-12-20T00:00:00.000Z", + "_updated_at": "2023-02-20T00:00:00.000Z", "_created_at": "2010-06-29T00:00:00.000Z", - "_age_weeks": 650, - "_stars_per_week": 9.63, + "_age_weeks": 660, + "_stars_per_week": 9.53, + "_topics": [], + "_last_commit_date": "2017-12-20T00:00:00.000Z", "_pop_contributor_count": 49, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Altonymous", + "R4wm@https://github.com/verizondigital/", + "abanna@ixsystems", + "cosmin@facebook", + "ddworken@google", + "deanmalmgren@datascopeanalytics", + "edwardmeshuris", + "nfarina@kuto", + "onyxfish@fivethirtyeight", + "richardtylee@br" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "br", "datascopeanalytics", "facebook", "fivethirtyeight", - "https://github.com/verizondigital/" + "google", + "https://github.com/verizondigital/", + "ixsystems", + "kuto" + ], + "_pop_contributor_orgs_raw": [ + "@br ", + "@facebook", + "@fivethirtyeight", + "@iXsystems ", + "Datascope Analytics", + "Google", + "Kuto", + "https://github.com/VerizonDigital/" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 152, - "_pop_updated_since_days": 61, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 154, + "_pop_updated_since_days": 63, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 2.0, - "_pop_comment_count": 2.0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 64, - "_pop_score": 32.42, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 24.11, "_readme_filename": "", "_readme_giturl": "", "_readme_localurl": "", @@ -14057,9 +19783,17 @@ "description": null, "_repopath": "pallets/werkzeug", "_reponame": "werkzeug", - "_stars": 6234, - "_forks": 1663, + "_stars": 6286, + "_forks": 1680, "_watches": 227, + "_language": "Python", + "_homepage": "https://werkzeug.palletsprojects.com", + "_description": "werkzeug: The comprehensive WSGI web application library.", + "_organization": "pallets", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2010-10-18T00:00:00.000Z", + "_age_weeks": 644, + "_stars_per_week": 9.76, "_topics": [ "python", "wsgi", @@ -14067,328 +19801,140 @@ "http", "pallets" ], - "_language": "Python", - "_homepage": "https://werkzeug.palletsprojects.com", - "_description": "werkzeug: The comprehensive WSGI web application library.", - "_organization": "pallets", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-01T00:00:00.000Z", - "_created_at": "2010-10-18T00:00:00.000Z", - "_age_weeks": 635, - "_stars_per_week": 9.82, - "_pop_contributor_count": 463, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 468, + "_pop_contributor_logins": [ + "DasIch@zalandose", + "EnTeQuAk@mozilla", + "RonnyPfannschmidt@redhatinsights", + "birkenfeld@fzj\u00fclich", + "davidism", + "dependabot-preview[bot]", + "dependabot[bot]", + "mitsuhiko@sentry", + "pgjones", + "untitaker@getsentry" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "fzj\u00fclich", "getsentry", + "mozilla", + "redhatinsights", "sentry", "zalandose" ], + "_pop_contributor_orgs_raw": [ + "@RedHatInsights ", + "@getsentry ", + "FZ J\u00fclich", + "Mozilla", + "Sentry", + "Zalando SE" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.62, - "_pop_updated_issues_count": 50, - "_pop_closed_issues_count": 34, - "_pop_created_since_days": 148, - "_pop_updated_since_days": 2, + "_pop_commit_frequency": 2.81, + "_pop_updated_issues_count": 82, + "_pop_closed_issues_count": 80, + "_pop_created_since_days": 150, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 7, "_pop_recent_releases_estimated_tags": 7, "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 50.0, - "_pop_comment_count": 43.0, + "_pop_issue_count": 82.0, + "_pop_comment_count": 61.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 9133, - "_pop_score": 62.98, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 52.63, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pallets/werkzeug/master/README.rst", "_readme_localurl": "pallets~werkzeug~README.rst", "_requirements_filenames": [ - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pallets/werkzeug/master/setup.py" + "https://raw.githubusercontent.com/pallets/werkzeug/master/pyproject.toml" ], "_requirements_localurls": [ - "pallets~werkzeug~setup.py" + "pallets~werkzeug~pyproject.toml" ] }, { - "index": 356, - "category": "ml-ops", - "githuburl": "https://github.com/netflix/metaflow", + "index": 20, + "category": "typing", + "githuburl": "https://github.com/facebook/pyre-check", "featured": null, "links": null, "description": null, - "_repopath": "netflix/metaflow", - "_reponame": "metaflow", - "_stars": 6219, - "_forks": 583, - "_watches": 239, + "_repopath": "facebook/pyre-check", + "_reponame": "pyre-check", + "_stars": 6240, + "_forks": 415, + "_watches": 112, + "_language": "OCaml", + "_homepage": "https://pyre-check.org/", + "_description": "pyre-check: Performant type-checking for python.", + "_organization": "facebook", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2017-11-10T00:00:00.000Z", + "_age_weeks": 275, + "_stars_per_week": 22.63, "_topics": [ - "machine-learning", - "data-science", - "productivity", - "model-management", - "ai", - "ml", - "ml-platform", - "ml-infrastructure", "python", - "r", - "rstats", - "reproducible-research", - "r-package", - "mlops", - "datascience", - "cli", - "high-performance-computing", - "kubernetes" + "typechecker", + "type-check", + "static-analysis", + "ocaml", + "code-quality", + "abstract-interpretation", + "security", + "program-analysis", + "taint-analysis", + "control-flow-analysis" + ], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 234, + "_pop_contributor_logins": [ + "MaggieMoss", + "arthaud@facebook", + "dkgi", + "fahndrich", + "grievejia@facebook", + "mrkmndz@facebook", + "pradeep90", + "shannonzhu", + "sinancepel", + "stroxler@metaplatforms" ], - "_language": "Python", - "_homepage": "https://metaflow.org", - "_description": "metaflow: :rocket: Build and manage real-life data science projects with ease!", - "_organization": "netflix", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2019-09-17T00:00:00.000Z", - "_age_weeks": 169, - "_stars_per_week": 36.61, - "_pop_contributor_count": 62, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "missingexponent", - "outerbounds" + "facebook", + "metaplatforms" + ], + "_pop_contributor_orgs_raw": [ + "@facebook", + "@facebook ", + "Facebook Inc.", + "Meta Platforms" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.27, - "_pop_updated_issues_count": 106, - "_pop_closed_issues_count": 65, - "_pop_created_since_days": 40, + "_pop_commit_frequency": 48.08, + "_pop_updated_issues_count": 23, + "_pop_closed_issues_count": 9, + "_pop_created_since_days": 64, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 30, - "_pop_recent_releases_estimated_tags": 24, - "_pop_recent_releases_adjusted_count": 30, - "_pop_issue_count": 106.0, - "_pop_comment_count": 147.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 49, - "_pop_score": 51.15, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/netflix/metaflow/master/README.md", - "_readme_localurl": "netflix~metaflow~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/netflix/metaflow/master/setup.py" - ], - "_requirements_localurls": [ - "netflix~metaflow~setup.py" - ] - }, - { - "index": 382, - "category": "ml-ops", - "githuburl": "https://github.com/deepset-ai/haystack", - "featured": null, - "links": null, - "description": null, - "_repopath": "deepset-ai/haystack", - "_reponame": "haystack", - "_stars": 6210, - "_forks": 964, - "_watches": 87, - "_topics": [ - "nlp", - "question-answering", - "bert", - "transfer-learning", - "language-model", - "pytorch", - "semantic-search", - "neural-search", - "squad", - "elasticsearch", - "dpr", - "information-retrieval", - "summarization", - "search-engine", - "transformers", - "natural-language-processing", - "machine-learning", - "ai", - "python" - ], - "_language": "Python", - "_homepage": "https://deepset.ai/haystack", - "_description": "haystack: :mag: Haystack is an open source NLP framework that leverages pre-trained Transformer models. It enables developers to quickly implement production-ready semantic search, question answering, summarization and document ranking for a wide range of NLP applications.", - "_organization": "deepset-ai", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2019-11-14T00:00:00.000Z", - "_age_weeks": 161, - "_stars_per_week": 38.44, - "_pop_contributor_count": 149, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "deepset", - "deepset-ai" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 14.31, - "_pop_updated_issues_count": 617, - "_pop_closed_issues_count": 399, - "_pop_created_since_days": 38, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 18, - "_pop_recent_releases_estimated_tags": 12, - "_pop_recent_releases_adjusted_count": 18, - "_pop_issue_count": 617.0, - "_pop_comment_count": 895.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 57, - "_pop_score": 57.87, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/deepset-ai/haystack/master/README.md", - "_readme_localurl": "deepset-ai~haystack~README.md", - "_requirements_filenames": [ - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/deepset-ai/haystack/master/pyproject.toml" - ], - "_requirements_localurls": [ - "deepset-ai~haystack~pyproject.toml" - ] - }, - { - "index": 459, - "category": "ml-ops", - "githuburl": "https://github.com/dbt-labs/dbt-core", - "featured": null, - "links": null, - "description": null, - "_repopath": "dbt-labs/dbt-core", - "_reponame": "dbt-core", - "_stars": 6207, - "_forks": 1095, - "_watches": 131, - "_topics": [ - "dbt-viewpoint", - "slack", - "pypa", - "data-modeling", - "business-intelligence", - "analytics", - "elt" - ], - "_language": "Python", - "_homepage": "https://getdbt.com", - "_description": "dbt-core: dbt enables data analysts and engineers to transform their data using the same practices that software engineers use to build applications.", - "_organization": "dbt-labs", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2016-03-10T00:00:00.000Z", - "_age_weeks": 353, - "_stars_per_week": 17.56, - "_pop_contributor_count": 252, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "dbt-labs", - "fishtownanalytics" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 8.29, - "_pop_updated_issues_count": 890, - "_pop_closed_issues_count": 615, - "_pop_created_since_days": 82, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 40, - "_pop_recent_releases_estimated_tags": 21, - "_pop_recent_releases_adjusted_count": 40, - "_pop_issue_count": 889.0, - "_pop_comment_count": 1514.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 82, - "_pop_score": 62.46, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/dbt-labs/dbt-core/master/README.md", - "_readme_localurl": "dbt-labs~dbt-core~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/dbt-labs/dbt-core/master/requirements.txt", - "https://raw.githubusercontent.com/dbt-labs/dbt-core/master/setup.py" - ], - "_requirements_localurls": [ - "dbt-labs~dbt-core~requirements.txt", - "dbt-labs~dbt-core~setup.py" - ] - }, - { - "index": 20, - "category": "typing", - "githuburl": "https://github.com/facebook/pyre-check", - "featured": null, - "links": null, - "description": null, - "_repopath": "facebook/pyre-check", - "_reponame": "pyre-check", - "_stars": 6164, - "_forks": 407, - "_watches": 107, - "_topics": [ - "python", - "typechecker", - "type-check", - "static-analysis", - "ocaml", - "code-quality", - "abstract-interpretation", - "security", - "program-analysis", - "taint-analysis", - "control-flow-analysis" - ], - "_language": "OCaml", - "_homepage": "https://pyre-check.org/", - "_description": "pyre-check: Performant type-checking for python.", - "_organization": "facebook", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2017-11-10T00:00:00.000Z", - "_age_weeks": 266, - "_stars_per_week": 23.14, - "_pop_contributor_count": 231, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "facebook", - "metaplatforms" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 47.44, - "_pop_updated_issues_count": 46, - "_pop_closed_issues_count": 22, - "_pop_created_since_days": 62, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, + "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 16, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 46.0, - "_pop_comment_count": 51.0, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 23.0, + "_pop_comment_count": 27.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 322, - "_pop_score": 58.01, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 46.43, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebook/pyre-check/master/README.md", "_readme_localurl": "facebook~pyre-check~README.md", @@ -14405,77 +19951,6 @@ "facebook~pyre-check~pyproject.toml" ] }, - { - "index": 556, - "category": "ml-dl", - "githuburl": "https://github.com/arogozhnikov/einops", - "featured": null, - "links": null, - "description": null, - "_repopath": "arogozhnikov/einops", - "_reponame": "einops", - "_stars": 6140, - "_forks": 269, - "_watches": 62, - "_topics": [ - "deep-learning", - "pytorch", - "tensorflow", - "numpy", - "gluon", - "cupy", - "chainer", - "keras", - "tensor", - "jax" - ], - "_language": "Python", - "_homepage": "https://einops.rocks", - "_description": "einops: Deep learning operations reinvented (for pytorch, tensorflow, jax and others)", - "_organization": "arogozhnikov", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", - "_created_at": "2018-09-22T00:00:00.000Z", - "_age_weeks": 221, - "_stars_per_week": 27.75, - "_pop_contributor_count": 22, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "aperturescience", - "idea", - "princetonuniversity", - "quansight", - "sunyat-senuniversity" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.52, - "_pop_updated_issues_count": 41, - "_pop_closed_issues_count": 26, - "_pop_created_since_days": 52, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 41.0, - "_pop_comment_count": 42.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 8, - "_pop_score": 43.95, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/arogozhnikov/einops/master/README.md", - "_readme_localurl": "arogozhnikov~einops~README.md", - "_requirements_filenames": [ - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/arogozhnikov/einops/master/pyproject.toml" - ], - "_requirements_localurls": [ - "arogozhnikov~einops~pyproject.toml" - ] - }, { "index": 681, "category": "ml", @@ -14485,44 +19960,65 @@ "description": null, "_repopath": "hips/autograd", "_reponame": "autograd", - "_stars": 6109, - "_forks": 843, + "_stars": 6197, + "_forks": 848, "_watches": 216, - "_topics": [], "_language": "Python", "_homepage": "", "_description": "autograd: Efficiently computes derivatives of numpy code.", "_organization": "hips", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-09-29T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2014-11-24T00:00:00.000Z", - "_age_weeks": 421, - "_stars_per_week": 14.51, + "_age_weeks": 430, + "_stars_per_week": 14.4, + "_topics": [], + "_last_commit_date": "2022-09-29T00:00:00.000Z", "_pop_contributor_count": 52, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "JasperSnoek", + "clemisch", + "dougalm@googlebrain", + "duvenaud@universityoftoronto", + "gcampanella@visa", + "j-towns@universityofamsterdam", + "kcarnold", + "mattjj@google", + "rainwoodman@loonr&d", + "yukoba" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "google", "googlebrain", + "loonr&d", "universityofamsterdam", "universityoftoronto", "visa" ], + "_pop_contributor_orgs_raw": [ + "@visa", + "Google", + "Google Brain", + "Loon R&D", + "University of Amsterdam", + "University of Toronto" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.08, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 98, - "_pop_updated_since_days": 3, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 100, + "_pop_updated_since_days": 5, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 7.0, - "_pop_comment_count": 15.0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 3.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 160, - "_pop_score": 44.22, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 31.66, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/hips/autograd/master/README.md", "_readme_localurl": "hips~autograd~README.md", @@ -14537,146 +20033,89 @@ ] }, { - "index": 121, - "category": "ml-ops", - "githuburl": "https://github.com/dagster-io/dagster", + "index": 410, + "category": "web", + "githuburl": "https://github.com/encode/uvicorn", "featured": null, "links": null, "description": null, - "_repopath": "dagster-io/dagster", - "_reponame": "dagster", - "_stars": 6053, - "_forks": 759, - "_watches": 87, + "_repopath": "encode/uvicorn", + "_reponame": "uvicorn", + "_stars": 6176, + "_forks": 547, + "_watches": 84, + "_language": "Python", + "_homepage": "https://www.uvicorn.org/", + "_description": "uvicorn: An ASGI web server, for Python. \ud83e\udd84", + "_organization": "encode", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-05-31T00:00:00.000Z", + "_age_weeks": 299, + "_stars_per_week": 20.66, "_topics": [ - "data-pipelines", - "dagster", - "workflow", - "data-science", - "workflow-automation", "python", - "scheduler", - "data-orchestrator", - "etl", - "analytics", - "data-engineering", - "mlops", - "orchestration", - "data-integration", - "metadata" - ], - "_language": "Python", - "_homepage": "https://dagster.io", - "_description": "dagster: An orchestration platform for the development, production, and observation of data assets.", - "_organization": "dagster-io", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2018-04-30T00:00:00.000Z", - "_age_weeks": 242, - "_stars_per_week": 25.01, - "_pop_contributor_count": 256, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "elementl" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 57.9, - "_pop_updated_issues_count": 1677, - "_pop_closed_issues_count": 1229, - "_pop_created_since_days": 56, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 59, - "_pop_recent_releases_estimated_tags": 139, - "_pop_recent_releases_adjusted_count": 59, - "_pop_issue_count": 1677.0, - "_pop_comment_count": 3154.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.9, - "_pop_dependents_count": 2733, - "_pop_score": 70.22, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/dagster-io/dagster/master/README.md", - "_readme_localurl": "dagster-io~dagster~README.md", - "_requirements_filenames": [ - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/dagster-io/dagster/master/pyproject.toml" + "asyncio", + "asgi", + "http", + "http-server" ], - "_requirements_localurls": [ - "dagster-io~dagster~pyproject.toml" - ] - }, - { - "index": 73, - "category": "gis", - "githuburl": "https://github.com/python-visualization/folium", - "featured": null, - "links": null, - "description": null, - "_repopath": "python-visualization/folium", - "_reponame": "folium", - "_stars": 6023, - "_forks": 2154, - "_watches": 166, - "_topics": [ - "closember", - "data-science", - "data-visualization", - "javascript", - "maps", - "python" + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 152, + "_pop_contributor_logins": [ + "Kludex@encode", + "almarklein@independentsoftwareengineer", + "dependabot[bot]", + "euri10", + "florimondmanca", + "graingert", + "johnthagen", + "maximilianhurl", + "simonw@datasette", + "tomchristie@encodeoss" ], - "_language": "Python", - "_homepage": "https://python-visualization.github.io/folium/", - "_description": "folium: Python Data. Leaflet.js Maps. ", - "_organization": "python-visualization", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", - "_created_at": "2013-05-09T00:00:00.000Z", - "_age_weeks": 501, - "_stars_per_week": 12.01, - "_pop_contributor_count": 147, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "datartibus", - "jgardinerconsultingltd.", - "stripe" + "datasette", + "encode", + "encodeoss", + "independentsoftwareengineer" + ], + "_pop_contributor_orgs_raw": [ + "@encode", + "Datasette", + "Encode OSS", + "Independent software engineer" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.81, - "_pop_updated_issues_count": 309, - "_pop_closed_issues_count": 276, - "_pop_created_since_days": 117, + "_pop_commit_frequency": 3.42, + "_pop_updated_issues_count": 123, + "_pop_closed_issues_count": 96, + "_pop_created_since_days": 70, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 309.0, - "_pop_comment_count": 344.0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 25, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 123.0, + "_pop_comment_count": 283.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 671, - "_pop_score": 58.7, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/python-visualization/folium/master/README.rst", - "_readme_localurl": "python-visualization~folium~README.rst", + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 50.05, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/encode/uvicorn/master/README.md", + "_readme_localurl": "encode~uvicorn~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/python-visualization/folium/master/requirements.txt", - "https://raw.githubusercontent.com/python-visualization/folium/master/setup.py", - "https://raw.githubusercontent.com/python-visualization/folium/master/pyproject.toml" + "https://raw.githubusercontent.com/encode/uvicorn/master/requirements.txt", + "https://raw.githubusercontent.com/encode/uvicorn/master/pyproject.toml" ], "_requirements_localurls": [ - "python-visualization~folium~requirements.txt", - "python-visualization~folium~setup.py", - "python-visualization~folium~pyproject.toml" + "encode~uvicorn~requirements.txt", + "encode~uvicorn~pyproject.toml" ] }, { @@ -14688,9 +20127,17 @@ "description": null, "_repopath": "sktime/sktime", "_reponame": "sktime", - "_stars": 5980, - "_forks": 984, - "_watches": 110, + "_stars": 6165, + "_forks": 1028, + "_watches": 108, + "_language": "Python", + "_homepage": "https://www.sktime.net", + "_description": "sktime: A unified framework for machine learning with time series", + "_organization": "sktime", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-11-06T00:00:00.000Z", + "_age_weeks": 224, + "_stars_per_week": 27.5, "_topics": [ "time-series", "machine-learning", @@ -14702,39 +20149,53 @@ "data-science", "data-mining" ], - "_language": "Python", - "_homepage": "https://sktime.org", - "_description": "sktime: A unified framework for machine learning with time series", - "_organization": "sktime", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2018-11-06T00:00:00.000Z", - "_age_weeks": 214, - "_stars_per_week": 27.83, - "_pop_contributor_count": 206, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "ucl", + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 235, + "_pop_contributor_logins": [ + "MatthewMiddlehurst@universityofeastanglia", + "TonyBagnall@universityofeastanglia", + "ViktorKaz", + "aiwalter@scikit-time", + "fkiraly@gfkse,ucl,sktime", + "goastler", + "jasonlines@universityofeastanglia(uea)", + "lmmentel", + "mloning@uclalan-turing-instituteesrc-cdrc", + "sajaysurya@universitycollegelondon" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "gfkse,ucl,sktime", + "scikit-time", "uclalan-turing-instituteesrc-cdrc", "universitycollegelondon", - "universityofeastanglia" + "universityofeastanglia", + "universityofeastanglia(uea)" + ], + "_pop_contributor_orgs_raw": [ + "@GfKse, @UCL, @sktime", + "@UCL @alan-turing-institute @ESRC-CDRC ", + "@scikit-time", + "University College London", + "University of East Anglia", + "University of East Anglia (UEA)" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 17.92, - "_pop_updated_issues_count": 655, - "_pop_closed_issues_count": 376, - "_pop_created_since_days": 50, + "_pop_commit_frequency": 18.33, + "_pop_updated_issues_count": 530, + "_pop_closed_issues_count": 354, + "_pop_created_since_days": 52, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 16, + "_pop_recent_releases_count": 18, "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 16, - "_pop_issue_count": 656.0, - "_pop_comment_count": 1884.0, + "_pop_recent_releases_adjusted_count": 18, + "_pop_issue_count": 530.0, + "_pop_comment_count": 1521.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 2.9, - "_pop_dependents_count": 51, - "_pop_score": 63.77, + "_pop_dependents_count": 0, + "_pop_score": 58.84, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/sktime/sktime/master/README.md", "_readme_localurl": "sktime~sktime~README.md", @@ -14749,126 +20210,336 @@ ] }, { - "index": 410, - "category": "web", - "githuburl": "https://github.com/encode/uvicorn", + "index": 682, + "category": "diffusion", + "githuburl": "https://github.com/compvis/latent-diffusion", "featured": null, "links": null, "description": null, - "_repopath": "encode/uvicorn", - "_reponame": "uvicorn", - "_stars": 5962, - "_forks": 522, - "_watches": 87, - "_topics": [ - "python", - "asyncio", - "asgi", - "http", - "http-server" + "_repopath": "compvis/latent-diffusion", + "_reponame": "latent-diffusion", + "_stars": 6148, + "_forks": 841, + "_watches": 76, + "_language": "Jupyter Notebook", + "_homepage": null, + "_description": "latent-diffusion: High-Resolution Image Synthesis with Latent Diffusion Models", + "_organization": "compvis", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-12-20T00:00:00.000Z", + "_age_weeks": 61, + "_stars_per_week": 100.32, + "_topics": [], + "_last_commit_date": "2022-07-26T00:00:00.000Z", + "_pop_contributor_count": 5, + "_pop_contributor_logins": [ + "AK391@huggingface", + "ablattmann", + "crowsonkb", + "pesser@runwayml", + "rromb" ], - "_language": "Python", - "_homepage": "https://www.uvicorn.org/", - "_description": "uvicorn: An ASGI web server, for Python. \ud83e\udd84", - "_organization": "encode", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", - "_created_at": "2017-05-31T00:00:00.000Z", - "_age_weeks": 289, - "_stars_per_week": 20.58, - "_pop_contributor_count": 149, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "encode", - "encodeoss" + "huggingface", + "runwayml" + ], + "_pop_contributor_orgs_raw": [ + "@runwayml ", + "Huggingface" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.92, - "_pop_updated_issues_count": 212, - "_pop_closed_issues_count": 178, - "_pop_created_since_days": 68, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 14, - "_pop_recent_releases_estimated_tags": 26, - "_pop_recent_releases_adjusted_count": 14, - "_pop_issue_count": 212.0, - "_pop_comment_count": 395.0, + "_pop_commit_frequency": 0.44, + "_pop_updated_issues_count": 70, + "_pop_closed_issues_count": 15, + "_pop_created_since_days": 14, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 70.0, + "_pop_comment_count": 101.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.9, - "_pop_dependents_count": 3899, - "_pop_score": 63.79, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 21.08, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/encode/uvicorn/master/README.md", - "_readme_localurl": "encode~uvicorn~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/compvis/latent-diffusion/master/README.md", + "_readme_localurl": "compvis~latent-diffusion~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/encode/uvicorn/master/requirements.txt", - "https://raw.githubusercontent.com/encode/uvicorn/master/setup.py", - "https://raw.githubusercontent.com/encode/uvicorn/master/pyproject.toml" + "https://raw.githubusercontent.com/compvis/latent-diffusion/master/setup.py" ], "_requirements_localurls": [ - "encode~uvicorn~requirements.txt", - "encode~uvicorn~setup.py", - "encode~uvicorn~pyproject.toml" + "compvis~latent-diffusion~setup.py" ] }, { - "index": 44, - "category": "ml", - "githuburl": "https://github.com/lmcinnes/umap", + "index": 73, + "category": "gis", + "githuburl": "https://github.com/python-visualization/folium", "featured": null, "links": null, "description": null, - "_repopath": "lmcinnes/umap", - "_reponame": "umap", - "_stars": 5961, - "_forks": 694, - "_watches": 124, - "_topics": [ - "umap", - "dimensionality-reduction", - "visualization", - "machine-learning", - "topological-data-analysis" + "_repopath": "python-visualization/folium", + "_reponame": "folium", + "_stars": 6095, + "_forks": 2167, + "_watches": 164, + "_language": "Python", + "_homepage": "https://python-visualization.github.io/folium/", + "_description": "folium: Python Data. Leaflet.js Maps. ", + "_organization": "python-visualization", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2013-05-09T00:00:00.000Z", + "_age_weeks": 510, + "_stars_per_week": 11.93, + "_topics": [ + "closember", + "data-science", + "data-visualization", + "javascript", + "maps", + "python" + ], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 149, + "_pop_contributor_logins": [ + "BibMartin@datartibus", + "Conengmo", + "JamesGardiner@jgardinerconsultingltd.", + "birdage@neyasystems", + "fullonic", + "halfdanrump@nowcast", + "joshuacano", + "ocefpaf", + "themiurgo@spotify", + "wrobstory@stripe" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "datartibus", + "jgardinerconsultingltd.", + "neyasystems", + "nowcast", + "spotify", + "stripe" + ], + "_pop_contributor_orgs_raw": [ + "DatArtibus", + "J Gardiner Consulting Ltd.", + "Neya Systems LLC", + "Nowcast Inc.", + "Spotify", + "Stripe" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.9, + "_pop_updated_issues_count": 130, + "_pop_closed_issues_count": 109, + "_pop_created_since_days": 119, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 130.0, + "_pop_comment_count": 203.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 49.57, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/python-visualization/folium/master/README.rst", + "_readme_localurl": "python-visualization~folium~README.rst", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/python-visualization/folium/master/requirements.txt", + "https://raw.githubusercontent.com/python-visualization/folium/master/setup.py", + "https://raw.githubusercontent.com/python-visualization/folium/master/pyproject.toml" + ], + "_requirements_localurls": [ + "python-visualization~folium~requirements.txt", + "python-visualization~folium~setup.py", + "python-visualization~folium~pyproject.toml" + ] + }, + { + "index": 537, + "category": "nlp", + "githuburl": "https://github.com/espnet/espnet", + "featured": null, + "links": null, + "description": null, + "_repopath": "espnet/espnet", + "_reponame": "espnet", + "_stars": 6089, + "_forks": 1844, + "_watches": 178, + "_language": "Python", + "_homepage": "https://espnet.github.io/espnet/", + "_description": "espnet: End-to-End Speech Processing Toolkit", + "_organization": "espnet", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-12-13T00:00:00.000Z", + "_age_weeks": 271, + "_stars_per_week": 22.47, + "_topics": [ + "deep-learning", + "end-to-end", + "chainer", + "pytorch", + "kaldi", + "speech-recognition", + "speech-synthesis", + "speech-translation", + "machine-translation", + "voice-conversion", + "speech-enhancement", + "speech-separation", + "singing-voice-synthesis", + "speaker-diarization", + "spoken-language-understanding" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 331, + "_pop_contributor_logins": [ + "Emrys365@shanghaijiaotonguniversity", + "Fhrozen@hitachir&d", + "ShigekiKarita", + "b-flo", + "ftshijt@carnegiemellonuniversity", + "hirofumi0810@fairatmetaai", + "kamo-naoyuki", + "kan-bayashi@nagoyauniversity", + "mergify[bot]", + "sw005320" ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "carnegiemellonuniversity", + "fairatmetaai", + "hitachir&d", + "nagoyauniversity", + "shanghaijiaotonguniversity" + ], + "_pop_contributor_orgs_raw": [ + "Carnegie Mellon University", + "FAIR at Meta AI", + "Hitachi R&D", + "Nagoya University", + "Shanghai Jiao Tong University" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 38.65, + "_pop_updated_issues_count": 247, + "_pop_closed_issues_count": 142, + "_pop_created_since_days": 63, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 247.0, + "_pop_comment_count": 653.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 0, + "_pop_score": 57.44, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/espnet/espnet/master/README.md", + "_readme_localurl": "espnet~espnet~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/espnet/espnet/master/setup.py" + ], + "_requirements_localurls": [ + "espnet~espnet~setup.py" + ] + }, + { + "index": 44, + "category": "ml", + "githuburl": "https://github.com/lmcinnes/umap", + "featured": null, + "links": null, + "description": null, + "_repopath": "lmcinnes/umap", + "_reponame": "umap", + "_stars": 6054, + "_forks": 700, + "_watches": 126, "_language": "Python", "_homepage": null, "_description": "umap: Uniform Manifold Approximation and Projection", "_organization": "lmcinnes", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-11-11T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2017-07-02T00:00:00.000Z", - "_age_weeks": 285, - "_stars_per_week": 20.91, - "_pop_contributor_count": 109, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 294, + "_stars_per_week": 20.56, + "_topics": [ + "umap", + "dimensionality-reduction", + "visualization", + "machine-learning", + "topological-data-analysis" + ], + "_last_commit_date": "2023-01-30T00:00:00.000Z", + "_pop_contributor_count": 111, + "_pop_contributor_logins": [ + "adalmia96@microsoft", + "gclen", + "jlmelville", + "josephcourtney", + "leriomaggio@anaconda", + "lmcinnes@tutteinstituteformathematicsandcomputing", + "paxtonfitzpatrick@contextlabcosanlab", + "sleighsoft", + "timsainb@harvardmedicalschool", + "usul83@popsa-hq" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "anaconda", "contextlabcosanlab", + "harvardmedicalschool", "microsoft", + "popsa-hq", "tutteinstituteformathematicsandcomputing" ], + "_pop_contributor_orgs_raw": [ + "@ContextLab @cosanlab", + "@anaconda ", + "@popsa-hq ", + "Harvard Medical School", + "Microsoft", + "Tutte Institute for Mathematics and Computing" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.87, - "_pop_updated_issues_count": 34, - "_pop_closed_issues_count": 11, - "_pop_created_since_days": 67, + "_pop_commit_frequency": 1.06, + "_pop_updated_issues_count": 40, + "_pop_closed_issues_count": 16, + "_pop_created_since_days": 69, "_pop_updated_since_days": 1, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 5, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 34.0, - "_pop_comment_count": 42.0, + "_pop_issue_count": 40.0, + "_pop_comment_count": 60.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 45, - "_pop_score": 46.95, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 42.18, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/lmcinnes/umap/master/README.rst", "_readme_localurl": "lmcinnes~umap~README.rst", @@ -14894,9 +20565,17 @@ "description": null, "_repopath": "domlysz/blendergis", "_reponame": "BlenderGIS", - "_stars": 5875, - "_forks": 1093, - "_watches": 244, + "_stars": 6037, + "_forks": 1125, + "_watches": 243, + "_language": "Python", + "_homepage": "", + "_description": "BlenderGIS: Blender addons to make the bridge between Blender and geographic data", + "_organization": "domlysz", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-05-08T00:00:00.000Z", + "_age_weeks": 458, + "_stars_per_week": 13.16, "_topics": [ "blender", "addon", @@ -14918,36 +20597,47 @@ "basemap", "3d-map" ], - "_language": "Python", - "_homepage": "", - "_description": "BlenderGIS: Blender addons to make the bridge between Blender and geographic data", - "_organization": "domlysz", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-05-31T00:00:00.000Z", - "_created_at": "2014-05-08T00:00:00.000Z", - "_age_weeks": 449, - "_stars_per_week": 13.07, "_pop_contributor_count": 15, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "cclauss@christianclauss", + "domlysz", + "ericgrosso", + "kant", + "lfdebrux@alphagov", + "lobnico", + "mef@mango-information-systems", + "s-leger", + "stuarta0", + "wolfgangp" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "alphagov" + "alphagov", + "christianclauss", + "mango-information-systems" + ], + "_pop_contributor_orgs_raw": [ + "@Mango-information-systems", + "@alphagov", + "Christian Clauss" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.21, - "_pop_updated_issues_count": 28, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 105, - "_pop_updated_since_days": 7, + "_pop_commit_frequency": 0.19, + "_pop_updated_issues_count": 26, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 107, + "_pop_updated_since_days": 9, "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 28.0, - "_pop_comment_count": 27.0, + "_pop_issue_count": 26.0, + "_pop_comment_count": 67.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 61, - "_pop_score": 33.46, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 0, + "_pop_score": 31.03, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/domlysz/blendergis/master/README.md", "_readme_localurl": "domlysz~blendergis~README.md", @@ -14955,79 +20645,6 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, - { - "index": 537, - "category": "nlp", - "githuburl": "https://github.com/espnet/espnet", - "featured": null, - "links": null, - "description": null, - "_repopath": "espnet/espnet", - "_reponame": "espnet", - "_stars": 5832, - "_forks": 1782, - "_watches": 184, - "_topics": [ - "deep-learning", - "end-to-end", - "chainer", - "pytorch", - "kaldi", - "speech-recognition", - "speech-synthesis", - "speech-translation", - "machine-translation", - "voice-conversion", - "speech-enhancement", - "speech-separation", - "singing-voice-synthesis", - "speaker-diarization", - "spoken-language-understanding" - ], - "_language": "Python", - "_homepage": "https://espnet.github.io/espnet/", - "_description": "espnet: End-to-End Speech Processing Toolkit", - "_organization": "espnet", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2017-12-13T00:00:00.000Z", - "_age_weeks": 261, - "_stars_per_week": 22.28, - "_pop_contributor_count": 312, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "fairatmetaai", - "nagoyauniversity" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 35.96, - "_pop_updated_issues_count": 258, - "_pop_closed_issues_count": 151, - "_pop_created_since_days": 61, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 7, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 258.0, - "_pop_comment_count": 530.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 6280, - "_pop_score": 69.04, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/espnet/espnet/master/README.md", - "_readme_localurl": "espnet~espnet~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/espnet/espnet/master/setup.py" - ], - "_requirements_localurls": [ - "espnet~espnet~setup.py" - ] - }, { "index": 313, "category": "util", @@ -15037,9 +20654,17 @@ "description": null, "_repopath": "pypa/pipx", "_reponame": "pipx", - "_stars": 5810, - "_forks": 265, - "_watches": 65, + "_stars": 6028, + "_forks": 276, + "_watches": 72, + "_language": "Python", + "_homepage": "https://pypa.github.io/pipx/", + "_description": "pipx: Install and Run Python Applications in Isolated Environments", + "_organization": "pypa", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-10-06T00:00:00.000Z", + "_age_weeks": 228, + "_stars_per_week": 26.37, "_topics": [ "pip", "cli", @@ -15048,37 +20673,49 @@ "hacktoberfest", "python" ], - "_language": "Python", - "_homepage": "https://pypa.github.io/pipx/", - "_description": "pipx: Install and Run Python Applications in Isolated Environments", - "_organization": "pypa", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2018-10-06T00:00:00.000Z", - "_age_weeks": 219, - "_stars_per_week": 26.5, - "_pop_contributor_count": 82, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-11T00:00:00.000Z", + "_pop_contributor_count": 86, + "_pop_contributor_logins": [ + "backwardspy@binkhq", + "chrahunt", + "cs01", + "dependabot[bot]", + "gaborbernat@bloomberglp", + "itsayellow", + "meowmeowmeowcat", + "pfmoore", + "spazm@lemurlabs.dev", + "uranusjr@astronomer" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "astronomer", - "bloomberglp" + "binkhq", + "bloomberglp", + "lemurlabs.dev" + ], + "_pop_contributor_orgs_raw": [ + "@astronomer", + "@binkhq ", + "Bloomberg LP", + "LemurLabs.dev" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.12, - "_pop_updated_issues_count": 51, - "_pop_closed_issues_count": 21, - "_pop_created_since_days": 51, + "_pop_commit_frequency": 0.65, + "_pop_updated_issues_count": 59, + "_pop_closed_issues_count": 30, + "_pop_created_since_days": 53, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 13, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 51.0, - "_pop_comment_count": 95.0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 59.0, + "_pop_comment_count": 78.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.9, - "_pop_dependents_count": 107, - "_pop_score": 49.22, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 40.84, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pypa/pipx/master/README.md", "_readme_localurl": "pypa~pipx~README.md", @@ -15101,41 +20738,59 @@ "description": null, "_repopath": "google/latexify_py", "_reponame": "latexify_py", - "_stars": 5807, - "_forks": 316, - "_watches": 50, - "_topics": [], + "_stars": 5989, + "_forks": 327, + "_watches": 52, "_language": "Python", "_homepage": "", "_description": "latexify_py: A library to generate LaTeX expression from Python code.", "_organization": "google", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2020-07-25T00:00:00.000Z", - "_age_weeks": 125, - "_stars_per_week": 46.35, + "_age_weeks": 134, + "_stars_per_week": 44.5, + "_topics": [], + "_last_commit_date": "2023-01-14T00:00:00.000Z", "_pop_contributor_count": 24, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "1MLightyears", + "ShigekiKarita", + "ZibingZhang", + "afrozchakure@citi", + "chunibyo-wly", + "erica-w-fu", + "jianan1104", + "odashi@inspired-co", + "ryosuketc@google", + "ryxcommar" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "citi", "google", "inspired-co" ], + "_pop_contributor_orgs_raw": [ + "@Citi", + "@google", + "@inspired-co" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.69, - "_pop_updated_issues_count": 146, - "_pop_closed_issues_count": 133, - "_pop_created_since_days": 29, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 1.71, + "_pop_updated_issues_count": 60, + "_pop_closed_issues_count": 48, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 3, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 146.0, - "_pop_comment_count": 389.0, + "_pop_issue_count": 60.0, + "_pop_comment_count": 182.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.7, - "_pop_dependents_count": 4, - "_pop_score": 42.05, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 0, + "_pop_score": 38.08, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google/latexify_py/master/README.md", "_readme_localurl": "google~latexify_py~README.md", @@ -15149,6 +20804,85 @@ "google~latexify_py~pyproject.toml" ] }, + { + "index": 783, + "category": "diffusion", + "githuburl": "https://github.com/carson-katri/dream-textures", + "featured": null, + "links": null, + "description": null, + "_repopath": "carson-katri/dream-textures", + "_reponame": "dream-textures", + "_stars": 5872, + "_forks": 299, + "_watches": 92, + "_language": "Python", + "_homepage": "", + "_description": "dream-textures: Stable Diffusion built-in to Blender", + "_organization": "carson-katri", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-09-08T00:00:00.000Z", + "_age_weeks": 23, + "_stars_per_week": 246.13, + "_topics": [ + "ai", + "blender", + "blender-addon", + "image-generation", + "stable-diffusion" + ], + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 10, + "_pop_contributor_logins": [ + "Dekker3D", + "GottfriedHofmann@blenderdiplom", + "JasonHoku@jasonhoku", + "NullSenseStudio", + "blastframe@blastframe", + "carson-katri", + "eltociear@bandism", + "gregnr", + "playerla", + "timmyL17@adobe" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "adobe", + "bandism", + "blastframe", + "blenderdiplom", + "jasonhoku" + ], + "_pop_contributor_orgs_raw": [ + "@bandism ", + "Adobe", + "Blastframe", + "BlenderDiplom", + "JasonHoku" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.44, + "_pop_updated_issues_count": 191, + "_pop_closed_issues_count": 110, + "_pop_created_since_days": 6, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 20, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 191.0, + "_pop_comment_count": 485.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 0, + "_pop_score": 38.77, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/carson-katri/dream-textures/master/README.md", + "_readme_localurl": "carson-katri~dream-textures~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 345, "category": "jupyter", @@ -15158,9 +20892,17 @@ "description": null, "_repopath": "mwouts/jupytext", "_reponame": "jupytext", - "_stars": 5713, - "_forks": 363, - "_watches": 70, + "_stars": 5822, + "_forks": 376, + "_watches": 68, + "_language": "Python", + "_homepage": "https://jupytext.readthedocs.io", + "_description": "jupytext: Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts", + "_organization": "mwouts", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-06-15T00:00:00.000Z", + "_age_weeks": 244, + "_stars_per_week": 23.79, "_topics": [ "jupyter-notebook", "jupyterlab-extension", @@ -15174,38 +20916,53 @@ "notebooks", "jupyterlab" ], - "_language": "Python", - "_homepage": "https://jupytext.readthedocs.io", - "_description": "jupytext: Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts", - "_organization": "mwouts", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-11T00:00:00.000Z", - "_created_at": "2018-06-15T00:00:00.000Z", - "_age_weeks": 235, - "_stars_per_week": 24.27, - "_pop_contributor_count": 74, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 77, + "_pop_contributor_logins": [ + "Skylion007@facebookresearch", + "bzinberg", + "choldgraf@ucberkeley", + "chrisjsewell@imperialcollegelondon", + "dependabot[bot]", + "kiendang", + "martinRenou@quantstack", + "matthew-brett@londoninterdisciplinaryschool", + "matthewfeickert@universityofwisconsin-madison", + "mwouts" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "facebookresearch", "imperialcollegelondon", - "ucberkeley" + "londoninterdisciplinaryschool", + "quantstack", + "ucberkeley", + "universityofwisconsin-madison" + ], + "_pop_contributor_orgs_raw": [ + "@QuantStack", + "@facebookresearch ", + "Imperial College London", + "London Interdisciplinary School", + "UC Berkeley", + "University of Wisconsin-Madison" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.9, - "_pop_updated_issues_count": 40, - "_pop_closed_issues_count": 18, - "_pop_created_since_days": 55, + "_pop_commit_frequency": 1.13, + "_pop_updated_issues_count": 44, + "_pop_closed_issues_count": 28, + "_pop_created_since_days": 57, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 10, - "_pop_recent_releases_estimated_tags": 29, - "_pop_recent_releases_adjusted_count": 10, - "_pop_issue_count": 40.0, - "_pop_comment_count": 92.0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 28, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 44.0, + "_pop_comment_count": 117.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.3, - "_pop_dependents_count": 113, - "_pop_score": 52.13, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 0, + "_pop_score": 46.81, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/mwouts/jupytext/master/README.md", "_readme_localurl": "mwouts~jupytext~README.md", @@ -15234,47 +20991,64 @@ "description": null, "_repopath": "pygithub/pygithub", "_reponame": "PyGithub", - "_stars": 5678, - "_forks": 1566, + "_stars": 5804, + "_forks": 1595, "_watches": 113, + "_language": "Python", + "_homepage": "https://pygithub.readthedocs.io/", + "_description": "PyGithub: Typed interactions with the GitHub API v3", + "_organization": "pygithub", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-02-25T00:00:00.000Z", + "_age_weeks": 573, + "_stars_per_week": 10.12, "_topics": [ "pygithub", "python", "github", "github-api" ], - "_language": "Python", - "_homepage": "https://pygithub.readthedocs.io/", - "_description": "PyGithub: Typed interactions with the GitHub API v3", - "_organization": "pygithub", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2012-02-25T00:00:00.000Z", - "_age_weeks": 564, - "_stars_per_week": 10.06, - "_pop_contributor_count": 293, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 295, + "_pop_contributor_logins": [ + "akfish", + "allevin", + "enix223", + "jacquev6", + "jayfk", + "jzelinskie@authzed", + "martinqt", + "s-t-e-v-e-n-k@suse", + "sfdye@zendesk", + "thialfihar" + ], "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "authzed", "suse", "zendesk" ], + "_pop_contributor_orgs_raw": [ + "@authzed", + "@zendesk ", + "SUSE" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.31, - "_pop_updated_issues_count": 128, - "_pop_closed_issues_count": 53, - "_pop_created_since_days": 132, + "_pop_commit_frequency": 0.5, + "_pop_updated_issues_count": 115, + "_pop_closed_issues_count": 37, + "_pop_created_since_days": 134, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 2, + "_pop_recent_releases_count": 3, "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 128.0, - "_pop_comment_count": 162.0, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 115.0, + "_pop_comment_count": 202.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 897, - "_pop_score": 58.53, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 47.61, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pygithub/pygithub/master/README.md", "_readme_localurl": "pygithub~pygithub~README.md", @@ -15292,131 +21066,99 @@ ] }, { - "index": 730, + "index": 969, "category": "ml", - "githuburl": "https://github.com/cleverhans-lab/cleverhans", + "githuburl": "https://github.com/thu-ml/tianshou", "featured": null, "links": null, "description": null, - "_repopath": "cleverhans-lab/cleverhans", - "_reponame": "cleverhans", - "_stars": 5662, - "_forks": 1376, - "_watches": 190, + "_repopath": "thu-ml/tianshou", + "_reponame": "tianshou", + "_stars": 5768, + "_forks": 905, + "_watches": 83, + "_language": "Python", + "_homepage": "https://tianshou.readthedocs.io", + "_description": "tianshou: An elegant PyTorch deep reinforcement learning library.", + "_organization": "thu-ml", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-04-16T00:00:00.000Z", + "_age_weeks": 253, + "_stars_per_week": 22.77, "_topics": [ - "machine-learning", - "security", - "benchmarking" + "pytorch", + "policy-gradient", + "dqn", + "double-dqn", + "a2c", + "ddpg", + "ppo", + "td3", + "sac", + "imitation-learning", + "mujoco", + "atari", + "bcq", + "library", + "rl", + "drl", + "benchmark", + "trpo", + "npg", + "cql" ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "cleverhans: An adversarial example library for constructing attacks, building defenses, and benchmarking both", - "_organization": "cleverhans-lab", - "_updated_at": "2022-12-13T00:00:00.000Z", - "_last_commit_date": "2021-09-23T00:00:00.000Z", - "_created_at": "2016-09-15T00:00:00.000Z", - "_age_weeks": 326, - "_stars_per_week": 17.34, - "_pop_contributor_count": 129, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-03T00:00:00.000Z", + "_pop_contributor_count": 49, + "_pop_contributor_logins": [ + "ChenDRAG@tsinghuauniversity", + "Markus28", + "Mehooz@hedgefund", + "Trinkle23897@openai", + "danagi", + "duburcqa", + "gogoduan@tsinghuauniversity", + "nuance1979", + "rocknamx8", + "youkaichao" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "universityoftoronto" + "hedgefund", + "openai", + "tsinghuauniversity" + ], + "_pop_contributor_orgs_raw": [ + "@openai ", + "Hedge Fund", + "Tsinghua University" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 76, - "_pop_updated_since_days": 15, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 2.0, - "_pop_comment_count": 0.0, + "_pop_commit_frequency": 1.21, + "_pop_updated_issues_count": 47, + "_pop_closed_issues_count": 29, + "_pop_created_since_days": 59, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 47.0, + "_pop_comment_count": 93.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 5, - "_pop_score": 25.91, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 40.7, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/cleverhans-lab/cleverhans/master/README.md", - "_readme_localurl": "cleverhans-lab~cleverhans~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/thu-ml/tianshou/master/README.md", + "_readme_localurl": "thu-ml~tianshou~README.md", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/cleverhans-lab/cleverhans/master/setup.py" + "https://raw.githubusercontent.com/thu-ml/tianshou/master/setup.py" ], "_requirements_localurls": [ - "cleverhans-lab~cleverhans~setup.py" - ] - }, - { - "index": 106, - "category": "ml", - "githuburl": "https://github.com/nicolashug/surprise", - "featured": null, - "links": null, - "description": null, - "_repopath": "nicolashug/surprise", - "_reponame": "Surprise", - "_stars": 5637, - "_forks": 963, - "_watches": 149, - "_topics": [ - "recommender", - "systems", - "recommendation", - "svd", - "matrix", - "factorization", - "machine-learning" - ], - "_language": "Python", - "_homepage": "http://surpriselib.com", - "_description": "Surprise: A Python scikit for building and analyzing recommender systems", - "_organization": "nicolashug", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-10-31T00:00:00.000Z", - "_created_at": "2016-10-23T00:00:00.000Z", - "_age_weeks": 321, - "_stars_per_week": 17.55, - "_pop_contributor_count": 44, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "centralesupelec", - "hirosystems" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.52, - "_pop_updated_issues_count": 23, - "_pop_closed_issues_count": 12, - "_pop_created_since_days": 75, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 23.0, - "_pop_comment_count": 24.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 99, - "_pop_score": 41.67, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nicolashug/surprise/master/README.md", - "_readme_localurl": "nicolashug~surprise~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/nicolashug/surprise/master/requirements.txt", - "https://raw.githubusercontent.com/nicolashug/surprise/master/setup.py" - ], - "_requirements_localurls": [ - "nicolashug~surprise~requirements.txt", - "nicolashug~surprise~setup.py" + "thu-ml~tianshou~setup.py" ] }, { @@ -15428,9 +21170,17 @@ "description": null, "_repopath": "pygame/pygame", "_reponame": "pygame", - "_stars": 5546, - "_forks": 2435, - "_watches": 160, + "_stars": 5740, + "_forks": 2520, + "_watches": 157, + "_language": "C", + "_homepage": "https://www.pygame.org", + "_description": "pygame: \ud83d\udc0d\ud83c\udfae pygame (the library) is a Free and Open Source python programming language library for making multimedia applications like games built on top of the excellent SDL library. C, Python, Native, OpenGL.", + "_organization": "pygame", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-03-26T00:00:00.000Z", + "_age_weeks": 308, + "_stars_per_week": 18.61, "_topics": [ "python", "pygame", @@ -15440,34 +21190,39 @@ "gamedev", "game-dev" ], - "_language": "C", - "_homepage": "https://www.pygame.org", - "_description": "pygame: \ud83d\udc0d\ud83c\udfae pygame (the library) is a Free and Open Source python programming language library for making multimedia applications like games built on top of the excellent SDL library. C, Python, Native, OpenGL.", - "_organization": "pygame", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2017-03-26T00:00:00.000Z", - "_age_weeks": 299, - "_stars_per_week": 18.54, - "_pop_contributor_count": 263, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 274, + "_pop_contributor_logins": [ + "MyreMylar", + "PeterShinners", + "Starbuck5", + "ankith26", + "charlesej", + "dlon", + "illume", + "llindstrom", + "sublimator", + "takluyver" + ], "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 13.81, - "_pop_updated_issues_count": 342, - "_pop_closed_issues_count": 231, - "_pop_created_since_days": 70, + "_pop_commit_frequency": 5.25, + "_pop_updated_issues_count": 283, + "_pop_closed_issues_count": 229, + "_pop_created_since_days": 72, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 8, - "_pop_recent_releases_estimated_tags": 14, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 342.0, - "_pop_comment_count": 571.0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 283.0, + "_pop_comment_count": 495.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 806, - "_pop_score": 58.38, + "_pop_dependents_count": 0, + "_pop_score": 43.91, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pygame/pygame/master/README.rst", "_readme_localurl": "pygame~pygame~README.rst", @@ -15482,70 +21237,166 @@ ] }, { - "index": 773, - "category": "ml-dl", - "githuburl": "https://github.com/sanster/lama-cleaner", + "index": 730, + "category": "ml", + "githuburl": "https://github.com/cleverhans-lab/cleverhans", "featured": null, "links": null, "description": null, - "_repopath": "sanster/lama-cleaner", - "_reponame": "lama-cleaner", - "_stars": 5506, - "_forks": 445, - "_watches": 47, + "_repopath": "cleverhans-lab/cleverhans", + "_reponame": "cleverhans", + "_stars": 5707, + "_forks": 1378, + "_watches": 191, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "cleverhans: An adversarial example library for constructing attacks, building defenses, and benchmarking both", + "_organization": "cleverhans-lab", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-09-15T00:00:00.000Z", + "_age_weeks": 335, + "_stars_per_week": 16.99, "_topics": [ - "inpainting", - "pytorch", - "lama", - "latent-diffusion", - "mat", - "zits", - "stable-diffusion" + "machine-learning", + "security", + "benchmarking" + ], + "_last_commit_date": "2023-01-31T00:00:00.000Z", + "_pop_contributor_count": 130, + "_pop_contributor_logins": [ + "AlexeyKurakin", + "WindQAQ@googlers", + "carlini", + "david-berthelot", + "fartashf@universityoftoronto", + "goodfeli", + "jonasguan", + "michaelshiyu", + "npapernot@universityoftoronto", + "steverab" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "googlers", + "universityoftoronto" + ], + "_pop_contributor_orgs_raw": [ + "@googlers ", + "University of Toronto" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 78, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 3.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 30.58, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/cleverhans-lab/cleverhans/master/README.md", + "_readme_localurl": "cleverhans-lab~cleverhans~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/cleverhans-lab/cleverhans/master/setup.py" ], + "_requirements_localurls": [ + "cleverhans-lab~cleverhans~setup.py" + ] + }, + { + "index": 106, + "category": "ml", + "githuburl": "https://github.com/nicolashug/surprise", + "featured": null, + "links": null, + "description": null, + "_repopath": "nicolashug/surprise", + "_reponame": "Surprise", + "_stars": 5696, + "_forks": 969, + "_watches": 147, "_language": "Python", - "_homepage": "", - "_description": "lama-cleaner: Image inpainting tool powered by SOTA AI Model. Remove any unwanted object, defect, people from your pictures or erase and replace(powered by stable diffusion) any thing on your pictures.", - "_organization": "sanster", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2021-11-15T00:00:00.000Z", - "_age_weeks": 57, - "_stars_per_week": 96.6, - "_pop_contributor_count": 11, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_homepage": "http://surpriselib.com", + "_description": "Surprise: A Python scikit for building and analyzing recommender systems", + "_organization": "nicolashug", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2016-10-23T00:00:00.000Z", + "_age_weeks": 330, + "_stars_per_week": 17.24, + "_topics": [ + "recommender", + "systems", + "recommendation", + "svd", + "matrix", + "factorization", + "machine-learning" + ], + "_last_commit_date": "2023-01-27T00:00:00.000Z", + "_pop_contributor_count": 45, + "_pop_contributor_logins": [ + "NicolasHug", + "PFGimenez@centralesupelec", + "ashtou", + "hengji-liu", + "janniks@hirosystems", + "kman0", + "lenatech", + "mahermalaeb", + "naturale0", + "timgates42@iress" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "musixmatchdev" + "centralesupelec", + "hirosystems", + "iress" + ], + "_pop_contributor_orgs_raw": [ + "@CentraleSupelec", + "@hirosystems", + "IRESS" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.69, - "_pop_updated_issues_count": 105, - "_pop_closed_issues_count": 84, - "_pop_created_since_days": 13, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 33, - "_pop_recent_releases_estimated_tags": 33, - "_pop_recent_releases_adjusted_count": 33, - "_pop_issue_count": 105.0, - "_pop_comment_count": 214.0, + "_pop_commit_frequency": 0.54, + "_pop_updated_issues_count": 23, + "_pop_closed_issues_count": 9, + "_pop_created_since_days": 77, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 23.0, + "_pop_comment_count": 16.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 7, - "_pop_score": 40.77, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 35.1, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/sanster/lama-cleaner/master/README.md", - "_readme_localurl": "sanster~lama-cleaner~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nicolashug/surprise/master/README.md", + "_readme_localurl": "nicolashug~surprise~README.md", "_requirements_filenames": [ "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/sanster/lama-cleaner/master/requirements.txt", - "https://raw.githubusercontent.com/sanster/lama-cleaner/master/setup.py" + "https://raw.githubusercontent.com/nicolashug/surprise/master/requirements.txt", + "https://raw.githubusercontent.com/nicolashug/surprise/master/setup.py" ], "_requirements_localurls": [ - "sanster~lama-cleaner~requirements.txt", - "sanster~lama-cleaner~setup.py" + "nicolashug~surprise~requirements.txt", + "nicolashug~surprise~setup.py" ] }, { @@ -15557,9 +21408,17 @@ "description": null, "_repopath": "theskumar/python-dotenv", "_reponame": "python-dotenv", - "_stars": 5495, - "_forks": 353, + "_stars": 5689, + "_forks": 356, "_watches": 33, + "_language": "Python", + "_homepage": "https://saurabh-kumar.com/python-dotenv/", + "_description": "python-dotenv: Reads key-value pairs from a .env file and can set them as environment variables. It helps in developing applications following the 12-factor principles.", + "_organization": "theskumar", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-09-06T00:00:00.000Z", + "_age_weeks": 441, + "_stars_per_week": 12.88, "_topics": [ "python", "devops-tools", @@ -15569,39 +21428,51 @@ "env", "environment-variables" ], - "_language": "Python", - "_homepage": "https://saurabh-kumar.com/python-dotenv/", - "_description": "python-dotenv: Reads key-value pairs from a .env file and can set them as environment variables. It helps in developing applications following the 12-factor principles.", - "_organization": "theskumar", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-25T00:00:00.000Z", - "_created_at": "2014-09-06T00:00:00.000Z", - "_age_weeks": 432, - "_stars_per_week": 12.71, - "_pop_contributor_count": 85, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-01-21T00:00:00.000Z", + "_pop_contributor_count": 87, + "_pop_contributor_logins": [ + "altendky", + "bbc2", + "greyli", + "hugochinchilla@codiumteam", + "jacobian@latacora", + "pjona", + "smsearcy", + "theskumar@fueled", + "ulyssessouza@docker", + "venthur@debianflix-tech" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "codiumteam", + "debianflix-tech", "docker", "fueled", "latacora" ], + "_pop_contributor_orgs_raw": [ + "@Fueled", + "@debian @flix-tech ", + "@docker ", + "Codium Team", + "Latacora" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.69, - "_pop_updated_issues_count": 29, - "_pop_closed_issues_count": 14, - "_pop_created_since_days": 101, + "_pop_commit_frequency": 0.77, + "_pop_updated_issues_count": 23, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 103, "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 1, + "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 29.0, - "_pop_comment_count": 23.0, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 23.0, + "_pop_comment_count": 19.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 3185, - "_pop_score": 53.15, + "_pop_dependents_count": 0, + "_pop_score": 40.3, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/theskumar/python-dotenv/master/README.md", "_readme_localurl": "theskumar~python-dotenv~README.md", @@ -15618,130 +21489,6 @@ "theskumar~python-dotenv~setup.py" ] }, - { - "index": 682, - "category": "diffusion", - "githuburl": "https://github.com/compvis/latent-diffusion", - "featured": null, - "links": null, - "description": null, - "_repopath": "compvis/latent-diffusion", - "_reponame": "latent-diffusion", - "_stars": 5488, - "_forks": 716, - "_watches": 71, - "_topics": [], - "_language": "Jupyter Notebook", - "_homepage": null, - "_description": "latent-diffusion: High-Resolution Image Synthesis with Latent Diffusion Models", - "_organization": "compvis", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-07-26T00:00:00.000Z", - "_created_at": "2021-12-20T00:00:00.000Z", - "_age_weeks": 52, - "_stars_per_week": 105.54, - "_pop_contributor_count": 5, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "huggingface", - "runwayml" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.52, - "_pop_updated_issues_count": 80, - "_pop_closed_issues_count": 14, - "_pop_created_since_days": 12, - "_pop_updated_since_days": 5, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 80.0, - "_pop_comment_count": 126.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 16, - "_pop_score": 26.99, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/compvis/latent-diffusion/master/README.md", - "_readme_localurl": "compvis~latent-diffusion~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/compvis/latent-diffusion/master/setup.py" - ], - "_requirements_localurls": [ - "compvis~latent-diffusion~setup.py" - ] - }, - { - "index": 439, - "category": "perf", - "githuburl": "https://github.com/mher/flower", - "featured": null, - "links": null, - "description": null, - "_repopath": "mher/flower", - "_reponame": "flower", - "_stars": 5485, - "_forks": 979, - "_watches": 144, - "_topics": [ - "celery", - "task-queue", - "monitoring", - "administration", - "workers", - "rabbitmq", - "redis", - "python", - "asynchronous" - ], - "_language": "Python", - "_homepage": "https://flower.readthedocs.io", - "_description": "flower: Real-time monitor and web admin for Celery distributed task queue", - "_organization": "mher", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-14T00:00:00.000Z", - "_created_at": "2012-07-08T00:00:00.000Z", - "_age_weeks": 545, - "_stars_per_week": 10.06, - "_pop_contributor_count": 196, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "robinhoodmarkets", - "zipsale" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.27, - "_pop_updated_issues_count": 31, - "_pop_closed_issues_count": 12, - "_pop_created_since_days": 127, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 31.0, - "_pop_comment_count": 41.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 364, - "_pop_score": 50.7, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/mher/flower/master/README.rst", - "_readme_localurl": "mher~flower~README.rst", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/mher/flower/master/setup.py" - ], - "_requirements_localurls": [ - "mher~flower~setup.py" - ] - }, { "index": 723, "category": "ml", @@ -15751,9 +21498,17 @@ "description": null, "_repopath": "py-why/dowhy", "_reponame": "dowhy", - "_stars": 5478, - "_forks": 771, - "_watches": 136, + "_stars": 5688, + "_forks": 816, + "_watches": 137, + "_language": "Python", + "_homepage": "https://www.pywhy.org/dowhy", + "_description": "DoWhy is a Python library for causal inference that supports explicit modeling and testing of causal assumptions. DoWhy is based on a unified language for causal inference, combining causal graphical models and potential outcomes frameworks. ", + "_organization": "py-why", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-05-31T00:00:00.000Z", + "_age_weeks": 246, + "_stars_per_week": 23.04, "_topics": [ "causal-inference", "machine-learning", @@ -15767,37 +21522,49 @@ "do-calculus", "causal-machine-learning" ], - "_language": "Python", - "_homepage": "https://www.pywhy.org/dowhy", - "_description": "DoWhy is a Python library for causal inference that supports explicit modeling and testing of causal assumptions. DoWhy is based on a unified language for causal inference, combining causal graphical models and potential outcomes frameworks. ", - "_organization": "py-why", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2018-05-31T00:00:00.000Z", - "_age_weeks": 237, - "_stars_per_week": 23.06, - "_pop_contributor_count": 64, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 71, + "_pop_contributor_logins": [ + "Arshiaarya", + "Tanmay-Kulkarni101", + "akelleh@barclaysib;columbia", + "allcontributors[bot]", + "amit-sharma", + "andresmor-ms", + "bloebp@amazon", + "darthtrevino@microsoft", + "kailashbuki", + "petergtz@amazonwebservices" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "amazon", - "barclaysib;columbia" + "amazonwebservices", + "barclaysib;columbia", + "microsoft" + ], + "_pop_contributor_orgs_raw": [ + "@Microsoft ", + "Amazon", + "Amazon Web Services", + "Barclays IB; Columbia" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.81, - "_pop_updated_issues_count": 191, - "_pop_closed_issues_count": 159, - "_pop_created_since_days": 55, + "_pop_commit_frequency": 6.23, + "_pop_updated_issues_count": 133, + "_pop_closed_issues_count": 89, + "_pop_created_since_days": 58, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, + "_pop_recent_releases_count": 4, "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 191.0, - "_pop_comment_count": 321.0, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 133.0, + "_pop_comment_count": 337.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 5, - "_pop_score": 47.82, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 0, + "_pop_score": 47.76, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/py-why/dowhy/master/README.rst", "_readme_localurl": "py-why~dowhy~README.rst", @@ -15811,6 +21578,75 @@ "py-why~dowhy~pyproject.toml" ] }, + { + "index": 910, + "category": "perf", + "githuburl": "https://github.com/exaloop/codon", + "featured": null, + "links": null, + "description": null, + "_repopath": "exaloop/codon", + "_reponame": "codon", + "_stars": 5649, + "_forks": 187, + "_watches": 48, + "_language": "C++", + "_homepage": "https://docs.exaloop.io/codon", + "_description": "codon: A high-performance, zero-overhead, extensible Python compiler using LLVM", + "_organization": "exaloop", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-09-27T00:00:00.000Z", + "_age_weeks": 73, + "_stars_per_week": 77.08, + "_topics": [ + "python", + "compiler", + "llvm", + "high-performance", + "gpu-programming", + "parallel-programming" + ], + "_last_commit_date": "2023-02-06T00:00:00.000Z", + "_pop_contributor_count": 7, + "_pop_contributor_logins": [ + "HarisSmajlovic@universityofvictoria", + "arshajii", + "inumanag@universityofvictoria", + "isnumanagic", + "learnforpractice", + "markhend", + "stephenberry" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "universityofvictoria" + ], + "_pop_contributor_orgs_raw": [ + "University of Victoria" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.73, + "_pop_updated_issues_count": 140, + "_pop_closed_issues_count": 100, + "_pop_created_since_days": 17, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 140.0, + "_pop_comment_count": 316.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 32.81, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/exaloop/codon/master/README.md", + "_readme_localurl": "exaloop~codon~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 193, "category": "util", @@ -15820,9 +21656,17 @@ "description": null, "_repopath": "pycqa/isort", "_reponame": "isort", - "_stars": 5429, - "_forks": 502, - "_watches": 42, + "_stars": 5623, + "_forks": 518, + "_watches": 46, + "_language": "Python", + "_homepage": "https://pycqa.github.io/isort/", + "_description": "isort: A Python utility / library to sort imports.", + "_organization": "pycqa", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2013-09-02T00:00:00.000Z", + "_age_weeks": 494, + "_stars_per_week": 11.38, "_topics": [ "auto-formatter", "isort", @@ -15836,39 +21680,55 @@ "python3", "hacktoberfest" ], - "_language": "Python", - "_homepage": "https://pycqa.github.io/isort/", - "_description": "isort: A Python utility / library to sort imports.", - "_organization": "pycqa", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2013-09-02T00:00:00.000Z", - "_age_weeks": 485, - "_stars_per_week": 11.19, - "_pop_contributor_count": 271, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-26T00:00:00.000Z", + "_pop_contributor_count": 280, + "_pop_contributor_logins": [ + "akonsta@opennms", + "anirudnits@google", + "blueyed@freelancer,upforhire", + "gofr", + "jdufresne@pioneervalleybooks", + "mkurnikov", + "orsinium@sendcloud", + "staticdev@swisscom", + "sztamas", + "timothycrosley@stripe" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "freelancer,upforhire", "google", + "opennms", "pioneervalleybooks", + "sendcloud", "stripe", "swisscom" ], + "_pop_contributor_orgs_raw": [ + "@sendcloud", + "Freelancer, up for hire", + "Google", + "OpenNMS", + "Pioneer Valley Books", + "Stripe", + "Swisscom" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.6, - "_pop_updated_issues_count": 124, - "_pop_closed_issues_count": 92, - "_pop_created_since_days": 113, + "_pop_commit_frequency": 2.31, + "_pop_updated_issues_count": 154, + "_pop_closed_issues_count": 121, + "_pop_created_since_days": 115, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, + "_pop_recent_releases_count": 8, "_pop_recent_releases_estimated_tags": 15, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 124.0, - "_pop_comment_count": 106.0, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 154.0, + "_pop_comment_count": 168.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 9130, - "_pop_score": 65.37, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 53.35, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pycqa/isort/master/README.md", "_readme_localurl": "pycqa~isort~README.md", @@ -15883,406 +21743,351 @@ ] }, { - "index": 96, - "category": "data", - "githuburl": "https://github.com/vi3k6i5/flashtext", + "index": 538, + "category": "nlp", + "githuburl": "https://github.com/nvidia/nemo", "featured": null, "links": null, "description": null, - "_repopath": "vi3k6i5/flashtext", - "_reponame": "flashtext", - "_stars": 5326, - "_forks": 597, - "_watches": 139, + "_repopath": "nvidia/nemo", + "_reponame": "NeMo", + "_stars": 5618, + "_forks": 1388, + "_watches": 136, + "_language": "Python", + "_homepage": "https://nvidia.github.io/NeMo/", + "_description": "NeMo: a toolkit for conversational AI", + "_organization": "nvidia", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-08-05T00:00:00.000Z", + "_age_weeks": 185, + "_stars_per_week": 30.32, "_topics": [ - "search-in-text", - "keyword-extraction", + "deep-learning", + "speech-recognition", "nlp", - "word2vec", - "data-extraction" + "nlp-machine-learning", + "neural-network", + "machine-translation", + "speech-synthesis", + "speech-to-text", + "text-to-speech", + "nmt", + "language-model", + "speaker-diarization", + "speaker-recognition", + "text-normalization", + "asr", + "tts" ], - "_language": "Python", - "_homepage": null, - "_description": "flashtext: Extract Keywords from sentence or Replace keywords in sentences.", - "_organization": "vi3k6i5", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2020-05-03T00:00:00.000Z", - "_created_at": "2017-08-15T00:00:00.000Z", - "_age_weeks": 278, - "_stars_per_week": 19.1, - "_pop_contributor_count": 7, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "meta" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 65, - "_pop_updated_since_days": 32, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 4.0, - "_pop_comment_count": 5.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 5, - "_pop_score": 18.52, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/vi3k6i5/flashtext/master/README.rst", - "_readme_localurl": "vi3k6i5~flashtext~README.rst", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/vi3k6i5/flashtext/master/setup.py" - ], - "_requirements_localurls": [ - "vi3k6i5~flashtext~setup.py" - ] - }, - { - "index": 579, - "category": "ml", - "githuburl": "https://github.com/probml/pyprobml", - "featured": null, - "links": null, - "description": null, - "_repopath": "probml/pyprobml", - "_reponame": "pyprobml", - "_stars": 5282, - "_forks": 1249, - "_watches": 173, - "_topics": [ - "jupyter-notebooks", - "machine-learning", - "colab", - "pml", - "probabilistic-programming", - "jax", - "tensorflow", - "pytorch", - "pymc3", - "numpyro", - "flax", - "pyro", - "blackjax" + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 206, + "_pop_contributor_logins": [ + "VahidooX@nvidia", + "blisc", + "chiphuyen", + "ekmb@nyu,nvidia", + "ericharper", + "okuchaiev@nvidia", + "redoctopus@nvidia", + "titu1994@nvidia", + "tkornuta-nvidia@nvidia", + "yzhang123@nvidia" ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "pyprobml: Python code for \"Probabilistic Machine learning\" book by Kevin Murphy", - "_organization": "probml", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2016-08-17T00:00:00.000Z", - "_age_weeks": 330, - "_stars_per_week": 15.97, - "_pop_contributor_count": 66, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "collaborative,learning,andadaptiverobots(clear)", - "google", - "iitgandhinagar", - "indianinstituteofscience(iisc)", - "nvidia" + "nvidia", + "nyu,nvidia" + ], + "_pop_contributor_orgs_raw": [ + "@NVIDIA", + "@nvidia", + "NVIDIA", + "NYU, NVIDIA" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 10.58, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 77, + "_pop_commit_frequency": 18.37, + "_pop_updated_issues_count": 671, + "_pop_closed_issues_count": 575, + "_pop_created_since_days": 43, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 7.0, - "_pop_comment_count": 3.0, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 671.0, + "_pop_comment_count": 988.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.4, - "_pop_dependents_count": 232, - "_pop_score": 50.48, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/probml/pyprobml/master/README.md", - "_readme_localurl": "probml~pyprobml~README.md", + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 51.94, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/nvidia/nemo/master/README.rst", + "_readme_localurl": "nvidia~nemo~README.rst", "_requirements_filenames": [ - "requirements.txt", + "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/probml/pyprobml/master/requirements.txt", - "https://raw.githubusercontent.com/probml/pyprobml/master/pyproject.toml" + "https://raw.githubusercontent.com/nvidia/nemo/master/setup.py", + "https://raw.githubusercontent.com/nvidia/nemo/master/pyproject.toml" ], "_requirements_localurls": [ - "probml~pyprobml~requirements.txt", - "probml~pyprobml~pyproject.toml" + "nvidia~nemo~setup.py", + "nvidia~nemo~pyproject.toml" ] }, { - "index": 278, - "category": "data", - "githuburl": "https://github.com/airbnb/knowledge-repo", + "index": 439, + "category": "perf", + "githuburl": "https://github.com/mher/flower", "featured": null, "links": null, "description": null, - "_repopath": "airbnb/knowledge-repo", - "_reponame": "knowledge-repo", - "_stars": 5238, - "_forks": 704, - "_watches": 180, - "_topics": [ - "data", - "data-science", - "knowledge", - "data-analysis" - ], + "_repopath": "mher/flower", + "_reponame": "flower", + "_stars": 5566, + "_forks": 999, + "_watches": 143, "_language": "Python", - "_homepage": "", - "_description": "knowledge-repo: A next-generation curated knowledge sharing platform for data scientists and other technical professions.", - "_organization": "airbnb", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2016-08-17T00:00:00.000Z", - "_age_weeks": 330, - "_stars_per_week": 15.84, - "_pop_contributor_count": 69, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "airbnb", - "datascientistatnetflix" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 7.25, - "_pop_updated_issues_count": 17, - "_pop_closed_issues_count": 13, - "_pop_created_since_days": 77, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 17.0, - "_pop_comment_count": 9.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 16, - "_pop_score": 43.26, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/airbnb/knowledge-repo/master/README.md", - "_readme_localurl": "airbnb~knowledge-repo~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/airbnb/knowledge-repo/master/requirements.txt", - "https://raw.githubusercontent.com/airbnb/knowledge-repo/master/setup.py" - ], - "_requirements_localurls": [ - "airbnb~knowledge-repo~requirements.txt", - "airbnb~knowledge-repo~setup.py" - ] - }, - { - "index": 283, - "category": "util", - "githuburl": "https://github.com/sdispater/pendulum", - "featured": null, - "links": null, - "description": null, - "_repopath": "sdispater/pendulum", - "_reponame": "pendulum", - "_stars": 5226, - "_forks": 312, - "_watches": 63, + "_homepage": "https://flower.readthedocs.io", + "_description": "flower: Real-time monitor and web admin for Celery distributed task queue", + "_organization": "mher", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-07-08T00:00:00.000Z", + "_age_weeks": 554, + "_stars_per_week": 10.04, "_topics": [ + "celery", + "task-queue", + "monitoring", + "administration", + "workers", + "rabbitmq", + "redis", "python", - "datetime", - "date", - "time", - "python3", - "timezones" + "asynchronous" ], - "_language": "Python", - "_homepage": "https://pendulum.eustace.io", - "_description": "pendulum: Python datetimes made easy", - "_organization": "sdispater", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-24T00:00:00.000Z", - "_created_at": "2016-06-27T00:00:00.000Z", - "_age_weeks": 338, - "_stars_per_week": 15.46, - "_pop_contributor_count": 87, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-11-14T00:00:00.000Z", + "_pop_contributor_count": 196, + "_pop_contributor_logins": [ + "Melevir@zipsale", + "Tomasz-Kluczkowski", + "adamgreig", + "ask@robinhoodmarkets", + "david-thorman@kloudless", + "igeorgievsky", + "jerzyk@trilab.pl", + "mher", + "pazur", + "tebeka@353solutions" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "stxnext" + "353solutions", + "kloudless", + "robinhoodmarkets", + "trilab.pl", + "zipsale" + ], + "_pop_contributor_orgs_raw": [ + "353solutions", + "@robinhoodmarkets ", + "Kloudless Inc.", + "Zipsale", + "trilab.pl" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.75, - "_pop_updated_issues_count": 39, - "_pop_closed_issues_count": 15, - "_pop_created_since_days": 79, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 39.0, + "_pop_commit_frequency": 0.27, + "_pop_updated_issues_count": 27, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 129, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 27.0, "_pop_comment_count": 28.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 60, - "_pop_score": 41.09, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 40.47, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/sdispater/pendulum/master/README.rst", - "_readme_localurl": "sdispater~pendulum~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/mher/flower/master/README.rst", + "_readme_localurl": "mher~flower~README.rst", "_requirements_filenames": [ - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/sdispater/pendulum/master/pyproject.toml" + "https://raw.githubusercontent.com/mher/flower/master/setup.py" ], "_requirements_localurls": [ - "sdispater~pendulum~pyproject.toml" + "mher~flower~setup.py" ] }, { - "index": 632, - "category": "util", - "githuburl": "https://github.com/pyca/cryptography", + "index": 784, + "category": "diffusion", + "githuburl": "https://github.com/xavierxiao/dreambooth-stable-diffusion", "featured": null, "links": null, "description": null, - "_repopath": "pyca/cryptography", - "_reponame": "cryptography", - "_stars": 5220, - "_forks": 1103, - "_watches": 119, + "_repopath": "xavierxiao/dreambooth-stable-diffusion", + "_reponame": "Dreambooth-Stable-Diffusion", + "_stars": 5515, + "_forks": 607, + "_watches": 80, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "Dreambooth-Stable-Diffusion: Implementation of Dreambooth (https://arxiv.org/abs/2208.12242) with Stable Diffusion", + "_organization": "xavierxiao", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-09-06T00:00:00.000Z", + "_age_weeks": 24, + "_stars_per_week": 228.43, "_topics": [ - "python", - "cryptography" + "pytorch", + "pytorch-lightning", + "stable-diffusion", + "text-to-image" + ], + "_last_commit_date": "2022-09-21T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "XavierXiao@universityofchicago" ], - "_language": "Python", - "_homepage": "https://cryptography.io", - "_description": "cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.", - "_organization": "pyca", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2013-08-07T00:00:00.000Z", - "_age_weeks": 488, - "_stars_per_week": 10.68, - "_pop_contributor_count": 275, "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "purple-dot" + "universityofchicago" + ], + "_pop_contributor_orgs_raw": [ + "University of Chicago" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 14.67, - "_pop_updated_issues_count": 380, - "_pop_closed_issues_count": 359, - "_pop_created_since_days": 114, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.6, + "_pop_updated_issues_count": 45, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 6, + "_pop_updated_since_days": 5, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 11, - "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 380.0, - "_pop_comment_count": 341.0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 45.0, + "_pop_comment_count": 55.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 11167, - "_pop_score": 67.29, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pyca/cryptography/master/README.rst", - "_readme_localurl": "pyca~cryptography~README.rst", + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 13.24, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/xavierxiao/dreambooth-stable-diffusion/master/README.md", + "_readme_localurl": "xavierxiao~dreambooth-stable-diffusion~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pyca/cryptography/master/setup.py", - "https://raw.githubusercontent.com/pyca/cryptography/master/pyproject.toml" + "https://raw.githubusercontent.com/xavierxiao/dreambooth-stable-diffusion/master/setup.py" ], "_requirements_localurls": [ - "pyca~cryptography~setup.py", - "pyca~cryptography~pyproject.toml" + "xavierxiao~dreambooth-stable-diffusion~setup.py" ] }, { - "index": 538, - "category": "nlp", - "githuburl": "https://github.com/nvidia/nemo", + "index": 161, + "category": "ml", + "githuburl": "https://github.com/wandb/client", "featured": null, "links": null, "description": null, - "_repopath": "nvidia/nemo", - "_reponame": "NeMo", - "_stars": 5219, - "_forks": 1294, - "_watches": 138, + "_repopath": "wandb/client", + "_reponame": "wandb", + "_stars": 5483, + "_forks": 428, + "_watches": 44, + "_language": "Python", + "_homepage": "https://wandb.ai", + "_description": "wandb: \ud83d\udd25 A tool for visualizing and tracking your machine learning experiments. This repo contains the CLI and Python API.", + "_organization": "wandb", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-03-24T00:00:00.000Z", + "_age_weeks": 308, + "_stars_per_week": 17.76, "_topics": [ + "machine-learning", + "experiment-track", "deep-learning", - "speech-recognition", - "nlp", - "nlp-machine-learning", - "neural-network", - "machine-translation", - "speech-synthesis", - "speech-to-text", - "text-to-speech", - "nmt", - "language-model", - "speaker-diarization", - "speaker-recognition", - "text-normalization", - "asr", - "tts" + "keras", + "tensorflow", + "pytorch", + "hyperparameter-search", + "reinforcement-learning", + "mlops", + "data-science", + "collaboration", + "hyperparameter-optimization", + "reproducibility", + "hyperparameter-tuning", + "data-versioning", + "model-versioning", + "ml-platform" + ], + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 137, + "_pop_contributor_logins": [ + "KyleGoyette", + "adrianbg", + "adrnswanberg", + "dmitryduev", + "kptkin", + "lukas@weightsandbiases", + "raubitsj", + "shawnlewis", + "tssweeney", + "vanpelt@crowdflower.com" ], - "_language": "Python", - "_homepage": "https://nvidia.github.io/NeMo/", - "_description": "NeMo: a toolkit for conversational AI", - "_organization": "nvidia", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2019-08-05T00:00:00.000Z", - "_age_weeks": 176, - "_stars_per_week": 29.65, - "_pop_contributor_count": 193, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "nvidia", - "nyu,nvidia" + "crowdflower.com", + "weightsandbiases" + ], + "_pop_contributor_orgs_raw": [ + "Weights and Biases", + "crowdflower.com" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 18.9, - "_pop_updated_issues_count": 833, - "_pop_closed_issues_count": 753, - "_pop_created_since_days": 41, + "_pop_commit_frequency": 12.52, + "_pop_updated_issues_count": 830, + "_pop_closed_issues_count": 442, + "_pop_created_since_days": 72, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 14, - "_pop_recent_releases_estimated_tags": 12, - "_pop_recent_releases_adjusted_count": 14, - "_pop_issue_count": 833.0, - "_pop_comment_count": 1535.0, + "_pop_recent_releases_count": 28, + "_pop_recent_releases_estimated_tags": 21, + "_pop_recent_releases_adjusted_count": 28, + "_pop_issue_count": 832.0, + "_pop_comment_count": 1626.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 885, - "_pop_score": 64.8, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/nvidia/nemo/master/README.rst", - "_readme_localurl": "nvidia~nemo~README.rst", + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 53.36, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/wandb/client/master/README.md", + "_readme_localurl": "wandb~client~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt", + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/nvidia/nemo/master/setup.py" + "https://raw.githubusercontent.com/wandb/client/master/requirements.txt", + "https://raw.githubusercontent.com/wandb/client/master/setup.py", + "https://raw.githubusercontent.com/wandb/client/master/pyproject.toml" ], "_requirements_localurls": [ - "nvidia~nemo~setup.py" + "wandb~client~requirements.txt", + "wandb~client~setup.py", + "wandb~client~pyproject.toml" ] }, { @@ -16294,9 +22099,17 @@ "description": null, "_repopath": "google/automl", "_reponame": "automl", - "_stars": 5211, - "_forks": 1382, - "_watches": 150, + "_stars": 5477, + "_forks": 1409, + "_watches": 157, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "automl: Google Brain AutoML", + "_organization": "google", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-03-12T00:00:00.000Z", + "_age_weeks": 153, + "_stars_per_week": 35.6, "_topics": [ "automl", "efficientdet", @@ -16304,37 +22117,48 @@ "efficientnet", "efficientnetv2" ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "automl: Google Brain AutoML", - "_organization": "google", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-10-09T00:00:00.000Z", - "_created_at": "2020-03-12T00:00:00.000Z", - "_age_weeks": 144, - "_stars_per_week": 36.04, - "_pop_contributor_count": 37, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 40, + "_pop_contributor_logins": [ + "Ely-S", + "LucasSloan@google", + "NikZak", + "Samjith888@detecttechnologies", + "fsx950223@amd", + "jcburnel", + "kartik4949", + "mingxingtan@google", + "mmaithani", + "wuhy08" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "amd", + "detecttechnologies", "google" ], + "_pop_contributor_orgs_raw": [ + "@google", + "AMD", + "Detect Technologies", + "Google" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.48, - "_pop_updated_issues_count": 13, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 34, - "_pop_updated_since_days": 2, + "_pop_commit_frequency": 0.42, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 36, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 13.0, - "_pop_comment_count": 4.0, + "_pop_issue_count": 10.0, + "_pop_comment_count": 5.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.3, - "_pop_dependents_count": 959, - "_pop_score": 39.58, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 32.47, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google/automl/master/README.md", "_readme_localurl": "google~automl~README.md", @@ -16343,155 +22167,179 @@ "_requirements_localurls": [] }, { - "index": 434, - "category": "util", - "githuburl": "https://github.com/scikit-image/scikit-image", + "index": 896, + "category": "diffusion", + "githuburl": "https://github.com/apple/ml-stable-diffusion", "featured": null, "links": null, "description": null, - "_repopath": "scikit-image/scikit-image", - "_reponame": "scikit-image", - "_stars": 5172, - "_forks": 2076, - "_watches": 187, - "_topics": [ - "image-processing", - "python", - "computer-vision", - "hacktoberfest", - "closember" - ], + "_repopath": "apple/ml-stable-diffusion", + "_reponame": "ml-stable-diffusion", + "_stars": 5472, + "_forks": 253, + "_watches": 71, "_language": "Python", - "_homepage": "https://scikit-image.org", - "_description": "scikit-image: Image processing in Python", - "_organization": "scikit-image", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2011-07-07T00:00:00.000Z", - "_age_weeks": 597, - "_stars_per_week": 8.66, - "_pop_contributor_count": 586, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_homepage": "", + "_description": "ml-stable-diffusion: Stable Diffusion with Core ML on Apple Silicon", + "_organization": "apple", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-11-16T00:00:00.000Z", + "_age_weeks": 14, + "_stars_per_week": 390.86, + "_topics": [], + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 15, + "_pop_contributor_logins": [ + "JustinMeans@outtakes\u2022voosey", + "Wanaldino", + "atiorh", + "cclauss@christianclauss", + "godly-devotion", + "kasima", + "littleowl", + "liuliu", + "nathantannar4", + "pcuenca" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "biomedicinediscoveryinstitute,monashuniversity", - "microsoft", - "mongodb", - "nvidia", - "universityofcalifornia,berkeley" + "christianclauss", + "outtakes\u2022voosey" + ], + "_pop_contributor_orgs_raw": [ + "Christian Clauss", + "Outtakes \u2022 Voosey" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.21, - "_pop_updated_issues_count": 376, - "_pop_closed_issues_count": 226, - "_pop_created_since_days": 139, + "_pop_commit_frequency": 0.5, + "_pop_updated_issues_count": 132, + "_pop_closed_issues_count": 47, + "_pop_created_since_days": 3, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 8, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 377.0, - "_pop_comment_count": 566.0, + "_pop_issue_count": 132.0, + "_pop_comment_count": 399.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 779, - "_pop_score": 66.91, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 0, + "_pop_score": 31.03, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/scikit-image/scikit-image/master/README.md", - "_readme_localurl": "scikit-image~scikit-image~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/README.md", + "_readme_localurl": "apple~ml-stable-diffusion~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/scikit-image/scikit-image/master/requirements.txt", - "https://raw.githubusercontent.com/scikit-image/scikit-image/master/setup.py", - "https://raw.githubusercontent.com/scikit-image/scikit-image/master/pyproject.toml" + "https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/requirements.txt", + "https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/setup.py" ], "_requirements_localurls": [ - "scikit-image~scikit-image~requirements.txt", - "scikit-image~scikit-image~setup.py", - "scikit-image~scikit-image~pyproject.toml" + "apple~ml-stable-diffusion~requirements.txt", + "apple~ml-stable-diffusion~setup.py" ] }, { - "index": 3, + "index": 579, "category": "ml", - "githuburl": "https://github.com/awslabs/autogluon", + "githuburl": "https://github.com/probml/pyprobml", "featured": null, "links": null, "description": null, - "_repopath": "awslabs/autogluon", - "_reponame": "autogluon", - "_stars": 5160, - "_forks": 674, - "_watches": 94, + "_repopath": "probml/pyprobml", + "_reponame": "pyprobml", + "_stars": 5446, + "_forks": 1303, + "_watches": 178, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "pyprobml: Python code for \"Probabilistic Machine learning\" book by Kevin Murphy", + "_organization": "probml", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-08-17T00:00:00.000Z", + "_age_weeks": 340, + "_stars_per_week": 16.02, "_topics": [ - "automl", + "jupyter-notebooks", "machine-learning", - "data-science", - "deep-learning", - "ensemble-learning", - "image-classification", - "computer-vision", - "natural-language-processing", - "structured-data", - "object-detection", - "gluon", - "transfer-learning", + "colab", + "pml", + "probabilistic-programming", + "jax", + "tensorflow", "pytorch", - "automated-machine-learning", - "scikit-learn", - "autogluon", - "tabular-data", - "hyperparameter-optimization", - "time-series", - "forecasting" + "pymc3", + "numpyro", + "flax", + "pyro", + "blackjax" ], - "_language": "Python", - "_homepage": "https://auto.gluon.ai/", - "_description": "AutoGluon: AutoML for Image, Text, Time Series, and Tabular Data", - "_organization": "awslabs", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2019-07-29T00:00:00.000Z", - "_age_weeks": 177, - "_stars_per_week": 29.15, - "_pop_contributor_count": 96, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-01-20T00:00:00.000Z", + "_pop_contributor_count": 67, + "_pop_contributor_logins": [ + "Drishttii", + "Duane321@lyft", + "Neoanarika@collaborative,learning,andadaptiverobots(clear)", + "ashishpapanai", + "gerdm@queenmaryuniversityoflondon", + "karalleyna", + "karm-patel@indianinstituteofscience(iisc)", + "mjsML@nvidia", + "murphyk@google", + "patel-zeel@iitgandhinagar" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "amazon", - "amazonai", - "amazonwebservices", - "awsai" + "collaborative,learning,andadaptiverobots(clear)", + "google", + "iitgandhinagar", + "indianinstituteofscience(iisc)", + "lyft", + "nvidia", + "queenmaryuniversityoflondon" + ], + "_pop_contributor_orgs_raw": [ + "@NVIDIA ", + "Collaborative, Learning, and Adaptive Robots (CLEAR)", + "Google", + "IIT Gandhinagar", + "Indian Institute of Science (IISc)", + "Lyft", + "Queen Mary University of London" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 12.71, - "_pop_updated_issues_count": 481, - "_pop_closed_issues_count": 353, - "_pop_created_since_days": 41, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 10, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 10, - "_pop_issue_count": 481.0, - "_pop_comment_count": 972.0, + "_pop_commit_frequency": 9.54, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 79, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 8.0, + "_pop_comment_count": 13.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 56, - "_pop_score": 58.67, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 43.07, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/awslabs/autogluon/master/README.md", - "_readme_localurl": "awslabs~autogluon~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/probml/pyprobml/master/README.md", + "_readme_localurl": "probml~pyprobml~README.md", "_requirements_filenames": [ + "requirements.txt", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/awslabs/autogluon/master/pyproject.toml" + "https://raw.githubusercontent.com/probml/pyprobml/master/requirements.txt", + "https://raw.githubusercontent.com/probml/pyprobml/master/pyproject.toml" ], "_requirements_localurls": [ - "awslabs~autogluon~pyproject.toml" + "probml~pyprobml~requirements.txt", + "probml~pyprobml~pyproject.toml" ] }, { @@ -16503,47 +22351,67 @@ "description": null, "_repopath": "unit8co/darts", "_reponame": "darts", - "_stars": 5138, - "_forks": 557, - "_watches": 41, + "_stars": 5405, + "_forks": 597, + "_watches": 42, + "_language": "Python", + "_homepage": "https://unit8co.github.io/darts/", + "_description": "darts: A python library for user-friendly forecasting and anomaly detection on time series.", + "_organization": "unit8co", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-09-13T00:00:00.000Z", + "_age_weeks": 231, + "_stars_per_week": 23.31, "_topics": [ "python", "time-series", "forecasting", "machine-learning", - "deep-learning" + "deep-learning", + "anomaly-detection", + "data-science" ], - "_language": "Python", - "_homepage": "https://unit8co.github.io/darts/", - "_description": "darts: A python library for easy manipulation and forecasting of time series.", - "_organization": "unit8co", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2018-09-13T00:00:00.000Z", - "_age_weeks": 222, - "_stars_per_week": 23.08, - "_pop_contributor_count": 73, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 79, + "_pop_contributor_logins": [ + "LeoTafti", + "TheMP@unit8co", + "dennisbader", + "endrjuskr@unit8sa", + "gdevos010@episci", + "hrzn@unit8co", + "inverniz", + "madtoinou", + "pennfranc", + "tomasvanpottelbergh" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "episci", "unit8co", "unit8sa" ], + "_pop_contributor_orgs_raw": [ + "@unit8co ", + "EpiSci", + "Unit8 SA" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.38, - "_pop_updated_issues_count": 278, - "_pop_closed_issues_count": 166, - "_pop_created_since_days": 52, + "_pop_commit_frequency": 4.25, + "_pop_updated_issues_count": 340, + "_pop_closed_issues_count": 210, + "_pop_created_since_days": 54, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 10, + "_pop_recent_releases_count": 7, "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 10, - "_pop_issue_count": 278.0, - "_pop_comment_count": 419.0, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 340.0, + "_pop_comment_count": 572.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 13, - "_pop_score": 50.21, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 47.21, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/unit8co/darts/master/README.md", "_readme_localurl": "unit8co~darts~README.md", @@ -16561,866 +22429,1147 @@ ] }, { - "index": 546, - "category": "ml-dl", - "githuburl": "https://github.com/facebookresearch/mmf", + "index": 932, + "category": "nlp", + "githuburl": "https://github.com/lucidrains/palm-rlhf-pytorch", "featured": null, "links": null, "description": null, - "_repopath": "facebookresearch/mmf", - "_reponame": "mmf", - "_stars": 5093, - "_forks": 899, - "_watches": 117, + "_repopath": "lucidrains/palm-rlhf-pytorch", + "_reponame": "PaLM-rlhf-pytorch", + "_stars": 5372, + "_forks": 405, + "_watches": 109, + "_language": "Python", + "_homepage": "", + "_description": "PaLM-rlhf-pytorch: Implementation of RLHF (Reinforcement Learning with Human Feedback) on top of the PaLM architecture. Basically ChatGPT but with PaLM", + "_organization": "lucidrains", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-12-09T00:00:00.000Z", + "_age_weeks": 10, + "_stars_per_week": 501.39, "_topics": [ - "pytorch", - "vqa", - "pretrained-models", - "multimodal", + "artificial-intelligence", + "attention-mechanisms", "deep-learning", - "captioning", - "dialog", - "textvqa", - "hateful-memes", - "multi-tasking" + "reinforcement-learning", + "transformers", + "human-feedback" ], - "_language": "Python", - "_homepage": "https://mmf.sh/", - "_description": "mmf: A modular framework for vision & language multimodal research from Facebook AI Research (FAIR)", - "_organization": "facebookresearch", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-10T00:00:00.000Z", - "_created_at": "2018-06-27T00:00:00.000Z", - "_age_weeks": 233, - "_stars_per_week": 21.79, - "_pop_contributor_count": 107, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "ell-hol@orange", + "eltociear@bandism", + "hypnopump", + "lucidrains" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "metaai", - "researchhuggingface,contributorjquery,pastfacebookresearch", - "uwstudent" + "bandism", + "orange" + ], + "_pop_contributor_orgs_raw": [ + "@bandism ", + "Orange" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.83, - "_pop_updated_issues_count": 18, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 54, + "_pop_commit_frequency": 1.83, + "_pop_updated_issues_count": 29, + "_pop_closed_issues_count": 20, + "_pop_created_since_days": 2, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 18.0, - "_pop_comment_count": 12.0, + "_pop_recent_releases_count": 59, + "_pop_recent_releases_estimated_tags": 359, + "_pop_recent_releases_adjusted_count": 59, + "_pop_issue_count": 29.0, + "_pop_comment_count": 94.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 3572, - "_pop_score": 51.55, + "_pop_comment_frequency": 3.2, + "_pop_dependents_count": 0, + "_pop_score": 30.73, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/mmf/master/README.md", - "_readme_localurl": "facebookresearch~mmf~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/lucidrains/palm-rlhf-pytorch/master/README.md", + "_readme_localurl": "lucidrains~palm-rlhf-pytorch~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/facebookresearch/mmf/master/requirements.txt", - "https://raw.githubusercontent.com/facebookresearch/mmf/master/setup.py", - "https://raw.githubusercontent.com/facebookresearch/mmf/master/pyproject.toml" + "https://raw.githubusercontent.com/lucidrains/palm-rlhf-pytorch/master/setup.py" ], "_requirements_localurls": [ - "facebookresearch~mmf~requirements.txt", - "facebookresearch~mmf~setup.py", - "facebookresearch~mmf~pyproject.toml" + "lucidrains~palm-rlhf-pytorch~setup.py" ] }, { - "index": 352, - "category": "ml-ops", - "githuburl": "https://github.com/activeloopai/hub", + "index": 971, + "category": "ml", + "githuburl": "https://github.com/keras-rl/keras-rl", "featured": null, "links": null, "description": null, - "_repopath": "activeloopai/hub", - "_reponame": "deeplake", - "_stars": 5093, - "_forks": 412, - "_watches": 66, + "_repopath": "keras-rl/keras-rl", + "_reponame": "keras-rl", + "_stars": 5372, + "_forks": 1360, + "_watches": 211, + "_language": "Python", + "_homepage": "http://keras-rl.readthedocs.io/", + "_description": "keras-rl: Deep Reinforcement Learning for Keras.", + "_organization": "keras-rl", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2016-07-02T00:00:00.000Z", + "_age_weeks": 346, + "_stars_per_week": 15.5, "_topics": [ - "datasets", - "deep-learning", - "machine-learning", - "data-science", - "pytorch", + "keras", "tensorflow", - "data-version-control", - "python", - "ai", - "ml", - "mlops", - "computer-vision", - "cv", - "data-processing", - "image-processing", - "data-centric", - "jupyter-notebook", - "datalake", - "lakehouse" + "theano", + "reinforcement-learning", + "neural-networks", + "machine-learning" + ], + "_last_commit_date": "2019-11-11T00:00:00.000Z", + "_pop_contributor_count": 41, + "_pop_contributor_logins": [ + "RaphaelMeudec", + "RyanHope", + "aliostad", + "bstriner", + "jorahn@42digital", + "kashif", + "matthiasplappert", + "raj-rohan", + "raopku", + "rmst" ], - "_language": "Python", - "_homepage": "https://activeloop.ai", - "_description": "deeplake: Data Lake for Deep Learning. Build, manage, query, version, & visualize datasets. Stream data real-time to PyTorch/TensorFlow. https://activeloop.ai ", - "_organization": "activeloopai", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2019-08-09T00:00:00.000Z", - "_age_weeks": 175, - "_stars_per_week": 29.03, - "_pop_contributor_count": 109, "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "activeloop" + "42digital" + ], + "_pop_contributor_orgs_raw": [ + "@42DIGITAL " ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 23.83, - "_pop_updated_issues_count": 202, - "_pop_closed_issues_count": 178, - "_pop_created_since_days": 41, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 47, - "_pop_recent_releases_estimated_tags": 30, - "_pop_recent_releases_adjusted_count": 47, - "_pop_issue_count": 202.0, - "_pop_comment_count": 254.0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 81, + "_pop_updated_since_days": 40, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 2.0, + "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 242, - "_pop_score": 57.54, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 19.9, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/activeloopai/hub/master/README.md", - "_readme_localurl": "activeloopai~hub~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/keras-rl/keras-rl/master/README.md", + "_readme_localurl": "keras-rl~keras-rl~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/activeloopai/hub/master/requirements.txt", - "https://raw.githubusercontent.com/activeloopai/hub/master/setup.py" + "https://raw.githubusercontent.com/keras-rl/keras-rl/master/setup.py" ], "_requirements_localurls": [ - "activeloopai~hub~requirements.txt", - "activeloopai~hub~setup.py" + "keras-rl~keras-rl~setup.py" ] }, { - "index": 161, - "category": "ml", - "githuburl": "https://github.com/wandb/client", + "index": 632, + "category": "util", + "githuburl": "https://github.com/pyca/cryptography", "featured": null, "links": null, "description": null, - "_repopath": "wandb/client", - "_reponame": "wandb", - "_stars": 5078, - "_forks": 387, - "_watches": 38, + "_repopath": "pyca/cryptography", + "_reponame": "cryptography", + "_stars": 5364, + "_forks": 1133, + "_watches": 120, + "_language": "Python", + "_homepage": "https://cryptography.io", + "_description": "cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.", + "_organization": "pyca", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2013-08-07T00:00:00.000Z", + "_age_weeks": 498, + "_stars_per_week": 10.77, "_topics": [ - "machine-learning", - "experiment-track", - "deep-learning", - "keras", - "tensorflow", - "pytorch", - "hyperparameter-search", - "reinforcement-learning", - "mlops", - "data-science", - "collaboration", - "hyperparameter-optimization", - "reproducibility", - "hyperparameter-tuning", - "data-versioning", - "model-versioning", - "ml-platform" + "python", + "cryptography" ], - "_language": "Python", - "_homepage": "https://wandb.ai", - "_description": "wandb: \ud83d\udd25 A tool for visualizing and tracking your machine learning experiments. This repo contains the CLI and Python API.", - "_organization": "wandb", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2017-03-24T00:00:00.000Z", - "_age_weeks": 299, - "_stars_per_week": 16.96, - "_pop_contributor_count": 135, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 281, + "_pop_contributor_logins": [ + "Ayrx", + "alex", + "dependabot[bot]", + "dreid", + "dstufft@datadog", + "lvh@latacora", + "muattiyah", + "public@purple-dot", + "pyca-boringbot[bot]", + "reaperhulk" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "crowdflower.com", - "weightsandbiases" + "datadog", + "latacora", + "purple-dot" + ], + "_pop_contributor_orgs_raw": [ + "@DataDog", + "@Latacora", + "@purple-dot " ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 11.27, - "_pop_updated_issues_count": 692, - "_pop_closed_issues_count": 325, - "_pop_created_since_days": 70, + "_pop_commit_frequency": 19.96, + "_pop_updated_issues_count": 638, + "_pop_closed_issues_count": 611, + "_pop_created_since_days": 116, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 26, - "_pop_recent_releases_estimated_tags": 21, - "_pop_recent_releases_adjusted_count": 26, - "_pop_issue_count": 692.0, - "_pop_comment_count": 1398.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 638.0, + "_pop_comment_count": 490.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 363, - "_pop_score": 63.32, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/wandb/client/master/README.md", - "_readme_localurl": "wandb~client~README.md", + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 55.07, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pyca/cryptography/master/README.rst", + "_readme_localurl": "pyca~cryptography~README.rst", "_requirements_filenames": [ - "requirements.txt", "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/wandb/client/master/requirements.txt", - "https://raw.githubusercontent.com/wandb/client/master/setup.py", - "https://raw.githubusercontent.com/wandb/client/master/pyproject.toml" + "https://raw.githubusercontent.com/pyca/cryptography/master/setup.py", + "https://raw.githubusercontent.com/pyca/cryptography/master/pyproject.toml" ], "_requirements_localurls": [ - "wandb~client~requirements.txt", - "wandb~client~setup.py", - "wandb~client~pyproject.toml" + "pyca~cryptography~setup.py", + "pyca~cryptography~pyproject.toml" ] }, { - "index": 301, + "index": 96, "category": "data", - "githuburl": "https://github.com/kaggle/kaggle-api", + "githuburl": "https://github.com/vi3k6i5/flashtext", "featured": null, "links": null, "description": null, - "_repopath": "kaggle/kaggle-api", - "_reponame": "kaggle-api", - "_stars": 5073, - "_forks": 978, - "_watches": 188, - "_topics": [], + "_repopath": "vi3k6i5/flashtext", + "_reponame": "flashtext", + "_stars": 5352, + "_forks": 597, + "_watches": 139, "_language": "Python", - "_homepage": "", - "_description": "kaggle-api: Official Kaggle API", - "_organization": "kaggle", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2021-03-15T00:00:00.000Z", - "_created_at": "2018-01-25T00:00:00.000Z", - "_age_weeks": 255, - "_stars_per_week": 19.85, - "_pop_contributor_count": 36, + "_homepage": null, + "_description": "flashtext: Extract Keywords from sentence or Replace keywords in sentences.", + "_organization": "vi3k6i5", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2017-08-15T00:00:00.000Z", + "_age_weeks": 288, + "_stars_per_week": 18.57, + "_topics": [ + "search-in-text", + "keyword-extraction", + "nlp", + "word2vec", + "data-extraction" + ], + "_last_commit_date": "2020-05-03T00:00:00.000Z", + "_pop_contributor_count": 7, + "_pop_contributor_logins": [ + "delirious-lettuce", + "remiadon", + "rompom", + "slotlocker2", + "vi3k6i5@meta" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google" + "meta" + ], + "_pop_contributor_orgs_raw": [ + "Meta" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 37, - "_pop_closed_issues_count": 7, - "_pop_created_since_days": 60, - "_pop_updated_since_days": 21, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 67, + "_pop_updated_since_days": 34, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 37.0, - "_pop_comment_count": 41.0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 27, - "_pop_score": 28.95, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/kaggle/kaggle-api/master/README.md", - "_readme_localurl": "kaggle~kaggle-api~README.md", + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 0, + "_pop_score": 12.85, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/vi3k6i5/flashtext/master/README.rst", + "_readme_localurl": "vi3k6i5~flashtext~README.rst", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/kaggle/kaggle-api/master/setup.py" + "https://raw.githubusercontent.com/vi3k6i5/flashtext/master/setup.py" ], "_requirements_localurls": [ - "kaggle~kaggle-api~setup.py" + "vi3k6i5~flashtext~setup.py" ] }, { - "index": 81, - "category": "util", - "githuburl": "https://github.com/sphinx-doc/sphinx", + "index": 214, + "category": "nlp", + "githuburl": "https://github.com/speechbrain/speechbrain", "featured": null, "links": null, "description": null, - "_repopath": "sphinx-doc/sphinx", - "_reponame": "sphinx", - "_stars": 5056, - "_forks": 1812, - "_watches": 140, + "_repopath": "speechbrain/speechbrain", + "_reponame": "speechbrain", + "_stars": 5345, + "_forks": 1013, + "_watches": 115, + "_language": "Python", + "_homepage": "http://speechbrain.github.io", + "_description": "speechbrain: A PyTorch-based Speech Toolkit", + "_organization": "speechbrain", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-04-28T00:00:00.000Z", + "_age_weeks": 147, + "_stars_per_week": 36.33, "_topics": [ - "python", - "documentation", - "documentation-tool", - "sphinx", - "markdown", - "restructuredtext" + "speech-recognition", + "speech-toolkit", + "speaker-recognition", + "speech-to-text", + "speech-enhancement", + "speech-separation", + "audio", + "audio-processing", + "speech-processing", + "speechrecognition", + "asr", + "voice-recognition", + "spoken-language-understanding", + "speaker-diarization", + "speaker-verification", + "pytorch", + "huggingface", + "transformers", + "language-model", + "deep-learning" ], - "_language": "Python", - "_homepage": "https://www.sphinx-doc.org/", - "_description": "sphinx: The Sphinx documentation generator", - "_organization": "sphinx-doc", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2015-01-02T00:00:00.000Z", - "_age_weeks": 415, - "_stars_per_week": 12.17, - "_pop_contributor_count": 759, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "beproud", - "fzj\u00fclich", - "timeintermedia(timedia)" + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 196, + "_pop_contributor_logins": [ + "30stomercury@ilcc,universityofedinburgh", + "Gastron", + "JianyuanZhong", + "TParcollet@samsung", + "flexthink", + "mravanelli@universityofmontreal", + "nauman-daw@mit", + "popcornell@marchepolytechnicuniversity", + "pplantinga@jpmorganchase", + "ycemsubakan" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "ilcc,universityofedinburgh", + "jpmorganchase", + "marchepolytechnicuniversity", + "mit", + "samsung", + "universityofmontreal" + ], + "_pop_contributor_orgs_raw": [ + "@jpmorganchase", + "ILCC, University of Edinburgh", + "MIT", + "Marche Polytechnic University", + "Samsung", + "University of Montreal" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 13.21, - "_pop_updated_issues_count": 1262, - "_pop_closed_issues_count": 297, - "_pop_created_since_days": 97, + "_pop_commit_frequency": 18.54, + "_pop_updated_issues_count": 151, + "_pop_closed_issues_count": 82, + "_pop_created_since_days": 34, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 15, - "_pop_recent_releases_estimated_tags": 31, - "_pop_recent_releases_adjusted_count": 15, - "_pop_issue_count": 1262.0, - "_pop_comment_count": 578.0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 151.0, + "_pop_comment_count": 377.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 18396, - "_pop_score": 74.04, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/sphinx-doc/sphinx/master/README.rst", - "_readme_localurl": "sphinx-doc~sphinx~README.rst", + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 0, + "_pop_score": 51.72, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/speechbrain/speechbrain/master/README.md", + "_readme_localurl": "speechbrain~speechbrain~README.md", "_requirements_filenames": [ + "requirements.txt", + "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/sphinx-doc/sphinx/master/pyproject.toml" + "https://raw.githubusercontent.com/speechbrain/speechbrain/master/requirements.txt", + "https://raw.githubusercontent.com/speechbrain/speechbrain/master/setup.py", + "https://raw.githubusercontent.com/speechbrain/speechbrain/master/pyproject.toml" ], "_requirements_localurls": [ - "sphinx-doc~sphinx~pyproject.toml" + "speechbrain~speechbrain~requirements.txt", + "speechbrain~speechbrain~setup.py", + "speechbrain~speechbrain~pyproject.toml" ] }, { - "index": 279, - "category": "jupyter", - "githuburl": "https://github.com/nteract/papermill", + "index": 471, + "category": "util", + "githuburl": "https://github.com/parthjadhav/tkinter-designer", "featured": null, "links": null, "description": null, - "_repopath": "nteract/papermill", - "_reponame": "papermill", - "_stars": 5037, - "_forks": 379, - "_watches": 91, + "_repopath": "parthjadhav/tkinter-designer", + "_reponame": "Tkinter-Designer", + "_stars": 5343, + "_forks": 507, + "_watches": 57, + "_language": "Python", + "_homepage": "", + "_description": "Tkinter-Designer: An easy and fast way to create a Python GUI \ud83d\udc0d", + "_organization": "parthjadhav", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-05-18T00:00:00.000Z", + "_age_weeks": 92, + "_stars_per_week": 57.99, "_topics": [ - "jupyter", - "notebooks", - "notebook-generator", - "nteract", - "publishing", - "pipeline", - "notebook", + "tkinter", + "tkinter-gui", + "tkinter-python", + "tkinter-graphic-interface", + "python3", + "tkinter-widgets", + "gui-application", + "python-script", + "drag-and-drop", + "easy", + "easy-to-use", + "fast", + "gui", + "tkinter-designer", + "figma", "python", - "r", - "julia", - "scala" + "automatic", + "collaborate", + "learn", + "hacktoberfest" + ], + "_last_commit_date": "2023-02-05T00:00:00.000Z", + "_pop_contributor_count": 35, + "_pop_contributor_logins": [ + "ParthJadhav@xd2sketch", + "TanmayBansode", + "greenmagenta", + "jrobchin@microsoftazure", + "jvendegna", + "mehmet-mert", + "neilbaldwin", + "piccoloser", + "ralphg6@bancodobrasil", + "saur0x" ], - "_language": "Python", - "_homepage": "http://papermill.readthedocs.io/en/latest/", - "_description": "papermill: \ud83d\udcda Parameterize, execute, and analyze notebooks", - "_organization": "nteract", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-10-18T00:00:00.000Z", - "_created_at": "2017-07-06T00:00:00.000Z", - "_age_weeks": 284, - "_stars_per_week": 17.7, - "_pop_contributor_count": 108, "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "netflix", - "noteable-io", - "willingconsulting" + "bancodobrasil", + "microsoftazure", + "xd2sketch" + ], + "_pop_contributor_orgs_raw": [ + "@XD2Sketch ", + "@bancodobrasil", + "Microsoft Azure" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.77, - "_pop_updated_issues_count": 36, - "_pop_closed_issues_count": 19, - "_pop_created_since_days": 66, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 14, - "_pop_recent_releases_adjusted_count": 14, - "_pop_issue_count": 36.0, - "_pop_comment_count": 56.0, + "_pop_commit_frequency": 0.94, + "_pop_updated_issues_count": 19, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 21, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 19.0, + "_pop_comment_count": 10.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 106, - "_pop_score": 50.18, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 30.9, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nteract/papermill/master/README.md", - "_readme_localurl": "nteract~papermill~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/parthjadhav/tkinter-designer/master/README.md", + "_readme_localurl": "parthjadhav~tkinter-designer~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/nteract/papermill/master/requirements.txt", - "https://raw.githubusercontent.com/nteract/papermill/master/setup.py", - "https://raw.githubusercontent.com/nteract/papermill/master/pyproject.toml" + "https://raw.githubusercontent.com/parthjadhav/tkinter-designer/master/requirements.txt", + "https://raw.githubusercontent.com/parthjadhav/tkinter-designer/master/pyproject.toml" ], "_requirements_localurls": [ - "nteract~papermill~requirements.txt", - "nteract~papermill~setup.py", - "nteract~papermill~pyproject.toml" + "parthjadhav~tkinter-designer~requirements.txt", + "parthjadhav~tkinter-designer~pyproject.toml" ] }, { - "index": 214, - "category": "nlp", - "githuburl": "https://github.com/speechbrain/speechbrain", + "index": 3, + "category": "ml", + "githuburl": "https://github.com/awslabs/autogluon", "featured": null, "links": null, "description": null, - "_repopath": "speechbrain/speechbrain", - "_reponame": "speechbrain", - "_stars": 5021, - "_forks": 974, - "_watches": 110, + "_repopath": "awslabs/autogluon", + "_reponame": "autogluon", + "_stars": 5343, + "_forks": 698, + "_watches": 93, + "_language": "Python", + "_homepage": "https://auto.gluon.ai/", + "_description": "AutoGluon: AutoML for Image, Text, Time Series, and Tabular Data", + "_organization": "awslabs", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2019-07-29T00:00:00.000Z", + "_age_weeks": 186, + "_stars_per_week": 28.68, "_topics": [ - "speech-recognition", - "speech-toolkit", - "speaker-recognition", - "speech-to-text", - "speech-enhancement", - "speech-separation", - "audio", - "audio-processing", - "speech-processing", - "speechrecognition", - "asr", - "voice-recognition", - "spoken-language-understanding", - "speaker-diarization", - "speaker-verification", + "automl", + "machine-learning", + "data-science", + "deep-learning", + "ensemble-learning", + "image-classification", + "computer-vision", + "natural-language-processing", + "structured-data", + "object-detection", + "gluon", + "transfer-learning", "pytorch", - "huggingface", - "transformers", - "language-model", - "deep-learning" + "automated-machine-learning", + "scikit-learn", + "autogluon", + "tabular-data", + "hyperparameter-optimization", + "time-series", + "forecasting" ], - "_language": "Python", - "_homepage": "http://speechbrain.github.io", - "_description": "speechbrain: A PyTorch-based Speech Toolkit", - "_organization": "speechbrain", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", - "_created_at": "2020-04-28T00:00:00.000Z", - "_age_weeks": 137, - "_stars_per_week": 36.42, - "_pop_contributor_count": 194, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 100, + "_pop_contributor_logins": [ + "FANGAreNotGnu@amazonwebservices", + "Innixma@amazonai", + "canerturkmen@awsawslabs", + "gradientsky@amazonai", + "jwmueller@cleanlab", + "shchur", + "sxjscience@amazonwebservices", + "yinweisu@amazon", + "zhanghang1989", + "zhiqiangdon@awsai" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "jpmorganchase", - "mit", - "samsung", - "universityofmontreal" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 17.15, - "_pop_updated_issues_count": 271, - "_pop_closed_issues_count": 185, - "_pop_created_since_days": 32, + "amazon", + "amazonai", + "amazonwebservices", + "awsai", + "awsawslabs", + "cleanlab" + ], + "_pop_contributor_orgs_raw": [ + "@aws @awslabs", + "AWS AI", + "Amazon", + "Amazon AI", + "Amazon Web Services", + "Cleanlab" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 15.88, + "_pop_updated_issues_count": 685, + "_pop_closed_issues_count": 541, + "_pop_created_since_days": 43, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 271.0, - "_pop_comment_count": 521.0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 683.0, + "_pop_comment_count": 1322.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.9, - "_pop_dependents_count": 1683, - "_pop_score": 63.77, + "_pop_dependents_count": 0, + "_pop_score": 54.35, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/speechbrain/speechbrain/master/README.md", - "_readme_localurl": "speechbrain~speechbrain~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/awslabs/autogluon/master/README.md", + "_readme_localurl": "awslabs~autogluon~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/speechbrain/speechbrain/master/requirements.txt", - "https://raw.githubusercontent.com/speechbrain/speechbrain/master/setup.py", - "https://raw.githubusercontent.com/speechbrain/speechbrain/master/pyproject.toml" + "https://raw.githubusercontent.com/awslabs/autogluon/master/pyproject.toml" ], "_requirements_localurls": [ - "speechbrain~speechbrain~requirements.txt", - "speechbrain~speechbrain~setup.py", - "speechbrain~speechbrain~pyproject.toml" + "awslabs~autogluon~pyproject.toml" ] }, { - "index": 404, - "category": "perf", - "githuburl": "https://github.com/python-trio/trio", + "index": 283, + "category": "util", + "githuburl": "https://github.com/sdispater/pendulum", "featured": null, "links": null, "description": null, - "_repopath": "python-trio/trio", - "_reponame": "trio", - "_stars": 5017, - "_forks": 290, - "_watches": 88, + "_repopath": "sdispater/pendulum", + "_reponame": "pendulum", + "_stars": 5336, + "_forks": 319, + "_watches": 64, + "_language": "Python", + "_homepage": "https://pendulum.eustace.io", + "_description": "pendulum: Python datetimes made easy", + "_organization": "sdispater", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2016-06-27T00:00:00.000Z", + "_age_weeks": 347, + "_stars_per_week": 15.36, "_topics": [ "python", - "async", - "async-await", - "networking", - "io", - "trio", - "structured-concurrency" + "datetime", + "date", + "time", + "python3", + "timezones" + ], + "_last_commit_date": "2022-12-23T00:00:00.000Z", + "_pop_contributor_count": 87, + "_pop_contributor_logins": [ + "NickFabry", + "Secrus", + "altendky", + "bryanforbes@sitepen", + "erosennin", + "guyzmo", + "maedox", + "pre-commit-ci[bot]", + "redlickigrzegorz@stxnext", + "sdispater" ], - "_language": "Python", - "_homepage": "https://trio.readthedocs.io", - "_description": "Trio \u2013 a friendly Python library for async concurrency and I/O", - "_organization": "python-trio", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2017-01-16T00:00:00.000Z", - "_age_weeks": 309, - "_stars_per_week": 16.24, - "_pop_contributor_count": 138, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "elastic", - "hudsonrivertrading" + "sitepen", + "stxnext" + ], + "_pop_contributor_orgs_raw": [ + "@stxnext", + "SitePen, Inc." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.5, - "_pop_updated_issues_count": 128, - "_pop_closed_issues_count": 97, - "_pop_created_since_days": 72, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 128.0, - "_pop_comment_count": 226.0, + "_pop_commit_frequency": 0.73, + "_pop_updated_issues_count": 22, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 81, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 22.0, + "_pop_comment_count": 11.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 503, - "_pop_score": 57.9, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 33.04, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/python-trio/trio/master/README.rst", - "_readme_localurl": "python-trio~trio~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/sdispater/pendulum/master/README.rst", + "_readme_localurl": "sdispater~pendulum~README.rst", "_requirements_filenames": [ - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/python-trio/trio/master/setup.py", - "https://raw.githubusercontent.com/python-trio/trio/master/pyproject.toml" + "https://raw.githubusercontent.com/sdispater/pendulum/master/pyproject.toml" ], "_requirements_localurls": [ - "python-trio~trio~setup.py", - "python-trio~trio~pyproject.toml" + "sdispater~pendulum~pyproject.toml" ] }, { - "index": 605, - "category": "jupyter", - "githuburl": "https://github.com/connorferster/handcalcs", + "index": 909, + "category": "web", + "githuburl": "https://github.com/pynecone-io/pynecone", "featured": null, "links": null, "description": null, - "_repopath": "connorferster/handcalcs", - "_reponame": "handcalcs", - "_stars": 4989, - "_forks": 389, - "_watches": 76, - "_topics": [], - "_language": "CSS", - "_homepage": null, - "_description": "handcalcs: Python library for converting Python calculations into rendered latex.", - "_organization": "connorferster", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-09-28T00:00:00.000Z", - "_created_at": "2020-02-19T00:00:00.000Z", - "_age_weeks": 147, - "_stars_per_week": 33.77, - "_pop_contributor_count": 11, + "_repopath": "pynecone-io/pynecone", + "_reponame": "pynecone", + "_stars": 5300, + "_forks": 183, + "_watches": 54, + "_language": "Python", + "_homepage": "https://pynecone.io", + "_description": "pynecone: \ud83d\udd78 Web apps in pure Python \ud83d\udc0d", + "_organization": "pynecone-io", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-10-25T00:00:00.000Z", + "_age_weeks": 17, + "_stars_per_week": 309.17, + "_topics": [ + "fullstack", + "python", + "webdev", + "framework", + "web", + "python-library", + "python3", + "open-source", + "infrastructure" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 30, + "_pop_contributor_logins": [ + "Alek99@pynecone", + "ElijahAhianyo", + "FHU-yezi", + "HellAmbro@rutershok", + "Lendemor", + "PeterYusuke", + "advo-kat", + "picklelo@pynecone", + "qu3vipon@asleep-ai", + "r0b2g1t@deutschetelekomag" + ], "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "applemontechnologies", - "christianclauss", - "clearcalcs", - "rjc-development" + "asleep-ai", + "deutschetelekomag", + "pynecone", + "rutershok" + ], + "_pop_contributor_orgs_raw": [ + "@Rutershok", + "@asleep-ai", + "Deutsche Telekom AG", + "Pynecone", + "Pynecone " ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.98, - "_pop_updated_issues_count": 19, - "_pop_closed_issues_count": 5, - "_pop_created_since_days": 34, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 19.0, - "_pop_comment_count": 20.0, + "_pop_commit_frequency": 4.02, + "_pop_updated_issues_count": 488, + "_pop_closed_issues_count": 381, + "_pop_created_since_days": 4, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 33, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 488.0, + "_pop_comment_count": 771.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 13, - "_pop_score": 34.91, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 40.95, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/connorferster/handcalcs/master/README.md", - "_readme_localurl": "connorferster~handcalcs~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pynecone-io/pynecone/master/README.md", + "_readme_localurl": "pynecone-io~pynecone~README.md", "_requirements_filenames": [ - "requirements.txt", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/connorferster/handcalcs/master/requirements.txt", - "https://raw.githubusercontent.com/connorferster/handcalcs/master/pyproject.toml" + "https://raw.githubusercontent.com/pynecone-io/pynecone/master/pyproject.toml" ], "_requirements_localurls": [ - "connorferster~handcalcs~requirements.txt", - "connorferster~handcalcs~pyproject.toml" + "pynecone-io~pynecone~pyproject.toml" ] }, { - "index": 686, - "category": "util", - "githuburl": "https://github.com/py-pdf/pypdf2", - "featured": null, + "index": 223, + "category": "nlp", + "githuburl": "https://github.com/kingoflolz/mesh-transformer-jax", + "featured": 1.0, "links": null, "description": null, - "_repopath": "py-pdf/pypdf2", - "_reponame": "PyPDF2", - "_stars": 4988, - "_forks": 1143, - "_watches": 139, - "_topics": [ - "pypdf2", - "pdf", - "python", - "pdf-parser", - "pdf-parsing", - "pdf-manipulation", - "pdf-documents", - "help-wanted" - ], + "_repopath": "kingoflolz/mesh-transformer-jax", + "_reponame": "mesh-transformer-jax", + "_stars": 5296, + "_forks": 757, + "_watches": 92, "_language": "Python", - "_homepage": "https://pypdf2.readthedocs.io/en/latest/", - "_description": "PyPDF2: A pure-python PDF library capable of splitting, merging, cropping, and transforming the pages of PDF files", - "_organization": "py-pdf", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2012-01-06T00:00:00.000Z", - "_age_weeks": 571, - "_stars_per_week": 8.73, - "_pop_contributor_count": 160, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_homepage": "", + "_description": "mesh-transformer-jax: Model parallel transformers in JAX and Haiku", + "_organization": "kingoflolz", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-03-13T00:00:00.000Z", + "_age_weeks": 101, + "_stars_per_week": 52.14, + "_topics": [], + "_last_commit_date": "2023-01-12T00:00:00.000Z", + "_pop_contributor_count": 23, + "_pop_contributor_logins": [ + "AeroScripts", + "CurtisASmith", + "StellaAthena@boozallenhamilton", + "ablacklama@cardsagainsthumanity", + "cclauss@christianclauss", + "djoldman", + "kingoflolz", + "leogao2", + "narphorium", + "nostalgebraist" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "popsql" + "boozallenhamilton", + "cardsagainsthumanity", + "christianclauss" + ], + "_pop_contributor_orgs_raw": [ + "@cardsagainsthumanity", + "Booz Allen Hamilton", + "Christian Clauss" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 12.06, - "_pop_updated_issues_count": 157, - "_pop_closed_issues_count": 121, - "_pop_created_since_days": 133, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 47, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 47, - "_pop_issue_count": 157.0, - "_pop_comment_count": 492.0, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 19, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 24, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 19.0, + "_pop_comment_count": 27.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.1, - "_pop_dependents_count": 628, - "_pop_score": 63.82, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 28.71, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/py-pdf/pypdf2/master/README.md", - "_readme_localurl": "py-pdf~pypdf2~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/README.md", + "_readme_localurl": "kingoflolz~mesh-transformer-jax~README.md", "_requirements_filenames": [ - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/py-pdf/pypdf2/master/pyproject.toml" + "https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/requirements.txt", + "https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/setup.py" ], "_requirements_localurls": [ - "py-pdf~pypdf2~pyproject.toml" + "kingoflolz~mesh-transformer-jax~requirements.txt", + "kingoflolz~mesh-transformer-jax~setup.py" ] }, { - "index": 652, - "category": "profiling", - "githuburl": "https://github.com/joerick/pyinstrument", + "index": 603, + "category": "ml", + "githuburl": "https://github.com/cleanlab/cleanlab", "featured": null, "links": null, "description": null, - "_repopath": "joerick/pyinstrument", - "_reponame": "pyinstrument", - "_stars": 4954, - "_forks": 217, - "_watches": 52, + "_repopath": "cleanlab/cleanlab", + "_reponame": "cleanlab", + "_stars": 5286, + "_forks": 447, + "_watches": 67, + "_language": "Python", + "_homepage": "https://cleanlab.ai", + "_description": "cleanlab: The standard data-centric AI package for data quality and machine learning with messy, real-world data and labels.", + "_organization": "cleanlab", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-05-11T00:00:00.000Z", + "_age_weeks": 249, + "_stars_per_week": 21.17, "_topics": [ - "python", - "django", - "profiler", - "performance", - "profile", - "async" + "weak-supervision", + "robust-machine-learning", + "data-cleaning", + "classification", + "data-quality", + "data-science", + "exploratory-data-analysis", + "label-errors", + "noisy-labels", + "data-centric-ai", + "machine-learning", + "out-of-distribution-detection", + "outlier-detection", + "data-validation", + "active-learning", + "crowdsourcing", + "image-tagging", + "data-labeling", + "entity-recognition", + "annotations" ], - "_language": "Python", - "_homepage": "https://pyinstrument.readthedocs.io/", - "_description": "pyinstrument: \ud83d\udeb4\u00a0Call stack profiler for Python. Shows you why your code is slow!", - "_organization": "joerick", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2014-03-13T00:00:00.000Z", - "_age_weeks": 457, - "_stars_per_week": 10.83, - "_pop_contributor_count": 47, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 29, + "_pop_contributor_logins": [ + "JohnsonKuan", + "aditya1503@home", + "anishathalye@mitcsail", + "calebchiam@stanforduniversity", + "cgnorthcutt@cleanlab|mit", + "elisno", + "huiwengoh", + "jwmueller@cleanlab", + "ulya-tkch@cleanlab", + "weijinglok" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "datadog,formerlyllnl", - "flycode-org", - "jpmorgan", - "nordprojects" + "cleanlab", + "cleanlab|mit", + "home", + "mitcsail", + "stanforduniversity" + ], + "_pop_contributor_orgs_raw": [ + "@Cleanlab | MIT", + "@cleanlab ", + "Cleanlab", + "Home", + "MIT CSAIL", + "Stanford University" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.92, - "_pop_updated_issues_count": 47, - "_pop_closed_issues_count": 39, - "_pop_created_since_days": 107, + "_pop_commit_frequency": 9.02, + "_pop_updated_issues_count": 136, + "_pop_closed_issues_count": 94, + "_pop_created_since_days": 58, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 47.0, - "_pop_comment_count": 51.0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 136.0, + "_pop_comment_count": 184.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 30, - "_pop_score": 49.9, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 45.24, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/joerick/pyinstrument/master/README.md", - "_readme_localurl": "joerick~pyinstrument~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/cleanlab/cleanlab/master/README.md", + "_readme_localurl": "cleanlab~cleanlab~README.md", "_requirements_filenames": [ "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/joerick/pyinstrument/master/setup.py", - "https://raw.githubusercontent.com/joerick/pyinstrument/master/pyproject.toml" + "https://raw.githubusercontent.com/cleanlab/cleanlab/master/setup.py", + "https://raw.githubusercontent.com/cleanlab/cleanlab/master/pyproject.toml" ], "_requirements_localurls": [ - "joerick~pyinstrument~setup.py", - "joerick~pyinstrument~pyproject.toml" + "cleanlab~cleanlab~setup.py", + "cleanlab~cleanlab~pyproject.toml" ] }, { - "index": 471, - "category": "util", - "githuburl": "https://github.com/parthjadhav/tkinter-designer", + "index": 278, + "category": "data", + "githuburl": "https://github.com/airbnb/knowledge-repo", "featured": null, "links": null, "description": null, - "_repopath": "parthjadhav/tkinter-designer", - "_reponame": "Tkinter-Designer", - "_stars": 4944, - "_forks": 470, - "_watches": 51, + "_repopath": "airbnb/knowledge-repo", + "_reponame": "knowledge-repo", + "_stars": 5281, + "_forks": 706, + "_watches": 176, + "_language": "Python", + "_homepage": "", + "_description": "knowledge-repo: A next-generation curated knowledge sharing platform for data scientists and other technical professions.", + "_organization": "airbnb", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2016-08-17T00:00:00.000Z", + "_age_weeks": 340, + "_stars_per_week": 15.53, "_topics": [ - "tkinter", - "tkinter-gui", - "tkinter-python", - "tkinter-graphic-interface", - "python3", - "tkinter-widgets", - "gui-application", - "python-script", - "drag-and-drop", - "easy", - "easy-to-use", - "fast", - "gui", - "tkinter-designer", - "figma", - "python", - "automatic", - "collaborate", - "learn", - "hacktoberfest" + "data", + "data-science", + "knowledge", + "data-analysis" ], - "_language": "Python", - "_homepage": "", - "_description": "Tkinter-Designer: An easy and fast way to create a Python GUI \ud83d\udc0d", - "_organization": "parthjadhav", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2021-05-18T00:00:00.000Z", - "_age_weeks": 82, - "_stars_per_week": 59.67, - "_pop_contributor_count": 33, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 72, + "_pop_contributor_logins": [ + "JJJ000", + "NiharikaRay", + "bulam", + "csharplus@airbnb", + "danfrankj", + "dorianbrown@dorianbrownanalytics", + "earthmancash2@eppo", + "matthewwardrop@datascientistatnetflix", + "mengting1010", + "naoyak@airbnb" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "microsoftazure", - "xd2sketch" + "airbnb", + "datascientistatnetflix", + "dorianbrownanalytics", + "eppo" + ], + "_pop_contributor_orgs_raw": [ + "@airbnb", + "Airbnb", + "Data Scientist at @Netflix", + "Dorian Brown Analytics", + "Eppo" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.02, - "_pop_updated_issues_count": 48, - "_pop_closed_issues_count": 30, - "_pop_created_since_days": 19, + "_pop_commit_frequency": 10.25, + "_pop_updated_issues_count": 75, + "_pop_closed_issues_count": 67, + "_pop_created_since_days": 79, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 1, + "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 48.0, - "_pop_comment_count": 42.0, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 75.0, + "_pop_comment_count": 16.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 15, - "_pop_score": 37.67, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 0, + "_pop_score": 43.26, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/parthjadhav/tkinter-designer/master/README.md", - "_readme_localurl": "parthjadhav~tkinter-designer~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/airbnb/knowledge-repo/master/README.md", + "_readme_localurl": "airbnb~knowledge-repo~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/airbnb/knowledge-repo/master/requirements.txt", + "https://raw.githubusercontent.com/airbnb/knowledge-repo/master/setup.py" + ], + "_requirements_localurls": [ + "airbnb~knowledge-repo~requirements.txt", + "airbnb~knowledge-repo~setup.py" + ] + }, + { + "index": 434, + "category": "util", + "githuburl": "https://github.com/scikit-image/scikit-image", + "featured": null, + "links": null, + "description": null, + "_repopath": "scikit-image/scikit-image", + "_reponame": "scikit-image", + "_stars": 5246, + "_forks": 2102, + "_watches": 185, + "_language": "Python", + "_homepage": "https://scikit-image.org", + "_description": "scikit-image: Image processing in Python", + "_organization": "scikit-image", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2011-07-07T00:00:00.000Z", + "_age_weeks": 606, + "_stars_per_week": 8.64, + "_topics": [ + "image-processing", + "python", + "computer-vision", + "hacktoberfest", + "closember" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 591, + "_pop_contributor_logins": [ + "JDWarner", + "ahojnnes@microsoft", + "blink1073@mongodb", + "emmanuelle", + "grlee77@nvidia", + "hmaarrfk@californiainstituteoftechnology", + "jni@biomedicinediscoveryinstitute,monashuniversity", + "soupault@mipt-oulu,oulu-imeds", + "stefanv@universityofcalifornia,berkeley", + "vighneshbirodkar@google" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "biomedicinediscoveryinstitute,monashuniversity", + "californiainstituteoftechnology", + "google", + "microsoft", + "mipt-oulu,oulu-imeds", + "mongodb", + "nvidia", + "universityofcalifornia,berkeley" + ], + "_pop_contributor_orgs_raw": [ + "@MIPT-Oulu, @Oulu-IMEDS ", + "Biomedicine Discovery Institute, Monash University", + "California Institute of Technology", + "Google", + "Microsoft", + "MongoDB", + "NVIDIA", + "University of California, Berkeley" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.75, + "_pop_updated_issues_count": 431, + "_pop_closed_issues_count": 171, + "_pop_created_since_days": 142, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 431.0, + "_pop_comment_count": 558.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 58.18, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/scikit-image/scikit-image/master/README.md", + "_readme_localurl": "scikit-image~scikit-image~README.md", "_requirements_filenames": [ "requirements.txt", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/parthjadhav/tkinter-designer/master/requirements.txt", - "https://raw.githubusercontent.com/parthjadhav/tkinter-designer/master/pyproject.toml" + "https://raw.githubusercontent.com/scikit-image/scikit-image/master/requirements.txt", + "https://raw.githubusercontent.com/scikit-image/scikit-image/master/pyproject.toml" ], "_requirements_localurls": [ - "parthjadhav~tkinter-designer~requirements.txt", - "parthjadhav~tkinter-designer~pyproject.toml" + "scikit-image~scikit-image~requirements.txt", + "scikit-image~scikit-image~pyproject.toml" ] }, { @@ -17432,9 +23581,17 @@ "description": null, "_repopath": "open-mmlab/mmsegmentation", "_reponame": "mmsegmentation", - "_stars": 4927, - "_forks": 1821, - "_watches": 51, + "_stars": 5231, + "_forks": 1934, + "_watches": 52, + "_language": "Python", + "_homepage": "https://mmsegmentation.readthedocs.io/en/latest/", + "_description": "mmsegmentation: OpenMMLab Semantic Segmentation Toolbox and Benchmark.", + "_organization": "open-mmlab", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-06-14T00:00:00.000Z", + "_age_weeks": 140, + "_stars_per_week": 37.25, "_topics": [ "semantic-segmentation", "pytorch", @@ -17448,38 +23605,51 @@ "image-segmentation", "medical-image-segmentation" ], - "_language": "Python", - "_homepage": "https://mmsegmentation.readthedocs.io/en/latest/", - "_description": "mmsegmentation: OpenMMLab Semantic Segmentation Toolbox and Benchmark.", - "_organization": "open-mmlab", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2020-06-14T00:00:00.000Z", - "_age_weeks": 131, - "_stars_per_week": 37.57, - "_pop_contributor_count": 127, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 135, + "_pop_contributor_logins": [ + "Junjun2016", + "MengzhangLI@shanghaiailaboratory", + "MeowZheng@openmmlab", + "RockeyCoss", + "linfangjian01@alibaba", + "sennnnn@xxx", + "sshuair", + "xiexinch@openmmlab", + "xvjiarui@ucsd", + "yamengxi" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "open-mmlab,shanghaiailaboratory", + "alibaba", "openmmlab", - "ucsd" + "shanghaiailaboratory", + "ucsd", + "xxx" + ], + "_pop_contributor_orgs_raw": [ + "Alibaba", + "OpenMMLab", + "Shanghai AI Laboratory", + "UCSD", + "xxx" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.42, - "_pop_updated_issues_count": 403, - "_pop_closed_issues_count": 300, - "_pop_created_since_days": 31, + "_pop_commit_frequency": 3.65, + "_pop_updated_issues_count": 433, + "_pop_closed_issues_count": 266, + "_pop_created_since_days": 33, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 16, + "_pop_recent_releases_count": 18, "_pop_recent_releases_estimated_tags": 14, - "_pop_recent_releases_adjusted_count": 16, - "_pop_issue_count": 403.0, - "_pop_comment_count": 797.0, + "_pop_recent_releases_adjusted_count": 18, + "_pop_issue_count": 433.0, + "_pop_comment_count": 639.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 229, - "_pop_score": 59.14, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 50.83, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/open-mmlab/mmsegmentation/master/README.md", "_readme_localurl": "open-mmlab~mmsegmentation~README.md", @@ -17497,1786 +23667,2565 @@ ] }, { - "index": 15, - "category": "ml-dl", - "githuburl": "https://github.com/skorch-dev/skorch", + "index": 352, + "category": "ml-ops", + "githuburl": "https://github.com/activeloopai/hub", "featured": null, "links": null, "description": null, - "_repopath": "skorch-dev/skorch", - "_reponame": "skorch", - "_stars": 4891, - "_forks": 330, - "_watches": 81, + "_repopath": "activeloopai/hub", + "_reponame": "deeplake", + "_stars": 5225, + "_forks": 418, + "_watches": 65, + "_language": "Python", + "_homepage": "https://activeloop.ai", + "_description": "deeplake: Data Lake for Deep Learning. Build, manage, query, version, & visualize datasets. Stream data real-time to PyTorch/TensorFlow. https://activeloop.ai ", + "_organization": "activeloopai", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2019-08-09T00:00:00.000Z", + "_age_weeks": 184, + "_stars_per_week": 28.29, "_topics": [ - "scikit-learn", - "pytorch", + "datasets", + "deep-learning", "machine-learning", - "hacktoberfest" + "data-science", + "pytorch", + "tensorflow", + "data-version-control", + "python", + "ai", + "ml", + "mlops", + "computer-vision", + "cv", + "data-processing", + "image-processing", + "data-centric", + "jupyter-notebook", + "datalake", + "lakehouse" ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "skorch: A scikit-learn compatible neural network library that wraps PyTorch", - "_organization": "skorch-dev", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2017-07-18T00:00:00.000Z", - "_age_weeks": 282, - "_stars_per_week": 17.29, - "_pop_contributor_count": 52, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 107, + "_pop_contributor_logins": [ + "AbhinavTuli@activeloop", + "FayazRahman", + "benchislett", + "davidbuniat@activeloopai", + "edogrigqv2", + "farizrahman4u", + "imshashank@self", + "kristinagrig06", + "nollied", + "thisiseshan@northeasternuniversity" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "aeolusrobotics", - "ottogroupbi", - "quansight-labs" + "activeloop", + "activeloopai", + "northeasternuniversity", + "self" + ], + "_pop_contributor_orgs_raw": [ + "@activeloopai", + "Activeloop", + "Northeastern University", + "Self" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.06, - "_pop_updated_issues_count": 40, - "_pop_closed_issues_count": 32, - "_pop_created_since_days": 66, + "_pop_commit_frequency": 24.62, + "_pop_updated_issues_count": 196, + "_pop_closed_issues_count": 164, + "_pop_created_since_days": 43, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 40.0, - "_pop_comment_count": 92.0, + "_pop_recent_releases_count": 59, + "_pop_recent_releases_estimated_tags": 34, + "_pop_recent_releases_adjusted_count": 59, + "_pop_issue_count": 196.0, + "_pop_comment_count": 191.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.3, - "_pop_dependents_count": 14, - "_pop_score": 46.18, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/skorch-dev/skorch/master/README.rst", - "_readme_localurl": "skorch-dev~skorch~README.rst", + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 51.64, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/activeloopai/hub/master/README.md", + "_readme_localurl": "activeloopai~hub~README.md", "_requirements_filenames": [ "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/skorch-dev/skorch/master/requirements.txt", - "https://raw.githubusercontent.com/skorch-dev/skorch/master/setup.py" + "https://raw.githubusercontent.com/activeloopai/hub/master/requirements.txt", + "https://raw.githubusercontent.com/activeloopai/hub/master/setup.py" ], "_requirements_localurls": [ - "skorch-dev~skorch~requirements.txt", - "skorch-dev~skorch~setup.py" + "activeloopai~hub~requirements.txt", + "activeloopai~hub~setup.py" ] }, { - "index": 569, - "category": "ml", - "githuburl": "https://github.com/mdbloice/augmentor", + "index": 81, + "category": "util", + "githuburl": "https://github.com/sphinx-doc/sphinx", "featured": null, "links": null, "description": null, - "_repopath": "mdbloice/augmentor", - "_reponame": "Augmentor", - "_stars": 4841, - "_forks": 852, - "_watches": 123, + "_repopath": "sphinx-doc/sphinx", + "_reponame": "sphinx", + "_stars": 5218, + "_forks": 1863, + "_watches": 142, + "_language": "Python", + "_homepage": "https://www.sphinx-doc.org/", + "_description": "sphinx: The Sphinx documentation generator", + "_organization": "sphinx-doc", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-01-02T00:00:00.000Z", + "_age_weeks": 424, + "_stars_per_week": 12.29, "_topics": [ - "augmentation", - "machine-learning", - "deep-learning", - "neural-networks" + "python", + "documentation", + "documentation-tool", + "sphinx", + "markdown", + "restructuredtext" ], - "_language": "Python", - "_homepage": "https://augmentor.readthedocs.io/en/stable", - "_description": "Augmentor: Image augmentation library in Python for machine learning.", - "_organization": "mdbloice", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-09-23T00:00:00.000Z", - "_created_at": "2016-03-01T00:00:00.000Z", - "_age_weeks": 354, - "_stars_per_week": 13.64, - "_pop_contributor_count": 22, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 770, + "_pop_contributor_logins": [ + "AA-Turner", + "TimKam@signaviosphinx-docsphinx-contrib", + "birkenfeld@fzj\u00fclich", + "jakobandersen", + "jfbu", + "keewis", + "lehmannro", + "shimizukawa@beproud", + "stephenfin@redhat", + "tk0miya@timeintermedia(timedia)" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "medicaluniversitygraz" + "beproud", + "fzj\u00fclich", + "redhat", + "signaviosphinx-docsphinx-contrib", + "timeintermedia(timedia)" + ], + "_pop_contributor_orgs_raw": [ + "@signavio @sphinx-doc @sphinx-contrib ", + "BeProud", + "FZ J\u00fclich", + "Red Hat", + "Time Intermedia (@timedia)" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.17, - "_pop_updated_issues_count": 1, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 83, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 1.0, - "_pop_comment_count": 1.0, + "_pop_commit_frequency": 13.46, + "_pop_updated_issues_count": 381, + "_pop_closed_issues_count": 147, + "_pop_created_since_days": 99, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 20, + "_pop_recent_releases_estimated_tags": 31, + "_pop_recent_releases_adjusted_count": 20, + "_pop_issue_count": 381.0, + "_pop_comment_count": 439.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 68, - "_pop_score": 33.28, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/mdbloice/augmentor/master/README.md", - "_readme_localurl": "mdbloice~augmentor~README.md", + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 59.34, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/sphinx-doc/sphinx/master/README.rst", + "_readme_localurl": "sphinx-doc~sphinx~README.rst", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/mdbloice/augmentor/master/requirements.txt", - "https://raw.githubusercontent.com/mdbloice/augmentor/master/setup.py" + "https://raw.githubusercontent.com/sphinx-doc/sphinx/master/pyproject.toml" ], "_requirements_localurls": [ - "mdbloice~augmentor~requirements.txt", - "mdbloice~augmentor~setup.py" + "sphinx-doc~sphinx~pyproject.toml" ] }, { - "index": 169, - "category": "nlp", - "githuburl": "https://github.com/minimaxir/textgenrnn", + "index": 686, + "category": "util", + "githuburl": "https://github.com/py-pdf/pypdf2", "featured": null, "links": null, "description": null, - "_repopath": "minimaxir/textgenrnn", - "_reponame": "textgenrnn", - "_stars": 4825, - "_forks": 753, - "_watches": 138, + "_repopath": "py-pdf/pypdf2", + "_reponame": "pypdf", + "_stars": 5218, + "_forks": 1165, + "_watches": 143, + "_language": "Python", + "_homepage": "https://pypdf.readthedocs.io/en/latest/", + "_description": "pypdf: A pure-python PDF library capable of splitting, merging, cropping, and transforming the pages of PDF files", + "_organization": "py-pdf", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-01-06T00:00:00.000Z", + "_age_weeks": 580, + "_stars_per_week": 8.99, "_topics": [ - "keras", - "deep-learning", - "text-generation", - "tensorflow", - "python" + "pypdf2", + "pdf", + "python", + "pdf-parser", + "pdf-parsing", + "pdf-manipulation", + "pdf-documents", + "help-wanted" ], - "_language": "Python", - "_homepage": "", - "_description": "textgenrnn: Easily train your own text-generating neural network of any size and complexity on any text dataset with a few lines of code.", - "_organization": "minimaxir", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2020-07-14T00:00:00.000Z", - "_created_at": "2017-08-07T00:00:00.000Z", - "_age_weeks": 280, - "_stars_per_week": 17.23, - "_pop_contributor_count": 19, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 168, + "_pop_contributor_logins": [ + "MartinThoma", + "MasterOdin@popsql", + "jamma313", + "knowah", + "mozbugbox", + "mstamy2", + "mtd91429", + "pubpub-zz", + "switham", + "sylvainpelissier" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "buzzfeed", - "valohai" + "popsql" + ], + "_pop_contributor_orgs_raw": [ + "@popsql" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 10, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 65, - "_pop_updated_since_days": 30, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 10.0, - "_pop_comment_count": 4.0, + "_pop_commit_frequency": 13.58, + "_pop_updated_issues_count": 239, + "_pop_closed_issues_count": 183, + "_pop_created_since_days": 135, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 54, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 54, + "_pop_issue_count": 239.0, + "_pop_comment_count": 759.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.4, - "_pop_dependents_count": 4, - "_pop_score": 24.79, + "_pop_comment_frequency": 3.2, + "_pop_dependents_count": 0, + "_pop_score": 53.26, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/minimaxir/textgenrnn/master/README.md", - "_readme_localurl": "minimaxir~textgenrnn~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/py-pdf/pypdf2/master/README.md", + "_readme_localurl": "py-pdf~pypdf2~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/minimaxir/textgenrnn/master/requirements.txt", - "https://raw.githubusercontent.com/minimaxir/textgenrnn/master/setup.py" + "https://raw.githubusercontent.com/py-pdf/pypdf2/master/pyproject.toml" ], "_requirements_localurls": [ - "minimaxir~textgenrnn~requirements.txt", - "minimaxir~textgenrnn~setup.py" + "py-pdf~pypdf2~pyproject.toml" ] }, { - "index": 784, - "category": "diffusion", - "githuburl": "https://github.com/xavierxiao/dreambooth-stable-diffusion", + "index": 404, + "category": "perf", + "githuburl": "https://github.com/python-trio/trio", "featured": null, "links": null, "description": null, - "_repopath": "xavierxiao/dreambooth-stable-diffusion", - "_reponame": "Dreambooth-Stable-Diffusion", - "_stars": 4801, - "_forks": 521, - "_watches": 73, + "_repopath": "python-trio/trio", + "_reponame": "trio", + "_stars": 5167, + "_forks": 294, + "_watches": 88, + "_language": "Python", + "_homepage": "https://trio.readthedocs.io", + "_description": "Trio \u2013 a friendly Python library for async concurrency and I/O", + "_organization": "python-trio", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2017-01-16T00:00:00.000Z", + "_age_weeks": 318, + "_stars_per_week": 16.23, "_topics": [ - "pytorch", - "pytorch-lightning", - "stable-diffusion", - "text-to-image" + "python", + "async", + "async-await", + "networking", + "io", + "trio", + "structured-concurrency" ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "Dreambooth-Stable-Diffusion: Implementation of Dreambooth (https://arxiv.org/abs/2208.12242) with Stable Diffusion", - "_organization": "xavierxiao", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-09-21T00:00:00.000Z", - "_created_at": "2022-09-06T00:00:00.000Z", - "_age_weeks": 14, - "_stars_per_week": 323.14, - "_pop_contributor_count": 1, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 140, + "_pop_contributor_logins": [ + "A5rocks", + "Fuyukai", + "agronholm@nextdaysolutionsoy", + "buhman@verizonmedia", + "dependabot-preview[bot]", + "dependabot-support", + "dependabot[bot]", + "njsmith", + "oremanj@hudsonrivertrading", + "pquentin@elastic" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "universityofchicago" + "elastic", + "hudsonrivertrading", + "nextdaysolutionsoy", + "verizonmedia" + ], + "_pop_contributor_orgs_raw": [ + "@elastic", + "@verizonmedia", + "Hudson River Trading", + "NextDay Solutions Oy" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.6, - "_pop_updated_issues_count": 100, - "_pop_closed_issues_count": 13, - "_pop_created_since_days": 3, - "_pop_updated_since_days": 3, + "_pop_commit_frequency": 5.96, + "_pop_updated_issues_count": 119, + "_pop_closed_issues_count": 95, + "_pop_created_since_days": 74, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 100.0, - "_pop_comment_count": 234.0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 119.0, + "_pop_comment_count": 270.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 2.3, - "_pop_dependents_count": 15, - "_pop_score": 21.16, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/xavierxiao/dreambooth-stable-diffusion/master/README.md", - "_readme_localurl": "xavierxiao~dreambooth-stable-diffusion~README.md", + "_pop_dependents_count": 0, + "_pop_score": 49.86, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/python-trio/trio/master/README.rst", + "_readme_localurl": "python-trio~trio~README.rst", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/xavierxiao/dreambooth-stable-diffusion/master/setup.py" + "https://raw.githubusercontent.com/python-trio/trio/master/setup.py", + "https://raw.githubusercontent.com/python-trio/trio/master/pyproject.toml" ], "_requirements_localurls": [ - "xavierxiao~dreambooth-stable-diffusion~setup.py" + "python-trio~trio~setup.py", + "python-trio~trio~pyproject.toml" ] }, { - "index": 661, - "category": "study", - "githuburl": "https://github.com/udacity/deep-learning-v2-pytorch", + "index": 301, + "category": "data", + "githuburl": "https://github.com/kaggle/kaggle-api", "featured": null, "links": null, "description": null, - "_repopath": "udacity/deep-learning-v2-pytorch", - "_reponame": "deep-learning-v2-pytorch", - "_stars": 4793, - "_forks": 5176, - "_watches": 172, - "_topics": [ - "deep-learning", - "neural-network", - "convolutional-networks", - "pytorch", - "recurrent-networks", - "style-transfer", - "sentiment-analysis" + "_repopath": "kaggle/kaggle-api", + "_reponame": "kaggle-api", + "_stars": 5166, + "_forks": 983, + "_watches": 194, + "_language": "Python", + "_homepage": "", + "_description": "kaggle-api: Official Kaggle API", + "_organization": "kaggle", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-01-25T00:00:00.000Z", + "_age_weeks": 264, + "_stars_per_week": 19.5, + "_topics": [], + "_last_commit_date": "2021-03-15T00:00:00.000Z", + "_pop_contributor_count": 36, + "_pop_contributor_logins": [ + "Conengmo", + "chrisgorgo@google", + "danieljanes@adapgmbh", + "dpmcna", + "filipefilardi", + "philippegr", + "pizzaz93", + "rysteboe", + "vsoch", + "washcycle@aspen-insights" ], - "_language": "Jupyter Notebook", - "_homepage": null, - "_description": "deep-learning-v2-pytorch: Projects and exercises for the latest Deep Learning ND program https://www.udacity.com/course/deep-learning-nanodegree--nd101", - "_organization": "udacity", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-10-03T00:00:00.000Z", - "_created_at": "2018-09-04T00:00:00.000Z", - "_age_weeks": 223, - "_stars_per_week": 21.41, - "_pop_contributor_count": 97, "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "bardeen", - "lumafield", - "udacity" + "adapgmbh", + "aspen-insights", + "google" + ], + "_pop_contributor_orgs_raw": [ + "@aspen-insights ", + "Adap GmbH", + "Google LLC" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.08, - "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 52, - "_pop_updated_since_days": 3, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 21, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 62, + "_pop_updated_since_days": 24, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 3.0, - "_pop_comment_count": 0.0, + "_pop_issue_count": 21.0, + "_pop_comment_count": 18.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 1469, - "_pop_score": 40.45, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 25.14, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/udacity/deep-learning-v2-pytorch/master/README.md", - "_readme_localurl": "udacity~deep-learning-v2-pytorch~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/kaggle/kaggle-api/master/README.md", + "_readme_localurl": "kaggle~kaggle-api~README.md", "_requirements_filenames": [ - "requirements.txt" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/udacity/deep-learning-v2-pytorch/master/requirements.txt" + "https://raw.githubusercontent.com/kaggle/kaggle-api/master/setup.py" ], "_requirements_localurls": [ - "udacity~deep-learning-v2-pytorch~requirements.txt" + "kaggle~kaggle-api~setup.py" ] }, { - "index": 380, - "category": "data", - "githuburl": "https://github.com/alirezamika/autoscraper", + "index": 546, + "category": "ml-dl", + "githuburl": "https://github.com/facebookresearch/mmf", "featured": null, "links": null, "description": null, - "_repopath": "alirezamika/autoscraper", - "_reponame": "autoscraper", - "_stars": 4781, - "_forks": 510, - "_watches": 125, + "_repopath": "facebookresearch/mmf", + "_reponame": "mmf", + "_stars": 5146, + "_forks": 909, + "_watches": 117, + "_language": "Python", + "_homepage": "https://mmf.sh/", + "_description": "mmf: A modular framework for vision & language multimodal research from Facebook AI Research (FAIR)", + "_organization": "facebookresearch", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-06-27T00:00:00.000Z", + "_age_weeks": 243, + "_stars_per_week": 21.18, "_topics": [ - "scraping", - "scraper", - "scrape", - "webscraping", - "crawler", - "web-scraping", - "ai", - "artificial-intelligence", - "python", - "webautomation", - "automation", - "machine-learning" + "pytorch", + "vqa", + "pretrained-models", + "multimodal", + "deep-learning", + "captioning", + "dialog", + "textvqa", + "hateful-memes", + "multi-tasking" ], - "_language": "Python", - "_homepage": "", - "_description": "autoscraper: A Smart, Automatic, Fast and Lightweight Web Scraper for Python", - "_organization": "alirezamika", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-07-17T00:00:00.000Z", - "_created_at": "2020-08-31T00:00:00.000Z", - "_age_weeks": 120, - "_stars_per_week": 39.84, - "_pop_contributor_count": 8, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-02T00:00:00.000Z", + "_pop_contributor_count": 109, + "_pop_contributor_logins": [ + "Ryan-Qiyu-Jiang@uwstudent", + "YuJiang01@facebook", + "apsdehal@researchhuggingface,contributorjquery,pastfacebookresearch", + "dependabot[bot]", + "jknoxville@facebook", + "meetps", + "ronghanghu@metaai", + "suzyahyah", + "vedanuj", + "ytsheng" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "cognitifai" + "facebook", + "metaai", + "researchhuggingface,contributorjquery,pastfacebookresearch", + "uwstudent" + ], + "_pop_contributor_orgs_raw": [ + "@Facebook", + "Facebook", + "Meta AI", + "Research @huggingface, Contributor @jquery, Past @facebookresearch ", + "UW student" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.04, - "_pop_updated_issues_count": 6, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 28, - "_pop_updated_since_days": 5, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 7, + "_pop_commit_frequency": 0.87, + "_pop_updated_issues_count": 98, + "_pop_closed_issues_count": 84, + "_pop_created_since_days": 57, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 6.0, - "_pop_comment_count": 9.0, + "_pop_issue_count": 98.0, + "_pop_comment_count": 90.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, + "_pop_comment_frequency": 0.9, "_pop_dependents_count": 0, - "_pop_score": 20.98, + "_pop_score": 40.41, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/alirezamika/autoscraper/master/README.md", - "_readme_localurl": "alirezamika~autoscraper~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/mmf/master/README.md", + "_readme_localurl": "facebookresearch~mmf~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt", + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/alirezamika/autoscraper/master/setup.py" + "https://raw.githubusercontent.com/facebookresearch/mmf/master/requirements.txt", + "https://raw.githubusercontent.com/facebookresearch/mmf/master/setup.py", + "https://raw.githubusercontent.com/facebookresearch/mmf/master/pyproject.toml" ], "_requirements_localurls": [ - "alirezamika~autoscraper~setup.py" + "facebookresearch~mmf~requirements.txt", + "facebookresearch~mmf~setup.py", + "facebookresearch~mmf~pyproject.toml" ] }, { - "index": 223, - "category": "nlp", - "githuburl": "https://github.com/kingoflolz/mesh-transformer-jax", - "featured": 1.0, + "index": 652, + "category": "profiling", + "githuburl": "https://github.com/joerick/pyinstrument", + "featured": null, "links": null, "description": null, - "_repopath": "kingoflolz/mesh-transformer-jax", - "_reponame": "mesh-transformer-jax", - "_stars": 4763, - "_forks": 673, - "_watches": 82, - "_topics": [], + "_repopath": "joerick/pyinstrument", + "_reponame": "pyinstrument", + "_stars": 5127, + "_forks": 220, + "_watches": 55, "_language": "Python", - "_homepage": "", - "_description": "mesh-transformer-jax: Model parallel transformers in JAX and Haiku", - "_organization": "kingoflolz", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-01-28T00:00:00.000Z", - "_created_at": "2021-03-13T00:00:00.000Z", - "_age_weeks": 92, - "_stars_per_week": 51.61, - "_pop_contributor_count": 23, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_homepage": "https://pyinstrument.readthedocs.io/", + "_description": "pyinstrument: \ud83d\udeb4\u00a0Call stack profiler for Python. Shows you why your code is slow!", + "_organization": "joerick", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-03-13T00:00:00.000Z", + "_age_weeks": 466, + "_stars_per_week": 10.98, + "_topics": [ + "python", + "django", + "profiler", + "performance", + "profile", + "async" + ], + "_last_commit_date": "2022-12-27T00:00:00.000Z", + "_pop_contributor_count": 47, + "_pop_contributor_logins": [ + "asmeurer@quansight", + "cclauss@christianclauss", + "codelol", + "dependabot[bot]", + "goxberry@datadog,formerlyllnl", + "iddan@flycode-org", + "jnsquire", + "joerick@nordprojects", + "telamonian@jpmorgan", + "tonybaloney@microsoft" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "christianclauss", + "datadog,formerlyllnl", + "flycode-org", + "jpmorgan", + "microsoft", + "nordprojects", + "quansight" + ], + "_pop_contributor_orgs_raw": [ + "@DataDog, formerly @LLNL ", + "@Quansight ", + "@flycode-org", + "Christian Clauss", + "JP Morgan", + "Microsoft", + "Nord Projects" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.08, - "_pop_updated_issues_count": 13, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 22, - "_pop_updated_since_days": 11, + "_pop_commit_frequency": 1.92, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 109, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 13.0, - "_pop_comment_count": 12.0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 11.0, + "_pop_comment_count": 10.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 7, - "_pop_score": 19.54, + "_pop_dependents_count": 0, + "_pop_score": 40.71, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/README.md", - "_readme_localurl": "kingoflolz~mesh-transformer-jax~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/joerick/pyinstrument/master/README.md", + "_readme_localurl": "joerick~pyinstrument~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/requirements.txt", - "https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/setup.py" + "https://raw.githubusercontent.com/joerick/pyinstrument/master/setup.py", + "https://raw.githubusercontent.com/joerick/pyinstrument/master/pyproject.toml" ], "_requirements_localurls": [ - "kingoflolz~mesh-transformer-jax~requirements.txt", - "kingoflolz~mesh-transformer-jax~setup.py" + "joerick~pyinstrument~setup.py", + "joerick~pyinstrument~pyproject.toml" ] }, { - "index": 181, - "category": "security", - "githuburl": "https://github.com/pycqa/bandit", + "index": 279, + "category": "jupyter", + "githuburl": "https://github.com/nteract/papermill", "featured": null, "links": null, "description": null, - "_repopath": "pycqa/bandit", - "_reponame": "bandit", - "_stars": 4744, - "_forks": 493, - "_watches": 62, + "_repopath": "nteract/papermill", + "_reponame": "papermill", + "_stars": 5120, + "_forks": 386, + "_watches": 91, + "_language": "Python", + "_homepage": "http://papermill.readthedocs.io/en/latest/", + "_description": "papermill: \ud83d\udcda Parameterize, execute, and analyze notebooks", + "_organization": "nteract", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-07-06T00:00:00.000Z", + "_age_weeks": 293, + "_stars_per_week": 17.42, "_topics": [ - "linter", - "bandit", - "security-tools", - "security-scanner", - "security", - "static-code-analysis", - "python" + "jupyter", + "notebooks", + "notebook-generator", + "nteract", + "publishing", + "pipeline", + "notebook", + "python", + "r", + "julia", + "scala" ], - "_language": "Python", - "_homepage": "https://bandit.readthedocs.io", - "_description": "Bandit is a tool designed to find common security issues in Python code.", - "_organization": "pycqa", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-10-28T00:00:00.000Z", - "_created_at": "2018-04-26T00:00:00.000Z", - "_age_weeks": 242, - "_stars_per_week": 19.56, - "_pop_contributor_count": 160, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-10-18T00:00:00.000Z", + "_pop_contributor_count": 108, + "_pop_contributor_logins": [ + "MSeal@noteable-io", + "VincentBLortie", + "betatim@nvidia", + "ewmassey", + "gogasca@google", + "janfreyberg@google", + "mpacer@netflix", + "rgbkrk@noteable-io", + "vizhur@microsoft", + "willingc@willingconsulting" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "redhat,inc", - "securesauce" + "google", + "microsoft", + "netflix", + "noteable-io", + "nvidia", + "willingconsulting" + ], + "_pop_contributor_orgs_raw": [ + "@Noteable-io", + "@google ", + "@noteable-io", + "Google", + "Microsoft", + "Netflix", + "Nvidia ", + "Willing Consulting" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.08, - "_pop_updated_issues_count": 31, - "_pop_closed_issues_count": 10, - "_pop_created_since_days": 57, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 31.0, - "_pop_comment_count": 49.0, + "_pop_commit_frequency": 0.58, + "_pop_updated_issues_count": 15, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 69, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 15.0, + "_pop_comment_count": 23.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 1216, - "_pop_score": 51.93, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pycqa/bandit/master/README.rst", - "_readme_localurl": "pycqa~bandit~README.rst", + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 40.87, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nteract/papermill/master/README.md", + "_readme_localurl": "nteract~papermill~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pycqa/bandit/master/requirements.txt", - "https://raw.githubusercontent.com/pycqa/bandit/master/setup.py" + "https://raw.githubusercontent.com/nteract/papermill/master/requirements.txt", + "https://raw.githubusercontent.com/nteract/papermill/master/setup.py", + "https://raw.githubusercontent.com/nteract/papermill/master/pyproject.toml" ], "_requirements_localurls": [ - "pycqa~bandit~requirements.txt", - "pycqa~bandit~setup.py" + "nteract~papermill~requirements.txt", + "nteract~papermill~setup.py", + "nteract~papermill~pyproject.toml" ] }, { - "index": 642, - "category": "util", - "githuburl": "https://github.com/pycqa/pycodestyle", + "index": 605, + "category": "jupyter", + "githuburl": "https://github.com/connorferster/handcalcs", "featured": null, "links": null, "description": null, - "_repopath": "pycqa/pycodestyle", - "_reponame": "pycodestyle", - "_stars": 4742, - "_forks": 685, - "_watches": 119, - "_topics": [ - "python", - "pep8", - "styleguide", - "style-guide", - "linter-plugin", - "linter-flake8", - "flake8-plugin" + "_repopath": "connorferster/handcalcs", + "_reponame": "handcalcs", + "_stars": 5115, + "_forks": 398, + "_watches": 78, + "_language": "CSS", + "_homepage": null, + "_description": "handcalcs: Python library for converting Python calculations into rendered latex.", + "_organization": "connorferster", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-02-19T00:00:00.000Z", + "_age_weeks": 157, + "_stars_per_week": 32.58, + "_topics": [], + "_last_commit_date": "2022-12-27T00:00:00.000Z", + "_pop_contributor_count": 11, + "_pop_contributor_logins": [ + "anishLearnsToCode@wedosarl", + "cclauss@christianclauss", + "connorferster@rjc-development", + "daradib@applemontechnologies", + "eriknw", + "gxyd", + "icaroscherma", + "michaellisitsa@clearcalcs", + "omouraenko", + "shawnbrown" ], - "_language": "Python", - "_homepage": "https://pycodestyle.pycqa.org", - "_description": "pycodestyle: Simple Python style checker in one Python file", - "_organization": "pycqa", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2009-10-02T00:00:00.000Z", - "_age_weeks": 689, - "_stars_per_week": 6.88, - "_pop_contributor_count": 131, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "llnl", - "tableau&salesforce" + "applemontechnologies", + "christianclauss", + "clearcalcs", + "rjc-development", + "wedosarl" + ], + "_pop_contributor_orgs_raw": [ + "@rjc-development ", + "Applemon Technologies", + "Christian Clauss", + "ClearCalcs", + "WEDO Sarl" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.88, - "_pop_updated_issues_count": 37, - "_pop_closed_issues_count": 36, - "_pop_created_since_days": 161, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, + "_pop_commit_frequency": 1.08, + "_pop_updated_issues_count": 18, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 37, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 3, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 37.0, - "_pop_comment_count": 41.0, + "_pop_issue_count": 18.0, + "_pop_comment_count": 11.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 2936, - "_pop_score": 56.66, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pycqa/pycodestyle/master/README.rst", - "_readme_localurl": "pycqa~pycodestyle~README.rst", + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 30.98, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/connorferster/handcalcs/master/README.md", + "_readme_localurl": "connorferster~handcalcs~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pycqa/pycodestyle/master/setup.py" + "https://raw.githubusercontent.com/connorferster/handcalcs/master/requirements.txt", + "https://raw.githubusercontent.com/connorferster/handcalcs/master/pyproject.toml" ], "_requirements_localurls": [ - "pycqa~pycodestyle~setup.py" + "connorferster~handcalcs~requirements.txt", + "connorferster~handcalcs~pyproject.toml" ] }, { - "index": 687, - "category": "util", - "githuburl": "https://github.com/bndr/pipreqs", + "index": 15, + "category": "ml-dl", + "githuburl": "https://github.com/skorch-dev/skorch", "featured": null, "links": null, "description": null, - "_repopath": "bndr/pipreqs", - "_reponame": "pipreqs", - "_stars": 4741, - "_forks": 319, - "_watches": 59, - "_topics": [], - "_language": "Python", + "_repopath": "skorch-dev/skorch", + "_reponame": "skorch", + "_stars": 5041, + "_forks": 336, + "_watches": 82, + "_language": "Jupyter Notebook", "_homepage": "", - "_description": "pipreqs - Generate pip requirements.txt file based on imports of any project. Looking for maintainers to move this project forward.", - "_organization": "bndr", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", - "_created_at": "2015-04-22T00:00:00.000Z", - "_age_weeks": 399, - "_stars_per_week": 11.86, - "_pop_contributor_count": 52, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_description": "skorch: A scikit-learn compatible neural network library that wraps PyTorch", + "_organization": "skorch-dev", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2017-07-18T00:00:00.000Z", + "_age_weeks": 292, + "_stars_per_week": 17.26, + "_topics": [ + "scikit-learn", + "pytorch", + "machine-learning", + "hacktoberfest" + ], + "_last_commit_date": "2023-02-13T00:00:00.000Z", + "_pop_contributor_count": 54, + "_pop_contributor_logins": [ + "BenjaminBossan", + "adelevie@casetext", + "asberk", + "benjamin-work@ottogroupbi", + "dnouri", + "ottonemo@ottogroupbi", + "stsievert", + "taketwo@aeolusrobotics", + "thomasjpfan@quansight-labs", + "timokau" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "aeolusrobotics", + "casetext", + "ottogroupbi", + "quansight-labs" + ], + "_pop_contributor_orgs_raw": [ + "@Quansight-Labs ", + "@casetext ", + "Aeolus Robotics, Inc.", + "Otto Group BI" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.02, - "_pop_updated_issues_count": 28, - "_pop_closed_issues_count": 7, - "_pop_created_since_days": 93, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, + "_pop_commit_frequency": 1.08, + "_pop_updated_issues_count": 21, + "_pop_closed_issues_count": 12, + "_pop_created_since_days": 68, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 28.0, - "_pop_comment_count": 26.0, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 21.0, + "_pop_comment_count": 69.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 27, - "_pop_score": 35.38, + "_pop_comment_frequency": 3.3, + "_pop_dependents_count": 0, + "_pop_score": 42.66, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/bndr/pipreqs/master/README.rst", - "_readme_localurl": "bndr~pipreqs~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/skorch-dev/skorch/master/README.rst", + "_readme_localurl": "skorch-dev~skorch~README.rst", "_requirements_filenames": [ "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/bndr/pipreqs/master/requirements.txt", - "https://raw.githubusercontent.com/bndr/pipreqs/master/setup.py" + "https://raw.githubusercontent.com/skorch-dev/skorch/master/requirements.txt", + "https://raw.githubusercontent.com/skorch-dev/skorch/master/setup.py" ], "_requirements_localurls": [ - "bndr~pipreqs~requirements.txt", - "bndr~pipreqs~setup.py" + "skorch-dev~skorch~requirements.txt", + "skorch-dev~skorch~setup.py" ] }, { - "index": 513, - "category": "util", - "githuburl": "https://github.com/agronholm/apscheduler", + "index": 953, + "category": "security", + "githuburl": "https://github.com/stamparm/maltrail", "featured": null, "links": null, "description": null, - "_repopath": "agronholm/apscheduler", - "_reponame": "apscheduler", - "_stars": 4722, - "_forks": 604, - "_watches": 126, - "_topics": [], + "_repopath": "stamparm/maltrail", + "_reponame": "maltrail", + "_stars": 4978, + "_forks": 932, + "_watches": 216, "_language": "Python", "_homepage": "", - "_description": "apscheduler: Task scheduling library for Python", - "_organization": "agronholm", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2016-03-27T00:00:00.000Z", - "_age_weeks": 351, - "_stars_per_week": 13.45, - "_pop_contributor_count": 37, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_description": "maltrail: Malicious traffic detection system", + "_organization": "stamparm", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2014-12-04T00:00:00.000Z", + "_age_weeks": 428, + "_stars_per_week": 11.61, + "_topics": [ + "security", + "malware", + "intrusion-detection", + "sensor", + "python", + "network-monitoring", + "attack-detection" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 40, + "_pop_contributor_logins": [ + "D9ping", + "MikhailKasimov", + "PeterDaveHello@dnscryptnodejsmaintainerscampus-expertstransmission-remote-gui", + "arons@logobjectag", + "dyussekeyev@nazarbayevuniversity", + "jtkristoff", + "laciKE", + "stamparm", + "t3chn0m4g3@deutschetelekomsecuritygmbh", + "wesinator" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "nextdaysolutionsoy" + "deutschetelekomsecuritygmbh", + "dnscryptnodejsmaintainerscampus-expertstransmission-remote-gui", + "logobjectag", + "nazarbayevuniversity" + ], + "_pop_contributor_orgs_raw": [ + "@DNSCrypt @nodejs @maintainers @campus-experts @transmission-remote-gui", + "Deutsche Telekom Security GmbH", + "LogObject AG", + "Nazarbayev University" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.81, - "_pop_updated_issues_count": 25, - "_pop_closed_issues_count": 16, - "_pop_created_since_days": 82, + "_pop_commit_frequency": 249.54, + "_pop_updated_issues_count": 15, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 100, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 25.0, - "_pop_comment_count": 53.0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 15.0, + "_pop_comment_count": 42.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 713, - "_pop_score": 51.28, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/agronholm/apscheduler/master/README.rst", - "_readme_localurl": "agronholm~apscheduler~README.rst", + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 0, + "_pop_score": 52.7, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/stamparm/maltrail/master/README.md", + "_readme_localurl": "stamparm~maltrail~README.md", "_requirements_filenames": [ - "pyproject.toml" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/agronholm/apscheduler/master/pyproject.toml" + "https://raw.githubusercontent.com/stamparm/maltrail/master/requirements.txt" ], "_requirements_localurls": [ - "agronholm~apscheduler~pyproject.toml" + "stamparm~maltrail~requirements.txt" ] }, { - "index": 265, - "category": "util", - "githuburl": "https://github.com/pytransitions/transitions", + "index": 181, + "category": "security", + "githuburl": "https://github.com/pycqa/bandit", "featured": null, "links": null, "description": null, - "_repopath": "pytransitions/transitions", - "_reponame": "transitions", - "_stars": 4690, - "_forks": 512, - "_watches": 93, + "_repopath": "pycqa/bandit", + "_reponame": "bandit", + "_stars": 4968, + "_forks": 505, + "_watches": 66, + "_language": "Python", + "_homepage": "https://bandit.readthedocs.io", + "_description": "Bandit is a tool designed to find common security issues in Python code.", + "_organization": "pycqa", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-04-26T00:00:00.000Z", + "_age_weeks": 251, + "_stars_per_week": 19.73, "_topics": [ - "python", - "state-machine", - "nested-states", - "hierarchical-state-machine", - "state-diagram" + "linter", + "bandit", + "security-tools", + "security-scanner", + "security", + "static-code-analysis", + "python" ], - "_language": "Python", - "_homepage": "", - "_description": "transitions: A lightweight, object-oriented finite state machine implementation in Python with many extensions", - "_organization": "pytransitions", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-08T00:00:00.000Z", - "_created_at": "2014-10-12T00:00:00.000Z", - "_age_weeks": 427, - "_stars_per_week": 10.98, - "_pop_contributor_count": 75, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "caretechowl,fhbielefeld", - "jrc-stu", - "twitter" + "_last_commit_date": "2023-02-11T00:00:00.000Z", + "_pop_contributor_count": 161, + "_pop_contributor_logins": [ + "brantlk@ibm", + "chair6", + "cjschaef@ibm", + "ehooo", + "ericwb@securesauce", + "lukehinds@redhat,inc", + "pwnetrationguru@ubertechnologies", + "sigmavirus24@tableau&salesforce", + "stannum-l@pwc", + "viraptor" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "ibm", + "pwc", + "redhat,inc", + "securesauce", + "tableau&salesforce", + "ubertechnologies" + ], + "_pop_contributor_orgs_raw": [ + "@IBM ", + "@tableau & @salesforce", + "IBM", + "PwC", + "Red Hat, Inc", + "Secure Sauce", + "UBER Technologies" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.65, - "_pop_updated_issues_count": 8, - "_pop_closed_issues_count": 5, - "_pop_created_since_days": 100, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 1.37, + "_pop_updated_issues_count": 31, + "_pop_closed_issues_count": 12, + "_pop_created_since_days": 59, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_estimated_tags": 8, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 8.0, - "_pop_comment_count": 7.0, + "_pop_issue_count": 31.0, + "_pop_comment_count": 24.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 143, - "_pop_score": 45.59, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pytransitions/transitions/master/README.md", - "_readme_localurl": "pytransitions~transitions~README.md", + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 43.73, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pycqa/bandit/master/README.rst", + "_readme_localurl": "pycqa~bandit~README.rst", "_requirements_filenames": [ "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pytransitions/transitions/master/requirements.txt", - "https://raw.githubusercontent.com/pytransitions/transitions/master/setup.py" + "https://raw.githubusercontent.com/pycqa/bandit/master/requirements.txt", + "https://raw.githubusercontent.com/pycqa/bandit/master/setup.py" ], "_requirements_localurls": [ - "pytransitions~transitions~requirements.txt", - "pytransitions~transitions~setup.py" + "pycqa~bandit~requirements.txt", + "pycqa~bandit~setup.py" ] }, { - "index": 213, + "index": 380, "category": "data", - "githuburl": "https://github.com/facebookresearch/augly", + "githuburl": "https://github.com/alirezamika/autoscraper", "featured": null, "links": null, "description": null, - "_repopath": "facebookresearch/augly", - "_reponame": "AugLy", - "_stars": 4625, - "_forks": 267, - "_watches": 61, - "_topics": [], + "_repopath": "alirezamika/autoscraper", + "_reponame": "autoscraper", + "_stars": 4946, + "_forks": 520, + "_watches": 125, "_language": "Python", - "_homepage": "https://ai.facebook.com/blog/augly-a-new-data-augmentation-library-to-help-build-more-robust-ai-models/", - "_description": "AugLy: A data augmentations library for audio, image, text, and video.", - "_organization": "facebookresearch", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2021-06-09T00:00:00.000Z", - "_age_weeks": 79, - "_stars_per_week": 58.02, - "_pop_contributor_count": 26, + "_homepage": "", + "_description": "autoscraper: A Smart, Automatic, Fast and Lightweight Web Scraper for Python", + "_organization": "alirezamika", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-08-31T00:00:00.000Z", + "_age_weeks": 129, + "_stars_per_week": 38.26, + "_topics": [ + "scraping", + "scraper", + "scrape", + "webscraping", + "crawler", + "web-scraping", + "ai", + "artificial-intelligence", + "python", + "webautomation", + "automation", + "machine-learning" + ], + "_last_commit_date": "2022-07-17T00:00:00.000Z", + "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "Narasimha1997@cognitifai", + "PickNickChock", + "alirezamika", + "cthulhu-irl", + "gsakkis", + "jasonleonhard@http://stackoverflow.com/users/1783588/jasonleonhard", + "maxbachmann" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "facebookresearch", - "omnilib" + "cognitifai", + "http://stackoverflow.com/users/1783588/jasonleonhard" + ], + "_pop_contributor_orgs_raw": [ + "cognitifai", + "http://stackoverflow.com/users/1783588/jasonleonhard" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.02, - "_pop_updated_issues_count": 1, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 19, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 30, + "_pop_updated_since_days": 7, "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_estimated_tags": 6, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 1.0, - "_pop_comment_count": 0.0, + "_pop_issue_count": 6.0, + "_pop_comment_count": 9.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 106, - "_pop_score": 33.14, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 22.56, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/augly/master/README.md", - "_readme_localurl": "facebookresearch~augly~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/alirezamika/autoscraper/master/README.md", + "_readme_localurl": "alirezamika~autoscraper~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/facebookresearch/augly/master/requirements.txt", - "https://raw.githubusercontent.com/facebookresearch/augly/master/setup.py" + "https://raw.githubusercontent.com/alirezamika/autoscraper/master/setup.py" ], "_requirements_localurls": [ - "facebookresearch~augly~requirements.txt", - "facebookresearch~augly~setup.py" + "alirezamika~autoscraper~setup.py" ] }, { - "index": 551, - "category": "ml", - "githuburl": "https://github.com/open-mmlab/mmcv", + "index": 687, + "category": "util", + "githuburl": "https://github.com/bndr/pipreqs", "featured": null, "links": null, "description": null, - "_repopath": "open-mmlab/mmcv", - "_reponame": "mmcv", - "_stars": 4578, - "_forks": 1326, - "_watches": 83, - "_topics": [], + "_repopath": "bndr/pipreqs", + "_reponame": "pipreqs", + "_stars": 4888, + "_forks": 331, + "_watches": 58, "_language": "Python", - "_homepage": "https://mmcv.readthedocs.io/en/latest/", - "_description": "mmcv: OpenMMLab Computer Vision Foundation", - "_organization": "open-mmlab", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2018-08-22T00:00:00.000Z", - "_age_weeks": 225, - "_stars_per_week": 20.28, - "_pop_contributor_count": 237, + "_homepage": "", + "_description": "pipreqs - Generate pip requirements.txt file based on imports of any project. Looking for maintainers to move this project forward.", + "_organization": "bndr", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-04-22T00:00:00.000Z", + "_age_weeks": 409, + "_stars_per_week": 11.95, + "_topics": [], + "_last_commit_date": "2023-01-14T00:00:00.000Z", + "_pop_contributor_count": 53, + "_pop_contributor_logins": [ + "AlexPHorta@buey", + "KaySackey@9cloud", + "Ohcanep", + "alan-barzilay", + "bndr", + "hdformat", + "jonafato", + "littmus", + "mapattacker", + "raxod502@plaid" + ], "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "mmlab,ntu", - "open-mmlab", - "ucsd" + "9cloud", + "buey", + "plaid" + ], + "_pop_contributor_orgs_raw": [ + "9Cloud LLC", + "@plaid", + "Buey" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.75, - "_pop_updated_issues_count": 283, - "_pop_closed_issues_count": 219, - "_pop_created_since_days": 53, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 18, - "_pop_recent_releases_estimated_tags": 23, - "_pop_recent_releases_adjusted_count": 18, - "_pop_issue_count": 283.0, - "_pop_comment_count": 368.0, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 34, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 95, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 34.0, + "_pop_comment_count": 22.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 41, - "_pop_score": 58.07, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/open-mmlab/mmcv/master/README.md", - "_readme_localurl": "open-mmlab~mmcv~README.md", + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 35.83, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/bndr/pipreqs/master/README.rst", + "_readme_localurl": "bndr~pipreqs~README.rst", "_requirements_filenames": [ "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/open-mmlab/mmcv/master/requirements.txt", - "https://raw.githubusercontent.com/open-mmlab/mmcv/master/setup.py" + "https://raw.githubusercontent.com/bndr/pipreqs/master/requirements.txt", + "https://raw.githubusercontent.com/bndr/pipreqs/master/setup.py" ], "_requirements_localurls": [ - "open-mmlab~mmcv~requirements.txt", - "open-mmlab~mmcv~setup.py" + "bndr~pipreqs~requirements.txt", + "bndr~pipreqs~setup.py" ] }, { - "index": 830, - "category": "typing", - "githuburl": "https://github.com/python-attrs/attrs", - "featured": 1.0, + "index": 169, + "category": "nlp", + "githuburl": "https://github.com/minimaxir/textgenrnn", + "featured": null, "links": null, "description": null, - "_repopath": "python-attrs/attrs", - "_reponame": "attrs", - "_stars": 4546, - "_forks": 319, - "_watches": 58, + "_repopath": "minimaxir/textgenrnn", + "_reponame": "textgenrnn", + "_stars": 4866, + "_forks": 750, + "_watches": 138, + "_language": "Python", + "_homepage": "", + "_description": "textgenrnn: Easily train your own text-generating neural network of any size and complexity on any text dataset with a few lines of code.", + "_organization": "minimaxir", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-08-07T00:00:00.000Z", + "_age_weeks": 289, + "_stars_per_week": 16.82, "_topics": [ - "python", - "boilerplate", - "classes", - "oop", - "attributes", - "srp" + "keras", + "deep-learning", + "text-generation", + "tensorflow", + "python" ], - "_language": "Python", - "_homepage": "https://www.attrs.org/", - "_description": "attrs: Python Classes Without Boilerplate", - "_organization": "python-attrs", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2015-01-27T00:00:00.000Z", - "_age_weeks": 411, - "_stars_per_week": 11.04, - "_pop_contributor_count": 137, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2020-07-14T00:00:00.000Z", + "_pop_contributor_count": 19, + "_pop_contributor_logins": [ + "EdwardBetts", + "IrekRybark@sivantos", + "akx@valohai", + "bafonso", + "danielgrijalva", + "dkavraal", + "fahadh4ilyas", + "minimaxir@buzzfeed", + "netr", + "torokati44" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "pocketzworld", - "variomediaag" + "buzzfeed", + "sivantos", + "valohai" + ], + "_pop_contributor_orgs_raw": [ + "@buzzfeed ", + "@valohai ", + "Sivantos, Inc." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.12, - "_pop_updated_issues_count": 61, - "_pop_closed_issues_count": 44, - "_pop_created_since_days": 96, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 61.0, - "_pop_comment_count": 133.0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 67, + "_pop_updated_since_days": 32, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 3.0, + "_pop_comment_count": 3.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.2, - "_pop_dependents_count": 1224, - "_pop_score": 58.64, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 22.71, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/python-attrs/attrs/master/README.md", - "_readme_localurl": "python-attrs~attrs~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/minimaxir/textgenrnn/master/README.md", + "_readme_localurl": "minimaxir~textgenrnn~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/python-attrs/attrs/master/setup.py", - "https://raw.githubusercontent.com/python-attrs/attrs/master/pyproject.toml" + "https://raw.githubusercontent.com/minimaxir/textgenrnn/master/requirements.txt", + "https://raw.githubusercontent.com/minimaxir/textgenrnn/master/setup.py" ], "_requirements_localurls": [ - "python-attrs~attrs~setup.py", - "python-attrs~attrs~pyproject.toml" + "minimaxir~textgenrnn~requirements.txt", + "minimaxir~textgenrnn~setup.py" ] }, { - "index": 783, - "category": "diffusion", - "githuburl": "https://github.com/carson-katri/dream-textures", + "index": 569, + "category": "ml", + "githuburl": "https://github.com/mdbloice/augmentor", "featured": null, "links": null, "description": null, - "_repopath": "carson-katri/dream-textures", - "_reponame": "dream-textures", - "_stars": 4525, - "_forks": 221, - "_watches": 85, + "_repopath": "mdbloice/augmentor", + "_reponame": "Augmentor", + "_stars": 4858, + "_forks": 857, + "_watches": 123, + "_language": "Python", + "_homepage": "https://augmentor.readthedocs.io/en/stable", + "_description": "Augmentor: Image augmentation library in Python for machine learning.", + "_organization": "mdbloice", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2016-03-01T00:00:00.000Z", + "_age_weeks": 364, + "_stars_per_week": 13.34, "_topics": [ - "ai", - "blender", - "blender-addon", - "image-generation", - "stable-diffusion" + "augmentation", + "machine-learning", + "deep-learning", + "neural-networks" ], - "_language": "Python", - "_homepage": "", - "_description": "dream-textures: Stable Diffusion built-in to the Blender shader editor", - "_organization": "carson-katri", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2022-09-08T00:00:00.000Z", - "_age_weeks": 14, - "_stars_per_week": 310.54, - "_pop_contributor_count": 7, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "blastframe", - "blenderdiplom" + "_last_commit_date": "2023-01-24T00:00:00.000Z", + "_pop_contributor_count": 23, + "_pop_contributor_logins": [ + "CarkusL", + "Evizero", + "YananJian", + "eddiesmo@connectedpapers", + "juneoh", + "kmader", + "lradacher", + "mdbloice@medicaluniversitygraz", + "puhoshville", + "s-ai-kia@lsbg,hamburg" ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.1, - "_pop_updated_issues_count": 352, - "_pop_closed_issues_count": 214, - "_pop_created_since_days": 3, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 9, - "_pop_recent_releases_estimated_tags": 36, - "_pop_recent_releases_adjusted_count": 9, - "_pop_issue_count": 352.0, - "_pop_comment_count": 1050.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.0, - "_pop_dependents_count": 5, - "_pop_score": 37.43, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/carson-katri/dream-textures/master/README.md", - "_readme_localurl": "carson-katri~dream-textures~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, - { - "index": 247, - "category": "util", - "githuburl": "https://github.com/jorgebastida/awslogs", - "featured": null, - "links": null, - "description": null, - "_repopath": "jorgebastida/awslogs", - "_reponame": "awslogs", - "_stars": 4512, - "_forks": 325, - "_watches": 61, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "awslogs: AWS CloudWatch logs for Humans\u2122", - "_organization": "jorgebastida", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2020-07-10T00:00:00.000Z", - "_created_at": "2015-01-21T00:00:00.000Z", - "_age_weeks": 412, - "_stars_per_week": 10.93, - "_pop_contributor_count": 39, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "freelancer,upforhire", - "infiniteforksl" + "connectedpapers", + "lsbg,hamburg", + "medicaluniversitygraz" + ], + "_pop_contributor_orgs_raw": [ + "@ConnectedPapers ", + "LSBG, Hamburg", + "Medical University Graz" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 6, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 96, - "_pop_updated_since_days": 30, + "_pop_commit_frequency": 0.19, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 85, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 6.0, - "_pop_comment_count": 3.0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 5.0, + "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 53, - "_pop_score": 29.83, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/jorgebastida/awslogs/master/README.rst", - "_readme_localurl": "jorgebastida~awslogs~README.rst", + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 31.0, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/mdbloice/augmentor/master/README.md", + "_readme_localurl": "mdbloice~augmentor~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/jorgebastida/awslogs/master/setup.py" + "https://raw.githubusercontent.com/mdbloice/augmentor/master/requirements.txt", + "https://raw.githubusercontent.com/mdbloice/augmentor/master/setup.py" ], "_requirements_localurls": [ - "jorgebastida~awslogs~setup.py" + "mdbloice~augmentor~requirements.txt", + "mdbloice~augmentor~setup.py" ] }, { - "index": 97, - "category": "jupyter", - "githuburl": "https://github.com/voila-dashboards/voila", + "index": 513, + "category": "util", + "githuburl": "https://github.com/agronholm/apscheduler", "featured": null, "links": null, "description": null, - "_repopath": "voila-dashboards/voila", - "_reponame": "voila", - "_stars": 4489, - "_forks": 448, - "_watches": 77, - "_topics": [ - "jupyter", - "jupyter-notebook", - "jupyterlab-extension", - "dashboarding" - ], + "_repopath": "agronholm/apscheduler", + "_reponame": "apscheduler", + "_stars": 4851, + "_forks": 617, + "_watches": 122, "_language": "Python", - "_homepage": "https://voila.readthedocs.io", - "_description": "voila: Voil\u00e0 turns Jupyter notebooks into standalone web applications", - "_organization": "voila-dashboards", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2018-08-21T00:00:00.000Z", - "_age_weeks": 225, - "_stars_per_week": 19.88, - "_pop_contributor_count": 63, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": "", + "_description": "apscheduler: Task scheduling library for Python", + "_organization": "agronholm", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-03-27T00:00:00.000Z", + "_age_weeks": 360, + "_stars_per_week": 13.46, + "_topics": [], + "_last_commit_date": "2023-02-07T00:00:00.000Z", + "_pop_contributor_count": 38, + "_pop_contributor_logins": [ + "AntonKorobkov", + "adamkalis", + "agronholm@nextdaysolutionsoy", + "bjmc", + "c-oreills", + "eendebakpt", + "jvillar@wetaca", + "linuxdynasty", + "nikolas@columbiauniversity", + "pre-commit-ci[bot]" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "maartenbreddels", - "quantstack" + "columbiauniversity", + "nextdaysolutionsoy", + "wetaca" + ], + "_pop_contributor_orgs_raw": [ + "Columbia University", + "NextDay Solutions Oy", + "Wetaca" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 2.63, - "_pop_updated_issues_count": 114, - "_pop_closed_issues_count": 64, - "_pop_created_since_days": 53, + "_pop_updated_issues_count": 25, + "_pop_closed_issues_count": 15, + "_pop_created_since_days": 84, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 14, - "_pop_recent_releases_estimated_tags": 29, - "_pop_recent_releases_adjusted_count": 14, - "_pop_issue_count": 114.0, - "_pop_comment_count": 285.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 25.0, + "_pop_comment_count": 33.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 77, - "_pop_score": 52.98, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/voila-dashboards/voila/master/README.md", - "_readme_localurl": "voila-dashboards~voila~README.md", + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 41.64, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/agronholm/apscheduler/master/README.rst", + "_readme_localurl": "agronholm~apscheduler~README.rst", "_requirements_filenames": [ - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/voila-dashboards/voila/master/setup.py", - "https://raw.githubusercontent.com/voila-dashboards/voila/master/pyproject.toml" + "https://raw.githubusercontent.com/agronholm/apscheduler/master/pyproject.toml" ], "_requirements_localurls": [ - "voila-dashboards~voila~setup.py", - "voila-dashboards~voila~pyproject.toml" + "agronholm~apscheduler~pyproject.toml" ] }, { - "index": 312, - "category": "util", - "githuburl": "https://github.com/indygreg/pyoxidizer", + "index": 661, + "category": "study", + "githuburl": "https://github.com/udacity/deep-learning-v2-pytorch", "featured": null, "links": null, "description": null, - "_repopath": "indygreg/pyoxidizer", - "_reponame": "PyOxidizer", - "_stars": 4430, - "_forks": 190, - "_watches": 59, - "_topics": [], - "_language": "Rust", - "_homepage": "", - "_description": "PyOxidizer: A modern Python application packaging and distribution tool", - "_organization": "indygreg", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-20T00:00:00.000Z", - "_created_at": "2018-12-18T00:00:00.000Z", - "_age_weeks": 208, - "_stars_per_week": 21.21, - "_pop_contributor_count": 53, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "franklin-ai", - "isaadvisers" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 27.5, - "_pop_updated_issues_count": 40, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 49, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 11, - "_pop_recent_releases_estimated_tags": 88, - "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 40.0, - "_pop_comment_count": 47.0, + "_repopath": "udacity/deep-learning-v2-pytorch", + "_reponame": "deep-learning-v2-pytorch", + "_stars": 4848, + "_forks": 5211, + "_watches": 174, + "_language": "Jupyter Notebook", + "_homepage": null, + "_description": "deep-learning-v2-pytorch: Projects and exercises for the latest Deep Learning ND program https://www.udacity.com/course/deep-learning-nanodegree--nd101", + "_organization": "udacity", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-09-04T00:00:00.000Z", + "_age_weeks": 233, + "_stars_per_week": 20.79, + "_topics": [ + "deep-learning", + "neural-network", + "convolutional-networks", + "pytorch", + "recurrent-networks", + "style-transfer", + "sentiment-analysis" + ], + "_last_commit_date": "2022-12-24T00:00:00.000Z", + "_pop_contributor_count": 98, + "_pop_contributor_logins": [ + "HanzTantiangco@universityofsheffield", + "NadimKawwa", + "SudKul@udacity", + "abhiojha8@udacity", + "cezannec", + "festusdrakon", + "jchernus@lumafield", + "mcleonard@bardeen", + "ronny-udacity", + "rrrrrr8@flow" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "bardeen", + "flow", + "lumafield", + "udacity", + "universityofsheffield" + ], + "_pop_contributor_orgs_raw": [ + "@lumafield ", + "Bardeen", + "Udacity", + "University of Sheffield", + "flow" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 54, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 59, - "_pop_score": 50.74, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 30.02, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/indygreg/pyoxidizer/master/README.md", - "_readme_localurl": "indygreg~pyoxidizer~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/udacity/deep-learning-v2-pytorch/master/README.md", + "_readme_localurl": "udacity~deep-learning-v2-pytorch~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/indygreg/pyoxidizer/master/setup.py" + "https://raw.githubusercontent.com/udacity/deep-learning-v2-pytorch/master/requirements.txt" ], "_requirements_localurls": [ - "indygreg~pyoxidizer~setup.py" + "udacity~deep-learning-v2-pytorch~requirements.txt" ] }, { - "index": 66, + "index": 642, "category": "util", - "githuburl": "https://github.com/pycqa/pylint", + "githuburl": "https://github.com/pycqa/pycodestyle", "featured": null, "links": null, "description": null, - "_repopath": "pycqa/pylint", - "_reponame": "pylint", - "_stars": 4389, - "_forks": 950, - "_watches": 72, + "_repopath": "pycqa/pycodestyle", + "_reponame": "pycodestyle", + "_stars": 4775, + "_forks": 694, + "_watches": 120, + "_language": "Python", + "_homepage": "https://pycodestyle.pycqa.org", + "_description": "pycodestyle: Simple Python style checker in one Python file", + "_organization": "pycqa", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2009-10-02T00:00:00.000Z", + "_age_weeks": 698, + "_stars_per_week": 6.83, "_topics": [ - "static-analysis", - "linter", - "static-code-analysis", - "code-quality", + "python", "pep8", - "closember", - "hacktoberfest" + "styleguide", + "style-guide", + "linter-plugin", + "linter-flake8", + "flake8-plugin" ], - "_language": "Python", - "_homepage": "http://pylint.pycqa.org", - "_description": "pylint: It's not just a linter that annoys you!", - "_organization": "pycqa", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2015-12-09T00:00:00.000Z", - "_age_weeks": 366, - "_stars_per_week": 11.97, - "_pop_contributor_count": 503, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-12-13T00:00:00.000Z", + "_pop_contributor_count": 131, + "_pop_contributor_logins": [ + "IanLee1521@llnl", + "asottile", + "cdce8p", + "florentx", + "gward", + "jcrocholl", + "jdufresne@pioneervalleybooks", + "pre-commit-ci[bot]", + "reinout@nens", + "sigmavirus24@tableau&salesforce" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "azavea", - "channable" + "llnl", + "nens", + "pioneervalleybooks", + "tableau&salesforce" + ], + "_pop_contributor_orgs_raw": [ + "@LLNL", + "@nens ", + "@tableau & @salesforce", + "Pioneer Valley Books" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 36.04, - "_pop_updated_issues_count": 722, - "_pop_closed_issues_count": 471, - "_pop_created_since_days": 86, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 28, - "_pop_recent_releases_estimated_tags": 24, - "_pop_recent_releases_adjusted_count": 28, - "_pop_issue_count": 722.0, - "_pop_comment_count": 2451.0, + "_pop_commit_frequency": 0.73, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 163, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 16.0, + "_pop_comment_count": 18.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.4, - "_pop_dependents_count": 17832, - "_pop_score": 78.21, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 40.79, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pycqa/pylint/master/README.rst", - "_readme_localurl": "pycqa~pylint~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pycqa/pycodestyle/master/README.rst", + "_readme_localurl": "pycqa~pycodestyle~README.rst", "_requirements_filenames": [ - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pycqa/pylint/master/pyproject.toml" + "https://raw.githubusercontent.com/pycqa/pycodestyle/master/setup.py" ], "_requirements_localurls": [ - "pycqa~pylint~pyproject.toml" + "pycqa~pycodestyle~setup.py" ] }, { - "index": 206, - "category": "ml", - "githuburl": "https://github.com/lucidrains/deep-daze", + "index": 265, + "category": "util", + "githuburl": "https://github.com/pytransitions/transitions", "featured": null, "links": null, "description": null, - "_repopath": "lucidrains/deep-daze", - "_reponame": "deep-daze", - "_stars": 4366, - "_forks": 328, - "_watches": 76, - "_topics": [ - "artificial-intelligence", - "deep-learning", - "transformers", - "siren", - "implicit-neural-representation", - "text-to-image", - "multi-modality" - ], + "_repopath": "pytransitions/transitions", + "_reponame": "transitions", + "_stars": 4761, + "_forks": 511, + "_watches": 91, "_language": "Python", "_homepage": "", - "_description": "deep-daze: Simple command line tool for text to image generation using OpenAI's CLIP and Siren (Implicit neural representation network). Technique was originally created by https://twitter.com/advadnoun", - "_organization": "lucidrains", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-03-13T00:00:00.000Z", - "_created_at": "2021-01-17T00:00:00.000Z", - "_age_weeks": 100, - "_stars_per_week": 43.6, - "_pop_contributor_count": 14, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_description": "transitions: A lightweight, object-oriented finite state machine implementation in Python with many extensions", + "_organization": "pytransitions", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2014-10-12T00:00:00.000Z", + "_age_weeks": 436, + "_stars_per_week": 10.91, + "_topics": [ + "python", + "state-machine", + "nested-states", + "hierarchical-state-machine", + "state-diagram" + ], + "_last_commit_date": "2023-01-06T00:00:00.000Z", + "_pop_contributor_count": 75, + "_pop_contributor_logins": [ + "Synss@tribe29gmbh", + "TheMysteriousX", + "aleneum@caretechowl,fhbielefeld", + "ankostis@jrc-stu", + "artofhuman", + "ollamh", + "svdgraaf@teamookla/downdetector", + "thedrow", + "tyarkoni@twitter", + "wtgee" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "adalab" + "caretechowl,fhbielefeld", + "jrc-stu", + "teamookla/downdetector", + "tribe29gmbh", + "twitter" + ], + "_pop_contributor_orgs_raw": [ + "@JRC-STU ", + "@teamookla / Downdetector", + "@tribe29 GmbH", + "CareTech OWL, FH Bielefeld", + "Twitter" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.04, - "_pop_updated_issues_count": 1, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 23, - "_pop_updated_since_days": 9, + "_pop_commit_frequency": 0.62, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 102, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 35, + "_pop_recent_releases_estimated_tags": 5, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 1.0, - "_pop_comment_count": 1.0, + "_pop_issue_count": 8.0, + "_pop_comment_count": 11.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 37, - "_pop_score": 25.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 38.4, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/lucidrains/deep-daze/master/README.md", - "_readme_localurl": "lucidrains~deep-daze~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pytransitions/transitions/master/README.md", + "_readme_localurl": "pytransitions~transitions~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/lucidrains/deep-daze/master/setup.py" + "https://raw.githubusercontent.com/pytransitions/transitions/master/requirements.txt", + "https://raw.githubusercontent.com/pytransitions/transitions/master/setup.py" ], "_requirements_localurls": [ - "lucidrains~deep-daze~setup.py" + "pytransitions~transitions~requirements.txt", + "pytransitions~transitions~setup.py" ] }, { - "index": 196, - "category": "viz", - "githuburl": "https://github.com/lux-org/lux", + "index": 551, + "category": "ml", + "githuburl": "https://github.com/open-mmlab/mmcv", "featured": null, "links": null, "description": null, - "_repopath": "lux-org/lux", - "_reponame": "lux", - "_stars": 4329, - "_forks": 338, - "_watches": 86, - "_topics": [ - "visualization-tools", - "jupyter", - "python", - "data-science", - "exploratory-data-analysis", - "visualization", - "pandas" - ], + "_repopath": "open-mmlab/mmcv", + "_reponame": "mmcv", + "_stars": 4699, + "_forks": 1394, + "_watches": 84, "_language": "Python", - "_homepage": "", - "_description": "lux: Automatically visualize your pandas dataframe via a single print! \ud83d\udcca \ud83d\udca1", - "_organization": "lux-org", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-05-21T00:00:00.000Z", - "_created_at": "2020-01-08T00:00:00.000Z", - "_age_weeks": 153, - "_stars_per_week": 28.16, - "_pop_contributor_count": 20, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://mmcv.readthedocs.io/en/latest/", + "_description": "mmcv: OpenMMLab Computer Vision Foundation", + "_organization": "open-mmlab", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-08-22T00:00:00.000Z", + "_age_weeks": 235, + "_stars_per_week": 20.0, + "_topics": [], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 249, + "_pop_contributor_logins": [ + "MeowZheng@openmmlab", + "ZwwWayne@mmlab,ntu", + "dreamerlin@shanghaiailab", + "grimoire", + "hellock@open-mmlab", + "jshilong@shanghaiailab", + "teamwong111", + "xvjiarui@ucsd", + "yhcao6@cuhk,mmlab", + "zhouzaida" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "ponder-org" + "cuhk,mmlab", + "mmlab,ntu", + "open-mmlab", + "openmmlab", + "shanghaiailab", + "ucsd" + ], + "_pop_contributor_orgs_raw": [ + "@open-mmlab ", + "CUHK, MMLab", + "MMLab, NTU", + "OpenMMLab", + "Shanghai AI Lab", + "UCSD" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.35, - "_pop_updated_issues_count": 6, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 36, - "_pop_updated_since_days": 7, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 6.0, - "_pop_comment_count": 11.0, + "_pop_commit_frequency": 5.54, + "_pop_updated_issues_count": 208, + "_pop_closed_issues_count": 145, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 16, + "_pop_recent_releases_estimated_tags": 23, + "_pop_recent_releases_adjusted_count": 16, + "_pop_issue_count": 208.0, + "_pop_comment_count": 260.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, + "_pop_comment_frequency": 1.2, "_pop_dependents_count": 0, - "_pop_score": 23.75, + "_pop_score": 53.41, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/lux-org/lux/master/README.md", - "_readme_localurl": "lux-org~lux~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/open-mmlab/mmcv/master/README.md", + "_readme_localurl": "open-mmlab~mmcv~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/lux-org/lux/master/requirements.txt", - "https://raw.githubusercontent.com/lux-org/lux/master/setup.py", - "https://raw.githubusercontent.com/lux-org/lux/master/pyproject.toml" + "https://raw.githubusercontent.com/open-mmlab/mmcv/master/requirements.txt", + "https://raw.githubusercontent.com/open-mmlab/mmcv/master/setup.py" ], "_requirements_localurls": [ - "lux-org~lux~requirements.txt", - "lux-org~lux~setup.py", - "lux-org~lux~pyproject.toml" + "open-mmlab~mmcv~requirements.txt", + "open-mmlab~mmcv~setup.py" ] }, { - "index": 21, - "category": "nlp", - "githuburl": "https://github.com/facebookresearch/drqa", + "index": 213, + "category": "data", + "githuburl": "https://github.com/facebookresearch/augly", "featured": null, "links": null, "description": null, - "_repopath": "facebookresearch/drqa", - "_reponame": "DrQA", - "_stars": 4315, - "_forks": 898, - "_watches": 165, - "_topics": [], + "_repopath": "facebookresearch/augly", + "_reponame": "AugLy", + "_stars": 4668, + "_forks": 274, + "_watches": 62, "_language": "Python", - "_homepage": null, - "_description": "DrQA: Reading Wikipedia to Answer Open-Domain Questions", + "_homepage": "https://ai.facebook.com/blog/augly-a-new-data-augmentation-library-to-help-build-more-robust-ai-models/", + "_description": "AugLy: A data augmentations library for audio, image, text, and video.", "_organization": "facebookresearch", - "_updated_at": "2022-12-08T00:00:00.000Z", - "_last_commit_date": "2021-05-18T00:00:00.000Z", - "_created_at": "2017-07-07T00:00:00.000Z", - "_age_weeks": 284, - "_stars_per_week": 15.17, - "_pop_contributor_count": 12, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-06-09T00:00:00.000Z", + "_age_weeks": 89, + "_stars_per_week": 52.45, + "_topics": [], + "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_pop_contributor_count": 26, + "_pop_contributor_logins": [ + "Adib234", + "AghilesAzzoug@cr\u00e9ditagricolesa", + "Cloud9c", + "amyreese@omnilib", + "cclauss@christianclauss", + "iAdityaEmpire", + "jbitton@facebookresearch", + "mayaliliya", + "membriux@intuit", + "zpapakipos" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "christianclauss", + "cr\u00e9ditagricolesa", "facebookresearch", - "hewlett-packardenterprise", - "mitnlp" + "intuit", + "omnilib" + ], + "_pop_contributor_orgs_raw": [ + "@facebookresearch", + "@intuit", + "@omnilib ", + "Christian Clauss", + "Cr\u00e9dit Agricole SA" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, + "_pop_commit_frequency": 0.9, "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 66, - "_pop_updated_since_days": 19, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 21, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 1, "_pop_issue_count": 2.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 90, - "_pop_score": 26.18, + "_pop_dependents_count": 0, + "_pop_score": 25.17, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/drqa/master/README.md", - "_readme_localurl": "facebookresearch~drqa~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/augly/master/README.md", + "_readme_localurl": "facebookresearch~augly~README.md", "_requirements_filenames": [ "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/facebookresearch/drqa/master/requirements.txt", - "https://raw.githubusercontent.com/facebookresearch/drqa/master/setup.py" + "https://raw.githubusercontent.com/facebookresearch/augly/master/requirements.txt", + "https://raw.githubusercontent.com/facebookresearch/augly/master/setup.py" ], "_requirements_localurls": [ - "facebookresearch~drqa~requirements.txt", - "facebookresearch~drqa~setup.py" + "facebookresearch~augly~requirements.txt", + "facebookresearch~augly~setup.py" ] }, { - "index": 570, - "category": "util", - "githuburl": "https://github.com/jd/tenacity", - "featured": null, + "index": 830, + "category": "typing", + "githuburl": "https://github.com/python-attrs/attrs", + "featured": 1.0, "links": null, "description": null, - "_repopath": "jd/tenacity", - "_reponame": "tenacity", - "_stars": 4313, - "_forks": 217, - "_watches": 43, + "_repopath": "python-attrs/attrs", + "_reponame": "attrs", + "_stars": 4643, + "_forks": 333, + "_watches": 57, + "_language": "Python", + "_homepage": "https://www.attrs.org/", + "_description": "attrs: Python Classes Without Boilerplate", + "_organization": "python-attrs", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-01-27T00:00:00.000Z", + "_age_weeks": 421, + "_stars_per_week": 11.02, "_topics": [ "python", - "failure", - "retry", - "retry-library", - "hacktoberfest" + "boilerplate", + "classes", + "oop", + "attributes" ], - "_language": "Python", - "_homepage": "http://tenacity.readthedocs.io", - "_description": "tenacity: Retrying library for Python", - "_organization": "jd", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2016-08-11T00:00:00.000Z", - "_age_weeks": 331, - "_stars_per_week": 13.01, - "_pop_contributor_count": 74, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-12T00:00:00.000Z", + "_pop_contributor_count": 139, + "_pop_contributor_logins": [ + "Tinche@pocketzworld", + "altendky", + "cournape@mercarijp", + "euresti", + "hynek@variomediaag", + "pre-commit-ci[bot]", + "radix", + "sscherfke", + "wbolster", + "webknjaz@ansiblecoreredhatofficial" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "mergifyio", - "waymo" + "ansiblecoreredhatofficial", + "mercarijp", + "pocketzworld", + "variomediaag" + ], + "_pop_contributor_orgs_raw": [ + "@Ansible Core @ @RedHatOfficial", + "@pocketzworld ", + "Mercari JP", + "Variomedia AG" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.17, - "_pop_updated_issues_count": 24, - "_pop_closed_issues_count": 7, - "_pop_created_since_days": 77, + "_pop_commit_frequency": 4.25, + "_pop_updated_issues_count": 68, + "_pop_closed_issues_count": 48, + "_pop_created_since_days": 98, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 9, - "_pop_issue_count": 24.0, - "_pop_comment_count": 27.0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 68.0, + "_pop_comment_count": 207.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 502, - "_pop_score": 50.34, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/jd/tenacity/master/README.rst", - "_readme_localurl": "jd~tenacity~README.rst", + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 0, + "_pop_score": 49.1, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/python-attrs/attrs/master/README.md", + "_readme_localurl": "python-attrs~attrs~README.md", "_requirements_filenames": [ - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/jd/tenacity/master/setup.py", - "https://raw.githubusercontent.com/jd/tenacity/master/pyproject.toml" + "https://raw.githubusercontent.com/python-attrs/attrs/master/pyproject.toml" ], "_requirements_localurls": [ - "jd~tenacity~setup.py", - "jd~tenacity~pyproject.toml" + "python-attrs~attrs~pyproject.toml" ] }, { - "index": 603, - "category": "ml", - "githuburl": "https://github.com/cleanlab/cleanlab", + "index": 97, + "category": "jupyter", + "githuburl": "https://github.com/voila-dashboards/voila", "featured": null, "links": null, "description": null, - "_repopath": "cleanlab/cleanlab", - "_reponame": "cleanlab", - "_stars": 4300, - "_forks": 397, - "_watches": 63, + "_repopath": "voila-dashboards/voila", + "_reponame": "voila", + "_stars": 4572, + "_forks": 457, + "_watches": 78, + "_language": "Python", + "_homepage": "https://voila.readthedocs.io", + "_description": "voila: Voil\u00e0 turns Jupyter notebooks into standalone web applications", + "_organization": "voila-dashboards", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-08-21T00:00:00.000Z", + "_age_weeks": 235, + "_stars_per_week": 19.44, "_topics": [ - "weak-supervision", - "machine-learning", - "confident-learning", - "robust-machine-learning", - "learning-with-confident-examples", - "learning-with-noisy-labels", - "noisy-data", - "data-cleaning", - "audio-classification", - "classification", - "data-quality", - "data-science", - "exploratory-data-analysis", - "image-classification", - "label-errors", - "noisy-labels", - "text-classification", - "data-centric-ai", - "data-centric-machine-learning" + "jupyter", + "jupyter-notebook", + "jupyterlab-extension", + "dashboarding" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 64, + "_pop_contributor_logins": [ + "SylvainCorlay@quantstack", + "davidbrochart@quantstack", + "dependabot[bot]", + "github-actions[bot]", + "jtpio@quantstack", + "maartenbreddels@maartenbreddels", + "martinRenou@quantstack", + "mkcor", + "timkpaine@point72", + "trungleduc@quantstack" ], - "_language": "Python", - "_homepage": "https://cleanlab.ai", - "_description": "cleanlab: The standard data-centric AI package for data quality and machine learning with messy, real-world data and labels.", - "_organization": "cleanlab", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2018-05-11T00:00:00.000Z", - "_age_weeks": 240, - "_stars_per_week": 17.88, - "_pop_contributor_count": 24, "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "cleanlab", - "cleanlab|mit", - "mitcsail" + "maartenbreddels", + "point72", + "quantstack" + ], + "_pop_contributor_orgs_raw": [ + "@Point72", + "@QuantStack", + "@maartenbreddels", + "QuantStack" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 8.31, - "_pop_updated_issues_count": 170, - "_pop_closed_issues_count": 135, - "_pop_created_since_days": 56, + "_pop_commit_frequency": 1.9, + "_pop_updated_issues_count": 39, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 55, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 170.0, - "_pop_comment_count": 164.0, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 29, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 39.0, + "_pop_comment_count": 105.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 228, - "_pop_score": 51.91, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 0, + "_pop_score": 45.09, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/cleanlab/cleanlab/master/README.md", - "_readme_localurl": "cleanlab~cleanlab~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/voila-dashboards/voila/master/README.md", + "_readme_localurl": "voila-dashboards~voila~README.md", "_requirements_filenames": [ "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/cleanlab/cleanlab/master/setup.py", - "https://raw.githubusercontent.com/cleanlab/cleanlab/master/pyproject.toml" + "https://raw.githubusercontent.com/voila-dashboards/voila/master/setup.py", + "https://raw.githubusercontent.com/voila-dashboards/voila/master/pyproject.toml" ], "_requirements_localurls": [ - "cleanlab~cleanlab~setup.py", - "cleanlab~cleanlab~pyproject.toml" + "voila-dashboards~voila~setup.py", + "voila-dashboards~voila~pyproject.toml" ] }, { - "index": 896, - "category": "diffusion", - "githuburl": "https://github.com/apple/ml-stable-diffusion", + "index": 247, + "category": "util", + "githuburl": "https://github.com/jorgebastida/awslogs", "featured": null, "links": null, "description": null, - "_repopath": "apple/ml-stable-diffusion", - "_reponame": "ml-stable-diffusion", - "_stars": 4291, - "_forks": 165, - "_watches": 57, - "_topics": [], + "_repopath": "jorgebastida/awslogs", + "_reponame": "awslogs", + "_stars": 4556, + "_forks": 328, + "_watches": 59, "_language": "Python", - "_homepage": "", - "_description": "ml-stable-diffusion: Stable Diffusion with Core ML on Apple Silicon", - "_organization": "apple", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2022-11-16T00:00:00.000Z", - "_age_weeks": 4, - "_stars_per_week": 910.21, - "_pop_contributor_count": 6, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": null, + "_description": "awslogs: AWS CloudWatch logs for Humans\u2122", + "_organization": "jorgebastida", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2015-01-21T00:00:00.000Z", + "_age_weeks": 422, + "_stars_per_week": 10.8, + "_topics": [], + "_last_commit_date": "2020-07-10T00:00:00.000Z", + "_pop_contributor_count": 39, + "_pop_contributor_logins": [ + "WhyNotHugo", + "blueyed@freelancer,upforhire", + "carlnordenfelt@bynordenfelt", + "galenhuntington", + "graingert", + "jorgebastida@infiniteforksl", + "juhani-hietikko@reaktor", + "rwolfson", + "sj26@buildkite", + "vlcinsky" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "christianclauss", - "google" + "buildkite", + "bynordenfelt", + "freelancer,upforhire", + "infiniteforksl", + "reaktor" + ], + "_pop_contributor_orgs_raw": [ + "@Buildkite", + "Freelancer, up for hire", + "Infinite Fork SL", + "Reaktor", + "by nordenfelt" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.17, - "_pop_updated_issues_count": 74, - "_pop_closed_issues_count": 17, - "_pop_created_since_days": 1, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 12, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 98, + "_pop_updated_since_days": 32, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 74.0, - "_pop_comment_count": 192.0, + "_pop_issue_count": 9.0, + "_pop_comment_count": 8.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.6, + "_pop_comment_frequency": 0.9, "_pop_dependents_count": 0, - "_pop_score": 24.38, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/README.md", - "_readme_localurl": "apple~ml-stable-diffusion~README.md", + "_pop_score": 27.71, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/jorgebastida/awslogs/master/README.rst", + "_readme_localurl": "jorgebastida~awslogs~README.rst", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/requirements.txt", - "https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/setup.py" + "https://raw.githubusercontent.com/jorgebastida/awslogs/master/setup.py" ], "_requirements_localurls": [ - "apple~ml-stable-diffusion~requirements.txt", - "apple~ml-stable-diffusion~setup.py" + "jorgebastida~awslogs~setup.py" ] }, { - "index": 717, - "category": "data", - "githuburl": "https://github.com/jazzband/tablib", + "index": 312, + "category": "util", + "githuburl": "https://github.com/indygreg/pyoxidizer", "featured": null, "links": null, "description": null, - "_repopath": "jazzband/tablib", - "_reponame": "tablib", - "_stars": 4203, - "_forks": 570, - "_watches": 141, + "_repopath": "indygreg/pyoxidizer", + "_reponame": "PyOxidizer", + "_stars": 4539, + "_forks": 196, + "_watches": 60, + "_language": "Rust", + "_homepage": "", + "_description": "PyOxidizer: A modern Python application packaging and distribution tool", + "_organization": "indygreg", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-12-18T00:00:00.000Z", + "_age_weeks": 218, + "_stars_per_week": 20.81, "_topics": [], + "_last_commit_date": "2023-01-21T00:00:00.000Z", + "_pop_contributor_count": 53, + "_pop_contributor_logins": [ + "Tipuch", + "dae", + "durin42", + "dvc94ch", + "indygreg", + "jayvdb@franklin-ai", + "ralpha", + "ryancinsight@insightec", + "stuhood@toolchainlabs", + "wkschwartz@isaadvisers" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "franklin-ai", + "insightec", + "isaadvisers", + "toolchainlabs" + ], + "_pop_contributor_orgs_raw": [ + "@franklin-ai", + "@isaadvisers ", + "Insightec ", + "Toolchain Labs" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 26.0, + "_pop_updated_issues_count": 51, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 51, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 88, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 51.0, + "_pop_comment_count": 59.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 45.04, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/indygreg/pyoxidizer/master/README.md", + "_readme_localurl": "indygreg~pyoxidizer~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/indygreg/pyoxidizer/master/setup.py" + ], + "_requirements_localurls": [ + "indygreg~pyoxidizer~setup.py" + ] + }, + { + "index": 66, + "category": "util", + "githuburl": "https://github.com/pycqa/pylint", + "featured": null, + "links": null, + "description": null, + "_repopath": "pycqa/pylint", + "_reponame": "pylint", + "_stars": 4515, + "_forks": 973, + "_watches": 75, "_language": "Python", - "_homepage": "https://tablib.readthedocs.io/", - "_description": "tablib: Python Module for Tabular Datasets in XLS, CSV, JSON, YAML, &c.", - "_organization": "jazzband", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-10T00:00:00.000Z", - "_created_at": "2011-03-28T00:00:00.000Z", - "_age_weeks": 612, - "_stars_per_week": 6.87, - "_pop_contributor_count": 118, + "_homepage": "http://pylint.pycqa.org", + "_description": "pylint: It's not just a linter that annoys you!", + "_organization": "pycqa", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2015-12-09T00:00:00.000Z", + "_age_weeks": 376, + "_stars_per_week": 12.01, + "_topics": [ + "static-analysis", + "linter", + "static-code-analysis", + "code-quality", + "pep8", + "closember", + "hacktoberfest" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 514, + "_pop_contributor_logins": [ + "DanielNoord@channable", + "DudeNr33@siemensmobilitygmbh", + "PCManticore", + "Pierre-Sassoulas", + "cdce8p", + "dependabot[bot]", + "godfryd@graphcore", + "hippo91", + "jacobtylerwalls@element84", + "mbyrnepr2" + ], "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "2xlibre.nets\u00e0rl", - "buser", - "http://www.lukelee.me", - "nordsoftware" + "channable", + "element84", + "graphcore", + "siemensmobilitygmbh" + ], + "_pop_contributor_orgs_raw": [ + "@channable", + "Element 84", + "Graphcore", + "Siemens Mobility GmbH" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.31, - "_pop_updated_issues_count": 9, - "_pop_closed_issues_count": 8, - "_pop_created_since_days": 143, + "_pop_commit_frequency": 37.73, + "_pop_updated_issues_count": 718, + "_pop_closed_issues_count": 469, + "_pop_created_since_days": 88, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 9.0, - "_pop_comment_count": 12.0, + "_pop_recent_releases_count": 34, + "_pop_recent_releases_estimated_tags": 24, + "_pop_recent_releases_adjusted_count": 34, + "_pop_issue_count": 718.0, + "_pop_comment_count": 2198.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 117, - "_pop_score": 50.99, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/jazzband/tablib/master/README.md", - "_readme_localurl": "jazzband~tablib~README.md", + "_pop_comment_frequency": 3.1, + "_pop_dependents_count": 0, + "_pop_score": 63.05, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pycqa/pylint/master/README.rst", + "_readme_localurl": "pycqa~pylint~README.rst", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pycqa/pylint/master/pyproject.toml" + ], + "_requirements_localurls": [ + "pycqa~pylint~pyproject.toml" + ] + }, + { + "index": 570, + "category": "util", + "githuburl": "https://github.com/jd/tenacity", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "jd/tenacity", + "_reponame": "tenacity", + "_stars": 4487, + "_forks": 222, + "_watches": 44, + "_language": "Python", + "_homepage": "http://tenacity.readthedocs.io", + "_description": "tenacity: Retrying library for Python", + "_organization": "jd", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-08-11T00:00:00.000Z", + "_age_weeks": 340, + "_stars_per_week": 13.16, + "_topics": [ + "python", + "failure", + "retry", + "retry-library", + "hacktoberfest" + ], + "_last_commit_date": "2023-02-09T00:00:00.000Z", + "_pop_contributor_count": 77, + "_pop_contributor_logins": [ + "asqui", + "bersace@dalibo", + "harlowja@waymo", + "immerrr", + "jd@mergifyio", + "mergify[bot]", + "mezgerj", + "penguinolog", + "rholder", + "sileht@mergifyio" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "dalibo", + "mergifyio", + "waymo" + ], + "_pop_contributor_orgs_raw": [ + "@Dalibo", + "@Mergifyio", + "Waymo" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.38, + "_pop_updated_issues_count": 37, + "_pop_closed_issues_count": 25, + "_pop_created_since_days": 80, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 37.0, + "_pop_comment_count": 54.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 42.93, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/jd/tenacity/master/README.rst", + "_readme_localurl": "jd~tenacity~README.rst", "_requirements_filenames": [ "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/jazzband/tablib/master/setup.py", - "https://raw.githubusercontent.com/jazzband/tablib/master/pyproject.toml" + "https://raw.githubusercontent.com/jd/tenacity/master/setup.py", + "https://raw.githubusercontent.com/jd/tenacity/master/pyproject.toml" ], "_requirements_localurls": [ - "jazzband~tablib~setup.py", - "jazzband~tablib~pyproject.toml" + "jd~tenacity~setup.py", + "jd~tenacity~pyproject.toml" ] }, { - "index": 101, - "category": "ml", - "githuburl": "https://github.com/rasbt/mlxtend", + "index": 196, + "category": "viz", + "githuburl": "https://github.com/lux-org/lux", "featured": null, "links": null, "description": null, - "_repopath": "rasbt/mlxtend", - "_reponame": "mlxtend", - "_stars": 4183, - "_forks": 796, - "_watches": 121, + "_repopath": "lux-org/lux", + "_reponame": "lux", + "_stars": 4435, + "_forks": 344, + "_watches": 86, + "_language": "Python", + "_homepage": "", + "_description": "lux: Automatically visualize your pandas dataframe via a single print! \ud83d\udcca \ud83d\udca1", + "_organization": "lux-org", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-01-08T00:00:00.000Z", + "_age_weeks": 163, + "_stars_per_week": 27.21, "_topics": [ + "visualization-tools", + "jupyter", "python", - "machine-learning", "data-science", - "data-mining", - "association-rules", - "supervised-learning", - "unsupervised-learning" + "exploratory-data-analysis", + "visualization", + "pandas" ], - "_language": "Python", - "_homepage": "http://rasbt.github.io/mlxtend/", - "_description": "mlxtend: A library of extension and helper modules for Python's data analysis and machine learning libraries.", - "_organization": "rasbt", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2014-08-14T00:00:00.000Z", - "_age_weeks": 435, - "_stars_per_week": 9.6, - "_pop_contributor_count": 91, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-05-21T00:00:00.000Z", + "_pop_contributor_count": 20, + "_pop_contributor_logins": [ + "19thyneb", + "caitlynachen", + "cgarciae@quansight", + "dorisjlee@ponder-org", + "jaywoo123", + "jinimukh@year", + "jrdzha", + "micahtyong@ucberkeley", + "thyneb19", + "westernguy2" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "coiled", - "lightning-ai,universityofwisconsin-madison" + "ponder-org", + "quansight", + "ucberkeley", + "year" + ], + "_pop_contributor_orgs_raw": [ + "@ponder-org", + "Quansight", + "UC Berkeley", + "Year" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.75, - "_pop_updated_issues_count": 46, - "_pop_closed_issues_count": 35, - "_pop_created_since_days": 102, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 46.0, - "_pop_comment_count": 66.0, + "_pop_commit_frequency": 0.13, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 38, + "_pop_updated_since_days": 9, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 6.0, + "_pop_comment_count": 7.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 37, - "_pop_score": 49.56, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 27.42, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/rasbt/mlxtend/master/README.md", - "_readme_localurl": "rasbt~mlxtend~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/lux-org/lux/master/README.md", + "_readme_localurl": "lux-org~lux~README.md", "_requirements_filenames": [ "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/lux-org/lux/master/requirements.txt", + "https://raw.githubusercontent.com/lux-org/lux/master/setup.py", + "https://raw.githubusercontent.com/lux-org/lux/master/pyproject.toml" + ], + "_requirements_localurls": [ + "lux-org~lux~requirements.txt", + "lux-org~lux~setup.py", + "lux-org~lux~pyproject.toml" + ] + }, + { + "index": 206, + "category": "ml", + "githuburl": "https://github.com/lucidrains/deep-daze", + "featured": null, + "links": null, + "description": null, + "_repopath": "lucidrains/deep-daze", + "_reponame": "deep-daze", + "_stars": 4385, + "_forks": 330, + "_watches": 75, + "_language": "Python", + "_homepage": "", + "_description": "deep-daze: Simple command line tool for text to image generation using OpenAI's CLIP and Siren (Implicit neural representation network). Technique was originally created by https://twitter.com/advadnoun", + "_organization": "lucidrains", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2021-01-17T00:00:00.000Z", + "_age_weeks": 109, + "_stars_per_week": 40.07, + "_topics": [ + "artificial-intelligence", + "deep-learning", + "transformers", + "siren", + "implicit-neural-representation", + "text-to-image", + "multi-modality" + ], + "_last_commit_date": "2022-03-13T00:00:00.000Z", + "_pop_contributor_count": 14, + "_pop_contributor_logins": [ + "Fliens", + "Incog5", + "NotNANtoN@adalab", + "RaymondTerry", + "akx@valohai", + "dginev@kwarc", + "donno2048", + "lorcalhost@bitpolito", + "lucidrains", + "russelldc@midjourney" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "adalab", + "bitpolito", + "kwarc", + "midjourney", + "valohai" + ], + "_pop_contributor_orgs_raw": [ + "@BITPoliTO", + "@KWARC ", + "@midjourney", + "@valohai ", + "Adalab" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 26, + "_pop_updated_since_days": 12, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 31, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 19.34, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/lucidrains/deep-daze/master/README.md", + "_readme_localurl": "lucidrains~deep-daze~README.md", + "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/rasbt/mlxtend/master/requirements.txt", - "https://raw.githubusercontent.com/rasbt/mlxtend/master/setup.py" + "https://raw.githubusercontent.com/lucidrains/deep-daze/master/setup.py" ], "_requirements_localurls": [ - "rasbt~mlxtend~requirements.txt", - "rasbt~mlxtend~setup.py" + "lucidrains~deep-daze~setup.py" ] }, { @@ -19288,9 +26237,17 @@ "description": null, "_repopath": "xpixelgroup/basicsr", "_reponame": "BasicSR", - "_stars": 4171, - "_forks": 864, - "_watches": 85, + "_stars": 4374, + "_forks": 891, + "_watches": 90, + "_language": "Python", + "_homepage": "https://basicsr.readthedocs.io/en/latest/", + "_description": "BasicSR: Open Source Image and Video Restoration Toolbox for Super-resolution, Denoise, Deblurring, etc. Currently, it includes EDSR, RCAN, SRResNet, SRGAN, ESRGAN, EDVR, BasicVSR, SwinIR, ECBSR, etc. Also support StyleGAN2, DFDNet.", + "_organization": "xpixelgroup", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-04-19T00:00:00.000Z", + "_age_weeks": 252, + "_stars_per_week": 17.3, "_topics": [ "basicsr", "esrgan", @@ -19308,39 +26265,53 @@ "swinir", "ecbsr" ], - "_language": "Python", - "_homepage": "https://basicsr.readthedocs.io/en/latest/", - "_description": "BasicSR: Open Source Image and Video Restoration Toolbox for Super-resolution, Denoise, Deblurring, etc. Currently, it includes EDSR, RCAN, SRResNet, SRGAN, ESRGAN, EDVR, BasicVSR, SwinIR, ECBSR, etc. Also support StyleGAN2, DFDNet.", - "_organization": "xpixelgroup", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-06T00:00:00.000Z", - "_created_at": "2018-04-19T00:00:00.000Z", - "_age_weeks": 243, - "_stars_per_week": 17.12, - "_pop_contributor_count": 18, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-02T00:00:00.000Z", + "_pop_contributor_count": 19, + "_pop_contributor_logins": [ + "Cugtyt@msft", + "JeremyIV", + "LiangbinXie@um&siat", + "Lotayou@videocodinglaboratory,pekinguniversity", + "My-Zhu@sigs,tsinghuauniversity", + "henrymai", + "ljzycmd", + "wwhio", + "xinntao@tencent", + "zestloveheart@whut" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "msft", + "sigs,tsinghuauniversity", "tencent", "um&siat", + "videocodinglaboratory,pekinguniversity", "whut" ], + "_pop_contributor_orgs_raw": [ + "MSFT", + "SIGS, Tsinghua University", + "Tencent", + "UM & SIAT", + "Video Coding Laboratory, Peking University", + "WHUT" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 1.02, - "_pop_updated_issues_count": 30, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 57, + "_pop_updated_issues_count": 23, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 59, "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 4, + "_pop_recent_releases_count": 3, "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 30.0, - "_pop_comment_count": 16.0, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 23.0, + "_pop_comment_count": 12.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.5, "_pop_dependents_count": 0, - "_pop_score": 33.8, + "_pop_score": 34.86, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/xpixelgroup/basicsr/master/README.md", "_readme_localurl": "xpixelgroup~basicsr~README.md", @@ -19358,121 +26329,387 @@ ] }, { - "index": 734, - "category": "ml-dl", - "githuburl": "https://github.com/pytorch/ignite", - "featured": 1.0, + "index": 927, + "category": "util", + "githuburl": "https://github.com/openai/point-e", + "featured": null, "links": null, "description": null, - "_repopath": "pytorch/ignite", - "_reponame": "ignite", - "_stars": 4142, - "_forks": 562, - "_watches": 59, - "_topics": [ - "pytorch", - "neural-network", - "python", - "machine-learning", - "deep-learning", - "metrics", - "hacktoberfest", - "closember" - ], + "_repopath": "openai/point-e", + "_reponame": "point-e", + "_stars": 4359, + "_forks": 432, + "_watches": 159, "_language": "Python", - "_homepage": "https://pytorch-ignite.ai", - "_description": "ignite: High-level library to help with training and evaluating neural networks in PyTorch flexibly and transparently.", - "_organization": "pytorch", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-10T00:00:00.000Z", - "_created_at": "2017-11-23T00:00:00.000Z", - "_age_weeks": 264, - "_stars_per_week": 15.66, - "_pop_contributor_count": 183, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "bimsbbioinfopytorch-ignite", - "cision", - "pytorch-ignitemichelin", - "quansight", - "sharechat" + "_homepage": null, + "_description": "point-e: Point cloud diffusion for 3D model synthesis", + "_organization": "openai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-12-06T00:00:00.000Z", + "_age_weeks": 11, + "_stars_per_week": 391.19, + "_topics": [], + "_last_commit_date": "2022-12-20T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "heewooj", + "unixpickle" ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.77, - "_pop_updated_issues_count": 111, - "_pop_closed_issues_count": 94, - "_pop_created_since_days": 62, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 111.0, - "_pop_comment_count": 203.0, + "_pop_commit_frequency": 0.06, + "_pop_updated_issues_count": 73, + "_pop_closed_issues_count": 24, + "_pop_created_since_days": 3, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 73.0, + "_pop_comment_count": 144.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 529, - "_pop_score": 60.52, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 13.7, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pytorch/ignite/master/README.md", - "_readme_localurl": "pytorch~ignite~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/openai/point-e/master/README.md", + "_readme_localurl": "openai~point-e~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pytorch/ignite/master/setup.py", - "https://raw.githubusercontent.com/pytorch/ignite/master/pyproject.toml" + "https://raw.githubusercontent.com/openai/point-e/master/setup.py" ], "_requirements_localurls": [ - "pytorch~ignite~setup.py", - "pytorch~ignite~pyproject.toml" + "openai~point-e~setup.py" ] }, { - "index": 370, - "category": "time-series", - "githuburl": "https://github.com/facebookresearch/kats", + "index": 21, + "category": "nlp", + "githuburl": "https://github.com/facebookresearch/drqa", "featured": null, "links": null, "description": null, - "_repopath": "facebookresearch/kats", - "_reponame": "Kats", - "_stars": 4122, - "_forks": 434, - "_watches": 69, - "_topics": [], + "_repopath": "facebookresearch/drqa", + "_reponame": "DrQA", + "_stars": 4350, + "_forks": 906, + "_watches": 165, "_language": "Python", - "_homepage": "", - "_description": "Kats, a kit to analyze time series data, a lightweight, easy-to-use, generalizable, and extendable framework to perform time series analysis, from understanding the key statistics and characteristics, detecting change points and anomalies, to forecasting future trends. ", + "_homepage": null, + "_description": "DrQA: Reading Wikipedia to Answer Open-Domain Questions", "_organization": "facebookresearch", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2021-02-25T00:00:00.000Z", - "_age_weeks": 94, - "_stars_per_week": 43.59, - "_pop_contributor_count": 121, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "facebook", - "meta" - ], + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2017-07-07T00:00:00.000Z", + "_age_weeks": 293, + "_stars_per_week": 14.81, + "_topics": [], + "_last_commit_date": "2021-05-18T00:00:00.000Z", + "_pop_contributor_count": 12, + "_pop_contributor_logins": [ + "ajfisch@mitnlp", + "dfenglei@hewlett-packardenterprise", + "hpasapp@asappinc", + "jaseweston", + "lbaligand", + "ousou@iprally", + "pemazare", + "rashoodkhan@yellowmessenger", + "stephenroller", + "sundeep" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "asappinc", + "hewlett-packardenterprise", + "iprally", + "mitnlp", + "yellowmessenger" + ], + "_pop_contributor_orgs_raw": [ + "@ASAPPinc ", + "@iprally ", + "@mitnlp ", + "Hewlett-Packard Enterprise ", + "Yellow Messenger" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.67, - "_pop_updated_issues_count": 31, - "_pop_closed_issues_count": 19, - "_pop_created_since_days": 22, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 68, + "_pop_updated_since_days": 21, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 22.38, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/drqa/master/README.md", + "_readme_localurl": "facebookresearch~drqa~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/facebookresearch/drqa/master/requirements.txt", + "https://raw.githubusercontent.com/facebookresearch/drqa/master/setup.py" + ], + "_requirements_localurls": [ + "facebookresearch~drqa~requirements.txt", + "facebookresearch~drqa~setup.py" + ] + }, + { + "index": 101, + "category": "ml", + "githuburl": "https://github.com/rasbt/mlxtend", + "featured": null, + "links": null, + "description": null, + "_repopath": "rasbt/mlxtend", + "_reponame": "mlxtend", + "_stars": 4271, + "_forks": 804, + "_watches": 118, + "_language": "Python", + "_homepage": "http://rasbt.github.io/mlxtend/", + "_description": "mlxtend: A library of extension and helper modules for Python's data analysis and machine learning libraries.", + "_organization": "rasbt", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-08-14T00:00:00.000Z", + "_age_weeks": 444, + "_stars_per_week": 9.6, + "_topics": [ + "python", + "machine-learning", + "data-science", + "data-mining", + "association-rules", + "supervised-learning", + "unsupervised-learning" + ], + "_last_commit_date": "2023-01-31T00:00:00.000Z", + "_pop_contributor_count": 92, + "_pop_contributor_logins": [ + "JJLWHarrison", + "Maitreyee1", + "NimaSarajpoor", + "jaksmid@blindspotsolutions", + "jrbourbeau@coiled", + "kota7", + "labdmitriy", + "rasbt@lightning-ai,universityofwisconsin-madison", + "reiinakano@openai", + "zdgriffith@ssec" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "blindspotsolutions", + "coiled", + "lightning-ai,universityofwisconsin-madison", + "openai", + "ssec" + ], + "_pop_contributor_orgs_raw": [ + "@Lightning-AI , University of Wisconsin-Madison", + "@coiled ", + "@openai", + "@ssec", + "Blindspot Solutions" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.52, + "_pop_updated_issues_count": 17, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 104, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 17.0, + "_pop_comment_count": 36.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 0, + "_pop_score": 44.57, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/rasbt/mlxtend/master/README.md", + "_readme_localurl": "rasbt~mlxtend~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/rasbt/mlxtend/master/requirements.txt", + "https://raw.githubusercontent.com/rasbt/mlxtend/master/setup.py" + ], + "_requirements_localurls": [ + "rasbt~mlxtend~requirements.txt", + "rasbt~mlxtend~setup.py" + ] + }, + { + "index": 717, + "category": "data", + "githuburl": "https://github.com/jazzband/tablib", + "featured": null, + "links": null, + "description": null, + "_repopath": "jazzband/tablib", + "_reponame": "tablib", + "_stars": 4226, + "_forks": 571, + "_watches": 142, + "_language": "Python", + "_homepage": "https://tablib.readthedocs.io/", + "_description": "tablib: Python Module for Tabular Datasets in XLS, CSV, JSON, YAML, &c.", + "_organization": "jazzband", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2011-03-28T00:00:00.000Z", + "_age_weeks": 621, + "_stars_per_week": 6.8, + "_topics": [], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 120, + "_pop_contributor_logins": [ + "claudep@2xlibre.nets\u00e0rl", + "durden@http://www.lukelee.me", + "hugovk@nordsoftware", + "iurisilvio@buser", + "jdufresne@pioneervalleybooks", + "kennethreitz", + "lbeltrame", + "rogersmark@guildeducation", + "timofurrer@gitlabhq", + "xdanielsb" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "2xlibre.nets\u00e0rl", + "buser", + "gitlabhq", + "guildeducation", + "http://www.lukelee.me", + "nordsoftware", + "pioneervalleybooks" + ], + "_pop_contributor_orgs_raw": [ + "2xlibre.net S\u00e0rl", + "@gitlabhq", + "Buser", + "Guild Education", + "Nord Software", + "Pioneer Valley Books", + "http://www.lukelee.me" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.33, + "_pop_updated_issues_count": 17, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 145, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 17.0, + "_pop_comment_count": 44.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 0, + "_pop_score": 46.96, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/jazzband/tablib/master/README.md", + "_readme_localurl": "jazzband~tablib~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/jazzband/tablib/master/setup.py", + "https://raw.githubusercontent.com/jazzband/tablib/master/pyproject.toml" + ], + "_requirements_localurls": [ + "jazzband~tablib~setup.py", + "jazzband~tablib~pyproject.toml" + ] + }, + { + "index": 370, + "category": "time-series", + "githuburl": "https://github.com/facebookresearch/kats", + "featured": null, + "links": null, + "description": null, + "_repopath": "facebookresearch/kats", + "_reponame": "Kats", + "_stars": 4221, + "_forks": 449, + "_watches": 72, + "_language": "Python", + "_homepage": "", + "_description": "Kats, a kit to analyze time series data, a lightweight, easy-to-use, generalizable, and extendable framework to perform time series analysis, from understanding the key statistics and characteristics, detecting change points and anomalies, to forecasting future trends. ", + "_organization": "facebookresearch", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-02-25T00:00:00.000Z", + "_age_weeks": 103, + "_stars_per_week": 40.64, + "_topics": [], + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 126, + "_pop_contributor_logins": [ + "MariusGuerard", + "ahmetburhanfb", + "facebook-github-bot@facebook", + "iamxiaodong@facebook", + "michaelbrundage@meta", + "ourownstory@stanforduniversity", + "peiyizhang@meta", + "rohanfb", + "uthakore@facebook", + "yangbk560@facebooklnc." + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "facebook", + "facebooklnc.", + "meta", + "stanforduniversity" + ], + "_pop_contributor_orgs_raw": [ + "@facebook", + "Facebook", + "Facebook lnc.", + "Meta", + "Stanford University" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.54, + "_pop_updated_issues_count": 37, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 24, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 31.0, - "_pop_comment_count": 48.0, + "_pop_issue_count": 37.0, + "_pop_comment_count": 28.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 118, - "_pop_score": 47.46, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 40.13, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/kats/master/README.md", "_readme_localurl": "facebookresearch~kats~README.md", @@ -19489,6 +26726,181 @@ "facebookresearch~kats~setup.py" ] }, + { + "index": 542, + "category": "util", + "githuburl": "https://github.com/mamba-org/mamba", + "featured": null, + "links": null, + "description": null, + "_repopath": "mamba-org/mamba", + "_reponame": "mamba", + "_stars": 4220, + "_forks": 244, + "_watches": 44, + "_language": "C++", + "_homepage": "https://mamba.readthedocs.io", + "_description": "mamba: The Fast Cross-Platform Package Manager", + "_organization": "mamba-org", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-03-05T00:00:00.000Z", + "_age_weeks": 207, + "_stars_per_week": 20.37, + "_topics": [], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 109, + "_pop_contributor_logins": [ + "AntoinePrv@quantstack", + "Hind-M", + "JohanMabille@quantstack", + "Klaim", + "adriendelsalle@quantstack", + "davidbrochart@quantstack", + "isuruf@universityofillinois", + "jonashaag@quantco", + "marimeireles@anaconda", + "wolfv@prefix.devgmbh" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "anaconda", + "prefix.devgmbh", + "quantco", + "quantstack", + "universityofillinois" + ], + "_pop_contributor_orgs_raw": [ + "@QuantStack", + "@Quantco", + "@anaconda", + "QuantStack", + "University of Illinois", + "prefix.dev GmbH" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 9.85, + "_pop_updated_issues_count": 276, + "_pop_closed_issues_count": 158, + "_pop_created_since_days": 48, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 15, + "_pop_recent_releases_estimated_tags": 52, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 277.0, + "_pop_comment_count": 756.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 0, + "_pop_score": 53.27, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/mamba-org/mamba/master/README.md", + "_readme_localurl": "mamba-org~mamba~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/mamba-org/mamba/master/pyproject.toml" + ], + "_requirements_localurls": [ + "mamba-org~mamba~pyproject.toml" + ] + }, + { + "index": 734, + "category": "ml-dl", + "githuburl": "https://github.com/pytorch/ignite", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "pytorch/ignite", + "_reponame": "ignite", + "_stars": 4206, + "_forks": 579, + "_watches": 59, + "_language": "Python", + "_homepage": "https://pytorch-ignite.ai", + "_description": "ignite: High-level library to help with training and evaluating neural networks in PyTorch flexibly and transparently.", + "_organization": "pytorch", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-11-23T00:00:00.000Z", + "_age_weeks": 273, + "_stars_per_week": 15.36, + "_topics": [ + "pytorch", + "neural-network", + "python", + "machine-learning", + "deep-learning", + "metrics", + "hacktoberfest", + "closember" + ], + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 187, + "_pop_contributor_logins": [ + "Ishan-Kumar2@sdsdatasciencegroupdsgiitr", + "KickItLikeShika@cision", + "Moh-Yakoub", + "alykhantejani@sharechat", + "anmolsjoshi", + "puhuk", + "sadra-barikbin@pytorch-ignite", + "sdesrozis@pytorch-ignitemichelin", + "trsvchn@bimsbbioinfopytorch-ignite", + "vfdev-5@quansight" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "bimsbbioinfopytorch-ignite", + "cision", + "pytorch-ignite", + "pytorch-ignitemichelin", + "quansight", + "sdsdatasciencegroupdsgiitr", + "sharechat" + ], + "_pop_contributor_orgs_raw": [ + "@BIMSBbioinfo @pytorch-ignite", + "@Quansight", + "@ShareChat", + "@cision", + "@pytorch-ignite", + "@pytorch-ignite @michelin", + "SDS Data Science Group @dsgiitr " + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.58, + "_pop_updated_issues_count": 115, + "_pop_closed_issues_count": 96, + "_pop_created_since_days": 64, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 115.0, + "_pop_comment_count": 181.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 50.47, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pytorch/ignite/master/README.md", + "_readme_localurl": "pytorch~ignite~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pytorch/ignite/master/setup.py", + "https://raw.githubusercontent.com/pytorch/ignite/master/pyproject.toml" + ], + "_requirements_localurls": [ + "pytorch~ignite~setup.py", + "pytorch~ignite~pyproject.toml" + ] + }, { "index": 293, "category": "util", @@ -19498,43 +26910,69 @@ "description": null, "_repopath": "pytoolz/toolz", "_reponame": "toolz", - "_stars": 4103, - "_forks": 246, + "_stars": 4167, + "_forks": 249, "_watches": 82, - "_topics": [], "_language": "Python", "_homepage": "http://toolz.readthedocs.org/", "_description": "toolz: A functional standard library for Python.", "_organization": "pytoolz", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-03T00:00:00.000Z", + "_updated_at": "2023-02-20T00:00:00.000Z", "_created_at": "2013-09-13T00:00:00.000Z", - "_age_weeks": 483, - "_stars_per_week": 8.49, + "_age_weeks": 492, + "_stars_per_week": 8.46, + "_topics": [], + "_last_commit_date": "2022-11-03T00:00:00.000Z", "_pop_contributor_count": 74, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "bartvm@google", + "cpcloud@voltrondata", + "eriknw", + "groutr@lynkertechnologies", + "hugovk@nordsoftware", + "llllllllll@formerlyquantopian", + "medecau", + "mrocklin@coiled", + "obmarg@redbadger", + "tacaswell@brookhavennationallab" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "brookhavennationallab", "coiled", "formerlyquantopian", "google", - "lynkertechnologies" + "lynkertechnologies", + "nordsoftware", + "redbadger", + "voltrondata" + ], + "_pop_contributor_orgs_raw": [ + "@coiled ", + "@google", + "@voltrondata", + "Brookhaven National Lab", + "Lynker Technologies", + "Nord Software", + "Red Badger", + "formerly @quantopian" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.29, - "_pop_updated_issues_count": 15, + "_pop_commit_frequency": 0.25, + "_pop_updated_issues_count": 18, "_pop_closed_issues_count": 7, - "_pop_created_since_days": 113, - "_pop_updated_since_days": 2, + "_pop_created_since_days": 115, + "_pop_updated_since_days": 4, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 15.0, - "_pop_comment_count": 27.0, + "_pop_issue_count": 18.0, + "_pop_comment_count": 32.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 90, - "_pop_score": 46.23, + "_pop_dependents_count": 0, + "_pop_score": 39.88, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pytoolz/toolz/master/README.rst", "_readme_localurl": "pytoolz~toolz~README.rst", @@ -19557,9 +26995,17 @@ "description": null, "_repopath": "google/pytype", "_reponame": "pytype", - "_stars": 4016, - "_forks": 258, - "_watches": 55, + "_stars": 4120, + "_forks": 263, + "_watches": 56, + "_language": "Python", + "_homepage": "https://google.github.io/pytype", + "_description": "pytype: A static type analyzer for Python code", + "_organization": "google", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-03-18T00:00:00.000Z", + "_age_weeks": 414, + "_stars_per_week": 9.95, "_topics": [ "python", "typing", @@ -19569,37 +27015,45 @@ "static-analysis", "static-code-analysis" ], - "_language": "Python", - "_homepage": "https://google.github.io/pytype", - "_description": "pytype: A static type analyzer for Python code", - "_organization": "google", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2015-03-18T00:00:00.000Z", - "_age_weeks": 404, - "_stars_per_week": 9.92, + "_last_commit_date": "2023-02-17T00:00:00.000Z", "_pop_contributor_count": 87, + "_pop_contributor_logins": [ + "Solumin", + "alvarocaceres", + "bsolomon1124", + "dbaum", + "martindemello@google", + "matthiaskramm", + "pludemann@google", + "rchen152", + "rpalaguachi", + "sivachandra@googledart-langflutter" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "google", "googledart-langflutter" ], + "_pop_contributor_orgs_raw": [ + "@google @dart-lang @flutter ", + "Google" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 12.4, - "_pop_updated_issues_count": 56, - "_pop_closed_issues_count": 41, - "_pop_created_since_days": 94, + "_pop_commit_frequency": 11.63, + "_pop_updated_issues_count": 63, + "_pop_closed_issues_count": 53, + "_pop_created_since_days": 97, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 21, "_pop_recent_releases_adjusted_count": 21, - "_pop_issue_count": 56.0, - "_pop_comment_count": 45.0, + "_pop_issue_count": 63.0, + "_pop_comment_count": 53.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 2154, - "_pop_score": 60.5, + "_pop_dependents_count": 0, + "_pop_score": 46.96, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google/pytype/master/README.md", "_readme_localurl": "google~pytype~README.md", @@ -19620,141 +27074,161 @@ ] }, { - "index": 542, - "category": "util", - "githuburl": "https://github.com/mamba-org/mamba", + "index": 362, + "category": "ml-ops", + "githuburl": "https://github.com/allegroai/clearml", "featured": null, "links": null, "description": null, - "_repopath": "mamba-org/mamba", - "_reponame": "mamba", - "_stars": 4000, - "_forks": 230, - "_watches": 39, - "_topics": [], - "_language": "C++", - "_homepage": "https://mamba.readthedocs.io", - "_description": "mamba: The Fast Cross-Platform Package Manager", - "_organization": "mamba-org", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2019-03-05T00:00:00.000Z", - "_age_weeks": 197, - "_stars_per_week": 20.22, - "_pop_contributor_count": 101, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_repopath": "allegroai/clearml", + "_reponame": "clearml", + "_stars": 4115, + "_forks": 556, + "_watches": 85, + "_language": "Python", + "_homepage": "https://clear.ml/docs", + "_description": "ClearML - Auto-Magical CI/CD to streamline your ML workflow. Experiment Manager, MLOps and Data-Management", + "_organization": "allegroai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-06-10T00:00:00.000Z", + "_age_weeks": 193, + "_stars_per_week": 21.29, + "_topics": [ + "version-control", + "experiment-manager", + "version", + "control", + "experiment", + "deeplearning", + "deep-learning", + "machine-learning", + "machinelearning", + "ai", + "trains", + "trainsai", + "clearml", + "k8s", + "devops", + "mlops" + ], + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 71, + "_pop_contributor_logins": [ + "H4dr1en", + "Rizwan-Hasan@techlearnersincallegroai", + "allegroai-git@allegroai", + "danmalowany-allegro@allegro.ai", + "erezalg", + "eugen-ajechiloae-clearml", + "jalexand3r", + "jkhenning", + "pollfly", + "thepycoder" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "prefix.devgmbh", - "quantstack" + "allegro.ai", + "allegroai", + "techlearnersincallegroai" + ], + "_pop_contributor_orgs_raw": [ + "@TechLearnersInc @allegroai", + "AllegroAI", + "allegro.ai" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 10.98, - "_pop_updated_issues_count": 449, - "_pop_closed_issues_count": 227, - "_pop_created_since_days": 46, + "_pop_commit_frequency": 1.44, + "_pop_updated_issues_count": 135, + "_pop_closed_issues_count": 51, + "_pop_created_since_days": 45, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 14, - "_pop_recent_releases_estimated_tags": 50, - "_pop_recent_releases_adjusted_count": 14, - "_pop_issue_count": 449.0, - "_pop_comment_count": 1062.0, + "_pop_recent_releases_count": 22, + "_pop_recent_releases_estimated_tags": 36, + "_pop_recent_releases_adjusted_count": 22, + "_pop_issue_count": 135.0, + "_pop_comment_count": 306.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.4, + "_pop_comment_frequency": 2.3, "_pop_dependents_count": 0, - "_pop_score": 49.84, + "_pop_score": 46.31, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/mamba-org/mamba/master/README.md", - "_readme_localurl": "mamba-org~mamba~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/allegroai/clearml/master/README.md", + "_readme_localurl": "allegroai~clearml~README.md", "_requirements_filenames": [ - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/mamba-org/mamba/master/pyproject.toml" + "https://raw.githubusercontent.com/allegroai/clearml/master/requirements.txt", + "https://raw.githubusercontent.com/allegroai/clearml/master/setup.py" ], "_requirements_localurls": [ - "mamba-org~mamba~pyproject.toml" + "allegroai~clearml~requirements.txt", + "allegroai~clearml~setup.py" ] }, { - "index": 565, - "category": "gis", - "githuburl": "https://github.com/gboeing/osmnx", + "index": 754, + "category": "study", + "githuburl": "https://github.com/karpathy/micrograd", "featured": null, "links": null, "description": null, - "_repopath": "gboeing/osmnx", - "_reponame": "osmnx", - "_stars": 3963, - "_forks": 734, - "_watches": 121, - "_topics": [ - "openstreetmap", - "gis", - "street-networks", - "overpass-api", - "networkx", - "spatial-analysis", - "geospatial", - "urban-planning", - "transportation", - "geography", - "osmnx", - "networks", - "spatial-data", - "urban", - "osm", - "spatial", - "python", - "transport", - "mapping", - "routing" + "_repopath": "karpathy/micrograd", + "_reponame": "micrograd", + "_stars": 4113, + "_forks": 440, + "_watches": 90, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "micrograd: A tiny scalar-valued autograd engine and a neural net library on top of it with PyTorch-like API", + "_organization": "karpathy", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-04-13T00:00:00.000Z", + "_age_weeks": 149, + "_stars_per_week": 27.55, + "_topics": [], + "_last_commit_date": "2020-04-18T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "bpesquet@enscognitique", + "karpathy" ], - "_language": "Python", - "_homepage": "https://geoffboeing.com/publications/osmnx-complex-street-networks/", - "_description": "OSMnx: Python for street networks. Retrieve, model, analyze, and visualize street networks and other spatial data from OpenStreetMap.", - "_organization": "gboeing", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2016-07-24T00:00:00.000Z", - "_age_weeks": 334, - "_stars_per_week": 11.86, - "_pop_contributor_count": 73, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "aaltouniversity", - "universityofsoutherncalifornia" + "enscognitique" + ], + "_pop_contributor_orgs_raw": [ + "ENS Cognitique" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.94, - "_pop_updated_issues_count": 51, - "_pop_closed_issues_count": 49, - "_pop_created_since_days": 78, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 51.0, - "_pop_comment_count": 88.0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 35, + "_pop_updated_since_days": 35, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 8.0, + "_pop_comment_count": 8.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 93, - "_pop_score": 52.05, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 11.85, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/gboeing/osmnx/master/README.md", - "_readme_localurl": "gboeing~osmnx~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/karpathy/micrograd/master/README.md", + "_readme_localurl": "karpathy~micrograd~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/gboeing/osmnx/master/requirements.txt", - "https://raw.githubusercontent.com/gboeing/osmnx/master/setup.py" + "https://raw.githubusercontent.com/karpathy/micrograd/master/setup.py" ], "_requirements_localurls": [ - "gboeing~osmnx~requirements.txt", - "gboeing~osmnx~setup.py" + "karpathy~micrograd~setup.py" ] }, { @@ -19766,9 +27240,17 @@ "description": null, "_repopath": "online-ml/river", "_reponame": "river", - "_stars": 3958, - "_forks": 437, - "_watches": 82, + "_stars": 4087, + "_forks": 458, + "_watches": 83, + "_language": "Python", + "_homepage": "https://riverml.xyz", + "_description": "river: \ud83c\udf0a Online machine learning in Python", + "_organization": "online-ml", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2019-01-24T00:00:00.000Z", + "_age_weeks": 212, + "_stars_per_week": 19.2, "_topics": [ "incremental-learning", "machine-learning", @@ -19783,40 +27265,55 @@ "real-time-processing", "stream-processing" ], - "_language": "Python", - "_homepage": "https://riverml.xyz", - "_description": "river: \ud83c\udf0a Online machine learning in Python", - "_organization": "online-ml", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2019-01-24T00:00:00.000Z", - "_age_weeks": 203, - "_stars_per_week": 19.44, - "_pop_contributor_count": 89, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 94, + "_pop_contributor_logins": [ + "AdilZouitine@irtsaint-exup\u00e9ry", + "Darkmyter", + "MaxHalford@carbonfact", + "garawalid@sfr", + "gbolmier@volvo-cars", + "guimatsumoto", + "jacobmontiel@universityofwaikato", + "krifiMedAmine", + "raphaelsty@manomano", + "smastelini@phdcandidateatuniversityofs\u00e3opaulo" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "carbonfact", + "irtsaint-exup\u00e9ry", "manomano", "phdcandidateatuniversityofs\u00e3opaulo", + "sfr", "universityofwaikato", "volvo-cars" ], + "_pop_contributor_orgs_raw": [ + "@carbonfact", + "@volvo-cars", + "IRT Saint-Exup\u00e9ry", + "ManoMano", + "PhD candidate at University of S\u00e3o Paulo", + "SFR", + "University of Waikato" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.13, - "_pop_updated_issues_count": 60, - "_pop_closed_issues_count": 55, - "_pop_created_since_days": 47, + "_pop_commit_frequency": 5.58, + "_pop_updated_issues_count": 68, + "_pop_closed_issues_count": 58, + "_pop_created_since_days": 50, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 6, "_pop_recent_releases_estimated_tags": 7, "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 60.0, - "_pop_comment_count": 155.0, + "_pop_issue_count": 68.0, + "_pop_comment_count": 182.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.6, - "_pop_dependents_count": 2, - "_pop_score": 50.3, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 0, + "_pop_score": 50.4, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/online-ml/river/master/README.md", "_readme_localurl": "online-ml~river~README.md", @@ -19833,66 +27330,6 @@ "online-ml~river~pyproject.toml" ] }, - { - "index": 258, - "category": "crypto", - "githuburl": "https://github.com/ethereum/web3.py", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "ethereum/web3.py", - "_reponame": "web3.py", - "_stars": 3917, - "_forks": 1232, - "_watches": 119, - "_topics": [], - "_language": "Python", - "_homepage": "http://web3py.readthedocs.io", - "_description": "web3.py: A python interface for interacting with the Ethereum blockchain and ecosystem.", - "_organization": "ethereum", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2016-04-14T00:00:00.000Z", - "_age_weeks": 348, - "_stars_per_week": 11.24, - "_pop_contributor_count": 218, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "ethereum", - "ethereumfoundation" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.88, - "_pop_updated_issues_count": 149, - "_pop_closed_issues_count": 122, - "_pop_created_since_days": 81, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 28, - "_pop_recent_releases_adjusted_count": 28, - "_pop_issue_count": 149.0, - "_pop_comment_count": 174.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 547, - "_pop_score": 61.69, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/ethereum/web3.py/master/README.md", - "_readme_localurl": "ethereum~web3.py~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/ethereum/web3.py/master/setup.py", - "https://raw.githubusercontent.com/ethereum/web3.py/master/pyproject.toml" - ], - "_requirements_localurls": [ - "ethereum~web3.py~setup.py", - "ethereum~web3.py~pyproject.toml" - ] - }, { "index": 549, "category": "ml", @@ -19902,9 +27339,17 @@ "description": null, "_repopath": "open-mmlab/mmediting", "_reponame": "mmediting", - "_stars": 3869, - "_forks": 698, - "_watches": 83, + "_stars": 4069, + "_forks": 728, + "_watches": 86, + "_language": "Python", + "_homepage": "https://mmediting.readthedocs.io/en/latest/", + "_description": "mmediting: OpenMMLab Image and Video Restoration, Editing and Generation Toolbox", + "_organization": "open-mmlab", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-08-23T00:00:00.000Z", + "_age_weeks": 182, + "_stars_per_week": 22.27, "_topics": [ "super-resolution", "inpainting", @@ -19921,38 +27366,53 @@ "image-processing", "image-synthesis" ], - "_language": "Python", - "_homepage": "https://mmediting.readthedocs.io/en/latest/", - "_description": "mmediting: OpenMMLab Image and Video Restoration, Editing and Generation Toolbox", - "_organization": "open-mmlab", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", - "_created_at": "2019-08-23T00:00:00.000Z", - "_age_weeks": 173, - "_stars_per_week": 22.31, - "_pop_contributor_count": 64, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 66, + "_pop_contributor_logins": [ + "EndlessSora@nanyangtechnologicaluniversity", + "Yshuo-Li", + "ckkelvinchan@googleresearch", + "hejm37@universityofalberta", + "hellock@open-mmlab", + "innerlee@cuhk", + "nbei", + "wangruohui", + "wwhio", + "zengyh1900@openmmlab" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "cuhk", + "googleresearch", "nanyangtechnologicaluniversity", + "open-mmlab", + "openmmlab", "universityofalberta" ], + "_pop_contributor_orgs_raw": [ + "@open-mmlab ", + "CUHK", + "Google Research", + "Nanyang Technological University", + "OpenMMLab", + "University of Alberta" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.6, - "_pop_updated_issues_count": 461, - "_pop_closed_issues_count": 389, - "_pop_created_since_days": 40, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 2.83, + "_pop_updated_issues_count": 238, + "_pop_closed_issues_count": 197, + "_pop_created_since_days": 43, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 12, "_pop_recent_releases_estimated_tags": 6, "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 460.0, - "_pop_comment_count": 452.0, + "_pop_issue_count": 238.0, + "_pop_comment_count": 252.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 1643, - "_pop_score": 57.5, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 47.89, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/open-mmlab/mmediting/master/README.md", "_readme_localurl": "open-mmlab~mmediting~README.md", @@ -19970,225 +27430,272 @@ ] }, { - "index": 13, - "category": "ml", - "githuburl": "https://github.com/districtdatalabs/yellowbrick", + "index": 343, + "category": "web", + "githuburl": "https://github.com/vitalik/django-ninja", "featured": null, "links": null, "description": null, - "_repopath": "districtdatalabs/yellowbrick", - "_reponame": "yellowbrick", - "_stars": 3866, - "_forks": 538, - "_watches": 101, + "_repopath": "vitalik/django-ninja", + "_reponame": "django-ninja", + "_stars": 4068, + "_forks": 259, + "_watches": 60, + "_language": "Python", + "_homepage": "https://django-ninja.rest-framework.com", + "_description": "django-ninja: \ud83d\udca8 Fast, Async-ready, Openapi, type hints based framework for building APIs", + "_organization": "vitalik", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-05-19T00:00:00.000Z", + "_age_weeks": 144, + "_stars_per_week": 28.22, "_topics": [ - "machine-learning", - "visual-analysis", - "model-selection", - "visualization", - "scikit-learn", - "visualizer", - "matplotlib", "python", - "estimator", - "anaconda" + "django", + "rest-api", + "openapi", + "pydantic", + "swagger", + "swagger-ui", + "django-ninja" ], - "_language": "Python", - "_homepage": "http://www.scikit-yb.org/", - "_description": "yellowbrick: Visual analysis and diagnostic tools to facilitate machine learning model selection.", - "_organization": "districtdatalabs", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2016-05-18T00:00:00.000Z", - "_age_weeks": 343, - "_stars_per_week": 11.25, - "_pop_contributor_count": 110, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-10T00:00:00.000Z", + "_pop_contributor_count": 77, + "_pop_contributor_logins": [ + "OtherBarry@spiralblue", + "SmileyChris", + "areski@star2billing//dialerai", + "baseplate-admin", + "fojetin", + "hiaselhans", + "jairhenrique@grupoboticario", + "stephenrauch", + "vitalik", + "wimolivier" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "rotationalio", - "rotationallabs" + "grupoboticario", + "spiralblue", + "star2billing//dialerai" + ], + "_pop_contributor_orgs_raw": [ + "@grupoboticario ", + "@spiralblue ", + "Star2Billing // DialerAI" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.65, - "_pop_updated_issues_count": 13, - "_pop_closed_issues_count": 9, - "_pop_created_since_days": 80, + "_pop_commit_frequency": 2.94, + "_pop_updated_issues_count": 112, + "_pop_closed_issues_count": 65, + "_pop_created_since_days": 34, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 13.0, - "_pop_comment_count": 25.0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 112.0, + "_pop_comment_count": 241.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.9, - "_pop_dependents_count": 57, - "_pop_score": 47.21, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 0, + "_pop_score": 43.86, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/districtdatalabs/yellowbrick/master/README.md", - "_readme_localurl": "districtdatalabs~yellowbrick~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/vitalik/django-ninja/master/README.md", + "_readme_localurl": "vitalik~django-ninja~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/districtdatalabs/yellowbrick/master/requirements.txt", - "https://raw.githubusercontent.com/districtdatalabs/yellowbrick/master/setup.py" + "https://raw.githubusercontent.com/vitalik/django-ninja/master/setup.py", + "https://raw.githubusercontent.com/vitalik/django-ninja/master/pyproject.toml" ], "_requirements_localurls": [ - "districtdatalabs~yellowbrick~requirements.txt", - "districtdatalabs~yellowbrick~setup.py" + "vitalik~django-ninja~setup.py", + "vitalik~django-ninja~pyproject.toml" ] }, { - "index": 362, - "category": "ml-ops", - "githuburl": "https://github.com/allegroai/clearml", + "index": 565, + "category": "gis", + "githuburl": "https://github.com/gboeing/osmnx", "featured": null, "links": null, "description": null, - "_repopath": "allegroai/clearml", - "_reponame": "clearml", - "_stars": 3857, - "_forks": 519, - "_watches": 82, + "_repopath": "gboeing/osmnx", + "_reponame": "osmnx", + "_stars": 4053, + "_forks": 744, + "_watches": 121, + "_language": "Python", + "_homepage": "https://geoffboeing.com/publications/osmnx-complex-street-networks/", + "_description": "OSMnx: Python for street networks. Retrieve, model, analyze, and visualize street networks and other spatial data from OpenStreetMap.", + "_organization": "gboeing", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-07-24T00:00:00.000Z", + "_age_weeks": 343, + "_stars_per_week": 11.8, "_topics": [ - "version-control", - "experiment-manager", - "version", - "control", - "experiment", - "deeplearning", - "deep-learning", - "machine-learning", - "machinelearning", - "ai", - "trains", - "trainsai", - "clearml", - "k8s", - "devops", - "mlops" + "openstreetmap", + "gis", + "street-networks", + "overpass-api", + "networkx", + "spatial-analysis", + "geospatial", + "urban-planning", + "transportation", + "geography", + "osmnx", + "networks", + "spatial-data", + "urban", + "osm", + "spatial", + "python", + "transport", + "mapping", + "routing" ], - "_language": "Python", - "_homepage": "https://clear.ml/docs", - "_description": "ClearML - Auto-Magical CI/CD to streamline your ML workflow. Experiment Manager, MLOps and Data-Management", - "_organization": "allegroai", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2019-06-10T00:00:00.000Z", - "_age_weeks": 184, - "_stars_per_week": 20.96, - "_pop_contributor_count": 62, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-01-27T00:00:00.000Z", + "_pop_contributor_count": 74, + "_pop_contributor_logins": [ + "AtelierLibre", + "HTenkanen@aaltouniversity", + "RunOrVeith", + "d-wasserman@alta", + "eumiro", + "gboeing@universityofsoutherncalifornia", + "migurski", + "mxndrwgrdnr", + "pmartincalvo", + "samuelduchesne@mitsustainabledesignlabelementa-engineering" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "allegroai", - "techlearnersincallegroai" + "aaltouniversity", + "alta", + "mitsustainabledesignlabelementa-engineering", + "universityofsoutherncalifornia" + ], + "_pop_contributor_orgs_raw": [ + "@MITSustainableDesignLab @Elementa-Engineering", + "Aalto University", + "Alta", + "University of Southern California" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.46, - "_pop_updated_issues_count": 114, - "_pop_closed_issues_count": 39, - "_pop_created_since_days": 43, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 22, - "_pop_recent_releases_estimated_tags": 36, - "_pop_recent_releases_adjusted_count": 22, - "_pop_issue_count": 114.0, - "_pop_comment_count": 249.0, + "_pop_commit_frequency": 3.27, + "_pop_updated_issues_count": 51, + "_pop_closed_issues_count": 43, + "_pop_created_since_days": 80, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 51.0, + "_pop_comment_count": 96.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.2, - "_pop_dependents_count": 22, - "_pop_score": 49.63, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 45.16, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/allegroai/clearml/master/README.md", - "_readme_localurl": "allegroai~clearml~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/gboeing/osmnx/master/README.md", + "_readme_localurl": "gboeing~osmnx~README.md", "_requirements_filenames": [ "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/allegroai/clearml/master/requirements.txt", - "https://raw.githubusercontent.com/allegroai/clearml/master/setup.py" + "https://raw.githubusercontent.com/gboeing/osmnx/master/requirements.txt", + "https://raw.githubusercontent.com/gboeing/osmnx/master/setup.py" ], "_requirements_localurls": [ - "allegroai~clearml~requirements.txt", - "allegroai~clearml~setup.py" + "gboeing~osmnx~requirements.txt", + "gboeing~osmnx~setup.py" ] }, { - "index": 43, - "category": "data", - "githuburl": "https://github.com/lk-geimfari/mimesis", - "featured": null, + "index": 258, + "category": "crypto", + "githuburl": "https://github.com/ethereum/web3.py", + "featured": 1.0, "links": null, "description": null, - "_repopath": "lk-geimfari/mimesis", - "_reponame": "mimesis", - "_stars": 3833, - "_forks": 303, - "_watches": 64, - "_topics": [ - "mimesis", - "fake", - "data", - "generator", - "fixtures", - "dummy", - "json", - "schema", - "testing", - "python", - "json-generator", - "faker", - "mock", - "synthetic-data", - "datascience", - "api-mock" - ], + "_repopath": "ethereum/web3.py", + "_reponame": "web3.py", + "_stars": 4039, + "_forks": 1309, + "_watches": 117, "_language": "Python", - "_homepage": "https://mimesis.name", - "_description": "Mimesis is a high-performance fake data generator for Python, which provides data for a variety of purposes in a variety of languages. ", - "_organization": "lk-geimfari", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2016-09-09T00:00:00.000Z", - "_age_weeks": 327, - "_stars_per_week": 11.71, - "_pop_contributor_count": 112, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": "http://web3py.readthedocs.io", + "_description": "web3.py: A python interface for interacting with the Ethereum blockchain and ecosystem.", + "_organization": "ethereum", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-04-14T00:00:00.000Z", + "_age_weeks": 357, + "_stars_per_week": 11.29, + "_topics": [], + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 219, + "_pop_contributor_logins": [ + "carver@ethereumfoundation", + "djrtwo@ctrl^t", + "dylanjw", + "fselmo@ethereum", + "kclowes", + "njgheorghita@ethereum", + "pipermerriam@ethereumfoundation", + "tmckenzie51", + "voith@cryptexfinance", + "wolovim" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "extendi", - "roskomsvoboda" + "cryptexfinance", + "ctrl^t", + "ethereum", + "ethereumfoundation" + ], + "_pop_contributor_orgs_raw": [ + "@cryptexfinance", + "@ethereum", + "@ethereum ", + "Ctrl^T", + "Ethereum Foundation" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.96, - "_pop_updated_issues_count": 46, - "_pop_closed_issues_count": 32, - "_pop_created_since_days": 76, + "_pop_commit_frequency": 5.94, + "_pop_updated_issues_count": 153, + "_pop_closed_issues_count": 113, + "_pop_created_since_days": 83, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 9, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 9, - "_pop_issue_count": 46.0, - "_pop_comment_count": 56.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 28, + "_pop_recent_releases_adjusted_count": 28, + "_pop_issue_count": 153.0, + "_pop_comment_count": 151.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 100, - "_pop_score": 52.64, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/lk-geimfari/mimesis/master/README.rst", - "_readme_localurl": "lk-geimfari~mimesis~README.rst", + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 52.54, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/ethereum/web3.py/master/README.md", + "_readme_localurl": "ethereum~web3.py~README.md", "_requirements_filenames": [ + "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/lk-geimfari/mimesis/master/pyproject.toml" + "https://raw.githubusercontent.com/ethereum/web3.py/master/setup.py", + "https://raw.githubusercontent.com/ethereum/web3.py/master/pyproject.toml" ], "_requirements_localurls": [ - "lk-geimfari~mimesis~pyproject.toml" + "ethereum~web3.py~setup.py", + "ethereum~web3.py~pyproject.toml" ] }, { @@ -20200,42 +27707,66 @@ "description": null, "_repopath": "google/flax", "_reponame": "flax", - "_stars": 3821, - "_forks": 444, - "_watches": 74, - "_topics": [ - "jax" - ], + "_stars": 4033, + "_forks": 475, + "_watches": 77, "_language": "Python", "_homepage": "https://flax.readthedocs.io", "_description": "Flax is a neural network library for JAX that is designed for flexibility.", "_organization": "google", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2020-01-10T00:00:00.000Z", - "_age_weeks": 153, - "_stars_per_week": 24.9, - "_pop_contributor_count": 183, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 162, + "_stars_per_week": 24.79, + "_topics": [ + "jax" + ], + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 187, + "_pop_contributor_logins": [ + "8bitmp3@tensorflow,jax,flax", + "IvyZX@google", + "andsteing@google", + "avital@google", + "cgarciae@quansight", + "jheek", + "levskaya", + "marcvanzee@google", + "mohitreddy1996@fennel-ai", + "wrzadkow@istaustria" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google" + "fennel-ai", + "google", + "istaustria", + "quansight", + "tensorflow,jax,flax" + ], + "_pop_contributor_orgs_raw": [ + "@fennel-ai", + "@google", + "Google", + "IST Austria", + "Quansight", + "tensorflow, jax, flax" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 10.9, - "_pop_updated_issues_count": 289, - "_pop_closed_issues_count": 218, - "_pop_created_since_days": 36, + "_pop_commit_frequency": 10.0, + "_pop_updated_issues_count": 287, + "_pop_closed_issues_count": 201, + "_pop_created_since_days": 38, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 12, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 289.0, - "_pop_comment_count": 489.0, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 287.0, + "_pop_comment_count": 458.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 588, - "_pop_score": 58.75, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 52.67, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google/flax/master/README.md", "_readme_localurl": "google~flax~README.md", @@ -20250,61 +27781,181 @@ ] }, { - "index": 355, - "category": "ml-ops", - "githuburl": "https://github.com/feast-dev/feast", + "index": 376, + "category": "util", + "githuburl": "https://github.com/spotify/pedalboard", "featured": null, "links": null, "description": null, - "_repopath": "feast-dev/feast", - "_reponame": "feast", - "_stars": 3820, - "_forks": 714, - "_watches": 74, + "_repopath": "spotify/pedalboard", + "_reponame": "pedalboard", + "_stars": 3992, + "_forks": 166, + "_watches": 50, + "_language": "C++", + "_homepage": "", + "_description": "pedalboard: \ud83c\udf9b \ud83d\udd0a A Python library for working with audio.", + "_organization": "spotify", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2021-07-06T00:00:00.000Z", + "_age_weeks": 85, + "_stars_per_week": 46.89, "_topics": [ - "machine-learning", - "features", - "ml", - "big-data", - "feature-store", + "vst3", + "vst3-host", "python", - "mlops", - "data-engineering", - "data-science", - "data-quality" + "juce", + "tensorflow", + "audio-unit", + "pybind11", + "audio-processing", + "audio-production", + "audio-research", + "audio" ], - "_language": "Python", - "_homepage": "https://feast.dev", - "_description": "feast: Feature Store for Machine Learning", - "_organization": "feast-dev", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2018-12-10T00:00:00.000Z", - "_age_weeks": 210, - "_stars_per_week": 18.19, - "_pop_contributor_count": 179, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 25, + "_pop_contributor_logins": [ + "AK391@huggingface", + "andrerics", + "astagi@italiateamdigitale", + "brettcannon@microsoft", + "christinesutcliffe", + "drubinstein@spotify", + "emilio1234", + "paulm12@myr", + "psobot@spotify", + "rm-star@b3ta" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "gojekindonesia", - "tecton", - "tectonai" + "b3ta", + "huggingface", + "italiateamdigitale", + "microsoft", + "myr", + "spotify" + ], + "_pop_contributor_orgs_raw": [ + "@b3ta", + "@italia @teamdigitale", + "@microsoft ", + "@spotify", + "Huggingface", + "MYR" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 15.31, - "_pop_updated_issues_count": 271, - "_pop_closed_issues_count": 156, - "_pop_created_since_days": 49, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 31, - "_pop_recent_releases_estimated_tags": 31, - "_pop_recent_releases_adjusted_count": 31, - "_pop_issue_count": 271.0, - "_pop_comment_count": 434.0, + "_pop_commit_frequency": 4.69, + "_pop_updated_issues_count": 44, + "_pop_closed_issues_count": 33, + "_pop_created_since_days": 20, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 25, + "_pop_recent_releases_estimated_tags": 24, + "_pop_recent_releases_adjusted_count": 25, + "_pop_issue_count": 44.0, + "_pop_comment_count": 41.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 42.58, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/spotify/pedalboard/master/README.md", + "_readme_localurl": "spotify~pedalboard~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/spotify/pedalboard/master/requirements.txt", + "https://raw.githubusercontent.com/spotify/pedalboard/master/setup.py", + "https://raw.githubusercontent.com/spotify/pedalboard/master/pyproject.toml" + ], + "_requirements_localurls": [ + "spotify~pedalboard~requirements.txt", + "spotify~pedalboard~setup.py", + "spotify~pedalboard~pyproject.toml" + ] + }, + { + "index": 355, + "category": "ml-ops", + "githuburl": "https://github.com/feast-dev/feast", + "featured": null, + "links": null, + "description": null, + "_repopath": "feast-dev/feast", + "_reponame": "feast", + "_stars": 3979, + "_forks": 744, + "_watches": 74, + "_language": "Python", + "_homepage": "https://feast.dev", + "_description": "feast: Feature Store for Machine Learning", + "_organization": "feast-dev", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-12-10T00:00:00.000Z", + "_age_weeks": 219, + "_stars_per_week": 18.15, + "_topics": [ + "machine-learning", + "features", + "ml", + "big-data", + "feature-store", + "python", + "mlops", + "data-engineering", + "data-science", + "data-quality" + ], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 189, + "_pop_contributor_logins": [ + "achals@tectonai", + "adchia@tecton", + "davidheryanto", + "felixwang9817", + "jklegar", + "kevjumba", + "pyalex@tecton-ai", + "terryyylim@gojek", + "woop@tecton", + "zhilingc@gojekindonesia" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "gojek", + "gojekindonesia", + "tecton", + "tecton-ai", + "tectonai" + ], + "_pop_contributor_orgs_raw": [ + "@gojekindonesia ", + "@tecton-ai", + "Gojek", + "Tecton", + "Tecton AI" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 13.67, + "_pop_updated_issues_count": 260, + "_pop_closed_issues_count": 174, + "_pop_created_since_days": 51, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 30, + "_pop_recent_releases_estimated_tags": 30, + "_pop_recent_releases_adjusted_count": 30, + "_pop_issue_count": 260.0, + "_pop_comment_count": 408.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 4, - "_pop_score": 55.68, + "_pop_dependents_count": 0, + "_pop_score": 54.9, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/feast-dev/feast/master/README.md", "_readme_localurl": "feast-dev~feast~README.md", @@ -20322,79 +27973,186 @@ ] }, { - "index": 376, - "category": "util", - "githuburl": "https://github.com/spotify/pedalboard", + "index": 13, + "category": "ml", + "githuburl": "https://github.com/districtdatalabs/yellowbrick", "featured": null, "links": null, "description": null, - "_repopath": "spotify/pedalboard", - "_reponame": "pedalboard", - "_stars": 3802, - "_forks": 153, - "_watches": 46, + "_repopath": "districtdatalabs/yellowbrick", + "_reponame": "yellowbrick", + "_stars": 3913, + "_forks": 543, + "_watches": 101, + "_language": "Python", + "_homepage": "http://www.scikit-yb.org/", + "_description": "yellowbrick: Visual analysis and diagnostic tools to facilitate machine learning model selection.", + "_organization": "districtdatalabs", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2016-05-18T00:00:00.000Z", + "_age_weeks": 353, + "_stars_per_week": 11.08, "_topics": [ - "vst3", - "vst3-host", + "machine-learning", + "visual-analysis", + "model-selection", + "visualization", + "scikit-learn", + "visualizer", + "matplotlib", "python", - "juce", - "tensorflow", - "audio-unit", - "pybind11", - "audio-processing", - "audio-production", - "audio-research", - "audio" + "estimator", + "anaconda" ], - "_language": "C++", - "_homepage": "", - "_description": "pedalboard: \ud83c\udf9b \ud83d\udd0a A Python library for working with audio.", - "_organization": "spotify", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-08T00:00:00.000Z", - "_created_at": "2021-07-06T00:00:00.000Z", - "_age_weeks": 75, - "_stars_per_week": 50.12, - "_pop_contributor_count": 24, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-01-13T00:00:00.000Z", + "_pop_contributor_count": 111, + "_pop_contributor_logins": [ + "Kautumn06", + "bbengfort@rotationalio", + "jkeung", + "lwgray", + "mgarod", + "naresh-bachwani", + "ndanielsen", + "pdamodaran", + "ralle123", + "rebeccabilbro@rotationallabs" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "b3ta", - "myr", - "spotify" + "rotationalio", + "rotationallabs" + ], + "_pop_contributor_orgs_raw": [ + "@rotationalio ", + "Rotational Labs, LLC" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.35, - "_pop_updated_issues_count": 36, - "_pop_closed_issues_count": 23, - "_pop_created_since_days": 18, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 30, - "_pop_recent_releases_estimated_tags": 24, - "_pop_recent_releases_adjusted_count": 30, - "_pop_issue_count": 36.0, - "_pop_comment_count": 38.0, + "_pop_commit_frequency": 0.48, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 82, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 11.0, + "_pop_comment_count": 14.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 16, - "_pop_score": 45.11, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 36.06, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/spotify/pedalboard/master/README.md", - "_readme_localurl": "spotify~pedalboard~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/districtdatalabs/yellowbrick/master/README.md", + "_readme_localurl": "districtdatalabs~yellowbrick~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/districtdatalabs/yellowbrick/master/requirements.txt", + "https://raw.githubusercontent.com/districtdatalabs/yellowbrick/master/setup.py" + ], + "_requirements_localurls": [ + "districtdatalabs~yellowbrick~requirements.txt", + "districtdatalabs~yellowbrick~setup.py" + ] + }, + { + "index": 43, + "category": "data", + "githuburl": "https://github.com/lk-geimfari/mimesis", + "featured": null, + "links": null, + "description": null, + "_repopath": "lk-geimfari/mimesis", + "_reponame": "mimesis", + "_stars": 3902, + "_forks": 309, + "_watches": 64, + "_language": "Python", + "_homepage": "https://mimesis.name", + "_description": "Mimesis is a high-performance fake data generator for Python, which provides data for a variety of purposes in a variety of languages. ", + "_organization": "lk-geimfari", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2016-09-09T00:00:00.000Z", + "_age_weeks": 336, + "_stars_per_week": 11.59, + "_topics": [ + "mimesis", + "fake", + "data", + "generator", + "fixtures", + "dummy", + "json", + "schema", + "testing", + "python", + "json-generator", + "faker", + "mock", + "synthetic-data", + "datascience", + "api-mock" + ], + "_last_commit_date": "2023-01-27T00:00:00.000Z", + "_pop_contributor_count": 113, + "_pop_contributor_logins": [ + "dependabot-preview[bot]", + "dependabot[bot]", + "eumiro", + "hoefling@ionos-cloud", + "lk-geimfari@roskomsvoboda", + "ngnpope@infogrid", + "sinecode@extendi", + "sobolevn", + "valerievich", + "wikkiewikkie@42software" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "42software", + "extendi", + "infogrid", + "ionos-cloud", + "roskomsvoboda" + ], + "_pop_contributor_orgs_raw": [ + "42 Software LLC", + "@ionos-cloud ", + "@roskomsvoboda", + "Extendi", + "Infogrid" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.75, + "_pop_updated_issues_count": 25, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 79, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 25.0, + "_pop_comment_count": 25.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 45.86, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/lk-geimfari/mimesis/master/README.rst", + "_readme_localurl": "lk-geimfari~mimesis~README.rst", + "_requirements_filenames": [ "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/spotify/pedalboard/master/requirements.txt", - "https://raw.githubusercontent.com/spotify/pedalboard/master/setup.py", - "https://raw.githubusercontent.com/spotify/pedalboard/master/pyproject.toml" + "https://raw.githubusercontent.com/lk-geimfari/mimesis/master/pyproject.toml" ], "_requirements_localurls": [ - "spotify~pedalboard~requirements.txt", - "spotify~pedalboard~setup.py", - "spotify~pedalboard~pyproject.toml" + "lk-geimfari~mimesis~pyproject.toml" ] }, { @@ -20406,9 +28164,17 @@ "description": null, "_repopath": "man-group/dtale", "_reponame": "dtale", - "_stars": 3769, - "_forks": 318, - "_watches": 69, + "_stars": 3876, + "_forks": 329, + "_watches": 68, + "_language": "TypeScript", + "_homepage": "http://alphatechadmin.pythonanywhere.com", + "_description": "dtale: Visualizer for pandas data structures", + "_organization": "man-group", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-07-15T00:00:00.000Z", + "_age_weeks": 188, + "_stars_per_week": 20.59, "_topics": [ "python27", "python3", @@ -20425,34 +28191,45 @@ "data-science", "xarray" ], - "_language": "TypeScript", - "_homepage": "http://alphatechadmin.pythonanywhere.com", - "_description": "dtale: Visualizer for pandas data structures", - "_organization": "man-group", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-04T00:00:00.000Z", - "_created_at": "2019-07-15T00:00:00.000Z", - "_age_weeks": 179, - "_stars_per_week": 21.06, + "_last_commit_date": "2023-02-07T00:00:00.000Z", "_pop_contributor_count": 29, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_pop_contributor_logins": [ + "AnthraX1", + "appznoix", + "ariffrahimin@asiadigitalengineering", + "aschonfeld", + "cdeil@heidelbergcement", + "colin-jensen", + "dependabot[bot]", + "jasonkholden", + "matrach", + "phillipdupuis" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "asiadigitalengineering", + "heidelbergcement" + ], + "_pop_contributor_orgs_raw": [ + "Asia Digital Engineering", + "HeidelbergCement" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.65, - "_pop_updated_issues_count": 23, - "_pop_closed_issues_count": 11, - "_pop_created_since_days": 42, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 12, + "_pop_commit_frequency": 1.87, + "_pop_updated_issues_count": 36, + "_pop_closed_issues_count": 28, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 17, "_pop_recent_releases_estimated_tags": 40, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 23.0, - "_pop_comment_count": 18.0, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 36.0, + "_pop_comment_count": 76.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 253, - "_pop_score": 39.49, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 0, + "_pop_score": 40.7, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/man-group/dtale/master/README.md", "_readme_localurl": "man-group~dtale~README.md", @@ -20470,118 +28247,161 @@ ] }, { - "index": 343, - "category": "web", - "githuburl": "https://github.com/vitalik/django-ninja", + "index": 309, + "category": "crypto", + "githuburl": "https://github.com/crytic/slither", "featured": null, "links": null, "description": null, - "_repopath": "vitalik/django-ninja", - "_reponame": "django-ninja", - "_stars": 3763, - "_forks": 235, + "_repopath": "crytic/slither", + "_reponame": "slither", + "_stars": 3819, + "_forks": 694, "_watches": 61, + "_language": "Python", + "_homepage": "https://blog.trailofbits.com/2018/10/19/slither-a-solidity-static-analysis-framework/", + "_description": "slither: Static Analyzer for Solidity", + "_organization": "crytic", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-09-05T00:00:00.000Z", + "_age_weeks": 233, + "_stars_per_week": 16.39, "_topics": [ - "python", - "django", - "rest-api", - "openapi", - "pydantic", - "swagger", - "swagger-ui", - "django-ninja" + "solidity", + "ethereum", + "static-analysis" + ], + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 101, + "_pop_contributor_logins": [ + "0xalpharush@trailofbits", + "Xenomega@trailofbits", + "elopez@trailofbits", + "ggrieco-tob@trailofbits", + "htadashi", + "montyly", + "rajeevgopalakrishna", + "rmi7", + "samczsun", + "smonicas" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "trailofbits" + ], + "_pop_contributor_orgs_raw": [ + "@trailofbits", + "@trailofbits " ], - "_language": "Python", - "_homepage": "https://django-ninja.rest-framework.com", - "_description": "django-ninja: \ud83d\udca8 Fast, Async-ready, Openapi, type hints based framework for building APIs", - "_organization": "vitalik", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2020-05-19T00:00:00.000Z", - "_age_weeks": 134, - "_stars_per_week": 27.9, - "_pop_contributor_count": 70, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.58, - "_pop_updated_issues_count": 97, - "_pop_closed_issues_count": 46, - "_pop_created_since_days": 31, + "_pop_commit_frequency": 8.94, + "_pop_updated_issues_count": 298, + "_pop_closed_issues_count": 172, + "_pop_created_since_days": 54, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 97.0, - "_pop_comment_count": 173.0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 298.0, + "_pop_comment_count": 316.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 22, - "_pop_score": 42.16, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 43.44, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/vitalik/django-ninja/master/README.md", - "_readme_localurl": "vitalik~django-ninja~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/crytic/slither/master/README.md", + "_readme_localurl": "crytic~slither~README.md", "_requirements_filenames": [ "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/vitalik/django-ninja/master/setup.py", - "https://raw.githubusercontent.com/vitalik/django-ninja/master/pyproject.toml" + "https://raw.githubusercontent.com/crytic/slither/master/setup.py", + "https://raw.githubusercontent.com/crytic/slither/master/pyproject.toml" ], "_requirements_localurls": [ - "vitalik~django-ninja~setup.py", - "vitalik~django-ninja~pyproject.toml" + "crytic~slither~setup.py", + "crytic~slither~pyproject.toml" ] }, { - "index": 753, - "category": "study", - "githuburl": "https://github.com/karpathy/nn-zero-to-hero", + "index": 790, + "category": "diffusion", + "githuburl": "https://github.com/ashawkey/stable-dreamfusion", "featured": null, "links": null, "description": null, - "_repopath": "karpathy/nn-zero-to-hero", - "_reponame": "nn-zero-to-hero", - "_stars": 3754, - "_forks": 259, - "_watches": 151, - "_topics": [], - "_language": "Jupyter Notebook", - "_homepage": null, - "_description": "nn-zero-to-hero: Neural Networks: Zero to Hero", - "_organization": "karpathy", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-21T00:00:00.000Z", - "_created_at": "2022-09-08T00:00:00.000Z", - "_age_weeks": 14, - "_stars_per_week": 257.63, - "_pop_contributor_count": 2, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_repopath": "ashawkey/stable-dreamfusion", + "_reponame": "stable-dreamfusion", + "_stars": 3817, + "_forks": 332, + "_watches": 83, + "_language": "Python", + "_homepage": "", + "_description": "stable-dreamfusion: A pytorch implementation of text-to-3D dreamfusion, powered by stable diffusion.", + "_organization": "ashawkey", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-10-06T00:00:00.000Z", + "_age_weeks": 19, + "_stars_per_week": 192.22, + "_topics": [ + "text-to-3d", + "gui", + "nerf", + "stable-diffusion", + "dreamfusion" + ], + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "abesmon@ctcmedia", + "ashawkey@pekinguniversity", + "elliottzheng", + "flobotics@floboticsrobotics", + "jogloran", + "johnrobinsn", + "nside" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "ctcmedia", + "floboticsrobotics", + "pekinguniversity" + ], + "_pop_contributor_orgs_raw": [ + "CTC Media", + "Flobotics Robotics", + "Peking University" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.17, - "_pop_updated_issues_count": 13, - "_pop_closed_issues_count": 5, - "_pop_created_since_days": 3, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 1.46, + "_pop_updated_issues_count": 79, + "_pop_closed_issues_count": 36, + "_pop_created_since_days": 5, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 13.0, - "_pop_comment_count": 18.0, + "_pop_issue_count": 79.0, + "_pop_comment_count": 186.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, + "_pop_comment_frequency": 2.4, "_pop_dependents_count": 0, - "_pop_score": 11.78, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/karpathy/nn-zero-to-hero/master/README.md", - "_readme_localurl": "karpathy~nn-zero-to-hero~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_pop_score": 29.51, + "_readme_filename": "readme.md", + "_readme_giturl": "https://raw.githubusercontent.com/ashawkey/stable-dreamfusion/master/readme.md", + "_readme_localurl": "ashawkey~stable-dreamfusion~readme.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/ashawkey/stable-dreamfusion/master/requirements.txt" + ], + "_requirements_localurls": [ + "ashawkey~stable-dreamfusion~requirements.txt" + ] }, { "index": 388, @@ -20592,9 +28412,17 @@ "description": null, "_repopath": "makcedward/nlpaug", "_reponame": "nlpaug", - "_stars": 3690, - "_forks": 420, + "_stars": 3810, + "_forks": 429, "_watches": 39, + "_language": "Jupyter Notebook", + "_homepage": "https://makcedward.github.io/", + "_description": "nlpaug: Data augmentation for NLP ", + "_organization": "makcedward", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-03-21T00:00:00.000Z", + "_age_weeks": 204, + "_stars_per_week": 18.6, "_topics": [ "nlp", "augmentation", @@ -20607,39 +28435,51 @@ "ai", "ml" ], - "_language": "Jupyter Notebook", - "_homepage": "https://makcedward.github.io/", - "_description": "nlpaug: Data augmentation for NLP ", - "_organization": "makcedward", - "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-07-07T00:00:00.000Z", - "_created_at": "2019-03-21T00:00:00.000Z", - "_age_weeks": 195, - "_stars_per_week": 18.87, "_pop_contributor_count": 33, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "DrMatters", + "JohnGiorgi@universityoftoronto", + "Logigo", + "amitness", + "avostryakov", + "baskrahmer", + "bdalal@cresta", + "chiragjn@truefoundry", + "makcedward@toyotaconnected", + "ricardopieper@clevertech" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "clevertech", "cresta", "toyotaconnected", - "truefoundry" + "truefoundry", + "universityoftoronto" + ], + "_pop_contributor_orgs_raw": [ + "@cresta ", + "@truefoundry ", + "Clevertech", + "Toyota Connected", + "University of Toronto" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.37, - "_pop_updated_issues_count": 11, + "_pop_commit_frequency": 0.29, + "_pop_updated_issues_count": 16, "_pop_closed_issues_count": 1, - "_pop_created_since_days": 46, - "_pop_updated_since_days": 5, - "_pop_recent_releases_count": 2, + "_pop_created_since_days": 48, + "_pop_updated_since_days": 8, + "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 11.0, - "_pop_comment_count": 6.0, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 16.0, + "_pop_comment_count": 5.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 2, - "_pop_score": 31.07, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 0, + "_pop_score": 27.91, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/makcedward/nlpaug/master/README.md", "_readme_localurl": "makcedward~nlpaug~README.md", @@ -20657,126 +28497,191 @@ ] }, { - "index": 855, - "category": "profiling", - "githuburl": "https://github.com/pythonprofilers/memory_profiler", + "index": 91, + "category": "ml", + "githuburl": "https://github.com/uber/causalml", "featured": null, "links": null, "description": null, - "_repopath": "pythonprofilers/memory_profiler", - "_reponame": "memory_profiler", - "_stars": 3684, - "_forks": 363, - "_watches": 75, - "_topics": [], + "_repopath": "uber/causalml", + "_reponame": "causalml", + "_stars": 3800, + "_forks": 608, + "_watches": 78, "_language": "Python", - "_homepage": "http://pypi.python.org/pypi/memory_profiler", - "_description": "memory_profiler: Monitor Memory usage of Python code", - "_organization": "pythonprofilers", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2011-10-14T00:00:00.000Z", - "_age_weeks": 583, - "_stars_per_week": 6.31, - "_pop_contributor_count": 101, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "cardiologs", - "google" + "_homepage": "", + "_description": "causalml: Uplift modeling and causal inference with machine learning algorithms", + "_organization": "uber", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2019-07-09T00:00:00.000Z", + "_age_weeks": 189, + "_stars_per_week": 20.09, + "_topics": [ + "incubation", + "machine-learning", + "causal-inference", + "uplift-modeling" ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.73, - "_pop_updated_issues_count": 21, - "_pop_closed_issues_count": 14, - "_pop_created_since_days": 136, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 21.0, - "_pop_comment_count": 23.0, + "_last_commit_date": "2023-02-03T00:00:00.000Z", + "_pop_contributor_count": 49, + "_pop_contributor_logins": [ + "huigangchen", + "jeongyoonlee@uber", + "manojbalaji1@datascientist", + "paullo0106@uber", + "peterfoley", + "ppstacy", + "t-tte@toyotaresearchinstitute", + "yluogit", + "yungmsh@spotify", + "zhenyuz0500@tencent" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "datascientist", + "spotify", + "tencent", + "toyotaresearchinstitute", + "uber" + ], + "_pop_contributor_orgs_raw": [ + "Data Scientist", + "Spotify", + "Tencent", + "Toyota Research Institute", + "Uber" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.85, + "_pop_updated_issues_count": 24, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 24.0, + "_pop_comment_count": 38.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 225, - "_pop_score": 50.61, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pythonprofilers/memory_profiler/master/README.rst", - "_readme_localurl": "pythonprofilers~memory_profiler~README.rst", + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 38.04, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/uber/causalml/master/README.md", + "_readme_localurl": "uber~causalml~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pythonprofilers/memory_profiler/master/setup.py", - "https://raw.githubusercontent.com/pythonprofilers/memory_profiler/master/pyproject.toml" + "https://raw.githubusercontent.com/uber/causalml/master/requirements.txt", + "https://raw.githubusercontent.com/uber/causalml/master/setup.py", + "https://raw.githubusercontent.com/uber/causalml/master/pyproject.toml" ], "_requirements_localurls": [ - "pythonprofilers~memory_profiler~setup.py", - "pythonprofilers~memory_profiler~pyproject.toml" + "uber~causalml~requirements.txt", + "uber~causalml~setup.py", + "uber~causalml~pyproject.toml" ] }, { - "index": 357, - "category": "data", - "githuburl": "https://github.com/amundsen-io/amundsen", + "index": 280, + "category": "nlp", + "githuburl": "https://github.com/maartengr/bertopic", "featured": null, "links": null, "description": null, - "_repopath": "amundsen-io/amundsen", - "_reponame": "amundsen", - "_stars": 3680, - "_forks": 891, - "_watches": 245, + "_repopath": "maartengr/bertopic", + "_reponame": "BERTopic", + "_stars": 3798, + "_forks": 487, + "_watches": 45, + "_language": "Python", + "_homepage": "https://maartengr.github.io/BERTopic/", + "_description": "BERTopic: Leveraging BERT and c-TF-IDF to create easily interpretable topics. ", + "_organization": "maartengr", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-09-22T00:00:00.000Z", + "_age_weeks": 126, + "_stars_per_week": 30.11, "_topics": [ - "amundsen", - "metadata", - "data-catalog", - "data-discovery", - "linuxfoundation" + "bert", + "transformers", + "topic-modeling", + "sentence-embeddings", + "nlp", + "machine-learning", + "topic", + "ldavis", + "topic-modelling", + "topic-models" ], - "_language": "Python", - "_homepage": "https://www.amundsen.io/amundsen/", - "_description": "Amundsen is a metadata driven application for improving the productivity of data analysts, data scientists and engineers when interacting with data.", - "_organization": "amundsen-io", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2019-05-14T00:00:00.000Z", - "_age_weeks": 187, - "_stars_per_week": 19.59, - "_pop_contributor_count": 215, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 19, + "_pop_contributor_logins": [ + "FelSiq@icmc,universityofs\u00e3opaulo", + "MaartenGr@iknl", + "anubhabdaserrr@textifyai(t3xtifyai)", + "domenicrosati@scitedotai", + "dwhdai@ada", + "leloykun@expedock", + "nreimers@huggingface", + "proselotis@mustanganalytics", + "rafaelvalero", + "xwwwwww@tsinghuauniversity" + ], + "_pop_contributor_orgs_len": 9, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "databricksamundsen-ioapache", - "lyft" + "ada", + "expedock", + "huggingface", + "icmc,universityofs\u00e3opaulo", + "iknl", + "mustanganalytics", + "scitedotai", + "textifyai(t3xtifyai)", + "tsinghuauniversity" + ], + "_pop_contributor_orgs_raw": [ + "@scitedotai ", + "Ada", + "Expedock", + "Huggingface", + "ICMC, University of S\u00e3o Paulo", + "IKNL", + "Mustang Analytics", + "Textify AI (@T3xtifyai)", + "Tsinghua University" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.73, - "_pop_updated_issues_count": 270, - "_pop_closed_issues_count": 253, - "_pop_created_since_days": 44, + "_pop_commit_frequency": 0.56, + "_pop_updated_issues_count": 239, + "_pop_closed_issues_count": 149, + "_pop_created_since_days": 29, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 48, - "_pop_recent_releases_estimated_tags": 33, - "_pop_recent_releases_adjusted_count": 48, - "_pop_issue_count": 270.0, - "_pop_comment_count": 147.0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 239.0, + "_pop_comment_count": 606.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 16, - "_pop_score": 52.6, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 0, + "_pop_score": 44.43, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/amundsen-io/amundsen/master/README.md", - "_readme_localurl": "amundsen-io~amundsen~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/maartengr/bertopic/master/README.md", + "_readme_localurl": "maartengr~bertopic~README.md", "_requirements_filenames": [ - "requirements.txt" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/amundsen-io/amundsen/master/requirements.txt" + "https://raw.githubusercontent.com/maartengr/bertopic/master/setup.py" ], "_requirements_localurls": [ - "amundsen-io~amundsen~requirements.txt" + "maartengr~bertopic~setup.py" ] }, { @@ -20788,9 +28693,17 @@ "description": null, "_repopath": "project-monai/monai", "_reponame": "MONAI", - "_stars": 3663, - "_forks": 698, - "_watches": 89, + "_stars": 3790, + "_forks": 728, + "_watches": 88, + "_language": "Python", + "_homepage": "https://monai.io/", + "_description": "MONAI: AI Toolkit for Healthcare Imaging", + "_organization": "project-monai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-10-11T00:00:00.000Z", + "_age_weeks": 175, + "_stars_per_week": 21.57, "_topics": [ "healthcare-imaging", "deep-learning", @@ -20800,37 +28713,49 @@ "python3", "monai" ], - "_language": "Python", - "_homepage": "https://monai.io/", - "_description": "MONAI: AI Toolkit for Healthcare Imaging", - "_organization": "project-monai", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2019-10-11T00:00:00.000Z", - "_age_weeks": 166, - "_stars_per_week": 22.01, - "_pop_contributor_count": 131, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 138, + "_pop_contributor_logins": [ + "Can-Zhao@nvidia", + "KumoLiu@nvidia", + "Nic-Ma@nvidia", + "drbeh@nvidia", + "ericspod@king'scollegelondon", + "hjmjohnson@theuniversityofiowa", + "myron@nvidia", + "rijobro@king'scollegelondon", + "wyli@nvidia", + "yiheng-wang-nv" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "king'scollegelondon", - "nvidia" + "nvidia", + "theuniversityofiowa" + ], + "_pop_contributor_orgs_raw": [ + "@NVIDIA", + "King's College London", + "NVIDIA", + "Nvidia", + "The University of Iowa" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 14.46, - "_pop_updated_issues_count": 573, - "_pop_closed_issues_count": 466, - "_pop_created_since_days": 39, + "_pop_commit_frequency": 14.27, + "_pop_updated_issues_count": 477, + "_pop_closed_issues_count": 367, + "_pop_created_since_days": 41, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 22, + "_pop_recent_releases_estimated_tags": 21, "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 572.0, - "_pop_comment_count": 1388.0, + "_pop_issue_count": 478.0, + "_pop_comment_count": 911.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.4, - "_pop_dependents_count": 151, - "_pop_score": 58.62, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 50.3, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/project-monai/monai/master/README.md", "_readme_localurl": "project-monai~monai~README.md", @@ -20851,74 +28776,238 @@ ] }, { - "index": 91, - "category": "ml", - "githuburl": "https://github.com/uber/causalml", + "index": 357, + "category": "data", + "githuburl": "https://github.com/amundsen-io/amundsen", "featured": null, "links": null, "description": null, - "_repopath": "uber/causalml", - "_reponame": "causalml", - "_stars": 3644, - "_forks": 579, - "_watches": 76, + "_repopath": "amundsen-io/amundsen", + "_reponame": "amundsen", + "_stars": 3780, + "_forks": 907, + "_watches": 246, + "_language": "Python", + "_homepage": "https://www.amundsen.io/amundsen/", + "_description": "Amundsen is a metadata driven application for improving the productivity of data analysts, data scientists and engineers when interacting with data.", + "_organization": "amundsen-io", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2019-05-14T00:00:00.000Z", + "_age_weeks": 197, + "_stars_per_week": 19.17, "_topics": [ - "incubation", - "machine-learning", - "causal-inference", - "uplift-modeling" + "amundsen", + "metadata", + "data-catalog", + "data-discovery", + "linuxfoundation" ], - "_language": "Python", - "_homepage": "", - "_description": "causalml: Uplift modeling and causal inference with machine learning algorithms", - "_organization": "uber", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", - "_created_at": "2019-07-09T00:00:00.000Z", - "_age_weeks": 179, - "_stars_per_week": 20.26, - "_pop_contributor_count": 48, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 217, + "_pop_contributor_logins": [ + "Golodhros@lyft", + "allisonsuarez", + "dependabot-preview[bot]", + "dorianj", + "feng-tao@databricksamundsen-ioapache", + "jinhyukchang@lyft", + "jornh", + "mgorsk1", + "ttannis@lyft", + "verdan" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "spotify", - "toyotaresearchinstitute", - "uber" + "databricksamundsen-ioapache", + "lyft" + ], + "_pop_contributor_orgs_raw": [ + "@databricks @amundsen-io @apache ", + "@lyft", + "Lyft" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.48, - "_pop_updated_issues_count": 45, - "_pop_closed_issues_count": 19, - "_pop_created_since_days": 42, + "_pop_commit_frequency": 3.31, + "_pop_updated_issues_count": 282, + "_pop_closed_issues_count": 265, + "_pop_created_since_days": 46, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 45.0, - "_pop_comment_count": 45.0, + "_pop_recent_releases_count": 39, + "_pop_recent_releases_estimated_tags": 32, + "_pop_recent_releases_adjusted_count": 39, + "_pop_issue_count": 283.0, + "_pop_comment_count": 162.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 19, - "_pop_score": 44.55, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 47.83, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/uber/causalml/master/README.md", - "_readme_localurl": "uber~causalml~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/amundsen-io/amundsen/master/README.md", + "_readme_localurl": "amundsen-io~amundsen~README.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/amundsen-io/amundsen/master/requirements.txt" + ], + "_requirements_localurls": [ + "amundsen-io~amundsen~requirements.txt" + ] + }, + { + "index": 855, + "category": "profiling", + "githuburl": "https://github.com/pythonprofilers/memory_profiler", + "featured": null, + "links": null, + "description": null, + "_repopath": "pythonprofilers/memory_profiler", + "_reponame": "memory_profiler", + "_stars": 3768, + "_forks": 366, + "_watches": 76, + "_language": "Python", + "_homepage": "http://pypi.python.org/pypi/memory_profiler", + "_description": "memory_profiler: Monitor Memory usage of Python code", + "_organization": "pythonprofilers", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2011-10-14T00:00:00.000Z", + "_age_weeks": 592, + "_stars_per_week": 6.36, + "_topics": [], + "_last_commit_date": "2022-12-06T00:00:00.000Z", + "_pop_contributor_count": 101, + "_pop_contributor_logins": [ + "Afoucaul@cardiologs", + "altendky", + "astrojuanlu@kedro-org", + "bbengfort@rotationalio", + "cclauss@christianclauss", + "d-ryzhikov", + "demiurg906@jetbrains", + "fabianp@google", + "mgbckr@universityofrostock", + "pgervais" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "cardiologs", + "christianclauss", + "google", + "jetbrains", + "kedro-org", + "rotationalio", + "universityofrostock" + ], + "_pop_contributor_orgs_raw": [ + "@JetBrains", + "@google", + "@kedro-org", + "@rotationalio ", + "Cardiologs", + "Christian Clauss", + "University of Rostock" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.63, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 138, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 7.0, + "_pop_comment_count": 12.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 41.81, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pythonprofilers/memory_profiler/master/README.rst", + "_readme_localurl": "pythonprofilers~memory_profiler~README.rst", "_requirements_filenames": [ - "requirements.txt", "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/uber/causalml/master/requirements.txt", - "https://raw.githubusercontent.com/uber/causalml/master/setup.py", - "https://raw.githubusercontent.com/uber/causalml/master/pyproject.toml" + "https://raw.githubusercontent.com/pythonprofilers/memory_profiler/master/setup.py", + "https://raw.githubusercontent.com/pythonprofilers/memory_profiler/master/pyproject.toml" ], "_requirements_localurls": [ - "uber~causalml~requirements.txt", - "uber~causalml~setup.py", - "uber~causalml~pyproject.toml" + "pythonprofilers~memory_profiler~setup.py", + "pythonprofilers~memory_profiler~pyproject.toml" ] }, + { + "index": 778, + "category": "study", + "githuburl": "https://github.com/nielsrogge/transformers-tutorials", + "featured": null, + "links": null, + "description": null, + "_repopath": "nielsrogge/transformers-tutorials", + "_reponame": "Transformers-Tutorials", + "_stars": 3760, + "_forks": 589, + "_watches": 84, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "Transformers-Tutorials: This repository contains demos I made with the Transformers library by HuggingFace.", + "_organization": "nielsrogge", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-08-31T00:00:00.000Z", + "_age_weeks": 129, + "_stars_per_week": 29.08, + "_topics": [ + "transformers", + "pytorch", + "bert", + "vision-transformer", + "layoutlm", + "gpt-2" + ], + "_last_commit_date": "2023-02-09T00:00:00.000Z", + "_pop_contributor_count": 5, + "_pop_contributor_logins": [ + "FrancescoSaverioZuppichini@roboflow", + "NielsRogge@huggingface", + "grahamannett" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "huggingface", + "roboflow" + ], + "_pop_contributor_orgs_raw": [ + "HuggingFace", + "roboflow" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.71, + "_pop_updated_issues_count": 57, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 30, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 58.0, + "_pop_comment_count": 94.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 29.57, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nielsrogge/transformers-tutorials/master/README.md", + "_readme_localurl": "nielsrogge~transformers-tutorials~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 354, "category": "ml-interpretability", @@ -20928,9 +29017,17 @@ "description": null, "_repopath": "pytorch/captum", "_reponame": "captum", - "_stars": 3635, - "_forks": 390, + "_stars": 3751, + "_forks": 402, "_watches": 213, + "_language": "Python", + "_homepage": "https://captum.ai", + "_description": "captum: Model interpretability and understanding for PyTorch", + "_organization": "pytorch", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-08-27T00:00:00.000Z", + "_age_weeks": 182, + "_stars_per_week": 20.59, "_topics": [ "interpretability", "interpretable-ai", @@ -20938,37 +29035,48 @@ "feature-importance", "feature-attribution" ], - "_language": "Python", - "_homepage": "https://captum.ai", - "_description": "captum: Model interpretability and understanding for PyTorch", - "_organization": "pytorch", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2019-08-27T00:00:00.000Z", - "_age_weeks": 172, - "_stars_per_week": 21.03, - "_pop_contributor_count": 95, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-03T00:00:00.000Z", + "_pop_contributor_count": 98, + "_pop_contributor_logins": [ + "99warriors", + "J0Nreynolds", + "NarineK", + "ProGamerGov", + "aobo-y@facebook", + "bilalsal@viennauniversityoftechnology", + "edward-io", + "miguelmartin75@meta", + "orionr@facebook", + "vivekmig" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "facebook", - "meta" + "meta", + "viennauniversityoftechnology" + ], + "_pop_contributor_orgs_raw": [ + "@facebook", + "@facebook ", + "Meta", + "Vienna University of Technology" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.1, - "_pop_updated_issues_count": 87, - "_pop_closed_issues_count": 45, - "_pop_created_since_days": 40, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 1, + "_pop_commit_frequency": 2.0, + "_pop_updated_issues_count": 57, + "_pop_closed_issues_count": 33, + "_pop_created_since_days": 42, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 87.0, - "_pop_comment_count": 170.0, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 57.0, + "_pop_comment_count": 155.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 444, - "_pop_score": 51.61, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 0, + "_pop_score": 41.64, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pytorch/captum/master/README.md", "_readme_localurl": "pytorch~captum~README.md", @@ -20986,69 +29094,104 @@ ] }, { - "index": 762, - "category": "sim", - "githuburl": "https://github.com/quantumlib/cirq", + "index": 793, + "category": "ml-ops", + "githuburl": "https://github.com/orchest/orchest", "featured": null, "links": null, "description": null, - "_repopath": "quantumlib/cirq", - "_reponame": "Cirq", - "_stars": 3617, - "_forks": 815, - "_watches": 175, + "_repopath": "orchest/orchest", + "_reponame": "orchest", + "_stars": 3731, + "_forks": 221, + "_watches": 39, + "_language": "Python", + "_homepage": "https://orchest.io", + "_description": "orchest: Build data pipelines, the easy way \ud83d\udee0\ufe0f", + "_organization": "orchest", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-05-21T00:00:00.000Z", + "_age_weeks": 143, + "_stars_per_week": 25.94, "_topics": [ - "quantum-circuits", - "nisq", - "quantum-algorithms", - "quantum-computing", - "cirq" + "data-science", + "machine-learning", + "pipelines", + "ide", + "jupyter", + "cloud", + "self-hosted", + "jupyterlab", + "notebooks", + "docker", + "python", + "data-pipelines", + "orchest", + "deployment", + "kubernetes", + "airflow", + "dag", + "etl", + "etl-pipeline" ], - "_language": "Python", - "_homepage": "", - "_description": "Cirq: A python framework for creating, editing, and invoking Noisy Intermediate Scale Quantum (NISQ) circuits.", - "_organization": "quantumlib", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2017-12-14T00:00:00.000Z", - "_age_weeks": 261, - "_stars_per_week": 13.83, - "_pop_contributor_count": 179, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-01-20T00:00:00.000Z", + "_pop_contributor_count": 31, + "_pop_contributor_logins": [ + "astrojuanlu@kedro-org", + "dependabot[bot]", + "fruttasecca@orchest", + "iannbing@orchest.io", + "joe-bell@bigattic", + "mausworks@orchest", + "ncspost", + "nhaghighat@orchestmangrovesdb", + "ricklamers@orchest", + "yannickperrenet@orchest" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "dukeuniversity", - "google" + "bigattic", + "kedro-org", + "orchest", + "orchest.io", + "orchestmangrovesdb" + ], + "_pop_contributor_orgs_raw": [ + "@Orchest", + "@bigattic", + "@kedro-org", + "@orchest", + "@orchest ", + "@orchest @mangrovesdb", + "Orchest.io" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 15.63, - "_pop_updated_issues_count": 119, - "_pop_closed_issues_count": 76, - "_pop_created_since_days": 61, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 119.0, - "_pop_comment_count": 178.0, + "_pop_commit_frequency": 75.04, + "_pop_updated_issues_count": 82, + "_pop_closed_issues_count": 65, + "_pop_created_since_days": 34, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 96, + "_pop_recent_releases_estimated_tags": 72, + "_pop_recent_releases_adjusted_count": 96, + "_pop_issue_count": 82.0, + "_pop_comment_count": 79.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 1234, - "_pop_score": 60.48, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/quantumlib/cirq/master/README.rst", - "_readme_localurl": "quantumlib~cirq~README.rst", + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 47.53, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/orchest/orchest/master/README.md", + "_readme_localurl": "orchest~orchest~README.md", "_requirements_filenames": [ - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/quantumlib/cirq/master/setup.py", - "https://raw.githubusercontent.com/quantumlib/cirq/master/pyproject.toml" + "https://raw.githubusercontent.com/orchest/orchest/master/pyproject.toml" ], "_requirements_localurls": [ - "quantumlib~cirq~setup.py", - "quantumlib~cirq~pyproject.toml" + "orchest~orchest~pyproject.toml" ] }, { @@ -21060,9 +29203,17 @@ "description": null, "_repopath": "panda3d/panda3d", "_reponame": "panda3d", - "_stars": 3608, - "_forks": 730, - "_watches": 192, + "_stars": 3724, + "_forks": 754, + "_watches": 195, + "_language": "C++", + "_homepage": "https://www.panda3d.org/", + "_description": "panda3d: Powerful, mature open-source cross-platform game engine for Python and C++, developed by Disney and CMU", + "_organization": "panda3d", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2013-09-30T00:00:00.000Z", + "_age_weeks": 490, + "_stars_per_week": 7.6, "_topics": [ "game-engine", "open-source", @@ -21076,34 +29227,43 @@ "gamedev", "c-plus-plus" ], - "_language": "C++", - "_homepage": "https://www.panda3d.org/", - "_description": "panda3d: Powerful, mature open-source cross-platform game engine for Python and C++, developed by Disney and CMU", - "_organization": "panda3d", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2013-09-30T00:00:00.000Z", - "_age_weeks": 481, - "_stars_per_week": 7.5, - "_pop_contributor_count": 155, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 160, + "_pop_contributor_logins": [ + "CFSworks", + "Moguri", + "darrenr555", + "drwrose", + "gyedo", + "jyelon", + "nthparameter", + "rdb", + "shochet@codespark,homer", + "zpavlov" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "codespark,homer" + ], + "_pop_contributor_orgs_raw": [ + "codeSpark, Homer" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 8.71, - "_pop_updated_issues_count": 128, - "_pop_closed_issues_count": 83, - "_pop_created_since_days": 112, + "_pop_commit_frequency": 8.33, + "_pop_updated_issues_count": 157, + "_pop_closed_issues_count": 81, + "_pop_created_since_days": 114, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 128.0, - "_pop_comment_count": 194.0, + "_pop_issue_count": 157.0, + "_pop_comment_count": 217.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 523, - "_pop_score": 52.91, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 45.1, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/panda3d/panda3d/master/README.md", "_readme_localurl": "panda3d~panda3d~README.md", @@ -21112,144 +29272,86 @@ "_requirements_localurls": [] }, { - "index": 793, - "category": "ml-ops", - "githuburl": "https://github.com/orchest/orchest", + "index": 200, + "category": "ml", + "githuburl": "https://github.com/huggingface/accelerate", "featured": null, "links": null, "description": null, - "_repopath": "orchest/orchest", - "_reponame": "orchest", - "_stars": 3589, - "_forks": 212, - "_watches": 36, - "_topics": [ - "data-science", - "machine-learning", - "pipelines", - "ide", - "jupyter", - "cloud", - "self-hosted", - "jupyterlab", - "notebooks", - "docker", - "python", - "data-pipelines", - "orchest", - "deployment", - "kubernetes", - "airflow", - "dag", - "etl", - "etl-pipeline" + "_repopath": "huggingface/accelerate", + "_reponame": "accelerate", + "_stars": 3705, + "_forks": 335, + "_watches": 69, + "_language": "Python", + "_homepage": "https://huggingface.co/docs/accelerate", + "_description": "accelerate: \ud83d\ude80 A simple way to train and use PyTorch models with multi-GPU, TPU, mixed-precision", + "_organization": "huggingface", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-10-30T00:00:00.000Z", + "_age_weeks": 120, + "_stars_per_week": 30.69, + "_topics": [], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 92, + "_pop_contributor_logins": [ + "Chris-hughes10@microsoft", + "muellerzr@huggingface", + "pacman100@huggingface", + "patrickvonplaten", + "philschmid@huggingface", + "ryanrussell", + "sgugger", + "sywangyi@intel", + "thomwolf@huggingface", + "younesbelkada@ensparissaclay" ], - "_language": "TypeScript", - "_homepage": "https://orchest.io", - "_description": "orchest: Build data pipelines, the easy way \ud83d\udee0\ufe0f", - "_organization": "orchest", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2020-05-21T00:00:00.000Z", - "_age_weeks": 134, - "_stars_per_week": 26.67, - "_pop_contributor_count": 31, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "orchest", - "orchest.io" + "ensparissaclay", + "huggingface", + "intel", + "microsoft" + ], + "_pop_contributor_orgs_raw": [ + "@HuggingFace", + "@huggingface", + "@huggingface ", + "ENS Paris Saclay", + "Hugging Face", + "Intel", + "Microsoft" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 82.5, - "_pop_updated_issues_count": 254, - "_pop_closed_issues_count": 225, - "_pop_created_since_days": 31, + "_pop_commit_frequency": 8.81, + "_pop_updated_issues_count": 269, + "_pop_closed_issues_count": 219, + "_pop_created_since_days": 28, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 99, - "_pop_recent_releases_estimated_tags": 75, - "_pop_recent_releases_adjusted_count": 99, - "_pop_issue_count": 254.0, - "_pop_comment_count": 203.0, + "_pop_recent_releases_count": 16, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 16, + "_pop_issue_count": 269.0, + "_pop_comment_count": 718.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 757, - "_pop_score": 58.84, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 0, + "_pop_score": 50.77, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/orchest/orchest/master/README.md", - "_readme_localurl": "orchest~orchest~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/huggingface/accelerate/master/README.md", + "_readme_localurl": "huggingface~accelerate~README.md", "_requirements_filenames": [ + "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/orchest/orchest/master/pyproject.toml" - ], - "_requirements_localurls": [ - "orchest~orchest~pyproject.toml" - ] - }, - { - "index": 423, - "category": "util", - "githuburl": "https://github.com/tebelorg/rpa-python", - "featured": null, - "links": null, - "description": null, - "_repopath": "tebelorg/rpa-python", - "_reponame": "RPA-Python", - "_stars": 3566, - "_forks": 523, - "_watches": 99, - "_topics": [ - "rpa", - "python", - "opencv", - "tesseract", - "tagui", - "sikuli", - "cross-platform" - ], - "_language": "Python", - "_homepage": "", - "_description": "RPA-Python: Python package for doing RPA", - "_organization": "tebelorg", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-09-07T00:00:00.000Z", - "_created_at": "2019-03-30T00:00:00.000Z", - "_age_weeks": 194, - "_stars_per_week": 18.35, - "_pop_contributor_count": 3, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "universityofappliedtrialanderror" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.17, - "_pop_updated_issues_count": 25, - "_pop_closed_issues_count": 13, - "_pop_created_since_days": 45, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 13, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 25.0, - "_pop_comment_count": 38.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 8, - "_pop_score": 28.92, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/tebelorg/rpa-python/master/README.md", - "_readme_localurl": "tebelorg~rpa-python~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/tebelorg/rpa-python/master/setup.py" + "https://raw.githubusercontent.com/huggingface/accelerate/master/setup.py", + "https://raw.githubusercontent.com/huggingface/accelerate/master/pyproject.toml" ], "_requirements_localurls": [ - "tebelorg~rpa-python~setup.py" + "huggingface~accelerate~setup.py", + "huggingface~accelerate~pyproject.toml" ] }, { @@ -21261,42 +29363,61 @@ "description": null, "_repopath": "pywebio/pywebio", "_reponame": "PyWebIO", - "_stars": 3563, - "_forks": 319, - "_watches": 45, - "_topics": [ - "pywebio" - ], + "_stars": 3694, + "_forks": 331, + "_watches": 52, "_language": "Python", "_homepage": "https://pywebio.readthedocs.io", "_description": "PyWebIO: Write interactive web app in script way.", "_organization": "pywebio", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-26T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2020-02-29T00:00:00.000Z", - "_age_weeks": 146, - "_stars_per_week": 24.36, - "_pop_contributor_count": 15, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 155, + "_stars_per_week": 23.74, + "_topics": [ + "pywebio" + ], + "_last_commit_date": "2023-02-06T00:00:00.000Z", + "_pop_contributor_count": 17, + "_pop_contributor_logins": [ + "Priler@howdy-ho", + "brumar@evidenceb", + "cclauss@christianclauss", + "dependabot[bot]", + "dmesquita", + "donno2048", + "mawoka-myblock", + "muxueqz", + "pikhosh", + "wang0618" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "christianclauss" + "christianclauss", + "evidenceb", + "howdy-ho" + ], + "_pop_contributor_orgs_raw": [ + "@Howdy-Ho ", + "Christian Clauss", + "EvidenceB" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.71, - "_pop_updated_issues_count": 27, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 34, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 1.67, + "_pop_updated_issues_count": 33, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 36, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 10, - "_pop_issue_count": 27.0, - "_pop_comment_count": 21.0, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 33.0, + "_pop_comment_count": 40.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 6, - "_pop_score": 33.3, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 36.92, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pywebio/pywebio/master/README.md", "_readme_localurl": "pywebio~pywebio~README.md", @@ -21314,132 +29435,250 @@ ] }, { - "index": 309, - "category": "crypto", - "githuburl": "https://github.com/crytic/slither", + "index": 762, + "category": "sim", + "githuburl": "https://github.com/quantumlib/cirq", "featured": null, "links": null, "description": null, - "_repopath": "crytic/slither", - "_reponame": "slither", - "_stars": 3530, - "_forks": 645, - "_watches": 61, + "_repopath": "quantumlib/cirq", + "_reponame": "Cirq", + "_stars": 3659, + "_forks": 828, + "_watches": 177, + "_language": "Python", + "_homepage": "", + "_description": "Cirq: A python framework for creating, editing, and invoking Noisy Intermediate Scale Quantum (NISQ) circuits.", + "_organization": "quantumlib", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-12-14T00:00:00.000Z", + "_age_weeks": 270, + "_stars_per_week": 13.51, "_topics": [ - "solidity", - "ethereum", - "static-analysis" + "quantum-circuits", + "nisq", + "quantum-algorithms", + "quantum-computing", + "cirq" + ], + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 184, + "_pop_contributor_logins": [ + "95-martin-orion", + "MichaelBroughton", + "Strilanc@google", + "balopat@dukeuniversity", + "dabacon", + "daxfohl", + "dstrain115@google", + "maffoo@google", + "tanujkhattar@google", + "viathor" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "dukeuniversity", + "google" + ], + "_pop_contributor_orgs_raw": [ + "Duke University", + "Google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 13.0, + "_pop_updated_issues_count": 92, + "_pop_closed_issues_count": 49, + "_pop_created_since_days": 63, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 92.0, + "_pop_comment_count": 102.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 46.69, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/quantumlib/cirq/master/README.rst", + "_readme_localurl": "quantumlib~cirq~README.rst", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/quantumlib/cirq/master/setup.py", + "https://raw.githubusercontent.com/quantumlib/cirq/master/pyproject.toml" ], + "_requirements_localurls": [ + "quantumlib~cirq~setup.py", + "quantumlib~cirq~pyproject.toml" + ] + }, + { + "index": 423, + "category": "util", + "githuburl": "https://github.com/tebelorg/rpa-python", + "featured": null, + "links": null, + "description": null, + "_repopath": "tebelorg/rpa-python", + "_reponame": "RPA-Python", + "_stars": 3653, + "_forks": 537, + "_watches": 99, "_language": "Python", - "_homepage": "https://blog.trailofbits.com/2018/10/19/slither-a-solidity-static-analysis-framework/", - "_description": "slither: Static Analyzer for Solidity", - "_organization": "crytic", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-28T00:00:00.000Z", - "_created_at": "2018-09-05T00:00:00.000Z", - "_age_weeks": 223, - "_stars_per_week": 15.78, - "_pop_contributor_count": 96, + "_homepage": "", + "_description": "RPA-Python: Python package for doing RPA", + "_organization": "tebelorg", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-03-30T00:00:00.000Z", + "_age_weeks": 203, + "_stars_per_week": 17.94, + "_topics": [ + "rpa", + "python", + "opencv", + "tesseract", + "tagui", + "sikuli", + "cross-platform" + ], + "_last_commit_date": "2022-09-07T00:00:00.000Z", + "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "fi-do@universityofappliedtrialanderror", + "kensoh", + "pradishb" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "trailofbits" + "universityofappliedtrialanderror" + ], + "_pop_contributor_orgs_raw": [ + "University of applied trial and error" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.79, - "_pop_updated_issues_count": 193, - "_pop_closed_issues_count": 90, - "_pop_created_since_days": 52, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 1.1, + "_pop_updated_issues_count": 22, + "_pop_closed_issues_count": 18, + "_pop_created_since_days": 47, + "_pop_updated_since_days": 6, "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_estimated_tags": 13, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 193.0, - "_pop_comment_count": 305.0, + "_pop_issue_count": 22.0, + "_pop_comment_count": 42.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 369, - "_pop_score": 51.46, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 24.41, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/crytic/slither/master/README.md", - "_readme_localurl": "crytic~slither~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/tebelorg/rpa-python/master/README.md", + "_readme_localurl": "tebelorg~rpa-python~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/crytic/slither/master/setup.py", - "https://raw.githubusercontent.com/crytic/slither/master/pyproject.toml" + "https://raw.githubusercontent.com/tebelorg/rpa-python/master/setup.py" ], "_requirements_localurls": [ - "crytic~slither~setup.py", - "crytic~slither~pyproject.toml" + "tebelorg~rpa-python~setup.py" ] }, { - "index": 616, - "category": "testing", - "githuburl": "https://github.com/spulec/freezegun", + "index": 757, + "category": "util", + "githuburl": "https://github.com/pypa/hatch", "featured": null, "links": null, "description": null, - "_repopath": "spulec/freezegun", - "_reponame": "freezegun", - "_stars": 3510, - "_forks": 243, - "_watches": 34, - "_topics": [], + "_repopath": "pypa/hatch", + "_reponame": "hatch", + "_stars": 3653, + "_forks": 179, + "_watches": 46, "_language": "Python", - "_homepage": null, - "_description": "freezegun: Let your Python tests travel through time", - "_organization": "spulec", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-08-12T00:00:00.000Z", - "_created_at": "2012-12-11T00:00:00.000Z", - "_age_weeks": 522, - "_stars_per_week": 6.71, - "_pop_contributor_count": 106, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://hatch.pypa.io/latest/", + "_description": "hatch: Modern, extensible Python project management", + "_organization": "pypa", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-05-31T00:00:00.000Z", + "_age_weeks": 299, + "_stars_per_week": 12.22, + "_topics": [ + "python", + "cli", + "virtualenv", + "packaging", + "versioning", + "build", + "plugin" + ], + "_last_commit_date": "2023-02-09T00:00:00.000Z", + "_pop_contributor_count": 26, + "_pop_contributor_logins": [ + "RobertRosca@europeanxfel", + "blink1073@mongodb", + "cclauss@christianclauss", + "dependabot[bot]", + "ischaojie@douban", + "maresb@m\u00b2hycongmbh", + "matthewfeickert@universityofwisconsin-madison", + "musicinmybrain", + "ofek@datadog", + "olgarithms@bloomberg" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "dryft-technologies", - "nordsoftware", - "pioneervalleybooks", - "policystat", - "yipitdata" + "bloomberg", + "christianclauss", + "datadog", + "douban", + "europeanxfel", + "mongodb", + "m\u00b2hycongmbh", + "universityofwisconsin-madison" + ], + "_pop_contributor_orgs_raw": [ + "@datadog", + "Bloomberg", + "Christian Clauss", + "Douban", + "European XFEL", + "MongoDB", + "University of Wisconsin-Madison", + "m\u00b2hycon GmbH" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.33, - "_pop_updated_issues_count": 22, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 122, - "_pop_updated_since_days": 4, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 22.0, - "_pop_comment_count": 15.0, + "_pop_commit_frequency": 9.12, + "_pop_updated_issues_count": 144, + "_pop_closed_issues_count": 83, + "_pop_created_since_days": 70, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 56, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 56, + "_pop_issue_count": 144.0, + "_pop_comment_count": 338.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 692, - "_pop_score": 49.82, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/spulec/freezegun/master/README.rst", - "_readme_localurl": "spulec~freezegun~README.rst", + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 51.73, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pypa/hatch/master/README.md", + "_readme_localurl": "pypa~hatch~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/spulec/freezegun/master/requirements.txt", - "https://raw.githubusercontent.com/spulec/freezegun/master/setup.py", - "https://raw.githubusercontent.com/spulec/freezegun/master/pyproject.toml" + "https://raw.githubusercontent.com/pypa/hatch/master/pyproject.toml" ], "_requirements_localurls": [ - "spulec~freezegun~requirements.txt", - "spulec~freezegun~setup.py", - "spulec~freezegun~pyproject.toml" + "pypa~hatch~pyproject.toml" ] }, { @@ -21451,44 +29690,64 @@ "description": null, "_repopath": "gristlabs/grist-core", "_reponame": "grist-core", - "_stars": 3501, - "_forks": 164, - "_watches": 40, - "_topics": [ - "awesome", - "database", - "spreadsheet" - ], + "_stars": 3651, + "_forks": 169, + "_watches": 41, "_language": "TypeScript", "_homepage": "https://support.getgrist.com/self-managed/", "_description": "grist-core: Grist is the evolution of spreadsheets.", "_organization": "gristlabs", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2020-05-22T00:00:00.000Z", - "_age_weeks": 134, - "_stars_per_week": 26.04, - "_pop_contributor_count": 20, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 143, + "_stars_per_week": 25.4, + "_topics": [ + "awesome", + "database", + "spreadsheet" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 38, + "_pop_contributor_logins": [ + "CamilleLegeron", + "LouisDelbosc", + "alexmojaki", + "arnaudpeich@didask", + "berhalak", + "cpind", + "dsagal", + "georgegevoian@gristlabs", + "paulfitz@gristlabs", + "yohanboniface@enix" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "didask", + "enix", "gristlabs" ], + "_pop_contributor_orgs_raw": [ + "@Didask", + "@gristlabs ", + "Enix", + "Grist Labs" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 10.13, - "_pop_updated_issues_count": 117, - "_pop_closed_issues_count": 58, - "_pop_created_since_days": 31, + "_pop_commit_frequency": 12.08, + "_pop_updated_issues_count": 98, + "_pop_closed_issues_count": 45, + "_pop_created_since_days": 34, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 8, + "_pop_recent_releases_count": 10, "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 117.0, - "_pop_comment_count": 253.0, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 98.0, + "_pop_comment_count": 214.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 2.2, - "_pop_dependents_count": 11, - "_pop_score": 43.84, + "_pop_dependents_count": 0, + "_pop_score": 45.06, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/gristlabs/grist-core/master/README.md", "_readme_localurl": "gristlabs~grist-core~README.md", @@ -21505,47 +29764,72 @@ "description": null, "_repopath": "osgeo/gdal", "_reponame": "gdal", - "_stars": 3496, - "_forks": 1955, - "_watches": 169, + "_stars": 3607, + "_forks": 2008, + "_watches": 163, + "_language": "C++", + "_homepage": "https://gdal.org", + "_description": "GDAL is an open source MIT licensed translator library for raster and vector geospatial data formats.", + "_organization": "osgeo", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-10-09T00:00:00.000Z", + "_age_weeks": 541, + "_stars_per_week": 6.67, "_topics": [ "raster", "geospatial-data", "vector", "remote-sensing" ], - "_language": "C++", - "_homepage": "https://gdal.org", - "_description": "GDAL is an open source MIT licensed translator library for raster and vector geospatial data formats.", - "_organization": "osgeo", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2012-10-09T00:00:00.000Z", - "_age_weeks": 531, - "_stars_per_week": 6.57, - "_pop_contributor_count": 506, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 511, + "_pop_contributor_logins": [ + "etiennesky@bsc", + "hobu@hobu", + "landam@czechtechnicaluniversityinprague", + "mloskot@cadcorp", + "nyalldawson@northroad", + "rouault@spatialys", + "schwehr@google", + "strezen", + "szekerest", + "warmerdam" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "bsc", "cadcorp", + "czechtechnicaluniversityinprague", "google", + "hobu", + "northroad", "spatialys" ], + "_pop_contributor_orgs_raw": [ + "@Cadcorp", + "BSC", + "Czech Technical University in Prague", + "Google", + "Hobu, Inc.", + "North Road", + "Spatialys" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 47.69, - "_pop_updated_issues_count": 625, - "_pop_closed_issues_count": 575, - "_pop_created_since_days": 124, + "_pop_commit_frequency": 46.85, + "_pop_updated_issues_count": 566, + "_pop_closed_issues_count": 526, + "_pop_created_since_days": 126, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 9, "_pop_recent_releases_estimated_tags": 14, "_pop_recent_releases_adjusted_count": 9, - "_pop_issue_count": 625.0, - "_pop_comment_count": 665.0, + "_pop_issue_count": 565.0, + "_pop_comment_count": 707.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 6036, - "_pop_score": 74.09, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 62.14, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/osgeo/gdal/master/README.md", "_readme_localurl": "osgeo~gdal~README.md", @@ -21554,74 +29838,92 @@ "_requirements_localurls": [] }, { - "index": 280, - "category": "nlp", - "githuburl": "https://github.com/maartengr/bertopic", + "index": 616, + "category": "testing", + "githuburl": "https://github.com/spulec/freezegun", "featured": null, "links": null, "description": null, - "_repopath": "maartengr/bertopic", - "_reponame": "BERTopic", - "_stars": 3488, - "_forks": 455, - "_watches": 45, - "_topics": [ - "bert", - "transformers", - "topic-modeling", - "sentence-embeddings", - "nlp", - "machine-learning", - "topic", - "ldavis", - "topic-modelling", - "topic-models" - ], + "_repopath": "spulec/freezegun", + "_reponame": "freezegun", + "_stars": 3581, + "_forks": 245, + "_watches": 32, "_language": "Python", - "_homepage": "https://maartengr.github.io/BERTopic/", - "_description": "BERTopic: Leveraging BERT and c-TF-IDF to create easily interpretable topics. ", - "_organization": "maartengr", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2020-09-22T00:00:00.000Z", - "_age_weeks": 116, - "_stars_per_week": 29.85, - "_pop_contributor_count": 15, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_homepage": null, + "_description": "freezegun: Let your Python tests travel through time", + "_organization": "spulec", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-12-11T00:00:00.000Z", + "_age_weeks": 532, + "_stars_per_week": 6.73, + "_topics": [], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 109, + "_pop_contributor_logins": [ + "CrazyPython", + "boxed@dryft-technologies", + "hugovk@nordsoftware", + "jdufresne@pioneervalleybooks", + "kylegibson", + "micromoses", + "ojii@henngek.k.", + "pganssle@google", + "rinslow@dapulse", + "spulec@yipitdata" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "ada", - "expedock", - "iknl", - "mustanganalytics", - "scitedotai" + "dapulse", + "dryft-technologies", + "google", + "henngek.k.", + "nordsoftware", + "pioneervalleybooks", + "yipitdata" + ], + "_pop_contributor_orgs_raw": [ + "@DaPulse ", + "@Dryft-Technologies ", + "@Google", + "HENNGE K.K.", + "Nord Software", + "Pioneer Valley Books", + "YipitData" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.44, - "_pop_updated_issues_count": 221, - "_pop_closed_issues_count": 136, - "_pop_created_since_days": 27, + "_pop_commit_frequency": 0.56, + "_pop_updated_issues_count": 26, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 124, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 11, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 221.0, - "_pop_comment_count": 544.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 26.0, + "_pop_comment_count": 18.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, + "_pop_comment_frequency": 0.7, "_pop_dependents_count": 0, - "_pop_score": 40.16, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/maartengr/bertopic/master/README.md", - "_readme_localurl": "maartengr~bertopic~README.md", + "_pop_score": 45.15, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/spulec/freezegun/master/README.rst", + "_readme_localurl": "spulec~freezegun~README.rst", "_requirements_filenames": [ - "setup.py" - ], + "requirements.txt", + "setup.py", + "pyproject.toml" + ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/maartengr/bertopic/master/setup.py" + "https://raw.githubusercontent.com/spulec/freezegun/master/requirements.txt", + "https://raw.githubusercontent.com/spulec/freezegun/master/setup.py", + "https://raw.githubusercontent.com/spulec/freezegun/master/pyproject.toml" ], "_requirements_localurls": [ - "maartengr~bertopic~setup.py" + "spulec~freezegun~requirements.txt", + "spulec~freezegun~setup.py", + "spulec~freezegun~pyproject.toml" ] }, { @@ -21633,41 +29935,59 @@ "description": null, "_repopath": "geopandas/geopandas", "_reponame": "geopandas", - "_stars": 3462, - "_forks": 774, - "_watches": 107, - "_topics": [], + "_stars": 3554, + "_forks": 790, + "_watches": 106, "_language": "Python", "_homepage": "http://geopandas.org/", "_description": "geopandas: Python tools for geographic data", "_organization": "geopandas", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-10T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2013-06-27T00:00:00.000Z", - "_age_weeks": 494, - "_stars_per_week": 7.0, - "_pop_contributor_count": 183, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 503, + "_stars_per_week": 7.05, + "_topics": [], + "_last_commit_date": "2023-02-11T00:00:00.000Z", + "_pop_contributor_count": 189, + "_pop_contributor_logins": [ + "IamJeffG@conservationmetrics", + "adriangb", + "jdmcbr", + "jorisvandenbossche", + "jtratner", + "jwass", + "kjordahl@planetlabs", + "m-richards", + "martinfleis", + "snowman2@corteva" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "planetlabs", - "udl-ai" + "conservationmetrics", + "corteva", + "planetlabs" + ], + "_pop_contributor_orgs_raw": [ + "@ConservationMetrics ", + "@corteva ", + "Planet Labs" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.08, - "_pop_updated_issues_count": 204, - "_pop_closed_issues_count": 93, - "_pop_created_since_days": 115, + "_pop_commit_frequency": 2.9, + "_pop_updated_issues_count": 219, + "_pop_closed_issues_count": 143, + "_pop_created_since_days": 118, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 5, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 204.0, - "_pop_comment_count": 443.0, + "_pop_issue_count": 219.0, + "_pop_comment_count": 344.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.2, - "_pop_dependents_count": 243, - "_pop_score": 58.66, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 49.75, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/geopandas/geopandas/master/README.md", "_readme_localurl": "geopandas~geopandas~README.md", @@ -21684,64 +30004,6 @@ "geopandas~geopandas~pyproject.toml" ] }, - { - "index": 778, - "category": "study", - "githuburl": "https://github.com/nielsrogge/transformers-tutorials", - "featured": null, - "links": null, - "description": null, - "_repopath": "nielsrogge/transformers-tutorials", - "_reponame": "Transformers-Tutorials", - "_stars": 3456, - "_forks": 516, - "_watches": 77, - "_topics": [ - "transformers", - "pytorch", - "bert", - "vision-transformer", - "layoutlm", - "gpt-2" - ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "Transformers-Tutorials: This repository contains demos I made with the Transformers library by HuggingFace.", - "_organization": "nielsrogge", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2020-08-31T00:00:00.000Z", - "_age_weeks": 120, - "_stars_per_week": 28.8, - "_pop_contributor_count": 4, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "huggingface", - "roboflow" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.33, - "_pop_updated_issues_count": 63, - "_pop_closed_issues_count": 25, - "_pop_created_since_days": 28, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 63.0, - "_pop_comment_count": 92.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 0, - "_pop_score": 29.16, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nielsrogge/transformers-tutorials/master/README.md", - "_readme_localurl": "nielsrogge~transformers-tutorials~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 782, "category": "diffusion", @@ -21751,9 +30013,17 @@ "description": null, "_repopath": "jina-ai/discoart", "_reponame": "discoart", - "_stars": 3428, - "_forks": 204, + "_stars": 3538, + "_forks": 217, "_watches": 33, + "_language": "Python", + "_homepage": "", + "_description": "discoart: \ud83e\udea9 Create Disco Diffusion artworks in one line", + "_organization": "jina-ai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-06-30T00:00:00.000Z", + "_age_weeks": 33, + "_stars_per_week": 104.5, "_topics": [ "creative-ai", "disco-diffusion", @@ -21771,37 +30041,41 @@ "latent-diffusion", "stable-diffusion" ], - "_language": "Python", - "_homepage": "", - "_description": "discoart: \ud83e\udea9 Create Disco Diffusion artworks in one line", - "_organization": "jina-ai", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-08-17T00:00:00.000Z", - "_created_at": "2022-06-30T00:00:00.000Z", - "_age_weeks": 24, - "_stars_per_week": 139.51, "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "Hugo-Dz", + "Nick17t@jinaai", + "hanxiao@jina-ai", + "jina-bot@jina-ai", + "nan-wang@jinaai", + "thegenerativegeneration" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "jina-ai", "jinaai" ], + "_pop_contributor_orgs_raw": [ + "@jina-ai", + "Jina AI" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 7.21, - "_pop_updated_issues_count": 14, + "_pop_updated_issues_count": 3, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 6, - "_pop_updated_since_days": 4, + "_pop_created_since_days": 8, + "_pop_updated_since_days": 6, "_pop_recent_releases_count": 110, - "_pop_recent_releases_estimated_tags": 241, + "_pop_recent_releases_estimated_tags": 181, "_pop_recent_releases_adjusted_count": 110, - "_pop_issue_count": 14.0, - "_pop_comment_count": 19.0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 8, - "_pop_score": 30.58, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 24.06, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jina-ai/discoart/master/README.md", "_readme_localurl": "jina-ai~discoart~README.md", @@ -21816,125 +30090,291 @@ ] }, { - "index": 754, - "category": "study", - "githuburl": "https://github.com/karpathy/micrograd", + "index": 866, + "category": "ml-ops", + "githuburl": "https://github.com/mage-ai/mage-ai", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "mage-ai/mage-ai", + "_reponame": "mage-ai", + "_stars": 3487, + "_forks": 270, + "_watches": 45, + "_language": "Python", + "_homepage": "https://www.mage.ai/", + "_description": "mage-ai: \ud83e\uddd9 The modern replacement for Airflow. Build, run, and manage data pipelines for integrating and transforming data.", + "_organization": "mage-ai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-05-16T00:00:00.000Z", + "_age_weeks": 40, + "_stars_per_week": 86.56, + "_topics": [ + "machine-learning", + "artificial-intelligence", + "data", + "data-engineering", + "data-science", + "python", + "elt", + "etl", + "pipelines", + "data-pipelines", + "orchestration", + "data-integration", + "sql", + "spark", + "dbt", + "pipeline", + "reverse-etl", + "transformation" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 22, + "_pop_contributor_logins": [ + "ci-mage", + "csharplus@airbnb", + "dy46", + "jlondonobo@humanlivingdata", + "johnson-mage", + "nathaniel-mage", + "shrey-mage", + "skunichetty", + "tommydangerous@mage", + "wangxiaoyou1993" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "airbnb", + "humanlivingdata", + "mage" + ], + "_pop_contributor_orgs_raw": [ + "Airbnb", + "Human Living Data", + "Mage" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 47.5, + "_pop_updated_issues_count": 585, + "_pop_closed_issues_count": 546, + "_pop_created_since_days": 9, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 585.0, + "_pop_comment_count": 160.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 0, + "_pop_score": 40.46, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/mage-ai/mage-ai/master/README.md", + "_readme_localurl": "mage-ai~mage-ai~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/mage-ai/mage-ai/master/requirements.txt", + "https://raw.githubusercontent.com/mage-ai/mage-ai/master/setup.py", + "https://raw.githubusercontent.com/mage-ai/mage-ai/master/pyproject.toml" + ], + "_requirements_localurls": [ + "mage-ai~mage-ai~requirements.txt", + "mage-ai~mage-ai~setup.py", + "mage-ai~mage-ai~pyproject.toml" + ] + }, + { + "index": 368, + "category": "nlp", + "githuburl": "https://github.com/layout-parser/layout-parser", "featured": null, "links": null, "description": null, - "_repopath": "karpathy/micrograd", - "_reponame": "micrograd", - "_stars": 3406, - "_forks": 309, - "_watches": 80, - "_topics": [], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "micrograd: A tiny scalar-valued autograd engine and a neural net library on top of it with PyTorch-like API", - "_organization": "karpathy", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2020-04-18T00:00:00.000Z", - "_created_at": "2020-04-13T00:00:00.000Z", - "_age_weeks": 140, - "_stars_per_week": 24.33, - "_pop_contributor_count": 2, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_repopath": "layout-parser/layout-parser", + "_reponame": "layout-parser", + "_stars": 3471, + "_forks": 345, + "_watches": 59, + "_language": "Python", + "_homepage": "https://layout-parser.github.io/", + "_description": "layout-parser: A Unified Toolkit for Deep Learning Based Document Image Analysis", + "_organization": "layout-parser", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-06-10T00:00:00.000Z", + "_age_weeks": 141, + "_stars_per_week": 24.62, + "_topics": [ + "layout-analysis", + "deep-learning", + "object-detection", + "ocr", + "layout-parser", + "detectron2", + "document-layout-analysis", + "computer-vision", + "document-image-processing", + "layout-detection" + ], + "_last_commit_date": "2022-08-06T00:00:00.000Z", + "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "Jim-Salmons@factminers", + "RosenZhang", + "an1018", + "dumbPy", + "edisongustavo@amazon", + "k-for-code", + "lolipopshock@clinicalmlallenai", + "yusanshi@ustc" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "enscognitique" + "amazon", + "clinicalmlallenai", + "factminers", + "ustc" + ], + "_pop_contributor_orgs_raw": [ + "@clinicalml @allenai ", + "Amazon", + "FactMiners", + "USTC" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 8, - "_pop_closed_issues_count": 4, + "_pop_commit_frequency": 0.21, + "_pop_updated_issues_count": 15, + "_pop_closed_issues_count": 2, "_pop_created_since_days": 33, - "_pop_updated_since_days": 32, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 8.0, - "_pop_comment_count": 4.0, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 15.0, + "_pop_comment_count": 16.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, + "_pop_comment_frequency": 1.1, "_pop_dependents_count": 0, - "_pop_score": 10.86, + "_pop_score": 25.62, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/karpathy/micrograd/master/README.md", - "_readme_localurl": "karpathy~micrograd~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/layout-parser/layout-parser/master/README.md", + "_readme_localurl": "layout-parser~layout-parser~README.md", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/karpathy/micrograd/master/setup.py" + "https://raw.githubusercontent.com/layout-parser/layout-parser/master/setup.py" ], "_requirements_localurls": [ - "karpathy~micrograd~setup.py" + "layout-parser~layout-parser~setup.py" ] }, { - "index": 757, - "category": "util", - "githuburl": "https://github.com/pypa/hatch", + "index": 140, + "category": "nlp", + "githuburl": "https://github.com/neuml/txtai", "featured": null, "links": null, "description": null, - "_repopath": "pypa/hatch", - "_reponame": "hatch", - "_stars": 3396, - "_forks": 165, - "_watches": 49, + "_repopath": "neuml/txtai", + "_reponame": "txtai", + "_stars": 3455, + "_forks": 293, + "_watches": 61, + "_language": "Python", + "_homepage": "https://neuml.github.io/txtai", + "_description": "txtai: \ud83d\udca1 Build AI-powered semantic search applications ", + "_organization": "neuml", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-08-09T00:00:00.000Z", + "_age_weeks": 132, + "_stars_per_week": 26.09, "_topics": [ "python", - "cli", - "virtualenv", - "packaging", - "versioning", - "build", - "plugin" + "search", + "machine-learning", + "nlp", + "deep-learning", + "document-search", + "audio-search", + "image-search", + "video-search", + "semantic-search", + "similarity-search", + "neural-search", + "contextual-search", + "vector-search", + "machine-learning-workflows", + "machine-learning-pipelines", + "microservice", + "api", + "cloud-native", + "txtai" ], - "_language": "Python", - "_homepage": "https://hatch.pypa.io/latest/", - "_description": "hatch: Modern, extensible Python project management", - "_organization": "pypa", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2017-05-31T00:00:00.000Z", - "_age_weeks": 289, - "_stars_per_week": 11.72, - "_pop_contributor_count": 20, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 10, + "_pop_contributor_logins": [ + "0206pdh", + "0xflotus", + "adin786@bigtincan", + "csheargm", + "csnelsonchu@superinsight.ai", + "davidmezzetti@neuml", + "hi019", + "hsm207@rasahq", + "lipusz@liferay" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "datadog", - "douban", - "mongodb" + "bigtincan", + "liferay", + "neuml", + "rasahq", + "superinsight.ai" + ], + "_pop_contributor_orgs_raw": [ + "@RasaHQ ", + "@neuml ", + "Bigtincan", + "Liferay Inc.", + "Superinsight.ai" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 10.4, - "_pop_updated_issues_count": 164, - "_pop_closed_issues_count": 126, - "_pop_created_since_days": 68, + "_pop_commit_frequency": 6.19, + "_pop_updated_issues_count": 60, + "_pop_closed_issues_count": 49, + "_pop_created_since_days": 31, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 82, - "_pop_recent_releases_estimated_tags": 15, - "_pop_recent_releases_adjusted_count": 82, - "_pop_issue_count": 164.0, - "_pop_comment_count": 303.0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 60.0, + "_pop_comment_count": 112.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 205, - "_pop_score": 56.42, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 41.77, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pypa/hatch/master/README.md", - "_readme_localurl": "pypa~hatch~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/neuml/txtai/master/README.md", + "_readme_localurl": "neuml~txtai~README.md", "_requirements_filenames": [ + "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pypa/hatch/master/pyproject.toml" + "https://raw.githubusercontent.com/neuml/txtai/master/setup.py", + "https://raw.githubusercontent.com/neuml/txtai/master/pyproject.toml" ], "_requirements_localurls": [ - "pypa~hatch~pyproject.toml" + "neuml~txtai~setup.py", + "neuml~txtai~pyproject.toml" ] }, { @@ -21946,41 +30386,63 @@ "description": null, "_repopath": "rspeer/python-ftfy", "_reponame": "python-ftfy", - "_stars": 3387, + "_stars": 3441, "_forks": 116, - "_watches": 74, - "_topics": [], + "_watches": 75, "_language": "Python", "_homepage": "http://ftfy.readthedocs.org", "_description": "python-ftfy: Fixes mojibake and other glitches in Unicode text, after the fact.", "_organization": "rspeer", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-10-25T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2012-08-24T00:00:00.000Z", - "_age_weeks": 538, - "_stars_per_week": 6.29, + "_age_weeks": 547, + "_stars_per_week": 6.28, + "_topics": [], + "_last_commit_date": "2022-10-25T00:00:00.000Z", "_pop_contributor_count": 18, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "airhorns", + "alin-luminoso", + "jacopofar@flix-tech", + "jaredly@khanacademy", + "jwilk", + "lumitim@luminoso", + "moss@luminoso", + "rmax@paige.ai", + "rspeer@elementalcognition", + "slibs63" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "elementalcognition", - "luminoso" + "flix-tech", + "khanacademy", + "luminoso", + "paige.ai" + ], + "_pop_contributor_orgs_raw": [ + "@flix-tech ", + "Elemental Cognition", + "Khan Academy", + "Luminoso", + "Paige.AI" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.37, - "_pop_updated_issues_count": 2, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 4, "_pop_closed_issues_count": 1, - "_pop_created_since_days": 126, - "_pop_updated_since_days": 2, + "_pop_created_since_days": 128, + "_pop_updated_since_days": 4, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 13, "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 2.0, - "_pop_comment_count": 0.0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 3, - "_pop_score": 31.56, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 32.83, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/rspeer/python-ftfy/master/README.md", "_readme_localurl": "rspeer~python-ftfy~README.md", @@ -21998,258 +30460,361 @@ ] }, { - "index": 200, - "category": "ml", - "githuburl": "https://github.com/huggingface/accelerate", + "index": 833, + "category": "util", + "githuburl": "https://github.com/adafruit/circuitpython", "featured": null, "links": null, "description": null, - "_repopath": "huggingface/accelerate", - "_reponame": "accelerate", - "_stars": 3380, - "_forks": 286, - "_watches": 65, - "_topics": [], + "_repopath": "adafruit/circuitpython", + "_reponame": "circuitpython", + "_stars": 3405, + "_forks": 914, + "_watches": 128, + "_language": "C", + "_homepage": "https://circuitpython.org", + "_description": "CircuitPython - a Python implementation for teaching coding with microcontrollers", + "_organization": "adafruit", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-08-20T00:00:00.000Z", + "_age_weeks": 339, + "_stars_per_week": 10.03, + "_topics": [ + "circuitpython", + "micropython", + "python", + "embedded", + "microcontroller", + "education", + "beginner", + "cpython", + "python3", + "hacktoberfest" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 891, + "_pop_contributor_logins": [ + "MicroDev1@microdevsystems", + "danicampora@embeddedconsultingbv", + "dhalbert", + "dpgeorge", + "glennrub", + "hierophect@adafruit", + "jepler@unpythonicnetworks", + "pfalcon", + "tannewt@chickadee-tech", + "weblate@weblateorg" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "adafruit", + "chickadee-tech", + "embeddedconsultingbv", + "microdevsystems", + "unpythonicnetworks", + "weblateorg" + ], + "_pop_contributor_orgs_raw": [ + "@WeblateOrg ", + "@chickadee-tech ", + "Adafruit", + "Embedded Consulting BV", + "MicroDev Systems", + "Unpythonic Networks " + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 34.56, + "_pop_updated_issues_count": 529, + "_pop_closed_issues_count": 347, + "_pop_created_since_days": 79, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 29, + "_pop_recent_releases_estimated_tags": 38, + "_pop_recent_releases_adjusted_count": 29, + "_pop_issue_count": 530.0, + "_pop_comment_count": 1225.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 64.47, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/adafruit/circuitpython/master/README.rst", + "_readme_localurl": "adafruit~circuitpython~README.rst", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 321, + "category": "gui", + "githuburl": "https://github.com/r0x0r/pywebview", + "featured": null, + "links": null, + "description": null, + "_repopath": "r0x0r/pywebview", + "_reponame": "pywebview", + "_stars": 3373, + "_forks": 441, + "_watches": 58, "_language": "Python", - "_homepage": "https://huggingface.co/docs/accelerate", - "_description": "accelerate: \ud83d\ude80 A simple way to train and use PyTorch models with multi-GPU, TPU, mixed-precision", - "_organization": "huggingface", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2020-10-30T00:00:00.000Z", - "_age_weeks": 111, - "_stars_per_week": 30.33, - "_pop_contributor_count": 77, + "_homepage": "https://pywebview.flowrl.com", + "_description": "pywebview: Build GUI for your Python program with JavaScript, HTML, and CSS", + "_organization": "r0x0r", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-11-20T00:00:00.000Z", + "_age_weeks": 430, + "_stars_per_week": 7.83, + "_topics": [ + "python", + "webkit", + "gtk", + "linux", + "windows", + "gui", + "osx", + "cocoa", + "html", + "javascript", + "qt", + "cef" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 102, + "_pop_contributor_logins": [ + "AlexCovizzi", + "AstraLuma", + "Fizzadar@beeper", + "ODtian", + "dependabot[bot]", + "javad94", + "r0x0r", + "sardination", + "sbbosco", + "shivaprsd" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "huggingface" + "beeper" + ], + "_pop_contributor_orgs_raw": [ + "@Beeper " ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 7.46, - "_pop_updated_issues_count": 287, - "_pop_closed_issues_count": 250, - "_pop_created_since_days": 26, + "_pop_commit_frequency": 2.6, + "_pop_updated_issues_count": 87, + "_pop_closed_issues_count": 68, + "_pop_created_since_days": 100, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 15, - "_pop_recent_releases_estimated_tags": 11, - "_pop_recent_releases_adjusted_count": 15, - "_pop_issue_count": 287.0, - "_pop_comment_count": 733.0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 87.0, + "_pop_comment_count": 213.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.6, - "_pop_dependents_count": 1206, - "_pop_score": 57.99, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 0, + "_pop_score": 44.84, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/huggingface/accelerate/master/README.md", - "_readme_localurl": "huggingface~accelerate~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/r0x0r/pywebview/master/README.md", + "_readme_localurl": "r0x0r~pywebview~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/huggingface/accelerate/master/setup.py", - "https://raw.githubusercontent.com/huggingface/accelerate/master/pyproject.toml" + "https://raw.githubusercontent.com/r0x0r/pywebview/master/requirements.txt", + "https://raw.githubusercontent.com/r0x0r/pywebview/master/setup.py" ], "_requirements_localurls": [ - "huggingface~accelerate~setup.py", - "huggingface~accelerate~pyproject.toml" + "r0x0r~pywebview~requirements.txt", + "r0x0r~pywebview~setup.py" ] }, { - "index": 790, - "category": "diffusion", - "githuburl": "https://github.com/ashawkey/stable-dreamfusion", + "index": 895, + "category": "time-series", + "githuburl": "https://github.com/awslabs/gluonts", "featured": null, "links": null, "description": null, - "_repopath": "ashawkey/stable-dreamfusion", - "_reponame": "stable-dreamfusion", - "_stars": 3366, - "_forks": 280, - "_watches": 79, - "_topics": [ - "text-to-3d", - "gui", - "nerf", - "stable-diffusion", - "dreamfusion" - ], + "_repopath": "awslabs/gluonts", + "_reponame": "gluonts", + "_stars": 3358, + "_forks": 675, + "_watches": 71, "_language": "Python", - "_homepage": "", - "_description": "stable-dreamfusion: A pytorch implementation of text-to-3D dreamfusion, powered by stable diffusion.", - "_organization": "ashawkey", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2022-10-06T00:00:00.000Z", - "_age_weeks": 10, - "_stars_per_week": 318.41, - "_pop_contributor_count": 6, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://ts.gluon.ai", + "_description": "gluonts: Probabilistic time series modeling in Python", + "_organization": "awslabs", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2019-05-15T00:00:00.000Z", + "_age_weeks": 197, + "_stars_per_week": 17.05, + "_topics": [ + "time-series", + "deep-learning", + "forecasting", + "neural-networks", + "machine-learning", + "time-series-prediction", + "time-series-forecasting", + "mxnet", + "pytorch", + "aws", + "sagemaker", + "timeseries", + "artificial-intelligence", + "data-science" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 101, + "_pop_contributor_logins": [ + "AaronSpieler", + "arangatang", + "benidis@amazonai", + "dcmaddix@amazonwebservices", + "jaheba@awslabs", + "jgasthaus@meta", + "kashif", + "lostella@awsawsawslabs", + "rshyamsundar@amazon", + "vafl@amazon" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "ctcmedia", - "pekinguniversity" + "amazon", + "amazonai", + "amazonwebservices", + "awsawsawslabs", + "awslabs", + "meta" + ], + "_pop_contributor_orgs_raw": [ + "@awslabs", + "AWS @aws @awslabs", + "Amazon", + "Amazon AI", + "Amazon Web Services", + "Meta" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.12, - "_pop_updated_issues_count": 114, - "_pop_closed_issues_count": 54, - "_pop_created_since_days": 2, + "_pop_commit_frequency": 7.06, + "_pop_updated_issues_count": 247, + "_pop_closed_issues_count": 189, + "_pop_created_since_days": 46, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 114.0, - "_pop_comment_count": 317.0, + "_pop_recent_releases_count": 40, + "_pop_recent_releases_estimated_tags": 22, + "_pop_recent_releases_adjusted_count": 40, + "_pop_issue_count": 247.0, + "_pop_comment_count": 271.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.8, - "_pop_dependents_count": 10, - "_pop_score": 30.75, - "_readme_filename": "readme.md", - "_readme_giturl": "https://raw.githubusercontent.com/ashawkey/stable-dreamfusion/master/readme.md", - "_readme_localurl": "ashawkey~stable-dreamfusion~readme.md", + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 51.78, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/awslabs/gluonts/master/README.md", + "_readme_localurl": "awslabs~gluonts~README.md", "_requirements_filenames": [ - "requirements.txt" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/ashawkey/stable-dreamfusion/master/requirements.txt" + "https://raw.githubusercontent.com/awslabs/gluonts/master/setup.py", + "https://raw.githubusercontent.com/awslabs/gluonts/master/pyproject.toml" ], "_requirements_localurls": [ - "ashawkey~stable-dreamfusion~requirements.txt" + "awslabs~gluonts~setup.py", + "awslabs~gluonts~pyproject.toml" ] }, { - "index": 368, - "category": "nlp", - "githuburl": "https://github.com/layout-parser/layout-parser", + "index": 897, + "category": "viz", + "githuburl": "https://github.com/has2k1/plotnine", "featured": null, "links": null, "description": null, - "_repopath": "layout-parser/layout-parser", - "_reponame": "layout-parser", - "_stars": 3346, - "_forks": 332, - "_watches": 57, + "_repopath": "has2k1/plotnine", + "_reponame": "plotnine", + "_stars": 3355, + "_forks": 193, + "_watches": 68, + "_language": "Python", + "_homepage": "https://plotnine.readthedocs.io/en/stable/", + "_description": "plotnine: A grammar of graphics for Python", + "_organization": "has2k1", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2017-04-24T00:00:00.000Z", + "_age_weeks": 304, + "_stars_per_week": 11.03, "_topics": [ - "layout-analysis", - "deep-learning", - "object-detection", - "ocr", - "layout-parser", - "detectron2", - "document-layout-analysis", - "computer-vision", - "document-image-processing", - "layout-detection" + "plotting", + "grammar", + "graphics", + "python", + "data-analysis" + ], + "_last_commit_date": "2023-02-01T00:00:00.000Z", + "_pop_contributor_count": 99, + "_pop_contributor_logins": [ + "TyberiusPrime", + "arnfred", + "dan-blanchard@coiled", + "funnell@mskcc", + "gdowding", + "glamp", + "has2k1", + "hernamesbarbara", + "jankatins@kreuzwerker", + "matthias-k" ], - "_language": "Python", - "_homepage": "https://layout-parser.github.io/", - "_description": "layout-parser: A Unified Toolkit for Deep Learning Based Document Image Analysis", - "_organization": "layout-parser", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-08-06T00:00:00.000Z", - "_created_at": "2020-06-10T00:00:00.000Z", - "_age_weeks": 131, - "_stars_per_week": 25.4, - "_pop_contributor_count": 8, "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "amazon", - "clinicalmlallenai", - "factminers" + "coiled", + "kreuzwerker", + "mskcc" + ], + "_pop_contributor_orgs_raw": [ + "@coiled ", + "@kreuzwerker", + "MSKCC" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.31, - "_pop_updated_issues_count": 16, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 31, - "_pop_updated_since_days": 4, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 16.0, - "_pop_comment_count": 20.0, + "_pop_commit_frequency": 2.98, + "_pop_updated_issues_count": 26, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 71, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 26.0, + "_pop_comment_count": 34.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, + "_pop_comment_frequency": 1.3, "_pop_dependents_count": 0, - "_pop_score": 25.91, + "_pop_score": 40.47, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/layout-parser/layout-parser/master/README.md", - "_readme_localurl": "layout-parser~layout-parser~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/has2k1/plotnine/master/README.md", + "_readme_localurl": "has2k1~plotnine~README.md", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/layout-parser/layout-parser/master/setup.py" + "https://raw.githubusercontent.com/has2k1/plotnine/master/setup.py", + "https://raw.githubusercontent.com/has2k1/plotnine/master/pyproject.toml" ], "_requirements_localurls": [ - "layout-parser~layout-parser~setup.py" + "has2k1~plotnine~setup.py", + "has2k1~plotnine~pyproject.toml" ] }, - { - "index": 833, - "category": "util", - "githuburl": "https://github.com/adafruit/circuitpython", - "featured": null, - "links": null, - "description": null, - "_repopath": "adafruit/circuitpython", - "_reponame": "circuitpython", - "_stars": 3320, - "_forks": 877, - "_watches": 128, - "_topics": [ - "circuitpython", - "micropython", - "python", - "embedded", - "microcontroller", - "education", - "beginner", - "cpython", - "python3", - "hacktoberfest" - ], - "_language": "C", - "_homepage": "https://circuitpython.org", - "_description": "CircuitPython - a Python implementation for teaching coding with microcontrollers", - "_organization": "adafruit", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2016-08-20T00:00:00.000Z", - "_age_weeks": 330, - "_stars_per_week": 10.05, - "_pop_contributor_count": 877, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "chickadee-tech", - "unpythonicnetworks" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 37.1, - "_pop_updated_issues_count": 622, - "_pop_closed_issues_count": 448, - "_pop_created_since_days": 77, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 31, - "_pop_recent_releases_estimated_tags": 37, - "_pop_recent_releases_adjusted_count": 31, - "_pop_issue_count": 622.0, - "_pop_comment_count": 1458.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.3, - "_pop_dependents_count": 5191, - "_pop_score": 75.95, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/adafruit/circuitpython/master/README.rst", - "_readme_localurl": "adafruit~circuitpython~README.rst", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 421, "category": "ml", @@ -22259,41 +30824,63 @@ "description": null, "_repopath": "facebookresearch/reagent", "_reponame": "ReAgent", - "_stars": 3311, - "_forks": 498, - "_watches": 146, - "_topics": [], + "_stars": 3347, + "_forks": 506, + "_watches": 150, "_language": "Python", "_homepage": "https://reagent.ai", "_description": "ReAgent: A platform for Reasoning systems (Reinforcement Learning, Contextual Bandits, etc.)", "_organization": "facebookresearch", - "_updated_at": "2022-12-13T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2017-07-27T00:00:00.000Z", - "_age_weeks": 281, - "_stars_per_week": 11.76, + "_age_weeks": 290, + "_stars_per_week": 11.51, + "_topics": [], + "_last_commit_date": "2023-02-17T00:00:00.000Z", "_pop_contributor_count": 151, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "YitaoLiang", + "alexnikulkov", + "badrinarayan@facebook", + "czxttkl", + "econti@banditml", + "gji1@facebookai", + "igfox", + "kaiwenw@cornell", + "kittipatv", + "sfujim@mcgilluniversity" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "banditml", - "cornell" + "cornell", + "facebook", + "facebookai", + "mcgilluniversity" + ], + "_pop_contributor_orgs_raw": [ + "@banditml ", + "Cornell", + "Facebook", + "Facebook AI", + "McGill University" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.08, - "_pop_updated_issues_count": 22, - "_pop_closed_issues_count": 15, - "_pop_created_since_days": 66, + "_pop_commit_frequency": 2.0, + "_pop_updated_issues_count": 17, + "_pop_closed_issues_count": 12, + "_pop_created_since_days": 68, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 22.0, - "_pop_comment_count": 36.0, + "_pop_issue_count": 17.0, + "_pop_comment_count": 38.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 587, - "_pop_score": 51.07, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 0, + "_pop_score": 43.63, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/reagent/master/README.md", "_readme_localurl": "facebookresearch~reagent~README.md", @@ -22310,71 +30897,6 @@ "facebookresearch~reagent~pyproject.toml" ] }, - { - "index": 897, - "category": "viz", - "githuburl": "https://github.com/has2k1/plotnine", - "featured": null, - "links": null, - "description": null, - "_repopath": "has2k1/plotnine", - "_reponame": "plotnine", - "_stars": 3278, - "_forks": 184, - "_watches": 65, - "_topics": [ - "plotting", - "grammar", - "graphics", - "python", - "data-analysis" - ], - "_language": "Python", - "_homepage": "https://plotnine.readthedocs.io/en/stable/", - "_description": "plotnine: A grammar of graphics for Python", - "_organization": "has2k1", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", - "_created_at": "2017-04-24T00:00:00.000Z", - "_age_weeks": 295, - "_stars_per_week": 11.11, - "_pop_contributor_count": 99, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "kreuzwerker" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.85, - "_pop_updated_issues_count": 40, - "_pop_closed_issues_count": 22, - "_pop_created_since_days": 69, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 40.0, - "_pop_comment_count": 67.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 34, - "_pop_score": 44.93, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/has2k1/plotnine/master/README.md", - "_readme_localurl": "has2k1~plotnine~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/has2k1/plotnine/master/setup.py", - "https://raw.githubusercontent.com/has2k1/plotnine/master/pyproject.toml" - ], - "_requirements_localurls": [ - "has2k1~plotnine~setup.py", - "has2k1~plotnine~pyproject.toml" - ] - }, { "index": 4, "category": "pandas", @@ -22384,9 +30906,17 @@ "description": null, "_repopath": "aws/aws-sdk-pandas", "_reponame": "aws-sdk-pandas", - "_stars": 3257, - "_forks": 562, - "_watches": 57, + "_stars": 3334, + "_forks": 579, + "_watches": 60, + "_language": "Python", + "_homepage": "https://aws-sdk-pandas.readthedocs.io", + "_description": "aws-sdk-pandas: pandas on AWS - Easy integration with Athena, Glue, Redshift, Timestream, Neptune, OpenSearch, QuickSight, Chime, CloudWatchLogs, DynamoDB, EMR, SecretManager, PostgreSQL, MySQL, SQLServer and S3 (Parquet, CSV, JSON and EXCEL).", + "_organization": "aws", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-02-26T00:00:00.000Z", + "_age_weeks": 208, + "_stars_per_week": 16.02, "_topics": [ "python", "aws", @@ -22407,38 +30937,52 @@ "mysql", "amazon-sagemaker-notebook" ], - "_language": "Python", - "_homepage": "https://aws-sdk-pandas.readthedocs.io", - "_description": "aws-sdk-pandas: pandas on AWS - Easy integration with Athena, Glue, Redshift, Timestream, Neptune, OpenSearch, QuickSight, Chime, CloudWatchLogs, DynamoDB, EMR, SecretManager, PostgreSQL, MySQL, SQLServer and S3 (Parquet, CSV, JSON and EXCEL).", - "_organization": "aws", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2019-02-26T00:00:00.000Z", - "_age_weeks": 198, - "_stars_per_week": 16.38, - "_pop_contributor_count": 121, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 124, + "_pop_contributor_logins": [ + "LeonLuttenberger@amazonwebservices", + "bryanyang0528@taiwansparkusergroup", + "cnfait@aws", + "dependabot[bot]", + "igorborgest@vtex", + "jaidisido@aws", + "kukushking", + "luigift", + "malachi-constant@amazonwebservices", + "maxispeicher@twaice" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "amazonwebservices", "aws", + "taiwansparkusergroup", + "twaice", "vtex" ], + "_pop_contributor_orgs_raw": [ + "@TWAICE ", + "@TaiwanSparkUserGroup ", + "@aws", + "@vtex", + "AWS", + "Amazon Web Services" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.17, - "_pop_updated_issues_count": 328, - "_pop_closed_issues_count": 297, - "_pop_created_since_days": 46, + "_pop_commit_frequency": 5.38, + "_pop_updated_issues_count": 366, + "_pop_closed_issues_count": 330, + "_pop_created_since_days": 49, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 14, - "_pop_recent_releases_estimated_tags": 26, + "_pop_recent_releases_estimated_tags": 25, "_pop_recent_releases_adjusted_count": 14, - "_pop_issue_count": 328.0, - "_pop_comment_count": 1279.0, + "_pop_issue_count": 366.0, + "_pop_comment_count": 1265.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.9, + "_pop_comment_frequency": 3.5, "_pop_dependents_count": 0, - "_pop_score": 52.13, + "_pop_score": 54.18, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/aws/aws-sdk-pandas/master/README.md", "_readme_localurl": "aws~aws-sdk-pandas~README.md", @@ -22453,75 +30997,95 @@ ] }, { - "index": 321, - "category": "gui", - "githuburl": "https://github.com/r0x0r/pywebview", + "index": 99, + "category": "ml", + "githuburl": "https://github.com/skvark/opencv-python", "featured": null, "links": null, "description": null, - "_repopath": "r0x0r/pywebview", - "_reponame": "pywebview", - "_stars": 3247, - "_forks": 433, - "_watches": 57, + "_repopath": "skvark/opencv-python", + "_reponame": "opencv-python", + "_stars": 3282, + "_forks": 638, + "_watches": 83, + "_language": "Shell", + "_homepage": "https://pypi.org/project/opencv-python/", + "_description": "opencv-python: Automated CI toolchain to produce precompiled opencv-python, opencv-python-headless, opencv-contrib-python and opencv-contrib-python-headless packages.", + "_organization": "skvark", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-04-08T00:00:00.000Z", + "_age_weeks": 358, + "_stars_per_week": 9.15, "_topics": [ + "opencv", "python", - "webkit", - "gtk", - "linux", - "windows", - "gui", - "osx", - "cocoa", - "html", - "javascript", - "qt", - "cef" + "wheel", + "python-3", + "opencv-python", + "opencv-contrib-python", + "precompiled", + "pypi", + "manylinux" ], - "_language": "Python", - "_homepage": "https://pywebview.flowrl.com", - "_description": "pywebview: Build GUI for your Python program with JavaScript, HTML, and CSS", - "_organization": "r0x0r", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2014-11-20T00:00:00.000Z", - "_age_weeks": 421, - "_stars_per_week": 7.7, - "_pop_contributor_count": 97, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 43, + "_pop_contributor_logins": [ + "abhiTronix@autodidact\u2022researcher\u2022open-sourcerer", + "asenyaev", + "asmorkalov@xperience.ai", + "c-martinez@nlesc", + "cclauss@christianclauss", + "johnthagen", + "native-api", + "sergregory", + "skvark@softlandia-ltd", + "vallentin" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "beeper" + "autodidact\u2022researcher\u2022open-sourcerer", + "christianclauss", + "nlesc", + "softlandia-ltd", + "xperience.ai" + ], + "_pop_contributor_orgs_raw": [ + "@NLeSC ", + "@Softlandia-Ltd", + "Autodidact \u2022 Researcher \u2022 Open-sourcerer", + "Christian Clauss", + "Xperience.AI" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.46, - "_pop_updated_issues_count": 66, + "_pop_commit_frequency": 0.98, + "_pop_updated_issues_count": 71, "_pop_closed_issues_count": 46, - "_pop_created_since_days": 98, + "_pop_created_since_days": 84, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 7, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 66.0, - "_pop_comment_count": 194.0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 71.0, + "_pop_comment_count": 177.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.9, - "_pop_dependents_count": 43, - "_pop_score": 50.71, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 0, + "_pop_score": 45.71, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/r0x0r/pywebview/master/README.md", - "_readme_localurl": "r0x0r~pywebview~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/skvark/opencv-python/master/README.md", + "_readme_localurl": "skvark~opencv-python~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/r0x0r/pywebview/master/requirements.txt", - "https://raw.githubusercontent.com/r0x0r/pywebview/master/setup.py" + "https://raw.githubusercontent.com/skvark/opencv-python/master/setup.py", + "https://raw.githubusercontent.com/skvark/opencv-python/master/pyproject.toml" ], "_requirements_localurls": [ - "r0x0r~pywebview~requirements.txt", - "r0x0r~pywebview~setup.py" + "skvark~opencv-python~setup.py", + "skvark~opencv-python~pyproject.toml" ] }, { @@ -22533,47 +31097,67 @@ "description": null, "_repopath": "zeromq/pyzmq", "_reponame": "pyzmq", - "_stars": 3225, - "_forks": 610, + "_stars": 3271, + "_forks": 615, "_watches": 102, - "_topics": [ - "cython", - "python", - "zeromq" - ], "_language": "Python", "_homepage": "http://zguide.zeromq.org/py:all", "_description": "PyZMQ: Python bindings for zeromq", "_organization": "zeromq", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", + "_updated_at": "2023-02-20T00:00:00.000Z", "_created_at": "2010-07-21T00:00:00.000Z", - "_age_weeks": 647, + "_age_weeks": 657, "_stars_per_week": 4.98, - "_pop_contributor_count": 187, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_topics": [ + "cython", + "python", + "zeromq" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 188, + "_pop_contributor_logins": [ + "asteven", + "bluca@microsoft", + "claws", + "ellisonbg@amazonwebservices", + "fperez@universityofcalifornia,berkeley.", + "guidog", + "iblislin@chinamedicaluniversityhospital", + "minrk@simularesearchlaboratory", + "pre-commit-ci[bot]", + "sakurai-youhei" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "amazonwebservices", + "chinamedicaluniversityhospital", "microsoft", "simularesearchlaboratory", "universityofcalifornia,berkeley." ], + "_pop_contributor_orgs_raw": [ + "@microsoft", + "Amazon Web Services", + "China Medical University Hospital", + "Simula Research Laboratory", + "University of California, Berkeley." + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.42, - "_pop_updated_issues_count": 60, - "_pop_closed_issues_count": 48, - "_pop_created_since_days": 151, + "_pop_commit_frequency": 3.6, + "_pop_updated_issues_count": 36, + "_pop_closed_issues_count": 27, + "_pop_created_since_days": 153, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 6, "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 60.0, - "_pop_comment_count": 63.0, + "_pop_issue_count": 36.0, + "_pop_comment_count": 49.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 604, - "_pop_score": 60.29, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 49.62, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/zeromq/pyzmq/master/README.md", "_readme_localurl": "zeromq~pyzmq~README.md", @@ -22591,136 +31175,94 @@ ] }, { - "index": 895, - "category": "time-series", - "githuburl": "https://github.com/awslabs/gluonts", + "index": 361, + "category": "ml-ops", + "githuburl": "https://github.com/polyaxon/polyaxon", "featured": null, "links": null, "description": null, - "_repopath": "awslabs/gluonts", - "_reponame": "gluonts", - "_stars": 3224, - "_forks": 652, - "_watches": 69, + "_repopath": "polyaxon/polyaxon", + "_reponame": "polyaxon", + "_stars": 3255, + "_forks": 320, + "_watches": 78, + "_language": null, + "_homepage": "https://polyaxon.com", + "_description": "polyaxon: MLOps Tools For Managing & Orchestrating The Machine Learning LifeCycle", + "_organization": "polyaxon", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2016-12-26T00:00:00.000Z", + "_age_weeks": 321, + "_stars_per_week": 10.13, "_topics": [ - "time-series", "deep-learning", - "forecasting", - "neural-networks", "machine-learning", - "time-series-prediction", - "time-series-forecasting", - "mxnet", - "pytorch", - "aws", - "sagemaker", - "timeseries", "artificial-intelligence", - "data-science" + "data-science", + "reinforcement-learning", + "kubernetes", + "tensorflow", + "pytorch", + "keras", + "mxnet", + "caffe", + "ml", + "k8s", + "jupyter", + "notebook", + "jupyterlab", + "pipelines", + "workflow", + "mlops", + "hyperparameter-optimization" ], - "_language": "Python", - "_homepage": "https://ts.gluon.ai", - "_description": "gluonts: Probabilistic time series modeling in Python", - "_organization": "awslabs", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2019-05-15T00:00:00.000Z", - "_age_weeks": 187, - "_stars_per_week": 17.18, + "_last_commit_date": "2023-02-20T00:00:00.000Z", "_pop_contributor_count": 98, + "_pop_contributor_logins": [ + "DXist", + "dependabot[bot]", + "gzcf", + "javidgon", + "lgeiger@plumerailarq", + "mmourafiq", + "polyaxon-ci", + "polyaxon-team", + "vfdev-5@quansight", + "wbuchwalter@microsoftresearch" + ], "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "amazon", - "awsawsawslabs", - "awslabs" + "microsoftresearch", + "plumerailarq", + "quansight" + ], + "_pop_contributor_orgs_raw": [ + "@Quansight", + "@plumerai @larq ", + "Microsoft Research" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.65, - "_pop_updated_issues_count": 176, - "_pop_closed_issues_count": 121, - "_pop_created_since_days": 44, + "_pop_commit_frequency": 4.9, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 75, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 27, - "_pop_recent_releases_estimated_tags": 19, - "_pop_recent_releases_adjusted_count": 27, - "_pop_issue_count": 176.0, - "_pop_comment_count": 224.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 0, - "_pop_score": 48.37, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/awslabs/gluonts/master/README.md", - "_readme_localurl": "awslabs~gluonts~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/awslabs/gluonts/master/setup.py", - "https://raw.githubusercontent.com/awslabs/gluonts/master/pyproject.toml" - ], - "_requirements_localurls": [ - "awslabs~gluonts~setup.py", - "awslabs~gluonts~pyproject.toml" - ] - }, - { - "index": 208, - "category": "crypto", - "githuburl": "https://github.com/cyberpunkmetalhead/binance-volatility-trading-bot", - "featured": null, - "links": null, - "description": null, - "_repopath": "cyberpunkmetalhead/binance-volatility-trading-bot", - "_reponame": "Binance-volatility-trading-bot", - "_stars": 3222, - "_forks": 763, - "_watches": 145, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "Binance-volatility-trading-bot: This is a fully functioning Binance trading bot that measures the volatility of every coin on Binance and places trades with the highest gaining coins If you like this project consider donating though the Brave browser to allow me to continuously improve the script.", - "_organization": "cyberpunkmetalhead", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2021-06-10T00:00:00.000Z", - "_created_at": "2021-05-08T00:00:00.000Z", - "_age_weeks": 84, - "_stars_per_week": 38.23, - "_pop_contributor_count": 19, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "mazette!" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 20, - "_pop_updated_since_days": 19, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 2.0, - "_pop_comment_count": 0.0, + "_pop_recent_releases_estimated_tags": 24, + "_pop_recent_releases_adjusted_count": 24, + "_pop_issue_count": 11.0, + "_pop_comment_count": 3.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, + "_pop_comment_frequency": 0.3, "_pop_dependents_count": 0, - "_pop_score": 12.55, + "_pop_score": 42.2, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/cyberpunkmetalhead/binance-volatility-trading-bot/master/README.md", - "_readme_localurl": "cyberpunkmetalhead~binance-volatility-trading-bot~README.md", - "_requirements_filenames": [ - "requirements.txt" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/cyberpunkmetalhead/binance-volatility-trading-bot/master/requirements.txt" - ], - "_requirements_localurls": [ - "cyberpunkmetalhead~binance-volatility-trading-bot~requirements.txt" - ] + "_readme_giturl": "https://raw.githubusercontent.com/polyaxon/polyaxon/master/README.md", + "_readme_localurl": "polyaxon~polyaxon~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { "index": 93, @@ -22731,42 +31273,65 @@ "description": null, "_repopath": "unbit/uwsgi", "_reponame": "uwsgi", - "_stars": 3218, - "_forks": 668, - "_watches": 113, - "_topics": [], + "_stars": 3254, + "_forks": 671, + "_watches": 114, "_language": "C", "_homepage": "http://projects.unbit.it/uwsgi", "_description": "uWSGI application server container", "_organization": "unbit", - "_updated_at": "2022-12-13T00:00:00.000Z", - "_last_commit_date": "2022-11-23T00:00:00.000Z", + "_updated_at": "2023-02-20T00:00:00.000Z", "_created_at": "2011-10-09T00:00:00.000Z", - "_age_weeks": 584, - "_stars_per_week": 5.51, + "_age_weeks": 593, + "_stars_per_week": 5.48, + "_topics": [], + "_last_commit_date": "2023-01-10T00:00:00.000Z", "_pop_contributor_count": 352, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Darvame", + "Shir0kamii@numberly", + "aldur", + "awelzel", + "funkybob@codealchemy", + "prymitive", + "rdeioris@blitter", + "robygior@20tabsrl", + "unbit@unbit", + "xrmx@menodizero.it" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "20tabsrl", + "blitter", + "codealchemy", "menodizero.it", + "numberly", "unbit" ], + "_pop_contributor_orgs_raw": [ + "20tab Srl", + "Blitter", + "Code Alchemy", + "Unbit", + "menodizero.it", + "numberly" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.52, - "_pop_updated_issues_count": 67, - "_pop_closed_issues_count": 33, - "_pop_created_since_days": 136, + "_pop_commit_frequency": 0.46, + "_pop_updated_issues_count": 30, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 138, "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 11, "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 67.0, - "_pop_comment_count": 85.0, + "_pop_issue_count": 30.0, + "_pop_comment_count": 37.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 1403, - "_pop_score": 60.1, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 48.27, "_readme_filename": "", "_readme_giturl": "", "_readme_localurl": "", @@ -22781,136 +31346,170 @@ ] }, { - "index": 361, - "category": "ml-ops", - "githuburl": "https://github.com/polyaxon/polyaxon", + "index": 804, + "category": "util", + "githuburl": "https://github.com/miguelgrinberg/python-socketio", "featured": null, "links": null, "description": null, - "_repopath": "polyaxon/polyaxon", - "_reponame": "polyaxon", - "_stars": 3216, - "_forks": 316, - "_watches": 77, + "_repopath": "miguelgrinberg/python-socketio", + "_reponame": "python-socketio", + "_stars": 3237, + "_forks": 522, + "_watches": 62, + "_language": "Python", + "_homepage": "", + "_description": "python-socketio: Python Socket.IO server and client", + "_organization": "miguelgrinberg", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-07-15T00:00:00.000Z", + "_age_weeks": 397, + "_stars_per_week": 8.15, "_topics": [ - "deep-learning", - "machine-learning", - "artificial-intelligence", - "data-science", - "reinforcement-learning", - "kubernetes", - "tensorflow", - "pytorch", - "keras", - "mxnet", - "caffe", - "ml", - "k8s", - "jupyter", - "notebook", - "jupyterlab", - "pipelines", - "workflow", - "mlops", - "hyperparameter-optimization" + "socket-io", + "socketio", + "socketio-server", + "websocket", + "long-polling", + "low-latency", + "web-server", + "python", + "asyncio", + "eventlet", + "gevent" + ], + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 61, + "_pop_contributor_logins": [ + "Molkree", + "VincentM@untienots", + "aaqibb13@graphicweave", + "andreyrusanov", + "dependabot[bot]", + "etseidler", + "greyli", + "kurlov@redhat", + "miguelgrinberg", + "tsangwpx" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "graphicweave", + "redhat", + "untienots" + ], + "_pop_contributor_orgs_raw": [ + "@Untienots", + "@graphicweave", + "Red Hat" ], - "_language": "Python", - "_homepage": "https://polyaxon.com", - "_description": "polyaxon: MLOps Tools For Managing & Orchestrating The Machine Learning LifeCycle", - "_organization": "polyaxon", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-11T00:00:00.000Z", - "_created_at": "2016-12-26T00:00:00.000Z", - "_age_weeks": 312, - "_stars_per_week": 10.31, - "_pop_contributor_count": 98, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.58, - "_pop_updated_issues_count": 6, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 73, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 1.15, + "_pop_updated_issues_count": 26, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 93, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 25, - "_pop_recent_releases_adjusted_count": 25, - "_pop_issue_count": 6.0, - "_pop_comment_count": 0.0, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 26.0, + "_pop_comment_count": 35.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 111, - "_pop_score": 40.38, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 43.03, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/polyaxon/polyaxon/master/README.md", - "_readme_localurl": "polyaxon~polyaxon~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/miguelgrinberg/python-socketio/master/README.md", + "_readme_localurl": "miguelgrinberg~python-socketio~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/miguelgrinberg/python-socketio/master/setup.py", + "https://raw.githubusercontent.com/miguelgrinberg/python-socketio/master/pyproject.toml" + ], + "_requirements_localurls": [ + "miguelgrinberg~python-socketio~setup.py", + "miguelgrinberg~python-socketio~pyproject.toml" + ] }, { - "index": 319, - "category": "gui", - "githuburl": "https://github.com/dddomodossola/remi", + "index": 208, + "category": "crypto", + "githuburl": "https://github.com/cyberpunkmetalhead/binance-volatility-trading-bot", "featured": null, "links": null, "description": null, - "_repopath": "dddomodossola/remi", - "_reponame": "remi", - "_stars": 3185, - "_forks": 390, - "_watches": 119, - "_topics": [ - "python", - "gui-library", - "remi", - "platform-independent", - "ui", - "gui" - ], + "_repopath": "cyberpunkmetalhead/binance-volatility-trading-bot", + "_reponame": "Binance-volatility-trading-bot", + "_stars": 3237, + "_forks": 761, + "_watches": 146, "_language": "Python", - "_homepage": "", - "_description": "remi: Python REMote Interface library. Platform independent. In about 100 Kbytes, perfect for your diet.", - "_organization": "dddomodossola", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-23T00:00:00.000Z", - "_created_at": "2014-03-20T00:00:00.000Z", - "_age_weeks": 456, - "_stars_per_week": 6.98, - "_pop_contributor_count": 56, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": null, + "_description": "Binance-volatility-trading-bot: This is a fully functioning Binance trading bot that measures the volatility of every coin on Binance and places trades with the highest gaining coins If you like this project consider donating though the Brave browser to allow me to continuously improve the script.", + "_organization": "cyberpunkmetalhead", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2021-05-08T00:00:00.000Z", + "_age_weeks": 93, + "_stars_per_week": 34.59, + "_topics": [], + "_last_commit_date": "2021-06-10T00:00:00.000Z", + "_pop_contributor_count": 19, + "_pop_contributor_logins": [ + "CyberPunkMetalHead", + "Davidobot@mazette!", + "FreshLondon@freshlondon", + "ShogunMan", + "Tarantinooo", + "amitman3", + "bcsingh50", + "datapush3r@splunk", + "getsec", + "singer-yang@kaust" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "europeanspallationsourceeric", - "imtssrl" + "freshlondon", + "kaust", + "mazette!", + "splunk" + ], + "_pop_contributor_orgs_raw": [ + "@splunk", + "FreshLondon", + "KAUST", + "mazette!" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.71, - "_pop_updated_issues_count": 24, - "_pop_closed_issues_count": 21, - "_pop_created_since_days": 106, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 22, + "_pop_updated_since_days": 21, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 24.0, - "_pop_comment_count": 42.0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 471, - "_pop_score": 49.48, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 17.24, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/dddomodossola/remi/master/README.md", - "_readme_localurl": "dddomodossola~remi~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/cyberpunkmetalhead/binance-volatility-trading-bot/master/README.md", + "_readme_localurl": "cyberpunkmetalhead~binance-volatility-trading-bot~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/dddomodossola/remi/master/setup.py" + "https://raw.githubusercontent.com/cyberpunkmetalhead/binance-volatility-trading-bot/master/requirements.txt" ], "_requirements_localurls": [ - "dddomodossola~remi~setup.py" + "cyberpunkmetalhead~binance-volatility-trading-bot~requirements.txt" ] }, { @@ -22922,46 +31521,69 @@ "description": null, "_repopath": "executablebooks/jupyter-book", "_reponame": "jupyter-book", - "_stars": 3163, - "_forks": 587, - "_watches": 63, - "_topics": [ - "jupyter", - "sphinx-doc", - "documentation-generator" - ], + "_stars": 3236, + "_forks": 607, + "_watches": 60, "_language": "Python", "_homepage": "http://jupyterbook.org", "_description": "jupyter-book: Create beautiful, publication-quality books and documents from computational content.", "_organization": "executablebooks", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-09T00:00:00.000Z", + "_updated_at": "2023-02-20T00:00:00.000Z", "_created_at": "2018-06-14T00:00:00.000Z", - "_age_weeks": 235, - "_stars_per_week": 13.43, - "_pop_contributor_count": 118, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_age_weeks": 244, + "_stars_per_week": 13.22, + "_topics": [ + "jupyter", + "sphinx-doc", + "documentation-generator" + ], + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 120, + "_pop_contributor_logins": [ + "AakashGfude", + "SamLau95@data-8ds-100", + "choldgraf@ucberkeley", + "chrisjsewell@imperialcollegelondon", + "dependabot[bot]", + "emdupre@stanforduniversity", + "joergbrech", + "martinagvilas@ernststr\u00fcngmannandmax-planck-institute", + "mmcky", + "najuzilu@georgetownuniversity" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "data-8ds-100", + "ernststr\u00fcngmannandmax-planck-institute", + "georgetownuniversity", "imperialcollegelondon", "stanforduniversity", "ucberkeley" ], + "_pop_contributor_orgs_raw": [ + "@data-8 @DS-100", + "Ernst Str\u00fcngmann and Max-Planck-Institute", + "Georgetown University", + "Imperial College London", + "Stanford University", + "UC Berkeley" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.63, - "_pop_updated_issues_count": 107, - "_pop_closed_issues_count": 37, - "_pop_created_since_days": 55, + "_pop_commit_frequency": 1.38, + "_pop_updated_issues_count": 86, + "_pop_closed_issues_count": 34, + "_pop_created_since_days": 57, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 4, + "_pop_recent_releases_count": 5, "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 107.0, - "_pop_comment_count": 197.0, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 86.0, + "_pop_comment_count": 157.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 139, - "_pop_score": 53.37, + "_pop_dependents_count": 0, + "_pop_score": 47.34, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/executablebooks/jupyter-book/master/README.md", "_readme_localurl": "executablebooks~jupyter-book~README.md", @@ -22976,268 +31598,256 @@ ] }, { - "index": 99, - "category": "ml", - "githuburl": "https://github.com/skvark/opencv-python", + "index": 319, + "category": "gui", + "githuburl": "https://github.com/dddomodossola/remi", "featured": null, "links": null, "description": null, - "_repopath": "skvark/opencv-python", - "_reponame": "opencv-python", - "_stars": 3161, - "_forks": 618, - "_watches": 82, + "_repopath": "dddomodossola/remi", + "_reponame": "remi", + "_stars": 3229, + "_forks": 395, + "_watches": 120, + "_language": "Python", + "_homepage": "", + "_description": "remi: Python REMote Interface library. Platform independent. In about 100 Kbytes, perfect for your diet.", + "_organization": "dddomodossola", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-03-20T00:00:00.000Z", + "_age_weeks": 465, + "_stars_per_week": 6.93, "_topics": [ - "opencv", "python", - "wheel", - "python-3", - "opencv-python", - "opencv-contrib-python", - "precompiled", - "pypi", - "manylinux" + "gui-library", + "remi", + "platform-independent", + "ui", + "gui" ], - "_language": "Shell", - "_homepage": "https://pypi.org/project/opencv-python/", - "_description": "opencv-python: Automated CI toolchain to produce precompiled opencv-python, opencv-python-headless, opencv-contrib-python and opencv-contrib-python-headless packages.", - "_organization": "skvark", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2016-04-08T00:00:00.000Z", - "_age_weeks": 349, - "_stars_per_week": 9.05, - "_pop_contributor_count": 40, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-01T00:00:00.000Z", + "_pop_contributor_count": 56, + "_pop_contributor_logins": [ + "Bethany-1", + "Eothred@europeanspallationsourceeric", + "Ksengine@moonharelabs", + "PURPORC", + "awesomebytes", + "cyberpro4", + "dddomodossola@imtssrl", + "mcondarelli", + "nzjrs", + "smurfix@norisnetworkag" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "softlandia-ltd", - "xperience.ai" + "europeanspallationsourceeric", + "imtssrl", + "moonharelabs", + "norisnetworkag" + ], + "_pop_contributor_orgs_raw": [ + "@ImtsSrl ", + "@moonharelabs", + "European Spallation Source ERIC", + "noris network AG" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.75, - "_pop_updated_issues_count": 50, - "_pop_closed_issues_count": 30, - "_pop_created_since_days": 82, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 50.0, - "_pop_comment_count": 105.0, + "_pop_commit_frequency": 0.6, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 109, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 6.0, + "_pop_comment_count": 12.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 1469, - "_pop_score": 53.88, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 38.65, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/skvark/opencv-python/master/README.md", - "_readme_localurl": "skvark~opencv-python~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/dddomodossola/remi/master/README.md", + "_readme_localurl": "dddomodossola~remi~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/skvark/opencv-python/master/setup.py", - "https://raw.githubusercontent.com/skvark/opencv-python/master/pyproject.toml" + "https://raw.githubusercontent.com/dddomodossola/remi/master/setup.py" ], "_requirements_localurls": [ - "skvark~opencv-python~setup.py", - "skvark~opencv-python~pyproject.toml" + "dddomodossola~remi~setup.py" ] }, { - "index": 804, + "index": 518, "category": "util", - "githuburl": "https://github.com/miguelgrinberg/python-socketio", + "githuburl": "https://github.com/spack/spack", "featured": null, "links": null, "description": null, - "_repopath": "miguelgrinberg/python-socketio", - "_reponame": "python-socketio", - "_stars": 3151, - "_forks": 512, - "_watches": 63, + "_repopath": "spack/spack", + "_reponame": "spack", + "_stars": 3207, + "_forks": 1833, + "_watches": 104, + "_language": "Python", + "_homepage": "https://spack.io", + "_description": "spack: A flexible package manager that supports multiple versions, configurations, platforms, and compilers.", + "_organization": "spack", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2014-01-08T00:00:00.000Z", + "_age_weeks": 476, + "_stars_per_week": 6.74, "_topics": [ - "socket-io", - "socketio", - "socketio-server", - "websocket", - "long-polling", - "low-latency", - "web-server", "python", - "asyncio", - "eventlet", - "gevent" + "spack", + "package-manager", + "hpc", + "build-tools", + "radiuss", + "scientific-computing", + "macos", + "linux" ], - "_language": "Python", - "_homepage": "", - "_description": "python-socketio: Python Socket.IO server and client", - "_organization": "miguelgrinberg", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-08T00:00:00.000Z", - "_created_at": "2015-07-15T00:00:00.000Z", - "_age_weeks": 387, - "_stars_per_week": 8.13, - "_pop_contributor_count": 61, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 1354, + "_pop_contributor_logins": [ + "adamjstewart@universityofillinoisaturbana-champaign", + "alalazo@np-complete", + "becker33@llnl", + "darmac@(huawei)hisilicontechnologiesco.,limited.", + "davydden", + "glennpj", + "haampie", + "iarspider", + "michaelkuhn", + "tgamblin@llnl" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "untienots" + "(huawei)hisilicontechnologiesco.,limited.", + "llnl", + "np-complete", + "universityofillinoisaturbana-champaign" + ], + "_pop_contributor_orgs_raw": [ + "(Huawei) HiSilicon Technologies CO.,LIMITED.", + "@LLNL", + "@LLNL ", + "University of Illinois at Urbana-Champaign", + "np-complete" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.19, - "_pop_updated_issues_count": 51, - "_pop_closed_issues_count": 43, - "_pop_created_since_days": 90, + "_pop_commit_frequency": 85.79, + "_pop_updated_issues_count": 2026, + "_pop_closed_issues_count": 1443, + "_pop_created_since_days": 111, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 12, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 51.0, - "_pop_comment_count": 105.0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 2026.0, + "_pop_comment_count": 4724.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 285, - "_pop_score": 52.07, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 65.82, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/miguelgrinberg/python-socketio/master/README.md", - "_readme_localurl": "miguelgrinberg~python-socketio~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/spack/spack/master/README.md", + "_readme_localurl": "spack~spack~README.md", "_requirements_filenames": [ - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/miguelgrinberg/python-socketio/master/setup.py", - "https://raw.githubusercontent.com/miguelgrinberg/python-socketio/master/pyproject.toml" + "https://raw.githubusercontent.com/spack/spack/master/pyproject.toml" ], "_requirements_localurls": [ - "miguelgrinberg~python-socketio~setup.py", - "miguelgrinberg~python-socketio~pyproject.toml" + "spack~spack~pyproject.toml" ] }, { - "index": 250, - "category": "web", - "githuburl": "https://github.com/websocket-client/websocket-client", + "index": 966, + "category": "ml-dl", + "githuburl": "https://github.com/facebookresearch/pytorch-biggraph", "featured": null, "links": null, "description": null, - "_repopath": "websocket-client/websocket-client", - "_reponame": "websocket-client", - "_stars": 3133, - "_forks": 724, - "_watches": 88, - "_topics": [ - "websocket", - "websockets", - "websocket-client", - "websockets-client", - "python", - "rfc-6455" - ], + "_repopath": "facebookresearch/pytorch-biggraph", + "_reponame": "PyTorch-BigGraph", + "_stars": 3188, + "_forks": 437, + "_watches": 93, "_language": "Python", - "_homepage": "https://github.com/websocket-client/websocket-client", - "_description": "websocket-client: WebSocket client for Python", - "_organization": "websocket-client", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-04T00:00:00.000Z", - "_created_at": "2010-12-28T00:00:00.000Z", - "_age_weeks": 624, - "_stars_per_week": 5.01, - "_pop_contributor_count": 205, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "piclo", - "redhat,inc", - "yacademy" + "_homepage": "https://torchbiggraph.readthedocs.io/", + "_description": "PyTorch-BigGraph: Generate embeddings from large-scale graph-structured data.", + "_organization": "facebookresearch", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-10-01T00:00:00.000Z", + "_age_weeks": 229, + "_stars_per_week": 13.9, + "_topics": [], + "_last_commit_date": "2022-12-08T00:00:00.000Z", + "_pop_contributor_count": 29, + "_pop_contributor_logins": [ + "StanislavGlebik", + "adamlerer", + "amyreese@omnilib", + "chandlerzuo@https://github.com/facebook", + "dmitryvinn@engineeringmanagerai/mlmeta", + "ezyang", + "indonoso", + "lw@facebook", + "rkindi@meta", + "simonepri@universityofcambridge,sapienzauniversityofrome" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "engineeringmanagerai/mlmeta", + "facebook", + "https://github.com/facebook", + "meta", + "omnilib", + "universityofcambridge,sapienzauniversityofrome" ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.96, - "_pop_updated_issues_count": 32, - "_pop_closed_issues_count": 26, - "_pop_created_since_days": 146, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 7, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 32.0, - "_pop_comment_count": 57.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 986, - "_pop_score": 56.87, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/websocket-client/websocket-client/master/README.md", - "_readme_localurl": "websocket-client~websocket-client~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/websocket-client/websocket-client/master/setup.py" - ], - "_requirements_localurls": [ - "websocket-client~websocket-client~setup.py" - ] - }, - { - "index": 832, - "category": "pandas", - "githuburl": "https://github.com/blaze/blaze", - "featured": null, - "links": null, - "description": null, - "_repopath": "blaze/blaze", - "_reponame": "blaze", - "_stars": 3118, - "_forks": 386, - "_watches": 200, - "_topics": [], - "_language": "Python", - "_homepage": "blaze.pydata.org", - "_description": "blaze: NumPy and Pandas interface to Big Data", - "_organization": "blaze", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2019-08-15T00:00:00.000Z", - "_created_at": "2012-10-26T00:00:00.000Z", - "_age_weeks": 529, - "_stars_per_week": 5.89, - "_pop_contributor_count": 65, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "awsthinkbox", - "coiled", - "formerlyquantopian", - "voltrondata" + "_pop_contributor_orgs_raw": [ + "@facebook", + "@https://github.com/facebook", + "@omnilib ", + "Engineering Manager AI/ML@Meta", + "Meta", + "University of Cambridge, Sapienza University of Rome" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 2, + "_pop_commit_frequency": 0.13, + "_pop_updated_issues_count": 4, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 124, - "_pop_updated_since_days": 41, + "_pop_created_since_days": 53, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 2.0, - "_pop_comment_count": 1.0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 4.0, + "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 1860, - "_pop_score": 41.24, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/blaze/blaze/master/README.rst", - "_readme_localurl": "blaze~blaze~README.rst", + "_pop_dependents_count": 0, + "_pop_score": 30.31, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/pytorch-biggraph/master/README.md", + "_readme_localurl": "facebookresearch~pytorch-biggraph~README.md", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/blaze/blaze/master/setup.py" + "https://raw.githubusercontent.com/facebookresearch/pytorch-biggraph/master/setup.py" ], "_requirements_localurls": [ - "blaze~blaze~setup.py" + "facebookresearch~pytorch-biggraph~setup.py" ] }, { @@ -23249,9 +31859,17 @@ "description": null, "_repopath": "tox-dev/tox", "_reponame": "tox", - "_stars": 3115, - "_forks": 452, - "_watches": 40, + "_stars": 3186, + "_forks": 462, + "_watches": 41, + "_language": "Python", + "_homepage": "https://tox.wiki", + "_description": "tox: Command line driven CI frontend and development task automation tool.", + "_organization": "tox-dev", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-09-17T00:00:00.000Z", + "_age_weeks": 335, + "_stars_per_week": 9.49, "_topics": [ "testing", "python", @@ -23265,40 +31883,55 @@ "gitlab", "circleci", "azure-pipelines", - "hacktoberfest" + "hacktoberfest", + "actions", + "pep-621" ], - "_language": "Python", - "_homepage": "https://tox.wiki", - "_description": "tox: Command line driven CI frontend and development task automation tool.", - "_organization": "tox-dev", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2016-09-17T00:00:00.000Z", - "_age_weeks": 326, - "_stars_per_week": 9.55, - "_pop_contributor_count": 26, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 40, + "_pop_contributor_logins": [ + "eumiro", + "gaborbernat@bloomberglp", + "gnikonorov", + "hexagonrecursion", + "jugmac00@canonical", + "kurtmckee", + "masenf@delltechnologies", + "q0w", + "ssbarnea@redhatansible", + "stephenfin@redhat" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "bloomberglp", "canonical", + "delltechnologies", + "redhat", "redhatansible" ], + "_pop_contributor_orgs_raw": [ + "@canonical", + "Bloomberg LP", + "Dell Technologies", + "Red Hat", + "Red Hat @ansible" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.0, - "_pop_updated_issues_count": 283, - "_pop_closed_issues_count": 229, - "_pop_created_since_days": 76, + "_pop_commit_frequency": 4.48, + "_pop_updated_issues_count": 421, + "_pop_closed_issues_count": 376, + "_pop_created_since_days": 78, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 26, - "_pop_recent_releases_estimated_tags": 25, - "_pop_recent_releases_adjusted_count": 26, - "_pop_issue_count": 284.0, - "_pop_comment_count": 495.0, + "_pop_recent_releases_count": 54, + "_pop_recent_releases_estimated_tags": 29, + "_pop_recent_releases_adjusted_count": 54, + "_pop_issue_count": 421.0, + "_pop_comment_count": 971.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 6182, - "_pop_score": 62.33, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 51.89, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tox-dev/tox/master/README.md", "_readme_localurl": "tox-dev~tox~README.md", @@ -23315,139 +31948,6 @@ "tox-dev~tox~pyproject.toml" ] }, - { - "index": 35, - "category": "data", - "githuburl": "https://github.com/jmcnamara/xlsxwriter", - "featured": null, - "links": null, - "description": null, - "_repopath": "jmcnamara/xlsxwriter", - "_reponame": "XlsxWriter", - "_stars": 3115, - "_forks": 592, - "_watches": 121, - "_topics": [ - "python", - "xlsx-files", - "libxlsxwriter", - "pandas", - "charts", - "spreadsheet", - "xlsx", - "xlsxwriter" - ], - "_language": "Python", - "_homepage": "https://xlsxwriter.readthedocs.io", - "_description": "XlsxWriter: A Python module for creating Excel XLSX files.", - "_organization": "jmcnamara", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2013-01-04T00:00:00.000Z", - "_age_weeks": 519, - "_stars_per_week": 6.0, - "_pop_contributor_count": 47, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "crunch.io" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.79, - "_pop_updated_issues_count": 32, - "_pop_closed_issues_count": 23, - "_pop_created_since_days": 121, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 15, - "_pop_recent_releases_adjusted_count": 15, - "_pop_issue_count": 32.0, - "_pop_comment_count": 87.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.7, - "_pop_dependents_count": 362, - "_pop_score": 52.53, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/jmcnamara/xlsxwriter/master/README.rst", - "_readme_localurl": "jmcnamara~xlsxwriter~README.rst", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/jmcnamara/xlsxwriter/master/setup.py" - ], - "_requirements_localurls": [ - "jmcnamara~xlsxwriter~setup.py" - ] - }, - { - "index": 518, - "category": "util", - "githuburl": "https://github.com/spack/spack", - "featured": null, - "links": null, - "description": null, - "_repopath": "spack/spack", - "_reponame": "spack", - "_stars": 3102, - "_forks": 1796, - "_watches": 105, - "_topics": [ - "python", - "spack", - "package-manager", - "hpc", - "build-tools", - "radiuss", - "scientific-computing", - "macos", - "linux" - ], - "_language": "Python", - "_homepage": "https://spack.io", - "_description": "spack: A flexible package manager that supports multiple versions, configurations, platforms, and compilers.", - "_organization": "spack", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2014-01-08T00:00:00.000Z", - "_age_weeks": 466, - "_stars_per_week": 6.65, - "_pop_contributor_count": 1314, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "llnl", - "np-complete", - "universityofillinoisaturbana-champaign" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 84.79, - "_pop_updated_issues_count": 2517, - "_pop_closed_issues_count": 1844, - "_pop_created_since_days": 109, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 2515.0, - "_pop_comment_count": 5597.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.2, - "_pop_dependents_count": 1578, - "_pop_score": 77.97, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/spack/spack/master/README.md", - "_readme_localurl": "spack~spack~README.md", - "_requirements_filenames": [ - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/spack/spack/master/pyproject.toml" - ], - "_requirements_localurls": [ - "spack~spack~pyproject.toml" - ] - }, { "index": 443, "category": "gis", @@ -23457,42 +31957,65 @@ "description": null, "_repopath": "shapely/shapely", "_reponame": "shapely", - "_stars": 3100, - "_forks": 501, - "_watches": 82, - "_topics": [], + "_stars": 3175, + "_forks": 513, + "_watches": 85, "_language": "Python", "_homepage": "https://shapely.readthedocs.io/en/stable/", "_description": "shapely: Manipulation and analysis of geometric objects", "_organization": "shapely", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_updated_at": "2023-02-20T00:00:00.000Z", "_created_at": "2011-12-31T00:00:00.000Z", - "_age_weeks": 572, - "_stars_per_week": 5.42, - "_pop_contributor_count": 140, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 581, + "_stars_per_week": 5.46, + "_topics": [], + "_last_commit_date": "2023-02-13T00:00:00.000Z", + "_pop_contributor_count": 144, + "_pop_contributor_logins": [ + "aronbierbaum", + "brendan-ward@astutespruce", + "caspervdw@nelen&schuurmans", + "jorisvandenbossche", + "jwass", + "mwtoews@gnsscience", + "olt@omniscale", + "sgillies@planetlabs", + "snorfalorpagus", + "tomplex@faradayio" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "astutespruce", + "faradayio", "gnsscience", "nelen&schuurmans", + "omniscale", "planetlabs" ], + "_pop_contributor_orgs_raw": [ + "@faradayio", + "@planetlabs", + "Astute Spruce, LLC", + "GNS Science", + "Nelen & Schuurmans", + "Omniscale" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.21, - "_pop_updated_issues_count": 221, - "_pop_closed_issues_count": 143, - "_pop_created_since_days": 134, + "_pop_commit_frequency": 3.44, + "_pop_updated_issues_count": 193, + "_pop_closed_issues_count": 122, + "_pop_created_since_days": 136, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 14, + "_pop_recent_releases_count": 13, "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 14, - "_pop_issue_count": 221.0, - "_pop_comment_count": 488.0, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 193.0, + "_pop_comment_count": 635.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.2, - "_pop_dependents_count": 135, - "_pop_score": 60.43, + "_pop_comment_frequency": 3.3, + "_pop_dependents_count": 0, + "_pop_score": 55.46, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/shapely/shapely/master/README.rst", "_readme_localurl": "shapely~shapely~README.rst", @@ -23510,127 +32033,177 @@ ] }, { - "index": 0, - "category": "data", - "githuburl": "https://github.com/andialbrecht/sqlparse", + "index": 348, + "category": "ml-ops", + "githuburl": "https://github.com/evidentlyai/evidently", "featured": null, "links": null, "description": null, - "_repopath": "andialbrecht/sqlparse", - "_reponame": "sqlparse", - "_stars": 3091, - "_forks": 613, - "_watches": 93, - "_topics": [], + "_repopath": "evidentlyai/evidently", + "_reponame": "evidently", + "_stars": 3172, + "_forks": 341, + "_watches": 35, "_language": "Python", "_homepage": "", - "_description": "sqlparse: A non-validating SQL parser module for Python", - "_organization": "andialbrecht", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-09-23T00:00:00.000Z", - "_created_at": "2012-04-18T00:00:00.000Z", - "_age_weeks": 556, - "_stars_per_week": 5.55, - "_pop_contributor_count": 100, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_description": "evidently: Evaluate and monitor ML models from validation to production. Join our Discord: https://discord.com/invite/xZjKRaNp8b", + "_organization": "evidentlyai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-11-25T00:00:00.000Z", + "_age_weeks": 117, + "_stars_per_week": 27.11, + "_topics": [ + "data-drift", + "jupyter-notebook", + "pandas-dataframe", + "machine-learning", + "model-monitoring", + "html-report", + "production-machine-learning", + "machine-learning-operations", + "mlops", + "data-science", + "hacktoberfest" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 35, + "_pop_contributor_logins": [ + "0lgaF", + "AntonisCSt", + "Liraim", + "SangamSwadiK", + "Tapot@intento,evidentlyai", + "burkovae", + "elenasamuylova@evidentlyai", + "emeli-dral", + "inderpreetsingh01", + "strickvl@zenml" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "dyte-in,mafalda-sfu", - "pioneervalleybooks" + "evidentlyai", + "intento,evidentlyai", + "zenml" + ], + "_pop_contributor_orgs_raw": [ + "Evidently AI", + "Intento, Evidently AI", + "ZenML" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.46, - "_pop_updated_issues_count": 27, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 130, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 27.0, - "_pop_comment_count": 36.0, + "_pop_commit_frequency": 14.87, + "_pop_updated_issues_count": 78, + "_pop_closed_issues_count": 64, + "_pop_created_since_days": 27, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 22, + "_pop_recent_releases_estimated_tags": 20, + "_pop_recent_releases_adjusted_count": 22, + "_pop_issue_count": 78.0, + "_pop_comment_count": 77.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 2598, - "_pop_score": 50.67, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/andialbrecht/sqlparse/master/README.rst", - "_readme_localurl": "andialbrecht~sqlparse~README.rst", + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 44.02, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/evidentlyai/evidently/master/README.md", + "_readme_localurl": "evidentlyai~evidently~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/andialbrecht/sqlparse/master/setup.py" + "https://raw.githubusercontent.com/evidentlyai/evidently/master/requirements.txt", + "https://raw.githubusercontent.com/evidentlyai/evidently/master/setup.py" ], "_requirements_localurls": [ - "andialbrecht~sqlparse~setup.py" + "evidentlyai~evidently~requirements.txt", + "evidentlyai~evidently~setup.py" ] }, { - "index": 260, - "category": "util", - "githuburl": "https://github.com/python-markdown/markdown", + "index": 250, + "category": "web", + "githuburl": "https://github.com/websocket-client/websocket-client", "featured": null, "links": null, "description": null, - "_repopath": "python-markdown/markdown", - "_reponame": "markdown", - "_stars": 3079, - "_forks": 789, - "_watches": 76, + "_repopath": "websocket-client/websocket-client", + "_reponame": "websocket-client", + "_stars": 3166, + "_forks": 730, + "_watches": 90, + "_language": "Python", + "_homepage": "https://github.com/websocket-client/websocket-client", + "_description": "websocket-client: WebSocket client for Python", + "_organization": "websocket-client", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2010-12-28T00:00:00.000Z", + "_age_weeks": 634, + "_stars_per_week": 4.99, "_topics": [ - "python-markdown", - "markdown", - "markdown-parser", - "markdown-to-html", + "websocket", + "websockets", + "websocket-client", + "websockets-client", "python", - "python3" + "rfc-6455" ], - "_language": "Python", - "_homepage": "https://python-markdown.github.io/", - "_description": "markdown: A Python implementation of John Gruber\u2019s Markdown with Extension support.", - "_organization": "python-markdown", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-09T00:00:00.000Z", - "_created_at": "2010-05-29T00:00:00.000Z", - "_age_weeks": 655, - "_stars_per_week": 4.7, - "_pop_contributor_count": 164, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-05T00:00:00.000Z", + "_pop_contributor_count": 207, + "_pop_contributor_logins": [ + "Mottl", + "allanlewis@piclo", + "bubbleboy14", + "ekeydar", + "engn33r@yacademy", + "hugovk@nordsoftware", + "liris", + "louisliu", + "mjhanninen", + "ralphbean@redhat,inc" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "rangle.io", - "theinterfacefinancialgroup" + "nordsoftware", + "piclo", + "redhat,inc", + "yacademy" + ], + "_pop_contributor_orgs_raw": [ + "@piclo", + "Nord Software", + "Red Hat, Inc", + "yAcademy" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.62, - "_pop_updated_issues_count": 25, - "_pop_closed_issues_count": 19, - "_pop_created_since_days": 153, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 25.0, - "_pop_comment_count": 100.0, + "_pop_commit_frequency": 0.75, + "_pop_updated_issues_count": 34, + "_pop_closed_issues_count": 28, + "_pop_created_since_days": 148, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 34.0, + "_pop_comment_count": 57.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 4.0, - "_pop_dependents_count": 1745, - "_pop_score": 59.49, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 46.76, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/python-markdown/markdown/master/README.md", - "_readme_localurl": "python-markdown~markdown~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/websocket-client/websocket-client/master/README.md", + "_readme_localurl": "websocket-client~websocket-client~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/python-markdown/markdown/master/setup.py", - "https://raw.githubusercontent.com/python-markdown/markdown/master/pyproject.toml" + "https://raw.githubusercontent.com/websocket-client/websocket-client/master/setup.py" ], "_requirements_localurls": [ - "python-markdown~markdown~setup.py", - "python-markdown~markdown~pyproject.toml" + "websocket-client~websocket-client~setup.py" ] }, { @@ -23642,46 +32215,68 @@ "description": null, "_repopath": "minimaxir/gpt-2-simple", "_reponame": "gpt-2-simple", - "_stars": 3070, - "_forks": 633, + "_stars": 3162, + "_forks": 650, "_watches": 74, + "_language": "Python", + "_homepage": "", + "_description": "gpt-2-simple: Python package to easily retrain OpenAI's GPT-2 text-generating model on new texts", + "_organization": "minimaxir", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-04-13T00:00:00.000Z", + "_age_weeks": 201, + "_stars_per_week": 15.69, "_topics": [ "text-generation", "tensorflow", "openai", "textgenrnn" ], - "_language": "Python", - "_homepage": "", - "_description": "gpt-2-simple: Python package to easily retrain OpenAI's GPT-2 text-generating model on new texts", - "_organization": "minimaxir", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-05-22T00:00:00.000Z", - "_created_at": "2019-04-13T00:00:00.000Z", - "_age_weeks": 192, - "_stars_per_week": 15.97, "_pop_contributor_count": 21, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "biranchi2018", + "carlos-aguayo@appian", + "charliekmorris", + "chrisrytting@byuperception,cognition,andcontrollab", + "duhaime@universityofnotredame", + "erjanmx", + "gte620v", + "k0a1a@cosmicberlin", + "minimaxir@buzzfeed", + "woctezuma" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "appian", "buzzfeed", + "byuperception,cognition,andcontrollab", + "cosmicberlin", "universityofnotredame" ], + "_pop_contributor_orgs_raw": [ + "@CosmicBerlin ", + "@appian", + "@buzzfeed ", + "BYU Perception, Cognition, and Control Lab", + "University of Notre Dame" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.06, + "_pop_commit_frequency": 0.02, "_pop_updated_issues_count": 9, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 45, - "_pop_updated_since_days": 7, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 47, + "_pop_updated_since_days": 9, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 5, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, "_pop_issue_count": 9.0, "_pop_comment_count": 7.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.8, "_pop_dependents_count": 0, - "_pop_score": 26.56, + "_pop_score": 28.65, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/minimaxir/gpt-2-simple/master/README.md", "_readme_localurl": "minimaxir~gpt-2-simple~README.md", @@ -23699,204 +32294,348 @@ ] }, { - "index": 363, - "category": "ml-ops", - "githuburl": "https://github.com/kubeflow/pipelines", + "index": 35, + "category": "data", + "githuburl": "https://github.com/jmcnamara/xlsxwriter", "featured": null, "links": null, "description": null, - "_repopath": "kubeflow/pipelines", - "_reponame": "pipelines", - "_stars": 3069, - "_forks": 1358, - "_watches": 103, + "_repopath": "jmcnamara/xlsxwriter", + "_reponame": "XlsxWriter", + "_stars": 3158, + "_forks": 592, + "_watches": 122, + "_language": "Python", + "_homepage": "https://xlsxwriter.readthedocs.io", + "_description": "XlsxWriter: A Python module for creating Excel XLSX files.", + "_organization": "jmcnamara", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2013-01-04T00:00:00.000Z", + "_age_weeks": 528, + "_stars_per_week": 5.97, "_topics": [ - "kubeflow-pipelines", - "mlops", - "kubeflow", - "machine-learning", - "kubernetes", - "pipeline", - "data-science" + "python", + "xlsx-files", + "libxlsxwriter", + "pandas", + "charts", + "spreadsheet", + "xlsx", + "xlsxwriter" ], - "_language": "Python", - "_homepage": "https://www.kubeflow.org/docs/components/pipelines/", - "_description": "pipelines: Machine Learning Pipelines for Kubeflow", - "_organization": "kubeflow", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2018-05-12T00:00:00.000Z", - "_age_weeks": 240, - "_stars_per_week": 12.77, - "_pop_contributor_count": 350, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 47, + "_pop_contributor_logins": [ + "danielquinn", + "dieterv77", + "eddiechapman", + "hugovk@nordsoftware", + "jkyeung", + "jmcnamara", + "jonasdiemer", + "jvrsantacruz", + "krysros", + "percious@crunch.io" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google" + "crunch.io", + "nordsoftware" + ], + "_pop_contributor_orgs_raw": [ + "Crunch.io", + "Nord Software" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 14.87, - "_pop_updated_issues_count": 577, - "_pop_closed_issues_count": 245, - "_pop_created_since_days": 56, + "_pop_commit_frequency": 1.1, + "_pop_updated_issues_count": 42, + "_pop_closed_issues_count": 34, + "_pop_created_since_days": 123, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 30, - "_pop_recent_releases_estimated_tags": 28, - "_pop_recent_releases_adjusted_count": 30, - "_pop_issue_count": 577.0, - "_pop_comment_count": 1161.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 42.0, + "_pop_comment_count": 102.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 3456, - "_pop_score": 67.57, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/kubeflow/pipelines/master/README.md", - "_readme_localurl": "kubeflow~pipelines~README.md", - "_requirements_filenames": [ - "requirements.txt" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/kubeflow/pipelines/master/requirements.txt" + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 0, + "_pop_score": 44.31, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/jmcnamara/xlsxwriter/master/README.rst", + "_readme_localurl": "jmcnamara~xlsxwriter~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/jmcnamara/xlsxwriter/master/setup.py" ], "_requirements_localurls": [ - "kubeflow~pipelines~requirements.txt" + "jmcnamara~xlsxwriter~setup.py" ] }, { - "index": 140, - "category": "nlp", - "githuburl": "https://github.com/neuml/txtai", + "index": 381, + "category": "ml-ops", + "githuburl": "https://github.com/aimhubio/aim", "featured": null, "links": null, "description": null, - "_repopath": "neuml/txtai", - "_reponame": "txtai", - "_stars": 3059, - "_forks": 273, - "_watches": 54, + "_repopath": "aimhubio/aim", + "_reponame": "aim", + "_stars": 3157, + "_forks": 196, + "_watches": 37, + "_language": "TypeScript", + "_homepage": "https://aimstack.io", + "_description": "Aim \ud83d\udcab \u2014 easy-to-use and performant open-source ML experiment tracker.", + "_organization": "aimhubio", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-05-31T00:00:00.000Z", + "_age_weeks": 194, + "_stars_per_week": 16.21, "_topics": [ "python", - "search", + "ai", + "data-science", + "data-visualization", + "experiment-tracking", "machine-learning", - "nlp", - "deep-learning", - "document-search", - "audio-search", - "image-search", - "video-search", - "semantic-search", - "similarity-search", - "neural-search", - "contextual-search", - "vector-search", - "machine-learning-workflows", - "machine-learning-pipelines", - "microservice", - "api", - "cloud-native", - "txtai" + "metadata", + "metadata-tracking", + "ml", + "mlflow", + "mlops", + "pytorch", + "tensorboard", + "tensorflow", + "visualization" ], - "_language": "Python", - "_homepage": "https://neuml.github.io/txtai", - "_description": "txtai: \ud83d\udca1 Build AI-powered semantic search applications ", - "_organization": "neuml", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2020-08-09T00:00:00.000Z", - "_age_weeks": 123, - "_stars_per_week": 24.84, - "_pop_contributor_count": 8, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-09T00:00:00.000Z", + "_pop_contributor_count": 52, + "_pop_contributor_logins": [ + "KaroMourad@aim", + "SGevorg@aimhubio", + "VkoHov@aimhub", + "alberttorosyan", + "arsengit@aimstack", + "devfox-se", + "gorarakelyan@aimstack", + "mihran113@aimhubio", + "roubkar@aimhubio", + "rubenaprikyan@aimhub" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "bigtincan", - "neuml" + "aim", + "aimhub", + "aimhubio", + "aimstack" + ], + "_pop_contributor_orgs_raw": [ + "@aimhubio", + "@aimhubio ", + "Aim", + "AimHub", + "AimStack", + "Aimhub" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 7.63, - "_pop_updated_issues_count": 68, - "_pop_closed_issues_count": 57, - "_pop_created_since_days": 29, + "_pop_commit_frequency": 11.23, + "_pop_updated_issues_count": 240, + "_pop_closed_issues_count": 154, + "_pop_created_since_days": 45, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 11, - "_pop_recent_releases_estimated_tags": 11, - "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 68.0, - "_pop_comment_count": 99.0, + "_pop_recent_releases_count": 41, + "_pop_recent_releases_estimated_tags": 41, + "_pop_recent_releases_adjusted_count": 41, + "_pop_issue_count": 240.0, + "_pop_comment_count": 330.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 3, - "_pop_score": 40.01, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 49.39, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/neuml/txtai/master/README.md", - "_readme_localurl": "neuml~txtai~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/aimhubio/aim/master/README.md", + "_readme_localurl": "aimhubio~aim~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/neuml/txtai/master/setup.py", - "https://raw.githubusercontent.com/neuml/txtai/master/pyproject.toml" + "https://raw.githubusercontent.com/aimhubio/aim/master/requirements.txt", + "https://raw.githubusercontent.com/aimhubio/aim/master/setup.py", + "https://raw.githubusercontent.com/aimhubio/aim/master/pyproject.toml" ], "_requirements_localurls": [ - "neuml~txtai~setup.py", - "neuml~txtai~pyproject.toml" + "aimhubio~aim~requirements.txt", + "aimhubio~aim~setup.py", + "aimhubio~aim~pyproject.toml" ] }, { - "index": 138, - "category": "ml-interpretability", - "githuburl": "https://github.com/pair-code/lit", - "featured": 1.0, + "index": 0, + "category": "data", + "githuburl": "https://github.com/andialbrecht/sqlparse", + "featured": null, "links": null, "description": null, - "_repopath": "pair-code/lit", - "_reponame": "lit", - "_stars": 3043, - "_forks": 322, - "_watches": 71, - "_topics": [ - "machine-learning", - "natural-language-processing", - "visualization" + "_repopath": "andialbrecht/sqlparse", + "_reponame": "sqlparse", + "_stars": 3153, + "_forks": 623, + "_watches": 94, + "_language": "Python", + "_homepage": "", + "_description": "sqlparse: A non-validating SQL parser module for Python", + "_organization": "andialbrecht", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-04-18T00:00:00.000Z", + "_age_weeks": 566, + "_stars_per_week": 5.57, + "_topics": [], + "_last_commit_date": "2023-01-05T00:00:00.000Z", + "_pop_contributor_count": 102, + "_pop_contributor_logins": [ + "adamgreenhall", + "andialbrecht", + "darikg", + "dbczumar", + "jdufresne@pioneervalleybooks", + "mrmasterplan@delegate.dk", + "phdru", + "piranna@mafalda-sfu", + "sjoerdjob", + "vmuriart" ], - "_language": "TypeScript", - "_homepage": "https://pair-code.github.io/lit", - "_description": "lit: The Learning Interpretability Tool: Interactively analyze ML models to understand their behavior in an extensible and framework agnostic interface.", - "_organization": "pair-code", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", - "_created_at": "2020-07-28T00:00:00.000Z", - "_age_weeks": 124, - "_stars_per_week": 24.37, - "_pop_contributor_count": 27, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "deepmind", - "google" + "delegate.dk", + "mafalda-sfu", + "pioneervalleybooks" + ], + "_pop_contributor_orgs_raw": [ + "@Mafalda-SFU", + "Delegate.dk", + "Pioneer Valley Books" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.96, - "_pop_updated_issues_count": 168, - "_pop_closed_issues_count": 154, - "_pop_created_since_days": 29, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 2, + "_pop_commit_frequency": 0.71, + "_pop_updated_issues_count": 35, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 132, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 168.0, - "_pop_comment_count": 33.0, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 35.0, + "_pop_comment_count": 58.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.2, - "_pop_dependents_count": 6, - "_pop_score": 38.02, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pair-code/lit/master/README.md", - "_readme_localurl": "pair-code~lit~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 40.47, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/andialbrecht/sqlparse/master/README.rst", + "_readme_localurl": "andialbrecht~sqlparse~README.rst", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/andialbrecht/sqlparse/master/pyproject.toml" + ], + "_requirements_localurls": [ + "andialbrecht~sqlparse~pyproject.toml" + ] + }, + { + "index": 905, + "category": "util", + "githuburl": "https://github.com/pypi/warehouse", + "featured": null, + "links": null, + "description": null, + "_repopath": "pypi/warehouse", + "_reponame": "warehouse", + "_stars": 3146, + "_forks": 910, + "_watches": 103, + "_language": "Python", + "_homepage": "https://pypi.org", + "_description": "warehouse: The Python Package Index", + "_organization": "pypi", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2013-03-30T00:00:00.000Z", + "_age_weeks": 516, + "_stars_per_week": 6.09, + "_topics": [], + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 332, + "_pop_contributor_logins": [ + "brainwane@changesetconsulting", + "dependabot[bot]", + "di@google", + "dstufft@datadog", + "ewdurbin@psf", + "miketheman", + "nlhkabu", + "pyup-bot@pyupio", + "weblate@weblateorg", + "woodruffw@trailofbits" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "changesetconsulting", + "datadog", + "google", + "psf", + "pyupio", + "trailofbits", + "weblateorg" + ], + "_pop_contributor_orgs_raw": [ + "@DataDog", + "@WeblateOrg ", + "@google", + "@psf", + "@pyupio", + "@trailofbits ", + "Changeset Consulting" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 8.96, + "_pop_updated_issues_count": 585, + "_pop_closed_issues_count": 451, + "_pop_created_since_days": 120, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 584.0, + "_pop_comment_count": 692.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 53.9, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pypi/warehouse/master/README.rst", + "_readme_localurl": "pypi~warehouse~README.rst", + "_requirements_filenames": [ + "requirements.txt", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pypi/warehouse/master/requirements.txt", + "https://raw.githubusercontent.com/pypi/warehouse/master/pyproject.toml" + ], + "_requirements_localurls": [ + "pypi~warehouse~requirements.txt", + "pypi~warehouse~pyproject.toml" + ] }, { "index": 610, @@ -23907,9 +32646,17 @@ "description": null, "_repopath": "seleniumbase/seleniumbase", "_reponame": "SeleniumBase", - "_stars": 3027, - "_forks": 726, - "_watches": 119, + "_stars": 3128, + "_forks": 756, + "_watches": 121, + "_language": "Python", + "_homepage": "https://seleniumbase.io", + "_description": "SeleniumBase: A Python browser automation framework for creating reliable end-to-end tests.", + "_organization": "seleniumbase", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-03-04T00:00:00.000Z", + "_age_weeks": 468, + "_stars_per_week": 6.68, "_topics": [ "python", "selenium", @@ -23925,39 +32672,54 @@ "webkit", "chromedriver", "firefox", - "test" + "test", + "python3" ], - "_language": "Python", - "_homepage": "https://seleniumbase.io", - "_description": "SeleniumBase: Python framework for web automation and testing that extends Selenium.", - "_organization": "seleniumbase", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2014-03-04T00:00:00.000Z", - "_age_weeks": 458, - "_stars_per_week": 6.6, + "_last_commit_date": "2023-02-18T00:00:00.000Z", "_pop_contributor_count": 35, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "TaylorMcGinnis", + "aklajnert@akamaitechnologies", + "alexrudd2@numat", + "dimaspivak@streamsets", + "johnhiggs", + "mdmintz@https://www.iboss.com/", + "piotrkochan", + "rogererens", + "stevemachacz@nausetconsulting", + "surevs" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "akamaitechnologies", "https://www.iboss.com/", - "nausetconsulting" + "nausetconsulting", + "numat", + "streamsets" + ], + "_pop_contributor_orgs_raw": [ + "@numat ", + "@streamsets ", + "Akamai Technologies", + "Nauset Consulting", + "https://www.iboss.com/" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 24.38, - "_pop_updated_issues_count": 108, - "_pop_closed_issues_count": 105, - "_pop_created_since_days": 107, + "_pop_commit_frequency": 25.67, + "_pop_updated_issues_count": 156, + "_pop_closed_issues_count": 155, + "_pop_created_since_days": 109, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 152, - "_pop_recent_releases_estimated_tags": 86, - "_pop_recent_releases_adjusted_count": 152, - "_pop_issue_count": 108.0, - "_pop_comment_count": 127.0, + "_pop_recent_releases_count": 148, + "_pop_recent_releases_estimated_tags": 87, + "_pop_recent_releases_adjusted_count": 148, + "_pop_issue_count": 156.0, + "_pop_comment_count": 233.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 318, - "_pop_score": 58.31, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 52.56, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/seleniumbase/seleniumbase/master/README.md", "_readme_localurl": "seleniumbase~seleniumbase~README.md", @@ -23975,78 +32737,269 @@ ] }, { - "index": 42, - "category": "nlp", - "githuburl": "https://github.com/life4/textdistance", + "index": 260, + "category": "util", + "githuburl": "https://github.com/python-markdown/markdown", "featured": null, "links": null, "description": null, - "_repopath": "life4/textdistance", - "_reponame": "textdistance", - "_stars": 3015, - "_forks": 240, - "_watches": 61, + "_repopath": "python-markdown/markdown", + "_reponame": "markdown", + "_stars": 3125, + "_forks": 810, + "_watches": 75, + "_language": "Python", + "_homepage": "https://python-markdown.github.io/", + "_description": "markdown: A Python implementation of John Gruber\u2019s Markdown with Extension support.", + "_organization": "python-markdown", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2010-05-29T00:00:00.000Z", + "_age_weeks": 664, + "_stars_per_week": 4.7, "_topics": [ - "distance", - "algorithm", + "python-markdown", + "markdown", + "markdown-parser", + "markdown-to-html", "python", - "textdistance", - "hamming-distance", - "levenshtein-distance", - "damerau-levenshtein", - "damerau-levenshtein-distance", - "algorithms", - "distance-calculation", - "jellyfish", - "diff", - "levenshtein" + "python3" + ], + "_last_commit_date": "2023-01-09T00:00:00.000Z", + "_pop_contributor_count": 165, + "_pop_contributor_logins": [ + "artynusov", + "davidchambers", + "facelessuser", + "lahwaacz", + "lama7", + "mdirolf", + "mitya57@theinterfacefinancialgroup", + "slig", + "waylan", + "yuri@rangle.io" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "rangle.io", + "theinterfacefinancialgroup" + ], + "_pop_contributor_orgs_raw": [ + "The Interface Financial Group", + "rangle.io" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.62, + "_pop_updated_issues_count": 18, + "_pop_closed_issues_count": 15, + "_pop_created_since_days": 155, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 18.0, + "_pop_comment_count": 38.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 0, + "_pop_score": 42.02, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/python-markdown/markdown/master/README.md", + "_readme_localurl": "python-markdown~markdown~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/python-markdown/markdown/master/setup.py", + "https://raw.githubusercontent.com/python-markdown/markdown/master/pyproject.toml" ], + "_requirements_localurls": [ + "python-markdown~markdown~setup.py", + "python-markdown~markdown~pyproject.toml" + ] + }, + { + "index": 832, + "category": "pandas", + "githuburl": "https://github.com/blaze/blaze", + "featured": null, + "links": null, + "description": null, + "_repopath": "blaze/blaze", + "_reponame": "blaze", + "_stars": 3123, + "_forks": 387, + "_watches": 199, "_language": "Python", - "_homepage": "", - "_description": "textdistance: Compute distance between sequences. 30+ algorithms, pure python implementation, common interface, optional external libs usage.", - "_organization": "life4", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-09-18T00:00:00.000Z", - "_created_at": "2017-05-05T00:00:00.000Z", - "_age_weeks": 293, - "_stars_per_week": 10.28, - "_pop_contributor_count": 13, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_homepage": "blaze.pydata.org", + "_description": "blaze: NumPy and Pandas interface to Big Data", + "_organization": "blaze", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2012-10-26T00:00:00.000Z", + "_age_weeks": 538, + "_stars_per_week": 5.8, + "_topics": [], + "_last_commit_date": "2019-08-15T00:00:00.000Z", + "_pop_contributor_count": 65, + "_pop_contributor_logins": [ + "aterrel@numfocus", + "brittainhard", + "cpcloud@voltrondata", + "kwmsmith", + "llllllllll@formerlyquantopian", + "markflorisson@mlabs", + "mrocklin@coiled", + "mwiebe@awsthinkbox", + "sdiehl", + "teoliphant@quansight,openteams" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "archlinux", - "sendcloud", - "universityofcambridge" + "awsthinkbox", + "coiled", + "formerlyquantopian", + "mlabs", + "numfocus", + "quansight,openteams", + "voltrondata" + ], + "_pop_contributor_orgs_raw": [ + "@coiled ", + "@voltrondata", + "AWS Thinkbox", + "MLabs", + "NumFOCUS", + "Quansight, OpenTeams", + "formerly @quantopian" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.79, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 68, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 0.0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 126, + "_pop_updated_since_days": 43, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 2.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 73, - "_pop_score": 32.26, + "_pop_dependents_count": 0, + "_pop_score": 28.69, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/blaze/blaze/master/README.rst", + "_readme_localurl": "blaze~blaze~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/blaze/blaze/master/setup.py" + ], + "_requirements_localurls": [ + "blaze~blaze~setup.py" + ] + }, + { + "index": 715, + "category": "ml-ops", + "githuburl": "https://github.com/flyteorg/flyte", + "featured": null, + "links": null, + "description": null, + "_repopath": "flyteorg/flyte", + "_reponame": "flyte", + "_stars": 3112, + "_forks": 326, + "_watches": 267, + "_language": "Python", + "_homepage": "https://flyte.org", + "_description": "flyte: Kubernetes-native workflow automation platform for complex, mission-critical data and ML processes at scale. It has been battle-tested at Lyft, Spotify, Freenome, and others and is truly open-source.", + "_organization": "flyteorg", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-10-21T00:00:00.000Z", + "_age_weeks": 174, + "_stars_per_week": 17.86, + "_topics": [ + "flyte", + "machine-learning", + "golang", + "scale", + "workflow", + "data-science", + "data-analysis", + "data", + "kubernetes-operator", + "kubernetes", + "orchestration-engine", + "mlops", + "dataops", + "grpc", + "python", + "battle-tested", + "production", + "production-grade", + "declarative", + "hacktoberfest" + ], + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 114, + "_pop_contributor_logins": [ + "EngHabu@flyteorg", + "SandraGH5@union.ai", + "SmritiSatyanV", + "cosmicBboy@unionai", + "evalsocket@unionai", + "flyte-bot", + "jeevb@freenome", + "katrogan@unionai", + "kumare3@unionai", + "wild-endeavor" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "flyteorg", + "freenome", + "union.ai", + "unionai" + ], + "_pop_contributor_orgs_raw": [ + "@flyteorg ", + "@unionai", + "@unionai ", + "Freenome", + "Union.ai", + "unionai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.0, + "_pop_updated_issues_count": 377, + "_pop_closed_issues_count": 155, + "_pop_created_since_days": 41, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 28, + "_pop_recent_releases_estimated_tags": 25, + "_pop_recent_releases_adjusted_count": 28, + "_pop_issue_count": 377.0, + "_pop_comment_count": 320.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 49.19, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/life4/textdistance/master/README.md", - "_readme_localurl": "life4~textdistance~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/flyteorg/flyte/master/README.md", + "_readme_localurl": "flyteorg~flyte~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/life4/textdistance/master/setup.py", - "https://raw.githubusercontent.com/life4/textdistance/master/pyproject.toml" + "https://raw.githubusercontent.com/flyteorg/flyte/master/requirements.txt" ], "_requirements_localurls": [ - "life4~textdistance~setup.py", - "life4~textdistance~pyproject.toml" + "flyteorg~flyte~requirements.txt" ] }, { @@ -24058,9 +33011,17 @@ "description": null, "_repopath": "apple/coremltools", "_reponame": "coremltools", - "_stars": 2999, - "_forks": 481, - "_watches": 110, + "_stars": 3111, + "_forks": 488, + "_watches": 113, + "_language": "Python", + "_homepage": "https://coremltools.readme.io", + "_description": "coremltools: Core ML tools contain supporting tools for Core ML model conversion, editing, and validation.", + "_organization": "apple", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-06-30T00:00:00.000Z", + "_age_weeks": 294, + "_stars_per_week": 10.56, "_topics": [ "coremltools", "tensorflow", @@ -24070,36 +33031,48 @@ "model-converter", "model-conversion" ], - "_language": "Python", - "_homepage": "https://coremltools.readme.io", - "_description": "coremltools: Core ML tools contain supporting tools for Core ML model conversion, editing, and validation.", - "_organization": "apple", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2017-06-30T00:00:00.000Z", - "_age_weeks": 285, - "_stars_per_week": 10.51, - "_pop_contributor_count": 143, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 145, + "_pop_contributor_logins": [ + "1duo", + "TobyRoseman@apple", + "aseemw", + "bhushan23@stealthmode", + "fukatani", + "gustavla", + "jakesabathia2", + "slin07@apple", + "srikris@apple", + "tonybove-apple@expertsupport-apple" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "apple" + "apple", + "expertsupport-apple", + "stealthmode" + ], + "_pop_contributor_orgs_raw": [ + "@apple", + "Apple", + "Expert Support - Apple", + "Stealth Mode" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.0, - "_pop_updated_issues_count": 312, - "_pop_closed_issues_count": 236, - "_pop_created_since_days": 67, + "_pop_commit_frequency": 2.08, + "_pop_updated_issues_count": 143, + "_pop_closed_issues_count": 80, + "_pop_created_since_days": 69, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, + "_pop_recent_releases_count": 6, "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 312.0, - "_pop_comment_count": 465.0, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 143.0, + "_pop_comment_count": 317.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 49, - "_pop_score": 51.2, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 0, + "_pop_score": 47.78, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/apple/coremltools/master/README.md", "_readme_localurl": "apple~coremltools~README.md", @@ -24114,207 +33087,427 @@ ] }, { - "index": 698, - "category": "util", - "githuburl": "https://github.com/joblib/joblib", + "index": 363, + "category": "ml-ops", + "githuburl": "https://github.com/kubeflow/pipelines", "featured": null, "links": null, "description": null, - "_repopath": "joblib/joblib", - "_reponame": "joblib", - "_stars": 2994, - "_forks": 357, - "_watches": 63, + "_repopath": "kubeflow/pipelines", + "_reponame": "pipelines", + "_stars": 3107, + "_forks": 1382, + "_watches": 102, + "_language": "Python", + "_homepage": "https://www.kubeflow.org/docs/components/pipelines/", + "_description": "pipelines: Machine Learning Pipelines for Kubeflow", + "_organization": "kubeflow", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-05-12T00:00:00.000Z", + "_age_weeks": 249, + "_stars_per_week": 12.45, "_topics": [ - "python", - "parallel-computing", - "caching", - "multiprocessing", - "threading", - "memoization" + "kubeflow-pipelines", + "mlops", + "kubeflow", + "machine-learning", + "kubernetes", + "pipeline", + "data-science" ], - "_language": "Python", - "_homepage": "http://joblib.readthedocs.org", - "_description": "joblib: Computing with Python functions.", - "_organization": "joblib", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-25T00:00:00.000Z", - "_created_at": "2010-05-07T00:00:00.000Z", - "_age_weeks": 658, - "_stars_per_week": 4.55, - "_pop_contributor_count": 113, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 359, + "_pop_contributor_logins": [ + "Ark-kun@google", + "Bobgy@google", + "IronPan@google", + "SinaChavoshi@google", + "chensun@google", + "connor-mccarthy@google", + "gaoning777@google", + "hongye-sun", + "rileyjbauer", + "zijianjoy" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "inria", - "inriasaclay-parietalteam" + "google" + ], + "_pop_contributor_orgs_raw": [ + "@Google", + "@google", + "Google" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.9, - "_pop_updated_issues_count": 50, - "_pop_closed_issues_count": 21, - "_pop_created_since_days": 154, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 50.0, - "_pop_comment_count": 81.0, + "_pop_commit_frequency": 14.94, + "_pop_updated_issues_count": 724, + "_pop_closed_issues_count": 341, + "_pop_created_since_days": 58, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 32, + "_pop_recent_releases_estimated_tags": 28, + "_pop_recent_releases_adjusted_count": 32, + "_pop_issue_count": 723.0, + "_pop_comment_count": 1455.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 1999, - "_pop_score": 55.64, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/joblib/joblib/master/README.rst", - "_readme_localurl": "joblib~joblib~README.rst", + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 53.5, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/kubeflow/pipelines/master/README.md", + "_readme_localurl": "kubeflow~pipelines~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/joblib/joblib/master/setup.py" + "https://raw.githubusercontent.com/kubeflow/pipelines/master/requirements.txt" ], "_requirements_localurls": [ - "joblib~joblib~setup.py" + "kubeflow~pipelines~requirements.txt" ] }, { - "index": 348, - "category": "ml-ops", - "githuburl": "https://github.com/evidentlyai/evidently", + "index": 221, + "category": "jupyter", + "githuburl": "https://github.com/jupyterlite/jupyterlite", "featured": null, "links": null, "description": null, - "_repopath": "evidentlyai/evidently", - "_reponame": "evidently", - "_stars": 2986, - "_forks": 325, - "_watches": 32, + "_repopath": "jupyterlite/jupyterlite", + "_reponame": "jupyterlite", + "_stars": 3088, + "_forks": 194, + "_watches": 43, + "_language": "Python", + "_homepage": "https://jupyterlite.rtfd.io/en/latest/try/lab", + "_description": "jupyterlite: Wasm powered Jupyter running in the browser \ud83d\udca1", + "_organization": "jupyterlite", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-03-27T00:00:00.000Z", + "_age_weeks": 99, + "_stars_per_week": 31.01, + "_topics": [ + "jupyter", + "jupyterlab", + "jupyterlab-extension", + "lite", + "webassembly", + "wasm", + "pyodide" + ], + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 44, + "_pop_contributor_logins": [ + "agoose77", + "bollwyvl", + "dependabot[bot]", + "dsblank@comet-ml", + "github-actions[bot]", + "joemarshall", + "jtpio@quantstack", + "madhur-tandon", + "martinRenou@quantstack", + "psychemedia@theopenuniversity" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "comet-ml", + "quantstack", + "theopenuniversity" + ], + "_pop_contributor_orgs_raw": [ + "@QuantStack", + "@comet-ml ", + "The Open University" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 12.98, + "_pop_updated_issues_count": 135, + "_pop_closed_issues_count": 71, + "_pop_created_since_days": 23, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 19, + "_pop_recent_releases_estimated_tags": 459, + "_pop_recent_releases_adjusted_count": 19, + "_pop_issue_count": 135.0, + "_pop_comment_count": 370.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 0, + "_pop_score": 46.85, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/jupyterlite/jupyterlite/master/README.md", + "_readme_localurl": "jupyterlite~jupyterlite~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/jupyterlite/jupyterlite/master/pyproject.toml" + ], + "_requirements_localurls": [ + "jupyterlite~jupyterlite~pyproject.toml" + ] + }, + { + "index": 138, + "category": "ml-interpretability", + "githuburl": "https://github.com/pair-code/lit", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "pair-code/lit", + "_reponame": "lit", + "_stars": 3081, + "_forks": 327, + "_watches": 70, + "_language": "TypeScript", + "_homepage": "https://pair-code.github.io/lit", + "_description": "lit: The Learning Interpretability Tool: Interactively analyze ML models to understand their behavior in an extensible and framework agnostic interface.", + "_organization": "pair-code", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-07-28T00:00:00.000Z", + "_age_weeks": 134, + "_stars_per_week": 22.97, "_topics": [ - "data-drift", - "jupyter-notebook", - "pandas-dataframe", "machine-learning", - "model-monitoring", - "html-report", - "production-machine-learning", - "machine-learning-operations", - "mlops", - "data-science", - "hacktoberfest" + "natural-language-processing", + "visualization" + ], + "_last_commit_date": "2022-12-02T00:00:00.000Z", + "_pop_contributor_count": 27, + "_pop_contributor_logins": [ + "EmilyReif", + "RyanMullins@google", + "ankurtaly", + "aryan1107", + "cjqian@deepmind", + "eberts-google", + "ellenjiang7", + "iftenney@google", + "jameswex@google", + "tolga-b@google" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "deepmind", + "google" + ], + "_pop_contributor_orgs_raw": [ + "@deepmind", + "@google ", + "Google", + "Google, Inc." ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.21, + "_pop_updated_issues_count": 88, + "_pop_closed_issues_count": 75, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 88.0, + "_pop_comment_count": 17.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 0, + "_pop_score": 31.16, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pair-code/lit/master/README.md", + "_readme_localurl": "pair-code~lit~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 42, + "category": "nlp", + "githuburl": "https://github.com/life4/textdistance", + "featured": null, + "links": null, + "description": null, + "_repopath": "life4/textdistance", + "_reponame": "textdistance", + "_stars": 3059, + "_forks": 242, + "_watches": 61, "_language": "Python", "_homepage": "", - "_description": "evidently: Evaluate and monitor ML models from validation to production. Join our Discord: https://discord.com/invite/xZjKRaNp8b", - "_organization": "evidentlyai", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2020-11-25T00:00:00.000Z", - "_age_weeks": 107, - "_stars_per_week": 27.72, - "_pop_contributor_count": 31, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_description": "textdistance: Compute distance between sequences. 30+ algorithms, pure python implementation, common interface, optional external libs usage.", + "_organization": "life4", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-05-05T00:00:00.000Z", + "_age_weeks": 302, + "_stars_per_week": 10.11, + "_topics": [ + "distance", + "algorithm", + "python", + "textdistance", + "hamming-distance", + "levenshtein-distance", + "damerau-levenshtein", + "damerau-levenshtein-distance", + "algorithms", + "distance-calculation", + "jellyfish", + "diff", + "levenshtein" + ], + "_last_commit_date": "2022-09-18T00:00:00.000Z", + "_pop_contributor_count": 13, + "_pop_contributor_logins": [ + "ArchangeGabriel@archlinux", + "Inokenty90", + "Reindert94", + "davebulaval@baseline.qu\u00e9bec", + "eliadl", + "juliangilbey@universityofcambridge", + "kinow@barcelonasupercomputingcenter", + "maxbachmann", + "orsinium@sendcloud", + "wynksaiddestroy" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "evidentlyai", - "intento,evidentlyai" + "archlinux", + "barcelonasupercomputingcenter", + "baseline.qu\u00e9bec", + "sendcloud", + "universityofcambridge" + ], + "_pop_contributor_orgs_raw": [ + "@ArchLinux", + "@sendcloud", + "Barcelona Supercomputing Center", + "Baseline.qu\u00e9bec", + "University of Cambridge" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 20.81, - "_pop_updated_issues_count": 186, - "_pop_closed_issues_count": 152, - "_pop_created_since_days": 25, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 24, - "_pop_recent_releases_estimated_tags": 19, - "_pop_recent_releases_adjusted_count": 24, - "_pop_issue_count": 186.0, - "_pop_comment_count": 203.0, + "_pop_commit_frequency": 0.79, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 71, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 16, - "_pop_score": 49.27, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 25.64, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/evidentlyai/evidently/master/README.md", - "_readme_localurl": "evidentlyai~evidently~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/life4/textdistance/master/README.md", + "_readme_localurl": "life4~textdistance~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/evidentlyai/evidently/master/requirements.txt", - "https://raw.githubusercontent.com/evidentlyai/evidently/master/setup.py" + "https://raw.githubusercontent.com/life4/textdistance/master/setup.py", + "https://raw.githubusercontent.com/life4/textdistance/master/pyproject.toml" ], "_requirements_localurls": [ - "evidentlyai~evidently~requirements.txt", - "evidentlyai~evidently~setup.py" + "life4~textdistance~setup.py", + "life4~textdistance~pyproject.toml" ] }, { - "index": 139, - "category": "viz", - "githuburl": "https://github.com/vispy/vispy", + "index": 698, + "category": "util", + "githuburl": "https://github.com/joblib/joblib", "featured": null, "links": null, "description": null, - "_repopath": "vispy/vispy", - "_reponame": "vispy", - "_stars": 2985, - "_forks": 604, - "_watches": 121, + "_repopath": "joblib/joblib", + "_reponame": "joblib", + "_stars": 3056, + "_forks": 366, + "_watches": 63, + "_language": "Python", + "_homepage": "http://joblib.readthedocs.org", + "_description": "joblib: Computing with Python functions.", + "_organization": "joblib", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2010-05-07T00:00:00.000Z", + "_age_weeks": 667, + "_stars_per_week": 4.58, "_topics": [ - "hacktoberfest", "python", - "opengl", - "visualization", - "closember" + "parallel-computing", + "caching", + "multiprocessing", + "threading", + "memoization" ], - "_language": "Python", - "_homepage": "http://vispy.org", - "_description": "vispy: Main repository for Vispy", - "_organization": "vispy", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2013-03-21T00:00:00.000Z", - "_age_weeks": 508, - "_stars_per_week": 5.87, - "_pop_contributor_count": 182, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 117, + "_pop_contributor_logins": [ + "GaelVaroquaux", + "aabadie@inria", + "esc@anaconda", + "lesteve", + "ogrisel@inria", + "pberkes@nagra,kudelski", + "pgervais", + "pierreglaser@ucl", + "tomMoral@inriasaclay-parietalteam", + "yarikoptic@dartmouthcollege,debian,datalad,pymvpa,fail2ban" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "independentsoftwareengineer", - "spacescienceandengineeringcenter(ssec)", - "universityofedinburgh", - "universityofwashington" + "anaconda", + "dartmouthcollege,debian,datalad,pymvpa,fail2ban", + "inria", + "inriasaclay-parietalteam", + "nagra,kudelski", + "ucl" + ], + "_pop_contributor_orgs_raw": [ + "Anaconda Inc.", + "Dartmouth College, @Debian, @DataLad, @PyMVPA, @fail2ban", + "INRIA Saclay - Parietal team", + "Inria", + "Nagra, Kudelski", + "UCL" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.31, - "_pop_updated_issues_count": 79, - "_pop_closed_issues_count": 47, - "_pop_created_since_days": 119, + "_pop_commit_frequency": 0.85, + "_pop_updated_issues_count": 64, + "_pop_closed_issues_count": 36, + "_pop_created_since_days": 156, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 79.0, - "_pop_comment_count": 326.0, + "_pop_issue_count": 64.0, + "_pop_comment_count": 102.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 4.1, - "_pop_dependents_count": 125, - "_pop_score": 61.28, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 48.44, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/vispy/vispy/master/README.rst", - "_readme_localurl": "vispy~vispy~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/joblib/joblib/master/README.rst", + "_readme_localurl": "joblib~joblib~README.rst", "_requirements_filenames": [ "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/vispy/vispy/master/setup.py", - "https://raw.githubusercontent.com/vispy/vispy/master/pyproject.toml" + "https://raw.githubusercontent.com/joblib/joblib/master/setup.py", + "https://raw.githubusercontent.com/joblib/joblib/master/pyproject.toml" ], "_requirements_localurls": [ - "vispy~vispy~setup.py", - "vispy~vispy~pyproject.toml" + "joblib~joblib~setup.py", + "joblib~joblib~pyproject.toml" ] }, { @@ -24326,41 +33519,59 @@ "description": null, "_repopath": "ethereum/consensus-specs", "_reponame": "consensus-specs", - "_stars": 2973, - "_forks": 749, - "_watches": 246, - "_topics": [], + "_stars": 3054, + "_forks": 782, + "_watches": 244, "_language": "Python", "_homepage": "", "_description": "consensus-specs: Ethereum Proof-of-Stake Consensus Specifications", "_organization": "ethereum", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2018-09-20T00:00:00.000Z", - "_age_weeks": 221, - "_stars_per_week": 13.42, - "_pop_contributor_count": 128, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 230, + "_stars_per_week": 13.23, + "_topics": [], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 135, + "_pop_contributor_logins": [ + "CarlBeek@ethereum", + "JustinDrake", + "dankrad", + "djrtwo@ctrl^t", + "hwwhww", + "mkalinin", + "protolambda@oplabs", + "ralexstokes", + "terencechain", + "vbuterin" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "ctrl^t", + "ethereum", "oplabs" ], + "_pop_contributor_orgs_raw": [ + "@ethereum", + "Ctrl^T", + "OP Labs" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 9.48, - "_pop_updated_issues_count": 169, - "_pop_closed_issues_count": 126, - "_pop_created_since_days": 52, + "_pop_commit_frequency": 11.0, + "_pop_updated_issues_count": 187, + "_pop_closed_issues_count": 147, + "_pop_created_since_days": 54, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 11, + "_pop_recent_releases_count": 12, "_pop_recent_releases_estimated_tags": 16, - "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 169.0, - "_pop_comment_count": 335.0, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 187.0, + "_pop_comment_count": 266.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 146, - "_pop_score": 57.49, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 49.8, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ethereum/consensus-specs/master/README.md", "_readme_localurl": "ethereum~consensus-specs~README.md", @@ -24375,122 +33586,302 @@ ] }, { - "index": 221, - "category": "jupyter", - "githuburl": "https://github.com/jupyterlite/jupyterlite", + "index": 765, + "category": "diffusion", + "githuburl": "https://github.com/lkwq007/stablediffusion-infinity", "featured": null, "links": null, "description": null, - "_repopath": "jupyterlite/jupyterlite", - "_reponame": "jupyterlite", - "_stars": 2973, - "_forks": 186, - "_watches": 44, + "_repopath": "lkwq007/stablediffusion-infinity", + "_reponame": "stablediffusion-infinity", + "_stars": 3021, + "_forks": 238, + "_watches": 32, + "_language": "Python", + "_homepage": "", + "_description": "stablediffusion-infinity: Outpainting with Stable Diffusion on an infinite canvas", + "_organization": "lkwq007", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-09-02T00:00:00.000Z", + "_age_weeks": 24, + "_stars_per_week": 122.24, "_topics": [ - "jupyter", - "jupyterlab", - "jupyterlab-extension", - "lite", - "webassembly", - "wasm", - "pyodide" + "outpainting", + "stablediffusion" + ], + "_last_commit_date": "2023-01-24T00:00:00.000Z", + "_pop_contributor_count": 7, + "_pop_contributor_logins": [ + "LEBMD", + "adripo", + "donlinglok", + "ipsin", + "lkwq007@cuhk", + "mspiegel@thoughtdealership", + "tpsjr7" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "cuhk", + "thoughtdealership" + ], + "_pop_contributor_orgs_raw": [ + "CUHK", + "Thought Dealership" ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.56, + "_pop_updated_issues_count": 46, + "_pop_closed_issues_count": 19, + "_pop_created_since_days": 6, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 46.0, + "_pop_comment_count": 72.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 29.38, + "_readme_filename": "readme.md", + "_readme_giturl": "https://raw.githubusercontent.com/lkwq007/stablediffusion-infinity/master/readme.md", + "_readme_localurl": "lkwq007~stablediffusion-infinity~readme.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 390, + "category": "diffusion", + "githuburl": "https://github.com/openai/glide-text2im", + "featured": null, + "links": null, + "description": null, + "_repopath": "openai/glide-text2im", + "_reponame": "glide-text2im", + "_stars": 3019, + "_forks": 431, + "_watches": 123, "_language": "Python", - "_homepage": "https://jupyterlite.rtfd.io/en/latest/try/lab", - "_description": "jupyterlite: Wasm powered Jupyter running in the browser \ud83d\udca1", - "_organization": "jupyterlite", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2021-03-27T00:00:00.000Z", - "_age_weeks": 90, - "_stars_per_week": 32.93, - "_pop_contributor_count": 41, + "_homepage": "", + "_description": "glide-text2im: GLIDE: a diffusion-based text-conditional image synthesis model", + "_organization": "openai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-12-10T00:00:00.000Z", + "_age_weeks": 62, + "_stars_per_week": 48.14, + "_topics": [], + "_last_commit_date": "2022-03-21T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "kcosta42", + "lochiego@texasa&mcenterforappliedtechnology", + "prafullasd", + "unixpickle" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "quantstack" + "texasa&mcenterforappliedtechnology" + ], + "_pop_contributor_orgs_raw": [ + "Texas A&M Center for Applied Technology" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 15.35, - "_pop_updated_issues_count": 137, - "_pop_closed_issues_count": 71, - "_pop_created_since_days": 21, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 22, - "_pop_recent_releases_estimated_tags": 458, - "_pop_recent_releases_adjusted_count": 22, - "_pop_issue_count": 137.0, - "_pop_comment_count": 330.0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 15, + "_pop_updated_since_days": 11, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.4, - "_pop_dependents_count": 25, - "_pop_score": 49.05, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 8.55, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/jupyterlite/jupyterlite/master/README.md", - "_readme_localurl": "jupyterlite~jupyterlite~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/openai/glide-text2im/master/README.md", + "_readme_localurl": "openai~glide-text2im~README.md", "_requirements_filenames": [ - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/jupyterlite/jupyterlite/master/pyproject.toml" + "https://raw.githubusercontent.com/openai/glide-text2im/master/setup.py" ], "_requirements_localurls": [ - "jupyterlite~jupyterlite~pyproject.toml" + "openai~glide-text2im~setup.py" ] }, { - "index": 272, - "category": "data", - "githuburl": "https://github.com/praw-dev/praw", + "index": 139, + "category": "viz", + "githuburl": "https://github.com/vispy/vispy", "featured": null, "links": null, "description": null, - "_repopath": "praw-dev/praw", - "_reponame": "praw", - "_stars": 2962, - "_forks": 449, - "_watches": 72, + "_repopath": "vispy/vispy", + "_reponame": "vispy", + "_stars": 3017, + "_forks": 606, + "_watches": 119, + "_language": "Python", + "_homepage": "http://vispy.org", + "_description": "vispy: Main repository for Vispy", + "_organization": "vispy", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2013-03-21T00:00:00.000Z", + "_age_weeks": 517, + "_stars_per_week": 5.83, "_topics": [ + "hacktoberfest", "python", - "reddit", - "api", - "oauth", - "praw", - "reddit-api" - ], - "_language": "Python", + "opengl", + "visualization", + "closember" + ], + "_last_commit_date": "2023-01-23T00:00:00.000Z", + "_pop_contributor_count": 183, + "_pop_contributor_logins": [ + "adamlwgriffiths@twistedpairdevelopment", + "almarklein@independentsoftwareengineer", + "asnt", + "bollu@universityofedinburgh", + "brisvag@gutsche-lab", + "campagnola", + "djhoese@spacescienceandengineeringcenter(ssec)", + "larsoner@universityofwashington", + "rossant@int-brain-labcortex-lab", + "rougier@inria" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "gutsche-lab", + "independentsoftwareengineer", + "inria", + "int-brain-labcortex-lab", + "spacescienceandengineeringcenter(ssec)", + "twistedpairdevelopment", + "universityofedinburgh", + "universityofwashington" + ], + "_pop_contributor_orgs_raw": [ + "@INRIA ", + "@gutsche-lab ", + "@int-brain-lab @cortex-lab ", + "Independent software engineer", + "Space Science and Engineering Center (@ssec)", + "Twisted Pair Development", + "University of Edinburgh", + "University of Washington" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.4, + "_pop_updated_issues_count": 37, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 121, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 37.0, + "_pop_comment_count": 155.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 4.2, + "_pop_dependents_count": 0, + "_pop_score": 52.29, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/vispy/vispy/master/README.rst", + "_readme_localurl": "vispy~vispy~README.rst", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/vispy/vispy/master/setup.py", + "https://raw.githubusercontent.com/vispy/vispy/master/pyproject.toml" + ], + "_requirements_localurls": [ + "vispy~vispy~setup.py", + "vispy~vispy~pyproject.toml" + ] + }, + { + "index": 272, + "category": "data", + "githuburl": "https://github.com/praw-dev/praw", + "featured": null, + "links": null, + "description": null, + "_repopath": "praw-dev/praw", + "_reponame": "praw", + "_stars": 3003, + "_forks": 448, + "_watches": 72, + "_language": "Python", "_homepage": "http://praw.readthedocs.io/", "_description": "PRAW, an acronym for \"Python Reddit API Wrapper\", is a python package that allows for simple access to Reddit's API.", "_organization": "praw-dev", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-09T00:00:00.000Z", + "_updated_at": "2023-02-20T00:00:00.000Z", "_created_at": "2010-08-19T00:00:00.000Z", - "_age_weeks": 643, + "_age_weeks": 652, "_stars_per_week": 4.6, + "_topics": [ + "python", + "reddit", + "api", + "oauth", + "praw", + "reddit-api" + ], + "_last_commit_date": "2023-02-19T00:00:00.000Z", "_pop_contributor_count": 220, + "_pop_contributor_logins": [ + "13steinj", + "Damgaard@billy", + "LilSpazJoekp@indeed", + "PythonCoderAS", + "bboe@netflix", + "jarhill0@appfolio", + "leviroth", + "nmtake", + "tmelz", + "voussoir" + ], "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "appfolio", "billy", "indeed", "netflix" ], + "_pop_contributor_orgs_raw": [ + "@appfolio", + "@netflix", + "Billy", + "Indeed, Inc." + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.02, - "_pop_updated_issues_count": 30, - "_pop_closed_issues_count": 24, - "_pop_created_since_days": 150, + "_pop_commit_frequency": 1.38, + "_pop_updated_issues_count": 36, + "_pop_closed_issues_count": 30, + "_pop_created_since_days": 152, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 12, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 30.0, - "_pop_comment_count": 62.0, + "_pop_issue_count": 36.0, + "_pop_comment_count": 51.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 541, - "_pop_score": 59.97, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 46.59, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/praw-dev/praw/master/README.rst", "_readme_localurl": "praw-dev~praw~README.rst", @@ -24508,161 +33899,258 @@ ] }, { - "index": 715, - "category": "ml-ops", - "githuburl": "https://github.com/flyteorg/flyte", + "index": 156, + "category": "profiling", + "githuburl": "https://github.com/gaogaotiantian/viztracer", "featured": null, "links": null, "description": null, - "_repopath": "flyteorg/flyte", - "_reponame": "flyte", - "_stars": 2930, - "_forks": 305, - "_watches": 266, + "_repopath": "gaogaotiantian/viztracer", + "_reponame": "viztracer", + "_stars": 3002, + "_forks": 290, + "_watches": 40, + "_language": "Python", + "_homepage": "https://viztracer.readthedocs.io/", + "_description": "VizTracer is a low-overhead logging/debugging/profiling tool that can trace and visualize your python code execution.", + "_organization": "gaogaotiantian", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-08-05T00:00:00.000Z", + "_age_weeks": 133, + "_stars_per_week": 22.57, "_topics": [ - "flyte", - "machine-learning", - "golang", - "scale", - "workflow", - "data-science", - "data-analysis", - "data", - "kubernetes-operator", - "kubernetes", - "orchestration-engine", - "mlops", - "dataops", - "grpc", + "tracer", + "python3", + "debugging", + "profiling", + "visualization", + "flamegraph", "python", - "battle-tested", - "production", - "production-grade", - "declarative", - "hacktoberfest" + "logging" + ], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 17, + "_pop_contributor_logins": [ + "DancingSnow0517", + "PeterStolz@bitahoy", + "colesbury@facebookairesearch", + "comzyh", + "gaogaotiantian@microsoft", + "imba-tjd", + "kianmeng", + "maartenbreddels@maartenbreddels", + "ogrisel@inria", + "tanloong" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "bitahoy", + "facebookairesearch", + "inria", + "maartenbreddels", + "microsoft" + ], + "_pop_contributor_orgs_raw": [ + "@bitahoy ", + "@maartenbreddels", + "Facebook AI Research", + "Inria", + "Microsoft" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.06, + "_pop_updated_issues_count": 20, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 30, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 20.0, + "_pop_comment_count": 41.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 38.85, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/gaogaotiantian/viztracer/master/README.md", + "_readme_localurl": "gaogaotiantian~viztracer~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/gaogaotiantian/viztracer/master/setup.py" ], + "_requirements_localurls": [ + "gaogaotiantian~viztracer~setup.py" + ] + }, + { + "index": 703, + "category": "util", + "githuburl": "https://github.com/openai/openai-python", + "featured": null, + "links": null, + "description": null, + "_repopath": "openai/openai-python", + "_reponame": "openai-python", + "_stars": 2991, + "_forks": 613, + "_watches": 88, "_language": "Python", - "_homepage": "https://flyte.org", - "_description": "flyte: Kubernetes-native workflow automation platform for complex, mission-critical data and ML processes at scale. It has been battle-tested at Lyft, Spotify, Freenome, and others and is truly open-source.", - "_organization": "flyteorg", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2019-10-21T00:00:00.000Z", - "_age_weeks": 165, - "_stars_per_week": 17.76, - "_pop_contributor_count": 110, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": "", + "_description": "openai-python: The OpenAI Python library provides convenient access to the OpenAI API from applications written in the Python language.", + "_organization": "openai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-10-25T00:00:00.000Z", + "_age_weeks": 121, + "_stars_per_week": 24.63, + "_topics": [ + "openai", + "python" + ], + "_last_commit_date": "2023-02-07T00:00:00.000Z", + "_pop_contributor_count": 43, + "_pop_contributor_logins": [ + "BorisPower", + "borisdayma", + "cmurtz-msft@microsoft", + "ddeville@openai", + "hallacy@openai", + "lilianweng", + "logankilpatrick@openaijulialang", + "mpokrass", + "rachellim@openai", + "sorinsuciu-msft@microsoft" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "flyteorg", - "unionai" + "microsoft", + "openai", + "openaijulialang" + ], + "_pop_contributor_orgs_raw": [ + "@OpenAI @JuliaLang", + "@openai", + "@openai ", + "Microsoft" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.98, - "_pop_updated_issues_count": 375, - "_pop_closed_issues_count": 172, - "_pop_created_since_days": 38, + "_pop_commit_frequency": 1.31, + "_pop_updated_issues_count": 92, + "_pop_closed_issues_count": 75, + "_pop_created_since_days": 28, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 31, - "_pop_recent_releases_estimated_tags": 25, - "_pop_recent_releases_adjusted_count": 31, - "_pop_issue_count": 376.0, - "_pop_comment_count": 569.0, + "_pop_recent_releases_count": 18, + "_pop_recent_releases_estimated_tags": 21, + "_pop_recent_releases_adjusted_count": 18, + "_pop_issue_count": 93.0, + "_pop_comment_count": 167.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 31, - "_pop_score": 54.34, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 42.69, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/flyteorg/flyte/master/README.md", - "_readme_localurl": "flyteorg~flyte~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/openai/openai-python/master/README.md", + "_readme_localurl": "openai~openai-python~README.md", "_requirements_filenames": [ - "requirements.txt" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/flyteorg/flyte/master/requirements.txt" + "https://raw.githubusercontent.com/openai/openai-python/master/setup.py", + "https://raw.githubusercontent.com/openai/openai-python/master/pyproject.toml" ], "_requirements_localurls": [ - "flyteorg~flyte~requirements.txt" + "openai~openai-python~setup.py", + "openai~openai-python~pyproject.toml" ] }, { - "index": 381, - "category": "ml-ops", - "githuburl": "https://github.com/aimhubio/aim", + "index": 729, + "category": "ml-dl", + "githuburl": "https://github.com/mosaicml/composer", "featured": null, "links": null, "description": null, - "_repopath": "aimhubio/aim", - "_reponame": "aim", - "_stars": 2926, - "_forks": 183, - "_watches": 35, + "_repopath": "mosaicml/composer", + "_reponame": "composer", + "_stars": 2986, + "_forks": 193, + "_watches": 27, + "_language": "Python", + "_homepage": "http://docs.mosaicml.com", + "_description": "composer: Train neural networks up to 7x faster", + "_organization": "mosaicml", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-10-12T00:00:00.000Z", + "_age_weeks": 71, + "_stars_per_week": 41.97, "_topics": [ - "python", - "ai", - "data-science", - "data-visualization", - "experiment-tracking", - "machine-learning", - "metadata", - "metadata-tracking", - "ml", - "mlflow", - "mlops", + "deep-learning", "pytorch", - "tensorboard", - "tensorflow", - "visualization" + "neural-networks", + "ml-systems", + "ml-efficiency", + "ml-training", + "machine-learning", + "neural-network" ], - "_language": "TypeScript", - "_homepage": "https://aimstack.io", - "_description": "Aim \ud83d\udcab \u2014 easy-to-use and performant open-source ML experiment tracker.", - "_organization": "aimhubio", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2019-05-31T00:00:00.000Z", - "_age_weeks": 185, - "_stars_per_week": 15.78, - "_pop_contributor_count": 48, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 60, + "_pop_contributor_logins": [ + "abhi-mosaic@mosaicml", + "bandish-shah", + "dakinggg", + "dependabot[bot]", + "dskhudia", + "eracah@mosaicml", + "hanlint@mosaicml", + "moinnadeem", + "mvpatel2000@stanford'22", + "ravi-mosaicml" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "aimhub", - "aimhubio", - "aimstack" + "mosaicml", + "stanford'22" + ], + "_pop_contributor_orgs_raw": [ + "MosaicML", + "Stanford '22" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 13.19, - "_pop_updated_issues_count": 332, - "_pop_closed_issues_count": 236, - "_pop_created_since_days": 43, + "_pop_commit_frequency": 23.0, + "_pop_updated_issues_count": 265, + "_pop_closed_issues_count": 244, + "_pop_created_since_days": 17, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 45, - "_pop_recent_releases_estimated_tags": 42, - "_pop_recent_releases_adjusted_count": 45, - "_pop_issue_count": 332.0, - "_pop_comment_count": 521.0, + "_pop_recent_releases_count": 16, + "_pop_recent_releases_estimated_tags": 21, + "_pop_recent_releases_adjusted_count": 16, + "_pop_issue_count": 265.0, + "_pop_comment_count": 228.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 33, - "_pop_score": 55.4, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 44.68, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/aimhubio/aim/master/README.md", - "_readme_localurl": "aimhubio~aim~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/mosaicml/composer/master/README.md", + "_readme_localurl": "mosaicml~composer~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/aimhubio/aim/master/requirements.txt", - "https://raw.githubusercontent.com/aimhubio/aim/master/setup.py", - "https://raw.githubusercontent.com/aimhubio/aim/master/pyproject.toml" + "https://raw.githubusercontent.com/mosaicml/composer/master/setup.py", + "https://raw.githubusercontent.com/mosaicml/composer/master/pyproject.toml" ], "_requirements_localurls": [ - "aimhubio~aim~requirements.txt", - "aimhubio~aim~setup.py", - "aimhubio~aim~pyproject.toml" + "mosaicml~composer~setup.py", + "mosaicml~composer~pyproject.toml" ] }, { @@ -24674,46 +34162,63 @@ "description": null, "_repopath": "suor/funcy", "_reponame": "funcy", - "_stars": 2923, - "_forks": 133, + "_stars": 2971, + "_forks": 134, "_watches": 73, - "_topics": [ - "functional-programming", - "utilities", - "python" - ], "_language": "Python", "_homepage": "", "_description": "funcy: A fancy and practical functional tools", "_organization": "suor", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-08-25T00:00:00.000Z", + "_updated_at": "2023-02-18T00:00:00.000Z", "_created_at": "2012-10-13T00:00:00.000Z", - "_age_weeks": 531, + "_age_weeks": 540, "_stars_per_week": 5.5, + "_topics": [ + "functional-programming", + "utilities", + "python" + ], + "_last_commit_date": "2023-02-19T00:00:00.000Z", "_pop_contributor_count": 31, + "_pop_contributor_logins": [ + "AndrewWalker", + "Suor", + "browniebroke@festicket", + "despawnerer", + "eprykhodko", + "lukmdo", + "rocco66", + "taleinat", + "timgates42@iress", + "volker48@obsidian-security" + ], "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "festicket", "iress", "obsidian-security" ], + "_pop_contributor_orgs_raw": [ + "@obsidian-security ", + "Festicket", + "IRESS" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.12, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 124, - "_pop_updated_since_days": 4, + "_pop_commit_frequency": 0.29, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 126, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 5, "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 2.0, - "_pop_comment_count": 2.0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 6.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 110, - "_pop_score": 39.73, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 37.73, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/suor/funcy/master/README.rst", "_readme_localurl": "suor~funcy~README.rst", @@ -24728,344 +34233,253 @@ ] }, { - "index": 77, - "category": "jupyter", - "githuburl": "https://github.com/quantopian/qgrid", + "index": 811, + "category": "ml-ops", + "githuburl": "https://github.com/ploomber/ploomber", "featured": null, "links": null, "description": null, - "_repopath": "quantopian/qgrid", - "_reponame": "qgrid", - "_stars": 2921, - "_forks": 418, - "_watches": 90, - "_topics": [], + "_repopath": "ploomber/ploomber", + "_reponame": "ploomber", + "_stars": 2967, + "_forks": 203, + "_watches": 26, "_language": "Python", - "_homepage": "", - "_description": "qgrid: An interactive grid for sorting, filtering, and editing DataFrames in Jupyter notebooks", - "_organization": "quantopian", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2020-04-07T00:00:00.000Z", - "_created_at": "2014-09-30T00:00:00.000Z", - "_age_weeks": 428, - "_stars_per_week": 6.81, - "_pop_contributor_count": 30, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://ploomber.io", + "_description": "ploomber: The fastest \u26a1\ufe0f way to build data pipelines. Develop iteratively, deploy anywhere. \u2601\ufe0f", + "_organization": "ploomber", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-01-20T00:00:00.000Z", + "_age_weeks": 161, + "_stars_per_week": 18.4, + "_topics": [ + "workflow", + "machine-learning", + "data-science", + "data-engineering", + "mlops", + "papermill", + "jupyter", + "jupyter-notebooks", + "pipelines", + "vscode", + "pycharm", + "notebooks" + ], + "_last_commit_date": "2023-01-31T00:00:00.000Z", + "_pop_contributor_count": 72, + "_pop_contributor_logins": [ + "94rain", + "Wxl19980214", + "dependabot[bot]", + "e1ha", + "edublancas@ploomber", + "fferegrino", + "grnnja", + "idomic", + "neelasha23", + "yafimvo" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "mongodb", - "sundellopensourceconsultingab" + "ploomber" + ], + "_pop_contributor_orgs_raw": [ + "Ploomber" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 100, - "_pop_updated_since_days": 33, + "_pop_commit_frequency": 10.35, + "_pop_updated_issues_count": 41, + "_pop_closed_issues_count": 33, + "_pop_created_since_days": 38, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 3.0, - "_pop_comment_count": 2.0, + "_pop_recent_releases_estimated_tags": 35, + "_pop_recent_releases_adjusted_count": 35, + "_pop_issue_count": 41.0, + "_pop_comment_count": 56.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 18, - "_pop_score": 28.51, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/quantopian/qgrid/master/README.rst", - "_readme_localurl": "quantopian~qgrid~README.rst", + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 41.29, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/ploomber/ploomber/master/README.md", + "_readme_localurl": "ploomber~ploomber~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/quantopian/qgrid/master/requirements.txt", - "https://raw.githubusercontent.com/quantopian/qgrid/master/setup.py" + "https://raw.githubusercontent.com/ploomber/ploomber/master/setup.py", + "https://raw.githubusercontent.com/ploomber/ploomber/master/pyproject.toml" ], "_requirements_localurls": [ - "quantopian~qgrid~requirements.txt", - "quantopian~qgrid~setup.py" + "ploomber~ploomber~setup.py", + "ploomber~ploomber~pyproject.toml" ] }, { - "index": 390, - "category": "diffusion", - "githuburl": "https://github.com/openai/glide-text2im", + "index": 270, + "category": "web", + "githuburl": "https://github.com/strawberry-graphql/strawberry", "featured": null, "links": null, "description": null, - "_repopath": "openai/glide-text2im", - "_reponame": "glide-text2im", - "_stars": 2908, - "_forks": 408, - "_watches": 119, - "_topics": [], + "_repopath": "strawberry-graphql/strawberry", + "_reponame": "strawberry", + "_stars": 2966, + "_forks": 372, + "_watches": 40, "_language": "Python", - "_homepage": "", - "_description": "glide-text2im: GLIDE: a diffusion-based text-conditional image synthesis model", - "_organization": "openai", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-03-21T00:00:00.000Z", - "_created_at": "2021-12-10T00:00:00.000Z", - "_age_weeks": 53, - "_stars_per_week": 54.43, - "_pop_contributor_count": 4, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://strawberry.rocks", + "_description": "strawberry: A GraphQL library for Python that leverages type annotations \ud83c\udf53", + "_organization": "strawberry-graphql", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-12-21T00:00:00.000Z", + "_age_weeks": 217, + "_stars_per_week": 13.62, + "_topics": [ + "graphql", + "graphql-server", + "python", + "starlette", + "asyncio", + "mypy", + "django", + "graphql-library", + "asgi", + "graphql-schema", + "strawberry", + "hacktoberfest" + ], + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 181, + "_pop_contributor_logins": [ + "BryceBeagle@robinhood", + "DoctorJohn", + "botberry@strawberry-graphql", + "dependabot-preview[bot]", + "dependabot[bot]", + "estyxx@madedotcom", + "jkimbo", + "marcoacierno", + "patrick91@apollographql", + "pre-commit-ci[bot]" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "texasa&mcenterforappliedtechnology" + "apollographql", + "madedotcom", + "robinhood", + "strawberry-graphql" + ], + "_pop_contributor_orgs_raw": [ + "@apollographql ", + "@madedotcom", + "@strawberry-graphql", + "Robinhood" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.04, - "_pop_updated_issues_count": 1, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 12, - "_pop_updated_since_days": 9, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 1.0, - "_pop_comment_count": 0.0, + "_pop_commit_frequency": 12.08, + "_pop_updated_issues_count": 330, + "_pop_closed_issues_count": 195, + "_pop_created_since_days": 51, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 172, + "_pop_recent_releases_estimated_tags": 124, + "_pop_recent_releases_adjusted_count": 172, + "_pop_issue_count": 330.0, + "_pop_comment_count": 666.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, + "_pop_comment_frequency": 2.0, "_pop_dependents_count": 0, - "_pop_score": 9.04, + "_pop_score": 54.54, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/openai/glide-text2im/master/README.md", - "_readme_localurl": "openai~glide-text2im~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/README.md", + "_readme_localurl": "strawberry-graphql~strawberry~README.md", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/openai/glide-text2im/master/setup.py" + "https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/setup.py", + "https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/pyproject.toml" ], "_requirements_localurls": [ - "openai~glide-text2im~setup.py" + "strawberry-graphql~strawberry~setup.py", + "strawberry-graphql~strawberry~pyproject.toml" ] }, { - "index": 704, - "category": "data", - "githuburl": "https://github.com/pyeve/cerberus", - "featured": null, - "links": null, - "description": null, - "_repopath": "pyeve/cerberus", - "_reponame": "cerberus", - "_stars": 2890, - "_forks": 226, - "_watches": 48, - "_topics": [ - "python", - "data-validation" - ], - "_language": "Python", - "_homepage": "http://python-cerberus.org", - "_description": "cerberus: Lightweight, extensible data validation library for Python", - "_organization": "pyeve", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2021-05-05T00:00:00.000Z", - "_created_at": "2012-10-10T00:00:00.000Z", - "_age_weeks": 531, - "_stars_per_week": 5.44, - "_pop_contributor_count": 62, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "cir2000" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 9, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 124, - "_pop_updated_since_days": 20, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 9.0, - "_pop_comment_count": 9.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 144, - "_pop_score": 35.67, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pyeve/cerberus/master/README.rst", - "_readme_localurl": "pyeve~cerberus~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pyeve/cerberus/master/setup.py", - "https://raw.githubusercontent.com/pyeve/cerberus/master/pyproject.toml" - ], - "_requirements_localurls": [ - "pyeve~cerberus~setup.py", - "pyeve~cerberus~pyproject.toml" - ] - }, - { - "index": 476, - "category": "gis", - "githuburl": "https://github.com/holoviz/datashader", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "holoviz/datashader", - "_reponame": "datashader", - "_stars": 2887, - "_forks": 361, - "_watches": 95, - "_topics": [ - "holoviz", - "datashader", - "data-visualizations", - "rasterization" - ], - "_language": "Python", - "_homepage": "http://datashader.org", - "_description": "datashader: Quickly and accurately render even the largest data.", - "_organization": "holoviz", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2015-12-23T00:00:00.000Z", - "_age_weeks": 364, - "_stars_per_week": 7.92, - "_pop_contributor_count": 51, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "anaconda", - "stripe", - "voltrondata" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.56, - "_pop_updated_issues_count": 54, - "_pop_closed_issues_count": 41, - "_pop_created_since_days": 85, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 14, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 54.0, - "_pop_comment_count": 53.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 17, - "_pop_score": 46.59, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/holoviz/datashader/master/README.md", - "_readme_localurl": "holoviz~datashader~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/holoviz/datashader/master/setup.py", - "https://raw.githubusercontent.com/holoviz/datashader/master/pyproject.toml" - ], - "_requirements_localurls": [ - "holoviz~datashader~setup.py", - "holoviz~datashader~pyproject.toml" - ] - }, - { - "index": 660, - "category": "ml", - "githuburl": "https://github.com/pytorch/glow", - "featured": null, - "links": null, - "description": null, - "_repopath": "pytorch/glow", - "_reponame": "glow", - "_stars": 2882, - "_forks": 655, - "_watches": 154, - "_topics": [], - "_language": "C++", - "_homepage": null, - "_description": "glow: Compiler for Neural Network hardware accelerators", - "_organization": "pytorch", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2017-09-29T00:00:00.000Z", - "_age_weeks": 272, - "_stars_per_week": 10.58, - "_pop_contributor_count": 332, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "facebook" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.33, - "_pop_updated_issues_count": 52, - "_pop_closed_issues_count": 16, - "_pop_created_since_days": 64, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 52.0, - "_pop_comment_count": 95.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 3085, - "_pop_score": 55.66, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pytorch/glow/master/README.md", - "_readme_localurl": "pytorch~glow~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, - { - "index": 366, - "category": "ml", - "githuburl": "https://github.com/facebookresearch/vissl", + "index": 366, + "category": "ml", + "githuburl": "https://github.com/facebookresearch/vissl", "featured": null, "links": null, "description": null, "_repopath": "facebookresearch/vissl", "_reponame": "vissl", - "_stars": 2877, - "_forks": 300, - "_watches": 53, - "_topics": [], + "_stars": 2956, + "_forks": 309, + "_watches": 52, "_language": "Jupyter Notebook", "_homepage": "https://vissl.ai", "_description": "VISSL is FAIR's library of extensible, modular and scalable components for SOTA Self-Supervised Learning with images.", "_organization": "facebookresearch", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-10-12T00:00:00.000Z", + "_updated_at": "2023-02-19T00:00:00.000Z", "_created_at": "2020-04-09T00:00:00.000Z", - "_age_weeks": 140, - "_stars_per_week": 20.47, + "_age_weeks": 149, + "_stars_per_week": 19.73, + "_topics": [], + "_last_commit_date": "2022-12-28T00:00:00.000Z", "_pop_contributor_count": 34, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "QuentinDuval", + "akainth015", + "amyreese@omnilib", + "bottler", + "growlix@mosaicml", + "iseessel@meta", + "jingli9111@openai", + "mannatsingh@facebook", + "min-xu-ai", + "prigoyal@google" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "facebook", "google", "meta", - "mosaicml" + "mosaicml", + "omnilib", + "openai" + ], + "_pop_contributor_orgs_raw": [ + "@omnilib ", + "Facebook", + "Google", + "Meta", + "MosaicML", + "OpenAI" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.92, - "_pop_updated_issues_count": 9, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 33, + "_pop_commit_frequency": 1.02, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 35, "_pop_updated_since_days": 2, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 9.0, - "_pop_comment_count": 9.0, + "_pop_issue_count": 12.0, + "_pop_comment_count": 22.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 429, - "_pop_score": 42.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 34.8, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/vissl/master/README.md", "_readme_localurl": "facebookresearch~vissl~README.md", @@ -25083,127 +34497,146 @@ ] }, { - "index": 811, - "category": "ml-ops", - "githuburl": "https://github.com/ploomber/ploomber", + "index": 77, + "category": "jupyter", + "githuburl": "https://github.com/quantopian/qgrid", "featured": null, "links": null, "description": null, - "_repopath": "ploomber/ploomber", - "_reponame": "ploomber", - "_stars": 2874, - "_forks": 199, - "_watches": 27, - "_topics": [ - "workflow", - "machine-learning", - "data-science", - "data-engineering", - "mlops", - "papermill", - "jupyter", - "jupyter-notebooks", - "pipelines", - "vscode", - "pycharm", - "notebooks", - "hacktoberfest" - ], + "_repopath": "quantopian/qgrid", + "_reponame": "qgrid", + "_stars": 2946, + "_forks": 419, + "_watches": 89, "_language": "Python", - "_homepage": "https://ploomber.io", - "_description": "ploomber: The fastest \u26a1\ufe0f way to build data pipelines. Develop iteratively, deploy anywhere. \u2601\ufe0f", - "_organization": "ploomber", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2020-01-20T00:00:00.000Z", - "_age_weeks": 152, - "_stars_per_week": 18.91, - "_pop_contributor_count": 70, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_homepage": "", + "_description": "qgrid: An interactive grid for sorting, filtering, and editing DataFrames in Jupyter notebooks", + "_organization": "quantopian", + "_updated_at": "2023-02-16T00:00:00.000Z", + "_created_at": "2014-09-30T00:00:00.000Z", + "_age_weeks": 438, + "_stars_per_week": 6.72, + "_topics": [], + "_last_commit_date": "2020-04-07T00:00:00.000Z", + "_pop_contributor_count": 30, + "_pop_contributor_logins": [ + "TimShawver", + "andyfaff", + "blink1073@mongodb", + "consideRatio@sundellopensourceconsultingab", + "fhgd", + "greenberga", + "hottwaj", + "itcarroll", + "snth", + "ssanderson" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "ploomber" + "mongodb", + "sundellopensourceconsultingab" + ], + "_pop_contributor_orgs_raw": [ + "MongoDB", + "Sundell Open Source Consulting AB" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 13.5, - "_pop_updated_issues_count": 68, - "_pop_closed_issues_count": 42, - "_pop_created_since_days": 35, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 102, + "_pop_updated_since_days": 35, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 36, - "_pop_recent_releases_adjusted_count": 36, - "_pop_issue_count": 68.0, - "_pop_comment_count": 95.0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 7.0, + "_pop_comment_count": 3.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 15, - "_pop_score": 48.61, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/ploomber/ploomber/master/README.md", - "_readme_localurl": "ploomber~ploomber~README.md", + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 22.79, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/quantopian/qgrid/master/README.rst", + "_readme_localurl": "quantopian~qgrid~README.rst", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/ploomber/ploomber/master/setup.py", - "https://raw.githubusercontent.com/ploomber/ploomber/master/pyproject.toml" + "https://raw.githubusercontent.com/quantopian/qgrid/master/requirements.txt", + "https://raw.githubusercontent.com/quantopian/qgrid/master/setup.py" ], "_requirements_localurls": [ - "ploomber~ploomber~setup.py", - "ploomber~ploomber~pyproject.toml" + "quantopian~qgrid~requirements.txt", + "quantopian~qgrid~setup.py" ] }, { - "index": 765, - "category": "diffusion", - "githuburl": "https://github.com/lkwq007/stablediffusion-infinity", + "index": 792, + "category": "ml-dl", + "githuburl": "https://github.com/facebookincubator/aitemplate", "featured": null, "links": null, "description": null, - "_repopath": "lkwq007/stablediffusion-infinity", - "_reponame": "stablediffusion-infinity", - "_stars": 2832, - "_forks": 220, - "_watches": 29, - "_topics": [ - "outpainting", - "stablediffusion" - ], + "_repopath": "facebookincubator/aitemplate", + "_reponame": "AITemplate", + "_stars": 2944, + "_forks": 232, + "_watches": 79, "_language": "Python", "_homepage": "", - "_description": "stablediffusion-infinity: Outpainting with Stable Diffusion on an infinite canvas", - "_organization": "lkwq007", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2022-09-02T00:00:00.000Z", - "_age_weeks": 15, - "_stars_per_week": 183.56, - "_pop_contributor_count": 6, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_description": "AITemplate is a Python framework which renders neural network into high performance CUDA/HIP C++ code. Specialized for FP16 TensorCore (NVIDIA GPU) and MatrixCore (AMD GPU) inference.", + "_organization": "facebookincubator", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-07-15T00:00:00.000Z", + "_age_weeks": 31, + "_stars_per_week": 92.83, + "_topics": [], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 45, + "_pop_contributor_logins": [ + "antinucleon@facebook", + "chenyang78@meta", + "frank-wei", + "hl475", + "ipiszy@facebook", + "muchulee8", + "qxy11", + "tenpercent", + "terrychenism", + "tissue3@cornelluniversity" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "cuhk" + "cornelluniversity", + "facebook", + "meta" + ], + "_pop_contributor_orgs_raw": [ + "Cornell University", + "Facebook", + "Meta" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.29, - "_pop_updated_issues_count": 123, - "_pop_closed_issues_count": 65, - "_pop_created_since_days": 4, + "_pop_commit_frequency": 3.08, + "_pop_updated_issues_count": 218, + "_pop_closed_issues_count": 169, + "_pop_created_since_days": 7, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 9, - "_pop_issue_count": 123.0, - "_pop_comment_count": 352.0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 218.0, + "_pop_comment_count": 673.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.9, - "_pop_dependents_count": 10, - "_pop_score": 35.97, - "_readme_filename": "readme.md", - "_readme_giturl": "https://raw.githubusercontent.com/lkwq007/stablediffusion-infinity/master/readme.md", - "_readme_localurl": "lkwq007~stablediffusion-infinity~readme.md", + "_pop_comment_frequency": 3.1, + "_pop_dependents_count": 0, + "_pop_score": 40.09, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/facebookincubator/aitemplate/master/README.md", + "_readme_localurl": "facebookincubator~aitemplate~README.md", "_requirements_filenames": [], "_requirements_giturls": [], "_requirements_localurls": [] @@ -25217,42 +34650,62 @@ "description": null, "_repopath": "more-itertools/more-itertools", "_reponame": "more-itertools", - "_stars": 2825, - "_forks": 221, - "_watches": 35, - "_topics": [], + "_stars": 2943, + "_forks": 235, + "_watches": 36, "_language": "Python", "_homepage": "https://more-itertools.rtfd.io", "_description": "more-itertools: More routines for operating on iterables, beyond itertools", "_organization": "more-itertools", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2012-04-26T00:00:00.000Z", - "_age_weeks": 555, - "_stars_per_week": 5.08, - "_pop_contributor_count": 92, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 564, + "_stars_per_week": 5.21, + "_topics": [], + "_last_commit_date": "2023-01-26T00:00:00.000Z", + "_pop_contributor_count": 96, + "_pop_contributor_logins": [ + "MarcinKonowalczyk@universityofoxford", + "N8Brooks", + "bbayles@wurlinc", + "diazona", + "erikrose@mozillagoogle", + "ilai-deutel@google", + "jaraco@google", + "jferard", + "michael-celani", + "nanouasyn" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "mozilla", + "google", + "mozillagoogle", "universityofoxford", "wurlinc" ], + "_pop_contributor_orgs_raw": [ + "@google", + "@mozilla @google", + "@wurlinc ", + "Google", + "University of Oxford" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.31, - "_pop_updated_issues_count": 25, - "_pop_closed_issues_count": 22, - "_pop_created_since_days": 130, + "_pop_commit_frequency": 1.46, + "_pop_updated_issues_count": 28, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 132, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 3, "_pop_recent_releases_estimated_tags": 4, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 25.0, - "_pop_comment_count": 30.0, + "_pop_issue_count": 28.0, + "_pop_comment_count": 49.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 420, - "_pop_score": 53.58, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 44.82, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/more-itertools/more-itertools/master/README.rst", "_readme_localurl": "more-itertools~more-itertools~README.rst", @@ -25270,374 +34723,481 @@ ] }, { - "index": 761, - "category": "sim", - "githuburl": "https://github.com/qiskit/qiskit", + "index": 704, + "category": "data", + "githuburl": "https://github.com/pyeve/cerberus", "featured": null, "links": null, "description": null, - "_repopath": "qiskit/qiskit", - "_reponame": "qiskit", - "_stars": 2821, - "_forks": 756, - "_watches": 97, + "_repopath": "pyeve/cerberus", + "_reponame": "cerberus", + "_stars": 2938, + "_forks": 230, + "_watches": 48, + "_language": "Python", + "_homepage": "http://python-cerberus.org", + "_description": "cerberus: Lightweight, extensible data validation library for Python", + "_organization": "pyeve", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-10-10T00:00:00.000Z", + "_age_weeks": 541, + "_stars_per_week": 5.43, "_topics": [ - "qiskit", - "quantum-computing", - "quantum-programming-language", - "documentation" + "python", + "data-validation" ], - "_language": "OpenQASM", - "_homepage": "https://qiskit.org", - "_description": "Qiskit is an open-source SDK for working with quantum computers at the level of circuits, algorithms, and application modules.", - "_organization": "qiskit", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", - "_created_at": "2018-12-12T00:00:00.000Z", - "_age_weeks": 209, - "_stars_per_week": 13.45, - "_pop_contributor_count": 155, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2021-05-05T00:00:00.000Z", + "_pop_contributor_count": 63, + "_pop_contributor_logins": [ + "CD3@forthaysstateuniversity(fhsu)", + "baubie@qreserve", + "calve", + "crunk1", + "dkellner", + "funkyfuture", + "girogiro", + "hvdklauw@zupr-io", + "martijnvermaat", + "nicolaiarocci@cir2000" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "ibm" + "cir2000", + "forthaysstateuniversity(fhsu)", + "qreserve", + "zupr-io" + ], + "_pop_contributor_orgs_raw": [ + "@zupr-io ", + "CIR 2000", + "Fort Hays State University (FHSU)", + "QReserve Inc." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.4, - "_pop_updated_issues_count": 49, - "_pop_closed_issues_count": 37, - "_pop_created_since_days": 49, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 16, - "_pop_recent_releases_estimated_tags": 21, - "_pop_recent_releases_adjusted_count": 16, - "_pop_issue_count": 49.0, - "_pop_comment_count": 53.0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 126, + "_pop_updated_since_days": 22, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 7.0, + "_pop_comment_count": 8.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 4225, - "_pop_score": 56.83, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/qiskit/qiskit/master/README.md", - "_readme_localurl": "qiskit~qiskit~README.md", + "_pop_dependents_count": 0, + "_pop_score": 30.76, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pyeve/cerberus/master/README.rst", + "_readme_localurl": "pyeve~cerberus~README.rst", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/qiskit/qiskit/master/setup.py" + "https://raw.githubusercontent.com/pyeve/cerberus/master/setup.py", + "https://raw.githubusercontent.com/pyeve/cerberus/master/pyproject.toml" ], "_requirements_localurls": [ - "qiskit~qiskit~setup.py" + "pyeve~cerberus~setup.py", + "pyeve~cerberus~pyproject.toml" ] }, { - "index": 261, - "category": "time-series", - "githuburl": "https://github.com/salesforce/merlion", - "featured": null, + "index": 476, + "category": "gis", + "githuburl": "https://github.com/holoviz/datashader", + "featured": 1.0, "links": null, "description": null, - "_repopath": "salesforce/merlion", - "_reponame": "Merlion", - "_stars": 2817, - "_forks": 242, - "_watches": 45, + "_repopath": "holoviz/datashader", + "_reponame": "datashader", + "_stars": 2925, + "_forks": 362, + "_watches": 95, + "_language": "Python", + "_homepage": "http://datashader.org", + "_description": "datashader: Quickly and accurately render even the largest data.", + "_organization": "holoviz", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-12-23T00:00:00.000Z", + "_age_weeks": 374, + "_stars_per_week": 7.82, "_topics": [ - "time-series", - "anomaly-detection", - "forecasting", - "machine-learning", - "benchmarking", - "automl", - "ensemble-learning" + "holoviz", + "datashader", + "data-visualizations", + "rasterization" ], - "_language": "Python", - "_homepage": "", - "_description": "Merlion: A Machine Learning Framework for Time Series Intelligence", - "_organization": "salesforce", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-10T00:00:00.000Z", - "_created_at": "2021-07-28T00:00:00.000Z", - "_age_weeks": 72, - "_stars_per_week": 38.74, - "_pop_contributor_count": 13, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 52, + "_pop_contributor_logins": [ + "ceball", + "gbrener", + "ianthomas23@anaconda", + "jbcrail", + "jbednar@anaconda", + "jcrist@voltrondata", + "jonmmease@hextechnologies", + "jsignell@azavea", + "maximlt@anaconda", + "philippjfr@anaconda" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "salesforce", - "twilio" + "anaconda", + "azavea", + "hextechnologies", + "voltrondata" + ], + "_pop_contributor_orgs_raw": [ + "@azavea", + "@voltrondata", + "Anaconda", + "Anaconda Inc.", + "Anaconda, Inc.", + "Hex Technologies" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.92, - "_pop_updated_issues_count": 18, - "_pop_closed_issues_count": 13, - "_pop_created_since_days": 17, + "_pop_commit_frequency": 1.88, + "_pop_updated_issues_count": 47, + "_pop_closed_issues_count": 32, + "_pop_created_since_days": 87, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 11, - "_pop_recent_releases_estimated_tags": 11, - "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 18.0, - "_pop_comment_count": 22.0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 47.0, + "_pop_comment_count": 62.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 39, - "_pop_score": 39.13, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 43.47, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/salesforce/merlion/master/README.md", - "_readme_localurl": "salesforce~merlion~README.md", - "_requirements_filenames": [ - "setup.py" + "_readme_giturl": "https://raw.githubusercontent.com/holoviz/datashader/master/README.md", + "_readme_localurl": "holoviz~datashader~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/salesforce/merlion/master/setup.py" + "https://raw.githubusercontent.com/holoviz/datashader/master/setup.py", + "https://raw.githubusercontent.com/holoviz/datashader/master/pyproject.toml" ], "_requirements_localurls": [ - "salesforce~merlion~setup.py" + "holoviz~datashader~setup.py", + "holoviz~datashader~pyproject.toml" ] }, { - "index": 270, - "category": "web", - "githuburl": "https://github.com/strawberry-graphql/strawberry", + "index": 937, + "category": "ml-dl", + "githuburl": "https://github.com/williamyang1991/vtoonify", "featured": null, "links": null, "description": null, - "_repopath": "strawberry-graphql/strawberry", - "_reponame": "strawberry", - "_stars": 2808, - "_forks": 345, - "_watches": 44, + "_repopath": "williamyang1991/vtoonify", + "_reponame": "VToonify", + "_stars": 2921, + "_forks": 356, + "_watches": 61, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "[SIGGRAPH Asia 2022] VToonify: Controllable High-Resolution Portrait Video Style Transfer", + "_organization": "williamyang1991", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-09-09T00:00:00.000Z", + "_age_weeks": 23, + "_stars_per_week": 123.17, "_topics": [ - "graphql", - "graphql-server", - "python", - "starlette", - "asyncio", - "mypy", - "django", - "graphql-library", - "asgi", - "graphql-schema", - "strawberry", - "hacktoberfest" + "face", + "siggraph-asia", + "style-transfer", + "stylegan2", + "toonify", + "video-style-transfer" ], - "_language": "Python", - "_homepage": "https://strawberry.rocks", - "_description": "strawberry: A GraphQL library for Python that leverages type annotations \ud83c\udf53", - "_organization": "strawberry-graphql", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2018-12-21T00:00:00.000Z", - "_age_weeks": 208, - "_stars_per_week": 13.47, - "_pop_contributor_count": 166, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "AK391@huggingface", + "EndlessSora@nanyangtechnologicaluniversity", + "neeksor", + "williamyang1991@ntu" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "apollographql", - "strawberry-graphql" + "huggingface", + "nanyangtechnologicaluniversity", + "ntu" + ], + "_pop_contributor_orgs_raw": [ + "Huggingface", + "NTU", + "Nanyang Technological University" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 12.23, - "_pop_updated_issues_count": 350, - "_pop_closed_issues_count": 210, - "_pop_created_since_days": 49, + "_pop_commit_frequency": 3.21, + "_pop_updated_issues_count": 22, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 6, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 178, - "_pop_recent_releases_estimated_tags": 123, - "_pop_recent_releases_adjusted_count": 178, - "_pop_issue_count": 350.0, - "_pop_comment_count": 691.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 22.0, + "_pop_comment_count": 48.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 90, - "_pop_score": 59.9, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 0, + "_pop_score": 27.01, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/README.md", - "_readme_localurl": "strawberry-graphql~strawberry~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/setup.py", - "https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/pyproject.toml" - ], - "_requirements_localurls": [ - "strawberry-graphql~strawberry~setup.py", - "strawberry-graphql~strawberry~pyproject.toml" - ] + "_readme_giturl": "https://raw.githubusercontent.com/williamyang1991/vtoonify/master/README.md", + "_readme_localurl": "williamyang1991~vtoonify~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { - "index": 787, - "category": "study", - "githuburl": "https://github.com/cosmicpython/book", + "index": 660, + "category": "ml", + "githuburl": "https://github.com/pytorch/glow", "featured": null, "links": null, "description": null, - "_repopath": "cosmicpython/book", - "_reponame": "book", - "_stars": 2806, - "_forks": 481, - "_watches": 93, + "_repopath": "pytorch/glow", + "_reponame": "glow", + "_stars": 2915, + "_forks": 663, + "_watches": 155, + "_language": "C++", + "_homepage": null, + "_description": "glow: Compiler for Neural Network hardware accelerators", + "_organization": "pytorch", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-09-29T00:00:00.000Z", + "_age_weeks": 281, + "_stars_per_week": 10.35, "_topics": [], - "_language": "Python", - "_homepage": "https://www.cosmicpython.com", - "_description": "book: A Book about Pythonic Application Architecture Patterns for Managing Complexity. Cosmos is the Opposite of Chaos you see. O'R. wouldn't actually let us call it \"Cosmic Python\" tho.", - "_organization": "cosmicpython", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-10-03T00:00:00.000Z", - "_created_at": "2019-02-05T00:00:00.000Z", - "_age_weeks": 201, - "_stars_per_week": 13.9, - "_pop_contributor_count": 44, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-02T00:00:00.000Z", + "_pop_contributor_count": 333, + "_pop_contributor_logins": [ + "artemrakhov-glow", + "bertmaher", + "gcatron", + "jackm321@facebook", + "jfix71", + "nadavrot", + "nickgg", + "opti-mix", + "qcolombet", + "yinghai@facebook" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "carbon-re", - "o'reillymedia" + "facebook" + ], + "_pop_contributor_orgs_raw": [ + "@facebook ", + "Facebook" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.15, - "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 47, - "_pop_updated_since_days": 3, + "_pop_commit_frequency": 2.73, + "_pop_updated_issues_count": 28, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 66, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 3.0, - "_pop_comment_count": 2.0, + "_pop_issue_count": 28.0, + "_pop_comment_count": 43.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 6, - "_pop_score": 29.7, - "_readme_filename": "Readme.md", - "_readme_giturl": "https://raw.githubusercontent.com/cosmicpython/book/master/Readme.md", - "_readme_localurl": "cosmicpython~book~Readme.md", - "_requirements_filenames": [ - "requirements.txt" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/cosmicpython/book/master/requirements.txt" - ], - "_requirements_localurls": [ - "cosmicpython~book~requirements.txt" - ] + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 37.76, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pytorch/glow/master/README.md", + "_readme_localurl": "pytorch~glow~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { - "index": 154, - "category": "pandas", - "githuburl": "https://github.com/adamerose/pandasgui", + "index": 761, + "category": "sim", + "githuburl": "https://github.com/qiskit/qiskit", "featured": null, "links": null, "description": null, - "_repopath": "adamerose/pandasgui", - "_reponame": "PandasGUI", - "_stars": 2796, - "_forks": 190, - "_watches": 53, + "_repopath": "qiskit/qiskit", + "_reponame": "qiskit", + "_stars": 2896, + "_forks": 775, + "_watches": 97, + "_language": "OpenQASM", + "_homepage": "https://qiskit.org", + "_description": "Qiskit is an open-source SDK for working with quantum computers at the level of circuits, algorithms, and application modules.", + "_organization": "qiskit", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2018-12-12T00:00:00.000Z", + "_age_weeks": 219, + "_stars_per_week": 13.22, "_topics": [ - "pandas", - "dataframe", - "gui", - "viewer" + "qiskit", + "quantum-computing", + "quantum-programming-language", + "documentation" ], - "_language": "Python", - "_homepage": "", - "_description": "PandasGUI: A GUI for Pandas DataFrames", - "_organization": "adamerose", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-03-16T00:00:00.000Z", - "_created_at": "2019-06-12T00:00:00.000Z", - "_age_weeks": 183, - "_stars_per_week": 15.22, - "_pop_contributor_count": 13, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 158, + "_pop_contributor_logins": [ + "SooluThomas@ibm", + "delapuente@ibmquantum", + "derivation@ibm", + "diego-plan9@ibmresearch", + "hushaohan@jpmorganchase&co.", + "jakelishman@ibm", + "jaygambetta@ibm", + "mtreinish", + "nonhermitian@ibm", + "qiskit-bot" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "dionresearch" + "ibm", + "ibmquantum", + "ibmresearch", + "jpmorganchase&co." + ], + "_pop_contributor_orgs_raw": [ + "@IBM", + "@IBM ", + "@IBMQuantum", + "@IBMResearch ", + "IBM", + "JPMorgan Chase & Co." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.06, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 43, - "_pop_updated_since_days": 9, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 12, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 7.0, - "_pop_comment_count": 2.0, + "_pop_commit_frequency": 1.6, + "_pop_updated_issues_count": 55, + "_pop_closed_issues_count": 30, + "_pop_created_since_days": 51, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 16, + "_pop_recent_releases_estimated_tags": 21, + "_pop_recent_releases_adjusted_count": 16, + "_pop_issue_count": 57.0, + "_pop_comment_count": 41.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.3, - "_pop_dependents_count": 30, - "_pop_score": 28.19, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 45.68, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/adamerose/pandasgui/master/README.md", - "_readme_localurl": "adamerose~pandasgui~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/qiskit/qiskit/master/README.md", + "_readme_localurl": "qiskit~qiskit~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/adamerose/pandasgui/master/requirements.txt", - "https://raw.githubusercontent.com/adamerose/pandasgui/master/setup.py" + "https://raw.githubusercontent.com/qiskit/qiskit/master/setup.py" ], "_requirements_localurls": [ - "adamerose~pandasgui~requirements.txt", - "adamerose~pandasgui~setup.py" + "qiskit~qiskit~setup.py" ] }, { - "index": 792, - "category": "ml-dl", - "githuburl": "https://github.com/facebookincubator/aitemplate", - "featured": null, + "index": 709, + "category": "pandas", + "githuburl": "https://github.com/nalepae/pandarallel", + "featured": 1.0, "links": null, "description": null, - "_repopath": "facebookincubator/aitemplate", - "_reponame": "AITemplate", - "_stars": 2789, - "_forks": 184, - "_watches": 79, - "_topics": [], + "_repopath": "nalepae/pandarallel", + "_reponame": "pandarallel", + "_stars": 2896, + "_forks": 175, + "_watches": 26, "_language": "Python", - "_homepage": "", - "_description": "AITemplate is a Python framework which renders neural network into high performance CUDA/HIP C++ code. Specialized for FP16 TensorCore (NVIDIA GPU) and MatrixCore (AMD GPU) inference.", - "_organization": "facebookincubator", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2022-07-15T00:00:00.000Z", - "_age_weeks": 22, - "_stars_per_week": 124.35, - "_pop_contributor_count": 18, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://nalepae.github.io/pandarallel", + "_description": "pandarallel: A simple and efficient tool to parallelize Pandas operations on all available\u00a0CPUs", + "_organization": "nalepae", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-03-10T00:00:00.000Z", + "_age_weeks": 206, + "_stars_per_week": 14.03, + "_topics": [ + "pandas", + "python", + "parallel" + ], + "_last_commit_date": "2023-02-12T00:00:00.000Z", + "_pop_contributor_count": 25, + "_pop_contributor_logins": [ + "alvail", + "apahl@mpiofmolecularphysiology(dortmund)", + "bra-fsn", + "dice89@outsmart.aigmbh", + "jorenham@boatboatboat", + "masguit42@intema.ai", + "nalepae@https://www.kiln.fi/", + "till-m@swissdatasciencecenter", + "tobiasedwards", + "vaaaaanquish@caddi" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "facebook" + "boatboatboat", + "caddi", + "https://www.kiln.fi/", + "intema.ai", + "mpiofmolecularphysiology(dortmund)", + "outsmart.aigmbh", + "swissdatasciencecenter" + ], + "_pop_contributor_orgs_raw": [ + "@SwissDataScienceCenter", + "BoatBoatBoat", + "CADDi inc.", + "INTEMA.AI", + "MPI of Molecular Physiology (Dortmund)", + "https://www.kiln.fi/", + "outsmart.ai GmbH" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.56, - "_pop_updated_issues_count": 128, - "_pop_closed_issues_count": 88, - "_pop_created_since_days": 5, + "_pop_commit_frequency": 0.96, + "_pop_updated_issues_count": 32, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 48, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 128.0, - "_pop_comment_count": 328.0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 32.0, + "_pop_comment_count": 61.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.6, + "_pop_comment_frequency": 1.9, "_pop_dependents_count": 0, - "_pop_score": 29.82, + "_pop_score": 42.88, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/facebookincubator/aitemplate/master/README.md", - "_readme_localurl": "facebookincubator~aitemplate~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/nalepae/pandarallel/master/README.md", + "_readme_localurl": "nalepae~pandarallel~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/nalepae/pandarallel/master/setup.py" + ], + "_requirements_localurls": [ + "nalepae~pandarallel~setup.py" + ] }, { "index": 488, @@ -25648,9 +35208,17 @@ "description": null, "_repopath": "pydata/xarray", "_reponame": "xarray", - "_stars": 2788, - "_forks": 857, - "_watches": 107, + "_stars": 2875, + "_forks": 878, + "_watches": 106, + "_language": "Python", + "_homepage": "https://xarray.dev", + "_description": "xarray: N-D labeled arrays and datasets in Python", + "_organization": "pydata", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2013-09-30T00:00:00.000Z", + "_age_weeks": 490, + "_stars_per_week": 5.86, "_topics": [ "python", "netcdf", @@ -25659,38 +35227,53 @@ "xarray", "dask" ], - "_language": "Python", - "_homepage": "https://xarray.dev", - "_description": "xarray: N-D labeled arrays and datasets in Python", - "_organization": "pydata", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2013-09-30T00:00:00.000Z", - "_age_weeks": 481, - "_stars_per_week": 5.8, - "_pop_contributor_count": 407, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 411, + "_pop_contributor_logins": [ + "Illviljan", + "clarkfitzg@mathandstatsdepartment", + "dcherian@ncar", + "fmaussion@universityofinnsbruck", + "fujiisoup", + "keewis", + "mathause@iacethzurich", + "max-sixty", + "shoyer@google", + "spencerkclark@allenai/noaa-gfdl" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "allenai/noaa-gfdl", "google", + "iacethzurich", "mathandstatsdepartment", - "ncar" + "ncar", + "universityofinnsbruck" + ], + "_pop_contributor_orgs_raw": [ + "@NCAR", + "@allenai / @NOAA-GFDL", + "@google ", + "IAC @ ETH Zurich", + "Math and Stats Department", + "University of Innsbruck" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 9.54, - "_pop_updated_issues_count": 448, - "_pop_closed_issues_count": 256, - "_pop_created_since_days": 112, + "_pop_commit_frequency": 8.63, + "_pop_updated_issues_count": 314, + "_pop_closed_issues_count": 156, + "_pop_created_since_days": 114, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 9, "_pop_recent_releases_estimated_tags": 8, "_pop_recent_releases_adjusted_count": 9, - "_pop_issue_count": 448.0, - "_pop_comment_count": 1120.0, + "_pop_issue_count": 314.0, + "_pop_comment_count": 666.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 1142, - "_pop_score": 69.12, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 0, + "_pop_score": 58.05, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pydata/xarray/master/README.md", "_readme_localurl": "pydata~xarray~README.md", @@ -25711,331 +35294,245 @@ ] }, { - "index": 729, - "category": "ml-dl", - "githuburl": "https://github.com/mosaicml/composer", + "index": 261, + "category": "time-series", + "githuburl": "https://github.com/salesforce/merlion", "featured": null, "links": null, "description": null, - "_repopath": "mosaicml/composer", - "_reponame": "composer", - "_stars": 2782, - "_forks": 174, - "_watches": 21, + "_repopath": "salesforce/merlion", + "_reponame": "Merlion", + "_stars": 2875, + "_forks": 248, + "_watches": 46, + "_language": "Python", + "_homepage": "", + "_description": "Merlion: A Machine Learning Framework for Time Series Intelligence", + "_organization": "salesforce", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2021-07-28T00:00:00.000Z", + "_age_weeks": 82, + "_stars_per_week": 35.06, "_topics": [ - "deep-learning", - "pytorch", - "neural-networks", - "ml-systems", - "ml-efficiency", - "ml-training", + "time-series", + "anomaly-detection", + "forecasting", "machine-learning", - "neural-network" + "benchmarking", + "automl", + "ensemble-learning" ], - "_language": "Python", - "_homepage": "http://docs.mosaicml.com", - "_description": "composer: Train neural networks up to 7x faster", - "_organization": "mosaicml", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2021-10-12T00:00:00.000Z", - "_age_weeks": 61, - "_stars_per_week": 44.97, - "_pop_contributor_count": 54, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "mosaicml", - "stanford'22" + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 14, + "_pop_contributor_logins": [ + "Emerald01@salesforceresearch", + "Shreyanand@redhat", + "aadyotb@salesforce", + "chenghaoliu89", + "cnll0075", + "isenilov@twilio", + "jonwiggins@chartbeatillinoishackny", + "paulkass", + "rafaelleinio@wandercom", + "uchiiii" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "chartbeatillinoishackny", + "redhat", + "salesforce", + "salesforceresearch", + "twilio", + "wandercom" + ], + "_pop_contributor_orgs_raw": [ + "@Chartbeat @Illinois @hackny", + "@Salesforce", + "@wandercom", + "Red Hat Inc.", + "Salesforce Research", + "Twilio" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 24.19, - "_pop_updated_issues_count": 357, - "_pop_closed_issues_count": 327, - "_pop_created_since_days": 14, + "_pop_commit_frequency": 0.77, + "_pop_updated_issues_count": 15, + "_pop_closed_issues_count": 12, + "_pop_created_since_days": 19, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 14, - "_pop_recent_releases_estimated_tags": 24, - "_pop_recent_releases_adjusted_count": 14, - "_pop_issue_count": 357.0, - "_pop_comment_count": 326.0, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 15.0, + "_pop_comment_count": 10.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 21, - "_pop_score": 49.76, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 36.0, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/mosaicml/composer/master/README.md", - "_readme_localurl": "mosaicml~composer~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/salesforce/merlion/master/README.md", + "_readme_localurl": "salesforce~merlion~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/mosaicml/composer/master/setup.py", - "https://raw.githubusercontent.com/mosaicml/composer/master/pyproject.toml" + "https://raw.githubusercontent.com/salesforce/merlion/master/setup.py" ], "_requirements_localurls": [ - "mosaicml~composer~setup.py", - "mosaicml~composer~pyproject.toml" + "salesforce~merlion~setup.py" ] }, { - "index": 203, - "category": "viz", - "githuburl": "https://github.com/ml-tooling/opyrator", + "index": 787, + "category": "study", + "githuburl": "https://github.com/cosmicpython/book", "featured": null, "links": null, "description": null, - "_repopath": "ml-tooling/opyrator", - "_reponame": "opyrator", - "_stars": 2759, - "_forks": 132, - "_watches": 48, - "_topics": [ - "fastapi", - "streamlit", - "pydantic", - "python", - "microservices", - "serverless", - "faas", - "functions", - "python-functions", - "machine-learning", - "deployment", - "type-hints" - ], + "_repopath": "cosmicpython/book", + "_reponame": "book", + "_stars": 2865, + "_forks": 486, + "_watches": 94, "_language": "Python", - "_homepage": "https://opyrator-playground.mltooling.org", - "_description": "opyrator: \ud83e\ude84 Turns your machine learning code into microservices with web API, interactive GUI, and more.", - "_organization": "ml-tooling", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2021-05-06T00:00:00.000Z", - "_created_at": "2021-04-06T00:00:00.000Z", - "_age_weeks": 88, - "_stars_per_week": 31.05, - "_pop_contributor_count": 4, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_homepage": "https://www.cosmicpython.com", + "_description": "book: A Book about Pythonic Application Architecture Patterns for Managing Complexity. Cosmos is the Opposite of Chaos you see. O'R. wouldn't actually let us call it \"Cosmic Python\" tho.", + "_organization": "cosmicpython", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2019-02-05T00:00:00.000Z", + "_age_weeks": 211, + "_stars_per_week": 13.57, + "_topics": [], + "_last_commit_date": "2023-02-06T00:00:00.000Z", + "_pop_contributor_count": 44, + "_pop_contributor_logins": [ + "adrienbrunet", + "bobthemighty@carbon-re", + "daniel-butler", + "gaiachik@madedotcom", + "hjwp", + "katherinetozer", + "luanchang", + "nadamsoreilly@o'reillymedia", + "susanmade", + "xtaje" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "carbon-re", + "madedotcom", + "o'reillymedia" + ], + "_pop_contributor_orgs_raw": [ + "@carbon-re ", + "@madedotcom ", + "O'Reilly Media" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 10, - "_pop_closed_issues_count": 5, - "_pop_created_since_days": 21, - "_pop_updated_since_days": 20, + "_pop_commit_frequency": 0.19, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 10.0, - "_pop_comment_count": 8.0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 7, - "_pop_score": 17.15, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/ml-tooling/opyrator/master/README.md", - "_readme_localurl": "ml-tooling~opyrator~README.md", + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 27.69, + "_readme_filename": "Readme.md", + "_readme_giturl": "https://raw.githubusercontent.com/cosmicpython/book/master/Readme.md", + "_readme_localurl": "cosmicpython~book~Readme.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml", - "Pipfile" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/ml-tooling/opyrator/master/setup.py", - "https://raw.githubusercontent.com/ml-tooling/opyrator/master/pyproject.toml", - "https://raw.githubusercontent.com/ml-tooling/opyrator/master/Pipfile" + "https://raw.githubusercontent.com/cosmicpython/book/master/requirements.txt" ], "_requirements_localurls": [ - "ml-tooling~opyrator~setup.py", - "ml-tooling~opyrator~pyproject.toml", - "ml-tooling~opyrator~Pipfile" + "cosmicpython~book~requirements.txt" ] }, { - "index": 156, - "category": "profiling", - "githuburl": "https://github.com/gaogaotiantian/viztracer", + "index": 154, + "category": "pandas", + "githuburl": "https://github.com/adamerose/pandasgui", "featured": null, "links": null, "description": null, - "_repopath": "gaogaotiantian/viztracer", - "_reponame": "viztracer", - "_stars": 2756, - "_forks": 276, - "_watches": 40, - "_topics": [ - "tracer", - "python3", - "debugging", - "profiling", - "visualization", - "flamegraph", - "python", - "logging" - ], - "_language": "Python", - "_homepage": "https://viztracer.readthedocs.io/", - "_description": "VizTracer is a low-overhead logging/debugging/profiling tool that can trace and visualize your python code execution.", - "_organization": "gaogaotiantian", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-08T00:00:00.000Z", - "_created_at": "2020-08-05T00:00:00.000Z", - "_age_weeks": 123, - "_stars_per_week": 22.28, - "_pop_contributor_count": 17, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "facebookairesearch", - "microsoft" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.21, - "_pop_updated_issues_count": 26, - "_pop_closed_issues_count": 22, - "_pop_created_since_days": 29, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 8, - "_pop_recent_releases_estimated_tags": 32, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 26.0, - "_pop_comment_count": 57.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.2, - "_pop_dependents_count": 4, - "_pop_score": 39.25, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/gaogaotiantian/viztracer/master/README.md", - "_readme_localurl": "gaogaotiantian~viztracer~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/gaogaotiantian/viztracer/master/setup.py" - ], - "_requirements_localurls": [ - "gaogaotiantian~viztracer~setup.py" - ] - }, - { - "index": 641, - "category": "testing", - "githuburl": "https://github.com/behave/behave", - "featured": null, - "links": null, - "description": null, - "_repopath": "behave/behave", - "_reponame": "behave", - "_stars": 2739, - "_forks": 608, - "_watches": 120, - "_topics": [], + "_repopath": "adamerose/pandasgui", + "_reponame": "PandasGUI", + "_stars": 2839, + "_forks": 195, + "_watches": 55, "_language": "Python", "_homepage": "", - "_description": "behave: BDD, Python style.", - "_organization": "behave", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-10T00:00:00.000Z", - "_created_at": "2011-10-25T00:00:00.000Z", - "_age_weeks": 581, - "_stars_per_week": 4.71, - "_pop_contributor_count": 85, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "painless-software", - "smartsgroupmarketsurveillance,nasdaqomx" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.19, - "_pop_updated_issues_count": 62, - "_pop_closed_issues_count": 31, - "_pop_created_since_days": 136, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 62.0, - "_pop_comment_count": 99.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 391, - "_pop_score": 52.77, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/behave/behave/master/README.rst", - "_readme_localurl": "behave~behave~README.rst", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/behave/behave/master/setup.py" - ], - "_requirements_localurls": [ - "behave~behave~setup.py" - ] - }, - { - "index": 709, - "category": "pandas", - "githuburl": "https://github.com/nalepae/pandarallel", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "nalepae/pandarallel", - "_reponame": "pandarallel", - "_stars": 2733, - "_forks": 166, - "_watches": 26, + "_description": "PandasGUI: A GUI for Pandas DataFrames", + "_organization": "adamerose", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-06-12T00:00:00.000Z", + "_age_weeks": 193, + "_stars_per_week": 14.71, "_topics": [ "pandas", - "python", - "parallel" + "dataframe", + "gui", + "viewer" ], - "_language": "Python", - "_homepage": "https://nalepae.github.io/pandarallel", - "_description": "pandarallel: A simple and efficient tool to parallelize Pandas operations on all available\u00a0CPUs", - "_organization": "nalepae", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2019-03-10T00:00:00.000Z", - "_age_weeks": 197, - "_stars_per_week": 13.86, - "_pop_contributor_count": 22, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-03-16T00:00:00.000Z", + "_pop_contributor_count": 13, + "_pop_contributor_logins": [ + "John-Ted", + "Marco-Ray", + "SayonB", + "adamerose", + "fdion@dionresearch", + "guilecardoso", + "jmartens", + "mswastik", + "slabko" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "boatboatboat", - "caddi", - "https://www.kiln.fi/", - "swissdatasciencecenter" + "dionresearch" + ], + "_pop_contributor_orgs_raw": [ + "Dion Research LLC" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.87, - "_pop_updated_issues_count": 26, - "_pop_closed_issues_count": 14, - "_pop_created_since_days": 46, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 8, - "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 26.0, - "_pop_comment_count": 48.0, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 45, + "_pop_updated_since_days": 11, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 8.0, + "_pop_comment_count": 9.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 4, - "_pop_score": 42.39, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 24.22, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nalepae/pandarallel/master/README.md", - "_readme_localurl": "nalepae~pandarallel~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/adamerose/pandasgui/master/README.md", + "_readme_localurl": "adamerose~pandasgui~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/nalepae/pandarallel/master/setup.py" + "https://raw.githubusercontent.com/adamerose/pandasgui/master/requirements.txt", + "https://raw.githubusercontent.com/adamerose/pandasgui/master/setup.py" ], "_requirements_localurls": [ - "nalepae~pandarallel~setup.py" + "adamerose~pandasgui~requirements.txt", + "adamerose~pandasgui~setup.py" ] }, { @@ -26047,9 +35544,17 @@ "description": null, "_repopath": "ourownstory/neural_prophet", "_reponame": "neural_prophet", - "_stars": 2702, - "_forks": 363, - "_watches": 47, + "_stars": 2793, + "_forks": 384, + "_watches": 50, + "_language": "Python", + "_homepage": "https://neuralprophet.com", + "_description": "neural_prophet: NeuralProphet: A simple forecasting package", + "_organization": "ourownstory", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-05-04T00:00:00.000Z", + "_age_weeks": 146, + "_stars_per_week": 19.09, "_topics": [ "forecasting", "time-series", @@ -26072,37 +35577,45 @@ "python", "deep-learning" ], - "_language": "Python", - "_homepage": "https://neuralprophet.com", - "_description": "neural_prophet: NeuralProphet: A simple forecasting package", - "_organization": "ourownstory", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2020-05-04T00:00:00.000Z", - "_age_weeks": 137, - "_stars_per_week": 19.72, - "_pop_contributor_count": 34, + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 36, + "_pop_contributor_logins": [ + "HansikaPH", + "Kevin-Chen0", + "LeonieFreisinger", + "MateusGheorghe@stanforduniversity", + "alfonsogarciadecorral", + "bhausleitner", + "judussoari", + "karl-richter@technicaluniversityofmunich", + "noxan", + "ourownstory@stanforduniversity" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "stanforduniversity", "technicaluniversityofmunich" ], + "_pop_contributor_orgs_raw": [ + "Stanford University", + "Technical University of Munich" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.9, - "_pop_updated_issues_count": 314, - "_pop_closed_issues_count": 251, - "_pop_created_since_days": 32, + "_pop_commit_frequency": 6.92, + "_pop_updated_issues_count": 245, + "_pop_closed_issues_count": 157, + "_pop_created_since_days": 34, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 7, + "_pop_recent_releases_count": 8, "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 314.0, - "_pop_comment_count": 588.0, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 245.0, + "_pop_comment_count": 354.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.9, - "_pop_dependents_count": 19, - "_pop_score": 48.7, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 42.55, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ourownstory/neural_prophet/master/README.md", "_readme_localurl": "ourownstory~neural_prophet~README.md", @@ -26119,6 +35632,165 @@ "ourownstory~neural_prophet~pyproject.toml" ] }, + { + "index": 203, + "category": "viz", + "githuburl": "https://github.com/ml-tooling/opyrator", + "featured": null, + "links": null, + "description": null, + "_repopath": "ml-tooling/opyrator", + "_reponame": "opyrator", + "_stars": 2791, + "_forks": 137, + "_watches": 48, + "_language": "Python", + "_homepage": "https://opyrator-playground.mltooling.org", + "_description": "opyrator: \ud83e\ude84 Turns your machine learning code into microservices with web API, interactive GUI, and more.", + "_organization": "ml-tooling", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2021-04-06T00:00:00.000Z", + "_age_weeks": 98, + "_stars_per_week": 28.44, + "_topics": [ + "fastapi", + "streamlit", + "pydantic", + "python", + "microservices", + "serverless", + "faas", + "functions", + "python-functions", + "machine-learning", + "deployment", + "type-hints" + ], + "_last_commit_date": "2021-05-06T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "JopaXd", + "LukasMasuch", + "adriangb", + "raethlein" + ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 23, + "_pop_updated_since_days": 22, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 9.0, + "_pop_comment_count": 6.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 12.98, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/ml-tooling/opyrator/master/README.md", + "_readme_localurl": "ml-tooling~opyrator~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml", + "Pipfile" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/ml-tooling/opyrator/master/setup.py", + "https://raw.githubusercontent.com/ml-tooling/opyrator/master/pyproject.toml", + "https://raw.githubusercontent.com/ml-tooling/opyrator/master/Pipfile" + ], + "_requirements_localurls": [ + "ml-tooling~opyrator~setup.py", + "ml-tooling~opyrator~pyproject.toml", + "ml-tooling~opyrator~Pipfile" + ] + }, + { + "index": 641, + "category": "testing", + "githuburl": "https://github.com/behave/behave", + "featured": null, + "links": null, + "description": null, + "_repopath": "behave/behave", + "_reponame": "behave", + "_stars": 2769, + "_forks": 608, + "_watches": 119, + "_language": "Python", + "_homepage": "", + "_description": "behave: BDD, Python style.", + "_organization": "behave", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2011-10-25T00:00:00.000Z", + "_age_weeks": 591, + "_stars_per_week": 4.68, + "_topics": [], + "_last_commit_date": "2022-12-19T00:00:00.000Z", + "_pop_contributor_count": 86, + "_pop_contributor_logins": [ + "Katherinesun@smartsgroupmarketsurveillance,nasdaqomx", + "berdroid", + "bittner@painless-software", + "florentx", + "jeamland", + "jenisys", + "johbo@bo-techgmbh&co.kg", + "msabramo@adobe", + "r1chardj0n3s", + "vrutkovs@redhat" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "adobe", + "bo-techgmbh&co.kg", + "painless-software", + "redhat", + "smartsgroupmarketsurveillance,nasdaqomx" + ], + "_pop_contributor_orgs_raw": [ + "@adobe", + "@painless-software ", + "Red Hat", + "SMARTS Group Market Surveillance, NASDAQ OMX", + "bo-tech GmbH & Co. KG" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.83, + "_pop_updated_issues_count": 19, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 138, + "_pop_updated_since_days": 14, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 19.0, + "_pop_comment_count": 33.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 36.52, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/behave/behave/master/README.rst", + "_readme_localurl": "behave~behave~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/behave/behave/master/setup.py" + ], + "_requirements_localurls": [ + "behave~behave~setup.py" + ] + }, { "index": 34, "category": "nlp", @@ -26128,9 +35800,17 @@ "description": null, "_repopath": "jbesomi/texthero", "_reponame": "texthero", - "_stars": 2659, - "_forks": 226, - "_watches": 44, + "_stars": 2714, + "_forks": 230, + "_watches": 43, + "_language": "Python", + "_homepage": "https://texthero.org", + "_description": "texthero: Text preprocessing, representation and visualization from zero to hero.", + "_organization": "jbesomi", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2020-04-06T00:00:00.000Z", + "_age_weeks": 150, + "_stars_per_week": 18.06, "_topics": [ "text-preprocessing", "text-representation", @@ -26143,37 +35823,51 @@ "text-clustering", "texthero" ], - "_language": "Python", - "_homepage": "https://texthero.org", - "_description": "texthero: Text preprocessing, representation and visualization from zero to hero.", - "_organization": "jbesomi", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-10-28T00:00:00.000Z", - "_created_at": "2020-04-06T00:00:00.000Z", - "_age_weeks": 141, - "_stars_per_week": 18.86, "_pop_contributor_count": 20, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "ParthGandhi", + "Peritract@sigmalabs", + "cedricconol", + "henrifroese@imctrading", + "ishanarora04", + "jbesomi", + "mk2510@aaltouniversity", + "selimelawwa@incorta", + "sleeper", + "vidyap-xgboost@fiolabs-internal" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "aaltouniversity", - "imctrading" + "fiolabs-internal", + "imctrading", + "incorta", + "sigmalabs" + ], + "_pop_contributor_orgs_raw": [ + "@Incorta ", + "@fiolabs-internal ", + "Aalto University", + "IMC Trading", + "Sigma Labs" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.04, - "_pop_updated_issues_count": 3, + "_pop_updated_issues_count": 4, "_pop_closed_issues_count": 1, - "_pop_created_since_days": 33, - "_pop_updated_since_days": 2, + "_pop_created_since_days": 35, + "_pop_updated_since_days": 4, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 3.0, + "_pop_issue_count": 4.0, "_pop_comment_count": 3.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 29, - "_pop_score": 32.26, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 28.16, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jbesomi/texthero/master/README.md", "_readme_localurl": "jbesomi~texthero~README.md", @@ -26187,6 +35881,111 @@ "jbesomi~texthero~setup.py" ] }, + { + "index": 915, + "category": "util", + "githuburl": "https://github.com/ets-labs/python-dependency-injector", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "ets-labs/python-dependency-injector", + "_reponame": "python-dependency-injector", + "_stars": 2685, + "_forks": 200, + "_watches": 45, + "_language": "Python", + "_homepage": "https://python-dependency-injector.ets-labs.org/", + "_description": "python-dependency-injector: Dependency injection framework for Python", + "_organization": "ets-labs", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-01-04T00:00:00.000Z", + "_age_weeks": 424, + "_stars_per_week": 6.33, + "_topics": [ + "python", + "dependency-injection", + "ioc", + "ioc-container", + "factory", + "singleton", + "design-patterns", + "dependency-injection-container", + "dependency-injection-framework", + "flask", + "aiohttp", + "asyncio", + "python3", + "python-3", + "python-2", + "flask-application", + "flask-restful", + "threadlocal" + ], + "_last_commit_date": "2022-12-19T00:00:00.000Z", + "_pop_contributor_count": 29, + "_pop_contributor_logins": [ + "ebr@brodsky.dev", + "kinow@barcelonasupercomputingcenter", + "kootoopas@nuclearmode", + "metaperl", + "piperubio@silocydataspa", + "rda-dev", + "rmk135@ets-labspythontechnicalleader", + "sonthonaxrk", + "withshubh@tooljet", + "xotonic@lux-core" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "barcelonasupercomputingcenter", + "brodsky.dev", + "ets-labspythontechnicalleader", + "lux-core", + "nuclearmode", + "silocydataspa", + "tooljet" + ], + "_pop_contributor_orgs_raw": [ + "@LUX-Core ", + "@ToolJet", + "@ets-labs Python Technical Leader", + "@nuclearmode", + "Barcelona Supercomputing Center", + "SilocyData SPA", + "brodsky.dev" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.67, + "_pop_updated_issues_count": 40, + "_pop_closed_issues_count": 16, + "_pop_created_since_days": 99, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 40, + "_pop_recent_releases_adjusted_count": 40, + "_pop_issue_count": 40.0, + "_pop_comment_count": 37.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 42.2, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/ets-labs/python-dependency-injector/master/README.rst", + "_readme_localurl": "ets-labs~python-dependency-injector~README.rst", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/ets-labs/python-dependency-injector/master/requirements.txt", + "https://raw.githubusercontent.com/ets-labs/python-dependency-injector/master/setup.py" + ], + "_requirements_localurls": [ + "ets-labs~python-dependency-injector~requirements.txt", + "ets-labs~python-dependency-injector~setup.py" + ] + }, { "index": 130, "category": "ml-dl", @@ -26196,9 +35995,17 @@ "description": null, "_repopath": "explosion/thinc", "_reponame": "thinc", - "_stars": 2635, - "_forks": 259, - "_watches": 85, + "_stars": 2669, + "_forks": 270, + "_watches": 82, + "_language": "Python", + "_homepage": "https://thinc.ai", + "_description": "thinc: \ud83d\udd2e A refreshing functional take on deep learning, compatible with your favorite libraries", + "_organization": "explosion", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-10-16T00:00:00.000Z", + "_age_weeks": 435, + "_stars_per_week": 6.12, "_topics": [ "machine-learning", "deep-learning", @@ -26216,37 +36023,50 @@ "mxnet", "jax" ], - "_language": "Python", - "_homepage": "https://thinc.ai", - "_description": "thinc: \ud83d\udd2e A refreshing functional take on deep learning, compatible with your favorite libraries", - "_organization": "explosion", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2014-10-16T00:00:00.000Z", - "_age_weeks": 426, - "_stars_per_week": 6.18, - "_pop_contributor_count": 57, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 61, + "_pop_contributor_logins": [ + "adrianeboyd", + "danieldk@explosion", + "henningpeters", + "honnibal@founderexplosion", + "ines@founderexplosion", + "justindujardin@dujardinconsulting,mathy", + "shadeMe", + "svlandeg@explosion&oxykodit", + "syllog1sm@founderexplosion", + "tiangolo" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "dujardinconsulting,mathy", + "explosion", "explosion&oxykodit", "founderexplosion" ], + "_pop_contributor_orgs_raw": [ + "@explosion ", + "DuJardin Consulting, @mathy", + "Explosion & OxyKodit", + "Founder @explosion", + "Founder @explosion " + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.29, - "_pop_updated_issues_count": 58, - "_pop_closed_issues_count": 50, - "_pop_created_since_days": 100, + "_pop_commit_frequency": 3.23, + "_pop_updated_issues_count": 56, + "_pop_closed_issues_count": 48, + "_pop_created_since_days": 102, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 11, + "_pop_recent_releases_count": 13, "_pop_recent_releases_estimated_tags": 11, - "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 58.0, - "_pop_comment_count": 67.0, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 56.0, + "_pop_comment_count": 36.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 255, - "_pop_score": 53.66, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 45.31, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/explosion/thinc/master/README.md", "_readme_localurl": "explosion~thinc~README.md", @@ -26267,61 +36087,179 @@ ] }, { - "index": 113, - "category": "nlp", - "githuburl": "https://github.com/huggingface/neuralcoref", + "index": 111, + "category": "ml", + "githuburl": "https://github.com/teamhg-memex/eli5", "featured": null, "links": null, "description": null, - "_repopath": "huggingface/neuralcoref", - "_reponame": "neuralcoref", - "_stars": 2630, - "_forks": 461, - "_watches": 96, + "_repopath": "teamhg-memex/eli5", + "_reponame": "eli5", + "_stars": 2647, + "_forks": 326, + "_watches": 70, + "_language": "Jupyter Notebook", + "_homepage": "http://eli5.readthedocs.io", + "_description": "eli5: A library for debugging/inspecting machine learning classifiers and explaining their predictions", + "_organization": "teamhg-memex", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2016-09-15T00:00:00.000Z", + "_age_weeks": 335, + "_stars_per_week": 7.88, "_topics": [ - "python", + "scikit-learn", "machine-learning", - "coreference", - "spacy", - "coreference-resolution", - "spacy-extension", - "spacy-pipeline", + "xgboost", + "lightgbm", + "crfsuite", + "inspection", + "explanation", "nlp", - "neural-networks", - "pytorch" + "data-science", + "python" ], - "_language": "C", - "_homepage": "https://huggingface.co/coref/", - "_description": "neuralcoref: \u2728Fast Coreference Resolution in spaCy with Neural Networks", - "_organization": "huggingface", - "_updated_at": "2022-12-12T00:00:00.000Z", - "_last_commit_date": "2021-06-22T00:00:00.000Z", - "_created_at": "2017-07-03T00:00:00.000Z", - "_age_weeks": 285, - "_stars_per_week": 9.23, - "_pop_contributor_count": 21, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2020-01-22T00:00:00.000Z", + "_pop_contributor_count": 14, + "_pop_contributor_logins": [ + "AshwinB-hat", + "ivanprado@www.ivanprado.es", + "jnothman@canva", + "kmike@zytedata,scrapinghub", + "krkd", + "lopuhin@zyte", + "mehaase@infosecandaimitre", + "rg2410@gardeassetmanagement", + "teabolt", + "zzz4zzz" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "explosion&oxykodit", - "filamentai", - "huggingface" + "canva", + "gardeassetmanagement", + "infosecandaimitre", + "www.ivanprado.es", + "zyte", + "zytedata,scrapinghub" + ], + "_pop_contributor_orgs_raw": [ + "@zytedata, @ScrapingHub", + "Canva", + "Garde Asset Management", + "Infosec and AI @MITRE", + "Zyte", + "www.ivanprado.es" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 66, - "_pop_updated_since_days": 18, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 7.0, - "_pop_comment_count": 10.0, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 78, + "_pop_updated_since_days": 38, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 2.0, + "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 26, - "_pop_score": 31.49, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 24.11, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/teamhg-memex/eli5/master/README.rst", + "_readme_localurl": "teamhg-memex~eli5~README.rst", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/teamhg-memex/eli5/master/requirements.txt", + "https://raw.githubusercontent.com/teamhg-memex/eli5/master/setup.py" + ], + "_requirements_localurls": [ + "teamhg-memex~eli5~requirements.txt", + "teamhg-memex~eli5~setup.py" + ] + }, + { + "index": 113, + "category": "nlp", + "githuburl": "https://github.com/huggingface/neuralcoref", + "featured": null, + "links": null, + "description": null, + "_repopath": "huggingface/neuralcoref", + "_reponame": "neuralcoref", + "_stars": 2647, + "_forks": 461, + "_watches": 97, + "_language": "C", + "_homepage": "https://huggingface.co/coref/", + "_description": "neuralcoref: \u2728Fast Coreference Resolution in spaCy with Neural Networks", + "_organization": "huggingface", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2017-07-03T00:00:00.000Z", + "_age_weeks": 294, + "_stars_per_week": 8.99, + "_topics": [ + "python", + "machine-learning", + "coreference", + "spacy", + "coreference-resolution", + "spacy-extension", + "spacy-pipeline", + "nlp", + "neural-networks", + "pytorch" + ], + "_last_commit_date": "2021-06-22T00:00:00.000Z", + "_pop_contributor_count": 21, + "_pop_contributor_logins": [ + "Abhijit-2592@mlgoogle", + "Elizabeth2507", + "bgamari@welltypedllp", + "cbiehl", + "janithwanni@universityofsrijayewardenepura", + "julien-c@huggingface", + "ravenscroftj@filamentai", + "shepdl", + "svlandeg@explosion&oxykodit", + "thomwolf@huggingface" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "explosion&oxykodit", + "filamentai", + "huggingface", + "mlgoogle", + "universityofsrijayewardenepura", + "welltypedllp" + ], + "_pop_contributor_orgs_raw": [ + "@FilamentAI ", + "@huggingface ", + "Explosion & OxyKodit", + "ML @Google", + "University of Sri Jayewardenepura", + "Well Typed LLP" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 69, + "_pop_updated_since_days": 20, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 5.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 26.27, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/huggingface/neuralcoref/master/README.md", "_readme_localurl": "huggingface~neuralcoref~README.md", @@ -26339,75 +36277,97 @@ ] }, { - "index": 111, - "category": "ml", - "githuburl": "https://github.com/teamhg-memex/eli5", + "index": 428, + "category": "util", + "githuburl": "https://github.com/pycqa/flake8", "featured": null, "links": null, "description": null, - "_repopath": "teamhg-memex/eli5", - "_reponame": "eli5", - "_stars": 2618, - "_forks": 326, - "_watches": 68, + "_repopath": "pycqa/flake8", + "_reponame": "flake8", + "_stars": 2645, + "_forks": 272, + "_watches": 34, + "_language": "Python", + "_homepage": "https://flake8.pycqa.org", + "_description": "flake8 is a python tool that glues together pycodestyle, pyflakes, mccabe, and third-party plugins to check the style and quality of some python code.", + "_organization": "pycqa", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-09-13T00:00:00.000Z", + "_age_weeks": 440, + "_stars_per_week": 6.0, "_topics": [ - "scikit-learn", - "machine-learning", - "xgboost", - "lightgbm", - "crfsuite", - "inspection", - "explanation", - "nlp", - "data-science", - "python" + "python", + "python3", + "static-analysis", + "static-code-analysis", + "linter", + "linter-flake8", + "stylelint", + "styleguide", + "style-guide", + "flake8", + "pep8", + "complexity-analysis" ], - "_language": "Jupyter Notebook", - "_homepage": "http://eli5.readthedocs.io", - "_description": "eli5: A library for debugging/inspecting machine learning classifiers and explaining their predictions", - "_organization": "teamhg-memex", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2020-01-22T00:00:00.000Z", - "_created_at": "2016-09-15T00:00:00.000Z", - "_age_weeks": 326, - "_stars_per_week": 8.02, - "_pop_contributor_count": 14, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 172, + "_pop_contributor_logins": [ + "asottile", + "carljm@instagram", + "ericvw@bloomberg", + "florentx", + "jdufresne@pioneervalleybooks", + "pre-commit-ci[bot]", + "scop@upcloudltd", + "sigmavirus24@tableau&salesforce", + "tarekziade@elastic", + "xZise" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "canva", - "zyte", - "zytedata,scrapinghub" + "bloomberg", + "elastic", + "instagram", + "pioneervalleybooks", + "tableau&salesforce", + "upcloudltd" + ], + "_pop_contributor_orgs_raw": [ + "@UpCloudLtd ", + "@bloomberg ", + "@elastic ", + "@tableau & @salesforce", + "Instagram", + "Pioneer Valley Books" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 76, - "_pop_updated_since_days": 35, + "_pop_commit_frequency": 1.73, + "_pop_updated_issues_count": 65, + "_pop_closed_issues_count": 61, + "_pop_created_since_days": 103, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 7.0, - "_pop_comment_count": 4.0, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 65.0, + "_pop_comment_count": 110.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 13, - "_pop_score": 27.66, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 51.12, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/teamhg-memex/eli5/master/README.rst", - "_readme_localurl": "teamhg-memex~eli5~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pycqa/flake8/master/README.rst", + "_readme_localurl": "pycqa~flake8~README.rst", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/teamhg-memex/eli5/master/requirements.txt", - "https://raw.githubusercontent.com/teamhg-memex/eli5/master/setup.py" + "https://raw.githubusercontent.com/pycqa/flake8/master/setup.py" ], "_requirements_localurls": [ - "teamhg-memex~eli5~requirements.txt", - "teamhg-memex~eli5~setup.py" + "pycqa~flake8~setup.py" ] }, { @@ -26419,9 +36379,17 @@ "description": null, "_repopath": "pallets/itsdangerous", "_reponame": "itsdangerous", - "_stars": 2593, - "_forks": 213, + "_stars": 2632, + "_forks": 215, "_watches": 57, + "_language": "Python", + "_homepage": "https://itsdangerous.palletsprojects.com", + "_description": "itsdangerous: Safely pass trusted data to untrusted environments and back.", + "_organization": "pallets", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2011-06-24T00:00:00.000Z", + "_age_weeks": 608, + "_stars_per_week": 4.32, "_topics": [ "python", "security", @@ -26430,49 +36398,210 @@ "itsdangerous", "pallets" ], - "_language": "Python", - "_homepage": "https://itsdangerous.palletsprojects.com", - "_description": "itsdangerous: Safely pass trusted data to untrusted environments and back.", - "_organization": "pallets", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-01T00:00:00.000Z", - "_created_at": "2011-06-24T00:00:00.000Z", - "_age_weeks": 599, - "_stars_per_week": 4.33, - "_pop_contributor_count": 41, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-07T00:00:00.000Z", + "_pop_contributor_count": 42, + "_pop_contributor_logins": [ + "ThomasWaldmann", + "alanhamlett@wakatime", + "davidism", + "dependabot-preview[bot]", + "dependabot[bot]", + "ft-arnout@fireteam", + "lepture@hsiaoming", + "mitsuhiko@sentry", + "pre-commit-ci[bot]", + "untitaker@getsentry" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "sentry" + "fireteam", + "getsentry", + "hsiaoming", + "sentry", + "wakatime" + ], + "_pop_contributor_orgs_raw": [ + "@getsentry ", + "@hsiaoming ", + "@wakatime", + "Fireteam", + "Sentry" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.67, - "_pop_updated_issues_count": 8, - "_pop_closed_issues_count": 7, - "_pop_created_since_days": 140, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 3, + "_pop_commit_frequency": 0.77, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 16, + "_pop_created_since_days": 142, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 8.0, - "_pop_comment_count": 2.0, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 16.0, + "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.2, - "_pop_dependents_count": 598, - "_pop_score": 41.34, + "_pop_comment_frequency": 0.1, + "_pop_dependents_count": 0, + "_pop_score": 38.2, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pallets/itsdangerous/master/README.rst", "_readme_localurl": "pallets~itsdangerous~README.rst", "_requirements_filenames": [ - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pallets/itsdangerous/master/setup.py" + "https://raw.githubusercontent.com/pallets/itsdangerous/master/pyproject.toml" ], "_requirements_localurls": [ - "pallets~itsdangerous~setup.py" + "pallets~itsdangerous~pyproject.toml" ] }, + { + "index": 886, + "category": "study", + "githuburl": "https://github.com/huggingface/deep-rl-class", + "featured": null, + "links": null, + "description": null, + "_repopath": "huggingface/deep-rl-class", + "_reponame": "deep-rl-class", + "_stars": 2627, + "_forks": 348, + "_watches": 86, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "deep-rl-class: This repo contains the syllabus of the Hugging Face Deep Reinforcement Learning Course.", + "_organization": "huggingface", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-04-21T00:00:00.000Z", + "_age_weeks": 43, + "_stars_per_week": 59.9, + "_topics": [ + "deep-reinforcement-learning", + "reinforcement-learning", + "reinforcement-learning-excercises", + "deep-learning" + ], + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 44, + "_pop_contributor_logins": [ + "Artachtron", + "Mike-Wazowsk1", + "SuperSecureHuman", + "avoroshilov", + "dario248", + "diskshima", + "imflash217", + "osanseviero@huggingface", + "simoninithomas@huggingface", + "theicfire" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "huggingface" + ], + "_pop_contributor_orgs_raw": [ + "@huggingface", + "Hugging Face" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 10.75, + "_pop_updated_issues_count": 138, + "_pop_closed_issues_count": 104, + "_pop_created_since_days": 10, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 138.0, + "_pop_comment_count": 240.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 34.83, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/huggingface/deep-rl-class/master/README.md", + "_readme_localurl": "huggingface~deep-rl-class~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 539, + "category": "nlp", + "githuburl": "https://github.com/huawei-noah/pretrained-language-model", + "featured": null, + "links": null, + "description": null, + "_repopath": "huawei-noah/pretrained-language-model", + "_reponame": "Pretrained-Language-Model", + "_stars": 2626, + "_forks": 562, + "_watches": 52, + "_language": "Python", + "_homepage": "", + "_description": "Pretrained-Language-Model: Pretrained language model and its related optimization techniques developed by Huawei Noah's Ark Lab.", + "_organization": "huawei-noah", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-12-02T00:00:00.000Z", + "_age_weeks": 168, + "_stars_per_week": 15.6, + "_topics": [ + "knowledge-distillation", + "model-compression", + "quantization", + "pretrained-models", + "large-scale-distributed" + ], + "_last_commit_date": "2022-12-25T00:00:00.000Z", + "_pop_contributor_count": 20, + "_pop_contributor_logins": [ + "ItachiUchihaVictor", + "MiFei", + "ghaddarAbs", + "itsucks", + "jacobrxz@huawei-noah", + "jingmu123", + "jxfeb", + "mengxj08@nationaluniversityofsingapore", + "zbravo", + "zwjyyc@pekingunversity" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "huawei-noah", + "nationaluniversityofsingapore", + "pekingunversity" + ], + "_pop_contributor_orgs_raw": [ + "@huawei-noah ", + "National University of Singapore", + "Peking unversity" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.37, + "_pop_updated_issues_count": 18, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 39, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 18.0, + "_pop_comment_count": 18.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 28.19, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/huawei-noah/pretrained-language-model/master/README.md", + "_readme_localurl": "huawei-noah~pretrained-language-model~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 85, "category": "graph", @@ -26482,9 +36611,17 @@ "description": null, "_repopath": "stellargraph/stellargraph", "_reponame": "stellargraph", - "_stars": 2572, - "_forks": 396, + "_stars": 2625, + "_forks": 401, "_watches": 62, + "_language": "Python", + "_homepage": "https://stellargraph.readthedocs.io/", + "_description": "StellarGraph - Machine Learning on Graphs", + "_organization": "stellargraph", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-04-13T00:00:00.000Z", + "_age_weeks": 253, + "_stars_per_week": 10.35, "_topics": [ "graphs", "machine-learning", @@ -26506,38 +36643,49 @@ "deep-learning", "data-science" ], - "_language": "Python", - "_homepage": "https://stellargraph.readthedocs.io/", - "_description": "StellarGraph - Machine Learning on Graphs", - "_organization": "stellargraph", - "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2021-10-29T00:00:00.000Z", - "_created_at": "2018-04-13T00:00:00.000Z", - "_age_weeks": 244, - "_stars_per_week": 10.52, "_pop_contributor_count": 36, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "PantelisElinas", + "adocherty@exoflare", + "daokunzhang@monashuniversity", + "habiba-h", + "huonw@xoflare", + "kieranricardo", + "kjun9", + "sktzwhj", + "timpitman@exoflare", + "youph@data61" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "data61", "exoflare", + "monashuniversity", "xoflare" ], + "_pop_contributor_orgs_raw": [ + "@data61 ", + "@xoflare ", + "ExoFlare", + "Monash University" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 12, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 57, - "_pop_updated_since_days": 14, + "_pop_updated_issues_count": 20, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 59, + "_pop_updated_since_days": 16, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 12.0, - "_pop_comment_count": 9.0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 20.0, + "_pop_comment_count": 16.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 177, - "_pop_score": 38.24, + "_pop_dependents_count": 0, + "_pop_score": 29.72, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/stellargraph/stellargraph/master/README.md", "_readme_localurl": "stellargraph~stellargraph~README.md", @@ -26555,57 +36703,63 @@ ] }, { - "index": 539, - "category": "nlp", - "githuburl": "https://github.com/huawei-noah/pretrained-language-model", + "index": 748, + "category": "study", + "githuburl": "https://github.com/zhanymkanov/fastapi-best-practices", "featured": null, "links": null, "description": null, - "_repopath": "huawei-noah/pretrained-language-model", - "_reponame": "Pretrained-Language-Model", - "_stars": 2562, - "_forks": 550, - "_watches": 52, + "_repopath": "zhanymkanov/fastapi-best-practices", + "_reponame": "fastapi-best-practices", + "_stars": 2619, + "_forks": 189, + "_watches": 51, + "_language": null, + "_homepage": "", + "_description": "fastapi-best-practices: FastAPI Best Practices and Conventions we used @ hi.peerlink.me", + "_organization": "zhanymkanov", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-08-09T00:00:00.000Z", + "_age_weeks": 28, + "_stars_per_week": 93.06, "_topics": [ - "knowledge-distillation", - "model-compression", - "quantization", - "pretrained-models", - "large-scale-distributed" + "fastapi", + "best-practices" + ], + "_last_commit_date": "2023-01-09T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "anton-shum", + "nbanic", + "paulovitorweb", + "zhanymkanov@viaprotocol" ], - "_language": "Python", - "_homepage": "", - "_description": "Pretrained-Language-Model: Pretrained language model and its related optimization techniques developed by Huawei Noah's Ark Lab.", - "_organization": "huawei-noah", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-21T00:00:00.000Z", - "_created_at": "2019-12-02T00:00:00.000Z", - "_age_weeks": 159, - "_stars_per_week": 16.11, - "_pop_contributor_count": 19, "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "huawei-noah" + "viaprotocol" + ], + "_pop_contributor_orgs_raw": [ + "@viaprotocol" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.38, - "_pop_updated_issues_count": 23, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 37, + "_pop_commit_frequency": 0.87, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 7, "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 23.0, - "_pop_comment_count": 20.0, + "_pop_issue_count": 11.0, + "_pop_comment_count": 19.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 2, - "_pop_score": 27.45, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 19.59, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/huawei-noah/pretrained-language-model/master/README.md", - "_readme_localurl": "huawei-noah~pretrained-language-model~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/zhanymkanov/fastapi-best-practices/master/README.md", + "_readme_localurl": "zhanymkanov~fastapi-best-practices~README.md", "_requirements_filenames": [], "_requirements_giturls": [], "_requirements_localurls": [] @@ -26619,9 +36773,17 @@ "description": null, "_repopath": "inducer/pudb", "_reponame": "pudb", - "_stars": 2559, - "_forks": 215, - "_watches": 46, + "_stars": 2594, + "_forks": 217, + "_watches": 47, + "_language": "Python", + "_homepage": "https://documen.tician.de/pudb/", + "_description": "pudb: Full-screen console debugger for Python", + "_organization": "inducer", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2011-05-13T00:00:00.000Z", + "_age_weeks": 614, + "_stars_per_week": 4.22, "_topics": [ "python", "debugger", @@ -26633,38 +36795,49 @@ "urwid", "debug" ], - "_language": "Python", - "_homepage": "https://documen.tician.de/pudb/", - "_description": "pudb: Full-screen console debugger for Python", - "_organization": "inducer", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-20T00:00:00.000Z", - "_created_at": "2011-05-13T00:00:00.000Z", - "_age_weeks": 605, - "_stars_per_week": 4.23, + "_last_commit_date": "2023-01-10T00:00:00.000Z", "_pop_contributor_count": 91, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "asmeurer@quansight", + "bulletmark", + "epmoyer", + "inducer@scientificcomputing,csuiuc", + "jstriebel@scalableminds", + "mvanderkamp", + "nmichaud", + "swarmer", + "wronglink", + "xywei@uiuc" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "quansight", "scalableminds", - "scientificcomputing,csuiuc" + "scientificcomputing,csuiuc", + "uiuc" + ], + "_pop_contributor_orgs_raw": [ + "@Quansight ", + "@scalableminds", + "Scientific Computing, CS@UIUC", + "UIUC" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.96, - "_pop_updated_issues_count": 24, - "_pop_closed_issues_count": 13, - "_pop_created_since_days": 141, + "_pop_commit_frequency": 0.75, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 9, + "_pop_created_since_days": 143, "_pop_updated_since_days": 1, "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 6, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 24.0, - "_pop_comment_count": 35.0, + "_pop_issue_count": 16.0, + "_pop_comment_count": 20.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 428, - "_pop_score": 51.27, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 40.26, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/inducer/pudb/master/README.rst", "_readme_localurl": "inducer~pudb~README.rst", @@ -26679,196 +36852,90 @@ ] }, { - "index": 159, - "category": "data", - "githuburl": "https://github.com/goldsmith/wikipedia", + "index": 369, + "category": "nlp", + "githuburl": "https://github.com/bytedance/lightseq", "featured": null, "links": null, "description": null, - "_repopath": "goldsmith/wikipedia", - "_reponame": "Wikipedia", - "_stars": 2532, - "_forks": 514, - "_watches": 82, - "_topics": [], - "_language": "Python", - "_homepage": "https://wikipedia.readthedocs.org/", - "_description": "Wikipedia: A Pythonic wrapper for the Wikipedia API", - "_organization": "goldsmith", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2020-10-09T00:00:00.000Z", - "_created_at": "2013-08-20T00:00:00.000Z", - "_age_weeks": 486, - "_stars_per_week": 5.2, - "_pop_contributor_count": 23, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "localkitchens", - "nationalradioastronomyobservatory" + "_repopath": "bytedance/lightseq", + "_reponame": "lightseq", + "_stars": 2591, + "_forks": 296, + "_watches": 53, + "_language": "C++", + "_homepage": "", + "_description": "LightSeq: A High Performance Library for Sequence Processing and Generation", + "_organization": "bytedance", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-12-06T00:00:00.000Z", + "_age_weeks": 167, + "_stars_per_week": 15.45, + "_topics": [ + "inference", + "transformer", + "beam-search", + "bert", + "cuda", + "sampling", + "diverse-decoding", + "multilingual-nmt", + "training", + "bart", + "gpt", + "accelerate" + ], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 16, + "_pop_contributor_logins": [ + "Anychnn", + "HandH1998@beihanguniversity", + "Taka152@bytedance", + "aachong", + "godweiyang@bytedanceantnlp", + "hexisyztem@bytedance,ailab", + "lileicc@ucsb", + "neopro12@bytedanceailab", + "xingyaoww@universityofillinoisaturbana-champaign", + "zjersey@bytedancethinklab-sjtu" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "beihanguniversity", + "bytedance", + "bytedance,ailab", + "bytedanceailab", + "bytedanceantnlp", + "bytedancethinklab-sjtu", + "ucsb", + "universityofillinoisaturbana-champaign" + ], + "_pop_contributor_orgs_raw": [ + "@ByteDance @AntNLP", + "@bytedance @Thinklab-SJTU", + "Beihang University", + "ByteDance Inc.", + "Bytedance AI Lab", + "Bytedance, AI Lab", + "UCSB", + "University of Illinois at Urbana-Champaign" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 10, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 114, - "_pop_updated_since_days": 27, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 10.0, - "_pop_comment_count": 10.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 81, - "_pop_score": 31.09, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/goldsmith/wikipedia/master/README.rst", - "_readme_localurl": "goldsmith~wikipedia~README.rst", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/goldsmith/wikipedia/master/requirements.txt", - "https://raw.githubusercontent.com/goldsmith/wikipedia/master/setup.py" - ], - "_requirements_localurls": [ - "goldsmith~wikipedia~requirements.txt", - "goldsmith~wikipedia~setup.py" - ] - }, - { - "index": 428, - "category": "util", - "githuburl": "https://github.com/pycqa/flake8", - "featured": null, - "links": null, - "description": null, - "_repopath": "pycqa/flake8", - "_reponame": "flake8", - "_stars": 2524, - "_forks": 255, - "_watches": 33, - "_topics": [ - "python", - "python3", - "static-analysis", - "static-code-analysis", - "linter", - "linter-flake8", - "stylelint", - "styleguide", - "style-guide", - "flake8", - "pep8", - "complexity-analysis" - ], - "_language": "Python", - "_homepage": "https://flake8.pycqa.org", - "_description": "flake8 is a python tool that glues together pycodestyle, pyflakes, mccabe, and third-party plugins to check the style and quality of some python code.", - "_organization": "pycqa", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2014-09-13T00:00:00.000Z", - "_age_weeks": 431, - "_stars_per_week": 5.85, - "_pop_contributor_count": 172, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "bloomberg", - "elastic", - "tableau&salesforce" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.38, - "_pop_updated_issues_count": 92, - "_pop_closed_issues_count": 86, - "_pop_created_since_days": 101, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 10, - "_pop_issue_count": 92.0, - "_pop_comment_count": 141.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 14344, - "_pop_score": 66.0, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pycqa/flake8/master/README.rst", - "_readme_localurl": "pycqa~flake8~README.rst", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pycqa/flake8/master/setup.py" - ], - "_requirements_localurls": [ - "pycqa~flake8~setup.py" - ] - }, - { - "index": 369, - "category": "nlp", - "githuburl": "https://github.com/bytedance/lightseq", - "featured": null, - "links": null, - "description": null, - "_repopath": "bytedance/lightseq", - "_reponame": "lightseq", - "_stars": 2518, - "_forks": 281, - "_watches": 51, - "_topics": [ - "inference", - "transformer", - "beam-search", - "bert", - "cuda", - "sampling", - "diverse-decoding", - "multilingual-nmt", - "training", - "bart", - "gpt", - "accelerate" - ], - "_language": "C++", - "_homepage": "", - "_description": "LightSeq: A High Performance Library for Sequence Processing and Generation", - "_organization": "bytedance", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2019-12-06T00:00:00.000Z", - "_age_weeks": 158, - "_stars_per_week": 15.89, - "_pop_contributor_count": 14, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "bytedance", - "bytedance,ailab", - "bytedanceailab", - "bytedanceantnlp", - "universityofillinoisaturbana-champaign" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.25, - "_pop_updated_issues_count": 69, - "_pop_closed_issues_count": 35, - "_pop_created_since_days": 37, + "_pop_commit_frequency": 1.31, + "_pop_updated_issues_count": 52, + "_pop_closed_issues_count": 30, + "_pop_created_since_days": 39, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 3, "_pop_recent_releases_estimated_tags": 4, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 69.0, - "_pop_comment_count": 99.0, + "_pop_issue_count": 52.0, + "_pop_comment_count": 55.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 2, - "_pop_score": 40.14, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 39.82, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/bytedance/lightseq/master/README.md", "_readme_localurl": "bytedance~lightseq~README.md", @@ -26883,59 +36950,100 @@ ] }, { - "index": 94, - "category": "term", - "githuburl": "https://github.com/urwid/urwid", + "index": 431, + "category": "viz", + "githuburl": "https://github.com/holoviz/panel", "featured": null, "links": null, "description": null, - "_repopath": "urwid/urwid", - "_reponame": "urwid", - "_stars": 2518, - "_forks": 310, - "_watches": 60, - "_topics": [], + "_repopath": "holoviz/panel", + "_reponame": "panel", + "_stars": 2586, + "_forks": 320, + "_watches": 48, "_language": "Python", - "_homepage": "urwid.org", - "_description": "urwid: Console user interface library for Python (official repo)", - "_organization": "urwid", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-07-12T00:00:00.000Z", - "_created_at": "2010-02-25T00:00:00.000Z", - "_age_weeks": 668, - "_stars_per_week": 3.77, - "_pop_contributor_count": 116, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://panel.holoviz.org", + "_description": "panel: A high-level app and dashboarding solution for Python", + "_organization": "holoviz", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-08-23T00:00:00.000Z", + "_age_weeks": 234, + "_stars_per_week": 11.01, + "_topics": [ + "holoviz", + "panel", + "dashboards", + "control-panels", + "gui", + "dataapp", + "dataviz", + "bokeh", + "datascience", + "holoviews", + "hvplot", + "jupyter", + "matplotlib", + "plotly" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 115, + "_pop_contributor_logins": [ + "Hoxbro", + "MarcSkovMadsen@data,modelsandanalytics", + "ceball", + "dependabot[bot]", + "jbednar@anaconda", + "jlstevens", + "jsignell@azavea", + "maximlt@anaconda", + "philippjfr@anaconda", + "xavArtley@cea" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "newfirepartners,mediwareinc,holmusk,unitio-org,urwid" + "anaconda", + "azavea", + "cea", + "data,modelsandanalytics" + ], + "_pop_contributor_orgs_raw": [ + "@azavea", + "Anaconda", + "Anaconda Inc.", + "Anaconda, Inc.", + "Data, models and analytics", + "cea" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.04, - "_pop_updated_issues_count": 8, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 156, - "_pop_updated_since_days": 17, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 8.0, - "_pop_comment_count": 7.0, + "_pop_commit_frequency": 13.92, + "_pop_updated_issues_count": 549, + "_pop_closed_issues_count": 284, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 100, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 549.0, + "_pop_comment_count": 691.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 56, - "_pop_score": 36.42, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/urwid/urwid/master/README.rst", - "_readme_localurl": "urwid~urwid~README.rst", + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 51.01, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/holoviz/panel/master/README.md", + "_readme_localurl": "holoviz~panel~README.md", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/urwid/urwid/master/setup.py" + "https://raw.githubusercontent.com/holoviz/panel/master/setup.py", + "https://raw.githubusercontent.com/holoviz/panel/master/pyproject.toml" ], "_requirements_localurls": [ - "urwid~urwid~setup.py" + "holoviz~panel~setup.py", + "holoviz~panel~pyproject.toml" ] }, { @@ -26947,9 +37055,17 @@ "description": null, "_repopath": "pydata/pandas-datareader", "_reponame": "pandas-datareader", - "_stars": 2506, - "_forks": 620, - "_watches": 132, + "_stars": 2582, + "_forks": 633, + "_watches": 138, + "_language": "Python", + "_homepage": "https://pydata.github.io/pandas-datareader/stable/index.html", + "_description": "pandas-datareader: Extract data from a wide range of Internet sources into a pandas DataFrame.", + "_organization": "pydata", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2015-01-15T00:00:00.000Z", + "_age_weeks": 422, + "_stars_per_week": 6.11, "_topics": [ "html", "data-analysis", @@ -26966,34 +37082,43 @@ "economic-data", "fred" ], - "_language": "Python", - "_homepage": "https://pydata.github.io/pandas-datareader/stable/index.html", - "_description": "pandas-datareader: Extract data from a wide range of Internet sources into a pandas DataFrame.", - "_organization": "pydata", - "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-03-16T00:00:00.000Z", - "_created_at": "2015-01-15T00:00:00.000Z", - "_age_weeks": 413, - "_stars_per_week": 6.06, "_pop_contributor_count": 85, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_pop_contributor_logins": [ + "addisonlynch", + "bashtage", + "davidastephens", + "femtotrader", + "gfyoung", + "gliptak", + "hayd", + "simongarisch", + "sinhrks", + "suminb@navercloud" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "navercloud" + ], + "_pop_contributor_orgs_raw": [ + "NAVER Cloud" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.04, - "_pop_updated_issues_count": 17, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 96, - "_pop_updated_since_days": 9, + "_pop_updated_issues_count": 18, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 99, + "_pop_updated_since_days": 11, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 17.0, - "_pop_comment_count": 32.0, + "_pop_issue_count": 18.0, + "_pop_comment_count": 166.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.9, - "_pop_dependents_count": 118, - "_pop_score": 35.98, + "_pop_comment_frequency": 9.2, + "_pop_dependents_count": 0, + "_pop_score": 36.57, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pydata/pandas-datareader/master/README.md", "_readme_localurl": "pydata~pandas-datareader~README.md", @@ -27019,9 +37144,17 @@ "description": null, "_repopath": "saharmor/dalle-playground", "_reponame": "dalle-playground", - "_stars": 2500, - "_forks": 561, - "_watches": 28, + "_stars": 2571, + "_forks": 563, + "_watches": 29, + "_language": "JavaScript", + "_homepage": "", + "_description": "dalle-playground: A playground to generate images from any text prompt using Stable Diffusion (past: using DALL-E Mini)", + "_organization": "saharmor", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-09-13T00:00:00.000Z", + "_age_weeks": 75, + "_stars_per_week": 34.15, "_topics": [ "dall-e", "openai", @@ -27035,38 +37168,43 @@ "dalle-mini", "stable-diffusion" ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "dalle-playground: A playground to generate images from any text prompt using Stable Diffusion (past: using DALL-E Mini)", - "_organization": "saharmor", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", - "_created_at": "2021-09-13T00:00:00.000Z", - "_age_weeks": 66, - "_stars_per_week": 37.88, + "_last_commit_date": "2023-02-19T00:00:00.000Z", "_pop_contributor_count": 10, + "_pop_contributor_logins": [ + "TheGoddessInari", + "VeXHarbinger@highfalootintechnologycorp.", + "kamalkraj@saamaresearch", + "katlyn", + "randyau@bitly", + "saharmor" + ], "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "bitly", "highfalootintechnologycorp.", "saamaresearch" ], + "_pop_contributor_orgs_raw": [ + "@saamaresearch ", + "Bitly", + "High Falootin Technology Corp." + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.15, - "_pop_updated_issues_count": 21, - "_pop_closed_issues_count": 16, - "_pop_created_since_days": 15, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 2.21, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 18, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 21.0, - "_pop_comment_count": 20.0, + "_pop_issue_count": 9.0, + "_pop_comment_count": 8.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, + "_pop_comment_frequency": 0.9, "_pop_dependents_count": 0, - "_pop_score": 27.51, + "_pop_score": 27.91, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/saharmor/dalle-playground/master/README.md", "_readme_localurl": "saharmor~dalle-playground~README.md", @@ -27075,466 +37213,677 @@ "_requirements_localurls": [] }, { - "index": 553, - "category": "ml-dl", - "githuburl": "https://github.com/pytorch/botorch", + "index": 268, + "category": "jupyter", + "githuburl": "https://github.com/jupyterlab/jupyterlab-desktop", "featured": null, "links": null, "description": null, - "_repopath": "pytorch/botorch", - "_reponame": "botorch", - "_stars": 2477, - "_forks": 295, - "_watches": 51, - "_topics": [], - "_language": "Jupyter Notebook", - "_homepage": "https://botorch.org/", - "_description": "botorch: Bayesian optimization in PyTorch", - "_organization": "pytorch", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2018-07-30T00:00:00.000Z", - "_age_weeks": 229, - "_stars_per_week": 10.82, - "_pop_contributor_count": 86, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_repopath": "jupyterlab/jupyterlab-desktop", + "_reponame": "jupyterlab-desktop", + "_stars": 2568, + "_forks": 232, + "_watches": 42, + "_language": "TypeScript", + "_homepage": "", + "_description": "jupyterlab-desktop: JupyterLab desktop application, based on Electron.", + "_organization": "jupyterlab", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-05-04T00:00:00.000Z", + "_age_weeks": 302, + "_stars_per_week": 8.48, + "_topics": [ + "jupyterlab", + "jupyter", + "jupyter-notebook" + ], + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 34, + "_pop_contributor_logins": [ + "cameronoelsen@google", + "ddavidebor@fermiumlabssrl(fermiumlabs)", + "declanvk", + "dependabot[bot]", + "ellisonbg@amazonwebservices", + "jupyterlab-bot", + "krassowski@universityofoxford|quansight", + "lucbouchard1", + "mbektas@netflix", + "nproctor" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "facebook", - "meta" + "amazonwebservices", + "fermiumlabssrl(fermiumlabs)", + "google", + "netflix", + "universityofoxford|quansight" + ], + "_pop_contributor_orgs_raw": [ + "@google", + "@netflix", + "Amazon Web Services", + "Fermium LABS srl ( @fermiumlabs )", + "University of Oxford | Quansight" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.17, - "_pop_updated_issues_count": 156, - "_pop_closed_issues_count": 116, - "_pop_created_since_days": 53, + "_pop_commit_frequency": 6.4, + "_pop_updated_issues_count": 102, + "_pop_closed_issues_count": 65, + "_pop_created_since_days": 71, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 11, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 156.0, - "_pop_comment_count": 607.0, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 102.0, + "_pop_comment_count": 179.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.9, - "_pop_dependents_count": 1061, - "_pop_score": 61.32, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 47.26, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pytorch/botorch/master/README.md", - "_readme_localurl": "pytorch~botorch~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/jupyterlab/jupyterlab-desktop/master/README.md", + "_readme_localurl": "jupyterlab~jupyterlab-desktop~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 159, + "category": "data", + "githuburl": "https://github.com/goldsmith/wikipedia", + "featured": null, + "links": null, + "description": null, + "_repopath": "goldsmith/wikipedia", + "_reponame": "Wikipedia", + "_stars": 2563, + "_forks": 519, + "_watches": 82, + "_language": "Python", + "_homepage": "https://wikipedia.readthedocs.org/", + "_description": "Wikipedia: A Pythonic wrapper for the Wikipedia API", + "_organization": "goldsmith", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2013-08-20T00:00:00.000Z", + "_age_weeks": 496, + "_stars_per_week": 5.17, + "_topics": [], + "_last_commit_date": "2020-10-09T00:00:00.000Z", + "_pop_contributor_count": 23, + "_pop_contributor_logins": [ + "RazerM", + "arcolife", + "fusiongyro@nationalradioastronomyobservatory", + "goldsmith@localkitchens", + "imkevinxu", + "infothrill", + "javierprovecho", + "jongoodnow@vistaprint", + "kazuar", + "sachavakili" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "localkitchens", + "nationalradioastronomyobservatory", + "vistaprint" + ], + "_pop_contributor_orgs_raw": [ + "Local Kitchens", + "National Radio Astronomy Observatory", + "Vistaprint" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 116, + "_pop_updated_since_days": 29, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 7.0, + "_pop_comment_count": 8.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 23.98, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/goldsmith/wikipedia/master/README.rst", + "_readme_localurl": "goldsmith~wikipedia~README.rst", "_requirements_filenames": [ "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pytorch/botorch/master/requirements.txt", - "https://raw.githubusercontent.com/pytorch/botorch/master/setup.py", - "https://raw.githubusercontent.com/pytorch/botorch/master/pyproject.toml" + "https://raw.githubusercontent.com/goldsmith/wikipedia/master/requirements.txt", + "https://raw.githubusercontent.com/goldsmith/wikipedia/master/setup.py" ], "_requirements_localurls": [ - "pytorch~botorch~requirements.txt", - "pytorch~botorch~setup.py", - "pytorch~botorch~pyproject.toml" + "goldsmith~wikipedia~requirements.txt", + "goldsmith~wikipedia~setup.py" ] }, { - "index": 98, - "category": "data", - "githuburl": "https://github.com/zoomeranalytics/xlwings", + "index": 600, + "category": "gis", + "githuburl": "https://github.com/giswqs/geemap", "featured": null, "links": null, "description": null, - "_repopath": "zoomeranalytics/xlwings", - "_reponame": "xlwings", - "_stars": 2466, - "_forks": 450, - "_watches": 119, + "_repopath": "giswqs/geemap", + "_reponame": "geemap", + "_stars": 2546, + "_forks": 929, + "_watches": 98, + "_language": "Python", + "_homepage": "https://geemap.org", + "_description": "geemap: A Python package for interactive mapping with Google Earth Engine, ipyleaflet, and ipywidgets.", + "_organization": "giswqs", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-03-08T00:00:00.000Z", + "_age_weeks": 154, + "_stars_per_week": 16.49, "_topics": [ + "google-earth-engine", + "gis", + "remote-sensing", + "image-processing", "python", - "excel", - "reporting", - "automation", - "googlesheets", - "google-sheets" + "jupyter-notebook", + "ipyleaflet", + "mapping", + "earth-engine", + "ipywidgets", + "folium", + "jupyter", + "colab", + "geospatial", + "landsat", + "dataviz", + "data-science", + "streamlit", + "streamlit-webapp", + "earthengine" ], - "_language": "Python", - "_homepage": "https://www.xlwings.org", - "_description": "xlwings is a Python library that makes it easy to call Python from Excel and vice versa. It works with Excel on Windows and macOS as well as with Google Sheets and Excel on the web. ", - "_organization": "zoomeranalytics", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2014-03-17T00:00:00.000Z", - "_age_weeks": 457, - "_stars_per_week": 5.4, - "_pop_contributor_count": 57, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 36, + "_pop_contributor_logins": [ + "12rambau@faoopenforis", + "3r3n-n", + "ErikSeras", + "KMarkert@google", + "cclauss@christianclauss", + "csaybar@emcdestudent", + "giswqs@universityoftennessee", + "karelvancamp", + "ppoon23", + "slowy07@google" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "xlwings" + "christianclauss", + "emcdestudent", + "faoopenforis", + "google", + "universityoftennessee" + ], + "_pop_contributor_orgs_raw": [ + "@google", + "Christian Clauss", + "EMCDE Student", + "FAO @openforis", + "University of Tennessee" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.27, - "_pop_updated_issues_count": 122, - "_pop_closed_issues_count": 69, - "_pop_created_since_days": 107, + "_pop_commit_frequency": 7.33, + "_pop_updated_issues_count": 55, + "_pop_closed_issues_count": 53, + "_pop_created_since_days": 36, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 27, - "_pop_recent_releases_estimated_tags": 16, - "_pop_recent_releases_adjusted_count": 27, - "_pop_issue_count": 122.0, - "_pop_comment_count": 161.0, + "_pop_recent_releases_count": 54, + "_pop_recent_releases_estimated_tags": 47, + "_pop_recent_releases_adjusted_count": 54, + "_pop_issue_count": 55.0, + "_pop_comment_count": 80.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 55, - "_pop_score": 51.83, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 46.54, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/zoomeranalytics/xlwings/master/README.rst", - "_readme_localurl": "zoomeranalytics~xlwings~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/giswqs/geemap/master/README.rst", + "_readme_localurl": "giswqs~geemap~README.rst", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/zoomeranalytics/xlwings/master/setup.py", - "https://raw.githubusercontent.com/zoomeranalytics/xlwings/master/pyproject.toml" + "https://raw.githubusercontent.com/giswqs/geemap/master/requirements.txt", + "https://raw.githubusercontent.com/giswqs/geemap/master/setup.py" ], "_requirements_localurls": [ - "zoomeranalytics~xlwings~setup.py", - "zoomeranalytics~xlwings~pyproject.toml" + "giswqs~geemap~requirements.txt", + "giswqs~geemap~setup.py" ] }, { - "index": 845, - "category": "time-series", - "githuburl": "https://github.com/tdameritrade/stumpy", + "index": 94, + "category": "term", + "githuburl": "https://github.com/urwid/urwid", "featured": null, "links": null, "description": null, - "_repopath": "tdameritrade/stumpy", - "_reponame": "stumpy", - "_stars": 2463, - "_forks": 239, - "_watches": 51, - "_topics": [ - "data-science", - "time-series-analysis", - "dask", - "numba", - "python", - "anomaly-detection", - "pattern-matching", - "pydata", - "matrix-profile", - "motif-discovery", - "time-series-segmentation", - "time-series-data-mining" - ], + "_repopath": "urwid/urwid", + "_reponame": "urwid", + "_stars": 2538, + "_forks": 310, + "_watches": 62, "_language": "Python", - "_homepage": "https://stumpy.readthedocs.io/en/latest/", - "_description": "STUMPY is a powerful and scalable Python library for modern time series analysis", - "_organization": "tdameritrade", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2019-05-03T00:00:00.000Z", - "_age_weeks": 189, - "_stars_per_week": 13.0, - "_pop_contributor_count": 32, + "_homepage": "urwid.org", + "_description": "urwid: Console user interface library for Python (official repo)", + "_organization": "urwid", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2010-02-25T00:00:00.000Z", + "_age_weeks": 677, + "_stars_per_week": 3.74, + "_topics": [], + "_last_commit_date": "2022-07-12T00:00:00.000Z", + "_pop_contributor_count": 116, + "_pop_contributor_logins": [ + "and3rson@newfirepartners,mediwareinc,holmusk,unitio-org,urwid", + "aszlig", + "eevee", + "mgiusti", + "pazz", + "tonycpsu", + "tu500", + "ulidtko", + "wackywendell", + "wardi" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "nvidia" + "newfirepartners,mediwareinc,holmusk,unitio-org,urwid" + ], + "_pop_contributor_orgs_raw": [ + "@NewfirePartners, @mediwareinc, @Holmusk, @unitio-org, @urwid" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.15, - "_pop_updated_issues_count": 79, - "_pop_closed_issues_count": 58, - "_pop_created_since_days": 44, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 79.0, - "_pop_comment_count": 556.0, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 158, + "_pop_updated_since_days": 19, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 10.0, + "_pop_comment_count": 5.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 7.0, - "_pop_dependents_count": 12, - "_pop_score": 46.93, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 28.01, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/tdameritrade/stumpy/master/README.rst", - "_readme_localurl": "tdameritrade~stumpy~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/urwid/urwid/master/README.rst", + "_readme_localurl": "urwid~urwid~README.rst", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/tdameritrade/stumpy/master/requirements.txt", - "https://raw.githubusercontent.com/tdameritrade/stumpy/master/setup.py" + "https://raw.githubusercontent.com/urwid/urwid/master/setup.py" ], "_requirements_localurls": [ - "tdameritrade~stumpy~requirements.txt", - "tdameritrade~stumpy~setup.py" + "urwid~urwid~setup.py" ] }, { - "index": 431, - "category": "viz", - "githuburl": "https://github.com/holoviz/panel", + "index": 98, + "category": "data", + "githuburl": "https://github.com/zoomeranalytics/xlwings", "featured": null, "links": null, "description": null, - "_repopath": "holoviz/panel", - "_reponame": "panel", - "_stars": 2438, - "_forks": 313, - "_watches": 48, + "_repopath": "zoomeranalytics/xlwings", + "_reponame": "xlwings", + "_stars": 2525, + "_forks": 452, + "_watches": 119, + "_language": "Python", + "_homepage": "https://www.xlwings.org", + "_description": "xlwings is a Python library that makes it easy to call Python from Excel and vice versa. It works with Excel on Windows and macOS as well as with Google Sheets and Excel on the web. ", + "_organization": "zoomeranalytics", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2014-03-17T00:00:00.000Z", + "_age_weeks": 466, + "_stars_per_week": 5.42, "_topics": [ - "holoviz", - "panel", - "dashboards", - "control-panels", - "gui" + "python", + "excel", + "reporting", + "automation", + "googlesheets", + "google-sheets" ], - "_language": "Python", - "_homepage": "https://panel.holoviz.org", - "_description": "panel: A high-level app and dashboarding solution for Python", - "_organization": "holoviz", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2018-08-23T00:00:00.000Z", - "_age_weeks": 225, - "_stars_per_week": 10.81, - "_pop_contributor_count": 111, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 57, + "_pop_contributor_logins": [ + "Colin-b", + "arkottke", + "efreeway", + "ericremoreynolds", + "fzumstein@xlwings", + "kgrudzin", + "knmaki", + "sdementen", + "y2kbugger", + "yuyueugene84@kyosei.ai" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "anaconda", - "cea", - "data,modelsandanalytics" + "kyosei.ai", + "xlwings" + ], + "_pop_contributor_orgs_raw": [ + "Kyosei.ai", + "xlwings" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 13.71, - "_pop_updated_issues_count": 450, - "_pop_closed_issues_count": 272, - "_pop_created_since_days": 53, + "_pop_commit_frequency": 4.13, + "_pop_updated_issues_count": 122, + "_pop_closed_issues_count": 97, + "_pop_created_since_days": 109, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 103, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 450.0, - "_pop_comment_count": 654.0, + "_pop_recent_releases_count": 28, + "_pop_recent_releases_estimated_tags": 16, + "_pop_recent_releases_adjusted_count": 28, + "_pop_issue_count": 122.0, + "_pop_comment_count": 197.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 55, - "_pop_score": 56.87, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/holoviz/panel/master/README.md", - "_readme_localurl": "holoviz~panel~README.md", + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 47.35, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/zoomeranalytics/xlwings/master/README.rst", + "_readme_localurl": "zoomeranalytics~xlwings~README.rst", "_requirements_filenames": [ "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/holoviz/panel/master/setup.py", - "https://raw.githubusercontent.com/holoviz/panel/master/pyproject.toml" + "https://raw.githubusercontent.com/zoomeranalytics/xlwings/master/setup.py", + "https://raw.githubusercontent.com/zoomeranalytics/xlwings/master/pyproject.toml" ], "_requirements_localurls": [ - "holoviz~panel~setup.py", - "holoviz~panel~pyproject.toml" + "zoomeranalytics~xlwings~setup.py", + "zoomeranalytics~xlwings~pyproject.toml" ] }, { - "index": 600, - "category": "gis", - "githuburl": "https://github.com/giswqs/geemap", + "index": 553, + "category": "ml-dl", + "githuburl": "https://github.com/pytorch/botorch", "featured": null, "links": null, "description": null, - "_repopath": "giswqs/geemap", - "_reponame": "geemap", - "_stars": 2428, - "_forks": 904, - "_watches": 96, - "_topics": [ - "google-earth-engine", - "gis", - "remote-sensing", - "image-processing", - "python", - "jupyter-notebook", - "ipyleaflet", - "mapping", - "earth-engine", - "ipywidgets", - "folium", - "jupyter", - "colab", - "geospatial", - "landsat", - "dataviz", - "data-science", - "streamlit", - "streamlit-webapp", - "earthengine" + "_repopath": "pytorch/botorch", + "_reponame": "botorch", + "_stars": 2524, + "_forks": 304, + "_watches": 50, + "_language": "Jupyter Notebook", + "_homepage": "https://botorch.org/", + "_description": "botorch: Bayesian optimization in PyTorch", + "_organization": "pytorch", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-07-30T00:00:00.000Z", + "_age_weeks": 238, + "_stars_per_week": 10.59, + "_topics": [], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 86, + "_pop_contributor_logins": [ + "Balandat@meta", + "ItsMrLin", + "SebastianAment@meta", + "danielrjiang@facebook", + "dependabot[bot]", + "dme65@facebook", + "esantorella@meta", + "saitcakmak@meta", + "sdaulton@meta", + "wjmaddox" ], - "_language": "Python", - "_homepage": "https://geemap.org", - "_description": "geemap: A Python package for interactive mapping with Google Earth Engine, ipyleaflet, and ipywidgets.", - "_organization": "giswqs", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2020-03-08T00:00:00.000Z", - "_age_weeks": 145, - "_stars_per_week": 16.73, - "_pop_contributor_count": 35, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "christianclauss", - "faoopenforis", - "google", - "universityoftennessee" + "facebook", + "meta" + ], + "_pop_contributor_orgs_raw": [ + "@Facebook", + "@Meta", + "Facebook", + "Meta" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 8.23, - "_pop_updated_issues_count": 54, - "_pop_closed_issues_count": 51, - "_pop_created_since_days": 34, + "_pop_commit_frequency": 6.79, + "_pop_updated_issues_count": 203, + "_pop_closed_issues_count": 159, + "_pop_created_since_days": 56, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 53, - "_pop_recent_releases_estimated_tags": 47, - "_pop_recent_releases_adjusted_count": 53, - "_pop_issue_count": 54.0, - "_pop_comment_count": 102.0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 203.0, + "_pop_comment_count": 825.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.9, - "_pop_dependents_count": 16, - "_pop_score": 51.28, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/giswqs/geemap/master/README.rst", - "_readme_localurl": "giswqs~geemap~README.rst", + "_pop_comment_frequency": 4.1, + "_pop_dependents_count": 0, + "_pop_score": 49.81, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pytorch/botorch/master/README.md", + "_readme_localurl": "pytorch~botorch~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/giswqs/geemap/master/requirements.txt", - "https://raw.githubusercontent.com/giswqs/geemap/master/setup.py" + "https://raw.githubusercontent.com/pytorch/botorch/master/requirements.txt", + "https://raw.githubusercontent.com/pytorch/botorch/master/setup.py", + "https://raw.githubusercontent.com/pytorch/botorch/master/pyproject.toml" ], "_requirements_localurls": [ - "giswqs~geemap~requirements.txt", - "giswqs~geemap~setup.py" + "pytorch~botorch~requirements.txt", + "pytorch~botorch~setup.py", + "pytorch~botorch~pyproject.toml" ] }, { - "index": 172, - "category": "viz", - "githuburl": "https://github.com/facebookresearch/hiplot", + "index": 845, + "category": "time-series", + "githuburl": "https://github.com/tdameritrade/stumpy", "featured": null, "links": null, "description": null, - "_repopath": "facebookresearch/hiplot", - "_reponame": "hiplot", - "_stars": 2385, - "_forks": 120, - "_watches": 28, - "_topics": [], - "_language": "TypeScript", - "_homepage": "https://facebookresearch.github.io/hiplot/", - "_description": "HiPlot makes understanding high dimensional data easy", - "_organization": "facebookresearch", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2019-11-08T00:00:00.000Z", - "_age_weeks": 162, - "_stars_per_week": 14.68, - "_pop_contributor_count": 8, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_repopath": "tdameritrade/stumpy", + "_reponame": "stumpy", + "_stars": 2523, + "_forks": 247, + "_watches": 53, + "_language": "Python", + "_homepage": "https://stumpy.readthedocs.io/en/latest/", + "_description": "STUMPY is a powerful and scalable Python library for modern time series analysis", + "_organization": "tdameritrade", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2019-05-03T00:00:00.000Z", + "_age_weeks": 198, + "_stars_per_week": 12.7, + "_topics": [ + "data-science", + "time-series-analysis", + "dask", + "numba", + "python", + "anomaly-detection", + "pattern-matching", + "pydata", + "matrix-profile", + "motif-discovery", + "time-series-segmentation", + "time-series-data-mining" + ], + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 32, + "_pop_contributor_logins": [ + "0xflotus", + "Attol8", + "NimaSarajpoor", + "SaVoAMP", + "alvii147", + "bdice@nvidia", + "bfattori-TDA@tdameritrade", + "cuichenli@dashbase/appdynamics/cisco", + "mihailescum", + "seanlaw" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "opensourcedevrelfacebook" + "dashbase/appdynamics/cisco", + "nvidia", + "tdameritrade" + ], + "_pop_contributor_orgs_raw": [ + "@NVIDIA", + "@TDAmeritrade", + "@dashbase / @AppDynamics / @Cisco" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.48, - "_pop_updated_issues_count": 17, - "_pop_closed_issues_count": 17, - "_pop_created_since_days": 38, + "_pop_commit_frequency": 3.4, + "_pop_updated_issues_count": 54, + "_pop_closed_issues_count": 35, + "_pop_created_since_days": 46, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 13, - "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 17.0, - "_pop_comment_count": 15.0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 54.0, + "_pop_comment_count": 172.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 412, - "_pop_score": 41.35, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/hiplot/master/README.md", - "_readme_localurl": "facebookresearch~hiplot~README.md", + "_pop_comment_frequency": 3.2, + "_pop_dependents_count": 0, + "_pop_score": 41.72, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/tdameritrade/stumpy/master/README.rst", + "_readme_localurl": "tdameritrade~stumpy~README.rst", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/facebookresearch/hiplot/master/setup.py" + "https://raw.githubusercontent.com/tdameritrade/stumpy/master/requirements.txt", + "https://raw.githubusercontent.com/tdameritrade/stumpy/master/setup.py" ], "_requirements_localurls": [ - "facebookresearch~hiplot~setup.py" + "tdameritrade~stumpy~requirements.txt", + "tdameritrade~stumpy~setup.py" ] }, { - "index": 886, - "category": "study", - "githuburl": "https://github.com/huggingface/deep-rl-class", + "index": 809, + "category": "web", + "githuburl": "https://github.com/fastapi-users/fastapi-users", "featured": null, "links": null, "description": null, - "_repopath": "huggingface/deep-rl-class", - "_reponame": "deep-rl-class", - "_stars": 2373, - "_forks": 285, - "_watches": 90, + "_repopath": "fastapi-users/fastapi-users", + "_reponame": "fastapi-users", + "_stars": 2493, + "_forks": 247, + "_watches": 34, + "_language": "Python", + "_homepage": "https://fastapi-users.github.io/fastapi-users/", + "_description": "fastapi-users: Ready-to-use and customizable users management for FastAPI", + "_organization": "fastapi-users", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-10-05T00:00:00.000Z", + "_age_weeks": 176, + "_stars_per_week": 14.12, "_topics": [ - "deep-reinforcement-learning", - "reinforcement-learning", - "reinforcement-learning-excercises", - "deep-learning" + "python", + "starlette", + "fastapi", + "async", + "asyncio", + "users", + "fastapi-users" ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "deep-rl-class: This repo contain the syllabus of the Hugging Face Deep Reinforcement Learning Class.", - "_organization": "huggingface", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2022-04-21T00:00:00.000Z", - "_age_weeks": 34, - "_stars_per_week": 68.64, - "_pop_contributor_count": 35, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 54, + "_pop_contributor_logins": [ + "Hazedd", + "allcontributors[bot]", + "bkis@dh-cologne", + "davidbrochart@quantstack", + "dependabot-preview[bot]", + "frankie567@beemydesk", + "matyasrichter@fitctuinprague", + "nullhack", + "rnd42@intelepeer", + "yezz123@yezz." + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "huggingface" + "beemydesk", + "dh-cologne", + "fitctuinprague", + "intelepeer", + "quantstack", + "yezz." + ], + "_pop_contributor_orgs_raw": [ + "@BeeMyDesk", + "@DH-Cologne", + "@QuantStack", + "FIT CTU in Prague", + "IntelePeer", + "Yezz LLC." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 7.21, - "_pop_updated_issues_count": 63, - "_pop_closed_issues_count": 43, - "_pop_created_since_days": 8, + "_pop_commit_frequency": 2.33, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 41, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 63.0, - "_pop_comment_count": 113.0, + "_pop_recent_releases_count": 22, + "_pop_recent_releases_estimated_tags": 28, + "_pop_recent_releases_adjusted_count": 22, + "_pop_issue_count": 10.0, + "_pop_comment_count": 14.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 5, - "_pop_score": 35.34, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 44.46, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/huggingface/deep-rl-class/master/README.md", - "_readme_localurl": "huggingface~deep-rl-class~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/fastapi-users/fastapi-users/master/README.md", + "_readme_localurl": "fastapi-users~fastapi-users~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/fastapi-users/fastapi-users/master/pyproject.toml" + ], + "_requirements_localurls": [ + "fastapi-users~fastapi-users~pyproject.toml" + ] }, { "index": 708, @@ -27545,9 +37894,17 @@ "description": null, "_repopath": "mljar/mljar-supervised", "_reponame": "mljar-supervised", - "_stars": 2372, - "_forks": 313, - "_watches": 42, + "_stars": 2469, + "_forks": 323, + "_watches": 43, + "_language": "Python", + "_homepage": "https://mljar.com", + "_description": "mljar-supervised: Python package for AutoML on Tabular Data with Feature Engineering, Hyper-Parameters Tuning, Explanations and Automatic Documentation", + "_organization": "mljar", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-11-05T00:00:00.000Z", + "_age_weeks": 224, + "_stars_per_week": 11.01, "_topics": [ "automl", "machine-learning", @@ -27570,38 +37927,51 @@ "shap", "automated-machine-learning" ], - "_language": "Python", - "_homepage": "https://mljar.com", - "_description": "mljar-supervised: Python package for AutoML on Tabular Data with Feature Engineering, Hyper-Parameters Tuning, Explanations and Automatic Documentation", - "_organization": "mljar", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2018-11-05T00:00:00.000Z", - "_age_weeks": 215, - "_stars_per_week": 11.03, + "_last_commit_date": "2022-12-30T00:00:00.000Z", "_pop_contributor_count": 20, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "DanielR59", + "SuryaThiru", + "abtheo@otterclamfinance", + "aplonska@mljar", + "diogosilva30", + "neilmehta31@bitspilanihyderabadcampus", + "partrita@biomega", + "pplonski@mljar", + "shahules786", + "uditswaroopa@blockframenft" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "biomega", "bitspilanihyderabadcampus", + "blockframenft", "mljar", "otterclamfinance" ], + "_pop_contributor_orgs_raw": [ + "@mljar", + "BITS Pilani Hyderabad Campus", + "Biomega", + "OtterClam Finance", + "blockframenft" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.44, - "_pop_updated_issues_count": 32, - "_pop_closed_issues_count": 10, - "_pop_created_since_days": 50, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, + "_pop_commit_frequency": 0.4, + "_pop_updated_issues_count": 26, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 4, "_pop_recent_releases_estimated_tags": 12, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 32.0, - "_pop_comment_count": 82.0, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 26.0, + "_pop_comment_count": 62.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.6, - "_pop_dependents_count": 49, - "_pop_score": 44.47, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 0, + "_pop_score": 36.98, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/mljar/mljar-supervised/master/README.md", "_readme_localurl": "mljar~mljar-supervised~README.md", @@ -27619,407 +37989,493 @@ ] }, { - "index": 174, - "category": "util", - "githuburl": "https://github.com/liiight/notifiers", + "index": 907, + "category": "ml", + "githuburl": "https://github.com/rucaibox/recbole", "featured": null, "links": null, "description": null, - "_repopath": "liiight/notifiers", - "_reponame": "notifiers", - "_stars": 2351, - "_forks": 91, - "_watches": 33, + "_repopath": "rucaibox/recbole", + "_reponame": "RecBole", + "_stars": 2464, + "_forks": 450, + "_watches": 40, + "_language": "Python", + "_homepage": "https://recbole.io/", + "_description": "RecBole: A unified, comprehensive and efficient recommendation library", + "_organization": "rucaibox", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-06-11T00:00:00.000Z", + "_age_weeks": 140, + "_stars_per_week": 17.49, "_topics": [ - "python", - "notifications", - "notifier", - "notification-service", - "python3", - "pypi" + "recommender-systems", + "collaborative-filtering", + "knowledge-graph", + "ctr-prediction", + "deep-learning", + "pytorch", + "graph-neural-networks", + "sequential-recommendation", + "recommendations", + "recommendation-system", + "recommender" + ], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 59, + "_pop_contributor_logins": [ + "2017pxy@renminuniversityofchina", + "ShanleiMu@renminuniversityofchina", + "Sherry-XLL@renminuniversityofchina", + "Wicknight", + "chenyushuo", + "chenyuwuxin", + "guijiql@bupt", + "hyp1231@renminuniversityofchina", + "linzihan-backforward@renminuniversityofchina", + "tsotfsk@bupt" ], - "_language": "Python", - "_homepage": "http://notifiers.readthedocs.io/", - "_description": "notifiers: The easy way to send notifications", - "_organization": "liiight", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-07-14T00:00:00.000Z", - "_created_at": "2017-06-01T00:00:00.000Z", - "_age_weeks": 289, - "_stars_per_week": 8.12, - "_pop_contributor_count": 19, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "pyupio", - "totango" + "bupt", + "renminuniversityofchina" + ], + "_pop_contributor_orgs_raw": [ + "BUPT", + "Renmin University of China" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.31, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 68, - "_pop_updated_since_days": 5, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 2.0, - "_pop_comment_count": 0.0, + "_pop_commit_frequency": 8.67, + "_pop_updated_issues_count": 537, + "_pop_closed_issues_count": 492, + "_pop_created_since_days": 33, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 537.0, + "_pop_comment_count": 236.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 6, - "_pop_score": 28.53, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 41.74, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/liiight/notifiers/master/README.md", - "_readme_localurl": "liiight~notifiers~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/rucaibox/recbole/master/README.md", + "_readme_localurl": "rucaibox~recbole~README.md", "_requirements_filenames": [ - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/liiight/notifiers/master/pyproject.toml" + "https://raw.githubusercontent.com/rucaibox/recbole/master/requirements.txt", + "https://raw.githubusercontent.com/rucaibox/recbole/master/setup.py" ], "_requirements_localurls": [ - "liiight~notifiers~pyproject.toml" + "rucaibox~recbole~requirements.txt", + "rucaibox~recbole~setup.py" ] }, { - "index": 129, - "category": "viz", - "githuburl": "https://github.com/holoviz/holoviews", - "featured": null, + "index": 735, + "category": "data", + "githuburl": "https://github.com/ibis-project/ibis", + "featured": 1.0, "links": null, "description": null, - "_repopath": "holoviz/holoviews", - "_reponame": "holoviews", - "_stars": 2341, - "_forks": 364, - "_watches": 63, + "_repopath": "ibis-project/ibis", + "_reponame": "ibis", + "_stars": 2453, + "_forks": 391, + "_watches": 75, + "_language": "Python", + "_homepage": "https://ibis-project.org", + "_description": "ibis: Expressive analytics in Python at any scale.", + "_organization": "ibis-project", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-04-17T00:00:00.000Z", + "_age_weeks": 409, + "_stars_per_week": 5.99, "_topics": [ - "holoviz", - "holoviews", - "plotting" + "python", + "impala", + "pandas", + "database", + "clickhouse", + "postgresql", + "sqlite", + "mysql", + "datafusion", + "sql", + "pyspark", + "dask", + "duckdb", + "bigquery", + "pyarrow", + "mssql", + "polars", + "snowflake", + "trino" ], - "_language": "Python", - "_homepage": "https://holoviews.org", - "_description": "holoviews: With Holoviews, your data visualizes itself.", - "_organization": "holoviz", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2014-05-07T00:00:00.000Z", - "_age_weeks": 449, - "_stars_per_week": 5.21, + "_last_commit_date": "2023-02-21T00:00:00.000Z", "_pop_contributor_count": 126, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "cpcloud@voltrondata", + "datapythonista", + "gforsyth@voltrondata", + "ibis-squawk-bot[bot]", + "jcrist@voltrondata", + "krzysztof-kwitt", + "kszucs@voltron-data/ursa-computing", + "renovate[bot]", + "wesm@voltrondata", + "xmnlab@xmnlab" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "anaconda" + "voltron-data/ursa-computing", + "voltrondata", + "xmnlab" + ], + "_pop_contributor_orgs_raw": [ + "@voltron-data / @ursa-computing", + "@voltrondata", + "Voltron Data", + "xmnlab" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.62, - "_pop_updated_issues_count": 237, - "_pop_closed_issues_count": 108, - "_pop_created_since_days": 105, + "_pop_commit_frequency": 50.37, + "_pop_updated_issues_count": 778, + "_pop_closed_issues_count": 706, + "_pop_created_since_days": 96, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 41, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 237.0, - "_pop_comment_count": 294.0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 778.0, + "_pop_comment_count": 1515.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 40, - "_pop_score": 50.91, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 55.47, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/holoviz/holoviews/master/README.md", - "_readme_localurl": "holoviz~holoviews~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/ibis-project/ibis/master/README.md", + "_readme_localurl": "ibis-project~ibis~README.md", "_requirements_filenames": [ - "setup.py", + "requirements.txt", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/holoviz/holoviews/master/setup.py", - "https://raw.githubusercontent.com/holoviz/holoviews/master/pyproject.toml" + "https://raw.githubusercontent.com/ibis-project/ibis/master/requirements.txt", + "https://raw.githubusercontent.com/ibis-project/ibis/master/pyproject.toml" ], "_requirements_localurls": [ - "holoviz~holoviews~setup.py", - "holoviz~holoviews~pyproject.toml" + "ibis-project~ibis~requirements.txt", + "ibis-project~ibis~pyproject.toml" ] }, { - "index": 136, - "category": "nlp", - "githuburl": "https://github.com/ddangelov/top2vec", + "index": 814, + "category": "data", + "githuburl": "https://github.com/deepchecks/deepchecks", "featured": null, "links": null, "description": null, - "_repopath": "ddangelov/top2vec", - "_reponame": "Top2Vec", - "_stars": 2339, - "_forks": 326, - "_watches": 39, + "_repopath": "deepchecks/deepchecks", + "_reponame": "deepchecks", + "_stars": 2436, + "_forks": 173, + "_watches": 12, + "_language": "Python", + "_homepage": "https://docs.deepchecks.com", + "_description": "Deepchecks - Tests for Continuous Validation of ML Models & Data. Deepchecks is a Python package for comprehensively validating your machine learning models and data with minimal effort.", + "_organization": "deepchecks", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-10-11T00:00:00.000Z", + "_age_weeks": 71, + "_stars_per_week": 34.17, "_topics": [ - "topic-modeling", - "word-embeddings", - "document-embedding", - "topic-vector", - "topic-search", - "text-search", - "text-semantic-similarity", - "topic-modelling", - "semantic-search", - "bert", - "top2vec", - "sentence-transformers", - "sentence-encoder", - "pre-trained-language-models" + "machine-learning", + "ml", + "model-validation", + "data-validation", + "mlops", + "data-science", + "python", + "jupyter-notebook", + "model-monitoring", + "data-drift", + "html-report", + "deep-learning", + "pytorch", + "pandas-dataframe" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 40, + "_pop_contributor_logins": [ + "ItayGabbay", + "JKL98ISR", + "Nadav-Barak", + "TheSolY", + "benisraeldan", + "matanper", + "nirhutnik@deepchecks", + "noamzbr@deepchecks", + "shir22", + "yromanyshyn@starnavi" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "deepchecks", + "starnavi" + ], + "_pop_contributor_orgs_raw": [ + "@deepchecks ", + "Deepchecks", + "starnavi" ], - "_language": "Python", - "_homepage": "", - "_description": "Top2Vec learns jointly embedded topic, document and word vectors.", - "_organization": "ddangelov", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-04-03T00:00:00.000Z", - "_created_at": "2020-03-20T00:00:00.000Z", - "_age_weeks": 143, - "_stars_per_week": 16.31, - "_pop_contributor_count": 2, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.17, - "_pop_updated_issues_count": 53, - "_pop_closed_issues_count": 37, - "_pop_created_since_days": 33, - "_pop_updated_since_days": 9, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 53.0, - "_pop_comment_count": 46.0, + "_pop_commit_frequency": 12.52, + "_pop_updated_issues_count": 361, + "_pop_closed_issues_count": 143, + "_pop_created_since_days": 17, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 21, + "_pop_recent_releases_estimated_tags": 36, + "_pop_recent_releases_adjusted_count": 21, + "_pop_issue_count": 361.0, + "_pop_comment_count": 136.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 21, - "_pop_score": 21.07, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 41.62, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/ddangelov/top2vec/master/README.md", - "_readme_localurl": "ddangelov~top2vec~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/deepchecks/deepchecks/master/README.md", + "_readme_localurl": "deepchecks~deepchecks~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/ddangelov/top2vec/master/requirements.txt", - "https://raw.githubusercontent.com/ddangelov/top2vec/master/setup.py" + "https://raw.githubusercontent.com/deepchecks/deepchecks/master/setup.py" ], "_requirements_localurls": [ - "ddangelov~top2vec~requirements.txt", - "ddangelov~top2vec~setup.py" + "deepchecks~deepchecks~setup.py" ] }, { - "index": 858, - "category": "jupyter", - "githuburl": "https://github.com/jupyter/nbdime", + "index": 944, + "category": "ml", + "githuburl": "https://github.com/thudm/cogvideo", "featured": null, "links": null, "description": null, - "_repopath": "jupyter/nbdime", - "_reponame": "nbdime", - "_stars": 2339, - "_forks": 154, - "_watches": 43, - "_topics": [ - "jupyterlab-extension", - "jupyter", - "jupyter-notebook", - "diff", - "diffing", - "merge", - "git", - "hg", - "mercurial", - "mergetool", - "merge-driver", - "vcs", - "version-control" - ], + "_repopath": "thudm/cogvideo", + "_reponame": "CogVideo", + "_stars": 2435, + "_forks": 224, + "_watches": 90, "_language": "Python", - "_homepage": "http://nbdime.readthedocs.io", - "_description": "nbdime: Tools for diffing and merging of Jupyter notebooks.", - "_organization": "jupyter", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-24T00:00:00.000Z", - "_created_at": "2015-11-16T00:00:00.000Z", - "_age_weeks": 370, - "_stars_per_week": 6.32, - "_pop_contributor_count": 41, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_homepage": "", + "_description": "Text-to-video generation. The repo for ICLR2023 paper \"CogVideo: Large-scale Pretraining for Text-to-Video Generation via Transformers\"", + "_organization": "thudm", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-05-29T00:00:00.000Z", + "_age_weeks": 38, + "_stars_per_week": 63.36, + "_topics": [], + "_last_commit_date": "2022-11-17T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "AK391@huggingface", + "mallorbc@brillibits", + "wenyihong" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "ibmcodait", - "quantstack", - "simularesearchlaboratory", - "willingconsulting" + "brillibits", + "huggingface" + ], + "_pop_contributor_orgs_raw": [ + "Brillibits", + "Huggingface" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.1, - "_pop_updated_issues_count": 29, - "_pop_closed_issues_count": 7, - "_pop_created_since_days": 86, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 0.38, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 9, + "_pop_updated_since_days": 3, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 9, - "_pop_issue_count": 29.0, - "_pop_comment_count": 29.0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 9.0, + "_pop_comment_count": 14.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 402, - "_pop_score": 49.23, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 19.39, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/jupyter/nbdime/master/README.md", - "_readme_localurl": "jupyter~nbdime~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/thudm/cogvideo/master/README.md", + "_readme_localurl": "thudm~cogvideo~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/jupyter/nbdime/master/setup.py", - "https://raw.githubusercontent.com/jupyter/nbdime/master/pyproject.toml" + "https://raw.githubusercontent.com/thudm/cogvideo/master/requirements.txt" ], "_requirements_localurls": [ - "jupyter~nbdime~setup.py", - "jupyter~nbdime~pyproject.toml" + "thudm~cogvideo~requirements.txt" ] }, { - "index": 809, - "category": "web", - "githuburl": "https://github.com/fastapi-users/fastapi-users", + "index": 136, + "category": "nlp", + "githuburl": "https://github.com/ddangelov/top2vec", "featured": null, "links": null, "description": null, - "_repopath": "fastapi-users/fastapi-users", - "_reponame": "fastapi-users", - "_stars": 2323, - "_forks": 239, - "_watches": 33, + "_repopath": "ddangelov/top2vec", + "_reponame": "Top2Vec", + "_stars": 2428, + "_forks": 336, + "_watches": 38, + "_language": "Python", + "_homepage": "", + "_description": "Top2Vec learns jointly embedded topic, document and word vectors.", + "_organization": "ddangelov", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-03-20T00:00:00.000Z", + "_age_weeks": 152, + "_stars_per_week": 15.9, "_topics": [ - "python", - "starlette", - "fastapi", - "async", - "asyncio", - "users", - "fastapi-users" + "topic-modeling", + "word-embeddings", + "document-embedding", + "topic-vector", + "topic-search", + "text-search", + "text-semantic-similarity", + "topic-modelling", + "semantic-search", + "bert", + "top2vec", + "sentence-transformers", + "sentence-encoder", + "pre-trained-language-models" ], - "_language": "Python", - "_homepage": "https://fastapi-users.github.io/fastapi-users/", - "_description": "fastapi-users: Ready-to-use and customizable users management for FastAPI", - "_organization": "fastapi-users", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-04T00:00:00.000Z", - "_created_at": "2019-10-05T00:00:00.000Z", - "_age_weeks": 167, - "_stars_per_week": 13.89, - "_pop_contributor_count": 53, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "beemydesk", - "fitctuinprague", - "quantstack" + "_last_commit_date": "2023-01-26T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "ddangelov", + "gclen" ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.96, - "_pop_updated_issues_count": 19, - "_pop_closed_issues_count": 19, - "_pop_created_since_days": 39, + "_pop_commit_frequency": 0.21, + "_pop_updated_issues_count": 24, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 36, "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 32, - "_pop_recent_releases_estimated_tags": 28, - "_pop_recent_releases_adjusted_count": 32, - "_pop_issue_count": 19.0, - "_pop_comment_count": 20.0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 24.0, + "_pop_comment_count": 26.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 134, - "_pop_score": 49.48, + "_pop_dependents_count": 0, + "_pop_score": 19.57, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/fastapi-users/fastapi-users/master/README.md", - "_readme_localurl": "fastapi-users~fastapi-users~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/ddangelov/top2vec/master/README.md", + "_readme_localurl": "ddangelov~top2vec~README.md", "_requirements_filenames": [ - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/fastapi-users/fastapi-users/master/pyproject.toml" + "https://raw.githubusercontent.com/ddangelov/top2vec/master/requirements.txt", + "https://raw.githubusercontent.com/ddangelov/top2vec/master/setup.py" ], "_requirements_localurls": [ - "fastapi-users~fastapi-users~pyproject.toml" + "ddangelov~top2vec~requirements.txt", + "ddangelov~top2vec~setup.py" ] }, { - "index": 875, - "category": "perf", - "githuburl": "https://github.com/ipython/ipyparallel", + "index": 172, + "category": "viz", + "githuburl": "https://github.com/facebookresearch/hiplot", "featured": null, "links": null, "description": null, - "_repopath": "ipython/ipyparallel", - "_reponame": "ipyparallel", - "_stars": 2319, - "_forks": 949, - "_watches": 119, - "_topics": [ - "parallel", - "jupyter", - "python" + "_repopath": "facebookresearch/hiplot", + "_reponame": "hiplot", + "_stars": 2420, + "_forks": 123, + "_watches": 29, + "_language": "TypeScript", + "_homepage": "https://facebookresearch.github.io/hiplot/", + "_description": "HiPlot makes understanding high dimensional data easy", + "_organization": "facebookresearch", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2019-11-08T00:00:00.000Z", + "_age_weeks": 171, + "_stars_per_week": 14.09, + "_topics": [], + "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "GoldenCorgi", + "LiewYouSheng", + "callistachang", + "danthe3rd", + "dependabot[bot]", + "dmitryvinn@engineeringmanagerai/mlmeta", + "louismartin", + "nzw0301@ibm" ], - "_language": "Jupyter Notebook", - "_homepage": "https://ipyparallel.readthedocs.io/", - "_description": "ipyparallel: IPython Parallel: Interactive Parallel Computing in Python", - "_organization": "ipython", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-22T00:00:00.000Z", - "_created_at": "2015-04-09T00:00:00.000Z", - "_age_weeks": 401, - "_stars_per_week": 5.77, - "_pop_contributor_count": 112, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "amazonwebservices", - "ardoq", - "simularesearchlaboratory", - "universityofcalifornia,berkeley." + "engineeringmanagerai/mlmeta", + "ibm" + ], + "_pop_contributor_orgs_raw": [ + "@ibm", + "Engineering Manager AI/ML@Meta" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.29, - "_pop_updated_issues_count": 19, - "_pop_closed_issues_count": 16, - "_pop_created_since_days": 94, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 0.31, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 40, + "_pop_updated_since_days": 3, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 19.0, - "_pop_comment_count": 9.0, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 6.0, + "_pop_comment_count": 11.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 318, - "_pop_score": 52.25, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 28.68, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/ipython/ipyparallel/master/README.md", - "_readme_localurl": "ipython~ipyparallel~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/hiplot/master/README.md", + "_readme_localurl": "facebookresearch~hiplot~README.md", "_requirements_filenames": [ - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/ipython/ipyparallel/master/pyproject.toml" + "https://raw.githubusercontent.com/facebookresearch/hiplot/master/setup.py" ], "_requirements_localurls": [ - "ipython~ipyparallel~pyproject.toml" + "facebookresearch~hiplot~setup.py" ] }, { @@ -28031,41 +38487,63 @@ "description": null, "_repopath": "nedbat/coveragepy", "_reponame": "coveragepy", - "_stars": 2305, - "_forks": 331, + "_stars": 2391, + "_forks": 342, "_watches": 28, - "_topics": [], "_language": "Python", "_homepage": "https://coverage.readthedocs.io", "_description": "coveragepy: The code coverage tool for Python", "_organization": "nedbat", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_updated_at": "2023-02-20T00:00:00.000Z", "_created_at": "2018-06-23T00:00:00.000Z", - "_age_weeks": 234, - "_stars_per_week": 9.84, - "_pop_contributor_count": 142, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 243, + "_stars_per_week": 9.82, + "_topics": [], + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 145, + "_pop_contributor_logins": [ + "AndrewHoos", + "blueyed@freelancer,upforhire", + "brettcannon@microsoft", + "dependabot[bot]", + "dstanek", + "ionelmc", + "jdufresne@pioneervalleybooks", + "msabramo@adobe", + "nedbat", + "strichter@shoobx" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "adobe", "freelancer,upforhire", + "microsoft", + "pioneervalleybooks", "shoobx" ], + "_pop_contributor_orgs_raw": [ + "@adobe", + "@microsoft ", + "Freelancer, up for hire", + "Pioneer Valley Books", + "Shoobx, Inc." + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 8.65, - "_pop_updated_issues_count": 134, - "_pop_closed_issues_count": 89, - "_pop_created_since_days": 55, + "_pop_commit_frequency": 9.69, + "_pop_updated_issues_count": 116, + "_pop_closed_issues_count": 64, + "_pop_created_since_days": 57, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 13, - "_pop_recent_releases_estimated_tags": 24, - "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 134.0, - "_pop_comment_count": 400.0, + "_pop_recent_releases_count": 17, + "_pop_recent_releases_estimated_tags": 25, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 116.0, + "_pop_comment_count": 294.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.0, - "_pop_dependents_count": 9969, - "_pop_score": 66.43, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 0, + "_pop_score": 53.2, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/nedbat/coveragepy/master/README.rst", "_readme_localurl": "nedbat~coveragepy~README.rst", @@ -28083,63 +38561,83 @@ ] }, { - "index": 691, - "category": "ml-dl", - "githuburl": "https://github.com/nerdyrodent/vqgan-clip", + "index": 174, + "category": "util", + "githuburl": "https://github.com/liiight/notifiers", "featured": null, "links": null, "description": null, - "_repopath": "nerdyrodent/vqgan-clip", - "_reponame": "VQGAN-CLIP", - "_stars": 2304, - "_forks": 401, - "_watches": 53, + "_repopath": "liiight/notifiers", + "_reponame": "notifiers", + "_stars": 2387, + "_forks": 92, + "_watches": 33, + "_language": "Python", + "_homepage": "http://notifiers.readthedocs.io/", + "_description": "notifiers: The easy way to send notifications", + "_organization": "liiight", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-06-01T00:00:00.000Z", + "_age_weeks": 298, + "_stars_per_week": 7.99, "_topics": [ - "text2image", - "text-to-image" + "python", + "notifications", + "notifier", + "notification-service", + "python3", + "pypi" + ], + "_last_commit_date": "2022-07-14T00:00:00.000Z", + "_pop_contributor_count": 19, + "_pop_contributor_logins": [ + "Conight", + "JonShedden", + "alonm-totango@totango", + "darora-zipline", + "delirious-lettuce", + "dependabot-preview[bot]", + "dependabot[bot]", + "liiight", + "pre-commit-ci[bot]", + "pyup-bot@pyupio" ], - "_language": "Python", - "_homepage": "", - "_description": "VQGAN-CLIP: Just playing with getting VQGAN+CLIP running locally, rather than having to use colab.", - "_organization": "nerdyrodent", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-10-02T00:00:00.000Z", - "_created_at": "2021-07-02T00:00:00.000Z", - "_age_weeks": 76, - "_stars_per_week": 30.15, - "_pop_contributor_count": 7, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "az\u00e9otropecanada", - "censys" + "pyupio", + "totango" + ], + "_pop_contributor_orgs_raw": [ + "@pyupio", + "@totango " ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.1, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 18, - "_pop_updated_since_days": 3, + "_pop_commit_frequency": 0.29, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 70, + "_pop_updated_since_days": 7, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 2.0, - "_pop_comment_count": 2.0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 4.0, + "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, + "_pop_comment_frequency": 0.2, "_pop_dependents_count": 0, - "_pop_score": 19.58, + "_pop_score": 25.02, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nerdyrodent/vqgan-clip/master/README.md", - "_readme_localurl": "nerdyrodent~vqgan-clip~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/liiight/notifiers/master/README.md", + "_readme_localurl": "liiight~notifiers~README.md", "_requirements_filenames": [ - "requirements.txt" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/nerdyrodent/vqgan-clip/master/requirements.txt" + "https://raw.githubusercontent.com/liiight/notifiers/master/pyproject.toml" ], "_requirements_localurls": [ - "nerdyrodent~vqgan-clip~requirements.txt" + "liiight~notifiers~pyproject.toml" ] }, { @@ -28151,41 +38649,59 @@ "description": null, "_repopath": "openai/mujoco-py", "_reponame": "mujoco-py", - "_stars": 2300, - "_forks": 715, - "_watches": 161, - "_topics": [], + "_stars": 2383, + "_forks": 740, + "_watches": 166, "_language": "Cython", "_homepage": "", "_description": "mujoco-py: MuJoCo is a physics engine for detailed, efficient rigid body simulations with contacts. mujoco-py allows using MuJoCo from Python 3.", "_organization": "openai", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-17T00:00:00.000Z", + "_updated_at": "2023-02-20T00:00:00.000Z", "_created_at": "2016-04-24T00:00:00.000Z", - "_age_weeks": 347, - "_stars_per_week": 6.63, + "_age_weeks": 356, + "_stars_per_week": 6.69, + "_topics": [], + "_last_commit_date": "2022-11-17T00:00:00.000Z", "_pop_contributor_count": 33, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "MillionIntegrals@millionintegrals", + "aray-openai@openai", + "bayesian", + "gdb", + "jonasschneider", + "machinaut@openai", + "roboticsdashboard", + "tlbtlbtlb@umbrellaresearch", + "welinder@openai", + "wojzaremba" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "millionintegrals", - "openai" + "openai", + "umbrellaresearch" + ], + "_pop_contributor_orgs_raw": [ + "@openai", + "Million Integrals", + "Umbrella Research" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.02, - "_pop_updated_issues_count": 33, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 81, - "_pop_updated_since_days": 1, + "_pop_updated_issues_count": 27, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 83, + "_pop_updated_since_days": 3, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 33.0, + "_pop_issue_count": 27.0, "_pop_comment_count": 23.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 34, - "_pop_score": 37.69, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 31.07, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/openai/mujoco-py/master/README.md", "_readme_localurl": "openai~mujoco-py~README.md", @@ -28206,143 +38722,91 @@ ] }, { - "index": 246, - "category": "util", - "githuburl": "https://github.com/pyston/pyston", + "index": 129, + "category": "viz", + "githuburl": "https://github.com/holoviz/holoviews", "featured": null, "links": null, "description": null, - "_repopath": "pyston/pyston", - "_reponame": "pyston", - "_stars": 2295, - "_forks": 83, - "_watches": 32, - "_topics": [], + "_repopath": "holoviz/holoviews", + "_reponame": "holoviews", + "_stars": 2378, + "_forks": 370, + "_watches": 61, "_language": "Python", - "_homepage": "https://www.pyston.org/", - "_description": "pyston: A faster and highly-compatible implementation of the Python programming language.", - "_organization": "pyston", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-23T00:00:00.000Z", - "_created_at": "2021-03-01T00:00:00.000Z", - "_age_weeks": 94, - "_stars_per_week": 24.41, - "_pop_contributor_count": 1035, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "fzj\u00fclich", - "keepertech", - "microsoft", - "mutableminds" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.1, - "_pop_updated_issues_count": 22, - "_pop_closed_issues_count": 10, - "_pop_created_since_days": 22, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 261, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 22.0, - "_pop_comment_count": 30.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 9, - "_pop_score": 50.69, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pyston/pyston/master/README.rst", - "_readme_localurl": "pyston~pyston~README.rst", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pyston/pyston/master/setup.py" - ], - "_requirements_localurls": [ - "pyston~pyston~setup.py" - ] - }, - { - "index": 866, - "category": "ml-ops", - "githuburl": "https://github.com/mage-ai/mage-ai", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "mage-ai/mage-ai", - "_reponame": "mage-ai", - "_stars": 2287, - "_forks": 203, - "_watches": 40, + "_homepage": "https://holoviews.org", + "_description": "holoviews: With Holoviews, your data visualizes itself.", + "_organization": "holoviz", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2014-05-07T00:00:00.000Z", + "_age_weeks": 459, + "_stars_per_week": 5.18, "_topics": [ - "machine-learning", - "artificial-intelligence", - "data", - "data-engineering", - "data-science", - "python", - "elt", - "etl", - "pipelines", - "data-pipelines", - "orchestration", - "data-integration", - "sql", - "spark", - "dbt", - "pipeline", - "reverse-etl", - "transformation" + "holoviz", + "holoviews", + "plotting" ], - "_language": "Python", - "_homepage": "https://www.mage.ai/", - "_description": "mage-ai: \ud83e\uddd9 A modern replacement for Airflow.", - "_organization": "mage-ai", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2022-05-16T00:00:00.000Z", - "_age_weeks": 31, - "_stars_per_week": 73.77, - "_pop_contributor_count": 19, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 131, + "_pop_contributor_logins": [ + "Hoxbro", + "ahuang11@prefect!", + "basnijholt@microsoft", + "ceball", + "jbednar@anaconda", + "jlstevens", + "jonmmease@hextechnologies", + "maximlt@anaconda", + "philippjfr@anaconda", + "poplarShift@apn" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "mage" + "anaconda", + "apn", + "hextechnologies", + "microsoft", + "prefect!" + ], + "_pop_contributor_orgs_raw": [ + "@Microsoft", + "APN", + "Anaconda", + "Anaconda Inc.", + "Anaconda, Inc.", + "Hex Technologies", + "Prefect!" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 37.4, - "_pop_updated_issues_count": 525, - "_pop_closed_issues_count": 488, - "_pop_created_since_days": 7, + "_pop_commit_frequency": 3.12, + "_pop_updated_issues_count": 182, + "_pop_closed_issues_count": 85, + "_pop_created_since_days": 107, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 525.0, - "_pop_comment_count": 134.0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 41, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 182.0, + "_pop_comment_count": 278.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.3, - "_pop_dependents_count": 18, - "_pop_score": 37.99, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 50.21, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/mage-ai/mage-ai/master/README.md", - "_readme_localurl": "mage-ai~mage-ai~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/holoviz/holoviews/master/README.md", + "_readme_localurl": "holoviz~holoviews~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/mage-ai/mage-ai/master/requirements.txt", - "https://raw.githubusercontent.com/mage-ai/mage-ai/master/setup.py", - "https://raw.githubusercontent.com/mage-ai/mage-ai/master/pyproject.toml" + "https://raw.githubusercontent.com/holoviz/holoviews/master/setup.py", + "https://raw.githubusercontent.com/holoviz/holoviews/master/pyproject.toml" ], "_requirements_localurls": [ - "mage-ai~mage-ai~requirements.txt", - "mage-ai~mage-ai~setup.py", - "mage-ai~mage-ai~pyproject.toml" + "holoviz~holoviews~setup.py", + "holoviz~holoviews~pyproject.toml" ] }, { @@ -28354,9 +38818,17 @@ "description": null, "_repopath": "deepmind/dm-haiku", "_reponame": "dm-haiku", - "_stars": 2285, - "_forks": 192, - "_watches": 37, + "_stars": 2374, + "_forks": 200, + "_watches": 39, + "_language": "Python", + "_homepage": "https://dm-haiku.readthedocs.io", + "_description": "dm-haiku: JAX-based neural network library", + "_organization": "deepmind", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-02-18T00:00:00.000Z", + "_age_weeks": 157, + "_stars_per_week": 15.11, "_topics": [ "machine-learning", "neural-networks", @@ -28364,37 +38836,50 @@ "deep-learning", "deep-neural-networks" ], - "_language": "Python", - "_homepage": "https://dm-haiku.readthedocs.io", - "_description": "dm-haiku: JAX-based neural network library", - "_organization": "deepmind", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-09T00:00:00.000Z", - "_created_at": "2020-02-18T00:00:00.000Z", - "_age_weeks": 147, - "_stars_per_week": 15.45, - "_pop_contributor_count": 68, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 69, + "_pop_contributor_logins": [ + "8bitmp3@tensorflow,jax,flax", + "CreativeEntropy@googledeepmind", + "LenaMartens", + "aslanides@deepmind", + "chris-chris", + "hamzamerzic@googledeepmind", + "inoryy@deepmind", + "joaogui1", + "tomhennigan@deepmind", + "trevorcai@openai" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "deepmind", - "openai" + "googledeepmind", + "openai", + "tensorflow,jax,flax" + ], + "_pop_contributor_orgs_raw": [ + "@DeepMind", + "@deepmind", + "@openai", + "Google DeepMind", + "tensorflow, jax, flax" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.69, - "_pop_updated_issues_count": 64, - "_pop_closed_issues_count": 39, - "_pop_created_since_days": 34, + "_pop_commit_frequency": 2.54, + "_pop_updated_issues_count": 42, + "_pop_closed_issues_count": 33, + "_pop_created_since_days": 37, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 4, + "_pop_recent_releases_count": 3, "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 64.0, - "_pop_comment_count": 40.0, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 42.0, + "_pop_comment_count": 26.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 34, - "_pop_score": 44.7, + "_pop_dependents_count": 0, + "_pop_score": 40.21, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/deepmind/dm-haiku/master/README.md", "_readme_localurl": "deepmind~dm-haiku~README.md", @@ -28411,78 +38896,6 @@ "deepmind~dm-haiku~setup.py" ] }, - { - "index": 814, - "category": "data", - "githuburl": "https://github.com/deepchecks/deepchecks", - "featured": null, - "links": null, - "description": null, - "_repopath": "deepchecks/deepchecks", - "_reponame": "deepchecks", - "_stars": 2282, - "_forks": 159, - "_watches": 13, - "_topics": [ - "machine-learning", - "ml", - "model-validation", - "data-validation", - "mlops", - "data-science", - "python", - "jupyter-notebook", - "model-monitoring", - "data-drift", - "html-report", - "deep-learning", - "pytorch", - "pandas-dataframe" - ], - "_language": "Python", - "_homepage": "https://docs.deepchecks.com", - "_description": "deepchecks: Tests for Continuous Validation of ML Models & Data. Deepchecks is a Python package for comprehensively validating your machine learning models and data with minimal effort.", - "_organization": "deepchecks", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", - "_created_at": "2021-10-11T00:00:00.000Z", - "_age_weeks": 62, - "_stars_per_week": 36.81, - "_pop_contributor_count": 37, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "deepchecks", - "starnavi" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 17.17, - "_pop_updated_issues_count": 255, - "_pop_closed_issues_count": 169, - "_pop_created_since_days": 14, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 35, - "_pop_recent_releases_estimated_tags": 42, - "_pop_recent_releases_adjusted_count": 35, - "_pop_issue_count": 255.0, - "_pop_comment_count": 269.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 5, - "_pop_score": 46.64, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/deepchecks/deepchecks/master/README.md", - "_readme_localurl": "deepchecks~deepchecks~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/deepchecks/deepchecks/master/setup.py" - ], - "_requirements_localurls": [ - "deepchecks~deepchecks~setup.py" - ] - }, { "index": 145, "category": "ml", @@ -28492,40 +38905,61 @@ "description": null, "_repopath": "nmslib/hnswlib", "_reponame": "hnswlib", - "_stars": 2269, - "_forks": 419, + "_stars": 2363, + "_forks": 433, "_watches": 62, - "_topics": [], "_language": "C++", "_homepage": "https://github.com/nmslib/hnswlib", "_description": "hnswlib: Header-only C++/python library for fast approximate nearest neighbors", "_organization": "nmslib", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-04-16T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2017-07-06T00:00:00.000Z", - "_age_weeks": 284, - "_stars_per_week": 7.97, - "_pop_contributor_count": 56, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 293, + "_stars_per_week": 8.04, + "_topics": [], + "_last_commit_date": "2023-02-05T00:00:00.000Z", + "_pop_contributor_count": 65, + "_pop_contributor_logins": [ + "dbespalov", + "dyashuni@josh", + "groodt", + "jlmelville", + "kishorenc", + "marekhanus", + "orrorcol", + "piem@aubio", + "slice4e@intel", + "yurymalkov@twittercortex" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "aubio", + "intel", + "josh", "twittercortex" ], + "_pop_contributor_orgs_raw": [ + "@aubio", + "Intel", + "Josh", + "Twitter Cortex" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.25, - "_pop_updated_issues_count": 18, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 66, - "_pop_updated_since_days": 8, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 18.0, - "_pop_comment_count": 27.0, + "_pop_commit_frequency": 0.81, + "_pop_updated_issues_count": 23, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 69, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 23.0, + "_pop_comment_count": 12.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 24, - "_pop_score": 34.87, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 36.18, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/nmslib/hnswlib/master/README.md", "_readme_localurl": "nmslib~hnswlib~README.md", @@ -28543,1140 +38977,1593 @@ ] }, { - "index": 735, - "category": "data", - "githuburl": "https://github.com/ibis-project/ibis", - "featured": 1.0, + "index": 858, + "category": "jupyter", + "githuburl": "https://github.com/jupyter/nbdime", + "featured": null, "links": null, "description": null, - "_repopath": "ibis-project/ibis", - "_reponame": "ibis", - "_stars": 2231, - "_forks": 375, - "_watches": 77, + "_repopath": "jupyter/nbdime", + "_reponame": "nbdime", + "_stars": 2362, + "_forks": 155, + "_watches": 43, + "_language": "Python", + "_homepage": "http://nbdime.readthedocs.io", + "_description": "nbdime: Tools for diffing and merging of Jupyter notebooks.", + "_organization": "jupyter", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2015-11-16T00:00:00.000Z", + "_age_weeks": 379, + "_stars_per_week": 6.23, "_topics": [ - "python", - "impala", - "pandas", - "spark", - "database", - "clickhouse", - "postgresql", - "sqlite", - "mysql", - "datafusion", - "sql", - "pyspark", - "dask", - "duckdb", - "bigquery", - "sqlalchemy", - "pyarrow", - "arrow", - "mssql", - "polars" + "jupyterlab-extension", + "jupyter", + "jupyter-notebook", + "diff", + "diffing", + "merge", + "git", + "hg", + "mercurial", + "mergetool", + "merge-driver", + "vcs", + "version-control" ], - "_language": "Python", - "_homepage": "http://ibis-project.org", - "_description": "ibis: Expressive analytics in Python at any scale.", - "_organization": "ibis-project", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2015-04-17T00:00:00.000Z", - "_age_weeks": 400, - "_stars_per_week": 5.57, - "_pop_contributor_count": 121, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "voltron-data/ursa-computing", - "voltrondata" + "_last_commit_date": "2023-01-15T00:00:00.000Z", + "_pop_contributor_count": 43, + "_pop_contributor_logins": [ + "ajbozarth@ibmcodait", + "baldwint@cascadedatalabs", + "fcollonval@quantstack", + "gahjelle@realpython", + "itamarst", + "krassowski@universityofoxford|quansight", + "minrk@simularesearchlaboratory", + "singingwolfboy", + "vidartf", + "willingc@willingconsulting" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "cascadedatalabs", + "ibmcodait", + "quantstack", + "realpython", + "simularesearchlaboratory", + "universityofoxford|quansight", + "willingconsulting" + ], + "_pop_contributor_orgs_raw": [ + "@QuantStack", + "@realpython ", + "Cascade Data Labs", + "IBM CODAIT", + "Simula Research Laboratory", + "University of Oxford | Quansight", + "Willing Consulting" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 43.25, - "_pop_updated_issues_count": 565, - "_pop_closed_issues_count": 501, - "_pop_created_since_days": 93, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 7, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 565.0, - "_pop_comment_count": 1237.0, + "_pop_commit_frequency": 0.19, + "_pop_updated_issues_count": 23, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 88, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 23.0, + "_pop_comment_count": 21.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.2, - "_pop_dependents_count": 428, - "_pop_score": 64.45, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 40.81, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/ibis-project/ibis/master/README.md", - "_readme_localurl": "ibis-project~ibis~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/jupyter/nbdime/master/README.md", + "_readme_localurl": "jupyter~nbdime~README.md", "_requirements_filenames": [ - "requirements.txt", + "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/ibis-project/ibis/master/requirements.txt", - "https://raw.githubusercontent.com/ibis-project/ibis/master/pyproject.toml" + "https://raw.githubusercontent.com/jupyter/nbdime/master/setup.py", + "https://raw.githubusercontent.com/jupyter/nbdime/master/pyproject.toml" ], "_requirements_localurls": [ - "ibis-project~ibis~requirements.txt", - "ibis-project~ibis~pyproject.toml" + "jupyter~nbdime~setup.py", + "jupyter~nbdime~pyproject.toml" ] }, { - "index": 308, - "category": "util", - "githuburl": "https://github.com/legrandin/pycryptodome", + "index": 691, + "category": "ml-dl", + "githuburl": "https://github.com/nerdyrodent/vqgan-clip", "featured": null, "links": null, "description": null, - "_repopath": "legrandin/pycryptodome", - "_reponame": "pycryptodome", - "_stars": 2218, - "_forks": 402, - "_watches": 58, + "_repopath": "nerdyrodent/vqgan-clip", + "_reponame": "VQGAN-CLIP", + "_stars": 2358, + "_forks": 408, + "_watches": 53, + "_language": "Python", + "_homepage": "", + "_description": "VQGAN-CLIP: Just playing with getting VQGAN+CLIP running locally, rather than having to use colab.", + "_organization": "nerdyrodent", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-07-02T00:00:00.000Z", + "_age_weeks": 85, + "_stars_per_week": 27.51, "_topics": [ - "cryptography", - "security", - "python" + "text2image", + "text-to-image" + ], + "_last_commit_date": "2022-10-02T00:00:00.000Z", + "_pop_contributor_count": 7, + "_pop_contributor_logins": [ + "DrJKL", + "caladri@az\u00e9otropecanada", + "microraptor", + "nerdyrodent", + "smn57", + "thehappydinoa@censys" ], - "_language": "C", - "_homepage": "https://www.pycryptodome.org", - "_description": "pycryptodome: A self-contained cryptographic library for Python", - "_organization": "legrandin", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2014-05-02T00:00:00.000Z", - "_age_weeks": 450, - "_stars_per_week": 4.92, - "_pop_contributor_count": 130, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "aitaustrianinstituteoftechnology", - "cisco" + "az\u00e9otropecanada", + "censys" + ], + "_pop_contributor_orgs_raw": [ + "@censys ", + "Az\u00e9otrope Canada Inc." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.35, - "_pop_updated_issues_count": 75, - "_pop_closed_issues_count": 64, - "_pop_created_since_days": 105, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 12, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 75.0, - "_pop_comment_count": 126.0, + "_pop_commit_frequency": 0.08, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 20, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 6.0, + "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 1485, - "_pop_score": 57.5, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/legrandin/pycryptodome/master/README.rst", - "_readme_localurl": "legrandin~pycryptodome~README.rst", + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 18.89, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nerdyrodent/vqgan-clip/master/README.md", + "_readme_localurl": "nerdyrodent~vqgan-clip~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/legrandin/pycryptodome/master/setup.py" + "https://raw.githubusercontent.com/nerdyrodent/vqgan-clip/master/requirements.txt" ], "_requirements_localurls": [ - "legrandin~pycryptodome~setup.py" + "nerdyrodent~vqgan-clip~requirements.txt" ] }, { - "index": 253, - "category": "ml", - "githuburl": "https://github.com/microsoft/flaml", + "index": 875, + "category": "perf", + "githuburl": "https://github.com/ipython/ipyparallel", "featured": null, "links": null, "description": null, - "_repopath": "microsoft/flaml", - "_reponame": "FLAML", - "_stars": 2172, - "_forks": 331, - "_watches": 39, + "_repopath": "ipython/ipyparallel", + "_reponame": "ipyparallel", + "_stars": 2356, + "_forks": 962, + "_watches": 120, + "_language": "Jupyter Notebook", + "_homepage": "https://ipyparallel.readthedocs.io/", + "_description": "ipyparallel: IPython Parallel: Interactive Parallel Computing in Python", + "_organization": "ipython", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2015-04-09T00:00:00.000Z", + "_age_weeks": 410, + "_stars_per_week": 5.73, "_topics": [ - "automl", - "hyperparam", - "automated-machine-learning", - "machine-learning", - "data-science", - "python", - "jupyter-notebook", - "hyperparameter-optimization", - "random-forest", - "scikit-learn", - "deep-learning", - "natural-language-processing", - "natural-language-generation", - "timeseries-forecasting", - "classification", - "regression", - "tuning", - "finetuning", - "tabular-data" + "parallel", + "jupyter", + "python" ], - "_language": "Jupyter Notebook", - "_homepage": "https://microsoft.github.io/FLAML/", - "_description": "FLAML: A fast library for AutoML and tuning. Join our Discord: https://discord.gg/Cppx2vSPVP.", - "_organization": "microsoft", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2020-08-20T00:00:00.000Z", - "_age_weeks": 121, - "_stars_per_week": 17.87, - "_pop_contributor_count": 59, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-08T00:00:00.000Z", + "_pop_contributor_count": 112, + "_pop_contributor_logins": [ + "Carreau@quansight-labs", + "blink1073@mongodb", + "ellisonbg@amazonwebservices", + "fperez@universityofcalifornia,berkeley.", + "ivanov", + "minrk@simularesearchlaboratory", + "pre-commit-ci[bot]", + "sahil1105", + "takluyver", + "tomoboy@ardoq" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "microsoft", - "pennsylvaniastateuniversity", - "stevensinstituteoftechnology" + "amazonwebservices", + "ardoq", + "mongodb", + "quansight-labs", + "simularesearchlaboratory", + "universityofcalifornia,berkeley." + ], + "_pop_contributor_orgs_raw": [ + "@Quansight-Labs", + "@ardoq ", + "Amazon Web Services", + "MongoDB", + "Simula Research Laboratory", + "University of California, Berkeley." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.04, - "_pop_updated_issues_count": 138, - "_pop_closed_issues_count": 85, - "_pop_created_since_days": 28, + "_pop_commit_frequency": 2.04, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 96, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 22, - "_pop_recent_releases_estimated_tags": 21, - "_pop_recent_releases_adjusted_count": 22, - "_pop_issue_count": 138.0, - "_pop_comment_count": 225.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 5.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 11, - "_pop_score": 50.03, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 41.91, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/microsoft/flaml/master/README.md", - "_readme_localurl": "microsoft~flaml~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/ipython/ipyparallel/master/README.md", + "_readme_localurl": "ipython~ipyparallel~README.md", "_requirements_filenames": [ - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/microsoft/flaml/master/setup.py" + "https://raw.githubusercontent.com/ipython/ipyparallel/master/pyproject.toml" ], "_requirements_localurls": [ - "microsoft~flaml~setup.py" + "ipython~ipyparallel~pyproject.toml" ] }, { - "index": 710, - "category": "pandas", - "githuburl": "https://github.com/jmcarpenter2/swifter", + "index": 755, + "category": "ml", + "githuburl": "https://github.com/marqo-ai/marqo", "featured": null, "links": null, "description": null, - "_repopath": "jmcarpenter2/swifter", - "_reponame": "swifter", - "_stars": 2161, - "_forks": 98, - "_watches": 28, + "_repopath": "marqo-ai/marqo", + "_reponame": "marqo", + "_stars": 2340, + "_forks": 90, + "_watches": 26, + "_language": "Python", + "_homepage": "https://www.marqo.ai/", + "_description": "marqo: Tensor search for humans.", + "_organization": "marqo-ai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-08-01T00:00:00.000Z", + "_age_weeks": 29, + "_stars_per_week": 79.9, "_topics": [ - "pandas", - "pandas-dataframe", - "parallel-computing", - "parallelization", - "dask", - "modin" + "deep-learning", + "information-retrieval", + "machinelearning", + "vector-search", + "tensor-search", + "clip", + "multi-modal", + "search-engine", + "transformers", + "vision-language", + "machine-learning", + "semantic-search", + "visual-search", + "natural-language-processing", + "hnsw", + "knn", + "hacktoberfest", + "chatgpt", + "gpt", + "large-language-models" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 21, + "_pop_contributor_logins": [ + "Jeadie@marqo-ai", + "MichalLuck", + "VitusAcabado@marqo.ai", + "aryanagarwal9", + "danyilq", + "jn2clark", + "pandu-k", + "tomhamer@marqo-ai", + "vicilliar", + "wanliAlex" ], - "_language": "Python", - "_homepage": "", - "_description": "swifter: A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner", - "_organization": "jmcarpenter2", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-08-16T00:00:00.000Z", - "_created_at": "2018-04-07T00:00:00.000Z", - "_age_weeks": 245, - "_stars_per_week": 8.81, - "_pop_contributor_count": 17, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "freshrelevance", - "manifoldai" + "marqo-ai", + "marqo.ai" + ], + "_pop_contributor_orgs_raw": [ + "@marqo-ai", + "@marqo-ai ", + "@marqo.ai" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.62, - "_pop_updated_issues_count": 5, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 57, - "_pop_updated_since_days": 4, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 17, - "_pop_recent_releases_adjusted_count": 17, - "_pop_issue_count": 5.0, - "_pop_comment_count": 4.0, + "_pop_commit_frequency": 12.75, + "_pop_updated_issues_count": 179, + "_pop_closed_issues_count": 121, + "_pop_created_since_days": 7, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 16, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 179.0, + "_pop_comment_count": 217.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 9, - "_pop_score": 33.71, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 37.85, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/jmcarpenter2/swifter/master/README.md", - "_readme_localurl": "jmcarpenter2~swifter~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/marqo-ai/marqo/master/README.md", + "_readme_localurl": "marqo-ai~marqo~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/jmcarpenter2/swifter/master/requirements.txt", - "https://raw.githubusercontent.com/jmcarpenter2/swifter/master/setup.py" + "https://raw.githubusercontent.com/marqo-ai/marqo/master/requirements.txt", + "https://raw.githubusercontent.com/marqo-ai/marqo/master/setup.py", + "https://raw.githubusercontent.com/marqo-ai/marqo/master/pyproject.toml" ], "_requirements_localurls": [ - "jmcarpenter2~swifter~requirements.txt", - "jmcarpenter2~swifter~setup.py" + "marqo-ai~marqo~requirements.txt", + "marqo-ai~marqo~setup.py", + "marqo-ai~marqo~pyproject.toml" ] }, { - "index": 617, - "category": "testing", - "githuburl": "https://github.com/pytest-dev/pytest-testinfra", + "index": 246, + "category": "util", + "githuburl": "https://github.com/pyston/pyston", "featured": null, "links": null, "description": null, - "_repopath": "pytest-dev/pytest-testinfra", - "_reponame": "pytest-testinfra", - "_stars": 2133, - "_forks": 312, - "_watches": 82, - "_topics": [ - "python", - "testing", - "infrastructure-as-code", - "devops", - "tdd", - "nagios", - "docker", - "tdd-utilities", - "testing-tools", - "devops-tools", - "infrastructure-testing", - "saltstack", - "chef", - "puppet", - "ansible", - "kubernetes", - "pytest-plugin" - ], + "_repopath": "pyston/pyston", + "_reponame": "pyston", + "_stars": 2325, + "_forks": 84, + "_watches": 33, "_language": "Python", - "_homepage": "https://testinfra.readthedocs.io", - "_description": "pytest-testinfra: Testinfra test your infrastructures", - "_organization": "pytest-dev", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-10T00:00:00.000Z", - "_created_at": "2015-03-15T00:00:00.000Z", - "_age_weeks": 405, - "_stars_per_week": 5.26, - "_pop_contributor_count": 121, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "lowatt", - "redhatansible" + "_homepage": "https://www.pyston.org/", + "_description": "pyston: A faster and highly-compatible implementation of the Python programming language.", + "_organization": "pyston", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-03-01T00:00:00.000Z", + "_age_weeks": 103, + "_stars_per_week": 22.51, + "_topics": [], + "_last_commit_date": "2022-11-23T00:00:00.000Z", + "_pop_contributor_count": 1035, + "_pop_contributor_logins": [ + "benjaminp", + "birkenfeld@fzj\u00fclich", + "freddrake@keepertech", + "gvanrossum@microsoft", + "jackjansen@centrumvoorwiskundeeninformatica", + "loewis", + "pitrou", + "rhettinger@mutableminds", + "serhiy-storchaka@neu.ro", + "vstinner@redhatofficial" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "centrumvoorwiskundeeninformatica", + "fzj\u00fclich", + "keepertech", + "microsoft", + "mutableminds", + "neu.ro", + "redhatofficial" + ], + "_pop_contributor_orgs_raw": [ + "@RedHatOfficial", + "@keepertech ", + "Centrum voor Wiskunde en Informatica", + "FZ J\u00fclich", + "Microsoft", + "Mutable Minds, Inc.", + "Neu.ro" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.54, - "_pop_updated_issues_count": 16, - "_pop_closed_issues_count": 10, - "_pop_created_since_days": 94, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 16.0, - "_pop_comment_count": 18.0, + "_pop_commit_frequency": 3.23, + "_pop_updated_issues_count": 23, + "_pop_closed_issues_count": 9, + "_pop_created_since_days": 24, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 239, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 21.0, + "_pop_comment_count": 27.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 123, - "_pop_score": 49.17, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 46.13, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest-testinfra/master/README.rst", - "_readme_localurl": "pytest-dev~pytest-testinfra~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pyston/pyston/master/README.rst", + "_readme_localurl": "pyston~pyston~README.rst", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pytest-dev/pytest-testinfra/master/setup.py", - "https://raw.githubusercontent.com/pytest-dev/pytest-testinfra/master/pyproject.toml" + "https://raw.githubusercontent.com/pyston/pyston/master/setup.py" ], "_requirements_localurls": [ - "pytest-dev~pytest-testinfra~setup.py", - "pytest-dev~pytest-testinfra~pyproject.toml" + "pyston~pyston~setup.py" ] }, { - "index": 807, - "category": "web", - "githuburl": "https://github.com/flipkart-incubator/astra", + "index": 947, + "category": "nlp", + "githuburl": "https://github.com/microsoft/biogpt", "featured": null, "links": null, "description": null, - "_repopath": "flipkart-incubator/astra", - "_reponame": "Astra", - "_stars": 2129, - "_forks": 356, - "_watches": 84, - "_topics": [ - "security", - "restapiautomation", - "python", - "owasp", - "penetration-testing-framework", - "postman-collection", - "ci-cd", - "sdlc", - "penetration-testing", - "security-automation" - ], + "_repopath": "microsoft/biogpt", + "_reponame": "BioGPT", + "_stars": 2305, + "_forks": 196, + "_watches": 45, "_language": "Python", - "_homepage": "", - "_description": "Astra: Automated Security Testing For REST API's", - "_organization": "flipkart-incubator", - "_updated_at": "2022-12-13T00:00:00.000Z", - "_last_commit_date": "2019-04-05T00:00:00.000Z", - "_created_at": "2018-01-10T00:00:00.000Z", - "_age_weeks": 257, - "_stars_per_week": 8.26, - "_pop_contributor_count": 11, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": null, + "_description": "microsoft/biogpt", + "_organization": "microsoft", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-08-15T00:00:00.000Z", + "_age_weeks": 27, + "_stars_per_week": 84.48, + "_topics": [], + "_last_commit_date": "2023-02-13T00:00:00.000Z", + "_pop_contributor_count": 9, + "_pop_contributor_logins": [ + "AH-Merii@silencetherapeutics", + "bbennett80", + "cybersaksham", + "eltociear@bandism", + "katielink@huggingface", + "kurt-biorender", + "microsoftopensource@microsoft", + "renqianluo@microsoft", + "yuta519" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "aarhusuni", - "myntradesignspvtltd" + "bandism", + "huggingface", + "microsoft", + "silencetherapeutics" + ], + "_pop_contributor_orgs_raw": [ + "@bandism ", + "@huggingface ", + "Microsoft", + "Silence Therapeutics" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 60, - "_pop_updated_since_days": 45, + "_pop_commit_frequency": 0.62, + "_pop_updated_issues_count": 56, + "_pop_closed_issues_count": 26, + "_pop_created_since_days": 6, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 4.0, - "_pop_comment_count": 3.0, + "_pop_issue_count": 56.0, + "_pop_comment_count": 93.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 20, - "_pop_score": 22.01, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 29.14, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/flipkart-incubator/astra/master/README.md", - "_readme_localurl": "flipkart-incubator~astra~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/microsoft/biogpt/master/README.md", + "_readme_localurl": "microsoft~biogpt~README.md", "_requirements_filenames": [ "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/flipkart-incubator/astra/master/requirements.txt" + "https://raw.githubusercontent.com/microsoft/biogpt/master/requirements.txt" ], "_requirements_localurls": [ - "flipkart-incubator~astra~requirements.txt" + "microsoft~biogpt~requirements.txt" ] }, { - "index": 503, - "category": "gis", - "githuburl": "https://github.com/google/earthengine-api", + "index": 724, + "category": "util", + "githuburl": "https://github.com/ashleve/lightning-hydra-template", "featured": null, "links": null, "description": null, - "_repopath": "google/earthengine-api", - "_reponame": "earthengine-api", - "_stars": 2093, - "_forks": 892, - "_watches": 204, - "_topics": [], - "_language": "JavaScript", + "_repopath": "ashleve/lightning-hydra-template", + "_reponame": "lightning-hydra-template", + "_stars": 2285, + "_forks": 389, + "_watches": 20, + "_language": "Python", "_homepage": "", - "_description": "earthengine-api: Python and JavaScript bindings for calling the Earth Engine API.", - "_organization": "google", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2015-04-22T00:00:00.000Z", - "_age_weeks": 399, - "_stars_per_week": 5.24, - "_pop_contributor_count": 36, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "google" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 93, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 32, - "_pop_recent_releases_adjusted_count": 32, - "_pop_issue_count": 7.0, - "_pop_comment_count": 5.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 9, - "_pop_score": 38.7, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/google/earthengine-api/master/README.md", - "_readme_localurl": "google~earthengine-api~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, - { - "index": 878, - "category": "time-series", - "githuburl": "https://github.com/nixtla/statsforecast", - "featured": null, - "links": null, - "description": null, - "_repopath": "nixtla/statsforecast", - "_reponame": "statsforecast", - "_stars": 2070, - "_forks": 119, - "_watches": 19, + "_description": "lightning-hydra-template: PyTorch Lightning + Hydra. A very user-friendly template for rapid and reproducible ML experimentation with best practices. \u26a1\ud83d\udd25\u26a1", + "_organization": "ashleve", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-11-04T00:00:00.000Z", + "_age_weeks": 120, + "_stars_per_week": 19.04, "_topics": [ - "time-series", - "statistics", - "forecasting", - "arima", - "econometrics", - "machine-learning", - "python", - "exponential-smoothing", - "ets", - "baselines", - "predictions", - "naive", - "seasonal-naive", - "fbprophet", - "prophet", - "neuralprophet", - "mstl", - "theta", - "automl", - "data-science" + "pytorch-lightning", + "wandb", + "project-structure", + "config", + "deep-learning", + "hydra", + "template", + "pytorch", + "reproducibility", + "best-practices", + "neptune", + "mlflow", + "tensorboard", + "comet", + "mlops" ], - "_language": "Python", - "_homepage": "https://nixtla.github.io/statsforecast/", - "_description": "statsforecast: Lightning \u26a1\ufe0f fast forecasting with statistical and econometric models.", - "_organization": "nixtla", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2021-11-24T00:00:00.000Z", - "_age_weeks": 55, - "_stars_per_week": 37.15, - "_pop_contributor_count": 16, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-11T00:00:00.000Z", + "_pop_contributor_count": 27, + "_pop_contributor_logins": [ + "Adizx12", + "CharlesGaydon", + "amorehead@universityofmissouri", + "ashleve", + "atong01@mila;udem", + "dependabot[bot]", + "elisim", + "eungbean@diml,yonseiuniv.", + "nils-werner", + "yipliu@hunanuniversity" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "nixtla", - "nubank" + "diml,yonseiuniv.", + "hunanuniversity", + "mila;udem", + "universityofmissouri" + ], + "_pop_contributor_orgs_raw": [ + "DIML, Yonsei Univ.", + "Hunan University", + "Mila; UdeM", + "University of Missouri" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 16.48, - "_pop_updated_issues_count": 124, - "_pop_closed_issues_count": 103, - "_pop_created_since_days": 13, + "_pop_commit_frequency": 2.88, + "_pop_updated_issues_count": 88, + "_pop_closed_issues_count": 71, + "_pop_created_since_days": 28, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 22, - "_pop_recent_releases_estimated_tags": 23, - "_pop_recent_releases_adjusted_count": 22, - "_pop_issue_count": 124.0, - "_pop_comment_count": 148.0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 88.0, + "_pop_comment_count": 99.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 28, - "_pop_score": 46.08, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 39.75, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nixtla/statsforecast/master/README.md", - "_readme_localurl": "nixtla~statsforecast~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/README.md", + "_readme_localurl": "ashleve~lightning-hydra-template~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt", + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/nixtla/statsforecast/master/setup.py" + "https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/requirements.txt", + "https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/setup.py", + "https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/pyproject.toml" ], "_requirements_localurls": [ - "nixtla~statsforecast~setup.py" + "ashleve~lightning-hydra-template~requirements.txt", + "ashleve~lightning-hydra-template~setup.py", + "ashleve~lightning-hydra-template~pyproject.toml" ] }, { - "index": 222, - "category": "data", - "githuburl": "https://github.com/pynamodb/pynamodb", - "featured": 1.0, + "index": 308, + "category": "util", + "githuburl": "https://github.com/legrandin/pycryptodome", + "featured": null, "links": null, "description": null, - "_repopath": "pynamodb/pynamodb", - "_reponame": "PynamoDB", - "_stars": 2060, - "_forks": 411, - "_watches": 41, + "_repopath": "legrandin/pycryptodome", + "_reponame": "pycryptodome", + "_stars": 2268, + "_forks": 417, + "_watches": 59, + "_language": "C", + "_homepage": "https://www.pycryptodome.org", + "_description": "pycryptodome: A self-contained cryptographic library for Python", + "_organization": "legrandin", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-05-02T00:00:00.000Z", + "_age_weeks": 459, + "_stars_per_week": 4.93, "_topics": [ - "python", - "dynamodb", - "aws" + "cryptography", + "security", + "python" ], - "_language": "Python", - "_homepage": "http://pynamodb.readthedocs.io", - "_description": "PynamoDB: A pythonic interface to Amazon's DynamoDB", - "_organization": "pynamodb", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2014-01-20T00:00:00.000Z", - "_age_weeks": 465, - "_stars_per_week": 4.43, - "_pop_contributor_count": 100, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-01-28T00:00:00.000Z", + "_pop_contributor_count": 134, + "_pop_contributor_logins": [ + "Legrandin", + "akuchling", + "dlitz", + "hugovk@nordsoftware", + "mchlnix@none", + "mitchellrj", + "roughconsensusandrunningcode", + "sebastinas@aitaustrianinstituteoftechnology", + "stefanor@freexian,debian,ubuntu", + "thorsteneb@cisco" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "lyft", - "openeyescientificsoftware" + "aitaustrianinstituteoftechnology", + "cisco", + "freexian,debian,ubuntu", + "none", + "nordsoftware" + ], + "_pop_contributor_orgs_raw": [ + "AIT Austrian Institute of Technology", + "Cisco", + "Freexian, Debian, Ubuntu", + "None", + "Nord Software" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.87, - "_pop_updated_issues_count": 114, - "_pop_closed_issues_count": 93, - "_pop_created_since_days": 108, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 10, - "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 10, - "_pop_issue_count": 114.0, - "_pop_comment_count": 177.0, + "_pop_commit_frequency": 2.27, + "_pop_updated_issues_count": 94, + "_pop_closed_issues_count": 76, + "_pop_created_since_days": 107, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 94.0, + "_pop_comment_count": 120.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 72, - "_pop_score": 53.16, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 46.7, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pynamodb/pynamodb/master/README.rst", - "_readme_localurl": "pynamodb~pynamodb~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/legrandin/pycryptodome/master/README.rst", + "_readme_localurl": "legrandin~pycryptodome~README.rst", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pynamodb/pynamodb/master/setup.py" + "https://raw.githubusercontent.com/legrandin/pycryptodome/master/setup.py" ], "_requirements_localurls": [ - "pynamodb~pynamodb~setup.py" + "legrandin~pycryptodome~setup.py" ] }, { - "index": 268, - "category": "jupyter", - "githuburl": "https://github.com/jupyterlab/jupyterlab-desktop", - "featured": null, - "links": null, + "index": 253, + "category": "ml", + "githuburl": "https://github.com/microsoft/flaml", + "featured": null, + "links": null, "description": null, - "_repopath": "jupyterlab/jupyterlab-desktop", - "_reponame": "jupyterlab-desktop", - "_stars": 2059, - "_forks": 213, + "_repopath": "microsoft/flaml", + "_reponame": "FLAML", + "_stars": 2265, + "_forks": 348, "_watches": 40, + "_language": "Jupyter Notebook", + "_homepage": "https://microsoft.github.io/FLAML/", + "_description": "FLAML: A fast library for AutoML and tuning. Join our Discord: https://discord.gg/Cppx2vSPVP.", + "_organization": "microsoft", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-08-20T00:00:00.000Z", + "_age_weeks": 130, + "_stars_per_week": 17.31, "_topics": [ - "jupyterlab", - "jupyter", - "jupyter-notebook" + "automl", + "hyperparam", + "automated-machine-learning", + "machine-learning", + "data-science", + "python", + "jupyter-notebook", + "hyperparameter-optimization", + "random-forest", + "scikit-learn", + "deep-learning", + "natural-language-processing", + "natural-language-generation", + "timeseries-forecasting", + "classification", + "regression", + "tuning", + "finetuning", + "tabular-data" ], - "_language": "TypeScript", - "_homepage": "", - "_description": "jupyterlab-desktop: JupyterLab desktop application, based on Electron.", - "_organization": "jupyterlab", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", - "_created_at": "2017-05-04T00:00:00.000Z", - "_age_weeks": 293, - "_stars_per_week": 7.01, - "_pop_contributor_count": 33, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 61, + "_pop_contributor_logins": [ + "Anonymous-submission-repo", + "dependabot[bot]", + "gianpd", + "int-chaos", + "jingdong00", + "liususan091219@stevensinstituteoftechnology", + "qingyun-wu@pennsylvaniastateuniversity", + "royninja@alletec", + "skzhang1", + "sonichi@microsoft" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "fermiumlabssrl(fermiumlabs)", - "netflix" + "alletec", + "microsoft", + "pennsylvaniastateuniversity", + "stevensinstituteoftechnology" + ], + "_pop_contributor_orgs_raw": [ + "Alletec", + "Microsoft", + "Pennsylvania State University", + "Stevens Institute of Technology" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.94, - "_pop_updated_issues_count": 66, - "_pop_closed_issues_count": 45, - "_pop_created_since_days": 68, + "_pop_commit_frequency": 4.79, + "_pop_updated_issues_count": 121, + "_pop_closed_issues_count": 70, + "_pop_created_since_days": 30, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 9, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 9, - "_pop_issue_count": 66.0, - "_pop_comment_count": 99.0, + "_pop_recent_releases_count": 19, + "_pop_recent_releases_estimated_tags": 21, + "_pop_recent_releases_adjusted_count": 19, + "_pop_issue_count": 121.0, + "_pop_comment_count": 187.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 2, - "_pop_score": 43.75, + "_pop_dependents_count": 0, + "_pop_score": 46.21, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/jupyterlab/jupyterlab-desktop/master/README.md", - "_readme_localurl": "jupyterlab~jupyterlab-desktop~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/microsoft/flaml/master/README.md", + "_readme_localurl": "microsoft~flaml~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/microsoft/flaml/master/setup.py" + ], + "_requirements_localurls": [ + "microsoft~flaml~setup.py" + ] }, { - "index": 867, - "category": "util", - "githuburl": "https://github.com/dosisod/refurb", - "featured": 1.0, + "index": 878, + "category": "time-series", + "githuburl": "https://github.com/nixtla/statsforecast", + "featured": null, "links": null, "description": null, - "_repopath": "dosisod/refurb", - "_reponame": "refurb", - "_stars": 2055, - "_forks": 35, - "_watches": 15, + "_repopath": "nixtla/statsforecast", + "_reponame": "statsforecast", + "_stars": 2233, + "_forks": 138, + "_watches": 18, + "_language": "Python", + "_homepage": "https://nixtla.github.io/statsforecast/", + "_description": "statsforecast: Lightning \u26a1\ufe0f fast forecasting with statistical and econometric models.", + "_organization": "nixtla", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-11-24T00:00:00.000Z", + "_age_weeks": 65, + "_stars_per_week": 34.35, "_topics": [ - "cli", - "mypy", + "time-series", + "statistics", + "forecasting", + "arima", + "econometrics", + "machine-learning", "python", - "python310", - "testing", - "gplv3", - "hacktoberfest" + "exponential-smoothing", + "ets", + "baselines", + "predictions", + "naive", + "seasonal-naive", + "fbprophet", + "prophet", + "neuralprophet", + "mstl", + "theta", + "automl", + "data-science" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 18, + "_pop_contributor_logins": [ + "FedericoGarza@nixtla", + "JeroenPeterBos", + "MMenchero", + "allcontributors[bot]", + "cchallu", + "goodwanghan", + "jmoralez@nubank", + "kdgutier", + "mergenthaler@nixtla", + "sugatoray@universityofwisconsin-milwaukee" ], - "_language": "Python", - "_homepage": "", - "_description": "refurb: A tool for refurbishing and modernizing Python codebases", - "_organization": "dosisod", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2022-07-27T00:00:00.000Z", - "_age_weeks": 20, - "_stars_per_week": 99.21, - "_pop_contributor_count": 8, "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "grupoboticario", - "hotjar", - "resgroup" + "nixtla", + "nubank", + "universityofwisconsin-milwaukee" + ], + "_pop_contributor_orgs_raw": [ + "@Nixtla", + "@nubank", + "Nixtla", + "University of Wisconsin - Milwaukee" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.46, - "_pop_updated_issues_count": 153, - "_pop_closed_issues_count": 139, - "_pop_created_since_days": 5, + "_pop_commit_frequency": 15.83, + "_pop_updated_issues_count": 98, + "_pop_closed_issues_count": 76, + "_pop_created_since_days": 15, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 8, - "_pop_recent_releases_estimated_tags": 34, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 153.0, - "_pop_comment_count": 162.0, + "_pop_recent_releases_count": 22, + "_pop_recent_releases_estimated_tags": 20, + "_pop_recent_releases_adjusted_count": 22, + "_pop_issue_count": 98.0, + "_pop_comment_count": 108.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 5, - "_pop_score": 36.99, + "_pop_dependents_count": 0, + "_pop_score": 41.46, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/dosisod/refurb/master/README.md", - "_readme_localurl": "dosisod~refurb~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nixtla/statsforecast/master/README.md", + "_readme_localurl": "nixtla~statsforecast~README.md", "_requirements_filenames": [ - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/dosisod/refurb/master/pyproject.toml" + "https://raw.githubusercontent.com/nixtla/statsforecast/master/setup.py" ], "_requirements_localurls": [ - "dosisod~refurb~pyproject.toml" + "nixtla~statsforecast~setup.py" ] }, { - "index": 198, - "category": "ml", - "githuburl": "https://github.com/maif/shapash", + "index": 458, + "category": "ml-dl", + "githuburl": "https://github.com/nebuly-ai/nebullvm", "featured": null, "links": null, "description": null, - "_repopath": "maif/shapash", - "_reponame": "shapash", - "_stars": 2053, - "_forks": 253, - "_watches": 37, + "_repopath": "nebuly-ai/nebullvm", + "_reponame": "nebullvm", + "_stars": 2232, + "_forks": 126, + "_watches": 26, + "_language": "Python", + "_homepage": "https://www.nebuly.com/", + "_description": "nebullvm: Plug and play modules to optimize the performances of your AI systems \ud83d\ude80", + "_organization": "nebuly-ai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-02-12T00:00:00.000Z", + "_age_weeks": 53, + "_stars_per_week": 41.66, "_topics": [ - "python", + "deep-learning", + "pytorch", + "onnx", "machine-learning", - "explainability", - "explainable-ml", - "transparency", - "ethical-artificial-intelligence", - "shap", - "lime", - "interpretability" + "tensorflow", + "tvm", + "openvino", + "tensorrt", + "huggingface", + "compiler", + "computing", + "inference", + "neural-network", + "pypi", + "quantization", + "edge-computing", + "gpu", + "optimization", + "transformers" ], - "_language": "Jupyter Notebook", - "_homepage": "https://maif.github.io/shapash/", - "_description": "shapash: \ud83d\udd05 Shapash makes Machine Learning models transparent and understandable by everyone", - "_organization": "maif", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", - "_created_at": "2020-04-29T00:00:00.000Z", - "_age_weeks": 137, - "_stars_per_week": 14.91, - "_pop_contributor_count": 35, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "helsing", - "maif" + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 23, + "_pop_contributor_logins": [ + "ZecchinLeonardo", + "arianGh1@kharazmiuniversity", + "aurimgg", + "cyclotomicextension", + "diegofiori@nebuly|epfl", + "eltociear@bandism", + "emilecourthoud@nebuly|ethzurich", + "francis-oss@nebuly-ai|mit", + "nebuly-ai@nebuly-ai", + "valeriosofi@nebuly" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "bandism", + "kharazmiuniversity", + "nebuly", + "nebuly-ai", + "nebuly-ai|mit", + "nebuly|epfl", + "nebuly|ethzurich" + ], + "_pop_contributor_orgs_raw": [ + "@bandism ", + "@nebuly-ai", + "@nebuly-ai | MIT", + "Kharazmi University", + "Nebuly", + "Nebuly | EPFL", + "Nebuly | ETH Zurich" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.9, - "_pop_updated_issues_count": 34, - "_pop_closed_issues_count": 30, - "_pop_created_since_days": 32, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 8, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 34.0, - "_pop_comment_count": 15.0, + "_pop_commit_frequency": 5.73, + "_pop_updated_issues_count": 88, + "_pop_closed_issues_count": 56, + "_pop_created_since_days": 12, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 21, + "_pop_recent_releases_estimated_tags": 21, + "_pop_recent_releases_adjusted_count": 21, + "_pop_issue_count": 88.0, + "_pop_comment_count": 91.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.4, - "_pop_dependents_count": 12, - "_pop_score": 39.96, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 42.87, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/maif/shapash/master/README.md", - "_readme_localurl": "maif~shapash~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nebuly-ai/nebullvm/master/README.md", + "_readme_localurl": "nebuly-ai~nebullvm~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/maif/shapash/master/setup.py" + "https://raw.githubusercontent.com/nebuly-ai/nebullvm/master/requirements.txt", + "https://raw.githubusercontent.com/nebuly-ai/nebullvm/master/setup.py" ], "_requirements_localurls": [ - "maif~shapash~setup.py" + "nebuly-ai~nebullvm~requirements.txt", + "nebuly-ai~nebullvm~setup.py" ] }, { - "index": 724, - "category": "util", - "githuburl": "https://github.com/ashleve/lightning-hydra-template", + "index": 965, + "category": "ml-dl", + "githuburl": "https://github.com/danielegrattarola/spektral", "featured": null, "links": null, "description": null, - "_repopath": "ashleve/lightning-hydra-template", - "_reponame": "lightning-hydra-template", - "_stars": 2051, - "_forks": 343, - "_watches": 19, + "_repopath": "danielegrattarola/spektral", + "_reponame": "spektral", + "_stars": 2231, + "_forks": 333, + "_watches": 43, + "_language": "Python", + "_homepage": "https://graphneural.network", + "_description": "spektral: Graph Neural Networks with Keras and Tensorflow 2.", + "_organization": "danielegrattarola", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2019-01-17T00:00:00.000Z", + "_age_weeks": 213, + "_stars_per_week": 10.43, "_topics": [ - "pytorch-lightning", - "wandb", - "project-structure", - "config", - "deep-learning", - "hydra", - "template", - "pytorch", - "research", - "experiments", - "reproducibility", - "experiment-tracking", - "best-practices", - "neptune", - "mlflow", - "tensorboard", - "comet", - "mlops" + "graph-neural-networks", + "keras", + "python", + "tensorflow", + "tensorflow2", + "graph-deep-learning", + "deep-learning" ], - "_language": "Python", - "_homepage": "", - "_description": "lightning-hydra-template: PyTorch Lightning + Hydra. A very user-friendly template for rapid and reproducible ML experimentation with best practices. \u26a1\ud83d\udd25\u26a1", - "_organization": "ashleve", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2020-11-04T00:00:00.000Z", - "_age_weeks": 110, - "_stars_per_week": 18.53, + "_last_commit_date": "2023-02-11T00:00:00.000Z", "_pop_contributor_count": 26, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "AlexandrMelnic", + "FilippoMB@uitthearcticuniversityofnorway", + "JackMaguire@universityofnorthcarolinaatchapelhill", + "LeviBorodenko", + "cclauss@christianclauss", + "cgarciae@quansight", + "danielegrattarola", + "djpetti", + "jackd@universityofmelbourne", + "kmader" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "hunanuniversity" + "christianclauss", + "quansight", + "uitthearcticuniversityofnorway", + "universityofmelbourne", + "universityofnorthcarolinaatchapelhill" + ], + "_pop_contributor_orgs_raw": [ + "Christian Clauss", + "Quansight", + "UiT the Arctic University of Norway", + "University of Melbourne", + "University of North Carolina at Chapel Hill" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.81, - "_pop_updated_issues_count": 46, - "_pop_closed_issues_count": 38, - "_pop_created_since_days": 26, + "_pop_commit_frequency": 1.29, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 50, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 46.0, - "_pop_comment_count": 49.0, + "_pop_issue_count": 16.0, + "_pop_comment_count": 43.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 7, - "_pop_score": 36.9, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 0, + "_pop_score": 39.76, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/README.md", - "_readme_localurl": "ashleve~lightning-hydra-template~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/danielegrattarola/spektral/master/README.md", + "_readme_localurl": "danielegrattarola~spektral~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/requirements.txt", - "https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/setup.py", - "https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/pyproject.toml" + "https://raw.githubusercontent.com/danielegrattarola/spektral/master/setup.py", + "https://raw.githubusercontent.com/danielegrattarola/spektral/master/pyproject.toml" ], "_requirements_localurls": [ - "ashleve~lightning-hydra-template~requirements.txt", - "ashleve~lightning-hydra-template~setup.py", - "ashleve~lightning-hydra-template~pyproject.toml" + "danielegrattarola~spektral~setup.py", + "danielegrattarola~spektral~pyproject.toml" ] }, { - "index": 860, - "category": "jupyter", - "githuburl": "https://github.com/jupyter/nbviewer", + "index": 540, + "category": "nlp", + "githuburl": "https://github.com/salesforce/codegen", "featured": null, "links": null, "description": null, - "_repopath": "jupyter/nbviewer", - "_reponame": "nbviewer", - "_stars": 2035, - "_forks": 530, - "_watches": 92, + "_repopath": "salesforce/codegen", + "_reponame": "CodeGen", + "_stars": 2223, + "_forks": 169, + "_watches": 43, + "_language": "Python", + "_homepage": "", + "_description": "CodeGen is an open-source model for program synthesis. Trained on TPU-v4. Competitive with OpenAI Codex.", + "_organization": "salesforce", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-03-28T00:00:00.000Z", + "_age_weeks": 47, + "_stars_per_week": 47.01, "_topics": [ - "jupyter", - "jupyter-notebook", - "nbconvert" + "programsynthesis", + "generativemodel", + "codex", + "languagemodel", + "llm", + "tpu-acceleration" ], - "_language": "Python", - "_homepage": "https://nbviewer.jupyter.org", - "_description": "nbviewer: nbconvert as a web service: Render Jupyter Notebooks as static web pages", - "_organization": "jupyter", - "_updated_at": "2022-12-10T00:00:00.000Z", - "_last_commit_date": "2022-11-07T00:00:00.000Z", - "_created_at": "2012-08-05T00:00:00.000Z", - "_age_weeks": 541, - "_stars_per_week": 3.76, - "_pop_contributor_count": 92, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_pop_contributor_count": 7, + "_pop_contributor_logins": [ + "LowinLi", + "bpucla", + "enijkamp", + "jimjag", + "jsoref@garnercorp", + "rooa", + "vlomshakov" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "noteable-io", - "quansight-labs", - "simularesearchlaboratory", - "wearethorn" + "garnercorp" + ], + "_pop_contributor_orgs_raw": [ + "@GarnerCorp " ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.25, - "_pop_updated_issues_count": 22, - "_pop_closed_issues_count": 14, - "_pop_created_since_days": 126, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 0.83, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 11, + "_pop_updated_since_days": 3, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 22.0, - "_pop_comment_count": 21.0, + "_pop_issue_count": 14.0, + "_pop_comment_count": 27.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 240, - "_pop_score": 48.67, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 20.49, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/jupyter/nbviewer/master/README.md", - "_readme_localurl": "jupyter~nbviewer~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/salesforce/codegen/master/README.md", + "_readme_localurl": "salesforce~codegen~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/jupyter/nbviewer/master/requirements.txt", - "https://raw.githubusercontent.com/jupyter/nbviewer/master/setup.py" + "https://raw.githubusercontent.com/salesforce/codegen/master/requirements.txt" ], "_requirements_localurls": [ - "jupyter~nbviewer~requirements.txt", - "jupyter~nbviewer~setup.py" + "salesforce~codegen~requirements.txt" ] }, { - "index": 411, - "category": "util", - "githuburl": "https://github.com/yaml/pyyaml", + "index": 710, + "category": "pandas", + "githuburl": "https://github.com/jmcarpenter2/swifter", "featured": null, "links": null, "description": null, - "_repopath": "yaml/pyyaml", - "_reponame": "pyyaml", - "_stars": 2007, - "_forks": 423, - "_watches": 46, - "_topics": [ - "python", - "yaml" - ], + "_repopath": "jmcarpenter2/swifter", + "_reponame": "swifter", + "_stars": 2216, + "_forks": 99, + "_watches": 29, "_language": "Python", "_homepage": "", - "_description": "pyyaml: Canonical source repository for PyYAML", - "_organization": "yaml", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-09-13T00:00:00.000Z", - "_created_at": "2011-11-03T00:00:00.000Z", - "_age_weeks": 580, - "_stars_per_week": 3.46, - "_pop_contributor_count": 40, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_description": "swifter: A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner", + "_organization": "jmcarpenter2", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-04-07T00:00:00.000Z", + "_age_weeks": 254, + "_stars_per_week": 8.7, + "_topics": [ + "pandas", + "pandas-dataframe", + "parallel-computing", + "parallelization", + "dask", + "modin" + ], + "_last_commit_date": "2022-08-16T00:00:00.000Z", + "_pop_contributor_count": 17, + "_pop_contributor_logins": [ + "CrafterKolyan", + "MichaelKarpe@next-gate-tech", + "apurvis", + "def-mycroft", + "devin-petersohn@ponder", + "dhendo@freshrelevance", + "jmcarpenter2@manifoldai", + "openafox", + "tcbegley@facebook", + "toddrme2178" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "ansible", - "newfolddigital/bluehost", - "suse" + "facebook", + "freshrelevance", + "manifoldai", + "next-gate-tech", + "ponder" + ], + "_pop_contributor_orgs_raw": [ + "@facebook", + "@manifoldai ", + "@next-gate-tech", + "Fresh Relevance", + "Ponder" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.04, - "_pop_updated_issues_count": 36, - "_pop_closed_issues_count": 9, - "_pop_created_since_days": 135, - "_pop_updated_since_days": 3, + "_pop_commit_frequency": 0.38, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 59, + "_pop_updated_since_days": 6, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 36.0, - "_pop_comment_count": 33.0, + "_pop_recent_releases_estimated_tags": 17, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 6.0, + "_pop_comment_count": 7.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 6927, - "_pop_score": 51.03, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 33.2, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/yaml/pyyaml/master/README.md", - "_readme_localurl": "yaml~pyyaml~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/jmcarpenter2/swifter/master/README.md", + "_readme_localurl": "jmcarpenter2~swifter~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/yaml/pyyaml/master/setup.py", - "https://raw.githubusercontent.com/yaml/pyyaml/master/pyproject.toml" + "https://raw.githubusercontent.com/jmcarpenter2/swifter/master/requirements.txt", + "https://raw.githubusercontent.com/jmcarpenter2/swifter/master/setup.py" ], "_requirements_localurls": [ - "yaml~pyyaml~setup.py", - "yaml~pyyaml~pyproject.toml" + "jmcarpenter2~swifter~requirements.txt", + "jmcarpenter2~swifter~setup.py" ] }, { - "index": 748, - "category": "study", - "githuburl": "https://github.com/zhanymkanov/fastapi-best-practices", + "index": 807, + "category": "web", + "githuburl": "https://github.com/flipkart-incubator/astra", "featured": null, "links": null, "description": null, - "_repopath": "zhanymkanov/fastapi-best-practices", - "_reponame": "fastapi-best-practices", - "_stars": 2006, - "_forks": 134, - "_watches": 36, - "_topics": [ - "fastapi", - "best-practices" - ], - "_language": null, + "_repopath": "flipkart-incubator/astra", + "_reponame": "Astra", + "_stars": 2177, + "_forks": 360, + "_watches": 85, + "_language": "Python", "_homepage": "", - "_description": "fastapi-best-practices: FastAPI Best Practices and Conventions we used @ hi.peerlink.me", - "_organization": "zhanymkanov", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-09-16T00:00:00.000Z", - "_created_at": "2022-08-09T00:00:00.000Z", - "_age_weeks": 18, - "_stars_per_week": 106.38, - "_pop_contributor_count": 3, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_description": "Astra: Automated Security Testing For REST API's", + "_organization": "flipkart-incubator", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-01-10T00:00:00.000Z", + "_age_weeks": 267, + "_stars_per_week": 8.15, + "_topics": [ + "security", + "restapiautomation", + "python", + "owasp", + "penetration-testing-framework", + "postman-collection", + "ci-cd", + "sdlc", + "penetration-testing", + "security-automation" + ], + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 12, + "_pop_contributor_logins": [ + "Anemone95@aarhusuni", + "ankurbhargava87f", + "disenchant", + "gajjar8055", + "harsh-groverfk", + "mohangcsm@myntradesignspvtltd", + "prajal", + "royingantaginting@gdp-admin", + "sagarpo" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "viaprotocol" + "aarhusuni", + "gdp-admin", + "myntradesignspvtltd" + ], + "_pop_contributor_orgs_raw": [ + "@GDP-ADMIN ", + "AarhusUni", + "Myntra Designs Pvt Ltd" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.81, - "_pop_updated_issues_count": 9, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 4, - "_pop_updated_since_days": 3, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 62, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 9.0, - "_pop_comment_count": 25.0, + "_pop_issue_count": 6.0, + "_pop_comment_count": 3.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.8, + "_pop_comment_frequency": 0.5, "_pop_dependents_count": 0, - "_pop_score": 17.0, + "_pop_score": 27.15, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/zhanymkanov/fastapi-best-practices/master/README.md", - "_readme_localurl": "zhanymkanov~fastapi-best-practices~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/flipkart-incubator/astra/master/README.md", + "_readme_localurl": "flipkart-incubator~astra~README.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/flipkart-incubator/astra/master/requirements.txt" + ], + "_requirements_localurls": [ + "flipkart-incubator~astra~requirements.txt" + ] }, { - "index": 881, - "category": "time-series", - "githuburl": "https://github.com/rjt1990/pyflux", + "index": 617, + "category": "testing", + "githuburl": "https://github.com/pytest-dev/pytest-testinfra", "featured": null, "links": null, "description": null, - "_repopath": "rjt1990/pyflux", - "_reponame": "pyflux", - "_stars": 2001, - "_forks": 233, - "_watches": 70, + "_repopath": "pytest-dev/pytest-testinfra", + "_reponame": "pytest-testinfra", + "_stars": 2159, + "_forks": 321, + "_watches": 82, + "_language": "Python", + "_homepage": "https://testinfra.readthedocs.io", + "_description": "pytest-testinfra: Testinfra test your infrastructures", + "_organization": "pytest-dev", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2015-03-15T00:00:00.000Z", + "_age_weeks": 414, + "_stars_per_week": 5.21, "_topics": [ - "statistics", - "time-series" + "python", + "testing", + "infrastructure-as-code", + "devops", + "tdd", + "nagios", + "docker", + "tdd-utilities", + "testing-tools", + "devops-tools", + "infrastructure-testing", + "saltstack", + "chef", + "puppet", + "ansible", + "kubernetes", + "pytest-plugin" + ], + "_last_commit_date": "2023-01-11T00:00:00.000Z", + "_pop_contributor_count": 123, + "_pop_contributor_logins": [ + "BenoitKnecht", + "atombrella", + "dcermak@suse", + "gtmanfred@autodesk", + "ianw", + "jesselang@spscommerce", + "philpep@lowatt", + "randombenj", + "romainx", + "ssbarnea@redhatansible" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "autodesk", + "lowatt", + "redhatansible", + "spscommerce", + "suse" + ], + "_pop_contributor_orgs_raw": [ + "@SPSCommerce", + "@lowatt", + "Autodesk", + "Red Hat @ansible", + "SUSE" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.5, + "_pop_updated_issues_count": 38, + "_pop_closed_issues_count": 20, + "_pop_created_since_days": 97, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 38.0, + "_pop_comment_count": 20.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 41.57, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest-testinfra/master/README.rst", + "_readme_localurl": "pytest-dev~pytest-testinfra~README.rst", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pytest-dev/pytest-testinfra/master/setup.py", + "https://raw.githubusercontent.com/pytest-dev/pytest-testinfra/master/pyproject.toml" + ], + "_requirements_localurls": [ + "pytest-dev~pytest-testinfra~setup.py", + "pytest-dev~pytest-testinfra~pyproject.toml" + ] + }, + { + "index": 871, + "category": "profiling", + "githuburl": "https://github.com/reloadware/reloadium", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "reloadware/reloadium", + "_reponame": "reloadium", + "_stars": 2159, + "_forks": 38, + "_watches": 24, "_language": "Python", - "_homepage": null, - "_description": "pyflux: Open source time series library for Python", - "_organization": "rjt1990", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2018-12-16T00:00:00.000Z", - "_created_at": "2016-02-16T00:00:00.000Z", - "_age_weeks": 356, - "_stars_per_week": 5.61, - "_pop_contributor_count": 6, + "_homepage": "https://reloadium.io", + "_description": "reloadium: Advanced Hot Reloading & Profiling for Python", + "_organization": "reloadware", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-01-15T00:00:00.000Z", + "_age_weeks": 57, + "_stars_per_week": 37.5, + "_topics": [ + "hot-reload", + "hot-reloading", + "python", + "python3", + "edit-and-continue", + "django", + "flask", + "pandas" + ], + "_last_commit_date": "2023-01-27T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "dkrystki@reloadware", + "siilats@bytelogics" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "gitter", - "pinseekerinc" + "bytelogics", + "reloadware" + ], + "_pop_contributor_orgs_raw": [ + "Reloadware", + "bytelogics" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 83, - "_pop_updated_since_days": 49, + "_pop_commit_frequency": 0.71, + "_pop_updated_issues_count": 35, + "_pop_closed_issues_count": 26, + "_pop_created_since_days": 13, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 35.0, + "_pop_comment_count": 85.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 8, - "_pop_score": 19.45, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 0, + "_pop_score": 27.25, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/reloadware/reloadium/master/README.rst", + "_readme_localurl": "reloadware~reloadium~README.rst", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 867, + "category": "util", + "githuburl": "https://github.com/dosisod/refurb", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "dosisod/refurb", + "_reponame": "refurb", + "_stars": 2138, + "_forks": 41, + "_watches": 15, + "_language": "Python", + "_homepage": "", + "_description": "refurb: A tool for refurbishing and modernizing Python codebases", + "_organization": "dosisod", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2022-07-27T00:00:00.000Z", + "_age_weeks": 30, + "_stars_per_week": 71.27, + "_topics": [ + "cli", + "mypy", + "python", + "python310", + "testing", + "gplv3", + "hacktoberfest" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 10, + "_pop_contributor_logins": [ + "EFord36", + "bbkgh@hamravesh", + "doomedraven", + "dosisod", + "jairhenrique@grupoboticario", + "jdevera@hotjar", + "michaeloliverx@resgroup", + "trag1c", + "yilei" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "grupoboticario", + "hamravesh", + "hotjar", + "resgroup" + ], + "_pop_contributor_orgs_raw": [ + "@grupoboticario ", + "@hamravesh ", + "@resgroup", + "Hotjar" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.1, + "_pop_updated_issues_count": 86, + "_pop_closed_issues_count": 77, + "_pop_created_since_days": 7, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 35, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 86.0, + "_pop_comment_count": 41.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 35.04, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/rjt1990/pyflux/master/README.md", - "_readme_localurl": "rjt1990~pyflux~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/dosisod/refurb/master/README.md", + "_readme_localurl": "dosisod~refurb~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/rjt1990/pyflux/master/requirements.txt", - "https://raw.githubusercontent.com/rjt1990/pyflux/master/setup.py" + "https://raw.githubusercontent.com/dosisod/refurb/master/pyproject.toml" ], "_requirements_localurls": [ - "rjt1990~pyflux~requirements.txt", - "rjt1990~pyflux~setup.py" + "dosisod~refurb~pyproject.toml" ] }, { @@ -29688,9 +40575,17 @@ "description": null, "_repopath": "lightly-ai/lightly", "_reponame": "lightly", - "_stars": 1976, - "_forks": 164, - "_watches": 25, + "_stars": 2135, + "_forks": 178, + "_watches": 24, + "_language": "Python", + "_homepage": "https://docs.lightly.ai/self-supervised-learning/", + "_description": "lightly: A python library for self-supervised learning on images.", + "_organization": "lightly-ai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-10-13T00:00:00.000Z", + "_age_weeks": 123, + "_stars_per_week": 17.34, "_topics": [ "deep-learning", "self-supervised-learning", @@ -29701,36 +40596,45 @@ "contrastive-learning", "active-learning" ], - "_language": "Python", - "_homepage": "", - "_description": "lightly: A python library for self-supervised learning on images.", - "_organization": "lightly-ai", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2020-10-13T00:00:00.000Z", - "_age_weeks": 113, - "_stars_per_week": 17.36, - "_pop_contributor_count": 21, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 24, + "_pop_contributor_logins": [ + "IgorSusmelj@lightly", + "MalteEbner@lightly", + "Ra1Nik", + "busycalibrating", + "guarin", + "ibro45@aimharvard-mgb", + "japrescott", + "michal-lightly", + "philippmwirth", + "shaundaley39" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "aimharvard-mgb", "lightly" ], + "_pop_contributor_orgs_raw": [ + "AIM @ Harvard-MGB", + "Lightly" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.62, - "_pop_updated_issues_count": 92, - "_pop_closed_issues_count": 78, - "_pop_created_since_days": 27, + "_pop_commit_frequency": 5.48, + "_pop_updated_issues_count": 136, + "_pop_closed_issues_count": 124, + "_pop_created_since_days": 29, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 38, - "_pop_recent_releases_estimated_tags": 33, - "_pop_recent_releases_adjusted_count": 38, - "_pop_issue_count": 92.0, - "_pop_comment_count": 133.0, + "_pop_recent_releases_count": 40, + "_pop_recent_releases_estimated_tags": 34, + "_pop_recent_releases_adjusted_count": 40, + "_pop_issue_count": 136.0, + "_pop_comment_count": 154.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 22, - "_pop_score": 44.7, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 41.57, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/lightly-ai/lightly/master/README.md", "_readme_localurl": "lightly-ai~lightly~README.md", @@ -29744,6 +40648,158 @@ "lightly-ai~lightly~setup.py" ] }, + { + "index": 503, + "category": "gis", + "githuburl": "https://github.com/google/earthengine-api", + "featured": null, + "links": null, + "description": null, + "_repopath": "google/earthengine-api", + "_reponame": "earthengine-api", + "_stars": 2131, + "_forks": 916, + "_watches": 208, + "_language": "JavaScript", + "_homepage": "", + "_description": "earthengine-api: Python and JavaScript bindings for calling the Earth Engine API.", + "_organization": "google", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2015-04-22T00:00:00.000Z", + "_age_weeks": 409, + "_stars_per_week": 5.21, + "_topics": [], + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 36, + "_pop_contributor_logins": [ + "anonymousandrew@google", + "bengalin", + "eengle", + "inazarenko", + "kpreid", + "max99x", + "mdhancher@google", + "michaelfdewitt@google", + "simonff@google", + "tylere@google" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "google" + ], + "_pop_contributor_orgs_raw": [ + "@Google", + "@google ", + "Google", + "Google, Inc." + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 95, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 32, + "_pop_recent_releases_adjusted_count": 32, + "_pop_issue_count": 5.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 33.88, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/google/earthengine-api/master/README.md", + "_readme_localurl": "google~earthengine-api~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 198, + "category": "ml", + "githuburl": "https://github.com/maif/shapash", + "featured": null, + "links": null, + "description": null, + "_repopath": "maif/shapash", + "_reponame": "shapash", + "_stars": 2119, + "_forks": 259, + "_watches": 39, + "_language": "Jupyter Notebook", + "_homepage": "https://maif.github.io/shapash/", + "_description": "shapash: \ud83d\udd05 Shapash makes Machine Learning models transparent and understandable by everyone", + "_organization": "maif", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-04-29T00:00:00.000Z", + "_age_weeks": 147, + "_stars_per_week": 14.41, + "_topics": [ + "python", + "machine-learning", + "explainability", + "explainable-ml", + "transparency", + "ethical-artificial-intelligence", + "shap", + "lime", + "interpretability" + ], + "_last_commit_date": "2023-02-06T00:00:00.000Z", + "_pop_contributor_count": 35, + "_pop_contributor_logins": [ + "FlorineGreciet", + "Francesco-Marini", + "GAP01", + "MaxGdr@helsing", + "SebastienBidault", + "ThibaudReal", + "ThomasBouche", + "guillaume-vignal@maif", + "mathisbarthere", + "yg79@maif" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "helsing", + "maif" + ], + "_pop_contributor_orgs_raw": [ + "Helsing", + "MAIF", + "Maif" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.6, + "_pop_updated_issues_count": 28, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 34, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 28.0, + "_pop_comment_count": 8.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 0, + "_pop_score": 36.36, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/maif/shapash/master/README.md", + "_readme_localurl": "maif~shapash~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/maif/shapash/master/setup.py" + ], + "_requirements_localurls": [ + "maif~shapash~setup.py" + ] + }, { "index": 813, "category": "data", @@ -29753,9 +40809,17 @@ "description": null, "_repopath": "datafold/data-diff", "_reponame": "data-diff", - "_stars": 1953, - "_forks": 88, - "_watches": 14, + "_stars": 2118, + "_forks": 101, + "_watches": 16, + "_language": "Python", + "_homepage": "https://www.datafold.com/blog/open-source-data-diff", + "_description": "data-diff: Efficiently diff data in or across relational databases", + "_organization": "datafold", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-03-07T00:00:00.000Z", + "_age_weeks": 50, + "_stars_per_week": 42.12, "_topics": [ "database", "mysql", @@ -29772,39 +40836,52 @@ "dataquality", "oracle-database", "postgres", - "sql" + "sql", + "dbt", + "python" ], - "_language": "Python", - "_homepage": "https://www.datafold.com/blog/open-source-data-diff", - "_description": "data-diff: Efficiently diff data in or across relational databases", - "_organization": "datafold", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2022-03-07T00:00:00.000Z", - "_age_weeks": 41, - "_stars_per_week": 47.63, - "_pop_contributor_count": 25, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 27, + "_pop_contributor_logins": [ + "cfernhout", + "danthelion@brooklyn-data", + "dlawin", + "erezsh", + "glebmezh@datafold", + "jardayn", + "kylemcnair", + "leoebfolsom", + "pik94@datafold", + "sirupsen@webscaleinc" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "brooklyn-data", "datafold", "webscaleinc" ], + "_pop_contributor_orgs_raw": [ + "@brooklyn-data", + "@datafold ", + "Datafold", + "Webscale Inc" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 13.75, - "_pop_updated_issues_count": 139, - "_pop_closed_issues_count": 117, - "_pop_created_since_days": 10, + "_pop_commit_frequency": 14.17, + "_pop_updated_issues_count": 104, + "_pop_closed_issues_count": 61, + "_pop_created_since_days": 12, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 13, + "_pop_recent_releases_count": 16, "_pop_recent_releases_estimated_tags": 16, - "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 139.0, - "_pop_comment_count": 220.0, + "_pop_recent_releases_adjusted_count": 16, + "_pop_issue_count": 104.0, + "_pop_comment_count": 142.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 4, - "_pop_score": 43.21, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 41.77, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/datafold/data-diff/master/README.md", "_readme_localurl": "datafold~data-diff~README.md", @@ -29819,416 +40896,423 @@ ] }, { - "index": 323, - "category": "gui", - "githuburl": "https://github.com/wxwidgets/phoenix", - "featured": null, + "index": 222, + "category": "data", + "githuburl": "https://github.com/pynamodb/pynamodb", + "featured": 1.0, "links": null, "description": null, - "_repopath": "wxwidgets/phoenix", - "_reponame": "Phoenix", - "_stars": 1911, - "_forks": 488, - "_watches": 105, + "_repopath": "pynamodb/pynamodb", + "_reponame": "PynamoDB", + "_stars": 2115, + "_forks": 414, + "_watches": 41, + "_language": "Python", + "_homepage": "http://pynamodb.readthedocs.io", + "_description": "PynamoDB: A pythonic interface to Amazon's DynamoDB", + "_organization": "pynamodb", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2014-01-20T00:00:00.000Z", + "_age_weeks": 474, + "_stars_per_week": 4.46, "_topics": [ "python", - "cross-platform", - "gui-framework", - "gui-toolkit", - "gui", - "windows", - "macosx", - "linux", - "awesome", - "wxwidgets", - "wxpython" + "dynamodb", + "aws" ], - "_language": "Python", - "_homepage": "http://wxpython.org/", - "_description": "Phoenix: wxPython's Project Phoenix. A new implementation of wxPython, better, stronger, faster than he was before.", - "_organization": "wxwidgets", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-11-10T00:00:00.000Z", - "_created_at": "2012-07-17T00:00:00.000Z", - "_age_weeks": 543, - "_stars_per_week": 3.51, - "_pop_contributor_count": 123, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 102, + "_pop_contributor_logins": [ + "anandswaminathan@lyft", + "betamoo", + "danielhochman@lyft", + "garrettheel", + "hallie@lyft", + "ikonst@lyft", + "jlafon@openeyescientificsoftware", + "jmphilli", + "jpinner-lyft", + "scode" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "self;independant" + "lyft", + "openeyescientificsoftware" + ], + "_pop_contributor_orgs_raw": [ + "@lyft", + "@lyft ", + "Lyft", + "Lyft, Inc.", + "OpenEye Scientific Software" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.96, - "_pop_updated_issues_count": 79, - "_pop_closed_issues_count": 45, - "_pop_created_since_days": 127, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 79.0, - "_pop_comment_count": 141.0, + "_pop_commit_frequency": 0.81, + "_pop_updated_issues_count": 67, + "_pop_closed_issues_count": 47, + "_pop_created_since_days": 111, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 67.0, + "_pop_comment_count": 94.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 133, - "_pop_score": 49.57, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 44.52, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/wxwidgets/phoenix/master/README.rst", - "_readme_localurl": "wxwidgets~phoenix~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pynamodb/pynamodb/master/README.rst", + "_readme_localurl": "pynamodb~pynamodb~README.rst", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/wxwidgets/phoenix/master/requirements.txt", - "https://raw.githubusercontent.com/wxwidgets/phoenix/master/setup.py" + "https://raw.githubusercontent.com/pynamodb/pynamodb/master/setup.py" ], "_requirements_localurls": [ - "wxwidgets~phoenix~requirements.txt", - "wxwidgets~phoenix~setup.py" + "pynamodb~pynamodb~setup.py" ] }, { - "index": 590, - "category": "util", - "githuburl": "https://github.com/hgrecco/pint", + "index": 749, + "category": "diffusion", + "githuburl": "https://github.com/nateraw/stable-diffusion-videos", "featured": null, "links": null, "description": null, - "_repopath": "hgrecco/pint", - "_reponame": "pint", - "_stars": 1895, - "_forks": 407, - "_watches": 40, - "_topics": [ - "python", - "science", - "units" - ], + "_repopath": "nateraw/stable-diffusion-videos", + "_reponame": "stable-diffusion-videos", + "_stars": 2111, + "_forks": 205, + "_watches": 26, "_language": "Python", - "_homepage": "http://pint.readthedocs.org/", - "_description": "pint: Operate and manipulate physical quantities in Python", - "_organization": "hgrecco", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", - "_created_at": "2012-07-13T00:00:00.000Z", - "_age_weeks": 544, - "_stars_per_week": 3.48, - "_pop_contributor_count": 181, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.02, - "_pop_updated_issues_count": 135, - "_pop_closed_issues_count": 73, - "_pop_created_since_days": 127, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 135.0, - "_pop_comment_count": 335.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 462, - "_pop_score": 52.75, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/hgrecco/pint/master/README.rst", - "_readme_localurl": "hgrecco~pint~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/hgrecco/pint/master/setup.py", - "https://raw.githubusercontent.com/hgrecco/pint/master/pyproject.toml" - ], - "_requirements_localurls": [ - "hgrecco~pint~setup.py", - "hgrecco~pint~pyproject.toml" - ] - }, - { - "index": 233, - "category": "crypto", - "githuburl": "https://github.com/ethereum/py-evm", - "featured": null, - "links": null, - "description": null, - "_repopath": "ethereum/py-evm", - "_reponame": "py-evm", - "_stars": 1886, - "_forks": 576, - "_watches": 98, + "_homepage": "", + "_description": "stable-diffusion-videos: Create \ud83d\udd25 videos with Stable Diffusion by exploring the latent space and morphing between text prompts", + "_organization": "nateraw", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-09-06T00:00:00.000Z", + "_age_weeks": 24, + "_stars_per_week": 87.44, "_topics": [ - "evm", - "ethereum", - "python", - "ethereum-virtual-machine" + "ai-art", + "huggingface", + "huggingface-diffusers", + "machine-learning", + "stable-diffusion" ], - "_language": "Python", - "_homepage": "https://py-evm.readthedocs.io/en/latest/", - "_description": "py-evm: A Python implementation of the Ethereum Virtual Machine", - "_organization": "ethereum", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2016-12-27T00:00:00.000Z", - "_age_weeks": 311, - "_stars_per_week": 6.05, - "_pop_contributor_count": 80, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "ethereumfoundation" + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 14, + "_pop_contributor_logins": [ + "0x1355", + "Atomic-Germ@exitgardenrecords", + "Niravprajapati1@student", + "charlielito", + "codefaux", + "danielpatrickhug@earth", + "nateraw@huggingface", + "philgzl", + "seriousran@ncsoftaivisionlabgenerationteam", + "thehappydinoa@censys" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "censys", + "earth", + "exitgardenrecords", + "huggingface", + "ncsoftaivisionlabgenerationteam", + "student" + ], + "_pop_contributor_orgs_raw": [ + "@NCSoft AI Vision Lab Generation Team", + "@censys ", + "@huggingface", + "Earth", + "Exit Garden Records", + "Student " ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.71, - "_pop_updated_issues_count": 13, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 73, + "_pop_commit_frequency": 3.0, + "_pop_updated_issues_count": 46, + "_pop_closed_issues_count": 30, + "_pop_created_since_days": 6, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 17, + "_pop_recent_releases_count": 17, + "_pop_recent_releases_estimated_tags": 34, "_pop_recent_releases_adjusted_count": 17, - "_pop_issue_count": 13.0, - "_pop_comment_count": 4.0, + "_pop_issue_count": 46.0, + "_pop_comment_count": 139.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.3, - "_pop_dependents_count": 107, - "_pop_score": 44.85, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 0, + "_pop_score": 40.23, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/ethereum/py-evm/master/README.md", - "_readme_localurl": "ethereum~py-evm~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/README.md", + "_readme_localurl": "nateraw~stable-diffusion-videos~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/ethereum/py-evm/master/setup.py", - "https://raw.githubusercontent.com/ethereum/py-evm/master/pyproject.toml" + "https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/requirements.txt", + "https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/setup.py" ], "_requirements_localurls": [ - "ethereum~py-evm~setup.py", - "ethereum~py-evm~pyproject.toml" + "nateraw~stable-diffusion-videos~requirements.txt", + "nateraw~stable-diffusion-videos~setup.py" ] }, { - "index": 353, - "category": "ml-interpretability", - "githuburl": "https://github.com/seldonio/alibi", + "index": 411, + "category": "util", + "githuburl": "https://github.com/yaml/pyyaml", "featured": null, "links": null, "description": null, - "_repopath": "seldonio/alibi", - "_reponame": "alibi", - "_stars": 1880, - "_forks": 212, - "_watches": 43, + "_repopath": "yaml/pyyaml", + "_reponame": "pyyaml", + "_stars": 2089, + "_forks": 435, + "_watches": 49, + "_language": "Python", + "_homepage": "", + "_description": "pyyaml: Canonical source repository for PyYAML", + "_organization": "yaml", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2011-11-03T00:00:00.000Z", + "_age_weeks": 589, + "_stars_per_week": 3.54, "_topics": [ - "machine-learning", - "explanations", - "interpretability", - "counterfactual", - "xai" + "python", + "yaml" ], - "_language": "Python", - "_homepage": "https://docs.seldon.io/projects/alibi/en/stable/", - "_description": "alibi: Algorithms for explaining machine learning models", - "_organization": "seldonio", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2019-02-26T00:00:00.000Z", - "_age_weeks": 198, - "_stars_per_week": 9.45, - "_pop_contributor_count": 18, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-09-13T00:00:00.000Z", + "_pop_contributor_count": 40, + "_pop_contributor_logins": [ + "Thom1729", + "alex", + "cclauss@christianclauss", + "dstufft@datadog", + "ingydotnet@newfolddigital/bluehost", + "jdufresne@pioneervalleybooks", + "nitzmahone@ansible", + "perlpunk@suse", + "peterkmurphy", + "xitology" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "datascienceseldonio" + "ansible", + "christianclauss", + "datadog", + "newfolddigital/bluehost", + "pioneervalleybooks", + "suse" + ], + "_pop_contributor_orgs_raw": [ + "@DataDog", + "@SUSE", + "@ansible", + "Christian Clauss", + "Newfold Digital / Bluehost", + "Pioneer Valley Books" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.52, - "_pop_updated_issues_count": 84, - "_pop_closed_issues_count": 61, - "_pop_created_since_days": 46, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 84.0, - "_pop_comment_count": 108.0, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 43, + "_pop_closed_issues_count": 20, + "_pop_created_since_days": 138, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 43.0, + "_pop_comment_count": 55.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 12, - "_pop_score": 40.8, + "_pop_dependents_count": 0, + "_pop_score": 38.36, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/seldonio/alibi/master/README.md", - "_readme_localurl": "seldonio~alibi~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/yaml/pyyaml/master/README.md", + "_readme_localurl": "yaml~pyyaml~README.md", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/seldonio/alibi/master/setup.py" + "https://raw.githubusercontent.com/yaml/pyyaml/master/setup.py", + "https://raw.githubusercontent.com/yaml/pyyaml/master/pyproject.toml" ], "_requirements_localurls": [ - "seldonio~alibi~setup.py" + "yaml~pyyaml~setup.py", + "yaml~pyyaml~pyproject.toml" ] }, { - "index": 441, - "category": "gis", - "githuburl": "https://github.com/rasterio/rasterio", - "featured": 1.0, + "index": 860, + "category": "jupyter", + "githuburl": "https://github.com/jupyter/nbviewer", + "featured": null, "links": null, "description": null, - "_repopath": "rasterio/rasterio", - "_reponame": "rasterio", - "_stars": 1858, - "_forks": 490, - "_watches": 152, + "_repopath": "jupyter/nbviewer", + "_reponame": "nbviewer", + "_stars": 2059, + "_forks": 537, + "_watches": 93, + "_language": "Python", + "_homepage": "https://nbviewer.jupyter.org", + "_description": "nbviewer: nbconvert as a web service: Render Jupyter Notebooks as static web pages", + "_organization": "jupyter", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-08-05T00:00:00.000Z", + "_age_weeks": 550, + "_stars_per_week": 3.74, "_topics": [ - "python", - "gis", - "raster", - "gdal", - "cli", - "cython", - "mapbox-satellite-oss" + "jupyter", + "jupyter-notebook", + "nbconvert" ], - "_language": "Python", - "_homepage": "https://rasterio.readthedocs.io/", - "_description": "Rasterio reads and writes geospatial raster datasets", - "_organization": "rasterio", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2013-11-04T00:00:00.000Z", - "_age_weeks": 476, - "_stars_per_week": 3.9, - "_pop_contributor_count": 140, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-01-27T00:00:00.000Z", + "_pop_contributor_count": 95, + "_pop_contributor_logins": [ + "Carreau@quansight-labs", + "bollwyvl", + "ellisonbg@amazonwebservices", + "krinsman", + "minrk@simularesearchlaboratory", + "mrterry@nextdoor", + "parente@wearethorn", + "pelson", + "pre-commit-ci[bot]", + "rgbkrk@noteable-io" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "astutespruce", - "corteva", - "planetlabs" + "amazonwebservices", + "nextdoor", + "noteable-io", + "quansight-labs", + "simularesearchlaboratory", + "wearethorn" + ], + "_pop_contributor_orgs_raw": [ + "@Noteable-io", + "@Quansight-Labs", + "@wearethorn ", + "Amazon Web Services", + "Nextdoor", + "Simula Research Laboratory" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.12, - "_pop_updated_issues_count": 228, - "_pop_closed_issues_count": 122, - "_pop_created_since_days": 111, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 8, - "_pop_recent_releases_estimated_tags": 18, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 228.0, - "_pop_comment_count": 254.0, + "_pop_commit_frequency": 1.25, + "_pop_updated_issues_count": 18, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 128, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 18.0, + "_pop_comment_count": 20.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 102, - "_pop_score": 56.91, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/rasterio/rasterio/master/README.rst", - "_readme_localurl": "rasterio~rasterio~README.rst", + "_pop_dependents_count": 0, + "_pop_score": 40.44, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/jupyter/nbviewer/master/README.md", + "_readme_localurl": "jupyter~nbviewer~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/rasterio/rasterio/master/requirements.txt", - "https://raw.githubusercontent.com/rasterio/rasterio/master/setup.py", - "https://raw.githubusercontent.com/rasterio/rasterio/master/pyproject.toml" + "https://raw.githubusercontent.com/jupyter/nbviewer/master/requirements.txt", + "https://raw.githubusercontent.com/jupyter/nbviewer/master/setup.py" ], "_requirements_localurls": [ - "rasterio~rasterio~requirements.txt", - "rasterio~rasterio~setup.py", - "rasterio~rasterio~pyproject.toml" + "jupyter~nbviewer~requirements.txt", + "jupyter~nbviewer~setup.py" ] }, { - "index": 755, - "category": "ml", - "githuburl": "https://github.com/marqo-ai/marqo", + "index": 881, + "category": "time-series", + "githuburl": "https://github.com/rjt1990/pyflux", "featured": null, "links": null, "description": null, - "_repopath": "marqo-ai/marqo", - "_reponame": "marqo", - "_stars": 1852, - "_forks": 69, - "_watches": 23, + "_repopath": "rjt1990/pyflux", + "_reponame": "pyflux", + "_stars": 2010, + "_forks": 235, + "_watches": 70, + "_language": "Python", + "_homepage": null, + "_description": "pyflux: Open source time series library for Python", + "_organization": "rjt1990", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2016-02-16T00:00:00.000Z", + "_age_weeks": 366, + "_stars_per_week": 5.49, "_topics": [ - "deep-learning", - "search", - "information-retrieval", - "machinelearning", - "vector-search", - "tensor-search", - "clip", - "multi-modal", - "search-engine", - "timm", - "transformers", - "vision-language", - "machine-learning", - "semantic-search", - "visual-search", - "natural-language-processing", - "hnsw", - "knn", - "hacktoberfest", - "hacktoberfest-accepted" + "statistics", + "time-series" ], - "_language": "Python", - "_homepage": "https://www.marqo.ai/", - "_description": "marqo: Tensor search for humans.", - "_organization": "marqo-ai", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2022-08-01T00:00:00.000Z", - "_age_weeks": 20, - "_stars_per_week": 92.6, - "_pop_contributor_count": 20, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2018-12-16T00:00:00.000Z", + "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "RJT1990", + "TerryJey", + "ThomasHoppe", + "gitter-badger@gitter", + "juanpabloaj", + "tmak@pinseekerinc" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "marqo-ai" + "gitter", + "pinseekerinc" + ], + "_pop_contributor_orgs_raw": [ + "Gitter", + "PinSeeker Inc" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 8.88, - "_pop_updated_issues_count": 196, - "_pop_closed_issues_count": 148, - "_pop_created_since_days": 5, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 15, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 85, + "_pop_updated_since_days": 51, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 195.0, - "_pop_comment_count": 147.0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 9, - "_pop_score": 37.31, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 15.47, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/marqo-ai/marqo/master/README.md", - "_readme_localurl": "marqo-ai~marqo~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/rjt1990/pyflux/master/README.md", + "_readme_localurl": "rjt1990~pyflux~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/marqo-ai/marqo/master/requirements.txt", - "https://raw.githubusercontent.com/marqo-ai/marqo/master/setup.py", - "https://raw.githubusercontent.com/marqo-ai/marqo/master/pyproject.toml" + "https://raw.githubusercontent.com/rjt1990/pyflux/master/requirements.txt", + "https://raw.githubusercontent.com/rjt1990/pyflux/master/setup.py" ], "_requirements_localurls": [ - "marqo-ai~marqo~requirements.txt", - "marqo-ai~marqo~setup.py", - "marqo-ai~marqo~pyproject.toml" + "rjt1990~pyflux~requirements.txt", + "rjt1990~pyflux~setup.py" ] }, { @@ -30240,9 +41324,17 @@ "description": null, "_repopath": "pandera-dev/pandera", "_reponame": "pandera", - "_stars": 1851, - "_forks": 156, - "_watches": 12, + "_stars": 1978, + "_forks": 162, + "_watches": 13, + "_language": "Python", + "_homepage": "https://www.union.ai/pandera", + "_description": "pandera: A light-weight, flexible, and expressive statistical data testing library", + "_organization": "pandera-dev", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-11-01T00:00:00.000Z", + "_age_weeks": 224, + "_stars_per_week": 8.8, "_topics": [ "pandas", "validation", @@ -30263,39 +41355,55 @@ "pandas-validator", "data-processing" ], - "_language": "Python", - "_homepage": "https://www.union.ai/pandera", - "_description": "pandera: A light-weight, flexible, and expressive statistical data testing library", - "_organization": "pandera-dev", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2018-11-01T00:00:00.000Z", - "_age_weeks": 215, - "_stars_per_week": 8.59, - "_pop_contributor_count": 77, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 79, + "_pop_contributor_logins": [ + "NickCrews", + "a-recknagel@auxmoney", + "cosmicBboy@unionai", + "cristianmatache@imperialcollegelondon", + "ferhah", + "gordonhart", + "mastersplinter@bcggamma", + "ralbertazzi@bendingspoons", + "smackesey@elementl", + "the-matt-morris@rsg" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "auxmoney", "bcggamma", + "bendingspoons", + "elementl", "imperialcollegelondon", + "rsg", "unionai" ], + "_pop_contributor_orgs_raw": [ + "@unionai", + "BCG Gamma", + "Bending Spoons", + "Elementl", + "Imperial College London", + "RSG, Inc.", + "auxmoney" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.23, - "_pop_updated_issues_count": 134, - "_pop_closed_issues_count": 83, - "_pop_created_since_days": 50, + "_pop_commit_frequency": 2.21, + "_pop_updated_issues_count": 66, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 52, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 17, + "_pop_recent_releases_count": 15, "_pop_recent_releases_estimated_tags": 14, - "_pop_recent_releases_adjusted_count": 17, - "_pop_issue_count": 134.0, - "_pop_comment_count": 355.0, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 66.0, + "_pop_comment_count": 150.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.6, - "_pop_dependents_count": 17, - "_pop_score": 53.8, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 49.09, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pandera-dev/pandera/master/README.md", "_readme_localurl": "pandera-dev~pandera~README.md", @@ -30313,1704 +41421,1905 @@ ] }, { - "index": 540, - "category": "nlp", - "githuburl": "https://github.com/salesforce/codegen", + "index": 506, + "category": "ml-ops", + "githuburl": "https://github.com/adap/flower", "featured": null, "links": null, "description": null, - "_repopath": "salesforce/codegen", - "_reponame": "CodeGen", - "_stars": 1850, - "_forks": 137, - "_watches": 35, + "_repopath": "adap/flower", + "_reponame": "flower", + "_stars": 1961, + "_forks": 439, + "_watches": 22, + "_language": "Python", + "_homepage": "https://flower.dev", + "_description": "Flower: A Friendly Federated Learning Framework", + "_organization": "adap", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-02-17T00:00:00.000Z", + "_age_weeks": 157, + "_stars_per_week": 12.47, "_topics": [ - "programsynthesis", - "generativemodel", - "codex", - "languagemodel", - "llm", - "tpu-acceleration" + "flower", + "federated-learning", + "federated-learning-framework", + "pytorch-federated-learning", + "tensorflow-federated-learning", + "keras-federated-learning", + "federated-analytics", + "fleet-learning", + "fleet-intelligence", + "deep-learning", + "machine-learning", + "pytorch", + "scikit-learn", + "tensorflow" ], - "_language": "Python", - "_homepage": "", - "_description": "CodeGen is an open-source model for program synthesis. Trained on TPU-v4. Competitive with OpenAI Codex.", - "_organization": "salesforce", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", - "_created_at": "2022-03-28T00:00:00.000Z", - "_age_weeks": 38, - "_stars_per_week": 48.68, - "_pop_contributor_count": 7, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 54, + "_pop_contributor_logins": [ + "CanTuerk", + "adam-narozniak@epfl", + "akhilmathurs", + "charlesbvll@epfl", + "danieljanes@adapgmbh", + "jafermarq", + "mariaboerner1987", + "pedropgusmao", + "sisco0", + "tanertopal@adapgmbh" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "garnercorp" + "adapgmbh", + "epfl" + ], + "_pop_contributor_orgs_raw": [ + "Adap GmbH", + "EPFL" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.83, - "_pop_updated_issues_count": 21, - "_pop_closed_issues_count": 12, - "_pop_created_since_days": 9, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 21.0, - "_pop_comment_count": 47.0, + "_pop_commit_frequency": 6.85, + "_pop_updated_issues_count": 199, + "_pop_closed_issues_count": 166, + "_pop_created_since_days": 37, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 199.0, + "_pop_comment_count": 65.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.2, - "_pop_dependents_count": 2, - "_pop_score": 24.93, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 0, + "_pop_score": 40.67, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/salesforce/codegen/master/README.md", - "_readme_localurl": "salesforce~codegen~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/adap/flower/master/README.md", + "_readme_localurl": "adap~flower~README.md", "_requirements_filenames": [ - "requirements.txt" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/salesforce/codegen/master/requirements.txt" + "https://raw.githubusercontent.com/adap/flower/master/pyproject.toml" ], "_requirements_localurls": [ - "salesforce~codegen~requirements.txt" + "adap~flower~pyproject.toml" ] }, { - "index": 713, - "category": "gis", - "githuburl": "https://github.com/mcordts/cityscapesscripts", + "index": 323, + "category": "gui", + "githuburl": "https://github.com/wxwidgets/phoenix", "featured": null, "links": null, "description": null, - "_repopath": "mcordts/cityscapesscripts", - "_reponame": "cityscapesScripts", - "_stars": 1842, - "_forks": 565, - "_watches": 46, - "_topics": [], + "_repopath": "wxwidgets/phoenix", + "_reponame": "Phoenix", + "_stars": 1946, + "_forks": 494, + "_watches": 104, "_language": "Python", - "_homepage": null, - "_description": "cityscapesScripts: README and scripts for the Cityscapes Dataset", - "_organization": "mcordts", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-10-22T00:00:00.000Z", - "_created_at": "2016-02-20T00:00:00.000Z", - "_age_weeks": 356, - "_stars_per_week": 5.17, - "_pop_contributor_count": 17, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": "http://wxpython.org/", + "_description": "Phoenix: wxPython's Project Phoenix. A new implementation of wxPython, better, stronger, faster than he was before.", + "_organization": "wxwidgets", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-07-17T00:00:00.000Z", + "_age_weeks": 553, + "_stars_per_week": 3.52, + "_topics": [ + "python", + "cross-platform", + "gui-framework", + "gui-toolkit", + "gui", + "windows", + "macosx", + "linux", + "awesome", + "wxwidgets", + "wxpython" + ], + "_last_commit_date": "2023-02-13T00:00:00.000Z", + "_pop_contributor_count": 123, + "_pop_contributor_logins": [ + "GadgetSteve", + "Metallicow@self;independant", + "RobinD42", + "cbeytas", + "dougthor42@prounlimited(contractorforgooglequantumai)", + "infinity77", + "kollivier@kosoftworks", + "mesalu", + "swt2c", + "wernerfb" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "daimlerag", - "facebookairesearch" + "kosoftworks", + "prounlimited(contractorforgooglequantumai)", + "self;independant" + ], + "_pop_contributor_orgs_raw": [ + "KOSoftworks LLC", + "PRO Unlimited (contractor for Google Quantum AI)", + "self; Independant" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.02, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 83, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 7.0, - "_pop_comment_count": 4.0, + "_pop_commit_frequency": 3.35, + "_pop_updated_issues_count": 76, + "_pop_closed_issues_count": 38, + "_pop_created_since_days": 129, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 76.0, + "_pop_comment_count": 143.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 8, - "_pop_score": 29.71, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/mcordts/cityscapesscripts/master/README.md", - "_readme_localurl": "mcordts~cityscapesscripts~README.md", + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 45.67, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/wxwidgets/phoenix/master/README.rst", + "_readme_localurl": "wxwidgets~phoenix~README.rst", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/mcordts/cityscapesscripts/master/setup.py" + "https://raw.githubusercontent.com/wxwidgets/phoenix/master/requirements.txt", + "https://raw.githubusercontent.com/wxwidgets/phoenix/master/setup.py" ], "_requirements_localurls": [ - "mcordts~cityscapesscripts~setup.py" + "wxwidgets~phoenix~requirements.txt", + "wxwidgets~phoenix~setup.py" ] }, { - "index": 871, - "category": "profiling", - "githuburl": "https://github.com/reloadware/reloadium", - "featured": 1.0, + "index": 590, + "category": "util", + "githuburl": "https://github.com/hgrecco/pint", + "featured": null, "links": null, "description": null, - "_repopath": "reloadware/reloadium", - "_reponame": "reloadium", - "_stars": 1836, - "_forks": 27, - "_watches": 24, + "_repopath": "hgrecco/pint", + "_reponame": "pint", + "_stars": 1944, + "_forks": 415, + "_watches": 40, + "_language": "Python", + "_homepage": "http://pint.readthedocs.org/", + "_description": "pint: Operate and manipulate physical quantities in Python", + "_organization": "hgrecco", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2012-07-13T00:00:00.000Z", + "_age_weeks": 553, + "_stars_per_week": 3.51, "_topics": [ - "hot-reload", - "hot-reloading", "python", - "python3", - "edit-and-continue", - "django", - "flask", - "pandas" + "science", + "units" ], - "_language": "Python", - "_homepage": "https://reloadium.io", - "_description": "reloadium: Advanced Hot Reloading & Profiling for Python", - "_organization": "reloadware", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", - "_created_at": "2022-01-15T00:00:00.000Z", - "_age_weeks": 48, - "_stars_per_week": 38.02, - "_pop_contributor_count": 2, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "bytelogics", - "reloadware" + "_last_commit_date": "2023-02-13T00:00:00.000Z", + "_pop_contributor_count": 182, + "_pop_contributor_logins": [ + "5igno@imec", + "andrewgsavage", + "bors[bot]", + "clarkgwillison", + "crusaderky", + "dalito@leibniz-institutf\u00fcrkatalysee.v.(likat)", + "hgrecco", + "jthielen@coloradostateuniversity", + "jules-ch", + "keewis" ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.71, - "_pop_updated_issues_count": 38, - "_pop_closed_issues_count": 31, - "_pop_created_since_days": 11, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 38.0, - "_pop_comment_count": 103.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.7, - "_pop_dependents_count": 0, - "_pop_score": 27.68, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/reloadware/reloadium/master/README.rst", - "_readme_localurl": "reloadware~reloadium~README.rst", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, - { - "index": 856, - "category": "profiling", - "githuburl": "https://github.com/jiffyclub/snakeviz", - "featured": null, - "links": null, - "description": null, - "_repopath": "jiffyclub/snakeviz", - "_reponame": "snakeviz", - "_stars": 1827, - "_forks": 128, - "_watches": 22, - "_topics": [], - "_language": "Python", - "_homepage": "https://jiffyclub.github.io/snakeviz/", - "_description": "snakeviz: An in-browser Python profile viewer", - "_organization": "jiffyclub", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2021-10-25T00:00:00.000Z", - "_created_at": "2012-06-26T00:00:00.000Z", - "_age_weeks": 546, - "_stars_per_week": 3.34, - "_pop_contributor_count": 24, "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "nvidia", - "populus-ai", - "universityofwisconsin-madison" + "coloradostateuniversity", + "imec", + "leibniz-institutf\u00fcrkatalysee.v.(likat)" + ], + "_pop_contributor_orgs_raw": [ + "Colorado State University", + "Leibniz-Institut f\u00fcr Katalyse e.V. (LIKAT)", + "imec" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 10, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 128, - "_pop_updated_since_days": 14, + "_pop_commit_frequency": 2.98, + "_pop_updated_issues_count": 80, + "_pop_closed_issues_count": 35, + "_pop_created_since_days": 129, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 10.0, - "_pop_comment_count": 12.0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 80.0, + "_pop_comment_count": 115.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 24, - "_pop_score": 34.66, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 47.41, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/jiffyclub/snakeviz/master/README.rst", - "_readme_localurl": "jiffyclub~snakeviz~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/hgrecco/pint/master/README.rst", + "_readme_localurl": "hgrecco~pint~README.rst", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/jiffyclub/snakeviz/master/setup.py" + "https://raw.githubusercontent.com/hgrecco/pint/master/setup.py", + "https://raw.githubusercontent.com/hgrecco/pint/master/pyproject.toml" ], "_requirements_localurls": [ - "jiffyclub~snakeviz~setup.py" + "hgrecco~pint~setup.py", + "hgrecco~pint~pyproject.toml" ] }, { - "index": 823, - "category": "data", - "githuburl": "https://github.com/uqfoundation/dill", - "featured": 1.0, + "index": 353, + "category": "ml-interpretability", + "githuburl": "https://github.com/seldonio/alibi", + "featured": null, "links": null, "description": null, - "_repopath": "uqfoundation/dill", - "_reponame": "dill", - "_stars": 1822, - "_forks": 151, - "_watches": 22, - "_topics": [], + "_repopath": "seldonio/alibi", + "_reponame": "alibi", + "_stars": 1935, + "_forks": 220, + "_watches": 42, "_language": "Python", - "_homepage": "http://dill.rtfd.io", - "_description": "dill: serialize all of python", - "_organization": "uqfoundation", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2013-06-28T00:00:00.000Z", - "_age_weeks": 494, - "_stars_per_week": 3.69, - "_pop_contributor_count": 39, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://docs.seldon.io/projects/alibi/en/stable/", + "_description": "alibi: Algorithms for explaining machine learning models", + "_organization": "seldonio", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-02-26T00:00:00.000Z", + "_age_weeks": 208, + "_stars_per_week": 9.3, + "_topics": [ + "machine-learning", + "explanations", + "interpretability", + "counterfactual", + "xai" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 18, + "_pop_contributor_logins": [ + "MarcoGorelli@quansight", + "RobertSamoilescu", + "adriangonz@seldonio", + "alexcoca@universityofcambridge", + "arnaudvl", + "ascillitoe@datascienceseldonio", + "dependabot[bot]", + "gipster", + "jklaise", + "mauicv" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "amphybio-universityofs\u00e3opaulo,medicalschool", - "uqfoundation" + "datascienceseldonio", + "quansight", + "seldonio", + "universityofcambridge" + ], + "_pop_contributor_orgs_raw": [ + "@SeldonIO ", + "Data Science @SeldonIO", + "Quansight", + "University of Cambridge" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.94, - "_pop_updated_issues_count": 40, - "_pop_closed_issues_count": 19, - "_pop_created_since_days": 115, + "_pop_commit_frequency": 3.69, + "_pop_updated_issues_count": 64, + "_pop_closed_issues_count": 46, + "_pop_created_since_days": 49, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 40.0, - "_pop_comment_count": 57.0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 64.0, + "_pop_comment_count": 108.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 514, - "_pop_score": 51.1, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 40.89, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/uqfoundation/dill/master/README.md", - "_readme_localurl": "uqfoundation~dill~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/seldonio/alibi/master/README.md", + "_readme_localurl": "seldonio~alibi~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/uqfoundation/dill/master/setup.py", - "https://raw.githubusercontent.com/uqfoundation/dill/master/pyproject.toml" + "https://raw.githubusercontent.com/seldonio/alibi/master/setup.py" ], "_requirements_localurls": [ - "uqfoundation~dill~setup.py", - "uqfoundation~dill~pyproject.toml" + "seldonio~alibi~setup.py" ] }, { - "index": 46, - "category": "jupyter", - "githuburl": "https://github.com/maartenbreddels/ipyvolume", + "index": 233, + "category": "crypto", + "githuburl": "https://github.com/ethereum/py-evm", "featured": null, "links": null, "description": null, - "_repopath": "maartenbreddels/ipyvolume", - "_reponame": "ipyvolume", - "_stars": 1811, - "_forks": 234, - "_watches": 53, + "_repopath": "ethereum/py-evm", + "_reponame": "py-evm", + "_stars": 1927, + "_forks": 578, + "_watches": 98, + "_language": "Python", + "_homepage": "https://py-evm.readthedocs.io/en/latest/", + "_description": "py-evm: A Python implementation of the Ethereum Virtual Machine", + "_organization": "ethereum", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-12-27T00:00:00.000Z", + "_age_weeks": 321, + "_stars_per_week": 6.0, "_topics": [ - "ipython-widget", - "jupyter", - "jupyter-notebook", + "evm", + "ethereum", "python", - "visualisation", - "volume-rendering", - "virtual-reality", - "plotting", - "dataviz", - "scientific-visualization", - "webgl", - "threejs", - "rendering-3d-volumes", - "quiver" + "ethereum-virtual-machine" ], - "_language": "TypeScript", - "_homepage": "", - "_description": "ipyvolume: 3d plotting for Python in the Jupyter notebook based on IPython widgets using WebGL", - "_organization": "maartenbreddels", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-07-26T00:00:00.000Z", - "_created_at": "2016-12-21T00:00:00.000Z", - "_age_weeks": 312, - "_stars_per_week": 5.79, - "_pop_contributor_count": 41, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_pop_contributor_count": 80, + "_pop_contributor_logins": [ + "NIC619", + "carver@ethereumfoundation", + "cburgdorf", + "fselmo@ethereum", + "gsalgado", + "hwwhww", + "jannikluhn", + "mhchia", + "pipermerriam@ethereumfoundation", + "veox" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "imperialcollegelondon", - "maartenbreddels", - "monashuniversity", - "surf" + "ethereum", + "ethereumfoundation" + ], + "_pop_contributor_orgs_raw": [ + "@ethereum", + "Ethereum Foundation" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.04, - "_pop_updated_issues_count": 8, + "_pop_commit_frequency": 0.58, + "_pop_updated_issues_count": 4, "_pop_closed_issues_count": 1, - "_pop_created_since_days": 73, - "_pop_updated_since_days": 5, + "_pop_created_since_days": 75, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 8.0, - "_pop_comment_count": 8.0, + "_pop_recent_releases_estimated_tags": 17, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 4.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 97, - "_pop_score": 41.53, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 32.99, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/maartenbreddels/ipyvolume/master/README.md", - "_readme_localurl": "maartenbreddels~ipyvolume~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/ethereum/py-evm/master/README.md", + "_readme_localurl": "ethereum~py-evm~README.md", "_requirements_filenames": [ "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/maartenbreddels/ipyvolume/master/setup.py", - "https://raw.githubusercontent.com/maartenbreddels/ipyvolume/master/pyproject.toml" + "https://raw.githubusercontent.com/ethereum/py-evm/master/setup.py", + "https://raw.githubusercontent.com/ethereum/py-evm/master/pyproject.toml" ], "_requirements_localurls": [ - "maartenbreddels~ipyvolume~setup.py", - "maartenbreddels~ipyvolume~pyproject.toml" + "ethereum~py-evm~setup.py", + "ethereum~py-evm~pyproject.toml" ] }, { - "index": 115, - "category": "perf", - "githuburl": "https://github.com/h5py/h5py", - "featured": null, + "index": 441, + "category": "gis", + "githuburl": "https://github.com/rasterio/rasterio", + "featured": 1.0, "links": null, "description": null, - "_repopath": "h5py/h5py", - "_reponame": "h5py", - "_stars": 1806, - "_forks": 478, - "_watches": 55, - "_topics": [], + "_repopath": "rasterio/rasterio", + "_reponame": "rasterio", + "_stars": 1882, + "_forks": 507, + "_watches": 152, "_language": "Python", - "_homepage": "http://www.h5py.org", - "_description": "h5py: HDF5 for Python -- The h5py package is a Pythonic interface to the HDF5 binary data format.", - "_organization": "h5py", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2012-09-21T00:00:00.000Z", - "_age_weeks": 534, - "_stars_per_week": 3.38, - "_pop_contributor_count": 190, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://rasterio.readthedocs.io/", + "_description": "Rasterio reads and writes geospatial raster datasets", + "_organization": "rasterio", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2013-11-04T00:00:00.000Z", + "_age_weeks": 485, + "_stars_per_week": 3.88, + "_topics": [ + "python", + "gis", + "raster", + "gdal", + "cli", + "cython", + "mapbox-satellite-oss" + ], + "_last_commit_date": "2023-02-13T00:00:00.000Z", + "_pop_contributor_count": 142, + "_pop_contributor_logins": [ + "ColinTalbert", + "brendan-ward@astutespruce", + "geowurster", + "groutr@lynkertechnologies", + "j08lue@developmentseed", + "jdmcbr", + "perrygeo", + "sgillies@planetlabs", + "snowman2@corteva", + "vincentsarago@developmentseed" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "brookhavennationallab", - "departmentofphysicsandastronomy,macquarieuniversity", - "enthought", - "esrf" + "astutespruce", + "corteva", + "developmentseed", + "lynkertechnologies", + "planetlabs" + ], + "_pop_contributor_orgs_raw": [ + "@corteva ", + "@developmentseed ", + "@planetlabs", + "Astute Spruce, LLC", + "Development Seed", + "Lynker Technologies" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.48, - "_pop_updated_issues_count": 70, - "_pop_closed_issues_count": 41, - "_pop_created_since_days": 125, + "_pop_commit_frequency": 3.77, + "_pop_updated_issues_count": 184, + "_pop_closed_issues_count": 116, + "_pop_created_since_days": 113, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 70.0, - "_pop_comment_count": 208.0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 18, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 184.0, + "_pop_comment_count": 323.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.0, - "_pop_dependents_count": 791, - "_pop_score": 61.34, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 52.48, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/h5py/h5py/master/README.rst", - "_readme_localurl": "h5py~h5py~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/rasterio/rasterio/master/README.rst", + "_readme_localurl": "rasterio~rasterio~README.rst", "_requirements_filenames": [ + "requirements.txt", "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/h5py/h5py/master/setup.py", - "https://raw.githubusercontent.com/h5py/h5py/master/pyproject.toml" + "https://raw.githubusercontent.com/rasterio/rasterio/master/requirements.txt", + "https://raw.githubusercontent.com/rasterio/rasterio/master/setup.py", + "https://raw.githubusercontent.com/rasterio/rasterio/master/pyproject.toml" ], "_requirements_localurls": [ - "h5py~h5py~setup.py", - "h5py~h5py~pyproject.toml" + "rasterio~rasterio~requirements.txt", + "rasterio~rasterio~setup.py", + "rasterio~rasterio~pyproject.toml" ] }, { - "index": 506, - "category": "ml-ops", - "githuburl": "https://github.com/adap/flower", + "index": 829, + "category": "study", + "githuburl": "https://github.com/huggingface/diffusion-models-class", "featured": null, "links": null, "description": null, - "_repopath": "adap/flower", - "_reponame": "flower", - "_stars": 1800, - "_forks": 390, - "_watches": 24, - "_topics": [ - "flower", - "federated-learning", - "federated-learning-framework", - "pytorch-federated-learning", - "tensorflow-federated-learning", - "keras-federated-learning", - "federated-analytics", - "fleet-learning", - "fleet-intelligence" + "_repopath": "huggingface/diffusion-models-class", + "_reponame": "diffusion-models-class", + "_stars": 1877, + "_forks": 167, + "_watches": 72, + "_language": "Jupyter Notebook", + "_homepage": null, + "_description": "diffusion-models-class: Materials for the Hugging Face Diffusion Models Course", + "_organization": "huggingface", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-10-13T00:00:00.000Z", + "_age_weeks": 18, + "_stars_per_week": 99.54, + "_topics": [], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 17, + "_pop_contributor_logins": [ + "RELNO@cityscopemitmedialab", + "Yorko@relx", + "darcula1993", + "dbtreasure", + "dhakalnirajan@drcfsorg", + "eltociear@bandism", + "jmelsbach@universityofcologne", + "johnowhitaker", + "lewtun@huggingface", + "xl0" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "bandism", + "cityscopemitmedialab", + "drcfsorg", + "huggingface", + "relx", + "universityofcologne" ], - "_language": "Python", - "_homepage": "https://flower.dev", - "_description": "Flower - A Friendly Federated Learning Framework", - "_organization": "adap", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2020-02-17T00:00:00.000Z", - "_age_weeks": 148, - "_stars_per_week": 12.16, - "_pop_contributor_count": 51, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "adapgmbh" + "_pop_contributor_orgs_raw": [ + "@CityScope @mitmedialab ", + "@bandism ", + "@drcfsorg", + "@huggingface", + "RELX", + "University of Cologne" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.63, - "_pop_updated_issues_count": 99, - "_pop_closed_issues_count": 67, - "_pop_created_since_days": 34, + "_pop_commit_frequency": 2.88, + "_pop_updated_issues_count": 55, + "_pop_closed_issues_count": 47, + "_pop_created_since_days": 4, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 99.0, - "_pop_comment_count": 59.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 55.0, + "_pop_comment_count": 69.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 18, - "_pop_score": 42.5, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 32.78, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/adap/flower/master/README.md", - "_readme_localurl": "adap~flower~README.md", - "_requirements_filenames": [ - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/adap/flower/master/pyproject.toml" - ], - "_requirements_localurls": [ - "adap~flower~pyproject.toml" - ] + "_readme_giturl": "https://raw.githubusercontent.com/huggingface/diffusion-models-class/master/README.md", + "_readme_localurl": "huggingface~diffusion-models-class~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { - "index": 648, - "category": "util", - "githuburl": "https://github.com/grahamdumpleton/wrapt", + "index": 856, + "category": "profiling", + "githuburl": "https://github.com/jiffyclub/snakeviz", "featured": null, "links": null, "description": null, - "_repopath": "grahamdumpleton/wrapt", - "_reponame": "wrapt", - "_stars": 1793, - "_forks": 208, - "_watches": 45, - "_topics": [], + "_repopath": "jiffyclub/snakeviz", + "_reponame": "snakeviz", + "_stars": 1876, + "_forks": 129, + "_watches": 23, "_language": "Python", - "_homepage": "", - "_description": "wrapt: A Python module for decorators, wrappers and monkey patching.", - "_organization": "grahamdumpleton", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-10-28T00:00:00.000Z", - "_created_at": "2013-05-29T00:00:00.000Z", - "_age_weeks": 498, - "_stars_per_week": 3.6, - "_pop_contributor_count": 25, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://jiffyclub.github.io/snakeviz/", + "_description": "snakeviz: An in-browser Python profile viewer", + "_organization": "jiffyclub", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-06-26T00:00:00.000Z", + "_age_weeks": 556, + "_stars_per_week": 3.37, + "_topics": [], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 24, + "_pop_contributor_logins": [ + "andyljones@anthropic", + "bmerry", + "dannysepler@propelinc", + "embray", + "jiffyclub@populus-ai", + "matthewfeickert@universityofwisconsin-madison", + "nschloe@mondaytech", + "takluyver", + "thomasjm@codedownio", + "yjmade@nvidia" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "embl,zellerlab", - "georgiatech", - "scampersand" + "anthropic", + "codedownio", + "mondaytech", + "nvidia", + "populus-ai", + "propelinc", + "universityofwisconsin-madison" + ], + "_pop_contributor_orgs_raw": [ + "@codedownio ", + "@populus-ai ", + "@propelinc", + "Anthropic", + "Monday Tech", + "NVIDIA", + "University of Wisconsin-Madison" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.4, - "_pop_updated_issues_count": 5, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 116, - "_pop_updated_since_days": 2, + "_pop_commit_frequency": 0.08, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 130, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 5.0, - "_pop_comment_count": 8.0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 7.0, + "_pop_comment_count": 16.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 1101, - "_pop_score": 47.52, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 40.21, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/grahamdumpleton/wrapt/master/README.rst", - "_readme_localurl": "grahamdumpleton~wrapt~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/jiffyclub/snakeviz/master/README.rst", + "_readme_localurl": "jiffyclub~snakeviz~README.rst", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/grahamdumpleton/wrapt/master/setup.py" + "https://raw.githubusercontent.com/jiffyclub/snakeviz/master/setup.py" ], "_requirements_localurls": [ - "grahamdumpleton~wrapt~setup.py" + "jiffyclub~snakeviz~setup.py" ] }, { - "index": 601, + "index": 713, "category": "gis", - "githuburl": "https://github.com/plant99/felicette", + "githuburl": "https://github.com/mcordts/cityscapesscripts", "featured": null, "links": null, "description": null, - "_repopath": "plant99/felicette", - "_reponame": "felicette", - "_stars": 1792, - "_forks": 85, - "_watches": 38, - "_topics": [ - "geospatial-data", - "gis", - "geospatial-visualization", - "geospatial", - "python", - "python3", - "geoinformatics", - "earth-observation", - "earth-science", - "satellite-imagery", - "satellite-images", - "satellite-data" - ], + "_repopath": "mcordts/cityscapesscripts", + "_reponame": "cityscapesScripts", + "_stars": 1869, + "_forks": 574, + "_watches": 45, "_language": "Python", - "_homepage": "", - "_description": "felicette: Satellite imagery for dummies.", - "_organization": "plant99", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2021-09-08T00:00:00.000Z", - "_created_at": "2020-07-12T00:00:00.000Z", - "_age_weeks": 127, - "_stars_per_week": 14.09, - "_pop_contributor_count": 6, + "_homepage": null, + "_description": "cityscapesScripts: README and scripts for the Cityscapes Dataset", + "_organization": "mcordts", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2016-02-20T00:00:00.000Z", + "_age_weeks": 365, + "_stars_per_week": 5.11, + "_topics": [], + "_last_commit_date": "2022-10-22T00:00:00.000Z", + "_pop_contributor_count": 17, + "_pop_contributor_logins": [ + "Bhomik", + "MarvinTeichmann@universityofcambridge", + "adityassrana", + "alexander-kirillov@facebookairesearch", + "jmtatsch", + "lucasb-eyer@googlebrainz\u00fcrich", + "luofan18", + "mcordts@daimlerag", + "ncgaehle", + "nicolasj92" + ], "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "clemsonuniversity", - "financeandeconomicsdepartment,mgimo-odintsovo", - "mattermost", - "tempulsenoirlinuxmulindisourcehaus" + "daimlerag", + "facebookairesearch", + "googlebrainz\u00fcrich", + "universityofcambridge" + ], + "_pop_contributor_orgs_raw": [ + "@google Brain Z\u00fcrich", + "Daimler AG", + "Facebook AI Research", + "University of Cambridge" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 30, - "_pop_updated_since_days": 16, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 13, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 85, + "_pop_updated_since_days": 4, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 13.0, + "_pop_comment_count": 19.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, + "_pop_comment_frequency": 1.5, "_pop_dependents_count": 0, - "_pop_score": 16.71, + "_pop_score": 29.95, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/plant99/felicette/master/README.md", - "_readme_localurl": "plant99~felicette~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/mcordts/cityscapesscripts/master/README.md", + "_readme_localurl": "mcordts~cityscapesscripts~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/plant99/felicette/master/requirements.txt", - "https://raw.githubusercontent.com/plant99/felicette/master/setup.py" + "https://raw.githubusercontent.com/mcordts/cityscapesscripts/master/setup.py" ], "_requirements_localurls": [ - "plant99~felicette~requirements.txt", - "plant99~felicette~setup.py" + "mcordts~cityscapesscripts~setup.py" ] }, { - "index": 295, - "category": "util", - "githuburl": "https://github.com/pyfilesystem/pyfilesystem2", - "featured": null, + "index": 823, + "category": "data", + "githuburl": "https://github.com/uqfoundation/dill", + "featured": 1.0, "links": null, "description": null, - "_repopath": "pyfilesystem/pyfilesystem2", - "_reponame": "pyfilesystem2", - "_stars": 1785, - "_forks": 170, - "_watches": 45, - "_topics": [ - "filesystem", - "pyfilesystem", - "pyfilesystem2", - "python", - "ftp", - "tar", - "zip", - "filesystem-library" - ], + "_repopath": "uqfoundation/dill", + "_reponame": "dill", + "_stars": 1859, + "_forks": 155, + "_watches": 22, "_language": "Python", - "_homepage": "https://www.pyfilesystem.org", - "_description": "pyfilesystem2: Python's Filesystem abstraction layer", - "_organization": "pyfilesystem", - "_updated_at": "2022-12-12T00:00:00.000Z", - "_last_commit_date": "2022-10-18T00:00:00.000Z", - "_created_at": "2016-10-14T00:00:00.000Z", - "_age_weeks": 322, - "_stars_per_week": 5.54, - "_pop_contributor_count": 47, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_homepage": "http://dill.rtfd.io", + "_description": "dill: serialize all of python", + "_organization": "uqfoundation", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2013-06-28T00:00:00.000Z", + "_age_weeks": 503, + "_stars_per_week": 3.69, + "_topics": [], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 40, + "_pop_contributor_logins": [ + "Peque", + "anivegesana", + "hugovk@nordsoftware", + "jasonmyers@klaviyo", + "kernc", + "leogama@amphybio-universityofs\u00e3opaulo,medicalschool", + "matsjoyce", + "mindw", + "mmckerns@uqfoundation", + "sekikn@nttdata" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "embl,zellerlab", - "mercatronicsgmbh", - "textualize" + "amphybio-universityofs\u00e3opaulo,medicalschool", + "klaviyo", + "nordsoftware", + "nttdata", + "uqfoundation" + ], + "_pop_contributor_orgs_raw": [ + "@amphybio - University of S\u00e3o Paulo, Medical School", + "@uqfoundation ", + "Klaviyo", + "NTT DATA", + "Nord Software" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.56, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 75, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 7.0, - "_pop_comment_count": 19.0, + "_pop_commit_frequency": 1.96, + "_pop_updated_issues_count": 26, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 118, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 26.0, + "_pop_comment_count": 43.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.7, - "_pop_dependents_count": 47, - "_pop_score": 43.67, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 43.41, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pyfilesystem/pyfilesystem2/master/README.md", - "_readme_localurl": "pyfilesystem~pyfilesystem2~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/uqfoundation/dill/master/README.md", + "_readme_localurl": "uqfoundation~dill~README.md", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pyfilesystem/pyfilesystem2/master/setup.py" + "https://raw.githubusercontent.com/uqfoundation/dill/master/setup.py", + "https://raw.githubusercontent.com/uqfoundation/dill/master/pyproject.toml" ], "_requirements_localurls": [ - "pyfilesystem~pyfilesystem2~setup.py" + "uqfoundation~dill~setup.py", + "uqfoundation~dill~pyproject.toml" ] }, { - "index": 63, - "category": "sim", - "githuburl": "https://github.com/projectmesa/mesa", + "index": 581, + "category": "ml-dl", + "githuburl": "https://github.com/alpa-projects/alpa", "featured": null, "links": null, "description": null, - "_repopath": "projectmesa/mesa", - "_reponame": "mesa", - "_stars": 1778, - "_forks": 760, - "_watches": 89, + "_repopath": "alpa-projects/alpa", + "_reponame": "alpa", + "_stars": 1858, + "_forks": 225, + "_watches": 31, + "_language": "Python", + "_homepage": "https://alpa.ai", + "_description": "alpa: Training and serving large-scale neural networks", + "_organization": "alpa-projects", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-02-22T00:00:00.000Z", + "_age_weeks": 104, + "_stars_per_week": 17.82, "_topics": [ - "mesa", - "agent-based-modeling", - "agent-based-simulation", - "simulation-framework", - "simulation", - "simulation-environment", - "complex-systems", - "complexity-analysis", - "modeling-agents", - "spatial-models", - "gis" + "deep-learning", + "machine-learning", + "compiler", + "distributed-training", + "high-performance-computing", + "alpa", + "jax", + "distributed-computing", + "llm", + "auto-parallelization" + ], + "_last_commit_date": "2023-02-13T00:00:00.000Z", + "_pop_contributor_count": 35, + "_pop_contributor_logins": [ + "JiahaoYao@universityofcalifornia,berkeley", + "PKUFlyingPig@pekinguniversity", + "ZYHowell@carnegiemellonuniversity", + "comaniac@amazonwebservices(aws)", + "ddxxdd-code", + "jiaodong@anyscale", + "merrymercy@ucberkeley", + "yf225", + "zhisbug", + "zhuohan123@ucberkeley" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "amazonwebservices(aws)", + "anyscale", + "carnegiemellonuniversity", + "pekinguniversity", + "ucberkeley", + "universityofcalifornia,berkeley" + ], + "_pop_contributor_orgs_raw": [ + "Amazon Web Services (@aws)", + "Anyscale", + "Carnegie Mellon University", + "Peking University", + "UC Berkeley", + "University of California, Berkeley" ], - "_language": "Python", - "_homepage": "", - "_description": "Mesa is an agent-based modeling framework in Python", - "_organization": "projectmesa", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2014-09-19T00:00:00.000Z", - "_age_weeks": 430, - "_stars_per_week": 4.13, - "_pop_contributor_count": 121, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.48, - "_pop_updated_issues_count": 166, - "_pop_closed_issues_count": 136, - "_pop_created_since_days": 100, + "_pop_commit_frequency": 6.4, + "_pop_updated_issues_count": 130, + "_pop_closed_issues_count": 98, + "_pop_created_since_days": 24, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 166.0, - "_pop_comment_count": 676.0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 128.0, + "_pop_comment_count": 195.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 4.1, - "_pop_dependents_count": 104, - "_pop_score": 51.2, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/projectmesa/mesa/master/README.rst", - "_readme_localurl": "projectmesa~mesa~README.rst", + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 45.76, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/alpa-projects/alpa/master/README.md", + "_readme_localurl": "alpa-projects~alpa~README.md", "_requirements_filenames": [ - "setup.py", - "Pipfile" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/projectmesa/mesa/master/setup.py", - "https://raw.githubusercontent.com/projectmesa/mesa/master/Pipfile" + "https://raw.githubusercontent.com/alpa-projects/alpa/master/setup.py" ], "_requirements_localurls": [ - "projectmesa~mesa~setup.py", - "projectmesa~mesa~Pipfile" + "alpa-projects~alpa~setup.py" ] }, { - "index": 749, - "category": "diffusion", - "githuburl": "https://github.com/nateraw/stable-diffusion-videos", + "index": 201, + "category": "util", + "githuburl": "https://github.com/camelot-dev/camelot", "featured": null, "links": null, "description": null, - "_repopath": "nateraw/stable-diffusion-videos", - "_reponame": "stable-diffusion-videos", - "_stars": 1774, - "_forks": 155, - "_watches": 21, - "_topics": [ - "ai-art", - "huggingface", - "huggingface-diffusers", - "machine-learning", - "stable-diffusion" - ], + "_repopath": "camelot-dev/camelot", + "_reponame": "camelot", + "_stars": 1835, + "_forks": 338, + "_watches": 46, "_language": "Python", - "_homepage": "", - "_description": "stable-diffusion-videos: Create \ud83d\udd25 videos with Stable Diffusion by exploring the latent space and morphing between text prompts", - "_organization": "nateraw", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2022-09-06T00:00:00.000Z", - "_age_weeks": 14, - "_stars_per_week": 119.4, - "_pop_contributor_count": 10, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://camelot-py.readthedocs.io", + "_description": "camelot: A Python library to extract tabular data from PDFs", + "_organization": "camelot-dev", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-07-01T00:00:00.000Z", + "_age_weeks": 190, + "_stars_per_week": 9.64, + "_topics": [], + "_last_commit_date": "2023-02-07T00:00:00.000Z", + "_pop_contributor_count": 39, + "_pop_contributor_logins": [ + "KOLANICH@kolanich", + "MartinThoma", + "anakin87@01s", + "davidkong0987", + "dimitern@http://develated.com/", + "pravarag", + "tksumanth1994", + "vaibhavmule@polymerize", + "vinayak-mehta", + "yatintaluja@atlanhq" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "earth", - "huggingface", - "student" + "01s", + "atlanhq", + "http://develated.com/", + "kolanich", + "polymerize" + ], + "_pop_contributor_orgs_raw": [ + "01S", + "@Polymerize ", + "@atlanhq ", + "KOLANICH inc.", + "http://develated.com/" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.31, - "_pop_updated_issues_count": 103, - "_pop_closed_issues_count": 83, - "_pop_created_since_days": 3, + "_pop_commit_frequency": 0.08, + "_pop_updated_issues_count": 26, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 44, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 15, - "_pop_recent_releases_estimated_tags": 61, - "_pop_recent_releases_adjusted_count": 15, - "_pop_issue_count": 103.0, - "_pop_comment_count": 213.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 26.0, + "_pop_comment_count": 47.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 2, - "_pop_score": 36.85, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 40.04, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/README.md", - "_readme_localurl": "nateraw~stable-diffusion-videos~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/camelot-dev/camelot/master/README.md", + "_readme_localurl": "camelot-dev~camelot~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/requirements.txt", - "https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/setup.py" + "https://raw.githubusercontent.com/camelot-dev/camelot/master/setup.py" ], "_requirements_localurls": [ - "nateraw~stable-diffusion-videos~requirements.txt", - "nateraw~stable-diffusion-videos~setup.py" + "camelot-dev~camelot~setup.py" ] }, { - "index": 32, - "category": "nlp", - "githuburl": "https://github.com/jamesturk/jellyfish", + "index": 115, + "category": "perf", + "githuburl": "https://github.com/h5py/h5py", "featured": null, "links": null, "description": null, - "_repopath": "jamesturk/jellyfish", - "_reponame": "jellyfish", - "_stars": 1766, - "_forks": 148, - "_watches": 43, - "_topics": [ - "python", - "levenshtein", - "soundex", - "hamming", - "metaphone", - "jaro-winkler", - "fuzzy-search", - "hacktoberfest" - ], + "_repopath": "h5py/h5py", + "_reponame": "h5py", + "_stars": 1828, + "_forks": 490, + "_watches": 55, "_language": "Python", - "_homepage": "https://jamesturk.github.io/jellyfish/", - "_description": "jellyfish: \ud83e\udebc a python library for doing approximate and phonetic matching of strings.", - "_organization": "jamesturk", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-07T00:00:00.000Z", - "_created_at": "2010-07-09T00:00:00.000Z", - "_age_weeks": 649, - "_stars_per_week": 2.72, - "_pop_contributor_count": 27, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_homepage": "http://www.h5py.org", + "_description": "h5py: HDF5 for Python -- The h5py package is a Pythonic interface to the HDF5 binary data format.", + "_organization": "h5py", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2012-09-21T00:00:00.000Z", + "_age_weeks": 543, + "_stars_per_week": 3.36, + "_topics": [], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 191, + "_pop_contributor_logins": [ + "ajelenak@thehdfgroup", + "andrewcollette@enthought", + "aragilar@departmentofphysicsandastronomy,macquarieuniversity", + "ddale@cornelluniversity", + "dota17", + "kif@esrf", + "scopatz", + "t20100@esrf", + "tacaswell@brookhavennationallab", + "takluyver" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "ibmresearch", - "sunlightlabs", - "utrechtuniversity" + "brookhavennationallab", + "cornelluniversity", + "departmentofphysicsandastronomy,macquarieuniversity", + "enthought", + "esrf", + "thehdfgroup" + ], + "_pop_contributor_orgs_raw": [ + "Brookhaven National Lab", + "Cornell University", + "Department of Physics and Astronomy, Macquarie University", + "ESRF", + "Enthought", + "The HDF Group" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.38, - "_pop_updated_issues_count": 10, - "_pop_closed_issues_count": 7, - "_pop_created_since_days": 152, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 2, + "_pop_commit_frequency": 4.08, + "_pop_updated_issues_count": 110, + "_pop_closed_issues_count": 83, + "_pop_created_since_days": 127, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 4, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 10.0, - "_pop_comment_count": 6.0, + "_pop_issue_count": 110.0, + "_pop_comment_count": 340.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 92, - "_pop_score": 41.79, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/jamesturk/jellyfish/master/README.md", - "_readme_localurl": "jamesturk~jellyfish~README.md", + "_pop_comment_frequency": 3.1, + "_pop_dependents_count": 0, + "_pop_score": 52.86, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/h5py/h5py/master/README.rst", + "_readme_localurl": "h5py~h5py~README.rst", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/jamesturk/jellyfish/master/setup.py" + "https://raw.githubusercontent.com/h5py/h5py/master/setup.py", + "https://raw.githubusercontent.com/h5py/h5py/master/pyproject.toml" ], "_requirements_localurls": [ - "jamesturk~jellyfish~setup.py" + "h5py~h5py~setup.py", + "h5py~h5py~pyproject.toml" ] }, { - "index": 310, - "category": "data", - "githuburl": "https://github.com/graphistry/pygraphistry", + "index": 46, + "category": "jupyter", + "githuburl": "https://github.com/maartenbreddels/ipyvolume", "featured": null, "links": null, "description": null, - "_repopath": "graphistry/pygraphistry", - "_reponame": "pygraphistry", - "_stars": 1764, - "_forks": 185, - "_watches": 48, + "_repopath": "maartenbreddels/ipyvolume", + "_reponame": "ipyvolume", + "_stars": 1824, + "_forks": 235, + "_watches": 52, + "_language": "TypeScript", + "_homepage": "", + "_description": "ipyvolume: 3d plotting for Python in the Jupyter notebook based on IPython widgets using WebGL", + "_organization": "maartenbreddels", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2016-12-21T00:00:00.000Z", + "_age_weeks": 322, + "_stars_per_week": 5.66, "_topics": [ - "graph", - "visualization", - "gpu", - "graphistry", + "ipython-widget", + "jupyter", + "jupyter-notebook", "python", - "rapids", - "cugraph", - "networkx", - "neo4j", - "tigergraph", - "pandas", - "csv", + "visualisation", + "volume-rendering", + "virtual-reality", + "plotting", + "dataviz", + "scientific-visualization", "webgl", - "splunk", - "cudf", - "jupyter", - "igraph", - "network-analysis", - "network-visualization", - "graph-visualization" + "threejs", + "rendering-3d-volumes", + "quiver" ], - "_language": "Python", - "_homepage": "", - "_description": "PyGraphistry is a Python library to quickly load, shape, embed, and explore big graphs with the GPU-accelerated Graphistry visual graph analyzer", - "_organization": "graphistry", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2015-06-02T00:00:00.000Z", - "_age_weeks": 393, - "_stars_per_week": 4.48, - "_pop_contributor_count": 31, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "graphistry", - "nvidia" + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 45, + "_pop_contributor_logins": [ + "GenevieveBuckley@monashuniversity", + "OlehKSS", + "agoose77", + "chrisjsewell@imperialcollegelondon", + "cvisl@surf", + "glyg@france-bio-imaging-data", + "jeammimi", + "jtpio@quantstack", + "maartenbreddels@maartenbreddels", + "mgeier" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "france-bio-imaging-data", + "imperialcollegelondon", + "maartenbreddels", + "monashuniversity", + "quantstack", + "surf" + ], + "_pop_contributor_orgs_raw": [ + "@France-Bio-Imaging-Data ", + "@QuantStack", + "@maartenbreddels", + "Imperial College London", + "Monash University", + "SURF" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.44, - "_pop_updated_issues_count": 38, - "_pop_closed_issues_count": 21, - "_pop_created_since_days": 92, + "_pop_commit_frequency": 0.27, + "_pop_updated_issues_count": 17, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 75, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 22, - "_pop_recent_releases_adjusted_count": 22, - "_pop_issue_count": 38.0, - "_pop_comment_count": 32.0, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 17.0, + "_pop_comment_count": 25.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 36, - "_pop_score": 46.83, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 42.48, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/graphistry/pygraphistry/master/README.md", - "_readme_localurl": "graphistry~pygraphistry~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/maartenbreddels/ipyvolume/master/README.md", + "_readme_localurl": "maartenbreddels~ipyvolume~README.md", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/graphistry/pygraphistry/master/setup.py" + "https://raw.githubusercontent.com/maartenbreddels/ipyvolume/master/setup.py", + "https://raw.githubusercontent.com/maartenbreddels/ipyvolume/master/pyproject.toml" ], "_requirements_localurls": [ - "graphistry~pygraphistry~setup.py" + "maartenbreddels~ipyvolume~setup.py", + "maartenbreddels~ipyvolume~pyproject.toml" ] }, { - "index": 9, - "category": "ml", - "githuburl": "https://github.com/contextlab/hypertools", + "index": 295, + "category": "util", + "githuburl": "https://github.com/pyfilesystem/pyfilesystem2", "featured": null, "links": null, "description": null, - "_repopath": "contextlab/hypertools", - "_reponame": "hypertools", - "_stars": 1754, - "_forks": 159, - "_watches": 60, + "_repopath": "pyfilesystem/pyfilesystem2", + "_reponame": "pyfilesystem2", + "_stars": 1819, + "_forks": 173, + "_watches": 45, + "_language": "Python", + "_homepage": "https://www.pyfilesystem.org", + "_description": "pyfilesystem2: Python's Filesystem abstraction layer", + "_organization": "pyfilesystem", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2016-10-14T00:00:00.000Z", + "_age_weeks": 331, + "_stars_per_week": 5.48, "_topics": [ - "data-visualization", - "high-dimensional-data", + "filesystem", + "pyfilesystem", + "pyfilesystem2", "python", - "topic-modeling", - "text-vectorization", - "data-wrangling", - "visualization", - "time-series" + "ftp", + "tar", + "zip", + "filesystem-library" ], - "_language": "Python", - "_homepage": "http://hypertools.readthedocs.io/en/latest/", - "_description": "hypertools: A Python toolbox for gaining geometric insights into high-dimensional data", - "_organization": "contextlab", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-02-12T00:00:00.000Z", - "_created_at": "2016-09-27T00:00:00.000Z", - "_age_weeks": 324, - "_stars_per_week": 5.4, - "_pop_contributor_count": 21, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-10-18T00:00:00.000Z", + "_pop_contributor_count": 47, + "_pop_contributor_logins": [ + "althonos@embl,zellerlab", + "dargueta", + "eelkevdbos@vandenbossoftwaredevelopment", + "geoffjukes", + "lurch@raspberrypi", + "muffl0n", + "odgalvin", + "tfeldmann@mercatronicsgmbh", + "willmcgugan@textualize", + "zmej-serow@kodland.org" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "akiliinteractive", - "contextlabcosanlab", - "dartmouthcollege" + "embl,zellerlab", + "kodland.org", + "mercatronicsgmbh", + "raspberrypi", + "textualize", + "vandenbossoftwaredevelopment" + ], + "_pop_contributor_orgs_raw": [ + "@raspberrypi ", + "EMBL, @zellerlab", + "Textualize", + "Van den Bos Software Development", + "kodland.org", + "mercatronics GmbH" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.63, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 76, - "_pop_updated_since_days": 10, + "_pop_commit_frequency": 1.44, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 77, + "_pop_updated_since_days": 4, "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_estimated_tags": 8, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 4.0, - "_pop_comment_count": 4.0, + "_pop_issue_count": 12.0, + "_pop_comment_count": 26.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 25, - "_pop_score": 33.19, - "_readme_filename": "readme.md", - "_readme_giturl": "https://raw.githubusercontent.com/contextlab/hypertools/master/readme.md", - "_readme_localurl": "contextlab~hypertools~readme.md", + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 0, + "_pop_score": 37.2, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pyfilesystem/pyfilesystem2/master/README.md", + "_readme_localurl": "pyfilesystem~pyfilesystem2~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/contextlab/hypertools/master/requirements.txt", - "https://raw.githubusercontent.com/contextlab/hypertools/master/setup.py" + "https://raw.githubusercontent.com/pyfilesystem/pyfilesystem2/master/setup.py" ], "_requirements_localurls": [ - "contextlab~hypertools~requirements.txt", - "contextlab~hypertools~setup.py" + "pyfilesystem~pyfilesystem2~setup.py" ] }, { - "index": 201, + "index": 648, "category": "util", - "githuburl": "https://github.com/camelot-dev/camelot", + "githuburl": "https://github.com/grahamdumpleton/wrapt", "featured": null, "links": null, "description": null, - "_repopath": "camelot-dev/camelot", - "_reponame": "camelot", - "_stars": 1752, - "_forks": 329, - "_watches": 40, - "_topics": [], + "_repopath": "grahamdumpleton/wrapt", + "_reponame": "wrapt", + "_stars": 1817, + "_forks": 209, + "_watches": 45, "_language": "Python", - "_homepage": "https://camelot-py.readthedocs.io", - "_description": "camelot: A Python library to extract tabular data from PDFs", - "_organization": "camelot-dev", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2021-07-11T00:00:00.000Z", - "_created_at": "2019-07-01T00:00:00.000Z", - "_age_weeks": 181, - "_stars_per_week": 9.68, - "_pop_contributor_count": 38, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "01s", - "http://develated.com/" + "_homepage": "", + "_description": "wrapt: A Python module for decorators, wrappers and monkey patching.", + "_organization": "grahamdumpleton", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2013-05-29T00:00:00.000Z", + "_age_weeks": 508, + "_stars_per_week": 3.58, + "_topics": [], + "_last_commit_date": "2023-01-12T00:00:00.000Z", + "_pop_contributor_count": 27, + "_pop_contributor_logins": [ + "GrahamDumpleton", + "a-feld", + "agriffis@scampersand", + "althonos@embl,zellerlab", + "eire1130", + "hugovk@nordsoftware", + "jouve", + "thorwhalen@analogdevices", + "varunagrawal@georgiatech", + "yarikoptic@dartmouthcollege,debian,datalad,pymvpa,fail2ban" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "analogdevices", + "dartmouthcollege,debian,datalad,pymvpa,fail2ban", + "embl,zellerlab", + "georgiatech", + "nordsoftware", + "scampersand" + ], + "_pop_contributor_orgs_raw": [ + "@scampersand", + "Analog Devices", + "Dartmouth College, @Debian, @DataLad, @PyMVPA, @fail2ban", + "EMBL, @zellerlab", + "Georgia Tech", + "Nord Software" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 16, - "_pop_closed_issues_count": 5, - "_pop_created_since_days": 42, - "_pop_updated_since_days": 18, + "_pop_commit_frequency": 1.02, + "_pop_updated_issues_count": 17, + "_pop_closed_issues_count": 9, + "_pop_created_since_days": 118, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 16.0, - "_pop_comment_count": 15.0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 17.0, + "_pop_comment_count": 39.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 6, - "_pop_score": 30.63, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/camelot-dev/camelot/master/README.md", - "_readme_localurl": "camelot-dev~camelot~README.md", + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 41.82, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/grahamdumpleton/wrapt/master/README.rst", + "_readme_localurl": "grahamdumpleton~wrapt~README.rst", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/camelot-dev/camelot/master/setup.py" + "https://raw.githubusercontent.com/grahamdumpleton/wrapt/master/setup.py" ], "_requirements_localurls": [ - "camelot-dev~camelot~setup.py" + "grahamdumpleton~wrapt~setup.py" ] }, { - "index": 843, - "category": "ml", - "githuburl": "https://github.com/aws/sagemaker-python-sdk", + "index": 63, + "category": "sim", + "githuburl": "https://github.com/projectmesa/mesa", "featured": null, "links": null, "description": null, - "_repopath": "aws/sagemaker-python-sdk", - "_reponame": "sagemaker-python-sdk", - "_stars": 1748, - "_forks": 905, - "_watches": 131, + "_repopath": "projectmesa/mesa", + "_reponame": "mesa", + "_stars": 1813, + "_forks": 758, + "_watches": 89, + "_language": "Python", + "_homepage": "", + "_description": "Mesa is an agent-based modeling framework in Python", + "_organization": "projectmesa", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2014-09-19T00:00:00.000Z", + "_age_weeks": 439, + "_stars_per_week": 4.12, "_topics": [ - "aws", - "mxnet", - "tensorflow", - "machine-learning", - "python", - "pytorch", - "sagemaker", - "huggingface" + "mesa", + "agent-based-modeling", + "agent-based-simulation", + "simulation-framework", + "simulation", + "simulation-environment", + "complex-systems", + "complexity-analysis", + "modeling-agents", + "spatial-models", + "gis" ], - "_language": "Python", - "_homepage": "https://sagemaker.readthedocs.io/", - "_description": "sagemaker-python-sdk: A library for training and deploying machine learning models on Amazon SageMaker", - "_organization": "aws", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2017-11-14T00:00:00.000Z", - "_age_weeks": 265, - "_stars_per_week": 6.57, - "_pop_contributor_count": 311, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-10T00:00:00.000Z", + "_pop_contributor_count": 121, + "_pop_contributor_logins": [ + "Corvince", + "EwoutH", + "TaylorMutch@unitytechnologies", + "Tortar@metro-polis", + "cauemello", + "djmitche@google", + "dmasad", + "jackiekazil", + "rht", + "tpike3" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google" + "google", + "metro-polis", + "unitytechnologies" + ], + "_pop_contributor_orgs_raw": [ + "Google", + "Metro-Polis ", + "Unity Technologies" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 9.71, - "_pop_updated_issues_count": 275, - "_pop_closed_issues_count": 152, - "_pop_created_since_days": 62, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 74, - "_pop_recent_releases_estimated_tags": 93, - "_pop_recent_releases_adjusted_count": 74, - "_pop_issue_count": 275.0, - "_pop_comment_count": 3020.0, + "_pop_commit_frequency": 5.58, + "_pop_updated_issues_count": 70, + "_pop_closed_issues_count": 42, + "_pop_created_since_days": 103, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 70.0, + "_pop_comment_count": 190.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 11.0, - "_pop_dependents_count": 133, - "_pop_score": 66.03, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 0, + "_pop_score": 45.3, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/aws/sagemaker-python-sdk/master/README.rst", - "_readme_localurl": "aws~sagemaker-python-sdk~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/projectmesa/mesa/master/README.rst", + "_readme_localurl": "projectmesa~mesa~README.rst", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml", + "Pipfile" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/aws/sagemaker-python-sdk/master/setup.py" + "https://raw.githubusercontent.com/projectmesa/mesa/master/setup.py", + "https://raw.githubusercontent.com/projectmesa/mesa/master/pyproject.toml", + "https://raw.githubusercontent.com/projectmesa/mesa/master/Pipfile" ], "_requirements_localurls": [ - "aws~sagemaker-python-sdk~setup.py" + "projectmesa~mesa~setup.py", + "projectmesa~mesa~pyproject.toml", + "projectmesa~mesa~Pipfile" ] }, { - "index": 297, - "category": "util", - "githuburl": "https://github.com/pyparsing/pyparsing", + "index": 310, + "category": "data", + "githuburl": "https://github.com/graphistry/pygraphistry", "featured": null, "links": null, "description": null, - "_repopath": "pyparsing/pyparsing", - "_reponame": "pyparsing", - "_stars": 1714, - "_forks": 237, - "_watches": 23, + "_repopath": "graphistry/pygraphistry", + "_reponame": "pygraphistry", + "_stars": 1805, + "_forks": 187, + "_watches": 47, + "_language": "Python", + "_homepage": "", + "_description": "PyGraphistry is a Python library to quickly load, shape, embed, and explore big graphs with the GPU-accelerated Graphistry visual graph analyzer", + "_organization": "graphistry", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-06-02T00:00:00.000Z", + "_age_weeks": 403, + "_stars_per_week": 4.48, "_topics": [ + "graph", + "visualization", + "gpu", + "graphistry", "python", - "python2", - "python3", - "python-2", - "python-3", - "parser-combinators", - "parsing-expression-grammar", - "parsing", - "parsing-library", - "text-processing", - "peg-parsers" + "rapids", + "cugraph", + "networkx", + "neo4j", + "tigergraph", + "pandas", + "csv", + "webgl", + "splunk", + "cudf", + "jupyter", + "igraph", + "network-analysis", + "network-visualization", + "graph-visualization" ], - "_language": "Python", - "_homepage": "", - "_description": "pyparsing: Python library for creating PEG parsers", - "_organization": "pyparsing", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2017-05-14T00:00:00.000Z", - "_age_weeks": 292, - "_stars_per_week": 5.87, - "_pop_contributor_count": 52, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-12-23T00:00:00.000Z", + "_pop_contributor_count": 31, + "_pop_contributor_logins": [ + "DataBoyTX", + "cwharris@nvidia", + "juliaxdmon", + "lmeyerov@graphistry", + "lsb", + "pradkrish", + "silkspace@graphistrystayopen,pythian,tehama,cybermedicine,beatsmusic,quid,idlegames", + "szhorvat", + "thibaudh", + "trxcllnt@nvidia,inc" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google", - "pioneervalleybooks", - "suse" + "graphistry", + "graphistrystayopen,pythian,tehama,cybermedicine,beatsmusic,quid,idlegames", + "nvidia", + "nvidia,inc" + ], + "_pop_contributor_orgs_raw": [ + "@graphistry @stayopen, @pythian, @tehama, @cybermedicine, @beatsMusic, @quid, @idlegames", + "Graphistry", + "NVIDIA, Inc", + "Nvidia" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.69, - "_pop_updated_issues_count": 19, - "_pop_closed_issues_count": 7, - "_pop_created_since_days": 68, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 19.0, - "_pop_comment_count": 33.0, + "_pop_commit_frequency": 1.48, + "_pop_updated_issues_count": 34, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 94, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 22, + "_pop_recent_releases_adjusted_count": 22, + "_pop_issue_count": 34.0, + "_pop_comment_count": 32.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 2168, - "_pop_score": 54.35, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pyparsing/pyparsing/master/README.rst", - "_readme_localurl": "pyparsing~pyparsing~README.rst", + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 40.09, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/graphistry/pygraphistry/master/README.md", + "_readme_localurl": "graphistry~pygraphistry~README.md", "_requirements_filenames": [ - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pyparsing/pyparsing/master/pyproject.toml" + "https://raw.githubusercontent.com/graphistry/pygraphistry/master/setup.py" ], "_requirements_localurls": [ - "pyparsing~pyparsing~pyproject.toml" + "graphistry~pygraphistry~setup.py" ] }, { - "index": 25, - "category": "util", - "githuburl": "https://github.com/google/gin-config", + "index": 964, + "category": "gis", + "githuburl": "https://github.com/azavea/raster-vision", "featured": null, "links": null, "description": null, - "_repopath": "google/gin-config", - "_reponame": "gin-config", - "_stars": 1710, - "_forks": 107, - "_watches": 22, + "_repopath": "azavea/raster-vision", + "_reponame": "raster-vision", + "_stars": 1797, + "_forks": 350, + "_watches": 83, + "_language": "Python", + "_homepage": "https://docs.rastervision.io", + "_description": "raster-vision: An open source library and framework for deep learning on satellite and aerial imagery.", + "_organization": "azavea", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2017-02-02T00:00:00.000Z", + "_age_weeks": 315, + "_stars_per_week": 5.69, "_topics": [ - "python", - "configuration-management", - "tensorflow", - "tensorflow-experiments" + "deep-learning", + "computer-vision", + "remote-sensing", + "geospatial", + "object-detection", + "semantic-segmentation", + "classification", + "machine-learning", + "pytorch" ], - "_language": "Python", - "_homepage": "", - "_description": "gin-config: Gin provides a lightweight configuration framework for Python", - "_organization": "google", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2018-06-27T00:00:00.000Z", - "_age_weeks": 233, - "_stars_per_week": 7.32, - "_pop_contributor_count": 23, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 30, + "_pop_contributor_logins": [ + "AdeelH@azavea", + "citerana", + "dependabot[bot]", + "jamesmcclain", + "jmorrison1847@umbra", + "jpolchlo", + "lewfish@azavea", + "lmbak@eyetelligence", + "lossyrob@microsoft", + "simonkassel@azavea" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google", - "netguru" + "azavea", + "eyetelligence", + "microsoft", + "umbra" + ], + "_pop_contributor_orgs_raw": [ + "@azavea ", + "@microsoft", + "Azavea", + "Eyetelligence", + "Umbra" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.12, - "_pop_updated_issues_count": 9, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 54, + "_pop_commit_frequency": 8.29, + "_pop_updated_issues_count": 154, + "_pop_closed_issues_count": 124, + "_pop_created_since_days": 74, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 9.0, - "_pop_comment_count": 5.0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 154.0, + "_pop_comment_count": 129.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, + "_pop_comment_frequency": 0.8, "_pop_dependents_count": 0, - "_pop_score": 29.12, + "_pop_score": 43.56, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/google/gin-config/master/README.md", - "_readme_localurl": "google~gin-config~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/azavea/raster-vision/master/README.md", + "_readme_localurl": "azavea~raster-vision~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/google/gin-config/master/setup.py" + "https://raw.githubusercontent.com/azavea/raster-vision/master/requirements.txt", + "https://raw.githubusercontent.com/azavea/raster-vision/master/setup.py" ], "_requirements_localurls": [ - "google~gin-config~setup.py" + "azavea~raster-vision~requirements.txt", + "azavea~raster-vision~setup.py" ] }, { - "index": 365, - "category": "ml", - "githuburl": "https://github.com/rentruewang/koila", + "index": 601, + "category": "gis", + "githuburl": "https://github.com/plant99/felicette", "featured": null, "links": null, "description": null, - "_repopath": "rentruewang/koila", - "_reponame": "koila", - "_stars": 1689, - "_forks": 61, - "_watches": 11, - "_topics": [ - "pytorch", - "lazy-evaluation", - "out-of-memory", - "python", - "machine-learning", - "deep-learning", - "memory-management", - "gradient-accumulation", - "neural-network" - ], + "_repopath": "plant99/felicette", + "_reponame": "felicette", + "_stars": 1793, + "_forks": 85, + "_watches": 39, "_language": "Python", - "_homepage": "https://rentruewang.github.io/koila", - "_description": "koila: Prevent PyTorch's `CUDA error: out of memory` in just 1 line of code.", - "_organization": "rentruewang", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-10T00:00:00.000Z", - "_created_at": "2021-11-17T00:00:00.000Z", - "_age_weeks": 56, - "_stars_per_week": 29.78, - "_pop_contributor_count": 4, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": "", + "_description": "felicette: Satellite imagery for dummies.", + "_organization": "plant99", + "_updated_at": "2023-02-14T00:00:00.000Z", + "_created_at": "2020-07-12T00:00:00.000Z", + "_age_weeks": 136, + "_stars_per_week": 13.14, + "_topics": [ + "geospatial-data", + "gis", + "geospatial-visualization", + "geospatial", + "python", + "python3", + "geoinformatics", + "earth-observation", + "earth-science", + "satellite-imagery", + "satellite-images", + "satellite-data" + ], + "_last_commit_date": "2021-09-08T00:00:00.000Z", + "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "AlexanderDavid@clemsonuniversity", + "dependabot[bot]", + "epogrebnyak@financeandeconomicsdepartment,mgimo-odintsovo", + "mmatongo@tempulsenoirlinuxmulindisourcehaus", + "plant99" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "collegeofcomputing,georgiatech", - "iprally" + "clemsonuniversity", + "financeandeconomicsdepartment,mgimo-odintsovo", + "tempulsenoirlinuxmulindisourcehaus" + ], + "_pop_contributor_orgs_raw": [ + "@tempulse @noirlinux @mulindi @sourcehaus", + "Clemson University", + "Finance and Economics Department, MGIMO-Odintsovo" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.83, - "_pop_updated_issues_count": 1, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 13, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 32, + "_pop_updated_since_days": 18, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 1.0, + "_pop_issue_count": 0.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 20.26, + "_pop_score": 15.49, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/rentruewang/koila/master/README.md", - "_readme_localurl": "rentruewang~koila~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/plant99/felicette/master/README.md", + "_readme_localurl": "plant99~felicette~README.md", "_requirements_filenames": [ - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/rentruewang/koila/master/pyproject.toml" + "https://raw.githubusercontent.com/plant99/felicette/master/requirements.txt", + "https://raw.githubusercontent.com/plant99/felicette/master/setup.py" ], "_requirements_localurls": [ - "rentruewang~koila~pyproject.toml" + "plant99~felicette~requirements.txt", + "plant99~felicette~setup.py" ] }, { - "index": 806, - "category": "web", - "githuburl": "https://github.com/python-restx/flask-restx", + "index": 32, + "category": "nlp", + "githuburl": "https://github.com/jamesturk/jellyfish", "featured": null, "links": null, "description": null, - "_repopath": "python-restx/flask-restx", - "_reponame": "flask-restx", - "_stars": 1689, - "_forks": 285, - "_watches": 65, + "_repopath": "jamesturk/jellyfish", + "_reponame": "jellyfish", + "_stars": 1788, + "_forks": 153, + "_watches": 42, + "_language": "Python", + "_homepage": "https://jamesturk.github.io/jellyfish/", + "_description": "jellyfish: \ud83e\udebc a python library for doing approximate and phonetic matching of strings.", + "_organization": "jamesturk", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2010-07-09T00:00:00.000Z", + "_age_weeks": 658, + "_stars_per_week": 2.71, "_topics": [ "python", - "api", - "swagger", - "flask", - "rest", - "json", - "restful", - "restplus", - "restx" + "levenshtein", + "soundex", + "hamming", + "metaphone", + "jaro-winkler", + "fuzzy-search", + "hacktoberfest" ], - "_language": "Python", - "_homepage": "https://flask-restx.readthedocs.io/en/latest/", - "_description": "flask-restx: Fork of Flask-RESTPlus: Fully featured framework for fast, easy and documented API development with Flask", - "_organization": "python-restx", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-02T00:00:00.000Z", - "_created_at": "2020-01-09T00:00:00.000Z", - "_age_weeks": 153, - "_stars_per_week": 11.0, - "_pop_contributor_count": 137, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-03T00:00:00.000Z", + "_pop_contributor_count": 28, + "_pop_contributor_logins": [ + "DimitriPapadopoulos@cea", + "J535D165@utrechtuniversity", + "PeterScott@cue", + "dependabot[bot]", + "diego-plan9@ibmresearch", + "dparrol", + "jamesturk@universityofchicago", + "mikejs@sunlightlabs", + "nchammas", + "ofek@datadog" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "apihackers", - "canonical" + "cea", + "cue", + "datadog", + "ibmresearch", + "sunlightlabs", + "universityofchicago", + "utrechtuniversity" + ], + "_pop_contributor_orgs_raw": [ + "@IBMResearch ", + "@datadog", + "CEA", + "Cue", + "Sunlight Labs", + "University of Chicago", + "Utrecht University" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.48, - "_pop_updated_issues_count": 85, - "_pop_closed_issues_count": 21, - "_pop_created_since_days": 36, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 4, + "_pop_commit_frequency": 0.35, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 154, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 85.0, - "_pop_comment_count": 67.0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 264, - "_pop_score": 45.5, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/python-restx/flask-restx/master/README.rst", - "_readme_localurl": "python-restx~flask-restx~README.rst", + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 35.98, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/jamesturk/jellyfish/master/README.md", + "_readme_localurl": "jamesturk~jellyfish~README.md", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/python-restx/flask-restx/master/setup.py" + "https://raw.githubusercontent.com/jamesturk/jellyfish/master/setup.py" ], "_requirements_localurls": [ - "python-restx~flask-restx~setup.py" + "jamesturk~jellyfish~setup.py" ] }, { - "index": 543, - "category": "data", - "githuburl": "https://github.com/sqlalchemy/alembic", + "index": 843, + "category": "ml", + "githuburl": "https://github.com/aws/sagemaker-python-sdk", "featured": null, "links": null, "description": null, - "_repopath": "sqlalchemy/alembic", - "_reponame": "alembic", - "_stars": 1673, - "_forks": 171, - "_watches": 18, - "_topics": [ - "sqlalchemy", - "sql", - "python" - ], + "_repopath": "aws/sagemaker-python-sdk", + "_reponame": "sagemaker-python-sdk", + "_stars": 1777, + "_forks": 936, + "_watches": 135, "_language": "Python", - "_homepage": "", - "_description": "alembic: A database migrations tool for SQLAlchemy.", - "_organization": "sqlalchemy", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2018-11-27T00:00:00.000Z", - "_age_weeks": 211, - "_stars_per_week": 7.9, - "_pop_contributor_count": 155, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "helioslite", - "planetarium", - "redhat", - "self-employed" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.33, - "_pop_updated_issues_count": 37, - "_pop_closed_issues_count": 26, - "_pop_created_since_days": 49, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 26, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 37.0, - "_pop_comment_count": 106.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.9, - "_pop_dependents_count": 1101, - "_pop_score": 59.21, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/sqlalchemy/alembic/master/README.rst", - "_readme_localurl": "sqlalchemy~alembic~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "_homepage": "https://sagemaker.readthedocs.io/", + "_description": "sagemaker-python-sdk: A library for training and deploying machine learning models on Amazon SageMaker", + "_organization": "aws", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2017-11-14T00:00:00.000Z", + "_age_weeks": 275, + "_stars_per_week": 6.46, + "_topics": [ + "aws", + "mxnet", + "tensorflow", + "machine-learning", + "python", + "pytorch", + "sagemaker", + "huggingface" ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/sqlalchemy/alembic/master/setup.py", - "https://raw.githubusercontent.com/sqlalchemy/alembic/master/pyproject.toml" + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 333, + "_pop_contributor_logins": [ + "ChoiByungWook@amazon.com", + "ajaykarpur", + "chuyang-deng", + "icywang86rui", + "knakad", + "laurenyu", + "metrizable@google", + "mvsusp", + "nadiaya@amazon.com", + "yangaws" ], - "_requirements_localurls": [ - "sqlalchemy~alembic~setup.py", - "sqlalchemy~alembic~pyproject.toml" - ] - }, - { - "index": 416, - "category": "ml", - "githuburl": "https://github.com/bmabey/pyldavis", - "featured": null, - "links": null, - "description": null, - "_repopath": "bmabey/pyldavis", - "_reponame": "pyLDAvis", - "_stars": 1671, - "_forks": 340, - "_watches": 57, - "_topics": [], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "pyLDAvis: Python library for interactive topic model visualization. Port of the R LDAvis package.", - "_organization": "bmabey", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2021-03-24T00:00:00.000Z", - "_created_at": "2015-04-09T00:00:00.000Z", - "_age_weeks": 401, - "_stars_per_week": 4.16, - "_pop_contributor_count": 32, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google", - "zalandose" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 13, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 94, - "_pop_updated_since_days": 21, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 13.0, - "_pop_comment_count": 6.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 15, - "_pop_score": 30.39, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/bmabey/pyldavis/master/README.rst", - "_readme_localurl": "bmabey~pyldavis~README.rst", - "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml", - "Pipfile" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/bmabey/pyldavis/master/requirements.txt", - "https://raw.githubusercontent.com/bmabey/pyldavis/master/setup.py", - "https://raw.githubusercontent.com/bmabey/pyldavis/master/pyproject.toml", - "https://raw.githubusercontent.com/bmabey/pyldavis/master/Pipfile" + "amazon.com", + "google" ], - "_requirements_localurls": [ - "bmabey~pyldavis~requirements.txt", - "bmabey~pyldavis~setup.py", - "bmabey~pyldavis~pyproject.toml", - "bmabey~pyldavis~Pipfile" - ] - }, - { - "index": 217, - "category": "ml", - "githuburl": "https://github.com/linkedin/greykite", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "linkedin/greykite", - "_reponame": "greykite", - "_stars": 1654, - "_forks": 87, - "_watches": 37, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "greykite: A flexible, intuitive and fast forecasting library", - "_organization": "linkedin", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-08-31T00:00:00.000Z", - "_created_at": "2021-04-27T00:00:00.000Z", - "_age_weeks": 85, - "_stars_per_week": 19.26, - "_pop_contributor_count": 8, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "linkedin", - "pepsico" + "_pop_contributor_orgs_raw": [ + "Amazon.com", + "Google" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.08, - "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 20, - "_pop_updated_since_days": 4, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 3.0, - "_pop_comment_count": 9.0, + "_pop_commit_frequency": 9.79, + "_pop_updated_issues_count": 316, + "_pop_closed_issues_count": 180, + "_pop_created_since_days": 64, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 76, + "_pop_recent_releases_estimated_tags": 92, + "_pop_recent_releases_adjusted_count": 76, + "_pop_issue_count": 317.0, + "_pop_comment_count": 3351.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.0, - "_pop_dependents_count": 12, - "_pop_score": 28.27, + "_pop_comment_frequency": 10.6, + "_pop_dependents_count": 0, + "_pop_score": 59.58, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/linkedin/greykite/master/README.rst", - "_readme_localurl": "linkedin~greykite~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/aws/sagemaker-python-sdk/master/README.rst", + "_readme_localurl": "aws~sagemaker-python-sdk~README.rst", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/linkedin/greykite/master/setup.py" - ], - "_requirements_localurls": [ - "linkedin~greykite~setup.py" - ] - }, - { - "index": 302, - "category": "template", - "githuburl": "https://github.com/pyscaffold/pyscaffold", - "featured": null, - "links": null, - "description": null, - "_repopath": "pyscaffold/pyscaffold", - "_reponame": "pyscaffold", - "_stars": 1649, - "_forks": 170, - "_watches": 40, - "_topics": [ - "python", - "release-automation", - "git", - "distribution", - "package-creation", - "template-project", - "project-template", - "package" - ], - "_language": "Python", - "_homepage": "https://pyscaffold.org", - "_description": "pyscaffold: \ud83d\udee0 Python project template generator with batteries included", - "_organization": "pyscaffold", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-28T00:00:00.000Z", - "_created_at": "2014-04-02T00:00:00.000Z", - "_age_weeks": 454, - "_stars_per_week": 3.63, - "_pop_contributor_count": 53, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "inovex", - "karlsruheinstituteoftechnology", - "universityofbristol" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.98, - "_pop_updated_issues_count": 18, - "_pop_closed_issues_count": 13, - "_pop_created_since_days": 106, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 10, - "_pop_recent_releases_estimated_tags": 22, - "_pop_recent_releases_adjusted_count": 10, - "_pop_issue_count": 18.0, - "_pop_comment_count": 22.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 105, - "_pop_score": 49.78, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pyscaffold/pyscaffold/master/README.rst", - "_readme_localurl": "pyscaffold~pyscaffold~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pyscaffold/pyscaffold/master/setup.py", - "https://raw.githubusercontent.com/pyscaffold/pyscaffold/master/pyproject.toml" + "https://raw.githubusercontent.com/aws/sagemaker-python-sdk/master/setup.py" ], "_requirements_localurls": [ - "pyscaffold~pyscaffold~setup.py", - "pyscaffold~pyscaffold~pyproject.toml" + "aws~sagemaker-python-sdk~setup.py" ] }, { @@ -32022,9 +43331,17 @@ "description": null, "_repopath": "amanchadha/coursera-deep-learning-specialization", "_reponame": "coursera-deep-learning-specialization", - "_stars": 1649, - "_forks": 1451, - "_watches": 16, + "_stars": 1771, + "_forks": 1542, + "_watches": 17, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "coursera-deep-learning-specialization: Notes, programming assignments and quizzes from all courses within the Coursera Deep Learning specialization offered by deeplearning.ai: (i) Neural Networks and Deep Learning; (ii) Improving Deep Neural Networks: Hyperparameter tuning, Regularization and Optimization; (iii) Structuring Machine Learning Projects; (iv) Convolutional Neural Networks; (v) Sequence Models", + "_organization": "amanchadha", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-06-24T00:00:00.000Z", + "_age_weeks": 139, + "_stars_per_week": 12.74, "_topics": [ "deep-learning", "coursera", @@ -32047,37 +43364,40 @@ "neural-style-transfer", "regularization" ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "coursera-deep-learning-specialization: Notes, programming assignments and quizzes from all courses within the Coursera Deep Learning specialization offered by deeplearning.ai: (i) Neural Networks and Deep Learning; (ii) Improving Deep Neural Networks: Hyperparameter tuning, Regularization and Optimization; (iii) Structuring Machine Learning Projects; (iv) Convolutional Neural Networks; (v) Sequence Models", - "_organization": "amanchadha", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-02-07T00:00:00.000Z", - "_created_at": "2020-06-24T00:00:00.000Z", - "_age_weeks": 129, - "_stars_per_week": 12.71, "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "BHUVAN-RJ", + "Ehsanahmadi1400@readytocollaborateonaiprojects", + "amanchadha@amazon/stanforduniversity", + "lengocloi1805", + "zen7vik" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "amazon/stanforduniversity", "readytocollaborateonaiprojects" ], + "_pop_contributor_orgs_raw": [ + "Amazon Inc. / Stanford University", + "Ready to collaborate on AI projects" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.1, - "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 30, - "_pop_updated_since_days": 10, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 32, + "_pop_updated_since_days": 13, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 3.0, - "_pop_comment_count": 2.0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 17.16, + "_pop_score": 12.87, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/amanchadha/coursera-deep-learning-specialization/master/README.md", "_readme_localurl": "amanchadha~coursera-deep-learning-specialization~README.md", @@ -32086,486 +43406,443 @@ "_requirements_localurls": [] }, { - "index": 424, - "category": "debug", - "githuburl": "https://github.com/gotcha/ipdb", + "index": 297, + "category": "util", + "githuburl": "https://github.com/pyparsing/pyparsing", "featured": null, "links": null, "description": null, - "_repopath": "gotcha/ipdb", - "_reponame": "ipdb", - "_stars": 1640, - "_forks": 145, - "_watches": 27, + "_repopath": "pyparsing/pyparsing", + "_reponame": "pyparsing", + "_stars": 1765, + "_forks": 240, + "_watches": 23, + "_language": "Python", + "_homepage": "", + "_description": "pyparsing: Python library for creating PEG parsers", + "_organization": "pyparsing", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-05-14T00:00:00.000Z", + "_age_weeks": 301, + "_stars_per_week": 5.86, "_topics": [ "python", - "ipython", - "debugger" + "python2", + "python3", + "python-2", + "python-3", + "parser-combinators", + "parsing-expression-grammar", + "parsing", + "parsing-library", + "text-processing", + "peg-parsers" ], - "_language": "Python", - "_homepage": "", - "_description": "ipdb: Integration of IPython pdb", - "_organization": "gotcha", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2011-01-15T00:00:00.000Z", - "_age_weeks": 622, - "_stars_per_week": 2.64, - "_pop_contributor_count": 54, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-12T00:00:00.000Z", + "_pop_contributor_count": 53, + "_pop_contributor_logins": [ + "cngkaygusuz@google", + "djpohly", + "hugovk@nordsoftware", + "jdufresne@pioneervalleybooks", + "mattcarmody", + "maxfischer2781", + "mcepl@suse", + "multimeric", + "ptmcg", + "sirosen" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "bubblenet", - "let'sdelivery", - "locatee" + "google", + "nordsoftware", + "pioneervalleybooks", + "suse" + ], + "_pop_contributor_orgs_raw": [ + "Google", + "Nord Software", + "Pioneer Valley Books", + "SUSE" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.29, - "_pop_updated_issues_count": 20, - "_pop_closed_issues_count": 14, - "_pop_created_since_days": 145, + "_pop_commit_frequency": 2.56, + "_pop_updated_issues_count": 17, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 70, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 20.0, - "_pop_comment_count": 29.0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 17.0, + "_pop_comment_count": 25.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 915, - "_pop_score": 52.46, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 40.82, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/gotcha/ipdb/master/README.rst", - "_readme_localurl": "gotcha~ipdb~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pyparsing/pyparsing/master/README.rst", + "_readme_localurl": "pyparsing~pyparsing~README.rst", "_requirements_filenames": [ - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/gotcha/ipdb/master/setup.py", - "https://raw.githubusercontent.com/gotcha/ipdb/master/pyproject.toml" + "https://raw.githubusercontent.com/pyparsing/pyparsing/master/pyproject.toml" ], "_requirements_localurls": [ - "gotcha~ipdb~setup.py", - "gotcha~ipdb~pyproject.toml" + "pyparsing~pyparsing~pyproject.toml" ] }, { - "index": 330, - "category": "nlp", - "githuburl": "https://github.com/franck-dernoncourt/neuroner", - "featured": null, - "links": null, + "index": 543, + "category": "data", + "githuburl": "https://github.com/sqlalchemy/alembic", + "featured": null, + "links": null, "description": null, - "_repopath": "franck-dernoncourt/neuroner", - "_reponame": "NeuroNER", - "_stars": 1640, - "_forks": 483, - "_watches": 84, + "_repopath": "sqlalchemy/alembic", + "_reponame": "alembic", + "_stars": 1760, + "_forks": 175, + "_watches": 19, + "_language": "Python", + "_homepage": "", + "_description": "alembic: A database migrations tool for SQLAlchemy.", + "_organization": "sqlalchemy", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-11-27T00:00:00.000Z", + "_age_weeks": 221, + "_stars_per_week": 7.96, "_topics": [ - "nlp", - "machine-learning", - "neural-networks", - "named-entity-recognition", - "deep-learning", - "tensorflow" + "sqlalchemy", + "sql", + "python" ], - "_language": "Python", - "_homepage": "http://neuroner.com", - "_description": "NeuroNER: Named-entity recognition using neural networks. Easy-to-use and state-of-the-art results.", - "_organization": "franck-dernoncourt", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2019-10-02T00:00:00.000Z", - "_created_at": "2017-03-07T00:00:00.000Z", - "_age_weeks": 301, - "_stars_per_week": 5.43, - "_pop_contributor_count": 7, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 158, + "_pop_contributor_logins": [ + "AKamyshnikova@mirantis", + "BryceLohr", + "CaselIT", + "bbinet@helioslite", + "dahlia@planetarium", + "dtheodor", + "exhuma", + "gordthompson@self-employed", + "marcinkuzminski@rhodecode", + "zzzeek@redhat" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "mit" + "helioslite", + "mirantis", + "planetarium", + "redhat", + "rhodecode", + "self-employed" + ], + "_pop_contributor_orgs_raw": [ + "@Mirantis", + "@planetarium ", + "HeliosLite", + "Red Hat", + "RhodeCode Inc.", + "self-employed" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 70, - "_pop_updated_since_days": 39, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 4.0, - "_pop_comment_count": 2.0, + "_pop_commit_frequency": 1.5, + "_pop_updated_issues_count": 42, + "_pop_closed_issues_count": 27, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 26, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 42.0, + "_pop_comment_count": 111.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, + "_pop_comment_frequency": 2.6, "_pop_dependents_count": 0, - "_pop_score": 13.86, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/README.md", - "_readme_localurl": "franck-dernoncourt~neuroner~README.md", + "_pop_score": 49.11, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/sqlalchemy/alembic/master/README.rst", + "_readme_localurl": "sqlalchemy~alembic~README.rst", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/requirements.txt", - "https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/setup.py" + "https://raw.githubusercontent.com/sqlalchemy/alembic/master/setup.py", + "https://raw.githubusercontent.com/sqlalchemy/alembic/master/pyproject.toml" ], "_requirements_localurls": [ - "franck-dernoncourt~neuroner~requirements.txt", - "franck-dernoncourt~neuroner~setup.py" + "sqlalchemy~alembic~setup.py", + "sqlalchemy~alembic~pyproject.toml" ] }, { - "index": 699, - "category": "util", - "githuburl": "https://github.com/grantjenks/python-diskcache", + "index": 9, + "category": "ml", + "githuburl": "https://github.com/contextlab/hypertools", "featured": null, "links": null, "description": null, - "_repopath": "grantjenks/python-diskcache", - "_reponame": "python-diskcache", - "_stars": 1627, - "_forks": 106, - "_watches": 18, + "_repopath": "contextlab/hypertools", + "_reponame": "hypertools", + "_stars": 1760, + "_forks": 160, + "_watches": 60, + "_language": "Python", + "_homepage": "http://hypertools.readthedocs.io/en/latest/", + "_description": "hypertools: A Python toolbox for gaining geometric insights into high-dimensional data", + "_organization": "contextlab", + "_updated_at": "2023-02-15T00:00:00.000Z", + "_created_at": "2016-09-27T00:00:00.000Z", + "_age_weeks": 334, + "_stars_per_week": 5.27, "_topics": [ + "data-visualization", + "high-dimensional-data", "python", - "cache", - "persistence", - "key-value-store", - "filesystem" + "topic-modeling", + "text-vectorization", + "data-wrangling", + "visualization", + "time-series" ], - "_language": "Python", - "_homepage": "http://www.grantjenks.com/docs/diskcache/", - "_description": "python-diskcache: Python disk-backed cache (Django-compatible). Faster than Redis and Memcached. Pure-Python.", - "_organization": "grantjenks", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-02-20T00:00:00.000Z", - "_created_at": "2016-02-03T00:00:00.000Z", - "_age_weeks": 358, - "_stars_per_week": 4.54, - "_pop_contributor_count": 24, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-02-12T00:00:00.000Z", + "_pop_contributor_count": 21, + "_pop_contributor_logins": [ + "KirstensGitHub", + "alysivji", + "andrewheusser@akiliinteractive", + "chaseWilliams@together", + "jeremymanning@dartmouthcollege", + "joefink2896", + "lmcinnes@tutteinstituteformathematicsandcomputing", + "paxtonfitzpatrick@contextlabcosanlab", + "rarredon", + "swaroopgj@vicariousai" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "canonical" + "akiliinteractive", + "contextlabcosanlab", + "dartmouthcollege", + "together", + "tutteinstituteformathematicsandcomputing", + "vicariousai" + ], + "_pop_contributor_orgs_raw": [ + "@ContextLab @cosanlab", + "Akili Interactive", + "Dartmouth College", + "Together", + "Tutte Institute for Mathematics and Computing", + "Vicarious AI" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.15, - "_pop_updated_issues_count": 9, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 84, - "_pop_updated_since_days": 10, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 78, + "_pop_updated_since_days": 12, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 12, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 9.0, - "_pop_comment_count": 16.0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 65, - "_pop_score": 36.94, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/grantjenks/python-diskcache/master/README.rst", - "_readme_localurl": "grantjenks~python-diskcache~README.rst", + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 25.47, + "_readme_filename": "readme.md", + "_readme_giturl": "https://raw.githubusercontent.com/contextlab/hypertools/master/readme.md", + "_readme_localurl": "contextlab~hypertools~readme.md", "_requirements_filenames": [ "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/grantjenks/python-diskcache/master/requirements.txt", - "https://raw.githubusercontent.com/grantjenks/python-diskcache/master/setup.py" + "https://raw.githubusercontent.com/contextlab/hypertools/master/requirements.txt", + "https://raw.githubusercontent.com/contextlab/hypertools/master/setup.py" ], "_requirements_localurls": [ - "grantjenks~python-diskcache~requirements.txt", - "grantjenks~python-diskcache~setup.py" + "contextlab~hypertools~requirements.txt", + "contextlab~hypertools~setup.py" ] }, { - "index": 256, - "category": "crypto", - "githuburl": "https://github.com/bmoscon/cryptofeed", + "index": 25, + "category": "util", + "githuburl": "https://github.com/google/gin-config", "featured": null, "links": null, "description": null, - "_repopath": "bmoscon/cryptofeed", - "_reponame": "cryptofeed", - "_stars": 1610, - "_forks": 518, - "_watches": 74, - "_topics": [ - "python", - "trading", - "market-data", - "cryptocurrency", - "bitcoin", - "exchange", - "websockets", - "coinbase", - "binance", - "influxdb", - "asyncio", - "websocket", - "ftx-exchange", - "trading-platform", - "ethereum", - "cryptocurrencies", - "btc", - "crypto", - "coinbase-api" - ], + "_repopath": "google/gin-config", + "_reponame": "gin-config", + "_stars": 1755, + "_forks": 110, + "_watches": 24, "_language": "Python", "_homepage": "", - "_description": "cryptofeed: Cryptocurrency Exchange Websocket Data Feed Handler", - "_organization": "bmoscon", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2017-12-16T00:00:00.000Z", - "_age_weeks": 261, - "_stars_per_week": 6.16, - "_pop_contributor_count": 104, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.71, - "_pop_updated_issues_count": 32, - "_pop_closed_issues_count": 20, - "_pop_created_since_days": 61, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 7, - "_pop_recent_releases_estimated_tags": 14, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 32.0, - "_pop_comment_count": 33.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 173, - "_pop_score": 46.04, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/bmoscon/cryptofeed/master/README.md", - "_readme_localurl": "bmoscon~cryptofeed~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" + "_description": "gin-config: Gin provides a lightweight configuration framework for Python", + "_organization": "google", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-06-27T00:00:00.000Z", + "_age_weeks": 243, + "_stars_per_week": 7.22, + "_topics": [ + "python", + "configuration-management", + "tensorflow", + "tensorflow-experiments" ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/bmoscon/cryptofeed/master/requirements.txt", - "https://raw.githubusercontent.com/bmoscon/cryptofeed/master/setup.py", - "https://raw.githubusercontent.com/bmoscon/cryptofeed/master/pyproject.toml" + "_last_commit_date": "2022-12-05T00:00:00.000Z", + "_pop_contributor_count": 23, + "_pop_contributor_logins": [ + "Conchylicultor@google", + "adarob@google", + "cghawthorne", + "dhr", + "ericjang", + "gmrukwa@netguru", + "jaingaurav@google", + "kbanoop@google", + "sguada@google", + "yilei" ], - "_requirements_localurls": [ - "bmoscon~cryptofeed~requirements.txt", - "bmoscon~cryptofeed~setup.py", - "bmoscon~cryptofeed~pyproject.toml" - ] - }, - { - "index": 383, - "category": "nlp", - "githuburl": "https://github.com/minimaxir/aitextgen", - "featured": null, - "links": null, - "description": null, - "_repopath": "minimaxir/aitextgen", - "_reponame": "aitextgen", - "_stars": 1603, - "_forks": 182, - "_watches": 36, - "_topics": [], - "_language": "Python", - "_homepage": "https://docs.aitextgen.io", - "_description": "aitextgen: A robust Python tool for text-based AI training and generation using GPT-2.", - "_organization": "minimaxir", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-08-09T00:00:00.000Z", - "_created_at": "2019-12-29T00:00:00.000Z", - "_age_weeks": 155, - "_stars_per_week": 10.33, - "_pop_contributor_count": 9, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "buzzfeed", - "lightning-ai", - "quantcopy" + "google", + "netguru" + ], + "_pop_contributor_orgs_raw": [ + "@google", + "Google", + "Netguru" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.1, - "_pop_updated_issues_count": 8, + "_pop_commit_frequency": 0.12, + "_pop_updated_issues_count": 5, "_pop_closed_issues_count": 1, - "_pop_created_since_days": 36, - "_pop_updated_since_days": 4, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 8.0, - "_pop_comment_count": 13.0, + "_pop_created_since_days": 57, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 5.0, + "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, + "_pop_comment_frequency": 0.2, "_pop_dependents_count": 0, - "_pop_score": 25.52, + "_pop_score": 23.41, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/minimaxir/aitextgen/master/README.md", - "_readme_localurl": "minimaxir~aitextgen~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/google/gin-config/master/README.md", + "_readme_localurl": "google~gin-config~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/minimaxir/aitextgen/master/requirements.txt", - "https://raw.githubusercontent.com/minimaxir/aitextgen/master/setup.py" + "https://raw.githubusercontent.com/google/gin-config/master/setup.py" ], "_requirements_localurls": [ - "minimaxir~aitextgen~requirements.txt", - "minimaxir~aitextgen~setup.py" + "google~gin-config~setup.py" ] }, { - "index": 779, - "category": "nlp", - "githuburl": "https://github.com/deepset-ai/farm", + "index": 806, + "category": "web", + "githuburl": "https://github.com/python-restx/flask-restx", "featured": null, "links": null, "description": null, - "_repopath": "deepset-ai/farm", - "_reponame": "FARM", - "_stars": 1602, - "_forks": 232, - "_watches": 56, - "_topics": [ - "language-models", - "bert", - "nlp", - "deep-learning", - "transfer-learning", - "pytorch", - "nlp-library", - "nlp-framework", - "xlnet-pytorch", - "ner", - "question-answering", - "pretrained-models", - "roberta", - "germanbert" - ], + "_repopath": "python-restx/flask-restx", + "_reponame": "flask-restx", + "_stars": 1752, + "_forks": 293, + "_watches": 70, "_language": "Python", - "_homepage": "https://farm.deepset.ai", - "_description": "FARM: :house_with_garden: Fast & easy transfer learning for NLP. Harvesting language models for the industry. Focus on Question Answering.", - "_organization": "deepset-ai", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-08-31T00:00:00.000Z", - "_created_at": "2019-07-17T00:00:00.000Z", - "_age_weeks": 178, - "_stars_per_week": 8.96, - "_pop_contributor_count": 37, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "deepset" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.04, - "_pop_updated_issues_count": 1, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 42, - "_pop_updated_since_days": 4, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 1.0, - "_pop_comment_count": 0.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 39, - "_pop_score": 29.6, - "_readme_filename": "readme.rst", - "_readme_giturl": "https://raw.githubusercontent.com/deepset-ai/farm/master/readme.rst", - "_readme_localurl": "deepset-ai~farm~readme.rst", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/deepset-ai/farm/master/requirements.txt", - "https://raw.githubusercontent.com/deepset-ai/farm/master/setup.py" - ], - "_requirements_localurls": [ - "deepset-ai~farm~requirements.txt", - "deepset-ai~farm~setup.py" - ] - }, - { - "index": 509, - "category": "ml", - "githuburl": "https://github.com/tensorflow/addons", - "featured": null, - "links": null, - "description": null, - "_repopath": "tensorflow/addons", - "_reponame": "addons", - "_stars": 1596, - "_forks": 597, - "_watches": 58, + "_homepage": "https://flask-restx.readthedocs.io/en/latest/", + "_description": "flask-restx: Fork of Flask-RESTPlus: Fully featured framework for fast, easy and documented API development with Flask", + "_organization": "python-restx", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-01-09T00:00:00.000Z", + "_age_weeks": 162, + "_stars_per_week": 10.76, "_topics": [ - "machine-learning", - "deep-learning", - "tensorflow", - "neural-network", - "tensorflow-addons", - "python" + "python", + "api", + "swagger", + "flask", + "rest", + "json", + "restful", + "restplus", + "restx" ], - "_language": "Python", - "_homepage": "", - "_description": "addons: Useful extra functionality for TensorFlow 2.x maintained by SIG-addons", - "_organization": "tensorflow", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2018-11-26T00:00:00.000Z", - "_age_weeks": 212, - "_stars_per_week": 7.53, - "_pop_contributor_count": 200, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 140, + "_pop_contributor_logins": [ + "SteadBytes", + "arajkumar@timescale", + "avilaton", + "awiddersheim", + "calvin620707@kloudless", + "frol@q-bit", + "j5awry@canonical", + "noirbizarre@apihackers", + "plowman@parkade", + "ziirish" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "aws", - "googlers", - "preligens", - "systran" + "apihackers", + "canonical", + "kloudless", + "parkade", + "q-bit", + "timescale" + ], + "_pop_contributor_orgs_raw": [ + "@Timescale", + "@apihackers ", + "@kloudless", + "Canonical", + "Parkade", + "Q-bit" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.27, - "_pop_updated_issues_count": 53, - "_pop_closed_issues_count": 31, - "_pop_created_since_days": 49, + "_pop_commit_frequency": 0.73, + "_pop_updated_issues_count": 49, + "_pop_closed_issues_count": 19, + "_pop_created_since_days": 38, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 53.0, - "_pop_comment_count": 111.0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 49.0, + "_pop_comment_count": 79.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 2373, - "_pop_score": 60.9, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/tensorflow/addons/master/README.md", - "_readme_localurl": "tensorflow~addons~README.md", + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 44.44, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/python-restx/flask-restx/master/README.rst", + "_readme_localurl": "python-restx~flask-restx~README.rst", "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/tensorflow/addons/master/requirements.txt", - "https://raw.githubusercontent.com/tensorflow/addons/master/setup.py", - "https://raw.githubusercontent.com/tensorflow/addons/master/pyproject.toml" + "https://raw.githubusercontent.com/python-restx/flask-restx/master/setup.py" ], "_requirements_localurls": [ - "tensorflow~addons~requirements.txt", - "tensorflow~addons~setup.py", - "tensorflow~addons~pyproject.toml" + "python-restx~flask-restx~setup.py" ] }, { @@ -32576,10 +43853,18 @@ "links": null, "description": null, "_repopath": "alirezadir/machine-learning-interview-enlightener", - "_reponame": "machine-learning-interview-enlightener", - "_stars": 1586, - "_forks": 327, - "_watches": 47, + "_reponame": "machine-learning-interviews", + "_stars": 1745, + "_forks": 352, + "_watches": 49, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "machine-learning-interviews: This repo is meant to serve as a guide for Machine Learning/AI technical interviews. ", + "_organization": "alirezadir", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-01-31T00:00:00.000Z", + "_age_weeks": 107, + "_stars_per_week": 16.24, "_topics": [ "machine-learning", "machine-learning-algorithms", @@ -32592,28 +43877,34 @@ "interview-practice", "interviews" ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "machine-learning-interview-enlightener: This repo is meant to serve as a guide for Machine Learning/AI technical interviews. ", - "_organization": "alirezadir", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-05-25T00:00:00.000Z", - "_created_at": "2021-01-31T00:00:00.000Z", - "_age_weeks": 98, - "_stars_per_week": 16.16, + "_last_commit_date": "2023-02-20T00:00:00.000Z", "_pop_contributor_count": 6, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Anirudh257", + "alirezadir@meta", + "aroraayush@sdeliveramp", + "erjanmx", + "jthaller@bnl-ml-group", + "mehdizade" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "bnl-ml-group", "meta", "sdeliveramp" ], + "_pop_contributor_orgs_raw": [ + "@BNL-ML-Group", + "Meta", + "SDE @ Liveramp" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.12, + "_pop_commit_frequency": 0.6, "_pop_updated_issues_count": 1, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 23, - "_pop_updated_since_days": 7, + "_pop_created_since_days": 25, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -32622,7 +43913,7 @@ "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 14.13, + "_pop_score": 21.45, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/alirezadir/machine-learning-interview-enlightener/master/README.md", "_readme_localurl": "alirezadir~machine-learning-interview-enlightener~README.md", @@ -32631,55 +43922,162 @@ "_requirements_localurls": [] }, { - "index": 767, - "category": "study", - "githuburl": "https://github.com/fluentpython/example-code-2e", + "index": 302, + "category": "template", + "githuburl": "https://github.com/pyscaffold/pyscaffold", "featured": null, "links": null, "description": null, - "_repopath": "fluentpython/example-code-2e", - "_reponame": "example-code-2e", - "_stars": 1584, - "_forks": 464, - "_watches": 52, + "_repopath": "pyscaffold/pyscaffold", + "_reponame": "pyscaffold", + "_stars": 1723, + "_forks": 173, + "_watches": 40, + "_language": "Python", + "_homepage": "https://pyscaffold.org", + "_description": "pyscaffold: \ud83d\udee0 Python project template generator with batteries included", + "_organization": "pyscaffold", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2014-04-02T00:00:00.000Z", + "_age_weeks": 464, + "_stars_per_week": 3.71, "_topics": [ "python", - "python3", - "concurrency", - "iterators", - "metaprogramming", - "special-methods" + "release-automation", + "git", + "distribution", + "package-creation", + "template-project", + "project-template", + "package" ], - "_language": "Python", + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 56, + "_pop_contributor_logins": [ + "CarliJoy", + "FlorianWilhelm@inovex", + "HolgerPeters", + "QuLogic", + "abravalheri@universityofbristol", + "cpaulik@vandersat", + "jayvdb@franklin-ai", + "pre-commit-ci[bot]", + "smartsammler@karlsruheinstituteoftechnology", + "willu47@kth" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "franklin-ai", + "inovex", + "karlsruheinstituteoftechnology", + "kth", + "universityofbristol", + "vandersat" + ], + "_pop_contributor_orgs_raw": [ + "@franklin-ai", + "@inovex", + "@vandersat ", + "KTH", + "Karlsruhe Institute of Technology", + "University of Bristol" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.83, + "_pop_updated_issues_count": 29, + "_pop_closed_issues_count": 27, + "_pop_created_since_days": 108, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 22, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 29.0, + "_pop_comment_count": 44.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 46.97, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pyscaffold/pyscaffold/master/README.rst", + "_readme_localurl": "pyscaffold~pyscaffold~README.rst", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pyscaffold/pyscaffold/master/setup.py", + "https://raw.githubusercontent.com/pyscaffold/pyscaffold/master/pyproject.toml" + ], + "_requirements_localurls": [ + "pyscaffold~pyscaffold~setup.py", + "pyscaffold~pyscaffold~pyproject.toml" + ] + }, + { + "index": 767, + "category": "study", + "githuburl": "https://github.com/fluentpython/example-code-2e", + "featured": null, + "links": null, + "description": null, + "_repopath": "fluentpython/example-code-2e", + "_reponame": "example-code-2e", + "_stars": 1718, + "_forks": 517, + "_watches": 53, + "_language": "Python", "_homepage": "https://amzn.to/3J48u2J", "_description": "example-code-2e: Example code for Fluent Python, 2nd edition (O'Reilly 2022) ", "_organization": "fluentpython", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-04-24T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2019-03-21T00:00:00.000Z", - "_age_weeks": 195, - "_stars_per_week": 8.1, + "_age_weeks": 204, + "_stars_per_week": 8.39, + "_topics": [ + "python", + "python3", + "concurrency", + "iterators", + "metaprogramming", + "special-methods" + ], + "_last_commit_date": "2022-04-24T00:00:00.000Z", "_pop_contributor_count": 7, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Akay7", + "ScottMcCormack", + "anancds@huawei", + "dependabot[bot]", + "eumiro", + "kbaikov", + "ramalho@thoughtworksthoughtworksinc" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "huawei", "thoughtworksthoughtworksinc" ], + "_pop_contributor_orgs_raw": [ + "@thoughtworks @ThoughtWorksInc ", + "huawei" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.19, - "_pop_updated_issues_count": 3, + "_pop_commit_frequency": 0.06, + "_pop_updated_issues_count": 6, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 46, - "_pop_updated_since_days": 8, + "_pop_created_since_days": 48, + "_pop_updated_since_days": 10, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 3.0, + "_pop_issue_count": 6.0, "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.3, - "_pop_dependents_count": 35, - "_pop_score": 21.99, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 0, + "_pop_score": 17.02, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/fluentpython/example-code-2e/master/README.md", "_readme_localurl": "fluentpython~example-code-2e~README.md", @@ -32688,789 +44086,1196 @@ "_requirements_localurls": [] }, { - "index": 768, - "category": "ml-dl", - "githuburl": "https://github.com/fepegar/torchio", + "index": 365, + "category": "ml", + "githuburl": "https://github.com/rentruewang/koila", "featured": null, "links": null, "description": null, - "_repopath": "fepegar/torchio", - "_reponame": "torchio", - "_stars": 1577, - "_forks": 196, - "_watches": 15, + "_repopath": "rentruewang/koila", + "_reponame": "koila", + "_stars": 1715, + "_forks": 63, + "_watches": 11, + "_language": "Python", + "_homepage": "https://rentruewang.github.io/koila", + "_description": "koila: Prevent PyTorch's `CUDA error: out of memory` in just 1 line of code.", + "_organization": "rentruewang", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-11-17T00:00:00.000Z", + "_age_weeks": 66, + "_stars_per_week": 25.98, "_topics": [ "pytorch", - "medical-image-computing", - "deep-learning", - "data-augmentation", - "medical-images", - "machine-learning", + "lazy-evaluation", + "out-of-memory", "python", - "medical-image-processing", - "medical-image-analysis", - "medical-imaging-datasets", - "medical-imaging-with-deep-learning", - "augmentation" + "machine-learning", + "deep-learning", + "memory-management", + "gradient-accumulation", + "neural-network" ], - "_language": "Python", - "_homepage": "http://www.torchio.org", - "_description": "torchio: Medical imaging toolkit for deep learning", - "_organization": "fepegar", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-19T00:00:00.000Z", - "_created_at": "2019-11-26T00:00:00.000Z", - "_age_weeks": 159, - "_stars_per_week": 9.87, - "_pop_contributor_count": 41, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-07T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "dependabot[bot]", + "github-actions[bot]", + "ousou@iprally", + "rentruewang@collegeofcomputing,georgiatech" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "microsoftuclkcl-bmeis" + "collegeofcomputing,georgiatech", + "iprally" + ], + "_pop_contributor_orgs_raw": [ + "@iprally ", + "College of Computing, Georgia Tech" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.33, - "_pop_updated_issues_count": 47, - "_pop_closed_issues_count": 33, - "_pop_created_since_days": 37, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 0.5, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 15, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 83, - "_pop_recent_releases_adjusted_count": 83, - "_pop_issue_count": 47.0, - "_pop_comment_count": 115.0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.4, - "_pop_dependents_count": 14, - "_pop_score": 44.04, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 20.25, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/fepegar/torchio/master/README.md", - "_readme_localurl": "fepegar~torchio~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/rentruewang/koila/master/README.md", + "_readme_localurl": "rentruewang~koila~README.md", "_requirements_filenames": [ "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/fepegar/torchio/master/pyproject.toml" + "https://raw.githubusercontent.com/rentruewang/koila/master/pyproject.toml" ], "_requirements_localurls": [ - "fepegar~torchio~pyproject.toml" + "rentruewang~koila~pyproject.toml" ] }, { - "index": 195, - "category": "sim", - "githuburl": "https://github.com/pettingzoo-team/pettingzoo", + "index": 699, + "category": "util", + "githuburl": "https://github.com/grantjenks/python-diskcache", "featured": null, "links": null, "description": null, - "_repopath": "pettingzoo-team/pettingzoo", - "_reponame": "PettingZoo", - "_stars": 1576, - "_forks": 250, - "_watches": 16, - "_topics": [], + "_repopath": "grantjenks/python-diskcache", + "_reponame": "python-diskcache", + "_stars": 1702, + "_forks": 105, + "_watches": 19, "_language": "Python", - "_homepage": "https://pettingzoo.farama.org", - "_description": "PettingZoo: Gymnasium for multi-agent reinforcement learning", - "_organization": "pettingzoo-team", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-15T00:00:00.000Z", - "_created_at": "2020-01-20T00:00:00.000Z", - "_age_weeks": 152, - "_stars_per_week": 10.37, - "_pop_contributor_count": 79, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_homepage": "http://www.grantjenks.com/docs/diskcache/", + "_description": "python-diskcache: Python disk-backed cache (Django-compatible). Faster than Redis and Memcached. Pure-Python.", + "_organization": "grantjenks", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-02-03T00:00:00.000Z", + "_age_weeks": 368, + "_stars_per_week": 4.62, + "_topics": [ + "python", + "cache", + "persistence", + "key-value-store", + "filesystem" + ], + "_last_commit_date": "2022-02-20T00:00:00.000Z", + "_pop_contributor_count": 24, + "_pop_contributor_logins": [ + "AbhinavOmprakash", + "Cologler", + "elistevens@zoox", + "grantjenks", + "i404788", + "jugmac00@canonical", + "maxking", + "raratiru", + "rkubik", + "tamirOK" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "morganstanley" + "canonical", + "zoox" + ], + "_pop_contributor_orgs_raw": [ + "@canonical", + "Zoox" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 10.38, - "_pop_updated_issues_count": 87, - "_pop_closed_issues_count": 70, - "_pop_created_since_days": 35, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 12, - "_pop_recent_releases_estimated_tags": 11, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 86, + "_pop_updated_since_days": 12, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 12, "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 87.0, - "_pop_comment_count": 116.0, + "_pop_issue_count": 10.0, + "_pop_comment_count": 20.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 40, - "_pop_score": 47.54, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pettingzoo-team/pettingzoo/master/README.md", - "_readme_localurl": "pettingzoo-team~pettingzoo~README.md", + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 31.19, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/grantjenks/python-diskcache/master/README.rst", + "_readme_localurl": "grantjenks~python-diskcache~README.rst", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pettingzoo-team/pettingzoo/master/setup.py", - "https://raw.githubusercontent.com/pettingzoo-team/pettingzoo/master/pyproject.toml" + "https://raw.githubusercontent.com/grantjenks/python-diskcache/master/requirements.txt", + "https://raw.githubusercontent.com/grantjenks/python-diskcache/master/setup.py" ], "_requirements_localurls": [ - "pettingzoo-team~pettingzoo~setup.py", - "pettingzoo-team~pettingzoo~pyproject.toml" + "grantjenks~python-diskcache~requirements.txt", + "grantjenks~python-diskcache~setup.py" ] }, { - "index": 263, - "category": "sim", - "githuburl": "https://github.com/quantecon/quantecon.py", + "index": 416, + "category": "ml", + "githuburl": "https://github.com/bmabey/pyldavis", "featured": null, "links": null, "description": null, - "_repopath": "quantecon/quantecon.py", - "_reponame": "QuantEcon.py", - "_stars": 1566, - "_forks": 2108, - "_watches": 151, + "_repopath": "bmabey/pyldavis", + "_reponame": "pyLDAvis", + "_stars": 1686, + "_forks": 349, + "_watches": 57, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "pyLDAvis: Python library for interactive topic model visualization. Port of the R LDAvis package.", + "_organization": "bmabey", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-04-09T00:00:00.000Z", + "_age_weeks": 410, + "_stars_per_week": 4.1, "_topics": [], - "_language": "Python", - "_homepage": "https://quantecon.org/quantecon-py/", - "_description": "QuantEcon.py: A community based Python library for quantitative economics", - "_organization": "quantecon", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2013-03-22T00:00:00.000Z", - "_age_weeks": 508, - "_stars_per_week": 3.08, - "_pop_contributor_count": 40, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 39, + "_pop_contributor_logins": [ + "OliRafa", + "betolink", + "bmabey", + "cemoody@gumtap", + "cpsievert@rstudio", + "janrygl@rndr.janrygl", + "mattilyra@zalandose", + "msusol@google", + "paul-english", + "yxtay" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "australiannationaluniversity", - "kingabdullahuniversityofscienceandtechnology", - "umaprotocol", - "universityoftokyo" + "google", + "gumtap", + "rndr.janrygl", + "rstudio", + "zalandose" + ], + "_pop_contributor_orgs_raw": [ + "@gumtap ", + "@rstudio", + "Google", + "RNDr. Jan Rygl", + "Zalando SE" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.73, - "_pop_updated_issues_count": 66, - "_pop_closed_issues_count": 37, - "_pop_created_since_days": 119, + "_pop_commit_frequency": 0.29, + "_pop_updated_issues_count": 37, + "_pop_closed_issues_count": 33, + "_pop_created_since_days": 96, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 66.0, - "_pop_comment_count": 168.0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 37.0, + "_pop_comment_count": 32.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 932, - "_pop_score": 56.56, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/quantecon/quantecon.py/master/README.md", - "_readme_localurl": "quantecon~quantecon.py~README.md", + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 39.55, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/bmabey/pyldavis/master/README.rst", + "_readme_localurl": "bmabey~pyldavis~README.rst", "_requirements_filenames": [ - "pyproject.toml" + "requirements.txt", + "setup.py", + "pyproject.toml", + "Pipfile" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/quantecon/quantecon.py/master/pyproject.toml" + "https://raw.githubusercontent.com/bmabey/pyldavis/master/requirements.txt", + "https://raw.githubusercontent.com/bmabey/pyldavis/master/setup.py", + "https://raw.githubusercontent.com/bmabey/pyldavis/master/pyproject.toml", + "https://raw.githubusercontent.com/bmabey/pyldavis/master/Pipfile" ], "_requirements_localurls": [ - "quantecon~quantecon.py~pyproject.toml" + "bmabey~pyldavis~requirements.txt", + "bmabey~pyldavis~setup.py", + "bmabey~pyldavis~pyproject.toml", + "bmabey~pyldavis~Pipfile" ] }, { - "index": 597, - "category": "time-series", - "githuburl": "https://github.com/uber/orbit", + "index": 383, + "category": "nlp", + "githuburl": "https://github.com/minimaxir/aitextgen", "featured": null, "links": null, "description": null, - "_repopath": "uber/orbit", - "_reponame": "orbit", - "_stars": 1562, - "_forks": 117, - "_watches": 32, - "_topics": [ - "python", - "forecasting", - "bayesian", - "exponential-smoothing", - "pyro", - "stan", - "pystan", - "probabilistic-programming", - "probabilistic", - "forecast", - "orbit", - "time-series", - "regression", - "arima", - "changepoint", - "bayesian-methods", - "bayesian-statistics", - "machine-learning", - "regression-models", - "pytorch" - ], + "_repopath": "minimaxir/aitextgen", + "_reponame": "aitextgen", + "_stars": 1679, + "_forks": 194, + "_watches": 36, "_language": "Python", - "_homepage": "https://orbit-ml.readthedocs.io/en/stable/", - "_description": "orbit: A Python package for Bayesian forecasting with object-oriented design and probabilistic models under the hood.", - "_organization": "uber", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", - "_created_at": "2020-01-07T00:00:00.000Z", - "_age_weeks": 153, - "_stars_per_week": 10.15, - "_pop_contributor_count": 18, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://docs.aitextgen.io", + "_description": "aitextgen: A robust Python tool for text-based AI training and generation using GPT-2.", + "_organization": "minimaxir", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-12-29T00:00:00.000Z", + "_age_weeks": 164, + "_stars_per_week": 10.21, + "_topics": [], + "_last_commit_date": "2022-08-09T00:00:00.000Z", + "_pop_contributor_count": 9, + "_pop_contributor_logins": [ + "BPCZ", + "cdpierse@quantcopy", + "cuuupid", + "kaushikb11@lightning-ai", + "leetfin@arisiainc", + "minimaxir@buzzfeed", + "reducibly", + "tientr" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "uber" + "arisiainc", + "buzzfeed", + "lightning-ai", + "quantcopy" + ], + "_pop_contributor_orgs_raw": [ + "@ArisiaInc", + "@Lightning-AI", + "@buzzfeed ", + "@quantcopy" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.6, - "_pop_updated_issues_count": 15, - "_pop_closed_issues_count": 7, - "_pop_created_since_days": 36, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 15.0, - "_pop_comment_count": 11.0, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 38, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 16.0, + "_pop_comment_count": 19.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 22, - "_pop_score": 34.74, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 25.8, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/uber/orbit/master/README.md", - "_readme_localurl": "uber~orbit~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/minimaxir/aitextgen/master/README.md", + "_readme_localurl": "minimaxir~aitextgen~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/uber/orbit/master/requirements.txt", - "https://raw.githubusercontent.com/uber/orbit/master/setup.py", - "https://raw.githubusercontent.com/uber/orbit/master/pyproject.toml" + "https://raw.githubusercontent.com/minimaxir/aitextgen/master/requirements.txt", + "https://raw.githubusercontent.com/minimaxir/aitextgen/master/setup.py" ], "_requirements_localurls": [ - "uber~orbit~requirements.txt", - "uber~orbit~setup.py", - "uber~orbit~pyproject.toml" + "minimaxir~aitextgen~requirements.txt", + "minimaxir~aitextgen~setup.py" ] }, { - "index": 377, - "category": "ml-interpretability", - "githuburl": "https://github.com/jalammar/ecco", - "featured": null, + "index": 217, + "category": "ml", + "githuburl": "https://github.com/linkedin/greykite", + "featured": 1.0, "links": null, "description": null, - "_repopath": "jalammar/ecco", - "_reponame": "ecco", - "_stars": 1556, - "_forks": 111, - "_watches": 20, - "_topics": [ - "nlp", - "visualization", - "explorables", - "natural-language-processing", - "pytorch", - "language-models" + "_repopath": "linkedin/greykite", + "_reponame": "greykite", + "_stars": 1672, + "_forks": 92, + "_watches": 37, + "_language": "Python", + "_homepage": "", + "_description": "greykite: A flexible, intuitive and fast forecasting library", + "_organization": "linkedin", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2021-04-27T00:00:00.000Z", + "_age_weeks": 95, + "_stars_per_week": 17.57, + "_topics": [], + "_last_commit_date": "2022-08-31T00:00:00.000Z", + "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "KaixuYang@linkedin", + "Reza1317", + "al-bert", + "dromare@pepsico", + "martinmenchon@bayer", + "njusu@linkedin" ], - "_language": "Jupyter Notebook", - "_homepage": "https://ecco.readthedocs.io", - "_description": "ecco: Explain, analyze, and visualize NLP language models. Ecco creates interactive visualizations directly in Jupyter notebooks explaining the behavior of Transformer-based language models (like GPT2, BERT, RoBERTA, T5, and T0).", - "_organization": "jalammar", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-01-18T00:00:00.000Z", - "_created_at": "2020-11-07T00:00:00.000Z", - "_age_weeks": 110, - "_stars_per_week": 14.11, - "_pop_contributor_count": 10, "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "cohere-ai", - "outsystems", - "truefoundry" + "bayer", + "linkedin", + "pepsico" + ], + "_pop_contributor_orgs_raw": [ + "Bayer", + "LinkedIn", + "PepsiCo" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.62, + "_pop_commit_frequency": 0.08, "_pop_updated_issues_count": 9, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 26, - "_pop_updated_since_days": 11, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 3, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 22, + "_pop_updated_since_days": 6, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, "_pop_issue_count": 9.0, - "_pop_comment_count": 5.0, + "_pop_comment_count": 18.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 3, - "_pop_score": 26.12, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 24.37, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/jalammar/ecco/master/README.rst", - "_readme_localurl": "jalammar~ecco~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/linkedin/greykite/master/README.rst", + "_readme_localurl": "linkedin~greykite~README.rst", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/jalammar/ecco/master/requirements.txt", - "https://raw.githubusercontent.com/jalammar/ecco/master/setup.py" + "https://raw.githubusercontent.com/linkedin/greykite/master/setup.py" ], "_requirements_localurls": [ - "jalammar~ecco~requirements.txt", - "jalammar~ecco~setup.py" + "linkedin~greykite~setup.py" ] }, { - "index": 299, - "category": "util", - "githuburl": "https://github.com/julienpalard/pipe", + "index": 795, + "category": "web", + "githuburl": "https://github.com/starlite-api/starlite", "featured": null, "links": null, "description": null, - "_repopath": "julienpalard/pipe", - "_reponame": "Pipe", - "_stars": 1544, - "_forks": 101, - "_watches": 26, - "_topics": [], + "_repopath": "starlite-api/starlite", + "_reponame": "starlite", + "_stars": 1669, + "_forks": 166, + "_watches": 27, "_language": "Python", - "_homepage": "", - "_description": "Pipe: A Python library to use infix notation in Python", - "_organization": "julienpalard", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-16T00:00:00.000Z", - "_created_at": "2010-04-08T00:00:00.000Z", - "_age_weeks": 662, - "_stars_per_week": 2.33, - "_pop_contributor_count": 25, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "sumologic" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.37, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 155, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 2.0, - "_pop_comment_count": 2.0, + "_homepage": "https://starliteproject.dev", + "_description": "starlite: Light, Flexible and Extensible ASGI API framework | Effortlessly Build Performant APIs", + "_organization": "starlite-api", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2021-12-06T00:00:00.000Z", + "_age_weeks": 63, + "_stars_per_week": 26.37, + "_topics": [ + "python", + "api", + "rest", + "pydantic", + "asgi", + "openapi", + "redoc", + "starlite", + "starlite-api", + "swagger", + "starlite-framework" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 89, + "_pop_contributor_logins": [ + "Goldziher@safehousetechnologies", + "allcontributors[bot]", + "ashwinvin", + "cofin", + "dkress59@alexhealthcaregmbh", + "jtraub", + "peterschutt", + "provinzkraut", + "seladb", + "yudjinn@vestrasoftware" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "alexhealthcaregmbh", + "safehousetechnologies", + "vestrasoftware" + ], + "_pop_contributor_orgs_raw": [ + "SafeHouse Technologies", + "Vestra Software, LLC", + "alex healthcare GmbH" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 17.92, + "_pop_updated_issues_count": 385, + "_pop_closed_issues_count": 356, + "_pop_created_since_days": 15, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 102, + "_pop_recent_releases_estimated_tags": 109, + "_pop_recent_releases_adjusted_count": 102, + "_pop_issue_count": 385.0, + "_pop_comment_count": 786.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 2, - "_pop_score": 30.39, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 49.76, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/julienpalard/pipe/master/README.md", - "_readme_localurl": "julienpalard~pipe~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/starlite-api/starlite/master/README.md", + "_readme_localurl": "starlite-api~starlite~README.md", "_requirements_filenames": [ "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/julienpalard/pipe/master/pyproject.toml" + "https://raw.githubusercontent.com/starlite-api/starlite/master/pyproject.toml" ], "_requirements_localurls": [ - "julienpalard~pipe~pyproject.toml" + "starlite-api~starlite~pyproject.toml" ] }, { - "index": 143, - "category": "nlp", - "githuburl": "https://github.com/plasticityai/magnitude", + "index": 256, + "category": "crypto", + "githuburl": "https://github.com/bmoscon/cryptofeed", "featured": null, "links": null, "description": null, - "_repopath": "plasticityai/magnitude", - "_reponame": "magnitude", - "_stars": 1544, - "_forks": 113, - "_watches": 37, + "_repopath": "bmoscon/cryptofeed", + "_reponame": "cryptofeed", + "_stars": 1669, + "_forks": 539, + "_watches": 75, + "_language": "Python", + "_homepage": "", + "_description": "cryptofeed: Cryptocurrency Exchange Websocket Data Feed Handler", + "_organization": "bmoscon", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-12-16T00:00:00.000Z", + "_age_weeks": 270, + "_stars_per_week": 6.17, "_topics": [ "python", - "natural-language-processing", - "nlp", - "machine-learning", - "vectors", - "embeddings", - "word2vec", - "fasttext", - "glove", - "gensim", - "fast", - "memory-efficient", - "machine-learning-library", - "word-embeddings" + "trading", + "market-data", + "cryptocurrency", + "bitcoin", + "exchange", + "websockets", + "coinbase", + "binance", + "influxdb", + "asyncio", + "websocket", + "ftx-exchange", + "trading-platform", + "ethereum", + "cryptocurrencies", + "btc", + "crypto", + "coinbase-api" ], - "_language": "Python", - "_homepage": null, - "_description": "magnitude: A fast, efficient universal vector embedding utility package.", - "_organization": "plasticityai", - "_updated_at": "2022-12-12T00:00:00.000Z", - "_last_commit_date": "2020-07-17T00:00:00.000Z", - "_created_at": "2018-02-24T00:00:00.000Z", - "_age_weeks": 251, - "_stars_per_week": 6.14, - "_pop_contributor_count": 4, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "plasticityai" + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 105, + "_pop_contributor_logins": [ + "Dynamikey", + "MarechJ", + "PandaXcentric", + "abashinfection", + "bmoscon", + "dependabot[bot]", + "evil-maid", + "olibre", + "peedrr", + "vdbelt" ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 59, - "_pop_updated_since_days": 29, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 29, - "_pop_recent_releases_adjusted_count": 29, - "_pop_issue_count": 2.0, - "_pop_comment_count": 1.0, + "_pop_commit_frequency": 2.23, + "_pop_updated_issues_count": 20, + "_pop_closed_issues_count": 12, + "_pop_created_since_days": 63, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 20.0, + "_pop_comment_count": 17.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 6, - "_pop_score": 21.4, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 34.65, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/plasticityai/magnitude/master/README.md", - "_readme_localurl": "plasticityai~magnitude~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/bmoscon/cryptofeed/master/README.md", + "_readme_localurl": "bmoscon~cryptofeed~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/plasticityai/magnitude/master/requirements.txt", - "https://raw.githubusercontent.com/plasticityai/magnitude/master/setup.py" + "https://raw.githubusercontent.com/bmoscon/cryptofeed/master/requirements.txt", + "https://raw.githubusercontent.com/bmoscon/cryptofeed/master/setup.py", + "https://raw.githubusercontent.com/bmoscon/cryptofeed/master/pyproject.toml" ], "_requirements_localurls": [ - "plasticityai~magnitude~requirements.txt", - "plasticityai~magnitude~setup.py" + "bmoscon~cryptofeed~requirements.txt", + "bmoscon~cryptofeed~setup.py", + "bmoscon~cryptofeed~pyproject.toml" ] }, { - "index": 596, - "category": "data", - "githuburl": "https://github.com/uber/petastorm", + "index": 195, + "category": "sim", + "githuburl": "https://github.com/pettingzoo-team/pettingzoo", "featured": null, "links": null, "description": null, - "_repopath": "uber/petastorm", - "_reponame": "petastorm", - "_stars": 1543, - "_forks": 265, - "_watches": 41, - "_topics": [ - "tensorflow", - "pytorch", - "deep-learning", - "machine-learning", - "sysml", - "pyspark", - "pyarrow", - "parquet", - "parquet-files" - ], + "_repopath": "pettingzoo-team/pettingzoo", + "_reponame": "PettingZoo", + "_stars": 1667, + "_forks": 266, + "_watches": 19, "_language": "Python", - "_homepage": "", - "_description": "Petastorm library enables single machine or distributed training and evaluation of deep learning models from datasets in Apache Parquet format. It supports ML frameworks such as Tensorflow, Pytorch, and PySpark and can be used from pure Python code.", - "_organization": "uber", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2018-06-15T00:00:00.000Z", - "_age_weeks": 235, - "_stars_per_week": 6.55, - "_pop_contributor_count": 46, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://pettingzoo.farama.org", + "_description": "PettingZoo: A standard API for multi-agent reinforcement learning environments, with popular reference environments and related utilities", + "_organization": "pettingzoo-team", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-01-20T00:00:00.000Z", + "_age_weeks": 161, + "_stars_per_week": 10.34, + "_topics": [], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 81, + "_pop_contributor_logins": [ + "AnanthHari", + "Kyle-Sang", + "MarioJayakumar@morganstanley", + "RyanNavillus", + "WillDudley", + "benblack769", + "jjshoots", + "jkterry1", + "lssr", + "rodrigodelazcano" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "databricks", - "netflix", - "uber" + "morganstanley" + ], + "_pop_contributor_orgs_raw": [ + "Morgan Stanley" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.46, - "_pop_updated_issues_count": 13, - "_pop_closed_issues_count": 5, - "_pop_created_since_days": 55, + "_pop_commit_frequency": 7.71, + "_pop_updated_issues_count": 27, + "_pop_closed_issues_count": 12, + "_pop_created_since_days": 38, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 11, - "_pop_recent_releases_estimated_tags": 25, - "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 13.0, - "_pop_comment_count": 27.0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 27.0, + "_pop_comment_count": 24.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 10, - "_pop_score": 44.55, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/uber/petastorm/master/README.rst", - "_readme_localurl": "uber~petastorm~README.rst", + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 39.62, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pettingzoo-team/pettingzoo/master/README.md", + "_readme_localurl": "pettingzoo-team~pettingzoo~README.md", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/uber/petastorm/master/setup.py" + "https://raw.githubusercontent.com/pettingzoo-team/pettingzoo/master/setup.py", + "https://raw.githubusercontent.com/pettingzoo-team/pettingzoo/master/pyproject.toml" ], "_requirements_localurls": [ - "uber~petastorm~setup.py" + "pettingzoo-team~pettingzoo~setup.py", + "pettingzoo-team~pettingzoo~pyproject.toml" ] }, { - "index": 311, - "category": "util", - "githuburl": "https://github.com/linkedin/shiv", + "index": 424, + "category": "debug", + "githuburl": "https://github.com/gotcha/ipdb", "featured": null, "links": null, "description": null, - "_repopath": "linkedin/shiv", - "_reponame": "shiv", - "_stars": 1532, - "_forks": 84, - "_watches": 26, - "_topics": [], + "_repopath": "gotcha/ipdb", + "_reponame": "ipdb", + "_stars": 1664, + "_forks": 146, + "_watches": 27, "_language": "Python", "_homepage": "", - "_description": "shiv is a command line utility for building fully self contained Python zipapps as outlined in PEP 441, but with all their dependencies included.", - "_organization": "linkedin", - "_updated_at": "2022-12-13T00:00:00.000Z", - "_last_commit_date": "2022-11-04T00:00:00.000Z", - "_created_at": "2018-03-13T00:00:00.000Z", - "_age_weeks": 248, - "_stars_per_week": 6.16, - "_pop_contributor_count": 39, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_description": "ipdb: Integration of IPython pdb", + "_organization": "gotcha", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2011-01-15T00:00:00.000Z", + "_age_weeks": 631, + "_stars_per_week": 2.63, + "_topics": [ + "python", + "ipython", + "debugger" + ], + "_last_commit_date": "2022-12-13T00:00:00.000Z", + "_pop_contributor_count": 54, + "_pop_contributor_logins": [ + "MrMino@nokia", + "PiDelport", + "Psycojoker", + "alanbernstein@pilosa", + "alexandrebarbaruiva@let'sdelivery", + "andreagrandi@laterpay", + "dimasad@universidadefederaldeminasgerais", + "gnebehay@locatee", + "gotcha@bubblenet", + "takluyver" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "lincolnloop", - "linkedin", - "mam-dev" + "bubblenet", + "laterpay", + "let'sdelivery", + "locatee", + "nokia", + "pilosa", + "universidadefederaldeminasgerais" + ], + "_pop_contributor_orgs_raw": [ + "@laterpay", + "@pilosa ", + "BubbleNet", + "Let's Delivery", + "Locatee", + "Nokia", + "Universidade Federal de Minas Gerais" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.21, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 58, + "_pop_commit_frequency": 0.25, + "_pop_updated_issues_count": 24, + "_pop_closed_issues_count": 15, + "_pop_created_since_days": 147, "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 4.0, - "_pop_comment_count": 3.0, + "_pop_issue_count": 24.0, + "_pop_comment_count": 39.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 8, - "_pop_score": 35.4, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/linkedin/shiv/master/README.md", - "_readme_localurl": "linkedin~shiv~README.md", + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 41.39, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/gotcha/ipdb/master/README.rst", + "_readme_localurl": "gotcha~ipdb~README.rst", "_requirements_filenames": [ + "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/linkedin/shiv/master/pyproject.toml" + "https://raw.githubusercontent.com/gotcha/ipdb/master/setup.py", + "https://raw.githubusercontent.com/gotcha/ipdb/master/pyproject.toml" ], "_requirements_localurls": [ - "linkedin~shiv~pyproject.toml" + "gotcha~ipdb~setup.py", + "gotcha~ipdb~pyproject.toml" ] }, { - "index": 662, - "category": "util", - "githuburl": "https://github.com/numba/llvmlite", + "index": 922, + "category": "profiling", + "githuburl": "https://github.com/pyutils/line_profiler", "featured": null, "links": null, "description": null, - "_repopath": "numba/llvmlite", - "_reponame": "llvmlite", - "_stars": 1526, - "_forks": 289, - "_watches": 54, + "_repopath": "pyutils/line_profiler", + "_reponame": "line_profiler", + "_stars": 1655, + "_forks": 96, + "_watches": 16, + "_language": "Cython", + "_homepage": null, + "_description": "line_profiler: Line-by-line profiling for Python", + "_organization": "pyutils", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-12-10T00:00:00.000Z", + "_age_weeks": 167, + "_stars_per_week": 9.9, "_topics": [], - "_language": "Python", - "_homepage": "http://llvmlite.pydata.org/", - "_description": "llvmlite: A lightweight LLVM python binding for writing JIT compilers", - "_organization": "numba", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2014-08-07T00:00:00.000Z", - "_age_weeks": 436, - "_stars_per_week": 3.5, - "_pop_contributor_count": 81, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-12-09T00:00:00.000Z", + "_pop_contributor_count": 38, + "_pop_contributor_logins": [ + "Erotemic@kitware", + "Hanaasagi", + "Nodd@onera", + "Theelx", + "artemisart", + "caethan", + "dependabot[bot]", + "kmike@zytedata,scrapinghub", + "mforbes@washingtonstateuniversity", + "rkern@enthought" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "anaconda" + "enthought", + "kitware", + "onera", + "washingtonstateuniversity", + "zytedata,scrapinghub" + ], + "_pop_contributor_orgs_raw": [ + "@Kitware", + "@enthought ", + "@zytedata, @ScrapingHub", + "ONERA", + "Washington State University" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.71, - "_pop_updated_issues_count": 30, - "_pop_closed_issues_count": 14, - "_pop_created_since_days": 102, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 13, - "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 30.0, - "_pop_comment_count": 87.0, + "_pop_commit_frequency": 1.48, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 39, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 16.0, + "_pop_comment_count": 43.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.9, - "_pop_dependents_count": 458, - "_pop_score": 54.36, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 0, + "_pop_score": 38.86, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/numba/llvmlite/master/README.rst", - "_readme_localurl": "numba~llvmlite~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pyutils/line_profiler/master/README.rst", + "_readme_localurl": "pyutils~line_profiler~README.rst", "_requirements_filenames": [ - "setup.py" + "requirements.txt", + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/numba/llvmlite/master/setup.py" + "https://raw.githubusercontent.com/pyutils/line_profiler/master/requirements.txt", + "https://raw.githubusercontent.com/pyutils/line_profiler/master/setup.py", + "https://raw.githubusercontent.com/pyutils/line_profiler/master/pyproject.toml" ], "_requirements_localurls": [ - "numba~llvmlite~setup.py" + "pyutils~line_profiler~requirements.txt", + "pyutils~line_profiler~setup.py", + "pyutils~line_profiler~pyproject.toml" ] }, { - "index": 635, - "category": "debug", - "githuburl": "https://github.com/alexmojaki/birdseye", + "index": 330, + "category": "nlp", + "githuburl": "https://github.com/franck-dernoncourt/neuroner", "featured": null, "links": null, "description": null, - "_repopath": "alexmojaki/birdseye", - "_reponame": "birdseye", - "_stars": 1524, - "_forks": 76, - "_watches": 43, + "_repopath": "franck-dernoncourt/neuroner", + "_reponame": "NeuroNER", + "_stars": 1645, + "_forks": 485, + "_watches": 84, + "_language": "Python", + "_homepage": "http://neuroner.com", + "_description": "NeuroNER: Named-entity recognition using neural networks. Easy-to-use and state-of-the-art results.", + "_organization": "franck-dernoncourt", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2017-03-07T00:00:00.000Z", + "_age_weeks": 311, + "_stars_per_week": 5.29, "_topics": [ - "python-debugger", - "python", - "debugger", - "debugging", - "birdseye", - "ast" + "nlp", + "machine-learning", + "neural-networks", + "named-entity-recognition", + "deep-learning", + "tensorflow" ], - "_language": "JavaScript", - "_homepage": "https://birdseye.readthedocs.io", - "_description": "birdseye: Graphical Python debugger which lets you easily view the values of all evaluated expressions", - "_organization": "alexmojaki", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-05-18T00:00:00.000Z", - "_created_at": "2017-07-22T00:00:00.000Z", - "_age_weeks": 282, - "_stars_per_week": 5.4, - "_pop_contributor_count": 10, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2019-10-02T00:00:00.000Z", + "_pop_contributor_count": 7, + "_pop_contributor_logins": [ + "Franck-Dernoncourt", + "Gregory-Howard", + "JohnGiorgi@universityoftoronto", + "jennyjylee", + "toltoxgh", + "tompollard@mit" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "actcommodities", - "cybernetica", - "skelevilletechnologysolutions" + "mit", + "universityoftoronto" + ], + "_pop_contributor_orgs_raw": [ + "MIT", + "University of Toronto" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.04, - "_pop_updated_issues_count": 2, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 1, "_pop_closed_issues_count": 1, - "_pop_created_since_days": 66, - "_pop_updated_since_days": 7, + "_pop_created_since_days": 73, + "_pop_updated_since_days": 41, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 2.0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 8, - "_pop_score": 26.84, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/alexmojaki/birdseye/master/README.rst", - "_readme_localurl": "alexmojaki~birdseye~README.rst", + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 16.42, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/README.md", + "_readme_localurl": "franck-dernoncourt~neuroner~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/alexmojaki/birdseye/master/setup.py", - "https://raw.githubusercontent.com/alexmojaki/birdseye/master/pyproject.toml" + "https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/requirements.txt", + "https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/setup.py" ], "_requirements_localurls": [ - "alexmojaki~birdseye~setup.py", - "alexmojaki~birdseye~pyproject.toml" + "franck-dernoncourt~neuroner~requirements.txt", + "franck-dernoncourt~neuroner~setup.py" ] }, { - "index": 795, - "category": "web", - "githuburl": "https://github.com/starlite-api/starlite", + "index": 436, + "category": "nlp", + "githuburl": "https://github.com/recognai/rubrix", "featured": null, "links": null, "description": null, - "_repopath": "starlite-api/starlite", - "_reponame": "starlite", - "_stars": 1520, - "_forks": 141, - "_watches": 22, + "_repopath": "recognai/rubrix", + "_reponame": "argilla", + "_stars": 1639, + "_forks": 150, + "_watches": 19, + "_language": "Python", + "_homepage": "https://docs.argilla.io", + "_description": "argilla: \u2728 Open-source tool for data-centric NLP. Argilla helps domain experts and data teams to build better NLP datasets in less time.", + "_organization": "recognai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-04-28T00:00:00.000Z", + "_age_weeks": 95, + "_stars_per_week": 17.25, "_topics": [ "python", - "api", - "rest", - "mypy", - "pydantic", - "types", - "asgi", - "json", - "openapi", - "redoc", - "starlette" + "data-science", + "human-in-the-loop", + "natural-language-processing", + "mlops", + "artificial-intelligence", + "knowledge-graph", + "developer-tools", + "text-labeling", + "annotation-tool", + "nlp", + "machine-learning", + "active-learning", + "weak-supervision", + "weakly-supervised-learning", + "spacy", + "text-classification", + "dataops", + "text-annotation", + "hacktoberfest" ], - "_language": "Python", - "_homepage": "https://starlite-api.github.io/starlite/", - "_description": "starlite: Light, Flexible and Extensible ASGI API framework", - "_organization": "starlite-api", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2021-12-06T00:00:00.000Z", - "_age_weeks": 54, - "_stars_per_week": 28.15, - "_pop_contributor_count": 71, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 39, + "_pop_contributor_logins": [ + "davidberenstein1957@argilla-io", + "dcfidalgo@maxplanckcomputing&datafacility", + "dependabot[bot]", + "dvsrepo@argilla.io", + "frascuchon@recognai", + "ignacioct@aarhusuniversity,vestas", + "keithCuniah@argilla.io", + "leireropl", + "leiyre", + "tomaarsen@argilla" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "safehousetechnologies" + "aarhusuniversity,vestas", + "argilla", + "argilla-io", + "argilla.io", + "maxplanckcomputing&datafacility", + "recognai" + ], + "_pop_contributor_orgs_raw": [ + "@argilla-io ", + "Aarhus University, Vestas", + "Argilla", + "Argilla.io", + "Max Planck Computing & Data Facility", + "Recognai", + "argilla.io" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 19.87, - "_pop_updated_issues_count": 437, - "_pop_closed_issues_count": 412, - "_pop_created_since_days": 13, + "_pop_commit_frequency": 10.23, + "_pop_updated_issues_count": 533, + "_pop_closed_issues_count": 343, + "_pop_created_since_days": 22, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 119, - "_pop_recent_releases_estimated_tags": 112, - "_pop_recent_releases_adjusted_count": 119, - "_pop_issue_count": 437.0, - "_pop_comment_count": 889.0, + "_pop_recent_releases_count": 22, + "_pop_recent_releases_estimated_tags": 49, + "_pop_recent_releases_adjusted_count": 22, + "_pop_issue_count": 533.0, + "_pop_comment_count": 575.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 78, - "_pop_score": 53.6, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 48.66, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/starlite-api/starlite/master/README.md", - "_readme_localurl": "starlite-api~starlite~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/recognai/rubrix/master/README.md", + "_readme_localurl": "recognai~rubrix~README.md", "_requirements_filenames": [ + "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/starlite-api/starlite/master/pyproject.toml" + "https://raw.githubusercontent.com/recognai/rubrix/master/setup.py", + "https://raw.githubusercontent.com/recognai/rubrix/master/pyproject.toml" ], "_requirements_localurls": [ - "starlite-api~starlite~pyproject.toml" + "recognai~rubrix~setup.py", + "recognai~rubrix~pyproject.toml" + ] + }, + { + "index": 768, + "category": "ml-dl", + "githuburl": "https://github.com/fepegar/torchio", + "featured": null, + "links": null, + "description": null, + "_repopath": "fepegar/torchio", + "_reponame": "torchio", + "_stars": 1636, + "_forks": 202, + "_watches": 17, + "_language": "Python", + "_homepage": "http://www.torchio.org", + "_description": "torchio: Medical imaging toolkit for deep learning", + "_organization": "fepegar", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-11-26T00:00:00.000Z", + "_age_weeks": 169, + "_stars_per_week": 9.67, + "_topics": [ + "pytorch", + "medical-image-computing", + "deep-learning", + "data-augmentation", + "medical-images", + "machine-learning", + "python", + "medical-image-processing", + "medical-image-analysis", + "medical-imaging-datasets", + "medical-imaging-with-deep-learning", + "augmentation" + ], + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 41, + "_pop_contributor_logins": [ + "GFabien", + "JulianKlug", + "allcontributors[bot]", + "dmus", + "dvolgyes", + "efirdc", + "fepegar@microsoftuclkcl-bmeis", + "justusschock@lightning-ai", + "mattwarkentin@universityofcalgary", + "pre-commit-ci[bot]" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "lightning-ai", + "microsoftuclkcl-bmeis", + "universityofcalgary" + ], + "_pop_contributor_orgs_raw": [ + "@Lightning-AI", + "@microsoft @UCL @KCL-BMEIS", + "University of Calgary" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.44, + "_pop_updated_issues_count": 34, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 39, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 79, + "_pop_recent_releases_adjusted_count": 79, + "_pop_issue_count": 34.0, + "_pop_comment_count": 56.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 42.81, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/fepegar/torchio/master/README.md", + "_readme_localurl": "fepegar~torchio~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/fepegar/torchio/master/pyproject.toml" + ], + "_requirements_localurls": [ + "fepegar~torchio~pyproject.toml" + ] + }, + { + "index": 779, + "category": "nlp", + "githuburl": "https://github.com/deepset-ai/farm", + "featured": null, + "links": null, + "description": null, + "_repopath": "deepset-ai/farm", + "_reponame": "FARM", + "_stars": 1627, + "_forks": 233, + "_watches": 54, + "_language": "Python", + "_homepage": "https://farm.deepset.ai", + "_description": "FARM: :house_with_garden: Fast & easy transfer learning for NLP. Harvesting language models for the industry. Focus on Question Answering.", + "_organization": "deepset-ai", + "_updated_at": "2023-02-16T00:00:00.000Z", + "_created_at": "2019-07-17T00:00:00.000Z", + "_age_weeks": 188, + "_stars_per_week": 8.65, + "_topics": [ + "language-models", + "bert", + "nlp", + "deep-learning", + "transfer-learning", + "pytorch", + "nlp-library", + "nlp-framework", + "xlnet-pytorch", + "ner", + "question-answering", + "pretrained-models", + "roberta", + "germanbert" + ], + "_last_commit_date": "2022-08-31T00:00:00.000Z", + "_pop_contributor_count": 37, + "_pop_contributor_logins": [ + "PhilipMay@telekom", + "Timoeller@deepset", + "bogdankostic@deepset-ai", + "brandenchan", + "ftesser", + "johann-petrak@sheffieldnlp,gatenlp,ofai", + "julian-risch@deepset", + "kolk", + "tanaysoni", + "tholor@deepset" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "deepset", + "deepset-ai", + "sheffieldnlp,gatenlp,ofai", + "telekom" + ], + "_pop_contributor_orgs_raw": [ + "@deepset-ai", + "@sheffieldnlp, @GateNLP, @OFAI", + "@telekom", + "deepset" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 6, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 5.0, + "_pop_comment_count": 6.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 31.83, + "_readme_filename": "readme.rst", + "_readme_giturl": "https://raw.githubusercontent.com/deepset-ai/farm/master/readme.rst", + "_readme_localurl": "deepset-ai~farm~readme.rst", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/deepset-ai/farm/master/requirements.txt", + "https://raw.githubusercontent.com/deepset-ai/farm/master/setup.py" + ], + "_requirements_localurls": [ + "deepset-ai~farm~requirements.txt", + "deepset-ai~farm~setup.py" ] }, { @@ -33482,9 +45287,17 @@ "description": null, "_repopath": "pallets/quart", "_reponame": "quart", - "_stars": 1509, - "_forks": 93, - "_watches": 24, + "_stars": 1618, + "_forks": 99, + "_watches": 25, + "_language": "Python", + "_homepage": "https://quart.palletsprojects.com", + "_description": "quart: An async Python micro framework for building web applications. ", + "_organization": "pallets", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-11-10T00:00:00.000Z", + "_age_weeks": 275, + "_stars_per_week": 5.87, "_topics": [ "asyncio", "python", @@ -33492,36 +45305,51 @@ "asgi", "quart" ], - "_language": "Python", - "_homepage": "https://quart.palletsprojects.com", - "_description": "quart: An async Python micro framework for building web applications. ", - "_organization": "pallets", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2017-11-10T00:00:00.000Z", - "_age_weeks": 266, - "_stars_per_week": 5.66, - "_pop_contributor_count": 80, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-12T00:00:00.000Z", + "_pop_contributor_count": 84, + "_pop_contributor_logins": [ + "andrewshadura@collabora", + "arminweigl", + "arusahni@materializeinc", + "briancappello", + "laggardkernel@none", + "pgjones", + "potomak", + "pszpetkowski@pkobp", + "sanderfoobar", + "wwwjfy@grab" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "none" + "collabora", + "grab", + "materializeinc", + "none", + "pkobp" + ], + "_pop_contributor_orgs_raw": [ + "@Grab", + "@MaterializeInc ", + "Collabora", + "None", + "PKO BP" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.81, - "_pop_updated_issues_count": 28, - "_pop_closed_issues_count": 25, - "_pop_created_since_days": 62, + "_pop_commit_frequency": 2.0, + "_pop_updated_issues_count": 15, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 64, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 10, "_pop_recent_releases_adjusted_count": 10, - "_pop_issue_count": 28.0, - "_pop_comment_count": 29.0, + "_pop_issue_count": 15.0, + "_pop_comment_count": 13.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 18, - "_pop_score": 44.54, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 43.81, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pallets/quart/master/README.rst", "_readme_localurl": "pallets~quart~README.rst", @@ -33536,81 +45364,187 @@ ] }, { - "index": 458, - "category": "ml-dl", - "githuburl": "https://github.com/nebuly-ai/nebullvm", + "index": 683, + "category": "util", + "githuburl": "https://github.com/spotify/basic-pitch", "featured": null, "links": null, "description": null, - "_repopath": "nebuly-ai/nebullvm", - "_reponame": "nebullvm", - "_stars": 1504, - "_forks": 70, - "_watches": 16, + "_repopath": "spotify/basic-pitch", + "_reponame": "basic-pitch", + "_stars": 1618, + "_forks": 91, + "_watches": 31, + "_language": "Python", + "_homepage": "https://basicpitch.io", + "_description": "basic-pitch: A lightweight yet powerful audio-to-MIDI converter with pitch bend detection", + "_organization": "spotify", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-05-03T00:00:00.000Z", + "_age_weeks": 42, + "_stars_per_week": 38.39, "_topics": [ - "deep-learning", - "pytorch", - "onnx", + "lightweight", "machine-learning", - "tensorflow", - "tvm", - "openvino", - "tensorrt", - "huggingface", - "compiler", - "computing", - "inference", - "neural-network", - "pypi", - "quantization" + "midi", + "music", + "pitch-detection", + "polyphonic", + "transcription", + "audio", + "python", + "typescript" ], - "_language": "Python", - "_homepage": "", - "_description": "nebullvm: Accelerate AI models leveraging best-of-breed optimization techniques \ud83d\ude80", - "_organization": "nebuly-ai", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2022-02-12T00:00:00.000Z", - "_age_weeks": 44, - "_stars_per_week": 33.96, + "_last_commit_date": "2023-02-10T00:00:00.000Z", "_pop_contributor_count": 11, + "_pop_contributor_logins": [ + "cclauss@christianclauss", + "dohertyguirand", + "drubinstein@spotify", + "gudgud96@bandlab", + "johngao2@spotify", + "jvbalen", + "michaelhball@merantix", + "perploug@spotify", + "rabitt" + ], "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "nebuly", - "nebuly-ai", - "nebuly|epfl", - "nebuly|ethzurich" + "bandlab", + "christianclauss", + "merantix", + "spotify" + ], + "_pop_contributor_orgs_raw": [ + "@bandlab", + "@merantix ", + "@spotify", + "Christian Clauss", + "Spotify" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.23, - "_pop_updated_issues_count": 48, - "_pop_closed_issues_count": 30, + "_pop_commit_frequency": 0.79, + "_pop_updated_issues_count": 21, + "_pop_closed_issues_count": 9, "_pop_created_since_days": 10, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 13, - "_pop_recent_releases_estimated_tags": 16, - "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 48.0, - "_pop_comment_count": 19.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 21.0, + "_pop_comment_count": 7.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.4, - "_pop_dependents_count": 2, - "_pop_score": 35.81, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 0, + "_pop_score": 26.47, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nebuly-ai/nebullvm/master/README.md", - "_readme_localurl": "nebuly-ai~nebullvm~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/spotify/basic-pitch/master/README.md", + "_readme_localurl": "spotify~basic-pitch~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/nebuly-ai/nebullvm/master/requirements.txt", - "https://raw.githubusercontent.com/nebuly-ai/nebullvm/master/setup.py" + "https://raw.githubusercontent.com/spotify/basic-pitch/master/setup.py" ], "_requirements_localurls": [ - "nebuly-ai~nebullvm~requirements.txt", - "nebuly-ai~nebullvm~setup.py" + "spotify~basic-pitch~setup.py" + ] + }, + { + "index": 509, + "category": "ml", + "githuburl": "https://github.com/tensorflow/addons", + "featured": null, + "links": null, + "description": null, + "_repopath": "tensorflow/addons", + "_reponame": "addons", + "_stars": 1611, + "_forks": 600, + "_watches": 58, + "_language": "Python", + "_homepage": "", + "_description": "addons: Useful extra functionality for TensorFlow 2.x maintained by SIG-addons", + "_organization": "tensorflow", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-11-26T00:00:00.000Z", + "_age_weeks": 221, + "_stars_per_week": 7.28, + "_topics": [ + "machine-learning", + "deep-learning", + "tensorflow", + "neural-network", + "tensorflow-addons", + "python" + ], + "_last_commit_date": "2022-12-14T00:00:00.000Z", + "_pop_contributor_count": 200, + "_pop_contributor_logins": [ + "Squadrick@thoughtspot", + "WindQAQ@googlers", + "autoih", + "bhack", + "facaiy", + "fsx950223@amd", + "gabrieldemarmiesse@preligens", + "guillaumekln@systran", + "qlzh727@google", + "seanpmorgan@aws" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "amd", + "aws", + "google", + "googlers", + "preligens", + "systran", + "thoughtspot" + ], + "_pop_contributor_orgs_raw": [ + "@Aws", + "@SYSTRAN", + "@googlers ", + "@thoughtspot", + "AMD", + "Google", + "Preligens" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.9, + "_pop_updated_issues_count": 42, + "_pop_closed_issues_count": 18, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 42.0, + "_pop_comment_count": 70.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 44.71, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/tensorflow/addons/master/README.md", + "_readme_localurl": "tensorflow~addons~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/tensorflow/addons/master/requirements.txt", + "https://raw.githubusercontent.com/tensorflow/addons/master/setup.py", + "https://raw.githubusercontent.com/tensorflow/addons/master/pyproject.toml" + ], + "_requirements_localurls": [ + "tensorflow~addons~requirements.txt", + "tensorflow~addons~setup.py", + "tensorflow~addons~pyproject.toml" ] }, { @@ -33622,42 +45556,47 @@ "description": null, "_repopath": "alexmojaki/heartrate", "_reponame": "heartrate", - "_stars": 1499, - "_forks": 120, - "_watches": 30, + "_stars": 1610, + "_forks": 123, + "_watches": 33, + "_language": "Python", + "_homepage": null, + "_description": "heartrate: Simple real time visualisation of the execution of a Python program.", + "_organization": "alexmojaki", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-04-24T00:00:00.000Z", + "_age_weeks": 200, + "_stars_per_week": 8.05, "_topics": [ "python", "visualization", "debugger" ], - "_language": "Python", - "_homepage": null, - "_description": "heartrate: Simple real time visualisation of the execution of a Python program.", - "_organization": "alexmojaki", - "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2021-11-13T00:00:00.000Z", - "_created_at": "2019-04-24T00:00:00.000Z", - "_age_weeks": 190, - "_stars_per_week": 7.86, "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "alexmojaki", + "lvelvee" + ], "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 0, + "_pop_updated_issues_count": 1, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 44, - "_pop_updated_since_days": 13, + "_pop_created_since_days": 47, + "_pop_updated_since_days": 16, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 0.0, + "_pop_issue_count": 1.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 6.69, + "_pop_score": 6.85, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/alexmojaki/heartrate/master/README.md", "_readme_localurl": "alexmojaki~heartrate~README.md", @@ -33672,117 +45611,1101 @@ ] }, { - "index": 612, - "category": "testing", - "githuburl": "https://github.com/pytest-dev/pytest-mock", + "index": 377, + "category": "ml-interpretability", + "githuburl": "https://github.com/jalammar/ecco", "featured": null, "links": null, "description": null, - "_repopath": "pytest-dev/pytest-mock", - "_reponame": "pytest-mock", - "_stars": 1493, - "_forks": 119, - "_watches": 34, + "_repopath": "jalammar/ecco", + "_reponame": "ecco", + "_stars": 1605, + "_forks": 116, + "_watches": 21, + "_language": "Jupyter Notebook", + "_homepage": "https://ecco.readthedocs.io", + "_description": "ecco: Explain, analyze, and visualize NLP language models. Ecco creates interactive visualizations directly in Jupyter notebooks explaining the behavior of Transformer-based language models (like GPT2, BERT, RoBERTA, T5, and T0).", + "_organization": "jalammar", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-11-07T00:00:00.000Z", + "_age_weeks": 119, + "_stars_per_week": 13.42, "_topics": [ - "pytest", - "mock", - "hacktoberfest" + "nlp", + "visualization", + "explorables", + "natural-language-processing", + "pytorch", + "language-models" ], - "_language": "Python", - "_homepage": "https://pytest-mock.readthedocs.io/en/latest/", - "_description": "pytest-mock: Thin-wrapper around the mock package for easier use with pytest", - "_organization": "pytest-dev", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2014-07-17T00:00:00.000Z", - "_age_weeks": 439, - "_stars_per_week": 3.4, - "_pop_contributor_count": 64, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-01-18T00:00:00.000Z", + "_pop_contributor_count": 10, + "_pop_contributor_logins": [ + "Haziqa-coder", + "JoaoLages@outsystems", + "SSamDav@outsystems", + "chiragjn@truefoundry", + "jalammar@cohere-ai", + "joaonadkarni", + "nostalgebraist", + "sugatoray@universityofwisconsin-milwaukee", + "thomas-chong@hkust" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "esss", - "freelancer,upforhire", - "nordsoftware", - "wayfair" + "cohere-ai", + "hkust", + "outsystems", + "truefoundry", + "universityofwisconsin-milwaukee" + ], + "_pop_contributor_orgs_raw": [ + "@cohere-ai ", + "@truefoundry ", + "HKUST", + "OutSystems", + "Outsystems", + "University of Wisconsin - Milwaukee" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.08, - "_pop_updated_issues_count": 26, - "_pop_closed_issues_count": 26, - "_pop_created_since_days": 103, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 26.0, - "_pop_comment_count": 27.0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 28, + "_pop_updated_since_days": 13, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 3.0, + "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 3125, - "_pop_score": 57.46, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 24.09, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest-mock/master/README.rst", - "_readme_localurl": "pytest-dev~pytest-mock~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/jalammar/ecco/master/README.rst", + "_readme_localurl": "jalammar~ecco~README.rst", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pytest-dev/pytest-mock/master/setup.py" + "https://raw.githubusercontent.com/jalammar/ecco/master/requirements.txt", + "https://raw.githubusercontent.com/jalammar/ecco/master/setup.py" ], "_requirements_localurls": [ - "pytest-dev~pytest-mock~setup.py" + "jalammar~ecco~requirements.txt", + "jalammar~ecco~setup.py" ] }, { - "index": 224, - "category": "sim", - "githuburl": "https://github.com/google/brax", + "index": 597, + "category": "time-series", + "githuburl": "https://github.com/uber/orbit", "featured": null, "links": null, "description": null, - "_repopath": "google/brax", - "_reponame": "brax", - "_stars": 1479, - "_forks": 148, - "_watches": 31, + "_repopath": "uber/orbit", + "_reponame": "orbit", + "_stars": 1602, + "_forks": 120, + "_watches": 33, + "_language": "Python", + "_homepage": "https://orbit-ml.readthedocs.io/en/stable/", + "_description": "orbit: A Python package for Bayesian forecasting with object-oriented design and probabilistic models under the hood.", + "_organization": "uber", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-01-07T00:00:00.000Z", + "_age_weeks": 163, + "_stars_per_week": 9.82, "_topics": [ - "jax", - "reinforcement-learning", - "robotics", - "physics-simulation" + "python", + "forecasting", + "bayesian", + "exponential-smoothing", + "pyro", + "stan", + "pystan", + "probabilistic-programming", + "probabilistic", + "forecast", + "orbit", + "time-series", + "regression", + "arima", + "changepoint", + "bayesian-methods", + "bayesian-statistics", + "machine-learning", + "regression-models", + "pytorch" ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "brax: Massively parallel rigidbody physics simulation on accelerator hardware.", - "_organization": "google", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2021-06-02T00:00:00.000Z", - "_age_weeks": 80, - "_stars_per_week": 18.32, - "_pop_contributor_count": 25, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "drexeluniversity", - "instadeep" + "_last_commit_date": "2023-01-29T00:00:00.000Z", + "_pop_contributor_count": 18, + "_pop_contributor_logins": [ + "Ariel77", + "FreeRealEstate221@uber", + "GavinSteiningerUber", + "edwinnglabs@uber", + "pochoi@ucdavis", + "ppstacy", + "steveyang90", + "szmark001@google", + "vincewu51@uber", + "wangzhishi" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "google", + "uber", + "ucdavis" + ], + "_pop_contributor_orgs_raw": [ + "@Google", + "UC Davis", + "Uber" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.56, + "_pop_updated_issues_count": 20, + "_pop_closed_issues_count": 12, + "_pop_created_since_days": 38, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 20.0, + "_pop_comment_count": 18.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 34.13, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/uber/orbit/master/README.md", + "_readme_localurl": "uber~orbit~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/uber/orbit/master/requirements.txt", + "https://raw.githubusercontent.com/uber/orbit/master/setup.py", + "https://raw.githubusercontent.com/uber/orbit/master/pyproject.toml" + ], + "_requirements_localurls": [ + "uber~orbit~requirements.txt", + "uber~orbit~setup.py", + "uber~orbit~pyproject.toml" + ] + }, + { + "index": 263, + "category": "sim", + "githuburl": "https://github.com/quantecon/quantecon.py", + "featured": null, + "links": null, + "description": null, + "_repopath": "quantecon/quantecon.py", + "_reponame": "QuantEcon.py", + "_stars": 1600, + "_forks": 2141, + "_watches": 148, + "_language": "Python", + "_homepage": "https://quantecon.org/quantecon-py/", + "_description": "QuantEcon.py: A community based Python library for quantitative economics", + "_organization": "quantecon", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2013-03-22T00:00:00.000Z", + "_age_weeks": 517, + "_stars_per_week": 3.09, + "_topics": [], + "_last_commit_date": "2023-01-29T00:00:00.000Z", + "_pop_contributor_count": 40, + "_pop_contributor_logins": [ + "QBatista@mit", + "Smit-create", + "cc7768@umaprotocol", + "davidrpugh@kingabdullahuniversityofscienceandtechnology", + "jstac@australiannationaluniversity", + "mmcky", + "oyamad@universityoftokyo", + "rht", + "sglyon@valorumdata", + "shizejin" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "australiannationaluniversity", + "kingabdullahuniversityofscienceandtechnology", + "mit", + "umaprotocol", + "universityoftokyo", + "valorumdata" + ], + "_pop_contributor_orgs_raw": [ + "@UMAprotocol", + "Australian National University", + "King Abdullah University of Science and Technology", + "MIT", + "University of Tokyo", + "Valorum Data" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.94, + "_pop_updated_issues_count": 58, + "_pop_closed_issues_count": 40, + "_pop_created_since_days": 121, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 58.0, + "_pop_comment_count": 183.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.2, + "_pop_dependents_count": 0, + "_pop_score": 45.14, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/quantecon/quantecon.py/master/README.md", + "_readme_localurl": "quantecon~quantecon.py~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/quantecon/quantecon.py/master/pyproject.toml" + ], + "_requirements_localurls": [ + "quantecon~quantecon.py~pyproject.toml" + ] + }, + { + "index": 876, + "category": "study", + "githuburl": "https://github.com/rasbt/machine-learning-book", + "featured": null, + "links": null, + "description": null, + "_repopath": "rasbt/machine-learning-book", + "_reponame": "machine-learning-book", + "_stars": 1594, + "_forks": 599, + "_watches": 30, + "_language": "Jupyter Notebook", + "_homepage": "https://sebastianraschka.com/books/#machine-learning-with-pytorch-and-scikit-learn", + "_description": "machine-learning-book: Code Repository for Machine Learning with PyTorch and Scikit-Learn", + "_organization": "rasbt", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-12-19T00:00:00.000Z", + "_age_weeks": 61, + "_stars_per_week": 25.95, + "_topics": [ + "machine-learning", + "scikit-learn", + "deep-learning", + "neural-networks", + "pytorch" + ], + "_last_commit_date": "2023-02-02T00:00:00.000Z", + "_pop_contributor_count": 11, + "_pop_contributor_logins": [ + "SalMireles", + "asrjy@zodhya-git", + "capac", + "ericgarza70", + "haydenliu", + "mbrukman@google", + "naiborhujosua", + "paw-lu", + "rasbt@lightning-ai,universityofwisconsin-madison", + "rnckp" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "google", + "lightning-ai,universityofwisconsin-madison", + "zodhya-git" + ], + "_pop_contributor_orgs_raw": [ + "@Google", + "@Lightning-AI , University of Wisconsin-Madison", + "@zodhya-git " + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.73, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 14, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 16.0, + "_pop_comment_count": 14.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 27.67, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/rasbt/machine-learning-book/master/README.md", + "_readme_localurl": "rasbt~machine-learning-book~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 299, + "category": "util", + "githuburl": "https://github.com/julienpalard/pipe", + "featured": null, + "links": null, + "description": null, + "_repopath": "julienpalard/pipe", + "_reponame": "Pipe", + "_stars": 1594, + "_forks": 103, + "_watches": 27, + "_language": "Python", + "_homepage": "", + "_description": "Pipe: A Python library to use infix notation in Python", + "_organization": "julienpalard", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2010-04-08T00:00:00.000Z", + "_age_weeks": 671, + "_stars_per_week": 2.37, + "_topics": [], + "_last_commit_date": "2022-11-16T00:00:00.000Z", + "_pop_contributor_count": 25, + "_pop_contributor_logins": [ + "Abdur-rahmaanJ@compileralchemy", + "Amper@victoriametrics", + "Briaoeuidhtns", + "JulienPalard", + "brentp@universityofutah", + "dalexander", + "j450h1@microsoft", + "jerabaul29", + "nykh@sumologic", + "righthandabacus" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "compileralchemy", + "microsoft", + "sumologic", + "universityofutah", + "victoriametrics" + ], + "_pop_contributor_orgs_raw": [ + "@VictoriaMetrics", + "@compileralchemy ", + "Microsoft", + "Sumo Logic", + "University of Utah" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.29, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 157, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 4.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 31.14, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/julienpalard/pipe/master/README.md", + "_readme_localurl": "julienpalard~pipe~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/julienpalard/pipe/master/pyproject.toml" + ], + "_requirements_localurls": [ + "julienpalard~pipe~pyproject.toml" + ] + }, + { + "index": 596, + "category": "data", + "githuburl": "https://github.com/uber/petastorm", + "featured": null, + "links": null, + "description": null, + "_repopath": "uber/petastorm", + "_reponame": "petastorm", + "_stars": 1582, + "_forks": 267, + "_watches": 43, + "_language": "Python", + "_homepage": "", + "_description": "Petastorm library enables single machine or distributed training and evaluation of deep learning models from datasets in Apache Parquet format. It supports ML frameworks such as Tensorflow, Pytorch, and PySpark and can be used from pure Python code.", + "_organization": "uber", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-06-15T00:00:00.000Z", + "_age_weeks": 244, + "_stars_per_week": 6.46, + "_topics": [ + "tensorflow", + "pytorch", + "deep-learning", + "machine-learning", + "sysml", + "pyspark", + "pyarrow", + "parquet", + "parquet-files" + ], + "_last_commit_date": "2023-02-03T00:00:00.000Z", + "_pop_contributor_count": 48, + "_pop_contributor_logins": [ + "Ivan-Dimitrov", + "WeichenXu123@databricks", + "abditag2@uber", + "chongxiaoc@uber", + "liangz1@databricks", + "megaserg", + "praateekmahajan@iterable", + "rgruener@netflix", + "selitvin", + "tgaddair@uber" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "databricks", + "iterable", + "netflix", + "uber" + ], + "_pop_contributor_orgs_raw": [ + "@Iterable ", + "@Netflix", + "@databricks", + "@databricks ", + "@uber ", + "Uber", + "Uber " ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.4, - "_pop_updated_issues_count": 41, - "_pop_closed_issues_count": 23, - "_pop_created_since_days": 19, + "_pop_updated_issues_count": 18, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 57, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 24, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 18.0, + "_pop_comment_count": 24.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 38.44, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/uber/petastorm/master/README.rst", + "_readme_localurl": "uber~petastorm~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/uber/petastorm/master/setup.py" + ], + "_requirements_localurls": [ + "uber~petastorm~setup.py" + ] + }, + { + "index": 378, + "category": "ml-interpretability", + "githuburl": "https://github.com/oegedijk/explainerdashboard", + "featured": null, + "links": null, + "description": null, + "_repopath": "oegedijk/explainerdashboard", + "_reponame": "explainerdashboard", + "_stars": 1578, + "_forks": 208, + "_watches": 18, + "_language": "Python", + "_homepage": "http://explainerdashboard.readthedocs.io", + "_description": "explainerdashboard: Quickly build Explainable AI dashboards that show the inner workings of so-called \"blackbox\" machine learning models.", + "_organization": "oegedijk", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2019-10-30T00:00:00.000Z", + "_age_weeks": 173, + "_stars_per_week": 9.12, + "_topics": [ + "dash", + "shap-values", + "dashboard", + "model-predictions", + "data-scientists", + "explainer", + "interactive-dashboards", + "permutation-importances", + "shap", + "plotly", + "inner-workings", + "interactive-plots", + "xai-library", + "xai" + ], + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 19, + "_pop_contributor_logins": [ + "Simon-Free", + "absynthe@amazonwebservices", + "achimgaedke", + "brandonserna@u.s.geologicalsurvey", + "mekomlusa", + "oegedijk@thoughtworks", + "oegesam", + "rajgupt@optum", + "raybellwaves@dtn", + "yanhong-zhao-ef@educationfirst" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "amazonwebservices", + "dtn", + "educationfirst", + "optum", + "thoughtworks", + "u.s.geologicalsurvey" + ], + "_pop_contributor_orgs_raw": [ + "Amazon Web Services", + "DTN", + "Education First", + "Optum", + "ThoughtWorks", + "U.S. Geological Survey" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.6, + "_pop_updated_issues_count": 32, + "_pop_closed_issues_count": 28, + "_pop_created_since_days": 40, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 41.0, - "_pop_comment_count": 79.0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 23, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 32.0, + "_pop_comment_count": 93.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.9, - "_pop_dependents_count": 11, - "_pop_score": 39.54, + "_pop_comment_frequency": 2.9, + "_pop_dependents_count": 0, + "_pop_score": 42.79, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/oegedijk/explainerdashboard/master/README.md", + "_readme_localurl": "oegedijk~explainerdashboard~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/oegedijk/explainerdashboard/master/requirements.txt", + "https://raw.githubusercontent.com/oegedijk/explainerdashboard/master/setup.py" + ], + "_requirements_localurls": [ + "oegedijk~explainerdashboard~requirements.txt", + "oegedijk~explainerdashboard~setup.py" + ] + }, + { + "index": 900, + "category": "ml", + "githuburl": "https://github.com/shankarpandala/lazypredict", + "featured": null, + "links": null, + "description": null, + "_repopath": "shankarpandala/lazypredict", + "_reponame": "lazypredict", + "_stars": 1573, + "_forks": 190, + "_watches": 22, + "_language": "Python", + "_homepage": "", + "_description": "lazypredict: Lazy Predict help build a lot of basic models without much code and helps understand which models works better without any parameter tuning", + "_organization": "shankarpandala", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-11-16T00:00:00.000Z", + "_age_weeks": 170, + "_stars_per_week": 9.22, + "_topics": [ + "machine-learning", + "automl", + "regression", + "classification" + ], + "_last_commit_date": "2022-09-28T00:00:00.000Z", + "_pop_contributor_count": 18, + "_pop_contributor_logins": [ + "Ankur-singh@zoop.one", + "Arritmic@universityofoulu", + "brendalf@wildlife-studios", + "dataprofessor@streamlit", + "dependabot[bot]", + "felipesassi", + "pyup-bot@pyupio", + "shankarpandala@appliedmaterials", + "shyamcody", + "vidyap-xgboost@fiolabs-internal" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "appliedmaterials", + "fiolabs-internal", + "pyupio", + "streamlit", + "universityofoulu", + "wildlife-studios", + "zoop.one" + ], + "_pop_contributor_orgs_raw": [ + "@fiolabs-internal ", + "@pyupio", + "@wildlife-studios", + "Applied Materials", + "Streamlit Inc.", + "University of Oulu", + "zoop.one" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.6, + "_pop_updated_issues_count": 38, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 40, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 38.0, + "_pop_comment_count": 24.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 30.57, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/shankarpandala/lazypredict/master/README.rst", + "_readme_localurl": "shankarpandala~lazypredict~README.rst", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/shankarpandala/lazypredict/master/requirements.txt", + "https://raw.githubusercontent.com/shankarpandala/lazypredict/master/setup.py" + ], + "_requirements_localurls": [ + "shankarpandala~lazypredict~requirements.txt", + "shankarpandala~lazypredict~setup.py" + ] + }, + { + "index": 143, + "category": "nlp", + "githuburl": "https://github.com/plasticityai/magnitude", + "featured": null, + "links": null, + "description": null, + "_repopath": "plasticityai/magnitude", + "_reponame": "magnitude", + "_stars": 1559, + "_forks": 113, + "_watches": 37, + "_language": "Python", + "_homepage": null, + "_description": "magnitude: A fast, efficient universal vector embedding utility package.", + "_organization": "plasticityai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-02-24T00:00:00.000Z", + "_age_weeks": 260, + "_stars_per_week": 5.98, + "_topics": [ + "python", + "natural-language-processing", + "nlp", + "machine-learning", + "vectors", + "embeddings", + "word2vec", + "fasttext", + "glove", + "gensim", + "fast", + "memory-efficient", + "machine-learning-library", + "word-embeddings" + ], + "_last_commit_date": "2020-07-17T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "AjayP13", + "alexsands", + "jweese", + "plasticity-admin@plasticityai" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "plasticityai" + ], + "_pop_contributor_orgs_raw": [ + "@plasticityai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 61, + "_pop_updated_since_days": 32, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 28, + "_pop_recent_releases_adjusted_count": 28, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 15.28, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/plasticityai/magnitude/master/README.md", + "_readme_localurl": "plasticityai~magnitude~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/plasticityai/magnitude/master/requirements.txt", + "https://raw.githubusercontent.com/plasticityai/magnitude/master/setup.py" + ], + "_requirements_localurls": [ + "plasticityai~magnitude~requirements.txt", + "plasticityai~magnitude~setup.py" + ] + }, + { + "index": 662, + "category": "util", + "githuburl": "https://github.com/numba/llvmlite", + "featured": null, + "links": null, + "description": null, + "_repopath": "numba/llvmlite", + "_reponame": "llvmlite", + "_stars": 1557, + "_forks": 297, + "_watches": 53, + "_language": "Python", + "_homepage": "http://llvmlite.pydata.org/", + "_description": "llvmlite: A lightweight LLVM python binding for writing JIT compilers", + "_organization": "numba", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2014-08-07T00:00:00.000Z", + "_age_weeks": 445, + "_stars_per_week": 3.49, + "_topics": [], + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 81, + "_pop_contributor_logins": [ + "apmasell", + "esc@anaconda", + "franzhaas", + "gmarkall@nvidia", + "john-tornblom", + "pitrou", + "seibert", + "sklam", + "stuartarchibald", + "whitequark" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "anaconda", + "nvidia" + ], + "_pop_contributor_orgs_raw": [ + "@nvidia", + "Anaconda Inc." + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.5, + "_pop_updated_issues_count": 33, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 104, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 33.0, + "_pop_comment_count": 103.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.1, + "_pop_dependents_count": 0, + "_pop_score": 45.5, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/numba/llvmlite/master/README.rst", + "_readme_localurl": "numba~llvmlite~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/numba/llvmlite/master/setup.py" + ], + "_requirements_localurls": [ + "numba~llvmlite~setup.py" + ] + }, + { + "index": 311, + "category": "util", + "githuburl": "https://github.com/linkedin/shiv", + "featured": null, + "links": null, + "description": null, + "_repopath": "linkedin/shiv", + "_reponame": "shiv", + "_stars": 1552, + "_forks": 84, + "_watches": 26, + "_language": "Python", + "_homepage": "", + "_description": "shiv is a command line utility for building fully self contained Python zipapps as outlined in PEP 441, but with all their dependencies included.", + "_organization": "linkedin", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-03-13T00:00:00.000Z", + "_age_weeks": 258, + "_stars_per_week": 6.01, + "_topics": [], + "_last_commit_date": "2022-11-04T00:00:00.000Z", + "_pop_contributor_count": 39, + "_pop_contributor_logins": [ + "ChrisCarini@linkedin", + "anthrotype", + "bzzzzzz@linkedin", + "dsully@linkedin", + "ipmb@lincolnloop", + "jhermann@mam-dev", + "lorencarvalho@linkedin", + "pfmoore", + "timgates42@iress", + "warsaw@linkedin" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "iress", + "lincolnloop", + "linkedin", + "mam-dev" + ], + "_pop_contributor_orgs_raw": [ + "@LinkedIn", + "@linkedin", + "@mam-dev ", + "IRESS", + "Lincoln Loop", + "LinkedIn" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.15, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 60, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 5.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 31.56, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/linkedin/shiv/master/README.md", + "_readme_localurl": "linkedin~shiv~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/linkedin/shiv/master/pyproject.toml" + ], + "_requirements_localurls": [ + "linkedin~shiv~pyproject.toml" + ] + }, + { + "index": 635, + "category": "debug", + "githuburl": "https://github.com/alexmojaki/birdseye", + "featured": null, + "links": null, + "description": null, + "_repopath": "alexmojaki/birdseye", + "_reponame": "birdseye", + "_stars": 1539, + "_forks": 77, + "_watches": 43, + "_language": "JavaScript", + "_homepage": "https://birdseye.readthedocs.io", + "_description": "birdseye: Graphical Python debugger which lets you easily view the values of all evaluated expressions", + "_organization": "alexmojaki", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2017-07-22T00:00:00.000Z", + "_age_weeks": 291, + "_stars_per_week": 5.28, + "_topics": [ + "python-debugger", + "python", + "debugger", + "debugging", + "birdseye", + "ast" + ], + "_last_commit_date": "2022-05-18T00:00:00.000Z", + "_pop_contributor_count": 10, + "_pop_contributor_logins": [ + "MichaelCurrin@actcommodities", + "aivarannamaa@cybernetica", + "alexmojaki", + "bugosiphionah", + "houluy@beijinguniversityofpostsandtelecomms.", + "skeledrew@skelevilletechnologysolutions", + "spamegg1" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "actcommodities", + "beijinguniversityofpostsandtelecomms.", + "cybernetica", + "skelevilletechnologysolutions" + ], + "_pop_contributor_orgs_raw": [ + "ACT Commodities", + "Beijing University of Posts and Telecomms.", + "Cybernetica", + "Skeleville Technology Solutions" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 68, + "_pop_updated_since_days": 9, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 1.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 25.67, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/alexmojaki/birdseye/master/README.rst", + "_readme_localurl": "alexmojaki~birdseye~README.rst", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/alexmojaki/birdseye/master/setup.py", + "https://raw.githubusercontent.com/alexmojaki/birdseye/master/pyproject.toml" + ], + "_requirements_localurls": [ + "alexmojaki~birdseye~setup.py", + "alexmojaki~birdseye~pyproject.toml" + ] + }, + { + "index": 224, + "category": "sim", + "githuburl": "https://github.com/google/brax", + "featured": null, + "links": null, + "description": null, + "_repopath": "google/brax", + "_reponame": "brax", + "_stars": 1537, + "_forks": 159, + "_watches": 37, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "brax: Massively parallel rigidbody physics simulation on accelerator hardware.", + "_organization": "google", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2021-06-02T00:00:00.000Z", + "_age_weeks": 90, + "_stars_per_week": 17.08, + "_topics": [ + "jax", + "reinforcement-learning", + "robotics", + "physics-simulation" + ], + "_last_commit_date": "2023-02-09T00:00:00.000Z", + "_pop_contributor_count": 27, + "_pop_contributor_logins": [ + "7thStringofZhef", + "cdfreeman-google@google", + "cemlyn007@instadeep", + "danielsuo@princetonuniversity", + "erikfrey", + "lebrice", + "namheegordonkim", + "sgillen", + "traversaro@italianinstituteoftechnology", + "vwxyzjn@drexeluniversity" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "drexeluniversity", + "google", + "instadeep", + "italianinstituteoftechnology", + "princetonuniversity" + ], + "_pop_contributor_orgs_raw": [ + "Drexel University", + "Google", + "InstaDeep", + "Italian Institute of Technology", + "Princeton University" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.37, + "_pop_updated_issues_count": 48, + "_pop_closed_issues_count": 31, + "_pop_created_since_days": 21, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 48.0, + "_pop_comment_count": 72.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 39.01, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google/brax/master/README.md", "_readme_localurl": "google~brax~README.md", @@ -33797,137 +46720,281 @@ ] }, { - "index": 498, - "category": "ml-dl", - "githuburl": "https://github.com/vt-vl-lab/fgvc", + "index": 612, + "category": "testing", + "githuburl": "https://github.com/pytest-dev/pytest-mock", "featured": null, "links": null, "description": null, - "_repopath": "vt-vl-lab/fgvc", - "_reponame": "FGVC", - "_stars": 1473, - "_forks": 237, - "_watches": 68, - "_topics": [], + "_repopath": "pytest-dev/pytest-mock", + "_reponame": "pytest-mock", + "_stars": 1525, + "_forks": 121, + "_watches": 33, "_language": "Python", - "_homepage": null, - "_description": "FGVC: [ECCV 2020] Flow-edge Guided Video Completion ", - "_organization": "vt-vl-lab", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2021-12-14T00:00:00.000Z", - "_created_at": "2020-09-09T00:00:00.000Z", - "_age_weeks": 118, - "_stars_per_week": 12.41, - "_pop_contributor_count": 3, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://pytest-mock.readthedocs.io/en/latest/", + "_description": "pytest-mock: Thin-wrapper around the mock package for easier use with pytest", + "_organization": "pytest-dev", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-07-17T00:00:00.000Z", + "_age_weeks": 448, + "_stars_per_week": 3.4, + "_topics": [ + "pytest", + "mock", + "hacktoberfest" + ], + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 64, + "_pop_contributor_logins": [ + "The-Compiler@bruhinsoftware", + "blueyed@freelancer,upforhire", + "fogo", + "graingert", + "hugovk@nordsoftware", + "inderpreet99@wayfair", + "jurko-gospodnetic@pkesistemi", + "nicoddemus@esss", + "pre-commit-ci[bot]", + "tirkarthi@visa" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "bruhinsoftware", + "esss", + "freelancer,upforhire", + "nordsoftware", + "pkesistemi", + "visa", + "wayfair" + ], + "_pop_contributor_orgs_raw": [ + "Bruhin Software", + "ESSS", + "Freelancer, up for hire", + "Nord Software", + "PKE sistemi", + "Visa Inc.", + "Wayfair" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.96, + "_pop_updated_issues_count": 15, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 105, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 15.0, + "_pop_comment_count": 9.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 43.25, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest-mock/master/README.rst", + "_readme_localurl": "pytest-dev~pytest-mock~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pytest-dev/pytest-mock/master/setup.py" + ], + "_requirements_localurls": [ + "pytest-dev~pytest-mock~setup.py" + ] + }, + { + "index": 591, + "category": "template", + "githuburl": "https://github.com/buuntu/fastapi-react", + "featured": null, + "links": null, + "description": null, + "_repopath": "buuntu/fastapi-react", + "_reponame": "fastapi-react", + "_stars": 1510, + "_forks": 260, + "_watches": 36, + "_language": "Python", + "_homepage": "", + "_description": "fastapi-react: \ud83d\ude80 Cookiecutter Template for FastAPI + React Projects. Using PostgreSQL, SQLAlchemy, and Docker", + "_organization": "buuntu", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-03-21T00:00:00.000Z", + "_age_weeks": 152, + "_stars_per_week": 9.9, + "_topics": [ + "fastapi", + "postgres", + "cookiecutter", + "react", + "react-admin", + "nginx", + "boilerplate", + "full-stack", + "typescript", + "sqlalchemy", + "jwt", + "oauth2", + "docker" + ], + "_last_commit_date": "2022-02-18T00:00:00.000Z", + "_pop_contributor_count": 13, + "_pop_contributor_logins": [ + "Buuntu@facebook", + "F1r3Hydr4nt", + "JasonHoku@jasonhoku", + "RobbertH", + "adamnieto@pfizer", + "arihantsurana@nearmap", + "cdeil@heidelbergcement", + "dependabot-preview[bot]", + "dependabot[bot]", + "ilyakam" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "meta", - "virginiatech" + "facebook", + "heidelbergcement", + "jasonhoku", + "nearmap", + "pfizer" + ], + "_pop_contributor_orgs_raw": [ + "@facebook", + "@nearmap ", + "@pfizer", + "HeidelbergCement", + "JasonHoku" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 4, "_pop_closed_issues_count": 2, - "_pop_created_since_days": 28, + "_pop_created_since_days": 36, "_pop_updated_since_days": 12, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, "_pop_issue_count": 4.0, - "_pop_comment_count": 5.0, + "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, + "_pop_comment_frequency": 0.5, "_pop_dependents_count": 0, - "_pop_score": 16.4, + "_pop_score": 23.48, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/vt-vl-lab/fgvc/master/README.md", - "_readme_localurl": "vt-vl-lab~fgvc~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/buuntu/fastapi-react/master/README.md", + "_readme_localurl": "buuntu~fastapi-react~README.md", "_requirements_filenames": [], "_requirements_giturls": [], "_requirements_localurls": [] }, { - "index": 436, - "category": "nlp", - "githuburl": "https://github.com/recognai/rubrix", + "index": 438, + "category": "gis", + "githuburl": "https://github.com/giswqs/leafmap", "featured": null, "links": null, "description": null, - "_repopath": "recognai/rubrix", - "_reponame": "argilla", - "_stars": 1469, - "_forks": 134, - "_watches": 18, + "_repopath": "giswqs/leafmap", + "_reponame": "leafmap", + "_stars": 1500, + "_forks": 183, + "_watches": 45, + "_language": "Python", + "_homepage": "https://leafmap.org", + "_description": "leafmap: A Python package for interactive mapping and geospatial analysis with minimal coding in a Jupyter environment", + "_organization": "giswqs", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2021-03-10T00:00:00.000Z", + "_age_weeks": 102, + "_stars_per_week": 14.71, "_topics": [ + "ipyleaflet", + "folium", + "mapping", "python", + "geopython", + "jupyter-notebook", + "jupyter", + "gis", + "dataviz", "data-science", - "human-in-the-loop", - "natural-language-processing", - "mlops", - "artificial-intelligence", - "knowledge-graph", - "developer-tools", - "text-labeling", - "annotation-tool", - "nlp", - "machine-learning", - "active-learning", - "weak-supervision", - "weakly-supervised-learning", - "spacy", - "text-classification", - "dataops", - "text-annotation", - "hacktoberfest" + "whiteboxtools", + "geospatial", + "geospatial-analysis", + "leafmap", + "streamlit", + "streamlit-webapp", + "plotly", + "pydeck", + "keplergl" ], - "_language": "Python", - "_homepage": "https://docs.argilla.io", - "_description": "argilla: \u2728 Open-source tool for data-centric NLP. Argilla helps domain experts and data teams to build better NLP datasets in less time.", - "_organization": "recognai", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2021-04-28T00:00:00.000Z", - "_age_weeks": 85, - "_stars_per_week": 17.14, - "_pop_contributor_count": 33, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 20, + "_pop_contributor_logins": [ + "ajstewartlang@universityofmanchester", + "amorfinv", + "darrenwiens", + "giswqs@universityoftennessee", + "jbednar@anaconda", + "junjiez", + "rowheat02@naxa", + "sackh", + "sdruskat@germanaerospacecenter(dlr)", + "sugatoray@universityofwisconsin-milwaukee" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "aarhusuniversity,vestas", - "argilla.io", - "maxplanckcomputing&datafacility", - "recogai" + "anaconda", + "germanaerospacecenter(dlr)", + "naxa", + "universityofmanchester", + "universityoftennessee", + "universityofwisconsin-milwaukee" + ], + "_pop_contributor_orgs_raw": [ + "Anaconda, Inc.", + "German Aerospace Center (DLR)", + "NAXA", + "University of Manchester", + "University of Tennessee", + "University of Wisconsin - Milwaukee" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 10.4, - "_pop_updated_issues_count": 364, - "_pop_closed_issues_count": 231, - "_pop_created_since_days": 20, + "_pop_commit_frequency": 4.35, + "_pop_updated_issues_count": 49, + "_pop_closed_issues_count": 42, + "_pop_created_since_days": 24, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 30, - "_pop_recent_releases_estimated_tags": 52, - "_pop_recent_releases_adjusted_count": 30, - "_pop_issue_count": 369.0, - "_pop_comment_count": 470.0, + "_pop_recent_releases_count": 39, + "_pop_recent_releases_estimated_tags": 35, + "_pop_recent_releases_adjusted_count": 39, + "_pop_issue_count": 49.0, + "_pop_comment_count": 50.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 4, - "_pop_score": 49.39, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 42.83, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/recognai/rubrix/master/README.md", - "_readme_localurl": "recognai~rubrix~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/giswqs/leafmap/master/README.md", + "_readme_localurl": "giswqs~leafmap~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/recognai/rubrix/master/setup.py", - "https://raw.githubusercontent.com/recognai/rubrix/master/pyproject.toml" + "https://raw.githubusercontent.com/giswqs/leafmap/master/requirements.txt", + "https://raw.githubusercontent.com/giswqs/leafmap/master/setup.py" ], "_requirements_localurls": [ - "recognai~rubrix~setup.py", - "recognai~rubrix~pyproject.toml" + "giswqs~leafmap~requirements.txt", + "giswqs~leafmap~setup.py" ] }, { @@ -33939,9 +47006,17 @@ "description": null, "_repopath": "neuralmagic/sparseml", "_reponame": "sparseml", - "_stars": 1455, - "_forks": 104, - "_watches": 36, + "_stars": 1499, + "_forks": 113, + "_watches": 39, + "_language": "Python", + "_homepage": "", + "_description": "sparseml: Libraries for applying sparsification recipes to neural networks with a few lines of code, enabling faster and smaller models", + "_organization": "neuralmagic", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2020-12-11T00:00:00.000Z", + "_age_weeks": 114, + "_stars_per_week": 13.07, "_topics": [ "pytorch", "keras", @@ -33964,36 +47039,45 @@ "nlp", "onnx" ], - "_language": "Python", - "_homepage": "", - "_description": "sparseml: Libraries for applying sparsification recipes to neural networks with a few lines of code, enabling faster and smaller models", - "_organization": "neuralmagic", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2020-12-11T00:00:00.000Z", - "_age_weeks": 105, - "_stars_per_week": 13.8, - "_pop_contributor_count": 36, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 40, + "_pop_contributor_logins": [ + "KSGulin@neuralmagic", + "bfineran@neuralmagic", + "corey-nm", + "dbogunowicz", + "eldarkurtic", + "jeanniefinks@neuralmagic", + "kevinaer@neuralmagic", + "markurtz@neuralmagic", + "natuan", + "rahul-tuli@neuralmagic" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "neuralmagic" ], + "_pop_contributor_orgs_raw": [ + "@neuralmagic", + "@neuralmagic ", + "Neural Magic" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 8.13, - "_pop_updated_issues_count": 242, - "_pop_closed_issues_count": 216, - "_pop_created_since_days": 25, + "_pop_commit_frequency": 8.54, + "_pop_updated_issues_count": 243, + "_pop_closed_issues_count": 222, + "_pop_created_since_days": 27, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 12, - "_pop_recent_releases_estimated_tags": 12, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 242.0, - "_pop_comment_count": 161.0, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 243.0, + "_pop_comment_count": 95.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 9, - "_pop_score": 43.6, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 39.34, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/neuralmagic/sparseml/master/README.md", "_readme_localurl": "neuralmagic~sparseml~README.md", @@ -34011,252 +47095,229 @@ ] }, { - "index": 703, - "category": "util", - "githuburl": "https://github.com/openai/openai-python", + "index": 828, + "category": "sim", + "githuburl": "https://github.com/farama-foundation/gymnasium", "featured": null, "links": null, "description": null, - "_repopath": "openai/openai-python", - "_reponame": "openai-python", - "_stars": 1433, - "_forks": 345, - "_watches": 52, - "_topics": [], + "_repopath": "farama-foundation/gymnasium", + "_reponame": "Gymnasium", + "_stars": 1495, + "_forks": 169, + "_watches": 18, "_language": "Python", - "_homepage": null, - "_description": "openai/openai-python", - "_organization": "openai", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2020-10-25T00:00:00.000Z", - "_age_weeks": 112, - "_stars_per_week": 12.78, - "_pop_contributor_count": 26, + "_homepage": "https://gymnasium.farama.org", + "_description": "Gymnasium: A standard API for single-agent reinforcement learning environments, with popular reference environments and related utilities (formerly Gym)", + "_organization": "farama-foundation", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-09-08T00:00:00.000Z", + "_age_weeks": 23, + "_stars_per_week": 62.66, + "_topics": [], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 410, + "_pop_contributor_logins": [ + "RedTachyon", + "gdb", + "jietang", + "jkterry1", + "jonasschneider", + "joschu", + "pseudo-rnd-thoughts", + "pzhokhov", + "tlbtlbtlb@umbrellaresearch", + "zuoxingdong@navercorp" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "microsoft", - "openai" + "navercorp", + "umbrellaresearch" + ], + "_pop_contributor_orgs_raw": [ + "NAVER Corp", + "Umbrella Research" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.87, - "_pop_updated_issues_count": 38, - "_pop_closed_issues_count": 21, - "_pop_created_since_days": 26, + "_pop_commit_frequency": 8.63, + "_pop_updated_issues_count": 221, + "_pop_closed_issues_count": 185, + "_pop_created_since_days": 6, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 17, - "_pop_recent_releases_estimated_tags": 20, - "_pop_recent_releases_adjusted_count": 17, - "_pop_issue_count": 38.0, - "_pop_comment_count": 35.0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 221.0, + "_pop_comment_count": 334.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 12, - "_pop_score": 40.79, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 45.35, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/openai/openai-python/master/README.md", - "_readme_localurl": "openai~openai-python~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/farama-foundation/gymnasium/master/README.md", + "_readme_localurl": "farama-foundation~gymnasium~README.md", "_requirements_filenames": [ "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/openai/openai-python/master/setup.py", - "https://raw.githubusercontent.com/openai/openai-python/master/pyproject.toml" + "https://raw.githubusercontent.com/farama-foundation/gymnasium/master/setup.py", + "https://raw.githubusercontent.com/farama-foundation/gymnasium/master/pyproject.toml" ], "_requirements_localurls": [ - "openai~openai-python~setup.py", - "openai~openai-python~pyproject.toml" + "farama-foundation~gymnasium~setup.py", + "farama-foundation~gymnasium~pyproject.toml" ] }, { - "index": 591, - "category": "template", - "githuburl": "https://github.com/buuntu/fastapi-react", + "index": 498, + "category": "ml-dl", + "githuburl": "https://github.com/vt-vl-lab/fgvc", "featured": null, "links": null, "description": null, - "_repopath": "buuntu/fastapi-react", - "_reponame": "fastapi-react", - "_stars": 1428, - "_forks": 241, - "_watches": 35, - "_topics": [ - "fastapi", - "postgres", - "cookiecutter", - "react", - "react-admin", - "nginx", - "boilerplate", - "full-stack", - "typescript", - "sqlalchemy", - "jwt", - "oauth2", - "docker" - ], + "_repopath": "vt-vl-lab/fgvc", + "_reponame": "FGVC", + "_stars": 1482, + "_forks": 244, + "_watches": 68, "_language": "Python", - "_homepage": "", - "_description": "fastapi-react: \ud83d\ude80 Cookiecutter Template for FastAPI + React Projects. Using PostgreSQL, SQLAlchemy, and Docker", - "_organization": "buuntu", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-02-18T00:00:00.000Z", - "_created_at": "2020-03-21T00:00:00.000Z", - "_age_weeks": 143, - "_stars_per_week": 9.97, - "_pop_contributor_count": 13, + "_homepage": null, + "_description": "FGVC: [ECCV 2020] Flow-edge Guided Video Completion ", + "_organization": "vt-vl-lab", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2020-09-09T00:00:00.000Z", + "_age_weeks": 128, + "_stars_per_week": 11.58, + "_topics": [], + "_last_commit_date": "2021-12-14T00:00:00.000Z", + "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "Korbpw", + "gaochen315@meta", + "jbhuang0604@virginiatech" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "facebook", - "jasonhoku" + "meta", + "virginiatech" + ], + "_pop_contributor_orgs_raw": [ + "Meta", + "Virginia Tech" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.02, - "_pop_updated_issues_count": 2, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 33, - "_pop_updated_since_days": 10, + "_pop_created_since_days": 30, + "_pop_updated_since_days": 14, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 2.0, - "_pop_comment_count": 2.0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 7, - "_pop_score": 24.15, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 11.0, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/buuntu/fastapi-react/master/README.md", - "_readme_localurl": "buuntu~fastapi-react~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/vt-vl-lab/fgvc/master/README.md", + "_readme_localurl": "vt-vl-lab~fgvc~README.md", "_requirements_filenames": [], "_requirements_giturls": [], "_requirements_localurls": [] }, { - "index": 638, - "category": "perf", - "githuburl": "https://github.com/dask/distributed", + "index": 372, + "category": "gis", + "githuburl": "https://github.com/microsoft/torchgeo", "featured": null, "links": null, "description": null, - "_repopath": "dask/distributed", - "_reponame": "distributed", - "_stars": 1428, - "_forks": 666, - "_watches": 59, + "_repopath": "microsoft/torchgeo", + "_reponame": "torchgeo", + "_stars": 1462, + "_forks": 171, + "_watches": 39, + "_language": "Python", + "_homepage": "https://torchgeo.rtfd.io", + "_description": "TorchGeo: datasets, samplers, transforms, and pre-trained models for geospatial data", + "_organization": "microsoft", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-05-21T00:00:00.000Z", + "_age_weeks": 91, + "_stars_per_week": 15.94, "_topics": [ - "pydata", - "dask", - "distributed-computing", - "python", - "hacktoberfest" + "pytorch", + "torchvision", + "datasets", + "models", + "transforms", + "remote-sensing", + "deep-learning", + "earth-observation" ], - "_language": "Python", - "_homepage": "https://distributed.dask.org", - "_description": "distributed: A distributed task scheduler for Dask", - "_organization": "dask", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2015-09-13T00:00:00.000Z", - "_age_weeks": 379, - "_stars_per_week": 3.77, - "_pop_contributor_count": 301, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 34, + "_pop_contributor_logins": [ + "MATRIX4284", + "RitwikGupta@ucberkeley", + "adamjstewart@universityofillinoisaturbana-champaign", + "ashnair1", + "calebrob6@microsoft", + "dependabot[bot]", + "iejMac@stabilityai", + "isaaccorley@dronebase", + "nilsleh", + "remtav@nrcan" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "coiled" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 15.67, - "_pop_updated_issues_count": 479, - "_pop_closed_issues_count": 300, - "_pop_created_since_days": 88, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 26, - "_pop_recent_releases_adjusted_count": 26, - "_pop_issue_count": 479.0, - "_pop_comment_count": 1204.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 3056, - "_pop_score": 68.77, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/dask/distributed/master/README.rst", - "_readme_localurl": "dask~distributed~README.rst", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/dask/distributed/master/requirements.txt", - "https://raw.githubusercontent.com/dask/distributed/master/setup.py" + "dronebase", + "microsoft", + "nrcan", + "stabilityai", + "ucberkeley", + "universityofillinoisaturbana-champaign" ], - "_requirements_localurls": [ - "dask~distributed~requirements.txt", - "dask~distributed~setup.py" - ] - }, - { - "index": 861, - "category": "jupyter", - "githuburl": "https://github.com/jupyter/nbconvert", - "featured": null, - "links": null, - "description": null, - "_repopath": "jupyter/nbconvert", - "_reponame": "nbconvert", - "_stars": 1423, - "_forks": 509, - "_watches": 50, - "_topics": [], - "_language": "Python", - "_homepage": "https://nbconvert.readthedocs.io/", - "_description": "nbconvert: Jupyter Notebook Conversion", - "_organization": "jupyter", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2015-04-09T00:00:00.000Z", - "_age_weeks": 401, - "_stars_per_week": 3.54, - "_pop_contributor_count": 254, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "google", - "netflix", - "quansight-labs", - "simularesearchlaboratory" + "_pop_contributor_orgs_raw": [ + "@NRCan ", + "DroneBase", + "Microsoft", + "StabilityAI", + "UC Berkeley", + "University of Illinois at Urbana-Champaign" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.06, - "_pop_updated_issues_count": 93, - "_pop_closed_issues_count": 44, - "_pop_created_since_days": 94, + "_pop_commit_frequency": 8.77, + "_pop_updated_issues_count": 298, + "_pop_closed_issues_count": 244, + "_pop_created_since_days": 21, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 19, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 19, - "_pop_issue_count": 93.0, - "_pop_comment_count": 119.0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 298.0, + "_pop_comment_count": 467.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 4472, - "_pop_score": 66.48, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 45.5, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/jupyter/nbconvert/master/README.md", - "_readme_localurl": "jupyter~nbconvert~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/microsoft/torchgeo/master/README.md", + "_readme_localurl": "microsoft~torchgeo~README.md", "_requirements_filenames": [ "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/jupyter/nbconvert/master/pyproject.toml" + "https://raw.githubusercontent.com/microsoft/torchgeo/master/pyproject.toml" ], "_requirements_localurls": [ - "jupyter~nbconvert~pyproject.toml" + "microsoft~torchgeo~pyproject.toml" ] }, { @@ -34268,9 +47329,17 @@ "description": null, "_repopath": "pyupio/safety", "_reponame": "safety", - "_stars": 1421, - "_forks": 123, - "_watches": 32, + "_stars": 1460, + "_forks": 124, + "_watches": 31, + "_language": "Python", + "_homepage": "https://pyup.io/safety/", + "_description": "Safety checks Python dependencies for known security vulnerabilities and suggests the proper remediations for vulnerabilities detected.", + "_organization": "pyupio", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-10-19T00:00:00.000Z", + "_age_weeks": 331, + "_stars_per_week": 4.41, "_topics": [ "python", "security", @@ -34279,37 +47348,52 @@ "vulnerability-scanners", "vulnerability-detection" ], - "_language": "Python", - "_homepage": "https://pyup.io/safety/", - "_description": "Safety checks Python dependencies for known security vulnerabilities and suggests the proper remediations for vulnerabilities detected.", - "_organization": "pyupio", - "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-12-08T00:00:00.000Z", - "_created_at": "2016-10-19T00:00:00.000Z", - "_age_weeks": 321, - "_stars_per_week": 4.42, "_pop_contributor_count": 40, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Jwomers@pyupio", + "cb22@roomsh", + "chowmean@practoolacabslearnstepsletusdevops", + "jayfk", + "lesleycla@pyupio", + "mgedmin@programmersofvilnius", + "nicholasks@syncsketch", + "pyup-bot@pyupio", + "rafaelpivato", + "yeisonvargasf@pyupio" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "practoolacabslearnstepsletusdevops", + "programmersofvilnius", "pyupio", + "roomsh", "syncsketch" ], + "_pop_contributor_orgs_raw": [ + "@practo @olacabs @learnsteps @letusdevops", + "@pyupio", + "@pyupio ", + "@roomsh ", + "Programmers of Vilnius", + "SyncSketch" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 2.06, - "_pop_updated_issues_count": 63, - "_pop_closed_issues_count": 44, - "_pop_created_since_days": 75, - "_pop_updated_since_days": 0, + "_pop_updated_issues_count": 41, + "_pop_closed_issues_count": 30, + "_pop_created_since_days": 77, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 11, "_pop_recent_releases_estimated_tags": 9, "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 63.0, - "_pop_comment_count": 38.0, + "_pop_issue_count": 41.0, + "_pop_comment_count": 39.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 1197, - "_pop_score": 52.82, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 41.28, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pyupio/safety/master/README.md", "_readme_localurl": "pyupio~safety~README.md", @@ -34324,544 +47408,601 @@ ] }, { - "index": 108, - "category": "util", - "githuburl": "https://github.com/nficano/python-lambda", + "index": 298, + "category": "crypto", + "githuburl": "https://github.com/blankly-finance/blankly", "featured": null, "links": null, "description": null, - "_repopath": "nficano/python-lambda", - "_reponame": "python-lambda", - "_stars": 1415, - "_forks": 227, - "_watches": 31, + "_repopath": "blankly-finance/blankly", + "_reponame": "blankly", + "_stars": 1458, + "_forks": 192, + "_watches": 29, + "_language": "Python", + "_homepage": "https://package.blankly.finance", + "_description": "blankly: \ud83d\ude80 \ud83d\udcb8 Easily build, backtest and deploy your algo in just a few lines of code. Trade stocks, cryptos, and forex across exchanges w/ one package.", + "_organization": "blankly-finance", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-03-09T00:00:00.000Z", + "_age_weeks": 102, + "_stars_per_week": 14.27, "_topics": [ + "cryptocurrency", + "bot-framework", + "investment", + "bots", + "bot", + "coinbase", + "binance", + "blankly", + "stocks", + "platform", + "framework", + "trading", + "trading-bot", + "trading-strategies", "python", - "aws", - "aws-lambda", - "microservices", - "serverless" + "crypto", + "algotrading" ], - "_language": "Python", - "_homepage": "", - "_description": "python-lambda: A toolkit for developing and deploying serverless Python code in AWS Lambda. ", - "_organization": "nficano", - "_updated_at": "2022-12-10T00:00:00.000Z", - "_last_commit_date": "2022-06-03T00:00:00.000Z", - "_created_at": "2016-02-26T00:00:00.000Z", - "_age_weeks": 355, - "_stars_per_week": 3.98, - "_pop_contributor_count": 48, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-02T00:00:00.000Z", + "_pop_contributor_count": 16, + "_pop_contributor_logins": [ + "AlgoQ@algoq", + "Aryan34", + "AydinGokce", + "EmersonDove@student", + "arun-annamalai@amazonwebservices", + "bfan1256", + "jkalish14", + "jordibeen@develeopardscheck-mobility", + "mehta-avi", + "qmatias@open-shade" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "charliehealth", - "gemovationlabs" + "algoq", + "amazonwebservices", + "develeopardscheck-mobility", + "open-shade", + "student" ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.02, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 83, - "_pop_updated_since_days": 7, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 2.0, - "_pop_comment_count": 1.0, + "_pop_contributor_orgs_raw": [ + "@Develeopards @check-mobility ", + "@open-shade ", + "AlgoQ", + "Amazon Web Services", + "Student" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.21, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 24, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 16.0, + "_pop_comment_count": 36.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 61, - "_pop_score": 35.74, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 0, + "_pop_score": 37.0, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nficano/python-lambda/master/README.md", - "_readme_localurl": "nficano~python-lambda~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/blankly-finance/blankly/master/README.md", + "_readme_localurl": "blankly-finance~blankly~README.md", "_requirements_filenames": [ - "setup.py", - "Pipfile" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/nficano/python-lambda/master/setup.py", - "https://raw.githubusercontent.com/nficano/python-lambda/master/Pipfile" + "https://raw.githubusercontent.com/blankly-finance/blankly/master/setup.py" ], "_requirements_localurls": [ - "nficano~python-lambda~setup.py", - "nficano~python-lambda~Pipfile" + "blankly-finance~blankly~setup.py" ] }, { - "index": 378, - "category": "ml-interpretability", - "githuburl": "https://github.com/oegedijk/explainerdashboard", - "featured": null, + "index": 977, + "category": "ml", + "githuburl": "https://github.com/lucidrains/musiclm-pytorch", + "featured": 1.0, "links": null, "description": null, - "_repopath": "oegedijk/explainerdashboard", - "_reponame": "explainerdashboard", - "_stars": 1405, - "_forks": 184, - "_watches": 15, + "_repopath": "lucidrains/musiclm-pytorch", + "_reponame": "musiclm-pytorch", + "_stars": 1458, + "_forks": 91, + "_watches": 71, + "_language": "Python", + "_homepage": "", + "_description": "musiclm-pytorch: Implementation of MusicLM, Google's new SOTA model for music generation using attention networks, in Pytorch", + "_organization": "lucidrains", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2023-01-27T00:00:00.000Z", + "_age_weeks": 3, + "_stars_per_week": 392.54, "_topics": [ - "dash", - "shap-values", - "dashboard", - "model-predictions", - "data-scientists", - "explainer", - "interactive-dashboards", - "permutation-importances", - "shap", - "plotly", - "inner-workings", - "interactive-plots", - "xai-library", - "xai" + "artificial-intelligence", + "attention-mechanisms", + "deep-learning", + "music-synthesis", + "transformers" ], - "_language": "Python", - "_homepage": "http://explainerdashboard.readthedocs.io", - "_description": "explainerdashboard: Quickly build Explainable AI dashboards that show the inner workings of so-called \"blackbox\" machine learning models.", - "_organization": "oegedijk", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-09T00:00:00.000Z", - "_created_at": "2019-10-30T00:00:00.000Z", - "_age_weeks": 163, - "_stars_per_week": 8.58, - "_pop_contributor_count": 16, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "dtn", - "thoughtworks" + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "lucidrains" ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.15, - "_pop_updated_issues_count": 15, - "_pop_closed_issues_count": 7, - "_pop_created_since_days": 38, + "_pop_commit_frequency": 1.06, + "_pop_updated_issues_count": 22, + "_pop_closed_issues_count": 20, + "_pop_created_since_days": 1, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 23, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 15.0, - "_pop_comment_count": 30.0, + "_pop_recent_releases_count": 25, + "_pop_recent_releases_estimated_tags": 304, + "_pop_recent_releases_adjusted_count": 25, + "_pop_issue_count": 22.0, + "_pop_comment_count": 110.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 151, - "_pop_score": 43.4, + "_pop_comment_frequency": 5.0, + "_pop_dependents_count": 0, + "_pop_score": 22.53, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/oegedijk/explainerdashboard/master/README.md", - "_readme_localurl": "oegedijk~explainerdashboard~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/lucidrains/musiclm-pytorch/master/README.md", + "_readme_localurl": "lucidrains~musiclm-pytorch~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/oegedijk/explainerdashboard/master/requirements.txt", - "https://raw.githubusercontent.com/oegedijk/explainerdashboard/master/setup.py" + "https://raw.githubusercontent.com/lucidrains/musiclm-pytorch/master/setup.py" ], "_requirements_localurls": [ - "oegedijk~explainerdashboard~requirements.txt", - "oegedijk~explainerdashboard~setup.py" + "lucidrains~musiclm-pytorch~setup.py" ] }, { - "index": 429, + "index": 861, "category": "jupyter", - "githuburl": "https://github.com/jupyter-lsp/jupyterlab-lsp", + "githuburl": "https://github.com/jupyter/nbconvert", "featured": null, "links": null, "description": null, - "_repopath": "jupyter-lsp/jupyterlab-lsp", - "_reponame": "jupyterlab-lsp", - "_stars": 1388, - "_forks": 116, - "_watches": 16, - "_topics": [ - "jupyterlab", - "jupyterlab-extension", - "language-server-protocol", - "jupyter-lab", - "lsp", - "linter", - "jupyter", - "jupyter-notebook", - "notebook", - "notebook-jupyter", - "ipython", - "autocompletion", - "julia-language", - "r" - ], - "_language": "TypeScript", - "_homepage": "", - "_description": "jupyterlab-lsp: Coding assistance for JupyterLab (code navigation + hover suggestions + linters + autocompletion + rename) using Language Server Protocol", - "_organization": "jupyter-lsp", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2019-08-17T00:00:00.000Z", - "_age_weeks": 174, - "_stars_per_week": 7.96, - "_pop_contributor_count": 45, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_repopath": "jupyter/nbconvert", + "_reponame": "nbconvert", + "_stars": 1446, + "_forks": 512, + "_watches": 51, + "_language": "Python", + "_homepage": "https://nbconvert.readthedocs.io/", + "_description": "nbconvert: Jupyter Notebook Conversion", + "_organization": "jupyter", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2015-04-09T00:00:00.000Z", + "_age_weeks": 410, + "_stars_per_week": 3.52, + "_topics": [], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 256, + "_pop_contributor_logins": [ + "Carreau@quansight-labs", + "MSeal@noteable-io", + "SylvainCorlay@quantstack", + "blink1073@mongodb", + "damianavila", + "jdfreder@google", + "jhamrick", + "minrk@simularesearchlaboratory", + "mpacer@netflix", + "takluyver" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "google", + "mongodb", + "netflix", + "noteable-io", + "quansight-labs", "quantstack", - "universityofoxford" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.71, - "_pop_updated_issues_count": 49, - "_pop_closed_issues_count": 29, - "_pop_created_since_days": 41, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 13, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 49.0, - "_pop_comment_count": 76.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 4, - "_pop_score": 44.05, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/jupyter-lsp/jupyterlab-lsp/master/README.md", - "_readme_localurl": "jupyter-lsp~jupyterlab-lsp~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, - { - "index": 683, - "category": "util", - "githuburl": "https://github.com/spotify/basic-pitch", - "featured": null, - "links": null, - "description": null, - "_repopath": "spotify/basic-pitch", - "_reponame": "basic-pitch", - "_stars": 1377, - "_forks": 68, - "_watches": 25, - "_topics": [ - "lightweight", - "machine-learning", - "midi", - "music", - "pitch-detection", - "polyphonic", - "transcription", - "audio", - "python", - "typescript" + "simularesearchlaboratory" ], - "_language": "Python", - "_homepage": "https://basicpitch.io", - "_description": "basic-pitch: A lightweight yet powerful audio-to-MIDI converter with pitch bend detection", - "_organization": "spotify", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-08-30T00:00:00.000Z", - "_created_at": "2022-05-03T00:00:00.000Z", - "_age_weeks": 32, - "_stars_per_week": 41.91, - "_pop_contributor_count": 7, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "christianclauss", - "spotify" + "_pop_contributor_orgs_raw": [ + "@Quansight-Labs", + "@google ", + "@noteable-io", + "MongoDB", + "Netflix", + "QuantStack", + "Simula Research Laboratory" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.58, - "_pop_updated_issues_count": 15, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 8, - "_pop_updated_since_days": 4, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 15.0, - "_pop_comment_count": 14.0, + "_pop_commit_frequency": 3.0, + "_pop_updated_issues_count": 69, + "_pop_closed_issues_count": 28, + "_pop_created_since_days": 96, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 21, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 21, + "_pop_issue_count": 69.0, + "_pop_comment_count": 85.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, + "_pop_comment_frequency": 1.2, "_pop_dependents_count": 0, - "_pop_score": 19.34, + "_pop_score": 53.24, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/spotify/basic-pitch/master/README.md", - "_readme_localurl": "spotify~basic-pitch~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/jupyter/nbconvert/master/README.md", + "_readme_localurl": "jupyter~nbconvert~README.md", "_requirements_filenames": [ - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/spotify/basic-pitch/master/setup.py" + "https://raw.githubusercontent.com/jupyter/nbconvert/master/pyproject.toml" ], "_requirements_localurls": [ - "spotify~basic-pitch~setup.py" + "jupyter~nbconvert~pyproject.toml" ] }, { - "index": 149, - "category": "data", - "githuburl": "https://github.com/simple-salesforce/simple-salesforce", + "index": 949, + "category": "nlp", + "githuburl": "https://github.com/alibaba/easynlp", "featured": null, "links": null, "description": null, - "_repopath": "simple-salesforce/simple-salesforce", - "_reponame": "simple-salesforce", - "_stars": 1375, - "_forks": 606, - "_watches": 88, + "_repopath": "alibaba/easynlp", + "_reponame": "EasyNLP", + "_stars": 1442, + "_forks": 178, + "_watches": 31, + "_language": "Python", + "_homepage": "", + "_description": "EasyNLP: A Comprehensive and Easy-to-use NLP Toolkit", + "_organization": "alibaba", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-04-06T00:00:00.000Z", + "_age_weeks": 46, + "_stars_per_week": 31.35, "_topics": [ - "salesforce", - "api", - "api-client", - "python" + "transformers", + "bert", + "nlp", + "pretrained-models", + "deep-learning", + "pytorch", + "fewshot-learning", + "knowledge-distillation", + "knowledge-pretraining", + "text-image-retrieval", + "text-to-image-synthesis", + "machine-learning", + "text-classification", + "transfer-learning" ], - "_language": "Python", - "_homepage": null, - "_description": "simple-salesforce: A very simple Salesforce.com REST API client for Python", - "_organization": "simple-salesforce", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2013-01-17T00:00:00.000Z", - "_age_weeks": 517, - "_stars_per_week": 2.66, - "_pop_contributor_count": 75, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 33, + "_pop_contributor_logins": [ + "Chen9154", + "LZYSaltedFish", + "Longpai@cqu", + "chywang", + "deplay", + "lwmlyy@shanghaiuniversityoffinanceandeconomics", + "minghui@alibabagroup", + "ttliu-kiwi@daseecnu", + "wjn1996@http://www.wjn1996.cn", + "zhuxiangru" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - ":+1:", - "salesforce" + "alibabagroup", + "cqu", + "daseecnu", + "http://www.wjn1996.cn", + "shanghaiuniversityoffinanceandeconomics" + ], + "_pop_contributor_orgs_raw": [ + "Alibaba Group", + "CQU", + "Dase@Ecnu", + "Shanghai University of Finance and Economics", + "http://www.wjn1996.cn" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.21, - "_pop_updated_issues_count": 29, - "_pop_closed_issues_count": 11, - "_pop_created_since_days": 121, + "_pop_commit_frequency": 11.25, + "_pop_updated_issues_count": 52, + "_pop_closed_issues_count": 40, + "_pop_created_since_days": 11, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 29.0, - "_pop_comment_count": 46.0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 52.0, + "_pop_comment_count": 41.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 25, - "_pop_score": 46.6, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/simple-salesforce/simple-salesforce/master/README.rst", - "_readme_localurl": "simple-salesforce~simple-salesforce~README.rst", + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 37.93, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/alibaba/easynlp/master/README.md", + "_readme_localurl": "alibaba~easynlp~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/simple-salesforce/simple-salesforce/master/setup.py" + "https://raw.githubusercontent.com/alibaba/easynlp/master/requirements.txt", + "https://raw.githubusercontent.com/alibaba/easynlp/master/setup.py" ], "_requirements_localurls": [ - "simple-salesforce~simple-salesforce~setup.py" + "alibaba~easynlp~requirements.txt", + "alibaba~easynlp~setup.py" ] }, { - "index": 284, - "category": "data", - "githuburl": "https://github.com/sdispater/orator", + "index": 638, + "category": "perf", + "githuburl": "https://github.com/dask/distributed", "featured": null, "links": null, "description": null, - "_repopath": "sdispater/orator", - "_reponame": "orator", - "_stars": 1373, - "_forks": 165, - "_watches": 46, + "_repopath": "dask/distributed", + "_reponame": "distributed", + "_stars": 1440, + "_forks": 674, + "_watches": 58, + "_language": "Python", + "_homepage": "https://distributed.dask.org", + "_description": "distributed: A distributed task scheduler for Dask", + "_organization": "dask", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2015-09-13T00:00:00.000Z", + "_age_weeks": 388, + "_stars_per_week": 3.71, "_topics": [ + "pydata", + "dask", + "distributed-computing", "python", - "orm", - "database" + "hacktoberfest" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 306, + "_pop_contributor_logins": [ + "crusaderky", + "fjetter@coiled", + "gjoseph92@coiled", + "graingert", + "hendrikmakait@coiled", + "jacobtomlinson@nvidia", + "jakirkham", + "jrbourbeau@coiled", + "mrocklin@coiled", + "pitrou" ], - "_language": "Python", - "_homepage": "https://orator-orm.com", - "_description": "orator: The Orator ORM provides a simple yet beautiful ActiveRecord implementation.", - "_organization": "sdispater", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-03-13T00:00:00.000Z", - "_created_at": "2015-05-24T00:00:00.000Z", - "_age_weeks": 395, - "_stars_per_week": 3.47, - "_pop_contributor_count": 32, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "bellawatt", - "masoniteframework" + "coiled", + "nvidia" + ], + "_pop_contributor_orgs_raw": [ + "@coiled", + "@coiled ", + "@nvidia" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.02, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 92, - "_pop_updated_since_days": 9, + "_pop_commit_frequency": 14.63, + "_pop_updated_issues_count": 297, + "_pop_closed_issues_count": 171, + "_pop_created_since_days": 91, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 2.0, - "_pop_comment_count": 0.0, + "_pop_recent_releases_estimated_tags": 26, + "_pop_recent_releases_adjusted_count": 26, + "_pop_issue_count": 297.0, + "_pop_comment_count": 809.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 4, - "_pop_score": 27.07, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 0, + "_pop_score": 55.91, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/sdispater/orator/master/README.rst", - "_readme_localurl": "sdispater~orator~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/dask/distributed/master/README.rst", + "_readme_localurl": "dask~distributed~README.rst", "_requirements_filenames": [ - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/sdispater/orator/master/pyproject.toml" + "https://raw.githubusercontent.com/dask/distributed/master/requirements.txt", + "https://raw.githubusercontent.com/dask/distributed/master/setup.py" ], "_requirements_localurls": [ - "sdispater~orator~pyproject.toml" + "dask~distributed~requirements.txt", + "dask~distributed~setup.py" ] }, { - "index": 438, - "category": "gis", - "githuburl": "https://github.com/giswqs/leafmap", + "index": 429, + "category": "jupyter", + "githuburl": "https://github.com/jupyter-lsp/jupyterlab-lsp", "featured": null, "links": null, "description": null, - "_repopath": "giswqs/leafmap", - "_reponame": "leafmap", - "_stars": 1371, - "_forks": 165, - "_watches": 40, + "_repopath": "jupyter-lsp/jupyterlab-lsp", + "_reponame": "jupyterlab-lsp", + "_stars": 1428, + "_forks": 118, + "_watches": 17, + "_language": "TypeScript", + "_homepage": "", + "_description": "jupyterlab-lsp: Coding assistance for JupyterLab (code navigation + hover suggestions + linters + autocompletion + rename) using Language Server Protocol", + "_organization": "jupyter-lsp", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-08-17T00:00:00.000Z", + "_age_weeks": 183, + "_stars_per_week": 7.78, "_topics": [ - "ipyleaflet", - "folium", - "mapping", - "python", - "geopython", - "jupyter-notebook", + "jupyterlab", + "jupyterlab-extension", + "language-server-protocol", + "jupyter-lab", + "lsp", + "linter", "jupyter", - "gis", - "dataviz", - "data-science", - "whiteboxtools", - "geospatial", - "geospatial-analysis", - "leafmap", - "streamlit", - "streamlit-webapp", - "plotly", - "pydeck", - "keplergl" + "jupyter-notebook", + "notebook", + "notebook-jupyter", + "ipython", + "autocompletion", + "julia-language", + "r" ], - "_language": "Python", - "_homepage": "https://leafmap.org", - "_description": "leafmap: A Python package for interactive mapping and geospatial analysis with minimal coding in a Jupyter environment", - "_organization": "giswqs", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-11T00:00:00.000Z", - "_created_at": "2021-03-10T00:00:00.000Z", - "_age_weeks": 92, - "_stars_per_week": 14.79, - "_pop_contributor_count": 19, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-01-02T00:00:00.000Z", + "_pop_contributor_count": 46, + "_pop_contributor_logins": [ + "Carreau@quansight-labs", + "JessicaBarh", + "bollwyvl", + "dependabot[bot]", + "fcollonval@quantstack", + "jtpio@quantstack", + "karlaspuldaro@ibm-codait", + "krassowski@universityofoxford|quansight", + "martinRenou@quantstack", + "trajamsmith@google" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "germanaerospacecenter(dlr)", - "naxa", - "universityoftennessee" + "google", + "ibm-codait", + "quansight-labs", + "quantstack", + "universityofoxford|quansight" + ], + "_pop_contributor_orgs_raw": [ + "@Quansight-Labs", + "@QuantStack", + "Google", + "IBM - CODAIT", + "University of Oxford | Quansight" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.79, - "_pop_updated_issues_count": 40, - "_pop_closed_issues_count": 37, - "_pop_created_since_days": 22, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 42, - "_pop_recent_releases_estimated_tags": 35, - "_pop_recent_releases_adjusted_count": 42, - "_pop_issue_count": 40.0, - "_pop_comment_count": 85.0, + "_pop_commit_frequency": 3.19, + "_pop_updated_issues_count": 46, + "_pop_closed_issues_count": 23, + "_pop_created_since_days": 43, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 46.0, + "_pop_comment_count": 77.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 4, - "_pop_score": 44.68, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 39.48, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/giswqs/leafmap/master/README.md", - "_readme_localurl": "giswqs~leafmap~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/giswqs/leafmap/master/requirements.txt", - "https://raw.githubusercontent.com/giswqs/leafmap/master/setup.py" - ], - "_requirements_localurls": [ - "giswqs~leafmap~requirements.txt", - "giswqs~leafmap~setup.py" - ] + "_readme_giturl": "https://raw.githubusercontent.com/jupyter-lsp/jupyterlab-lsp/master/README.md", + "_readme_localurl": "jupyter-lsp~jupyterlab-lsp~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { - "index": 267, - "category": "nlp", - "githuburl": "https://github.com/arxiv-vanity/arxiv-vanity", + "index": 108, + "category": "util", + "githuburl": "https://github.com/nficano/python-lambda", "featured": null, "links": null, "description": null, - "_repopath": "arxiv-vanity/arxiv-vanity", - "_reponame": "arxiv-vanity", - "_stars": 1366, - "_forks": 87, - "_watches": 22, + "_repopath": "nficano/python-lambda", + "_reponame": "python-lambda", + "_stars": 1427, + "_forks": 228, + "_watches": 32, + "_language": "Python", + "_homepage": "", + "_description": "python-lambda: A toolkit for developing and deploying serverless Python code in AWS Lambda. ", + "_organization": "nficano", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-02-26T00:00:00.000Z", + "_age_weeks": 364, + "_stars_per_week": 3.91, "_topics": [ - "latex", - "academic-publishing", - "science", - "arxiv" + "python", + "aws", + "aws-lambda", + "microservices", + "serverless" + ], + "_last_commit_date": "2022-06-03T00:00:00.000Z", + "_pop_contributor_count": 48, + "_pop_contributor_logins": [ + "asaolabs", + "dependabot-preview[bot]", + "gmyers-amfam@amfamlabs", + "jmeekhof@charliehealth", + "loide", + "mwbenowitz", + "nficano", + "rishabh-bhargava@stanforduniversity", + "slapula", + "soapergem@gemovationlabs" ], - "_language": "Python", - "_homepage": "https://www.arxiv-vanity.com", - "_description": "arxiv-vanity: Renders papers from arXiv as responsive web pages so you don't have to squint at a PDF.", - "_organization": "arxiv-vanity", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-01-18T00:00:00.000Z", - "_created_at": "2017-08-12T00:00:00.000Z", - "_age_weeks": 279, - "_stars_per_week": 4.89, - "_pop_contributor_count": 9, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "replicate" + "amfamlabs", + "charliehealth", + "gemovationlabs", + "stanforduniversity" + ], + "_pop_contributor_orgs_raw": [ + "@AmFamLabs ", + "Charlie Health", + "Gemovation Labs, LLC", + "Stanford University" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.13, - "_pop_updated_issues_count": 26, - "_pop_closed_issues_count": 15, - "_pop_created_since_days": 65, - "_pop_updated_since_days": 11, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 85, + "_pop_updated_since_days": 9, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 26.0, - "_pop_comment_count": 18.0, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 3.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 3, - "_pop_score": 23.08, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 28.84, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/arxiv-vanity/arxiv-vanity/master/README.md", - "_readme_localurl": "arxiv-vanity~arxiv-vanity~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nficano/python-lambda/master/README.md", + "_readme_localurl": "nficano~python-lambda~README.md", "_requirements_filenames": [ - "requirements.txt" + "setup.py", + "Pipfile" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/arxiv-vanity/arxiv-vanity/master/requirements.txt" + "https://raw.githubusercontent.com/nficano/python-lambda/master/setup.py", + "https://raw.githubusercontent.com/nficano/python-lambda/master/Pipfile" ], "_requirements_localurls": [ - "arxiv-vanity~arxiv-vanity~requirements.txt" + "nficano~python-lambda~setup.py", + "nficano~python-lambda~Pipfile" ] }, { @@ -34873,9 +48014,17 @@ "description": null, "_repopath": "omry/omegaconf", "_reponame": "omegaconf", - "_stars": 1360, - "_forks": 71, - "_watches": 17, + "_stars": 1405, + "_forks": 74, + "_watches": 16, + "_language": "Python", + "_homepage": "", + "_description": "omegaconf: Flexible Python configuration system. The last one you will ever need.", + "_organization": "omry", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-09-03T00:00:00.000Z", + "_age_weeks": 233, + "_stars_per_week": 6.02, "_topics": [ "python", "yaml", @@ -34885,38 +48034,53 @@ "python-types", "schema-validator" ], - "_language": "Python", - "_homepage": "", - "_description": "omegaconf: Flexible Python configuration system. The last one you will ever need.", - "_organization": "omry", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2018-09-03T00:00:00.000Z", - "_age_weeks": 224, - "_stars_per_week": 6.07, + "_last_commit_date": "2022-12-20T00:00:00.000Z", "_pop_contributor_count": 28, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Jasha10", + "anthonytec2@upenn", + "jgehring@facebookairesearch", + "kfollesdal", + "maresb@m\u00b2hycongmbh", + "odelalleau", + "omry@facebookairesearch", + "pereman2@ibmceph", + "pixelb@facebook", + "sugatoray@universityofwisconsin-milwaukee" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "ceph", "facebook", - "facebookairesearch" + "facebookairesearch", + "ibmceph", + "m\u00b2hycongmbh", + "universityofwisconsin-milwaukee", + "upenn" + ], + "_pop_contributor_orgs_raw": [ + "@facebook", + "@ibm @ceph", + "@upenn", + "Facebook AI Research", + "University of Wisconsin - Milwaukee", + "m\u00b2hycon GmbH" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.33, - "_pop_updated_issues_count": 51, - "_pop_closed_issues_count": 35, - "_pop_created_since_days": 52, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 2.06, + "_pop_updated_issues_count": 34, + "_pop_closed_issues_count": 18, + "_pop_created_since_days": 54, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 4, "_pop_recent_releases_estimated_tags": 4, "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 51.0, - "_pop_comment_count": 34.0, + "_pop_issue_count": 34.0, + "_pop_comment_count": 75.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 58, - "_pop_score": 45.53, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 0, + "_pop_score": 40.19, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/omry/omegaconf/master/README.md", "_readme_localurl": "omry~omegaconf~README.md", @@ -34934,78 +48098,256 @@ ] }, { - "index": 298, - "category": "crypto", - "githuburl": "https://github.com/blankly-finance/blankly", + "index": 317, + "category": "gamedev", + "githuburl": "https://github.com/pyglet/pyglet", "featured": null, "links": null, "description": null, - "_repopath": "blankly-finance/blankly", - "_reponame": "blankly", - "_stars": 1357, - "_forks": 173, - "_watches": 28, + "_repopath": "pyglet/pyglet", + "_reponame": "pyglet", + "_stars": 1402, + "_forks": 252, + "_watches": 32, + "_language": "Python", + "_homepage": "http://pyglet.org", + "_description": "pyglet is a cross-platform windowing and multimedia library for Python, for developing games and other visually rich applications.", + "_organization": "pyglet", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2019-06-09T00:00:00.000Z", + "_age_weeks": 193, + "_stars_per_week": 7.25, "_topics": [ - "cryptocurrency", - "bot-framework", - "investment", - "bots", - "bot", - "coinbase", - "binance", - "blankly", - "stocks", - "platform", - "framework", - "trading", - "trading-bot", - "trading-strategies", + "pyglet", "python", - "crypto", - "algotrading" + "opengl", + "gamedev", + "scientific-visualization" ], - "_language": "Python", - "_homepage": "https://package.blankly.finance", - "_description": "blankly: \ud83d\ude80 \ud83d\udcb8 Easily build, backtest and deploy your algo in just a few lines of code. Trade stocks, cryptos, and forex across exchanges w/ one package.", - "_organization": "blankly-finance", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-08T00:00:00.000Z", - "_created_at": "2021-03-09T00:00:00.000Z", - "_age_weeks": 92, - "_stars_per_week": 14.61, - "_pop_contributor_count": 16, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 143, + "_pop_contributor_logins": [ + "aholkner", + "andy-5", + "benmoran56", + "caffeinepills", + "dangillet", + "einarf@zetta.io", + "phillip-nguyen", + "reidrac@itv", + "silvester747@tomtom-international", + "techtonik" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "amazonwebservices", - "student" + "itv", + "tomtom-international", + "zetta.io" + ], + "_pop_contributor_orgs_raw": [ + "@ITV ", + "@tomtom-international", + "Zetta.IO" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 10.13, - "_pop_updated_issues_count": 16, - "_pop_closed_issues_count": 10, - "_pop_created_since_days": 22, + "_pop_commit_frequency": 7.92, + "_pop_updated_issues_count": 79, + "_pop_closed_issues_count": 54, + "_pop_created_since_days": 45, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, + "_pop_recent_releases_count": 9, "_pop_recent_releases_estimated_tags": 15, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 16.0, - "_pop_comment_count": 29.0, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 79.0, + "_pop_comment_count": 193.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 4, - "_pop_score": 39.08, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 0, + "_pop_score": 48.75, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/blankly-finance/blankly/master/README.md", - "_readme_localurl": "blankly-finance~blankly~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pyglet/pyglet/master/README.md", + "_readme_localurl": "pyglet~pyglet~README.md", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/blankly-finance/blankly/master/setup.py" + "https://raw.githubusercontent.com/pyglet/pyglet/master/setup.py" ], "_requirements_localurls": [ - "blankly-finance~blankly~setup.py" + "pyglet~pyglet~setup.py" + ] + }, + { + "index": 149, + "category": "data", + "githuburl": "https://github.com/simple-salesforce/simple-salesforce", + "featured": null, + "links": null, + "description": null, + "_repopath": "simple-salesforce/simple-salesforce", + "_reponame": "simple-salesforce", + "_stars": 1397, + "_forks": 614, + "_watches": 89, + "_language": "Python", + "_homepage": null, + "_description": "simple-salesforce: A very simple Salesforce.com REST API client for Python", + "_organization": "simple-salesforce", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2013-01-17T00:00:00.000Z", + "_age_weeks": 526, + "_stars_per_week": 2.65, + "_topics": [ + "salesforce", + "api", + "api-client", + "python" + ], + "_last_commit_date": "2023-01-18T00:00:00.000Z", + "_pop_contributor_count": 75, + "_pop_contributor_logins": [ + "andscoop", + "demianbrecht@salesforce", + "fr-anthony", + "hello-josh", + "jasonschroeder-sfdc@salesforce", + "jon-wobken", + "llazzaro@:+1:", + "nickcatal", + "scottpersinger@tatari", + "shawalli" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + ":+1:", + "salesforce", + "tatari" + ], + "_pop_contributor_orgs_raw": [ + ":+1: ", + "@salesforce", + "@salesforce ", + "Tatari" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.23, + "_pop_updated_issues_count": 54, + "_pop_closed_issues_count": 30, + "_pop_created_since_days": 123, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 54.0, + "_pop_comment_count": 37.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 39.77, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/simple-salesforce/simple-salesforce/master/README.rst", + "_readme_localurl": "simple-salesforce~simple-salesforce~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/simple-salesforce/simple-salesforce/master/setup.py" + ], + "_requirements_localurls": [ + "simple-salesforce~simple-salesforce~setup.py" + ] + }, + { + "index": 318, + "category": "gamedev", + "githuburl": "https://github.com/pythonarcade/arcade", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "pythonarcade/arcade", + "_reponame": "arcade", + "_stars": 1395, + "_forks": 263, + "_watches": 56, + "_language": "Python", + "_homepage": "http://arcade.academy", + "_description": "arcade: Easy to use Python library for creating 2D arcade games.", + "_organization": "pythonarcade", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2016-01-04T00:00:00.000Z", + "_age_weeks": 372, + "_stars_per_week": 3.75, + "_topics": [ + "python3", + "python", + "arcade-framework", + "arcade-api", + "arcade-learning-environment", + "opengl", + "educational-technology", + "educational-resources" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 137, + "_pop_contributor_logins": [ + "Cleptomania", + "SirGnip", + "chpurdy", + "dangillet", + "einarf@zetta.io", + "eruvanos@vw-dilab", + "janscas", + "pauleveritt@jetbrains", + "pushfoo@freelance,opentofull-time", + "pvcraven@optimizely" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "freelance,opentofull-time", + "jetbrains", + "optimizely", + "vw-dilab", + "zetta.io" + ], + "_pop_contributor_orgs_raw": [ + "@vw-dilab ", + "Freelance, open to full-time", + "JetBrains", + "Optimizely", + "Zetta.IO" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 15.06, + "_pop_updated_issues_count": 213, + "_pop_closed_issues_count": 173, + "_pop_created_since_days": 87, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 18, + "_pop_recent_releases_adjusted_count": 18, + "_pop_issue_count": 213.0, + "_pop_comment_count": 246.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 53.98, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pythonarcade/arcade/master/README.rst", + "_readme_localurl": "pythonarcade~arcade~README.rst", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pythonarcade/arcade/master/requirements.txt", + "https://raw.githubusercontent.com/pythonarcade/arcade/master/setup.py" + ], + "_requirements_localurls": [ + "pythonarcade~arcade~requirements.txt", + "pythonarcade~arcade~setup.py" ] }, { @@ -35017,44 +48359,62 @@ "description": null, "_repopath": "pytest-dev/pytest-cov", "_reponame": "pytest-cov", - "_stars": 1356, - "_forks": 190, + "_stars": 1391, + "_forks": 191, "_watches": 34, - "_topics": [ - "pytest", - "python" - ], "_language": "Python", "_homepage": "", "_description": "pytest-cov: Coverage plugin for pytest.", "_organization": "pytest-dev", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-03T00:00:00.000Z", + "_updated_at": "2023-02-20T00:00:00.000Z", "_created_at": "2014-04-17T00:00:00.000Z", - "_age_weeks": 452, - "_stars_per_week": 3.0, + "_age_weeks": 461, + "_stars_per_week": 3.01, + "_topics": [ + "pytest", + "python" + ], + "_last_commit_date": "2022-12-03T00:00:00.000Z", "_pop_contributor_count": 81, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "blueyed@freelancer,upforhire", + "davidszotten", + "graingert", + "hugovk@nordsoftware", + "ionelmc", + "nedbat", + "nicoddemus@esss", + "pre-commit-ci[bot]", + "schlamar", + "wolph" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "esss", "freelancer,upforhire", "nordsoftware" ], + "_pop_contributor_orgs_raw": [ + "ESSS", + "Freelancer, up for hire", + "Nord Software" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.73, - "_pop_updated_issues_count": 39, - "_pop_closed_issues_count": 18, - "_pop_created_since_days": 106, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 0.62, + "_pop_updated_issues_count": 32, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 108, + "_pop_updated_since_days": 3, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 5, "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 39.0, + "_pop_issue_count": 32.0, "_pop_comment_count": 78.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 6181, - "_pop_score": 56.35, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 0, + "_pop_score": 40.53, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest-cov/master/README.rst", "_readme_localurl": "pytest-dev~pytest-cov~README.rst", @@ -35069,251 +48429,314 @@ ] }, { - "index": 478, - "category": "ml-dl", - "githuburl": "https://github.com/tensorflow/mesh", + "index": 284, + "category": "data", + "githuburl": "https://github.com/sdispater/orator", "featured": null, "links": null, "description": null, - "_repopath": "tensorflow/mesh", - "_reponame": "mesh", - "_stars": 1344, - "_forks": 235, - "_watches": 44, - "_topics": [], + "_repopath": "sdispater/orator", + "_reponame": "orator", + "_stars": 1385, + "_forks": 164, + "_watches": 46, "_language": "Python", - "_homepage": "", - "_description": "Mesh TensorFlow: Model Parallelism Made Easier", - "_organization": "tensorflow", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-10-04T00:00:00.000Z", - "_created_at": "2018-09-20T00:00:00.000Z", - "_age_weeks": 221, - "_stars_per_week": 6.07, - "_pop_contributor_count": 48, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://orator-orm.com", + "_description": "orator: The Orator ORM provides a simple yet beautiful ActiveRecord implementation.", + "_organization": "sdispater", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-05-24T00:00:00.000Z", + "_age_weeks": 404, + "_stars_per_week": 3.42, + "_topics": [ + "python", + "orm", + "database" + ], + "_last_commit_date": "2022-03-13T00:00:00.000Z", + "_pop_contributor_count": 32, + "_pop_contributor_logins": [ + "ArthurYdalgo", + "BrandonShar@ezcater", + "cselmer", + "denislins", + "ihumanable", + "jiahut", + "josephmancuso@masoniteframework", + "scorphus@gitlab", + "sdispater", + "vaibhavmule@polymerize" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google", - "uncandhuggingface" + "ezcater", + "gitlab", + "masoniteframework", + "polymerize" + ], + "_pop_contributor_orgs_raw": [ + "@GitLab", + "@MasoniteFramework ", + "@Polymerize ", + "ezCater" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.13, - "_pop_updated_issues_count": 1, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 52, - "_pop_updated_since_days": 3, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 94, + "_pop_updated_since_days": 12, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 1.0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 2.0, "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 40, - "_pop_score": 34.48, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/tensorflow/mesh/master/README.md", - "_readme_localurl": "tensorflow~mesh~README.md", + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 27.42, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/sdispater/orator/master/README.rst", + "_readme_localurl": "sdispater~orator~README.rst", "_requirements_filenames": [ - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/tensorflow/mesh/master/setup.py" + "https://raw.githubusercontent.com/sdispater/orator/master/pyproject.toml" ], "_requirements_localurls": [ - "tensorflow~mesh~setup.py" + "sdispater~orator~pyproject.toml" ] }, { - "index": 318, - "category": "gamedev", - "githuburl": "https://github.com/pythonarcade/arcade", - "featured": 1.0, + "index": 267, + "category": "nlp", + "githuburl": "https://github.com/arxiv-vanity/arxiv-vanity", + "featured": null, "links": null, "description": null, - "_repopath": "pythonarcade/arcade", - "_reponame": "arcade", - "_stars": 1343, - "_forks": 252, - "_watches": 56, + "_repopath": "arxiv-vanity/arxiv-vanity", + "_reponame": "arxiv-vanity", + "_stars": 1384, + "_forks": 89, + "_watches": 22, + "_language": "Python", + "_homepage": "https://www.arxiv-vanity.com", + "_description": "arxiv-vanity: Renders papers from arXiv as responsive web pages so you don't have to squint at a PDF.", + "_organization": "arxiv-vanity", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2017-08-12T00:00:00.000Z", + "_age_weeks": 288, + "_stars_per_week": 4.8, "_topics": [ - "python3", - "python", - "arcade-framework", - "arcade-api", - "arcade-learning-environment", - "opengl", - "educational-technology", - "educational-resources" + "latex", + "academic-publishing", + "science", + "arxiv" ], - "_language": "Python", - "_homepage": "http://arcade.academy", - "_description": "arcade: Easy to use Python library for creating 2D arcade games.", - "_organization": "pythonarcade", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2016-01-04T00:00:00.000Z", - "_age_weeks": 363, - "_stars_per_week": 3.7, - "_pop_contributor_count": 131, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-01-18T00:00:00.000Z", + "_pop_contributor_count": 9, + "_pop_contributor_logins": [ + "ImgBotApp@imgbot", + "bfirsh@replicate", + "dependabot-preview[bot]", + "dependabot-support", + "dependabot[bot]", + "jai-deepsource@deepsourcelabs", + "jkukul", + "ryota-mo" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "freelance,opentofull-timeemployment", - "optimizely", - "vw-dilab", - "zetta.io" + "deepsourcelabs", + "imgbot", + "replicate" + ], + "_pop_contributor_orgs_raw": [ + "@deepsourcelabs ", + "@replicate", + "Imgbot" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 15.96, - "_pop_updated_issues_count": 135, - "_pop_closed_issues_count": 102, - "_pop_created_since_days": 85, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 20, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 67, + "_pop_updated_since_days": 13, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 18, - "_pop_recent_releases_adjusted_count": 18, - "_pop_issue_count": 135.0, - "_pop_comment_count": 153.0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 20.0, + "_pop_comment_count": 11.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 112, - "_pop_score": 60.61, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pythonarcade/arcade/master/README.rst", - "_readme_localurl": "pythonarcade~arcade~README.rst", + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 22.65, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/arxiv-vanity/arxiv-vanity/master/README.md", + "_readme_localurl": "arxiv-vanity~arxiv-vanity~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pythonarcade/arcade/master/requirements.txt", - "https://raw.githubusercontent.com/pythonarcade/arcade/master/setup.py" + "https://raw.githubusercontent.com/arxiv-vanity/arxiv-vanity/master/requirements.txt" ], "_requirements_localurls": [ - "pythonarcade~arcade~requirements.txt", - "pythonarcade~arcade~setup.py" + "arxiv-vanity~arxiv-vanity~requirements.txt" ] }, { - "index": 460, - "category": "nlp", - "githuburl": "https://github.com/google-research/language", + "index": 766, + "category": "diffusion", + "githuburl": "https://github.com/divamgupta/stable-diffusion-tensorflow", "featured": null, "links": null, "description": null, - "_repopath": "google-research/language", - "_reponame": "language", - "_stars": 1339, - "_forks": 311, - "_watches": 65, - "_topics": [ - "natural-language-processing", - "machine-learning", - "research" - ], + "_repopath": "divamgupta/stable-diffusion-tensorflow", + "_reponame": "stable-diffusion-tensorflow", + "_stars": 1371, + "_forks": 192, + "_watches": 22, "_language": "Python", - "_homepage": "https://ai.google/research/teams/language/", - "_description": "language: Shared repository for open-sourced projects from the Google AI Language team.", - "_organization": "google-research", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2018-10-16T00:00:00.000Z", - "_age_weeks": 217, - "_stars_per_week": 6.15, - "_pop_contributor_count": 10, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_homepage": "", + "_description": "stable-diffusion-tensorflow: Stable Diffusion in TensorFlow / Keras", + "_organization": "divamgupta", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-09-15T00:00:00.000Z", + "_age_weeks": 22, + "_stars_per_week": 59.98, + "_topics": [], + "_last_commit_date": "2022-11-22T00:00:00.000Z", + "_pop_contributor_count": 13, + "_pop_contributor_logins": [ + "AK391@huggingface", + "Lime-Cakes", + "PabloRosales", + "ShaunXZ", + "adietrichs", + "alexgann", + "costiash", + "divamgupta", + "fchollet", + "virtualramblas" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google", - "googleresearch", - "universityofwashington" + "huggingface" + ], + "_pop_contributor_orgs_raw": [ + "Huggingface" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.1, - "_pop_updated_issues_count": 16, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 51, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 1.79, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 5, + "_pop_updated_since_days": 3, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 16.0, - "_pop_comment_count": 3.0, + "_pop_issue_count": 11.0, + "_pop_comment_count": 21.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.2, - "_pop_dependents_count": 20, - "_pop_score": 32.43, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 20.15, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/google-research/language/master/README.md", - "_readme_localurl": "google-research~language~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/divamgupta/stable-diffusion-tensorflow/master/README.md", + "_readme_localurl": "divamgupta~stable-diffusion-tensorflow~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/google-research/language/master/setup.py" + "https://raw.githubusercontent.com/divamgupta/stable-diffusion-tensorflow/master/requirements.txt", + "https://raw.githubusercontent.com/divamgupta/stable-diffusion-tensorflow/master/setup.py" ], "_requirements_localurls": [ - "google-research~language~setup.py" + "divamgupta~stable-diffusion-tensorflow~requirements.txt", + "divamgupta~stable-diffusion-tensorflow~setup.py" ] }, { - "index": 876, - "category": "study", - "githuburl": "https://github.com/rasbt/machine-learning-book", + "index": 478, + "category": "ml-dl", + "githuburl": "https://github.com/tensorflow/mesh", "featured": null, "links": null, "description": null, - "_repopath": "rasbt/machine-learning-book", - "_reponame": "machine-learning-book", - "_stars": 1332, - "_forks": 496, - "_watches": 27, - "_topics": [ - "machine-learning", - "scikit-learn", - "deep-learning", - "neural-networks", - "pytorch" + "_repopath": "tensorflow/mesh", + "_reponame": "mesh", + "_stars": 1370, + "_forks": 240, + "_watches": 47, + "_language": "Python", + "_homepage": "", + "_description": "Mesh TensorFlow: Model Parallelism Made Easier", + "_organization": "tensorflow", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-09-20T00:00:00.000Z", + "_age_weeks": 230, + "_stars_per_week": 5.93, + "_topics": [], + "_last_commit_date": "2023-01-25T00:00:00.000Z", + "_pop_contributor_count": 49, + "_pop_contributor_logins": [ + "adarob@google", + "craffel@uncandhuggingface", + "dustinvtran@googlebrain", + "hwchung27", + "katelee168", + "mmatena", + "nfiedel@google", + "nshazeer", + "sharannarang", + "toponado-zz@google" ], - "_language": "Jupyter Notebook", - "_homepage": "https://sebastianraschka.com/books/#machine-learning-with-pytorch-and-scikit-learn", - "_description": "machine-learning-book: Code Repository for Machine Learning with PyTorch and Scikit-Learn", - "_organization": "rasbt", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", - "_created_at": "2021-12-19T00:00:00.000Z", - "_age_weeks": 52, - "_stars_per_week": 25.55, - "_pop_contributor_count": 9, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "google", - "lightning-ai,universityofwisconsin-madison" + "googlebrain", + "uncandhuggingface" + ], + "_pop_contributor_orgs_raw": [ + "@Google", + "@google", + "Google", + "Google Brain", + "UNC and Hugging Face" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.19, - "_pop_updated_issues_count": 31, - "_pop_closed_issues_count": 23, - "_pop_created_since_days": 12, + "_pop_commit_frequency": 0.12, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 54, "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 31.0, - "_pop_comment_count": 31.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 10, - "_pop_score": 32.11, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 27.93, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/rasbt/machine-learning-book/master/README.md", - "_readme_localurl": "rasbt~machine-learning-book~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/tensorflow/mesh/master/README.md", + "_readme_localurl": "tensorflow~mesh~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/tensorflow/mesh/master/setup.py" + ], + "_requirements_localurls": [ + "tensorflow~mesh~setup.py" + ] }, { "index": 659, @@ -35324,9 +48747,17 @@ "description": null, "_repopath": "tensorly/tensorly", "_reponame": "tensorly", - "_stars": 1331, - "_forks": 261, - "_watches": 45, + "_stars": 1367, + "_forks": 267, + "_watches": 46, + "_language": "Python", + "_homepage": "http://tensorly.org", + "_description": "TensorLy: Tensor Learning in Python.", + "_organization": "tensorly", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2016-10-21T00:00:00.000Z", + "_age_weeks": 330, + "_stars_per_week": 4.13, "_topics": [ "machine-learning", "tensor", @@ -35347,40 +48778,53 @@ "tensor-regression", "regression" ], - "_language": "Python", - "_homepage": "http://tensorly.org", - "_description": "TensorLy: Tensor Learning in Python.", - "_organization": "tensorly", - "_updated_at": "2022-12-10T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", - "_created_at": "2016-10-21T00:00:00.000Z", - "_age_weeks": 321, - "_stars_per_week": 4.14, - "_pop_contributor_count": 57, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 59, + "_pop_contributor_logins": [ + "JeanKossaifi@nvidiaai", + "MarieRoald@simulametropolitan", + "aarmey@universityofcalifornia,losangeles", + "asmeurer@quansight", + "caglayantuna@inria", + "cyrillustan", + "merajhashemi", + "scopatz", + "taylorpatti", + "yngvem@bouvet" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "bouvet", "inria", "nvidiaai", "quansight", "simulametropolitan", "universityofcalifornia,losangeles" ], + "_pop_contributor_orgs_raw": [ + "@Quansight ", + "Bouvet", + "INRIA", + "NVIDIA AI", + "Simula Metropolitan", + "University of California, Los Angeles" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.83, - "_pop_updated_issues_count": 33, - "_pop_closed_issues_count": 22, - "_pop_created_since_days": 75, + "_pop_commit_frequency": 5.31, + "_pop_updated_issues_count": 50, + "_pop_closed_issues_count": 33, + "_pop_created_since_days": 77, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, + "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 33.0, - "_pop_comment_count": 47.0, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 50.0, + "_pop_comment_count": 104.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 8377, - "_pop_score": 60.62, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 0, + "_pop_score": 45.87, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/tensorly/tensorly/master/README.rst", "_readme_localurl": "tensorly~tensorly~README.rst", @@ -35397,6 +48841,167 @@ "tensorly~tensorly~setup.py" ] }, + { + "index": 460, + "category": "nlp", + "githuburl": "https://github.com/google-research/language", + "featured": null, + "links": null, + "description": null, + "_repopath": "google-research/language", + "_reponame": "language", + "_stars": 1363, + "_forks": 318, + "_watches": 64, + "_language": "Python", + "_homepage": "https://ai.google/research/teams/language/", + "_description": "language: Shared repository for open-sourced projects from the Google AI Language team.", + "_organization": "google-research", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-10-16T00:00:00.000Z", + "_age_weeks": 227, + "_stars_per_week": 6.0, + "_topics": [ + "natural-language-processing", + "machine-learning", + "research" + ], + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 10, + "_pop_contributor_logins": [ + "Harmon758", + "bdhingra", + "calberti", + "dhgarrette@googleresearch", + "djweiss@google", + "jhclark-google@google", + "kentonl@universityofwashington", + "manzilz", + "oja", + "slavpetrov" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "google", + "googleresearch", + "universityofwashington" + ], + "_pop_contributor_orgs_raw": [ + "Google", + "Google Research", + "University of Washington" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 53, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 5.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 0, + "_pop_score": 25.86, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/google-research/language/master/README.md", + "_readme_localurl": "google-research~language~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/google-research/language/master/setup.py" + ], + "_requirements_localurls": [ + "google-research~language~setup.py" + ] + }, + { + "index": 676, + "category": "gis", + "githuburl": "https://github.com/apache/incubator-sedona", + "featured": null, + "links": null, + "description": null, + "_repopath": "apache/incubator-sedona", + "_reponame": "sedona", + "_stars": 1359, + "_forks": 558, + "_watches": 105, + "_language": "Java", + "_homepage": "http://sedona.apache.org/", + "_description": "sedona: A cluster computing framework for processing large-scale geospatial data", + "_organization": "apache", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2015-04-24T00:00:00.000Z", + "_age_weeks": 408, + "_stars_per_week": 3.33, + "_topics": [ + "cluster-computing", + "spatial-sql", + "geospatial", + "spatial-analysis", + "spatial-query", + "scala", + "java", + "python" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 93, + "_pop_contributor_logins": [ + "Imbruced", + "Kontinuation@wherobots", + "jiayuasu@wherobots", + "jinxuan@bloomberg", + "kanchanchy", + "mbasmanova", + "netanel246@upstreamsecurity", + "sekikn@nttdata", + "umartin", + "zongsizhang@grab" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "bloomberg", + "grab", + "nttdata", + "upstreamsecurity", + "wherobots" + ], + "_pop_contributor_orgs_raw": [ + "Bloomberg", + "Grab", + "NTT DATA", + "Upstream Security ", + "Wherobots Inc." + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.27, + "_pop_updated_issues_count": 180, + "_pop_closed_issues_count": 176, + "_pop_created_since_days": 95, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 180.0, + "_pop_comment_count": 97.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 47.13, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/apache/incubator-sedona/master/README.md", + "_readme_localurl": "apache~incubator-sedona~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 898, "category": "ml-ops", @@ -35406,9 +49011,17 @@ "description": null, "_repopath": "hi-primus/optimus", "_reponame": "optimus", - "_stars": 1325, - "_forks": 223, - "_watches": 41, + "_stars": 1338, + "_forks": 224, + "_watches": 42, + "_language": "Python", + "_homepage": "https://hi-optimus.com", + "_description": "optimus: :truck: Agile Data Preparation Workflows made\u00a0easy with Pandas, Dask, cuDF, Dask-cuDF, Vaex and PySpark", + "_organization": "hi-primus", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2017-07-13T00:00:00.000Z", + "_age_weeks": 292, + "_stars_per_week": 4.57, "_topics": [ "spark", "pyspark", @@ -35430,39 +49043,51 @@ "dask-cudf", "data-cleaning" ], - "_language": "Python", - "_homepage": "https://hi-optimus.com", - "_description": "optimus: :truck: Agile Data Preparation Workflows made\u00a0easy with Pandas, Dask, cuDF, Dask-cuDF, Vaex and PySpark", - "_organization": "hi-primus", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-10-17T00:00:00.000Z", - "_created_at": "2017-07-13T00:00:00.000Z", - "_age_weeks": 283, - "_stars_per_week": 4.67, "_pop_contributor_count": 24, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "FavioVazquez@life", + "Jarrioja@boitas", + "MrPowers", + "argenisleon@bumblebee", + "arpit1997@socialcopsdeviiitvatlanhq", + "dependabot[bot]", + "eschizoid", + "joseangelhernao", + "luis11011@bumblebee", + "pyup-bot@pyupio" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "boitas", "bumblebee", "life", - "pyupio" + "pyupio", + "socialcopsdeviiitvatlanhq" + ], + "_pop_contributor_orgs_raw": [ + "@boitas", + "@pyupio", + "@socialcopsdev @iiitv @atlanhq", + "Bumblebee", + "Life" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.33, - "_pop_updated_issues_count": 22, - "_pop_closed_issues_count": 16, - "_pop_created_since_days": 66, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 13, + "_pop_commit_frequency": 3.13, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 68, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 7, "_pop_recent_releases_estimated_tags": 23, - "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 22.0, - "_pop_comment_count": 8.0, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 11.0, + "_pop_comment_count": 7.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.4, - "_pop_dependents_count": 7, - "_pop_score": 41.25, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 35.3, "_readme_filename": "", "_readme_giturl": "", "_readme_localurl": "", @@ -35471,66 +49096,80 @@ "_requirements_localurls": [] }, { - "index": 317, - "category": "gamedev", - "githuburl": "https://github.com/pyglet/pyglet", + "index": 338, + "category": "perf", + "githuburl": "https://github.com/tlkh/asitop", "featured": null, "links": null, "description": null, - "_repopath": "pyglet/pyglet", - "_reponame": "pyglet", - "_stars": 1318, - "_forks": 248, - "_watches": 29, + "_repopath": "tlkh/asitop", + "_reponame": "asitop", + "_stars": 1334, + "_forks": 79, + "_watches": 19, + "_language": "Python", + "_homepage": "https://tlkh.github.io/asitop/", + "_description": "asitop: Perf monitoring CLI tool for Apple Silicon", + "_organization": "tlkh", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-10-27T00:00:00.000Z", + "_age_weeks": 69, + "_stars_per_week": 19.33, "_topics": [ - "pyglet", - "python", - "opengl", - "gamedev", - "scientific-visualization" + "cpu", + "gpu", + "cli", + "macos", + "m1", + "apple-silicon" + ], + "_last_commit_date": "2023-01-24T00:00:00.000Z", + "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "Lunar-ZZ", + "TienTim", + "ardacoskunses", + "iiSeymour@oxfordnanoporetechnologies", + "mend-bolt-for-github[bot]", + "paul-nameless", + "tlkh@singaporeuniversityoftechnologyanddesign" ], - "_language": "Python", - "_homepage": "http://pyglet.org", - "_description": "pyglet is a cross-platform windowing and multimedia library for Python, for developing games and other visually rich applications.", - "_organization": "pyglet", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2019-06-09T00:00:00.000Z", - "_age_weeks": 184, - "_stars_per_week": 7.16, - "_pop_contributor_count": 140, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "itv", - "tomtom-international" + "oxfordnanoporetechnologies", + "singaporeuniversityoftechnologyanddesign" + ], + "_pop_contributor_orgs_raw": [ + "Oxford Nanopore Technologies", + "Singapore University of Technology and Design" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 7.25, - "_pop_updated_issues_count": 92, - "_pop_closed_issues_count": 65, - "_pop_created_since_days": 43, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 14, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 92.0, - "_pop_comment_count": 261.0, + "_pop_commit_frequency": 0.29, + "_pop_updated_issues_count": 13, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 16, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 13.0, + "_pop_comment_count": 25.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.8, - "_pop_dependents_count": 225, - "_pop_score": 56.82, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 24.24, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pyglet/pyglet/master/README.md", - "_readme_localurl": "pyglet~pyglet~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/tlkh/asitop/master/README.md", + "_readme_localurl": "tlkh~asitop~README.md", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pyglet/pyglet/master/setup.py" + "https://raw.githubusercontent.com/tlkh/asitop/master/setup.py" ], "_requirements_localurls": [ - "pyglet~pyglet~setup.py" + "tlkh~asitop~setup.py" ] }, { @@ -35542,47 +49181,67 @@ "description": null, "_repopath": "jupyter-widgets/ipyleaflet", "_reponame": "ipyleaflet", - "_stars": 1316, - "_forks": 348, + "_stars": 1331, + "_forks": 350, "_watches": 61, + "_language": "JavaScript", + "_homepage": "https://ipyleaflet.readthedocs.io", + "_description": "ipyleaflet: A Jupyter - Leaflet.js bridge", + "_organization": "jupyter-widgets", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2014-05-07T00:00:00.000Z", + "_age_weeks": 459, + "_stars_per_week": 2.9, "_topics": [ "jupyterlab-extension", "leaflet", "visualization", "jupyter" ], - "_language": "JavaScript", - "_homepage": "https://ipyleaflet.readthedocs.io", - "_description": "ipyleaflet: A Jupyter - Leaflet.js bridge", - "_organization": "jupyter-widgets", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-10-27T00:00:00.000Z", - "_created_at": "2014-05-07T00:00:00.000Z", - "_age_weeks": 449, - "_stars_per_week": 2.93, - "_pop_contributor_count": 81, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-10T00:00:00.000Z", + "_pop_contributor_count": 82, + "_pop_contributor_logins": [ + "HaudinFlorence@quantstack", + "SylvainCorlay@quantstack", + "VasavanThiru", + "davidbrochart@quantstack", + "dependabot[bot]", + "ellisonbg@amazonwebservices", + "fitoprincipe@ldc", + "jasongrout@databricks", + "martinRenou@quantstack", + "sackh" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "amazonwebservices", "databricks", + "ldc", "quantstack" ], + "_pop_contributor_orgs_raw": [ + "@QuantStack", + "@databricks", + "Amazon Web Services", + "LDC", + "QuantStack" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.98, - "_pop_updated_issues_count": 40, - "_pop_closed_issues_count": 22, - "_pop_created_since_days": 105, - "_pop_updated_since_days": 2, + "_pop_commit_frequency": 1.87, + "_pop_updated_issues_count": 34, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 107, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 4, "_pop_recent_releases_estimated_tags": 9, "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 40.0, - "_pop_comment_count": 72.0, + "_pop_issue_count": 34.0, + "_pop_comment_count": 43.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 13, - "_pop_score": 46.28, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 43.59, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jupyter-widgets/ipyleaflet/master/README.md", "_readme_localurl": "jupyter-widgets~ipyleaflet~README.md", @@ -35608,9 +49267,17 @@ "description": null, "_repopath": "alkaline-ml/pmdarima", "_reponame": "pmdarima", - "_stars": 1290, - "_forks": 223, + "_stars": 1324, + "_forks": 220, "_watches": 36, + "_language": "Python", + "_homepage": "https://www.alkaline-ml.com/pmdarima", + "_description": "pmdarima: A statistical library designed to fill the void in Python's time series analysis capabilities, including the equivalent of R's auto.arima function.", + "_organization": "alkaline-ml", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2017-03-30T00:00:00.000Z", + "_age_weeks": 307, + "_stars_per_week": 4.3, "_topics": [ "arima", "time-series", @@ -35622,173 +49289,334 @@ "machine-learning", "sarimax" ], - "_language": "Python", - "_homepage": "https://www.alkaline-ml.com/pmdarima", - "_description": "pmdarima: A statistical library designed to fill the void in Python's time series analysis capabilities, including the equivalent of R's auto.arima function.", - "_organization": "alkaline-ml", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", - "_created_at": "2017-03-30T00:00:00.000Z", - "_age_weeks": 298, - "_stars_per_week": 4.32, + "_last_commit_date": "2022-12-20T00:00:00.000Z", "_pop_contributor_count": 22, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "aaronreidsmith@sevcosecurity", + "anne-decusatis", + "charlesdrotar@microsoft", + "chivalry@chivalrysoftware", + "christopher-siewert", + "felix-hilden", + "garyForeman", + "ryanrussell", + "telamonian@jpmorgan", + "tgsmith61591@toyota-connected" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "chivalrysoftware", + "jpmorgan", "microsoft", "sevcosecurity", "toyota-connected" ], + "_pop_contributor_orgs_raw": [ + "@toyota-connected ", + "Chivalry Software", + "JP Morgan", + "Microsoft", + "Sevco Security" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.46, - "_pop_updated_issues_count": 21, - "_pop_closed_issues_count": 10, - "_pop_created_since_days": 70, + "_pop_commit_frequency": 0.4, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 72, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 14.0, + "_pop_comment_count": 8.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 34.26, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/alkaline-ml/pmdarima/master/README.md", + "_readme_localurl": "alkaline-ml~pmdarima~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/alkaline-ml/pmdarima/master/requirements.txt", + "https://raw.githubusercontent.com/alkaline-ml/pmdarima/master/setup.py" + ], + "_requirements_localurls": [ + "alkaline-ml~pmdarima~requirements.txt", + "alkaline-ml~pmdarima~setup.py" + ] + }, + { + "index": 465, + "category": "ml-dl", + "githuburl": "https://github.com/pytorch/torchrec", + "featured": null, + "links": null, + "description": null, + "_repopath": "pytorch/torchrec", + "_reponame": "torchrec", + "_stars": 1321, + "_forks": 226, + "_watches": 26, + "_language": "Python", + "_homepage": "", + "_description": "torchrec: Pytorch domain library for recommendation systems", + "_organization": "pytorch", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-07-12T00:00:00.000Z", + "_age_weeks": 84, + "_stars_per_week": 15.67, + "_topics": [ + "pytorch", + "gpu", + "deep-learning", + "cuda", + "recommender-system", + "recommendation-system", + "sharding" + ], + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 140, + "_pop_contributor_logins": [ + "RenfeiChen-FB", + "YLGH", + "YazhiGao@facebookai", + "colin2328@pytorch", + "facebook-github-bot@facebook", + "joshuadeng", + "s4ayub", + "samiwilf", + "xing-liu@facebookai", + "zyan0@meta" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "facebook", + "facebookai", + "meta", + "pytorch" + ], + "_pop_contributor_orgs_raw": [ + "@facebook", + "@pytorch ", + "Facebook AI", + "Meta" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 14.08, + "_pop_updated_issues_count": 244, + "_pop_closed_issues_count": 191, + "_pop_created_since_days": 20, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 21.0, - "_pop_comment_count": 13.0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 231.0, + "_pop_comment_count": 565.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 11, - "_pop_score": 41.37, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/alkaline-ml/pmdarima/master/README.md", - "_readme_localurl": "alkaline-ml~pmdarima~README.md", + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 0, + "_pop_score": 49.15, + "_readme_filename": "", + "_readme_giturl": "", + "_readme_localurl": "", "_requirements_filenames": [ "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/alkaline-ml/pmdarima/master/requirements.txt", - "https://raw.githubusercontent.com/alkaline-ml/pmdarima/master/setup.py" + "https://raw.githubusercontent.com/pytorch/torchrec/master/requirements.txt", + "https://raw.githubusercontent.com/pytorch/torchrec/master/setup.py", + "https://raw.githubusercontent.com/pytorch/torchrec/master/pyproject.toml" ], "_requirements_localurls": [ - "alkaline-ml~pmdarima~requirements.txt", - "alkaline-ml~pmdarima~setup.py" + "pytorch~torchrec~requirements.txt", + "pytorch~torchrec~setup.py", + "pytorch~torchrec~pyproject.toml" ] }, { - "index": 766, - "category": "diffusion", - "githuburl": "https://github.com/divamgupta/stable-diffusion-tensorflow", + "index": 941, + "category": "data", + "githuburl": "https://github.com/datastax/python-driver", "featured": null, "links": null, "description": null, - "_repopath": "divamgupta/stable-diffusion-tensorflow", - "_reponame": "stable-diffusion-tensorflow", - "_stars": 1288, - "_forks": 172, - "_watches": 19, - "_topics": [], + "_repopath": "datastax/python-driver", + "_reponame": "python-driver", + "_stars": 1318, + "_forks": 510, + "_watches": 81, "_language": "Python", "_homepage": "", - "_description": "stable-diffusion-tensorflow: Stable Diffusion in TensorFlow / Keras", - "_organization": "divamgupta", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-22T00:00:00.000Z", - "_created_at": "2022-09-15T00:00:00.000Z", - "_age_weeks": 13, - "_stars_per_week": 94.91, - "_pop_contributor_count": 13, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_description": "python-driver: DataStax Python Driver for Apache Cassandra", + "_organization": "datastax", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2013-07-08T00:00:00.000Z", + "_age_weeks": 502, + "_stars_per_week": 2.62, + "_topics": [], + "_last_commit_date": "2023-01-24T00:00:00.000Z", + "_pop_contributor_count": 187, + "_pop_contributor_logins": [ + "GregBestland", + "TheRealFalcon@canonical", + "aboudreault@kovarogroup", + "aholmberg", + "bdeggleston@apple", + "beltran@google", + "joaquincasares@audiusproject", + "mambocab@rapid7", + "rustyrazorblade@apple", + "thobbs@anticlassicstudios" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "anticlassicstudios", + "apple", + "audiusproject", + "canonical", + "google", + "kovarogroup", + "rapid7" + ], + "_pop_contributor_orgs_raw": [ + "@AudiusProject", + "Anticlassic Studios, LLC", + "Apple", + "Canonical", + "Google LLC", + "Kovaro Group", + "Rapid7" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.79, - "_pop_updated_issues_count": 56, - "_pop_closed_issues_count": 34, - "_pop_created_since_days": 3, + "_pop_commit_frequency": 0.25, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 117, "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 56.0, - "_pop_comment_count": 94.0, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 8.0, + "_pop_comment_count": 13.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 4, - "_pop_score": 23.09, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/divamgupta/stable-diffusion-tensorflow/master/README.md", - "_readme_localurl": "divamgupta~stable-diffusion-tensorflow~README.md", + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 45.84, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/datastax/python-driver/master/README.rst", + "_readme_localurl": "datastax~python-driver~README.rst", "_requirements_filenames": [ "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/divamgupta/stable-diffusion-tensorflow/master/requirements.txt", - "https://raw.githubusercontent.com/divamgupta/stable-diffusion-tensorflow/master/setup.py" + "https://raw.githubusercontent.com/datastax/python-driver/master/requirements.txt", + "https://raw.githubusercontent.com/datastax/python-driver/master/setup.py" ], "_requirements_localurls": [ - "divamgupta~stable-diffusion-tensorflow~requirements.txt", - "divamgupta~stable-diffusion-tensorflow~setup.py" + "datastax~python-driver~requirements.txt", + "datastax~python-driver~setup.py" ] }, { - "index": 676, - "category": "gis", - "githuburl": "https://github.com/apache/incubator-sedona", + "index": 885, + "category": "time-series", + "githuburl": "https://github.com/aistream-peelout/flow-forecast", "featured": null, "links": null, "description": null, - "_repopath": "apache/incubator-sedona", - "_reponame": "incubator-sedona", - "_stars": 1282, - "_forks": 536, - "_watches": 101, + "_repopath": "aistream-peelout/flow-forecast", + "_reponame": "flow-forecast", + "_stars": 1317, + "_forks": 224, + "_watches": 21, + "_language": "Python", + "_homepage": "https://flow-forecast.atlassian.net/wiki/spaces/FF/overview", + "_description": "flow-forecast: Deep learning PyTorch library for time series forecasting, classification, and anomaly detection (originally for flood forecasting).", + "_organization": "aistream-peelout", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2019-08-15T00:00:00.000Z", + "_age_weeks": 183, + "_stars_per_week": 7.16, "_topics": [ - "cluster-computing", - "spatial-sql", - "geospatial", - "spatial-analysis", - "spatial-query", - "scala", - "java", - "python" + "deep-learning", + "pytorch", + "time-series-forecasting", + "time-series", + "transfer-learning", + "deep-neural-networks", + "transformer", + "forecasting", + "lstm", + "time-series-regression", + "state-of-the-art-models", + "anomaly-detection", + "time-series-analysis", + "hacktoberfest" ], - "_language": "Java", - "_homepage": "http://sedona.apache.org/", - "_description": "incubator-sedona: A cluster computing framework for processing large-scale geospatial data", - "_organization": "apache", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2015-04-24T00:00:00.000Z", - "_age_weeks": 399, - "_stars_per_week": 3.21, - "_pop_contributor_count": 91, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 14, + "_pop_contributor_logins": [ + "97harsh", + "MaggieWYZW@bumbleinc", + "Pranjalya@deepsync-technologies", + "codeananda", + "dependabot-preview[bot]", + "dependabot[bot]", + "isaacmg", + "kritim13", + "michaelwang1994", + "wwymak" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "bloomberg", - "grab", - "nttdata", - "wherobots" + "bumbleinc", + "deepsync-technologies" + ], + "_pop_contributor_orgs_raw": [ + "@deepsync-technologies", + "Bumble Inc" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.79, - "_pop_updated_issues_count": 52, - "_pop_closed_issues_count": 46, - "_pop_created_since_days": 93, + "_pop_commit_frequency": 4.42, + "_pop_updated_issues_count": 28, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 43, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 52.0, - "_pop_comment_count": 62.0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 28.0, + "_pop_comment_count": 27.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, + "_pop_comment_frequency": 1.0, "_pop_dependents_count": 0, - "_pop_score": 45.42, + "_pop_score": 35.91, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/apache/incubator-sedona/master/README.md", - "_readme_localurl": "apache~incubator-sedona~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/README.md", + "_readme_localurl": "aistream-peelout~flow-forecast~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/requirements.txt", + "https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/setup.py" + ], + "_requirements_localurls": [ + "aistream-peelout~flow-forecast~requirements.txt", + "aistream-peelout~flow-forecast~setup.py" + ] }, { "index": 391, @@ -35799,44 +49627,52 @@ "description": null, "_repopath": "mchong6/jojogan", "_reponame": "JoJoGAN", - "_stars": 1272, - "_forks": 185, - "_watches": 24, + "_stars": 1300, + "_forks": 193, + "_watches": 25, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "Official PyTorch repo for JoJoGAN: One Shot Face Stylization", + "_organization": "mchong6", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2021-12-17T00:00:00.000Z", + "_age_weeks": 61, + "_stars_per_week": 21.06, "_topics": [ "image-translation", "gans", "anime" ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "Official PyTorch repo for JoJoGAN: One Shot Face Stylization", - "_organization": "mchong6", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-02-05T00:00:00.000Z", - "_created_at": "2021-12-17T00:00:00.000Z", - "_age_weeks": 52, - "_stars_per_week": 24.26, "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "AK391@huggingface", + "mchong6", + "vganapati" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "huggingface" ], + "_pop_contributor_orgs_raw": [ + "Huggingface" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.48, - "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 12, - "_pop_updated_since_days": 11, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 14, + "_pop_updated_since_days": 13, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 3.0, - "_pop_comment_count": 1.0, + "_pop_issue_count": 6.0, + "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.3, - "_pop_dependents_count": 12, - "_pop_score": 14.76, + "_pop_dependents_count": 0, + "_pop_score": 10.34, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/mchong6/jojogan/master/README.md", "_readme_localurl": "mchong6~jojogan~README.md", @@ -35844,78 +49680,6 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, - { - "index": 465, - "category": "ml-dl", - "githuburl": "https://github.com/pytorch/torchrec", - "featured": null, - "links": null, - "description": null, - "_repopath": "pytorch/torchrec", - "_reponame": "torchrec", - "_stars": 1254, - "_forks": 206, - "_watches": 24, - "_topics": [ - "pytorch", - "gpu", - "deep-learning", - "cuda", - "recommender-system", - "recommendation-system", - "sharding" - ], - "_language": "Python", - "_homepage": "", - "_description": "torchrec: Pytorch domain library for recommendation systems", - "_organization": "pytorch", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2021-07-12T00:00:00.000Z", - "_age_weeks": 75, - "_stars_per_week": 16.72, - "_pop_contributor_count": 132, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "facebook", - "facebookai", - "pytorch" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 15.67, - "_pop_updated_issues_count": 312, - "_pop_closed_issues_count": 272, - "_pop_created_since_days": 17, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 312.0, - "_pop_comment_count": 699.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.2, - "_pop_dependents_count": 568, - "_pop_score": 59.54, - "_readme_filename": "", - "_readme_giturl": "", - "_readme_localurl": "", - "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pytorch/torchrec/master/requirements.txt", - "https://raw.githubusercontent.com/pytorch/torchrec/master/setup.py", - "https://raw.githubusercontent.com/pytorch/torchrec/master/pyproject.toml" - ], - "_requirements_localurls": [ - "pytorch~torchrec~requirements.txt", - "pytorch~torchrec~setup.py", - "pytorch~torchrec~pyproject.toml" - ] - }, { "index": 514, "category": "data", @@ -35925,40 +49689,57 @@ "description": null, "_repopath": "agronholm/sqlacodegen", "_reponame": "sqlacodegen", - "_stars": 1243, - "_forks": 194, - "_watches": 20, - "_topics": [], + "_stars": 1293, + "_forks": 200, + "_watches": 21, "_language": "Python", "_homepage": "", "_description": "sqlacodegen: Automatic model code generator for SQLAlchemy", "_organization": "agronholm", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-11-23T00:00:00.000Z", + "_updated_at": "2023-02-19T00:00:00.000Z", "_created_at": "2016-12-28T00:00:00.000Z", - "_age_weeks": 311, - "_stars_per_week": 3.99, + "_age_weeks": 321, + "_stars_per_week": 4.03, + "_topics": [], + "_last_commit_date": "2022-11-23T00:00:00.000Z", "_pop_contributor_count": 16, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "KhirilovA", + "agronholm@nextdaysolutionsoy", + "andrewcarretta", + "d10n", + "danohu", + "dhirschfeld", + "laurentS", + "leonarduschen", + "mzpqnxow@mzpqnxow", + "pre-commit-ci[bot]" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "mzpqnxow", "nextdaysolutionsoy" ], + "_pop_contributor_orgs_raw": [ + "MZPQNXOW, LLC", + "NextDay Solutions Oy" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.04, - "_pop_updated_issues_count": 20, - "_pop_closed_issues_count": 8, - "_pop_created_since_days": 73, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 0.69, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 75, + "_pop_updated_since_days": 3, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 20.0, - "_pop_comment_count": 50.0, + "_pop_issue_count": 16.0, + "_pop_comment_count": 55.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 3, - "_pop_score": 35.2, + "_pop_comment_frequency": 3.4, + "_pop_dependents_count": 0, + "_pop_score": 33.01, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/agronholm/sqlacodegen/master/README.rst", "_readme_localurl": "agronholm~sqlacodegen~README.rst", @@ -35973,267 +49754,201 @@ ] }, { - "index": 581, - "category": "ml-dl", - "githuburl": "https://github.com/alpa-projects/alpa", + "index": 435, + "category": "data", + "githuburl": "https://github.com/sdv-dev/sdv", "featured": null, "links": null, "description": null, - "_repopath": "alpa-projects/alpa", - "_reponame": "alpa", - "_stars": 1234, - "_forks": 138, - "_watches": 20, - "_topics": [ - "deep-learning", - "machine-learning", - "compiler", - "distributed-training", - "high-performance-computing", - "alpa", - "jax", - "distributed-computing", - "llm", - "auto-parallelization" - ], + "_repopath": "sdv-dev/sdv", + "_reponame": "SDV", + "_stars": 1288, + "_forks": 206, + "_watches": 40, "_language": "Python", - "_homepage": "https://alpa.ai", - "_description": "alpa: Training and serving large-scale neural networks", - "_organization": "alpa-projects", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2021-02-22T00:00:00.000Z", - "_age_weeks": 95, - "_stars_per_week": 12.99, - "_pop_contributor_count": 26, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "carnegiemellonuniversity", - "pekinguniversity", - "ucberkeley" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.83, - "_pop_updated_issues_count": 128, - "_pop_closed_issues_count": 101, - "_pop_created_since_days": 22, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 12, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 127.0, - "_pop_comment_count": 225.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 19, - "_pop_score": 47.97, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/alpa-projects/alpa/master/README.md", - "_readme_localurl": "alpa-projects~alpa~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/alpa-projects/alpa/master/setup.py" - ], - "_requirements_localurls": [ - "alpa-projects~alpa~setup.py" - ] - }, - { - "index": 885, - "category": "time-series", - "githuburl": "https://github.com/aistream-peelout/flow-forecast", - "featured": null, - "links": null, - "description": null, - "_repopath": "aistream-peelout/flow-forecast", - "_reponame": "flow-forecast", - "_stars": 1231, - "_forks": 209, - "_watches": 20, + "_homepage": "https://sdv.dev/SDV", + "_description": "SDV: Synthetic Data Generation for tabular, relational and time series data.", + "_organization": "sdv-dev", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-05-11T00:00:00.000Z", + "_age_weeks": 249, + "_stars_per_week": 5.16, "_topics": [ - "deep-learning", - "pytorch", - "time-series-forecasting", + "synthetic-data", + "machine-learning", + "relational-datasets", + "multi-table", "time-series", - "transfer-learning", - "deep-neural-networks", - "transformer", - "forecasting", - "lstm", - "time-series-regression", - "state-of-the-art-models", - "anomaly-detection", - "time-series-analysis", - "hacktoberfest" + "synthetic-data-generation", + "sdv", + "data-generation", + "generative-adversarial-network", + "gan", + "gans", + "deep-learning", + "generative-ai", + "generative-model" ], - "_language": "Python", - "_homepage": "https://flow-forecast.atlassian.net/wiki/spaces/FF/overview", - "_description": "flow-forecast: Deep learning PyTorch library for time series forecasting, classification, and anomaly detection (originally for flood forecasting).", - "_organization": "aistream-peelout", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2019-08-15T00:00:00.000Z", - "_age_weeks": 174, - "_stars_per_week": 7.05, - "_pop_contributor_count": 14, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "okratechnologies" + "_last_commit_date": "2023-01-24T00:00:00.000Z", + "_pop_contributor_count": 41, + "_pop_contributor_logins": [ + "JDTheRipperPC", + "ManuelAlvarezC@precognit", + "amontanez24", + "csala@pythiac", + "fealho@datacebo", + "katxiao", + "kveerama@mit", + "npatki@datacebo", + "pvk-developer@sdv-dev", + "xamm@h&mgroup" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "datacebo", + "h&mgroup", + "mit", + "precognit", + "pythiac", + "sdv-dev" + ], + "_pop_contributor_orgs_raw": [ + "@datacebo", + "@precognit ", + "@pythiac ", + "@sdv-dev ", + "DataCebo", + "H&M Group", + "MIT" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.37, - "_pop_updated_issues_count": 35, - "_pop_closed_issues_count": 26, - "_pop_created_since_days": 41, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 11, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 35.0, - "_pop_comment_count": 29.0, + "_pop_commit_frequency": 2.83, + "_pop_updated_issues_count": 189, + "_pop_closed_issues_count": 159, + "_pop_created_since_days": 58, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 189.0, + "_pop_comment_count": 198.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 61, - "_pop_score": 40.68, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 44.45, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/README.md", - "_readme_localurl": "aistream-peelout~flow-forecast~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/sdv-dev/sdv/master/README.md", + "_readme_localurl": "sdv-dev~sdv~README.md", "_requirements_filenames": [ "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/requirements.txt", - "https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/setup.py" + "https://raw.githubusercontent.com/sdv-dev/sdv/master/requirements.txt", + "https://raw.githubusercontent.com/sdv-dev/sdv/master/setup.py" ], "_requirements_localurls": [ - "aistream-peelout~flow-forecast~requirements.txt", - "aistream-peelout~flow-forecast~setup.py" + "sdv-dev~sdv~requirements.txt", + "sdv-dev~sdv~setup.py" ] }, { - "index": 372, - "category": "gis", - "githuburl": "https://github.com/microsoft/torchgeo", + "index": 474, + "category": "nlp", + "githuburl": "https://github.com/neuralmagic/deepsparse", "featured": null, "links": null, "description": null, - "_repopath": "microsoft/torchgeo", - "_reponame": "torchgeo", - "_stars": 1230, - "_forks": 144, - "_watches": 33, + "_repopath": "neuralmagic/deepsparse", + "_reponame": "deepsparse", + "_stars": 1273, + "_forks": 80, + "_watches": 40, + "_language": "Python", + "_homepage": "", + "_description": "deepsparse: Inference runtime offering GPU-class performance on CPUs and APIs to integrate ML into your application", + "_organization": "neuralmagic", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-12-14T00:00:00.000Z", + "_age_weeks": 114, + "_stars_per_week": 11.14, "_topics": [ + "ml", + "machinelearning", "pytorch", - "torchvision", - "datasets", - "models", - "transforms", - "remote-sensing", - "deep-learning", - "earth-observation" - ], - "_language": "Python", - "_homepage": "https://torchgeo.rtfd.io", - "_description": "TorchGeo: datasets, samplers, transforms, and pre-trained models for geospatial data", - "_organization": "microsoft", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2021-05-21T00:00:00.000Z", - "_age_weeks": 82, - "_stars_per_week": 14.92, - "_pop_contributor_count": 27, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "tensorflow", + "onnx", + "deepsparse-engine", + "sparsified-models", + "sparsification-recipe", + "inference", + "computer-vision", + "object-detection", + "pruning", + "quantization", + "pretrained-models", + "nlp", + "auto-ml", + "cpus", + "yolov3", + "sparsification", + "cpu-inference-api" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 31, + "_pop_contributor_logins": [ + "InquestGeronimo@neuralmagic", + "bfineran@neuralmagic", + "corey-nm", + "dbogunowicz", + "dhuangnm@neuralmagic", + "jeanniefinks@neuralmagic", + "kylesayrs", + "markurtz@neuralmagic", + "mgoin@neuralmagic", + "rahul-tuli@neuralmagic" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "dronebase", - "microsoft", - "universityofillinoisaturbana-champaign" + "neuralmagic" + ], + "_pop_contributor_orgs_raw": [ + "@neuralmagic", + "Neural Magic" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 7.88, - "_pop_updated_issues_count": 202, - "_pop_closed_issues_count": 160, - "_pop_created_since_days": 19, + "_pop_commit_frequency": 7.31, + "_pop_updated_issues_count": 152, + "_pop_closed_issues_count": 139, + "_pop_created_since_days": 27, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 202.0, - "_pop_comment_count": 309.0, + "_pop_recent_releases_count": 15, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 152.0, + "_pop_comment_count": 85.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 13, - "_pop_score": 46.07, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 38.58, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/microsoft/torchgeo/master/README.md", - "_readme_localurl": "microsoft~torchgeo~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/neuralmagic/deepsparse/master/README.md", + "_readme_localurl": "neuralmagic~deepsparse~README.md", "_requirements_filenames": [ + "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/microsoft/torchgeo/master/pyproject.toml" + "https://raw.githubusercontent.com/neuralmagic/deepsparse/master/setup.py", + "https://raw.githubusercontent.com/neuralmagic/deepsparse/master/pyproject.toml" ], "_requirements_localurls": [ - "microsoft~torchgeo~pyproject.toml" + "neuralmagic~deepsparse~setup.py", + "neuralmagic~deepsparse~pyproject.toml" ] }, - { - "index": 829, - "category": "study", - "githuburl": "https://github.com/huggingface/diffusion-models-class", - "featured": null, - "links": null, - "description": null, - "_repopath": "huggingface/diffusion-models-class", - "_reponame": "diffusion-models-class", - "_stars": 1220, - "_forks": 97, - "_watches": 61, - "_topics": [], - "_language": "Jupyter Notebook", - "_homepage": null, - "_description": "diffusion-models-class: Materials for the Hugging Face Diffusion Models Course", - "_organization": "huggingface", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2022-10-13T00:00:00.000Z", - "_age_weeks": 9, - "_stars_per_week": 127.46, - "_pop_contributor_count": 10, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "drcfsorg", - "huggingface", - "relx" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.31, - "_pop_updated_issues_count": 27, - "_pop_closed_issues_count": 25, - "_pop_created_since_days": 2, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 27.0, - "_pop_comment_count": 38.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 0, - "_pop_score": 25.81, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/huggingface/diffusion-models-class/master/README.md", - "_readme_localurl": "huggingface~diffusion-models-class~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 178, "category": "nlp", @@ -36243,9 +49958,17 @@ "description": null, "_repopath": "explosion/spacy-models", "_reponame": "spacy-models", - "_stars": 1217, - "_forks": 275, - "_watches": 48, + "_stars": 1253, + "_forks": 282, + "_watches": 50, + "_language": "Python", + "_homepage": "https://spacy.io", + "_description": "spacy-models: \ud83d\udcab Models for the spaCy Natural Language Processing (NLP) library", + "_organization": "explosion", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-03-14T00:00:00.000Z", + "_age_weeks": 310, + "_stars_per_week": 4.04, "_topics": [ "spacy", "nlp", @@ -36256,38 +49979,55 @@ "statistical-models", "spacy-models" ], - "_language": "Python", - "_homepage": "https://spacy.io", - "_description": "spacy-models: \ud83d\udcab Models for the spaCy Natural Language Processing (NLP) library", - "_organization": "explosion", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2017-03-14T00:00:00.000Z", - "_age_weeks": 300, - "_stars_per_week": 4.05, + "_last_commit_date": "2023-01-23T00:00:00.000Z", "_pop_contributor_count": 14, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_pop_contributor_logins": [ + "BreakBB@codecentric", + "adrianeboyd", + "davidefiocco@frontiersin", + "explosion-bot@explosion", + "honnibal@founderexplosion", + "ines@founderexplosion", + "kuk@alexanderkukushkindatasciencelaboratory", + "manojkumarvohra", + "maziyarpanahi@iscpifjohnsnowlabs", + "polm@cotonoha" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "alexanderkukushkindatasciencelaboratory", + "codecentric", "cotonoha", "explosion", - "founderexplosion" + "founderexplosion", + "frontiersin", + "iscpifjohnsnowlabs" + ], + "_pop_contributor_orgs_raw": [ + "@ISCPIF @JohnSnowLabs", + "@codecentric", + "@explosion", + "@frontiersin", + "Alexander Kukushkin Data Science Laboratory", + "Cotonoha", + "Founder @explosion " ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.63, - "_pop_updated_issues_count": 5, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 70, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 166, - "_pop_recent_releases_estimated_tags": 128, - "_pop_recent_releases_adjusted_count": 166, - "_pop_issue_count": 5.0, + "_pop_commit_frequency": 5.1, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 72, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 246, + "_pop_recent_releases_estimated_tags": 138, + "_pop_recent_releases_adjusted_count": 246, + "_pop_issue_count": 8.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 68, - "_pop_score": 43.17, + "_pop_dependents_count": 0, + "_pop_score": 38.5, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/explosion/spacy-models/master/README.md", "_readme_localurl": "explosion~spacy-models~README.md", @@ -36295,6 +50035,96 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, + { + "index": 264, + "category": "data", + "githuburl": "https://github.com/collerek/ormar", + "featured": null, + "links": null, + "description": null, + "_repopath": "collerek/ormar", + "_reponame": "ormar", + "_stars": 1249, + "_forks": 63, + "_watches": 16, + "_language": "Python", + "_homepage": "https://collerek.github.io/ormar/", + "_description": "ormar: python async orm with fastapi in mind and pydantic validation", + "_organization": "collerek", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-08-02T00:00:00.000Z", + "_age_weeks": 133, + "_stars_per_week": 9.36, + "_topics": [ + "orm", + "sqlalchemy", + "async-orm", + "python-orm", + "fastapi", + "pydantic", + "alembic", + "databases" + ], + "_last_commit_date": "2023-01-29T00:00:00.000Z", + "_pop_contributor_count": 30, + "_pop_contributor_logins": [ + "Abdeldjalil-H", + "EspenAlbert@wheel-me", + "ProgrammerPlus1998@\u91d1\u8272\u8d22\u7ecf", + "SepehrBazyar@gpsir", + "collerek@kaizentech", + "dependabot[bot]", + "johnthagen", + "mojixcoder@snapp-cab", + "ponytailer@leyantech", + "s3rius" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "gpsir", + "kaizentech", + "leyantech", + "snapp-cab", + "wheel-me", + "\u91d1\u8272\u8d22\u7ecf" + ], + "_pop_contributor_orgs_raw": [ + "@snapp-cab", + "@wheel-me ", + "GPSIR", + "KaizenTech", + "leyantech", + "\u91d1\u8272\u8d22\u7ecf" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.88, + "_pop_updated_issues_count": 75, + "_pop_closed_issues_count": 51, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 30, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 75.0, + "_pop_comment_count": 77.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 41.22, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/collerek/ormar/master/README.md", + "_readme_localurl": "collerek~ormar~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/collerek/ormar/master/pyproject.toml" + ], + "_requirements_localurls": [ + "collerek~ormar~pyproject.toml" + ] + }, { "index": 414, "category": "nlp", @@ -36304,9 +50134,17 @@ "description": null, "_repopath": "chrismattmann/tika-python", "_reponame": "tika-python", - "_stars": 1215, - "_forks": 223, - "_watches": 37, + "_stars": 1240, + "_forks": 224, + "_watches": 38, + "_language": "Python", + "_homepage": "", + "_description": "Tika-Python is a Python binding to the Apache Tika\u2122 REST services allowing Tika to be called natively in the Python community.", + "_organization": "chrismattmann", + "_updated_at": "2023-02-15T00:00:00.000Z", + "_created_at": "2014-06-26T00:00:00.000Z", + "_age_weeks": 451, + "_stars_per_week": 2.74, "_topics": [ "tika-server", "python", @@ -36329,36 +50167,49 @@ "covid-19", "extraction" ], - "_language": "Python", - "_homepage": "", - "_description": "Tika-Python is a Python binding to the Apache Tika\u2122 REST services allowing Tika to be called natively in the Python community.", - "_organization": "chrismattmann", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2021-06-07T00:00:00.000Z", - "_created_at": "2014-06-26T00:00:00.000Z", - "_age_weeks": 442, - "_stars_per_week": 2.75, - "_pop_contributor_count": 63, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-01-22T00:00:00.000Z", + "_pop_contributor_count": 68, + "_pop_contributor_logins": [ + "ACSC-CyberLab", + "Pehat", + "carantunes@cern", + "chrismattmann@nasa", + "dongnizh", + "igormp", + "jjelosua@elevenpaths", + "kdurril", + "matthewdavislee", + "yashtanna93@amzn" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "amzn", + "cern", + "elevenpaths", "nasa" ], + "_pop_contributor_orgs_raw": [ + "@amzn", + "@cern", + "Elevenpaths", + "NASA" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 10, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 103, - "_pop_updated_since_days": 19, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 2, + "_pop_commit_frequency": 0.25, + "_pop_updated_issues_count": 92, + "_pop_closed_issues_count": 88, + "_pop_created_since_days": 105, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 10.0, - "_pop_comment_count": 14.0, + "_pop_issue_count": 92.0, + "_pop_comment_count": 75.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 37, - "_pop_score": 33.55, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 40.4, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/chrismattmann/tika-python/master/README.md", "_readme_localurl": "chrismattmann~tika-python~README.md", @@ -36376,158 +50227,345 @@ ] }, { - "index": 474, - "category": "nlp", - "githuburl": "https://github.com/neuralmagic/deepsparse", + "index": 194, + "category": "web", + "githuburl": "https://github.com/jordaneremieff/mangum", "featured": null, "links": null, "description": null, - "_repopath": "neuralmagic/deepsparse", - "_reponame": "deepsparse", - "_stars": 1196, - "_forks": 73, - "_watches": 37, + "_repopath": "jordaneremieff/mangum", + "_reponame": "mangum", + "_stars": 1216, + "_forks": 79, + "_watches": 16, + "_language": "Python", + "_homepage": "https://mangum.io/", + "_description": "mangum: AWS Lambda support for ASGI applications", + "_organization": "jordaneremieff", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-01-14T00:00:00.000Z", + "_age_weeks": 214, + "_stars_per_week": 5.67, "_topics": [ - "ml", - "machinelearning", - "pytorch", - "tensorflow", - "onnx", - "deepsparse-engine", - "sparsified-models", - "sparsification-recipe", - "inference", - "computer-vision", - "object-detection", - "pruning", - "quantization", - "pretrained-models", - "nlp", - "auto-ml", - "cpus", - "yolov3", - "sparsification", - "cpu-inference-api" + "asgi", + "aws", + "lambda", + "serverless", + "python", + "asyncio", + "api-gateway", + "starlette", + "fastapi", + "quart", + "django", + "sanic", + "aws-lambda", + "python3" ], - "_language": "Python", - "_homepage": "", - "_description": "deepsparse: Inference runtime offering GPU-class performance on CPUs and APIs to integrate ML into your application", - "_organization": "neuralmagic", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", - "_created_at": "2020-12-14T00:00:00.000Z", - "_age_weeks": 105, - "_stars_per_week": 11.39, + "_last_commit_date": "2022-11-27T00:00:00.000Z", "_pop_contributor_count": 29, + "_pop_contributor_logins": [ + "SKalt@resurety", + "allan-simon@rosaly", + "aminalaee", + "emcpow2", + "jordaneremieff", + "koxudaxi@tractabletractableai", + "lsorber", + "nathanglover@thewaltdisneycompany", + "simonw@datasette", + "zachmullen@kitware" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "datasette", + "kitware", + "resurety", + "rosaly", + "thewaltdisneycompany", + "tractabletractableai" + ], + "_pop_contributor_orgs_raw": [ + "@Kitware ", + "@REsurety", + "@Rosaly", + "Datasette", + "The Walt Disney Company", + "Tractable @tractableai" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.35, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 50, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 12.0, + "_pop_comment_count": 11.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 35.34, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/jordaneremieff/mangum/master/README.md", + "_readme_localurl": "jordaneremieff~mangum~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/jordaneremieff/mangum/master/requirements.txt", + "https://raw.githubusercontent.com/jordaneremieff/mangum/master/setup.py" + ], + "_requirements_localurls": [ + "jordaneremieff~mangum~requirements.txt", + "jordaneremieff~mangum~setup.py" + ] + }, + { + "index": 566, + "category": "gis", + "githuburl": "https://github.com/gboeing/osmnx-examples", + "featured": null, + "links": null, + "description": null, + "_repopath": "gboeing/osmnx-examples", + "_reponame": "osmnx-examples", + "_stars": 1215, + "_forks": 449, + "_watches": 54, + "_language": "Jupyter Notebook", + "_homepage": "https://github.com/gboeing/osmnx", + "_description": "osmnx-examples: Usage examples, demos, and tutorials for OSMnx.", + "_organization": "gboeing", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2017-07-22T00:00:00.000Z", + "_age_weeks": 291, + "_stars_per_week": 4.17, + "_topics": [ + "street-networks", + "binder", + "jupyter-notebook", + "notebooks", + "urban-planning", + "city", + "cities", + "openstreetmap", + "network-analysis", + "transport", + "transportation", + "accessibility", + "urban-data-science", + "urban-analytics", + "public-transport", + "python", + "transit", + "urban-design" + ], + "_last_commit_date": "2023-01-01T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "gboeing@universityofsoutherncalifornia" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "neuralmagic" + "universityofsoutherncalifornia" + ], + "_pop_contributor_orgs_raw": [ + "University of Southern California" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.83, - "_pop_updated_issues_count": 179, - "_pop_closed_issues_count": 159, - "_pop_created_since_days": 24, + "_pop_commit_frequency": 0.48, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 68, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 4.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 20.35, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/gboeing/osmnx-examples/master/README.md", + "_readme_localurl": "gboeing~osmnx-examples~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 720, + "category": "math", + "githuburl": "https://github.com/facebookresearch/theseus", + "featured": null, + "links": null, + "description": null, + "_repopath": "facebookresearch/theseus", + "_reponame": "theseus", + "_stars": 1214, + "_forks": 82, + "_watches": 28, + "_language": "Python", + "_homepage": "", + "_description": "theseus: A library for differentiable nonlinear optimization", + "_organization": "facebookresearch", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2021-11-18T00:00:00.000Z", + "_age_weeks": 65, + "_stars_per_week": 18.43, + "_topics": [ + "differentiable-optimization", + "robotics", + "embodied-ai", + "nonlinear-least-squares", + "pytorch", + "deep-learning", + "computer-vision", + "gauss-newton", + "levenberg-marquardt", + "implicit-differentiation", + "bilevel-optimization" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 19, + "_pop_contributor_logins": [ + "bamos@metaai(fair)", + "brentyi", + "cpaxton", + "exhaustin", + "fantaosha", + "jeffin07", + "joeaortiz", + "luisenp@facebookairesearchfacebookresearch", + "maurimo", + "mhmukadam@metaai" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "facebookairesearchfacebookresearch", + "metaai", + "metaai(fair)" + ], + "_pop_contributor_orgs_raw": [ + "Facebook AI Research @facebookresearch ", + "Meta AI", + "Meta AI (FAIR)" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.15, + "_pop_updated_issues_count": 102, + "_pop_closed_issues_count": 76, + "_pop_created_since_days": 15, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 12, - "_pop_recent_releases_estimated_tags": 13, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 179.0, - "_pop_comment_count": 111.0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 103.0, + "_pop_comment_count": 48.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, + "_pop_comment_frequency": 0.5, "_pop_dependents_count": 0, - "_pop_score": 37.86, + "_pop_score": 35.79, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/neuralmagic/deepsparse/master/README.md", - "_readme_localurl": "neuralmagic~deepsparse~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/theseus/master/README.md", + "_readme_localurl": "facebookresearch~theseus~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/neuralmagic/deepsparse/master/setup.py", - "https://raw.githubusercontent.com/neuralmagic/deepsparse/master/pyproject.toml" + "https://raw.githubusercontent.com/facebookresearch/theseus/master/setup.py" ], "_requirements_localurls": [ - "neuralmagic~deepsparse~setup.py", - "neuralmagic~deepsparse~pyproject.toml" + "facebookresearch~theseus~setup.py" ] }, { - "index": 435, - "category": "data", - "githuburl": "https://github.com/sdv-dev/sdv", + "index": 916, + "category": "math", + "githuburl": "https://github.com/google-research/torchsde", "featured": null, "links": null, "description": null, - "_repopath": "sdv-dev/sdv", - "_reponame": "SDV", - "_stars": 1187, - "_forks": 189, - "_watches": 40, + "_repopath": "google-research/torchsde", + "_reponame": "torchsde", + "_stars": 1213, + "_forks": 144, + "_watches": 33, + "_language": "Python", + "_homepage": "", + "_description": "torchsde: Differentiable SDE solvers with GPU support and efficient sensitivity analysis. ", + "_organization": "google-research", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-07-06T00:00:00.000Z", + "_age_weeks": 137, + "_stars_per_week": 8.84, "_topics": [ - "synthetic-data", - "machine-learning", - "relational-datasets", - "multi-table", - "time-series", - "synthetic-data-generation", - "sdv", - "data-generation", - "generative-adversarial-network", - "gan", - "gans", "deep-learning", - "generative-ai", - "generative-model" + "deep-neural-networks", + "pytorch", + "dynamical-systems", + "differential-equations", + "stochastic-processes", + "stochastic-differential-equations", + "stochastic-volatility-models", + "neural-differential-equations" + ], + "_last_commit_date": "2021-07-26T00:00:00.000Z", + "_pop_contributor_count": 5, + "_pop_contributor_logins": [ + "dhirschfeld", + "lxuechen", + "mtsokol@bcg-gamma", + "patrick-kidger@googlex", + "ucalyptus" ], - "_language": "Python", - "_homepage": "https://sdv.dev/SDV", - "_description": "SDV: Synthetic Data Generation for tabular, relational and time series data.", - "_organization": "sdv-dev", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2018-05-11T00:00:00.000Z", - "_age_weeks": 240, - "_stars_per_week": 4.94, - "_pop_contributor_count": 41, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "precognit", - "pythiac" + "bcg-gamma", + "googlex" + ], + "_pop_contributor_orgs_raw": [ + "@BCG-Gamma", + "Google X" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.85, - "_pop_updated_issues_count": 160, - "_pop_closed_issues_count": 113, - "_pop_created_since_days": 56, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 8, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 160.0, - "_pop_comment_count": 131.0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 32, + "_pop_updated_since_days": 19, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 6.0, + "_pop_comment_count": 3.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 7, - "_pop_score": 44.85, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 17.35, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/sdv-dev/sdv/master/README.md", - "_readme_localurl": "sdv-dev~sdv~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/google-research/torchsde/master/README.md", + "_readme_localurl": "google-research~torchsde~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/sdv-dev/sdv/master/requirements.txt", - "https://raw.githubusercontent.com/sdv-dev/sdv/master/setup.py" + "https://raw.githubusercontent.com/google-research/torchsde/master/setup.py", + "https://raw.githubusercontent.com/google-research/torchsde/master/pyproject.toml" ], "_requirements_localurls": [ - "sdv-dev~sdv~requirements.txt", - "sdv-dev~sdv~setup.py" + "google-research~torchsde~setup.py", + "google-research~torchsde~pyproject.toml" ] }, { @@ -36539,9 +50577,17 @@ "description": null, "_repopath": "explosion/spacy-transformers", "_reponame": "spacy-transformers", - "_stars": 1184, - "_forks": 154, + "_stars": 1209, + "_forks": 155, "_watches": 30, + "_language": "Python", + "_homepage": "https://spacy.io/usage/embeddings-transformers", + "_description": "spacy-transformers: \ud83d\udef8 Use pretrained transformers like BERT, XLNet and GPT-2 in spaCy", + "_organization": "explosion", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-07-26T00:00:00.000Z", + "_age_weeks": 186, + "_stars_per_week": 6.48, "_topics": [ "spacy", "spacy-pipeline", @@ -36561,38 +50607,53 @@ "xlnet", "gpt-2" ], - "_language": "Python", - "_homepage": "https://spacy.io/usage/embeddings-transformers", - "_description": "spacy-transformers: \ud83d\udef8 Use pretrained transformers like BERT, XLNet and GPT-2 in spaCy", - "_organization": "explosion", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2019-07-26T00:00:00.000Z", - "_age_weeks": 177, - "_stars_per_week": 6.67, - "_pop_contributor_count": 19, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 20, + "_pop_contributor_logins": [ + "KennethEnevoldsen@centerforhumanitiescomputingaarhus", + "adrianeboyd", + "bryant1410@michigannlp", + "danieldk@explosion", + "honnibal@founderexplosion", + "ines@founderexplosion", + "ryndaniels", + "shadeMe", + "svlandeg@explosion&oxykodit", + "tamuhey@indeedeng" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "centerforhumanitiescomputingaarhus", + "explosion", "explosion&oxykodit", "founderexplosion", - "indeedeng" + "indeedeng", + "michigannlp" + ], + "_pop_contributor_orgs_raw": [ + "@MichiganNLP", + "@explosion ", + "@indeedeng", + "Center for Humanities Computing Aarhus", + "Explosion & OxyKodit", + "Founder @explosion " ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.58, - "_pop_updated_issues_count": 14, - "_pop_closed_issues_count": 12, - "_pop_created_since_days": 41, + "_pop_commit_frequency": 0.81, + "_pop_updated_issues_count": 21, + "_pop_closed_issues_count": 19, + "_pop_created_since_days": 44, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 11, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 14.0, - "_pop_comment_count": 5.0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 21.0, + "_pop_comment_count": 21.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.4, - "_pop_dependents_count": 14, - "_pop_score": 38.15, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 39.37, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/explosion/spacy-transformers/master/README.md", "_readme_localurl": "explosion~spacy-transformers~README.md", @@ -36613,141 +50674,89 @@ ] }, { - "index": 264, - "category": "data", - "githuburl": "https://github.com/collerek/ormar", + "index": 304, + "category": "nlp", + "githuburl": "https://github.com/featureform/embeddinghub", "featured": null, "links": null, "description": null, - "_repopath": "collerek/ormar", - "_reponame": "ormar", - "_stars": 1182, - "_forks": 61, - "_watches": 15, + "_repopath": "featureform/embeddinghub", + "_reponame": "featureform", + "_stars": 1205, + "_forks": 46, + "_watches": 13, + "_language": "Go", + "_homepage": "https://www.featureform.com", + "_description": "featureform: The Virtual Feature Store. Turn your existing data infrastructure into a feature store.", + "_organization": "featureform", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-10-16T00:00:00.000Z", + "_age_weeks": 122, + "_stars_per_week": 9.82, "_topics": [ - "orm", - "sqlalchemy", - "async-orm", - "python-orm", - "fastapi", - "pydantic", - "alembic", - "databases" + "machine-learning", + "data-science", + "vector-database", + "embeddings-similarity", + "embeddings", + "hacktoberfest", + "feature-store", + "mlops", + "data-quality", + "feature-engineering", + "ml", + "python" ], - "_language": "Python", - "_homepage": "https://collerek.github.io/ormar/", - "_description": "ormar: python async orm with fastapi in mind and pydantic validation", - "_organization": "collerek", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2020-08-02T00:00:00.000Z", - "_age_weeks": 124, - "_stars_per_week": 9.52, - "_pop_contributor_count": 30, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 20, + "_pop_contributor_logins": [ + "RiddhiBagadiaa", + "Sami1309", + "ahmadnazeri", + "antony-eng", + "ksshiraja", + "saadhvi27", + "sdreyer", + "shabbyjoon", + "simba-git@featureform", + "steffitan23" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "kaizentech", - "leyantech", - "wheel-me" + "featureform" + ], + "_pop_contributor_orgs_raw": [ + "Featureform" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.63, - "_pop_updated_issues_count": 121, - "_pop_closed_issues_count": 100, + "_pop_commit_frequency": 45.13, + "_pop_updated_issues_count": 97, + "_pop_closed_issues_count": 84, "_pop_created_since_days": 29, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 7, - "_pop_recent_releases_estimated_tags": 31, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 121.0, - "_pop_comment_count": 131.0, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 97.0, + "_pop_comment_count": 84.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 130, - "_pop_score": 49.96, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 40.35, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/collerek/ormar/master/README.md", - "_readme_localurl": "collerek~ormar~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/featureform/embeddinghub/master/README.md", + "_readme_localurl": "featureform~embeddinghub~README.md", "_requirements_filenames": [ - "pyproject.toml" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/collerek/ormar/master/pyproject.toml" + "https://raw.githubusercontent.com/featureform/embeddinghub/master/requirements.txt" ], "_requirements_localurls": [ - "collerek~ormar~pyproject.toml" + "featureform~embeddinghub~requirements.txt" ] }, - { - "index": 566, - "category": "gis", - "githuburl": "https://github.com/gboeing/osmnx-examples", - "featured": null, - "links": null, - "description": null, - "_repopath": "gboeing/osmnx-examples", - "_reponame": "osmnx-examples", - "_stars": 1179, - "_forks": 434, - "_watches": 54, - "_topics": [ - "street-networks", - "binder", - "jupyter-notebook", - "notebooks", - "urban-planning", - "city", - "cities", - "openstreetmap", - "network-analysis", - "transport", - "transportation", - "accessibility", - "urban-data-science", - "urban-analytics", - "public-transport", - "python", - "transit", - "urban-design" - ], - "_language": "Jupyter Notebook", - "_homepage": "https://github.com/gboeing/osmnx", - "_description": "osmnx-examples: Usage examples, demos, and tutorials for OSMnx.", - "_organization": "gboeing", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2017-07-22T00:00:00.000Z", - "_age_weeks": 282, - "_stars_per_week": 4.18, - "_pop_contributor_count": 1, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "universityofsoutherncalifornia" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.31, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 66, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 2.0, - "_pop_comment_count": 1.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 3, - "_pop_score": 23.77, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/gboeing/osmnx-examples/master/README.md", - "_readme_localurl": "gboeing~osmnx-examples~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 451, "category": "util", @@ -36757,9 +50766,17 @@ "description": null, "_repopath": "imageio/imageio", "_reponame": "imageio", - "_stars": 1168, - "_forks": 235, - "_watches": 31, + "_stars": 1201, + "_forks": 244, + "_watches": 32, + "_language": "Python", + "_homepage": "https://imageio.readthedocs.io", + "_description": "imageio: Python library for reading and writing image data", + "_organization": "imageio", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2013-05-04T00:00:00.000Z", + "_age_weeks": 511, + "_stars_per_week": 2.35, "_topics": [ "python", "imageio", @@ -36769,39 +50786,55 @@ "scientific-formats", "dicom" ], - "_language": "Python", - "_homepage": "https://imageio.readthedocs.io", - "_description": "imageio: Python library for reading and writing image data", - "_organization": "imageio", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2013-05-04T00:00:00.000Z", - "_age_weeks": 502, - "_stars_per_week": 2.33, - "_pop_contributor_count": 95, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-13T00:00:00.000Z", + "_pop_contributor_count": 96, + "_pop_contributor_logins": [ + "FirefoxMetzger@usr-lab", + "actions-user@actions", + "almarklein@independentsoftwareengineer", + "anntzer", + "blink1073@mongodb", + "dennisvang", + "hmaarrfk@californiainstituteoftechnology", + "jni@biomedicinediscoveryinstitute,monashuniversity", + "kuchi", + "paulmueller@gucklab" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "actions", + "biomedicinediscoveryinstitute,monashuniversity", + "californiainstituteoftechnology", + "gucklab", "independentsoftwareengineer", "mongodb", "usr-lab" ], + "_pop_contributor_orgs_raw": [ + "@GuckLab ", + "@actions", + "@usr-lab ", + "Biomedicine Discovery Institute, Monash University", + "California Institute of Technology", + "Independent software engineer", + "MongoDB" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.46, - "_pop_updated_issues_count": 52, - "_pop_closed_issues_count": 36, - "_pop_created_since_days": 117, + "_pop_commit_frequency": 2.13, + "_pop_updated_issues_count": 46, + "_pop_closed_issues_count": 25, + "_pop_created_since_days": 119, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 26, + "_pop_recent_releases_count": 23, "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 26, - "_pop_issue_count": 52.0, - "_pop_comment_count": 155.0, + "_pop_recent_releases_adjusted_count": 23, + "_pop_issue_count": 46.0, + "_pop_comment_count": 134.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.0, - "_pop_dependents_count": 2463, - "_pop_score": 65.33, + "_pop_comment_frequency": 2.9, + "_pop_dependents_count": 0, + "_pop_score": 52.88, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/imageio/imageio/master/README.md", "_readme_localurl": "imageio~imageio~README.md", @@ -36815,6 +50848,264 @@ "imageio~imageio~setup.py" ] }, + { + "index": 636, + "category": "util", + "githuburl": "https://github.com/pygments/pygments", + "featured": null, + "links": null, + "description": null, + "_repopath": "pygments/pygments", + "_reponame": "pygments", + "_stars": 1201, + "_forks": 504, + "_watches": 32, + "_language": "Python", + "_homepage": "http://pygments.org/", + "_description": "Pygments is a generic syntax highlighter written in Python", + "_organization": "pygments", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2019-08-31T00:00:00.000Z", + "_age_weeks": 181, + "_stars_per_week": 6.61, + "_topics": [ + "python", + "syntax-highlighting" + ], + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 763, + "_pop_contributor_logins": [ + "Anteru@amd", + "EricFromCanada", + "birkenfeld@fzj\u00fclich", + "blu-base", + "hoelzro", + "jaingaurav@google", + "jeanas", + "jrnold", + "roskakori", + "thatch" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "amd", + "fzj\u00fclich", + "google" + ], + "_pop_contributor_orgs_raw": [ + "AMD", + "FZ J\u00fclich", + "Google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.46, + "_pop_updated_issues_count": 171, + "_pop_closed_issues_count": 101, + "_pop_created_since_days": 42, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 17, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 171.0, + "_pop_comment_count": 181.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 49.92, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pygments/pygments/master/README.rst", + "_readme_localurl": "pygments~pygments~README.rst", + "_requirements_filenames": [ + "requirements.txt", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pygments/pygments/master/requirements.txt", + "https://raw.githubusercontent.com/pygments/pygments/master/pyproject.toml" + ], + "_requirements_localurls": [ + "pygments~pygments~requirements.txt", + "pygments~pygments~pyproject.toml" + ] + }, + { + "index": 725, + "category": "typing", + "githuburl": "https://github.com/patrick-kidger/torchtyping", + "featured": null, + "links": null, + "description": null, + "_repopath": "patrick-kidger/torchtyping", + "_reponame": "torchtyping", + "_stars": 1201, + "_forks": 28, + "_watches": 14, + "_language": "Python", + "_homepage": "", + "_description": "torchtyping: Type annotations and dynamic checking for a tensor's shape, dtype, names, etc.", + "_organization": "patrick-kidger", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2021-03-28T00:00:00.000Z", + "_age_weeks": 99, + "_stars_per_week": 12.08, + "_topics": [ + "tensors", + "named-tensors", + "shape", + "pytorch", + "typing", + "python-typing" + ], + "_last_commit_date": "2023-01-20T00:00:00.000Z", + "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "AdilZouitine@irtsaint-exup\u00e9ry", + "anivegesana", + "gkorepanov@avatarify", + "olliethomas@universityofsussexairesearchgroup", + "patrick-kidger@googlex", + "teichert" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "avatarify", + "googlex", + "irtsaint-exup\u00e9ry", + "universityofsussexairesearchgroup" + ], + "_pop_contributor_orgs_raw": [ + "Avatarify", + "Google X", + "IRT Saint-Exup\u00e9ry", + "University of Sussex AI Research Group" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 23, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 6.0, + "_pop_comment_count": 11.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 26.1, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/patrick-kidger/torchtyping/master/README.md", + "_readme_localurl": "patrick-kidger~torchtyping~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/patrick-kidger/torchtyping/master/setup.py", + "https://raw.githubusercontent.com/patrick-kidger/torchtyping/master/pyproject.toml" + ], + "_requirements_localurls": [ + "patrick-kidger~torchtyping~setup.py", + "patrick-kidger~torchtyping~pyproject.toml" + ] + }, + { + "index": 802, + "category": "util", + "githuburl": "https://github.com/open-telemetry/opentelemetry-python", + "featured": null, + "links": null, + "description": null, + "_repopath": "open-telemetry/opentelemetry-python", + "_reponame": "opentelemetry-python", + "_stars": 1189, + "_forks": 429, + "_watches": 35, + "_language": "Python", + "_homepage": "https://opentelemetry.io", + "_description": "opentelemetry-python: OpenTelemetry Python API and SDK ", + "_organization": "open-telemetry", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-05-07T00:00:00.000Z", + "_age_weeks": 198, + "_stars_per_week": 6.0, + "_topics": [ + "python", + "opentelemetry", + "tracecontext", + "correlationcontext", + "distributed-tracing", + "logging", + "metrics", + "sdk" + ], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 184, + "_pop_contributor_logins": [ + "Oberon00@dynatrace", + "aabmass@google", + "c24t@google", + "codeboten@lightstep", + "lzchen@microsoftcorporation", + "mauriciovasquezbernal@microsoft(kinvolk)", + "ocelotl", + "owais@splunk", + "srikanthccv@signoz.io", + "toumorokoshi@google" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "dynatrace", + "google", + "lightstep", + "microsoft(kinvolk)", + "microsoftcorporation", + "signoz.io", + "splunk" + ], + "_pop_contributor_orgs_raw": [ + "@Dynatrace ", + "@google", + "@google ", + "@microsoft (@kinvolk)", + "@splunk", + "Google", + "Lightstep", + "Microsoft Corporation", + "signoz.io" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.88, + "_pop_updated_issues_count": 209, + "_pop_closed_issues_count": 121, + "_pop_created_since_days": 46, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 209.0, + "_pop_comment_count": 360.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 52.59, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/open-telemetry/opentelemetry-python/master/README.md", + "_readme_localurl": "open-telemetry~opentelemetry-python~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/open-telemetry/opentelemetry-python/master/pyproject.toml" + ], + "_requirements_localurls": [ + "open-telemetry~opentelemetry-python~pyproject.toml" + ] + }, { "index": 647, "category": "data", @@ -36824,122 +51115,250 @@ "description": null, "_repopath": "pytables/pytables", "_reponame": "PyTables", - "_stars": 1163, - "_forks": 236, + "_stars": 1187, + "_forks": 240, "_watches": 59, - "_topics": [], "_language": "Python", "_homepage": "http://www.pytables.org", "_description": "PyTables: A Python package to manage extremely large amounts of data", "_organization": "pytables", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_updated_at": "2023-02-15T00:00:00.000Z", "_created_at": "2011-06-03T00:00:00.000Z", - "_age_weeks": 602, - "_stars_per_week": 1.93, - "_pop_contributor_count": 110, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 611, + "_stars_per_week": 1.94, + "_topics": [], + "_last_commit_date": "2023-02-09T00:00:00.000Z", + "_pop_contributor_count": 111, + "_pop_contributor_logins": [ + "FrancescAlted@francescalted", + "andreabedini@tweag", + "avalentino", + "eumiro", + "joshayers", + "keszybz@redhat", + "matham@cornelluniversity", + "oscargm98", + "scopatz", + "tomkooij@coornhertgymnasium" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "coornhertgymnasium", - "francescalted" + "cornelluniversity", + "francescalted", + "redhat", + "tweag" + ], + "_pop_contributor_orgs_raw": [ + "@FrancescAlted", + "@tweag ", + "Coornhert Gymnasium", + "Cornell University", + "Red Hat" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.96, - "_pop_updated_issues_count": 36, - "_pop_closed_issues_count": 22, - "_pop_created_since_days": 141, + "_pop_commit_frequency": 5.52, + "_pop_updated_issues_count": 39, + "_pop_closed_issues_count": 29, + "_pop_created_since_days": 143, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 4, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 36.0, - "_pop_comment_count": 105.0, + "_pop_issue_count": 39.0, + "_pop_comment_count": 117.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 0, + "_pop_score": 48.8, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pytables/pytables/master/README.rst", + "_readme_localurl": "pytables~pytables~README.rst", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pytables/pytables/master/requirements.txt", + "https://raw.githubusercontent.com/pytables/pytables/master/setup.py", + "https://raw.githubusercontent.com/pytables/pytables/master/pyproject.toml" + ], + "_requirements_localurls": [ + "pytables~pytables~requirements.txt", + "pytables~pytables~setup.py", + "pytables~pytables~pyproject.toml" + ] + }, + { + "index": 403, + "category": "perf", + "githuburl": "https://github.com/agronholm/anyio", + "featured": null, + "links": null, + "description": null, + "_repopath": "agronholm/anyio", + "_reponame": "anyio", + "_stars": 1183, + "_forks": 101, + "_watches": 26, + "_language": "Python", + "_homepage": "", + "_description": "anyio: High level asynchronous concurrency and networking framework that works on top of either trio or asyncio", + "_organization": "agronholm", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-08-19T00:00:00.000Z", + "_age_weeks": 235, + "_stars_per_week": 5.02, + "_topics": [ + "async-await", + "trio", + "asyncio", + "curio" + ], + "_last_commit_date": "2023-02-13T00:00:00.000Z", + "_pop_contributor_count": 38, + "_pop_contributor_logins": [ + "agronholm@nextdaysolutionsoy", + "belm0", + "daa", + "danielhasan1", + "graingert", + "gschaffner@andrewjayichlabucsb", + "jhominal", + "pre-commit-ci[bot]", + "smurfix@norisnetworkag", + "uSpike" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "andrewjayichlabucsb", + "nextdaysolutionsoy", + "norisnetworkag" + ], + "_pop_contributor_orgs_raw": [ + "Andrew Jayich Lab @ UCSB", + "NextDay Solutions Oy", + "noris network AG" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.02, + "_pop_updated_issues_count": 31, + "_pop_closed_issues_count": 12, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 30.0, + "_pop_comment_count": 45.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.9, - "_pop_dependents_count": 132, - "_pop_score": 53.64, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 41.01, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pytables/pytables/master/README.rst", - "_readme_localurl": "pytables~pytables~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/agronholm/anyio/master/README.rst", + "_readme_localurl": "agronholm~anyio~README.rst", "_requirements_filenames": [ - "requirements.txt", - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pytables/pytables/master/requirements.txt", - "https://raw.githubusercontent.com/pytables/pytables/master/setup.py", - "https://raw.githubusercontent.com/pytables/pytables/master/pyproject.toml" + "https://raw.githubusercontent.com/agronholm/anyio/master/pyproject.toml" ], "_requirements_localurls": [ - "pytables~pytables~requirements.txt", - "pytables~pytables~setup.py", - "pytables~pytables~pyproject.toml" + "agronholm~anyio~pyproject.toml" ] }, { - "index": 304, - "category": "nlp", - "githuburl": "https://github.com/featureform/embeddinghub", + "index": 489, + "category": "gis", + "githuburl": "https://github.com/scitools/cartopy", "featured": null, "links": null, "description": null, - "_repopath": "featureform/embeddinghub", - "_reponame": "featureform", - "_stars": 1162, - "_forks": 42, - "_watches": 12, + "_repopath": "scitools/cartopy", + "_reponame": "cartopy", + "_stars": 1178, + "_forks": 337, + "_watches": 55, + "_language": "Python", + "_homepage": "https://scitools.org.uk/cartopy/docs/latest", + "_description": "Cartopy - a cartographic python library with matplotlib support", + "_organization": "scitools", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-08-03T00:00:00.000Z", + "_age_weeks": 550, + "_stars_per_week": 2.14, "_topics": [ - "machine-learning", - "data-science", - "vector-database", - "embeddings-similarity", - "embeddings", - "hacktoberfest", - "feature-store", - "mlops", - "data-quality", - "feature-engineering", - "ml", - "python" + "cartopy", + "matplotlib", + "python", + "geometry", + "maps", + "spatial", + "projections" ], - "_language": "Go", - "_homepage": "https://www.featureform.com", - "_description": "featureform: The Virtual Feature Store. Turn your existing data infrastructure into a feature store.", - "_organization": "featureform", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2020-10-16T00:00:00.000Z", - "_age_weeks": 113, - "_stars_per_week": 10.24, - "_pop_contributor_count": 18, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-02T00:00:00.000Z", + "_pop_contributor_count": 118, + "_pop_contributor_logins": [ + "QuLogic", + "ajdawson", + "bjlittle@metoffice", + "dopplershift@ucar/unidata", + "esc24", + "greglucas@lasp/lasp/swxtrec", + "pelson", + "rhattersley@metoffice", + "scmc72", + "stefraynaud@shom" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "featureform" + "lasp/lasp/swxtrec", + "metoffice", + "shom", + "ucar/unidata" + ], + "_pop_contributor_orgs_raw": [ + "@MetOffice ", + "LASP / @lasp / @SWxTREC", + "Met Office", + "Shom", + "UCAR/@Unidata" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 47.98, - "_pop_updated_issues_count": 124, - "_pop_closed_issues_count": 103, - "_pop_created_since_days": 26, + "_pop_commit_frequency": 1.17, + "_pop_updated_issues_count": 48, + "_pop_closed_issues_count": 28, + "_pop_created_since_days": 128, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, + "_pop_recent_releases_count": 3, "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 124.0, - "_pop_comment_count": 103.0, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 48.0, + "_pop_comment_count": 109.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 9, - "_pop_score": 42.88, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 46.74, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/featureform/embeddinghub/master/README.md", - "_readme_localurl": "featureform~embeddinghub~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/scitools/cartopy/master/README.md", + "_readme_localurl": "scitools~cartopy~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/scitools/cartopy/master/setup.py", + "https://raw.githubusercontent.com/scitools/cartopy/master/pyproject.toml" + ], + "_requirements_localurls": [ + "scitools~cartopy~setup.py", + "scitools~cartopy~pyproject.toml" + ] }, { "index": 494, @@ -36950,9 +51369,17 @@ "description": null, "_repopath": "hysts/pytorch_image_classification", "_reponame": "pytorch_image_classification", - "_stars": 1159, + "_stars": 1170, "_forks": 289, "_watches": 27, + "_language": "Python", + "_homepage": "", + "_description": "pytorch_image_classification: PyTorch implementation of image classification models for CIFAR-10/CIFAR-100/MNIST/FashionMNIST/Kuzushiji-MNIST/ImageNet", + "_organization": "hysts", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-12-09T00:00:00.000Z", + "_age_weeks": 271, + "_stars_per_week": 4.31, "_topics": [ "pytorch", "computer-vision", @@ -36960,25 +51387,21 @@ "fashion-mnist", "imagenet" ], - "_language": "Python", - "_homepage": "", - "_description": "pytorch_image_classification: PyTorch implementation of image classification models for CIFAR-10/CIFAR-100/MNIST/FashionMNIST/Kuzushiji-MNIST/ImageNet", - "_organization": "hysts", - "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2021-12-12T00:00:00.000Z", - "_created_at": "2017-12-09T00:00:00.000Z", - "_age_weeks": 262, - "_stars_per_week": 4.42, "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "hysts" + ], "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 61, - "_pop_updated_since_days": 12, + "_pop_created_since_days": 63, + "_pop_updated_since_days": 15, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -36987,7 +51410,7 @@ "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 5.75, + "_pop_score": 5.32, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/hysts/pytorch_image_classification/master/README.md", "_readme_localurl": "hysts~pytorch_image_classification~README.md", @@ -37002,71 +51425,89 @@ ] }, { - "index": 725, - "category": "typing", - "githuburl": "https://github.com/patrick-kidger/torchtyping", + "index": 396, + "category": "web", + "githuburl": "https://github.com/neoteroi/blacksheep", "featured": null, "links": null, "description": null, - "_repopath": "patrick-kidger/torchtyping", - "_reponame": "torchtyping", - "_stars": 1153, - "_forks": 27, - "_watches": 13, + "_repopath": "neoteroi/blacksheep", + "_reponame": "BlackSheep", + "_stars": 1166, + "_forks": 52, + "_watches": 23, + "_language": "Python", + "_homepage": "https://www.neoteroi.dev/blacksheep/", + "_description": "BlackSheep: Fast ASGI web framework for Python", + "_organization": "neoteroi", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-11-22T00:00:00.000Z", + "_age_weeks": 221, + "_stars_per_week": 5.26, "_topics": [ - "tensors", - "named-tensors", - "shape", - "pytorch", - "typing", - "python-typing" + "asyncio", + "server", + "http", + "asgi", + "blacksheep", + "python", + "web", + "framework", + "http-server" ], - "_language": "Python", - "_homepage": "", - "_description": "torchtyping: Type annotations and dynamic checking for a tensor's shape, dtype, names, etc.", - "_organization": "patrick-kidger", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-07-11T00:00:00.000Z", - "_created_at": "2021-03-28T00:00:00.000Z", - "_age_weeks": 90, - "_stars_per_week": 12.79, - "_pop_contributor_count": 6, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 10, + "_pop_contributor_logins": [ + "Klavionik", + "RobertoPrevato", + "YassineElbouchaibi", + "antipooh", + "dependabot[bot]", + "gitter-badger@gitter", + "jack-fireworkhq@loopsocial", + "myusko", + "q0w", + "skivis" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "avatarify", - "googlex", - "irtsaint-exup\u00e9ry" + "gitter", + "loopsocial" + ], + "_pop_contributor_orgs_raw": [ + "@loopsocial", + "Gitter" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.04, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 21, - "_pop_updated_since_days": 5, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 4.0, - "_pop_comment_count": 10.0, + "_pop_commit_frequency": 0.62, + "_pop_updated_issues_count": 24, + "_pop_closed_issues_count": 19, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 24.0, + "_pop_comment_count": 40.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 2, - "_pop_score": 24.31, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 35.0, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/patrick-kidger/torchtyping/master/README.md", - "_readme_localurl": "patrick-kidger~torchtyping~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/neoteroi/blacksheep/master/README.md", + "_readme_localurl": "neoteroi~blacksheep~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/patrick-kidger/torchtyping/master/setup.py", - "https://raw.githubusercontent.com/patrick-kidger/torchtyping/master/pyproject.toml" + "https://raw.githubusercontent.com/neoteroi/blacksheep/master/requirements.txt", + "https://raw.githubusercontent.com/neoteroi/blacksheep/master/setup.py" ], "_requirements_localurls": [ - "patrick-kidger~torchtyping~setup.py", - "patrick-kidger~torchtyping~pyproject.toml" + "neoteroi~blacksheep~requirements.txt", + "neoteroi~blacksheep~setup.py" ] }, { @@ -37078,9 +51519,17 @@ "description": null, "_repopath": "jupyter/nbgrader", "_reponame": "nbgrader", - "_stars": 1151, - "_forks": 315, - "_watches": 43, + "_stars": 1163, + "_forks": 318, + "_watches": 42, + "_language": "Python", + "_homepage": "https://nbgrader.readthedocs.io/", + "_description": "nbgrader: A system for assigning and grading notebooks", + "_organization": "jupyter", + "_updated_at": "2023-02-14T00:00:00.000Z", + "_created_at": "2014-09-13T00:00:00.000Z", + "_age_weeks": 440, + "_stars_per_week": 2.64, "_topics": [ "nbgrader", "jupyter", @@ -37089,36 +51538,49 @@ "teaching", "grading" ], - "_language": "Python", - "_homepage": "https://nbgrader.readthedocs.io/", - "_description": "nbgrader: A system for assigning and grading notebooks", - "_organization": "jupyter", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", - "_created_at": "2014-09-13T00:00:00.000Z", - "_age_weeks": 431, - "_stars_per_week": 2.67, + "_last_commit_date": "2023-01-06T00:00:00.000Z", "_pop_contributor_count": 98, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "BertR", + "Carreau@quansight-labs", + "Lawrence37", + "brichet@quantstack", + "danielmaitre", + "jhamrick", + "lgpage", + "rkdarst@aaltouniversity", + "sigurdurb", + "willingc@willingconsulting" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "quantstack" + "aaltouniversity", + "quansight-labs", + "quantstack", + "willingconsulting" + ], + "_pop_contributor_orgs_raw": [ + "@Quansight-Labs", + "@quantstack", + "Aalto University", + "Willing Consulting" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.96, + "_pop_commit_frequency": 3.92, "_pop_updated_issues_count": 67, - "_pop_closed_issues_count": 24, - "_pop_created_since_days": 101, + "_pop_closed_issues_count": 18, + "_pop_created_since_days": 103, "_pop_updated_since_days": 2, "_pop_recent_releases_count": 7, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 7, "_pop_issue_count": 67.0, - "_pop_comment_count": 135.0, + "_pop_comment_count": 97.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 74, - "_pop_score": 48.72, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 44.38, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jupyter/nbgrader/master/README.md", "_readme_localurl": "jupyter~nbgrader~README.md", @@ -37139,733 +51601,1139 @@ ] }, { - "index": 636, - "category": "util", - "githuburl": "https://github.com/pygments/pygments", + "index": 16, + "category": "perf", + "githuburl": "https://github.com/eventlet/eventlet", "featured": null, "links": null, "description": null, - "_repopath": "pygments/pygments", - "_reponame": "pygments", - "_stars": 1148, - "_forks": 484, - "_watches": 27, + "_repopath": "eventlet/eventlet", + "_reponame": "eventlet", + "_stars": 1154, + "_forks": 298, + "_watches": 63, + "_language": "Python", + "_homepage": "https://eventlet.net", + "_description": "eventlet: Concurrent networking library for Python", + "_organization": "eventlet", + "_updated_at": "2023-02-15T00:00:00.000Z", + "_created_at": "2012-12-11T00:00:00.000Z", + "_age_weeks": 532, + "_stars_per_week": 2.17, "_topics": [ "python", - "syntax-highlighting" + "concurrency", + "network", + "c10k", + "greenlet", + "production-ready" ], - "_language": "Python", - "_homepage": "http://pygments.org/", - "_description": "Pygments is a generic syntax highlighter written in Python", - "_organization": "pygments", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2019-08-31T00:00:00.000Z", - "_age_weeks": 172, - "_stars_per_week": 6.66, - "_pop_contributor_count": 757, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-02T00:00:00.000Z", + "_pop_contributor_count": 183, + "_pop_contributor_logins": [ + "denik", + "edwardgeorge@apm\u00f8ller\u2014m\u00e6rsk", + "geoffsalmon", + "hisbreathliness", + "jstasiak", + "rdw", + "tavisrudd@http://twitter.com/tavisrudd/", + "temoto", + "tipabu", + "whichlinden" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "amd", - "fzj\u00fclich", - "google" + "apm\u00f8ller\u2014m\u00e6rsk", + "http://twitter.com/tavisrudd/" + ], + "_pop_contributor_orgs_raw": [ + "AP M\u00f8ller \u2014 M\u00e6rsk", + "http://twitter.com/tavisrudd/" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 7.58, - "_pop_updated_issues_count": 133, - "_pop_closed_issues_count": 67, - "_pop_created_since_days": 40, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 17, + "_pop_commit_frequency": 0.27, + "_pop_updated_issues_count": 40, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 124, + "_pop_updated_since_days": 37, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 133.0, - "_pop_comment_count": 184.0, + "_pop_issue_count": 40.0, + "_pop_comment_count": 66.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 7530, - "_pop_score": 67.1, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 35.0, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pygments/pygments/master/README.rst", - "_readme_localurl": "pygments~pygments~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/eventlet/eventlet/master/README.rst", + "_readme_localurl": "eventlet~eventlet~README.rst", "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pygments/pygments/master/requirements.txt", - "https://raw.githubusercontent.com/pygments/pygments/master/setup.py", - "https://raw.githubusercontent.com/pygments/pygments/master/pyproject.toml" + "https://raw.githubusercontent.com/eventlet/eventlet/master/setup.py" ], "_requirements_localurls": [ - "pygments~pygments~requirements.txt", - "pygments~pygments~setup.py", - "pygments~pygments~pyproject.toml" + "eventlet~eventlet~setup.py" ] }, { - "index": 489, - "category": "gis", - "githuburl": "https://github.com/scitools/cartopy", + "index": 666, + "category": "ml", + "githuburl": "https://github.com/huggingface/evaluate", "featured": null, "links": null, "description": null, - "_repopath": "scitools/cartopy", - "_reponame": "cartopy", - "_stars": 1145, - "_forks": 333, - "_watches": 55, + "_repopath": "huggingface/evaluate", + "_reponame": "evaluate", + "_stars": 1149, + "_forks": 115, + "_watches": 42, + "_language": "Python", + "_homepage": "https://huggingface.co/docs/evaluate", + "_description": "\ud83e\udd17 Evaluate: A library for easily evaluating machine learning models and datasets.", + "_organization": "huggingface", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-03-30T00:00:00.000Z", + "_age_weeks": 47, + "_stars_per_week": 24.45, "_topics": [ - "cartopy", - "matplotlib", - "python", - "geometry", - "maps", - "spatial", - "projections" + "evaluation", + "machine-learning" + ], + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 115, + "_pop_contributor_logins": [ + "BramVanroy@lt3kuleuven", + "albertvillanova@huggingfaceaiinnova", + "lewtun@huggingface", + "lhoestq@huggingface", + "lvwerra@huggingface", + "mariosasko@huggingface", + "mathemakitten", + "patrickvonplaten", + "sashavor@huggingface", + "thomwolf@huggingface" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "huggingface", + "huggingfaceaiinnova", + "lt3kuleuven" + ], + "_pop_contributor_orgs_raw": [ + "@huggingface", + "@huggingface ", + "@huggingface @Aiinnova", + "@lt3 @kuleuven", + "Hugging Face", + "HuggingFace" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.79, + "_pop_updated_issues_count": 87, + "_pop_closed_issues_count": 43, + "_pop_created_since_days": 11, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 87.0, + "_pop_comment_count": 177.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 44.02, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/huggingface/evaluate/master/README.md", + "_readme_localurl": "huggingface~evaluate~README.md", + "_requirements_filenames": [ + "setup.py" ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/huggingface/evaluate/master/setup.py" + ], + "_requirements_localurls": [ + "huggingface~evaluate~setup.py" + ] + }, + { + "index": 817, + "category": "ml-dl", + "githuburl": "https://github.com/calculatedcontent/weightwatcher", + "featured": null, + "links": null, + "description": null, + "_repopath": "calculatedcontent/weightwatcher", + "_reponame": "WeightWatcher", + "_stars": 1145, + "_forks": 100, + "_watches": 30, "_language": "Python", - "_homepage": "https://scitools.org.uk/cartopy/docs/latest", - "_description": "Cartopy - a cartographic python library with matplotlib support", - "_organization": "scitools", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2012-08-03T00:00:00.000Z", - "_age_weeks": 541, - "_stars_per_week": 2.11, - "_pop_contributor_count": 118, + "_homepage": null, + "_description": "WeightWatcher: The WeightWatcher tool for predicting the accuracy of Deep Neural Networks", + "_organization": "calculatedcontent", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2018-11-28T00:00:00.000Z", + "_age_weeks": 221, + "_stars_per_week": 5.18, + "_topics": [], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "Burhan-Q", + "RichardScottOZ@ozminerals", + "cdhinrichs", + "charlesmartin14@calculationconsulting", + "pachevalier@etalab", + "reserena" + ], "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "lasp/lasp/swxtrec", - "metoffice", - "ucar/unidata" + "calculationconsulting", + "etalab", + "ozminerals" + ], + "_pop_contributor_orgs_raw": [ + "Calculation Consulting", + "Etalab", + "OZ Minerals" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.4, - "_pop_updated_issues_count": 46, - "_pop_closed_issues_count": 26, - "_pop_created_since_days": 126, + "_pop_commit_frequency": 6.96, + "_pop_updated_issues_count": 63, + "_pop_closed_issues_count": 31, + "_pop_created_since_days": 52, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 46.0, - "_pop_comment_count": 135.0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 63.0, + "_pop_comment_count": 89.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.9, - "_pop_dependents_count": 284, - "_pop_score": 56.98, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 36.36, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/scitools/cartopy/master/README.md", - "_readme_localurl": "scitools~cartopy~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/calculatedcontent/weightwatcher/master/README.md", + "_readme_localurl": "calculatedcontent~weightwatcher~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/scitools/cartopy/master/setup.py", - "https://raw.githubusercontent.com/scitools/cartopy/master/pyproject.toml" + "https://raw.githubusercontent.com/calculatedcontent/weightwatcher/master/setup.py" ], "_requirements_localurls": [ - "scitools~cartopy~setup.py", - "scitools~cartopy~pyproject.toml" + "calculatedcontent~weightwatcher~setup.py" ] }, { - "index": 194, - "category": "web", - "githuburl": "https://github.com/jordaneremieff/mangum", + "index": 903, + "category": "util", + "githuburl": "https://github.com/ossf/criticality_score", "featured": null, "links": null, "description": null, - "_repopath": "jordaneremieff/mangum", - "_reponame": "mangum", - "_stars": 1144, - "_forks": 78, - "_watches": 16, - "_topics": [ - "asgi", - "aws", - "lambda", - "serverless", - "python", - "asyncio", - "api-gateway", - "starlette", - "fastapi", - "quart", - "django", - "sanic", - "aws-lambda", - "python3" + "_repopath": "ossf/criticality_score", + "_reponame": "criticality_score", + "_stars": 1141, + "_forks": 87, + "_watches": 30, + "_language": "Go", + "_homepage": null, + "_description": "criticality_score: Gives criticality score for an open source project", + "_organization": "ossf", + "_updated_at": "2023-02-15T00:00:00.000Z", + "_created_at": "2020-11-17T00:00:00.000Z", + "_age_weeks": 118, + "_stars_per_week": 9.66, + "_topics": [], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 19, + "_pop_contributor_logins": [ + "Yikun", + "azeemshaikh38", + "calebbrown", + "coni2k@forcrowd", + "dependabot[bot]", + "inferno-chromium@google", + "lehors@ibm", + "nathannaveen", + "nuthanmunaiah@rochesterinstituteoftechnology", + "oliverchang@google" ], - "_language": "Python", - "_homepage": "https://mangum.io/", - "_description": "mangum: AWS Lambda support for ASGI applications", - "_organization": "jordaneremieff", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-27T00:00:00.000Z", - "_created_at": "2019-01-14T00:00:00.000Z", - "_age_weeks": 205, - "_stars_per_week": 5.58, - "_pop_contributor_count": 29, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "resurety", - "tractabletractableai" + "forcrowd", + "google", + "ibm", + "rochesterinstituteoftechnology" + ], + "_pop_contributor_orgs_raw": [ + "@Google", + "@forCrowd", + "@google ", + "IBM", + "Rochester Institute of Technology" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.56, - "_pop_updated_issues_count": 11, - "_pop_closed_issues_count": 8, - "_pop_created_since_days": 48, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 8, - "_pop_recent_releases_estimated_tags": 15, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 11.0, - "_pop_comment_count": 14.0, + "_pop_commit_frequency": 2.38, + "_pop_updated_issues_count": 91, + "_pop_closed_issues_count": 61, + "_pop_created_since_days": 28, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 90.0, + "_pop_comment_count": 64.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 16, - "_pop_score": 39.16, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 36.69, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/jordaneremieff/mangum/master/README.md", - "_readme_localurl": "jordaneremieff~mangum~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/ossf/criticality_score/master/README.md", + "_readme_localurl": "ossf~criticality_score~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/jordaneremieff/mangum/master/requirements.txt", - "https://raw.githubusercontent.com/jordaneremieff/mangum/master/setup.py" + "https://raw.githubusercontent.com/ossf/criticality_score/master/setup.py" ], "_requirements_localurls": [ - "jordaneremieff~mangum~requirements.txt", - "jordaneremieff~mangum~setup.py" + "ossf~criticality_score~setup.py" ] }, { - "index": 338, - "category": "perf", - "githuburl": "https://github.com/tlkh/asitop", + "index": 545, + "category": "ml", + "githuburl": "https://github.com/borealisai/advertorch", "featured": null, "links": null, "description": null, - "_repopath": "tlkh/asitop", - "_reponame": "asitop", - "_stars": 1142, - "_forks": 69, - "_watches": 14, + "_repopath": "borealisai/advertorch", + "_reponame": "advertorch", + "_stars": 1136, + "_forks": 180, + "_watches": 27, + "_language": "Jupyter Notebook", + "_homepage": null, + "_description": "advertorch: A Toolbox for Adversarial Robustness Research", + "_organization": "borealisai", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-11-29T00:00:00.000Z", + "_age_weeks": 220, + "_stars_per_week": 5.14, "_topics": [ - "cpu", - "gpu", - "cli", - "macos", - "m1", - "apple-silicon" + "pytorch", + "adversarial-examples", + "adversarial-example", + "adversarial-perturbations", + "adversarial-attacks", + "adversarial-machine-learning", + "adversarial-learning", + "robustness", + "toolbox", + "security", + "machine-learning", + "benchmarking" ], - "_language": "Python", - "_homepage": "https://tlkh.github.io/asitop/", - "_description": "asitop: Perf monitoring CLI tool for Apple Silicon", - "_organization": "tlkh", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-08-20T00:00:00.000Z", - "_created_at": "2021-10-27T00:00:00.000Z", - "_age_weeks": 59, - "_stars_per_week": 19.12, - "_pop_contributor_count": 8, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-05-29T00:00:00.000Z", + "_pop_contributor_count": 21, + "_pop_contributor_logins": [ + "CaesarQ@wohin", + "LaurentMnr95", + "ashutoshbsathe", + "benfei", + "feinsteinben", + "fra31", + "gwding@ecopiaai", + "msalihs", + "tarokiritani@exawizards", + "tracyjin" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "singaporeuniversityoftechnologyanddesign" + "ecopiaai", + "exawizards", + "wohin" + ], + "_pop_contributor_orgs_raw": [ + "Ecopia AI", + "Exawizards", + "Wohin Inc." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.27, - "_pop_updated_issues_count": 13, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 14, - "_pop_updated_since_days": 4, + "_pop_commit_frequency": 0.31, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 51, + "_pop_updated_since_days": 9, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 13.0, - "_pop_comment_count": 65.0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 5.0, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 22.96, + "_pop_score": 19.84, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/tlkh/asitop/master/README.md", - "_readme_localurl": "tlkh~asitop~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/borealisai/advertorch/master/README.md", + "_readme_localurl": "borealisai~advertorch~README.md", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/tlkh/asitop/master/setup.py" + "https://raw.githubusercontent.com/borealisai/advertorch/master/setup.py" ], "_requirements_localurls": [ - "tlkh~asitop~setup.py" + "borealisai~advertorch~setup.py" ] }, { - "index": 16, - "category": "perf", - "githuburl": "https://github.com/eventlet/eventlet", + "index": 904, + "category": "crypto", + "githuburl": "https://github.com/ofek/bit", "featured": null, "links": null, "description": null, - "_repopath": "eventlet/eventlet", - "_reponame": "eventlet", - "_stars": 1139, - "_forks": 295, - "_watches": 62, + "_repopath": "ofek/bit", + "_reponame": "bit", + "_stars": 1128, + "_forks": 188, + "_watches": 48, + "_language": "Python", + "_homepage": "https://ofek.dev/bit/", + "_description": "Bitcoin made easy.", + "_organization": "ofek", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2016-11-12T00:00:00.000Z", + "_age_weeks": 327, + "_stars_per_week": 3.44, "_topics": [ + "bitcoin", "python", - "concurrency", - "network", - "c10k", - "greenlet", - "production-ready" + "libraries", + "cryptocurrencies", + "payments" + ], + "_last_commit_date": "2023-02-11T00:00:00.000Z", + "_pop_contributor_count": 15, + "_pop_contributor_logins": [ + "ChristianOConnor", + "EazyServer", + "GauthamramRavichandran", + "NateNate60", + "Qxe5", + "bjarnemagnussen", + "mgaitan", + "ofek@datadog", + "pedr0-fr", + "philsippl" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "datadog" + ], + "_pop_contributor_orgs_raw": [ + "@datadog" ], - "_language": "Python", - "_homepage": "https://eventlet.net", - "_description": "eventlet: Concurrent networking library for Python", - "_organization": "eventlet", - "_updated_at": "2022-12-08T00:00:00.000Z", - "_last_commit_date": "2022-11-17T00:00:00.000Z", - "_created_at": "2012-12-11T00:00:00.000Z", - "_age_weeks": 522, - "_stars_per_week": 2.18, - "_pop_contributor_count": 181, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.15, - "_pop_updated_issues_count": 18, - "_pop_closed_issues_count": 5, - "_pop_created_since_days": 122, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 76, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 18.0, - "_pop_comment_count": 26.0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 8.0, + "_pop_comment_count": 3.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 2749, - "_pop_score": 49.06, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 25.45, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/eventlet/eventlet/master/README.rst", - "_readme_localurl": "eventlet~eventlet~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/ofek/bit/master/README.rst", + "_readme_localurl": "ofek~bit~README.rst", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/eventlet/eventlet/master/setup.py" + "https://raw.githubusercontent.com/ofek/bit/master/setup.py", + "https://raw.githubusercontent.com/ofek/bit/master/pyproject.toml" ], "_requirements_localurls": [ - "eventlet~eventlet~setup.py" + "ofek~bit~setup.py", + "ofek~bit~pyproject.toml" ] }, { - "index": 403, - "category": "perf", - "githuburl": "https://github.com/agronholm/anyio", + "index": 618, + "category": "testing", + "githuburl": "https://github.com/pytest-dev/pytest-bdd", "featured": null, "links": null, "description": null, - "_repopath": "agronholm/anyio", - "_reponame": "anyio", - "_stars": 1134, - "_forks": 95, - "_watches": 24, - "_topics": [ - "async-await", - "trio", - "asyncio", - "curio" - ], + "_repopath": "pytest-dev/pytest-bdd", + "_reponame": "pytest-bdd", + "_stars": 1124, + "_forks": 187, + "_watches": 53, "_language": "Python", - "_homepage": "", - "_description": "anyio: High level asynchronous concurrency and networking framework that works on top of either trio or asyncio", - "_organization": "agronholm", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2018-08-19T00:00:00.000Z", - "_age_weeks": 226, - "_stars_per_week": 5.01, - "_pop_contributor_count": 38, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://pytest-bdd.readthedocs.io/en/latest/", + "_description": "pytest-bdd: BDD library for the py.test runner", + "_organization": "pytest-dev", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2013-03-29T00:00:00.000Z", + "_age_weeks": 516, + "_stars_per_week": 2.18, + "_topics": [], + "_last_commit_date": "2023-02-06T00:00:00.000Z", + "_pop_contributor_count": 53, + "_pop_contributor_logins": [ + "The-Compiler@bruhinsoftware", + "amakhnach", + "asottile", + "bubenkoff", + "drothlis@stb-tester", + "olegpidsadnyi@fareharbor", + "pre-commit-ci[bot]", + "sambarluc@pix4d", + "sliwinski-milosz", + "youtux" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "andrewjayichlabucsb", - "nextdaysolutionsoy", - "norisnetworkag" + "bruhinsoftware", + "fareharbor", + "pix4d", + "stb-tester" + ], + "_pop_contributor_orgs_raw": [ + "@FareHarbor", + "@stb-tester", + "Bruhin Software", + "Pix4D" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.38, - "_pop_updated_issues_count": 64, - "_pop_closed_issues_count": 43, - "_pop_created_since_days": 53, + "_pop_commit_frequency": 3.87, + "_pop_updated_issues_count": 22, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 121, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, + "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 10, - "_pop_issue_count": 64.0, - "_pop_comment_count": 117.0, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 22.0, + "_pop_comment_count": 23.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 553, - "_pop_score": 54.25, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 42.31, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/agronholm/anyio/master/README.rst", - "_readme_localurl": "agronholm~anyio~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest-bdd/master/README.rst", + "_readme_localurl": "pytest-dev~pytest-bdd~README.rst", "_requirements_filenames": [ "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/agronholm/anyio/master/pyproject.toml" + "https://raw.githubusercontent.com/pytest-dev/pytest-bdd/master/pyproject.toml" ], "_requirements_localurls": [ - "agronholm~anyio~pyproject.toml" + "pytest-dev~pytest-bdd~pyproject.toml" ] }, { - "index": 720, - "category": "math", - "githuburl": "https://github.com/facebookresearch/theseus", + "index": 448, + "category": "gis", + "githuburl": "https://github.com/pysal/pysal", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "pysal/pysal", + "_reponame": "pysal", + "_stars": 1112, + "_forks": 290, + "_watches": 81, + "_language": "Jupyter Notebook", + "_homepage": "http://pysal.org/pysal", + "_description": "PySAL: Python Spatial Analysis Library Meta-Package", + "_organization": "pysal", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2013-02-19T00:00:00.000Z", + "_age_weeks": 522, + "_stars_per_week": 2.13, + "_topics": [], + "_last_commit_date": "2023-01-28T00:00:00.000Z", + "_pop_contributor_count": 77, + "_pop_contributor_logins": [ + "TaylorOshan@geoda/asu", + "darribas", + "dfolch@northernarizonauniversity", + "jlaura@usgsastrogeology", + "ljwolf@geogbristol", + "mhwang4", + "nmalizia@telluslabs", + "pastephens", + "schmidtc", + "sjsrey@centerforopengeographicalscience" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "centerforopengeographicalscience", + "geoda/asu", + "geogbristol", + "northernarizonauniversity", + "telluslabs", + "usgsastrogeology" + ], + "_pop_contributor_orgs_raw": [ + "@geogbristol ", + "@telluslabs ", + "Center for Open Geographical Science", + "Geoda/ASU", + "Northern Arizona University", + "USGS Astrogeology" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.23, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 122, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 5.0, + "_pop_comment_count": 6.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 40.69, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pysal/pysal/master/README.md", + "_readme_localurl": "pysal~pysal~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pysal/pysal/master/requirements.txt", + "https://raw.githubusercontent.com/pysal/pysal/master/setup.py" + ], + "_requirements_localurls": [ + "pysal~pysal~requirements.txt", + "pysal~pysal~setup.py" + ] + }, + { + "index": 928, + "category": "util", + "githuburl": "https://github.com/p0dalirius/coercer", "featured": null, "links": null, "description": null, - "_repopath": "facebookresearch/theseus", - "_reponame": "theseus", - "_stars": 1132, - "_forks": 76, - "_watches": 29, + "_repopath": "p0dalirius/coercer", + "_reponame": "Coercer", + "_stars": 1109, + "_forks": 120, + "_watches": 18, + "_language": "Python", + "_homepage": "https://podalirius.net/", + "_description": "Coercer: A python script to automatically coerce a Windows server to authenticate on an arbitrary machine through 12 methods.", + "_organization": "p0dalirius", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-06-30T00:00:00.000Z", + "_age_weeks": 33, + "_stars_per_week": 32.76, "_topics": [ - "differentiable-optimization", - "robotics", - "embodied-ai", - "nonlinear-least-squares", - "pytorch", - "deep-learning", - "computer-vision", - "gauss-newton", - "levenberg-marquardt", - "implicit-differentiation", - "bilevel-optimization" + "authentication", + "automatic", + "call", + "coerce", + "privilege-escalation", + "rpc", + "ntlm", + "fuzzing" + ], + "_last_commit_date": "2023-01-18T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "exploide", + "jenaye@orange-cyberdefenseinshallhackcmepw", + "p0dalirius@podalirius", + "shoxxdj" ], - "_language": "Python", - "_homepage": "", - "_description": "theseus: A library for differentiable nonlinear optimization", - "_organization": "facebookresearch", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2021-11-18T00:00:00.000Z", - "_age_weeks": 56, - "_stars_per_week": 20.01, - "_pop_contributor_count": 19, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "facebookairesearchfacebookresearch", - "metaai" + "orange-cyberdefenseinshallhackcmepw", + "podalirius" + ], + "_pop_contributor_orgs_raw": [ + "@Orange-Cyberdefense @Inshallhack @CMEPW", + "Podalirius" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.25, - "_pop_updated_issues_count": 107, - "_pop_closed_issues_count": 84, - "_pop_created_since_days": 13, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 107.0, - "_pop_comment_count": 64.0, + "_pop_commit_frequency": 1.5, + "_pop_updated_issues_count": 36, + "_pop_closed_issues_count": 29, + "_pop_created_since_days": 8, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 36.0, + "_pop_comment_count": 14.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, + "_pop_comment_frequency": 0.4, "_pop_dependents_count": 0, - "_pop_score": 34.46, + "_pop_score": 25.47, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/theseus/master/README.md", - "_readme_localurl": "facebookresearch~theseus~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/p0dalirius/coercer/master/README.md", + "_readme_localurl": "p0dalirius~coercer~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt", + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/facebookresearch/theseus/master/setup.py" + "https://raw.githubusercontent.com/p0dalirius/coercer/master/requirements.txt", + "https://raw.githubusercontent.com/p0dalirius/coercer/master/setup.py", + "https://raw.githubusercontent.com/p0dalirius/coercer/master/pyproject.toml" ], "_requirements_localurls": [ - "facebookresearch~theseus~setup.py" + "p0dalirius~coercer~requirements.txt", + "p0dalirius~coercer~setup.py", + "p0dalirius~coercer~pyproject.toml" ] }, { - "index": 802, - "category": "util", - "githuburl": "https://github.com/open-telemetry/opentelemetry-python", + "index": 651, + "category": "profiling", + "githuburl": "https://github.com/p403n1x87/austin", "featured": null, "links": null, "description": null, - "_repopath": "open-telemetry/opentelemetry-python", - "_reponame": "opentelemetry-python", - "_stars": 1125, - "_forks": 402, - "_watches": 35, + "_repopath": "p403n1x87/austin", + "_reponame": "austin", + "_stars": 1109, + "_forks": 37, + "_watches": 14, + "_language": "C", + "_homepage": "", + "_description": "austin: Python frame stack sampler for CPython", + "_organization": "p403n1x87", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-09-20T00:00:00.000Z", + "_age_weeks": 230, + "_stars_per_week": 4.8, "_topics": [ "python", - "opentelemetry", - "tracecontext", - "correlationcontext", - "distributed-tracing", - "logging", - "metrics", - "sdk" + "profiling", + "performance", + "debugging-tools" + ], + "_last_commit_date": "2022-10-28T00:00:00.000Z", + "_pop_contributor_count": 7, + "_pop_contributor_logins": [ + "Mortal@madalgo", + "P403n1x87@datadog", + "hatboysam@habosaapps", + "ivoanjo@datadog", + "mitchblank", + "tonybaloney@microsoft", + "xmatthias" ], - "_language": "Python", - "_homepage": "https://opentelemetry.io", - "_description": "opentelemetry-python: OpenTelemetry Python API and SDK ", - "_organization": "open-telemetry", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-09T00:00:00.000Z", - "_created_at": "2019-05-07T00:00:00.000Z", - "_age_weeks": 188, - "_stars_per_week": 5.96, - "_pop_contributor_count": 172, "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google", - "lightstep", - "microsoftcorporation", - "signoz.io" + "datadog", + "habosaapps", + "madalgo", + "microsoft" + ], + "_pop_contributor_orgs_raw": [ + "@DataDog", + "@Datadog", + "Habosa Apps", + "MADALGO", + "Microsoft" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.42, - "_pop_updated_issues_count": 206, - "_pop_closed_issues_count": 128, - "_pop_created_since_days": 44, + "_pop_commit_frequency": 1.71, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 54, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 11, - "_pop_recent_releases_estimated_tags": 14, - "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 206.0, - "_pop_comment_count": 374.0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 14.0, + "_pop_comment_count": 28.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 128, - "_pop_score": 59.19, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 35.83, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/open-telemetry/opentelemetry-python/master/README.md", - "_readme_localurl": "open-telemetry~opentelemetry-python~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/p403n1x87/austin/master/README.md", + "_readme_localurl": "p403n1x87~austin~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 417, + "category": "pandas", + "githuburl": "https://github.com/pyjanitor-devs/pyjanitor", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "pyjanitor-devs/pyjanitor", + "_reponame": "pyjanitor", + "_stars": 1108, + "_forks": 159, + "_watches": 21, + "_language": "Python", + "_homepage": "https://pyjanitor-devs.github.io/pyjanitor", + "_description": "pyjanitor: Clean APIs for data cleaning. Python implementation of R package Janitor", + "_organization": "pyjanitor-devs", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-03-04T00:00:00.000Z", + "_age_weeks": 259, + "_stars_per_week": 4.27, + "_topics": [ + "pandas", + "dataframe", + "data", + "cleaning-data", + "data-engineering", + "pydata", + "hacktoberfest" + ], + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 106, + "_pop_contributor_logins": [ + "Zeroto521", + "dave-frazzetto", + "dsouzadaniel@pqdev", + "ericmjl", + "hectormz@amdi", + "jk3587", + "samukweku@datajanitor", + "szuckerman", + "thatlittleboy", + "zbarry@springdiscovery" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "amdi", + "datajanitor", + "pqdev", + "springdiscovery" + ], + "_pop_contributor_orgs_raw": [ + "@pqdev", + "AMDI", + "Data Janitor", + "Spring Discovery" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.27, + "_pop_updated_issues_count": 56, + "_pop_closed_issues_count": 33, + "_pop_created_since_days": 60, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 56.0, + "_pop_comment_count": 121.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 0, + "_pop_score": 45.03, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/README.rst", + "_readme_localurl": "pyjanitor-devs~pyjanitor~README.rst", "_requirements_filenames": [ + "requirements.txt", + "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/open-telemetry/opentelemetry-python/master/pyproject.toml" + "https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/requirements.txt", + "https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/setup.py", + "https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/pyproject.toml" ], "_requirements_localurls": [ - "open-telemetry~opentelemetry-python~pyproject.toml" + "pyjanitor-devs~pyjanitor~requirements.txt", + "pyjanitor-devs~pyjanitor~setup.py", + "pyjanitor-devs~pyjanitor~pyproject.toml" ] }, { - "index": 545, - "category": "ml", - "githuburl": "https://github.com/borealisai/advertorch", + "index": 798, + "category": "data", + "githuburl": "https://github.com/jsonpickle/jsonpickle", "featured": null, "links": null, "description": null, - "_repopath": "borealisai/advertorch", - "_reponame": "advertorch", - "_stars": 1119, - "_forks": 178, - "_watches": 27, - "_topics": [ - "pytorch", - "adversarial-examples", - "adversarial-example", - "adversarial-perturbations", - "adversarial-attacks", - "adversarial-machine-learning", - "adversarial-learning", - "robustness", - "toolbox", - "security", - "machine-learning", - "benchmarking" + "_repopath": "jsonpickle/jsonpickle", + "_reponame": "jsonpickle", + "_stars": 1102, + "_forks": 153, + "_watches": 31, + "_language": "Python", + "_homepage": "https://jsonpickle.github.io", + "_description": "jsonpickle: Python library for serializing any arbitrary object graph into JSON. It can take almost any Python object and turn the object into JSON. Additionally, it can reconstitute the object back into Python.", + "_organization": "jsonpickle", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2009-12-10T00:00:00.000Z", + "_age_weeks": 688, + "_stars_per_week": 1.6, + "_topics": [ + "json", + "python", + "serialization", + "pickle", + "deserialization", + "objectstorage", + "bsd-3-clause" ], - "_language": "Jupyter Notebook", - "_homepage": null, - "_description": "advertorch: A Toolbox for Adversarial Robustness Research", - "_organization": "borealisai", - "_updated_at": "2022-12-13T00:00:00.000Z", - "_last_commit_date": "2022-05-29T00:00:00.000Z", - "_created_at": "2018-11-29T00:00:00.000Z", - "_age_weeks": 211, - "_stars_per_week": 5.29, - "_pop_contributor_count": 21, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-12-29T00:00:00.000Z", + "_pop_contributor_count": 69, + "_pop_contributor_logins": [ + "EelcoHoogendoorn@3dhubs", + "Theelx", + "aldanor", + "davvid@waltdisneyanimationstudios", + "hugovk@nordsoftware", + "jaraco@google", + "johnpaulett@equium-io", + "marcintustin", + "meatballhat@rstudio", + "parsons-kyle-89" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "borealisai", - "ecopiaai" + "3dhubs", + "equium-io", + "google", + "nordsoftware", + "rstudio", + "waltdisneyanimationstudios" + ], + "_pop_contributor_orgs_raw": [ + "3dhubs", + "@equium-io", + "@rstudio", + "Google", + "Nord Software", + "Walt Disney Animation Studios" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.31, - "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 49, - "_pop_updated_since_days": 7, + "_pop_commit_frequency": 2.08, + "_pop_updated_issues_count": 26, + "_pop_closed_issues_count": 23, + "_pop_created_since_days": 161, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 3.0, - "_pop_comment_count": 1.0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 26.0, + "_pop_comment_count": 44.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.3, - "_pop_dependents_count": 2, - "_pop_score": 23.4, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/borealisai/advertorch/master/README.md", - "_readme_localurl": "borealisai~advertorch~README.md", + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 43.43, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/jsonpickle/jsonpickle/master/README.rst", + "_readme_localurl": "jsonpickle~jsonpickle~README.rst", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/borealisai/advertorch/master/setup.py" + "https://raw.githubusercontent.com/jsonpickle/jsonpickle/master/setup.py", + "https://raw.githubusercontent.com/jsonpickle/jsonpickle/master/pyproject.toml" ], "_requirements_localurls": [ - "borealisai~advertorch~setup.py" + "jsonpickle~jsonpickle~setup.py", + "jsonpickle~jsonpickle~pyproject.toml" ] }, { - "index": 618, - "category": "testing", - "githuburl": "https://github.com/pytest-dev/pytest-bdd", + "index": 512, + "category": "typing", + "githuburl": "https://github.com/agronholm/typeguard", "featured": null, "links": null, "description": null, - "_repopath": "pytest-dev/pytest-bdd", - "_reponame": "pytest-bdd", - "_stars": 1102, - "_forks": 186, - "_watches": 54, - "_topics": [], + "_repopath": "agronholm/typeguard", + "_reponame": "typeguard", + "_stars": 1101, + "_forks": 83, + "_watches": 16, "_language": "Python", - "_homepage": "https://pytest-bdd.readthedocs.io/en/latest/", - "_description": "pytest-bdd: BDD library for the py.test runner", - "_organization": "pytest-dev", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2013-03-29T00:00:00.000Z", - "_age_weeks": 507, - "_stars_per_week": 2.17, - "_pop_contributor_count": 52, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": null, + "_description": "typeguard: Run-time type checker for Python", + "_organization": "agronholm", + "_updated_at": "2023-02-13T00:00:00.000Z", + "_created_at": "2015-12-27T00:00:00.000Z", + "_age_weeks": 373, + "_stars_per_week": 2.95, + "_topics": [], + "_last_commit_date": "2023-02-12T00:00:00.000Z", + "_pop_contributor_count": 25, + "_pop_contributor_logins": [ + "EPronovost", + "agronholm@nextdaysolutionsoy", + "andyljones@anthropic", + "cjolowicz@cloudflare", + "pre-commit-ci[bot]", + "prescod@salesforce.org", + "reinhrst", + "rfrowe@indeed", + "supersergiy", + "wbolster" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "bruhinsoftware", - "fareharbor" + "anthropic", + "cloudflare", + "indeed", + "nextdaysolutionsoy", + "salesforce.org" + ], + "_pop_contributor_orgs_raw": [ + "@cloudflare", + "Anthropic", + "Indeed", + "NextDay Solutions Oy", + "Salesforce.org" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.33, - "_pop_updated_issues_count": 38, - "_pop_closed_issues_count": 28, - "_pop_created_since_days": 118, + "_pop_commit_frequency": 1.67, + "_pop_updated_issues_count": 54, + "_pop_closed_issues_count": 44, + "_pop_created_since_days": 87, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 38.0, - "_pop_comment_count": 63.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 54.0, + "_pop_comment_count": 188.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 232, - "_pop_score": 51.74, + "_pop_comment_frequency": 3.5, + "_pop_dependents_count": 0, + "_pop_score": 45.7, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest-bdd/master/README.rst", - "_readme_localurl": "pytest-dev~pytest-bdd~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/agronholm/typeguard/master/README.rst", + "_readme_localurl": "agronholm~typeguard~README.rst", "_requirements_filenames": [ "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pytest-dev/pytest-bdd/master/pyproject.toml" + "https://raw.githubusercontent.com/agronholm/typeguard/master/pyproject.toml" ], "_requirements_localurls": [ - "pytest-dev~pytest-bdd~pyproject.toml" + "agronholm~typeguard~pyproject.toml" ] }, { - "index": 396, - "category": "web", - "githuburl": "https://github.com/neoteroi/blacksheep", + "index": 619, + "category": "testing", + "githuburl": "https://github.com/pytest-dev/pytest-asyncio", "featured": null, "links": null, "description": null, - "_repopath": "neoteroi/blacksheep", - "_reponame": "BlackSheep", - "_stars": 1100, - "_forks": 50, - "_watches": 23, - "_topics": [ - "asyncio", - "server", - "http", - "asgi", - "blacksheep", - "python", - "http-server", - "rest", - "web", - "framework" - ], + "_repopath": "pytest-dev/pytest-asyncio", + "_reponame": "pytest-asyncio", + "_stars": 1099, + "_forks": 118, + "_watches": 34, "_language": "Python", - "_homepage": "https://www.neoteroi.dev/blacksheep/", - "_description": "BlackSheep: Fast ASGI web framework for Python", - "_organization": "neoteroi", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2018-11-22T00:00:00.000Z", - "_age_weeks": 212, - "_stars_per_week": 5.17, - "_pop_contributor_count": 10, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_homepage": "https://pytest-asyncio.readthedocs.io", + "_description": "pytest-asyncio: Asyncio support for pytest", + "_organization": "pytest-dev", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2015-04-11T00:00:00.000Z", + "_age_weeks": 410, + "_stars_per_week": 2.68, + "_topics": [], + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 41, + "_pop_contributor_logins": [ + "Tadaboody", + "Tinche@pocketzworld", + "agronholm@nextdaysolutionsoy", + "alblasco", + "asvetlov@neu.ro", + "dependabot[bot]", + "nicoddemus@esss", + "sashgorokhov@epam", + "seifertm", + "simonfagerholm" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "epam", + "esss", + "neu.ro", + "nextdaysolutionsoy", + "pocketzworld" + ], + "_pop_contributor_orgs_raw": [ + "@epam", + "@pocketzworld ", + "ESSS", + "Neu.ro", + "NextDay Solutions Oy" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.6, - "_pop_updated_issues_count": 17, - "_pop_closed_issues_count": 12, - "_pop_created_since_days": 50, + "_pop_commit_frequency": 2.73, + "_pop_updated_issues_count": 64, + "_pop_closed_issues_count": 54, + "_pop_created_since_days": 96, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 17.0, - "_pop_comment_count": 39.0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 64.0, + "_pop_comment_count": 51.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.3, - "_pop_dependents_count": 30, - "_pop_score": 35.53, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/neoteroi/blacksheep/master/README.md", - "_readme_localurl": "neoteroi~blacksheep~README.md", + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 44.44, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/master/README.rst", + "_readme_localurl": "pytest-dev~pytest-asyncio~README.rst", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/neoteroi/blacksheep/master/requirements.txt", - "https://raw.githubusercontent.com/neoteroi/blacksheep/master/setup.py" + "https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/master/pyproject.toml" ], "_requirements_localurls": [ - "neoteroi~blacksheep~requirements.txt", - "neoteroi~blacksheep~setup.py" + "pytest-dev~pytest-asyncio~pyproject.toml" ] }, { @@ -37877,41 +52745,52 @@ "description": null, "_repopath": "omyyyy/pycom", "_reponame": "pycom", - "_stars": 1094, + "_stars": 1099, "_forks": 21, "_watches": 17, - "_topics": [], "_language": "C++", "_homepage": "", "_description": "pycom: A Python compiler, down to native code, using C++", "_organization": "omyyyy", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-08-31T00:00:00.000Z", + "_updated_at": "2023-02-19T00:00:00.000Z", "_created_at": "2022-07-16T00:00:00.000Z", - "_age_weeks": 22, - "_stars_per_week": 49.09, + "_age_weeks": 31, + "_stars_per_week": 34.81, + "_topics": [], + "_last_commit_date": "2022-08-31T00:00:00.000Z", "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "BeeMoe5", + "Omyyyy", + "ikkebr@universityofcalgary", + "marcelpetrick@marcelpetrick.it", + "phodge-clipchamp" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "marcelpetrick.it", "universityofcalgary" ], + "_pop_contributor_orgs_raw": [ + "University of Calgary", + "marcelpetrick.it" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 1.71, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 5, - "_pop_updated_since_days": 4, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 7, + "_pop_updated_since_days": 6, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 2.0, - "_pop_comment_count": 1.0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 17.11, + "_pop_score": 14.03, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/omyyyy/pycom/master/README.md", "_readme_localurl": "omyyyy~pycom~README.md", @@ -37929,259 +52808,174 @@ ] }, { - "index": 900, - "category": "ml", - "githuburl": "https://github.com/shankarpandala/lazypredict", + "index": 239, + "category": "data", + "githuburl": "https://github.com/simonw/sqlite-utils", "featured": null, "links": null, "description": null, - "_repopath": "shankarpandala/lazypredict", - "_reponame": "lazypredict", - "_stars": 1090, - "_forks": 123, - "_watches": 16, + "_repopath": "simonw/sqlite-utils", + "_reponame": "sqlite-utils", + "_stars": 1097, + "_forks": 84, + "_watches": 18, + "_language": "Python", + "_homepage": "https://sqlite-utils.datasette.io", + "_description": "sqlite-utils: Python CLI utility and library for manipulating SQLite databases", + "_organization": "simonw", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2018-07-14T00:00:00.000Z", + "_age_weeks": 240, + "_stars_per_week": 4.56, "_topics": [ - "machine-learning", - "automl", - "regression", - "classification" + "sqlite", + "python", + "datasette", + "sqlite-database", + "click", + "cli", + "datasette-io", + "datasette-tool" + ], + "_last_commit_date": "2022-12-10T00:00:00.000Z", + "_pop_contributor_count": 27, + "_pop_contributor_logins": [ + "adamwolf", + "amjith", + "davidleejy@nationaluniversityofsingapore", + "dbready", + "eyeseast@usatodaynetwork", + "meatcar", + "mfa@axsemantics", + "simonw@datasette", + "simonwiles@stanforduniversity", + "tsibley" ], - "_language": "Python", - "_homepage": "", - "_description": "lazypredict: Lazy Predict help build a lot of basic models without much code and helps understand which models works better without any parameter tuning", - "_organization": "shankarpandala", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-09-28T00:00:00.000Z", - "_created_at": "2019-11-16T00:00:00.000Z", - "_age_weeks": 161, - "_stars_per_week": 6.76, - "_pop_contributor_count": 18, "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "appliedmaterials", - "fiolabs-internal", - "pyupio", - "streamlit", - "wildlife-studios" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.6, - "_pop_updated_issues_count": 24, - "_pop_closed_issues_count": 5, - "_pop_created_since_days": 38, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 24.0, - "_pop_comment_count": 22.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 3, - "_pop_score": 33.22, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/shankarpandala/lazypredict/master/README.rst", - "_readme_localurl": "shankarpandala~lazypredict~README.rst", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/shankarpandala/lazypredict/master/requirements.txt", - "https://raw.githubusercontent.com/shankarpandala/lazypredict/master/setup.py" + "axsemantics", + "datasette", + "nationaluniversityofsingapore", + "stanforduniversity", + "usatodaynetwork" ], - "_requirements_localurls": [ - "shankarpandala~lazypredict~requirements.txt", - "shankarpandala~lazypredict~setup.py" - ] - }, - { - "index": 448, - "category": "gis", - "githuburl": "https://github.com/pysal/pysal", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "pysal/pysal", - "_reponame": "pysal", - "_stars": 1084, - "_forks": 287, - "_watches": 81, - "_topics": [], - "_language": "Jupyter Notebook", - "_homepage": "http://pysal.org/pysal", - "_description": "PySAL: Python Spatial Analysis Library Meta-Package", - "_organization": "pysal", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-07-23T00:00:00.000Z", - "_created_at": "2013-02-19T00:00:00.000Z", - "_age_weeks": 512, - "_stars_per_week": 2.11, - "_pop_contributor_count": 77, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "centerforopengeographicalscience", - "geoda/asu", - "usgsastrogeology" + "_pop_contributor_orgs_raw": [ + "@axsemantics ", + "Datasette", + "National University of Singapore", + "Stanford University", + "USA TODAY Network" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.65, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 120, - "_pop_updated_since_days": 5, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 2.0, - "_pop_comment_count": 6.0, + "_pop_commit_frequency": 2.52, + "_pop_updated_issues_count": 21, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 56, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 25, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 21.0, + "_pop_comment_count": 30.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.0, - "_pop_dependents_count": 1349, - "_pop_score": 50.58, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 38.24, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pysal/pysal/master/README.md", - "_readme_localurl": "pysal~pysal~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/simonw/sqlite-utils/master/README.md", + "_readme_localurl": "simonw~sqlite-utils~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pysal/pysal/master/requirements.txt", - "https://raw.githubusercontent.com/pysal/pysal/master/setup.py" + "https://raw.githubusercontent.com/simonw/sqlite-utils/master/setup.py" ], "_requirements_localurls": [ - "pysal~pysal~requirements.txt", - "pysal~pysal~setup.py" + "simonw~sqlite-utils~setup.py" ] }, { - "index": 656, - "category": "web", - "githuburl": "https://github.com/magicstack/httptools", + "index": 609, + "category": "testing", + "githuburl": "https://github.com/pytest-dev/pytest-xdist", "featured": null, "links": null, "description": null, - "_repopath": "magicstack/httptools", - "_reponame": "httptools", - "_stars": 1082, - "_forks": 69, - "_watches": 40, - "_topics": [], + "_repopath": "pytest-dev/pytest-xdist", + "_reponame": "pytest-xdist", + "_stars": 1095, + "_forks": 192, + "_watches": 47, "_language": "Python", - "_homepage": "", - "_description": "httptools: Fast HTTP parser", - "_organization": "magicstack", - "_updated_at": "2022-12-13T00:00:00.000Z", - "_last_commit_date": "2022-09-13T00:00:00.000Z", - "_created_at": "2016-04-25T00:00:00.000Z", - "_age_weeks": 347, - "_stars_per_week": 3.12, - "_pop_contributor_count": 13, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "edgedb", - "enix" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.12, - "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 81, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 3.0, - "_pop_comment_count": 6.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 245, - "_pop_score": 38.21, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/magicstack/httptools/master/README.md", - "_readme_localurl": "magicstack~httptools~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/magicstack/httptools/master/setup.py" - ], - "_requirements_localurls": [ - "magicstack~httptools~setup.py" - ] - }, - { - "index": 798, - "category": "data", - "githuburl": "https://github.com/jsonpickle/jsonpickle", - "featured": null, - "links": null, - "description": null, - "_repopath": "jsonpickle/jsonpickle", - "_reponame": "jsonpickle", - "_stars": 1079, - "_forks": 153, - "_watches": 31, + "_homepage": "https://pytest-xdist.readthedocs.io", + "_description": "pytest-xdist: pytest plugin for distributed testing and loop-on-failures testing modes. ", + "_organization": "pytest-dev", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-09-01T00:00:00.000Z", + "_age_weeks": 390, + "_stars_per_week": 2.81, "_topics": [ - "json", - "python", - "serialization", - "pickle", - "deserialization", - "objectstorage", - "bsd-3-clause" + "hacktoberfest", + "pytest", + "pytest-plugin" ], - "_language": "Python", - "_homepage": "https://jsonpickle.github.io", - "_description": "jsonpickle: Python library for serializing any arbitrary object graph into JSON. It can take almost any Python object and turn the object into JSON. Additionally, it can reconstitute the object back into Python.", - "_organization": "jsonpickle", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2009-12-10T00:00:00.000Z", - "_age_weeks": 679, - "_stars_per_week": 1.59, - "_pop_contributor_count": 68, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 89, + "_pop_contributor_logins": [ + "RonnyPfannschmidt@redhatinsights", + "bluetech", + "blueyed@freelancer,upforhire", + "bubenkoff", + "flub", + "hpk42@merlinux", + "hugovk@nordsoftware", + "nicoddemus@esss", + "pre-commit-ci[bot]", + "wronglink" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "3dhubs", - "equium-io", - "google", - "waltdisneyanimationstudios" + "esss", + "freelancer,upforhire", + "merlinux", + "nordsoftware", + "redhatinsights" + ], + "_pop_contributor_orgs_raw": [ + "@RedHatInsights ", + "ESSS", + "Freelancer, up for hire", + "Nord Software", + "merlinux" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.25, - "_pop_updated_issues_count": 29, - "_pop_closed_issues_count": 22, - "_pop_created_since_days": 159, + "_pop_commit_frequency": 1.25, + "_pop_updated_issues_count": 49, + "_pop_closed_issues_count": 32, + "_pop_created_since_days": 91, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 29.0, - "_pop_comment_count": 56.0, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 49.0, + "_pop_comment_count": 136.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.9, - "_pop_dependents_count": 170, - "_pop_score": 54.09, + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 0, + "_pop_score": 48.4, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/jsonpickle/jsonpickle/master/README.rst", - "_readme_localurl": "jsonpickle~jsonpickle~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest-xdist/master/README.rst", + "_readme_localurl": "pytest-dev~pytest-xdist~README.rst", "_requirements_filenames": [ - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/jsonpickle/jsonpickle/master/setup.py", - "https://raw.githubusercontent.com/jsonpickle/jsonpickle/master/pyproject.toml" + "https://raw.githubusercontent.com/pytest-dev/pytest-xdist/master/pyproject.toml" ], "_requirements_localurls": [ - "jsonpickle~jsonpickle~setup.py", - "jsonpickle~jsonpickle~pyproject.toml" + "pytest-dev~pytest-xdist~pyproject.toml" ] }, { @@ -38193,40 +52987,56 @@ "description": null, "_repopath": "google/tensorstore", "_reponame": "tensorstore", - "_stars": 1074, + "_stars": 1095, "_forks": 79, - "_watches": 30, - "_topics": [], + "_watches": 32, "_language": "C++", "_homepage": "https://google.github.io/tensorstore/", "_description": "tensorstore: Library for reading and writing large multi-dimensional arrays.", "_organization": "google", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_updated_at": "2023-02-16T00:00:00.000Z", "_created_at": "2020-03-30T00:00:00.000Z", - "_age_weeks": 142, - "_stars_per_week": 7.56, + "_age_weeks": 151, + "_stars_per_week": 7.24, + "_topics": [], + "_last_commit_date": "2023-02-14T00:00:00.000Z", "_pop_contributor_count": 10, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "QrczakMK@google", + "ckennelly", + "cpgaffney1", + "cushon", + "hectorgon", + "jbms", + "laramiel", + "mkruskal-google@protocolbuffers", + "yilei" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google" + "google", + "protocolbuffers" + ], + "_pop_contributor_orgs_raw": [ + "@google", + "@protocolbuffers" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.65, - "_pop_updated_issues_count": 35, - "_pop_closed_issues_count": 23, - "_pop_created_since_days": 33, + "_pop_commit_frequency": 5.73, + "_pop_updated_issues_count": 24, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 35, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 11, "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 35.0, - "_pop_comment_count": 195.0, + "_pop_issue_count": 24.0, + "_pop_comment_count": 125.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 5.6, - "_pop_dependents_count": 29, - "_pop_score": 45.11, + "_pop_comment_frequency": 5.2, + "_pop_dependents_count": 0, + "_pop_score": 40.27, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google/tensorstore/master/README.md", "_readme_localurl": "google~tensorstore~README.md", @@ -38244,250 +53054,167 @@ ] }, { - "index": 417, - "category": "pandas", - "githuburl": "https://github.com/pyjanitor-devs/pyjanitor", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "pyjanitor-devs/pyjanitor", - "_reponame": "pyjanitor", - "_stars": 1070, - "_forks": 160, - "_watches": 21, - "_topics": [ - "pandas", - "dataframe", - "data", - "cleaning-data", - "data-engineering", - "pydata", - "hacktoberfest" - ], - "_language": "Python", - "_homepage": "https://pyjanitor-devs.github.io/pyjanitor", - "_description": "pyjanitor: Clean APIs for data cleaning. Python implementation of R package Janitor", - "_organization": "pyjanitor-devs", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", - "_created_at": "2018-03-04T00:00:00.000Z", - "_age_weeks": 250, - "_stars_per_week": 4.28, - "_pop_contributor_count": 106, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "amdi", - "datajanitor", - "springdiscovery" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.77, - "_pop_updated_issues_count": 81, - "_pop_closed_issues_count": 60, - "_pop_created_since_days": 58, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 81.0, - "_pop_comment_count": 193.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.4, - "_pop_dependents_count": 2, - "_pop_score": 45.28, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/README.rst", - "_readme_localurl": "pyjanitor-devs~pyjanitor~README.rst", - "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/requirements.txt", - "https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/setup.py", - "https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/pyproject.toml" - ], - "_requirements_localurls": [ - "pyjanitor-devs~pyjanitor~requirements.txt", - "pyjanitor-devs~pyjanitor~setup.py", - "pyjanitor-devs~pyjanitor~pyproject.toml" - ] - }, - { - "index": 651, - "category": "profiling", - "githuburl": "https://github.com/p403n1x87/austin", + "index": 772, + "category": "nlp", + "githuburl": "https://github.com/huggingface/setfit", "featured": null, "links": null, "description": null, - "_repopath": "p403n1x87/austin", - "_reponame": "austin", - "_stars": 1065, - "_forks": 35, - "_watches": 14, + "_repopath": "huggingface/setfit", + "_reponame": "setfit", + "_stars": 1091, + "_forks": 112, + "_watches": 16, + "_language": "Python", + "_homepage": "", + "_description": "setfit: Efficient few-shot learning with Sentence Transformers", + "_organization": "huggingface", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-06-30T00:00:00.000Z", + "_age_weeks": 33, + "_stars_per_week": 32.22, "_topics": [ - "python", - "profiling", - "performance", - "debugging-tools" + "few-shot-learning", + "nlp", + "sentence-transformers" ], - "_language": "C", - "_homepage": "", - "_description": "austin: Python frame stack sampler for CPython", - "_organization": "p403n1x87", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-10-28T00:00:00.000Z", - "_created_at": "2018-09-20T00:00:00.000Z", - "_age_weeks": 221, - "_stars_per_week": 4.81, - "_pop_contributor_count": 7, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "datadog", - "madalgo", - "microsoft" + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 35, + "_pop_contributor_logins": [ + "LuketheDukeBates", + "PhilipMay@telekom", + "blakechi", + "danielkorat@nervanasystems", + "eunseojo", + "fgbelidji@huggingface", + "lewtun@huggingface", + "mpangrazzi@wonderflow-bv", + "pdhall99", + "tomaarsen@argilla" ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.02, - "_pop_updated_issues_count": 28, - "_pop_closed_issues_count": 24, - "_pop_created_since_days": 52, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 28.0, - "_pop_comment_count": 44.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 29, - "_pop_score": 39.65, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/p403n1x87/austin/master/README.md", - "_readme_localurl": "p403n1x87~austin~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, - { - "index": 512, - "category": "typing", - "githuburl": "https://github.com/agronholm/typeguard", - "featured": null, - "links": null, - "description": null, - "_repopath": "agronholm/typeguard", - "_reponame": "typeguard", - "_stars": 1065, - "_forks": 79, - "_watches": 17, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "typeguard: Run-time type checker for Python", - "_organization": "agronholm", - "_updated_at": "2022-12-12T00:00:00.000Z", - "_last_commit_date": "2022-10-11T00:00:00.000Z", - "_created_at": "2015-12-27T00:00:00.000Z", - "_age_weeks": 364, - "_stars_per_week": 2.92, - "_pop_contributor_count": 21, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "nextdaysolutionsoy", - "salesforce.org" + "argilla", + "huggingface", + "nervanasystems", + "telekom", + "wonderflow-bv" + ], + "_pop_contributor_orgs_raw": [ + "@NervanaSystems ", + "@huggingface", + "@telekom", + "@wonderflow-bv ", + "Argilla", + "Hugging Face" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.35, - "_pop_updated_issues_count": 10, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 85, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 10.0, - "_pop_comment_count": 6.0, + "_pop_commit_frequency": 6.02, + "_pop_updated_issues_count": 173, + "_pop_closed_issues_count": 107, + "_pop_created_since_days": 8, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 173.0, + "_pop_comment_count": 436.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 265, - "_pop_score": 40.92, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/agronholm/typeguard/master/README.rst", - "_readme_localurl": "agronholm~typeguard~README.rst", + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 0, + "_pop_score": 43.43, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/huggingface/setfit/master/README.md", + "_readme_localurl": "huggingface~setfit~README.md", "_requirements_filenames": [ - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/agronholm/typeguard/master/pyproject.toml" + "https://raw.githubusercontent.com/huggingface/setfit/master/setup.py" ], "_requirements_localurls": [ - "agronholm~typeguard~pyproject.toml" + "huggingface~setfit~setup.py" ] }, { - "index": 626, - "category": "viz", - "githuburl": "https://github.com/enthought/mayavi", + "index": 656, + "category": "web", + "githuburl": "https://github.com/magicstack/httptools", "featured": null, "links": null, "description": null, - "_repopath": "enthought/mayavi", - "_reponame": "mayavi", - "_stars": 1060, - "_forks": 264, - "_watches": 93, - "_topics": [], + "_repopath": "magicstack/httptools", + "_reponame": "httptools", + "_stars": 1089, + "_forks": 71, + "_watches": 40, "_language": "Python", - "_homepage": "http://docs.enthought.com/mayavi/mayavi/", - "_description": "mayavi: 3D visualization of scientific data in Python", - "_organization": "enthought", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-10-18T00:00:00.000Z", - "_created_at": "2011-01-24T00:00:00.000Z", - "_age_weeks": 621, - "_stars_per_week": 1.71, - "_pop_contributor_count": 93, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_homepage": "", + "_description": "httptools: Fast HTTP parser", + "_organization": "magicstack", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2016-04-25T00:00:00.000Z", + "_age_weeks": 356, + "_stars_per_week": 3.06, + "_topics": [], + "_last_commit_date": "2022-09-13T00:00:00.000Z", + "_pop_contributor_count": 13, + "_pop_contributor_logins": [ + "1st1@edgedb", + "SethMichaelLarson", + "b0g3r@semrush", + "belm0", + "elprans@edgedb", + "fantix@edgedb", + "samuelcolvin@pydantic", + "trollfot", + "yohanboniface@enix", + "youknowone@youknowone.org" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "astrazenecauk", - "enthought", - "iitbombay" + "edgedb", + "enix", + "pydantic", + "semrush", + "youknowone.org" + ], + "_pop_contributor_orgs_raw": [ + "@edgedb", + "@pydantic", + "@semrush", + "EdgeDB Inc.", + "Enix", + "youknowone.org" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.19, - "_pop_updated_issues_count": 44, - "_pop_closed_issues_count": 25, - "_pop_created_since_days": 145, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 44.0, - "_pop_comment_count": 82.0, + "_pop_commit_frequency": 0.06, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 83, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.9, - "_pop_dependents_count": 119, - "_pop_score": 50.21, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/enthought/mayavi/master/README.rst", - "_readme_localurl": "enthought~mayavi~README.rst", + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 24.62, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/magicstack/httptools/master/README.md", + "_readme_localurl": "magicstack~httptools~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/enthought/mayavi/master/setup.py", - "https://raw.githubusercontent.com/enthought/mayavi/master/pyproject.toml" + "https://raw.githubusercontent.com/magicstack/httptools/master/setup.py" ], "_requirements_localurls": [ - "enthought~mayavi~setup.py", - "enthought~mayavi~pyproject.toml" + "magicstack~httptools~setup.py" ] }, { @@ -38499,9 +53226,17 @@ "description": null, "_repopath": "zarr-developers/zarr-python", "_reponame": "zarr-python", - "_stars": 1059, - "_forks": 210, - "_watches": 43, + "_stars": 1088, + "_forks": 218, + "_watches": 44, + "_language": "Python", + "_homepage": "http://zarr.readthedocs.io/", + "_description": "zarr-python: An implementation of chunked, compressed, N-dimensional arrays for Python.", + "_organization": "zarr-developers", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-12-15T00:00:00.000Z", + "_age_weeks": 375, + "_stars_per_week": 2.9, "_topics": [ "hacktoberfest", "zarr", @@ -38509,38 +53244,57 @@ "compressed", "python" ], - "_language": "Python", - "_homepage": "http://zarr.readthedocs.io/", - "_description": "zarr-python: An implementation of chunked, compressed, N-dimensional arrays for Python.", - "_organization": "zarr-developers", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2015-12-15T00:00:00.000Z", - "_age_weeks": 365, - "_stars_per_week": 2.89, - "_pop_contributor_count": 77, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 83, + "_pop_contributor_logins": [ + "Carreau@quansight-labs", + "DimitriPapadopoulos@cea", + "alimanfoo@weomesangerinstitute", + "andrewfulton9@quansight", + "dependabot[bot]", + "grlee77@nvidia", + "jakirkham", + "joshmoore@openmicroscopy", + "jrbourbeau@coiled", + "mzjp2@mavensecurities" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "cea", + "coiled", + "mavensecurities", + "nvidia", "openmicroscopy", + "quansight", "quansight-labs", "weomesangerinstitute" ], + "_pop_contributor_orgs_raw": [ + "@Quansight-Labs", + "@coiled ", + "@openmicroscopy", + "CEA", + "Maven Securities", + "NVIDIA", + "Quansight", + "Wellcome Sanger Institute" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.62, - "_pop_updated_issues_count": 207, - "_pop_closed_issues_count": 115, - "_pop_created_since_days": 85, + "_pop_commit_frequency": 3.67, + "_pop_updated_issues_count": 123, + "_pop_closed_issues_count": 70, + "_pop_created_since_days": 88, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 12, + "_pop_recent_releases_count": 17, "_pop_recent_releases_estimated_tags": 11, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 207.0, - "_pop_comment_count": 692.0, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 124.0, + "_pop_comment_count": 324.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.3, - "_pop_dependents_count": 75, - "_pop_score": 57.87, + "_pop_comment_frequency": 2.6, + "_pop_dependents_count": 0, + "_pop_score": 53.52, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/zarr-developers/zarr-python/master/README.md", "_readme_localurl": "zarr-developers~zarr-python~README.md", @@ -38555,250 +53309,269 @@ ] }, { - "index": 619, - "category": "testing", - "githuburl": "https://github.com/pytest-dev/pytest-asyncio", + "index": 626, + "category": "viz", + "githuburl": "https://github.com/enthought/mayavi", "featured": null, "links": null, "description": null, - "_repopath": "pytest-dev/pytest-asyncio", - "_reponame": "pytest-asyncio", - "_stars": 1056, - "_forks": 116, - "_watches": 35, - "_topics": [], + "_repopath": "enthought/mayavi", + "_reponame": "mayavi", + "_stars": 1084, + "_forks": 266, + "_watches": 96, "_language": "Python", - "_homepage": "https://pytest-asyncio.readthedocs.io", - "_description": "pytest-asyncio: Asyncio support for pytest", - "_organization": "pytest-dev", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2015-04-11T00:00:00.000Z", - "_age_weeks": 401, - "_stars_per_week": 2.63, - "_pop_contributor_count": 40, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "neu.ro", - "pocketzworld" + "_homepage": "http://docs.enthought.com/mayavi/mayavi/", + "_description": "mayavi: 3D visualization of scientific data in Python", + "_organization": "enthought", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2011-01-24T00:00:00.000Z", + "_age_weeks": 630, + "_stars_per_week": 1.72, + "_topics": [], + "_last_commit_date": "2022-10-18T00:00:00.000Z", + "_pop_contributor_count": 93, + "_pop_contributor_logins": [ + "GaelVaroquaux", + "amalss18@carnegiemellonuniversity", + "dmsurti", + "itziakos@enthought", + "kitchoi", + "larsoner@universityofwashington", + "prabhuramachandran@iitbombay", + "rahulporuri@enthought", + "stefanoborini@astrazenecauk", + "tkoyama010@ark-info-sys" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "ark-info-sys", + "astrazenecauk", + "carnegiemellonuniversity", + "enthought", + "iitbombay", + "universityofwashington" + ], + "_pop_contributor_orgs_raw": [ + "@ark-info-sys", + "@enthought ", + "AstraZeneca UK", + "Carnegie Mellon University", + "IIT Bombay", + "University of Washington" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.27, - "_pop_updated_issues_count": 80, - "_pop_closed_issues_count": 66, - "_pop_created_since_days": 94, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 15, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 15, - "_pop_issue_count": 80.0, - "_pop_comment_count": 80.0, + "_pop_commit_frequency": 0.96, + "_pop_updated_issues_count": 28, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 147, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 28.0, + "_pop_comment_count": 37.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 2129, - "_pop_score": 56.86, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 40.63, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/master/README.rst", - "_readme_localurl": "pytest-dev~pytest-asyncio~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/enthought/mayavi/master/README.rst", + "_readme_localurl": "enthought~mayavi~README.rst", "_requirements_filenames": [ + "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/master/pyproject.toml" + "https://raw.githubusercontent.com/enthought/mayavi/master/setup.py", + "https://raw.githubusercontent.com/enthought/mayavi/master/pyproject.toml" ], "_requirements_localurls": [ - "pytest-dev~pytest-asyncio~pyproject.toml" + "enthought~mayavi~setup.py", + "enthought~mayavi~pyproject.toml" ] }, { - "index": 239, - "category": "data", - "githuburl": "https://github.com/simonw/sqlite-utils", + "index": 654, + "category": "profiling", + "githuburl": "https://github.com/sumerc/yappi", "featured": null, "links": null, "description": null, - "_repopath": "simonw/sqlite-utils", - "_reponame": "sqlite-utils", - "_stars": 1055, - "_forks": 81, - "_watches": 17, - "_topics": [ - "sqlite", - "python", - "datasette", - "sqlite-database", - "click", - "cli", - "datasette-io", - "datasette-tool" - ], + "_repopath": "sumerc/yappi", + "_reponame": "yappi", + "_stars": 1074, + "_forks": 58, + "_watches": 13, "_language": "Python", - "_homepage": "https://sqlite-utils.datasette.io", - "_description": "sqlite-utils: Python CLI utility and library for manipulating SQLite databases", - "_organization": "simonw", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-10T00:00:00.000Z", - "_created_at": "2018-07-14T00:00:00.000Z", - "_age_weeks": 231, - "_stars_per_week": 4.56, - "_pop_contributor_count": 27, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "datasette", - "stanforduniversity", - "usatodaynetwork/glasseyemedia/homicidewatch" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.17, - "_pop_updated_issues_count": 39, - "_pop_closed_issues_count": 22, - "_pop_created_since_days": 54, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 14, - "_pop_recent_releases_estimated_tags": 26, - "_pop_recent_releases_adjusted_count": 14, - "_pop_issue_count": 39.0, - "_pop_comment_count": 93.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.4, - "_pop_dependents_count": 123, - "_pop_score": 52.02, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/simonw/sqlite-utils/master/README.md", - "_readme_localurl": "simonw~sqlite-utils~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/simonw/sqlite-utils/master/setup.py" - ], - "_requirements_localurls": [ - "simonw~sqlite-utils~setup.py" - ] - }, - { - "index": 609, - "category": "testing", - "githuburl": "https://github.com/pytest-dev/pytest-xdist", - "featured": null, - "links": null, - "description": null, - "_repopath": "pytest-dev/pytest-xdist", - "_reponame": "pytest-xdist", - "_stars": 1045, - "_forks": 185, - "_watches": 46, + "_homepage": "", + "_description": "yappi: Yet Another Python Profiler, but this time multithreading, asyncio and gevent aware.", + "_organization": "sumerc", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2009-10-07T00:00:00.000Z", + "_age_weeks": 698, + "_stars_per_week": 1.54, "_topics": [ - "hacktoberfest", - "pytest", - "pytest-plugin" + "profilers", + "multi-threaded-applications", + "coroutine", + "asynchronous", + "python", + "asyncio", + "performance", + "profile", + "asgi", + "cpu", + "thread", + "gevent", + "greenlet", + "multithreading" ], - "_language": "Python", - "_homepage": "https://pytest-xdist.readthedocs.io", - "_description": "pytest-xdist: pytest plugin for distributed testing and loop-on-failures testing modes. ", - "_organization": "pytest-dev", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2015-09-01T00:00:00.000Z", - "_age_weeks": 380, - "_stars_per_week": 2.74, - "_pop_contributor_count": 86, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-11-25T00:00:00.000Z", + "_pop_contributor_count": 28, + "_pop_contributor_logins": [ + "Suhail-MOHD@nutanix", + "ajdavis@mongodb", + "alioguzhan@telostat", + "dependabot[bot]", + "devxpy@dara.network", + "frohoff", + "gaborbernat@bloomberglp", + "nirs@ibm", + "orivej", + "sumerc" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "esss", - "merlinux", - "nordsoftware", - "redhatinsights" + "bloomberglp", + "dara.network", + "ibm", + "mongodb", + "nutanix", + "telostat" + ], + "_pop_contributor_orgs_raw": [ + "@mongodb ", + "@telostat", + "Bloomberg LP", + "IBM", + "Nutanix", + "dara.network" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.25, - "_pop_updated_issues_count": 56, - "_pop_closed_issues_count": 37, - "_pop_created_since_days": 89, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 56.0, - "_pop_comment_count": 128.0, + "_pop_commit_frequency": 0.65, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 163, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 9.0, + "_pop_comment_count": 7.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.3, - "_pop_dependents_count": 1467, - "_pop_score": 60.02, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pytest-dev/pytest-xdist/master/README.rst", - "_readme_localurl": "pytest-dev~pytest-xdist~README.rst", + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 35.35, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/sumerc/yappi/master/README.md", + "_readme_localurl": "sumerc~yappi~README.md", "_requirements_filenames": [ + "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pytest-dev/pytest-xdist/master/pyproject.toml" + "https://raw.githubusercontent.com/sumerc/yappi/master/setup.py", + "https://raw.githubusercontent.com/sumerc/yappi/master/pyproject.toml" ], "_requirements_localurls": [ - "pytest-dev~pytest-xdist~pyproject.toml" + "sumerc~yappi~setup.py", + "sumerc~yappi~pyproject.toml" ] }, { - "index": 666, - "category": "ml", - "githuburl": "https://github.com/huggingface/evaluate", + "index": 580, + "category": "util", + "githuburl": "https://github.com/lidatong/dataclasses-json", "featured": null, "links": null, "description": null, - "_repopath": "huggingface/evaluate", - "_reponame": "evaluate", - "_stars": 1038, - "_forks": 85, - "_watches": 39, + "_repopath": "lidatong/dataclasses-json", + "_reponame": "dataclasses-json", + "_stars": 1072, + "_forks": 119, + "_watches": 10, + "_language": "Python", + "_homepage": "", + "_description": "dataclasses-json: Easily serialize Data Classes to and from JSON", + "_organization": "lidatong", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-04-21T00:00:00.000Z", + "_age_weeks": 252, + "_stars_per_week": 4.24, "_topics": [ - "evaluation", - "machine-learning" + "dataclasses", + "json", + "python" + ], + "_last_commit_date": "2022-08-14T00:00:00.000Z", + "_pop_contributor_count": 46, + "_pop_contributor_logins": [ + "FaraSeer@yadro", + "Glandos", + "HappyTreeBeard", + "RunOrVeith", + "USSX-Hares", + "askogvold@microsoft", + "fabaff", + "lidatong", + "r-richmond", + "rakanalh" ], - "_language": "Python", - "_homepage": "https://huggingface.co/docs/evaluate", - "_description": "\ud83e\udd17 Evaluate: A library for easily evaluating machine learning models and datasets.", - "_organization": "huggingface", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2022-03-30T00:00:00.000Z", - "_age_weeks": 37, - "_stars_per_week": 27.52, - "_pop_contributor_count": 111, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "huggingface", - "huggingfaceaiinnova" + "microsoft", + "yadro" + ], + "_pop_contributor_orgs_raw": [ + "@yadro", + "Microsoft" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 8.37, - "_pop_updated_issues_count": 117, - "_pop_closed_issues_count": 82, - "_pop_created_since_days": 9, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 8, - "_pop_recent_releases_estimated_tags": 11, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 117.0, - "_pop_comment_count": 290.0, + "_pop_commit_frequency": 0.12, + "_pop_updated_issues_count": 23, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 59, + "_pop_updated_since_days": 6, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 23.0, + "_pop_comment_count": 15.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 644, - "_pop_score": 55.07, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 27.65, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/huggingface/evaluate/master/README.md", - "_readme_localurl": "huggingface~evaluate~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/lidatong/dataclasses-json/master/README.md", + "_readme_localurl": "lidatong~dataclasses-json~README.md", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml", + "Pipfile" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/huggingface/evaluate/master/setup.py" + "https://raw.githubusercontent.com/lidatong/dataclasses-json/master/setup.py", + "https://raw.githubusercontent.com/lidatong/dataclasses-json/master/pyproject.toml", + "https://raw.githubusercontent.com/lidatong/dataclasses-json/master/Pipfile" ], "_requirements_localurls": [ - "huggingface~evaluate~setup.py" + "lidatong~dataclasses-json~setup.py", + "lidatong~dataclasses-json~pyproject.toml", + "lidatong~dataclasses-json~Pipfile" ] }, { @@ -38810,9 +53583,17 @@ "description": null, "_repopath": "awslabs/dgl-ke", "_reponame": "dgl-ke", - "_stars": 1035, - "_forks": 176, + "_stars": 1068, + "_forks": 182, "_watches": 23, + "_language": "Python", + "_homepage": "https://dglke.dgl.ai/doc/", + "_description": "dgl-ke: High performance, easy-to-use, and scalable package for learning large-scale knowledge graph embeddings.", + "_organization": "awslabs", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-03-03T00:00:00.000Z", + "_age_weeks": 155, + "_stars_per_week": 6.88, "_topics": [ "machine-learning", "knowledge-graph", @@ -38820,38 +53601,51 @@ "graph-learning", "dgl" ], - "_language": "Python", - "_homepage": "https://dglke.dgl.ai/doc/", - "_description": "dgl-ke: High performance, easy-to-use, and scalable package for learning large-scale knowledge graph embeddings.", - "_organization": "awslabs", - "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-11-18T00:00:00.000Z", - "_created_at": "2020-03-03T00:00:00.000Z", - "_age_weeks": 145, - "_stars_per_week": 7.1, "_pop_contributor_count": 25, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "VoVAllen@tensorchord", + "aksnzhy", + "amazon-auto@amazon", + "classicsong@amazon", + "daikikatsuragawa@japan", + "menjarleev", + "ryantd@kwai", + "sublimotion", + "zby123", + "zheng-da@aws" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "amazon", "aws", - "kwai" + "japan", + "kwai", + "tensorchord" + ], + "_pop_contributor_orgs_raw": [ + "@kwai", + "@tensorchord ", + "AWS", + "Amazon", + "Japan" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.1, - "_pop_updated_issues_count": 16, - "_pop_closed_issues_count": 8, - "_pop_created_since_days": 34, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 0.06, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 36, + "_pop_updated_since_days": 3, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 16.0, - "_pop_comment_count": 20.0, + "_pop_issue_count": 7.0, + "_pop_comment_count": 6.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, + "_pop_comment_frequency": 0.9, "_pop_dependents_count": 0, - "_pop_score": 31.04, + "_pop_score": 29.5, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/awslabs/dgl-ke/master/README.md", "_readme_localurl": "awslabs~dgl-ke~README.md", @@ -38860,61 +53654,248 @@ "_requirements_localurls": [] }, { - "index": 817, - "category": "ml-dl", - "githuburl": "https://github.com/calculatedcontent/weightwatcher", - "featured": null, + "index": 212, + "category": "data", + "githuburl": "https://github.com/sfu-db/connector-x", + "featured": 1.0, "links": null, "description": null, - "_repopath": "calculatedcontent/weightwatcher", - "_reponame": "WeightWatcher", - "_stars": 1033, - "_forks": 94, - "_watches": 29, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "WeightWatcher: The WeightWatcher tool for predicting the accuracy of Deep Neural Networks", - "_organization": "calculatedcontent", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2018-11-28T00:00:00.000Z", - "_age_weeks": 211, - "_stars_per_week": 4.88, - "_pop_contributor_count": 7, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_repopath": "sfu-db/connector-x", + "_reponame": "connector-x", + "_stars": 1063, + "_forks": 77, + "_watches": 24, + "_language": "Rust", + "_homepage": "https://sfu-db.github.io/connector-x/intro.html", + "_description": "connector-x: Fastest library to load data from DB to DataFrames in Rust and Python", + "_organization": "sfu-db", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-01-13T00:00:00.000Z", + "_age_weeks": 110, + "_stars_per_week": 9.66, + "_topics": [ + "rust", + "python", + "database", + "sql", + "dataframe" + ], + "_last_commit_date": "2023-02-10T00:00:00.000Z", + "_pop_contributor_count": 30, + "_pop_contributor_logins": [ + "Wukkkinz-0725", + "Yizhou150", + "alswang18", + "auyer@estrategiaeducacional", + "dovahcrow@sfu-db", + "gruuya@splitgraph", + "jinzew", + "lBilali", + "wangxiaoying@sfu-db", + "wseaton@redhatofficial" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "calculationconsulting", - "etalab", - "ozminerals" + "estrategiaeducacional", + "redhatofficial", + "sfu-db", + "splitgraph" + ], + "_pop_contributor_orgs_raw": [ + "@RedHatOfficial", + "@sfu-db ", + "Estrategia Educacional", + "Splitgraph" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.88, - "_pop_updated_issues_count": 66, - "_pop_closed_issues_count": 55, - "_pop_created_since_days": 49, + "_pop_commit_frequency": 5.58, + "_pop_updated_issues_count": 57, + "_pop_closed_issues_count": 12, + "_pop_created_since_days": 26, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 66.0, - "_pop_comment_count": 107.0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 57.0, + "_pop_comment_count": 85.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 24, - "_pop_score": 41.91, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 40.01, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/calculatedcontent/weightwatcher/master/README.md", - "_readme_localurl": "calculatedcontent~weightwatcher~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/sfu-db/connector-x/master/README.md", + "_readme_localurl": "sfu-db~connector-x~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 449, + "category": "gis", + "githuburl": "https://github.com/residentmario/geoplot", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "residentmario/geoplot", + "_reponame": "geoplot", + "_stars": 1050, + "_forks": 91, + "_watches": 35, + "_language": "Python", + "_homepage": "https://residentmario.github.io/geoplot/index.html", + "_description": "geoplot: High-level geospatial data visualization library for Python.", + "_organization": "residentmario", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2016-06-29T00:00:00.000Z", + "_age_weeks": 347, + "_stars_per_week": 3.03, + "_topics": [ + "geospatial-visualization", + "geospatial-data", + "matplotlib", + "geopandas", + "spatial-analysis" + ], + "_last_commit_date": "2022-03-18T00:00:00.000Z", + "_pop_contributor_count": 5, + "_pop_contributor_logins": [ + "QuLogic", + "ResidentMario", + "akarve@quiltdata", + "lmmarsano", + "martinfleis" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "quiltdata" + ], + "_pop_contributor_orgs_raw": [ + "@QuiltData" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.21, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 81, + "_pop_updated_since_days": 11, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 3.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 16.31, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/residentmario/geoplot/master/README.md", + "_readme_localurl": "residentmario~geoplot~README.md", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/calculatedcontent/weightwatcher/master/setup.py" + "https://raw.githubusercontent.com/residentmario/geoplot/master/setup.py" ], "_requirements_localurls": [ - "calculatedcontent~weightwatcher~setup.py" + "residentmario~geoplot~setup.py" + ] + }, + { + "index": 447, + "category": "ml", + "githuburl": "https://github.com/csinva/imodels", + "featured": null, + "links": null, + "description": null, + "_repopath": "csinva/imodels", + "_reponame": "imodels", + "_stars": 1045, + "_forks": 97, + "_watches": 24, + "_language": "Jupyter Notebook", + "_homepage": "https://csinva.io/imodels", + "_description": "imodels: Interpretable ML package \ud83d\udd0d for concise, transparent, and accurate predictive modeling (sklearn-compatible).", + "_organization": "csinva", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-07-04T00:00:00.000Z", + "_age_weeks": 189, + "_stars_per_week": 5.5, + "_topics": [ + "interpretability", + "machine-learning", + "data-science", + "artificial-intelligence", + "ml", + "ai", + "statistics", + "scikit-learn", + "python", + "optimal-classification-tree", + "rulefit", + "imodels", + "rule-learning", + "supervised-learning", + "explainable-ml", + "explainable-ai", + "rules", + "bayesian-rule-list" + ], + "_last_commit_date": "2023-02-12T00:00:00.000Z", + "_pop_contributor_count": 15, + "_pop_contributor_logins": [ + "OmerRonen", + "aagarwal1996", + "bachsh@authomize", + "csinva@seniorresearcher", + "keyan3@berkeleyairesearchlab", + "mepland", + "sms1097", + "thewchan", + "tiffanymtang@universityofcalifornia,berkeley", + "yanshuotan" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "authomize", + "berkeleyairesearchlab", + "seniorresearcher", + "universityofcalifornia,berkeley" + ], + "_pop_contributor_orgs_raw": [ + "@authomize ", + "Berkeley AI Research Lab", + "Senior researcher", + "University of California, Berkeley" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.81, + "_pop_updated_issues_count": 26, + "_pop_closed_issues_count": 20, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 26.0, + "_pop_comment_count": 55.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 0, + "_pop_score": 40.63, + "_readme_filename": "readme.md", + "_readme_giturl": "https://raw.githubusercontent.com/csinva/imodels/master/readme.md", + "_readme_localurl": "csinva~imodels~readme.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/csinva/imodels/master/setup.py" + ], + "_requirements_localurls": [ + "csinva~imodels~setup.py" ] }, { @@ -38926,47 +53907,70 @@ "description": null, "_repopath": "metachris/logzero", "_reponame": "logzero", - "_stars": 1033, - "_forks": 70, + "_stars": 1030, + "_forks": 69, "_watches": 26, + "_language": "Python", + "_homepage": "https://logzero.readthedocs.io", + "_description": "logzero: Robust and effective logging for Python 2 and 3.", + "_organization": "metachris", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2017-06-12T00:00:00.000Z", + "_age_weeks": 297, + "_stars_per_week": 3.46, "_topics": [ "python", "logging", "logzero", "logfiles" ], - "_language": "Python", - "_homepage": "https://logzero.readthedocs.io", - "_description": "logzero: Robust and effective logging for Python 2 and 3.", - "_organization": "metachris", - "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2021-03-17T00:00:00.000Z", - "_created_at": "2017-06-12T00:00:00.000Z", - "_age_weeks": 288, - "_stars_per_week": 3.59, "_pop_contributor_count": 12, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_pop_contributor_logins": [ + "SitiSchu@mojurasu", + "carlodri", + "christianscott@canva", + "davidhuser@baosystems", + "delirious-lettuce", + "dmartin35", + "lumbric", + "metachris@flashbots", + "pyup-bot@pyupio", + "sebix@instituteforcommongoodtechnology" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "baosystems", "canva", "flashbots", + "instituteforcommongoodtechnology", + "mojurasu", "pyupio" ], + "_pop_contributor_orgs_raw": [ + "@Canva", + "@Mojurasu ", + "@baosystems", + "@pyupio", + "Flashbots", + "Institute for Common Good Technology" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 17, - "_pop_closed_issues_count": 11, - "_pop_created_since_days": 67, - "_pop_updated_since_days": 21, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 69, + "_pop_updated_since_days": 24, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 17.0, - "_pop_comment_count": 11.0, + "_pop_issue_count": 5.0, + "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 4, - "_pop_score": 27.72, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 25.26, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/metachris/logzero/master/README.md", "_readme_localurl": "metachris~logzero~README.md", @@ -38981,209 +53985,418 @@ ] }, { - "index": 654, - "category": "profiling", - "githuburl": "https://github.com/sumerc/yappi", + "index": 444, + "category": "gis", + "githuburl": "https://github.com/toblerity/fiona", "featured": null, "links": null, "description": null, - "_repopath": "sumerc/yappi", - "_reponame": "yappi", - "_stars": 1031, - "_forks": 57, - "_watches": 13, + "_repopath": "toblerity/fiona", + "_reponame": "Fiona", + "_stars": 1017, + "_forks": 196, + "_watches": 48, + "_language": "Python", + "_homepage": "https://fiona.readthedocs.io/", + "_description": "Fiona reads and writes geographic data files", + "_organization": "toblerity", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2011-12-31T00:00:00.000Z", + "_age_weeks": 581, + "_stars_per_week": 1.75, "_topics": [ - "profilers", - "multi-threaded-applications", - "coroutine", - "asynchronous", "python", + "gis", + "vector", + "gdal", + "ogr", + "cli", + "cython" + ], + "_last_commit_date": "2023-02-10T00:00:00.000Z", + "_pop_contributor_count": 66, + "_pop_contributor_logins": [ + "QuLogic", + "geowurster", + "lordi", + "micahcochran", + "mwtoews@gnsscience", + "perrygeo", + "rbuffat", + "sgillies@planetlabs", + "snorfalorpagus", + "snowman2@corteva" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "corteva", + "gnsscience", + "planetlabs" + ], + "_pop_contributor_orgs_raw": [ + "@corteva ", + "@planetlabs", + "GNS Science" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.56, + "_pop_updated_issues_count": 110, + "_pop_closed_issues_count": 89, + "_pop_created_since_days": 136, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 110.0, + "_pop_comment_count": 126.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 45.21, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/toblerity/fiona/master/README.rst", + "_readme_localurl": "toblerity~fiona~README.rst", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/toblerity/fiona/master/requirements.txt", + "https://raw.githubusercontent.com/toblerity/fiona/master/setup.py", + "https://raw.githubusercontent.com/toblerity/fiona/master/pyproject.toml" + ], + "_requirements_localurls": [ + "toblerity~fiona~requirements.txt", + "toblerity~fiona~setup.py", + "toblerity~fiona~pyproject.toml" + ] + }, + { + "index": 950, + "category": "web", + "githuburl": "https://github.com/awtkns/fastapi-crudrouter", + "featured": null, + "links": null, + "description": null, + "_repopath": "awtkns/fastapi-crudrouter", + "_reponame": "fastapi-crudrouter", + "_stars": 1017, + "_forks": 121, + "_watches": 12, + "_language": "Python", + "_homepage": "https://fastapi-crudrouter.awtkns.com", + "_description": "fastapi-crudrouter: A dynamic FastAPI router that automatically creates CRUD routes for your models", + "_organization": "awtkns", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-12-19T00:00:00.000Z", + "_age_weeks": 113, + "_stars_per_week": 8.95, + "_topics": [ + "fastapi", + "code-generation", + "crud", + "api", + "swagger-ui", + "redoc", + "fastapi-crudrouter", + "crud-routes", + "rest", + "web", + "python", + "python3", + "sql", + "framework", + "async", "asyncio", - "performance", - "profile", - "asgi", - "cpu", - "thread", - "gevent", - "greenlet", - "multithreading" + "openapi-route", + "openapi" + ], + "_last_commit_date": "2023-01-28T00:00:00.000Z", + "_pop_contributor_count": 21, + "_pop_contributor_logins": [ + "DorskFR", + "agallant", + "andreipopovici", + "andrewthetechie", + "awtkns@article", + "collerek@kaizentech", + "dclimber", + "jm-moreau@anjuna", + "sondrelg@otovosnok", + "turalpb" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "anjuna", + "article", + "kaizentech", + "otovosnok" + ], + "_pop_contributor_orgs_raw": [ + "@otovo @snok", + "Anjuna", + "Article", + "KaizenTech" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.75, + "_pop_updated_issues_count": 19, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 26, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 19.0, + "_pop_comment_count": 21.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 31.66, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/awtkns/fastapi-crudrouter/master/README.md", + "_readme_localurl": "awtkns~fastapi-crudrouter~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/awtkns/fastapi-crudrouter/master/requirements.txt", + "https://raw.githubusercontent.com/awtkns/fastapi-crudrouter/master/setup.py" + ], + "_requirements_localurls": [ + "awtkns~fastapi-crudrouter~requirements.txt", + "awtkns~fastapi-crudrouter~setup.py" + ] + }, + { + "index": 707, + "category": "util", + "githuburl": "https://github.com/brandon-rhodes/python-patterns", + "featured": null, + "links": null, + "description": null, + "_repopath": "brandon-rhodes/python-patterns", + "_reponame": "python-patterns", + "_stars": 1015, + "_forks": 93, + "_watches": 254, "_language": "Python", - "_homepage": "", - "_description": "yappi: Yet Another Python Profiler, but this time multithreading, asyncio and gevent aware.", - "_organization": "sumerc", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-25T00:00:00.000Z", - "_created_at": "2009-10-07T00:00:00.000Z", - "_age_weeks": 688, - "_stars_per_week": 1.5, - "_pop_contributor_count": 28, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_homepage": null, + "_description": "python-patterns: Source code behind the python-patterns.guide site by Brandon Rhodes", + "_organization": "brandon-rhodes", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-01-31T00:00:00.000Z", + "_age_weeks": 264, + "_stars_per_week": 3.84, + "_topics": [], + "_last_commit_date": "2021-01-05T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "ReblochonMasque", + "brandon-rhodes", + "donkirkby@bccentreforexcellenceinhiv/aids", + "ethmcc" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "dara.network", - "mongodb", - "nutanix", - "redhat" + "bccentreforexcellenceinhiv/aids" + ], + "_pop_contributor_orgs_raw": [ + "BC Centre for Excellence in HIV/AIDS" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.65, - "_pop_updated_issues_count": 11, - "_pop_closed_issues_count": 8, - "_pop_created_since_days": 161, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 2, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 62, + "_pop_updated_since_days": 26, + "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 11.0, - "_pop_comment_count": 13.0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 404, - "_pop_score": 47.42, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 9.93, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/sumerc/yappi/master/README.md", - "_readme_localurl": "sumerc~yappi~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/brandon-rhodes/python-patterns/master/README.md", + "_readme_localurl": "brandon-rhodes~python-patterns~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/sumerc/yappi/master/setup.py", - "https://raw.githubusercontent.com/sumerc/yappi/master/pyproject.toml" + "https://raw.githubusercontent.com/brandon-rhodes/python-patterns/master/requirements.txt" ], "_requirements_localurls": [ - "sumerc~yappi~setup.py", - "sumerc~yappi~pyproject.toml" + "brandon-rhodes~python-patterns~requirements.txt" ] }, { - "index": 449, - "category": "gis", - "githuburl": "https://github.com/residentmario/geoplot", - "featured": 1.0, + "index": 406, + "category": "perf", + "githuburl": "https://github.com/pympler/pympler", + "featured": null, "links": null, "description": null, - "_repopath": "residentmario/geoplot", - "_reponame": "geoplot", - "_stars": 1029, - "_forks": 90, - "_watches": 35, - "_topics": [ - "geospatial-visualization", - "geospatial-data", - "matplotlib", - "geopandas", - "spatial-analysis" - ], + "_repopath": "pympler/pympler", + "_reponame": "pympler", + "_stars": 1009, + "_forks": 82, + "_watches": 10, "_language": "Python", - "_homepage": "https://residentmario.github.io/geoplot/index.html", - "_description": "geoplot: High-level geospatial data visualization library for Python.", - "_organization": "residentmario", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-03-18T00:00:00.000Z", - "_created_at": "2016-06-29T00:00:00.000Z", - "_age_weeks": 337, - "_stars_per_week": 3.05, - "_pop_contributor_count": 5, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": null, + "_description": "pympler: Development tool to measure, monitor and analyze the memory behavior of Python objects in a running Python application.", + "_organization": "pympler", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-10-04T00:00:00.000Z", + "_age_weeks": 541, + "_stars_per_week": 1.86, + "_topics": [], + "_last_commit_date": "2022-07-24T00:00:00.000Z", + "_pop_contributor_count": 29, + "_pop_contributor_logins": [ + "Pankrat@ableton", + "benjyw@toolchain", + "cjwatson", + "deemoowoor@finceptiv", + "dsuch@zatosource", + "gbtami", + "jwilk", + "mrJean1", + "thedrow", + "tirkarthi@visa" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "quiltdata", - "udl-ai" + "ableton", + "finceptiv", + "toolchain", + "visa", + "zatosource" + ], + "_pop_contributor_orgs_raw": [ + "@finceptiv ", + "@zatosource", + "Ableton", + "Toolchain", + "Visa Inc." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.31, - "_pop_updated_issues_count": 3, + "_pop_commit_frequency": 0.08, + "_pop_updated_issues_count": 4, "_pop_closed_issues_count": 1, - "_pop_created_since_days": 79, - "_pop_updated_since_days": 9, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 3, + "_pop_created_since_days": 126, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 3.0, - "_pop_comment_count": 4.0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 5.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 18, - "_pop_score": 28.11, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 31.88, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/residentmario/geoplot/master/README.md", - "_readme_localurl": "residentmario~geoplot~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pympler/pympler/master/README.md", + "_readme_localurl": "pympler~pympler~README.md", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/residentmario/geoplot/master/setup.py" + "https://raw.githubusercontent.com/pympler/pympler/master/setup.py", + "https://raw.githubusercontent.com/pympler/pympler/master/pyproject.toml" ], "_requirements_localurls": [ - "residentmario~geoplot~setup.py" + "pympler~pympler~setup.py", + "pympler~pympler~pyproject.toml" ] }, { - "index": 580, - "category": "util", - "githuburl": "https://github.com/lidatong/dataclasses-json", + "index": 728, + "category": "gis", + "githuburl": "https://github.com/geospatialpython/pyshp", "featured": null, "links": null, "description": null, - "_repopath": "lidatong/dataclasses-json", - "_reponame": "dataclasses-json", - "_stars": 1024, - "_forks": 114, - "_watches": 9, - "_topics": [ - "dataclasses", - "json", - "python" - ], + "_repopath": "geospatialpython/pyshp", + "_reponame": "pyshp", + "_stars": 1006, + "_forks": 260, + "_watches": 64, "_language": "Python", - "_homepage": "", - "_description": "dataclasses-json: Easily serialize Data Classes to and from JSON", - "_organization": "lidatong", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-08-14T00:00:00.000Z", - "_created_at": "2018-04-21T00:00:00.000Z", - "_age_weeks": 243, - "_stars_per_week": 4.21, - "_pop_contributor_count": 46, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_homepage": null, + "_description": "pyshp: This library reads and writes ESRI Shapefiles in pure Python.", + "_organization": "geospatialpython", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2014-03-04T00:00:00.000Z", + "_age_weeks": 468, + "_stars_per_week": 2.15, + "_topics": [], + "_last_commit_date": "2023-02-02T00:00:00.000Z", + "_pop_contributor_count": 42, + "_pop_contributor_logins": [ + "GeospatialPython@geospatialpython.com", + "ignamv", + "jmoujaes", + "karimbahgat", + "megies", + "micahcochran", + "mwtoews@gnsscience", + "pemn@valesa", + "riggsd@nationalparkservice", + "sebastic" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "quantenna" + "geospatialpython.com", + "gnsscience", + "nationalparkservice", + "valesa" + ], + "_pop_contributor_orgs_raw": [ + "@nationalparkservice ", + "GNS Science", + "GeospatialPython.com", + "Vale SA" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.13, - "_pop_updated_issues_count": 35, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 57, - "_pop_updated_since_days": 4, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 14, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 35.0, - "_pop_comment_count": 18.0, + "_pop_commit_frequency": 0.37, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 109, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 4.0, + "_pop_comment_count": 5.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 172, - "_pop_score": 36.04, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 35.07, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/lidatong/dataclasses-json/master/README.md", - "_readme_localurl": "lidatong~dataclasses-json~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/geospatialpython/pyshp/master/README.md", + "_readme_localurl": "geospatialpython~pyshp~README.md", "_requirements_filenames": [ "setup.py", - "pyproject.toml", - "Pipfile" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/lidatong/dataclasses-json/master/setup.py", - "https://raw.githubusercontent.com/lidatong/dataclasses-json/master/pyproject.toml", - "https://raw.githubusercontent.com/lidatong/dataclasses-json/master/Pipfile" + "https://raw.githubusercontent.com/geospatialpython/pyshp/master/setup.py", + "https://raw.githubusercontent.com/geospatialpython/pyshp/master/pyproject.toml" ], "_requirements_localurls": [ - "lidatong~dataclasses-json~setup.py", - "lidatong~dataclasses-json~pyproject.toml", - "lidatong~dataclasses-json~Pipfile" + "geospatialpython~pyshp~setup.py", + "geospatialpython~pyshp~pyproject.toml" ] }, { @@ -39195,9 +54408,17 @@ "description": null, "_repopath": "uber/fiber", "_reponame": "fiber", - "_stars": 995, + "_stars": 1002, "_forks": 113, - "_watches": 21, + "_watches": 22, + "_language": "Python", + "_homepage": "https://uber.github.io/fiber/", + "_description": "fiber: Distributed Computing for AI Made Simple", + "_organization": "uber", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2020-01-07T00:00:00.000Z", + "_age_weeks": 163, + "_stars_per_week": 6.14, "_topics": [ "python", "distributed-computing", @@ -39205,38 +54426,42 @@ "sandbox", "machine-learning" ], - "_language": "Python", - "_homepage": "https://uber.github.io/fiber/", - "_description": "fiber: Distributed Computing for AI Made Simple", - "_organization": "uber", - "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2021-03-15T00:00:00.000Z", - "_created_at": "2020-01-07T00:00:00.000Z", - "_age_weeks": 153, - "_stars_per_week": 6.47, "_pop_contributor_count": 5, + "_pop_contributor_logins": [ + "agrimrules@litesgroup", + "calio", + "danilopeixoto@delltechnologies", + "jimjag", + "rongou@nvidia" + ], "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "delltechnologies", "litesgroup", "nvidia" ], + "_pop_contributor_orgs_raw": [ + "@LitesGroup ", + "@NVIDIA", + "Dell Technologies" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 3, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 36, - "_pop_updated_since_days": 21, + "_pop_created_since_days": 38, + "_pop_updated_since_days": 24, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, "_pop_issue_count": 3.0, - "_pop_comment_count": 0.0, + "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 3, - "_pop_score": 17.71, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 17.29, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/uber/fiber/master/README.md", "_readme_localurl": "uber~fiber~README.md", @@ -39254,650 +54479,960 @@ ] }, { - "index": 406, - "category": "perf", - "githuburl": "https://github.com/pympler/pympler", + "index": 614, + "category": "testing", + "githuburl": "https://github.com/teemu/pytest-sugar", "featured": null, "links": null, "description": null, - "_repopath": "pympler/pympler", - "_reponame": "pympler", - "_stars": 994, - "_forks": 82, - "_watches": 10, - "_topics": [], + "_repopath": "teemu/pytest-sugar", + "_reponame": "pytest-sugar", + "_stars": 997, + "_forks": 68, + "_watches": 17, "_language": "Python", - "_homepage": null, - "_description": "pympler: Development tool to measure, monitor and analyze the memory behavior of Python objects in a running Python application.", - "_organization": "pympler", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-07-24T00:00:00.000Z", - "_created_at": "2012-10-04T00:00:00.000Z", - "_age_weeks": 532, - "_stars_per_week": 1.87, - "_pop_contributor_count": 29, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": "", + "_description": "pytest-sugar: a plugin for py.test that changes the default look and feel of py.test (e.g. progressbar, show tests that fail instantly)", + "_organization": "teemu", + "_updated_at": "2023-02-16T00:00:00.000Z", + "_created_at": "2013-06-25T00:00:00.000Z", + "_age_weeks": 504, + "_stars_per_week": 1.98, + "_topics": [ + "pytest", + "pytest-sugar", + "python", + "testing", + "pytest-plugin" + ], + "_last_commit_date": "2022-12-11T00:00:00.000Z", + "_pop_contributor_count": 45, + "_pop_contributor_logins": [ + "GuillaumeFavelier@inria", + "Teemu@wolt", + "blueyed@freelancer,upforhire", + "emlove@homechef", + "graingert", + "jpvanhal@falcony-io", + "justinmayer", + "msabramo@adobe", + "or", + "thedrow" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "ableton", - "finceptiv" + "adobe", + "falcony-io", + "freelancer,upforhire", + "homechef", + "inria", + "wolt" + ], + "_pop_contributor_orgs_raw": [ + "@adobe", + "@falcony-io", + "@homechef", + "Freelancer, up for hire", + "INRIA", + "Wolt" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.12, - "_pop_updated_issues_count": 5, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 124, - "_pop_updated_since_days": 5, + "_pop_commit_frequency": 0.81, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 118, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 5.0, - "_pop_comment_count": 8.0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 8.0, + "_pop_comment_count": 18.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 71, - "_pop_score": 37.75, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 0, + "_pop_score": 38.96, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pympler/pympler/master/README.md", - "_readme_localurl": "pympler~pympler~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/teemu/pytest-sugar/master/README.md", + "_readme_localurl": "teemu~pytest-sugar~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pympler/pympler/master/setup.py", - "https://raw.githubusercontent.com/pympler/pympler/master/pyproject.toml" + "https://raw.githubusercontent.com/teemu/pytest-sugar/master/setup.py" ], "_requirements_localurls": [ - "pympler~pympler~setup.py", - "pympler~pympler~pyproject.toml" + "teemu~pytest-sugar~setup.py" ] }, { - "index": 728, - "category": "gis", - "githuburl": "https://github.com/geospatialpython/pyshp", + "index": 739, + "category": "pandas", + "githuburl": "https://github.com/machow/siuba", "featured": null, "links": null, "description": null, - "_repopath": "geospatialpython/pyshp", - "_reponame": "pyshp", - "_stars": 987, - "_forks": 258, - "_watches": 64, - "_topics": [], + "_repopath": "machow/siuba", + "_reponame": "siuba", + "_stars": 995, + "_forks": 42, + "_watches": 21, "_language": "Python", - "_homepage": null, - "_description": "pyshp: This library reads and writes ESRI Shapefiles in pure Python.", - "_organization": "geospatialpython", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-07-28T00:00:00.000Z", - "_created_at": "2014-03-04T00:00:00.000Z", - "_age_weeks": 458, - "_stars_per_week": 2.15, - "_pop_contributor_count": 42, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://siuba.org", + "_description": "siuba: Python library for using dplyr like syntax with pandas and SQL", + "_organization": "machow", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2019-02-09T00:00:00.000Z", + "_age_weeks": 210, + "_stars_per_week": 4.73, + "_topics": [ + "data-analysis", + "python", + "pandas", + "sql", + "dplyr" + ], + "_last_commit_date": "2022-11-16T00:00:00.000Z", + "_pop_contributor_count": 10, + "_pop_contributor_logins": [ + "bakera81", + "breichholf", + "dependabot[bot]", + "isabelizimm@rstudio", + "ismayc@flatiron-school", + "kianmeng", + "kirillseva", + "machow@rstudio", + "sethvargo@google", + "tmastny" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "geospatialpython.com" + "flatiron-school", + "google", + "rstudio" + ], + "_pop_contributor_orgs_raw": [ + "@Google", + "@flatiron-school", + "@rstudio" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.92, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 107, - "_pop_updated_since_days": 5, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 4.0, - "_pop_comment_count": 2.0, + "_pop_commit_frequency": 2.79, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 12.0, + "_pop_comment_count": 20.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 107, - "_pop_score": 36.17, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 32.91, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/geospatialpython/pyshp/master/README.md", - "_readme_localurl": "geospatialpython~pyshp~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/machow/siuba/master/README.md", + "_readme_localurl": "machow~siuba~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/geospatialpython/pyshp/master/setup.py", - "https://raw.githubusercontent.com/geospatialpython/pyshp/master/pyproject.toml" + "https://raw.githubusercontent.com/machow/siuba/master/requirements.txt", + "https://raw.githubusercontent.com/machow/siuba/master/setup.py" ], "_requirements_localurls": [ - "geospatialpython~pyshp~setup.py", - "geospatialpython~pyshp~pyproject.toml" + "machow~siuba~requirements.txt", + "machow~siuba~setup.py" ] }, { - "index": 444, - "category": "gis", - "githuburl": "https://github.com/toblerity/fiona", + "index": 740, + "category": "ml", + "githuburl": "https://github.com/koaning/scikit-lego", "featured": null, "links": null, "description": null, - "_repopath": "toblerity/fiona", - "_reponame": "Fiona", - "_stars": 983, - "_forks": 190, - "_watches": 49, + "_repopath": "koaning/scikit-lego", + "_reponame": "scikit-lego", + "_stars": 974, + "_forks": 101, + "_watches": 19, + "_language": "Python", + "_homepage": "https://scikit-lego.netlify.app", + "_description": "scikit-lego: Extra blocks for scikit-learn pipelines.", + "_organization": "koaning", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2019-01-21T00:00:00.000Z", + "_age_weeks": 213, + "_stars_per_week": 4.57, "_topics": [ - "python", - "gis", - "vector", - "gdal", - "ogr", - "cli", - "cython" + "scikit-learn", + "machine-learning", + "common-sense" ], + "_last_commit_date": "2022-12-21T00:00:00.000Z", + "_pop_contributor_count": 56, + "_pop_contributor_logins": [ + "Garve", + "MBrouns@xcceleratedpydataamsterdam", + "Pverheijen@hollandstartup", + "arthurpaulino@yatimainc", + "daimonie", + "koaning@explosion", + "ktiamur", + "maxibor@maxplanckinstituteforevolutionaryanthropology", + "pim-hoeven", + "stephanecollot@m-gate" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "explosion", + "hollandstartup", + "m-gate", + "maxplanckinstituteforevolutionaryanthropology", + "xcceleratedpydataamsterdam", + "yatimainc" + ], + "_pop_contributor_orgs_raw": [ + "@Xccelerated @PyDataAmsterdam ", + "@explosion", + "Holland Startup", + "M-GaTE", + "Max Planck institute for Evolutionary Anthropology", + "Yatima Inc" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.5, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 50, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 8.0, + "_pop_comment_count": 32.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 4.0, + "_pop_dependents_count": 0, + "_pop_score": 41.01, + "_readme_filename": "readme.md", + "_readme_giturl": "https://raw.githubusercontent.com/koaning/scikit-lego/master/readme.md", + "_readme_localurl": "koaning~scikit-lego~readme.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/koaning/scikit-lego/master/setup.py" + ], + "_requirements_localurls": [ + "koaning~scikit-lego~setup.py" + ] + }, + { + "index": 631, + "category": "util", + "githuburl": "https://github.com/pyca/bcrypt", + "featured": null, + "links": null, + "description": null, + "_repopath": "pyca/bcrypt", + "_reponame": "bcrypt", + "_stars": 972, + "_forks": 135, + "_watches": 28, "_language": "Python", - "_homepage": "https://fiona.readthedocs.io/", - "_description": "Fiona reads and writes geographic data files", - "_organization": "toblerity", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2011-12-31T00:00:00.000Z", - "_age_weeks": 572, - "_stars_per_week": 1.72, - "_pop_contributor_count": 64, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": "", + "_description": "bcrypt: Modern(-ish) password hashing for your software and your servers", + "_organization": "pyca", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2013-05-11T00:00:00.000Z", + "_age_weeks": 510, + "_stars_per_week": 1.9, + "_topics": [ + "python" + ], + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 31, + "_pop_contributor_logins": [ + "alex", + "bsoyka", + "chris-erickson", + "dependabot[bot]", + "dstufft@datadog", + "jazzyb", + "jdufresne@pioneervalleybooks", + "odidev@puresoftware", + "reaperhulk", + "webknjaz@ansiblecoreredhatofficial" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "gnsscience", - "planetlabs" + "ansiblecoreredhatofficial", + "datadog", + "pioneervalleybooks", + "puresoftware" + ], + "_pop_contributor_orgs_raw": [ + "@Ansible Core @ @RedHatOfficial", + "@DataDog", + "Pioneer Valley Books", + "Puresoftware" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.4, - "_pop_updated_issues_count": 58, - "_pop_closed_issues_count": 42, - "_pop_created_since_days": 134, + "_pop_commit_frequency": 3.31, + "_pop_updated_issues_count": 56, + "_pop_closed_issues_count": 56, + "_pop_created_since_days": 119, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 58.0, - "_pop_comment_count": 109.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 56.0, + "_pop_comment_count": 21.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.9, - "_pop_dependents_count": 115, - "_pop_score": 52.11, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 40.68, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/toblerity/fiona/master/README.rst", - "_readme_localurl": "toblerity~fiona~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pyca/bcrypt/master/README.rst", + "_readme_localurl": "pyca~bcrypt~README.rst", "_requirements_filenames": [ "requirements.txt", "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/toblerity/fiona/master/requirements.txt", - "https://raw.githubusercontent.com/toblerity/fiona/master/setup.py", - "https://raw.githubusercontent.com/toblerity/fiona/master/pyproject.toml" + "https://raw.githubusercontent.com/pyca/bcrypt/master/requirements.txt", + "https://raw.githubusercontent.com/pyca/bcrypt/master/setup.py", + "https://raw.githubusercontent.com/pyca/bcrypt/master/pyproject.toml" ], "_requirements_localurls": [ - "toblerity~fiona~requirements.txt", - "toblerity~fiona~setup.py", - "toblerity~fiona~pyproject.toml" + "pyca~bcrypt~requirements.txt", + "pyca~bcrypt~setup.py", + "pyca~bcrypt~pyproject.toml" ] }, { - "index": 739, - "category": "pandas", - "githuburl": "https://github.com/machow/siuba", + "index": 482, + "category": "gis", + "githuburl": "https://github.com/sentinel-hub/eo-learn", "featured": null, "links": null, "description": null, - "_repopath": "machow/siuba", - "_reponame": "siuba", - "_stars": 975, - "_forks": 40, - "_watches": 20, + "_repopath": "sentinel-hub/eo-learn", + "_reponame": "eo-learn", + "_stars": 971, + "_forks": 280, + "_watches": 48, + "_language": "Python", + "_homepage": null, + "_description": "eo-learn: Earth observation processing framework for machine learning in Python", + "_organization": "sentinel-hub", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-05-31T00:00:00.000Z", + "_age_weeks": 246, + "_stars_per_week": 3.93, "_topics": [ - "data-analysis", - "python", - "pandas", - "sql", - "dplyr" + "machine-learning", + "eo-data", + "eo-research", + "python-package" ], - "_language": "Python", - "_homepage": "https://siuba.org", - "_description": "siuba: Python library for using dplyr like syntax with pandas and SQL", - "_organization": "machow", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-11-16T00:00:00.000Z", - "_created_at": "2019-02-09T00:00:00.000Z", - "_age_weeks": 201, - "_stars_per_week": 4.84, - "_pop_contributor_count": 10, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-01-24T00:00:00.000Z", + "_pop_contributor_count": 50, + "_pop_contributor_logins": [ + "AleksMat@google", + "andrejburja", + "batic@sinergise", + "devisperessutti@sinergisesentinel-hub", + "iovsn", + "lojzezust", + "mlubej@eoresearchteamsinergise", + "tomislijepcevic", + "wouellette@https://soilwatch.eu", + "zigaLuksic@sinergise" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "flatiron-school", - "rstudio" + "eoresearchteamsinergise", + "google", + "https://soilwatch.eu", + "sinergise", + "sinergisesentinel-hub" + ], + "_pop_contributor_orgs_raw": [ + "@sinergise ", + "@sinergise @sentinel-hub ", + "EO Research Team @ Sinergise", + "Google", + "Sinergise", + "https://soilwatch.eu" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.5, - "_pop_updated_issues_count": 46, - "_pop_closed_issues_count": 34, - "_pop_created_since_days": 47, + "_pop_commit_frequency": 3.96, + "_pop_updated_issues_count": 70, + "_pop_closed_issues_count": 61, + "_pop_created_since_days": 58, "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 15, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 15, - "_pop_issue_count": 46.0, - "_pop_comment_count": 39.0, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 70.0, + "_pop_comment_count": 60.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 3, - "_pop_score": 37.41, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 43.48, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/machow/siuba/master/README.md", - "_readme_localurl": "machow~siuba~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/sentinel-hub/eo-learn/master/README.md", + "_readme_localurl": "sentinel-hub~eo-learn~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/machow/siuba/master/requirements.txt", - "https://raw.githubusercontent.com/machow/siuba/master/setup.py" + "https://raw.githubusercontent.com/sentinel-hub/eo-learn/master/setup.py", + "https://raw.githubusercontent.com/sentinel-hub/eo-learn/master/pyproject.toml" ], "_requirements_localurls": [ - "machow~siuba~requirements.txt", - "machow~siuba~setup.py" + "sentinel-hub~eo-learn~setup.py", + "sentinel-hub~eo-learn~pyproject.toml" ] }, { - "index": 447, - "category": "ml", - "githuburl": "https://github.com/csinva/imodels", + "index": 379, + "category": "ml-interpretability", + "githuburl": "https://github.com/cdpierse/transformers-interpret", "featured": null, "links": null, "description": null, - "_repopath": "csinva/imodels", - "_reponame": "imodels", - "_stars": 975, - "_forks": 97, - "_watches": 22, + "_repopath": "cdpierse/transformers-interpret", + "_reponame": "transformers-interpret", + "_stars": 966, + "_forks": 85, + "_watches": 17, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "transformers-interpret: Model explainability that works seamlessly with \ud83e\udd17 transformers. Explain your transformers model in just 2 lines of code. ", + "_organization": "cdpierse", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-05-27T00:00:00.000Z", + "_age_weeks": 143, + "_stars_per_week": 6.76, "_topics": [ - "interpretability", + "nlp", "machine-learning", - "data-science", - "artificial-intelligence", - "ml", - "ai", - "statistics", - "scikit-learn", - "python", - "optimal-classification-tree", - "rulefit", - "imodels", - "rule-learning", - "supervised-learning", - "explainable-ml", + "natural-language-processing", "explainable-ai", - "rules", - "bayesian-rule-list" + "transformers", + "model-explainability", + "transformers-model", + "captum", + "deep-learning", + "neural-network", + "interpretability", + "computer-vision" ], - "_language": "Jupyter Notebook", - "_homepage": "https://csinva.io/imodels", - "_description": "imodels: Interpretable ML package \ud83d\udd0d for concise, transparent, and accurate predictive modeling (sklearn-compatible).", - "_organization": "csinva", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2019-07-04T00:00:00.000Z", - "_age_weeks": 180, - "_stars_per_week": 5.4, - "_pop_contributor_count": 15, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-01-14T00:00:00.000Z", + "_pop_contributor_count": 7, + "_pop_contributor_logins": [ + "Voyz", + "cdpierse@quantcopy", + "cwenner@mavenoid;omnimodular", + "dependabot[bot]", + "lalitpagaria@oraikatechnologies", + "pabvald@dfki/universit\u00e4tdessaarlandes", + "rinapch@exhuman-ai" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "berkeleyairesearchlab", - "seniorresearcher" + "dfki/universit\u00e4tdessaarlandes", + "exhuman-ai", + "mavenoid;omnimodular", + "oraikatechnologies", + "quantcopy" + ], + "_pop_contributor_orgs_raw": [ + "@exhuman-ai ", + "@quantcopy", + "DFKI / Universit\u00e4t des Saarlandes", + "Mavenoid; OmniModular", + "Oraika Technologies" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.0, - "_pop_updated_issues_count": 16, - "_pop_closed_issues_count": 14, - "_pop_created_since_days": 42, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 11, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 16.0, - "_pop_comment_count": 23.0, + "_pop_commit_frequency": 0.85, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 33, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 10.0, + "_pop_comment_count": 16.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 25, - "_pop_score": 42.46, - "_readme_filename": "readme.md", - "_readme_giturl": "https://raw.githubusercontent.com/csinva/imodels/master/readme.md", - "_readme_localurl": "csinva~imodels~readme.md", + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 31.59, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/README.md", + "_readme_localurl": "cdpierse~transformers-interpret~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt", + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/csinva/imodels/master/setup.py" + "https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/requirements.txt", + "https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/setup.py", + "https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/pyproject.toml" ], "_requirements_localurls": [ - "csinva~imodels~setup.py" + "cdpierse~transformers-interpret~requirements.txt", + "cdpierse~transformers-interpret~setup.py", + "cdpierse~transformers-interpret~pyproject.toml" ] }, { - "index": 707, - "category": "util", - "githuburl": "https://github.com/brandon-rhodes/python-patterns", + "index": 271, + "category": "crypto", + "githuburl": "https://github.com/man-c/pycoingecko", "featured": null, "links": null, "description": null, - "_repopath": "brandon-rhodes/python-patterns", - "_reponame": "python-patterns", - "_stars": 972, - "_forks": 88, - "_watches": 247, - "_topics": [], + "_repopath": "man-c/pycoingecko", + "_reponame": "pycoingecko", + "_stars": 962, + "_forks": 257, + "_watches": 33, "_language": "Python", - "_homepage": null, - "_description": "python-patterns: Source code behind the python-patterns.guide site by Brandon Rhodes", - "_organization": "brandon-rhodes", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2021-01-05T00:00:00.000Z", - "_created_at": "2018-01-31T00:00:00.000Z", - "_age_weeks": 254, - "_stars_per_week": 3.82, - "_pop_contributor_count": 4, + "_homepage": "", + "_description": "pycoingecko: Python wrapper for the CoinGecko API", + "_organization": "man-c", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2018-08-24T00:00:00.000Z", + "_age_weeks": 234, + "_stars_per_week": 4.1, + "_topics": [ + "python3", + "api-wrapper", + "api", + "wrapper", + "cryptocurrency", + "crypto", + "coingecko", + "python", + "nft", + "nfts" + ], + "_last_commit_date": "2022-10-26T00:00:00.000Z", + "_pop_contributor_count": 14, + "_pop_contributor_logins": [ + "EmperorMew@snowcone", + "gkrasulya", + "glints", + "hmallen", + "man-c", + "mfiro", + "nejcb1", + "scrambldchannel", + "trevisanj", + "tsifrer" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "bccentreforexcellenceinhiv/aids" + "snowcone" + ], + "_pop_contributor_orgs_raw": [ + "Snowcone " ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 59, - "_pop_updated_since_days": 24, + "_pop_commit_frequency": 0.29, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 4, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 3.0, + "_pop_comment_count": 3.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, + "_pop_comment_frequency": 1.0, "_pop_dependents_count": 0, - "_pop_score": 9.99, + "_pop_score": 24.77, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/brandon-rhodes/python-patterns/master/README.md", - "_readme_localurl": "brandon-rhodes~python-patterns~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/man-c/pycoingecko/master/README.md", + "_readme_localurl": "man-c~pycoingecko~README.md", "_requirements_filenames": [ - "requirements.txt" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/brandon-rhodes/python-patterns/master/requirements.txt" + "https://raw.githubusercontent.com/man-c/pycoingecko/master/setup.py" ], "_requirements_localurls": [ - "brandon-rhodes~python-patterns~requirements.txt" + "man-c~pycoingecko~setup.py" ] }, { - "index": 614, - "category": "testing", - "githuburl": "https://github.com/teemu/pytest-sugar", + "index": 980, + "category": "ml", + "githuburl": "https://github.com/google/vizier", "featured": null, "links": null, "description": null, - "_repopath": "teemu/pytest-sugar", - "_reponame": "pytest-sugar", - "_stars": 961, - "_forks": 68, - "_watches": 17, + "_repopath": "google/vizier", + "_reponame": "vizier", + "_stars": 949, + "_forks": 44, + "_watches": 20, + "_language": "Python", + "_homepage": "https://oss-vizier.readthedocs.io", + "_description": "vizier: Python-based research interface for blackbox and hyperparameter optimization, based on the internal Google Vizier Service.", + "_organization": "google", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-02-16T00:00:00.000Z", + "_age_weeks": 53, + "_stars_per_week": 17.91, "_topics": [ - "pytest", - "pytest-sugar", - "python", - "testing", - "pytest-plugin" + "vizier", + "hyperparameter-optimization", + "tuning", + "tuning-parameters", + "blackbox-optimization", + "hyperparameter-tuning", + "bayesian-optimization", + "evolutionary-algorithms", + "distributed-systems", + "distributed-computing", + "grpc", + "open-source", + "google", + "algorithm", + "deep-learning", + "machine-learning", + "optimization" ], - "_language": "Python", - "_homepage": "", - "_description": "pytest-sugar: a plugin for py.test that changes the default look and feel of py.test (e.g. progressbar, show tests that fail instantly)", - "_organization": "teemu", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-11T00:00:00.000Z", - "_created_at": "2013-06-25T00:00:00.000Z", - "_age_weeks": 494, - "_stars_per_week": 1.94, - "_pop_contributor_count": 45, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 15, + "_pop_contributor_logins": [ + "Ark-kun@google", + "SetarehAr@northeasternuniversity", + "belenkil", + "chansoo-google", + "daiyip", + "emilyfertig", + "qiuyiz@google", + "rchen152", + "sagipe", + "xingyousong@googlebrain" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "adobe", - "falcony-io", - "freelancer,upforhire", - "wolt" + "google", + "googlebrain", + "northeasternuniversity" + ], + "_pop_contributor_orgs_raw": [ + "@google", + "Google", + "Google Brain", + "Northeastern University" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.83, - "_pop_updated_issues_count": 54, - "_pop_closed_issues_count": 48, - "_pop_created_since_days": 115, + "_pop_commit_frequency": 8.88, + "_pop_updated_issues_count": 187, + "_pop_closed_issues_count": 173, + "_pop_created_since_days": 12, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 54.0, - "_pop_comment_count": 94.0, + "_pop_recent_releases_count": 19, + "_pop_recent_releases_estimated_tags": 20, + "_pop_recent_releases_adjusted_count": 19, + "_pop_issue_count": 187.0, + "_pop_comment_count": 42.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 303, - "_pop_score": 52.32, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 0, + "_pop_score": 37.95, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/teemu/pytest-sugar/master/README.md", - "_readme_localurl": "teemu~pytest-sugar~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/google/vizier/master/README.md", + "_readme_localurl": "google~vizier~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/teemu/pytest-sugar/master/setup.py" + "https://raw.githubusercontent.com/google/vizier/master/requirements.txt", + "https://raw.githubusercontent.com/google/vizier/master/setup.py" ], "_requirements_localurls": [ - "teemu~pytest-sugar~setup.py" + "google~vizier~requirements.txt", + "google~vizier~setup.py" ] }, { - "index": 482, - "category": "gis", - "githuburl": "https://github.com/sentinel-hub/eo-learn", + "index": 820, + "category": "viz", + "githuburl": "https://github.com/facultyai/dash-bootstrap-components", "featured": null, "links": null, "description": null, - "_repopath": "sentinel-hub/eo-learn", - "_reponame": "eo-learn", + "_repopath": "facultyai/dash-bootstrap-components", + "_reponame": "dash-bootstrap-components", "_stars": 949, - "_forks": 276, - "_watches": 50, + "_forks": 202, + "_watches": 21, + "_language": "JavaScript", + "_homepage": "https://dash-bootstrap-components.opensource.faculty.ai/", + "_description": "dash-bootstrap-components: Bootstrap components for Plotly Dash", + "_organization": "facultyai", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2018-09-21T00:00:00.000Z", + "_age_weeks": 230, + "_stars_per_week": 4.11, "_topics": [ - "machine-learning", - "eo-data", - "eo-research", - "python-package" + "bootstrap", + "plotly-dash", + "python", + "dashboards", + "r", + "julia" + ], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 29, + "_pop_contributor_logins": [ + "AnnMarieW@nostarchpress-thebookofdash", + "acroz@facultyai", + "ann-marie-ward", + "dependabot[bot]", + "glsdown", + "pbugnion@facultyai", + "romainmartinez@universit\u00e9demontr\u00e9al", + "shwinnn", + "srstevenson", + "tcbegley@facebook" ], - "_language": "Python", - "_homepage": null, - "_description": "eo-learn: Earth observation processing framework for machine learning in Python", - "_organization": "sentinel-hub", - "_updated_at": "2022-12-13T00:00:00.000Z", - "_last_commit_date": "2022-11-23T00:00:00.000Z", - "_created_at": "2018-05-31T00:00:00.000Z", - "_age_weeks": 237, - "_stars_per_week": 3.99, - "_pop_contributor_count": 49, "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "eoresearchteamsinergise", - "google", - "sinergise", - "sinergisesentinel-hub" + "facebook", + "facultyai", + "nostarchpress-thebookofdash", + "universit\u00e9demontr\u00e9al" + ], + "_pop_contributor_orgs_raw": [ + "@facebook", + "@facultyai", + "@facultyai ", + "No Starch Press - The Book of Dash", + "Universit\u00e9 de Montr\u00e9al" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.48, + "_pop_commit_frequency": 1.52, "_pop_updated_issues_count": 56, - "_pop_closed_issues_count": 51, - "_pop_created_since_days": 55, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 10, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 10, + "_pop_closed_issues_count": 52, + "_pop_created_since_days": 54, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 15, + "_pop_recent_releases_estimated_tags": 33, + "_pop_recent_releases_adjusted_count": 15, "_pop_issue_count": 56.0, - "_pop_comment_count": 54.0, + "_pop_comment_count": 33.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 83, - "_pop_score": 50.75, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 41.17, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/sentinel-hub/eo-learn/master/README.md", - "_readme_localurl": "sentinel-hub~eo-learn~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/facultyai/dash-bootstrap-components/master/README.md", + "_readme_localurl": "facultyai~dash-bootstrap-components~README.md", "_requirements_filenames": [ "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/sentinel-hub/eo-learn/master/setup.py", - "https://raw.githubusercontent.com/sentinel-hub/eo-learn/master/pyproject.toml" + "https://raw.githubusercontent.com/facultyai/dash-bootstrap-components/master/setup.py", + "https://raw.githubusercontent.com/facultyai/dash-bootstrap-components/master/pyproject.toml" ], "_requirements_localurls": [ - "sentinel-hub~eo-learn~setup.py", - "sentinel-hub~eo-learn~pyproject.toml" + "facultyai~dash-bootstrap-components~setup.py", + "facultyai~dash-bootstrap-components~pyproject.toml" ] }, { - "index": 631, - "category": "util", - "githuburl": "https://github.com/pyca/bcrypt", - "featured": null, + "index": 236, + "category": "sim", + "githuburl": "https://github.com/salesforce/ai-economist", + "featured": 1.0, "links": null, "description": null, - "_repopath": "pyca/bcrypt", - "_reponame": "bcrypt", + "_repopath": "salesforce/ai-economist", + "_reponame": "ai-economist", "_stars": 945, - "_forks": 134, - "_watches": 29, + "_forks": 194, + "_watches": 46, + "_language": "Python", + "_homepage": "https://www.einstein.ai/the-ai-economist", + "_description": "ai-economist: Foundation is a flexible, modular, and composable framework to model socio-economic behaviors and dynamics with both agents and governments. This framework can be used in conjunction with reinforcement learning to learn optimal economic policies,\u00a0as done by the AI Economist (https://www.einstein.ai/the-ai-economist).", + "_organization": "salesforce", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-07-02T00:00:00.000Z", + "_age_weeks": 137, + "_stars_per_week": 6.85, "_topics": [ - "python" + "ai", + "ml", + "multi-agent", + "multi-agent-reinforcement-learning", + "deep-reinforcement-learning", + "reinforcement-learning-environments", + "simulation-framework", + "python-3", + "economics" ], - "_language": "Python", - "_homepage": "", - "_description": "bcrypt: Modern(-ish) password hashing for your software and your servers", - "_organization": "pyca", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2013-05-11T00:00:00.000Z", - "_age_weeks": 501, - "_stars_per_week": 1.89, - "_pop_contributor_count": 31, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-05-09T00:00:00.000Z", + "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "NoSoyTuMadre@capgemini&threescoopstransport", + "alextrott16", + "dependabot[bot]", + "sunil-s@salesforceresearch", + "svc-scm", + "tljstewart@apple" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "datadog", - "pioneervalleybooks" + "apple", + "capgemini&threescoopstransport", + "salesforceresearch" + ], + "_pop_contributor_orgs_raw": [ + "Apple Inc.", + "Capgemini & Three Scoops Transport, LLC", + "Salesforce Research" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.85, - "_pop_updated_issues_count": 56, - "_pop_closed_issues_count": 49, - "_pop_created_since_days": 117, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.12, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 32, + "_pop_updated_since_days": 10, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 59.0, - "_pop_comment_count": 37.0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 399, - "_pop_score": 49.16, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pyca/bcrypt/master/README.rst", - "_readme_localurl": "pyca~bcrypt~README.rst", + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 16.52, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/salesforce/ai-economist/master/README.md", + "_readme_localurl": "salesforce~ai-economist~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pyca/bcrypt/master/requirements.txt", - "https://raw.githubusercontent.com/pyca/bcrypt/master/setup.py", - "https://raw.githubusercontent.com/pyca/bcrypt/master/pyproject.toml" + "https://raw.githubusercontent.com/salesforce/ai-economist/master/requirements.txt", + "https://raw.githubusercontent.com/salesforce/ai-economist/master/setup.py" ], "_requirements_localurls": [ - "pyca~bcrypt~requirements.txt", - "pyca~bcrypt~setup.py", - "pyca~bcrypt~pyproject.toml" + "salesforce~ai-economist~requirements.txt", + "salesforce~ai-economist~setup.py" ] }, { - "index": 740, - "category": "ml", - "githuburl": "https://github.com/koaning/scikit-lego", + "index": 402, + "category": "perf", + "githuburl": "https://github.com/tiangolo/asyncer", "featured": null, "links": null, "description": null, - "_repopath": "koaning/scikit-lego", - "_reponame": "scikit-lego", - "_stars": 936, - "_forks": 99, - "_watches": 18, + "_repopath": "tiangolo/asyncer", + "_reponame": "asyncer", + "_stars": 945, + "_forks": 38, + "_watches": 15, + "_language": "Python", + "_homepage": "https://asyncer.tiangolo.com/", + "_description": "Asyncer, async and await, focused on developer experience.", + "_organization": "tiangolo", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-01-04T00:00:00.000Z", + "_age_weeks": 59, + "_stars_per_week": 15.98, "_topics": [ - "scikit-learn", - "machine-learning", - "common-sense" + "python", + "async", + "asyncio", + "trio", + "anyio" ], - "_language": "Python", - "_homepage": "https://scikit-lego.netlify.app", - "_description": "scikit-lego: Extra blocks for scikit-learn pipelines.", - "_organization": "koaning", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-11-02T00:00:00.000Z", - "_created_at": "2019-01-21T00:00:00.000Z", - "_age_weeks": 204, - "_stars_per_week": 4.59, - "_pop_contributor_count": 56, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 10, + "_pop_contributor_logins": [ + "JonasKs@snok,intility", + "Kludex@encode", + "dependabot[bot]", + "michaeloliverx@resgroup", + "pre-commit-ci[bot]", + "sanders41@ethyca", + "tiangolo", + "vrslev", + "windson" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "explosion", - "m-gate", - "xcceleratedpydataamsterdam" + "encode", + "ethyca", + "resgroup", + "snok,intility" + ], + "_pop_contributor_orgs_raw": [ + "@encode", + "@ethyca", + "@resgroup", + "@snok, @intility" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.48, - "_pop_updated_issues_count": 28, - "_pop_closed_issues_count": 17, - "_pop_created_since_days": 48, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 28.0, - "_pop_comment_count": 77.0, + "_pop_commit_frequency": 1.19, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 14, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 14.0, + "_pop_comment_count": 24.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.8, - "_pop_dependents_count": 19, - "_pop_score": 44.05, - "_readme_filename": "readme.md", - "_readme_giturl": "https://raw.githubusercontent.com/koaning/scikit-lego/master/readme.md", - "_readme_localurl": "koaning~scikit-lego~readme.md", + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 31.34, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/tiangolo/asyncer/master/README.md", + "_readme_localurl": "tiangolo~asyncer~README.md", "_requirements_filenames": [ - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/koaning/scikit-lego/master/setup.py" + "https://raw.githubusercontent.com/tiangolo/asyncer/master/pyproject.toml" ], "_requirements_localurls": [ - "koaning~scikit-lego~setup.py" + "tiangolo~asyncer~pyproject.toml" ] }, { @@ -39909,45 +55444,62 @@ "description": null, "_repopath": "pyca/pynacl", "_reponame": "pynacl", - "_stars": 936, + "_stars": 944, "_forks": 219, - "_watches": 28, + "_watches": 27, + "_language": "C", + "_homepage": "https://pynacl.readthedocs.io/", + "_description": "pynacl: Python binding to the Networking and Cryptography (NaCl) library", + "_organization": "pyca", + "_updated_at": "2023-02-15T00:00:00.000Z", + "_created_at": "2013-02-22T00:00:00.000Z", + "_age_weeks": 521, + "_stars_per_week": 1.81, "_topics": [ "cryptography", "libsodium", "nacl", "python" ], - "_language": "C", - "_homepage": "https://pynacl.readthedocs.io/", - "_description": "pynacl: Python binding to the Networking and Cryptography (NaCl) library", - "_organization": "pyca", - "_updated_at": "2022-12-11T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2013-02-22T00:00:00.000Z", - "_age_weeks": 512, - "_stars_per_week": 1.83, + "_last_commit_date": "2023-01-19T00:00:00.000Z", "_pop_contributor_count": 64, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Ayrx", + "DMRobertson@vector-im", + "JackWink", + "alex", + "davidfischer", + "dependabot[bot]", + "dstufft@datadog", + "lmctv", + "reaperhulk", + "warner" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "datadog" + "datadog", + "vector-im" + ], + "_pop_contributor_orgs_raw": [ + "@DataDog", + "@vector-im" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.48, - "_pop_updated_issues_count": 9, - "_pop_closed_issues_count": 7, - "_pop_created_since_days": 120, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.37, + "_pop_updated_issues_count": 13, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 122, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 9.0, - "_pop_comment_count": 14.0, + "_pop_issue_count": 13.0, + "_pop_comment_count": 10.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 169, - "_pop_score": 45.62, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 35.46, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pyca/pynacl/master/README.rst", "_readme_localurl": "pyca~pynacl~README.rst", @@ -39965,412 +55517,435 @@ ] }, { - "index": 271, - "category": "crypto", - "githuburl": "https://github.com/man-c/pycoingecko", + "index": 962, + "category": "util", + "githuburl": "https://github.com/fabiocaccamo/python-benedict", "featured": null, "links": null, "description": null, - "_repopath": "man-c/pycoingecko", - "_reponame": "pycoingecko", - "_stars": 933, - "_forks": 245, - "_watches": 32, + "_repopath": "fabiocaccamo/python-benedict", + "_reponame": "python-benedict", + "_stars": 940, + "_forks": 41, + "_watches": 12, + "_language": "Python", + "_homepage": "", + "_description": "python-benedict: :blue_book: dict subclass with keylist/keypath support, built-in I/O operations (base64, csv, ini, json, pickle, plist, query-string, toml, xls, xml, yaml), s3 support and many utilities.", + "_organization": "fabiocaccamo", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-05-17T00:00:00.000Z", + "_age_weeks": 196, + "_stars_per_week": 4.78, "_topics": [ - "python3", - "api-wrapper", - "api", - "wrapper", - "cryptocurrency", - "crypto", - "coingecko", "python", - "nft", - "nfts" + "dict", + "dictionary", + "keypath", + "base64", + "csv", + "json", + "pickle", + "plist", + "query-string", + "toml", + "xml", + "yaml", + "encode", + "decode", + "filter", + "flatten", + "subset", + "traverse", + "xls" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 5, + "_pop_contributor_logins": [ + "dependabot[bot]", + "fabiocaccamo@blackfoundry", + "github-actions[bot]", + "neutrinoceros@institutdeplan\u00e9tologieetd'astrophysiquedegrenoble(ipag)", + "pre-commit-ci[bot]" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "blackfoundry", + "institutdeplan\u00e9tologieetd'astrophysiquedegrenoble(ipag)" + ], + "_pop_contributor_orgs_raw": [ + "Black Foundry", + "Institut de Plan\u00e9tologie et d'Astrophysique de Grenoble (IPAG)" ], - "_language": "Python", - "_homepage": "", - "_description": "pycoingecko: Python wrapper for the CoinGecko API", - "_organization": "man-c", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-10-26T00:00:00.000Z", - "_created_at": "2018-08-24T00:00:00.000Z", - "_age_weeks": 225, - "_stars_per_week": 4.14, - "_pop_contributor_count": 14, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.29, - "_pop_updated_issues_count": 5, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 53, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 5.0, - "_pop_comment_count": 5.0, + "_pop_commit_frequency": 3.88, + "_pop_updated_issues_count": 111, + "_pop_closed_issues_count": 107, + "_pop_created_since_days": 46, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 111.0, + "_pop_comment_count": 110.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 180, - "_pop_score": 32.46, + "_pop_dependents_count": 0, + "_pop_score": 36.35, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/man-c/pycoingecko/master/README.md", - "_readme_localurl": "man-c~pycoingecko~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/fabiocaccamo/python-benedict/master/README.md", + "_readme_localurl": "fabiocaccamo~python-benedict~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt", + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/man-c/pycoingecko/master/setup.py" + "https://raw.githubusercontent.com/fabiocaccamo/python-benedict/master/requirements.txt", + "https://raw.githubusercontent.com/fabiocaccamo/python-benedict/master/setup.py", + "https://raw.githubusercontent.com/fabiocaccamo/python-benedict/master/pyproject.toml" ], "_requirements_localurls": [ - "man-c~pycoingecko~setup.py" + "fabiocaccamo~python-benedict~requirements.txt", + "fabiocaccamo~python-benedict~setup.py", + "fabiocaccamo~python-benedict~pyproject.toml" ] }, { - "index": 820, - "category": "viz", - "githuburl": "https://github.com/facultyai/dash-bootstrap-components", + "index": 541, + "category": "util", + "githuburl": "https://github.com/pdoc3/pdoc", "featured": null, "links": null, "description": null, - "_repopath": "facultyai/dash-bootstrap-components", - "_reponame": "dash-bootstrap-components", - "_stars": 930, - "_forks": 201, - "_watches": 21, + "_repopath": "pdoc3/pdoc", + "_reponame": "pdoc", + "_stars": 937, + "_forks": 137, + "_watches": 9, + "_language": "Python", + "_homepage": "https://pdoc3.github.io/pdoc/", + "_description": "pdoc: :snake: :arrow_right: :scroll: Auto-generate API documentation for Python projects", + "_organization": "pdoc3", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-01-02T00:00:00.000Z", + "_age_weeks": 216, + "_stars_per_week": 4.34, "_topics": [ - "bootstrap", - "plotly-dash", + "documentation", + "generator", + "documentation-generator", + "documentation-tool", + "documentation-dumper", + "api-documentation", "python", - "dashboards", - "r", - "julia" + "python3", + "docs", + "docs-generator", + "docstrings", + "docstring", + "docstring-documentation", + "pdoc", + "hacktoberfest" ], - "_language": "JavaScript", - "_homepage": "https://dash-bootstrap-components.opensource.faculty.ai/", - "_description": "dash-bootstrap-components: Bootstrap components for Plotly Dash", - "_organization": "facultyai", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-08-03T00:00:00.000Z", - "_created_at": "2018-09-21T00:00:00.000Z", - "_age_weeks": 221, - "_stars_per_week": 4.2, - "_pop_contributor_count": 29, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-12-21T00:00:00.000Z", + "_pop_contributor_count": 58, + "_pop_contributor_logins": [ + "BurntSushi@salesforce", + "Hibou57", + "aomader", + "cortesi", + "dhimmel@related-sciences", + "jvantuyl", + "kchmck", + "kernc", + "knadh@zerodha", + "mhils" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "facebook", - "facultyai" + "related-sciences", + "salesforce", + "zerodha" + ], + "_pop_contributor_orgs_raw": [ + "@related-sciences", + "@salesforce", + "Zerodha" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.17, - "_pop_updated_issues_count": 29, - "_pop_closed_issues_count": 8, - "_pop_created_since_days": 52, - "_pop_updated_since_days": 5, - "_pop_recent_releases_count": 14, - "_pop_recent_releases_estimated_tags": 33, - "_pop_recent_releases_adjusted_count": 14, - "_pop_issue_count": 29.0, - "_pop_comment_count": 20.0, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 50, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 9.0, + "_pop_comment_count": 6.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 41, - "_pop_score": 39.1, + "_pop_dependents_count": 0, + "_pop_score": 34.56, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/facultyai/dash-bootstrap-components/master/README.md", - "_readme_localurl": "facultyai~dash-bootstrap-components~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pdoc3/pdoc/master/README.md", + "_readme_localurl": "pdoc3~pdoc~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/facultyai/dash-bootstrap-components/master/setup.py", - "https://raw.githubusercontent.com/facultyai/dash-bootstrap-components/master/pyproject.toml" + "https://raw.githubusercontent.com/pdoc3/pdoc/master/setup.py" ], "_requirements_localurls": [ - "facultyai~dash-bootstrap-components~setup.py", - "facultyai~dash-bootstrap-components~pyproject.toml" + "pdoc3~pdoc~setup.py" ] }, { - "index": 379, - "category": "ml-interpretability", - "githuburl": "https://github.com/cdpierse/transformers-interpret", + "index": 935, + "category": "nlp", + "githuburl": "https://github.com/jonasgeiping/cramming", "featured": null, "links": null, "description": null, - "_repopath": "cdpierse/transformers-interpret", - "_reponame": "transformers-interpret", - "_stars": 924, - "_forks": 81, - "_watches": 16, + "_repopath": "jonasgeiping/cramming", + "_reponame": "cramming", + "_stars": 935, + "_forks": 60, + "_watches": 18, + "_language": "Python", + "_homepage": "", + "_description": "Cramming the training of a (BERT-type) language model into limited compute.", + "_organization": "jonasgeiping", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-12-29T00:00:00.000Z", + "_age_weeks": 7, + "_stars_per_week": 119.0, "_topics": [ - "nlp", - "machine-learning", - "natural-language-processing", - "explainable-ai", - "transformers", - "model-explainability", - "transformers-model", - "captum", - "deep-learning", - "neural-network", - "interpretability", - "computer-vision" + "english-language", + "language-model", + "machine-learning" ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "transformers-interpret: Model explainability that works seamlessly with \ud83e\udd17 transformers. Explain your transformers model in just 2 lines of code. ", - "_organization": "cdpierse", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-17T00:00:00.000Z", - "_created_at": "2020-05-27T00:00:00.000Z", - "_age_weeks": 133, - "_stars_per_week": 6.91, - "_pop_contributor_count": 7, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "JonasGeiping@computerscienceatumd", + "ss18@kpn", + "w32zhong" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "dfki/universit\u00e4tdessaarlandes", - "mavenoid;omnimodular", - "oraikatechnologies", - "quantcopy" + "computerscienceatumd", + "kpn" + ], + "_pop_contributor_orgs_raw": [ + "@kpn", + "Computer Science at UMD" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.98, - "_pop_updated_issues_count": 17, - "_pop_closed_issues_count": 5, - "_pop_created_since_days": 31, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 17.0, - "_pop_comment_count": 22.0, + "_pop_commit_frequency": 0.5, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 2, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 12.0, + "_pop_comment_count": 33.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 11, - "_pop_score": 35.7, + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 0, + "_pop_score": 21.7, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/README.md", - "_readme_localurl": "cdpierse~transformers-interpret~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/jonasgeiping/cramming/master/README.md", + "_readme_localurl": "jonasgeiping~cramming~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/requirements.txt", - "https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/setup.py", - "https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/pyproject.toml" + "https://raw.githubusercontent.com/jonasgeiping/cramming/master/pyproject.toml" ], "_requirements_localurls": [ - "cdpierse~transformers-interpret~requirements.txt", - "cdpierse~transformers-interpret~setup.py", - "cdpierse~transformers-interpret~pyproject.toml" + "jonasgeiping~cramming~pyproject.toml" ] }, { - "index": 212, - "category": "data", - "githuburl": "https://github.com/sfu-db/connector-x", - "featured": 1.0, + "index": 504, + "category": "gis", + "githuburl": "https://github.com/anitagraser/movingpandas", + "featured": null, "links": null, "description": null, - "_repopath": "sfu-db/connector-x", - "_reponame": "connector-x", - "_stars": 919, - "_forks": 66, - "_watches": 23, + "_repopath": "anitagraser/movingpandas", + "_reponame": "movingpandas", + "_stars": 928, + "_forks": 168, + "_watches": 38, + "_language": "Python", + "_homepage": "http://movingpandas.org", + "_description": "movingpandas: Implementation of Trajectory classes and functions built on top of GeoPandas", + "_organization": "anitagraser", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2018-12-16T00:00:00.000Z", + "_age_weeks": 218, + "_stars_per_week": 4.25, "_topics": [ - "rust", + "geopandas", + "trajectory", + "movement-data", + "trajectory-analysis", "python", - "database", - "sql", - "dataframe" + "spatial-data-analysis" ], - "_language": "Rust", - "_homepage": "https://sfu-db.github.io/connector-x/intro.html", - "_description": "connector-x: Fastest library to load data from DB to DataFrames in Rust and Python", - "_organization": "sfu-db", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-08T00:00:00.000Z", - "_created_at": "2021-01-13T00:00:00.000Z", - "_age_weeks": 100, - "_stars_per_week": 9.12, - "_pop_contributor_count": 29, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 30, + "_pop_contributor_logins": [ + "JaviBecerra@panoimagen", + "Robinlovelace@universityofleeds", + "anitagraser", + "astrojuanlu@kedro-org", + "boiko", + "giorgostheo", + "gprichter", + "parnelandr", + "raybellwaves@dtn", + "sglvladi@universityofliverpool" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "redhatofficial", - "sfu-db" + "dtn", + "kedro-org", + "panoimagen", + "universityofleeds", + "universityofliverpool" + ], + "_pop_contributor_orgs_raw": [ + "@PANOimagen ", + "@kedro-org", + "DTN", + "University of Leeds", + "University of Liverpool" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.38, - "_pop_updated_issues_count": 68, - "_pop_closed_issues_count": 33, - "_pop_created_since_days": 23, + "_pop_commit_frequency": 2.13, + "_pop_updated_issues_count": 35, + "_pop_closed_issues_count": 23, + "_pop_created_since_days": 51, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, + "_pop_recent_releases_count": 6, "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 68.0, - "_pop_comment_count": 79.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 20, - "_pop_score": 43.1, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/sfu-db/connector-x/master/README.md", - "_readme_localurl": "sfu-db~connector-x~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, - { - "index": 236, - "category": "sim", - "githuburl": "https://github.com/salesforce/ai-economist", - "featured": 1.0, - "links": null, - "description": null, - "_repopath": "salesforce/ai-economist", - "_reponame": "ai-economist", - "_stars": 918, - "_forks": 192, - "_watches": 44, - "_topics": [ - "ai", - "ml", - "multi-agent", - "multi-agent-reinforcement-learning", - "deep-reinforcement-learning", - "reinforcement-learning-environments", - "simulation-framework", - "python-3", - "economics" - ], - "_language": "Python", - "_homepage": "https://www.einstein.ai/the-ai-economist", - "_description": "ai-economist: Foundation is a flexible, modular, and composable framework to model socio-economic behaviors and dynamics with both agents and governments. This framework can be used in conjunction with reinforcement learning to learn optimal economic policies,\u00a0as done by the AI Economist (https://www.einstein.ai/the-ai-economist).", - "_organization": "salesforce", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-05-09T00:00:00.000Z", - "_created_at": "2020-07-02T00:00:00.000Z", - "_age_weeks": 128, - "_stars_per_week": 7.14, - "_pop_contributor_count": 8, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "apple", - "salesforceresearch" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.42, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 30, - "_pop_updated_since_days": 7, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 4.0, - "_pop_comment_count": 2.0, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 35.0, + "_pop_comment_count": 49.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, + "_pop_comment_frequency": 1.4, "_pop_dependents_count": 0, - "_pop_score": 18.21, + "_pop_score": 41.77, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/salesforce/ai-economist/master/README.md", - "_readme_localurl": "salesforce~ai-economist~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/anitagraser/movingpandas/master/README.md", + "_readme_localurl": "anitagraser~movingpandas~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/salesforce/ai-economist/master/requirements.txt", - "https://raw.githubusercontent.com/salesforce/ai-economist/master/setup.py" + "https://raw.githubusercontent.com/anitagraser/movingpandas/master/setup.py" ], "_requirements_localurls": [ - "salesforce~ai-economist~requirements.txt", - "salesforce~ai-economist~setup.py" + "anitagraser~movingpandas~setup.py" ] }, { - "index": 541, - "category": "util", - "githuburl": "https://github.com/pdoc3/pdoc", + "index": 468, + "category": "ml", + "githuburl": "https://github.com/huggingface/optimum", "featured": null, "links": null, "description": null, - "_repopath": "pdoc3/pdoc", - "_reponame": "pdoc", - "_stars": 911, - "_forks": 136, - "_watches": 8, + "_repopath": "huggingface/optimum", + "_reponame": "optimum", + "_stars": 925, + "_forks": 133, + "_watches": 41, + "_language": "Python", + "_homepage": "https://huggingface.co/docs/optimum/", + "_description": "optimum: \ud83c\udfce\ufe0f Accelerate training and inference of \ud83e\udd17 Transformers with easy to use hardware optimization tools", + "_organization": "huggingface", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2021-07-20T00:00:00.000Z", + "_age_weeks": 83, + "_stars_per_week": 11.13, "_topics": [ - "documentation", - "generator", - "documentation-generator", - "documentation-tool", - "documentation-dumper", - "api-documentation", - "python", - "python3", - "docs", - "docs-generator", - "docstrings", - "docstring", - "docstring-documentation", - "pdoc", - "hacktoberfest" + "onnx", + "pytorch", + "inference", + "training", + "intel", + "graphcore", + "onnxruntime", + "transformers", + "quantization", + "habana", + "optimization" ], - "_language": "Python", - "_homepage": "https://pdoc3.github.io/pdoc/", - "_description": "pdoc: :snake: :arrow_right: :scroll: Auto-generate API documentation for Python projects", - "_organization": "pdoc3", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-10-29T00:00:00.000Z", - "_created_at": "2019-01-02T00:00:00.000Z", - "_age_weeks": 206, - "_stars_per_week": 4.41, - "_pop_contributor_count": 58, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 52, + "_pop_contributor_logins": [ + "JingyaHuang@huggingface", + "echarlaix@huggingface", + "fxmarty@huggingface", + "lewtun@huggingface", + "madlag", + "mfuntowicz@huggingface", + "mht-sharma", + "michaelbenayoun@huggingface", + "regisss", + "younesbelkada@ensparissaclay" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "salesforce" + "ensparissaclay", + "huggingface" + ], + "_pop_contributor_orgs_raw": [ + "@huggingface", + "@huggingface ", + "ENS Paris Saclay", + "Hugging Face" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.1, - "_pop_updated_issues_count": 15, - "_pop_closed_issues_count": 10, - "_pop_created_since_days": 48, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 12, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 15.0, - "_pop_comment_count": 13.0, + "_pop_commit_frequency": 8.19, + "_pop_updated_issues_count": 340, + "_pop_closed_issues_count": 262, + "_pop_created_since_days": 19, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 18, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 18, + "_pop_issue_count": 342.0, + "_pop_comment_count": 947.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 183, - "_pop_score": 41.9, + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 0, + "_pop_score": 46.28, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pdoc3/pdoc/master/README.md", - "_readme_localurl": "pdoc3~pdoc~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/huggingface/optimum/master/README.md", + "_readme_localurl": "huggingface~optimum~README.md", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pdoc3/pdoc/master/setup.py" + "https://raw.githubusercontent.com/huggingface/optimum/master/setup.py", + "https://raw.githubusercontent.com/huggingface/optimum/master/pyproject.toml" ], "_requirements_localurls": [ - "pdoc3~pdoc~setup.py" + "huggingface~optimum~setup.py", + "huggingface~optimum~pyproject.toml" ] }, { @@ -40382,9 +55957,17 @@ "description": null, "_repopath": "tensorflow/similarity", "_reponame": "similarity", - "_stars": 910, - "_forks": 86, - "_watches": 28, + "_stars": 923, + "_forks": 90, + "_watches": 31, + "_language": "Python", + "_homepage": "", + "_description": "similarity: TensorFlow Similarity is a python package focused on making similarity learning quick and easy.", + "_organization": "tensorflow", + "_updated_at": "2023-02-16T00:00:00.000Z", + "_created_at": "2020-06-15T00:00:00.000Z", + "_age_weeks": 140, + "_stars_per_week": 6.58, "_topics": [ "similarity-learning", "metric-learning", @@ -40405,36 +55988,49 @@ "cosine-similarity", "knn" ], - "_language": "Python", - "_homepage": "", - "_description": "similarity: TensorFlow Similarity is a python package focused on making similarity learning quick and easy.", - "_organization": "tensorflow", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", - "_created_at": "2020-06-15T00:00:00.000Z", - "_age_weeks": 131, - "_stars_per_week": 6.95, + "_last_commit_date": "2023-01-16T00:00:00.000Z", "_pop_contributor_count": 23, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "DominikSchmidtqq@google", + "abhisharsinha@indianinstituteoftechnologyhyderabad", + "adammichaelwood@google", + "dependabot[bot]", + "ebursztein@google", + "hanneshapke@digits", + "jamlong@google", + "owenvallis@google", + "shun-lin@google", + "yonigottesman" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google" + "digits", + "google", + "indianinstituteoftechnologyhyderabad" + ], + "_pop_contributor_orgs_raw": [ + "@digits ", + "@google", + "@google ", + "Google", + "Indian Institute of Technology Hyderabad" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.1, - "_pop_updated_issues_count": 24, - "_pop_closed_issues_count": 13, - "_pop_created_since_days": 31, + "_pop_commit_frequency": 0.71, + "_pop_updated_issues_count": 17, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 33, "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 24.0, - "_pop_comment_count": 37.0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 17.0, + "_pop_comment_count": 33.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 29, - "_pop_score": 36.24, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 32.85, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tensorflow/similarity/master/README.md", "_readme_localurl": "tensorflow~similarity~README.md", @@ -40451,74 +56047,6 @@ "tensorflow~similarity~pyproject.toml" ] }, - { - "index": 88, - "category": "testing", - "githuburl": "https://github.com/taverntesting/tavern", - "featured": null, - "links": null, - "description": null, - "_repopath": "taverntesting/tavern", - "_reponame": "tavern", - "_stars": 909, - "_forks": 179, - "_watches": 28, - "_topics": [ - "python", - "pytest", - "testing", - "test-automation", - "mqtt", - "http" - ], - "_language": "Python", - "_homepage": "https://taverntesting.github.io/", - "_description": "tavern: A command-line tool and Python library and Pytest plugin for automated testing of RESTful APIs, with a simple, concise and flexible YAML-based syntax", - "_organization": "taverntesting", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2017-11-01T00:00:00.000Z", - "_age_weeks": 267, - "_stars_per_week": 3.4, - "_pop_contributor_count": 56, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "atlassian", - "forgerock", - "zalando" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.38, - "_pop_updated_issues_count": 34, - "_pop_closed_issues_count": 25, - "_pop_created_since_days": 62, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 37, - "_pop_recent_releases_adjusted_count": 37, - "_pop_issue_count": 34.0, - "_pop_comment_count": 34.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 38, - "_pop_score": 49.71, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/taverntesting/tavern/master/README.md", - "_readme_localurl": "taverntesting~tavern~README.md", - "_requirements_filenames": [ - "requirements.txt", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/taverntesting/tavern/master/requirements.txt", - "https://raw.githubusercontent.com/taverntesting/tavern/master/pyproject.toml" - ], - "_requirements_localurls": [ - "taverntesting~tavern~requirements.txt", - "taverntesting~tavern~pyproject.toml" - ] - }, { "index": 387, "category": "nlp", @@ -40528,9 +56056,17 @@ "description": null, "_repopath": "shivam5992/textstat", "_reponame": "textstat", - "_stars": 892, - "_forks": 144, + "_stars": 919, + "_forks": 148, "_watches": 17, + "_language": "Python", + "_homepage": "https://textstat.org", + "_description": "textstat: :memo: python package to calculate readability statistics of a text object - paragraphs, sentences, articles.", + "_organization": "shivam5992", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2014-06-18T00:00:00.000Z", + "_age_weeks": 453, + "_stars_per_week": 2.03, "_topics": [ "python", "textstat", @@ -40539,36 +56075,47 @@ "smog", "flesch-reading-ease" ], - "_language": "Python", - "_homepage": "https://textstat.org", - "_description": "textstat: :memo: python package to calculate readability statistics of a text object - paragraphs, sentences, articles.", - "_organization": "shivam5992", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-07-08T00:00:00.000Z", - "_created_at": "2014-06-18T00:00:00.000Z", - "_age_weeks": 443, - "_stars_per_week": 2.01, "_pop_contributor_count": 46, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "GuillemGSubies", + "LKirst", + "MKaras93", + "alonsoC1s", + "alxwrd@tessian", + "cclauss@christianclauss", + "hugovk@nordsoftware", + "lukaschoebel", + "massvoice", + "shivam5992" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "christianclauss", + "nordsoftware", "tessian" ], + "_pop_contributor_orgs_raw": [ + "@Tessian", + "Christian Clauss", + "Nord Software" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.1, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 104, - "_pop_updated_since_days": 5, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 106, + "_pop_updated_since_days": 8, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 4.0, - "_pop_comment_count": 5.0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 19, - "_pop_score": 33.24, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 30.05, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/shivam5992/textstat/master/README.md", "_readme_localurl": "shivam5992~textstat~README.md", @@ -40588,6 +56135,264 @@ "shivam5992~textstat~Pipfile" ] }, + { + "index": 750, + "category": "data", + "githuburl": "https://github.com/pytorch/data", + "featured": null, + "links": null, + "description": null, + "_repopath": "pytorch/data", + "_reponame": "data", + "_stars": 916, + "_forks": 111, + "_watches": 26, + "_language": "Python", + "_homepage": "", + "_description": "data: A PyTorch repo for data loading and utilities to be shared by the PyTorch domain libraries.", + "_organization": "pytorch", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2021-05-12T00:00:00.000Z", + "_age_weeks": 93, + "_stars_per_week": 9.85, + "_topics": [], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 66, + "_pop_contributor_logins": [ + "DanilBaibak", + "NivekT", + "VitalyFedyunin", + "dahsh", + "ejguan@facebook", + "gaikwadabhishek", + "msaroufim@pytorch", + "ninginthecloud@universityofwashington/facebook", + "pmeier@quansight", + "ydaiming" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "facebook", + "pytorch", + "quansight", + "universityofwashington/facebook" + ], + "_pop_contributor_orgs_raw": [ + "@PyTorch", + "@Quansight ", + "@facebook", + "University of Washington/ Facebook" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.37, + "_pop_updated_issues_count": 183, + "_pop_closed_issues_count": 134, + "_pop_created_since_days": 22, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 183.0, + "_pop_comment_count": 505.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 0, + "_pop_score": 46.46, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pytorch/data/master/README.md", + "_readme_localurl": "pytorch~data~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pytorch/data/master/requirements.txt", + "https://raw.githubusercontent.com/pytorch/data/master/setup.py", + "https://raw.githubusercontent.com/pytorch/data/master/pyproject.toml" + ], + "_requirements_localurls": [ + "pytorch~data~requirements.txt", + "pytorch~data~setup.py", + "pytorch~data~pyproject.toml" + ] + }, + { + "index": 219, + "category": "template", + "githuburl": "https://github.com/tezromach/python-package-template", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "tezromach/python-package-template", + "_reponame": "python-package-template", + "_stars": 914, + "_forks": 92, + "_watches": 6, + "_language": "Python", + "_homepage": "", + "_description": "python-package-template: \ud83d\ude80 Your next Python package needs a bleeding-edge project structure.", + "_organization": "tezromach", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-04-15T00:00:00.000Z", + "_age_weeks": 149, + "_stars_per_week": 6.13, + "_topics": [ + "python", + "cookiecutter", + "best-practices", + "semantic-versions", + "python-packages", + "codestyle", + "formatters", + "makefile", + "poetry", + "template" + ], + "_last_commit_date": "2022-05-18T00:00:00.000Z", + "_pop_contributor_count": 13, + "_pop_contributor_logins": [ + "ChenghaoMou@docusign", + "Dectinc@evision", + "N720720", + "TezRomacH", + "abassel", + "dependabot-preview[bot]", + "dependabot[bot]", + "hexfaker", + "pksol", + "volemont" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "docusign", + "evision" + ], + "_pop_contributor_orgs_raw": [ + "Docusign", + "eVision" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 108, + "_pop_closed_issues_count": 75, + "_pop_created_since_days": 35, + "_pop_updated_since_days": 9, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 108.0, + "_pop_comment_count": 77.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 28.26, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/tezromach/python-package-template/master/README.md", + "_readme_localurl": "tezromach~python-package-template~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/tezromach/python-package-template/master/pyproject.toml" + ], + "_requirements_localurls": [ + "tezromach~python-package-template~pyproject.toml" + ] + }, + { + "index": 88, + "category": "testing", + "githuburl": "https://github.com/taverntesting/tavern", + "featured": null, + "links": null, + "description": null, + "_repopath": "taverntesting/tavern", + "_reponame": "tavern", + "_stars": 909, + "_forks": 182, + "_watches": 28, + "_language": "Python", + "_homepage": "https://taverntesting.github.io/", + "_description": "tavern: A command-line tool and Python library and Pytest plugin for automated testing of RESTful APIs, with a simple, concise and flexible YAML-based syntax", + "_organization": "taverntesting", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2017-11-01T00:00:00.000Z", + "_age_weeks": 277, + "_stars_per_week": 3.28, + "_topics": [ + "python", + "pytest", + "testing", + "test-automation", + "mqtt", + "http" + ], + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 57, + "_pop_contributor_logins": [ + "Birne94@zalando", + "WhileLoop@opensourceart", + "benhowes", + "bitdivision", + "cetanu@atlassian", + "dependabot[bot]", + "imkaka@yellowmessengerprev-vogolabs", + "mbfr@forgerock", + "michaelboulton", + "tommilligan@reinfer,acquiredbyuipath" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "atlassian", + "forgerock", + "opensourceart", + "reinfer,acquiredbyuipath", + "yellowmessengerprev-vogolabs", + "zalando" + ], + "_pop_contributor_orgs_raw": [ + "@Atlassian", + "@OpenSourceArt", + "@Zalando", + "@reinfer, acquired by @UiPath", + "@yellowmessenger Prev - @vogolabs", + "Forgerock" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.63, + "_pop_updated_issues_count": 46, + "_pop_closed_issues_count": 38, + "_pop_created_since_days": 65, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 37, + "_pop_recent_releases_adjusted_count": 37, + "_pop_issue_count": 46.0, + "_pop_comment_count": 41.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 46.48, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/taverntesting/tavern/master/README.md", + "_readme_localurl": "taverntesting~tavern~README.md", + "_requirements_filenames": [ + "requirements.txt", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/taverntesting/tavern/master/requirements.txt", + "https://raw.githubusercontent.com/taverntesting/tavern/master/pyproject.toml" + ], + "_requirements_localurls": [ + "taverntesting~tavern~requirements.txt", + "taverntesting~tavern~pyproject.toml" + ] + }, { "index": 622, "category": "util", @@ -40597,43 +56402,63 @@ "description": null, "_repopath": "pytoolz/cytoolz", "_reponame": "cytoolz", - "_stars": 890, + "_stars": 906, "_forks": 67, "_watches": 23, - "_topics": [], "_language": "Python", "_homepage": "", "_description": "cytoolz: Cython implementation of Toolz: High performance functional utilities", "_organization": "pytoolz", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-11-06T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2014-04-04T00:00:00.000Z", - "_age_weeks": 454, - "_stars_per_week": 1.96, + "_age_weeks": 463, + "_stars_per_week": 1.95, + "_topics": [], + "_last_commit_date": "2022-12-19T00:00:00.000Z", "_pop_contributor_count": 20, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "cpcloud@voltrondata", + "dependabot[bot]", + "eriknw", + "groutr@lynkertechnologies", + "hmaarrfk@californiainstituteoftechnology", + "jcrist@voltrondata", + "larsmans", + "llllllllll@formerlyquantopian", + "mrocklin@coiled", + "pitrou" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "californiainstituteoftechnology", "coiled", "formerlyquantopian", "lynkertechnologies", "voltrondata" ], + "_pop_contributor_orgs_raw": [ + "@coiled ", + "@voltrondata", + "California Institute of Technology", + "Lynker Technologies", + "formerly @quantopian" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.52, - "_pop_updated_issues_count": 10, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 106, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 1, + "_pop_commit_frequency": 0.56, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 108, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 10.0, - "_pop_comment_count": 6.0, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 9.0, + "_pop_comment_count": 11.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 28, - "_pop_score": 39.05, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 35.1, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pytoolz/cytoolz/master/README.rst", "_readme_localurl": "pytoolz~cytoolz~README.rst", @@ -40651,67 +56476,67 @@ ] }, { - "index": 504, - "category": "gis", - "githuburl": "https://github.com/anitagraser/movingpandas", + "index": 891, + "category": "util", + "githuburl": "https://github.com/xl0/lovely-tensors", "featured": null, "links": null, "description": null, - "_repopath": "anitagraser/movingpandas", - "_reponame": "movingpandas", - "_stars": 889, - "_forks": 165, - "_watches": 36, + "_repopath": "xl0/lovely-tensors", + "_reponame": "lovely-tensors", + "_stars": 905, + "_forks": 14, + "_watches": 8, + "_language": "Jupyter Notebook", + "_homepage": "https://xl0.github.io/lovely-tensors", + "_description": "lovely-tensors: Tensors, ready for human consumption", + "_organization": "xl0", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-10-07T00:00:00.000Z", + "_age_weeks": 19, + "_stars_per_week": 45.91, "_topics": [ - "geopandas", - "trajectory", - "movement-data", - "trajectory-analysis", - "python", - "spatial-data-analysis" + "deep-learning", + "library", + "pytorch", + "statistics", + "visualization" ], - "_language": "Python", - "_homepage": "http://movingpandas.org", - "_description": "movingpandas: Implementation of Trajectory classes and functions built on top of GeoPandas", - "_organization": "anitagraser", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2018-12-16T00:00:00.000Z", - "_age_weeks": 209, - "_stars_per_week": 4.25, - "_pop_contributor_count": 29, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "dtn", - "universityofliverpool" + "_last_commit_date": "2023-01-27T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "xl0" ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.29, - "_pop_updated_issues_count": 35, - "_pop_closed_issues_count": 20, - "_pop_created_since_days": 49, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 35.0, - "_pop_comment_count": 55.0, + "_pop_commit_frequency": 1.88, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 5, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 41, + "_pop_recent_releases_adjusted_count": 41, + "_pop_issue_count": 12.0, + "_pop_comment_count": 70.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 25, - "_pop_score": 44.08, + "_pop_comment_frequency": 5.8, + "_pop_dependents_count": 0, + "_pop_score": 23.91, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/anitagraser/movingpandas/master/README.md", - "_readme_localurl": "anitagraser~movingpandas~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/xl0/lovely-tensors/master/README.md", + "_readme_localurl": "xl0~lovely-tensors~README.md", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/anitagraser/movingpandas/master/setup.py" + "https://raw.githubusercontent.com/xl0/lovely-tensors/master/setup.py" ], "_requirements_localurls": [ - "anitagraser~movingpandas~setup.py" + "xl0~lovely-tensors~setup.py" ] }, { @@ -40723,41 +56548,51 @@ "description": null, "_repopath": "markshannon/faster-cpython", "_reponame": "faster-cpython", - "_stars": 888, + "_stars": 899, "_forks": 21, "_watches": 83, - "_topics": [], "_language": null, "_homepage": null, "_description": "faster-cpython: How to make CPython faster.", "_organization": "markshannon", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2020-10-28T00:00:00.000Z", + "_updated_at": "2023-02-20T00:00:00.000Z", "_created_at": "2020-10-19T00:00:00.000Z", - "_age_weeks": 113, - "_stars_per_week": 7.86, + "_age_weeks": 122, + "_stars_per_week": 7.35, + "_topics": [], + "_last_commit_date": "2020-10-28T00:00:00.000Z", "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "brettcannon@microsoft", + "ericvsmith", + "markshannon", + "yasoob@colgateuniversity" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "colgateuniversity", "microsoft" ], + "_pop_contributor_orgs_raw": [ + "@microsoft ", + "Colgate University" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 3, + "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 26, - "_pop_updated_since_days": 26, + "_pop_created_since_days": 28, + "_pop_updated_since_days": 28, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 3.0, - "_pop_comment_count": 2.0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 13.05, + "_pop_score": 9.84, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/markshannon/faster-cpython/master/README.md", "_readme_localurl": "markshannon~faster-cpython~README.md", @@ -40766,65 +56601,93 @@ "_requirements_localurls": [] }, { - "index": 402, - "category": "perf", - "githuburl": "https://github.com/tiangolo/asyncer", + "index": 204, + "category": "debug", + "githuburl": "https://github.com/alexmojaki/snoop", "featured": null, "links": null, "description": null, - "_repopath": "tiangolo/asyncer", - "_reponame": "asyncer", - "_stars": 886, - "_forks": 40, - "_watches": 14, + "_repopath": "alexmojaki/snoop", + "_reponame": "snoop", + "_stars": 899, + "_forks": 31, + "_watches": 17, + "_language": "Python", + "_homepage": "", + "_description": "snoop: A powerful set of Python debugging tools, based on PySnooper", + "_organization": "alexmojaki", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2019-05-13T00:00:00.000Z", + "_age_weeks": 197, + "_stars_per_week": 4.56, "_topics": [ "python", - "async", - "asyncio", - "trio", - "anyio" + "debugging", + "debugger", + "debugging-tools", + "logging" ], - "_language": "Python", - "_homepage": "https://asyncer.tiangolo.com/", - "_description": "Asyncer, async and await, focused on developer experience.", - "_organization": "tiangolo", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2022-01-04T00:00:00.000Z", - "_age_weeks": 49, - "_stars_per_week": 17.77, - "_pop_contributor_count": 10, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "snok,intility" + "_last_commit_date": "2022-12-22T00:00:00.000Z", + "_pop_contributor_count": 22, + "_pop_contributor_logins": [ + "alexbers", + "alexmojaki", + "bittner@painless-software", + "cool-RR", + "czietz", + "danr@pharmbio", + "gpshead@google", + "marksmayo@teremtech", + "pohmelie@aratar.tech", + "volpatto@esss" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "aratar.tech", + "esss", + "google", + "painless-software", + "pharmbio", + "teremtech" + ], + "_pop_contributor_orgs_raw": [ + "@ESSS", + "@TeremTech ", + "@painless-software ", + "@pharmbio ", + "Google", + "aratar.tech" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.69, - "_pop_updated_issues_count": 30, - "_pop_closed_issues_count": 26, - "_pop_created_since_days": 12, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 30.0, - "_pop_comment_count": 38.0, + "_pop_commit_frequency": 0.17, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 46, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 11.0, + "_pop_comment_count": 18.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, + "_pop_comment_frequency": 1.6, "_pop_dependents_count": 0, - "_pop_score": 28.15, + "_pop_score": 33.19, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/tiangolo/asyncer/master/README.md", - "_readme_localurl": "tiangolo~asyncer~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/alexmojaki/snoop/master/README.md", + "_readme_localurl": "alexmojaki~snoop~README.md", "_requirements_filenames": [ + "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/tiangolo/asyncer/master/pyproject.toml" + "https://raw.githubusercontent.com/alexmojaki/snoop/master/setup.py", + "https://raw.githubusercontent.com/alexmojaki/snoop/master/pyproject.toml" ], "_requirements_localurls": [ - "tiangolo~asyncer~pyproject.toml" + "alexmojaki~snoop~setup.py", + "alexmojaki~snoop~pyproject.toml" ] }, { @@ -40836,9 +56699,17 @@ "description": null, "_repopath": "pytroll/satpy", "_reponame": "satpy", - "_stars": 881, - "_forks": 256, + "_stars": 896, + "_forks": 260, "_watches": 31, + "_language": "Python", + "_homepage": "http://satpy.readthedocs.org/en/latest/", + "_description": "satpy: Python package for earth-observing satellite data processing", + "_organization": "pytroll", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2016-02-09T00:00:00.000Z", + "_age_weeks": 367, + "_stars_per_week": 2.44, "_topics": [ "python", "satellite", @@ -40848,39 +56719,55 @@ "xarray", "closember" ], - "_language": "Python", - "_homepage": "http://satpy.readthedocs.org/en/latest/", - "_description": "satpy: Python package for earth-observing satellite data processing", - "_organization": "pytroll", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2016-02-09T00:00:00.000Z", - "_age_weeks": 357, - "_stars_per_week": 2.46, - "_pop_contributor_count": 132, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 135, + "_pop_contributor_logins": [ + "adybbroe@smhi", + "ameraner@eumetsat", + "djhoese@spacescienceandengineeringcenter(ssec)", + "gerritholl@deutscherwetterdienst", + "joleenf@cooperativeinstituteformeteorologicalsatellitestudies/spacescienceandengineeringcenter", + "mraspaud@smhi", + "pnuu", + "sfinkens@dwd", + "simonrp84@nationalcentreforearthobservation", + "strandgren" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "cooperativeinstituteformeteorologicalsatellitestudies/spacescienceandengineeringcenter", "deutscherwetterdienst", "dwd", + "eumetsat", + "nationalcentreforearthobservation", "smhi", "spacescienceandengineeringcenter(ssec)" ], + "_pop_contributor_orgs_raw": [ + "Cooperative Institute for Meteorological Satellite Studies/Space Science and Engineering Center", + "DWD", + "Deutscher Wetterdienst", + "EUMETSAT", + "National Centre for Earth Observation", + "SMHI", + "Space Science and Engineering Center (@ssec)" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 21.56, - "_pop_updated_issues_count": 174, - "_pop_closed_issues_count": 107, - "_pop_created_since_days": 83, + "_pop_commit_frequency": 22.65, + "_pop_updated_issues_count": 160, + "_pop_closed_issues_count": 117, + "_pop_created_since_days": 86, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 12, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 174.0, - "_pop_comment_count": 595.0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 160.0, + "_pop_comment_count": 646.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.4, - "_pop_dependents_count": 12, - "_pop_score": 58.74, + "_pop_comment_frequency": 4.0, + "_pop_dependents_count": 0, + "_pop_score": 57.46, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/pytroll/satpy/master/README.rst", "_readme_localurl": "pytroll~satpy~README.rst", @@ -40898,131 +56785,192 @@ ] }, { - "index": 219, - "category": "template", - "githuburl": "https://github.com/tezromach/python-package-template", - "featured": 1.0, + "index": 700, + "category": "perf", + "githuburl": "https://github.com/intel/scikit-learn-intelex", + "featured": null, "links": null, "description": null, - "_repopath": "tezromach/python-package-template", - "_reponame": "python-package-template", - "_stars": 873, - "_forks": 85, - "_watches": 6, + "_repopath": "intel/scikit-learn-intelex", + "_reponame": "scikit-learn-intelex", + "_stars": 892, + "_forks": 145, + "_watches": 26, + "_language": "Python", + "_homepage": "https://intel.github.io/scikit-learn-intelex/", + "_description": "scikit-learn-intelex: Intel(R) Extension for Scikit-learn is a seamless way to speed up your Scikit-learn application", + "_organization": "intel", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-08-07T00:00:00.000Z", + "_age_weeks": 237, + "_stars_per_week": 3.76, "_topics": [ + "oneapi", + "scikit-learn", + "machine-learning-algorithms", + "data-analysis", + "machine-learning", "python", - "cookiecutter", - "best-practices", - "semantic-versions", - "python-packages", - "codestyle", - "formatters", - "makefile", - "poetry", - "template" + "swrepo", + "ai-machine-learning", + "big-data", + "analytics", + "ai-training", + "ai-inference", + "gpu", + "intel" + ], + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 66, + "_pop_contributor_logins": [ + "Alexander-Makaryev", + "Alexsandruss@intel", + "OnlyDeniko", + "Pahandrovich", + "PetrovKP@intel", + "fschlimb@intel", + "napetrov@intel", + "oleksandr-pavlyk@intelcorporation", + "owerbat", + "renovate[bot]" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "intel", + "intelcorporation" + ], + "_pop_contributor_orgs_raw": [ + "@intel", + "@intel ", + "Intel", + "Intel Corporation" ], - "_language": "Python", - "_homepage": "", - "_description": "python-package-template: \ud83d\ude80 Your next Python package needs a bleeding-edge project structure.", - "_organization": "tezromach", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-05-18T00:00:00.000Z", - "_created_at": "2020-04-15T00:00:00.000Z", - "_age_weeks": 139, - "_stars_per_week": 6.25, - "_pop_contributor_count": 13, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.02, - "_pop_updated_issues_count": 111, - "_pop_closed_issues_count": 71, - "_pop_created_since_days": 33, - "_pop_updated_since_days": 7, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 111.0, - "_pop_comment_count": 73.0, + "_pop_commit_frequency": 1.87, + "_pop_updated_issues_count": 204, + "_pop_closed_issues_count": 172, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 204.0, + "_pop_comment_count": 224.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 18, - "_pop_score": 28.54, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 41.02, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/tezromach/python-package-template/master/README.md", - "_readme_localurl": "tezromach~python-package-template~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/intel/scikit-learn-intelex/master/README.md", + "_readme_localurl": "intel~scikit-learn-intelex~README.md", "_requirements_filenames": [ - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/tezromach/python-package-template/master/pyproject.toml" + "https://raw.githubusercontent.com/intel/scikit-learn-intelex/master/setup.py" ], "_requirements_localurls": [ - "tezromach~python-package-template~pyproject.toml" + "intel~scikit-learn-intelex~setup.py" ] }, { - "index": 750, - "category": "data", - "githuburl": "https://github.com/pytorch/data", + "index": 291, + "category": "pandas", + "githuburl": "https://github.com/stitchfix/hamilton", "featured": null, "links": null, "description": null, - "_repopath": "pytorch/data", - "_reponame": "data", - "_stars": 870, - "_forks": 102, - "_watches": 25, - "_topics": [], + "_repopath": "stitchfix/hamilton", + "_reponame": "hamilton", + "_stars": 890, + "_forks": 44, + "_watches": 19, "_language": "Python", - "_homepage": "", - "_description": "data: A PyTorch repo for data loading and utilities to be shared by the PyTorch domain libraries.", - "_organization": "pytorch", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2021-05-12T00:00:00.000Z", - "_age_weeks": 83, - "_stars_per_week": 10.39, - "_pop_contributor_count": 60, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://hamilton-docs.gitbook.io/docs/", + "_description": "hamilton: A scalable general purpose micro-framework for defining dataflows. You can use it to build dataframes, numpy matrices, python objects, ML models, etc. Embed Hamilton anywhere python runs, e.g. spark, airflow, jupyter, fastapi, python scripts, etc.", + "_organization": "stitchfix", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-05-26T00:00:00.000Z", + "_age_weeks": 143, + "_stars_per_week": 6.22, + "_topics": [ + "python", + "pandas", + "dag", + "data-science", + "data-engineering", + "numpy", + "software-engineering", + "etl-framework", + "etl-pipeline", + "etl", + "feature-engineering", + "featurization", + "dataframe", + "stitch-fix", + "data-platform", + "hamilton", + "hamiltonian", + "machine-learning" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 19, + "_pop_contributor_logins": [ + "bovem@redhat", + "chmp", + "datarshreya", + "elijahbenizzy@stitchfix", + "frenchfrywpepper", + "ivirshup@helmholtzmunich", + "jameslamb@spothero", + "rinsoft-sf@stitchfix", + "shellyjang", + "skrawcz" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "facebook", - "quansight" + "helmholtzmunich", + "redhat", + "spothero", + "stitchfix" + ], + "_pop_contributor_orgs_raw": [ + "@spothero", + "Helmholtz Munich", + "Red Hat", + "Stitch Fix" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.5, - "_pop_updated_issues_count": 194, - "_pop_closed_issues_count": 146, - "_pop_created_since_days": 20, + "_pop_commit_frequency": 6.12, + "_pop_updated_issues_count": 99, + "_pop_closed_issues_count": 76, + "_pop_created_since_days": 33, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, + "_pop_recent_releases_count": 16, "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 194.0, - "_pop_comment_count": 491.0, + "_pop_recent_releases_adjusted_count": 16, + "_pop_issue_count": 99.0, + "_pop_comment_count": 177.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 1663, - "_pop_score": 56.55, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 43.77, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pytorch/data/master/README.md", - "_readme_localurl": "pytorch~data~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/stitchfix/hamilton/master/README.md", + "_readme_localurl": "stitchfix~hamilton~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pytorch/data/master/requirements.txt", - "https://raw.githubusercontent.com/pytorch/data/master/setup.py", - "https://raw.githubusercontent.com/pytorch/data/master/pyproject.toml" + "https://raw.githubusercontent.com/stitchfix/hamilton/master/requirements.txt", + "https://raw.githubusercontent.com/stitchfix/hamilton/master/setup.py" ], "_requirements_localurls": [ - "pytorch~data~requirements.txt", - "pytorch~data~setup.py", - "pytorch~data~pyproject.toml" + "stitchfix~hamilton~requirements.txt", + "stitchfix~hamilton~setup.py" ] }, { @@ -41034,45 +56982,63 @@ "description": null, "_repopath": "jquast/blessed", "_reponame": "blessed", - "_stars": 867, + "_stars": 889, "_forks": 67, - "_watches": 24, - "_topics": [ - "terminal", - "curses", - "cli" - ], + "_watches": 23, "_language": "Python", "_homepage": "http://pypi.python.org/pypi/blessed", "_description": "Blessed is an easy, practical library for making python terminal apps", "_organization": "jquast", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-09-27T00:00:00.000Z", + "_updated_at": "2023-02-17T00:00:00.000Z", "_created_at": "2014-03-01T00:00:00.000Z", - "_age_weeks": 459, - "_stars_per_week": 1.89, - "_pop_contributor_count": 24, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 468, + "_stars_per_week": 1.9, + "_topics": [ + "terminal", + "curses", + "cli" + ], + "_last_commit_date": "2023-02-04T00:00:00.000Z", + "_pop_contributor_count": 25, + "_pop_contributor_logins": [ + "avylove", + "croepha", + "dlax@dalibo", + "erikrose@mozillagoogle", + "fishermans-friend", + "jquast", + "jwezel", + "msabramo@adobe", + "thomasballinger", + "vitek" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "adobe", "dalibo", - "mozilla" + "mozillagoogle" + ], + "_pop_contributor_orgs_raw": [ + "@adobe", + "@dalibo", + "@mozilla @google" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.1, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 107, - "_pop_updated_since_days": 3, + "_pop_commit_frequency": 0.23, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 9, + "_pop_created_since_days": 109, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 6, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 7.0, - "_pop_comment_count": 10.0, + "_pop_issue_count": 11.0, + "_pop_comment_count": 18.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 11, - "_pop_score": 34.13, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 34.58, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/jquast/blessed/master/README.rst", "_readme_localurl": "jquast~blessed~README.rst", @@ -41082,341 +57048,250 @@ ], "_requirements_giturls": [ "https://raw.githubusercontent.com/jquast/blessed/master/requirements.txt", - "https://raw.githubusercontent.com/jquast/blessed/master/setup.py" - ], - "_requirements_localurls": [ - "jquast~blessed~requirements.txt", - "jquast~blessed~setup.py" - ] - }, - { - "index": 392, - "category": "pandas", - "githuburl": "https://github.com/tkrabel/bamboolib", - "featured": null, - "links": null, - "description": null, - "_repopath": "tkrabel/bamboolib", - "_reponame": "bamboolib", - "_stars": 858, - "_forks": 93, - "_watches": 31, - "_topics": [ - "pandas", - "pandas-dataframes", - "jupyter-notebook", - "jupyterlab", - "python" - ], - "_language": "Jupyter Notebook", - "_homepage": "https://bamboolib.com", - "_description": "bamboolib - a GUI for pandas DataFrames", - "_organization": "tkrabel", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-09-27T00:00:00.000Z", - "_created_at": "2019-05-29T00:00:00.000Z", - "_age_weeks": 185, - "_stars_per_week": 4.62, - "_pop_contributor_count": 4, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "8080labs", - "bamboolib", - "databricks" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.21, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 43, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 8, - "_pop_score": 21.39, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/tkrabel/bamboolib/master/README.md", - "_readme_localurl": "tkrabel~bamboolib~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, - { - "index": 204, - "category": "debug", - "githuburl": "https://github.com/alexmojaki/snoop", - "featured": null, - "links": null, - "description": null, - "_repopath": "alexmojaki/snoop", - "_reponame": "snoop", - "_stars": 856, - "_forks": 29, - "_watches": 16, - "_topics": [ - "python", - "debugging", - "debugger", - "debugging-tools", - "logging" - ], - "_language": "Python", - "_homepage": "", - "_description": "snoop: A powerful set of Python debugging tools, based on PySnooper", - "_organization": "alexmojaki", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2019-05-13T00:00:00.000Z", - "_age_weeks": 188, - "_stars_per_week": 4.55, - "_pop_contributor_count": 22, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "google" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.15, - "_pop_updated_issues_count": 6, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 44, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 6.0, - "_pop_comment_count": 15.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 5, - "_pop_score": 33.51, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/alexmojaki/snoop/master/README.md", - "_readme_localurl": "alexmojaki~snoop~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/alexmojaki/snoop/master/setup.py", - "https://raw.githubusercontent.com/alexmojaki/snoop/master/pyproject.toml" + "https://raw.githubusercontent.com/jquast/blessed/master/setup.py" ], "_requirements_localurls": [ - "alexmojaki~snoop~setup.py", - "alexmojaki~snoop~pyproject.toml" + "jquast~blessed~requirements.txt", + "jquast~blessed~setup.py" ] }, { - "index": 700, - "category": "perf", - "githuburl": "https://github.com/intel/scikit-learn-intelex", + "index": 392, + "category": "pandas", + "githuburl": "https://github.com/tkrabel/bamboolib", "featured": null, "links": null, "description": null, - "_repopath": "intel/scikit-learn-intelex", - "_reponame": "scikit-learn-intelex", - "_stars": 854, - "_forks": 136, - "_watches": 28, + "_repopath": "tkrabel/bamboolib", + "_reponame": "bamboolib", + "_stars": 876, + "_forks": 95, + "_watches": 31, + "_language": "Jupyter Notebook", + "_homepage": "https://bamboolib.com", + "_description": "bamboolib - a GUI for pandas DataFrames", + "_organization": "tkrabel", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2019-05-29T00:00:00.000Z", + "_age_weeks": 195, + "_stars_per_week": 4.49, "_topics": [ - "oneapi", - "scikit-learn", - "machine-learning-algorithms", - "data-analysis", - "machine-learning", - "python", - "swrepo", - "ai-machine-learning", - "big-data", - "analytics", - "ai-training", - "ai-inference", - "gpu", - "intel" + "pandas", + "pandas-dataframes", + "jupyter-notebook", + "jupyterlab", + "python" ], - "_language": "Python", - "_homepage": "https://intel.github.io/scikit-learn-intelex/", - "_description": "scikit-learn-intelex: Intel(R) Extension for Scikit-learn is a seamless way to speed up your Scikit-learn application", - "_organization": "intel", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2018-08-07T00:00:00.000Z", - "_age_weeks": 227, - "_stars_per_week": 3.75, - "_pop_contributor_count": 62, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-09-27T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "FlorianWetschoreck@bamboolib", + "fwetdb@databricks", + "susmitpy", + "tkrabel@8080labs" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "intel", - "intelcorporation" + "8080labs", + "bamboolib", + "databricks" + ], + "_pop_contributor_orgs_raw": [ + "@8080labs", + "@databricks ", + "bamboolib" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.63, - "_pop_updated_issues_count": 118, - "_pop_closed_issues_count": 82, - "_pop_created_since_days": 53, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 118.0, - "_pop_comment_count": 80.0, + "_pop_commit_frequency": 0.19, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 45, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 39.35, + "_pop_score": 16.54, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/intel/scikit-learn-intelex/master/README.md", - "_readme_localurl": "intel~scikit-learn-intelex~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/intel/scikit-learn-intelex/master/setup.py" - ], - "_requirements_localurls": [ - "intel~scikit-learn-intelex~setup.py" - ] + "_readme_giturl": "https://raw.githubusercontent.com/tkrabel/bamboolib/master/README.md", + "_readme_localurl": "tkrabel~bamboolib~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { - "index": 772, - "category": "nlp", - "githuburl": "https://github.com/huggingface/setfit", + "index": 697, + "category": "data", + "githuburl": "https://github.com/scholarly-python-package/scholarly", "featured": null, "links": null, "description": null, - "_repopath": "huggingface/setfit", - "_reponame": "setfit", - "_stars": 850, - "_forks": 74, - "_watches": 15, + "_repopath": "scholarly-python-package/scholarly", + "_reponame": "scholarly", + "_stars": 870, + "_forks": 255, + "_watches": 24, + "_language": "Python", + "_homepage": "https://scholarly.readthedocs.io/", + "_description": "scholarly: Retrieve author and publication information from Google Scholar in a friendly, Pythonic way without having to worry about CAPTCHAs!", + "_organization": "scholarly-python-package", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2014-12-02T00:00:00.000Z", + "_age_weeks": 429, + "_stars_per_week": 2.03, "_topics": [ - "few-shot-learning", - "nlp", - "sentence-transformers" + "scholar", + "googlescholar", + "scholarly-articles", + "scholarly-communications", + "python3", + "python-3", + "python", + "citation-network", + "citation-analysis", + "citations", + "citation-index", + "publication-data" ], - "_language": "Python", - "_homepage": "", - "_description": "setfit: Efficient few-shot learning with Sentence Transformers", - "_organization": "huggingface", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2022-06-30T00:00:00.000Z", - "_age_weeks": 24, - "_stars_per_week": 34.59, - "_pop_contributor_count": 29, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-01-16T00:00:00.000Z", + "_pop_contributor_count": 42, + "_pop_contributor_logins": [ + "1ucian0", + "OrganicIrradiation", + "TomBrien@cardiffuniversity", + "arunkannawadi@princetonuniversity", + "bielsnohr@ukaea", + "ipeirotis@newyorkuniversity", + "programize-admin", + "silvavn@universityofalberta", + "stefanct", + "waynehuu" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "huggingface", - "nervanasystems", - "telekom" + "cardiffuniversity", + "newyorkuniversity", + "princetonuniversity", + "ukaea", + "universityofalberta" + ], + "_pop_contributor_orgs_raw": [ + " New York University", + "@ukaea", + "Cardiff University", + "Princeton University", + "University of Alberta" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.46, - "_pop_updated_issues_count": 187, - "_pop_closed_issues_count": 132, - "_pop_created_since_days": 6, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 7, - "_pop_recent_releases_estimated_tags": 18, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 187.0, - "_pop_comment_count": 415.0, + "_pop_commit_frequency": 1.88, + "_pop_updated_issues_count": 33, + "_pop_closed_issues_count": 28, + "_pop_created_since_days": 100, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 17, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 33.0, + "_pop_comment_count": 68.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.2, - "_pop_dependents_count": 2, - "_pop_score": 41.76, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 0, + "_pop_score": 45.32, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/huggingface/setfit/master/README.md", - "_readme_localurl": "huggingface~setfit~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/README.md", + "_readme_localurl": "scholarly-python-package~scholarly~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt", + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/huggingface/setfit/master/setup.py" + "https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/requirements.txt", + "https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/setup.py", + "https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/pyproject.toml" ], "_requirements_localurls": [ - "huggingface~setfit~setup.py" + "scholarly-python-package~scholarly~requirements.txt", + "scholarly-python-package~scholarly~setup.py", + "scholarly-python-package~scholarly~pyproject.toml" ] }, { - "index": 347, - "category": "nlp", - "githuburl": "https://github.com/norskregnesentral/skweak", + "index": 712, + "category": "ml", + "githuburl": "https://github.com/google-research/deeplab2", "featured": null, "links": null, "description": null, - "_repopath": "norskregnesentral/skweak", - "_reponame": "skweak", - "_stars": 847, - "_forks": 67, - "_watches": 27, - "_topics": [ - "weak-supervision", - "nlp-machine-learning", - "distant-supervision", - "nlp-library", - "spacy", - "python", - "data-science", - "training-data", - "natural-language-processing" - ], + "_repopath": "google-research/deeplab2", + "_reponame": "deeplab2", + "_stars": 868, + "_forks": 146, + "_watches": 22, "_language": "Python", "_homepage": "", - "_description": "skweak: A software toolkit for weak supervision applied to NLP tasks", - "_organization": "norskregnesentral", - "_updated_at": "2022-12-12T00:00:00.000Z", - "_last_commit_date": "2022-11-08T00:00:00.000Z", - "_created_at": "2021-03-16T00:00:00.000Z", - "_age_weeks": 91, - "_stars_per_week": 9.22, - "_pop_contributor_count": 11, + "_description": "DeepLab2 is a TensorFlow library for deep labeling, aiming to provide a unified and state-of-the-art TensorFlow codebase for dense pixel labeling tasks.", + "_organization": "google-research", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2021-05-12T00:00:00.000Z", + "_age_weeks": 93, + "_stars_per_week": 9.33, + "_topics": [], + "_last_commit_date": "2023-01-17T00:00:00.000Z", + "_pop_contributor_count": 12, + "_pop_contributor_logins": [ + "ClaireXie", + "YknZhu@google", + "aquariusjay", + "csrhddlam@johnshopkinsuniversity", + "davidblom603@shell", + "joe-siyuan-qiao@johnshopkinsuniversity", + "markweberdev", + "meijieru@johnshopkinsuniversityccvl", + "yuanliangzhe", + "yucornetto@johnshopkinsuniversity" + ], "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "norwegiancomputingcentre", - "palinode", - "universityofoslo", - "universityofthebasquecountryupv/ehu" + "google", + "johnshopkinsuniversity", + "johnshopkinsuniversityccvl", + "shell" + ], + "_pop_contributor_orgs_raw": [ + "Google", + "Johns Hopkins University", + "Johns Hopkins University @ccvl", + "Shell" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.46, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 5, - "_pop_created_since_days": 21, + "_pop_commit_frequency": 0.79, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 22, "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 7.0, - "_pop_comment_count": 5.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 10.0, + "_pop_comment_count": 15.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 13, - "_pop_score": 32.18, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 28.62, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/norskregnesentral/skweak/master/README.md", - "_readme_localurl": "norskregnesentral~skweak~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/norskregnesentral/skweak/master/requirements.txt", - "https://raw.githubusercontent.com/norskregnesentral/skweak/master/setup.py" - ], - "_requirements_localurls": [ - "norskregnesentral~skweak~requirements.txt", - "norskregnesentral~skweak~setup.py" - ] + "_readme_giturl": "https://raw.githubusercontent.com/google-research/deeplab2/master/README.md", + "_readme_localurl": "google-research~deeplab2~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { "index": 628, @@ -41427,46 +57302,70 @@ "description": null, "_repopath": "intake/intake", "_reponame": "intake", - "_stars": 844, + "_stars": 868, "_forks": 125, "_watches": 41, - "_topics": [ - "python", - "data-access", - "data-catalog" - ], "_language": "Python", "_homepage": "https://intake.readthedocs.io/", "_description": "Intake is a lightweight package for finding, investigating, loading and disseminating data.", "_organization": "intake", - "_updated_at": "2022-12-12T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", + "_updated_at": "2023-02-18T00:00:00.000Z", "_created_at": "2017-08-14T00:00:00.000Z", - "_age_weeks": 279, - "_stars_per_week": 3.03, + "_age_weeks": 288, + "_stars_per_week": 3.01, + "_topics": [ + "python", + "data-access", + "data-catalog" + ], + "_last_commit_date": "2023-02-15T00:00:00.000Z", "_pop_contributor_count": 79, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "CJ-Wright", + "bryevdv@nvidia", + "danielballan@brookhavennationallab", + "gwbischof@nsls-ii", + "ian-r-rose@coiled", + "jbcrail", + "jsignell@azavea", + "martindurant@anaconda", + "philippjfr@anaconda", + "seibert" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "anaconda", "azavea", - "brookhavennationallab" + "brookhavennationallab", + "coiled", + "nsls-ii", + "nvidia" + ], + "_pop_contributor_orgs_raw": [ + "@NSLS-II ", + "@azavea", + "@coiled ", + "Anaconda Inc.", + "Anaconda, inc.", + "Brookhaven National Lab", + "Nvidia" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.98, - "_pop_updated_issues_count": 22, - "_pop_closed_issues_count": 14, - "_pop_created_since_days": 65, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 0.85, + "_pop_updated_issues_count": 15, + "_pop_closed_issues_count": 12, + "_pop_created_since_days": 67, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 7, "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 22.0, - "_pop_comment_count": 41.0, + "_pop_issue_count": 15.0, + "_pop_comment_count": 42.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.9, - "_pop_dependents_count": 392, - "_pop_score": 51.62, + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 0, + "_pop_score": 46.11, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/intake/intake/master/README.md", "_readme_localurl": "intake~intake~README.md", @@ -41484,213 +57383,182 @@ ] }, { - "index": 484, - "category": "gis", - "githuburl": "https://github.com/sentinelsat/sentinelsat", + "index": 347, + "category": "nlp", + "githuburl": "https://github.com/norskregnesentral/skweak", "featured": null, "links": null, "description": null, - "_repopath": "sentinelsat/sentinelsat", - "_reponame": "sentinelsat", - "_stars": 836, - "_forks": 225, - "_watches": 59, - "_topics": [ - "sentinel", - "copernicus", - "esa", - "remote-sensing", - "satellite-imagery", - "geographic-data", - "open-data", - "hacktoberfest" - ], + "_repopath": "norskregnesentral/skweak", + "_reponame": "skweak", + "_stars": 863, + "_forks": 69, + "_watches": 27, "_language": "Python", - "_homepage": "https://sentinelsat.readthedocs.io", - "_description": "sentinelsat: Search and download Copernicus Sentinel satellite images", - "_organization": "sentinelsat", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-11-03T00:00:00.000Z", - "_created_at": "2015-05-22T00:00:00.000Z", - "_age_weeks": 395, - "_stars_per_week": 2.11, - "_pop_contributor_count": 42, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "deloitte", - "developmentseed", - "milremrobotics" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.15, - "_pop_updated_issues_count": 9, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 92, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 9.0, - "_pop_comment_count": 45.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 5.0, - "_pop_dependents_count": 7, - "_pop_score": 41.12, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/README.rst", - "_readme_localurl": "sentinelsat~sentinelsat~README.rst", - "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/requirements.txt", - "https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/setup.py", - "https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/pyproject.toml" - ], - "_requirements_localurls": [ - "sentinelsat~sentinelsat~requirements.txt", - "sentinelsat~sentinelsat~setup.py", - "sentinelsat~sentinelsat~pyproject.toml" - ] - }, - { - "index": 697, - "category": "data", - "githuburl": "https://github.com/scholarly-python-package/scholarly", - "featured": null, - "links": null, - "description": null, - "_repopath": "scholarly-python-package/scholarly", - "_reponame": "scholarly", - "_stars": 834, - "_forks": 250, - "_watches": 24, + "_homepage": "", + "_description": "skweak: A software toolkit for weak supervision applied to NLP tasks", + "_organization": "norskregnesentral", + "_updated_at": "2023-02-13T00:00:00.000Z", + "_created_at": "2021-03-16T00:00:00.000Z", + "_age_weeks": 101, + "_stars_per_week": 8.53, "_topics": [ - "scholar", - "googlescholar", - "scholarly-articles", - "scholarly-communications", - "python3", - "python-3", + "weak-supervision", + "nlp-machine-learning", + "distant-supervision", + "nlp-library", + "spacy", "python", - "citation-network", - "citation-analysis", - "citations", - "citation-index", - "publication-data" + "data-science", + "training-data", + "natural-language-processing" ], - "_language": "Python", - "_homepage": "https://scholarly.readthedocs.io/", - "_description": "scholarly: Retrieve author and publication information from Google Scholar in a friendly, Pythonic way without having to worry about CAPTCHAs!", - "_organization": "scholarly-python-package", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2014-12-02T00:00:00.000Z", - "_age_weeks": 419, - "_stars_per_week": 1.99, - "_pop_contributor_count": 43, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-11-08T00:00:00.000Z", + "_pop_contributor_count": 11, + "_pop_contributor_logins": [ + "aliaksah@universityofoslo", + "jerbarnes@universityofthebasquecountryupv/ehu", + "lidiexy-palinode@palinode", + "marioangst@universityofzurich,digitalsocietyinitiative", + "plison@norwegiancomputingcentre", + "ruanchaves", + "udayankumar" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "newyorkuniversity", - "princetonuniversity", - "universityofalberta" + "norwegiancomputingcentre", + "palinode", + "universityofoslo", + "universityofthebasquecountryupv/ehu", + "universityofzurich,digitalsocietyinitiative" + ], + "_pop_contributor_orgs_raw": [ + "Norwegian Computing Centre", + "Palinode", + "University of Oslo", + "University of Zurich, Digital Society Initiative", + "University of the Basque Country UPV/EHU" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.44, - "_pop_updated_issues_count": 28, - "_pop_closed_issues_count": 24, - "_pop_created_since_days": 98, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 11, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 28.0, - "_pop_comment_count": 68.0, + "_pop_commit_frequency": 0.35, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 24, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.4, - "_pop_dependents_count": 3, - "_pop_score": 46.71, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 22.59, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/README.md", - "_readme_localurl": "scholarly-python-package~scholarly~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/norskregnesentral/skweak/master/README.md", + "_readme_localurl": "norskregnesentral~skweak~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/requirements.txt", - "https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/setup.py", - "https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/pyproject.toml" + "https://raw.githubusercontent.com/norskregnesentral/skweak/master/requirements.txt", + "https://raw.githubusercontent.com/norskregnesentral/skweak/master/setup.py" ], "_requirements_localurls": [ - "scholarly-python-package~scholarly~requirements.txt", - "scholarly-python-package~scholarly~setup.py", - "scholarly-python-package~scholarly~pyproject.toml" + "norskregnesentral~skweak~requirements.txt", + "norskregnesentral~skweak~setup.py" ] }, { - "index": 639, + "index": 351, "category": "ml", - "githuburl": "https://github.com/dask/dask-ml", + "githuburl": "https://github.com/jina-ai/finetuner", "featured": null, "links": null, "description": null, - "_repopath": "dask/dask-ml", - "_reponame": "dask-ml", - "_stars": 833, - "_forks": 236, - "_watches": 40, - "_topics": [ - "hacktoberfest" - ], + "_repopath": "jina-ai/finetuner", + "_reponame": "finetuner", + "_stars": 857, + "_forks": 48, + "_watches": 24, "_language": "Python", - "_homepage": "http://ml.dask.org", - "_description": "dask-ml: Scalable Machine Learning with Dask", - "_organization": "dask", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-10-19T00:00:00.000Z", - "_created_at": "2017-06-15T00:00:00.000Z", - "_age_weeks": 287, - "_stars_per_week": 2.9, - "_pop_contributor_count": 76, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://finetuner.jina.ai", + "_description": "finetuner: :dart: Task-oriented finetuning for better embeddings on neural search", + "_organization": "jina-ai", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-08-11T00:00:00.000Z", + "_age_weeks": 80, + "_stars_per_week": 10.71, + "_topics": [ + "fine-tuning", + "pretrained-models", + "few-shot-learning", + "negative-sampling", + "metric-learning", + "siamese-network", + "triplet-loss", + "transfer-learning", + "jina", + "neural-search", + "finetuning", + "similarity-learning" + ], + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 32, + "_pop_contributor_logins": [ + "LMMilliken", + "azayz@jinaai", + "bwanglzu@jina-ai", + "gmastrapas@jinaai", + "guenthermi@jinaai", + "hanxiao@jina-ai", + "jina-bot@jina-ai", + "jupyterjazz@jina-ai", + "nomagick@jina-ai", + "scott-martens@jina-ai" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "coiled", - "microsoft", - "voltrondata" + "jina-ai", + "jinaai" + ], + "_pop_contributor_orgs_raw": [ + "@jina-ai", + "@jina-ai ", + "Jina AI" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.21, - "_pop_updated_issues_count": 22, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 67, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 22.0, - "_pop_comment_count": 28.0, + "_pop_commit_frequency": 4.23, + "_pop_updated_issues_count": 68, + "_pop_closed_issues_count": 62, + "_pop_created_since_days": 19, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 21, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 68.0, + "_pop_comment_count": 159.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 68, - "_pop_score": 42.99, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/dask/dask-ml/master/README.rst", - "_readme_localurl": "dask~dask-ml~README.rst", + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 40.64, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/jina-ai/finetuner/master/README.md", + "_readme_localurl": "jina-ai~finetuner~README.md", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/dask/dask-ml/master/setup.py" + "https://raw.githubusercontent.com/jina-ai/finetuner/master/setup.py", + "https://raw.githubusercontent.com/jina-ai/finetuner/master/pyproject.toml" ], "_requirements_localurls": [ - "dask~dask-ml~setup.py" + "jina-ai~finetuner~setup.py", + "jina-ai~finetuner~pyproject.toml" ] }, { @@ -41702,9 +57570,17 @@ "description": null, "_repopath": "pyproj4/pyproj", "_reponame": "pyproj", - "_stars": 828, - "_forks": 189, + "_stars": 856, + "_forks": 190, "_watches": 30, + "_language": "Python", + "_homepage": "https://pyproj4.github.io/pyproj", + "_description": "pyproj: Python interface to PROJ (cartographic projections and coordinate transformations library)", + "_organization": "pyproj4", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2014-12-29T00:00:00.000Z", + "_age_weeks": 425, + "_stars_per_week": 2.01, "_topics": [ "geospatial", "python", @@ -41714,36 +57590,49 @@ "geodesic", "hacktoberfest" ], - "_language": "Python", - "_homepage": "https://pyproj4.github.io/pyproj", - "_description": "pyproj: Python interface to PROJ (cartographic projections and coordinate transformations library)", - "_organization": "pyproj4", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2014-12-29T00:00:00.000Z", - "_age_weeks": 416, - "_stars_per_week": 1.99, + "_last_commit_date": "2023-01-20T00:00:00.000Z", "_pop_contributor_count": 58, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "cjmayo", + "dependabot[bot]", + "greglucas@lasp/lasp/swxtrec", + "idanmiara@viatransportation", + "jdkloe@knmi", + "jorisvandenbossche", + "jswhit", + "micahcochran", + "paultcochrane", + "snowman2@corteva" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "corteva" + "corteva", + "knmi", + "lasp/lasp/swxtrec", + "viatransportation" + ], + "_pop_contributor_orgs_raw": [ + "@corteva ", + "KNMI", + "LASP / @lasp / @SWxTREC", + "Via Transportation" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.6, - "_pop_updated_issues_count": 56, - "_pop_closed_issues_count": 40, - "_pop_created_since_days": 97, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 3.0, + "_pop_updated_issues_count": 63, + "_pop_closed_issues_count": 52, + "_pop_created_since_days": 99, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 7, - "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_estimated_tags": 7, "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 56.0, - "_pop_comment_count": 144.0, + "_pop_issue_count": 63.0, + "_pop_comment_count": 135.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.6, - "_pop_dependents_count": 523, - "_pop_score": 53.82, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 0, + "_pop_score": 45.24, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pyproj4/pyproj/master/README.md", "_readme_localurl": "pyproj4~pyproj~README.md", @@ -41761,74 +57650,96 @@ ] }, { - "index": 468, - "category": "ml", - "githuburl": "https://github.com/huggingface/optimum", + "index": 484, + "category": "gis", + "githuburl": "https://github.com/sentinelsat/sentinelsat", "featured": null, "links": null, "description": null, - "_repopath": "huggingface/optimum", - "_reponame": "optimum", - "_stars": 825, - "_forks": 105, - "_watches": 39, + "_repopath": "sentinelsat/sentinelsat", + "_reponame": "sentinelsat", + "_stars": 847, + "_forks": 229, + "_watches": 59, + "_language": "Python", + "_homepage": "https://sentinelsat.readthedocs.io", + "_description": "sentinelsat: Search and download Copernicus Sentinel satellite images", + "_organization": "sentinelsat", + "_updated_at": "2023-02-15T00:00:00.000Z", + "_created_at": "2015-05-22T00:00:00.000Z", + "_age_weeks": 404, + "_stars_per_week": 2.09, "_topics": [ - "onnx", - "pytorch", - "inference", - "training", - "intel", - "graphcore", - "onnxruntime", - "transformers", - "quantization", - "habana", - "optimization" + "sentinel", + "copernicus", + "esa", + "remote-sensing", + "satellite-imagery", + "geographic-data", + "open-data", + "hacktoberfest" ], - "_language": "Python", - "_homepage": "https://huggingface.co/docs/optimum/", - "_description": "optimum: \ud83c\udfce\ufe0f Accelerate training and inference of \ud83e\udd17 Transformers with easy to use hardware optimization tools", - "_organization": "huggingface", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2021-07-20T00:00:00.000Z", - "_age_weeks": 73, - "_stars_per_week": 11.17, - "_pop_contributor_count": 37, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-11-03T00:00:00.000Z", + "_pop_contributor_count": 42, + "_pop_contributor_logins": [ + "avalentino", + "gbaier", + "j08lue@developmentseed", + "kr-stn", + "lucadelu@fondazioneedmundmach", + "sdf94", + "thomasyoung-audet@deloitte", + "valgur@milremrobotics", + "viktorbahr", + "willemarcel@developmentseed" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "huggingface" + "deloitte", + "developmentseed", + "fondazioneedmundmach", + "milremrobotics" + ], + "_pop_contributor_orgs_raw": [ + "@developmentseed ", + "Deloitte", + "Development Seed", + "Fondazione Edmund Mach", + "Milrem Robotics" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.21, - "_pop_updated_issues_count": 260, - "_pop_closed_issues_count": 187, - "_pop_created_since_days": 17, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 12, - "_pop_recent_releases_estimated_tags": 12, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 260.0, - "_pop_comment_count": 642.0, + "_pop_commit_frequency": 0.13, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 94, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 8.0, + "_pop_comment_count": 23.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 679, - "_pop_score": 52.95, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/huggingface/optimum/master/README.md", - "_readme_localurl": "huggingface~optimum~README.md", + "_pop_comment_frequency": 2.9, + "_pop_dependents_count": 0, + "_pop_score": 36.24, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/README.rst", + "_readme_localurl": "sentinelsat~sentinelsat~README.rst", "_requirements_filenames": [ + "requirements.txt", "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/huggingface/optimum/master/setup.py", - "https://raw.githubusercontent.com/huggingface/optimum/master/pyproject.toml" + "https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/requirements.txt", + "https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/setup.py", + "https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/pyproject.toml" ], "_requirements_localurls": [ - "huggingface~optimum~setup.py", - "huggingface~optimum~pyproject.toml" + "sentinelsat~sentinelsat~requirements.txt", + "sentinelsat~sentinelsat~setup.py", + "sentinelsat~sentinelsat~pyproject.toml" ] }, { @@ -41840,41 +57751,61 @@ "description": null, "_repopath": "pyscf/pyscf", "_reponame": "pyscf", - "_stars": 823, - "_forks": 439, - "_watches": 75, - "_topics": [], + "_stars": 846, + "_forks": 454, + "_watches": 76, "_language": "Python", "_homepage": "", "_description": "pyscf: Python module for quantum chemistry", "_organization": "pyscf", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2014-05-02T00:00:00.000Z", - "_age_weeks": 450, - "_stars_per_week": 1.83, - "_pop_contributor_count": 137, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 459, + "_stars_per_week": 1.84, + "_topics": [], + "_last_commit_date": "2023-02-07T00:00:00.000Z", + "_pop_contributor_count": 141, + "_pop_contributor_logins": [ + "Samragni-93@theohiostateuniversity", + "fishjojo", + "jdmcclain47", + "kovalp@simuneatomisticss.l.", + "obackhouse@king'scollege,london", + "pulkin", + "ssh2", + "sunqm", + "tberkel@columbiauniversityandflatironinstitute", + "xwang862" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "columbiauniversityandflatironinstitute", + "king'scollege,london", "simuneatomisticss.l.", "theohiostateuniversity" ], + "_pop_contributor_orgs_raw": [ + "Columbia University and Flatiron Institute", + "King's College, London", + "Simune Atomistics S.L.", + "The Ohio State University" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.52, - "_pop_updated_issues_count": 148, - "_pop_closed_issues_count": 70, - "_pop_created_since_days": 105, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 5.35, + "_pop_updated_issues_count": 122, + "_pop_closed_issues_count": 69, + "_pop_created_since_days": 107, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 8, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 148.0, - "_pop_comment_count": 217.0, + "_pop_issue_count": 122.0, + "_pop_comment_count": 222.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 660, - "_pop_score": 57.53, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 47.11, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pyscf/pyscf/master/README.md", "_readme_localurl": "pyscf~pyscf~README.md", @@ -41889,51 +57820,254 @@ ] }, { - "index": 712, + "index": 639, "category": "ml", - "githuburl": "https://github.com/google-research/deeplab2", + "githuburl": "https://github.com/dask/dask-ml", "featured": null, "links": null, "description": null, - "_repopath": "google-research/deeplab2", - "_reponame": "deeplab2", - "_stars": 820, - "_forks": 138, - "_watches": 20, - "_topics": [], + "_repopath": "dask/dask-ml", + "_reponame": "dask-ml", + "_stars": 838, + "_forks": 237, + "_watches": 41, + "_language": "Python", + "_homepage": "http://ml.dask.org", + "_description": "dask-ml: Scalable Machine Learning with Dask", + "_organization": "dask", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-06-15T00:00:00.000Z", + "_age_weeks": 296, + "_stars_per_week": 2.82, + "_topics": [ + "hacktoberfest" + ], + "_last_commit_date": "2023-02-10T00:00:00.000Z", + "_pop_contributor_count": 77, + "_pop_contributor_logins": [ + "TomAugspurger@microsoft", + "abduhbm", + "jameslamb@spothero", + "jcrist@voltrondata", + "jrbourbeau@coiled", + "mmccarty@nvidia", + "mrocklin@coiled", + "raybellwaves@dtn", + "stsievert", + "thomasjpfan@quansight-labs" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "coiled", + "dtn", + "microsoft", + "nvidia", + "quansight-labs", + "spothero", + "voltrondata" + ], + "_pop_contributor_orgs_raw": [ + "@Quansight-Labs ", + "@coiled ", + "@microsoft", + "@spothero", + "@voltrondata", + "DTN", + "NVIDIA" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.25, + "_pop_updated_issues_count": 20, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 69, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 20.0, + "_pop_comment_count": 29.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 41.53, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/dask/dask-ml/master/README.rst", + "_readme_localurl": "dask~dask-ml~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/dask/dask-ml/master/setup.py" + ], + "_requirements_localurls": [ + "dask~dask-ml~setup.py" + ] + }, + { + "index": 395, + "category": "web", + "githuburl": "https://github.com/emmett-framework/emmett", + "featured": null, + "links": null, + "description": null, + "_repopath": "emmett-framework/emmett", + "_reponame": "emmett", + "_stars": 827, + "_forks": 62, + "_watches": 31, "_language": "Python", "_homepage": "", - "_description": "DeepLab2 is a TensorFlow library for deep labeling, aiming to provide a unified and state-of-the-art TensorFlow codebase for dense pixel labeling tasks.", - "_organization": "google-research", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-05T00:00:00.000Z", - "_created_at": "2021-05-12T00:00:00.000Z", - "_age_weeks": 83, - "_stars_per_week": 9.8, - "_pop_contributor_count": 11, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_description": "emmett: The web framework for inventors", + "_organization": "emmett-framework", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2014-10-20T00:00:00.000Z", + "_age_weeks": 435, + "_stars_per_week": 1.9, + "_topics": [ + "python", + "web-framework", + "asgi", + "asyncio", + "emmett" + ], + "_last_commit_date": "2023-01-30T00:00:00.000Z", + "_pop_contributor_count": 22, + "_pop_contributor_logins": [ + "GiantCrocodile", + "Leon0824", + "bronte2k7", + "cassiobotaro", + "gi0baro", + "ianonavy", + "lethargilistic@lawstudent", + "mijdavis2@praxiskit", + "vanadium23@ostrovok.ru", + "waghanza@cashbee-team" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "johnshopkinsuniversity" + "cashbee-team", + "lawstudent", + "ostrovok.ru", + "praxiskit" + ], + "_pop_contributor_orgs_raw": [ + "@cashbee-team", + "@praxiskit ", + "Law Student", + "Ostrovok.ru" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.83, - "_pop_updated_issues_count": 24, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 20, + "_pop_commit_frequency": 0.9, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 102, "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 24.0, - "_pop_comment_count": 44.0, + "_pop_recent_releases_count": 11, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 5.0, + "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 3, - "_pop_score": 27.48, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 36.72, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/google-research/deeplab2/master/README.md", - "_readme_localurl": "google-research~deeplab2~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/emmett-framework/emmett/master/README.md", + "_readme_localurl": "emmett-framework~emmett~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/emmett-framework/emmett/master/pyproject.toml" + ], + "_requirements_localurls": [ + "emmett-framework~emmett~pyproject.toml" + ] + }, + { + "index": 926, + "category": "study", + "githuburl": "https://github.com/roboflow/notebooks", + "featured": null, + "links": null, + "description": null, + "_repopath": "roboflow/notebooks", + "_reponame": "notebooks", + "_stars": 805, + "_forks": 125, + "_watches": 22, + "_language": "Jupyter Notebook", + "_homepage": "https://roboflow.com/models", + "_description": "notebooks: Set of Jupyter Notebooks linked to Roboflow blog posts and used in our YouTube videos.", + "_organization": "roboflow", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-11-18T00:00:00.000Z", + "_age_weeks": 13, + "_stars_per_week": 58.7, + "_topics": [ + "computer-vision", + "deep-learning", + "deep-neural-networks", + "image-classification", + "image-segmentation", + "object-detection", + "yolov5", + "yolov6", + "yolov7", + "pytorch", + "tutorial", + "amazon-sagemaker-lab", + "kaggle", + "yolov8", + "google-colab", + "machine-learning" + ], + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 9, + "_pop_contributor_logins": [ + "FrancescoSaverioZuppichini@roboflow", + "Jacobsolawetz@roboflow.com", + "SkalskiP@roboflow", + "capjamesg@roboflow", + "hansent", + "mmcquade11", + "partheee@spritle" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "roboflow", + "roboflow.com", + "spritle" + ], + "_pop_contributor_orgs_raw": [ + "@Roboflow", + "@roboflow", + "Spritle", + "roboflow", + "roboflow.com" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.52, + "_pop_updated_issues_count": 52, + "_pop_closed_issues_count": 48, + "_pop_created_since_days": 3, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 52.0, + "_pop_comment_count": 157.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 0, + "_pop_score": 31.26, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/roboflow/notebooks/master/README.md", + "_readme_localurl": "roboflow~notebooks~README.md", "_requirements_filenames": [], "_requirements_giturls": [], "_requirements_localurls": [] @@ -41947,9 +58081,17 @@ "description": null, "_repopath": "wolph/python-progressbar", "_reponame": "python-progressbar", - "_stars": 795, + "_stars": 804, "_forks": 95, "_watches": 22, + "_language": "Python", + "_homepage": "http://progressbar-2.readthedocs.org/en/latest/", + "_description": "python-progressbar: Progressbar 2 - A progress bar for Python 2 and Python 3 - \"pip install progressbar2\"", + "_organization": "wolph", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-02-20T00:00:00.000Z", + "_age_weeks": 574, + "_stars_per_week": 1.4, "_topics": [ "python", "progressbar", @@ -41966,36 +58108,49 @@ "gui", "library" ], - "_language": "Python", - "_homepage": "http://progressbar-2.readthedocs.org/en/latest/", - "_description": "python-progressbar: Progressbar 2 - A progress bar for Python 2 and Python 3 - \"pip install progressbar2\"", - "_organization": "wolph", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-08T00:00:00.000Z", - "_created_at": "2012-02-20T00:00:00.000Z", - "_age_weeks": 565, - "_stars_per_week": 1.41, + "_last_commit_date": "2023-02-02T00:00:00.000Z", "_pop_contributor_count": 42, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "NiltonVolpato@google", + "Zannick", + "joe-antognini@whisper", + "matthewwardrop@datascientistatnetflix", + "paulo-raca", + "ritze", + "stuertz@cslab", + "takluyver", + "terencehonles", + "wolph" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "cslab" + "cslab", + "datascientistatnetflix", + "google", + "whisper" + ], + "_pop_contributor_orgs_raw": [ + "@cslab", + "Data Scientist at @Netflix", + "Google", + "Whisper" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.13, - "_pop_updated_issues_count": 14, - "_pop_closed_issues_count": 11, - "_pop_created_since_days": 132, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 4, + "_pop_commit_frequency": 1.1, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 134, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 3, "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 14.0, - "_pop_comment_count": 45.0, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 5.0, + "_pop_comment_count": 7.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.2, - "_pop_dependents_count": 381, - "_pop_score": 50.05, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 37.52, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/wolph/python-progressbar/master/README.rst", "_readme_localurl": "wolph~python-progressbar~README.rst", @@ -42010,67 +58165,84 @@ ] }, { - "index": 395, - "category": "web", - "githuburl": "https://github.com/emmett-framework/emmett", + "index": 738, + "category": "perf", + "githuburl": "https://github.com/zerointensity/pointers.py", "featured": null, "links": null, "description": null, - "_repopath": "emmett-framework/emmett", - "_reponame": "emmett", - "_stars": 794, - "_forks": 63, - "_watches": 30, + "_repopath": "zerointensity/pointers.py", + "_reponame": "pointers.py", + "_stars": 802, + "_forks": 11, + "_watches": 4, + "_language": "Python", + "_homepage": "https://pointers.zintensity.dev/", + "_description": "pointers.py: Bringing the hell of pointers to Python.", + "_organization": "zerointensity", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-03-09T00:00:00.000Z", + "_age_weeks": 50, + "_stars_per_week": 16.04, "_topics": [ "python", - "web-framework", - "asgi", - "asyncio", - "emmett" + "pointers", + "python-pointers" ], - "_language": "Python", - "_homepage": "", - "_description": "emmett: The web framework for inventors", - "_organization": "emmett-framework", - "_updated_at": "2022-12-10T00:00:00.000Z", - "_last_commit_date": "2022-11-24T00:00:00.000Z", - "_created_at": "2014-10-20T00:00:00.000Z", - "_age_weeks": 426, - "_stars_per_week": 1.86, - "_pop_contributor_count": 21, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "2231puppy", + "5HT2", + "UltraStudioLTD", + "ZeroIntensity", + "bswck", + "joshua-auchincloss@royalbankofcanada", + "shenanigansd", + "shenjackyuanjie@china" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "cashbee-team", - "lawstudent", - "ostrovok.ru" + "china", + "royalbankofcanada" + ], + "_pop_contributor_orgs_raw": [ + "China", + "Royal Bank of Canada" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.83, - "_pop_updated_issues_count": 8, - "_pop_closed_issues_count": 5, - "_pop_created_since_days": 99, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 14, - "_pop_recent_releases_estimated_tags": 14, - "_pop_recent_releases_adjusted_count": 14, - "_pop_issue_count": 8.0, - "_pop_comment_count": 0.0, + "_pop_commit_frequency": 3.48, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 12, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 4.0, + "_pop_comment_count": 11.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 12, - "_pop_score": 38.9, + "_pop_comment_frequency": 2.8, + "_pop_dependents_count": 0, + "_pop_score": 31.96, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/emmett-framework/emmett/master/README.md", - "_readme_localurl": "emmett-framework~emmett~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/zerointensity/pointers.py/master/README.md", + "_readme_localurl": "zerointensity~pointers.py~README.md", "_requirements_filenames": [ + "requirements.txt", + "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/emmett-framework/emmett/master/pyproject.toml" + "https://raw.githubusercontent.com/zerointensity/pointers.py/master/requirements.txt", + "https://raw.githubusercontent.com/zerointensity/pointers.py/master/setup.py", + "https://raw.githubusercontent.com/zerointensity/pointers.py/master/pyproject.toml" ], "_requirements_localurls": [ - "emmett-framework~emmett~pyproject.toml" + "zerointensity~pointers.py~requirements.txt", + "zerointensity~pointers.py~setup.py", + "zerointensity~pointers.py~pyproject.toml" ] }, { @@ -42082,9 +58254,17 @@ "description": null, "_repopath": "luispedro/mahotas", "_reponame": "mahotas", - "_stars": 788, - "_forks": 149, - "_watches": 47, + "_stars": 795, + "_forks": 151, + "_watches": 48, + "_language": "Python", + "_homepage": "https://mahotas.rtfd.io", + "_description": "mahotas: Computer Vision in Python", + "_organization": "luispedro", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2010-01-31T00:00:00.000Z", + "_age_weeks": 681, + "_stars_per_week": 1.17, "_topics": [ "computer-vision", "numpy", @@ -42093,37 +58273,51 @@ "python-2", "python-3" ], - "_language": "Python", - "_homepage": "https://mahotas.rtfd.io", - "_description": "mahotas: Computer Vision in Python", - "_organization": "luispedro", - "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-11-14T00:00:00.000Z", - "_created_at": "2010-01-31T00:00:00.000Z", - "_age_weeks": 672, - "_stars_per_week": 1.17, "_pop_contributor_count": 32, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "cgohlke", + "jakirkham", + "langner@google", + "lstolcman", + "luispedro@fudanuniversity", + "meawoppl@theexclosure", + "michaelaye@lasp", + "mindw", + "stefanv@universityofcalifornia,berkeley", + "wang1211" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "fudanuniversity", - "theexclosure" + "google", + "lasp", + "theexclosure", + "universityofcalifornia,berkeley" + ], + "_pop_contributor_orgs_raw": [ + "Fudan University", + "Google", + "LASP", + "The Exclosure", + "University of California, Berkeley" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.15, - "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 157, - "_pop_updated_since_days": 1, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 159, + "_pop_updated_since_days": 3, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 4, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 3.0, - "_pop_comment_count": 5.0, + "_pop_issue_count": 5.0, + "_pop_comment_count": 9.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 52, - "_pop_score": 38.88, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 34.37, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/luispedro/mahotas/master/README.md", "_readme_localurl": "luispedro~mahotas~README.md", @@ -42140,66 +58334,6 @@ "luispedro~mahotas~setup.py" ] }, - { - "index": 891, - "category": "util", - "githuburl": "https://github.com/xl0/lovely-tensors", - "featured": null, - "links": null, - "description": null, - "_repopath": "xl0/lovely-tensors", - "_reponame": "lovely-tensors", - "_stars": 788, - "_forks": 11, - "_watches": 6, - "_topics": [ - "deep-learning", - "library", - "pytorch", - "statistics", - "visualization" - ], - "_language": "Jupyter Notebook", - "_homepage": "https://xl0.github.io/lovely-tensors", - "_description": "lovely-tensors: Tensors, ready for human consumption", - "_organization": "xl0", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2022-10-07T00:00:00.000Z", - "_age_weeks": 10, - "_stars_per_week": 75.56, - "_pop_contributor_count": 1, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.48, - "_pop_updated_issues_count": 14, - "_pop_closed_issues_count": 8, - "_pop_created_since_days": 2, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 79, - "_pop_recent_releases_adjusted_count": 79, - "_pop_issue_count": 14.0, - "_pop_comment_count": 80.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 5.7, - "_pop_dependents_count": 0, - "_pop_score": 23.5, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/xl0/lovely-tensors/master/README.md", - "_readme_localurl": "xl0~lovely-tensors~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/xl0/lovely-tensors/master/setup.py" - ], - "_requirements_localurls": [ - "xl0~lovely-tensors~setup.py" - ] - }, { "index": 226, "category": "sim", @@ -42209,40 +58343,57 @@ "description": null, "_repopath": "facebookresearch/droidlet", "_reponame": "fairo", - "_stars": 785, - "_forks": 80, + "_stars": 792, + "_forks": 79, "_watches": 38, - "_topics": [], "_language": "Jupyter Notebook", "_homepage": "", "_description": "fairo: A modular embodied agent architecture and platform for building embodied agents", "_organization": "facebookresearch", - "_updated_at": "2022-12-12T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", + "_updated_at": "2023-01-20T00:00:00.000Z", "_created_at": "2020-11-02T00:00:00.000Z", - "_age_weeks": 111, - "_stars_per_week": 7.07, + "_age_weeks": 120, + "_stars_per_week": 6.58, + "_topics": [], + "_last_commit_date": "2023-02-01T00:00:00.000Z", "_pop_contributor_count": 43, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "1heart", + "Rebecca-Qian", + "anuragprat1k", + "aszlam", + "exhaustin", + "kavyasrinet@facebookairesearch", + "lshamis", + "snyxan@facebookairesearch", + "soumith@facebookairesearch", + "zephirefaith@facebookresearch" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "facebookairesearch" + "facebookairesearch", + "facebookresearch" + ], + "_pop_contributor_orgs_raw": [ + "@facebookresearch ", + "Facebook AI Research" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 9.77, - "_pop_updated_issues_count": 41, - "_pop_closed_issues_count": 27, - "_pop_created_since_days": 26, + "_pop_commit_frequency": 8.12, + "_pop_updated_issues_count": 23, + "_pop_closed_issues_count": 9, + "_pop_created_since_days": 28, "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 41.0, - "_pop_comment_count": 86.0, + "_pop_issue_count": 23.0, + "_pop_comment_count": 31.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 108, - "_pop_score": 42.38, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 33.49, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/droidlet/master/README.md", "_readme_localurl": "facebookresearch~droidlet~README.md", @@ -42263,143 +58414,80 @@ ] }, { - "index": 351, - "category": "ml", - "githuburl": "https://github.com/jina-ai/finetuner", + "index": 908, + "category": "viz", + "githuburl": "https://github.com/datapane/datapane", "featured": null, "links": null, "description": null, - "_repopath": "jina-ai/finetuner", - "_reponame": "finetuner", - "_stars": 771, - "_forks": 39, - "_watches": 21, + "_repopath": "datapane/datapane", + "_reponame": "datapane", + "_stars": 782, + "_forks": 64, + "_watches": 16, + "_language": "Python", + "_homepage": "https://datapane.com", + "_description": "Datapane is the easiest way to create data science reports from Python.", + "_organization": "datapane", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-04-23T00:00:00.000Z", + "_age_weeks": 147, + "_stars_per_week": 5.29, "_topics": [ - "fine-tuning", - "pretrained-models", - "few-shot-learning", - "negative-sampling", - "metric-learning", - "siamese-network", - "triplet-loss", - "transfer-learning", - "jina", - "neural-search", - "finetuning", - "similarity-learning" + "dashboard", + "reporting", + "data-visualization", + "python", + "hacktoberfest" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 11, + "_pop_contributor_logins": [ + "Buroni@datapane", + "antdking@datapane", + "datapane-ci-bot", + "dependabot[bot]", + "lanthias@datapane", + "mallok-s", + "mands@datapane", + "radiac", + "shahinrostami@datasciencelabpolyra", + "spookylukey" ], - "_language": "Python", - "_homepage": "https://finetuner.jina.ai", - "_description": "finetuner: :dart: Task-oriented finetuning for better embeddings on neural search", - "_organization": "jina-ai", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2021-08-11T00:00:00.000Z", - "_age_weeks": 70, - "_stars_per_week": 10.9, - "_pop_contributor_count": 32, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "jina-ai", - "jinaai" + "datapane", + "datasciencelabpolyra" + ], + "_pop_contributor_orgs_raw": [ + "@Datapane", + "@datapane", + "@datapane ", + "Data Science Lab @ Polyra", + "datapane" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.73, - "_pop_updated_issues_count": 99, - "_pop_closed_issues_count": 89, - "_pop_created_since_days": 16, + "_pop_commit_frequency": 5.56, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 34, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 12, - "_pop_recent_releases_estimated_tags": 24, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 99.0, - "_pop_comment_count": 117.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 18, + "_pop_recent_releases_adjusted_count": 18, + "_pop_issue_count": 11.0, + "_pop_comment_count": 21.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, + "_pop_comment_frequency": 1.9, "_pop_dependents_count": 0, - "_pop_score": 39.18, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/jina-ai/finetuner/master/README.md", - "_readme_localurl": "jina-ai~finetuner~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/jina-ai/finetuner/master/setup.py", - "https://raw.githubusercontent.com/jina-ai/finetuner/master/pyproject.toml" - ], - "_requirements_localurls": [ - "jina-ai~finetuner~setup.py", - "jina-ai~finetuner~pyproject.toml" - ] - }, - { - "index": 738, - "category": "perf", - "githuburl": "https://github.com/zerointensity/pointers.py", - "featured": null, - "links": null, - "description": null, - "_repopath": "zerointensity/pointers.py", - "_reponame": "pointers.py", - "_stars": 766, - "_forks": 9, - "_watches": 3, - "_topics": [ - "python", - "pointers", - "python-pointers" - ], - "_language": "Python", - "_homepage": "https://pointers.zintensity.dev/", - "_description": "pointers.py: Bringing the hell of pointers to Python.", - "_organization": "zerointensity", - "_updated_at": "2022-12-08T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", - "_created_at": "2022-03-09T00:00:00.000Z", - "_age_weeks": 40, - "_stars_per_week": 18.81, - "_pop_contributor_count": 7, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "royalbankofcanada" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.21, - "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 9, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 3.0, - "_pop_comment_count": 3.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 2, - "_pop_score": 25.84, + "_pop_score": 37.01, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/zerointensity/pointers.py/master/README.md", - "_readme_localurl": "zerointensity~pointers.py~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/zerointensity/pointers.py/master/requirements.txt", - "https://raw.githubusercontent.com/zerointensity/pointers.py/master/setup.py", - "https://raw.githubusercontent.com/zerointensity/pointers.py/master/pyproject.toml" - ], - "_requirements_localurls": [ - "zerointensity~pointers.py~requirements.txt", - "zerointensity~pointers.py~setup.py", - "zerointensity~pointers.py~pyproject.toml" - ] + "_readme_giturl": "https://raw.githubusercontent.com/datapane/datapane/master/README.md", + "_readme_localurl": "datapane~datapane~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { "index": 810, @@ -42410,9 +58498,17 @@ "description": null, "_repopath": "neo4j/neo4j-python-driver", "_reponame": "neo4j-python-driver", - "_stars": 759, - "_forks": 167, - "_watches": 99, + "_stars": 771, + "_forks": 171, + "_watches": 98, + "_language": "Python", + "_homepage": "https://neo4j.com/docs/api/python-driver/current/", + "_description": "neo4j-python-driver: Neo4j Bolt driver for Python", + "_organization": "neo4j", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-05-05T00:00:00.000Z", + "_age_weeks": 407, + "_stars_per_week": 1.89, "_topics": [ "python", "graph-database", @@ -42425,37 +58521,49 @@ "python3", "binary-protocol" ], - "_language": "Python", - "_homepage": "https://neo4j.com/docs/api/python-driver/current/", - "_description": "neo4j-python-driver: Neo4j Bolt driver for Python", - "_organization": "neo4j", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2015-05-05T00:00:00.000Z", - "_age_weeks": 397, - "_stars_per_week": 1.91, + "_last_commit_date": "2023-02-09T00:00:00.000Z", "_pop_contributor_count": 41, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "2hdddg", + "RagnarW", + "jakewins@tibber", + "martin-neotech@neo4j", + "nigelsmall", + "pontusmelke@neotechnology", + "robsdedude", + "srbaker", + "technige@elastic", + "zhenlineo" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "elastic", - "neo4j" + "neo4j", + "neotechnology", + "tibber" + ], + "_pop_contributor_orgs_raw": [ + "@tibber ", + "Elastic", + "Neo Technology", + "Neo4j" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.94, - "_pop_updated_issues_count": 80, - "_pop_closed_issues_count": 75, - "_pop_created_since_days": 93, + "_pop_commit_frequency": 2.77, + "_pop_updated_issues_count": 42, + "_pop_closed_issues_count": 38, + "_pop_created_since_days": 95, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 17, + "_pop_recent_releases_count": 18, "_pop_recent_releases_estimated_tags": 14, - "_pop_recent_releases_adjusted_count": 17, - "_pop_issue_count": 80.0, - "_pop_comment_count": 48.0, + "_pop_recent_releases_adjusted_count": 18, + "_pop_issue_count": 42.0, + "_pop_comment_count": 30.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 74, - "_pop_score": 50.12, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 44.31, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/neo4j/neo4j-python-driver/master/README.rst", "_readme_localurl": "neo4j~neo4j-python-driver~README.rst", @@ -42475,6 +58583,188 @@ "neo4j~neo4j-python-driver~pyproject.toml" ] }, + { + "index": 853, + "category": "data", + "githuburl": "https://github.com/eliasdabbas/advertools", + "featured": null, + "links": null, + "description": null, + "_repopath": "eliasdabbas/advertools", + "_reponame": "advertools", + "_stars": 770, + "_forks": 163, + "_watches": 34, + "_language": "Python", + "_homepage": "https://advertools.readthedocs.io", + "_description": "advertools - online marketing productivity and analysis tools", + "_organization": "eliasdabbas", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2017-05-14T00:00:00.000Z", + "_age_weeks": 301, + "_stars_per_week": 2.55, + "_topics": [ + "marketing", + "advertising", + "adwords", + "python", + "digital-marketing", + "online-marketing", + "keywords", + "search-engine-marketing", + "twitter-api", + "search-engine-optimization", + "seo", + "serp", + "social-media", + "youtube", + "robots-txt", + "scrapy", + "seo-crawler", + "log-analysis", + "google-ads", + "logfile-parser" + ], + "_last_commit_date": "2022-12-13T00:00:00.000Z", + "_pop_contributor_count": 7, + "_pop_contributor_logins": [ + "amrrs", + "dreadedhamish", + "eliasdabbas@themediasupermarket", + "lgtm-migrator@github", + "pyup-bot@pyupio" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "github", + "pyupio", + "themediasupermarket" + ], + "_pop_contributor_orgs_raw": [ + "@github", + "@pyupio", + "The Media Supermarket" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.33, + "_pop_updated_issues_count": 20, + "_pop_closed_issues_count": 17, + "_pop_created_since_days": 70, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 20.0, + "_pop_comment_count": 38.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 33.84, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/eliasdabbas/advertools/master/README.rst", + "_readme_localurl": "eliasdabbas~advertools~README.rst", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/eliasdabbas/advertools/master/setup.py", + "https://raw.githubusercontent.com/eliasdabbas/advertools/master/pyproject.toml" + ], + "_requirements_localurls": [ + "eliasdabbas~advertools~setup.py", + "eliasdabbas~advertools~pyproject.toml" + ] + }, + { + "index": 658, + "category": "util", + "githuburl": "https://github.com/rasbt/watermark", + "featured": null, + "links": null, + "description": null, + "_repopath": "rasbt/watermark", + "_reponame": "watermark", + "_stars": 765, + "_forks": 82, + "_watches": 13, + "_language": "Python", + "_homepage": null, + "_description": "watermark: An IPython magic extension for printing date and time stamps, version numbers, and hardware information", + "_organization": "rasbt", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2014-07-30T00:00:00.000Z", + "_age_weeks": 447, + "_stars_per_week": 1.71, + "_topics": [ + "python", + "magic-extension", + "jupyter", + "ipython" + ], + "_last_commit_date": "2022-09-13T00:00:00.000Z", + "_pop_contributor_count": 17, + "_pop_contributor_logins": [ + "GreatBahram", + "Hugovdberg@brabantwater", + "askras", + "e9t@upstageai,hkust", + "iamaziz", + "jGaboardi@ornl", + "jamesmyatt@capgeminiengineering", + "pjbull@drivendata", + "proinsias@hospiq", + "rasbt@lightning-ai,universityofwisconsin-madison" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "brabantwater", + "capgeminiengineering", + "drivendata", + "hospiq", + "lightning-ai,universityofwisconsin-madison", + "ornl", + "upstageai,hkust" + ], + "_pop_contributor_orgs_raw": [ + "@Lightning-AI , University of Wisconsin-Madison", + "@UpstageAI, @hkust", + "@hospiq ", + "Brabant Water", + "Capgemini Engineering", + "DrivenData", + "ORNL" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.06, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 104, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 26.54, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/rasbt/watermark/master/README.md", + "_readme_localurl": "rasbt~watermark~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/rasbt/watermark/master/setup.py" + ], + "_requirements_localurls": [ + "rasbt~watermark~setup.py" + ] + }, { "index": 146, "category": "util", @@ -42484,9 +58774,17 @@ "description": null, "_repopath": "zenodo/zenodo", "_reponame": "zenodo", - "_stars": 752, - "_forks": 225, - "_watches": 38, + "_stars": 762, + "_forks": 228, + "_watches": 40, + "_language": "Python", + "_homepage": "https://zenodo.org", + "_description": "zenodo: Research. Shared.", + "_organization": "zenodo", + "_updated_at": "2023-02-15T00:00:00.000Z", + "_created_at": "2013-02-11T00:00:00.000Z", + "_age_weeks": 523, + "_stars_per_week": 1.46, "_topics": [ "zenodo", "invenio", @@ -42503,38 +58801,51 @@ "postgresql", "inveniosoftware" ], - "_language": "Python", - "_homepage": "https://zenodo.org", - "_description": "zenodo: Research. Shared.", - "_organization": "zenodo", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", - "_created_at": "2013-02-11T00:00:00.000Z", - "_age_weeks": 514, - "_stars_per_week": 1.46, - "_pop_contributor_count": 65, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 67, + "_pop_contributor_logins": [ + "ChiaraBi", + "Glignos@skribble", + "JavierDelgadoFernandez", + "SamiHiltunen", + "frankois@ibekso", + "jainaman224@codingninjas", + "kaplun@protonmail", + "lnielsen@cern", + "mitsosf", + "slint@cern" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "cern", + "codingninjas", + "ibekso", "protonmail", "skribble" ], + "_pop_contributor_orgs_raw": [ + "@ProtonMail ", + "CERN", + "Coding Ninjas", + "Ibekso", + "Skribble" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.52, - "_pop_updated_issues_count": 66, - "_pop_closed_issues_count": 36, - "_pop_created_since_days": 120, + "_pop_commit_frequency": 1.46, + "_pop_updated_issues_count": 409, + "_pop_closed_issues_count": 61, + "_pop_created_since_days": 122, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 42, - "_pop_recent_releases_adjusted_count": 42, - "_pop_issue_count": 66.0, - "_pop_comment_count": 44.0, + "_pop_recent_releases_estimated_tags": 41, + "_pop_recent_releases_adjusted_count": 41, + "_pop_issue_count": 409.0, + "_pop_comment_count": 58.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 150, - "_pop_score": 54.24, + "_pop_comment_frequency": 0.1, + "_pop_dependents_count": 0, + "_pop_score": 47.04, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/zenodo/zenodo/master/README.rst", "_readme_localurl": "zenodo~zenodo~README.rst", @@ -42552,67 +58863,102 @@ ] }, { - "index": 658, - "category": "util", - "githuburl": "https://github.com/rasbt/watermark", + "index": 559, + "category": "jupyter", + "githuburl": "https://github.com/vizzuhq/ipyvizzu", "featured": null, "links": null, "description": null, - "_repopath": "rasbt/watermark", - "_reponame": "watermark", - "_stars": 750, - "_forks": 83, - "_watches": 13, + "_repopath": "vizzuhq/ipyvizzu", + "_reponame": "ipyvizzu", + "_stars": 759, + "_forks": 59, + "_watches": 16, + "_language": "Python", + "_homepage": "https://ipyvizzu.vizzuhq.com", + "_description": "ipyvizzu: Build animated charts in Jupyter Notebook and similar environments with a simple Python syntax.", + "_organization": "vizzuhq", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2022-01-05T00:00:00.000Z", + "_age_weeks": 59, + "_stars_per_week": 12.86, "_topics": [ - "python", - "magic-extension", "jupyter", - "ipython" + "jupyter-notebook", + "python", + "plotting", + "graphs", + "data-visualization", + "graphing", + "ipython", + "chart", + "charts", + "dataviz", + "animation", + "storytelling", + "charting", + "vizzu" + ], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 10, + "_pop_contributor_logins": [ + "KleinK0910@vizzu", + "ParkerKain", + "ShruAgarwal", + "csaladenes@denesdata", + "m1lk4", + "nyirog@oneidentity(balabit)", + "petervidos@vizzuhq", + "simzer@vizzuhq", + "sugatoray@universityofwisconsin-milwaukee", + "veghdev" ], - "_language": "Python", - "_homepage": null, - "_description": "watermark: An IPython magic extension for printing date and time stamps, version numbers, and hardware information", - "_organization": "rasbt", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-09-13T00:00:00.000Z", - "_created_at": "2014-07-30T00:00:00.000Z", - "_age_weeks": 437, - "_stars_per_week": 1.71, - "_pop_contributor_count": 17, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "brabantwater", - "capgeminiengineering", - "drivendata", - "lightning-ai,universityofwisconsin-madison" + "denesdata", + "oneidentity(balabit)", + "universityofwisconsin-milwaukee", + "vizzu", + "vizzuhq" + ], + "_pop_contributor_orgs_raw": [ + "@VizzuHQ", + "@denesdata ", + "@vizzuhq", + "One Identity (BalaBit)", + "University of Wisconsin - Milwaukee", + "Vizzu" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.12, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 102, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 2.0, - "_pop_comment_count": 3.0, + "_pop_commit_frequency": 7.62, + "_pop_updated_issues_count": 19, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 14, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 16, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 19.0, + "_pop_comment_count": 13.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 94, - "_pop_score": 38.82, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 36.47, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/rasbt/watermark/master/README.md", - "_readme_localurl": "rasbt~watermark~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/README.md", + "_readme_localurl": "vizzuhq~ipyvizzu~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/rasbt/watermark/master/setup.py" + "https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/requirements.txt", + "https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/setup.py" ], "_requirements_localurls": [ - "rasbt~watermark~setup.py" + "vizzuhq~ipyvizzu~requirements.txt", + "vizzuhq~ipyvizzu~setup.py" ] }, { @@ -42624,44 +58970,66 @@ "description": null, "_repopath": "clarete/forbiddenfruit", "_reponame": "forbiddenfruit", - "_stars": 750, - "_forks": 50, + "_stars": 757, + "_forks": 49, "_watches": 28, - "_topics": [ - "python", - "monkey-patching" - ], "_language": "Python", "_homepage": "https://clarete.li/forbiddenfruit/", "_description": "forbiddenfruit: Patch built-in python objects", "_organization": "clarete", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-03-12T00:00:00.000Z", + "_updated_at": "2023-02-08T00:00:00.000Z", "_created_at": "2013-04-03T00:00:00.000Z", - "_age_weeks": 506, - "_stars_per_week": 1.48, + "_age_weeks": 516, + "_stars_per_week": 1.47, + "_topics": [ + "python", + "monkey-patching" + ], + "_last_commit_date": "2022-03-12T00:00:00.000Z", "_pop_contributor_count": 15, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Cologler", + "Jongy", + "Julian", + "adamchainz@django,djangolondon", + "bitdeli-chef@bitdeli", + "clarete", + "lukasgraf@4teamworkag", + "pschanely", + "smola@datadog", + "timgates42@iress" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "4teamworkag", "bitdeli", - "django,djangolondon" + "datadog", + "django,djangolondon", + "iress" + ], + "_pop_contributor_orgs_raw": [ + "4teamwork AG", + "@datadog", + "@django, @djangolondon", + "Bitdeli", + "IRESS" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 118, - "_pop_updated_since_days": 14, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 120, + "_pop_updated_since_days": 16, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 3.0, - "_pop_comment_count": 1.0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.3, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 21.92, + "_pop_score": 22.5, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/clarete/forbiddenfruit/master/README.md", "_readme_localurl": "clarete~forbiddenfruit~README.md", @@ -42684,9 +59052,17 @@ "description": null, "_repopath": "viblo/pymunk", "_reponame": "pymunk", - "_stars": 733, - "_forks": 179, - "_watches": 21, + "_stars": 754, + "_forks": 178, + "_watches": 22, + "_language": "Python", + "_homepage": "http://www.pymunk.org", + "_description": "Pymunk is a easy-to-use pythonic 2d physics library that can be used whenever you need 2d rigid body physics from Python", + "_organization": "viblo", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2013-10-02T00:00:00.000Z", + "_age_weeks": 490, + "_stars_per_week": 1.54, "_topics": [ "python", "physics-2d", @@ -42697,38 +59073,50 @@ "physics-simulation", "python-library" ], - "_language": "Python", - "_homepage": "http://www.pymunk.org", - "_description": "Pymunk is a easy-to-use pythonic 2d physics library that can be used whenever you need 2d rigid body physics from Python", - "_organization": "viblo", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2013-10-02T00:00:00.000Z", - "_age_weeks": 480, - "_stars_per_week": 1.52, + "_last_commit_date": "2023-01-29T00:00:00.000Z", "_pop_contributor_count": 17, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Berserker66@skamrahlitsolutions", + "Norberg", + "anthemion", + "cclauss@christianclauss", + "illume", + "mikhail@google", + "msis@blksail", + "oprypin@google", + "viblo", + "zman97211" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "blksail", + "christianclauss", "google", "skamrahlitsolutions" ], + "_pop_contributor_orgs_raw": [ + "@google", + "@google ", + "Christian Clauss", + "Skamrahl IT Solutions", + "blkSAIL" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.02, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 7, - "_pop_created_since_days": 112, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 1.35, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 114, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 7.0, - "_pop_comment_count": 18.0, + "_pop_issue_count": 9.0, + "_pop_comment_count": 14.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.6, - "_pop_dependents_count": 22, - "_pop_score": 43.47, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 36.22, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/viblo/pymunk/master/README.rst", "_readme_localurl": "viblo~pymunk~README.rst", @@ -42746,475 +59134,328 @@ ] }, { - "index": 634, - "category": "profiling", - "githuburl": "https://github.com/csurfer/pyheat", + "index": 976, + "category": "sim", + "githuburl": "https://github.com/a-r-j/graphein", "featured": null, "links": null, "description": null, - "_repopath": "csurfer/pyheat", - "_reponame": "pyheat", - "_stars": 733, - "_forks": 41, - "_watches": 13, + "_repopath": "a-r-j/graphein", + "_reponame": "graphein", + "_stars": 751, + "_forks": 95, + "_watches": 16, + "_language": "Jupyter Notebook", + "_homepage": "https://graphein.ai/", + "_description": "graphein: Protein Graph Library", + "_organization": "a-r-j", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-08-28T00:00:00.000Z", + "_age_weeks": 182, + "_stars_per_week": 4.13, "_topics": [ - "profiling", + "protein", + "protein-structure", + "deep-learning", + "pytorch", + "graph-neural-networks", + "dgl", + "computational-biology", + "bioinformatics", + "structural-biology", + "protein-data-bank", + "protein-design", + "geometric-deep-learning", + "pytorch-geometric", "python", - "heatmap", - "matplotlib" + "interactomics", + "interactome", + "rna", + "ppi-networks", + "gene-regulatory-networks", + "drug-discovery" + ], + "_last_commit_date": "2023-02-13T00:00:00.000Z", + "_pop_contributor_count": 21, + "_pop_contributor_logins": [ + "Seanny123@proteinqure", + "a-r-j@universityofcambridge", + "anton-bushuiev", + "cch1999@univeristyofcambridge", + "dependabot-preview[bot]", + "ericmjl", + "kamurani@rewiredbio", + "kexinhuang12345", + "pre-commit-ci[bot]", + "rvinas" ], - "_language": "Python", - "_homepage": "", - "_description": "pyheat: pprofile + matplotlib = Python program profiled as an awesome heatmap!", - "_organization": "csurfer", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2021-09-18T00:00:00.000Z", - "_created_at": "2017-02-04T00:00:00.000Z", - "_age_weeks": 306, - "_stars_per_week": 2.39, - "_pop_contributor_count": 5, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "citrix", - "lyft" + "proteinqure", + "rewiredbio", + "univeristyofcambridge", + "universityofcambridge" + ], + "_pop_contributor_orgs_raw": [ + "@rewiredbio", + "ProteinQure", + "Univeristy of Cambridge", + "University of Cambridge" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 71, - "_pop_updated_since_days": 15, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, + "_pop_commit_frequency": 1.48, + "_pop_updated_issues_count": 43, + "_pop_closed_issues_count": 30, + "_pop_created_since_days": 42, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 43.0, + "_pop_comment_count": 106.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, + "_pop_comment_frequency": 2.5, "_pop_dependents_count": 0, - "_pop_score": 14.03, + "_pop_score": 41.43, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/csurfer/pyheat/master/README.md", - "_readme_localurl": "csurfer~pyheat~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/a-r-j/graphein/master/README.md", + "_readme_localurl": "a-r-j~graphein~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/csurfer/pyheat/master/requirements.txt", - "https://raw.githubusercontent.com/csurfer/pyheat/master/setup.py" + "https://raw.githubusercontent.com/a-r-j/graphein/master/setup.py", + "https://raw.githubusercontent.com/a-r-j/graphein/master/pyproject.toml" ], "_requirements_localurls": [ - "csurfer~pyheat~requirements.txt", - "csurfer~pyheat~setup.py" + "a-r-j~graphein~setup.py", + "a-r-j~graphein~pyproject.toml" ] }, { - "index": 853, - "category": "data", - "githuburl": "https://github.com/eliasdabbas/advertools", + "index": 325, + "category": "security", + "githuburl": "https://github.com/trailofbits/pip-audit", "featured": null, "links": null, "description": null, - "_repopath": "eliasdabbas/advertools", - "_reponame": "advertools", - "_stars": 732, - "_forks": 158, - "_watches": 33, + "_repopath": "trailofbits/pip-audit", + "_reponame": "pip-audit", + "_stars": 751, + "_forks": 48, + "_watches": 20, + "_language": "Python", + "_homepage": "https://pypi.org/project/pip-audit/", + "_description": "pip-audit: Audits Python environments and dependency trees for known vulnerabilities", + "_organization": "trailofbits", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2021-09-02T00:00:00.000Z", + "_age_weeks": 76, + "_stars_per_week": 9.77, "_topics": [ - "marketing", - "advertising", - "adwords", + "security", + "security-audit", "python", - "digital-marketing", - "online-marketing", - "keywords", - "search-engine-marketing", - "twitter-api", - "search-engine-optimization", - "seo", - "serp", - "social-media", - "youtube", - "robots-txt", - "scrapy", - "seo-crawler", - "log-analysis", - "google-ads", - "logfile-parser" - ], - "_language": "Python", - "_homepage": "https://advertools.readthedocs.io", - "_description": "advertools - online marketing productivity and analysis tools", - "_organization": "eliasdabbas", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2017-05-14T00:00:00.000Z", - "_age_weeks": 292, - "_stars_per_week": 2.51, - "_pop_contributor_count": 7, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "github", - "pyupio", - "themediasupermarket" + "pip", + "supply-chain" ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.17, - "_pop_updated_issues_count": 19, - "_pop_closed_issues_count": 16, - "_pop_created_since_days": 68, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 19.0, - "_pop_comment_count": 32.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 71, - "_pop_score": 44.28, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/eliasdabbas/advertools/master/README.rst", - "_readme_localurl": "eliasdabbas~advertools~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 20, + "_pop_contributor_logins": [ + "Elkasitu@redhat", + "JeffreyVdb", + "ameily", + "cooperlees@clc", + "dependabot[bot]", + "di@google", + "redbmk@anthem-ai", + "tetsuo-cpp@trailofbits", + "woodruffw@trailofbits", + "xsc27@digitalr00ts" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "anthem-ai", + "clc", + "digitalr00ts", + "google", + "redhat", + "trailofbits" ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/eliasdabbas/advertools/master/setup.py", - "https://raw.githubusercontent.com/eliasdabbas/advertools/master/pyproject.toml" + "_pop_contributor_orgs_raw": [ + "@anthem-ai", + "@google", + "@trailofbits", + "@trailofbits ", + "CLC", + "Red Hat", + "digitalr00ts" ], - "_requirements_localurls": [ - "eliasdabbas~advertools~setup.py", - "eliasdabbas~advertools~pyproject.toml" - ] - }, - { - "index": 828, - "category": "sim", - "githuburl": "https://github.com/farama-foundation/gymnasium", - "featured": null, - "links": null, - "description": null, - "_repopath": "farama-foundation/gymnasium", - "_reponame": "Gymnasium", - "_stars": 725, - "_forks": 87, - "_watches": 11, - "_topics": [], - "_language": "Python", - "_homepage": "https://gymnasium.farama.org", - "_description": "Gymnasium: A standard API for reinforcement learning and a diverse set of reference environments (formerly Gym)", - "_organization": "farama-foundation", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2022-09-08T00:00:00.000Z", - "_age_weeks": 14, - "_stars_per_week": 49.75, - "_pop_contributor_count": 395, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 8.46, - "_pop_updated_issues_count": 208, - "_pop_closed_issues_count": 170, - "_pop_created_since_days": 3, + "_pop_commit_frequency": 4.19, + "_pop_updated_issues_count": 119, + "_pop_closed_issues_count": 101, + "_pop_created_since_days": 18, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 20, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 208.0, - "_pop_comment_count": 322.0, + "_pop_recent_releases_count": 25, + "_pop_recent_releases_estimated_tags": 30, + "_pop_recent_releases_adjusted_count": 25, + "_pop_issue_count": 119.0, + "_pop_comment_count": 238.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 4, - "_pop_score": 40.96, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 44.96, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/farama-foundation/gymnasium/master/README.md", - "_readme_localurl": "farama-foundation~gymnasium~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/trailofbits/pip-audit/master/README.md", + "_readme_localurl": "trailofbits~pip-audit~README.md", "_requirements_filenames": [ - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/farama-foundation/gymnasium/master/setup.py", - "https://raw.githubusercontent.com/farama-foundation/gymnasium/master/pyproject.toml" + "https://raw.githubusercontent.com/trailofbits/pip-audit/master/pyproject.toml" ], "_requirements_localurls": [ - "farama-foundation~gymnasium~setup.py", - "farama-foundation~gymnasium~pyproject.toml" + "trailofbits~pip-audit~pyproject.toml" ] }, { - "index": 291, - "category": "pandas", - "githuburl": "https://github.com/stitchfix/hamilton", + "index": 975, + "category": "gis", + "githuburl": "https://github.com/microsoft/globalmlbuildingfootprints", "featured": null, "links": null, "description": null, - "_repopath": "stitchfix/hamilton", - "_reponame": "hamilton", - "_stars": 719, - "_forks": 36, - "_watches": 21, - "_topics": [ - "python", - "pandas", - "dag", - "data-science", - "data-engineering", - "numpy", - "software-engineering", - "etl-framework", - "etl-pipeline", - "etl", - "feature-engineering", - "featurization", - "dataframe", - "stitch-fix", - "data-platform", - "hamilton", - "hamiltonian", - "machine-learning" - ], + "_repopath": "microsoft/globalmlbuildingfootprints", + "_reponame": "GlobalMLBuildingFootprints", + "_stars": 747, + "_forks": 92, + "_watches": 31, "_language": "Python", - "_homepage": "https://hamilton-docs.gitbook.io/docs/", - "_description": "hamilton: A scalable general purpose micro-framework for defining dataflows. You can use it to build dataframes, numpy matrices, python objects, ML models, etc.", - "_organization": "stitchfix", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2020-05-26T00:00:00.000Z", - "_age_weeks": 133, - "_stars_per_week": 5.37, - "_pop_contributor_count": 14, + "_homepage": null, + "_description": "GlobalMLBuildingFootprints: Worldwide building footprints derived from satellite imagery ", + "_organization": "microsoft", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-04-22T00:00:00.000Z", + "_age_weeks": 43, + "_stars_per_week": 17.09, + "_topics": [], + "_last_commit_date": "2022-11-16T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "andwoi", + "dakotabenjamin@hotosm", + "microsoft-github-operations[bot]", + "microsoftopensource@microsoft" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "spothero", - "stitchfix" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.1, - "_pop_updated_issues_count": 83, - "_pop_closed_issues_count": 41, - "_pop_created_since_days": 31, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 10, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 10, - "_pop_issue_count": 83.0, - "_pop_comment_count": 122.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 4, - "_pop_score": 41.15, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/stitchfix/hamilton/master/README.md", - "_readme_localurl": "stitchfix~hamilton~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/stitchfix/hamilton/master/requirements.txt", - "https://raw.githubusercontent.com/stitchfix/hamilton/master/setup.py" + "hotosm", + "microsoft" ], - "_requirements_localurls": [ - "stitchfix~hamilton~requirements.txt", - "stitchfix~hamilton~setup.py" - ] - }, - { - "index": 621, - "category": "testing", - "githuburl": "https://github.com/wolever/parameterized", - "featured": null, - "links": null, - "description": null, - "_repopath": "wolever/parameterized", - "_reponame": "parameterized", - "_stars": 713, - "_forks": 94, - "_watches": 18, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "Parameterized testing with any Python test framework", - "_organization": "wolever", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2021-01-09T00:00:00.000Z", - "_created_at": "2012-03-10T00:00:00.000Z", - "_age_weeks": 562, - "_stars_per_week": 1.27, - "_pop_contributor_count": 24, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "sheertex" + "_pop_contributor_orgs_raw": [ + "@hotosm ", + "Microsoft" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 3, + "_pop_commit_frequency": 0.46, + "_pop_updated_issues_count": 7, "_pop_closed_issues_count": 1, - "_pop_created_since_days": 131, - "_pop_updated_since_days": 24, + "_pop_created_since_days": 10, + "_pop_updated_since_days": 3, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 3.0, - "_pop_comment_count": 4.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 89, - "_pop_score": 30.44, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/wolever/parameterized/master/README.rst", - "_readme_localurl": "wolever~parameterized~README.rst", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/wolever/parameterized/master/setup.py" - ], - "_requirements_localurls": [ - "wolever~parameterized~setup.py" - ] - }, - { - "index": 559, - "category": "jupyter", - "githuburl": "https://github.com/vizzuhq/ipyvizzu", - "featured": null, - "links": null, - "description": null, - "_repopath": "vizzuhq/ipyvizzu", - "_reponame": "ipyvizzu", - "_stars": 711, - "_forks": 58, - "_watches": 16, - "_topics": [ - "jupyter", - "jupyter-notebook", - "python", - "plotting", - "graphs", - "data-visualization", - "graphing", - "ipython", - "chart", - "charts", - "dataviz", - "animation", - "storytelling", - "charting", - "vizzu" - ], - "_language": "Python", - "_homepage": "https://ipyvizzu.vizzuhq.com", - "_description": "ipyvizzu: Build animated charts in Jupyter Notebook and in many other environments with a simple Python syntax.", - "_organization": "vizzuhq", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2022-01-05T00:00:00.000Z", - "_age_weeks": 49, - "_stars_per_week": 14.3, - "_pop_contributor_count": 10, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "oneidentity(balabit)", - "vizzuhq" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 9.17, - "_pop_updated_issues_count": 22, - "_pop_closed_issues_count": 13, - "_pop_created_since_days": 12, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 18, - "_pop_recent_releases_estimated_tags": 18, - "_pop_recent_releases_adjusted_count": 18, - "_pop_issue_count": 22.0, - "_pop_comment_count": 16.0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 6.0, + "_pop_comment_count": 3.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 11, - "_pop_score": 38.21, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 16.6, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/README.md", - "_readme_localurl": "vizzuhq~ipyvizzu~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/requirements.txt", - "https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/setup.py" - ], - "_requirements_localurls": [ - "vizzuhq~ipyvizzu~requirements.txt", - "vizzuhq~ipyvizzu~setup.py" - ] + "_readme_giturl": "https://raw.githubusercontent.com/microsoft/globalmlbuildingfootprints/master/README.md", + "_readme_localurl": "microsoft~globalmlbuildingfootprints~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { - "index": 358, - "category": "data", - "githuburl": "https://github.com/hyperqueryhq/whale", + "index": 634, + "category": "profiling", + "githuburl": "https://github.com/csurfer/pyheat", "featured": null, "links": null, "description": null, - "_repopath": "hyperqueryhq/whale", - "_reponame": "whale", - "_stars": 711, + "_repopath": "csurfer/pyheat", + "_reponame": "pyheat", + "_stars": 741, "_forks": 40, - "_watches": 42, + "_watches": 13, + "_language": "Python", + "_homepage": "", + "_description": "pyheat: pprofile + matplotlib = Python program profiled as an awesome heatmap!", + "_organization": "csurfer", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2017-02-04T00:00:00.000Z", + "_age_weeks": 315, + "_stars_per_week": 2.35, "_topics": [ - "data-documentation", - "data-catalog", - "data-discovery" + "profiling", + "python", + "heatmap", + "matplotlib" ], - "_language": "Python", - "_homepage": "https://rsyi.gitbook.io/whale", - "_description": "whale: \ud83d\udc33 The stupidly simple CLI workspace for your data warehouse.", - "_organization": "hyperqueryhq", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-10-13T00:00:00.000Z", - "_created_at": "2020-05-27T00:00:00.000Z", - "_age_weeks": 133, - "_stars_per_week": 5.32, - "_pop_contributor_count": 17, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2021-09-18T00:00:00.000Z", + "_pop_contributor_count": 5, + "_pop_contributor_logins": [ + "AaronRobson@citrix", + "csurfer@lyft", + "hinnefe2" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "dataframe", - "nttcommunications", - "shopify" + "citrix", + "lyft" + ], + "_pop_contributor_orgs_raw": [ + "@Citrix", + "Lyft" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.17, - "_pop_updated_issues_count": 6, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 31, - "_pop_updated_since_days": 2, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 74, + "_pop_updated_since_days": 17, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 10, - "_pop_issue_count": 6.0, - "_pop_comment_count": 3.0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 29.16, + "_pop_score": 13.84, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/hyperqueryhq/whale/master/README.md", - "_readme_localurl": "hyperqueryhq~whale~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/csurfer/pyheat/master/README.md", + "_readme_localurl": "csurfer~pyheat~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/csurfer/pyheat/master/requirements.txt", + "https://raw.githubusercontent.com/csurfer/pyheat/master/setup.py" + ], + "_requirements_localurls": [ + "csurfer~pyheat~requirements.txt", + "csurfer~pyheat~setup.py" + ] }, { "index": 419, @@ -43225,9 +59466,17 @@ "description": null, "_repopath": "sethmmorton/natsort", "_reponame": "natsort", - "_stars": 709, - "_forks": 40, - "_watches": 14, + "_stars": 733, + "_forks": 42, + "_watches": 15, + "_language": "Python", + "_homepage": "https://pypi.org/project/natsort/", + "_description": "natsort: Simple yet flexible natural sorting in Python.", + "_organization": "sethmmorton", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2012-05-03T00:00:00.000Z", + "_age_weeks": 563, + "_stars_per_week": 1.3, "_topics": [ "python", "natural-sort", @@ -43235,39 +59484,49 @@ "sorting", "natsort" ], - "_language": "Python", - "_homepage": "https://pypi.org/project/natsort/", - "_description": "natsort: Simple yet flexible natural sorting in Python.", - "_organization": "sethmmorton", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-09-01T00:00:00.000Z", - "_created_at": "2012-05-03T00:00:00.000Z", - "_age_weeks": 554, - "_stars_per_week": 1.28, - "_pop_contributor_count": 20, + "_last_commit_date": "2023-01-11T00:00:00.000Z", + "_pop_contributor_count": 21, + "_pop_contributor_logins": [ + "Gilthans@siasol", + "MinchinWeb", + "SethMMorton", + "cpburnz", + "hugovk@nordsoftware", + "jdufresne@pioneervalleybooks", + "kuraga", + "madphysicist", + "rinslow@dapulse", + "swt2c" + ], "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "dapulse", "nordsoftware", "pioneervalleybooks", "siasol" ], + "_pop_contributor_orgs_raw": [ + "@DaPulse ", + "Nord Software", + "Pioneer Valley Books", + "Siasol" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.37, + "_pop_commit_frequency": 0.23, "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 129, - "_pop_updated_since_days": 4, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 132, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 6, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, "_pop_issue_count": 3.0, - "_pop_comment_count": 3.0, + "_pop_comment_count": 13.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 178, - "_pop_score": 41.81, + "_pop_comment_frequency": 4.3, + "_pop_dependents_count": 0, + "_pop_score": 38.84, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/sethmmorton/natsort/master/README.rst", "_readme_localurl": "sethmmorton~natsort~README.rst", @@ -43290,9 +59549,17 @@ "description": null, "_repopath": "fredrik-johansson/mpmath", "_reponame": "mpmath", - "_stars": 707, - "_forks": 148, + "_stars": 729, + "_forks": 152, "_watches": 40, + "_language": "Python", + "_homepage": "http://mpmath.org", + "_description": "mpmath: Python library for arbitrary-precision floating-point arithmetic", + "_organization": "fredrik-johansson", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2011-12-07T00:00:00.000Z", + "_age_weeks": 585, + "_stars_per_week": 1.25, "_topics": [ "python", "arbitrary-precision", @@ -43306,37 +59573,47 @@ "ordinary-differential-equations", "numerical-optimization" ], - "_language": "Python", - "_homepage": "http://mpmath.org", - "_description": "mpmath: Python library for arbitrary-precision floating-point arithmetic", - "_organization": "fredrik-johansson", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-07T00:00:00.000Z", - "_created_at": "2011-12-07T00:00:00.000Z", - "_age_weeks": 575, - "_stars_per_week": 1.23, + "_last_commit_date": "2023-01-10T00:00:00.000Z", "_pop_contributor_count": 47, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "ariasdereyna", + "asmeurer@quansight", + "casevh", + "certik@gsitechnology", + "fredrik-johansson@inria&institutdemath\u00e9matiquesdebordeaux", + "klkuhlm", + "paulmasson", + "skirpichev", + "vks", + "warnerjon12" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "gsitechnology", "inria&institutdemath\u00e9matiquesdebordeaux", "quansight" ], + "_pop_contributor_orgs_raw": [ + "@Quansight ", + "GSI Technology", + "INRIA & Institut de Math\u00e9matiques de Bordeaux" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.27, - "_pop_updated_issues_count": 9, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 134, + "_pop_commit_frequency": 0.23, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 136, "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 9.0, - "_pop_comment_count": 7.0, + "_pop_issue_count": 12.0, + "_pop_comment_count": 12.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 75, - "_pop_score": 40.6, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 35.1, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/fredrik-johansson/mpmath/master/README.rst", "_readme_localurl": "fredrik-johansson~mpmath~README.rst", @@ -43350,61 +59627,6 @@ "fredrik-johansson~mpmath~setup.py" ] }, - { - "index": 593, - "category": "gis", - "githuburl": "https://github.com/matplotlib/basemap", - "featured": null, - "links": null, - "description": null, - "_repopath": "matplotlib/basemap", - "_reponame": "basemap", - "_stars": 703, - "_forks": 396, - "_watches": 60, - "_topics": [ - "gis", - "maps", - "plots" - ], - "_language": "Python", - "_homepage": "", - "_description": "basemap: Plot on map projections (with coastlines and political boundaries) using matplotlib", - "_organization": "matplotlib", - "_updated_at": "2022-12-12T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", - "_created_at": "2011-02-19T00:00:00.000Z", - "_age_weeks": 617, - "_stars_per_week": 1.14, - "_pop_contributor_count": 69, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "eccc", - "germanaerospacecenter(dlr)" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.77, - "_pop_updated_issues_count": 24, - "_pop_closed_issues_count": 19, - "_pop_created_since_days": 144, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 7, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 24.0, - "_pop_comment_count": 40.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 606, - "_pop_score": 53.56, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/matplotlib/basemap/master/README.md", - "_readme_localurl": "matplotlib~basemap~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 701, "category": "profiling", @@ -43414,9 +59636,17 @@ "description": null, "_repopath": "pythonspeed/filprofiler", "_reponame": "filprofiler", - "_stars": 700, + "_stars": 722, "_forks": 21, "_watches": 9, + "_language": "Rust", + "_homepage": "https://pythonspeed.com/products/filmemoryprofiler/", + "_description": "filprofiler: A Python memory profiler for data processing and scientific computing applications", + "_organization": "pythonspeed", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-06-18T00:00:00.000Z", + "_age_weeks": 139, + "_stars_per_week": 5.16, "_topics": [ "python", "memory-profiler", @@ -43428,38 +59658,45 @@ "memory", "memory-" ], - "_language": "Rust", - "_homepage": "https://pythonspeed.com/products/filmemoryprofiler/", - "_description": "filprofiler: A Python memory profiler for data processing and scientific computing applications", - "_organization": "pythonspeed", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2020-06-18T00:00:00.000Z", - "_age_weeks": 130, - "_stars_per_week": 5.36, + "_last_commit_date": "2023-02-14T00:00:00.000Z", "_pop_contributor_count": 6, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "PLNech@algolia", + "bast@uit-noneicnordic", + "dependabot[bot]", + "itamarst", + "pythonspeed@hyphenatedenterprises", + "whalesalad@whalesalad" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "algolia", "hyphenatedenterprises", + "uit-noneicnordic", "whalesalad" ], + "_pop_contributor_orgs_raw": [ + "@uit-no @neicnordic", + "Algolia", + "Hyphenated Enterprises LLC", + "WHALESALAD" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.08, - "_pop_updated_issues_count": 61, - "_pop_closed_issues_count": 46, - "_pop_created_since_days": 30, + "_pop_commit_frequency": 3.33, + "_pop_updated_issues_count": 36, + "_pop_closed_issues_count": 25, + "_pop_created_since_days": 33, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 14, - "_pop_recent_releases_estimated_tags": 25, - "_pop_recent_releases_adjusted_count": 14, - "_pop_issue_count": 61.0, - "_pop_comment_count": 58.0, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 23, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 36.0, + "_pop_comment_count": 24.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 6, - "_pop_score": 39.77, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 36.12, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pythonspeed/filprofiler/master/README.md", "_readme_localurl": "pythonspeed~filprofiler~README.md", @@ -43477,69 +59714,161 @@ ] }, { - "index": 325, - "category": "security", - "githuburl": "https://github.com/trailofbits/pip-audit", + "index": 621, + "category": "testing", + "githuburl": "https://github.com/wolever/parameterized", "featured": null, "links": null, "description": null, - "_repopath": "trailofbits/pip-audit", - "_reponame": "pip-audit", - "_stars": 696, - "_forks": 44, - "_watches": 19, - "_topics": [ - "security", - "security-audit", - "python", - "pip", - "supply-chain" - ], + "_repopath": "wolever/parameterized", + "_reponame": "parameterized", + "_stars": 720, + "_forks": 96, + "_watches": 18, "_language": "Python", - "_homepage": "https://pypi.org/project/pip-audit/", - "_description": "pip-audit: Audits Python environments and dependency trees for known vulnerabilities", - "_organization": "trailofbits", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2021-09-02T00:00:00.000Z", - "_age_weeks": 67, - "_stars_per_week": 10.3, - "_pop_contributor_count": 18, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_homepage": "", + "_description": "Parameterized testing with any Python test framework", + "_organization": "wolever", + "_updated_at": "2023-02-14T00:00:00.000Z", + "_created_at": "2012-03-10T00:00:00.000Z", + "_age_weeks": 571, + "_stars_per_week": 1.26, + "_topics": [], + "_last_commit_date": "2021-01-09T00:00:00.000Z", + "_pop_contributor_count": 24, + "_pop_contributor_logins": [ + "AlexRiina@klaviyo", + "charlsagente", + "curtissiemens@zillow.com", + "danielbradburn@crunchr", + "duncan-webb", + "ntflc", + "shazow", + "smspillaz", + "ukinau", + "wolever@sheertex" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "digitalr00ts", - "google", - "trailofbits" + "crunchr", + "klaviyo", + "sheertex", + "zillow.com" + ], + "_pop_contributor_orgs_raw": [ + "@crunchr ", + "@klaviyo", + "Sheertex", + "Zillow.com" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.63, - "_pop_updated_issues_count": 77, - "_pop_closed_issues_count": 64, - "_pop_created_since_days": 16, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 22, - "_pop_recent_releases_estimated_tags": 30, - "_pop_recent_releases_adjusted_count": 22, - "_pop_issue_count": 77.0, - "_pop_comment_count": 183.0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 133, + "_pop_updated_since_days": 26, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 9.0, + "_pop_comment_count": 7.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.4, - "_pop_dependents_count": 95, - "_pop_score": 49.36, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/trailofbits/pip-audit/master/README.md", - "_readme_localurl": "trailofbits~pip-audit~README.md", + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 25.79, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/wolever/parameterized/master/README.rst", + "_readme_localurl": "wolever~parameterized~README.rst", "_requirements_filenames": [ - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/trailofbits/pip-audit/master/pyproject.toml" + "https://raw.githubusercontent.com/wolever/parameterized/master/setup.py" ], "_requirements_localurls": [ - "trailofbits~pip-audit~pyproject.toml" + "wolever~parameterized~setup.py" ] }, + { + "index": 358, + "category": "data", + "githuburl": "https://github.com/hyperqueryhq/whale", + "featured": null, + "links": null, + "description": null, + "_repopath": "hyperqueryhq/whale", + "_reponame": "whale", + "_stars": 719, + "_forks": 38, + "_watches": 41, + "_language": "Python", + "_homepage": "https://rsyi.gitbook.io/whale", + "_description": "whale: \ud83d\udc33 The stupidly simple CLI workspace for your data warehouse.", + "_organization": "hyperqueryhq", + "_updated_at": "2023-02-01T00:00:00.000Z", + "_created_at": "2020-05-27T00:00:00.000Z", + "_age_weeks": 143, + "_stars_per_week": 5.03, + "_topics": [ + "data-documentation", + "data-catalog", + "data-discovery" + ], + "_last_commit_date": "2022-10-13T00:00:00.000Z", + "_pop_contributor_count": 17, + "_pop_contributor_logins": [ + "bachng2017@nttcommunications", + "biomunky", + "cantzakas@vmware", + "dependabot[bot]", + "jhh3000@dataframehq", + "jwodder", + "manuelzander", + "peterthesling@shopify", + "rsyi@dataframe", + "yosupmoon@harvarduniversity" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "dataframe", + "dataframehq", + "harvarduniversity", + "nttcommunications", + "shopify", + "vmware" + ], + "_pop_contributor_orgs_raw": [ + "@dataframehq", + "@vmware", + "Dataframe", + "Harvard University", + "NTT Communications", + "Shopify" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.13, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 33, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 5.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 0, + "_pop_score": 29.49, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/hyperqueryhq/whale/master/README.md", + "_readme_localurl": "hyperqueryhq~whale~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 477, "category": "pandas", @@ -43549,46 +59878,68 @@ "description": null, "_repopath": "holoviz/hvplot", "_reponame": "hvplot", - "_stars": 688, - "_forks": 78, - "_watches": 24, + "_stars": 716, + "_forks": 80, + "_watches": 23, + "_language": "Python", + "_homepage": "https://hvplot.holoviz.org", + "_description": "hvplot: A high-level plotting API for pandas, dask, xarray, and networkx built on HoloViews", + "_organization": "holoviz", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-03-19T00:00:00.000Z", + "_age_weeks": 257, + "_stars_per_week": 2.78, "_topics": [ "holoviz", "holoviews", "plotting", "datashader" ], - "_language": "Python", - "_homepage": "https://hvplot.holoviz.org", - "_description": "hvplot: A high-level plotting API for pandas, dask, xarray, and networkx built on HoloViews", - "_organization": "holoviz", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2018-03-19T00:00:00.000Z", - "_age_weeks": 248, - "_stars_per_week": 2.77, + "_last_commit_date": "2023-02-10T00:00:00.000Z", "_pop_contributor_count": 39, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Hoxbro", + "MarcSkovMadsen@data,modelsandanalytics", + "MridulS", + "ahuang11@prefect!", + "ceball", + "jbednar@anaconda", + "jlstevens", + "jsignell@azavea", + "maximlt@anaconda", + "philippjfr@anaconda" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "anaconda", - "azavea" + "azavea", + "data,modelsandanalytics", + "prefect!" + ], + "_pop_contributor_orgs_raw": [ + "@azavea", + "Anaconda", + "Anaconda Inc.", + "Anaconda, Inc.", + "Data, models and analytics", + "Prefect!" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.21, - "_pop_updated_issues_count": 269, - "_pop_closed_issues_count": 74, - "_pop_created_since_days": 58, + "_pop_commit_frequency": 2.04, + "_pop_updated_issues_count": 139, + "_pop_closed_issues_count": 23, + "_pop_created_since_days": 60, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 3, "_pop_recent_releases_estimated_tags": 22, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 269.0, - "_pop_comment_count": 239.0, + "_pop_issue_count": 139.0, + "_pop_comment_count": 98.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 10, - "_pop_score": 43.91, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 40.4, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/holoviz/hvplot/master/README.md", "_readme_localurl": "holoviz~hvplot~README.md", @@ -43605,6 +59956,85 @@ "holoviz~hvplot~pyproject.toml" ] }, + { + "index": 593, + "category": "gis", + "githuburl": "https://github.com/matplotlib/basemap", + "featured": null, + "links": null, + "description": null, + "_repopath": "matplotlib/basemap", + "_reponame": "basemap", + "_stars": 710, + "_forks": 395, + "_watches": 60, + "_language": "Python", + "_homepage": "", + "_description": "basemap: Plot on map projections (with coastlines and political boundaries) using matplotlib", + "_organization": "matplotlib", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2011-02-19T00:00:00.000Z", + "_age_weeks": 626, + "_stars_per_week": 1.13, + "_topics": [ + "gis", + "maps", + "plots" + ], + "_last_commit_date": "2022-11-29T00:00:00.000Z", + "_pop_contributor_count": 69, + "_pop_contributor_logins": [ + "DWesl", + "WeatherGod@atmosphericandenvironmentalresearch", + "efiring@universityofhawaii", + "guziy@eccc", + "j08lue@developmentseed", + "joferkington@planetlabs", + "jswhit", + "micahcochran", + "molinav@germanaerospacecenter(dlr)", + "ocefpaf" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "atmosphericandenvironmentalresearch", + "developmentseed", + "eccc", + "germanaerospacecenter(dlr)", + "planetlabs", + "universityofhawaii" + ], + "_pop_contributor_orgs_raw": [ + "@planetlabs ", + "Atmospheric and Environmental Research, Inc.", + "Development Seed", + "ECCC", + "German Aerospace Center (DLR)", + "University of Hawaii" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.12, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 146, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 5.0, + "_pop_comment_count": 21.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 4.2, + "_pop_dependents_count": 0, + "_pop_score": 43.65, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/matplotlib/basemap/master/README.md", + "_readme_localurl": "matplotlib~basemap~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 360, "category": "ml-ops", @@ -43614,40 +60044,57 @@ "description": null, "_repopath": "tensorflow/data-validation", "_reponame": "data-validation", - "_stars": 686, - "_forks": 144, - "_watches": 48, - "_topics": [], + "_stars": 699, + "_forks": 149, + "_watches": 49, "_language": "Python", "_homepage": "", "_description": "data-validation: Library for exploring and validating machine learning data", "_organization": "tensorflow", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2018-07-02T00:00:00.000Z", - "_age_weeks": 233, - "_stars_per_week": 2.94, + "_age_weeks": 242, + "_stars_per_week": 2.89, + "_topics": [], + "_last_commit_date": "2023-02-17T00:00:00.000Z", "_pop_contributor_count": 25, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "abdel91", + "brills", + "caveness", + "etiennedaspe", + "npoly", + "paulgc@google", + "santosh-d3vpl3x", + "terrytangyuan@akuity", + "tfx-copybara", + "zwestrick" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "akuity", "google" ], + "_pop_contributor_orgs_raw": [ + "@akuity", + "@google " + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.98, - "_pop_updated_issues_count": 19, - "_pop_closed_issues_count": 13, - "_pop_created_since_days": 54, + "_pop_commit_frequency": 2.5, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 56, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 7, + "_pop_recent_releases_count": 6, "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 19.0, - "_pop_comment_count": 26.0, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 10.0, + "_pop_comment_count": 15.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 572, - "_pop_score": 47.29, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 36.9, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/tensorflow/data-validation/master/README.md", "_readme_localurl": "tensorflow~data-validation~README.md", @@ -43673,9 +60120,17 @@ "description": null, "_repopath": "openeventdata/mordecai", "_reponame": "mordecai", - "_stars": 684, - "_forks": 94, - "_watches": 35, + "_stars": 693, + "_forks": 93, + "_watches": 36, + "_language": "Python", + "_homepage": "", + "_description": "mordecai: Full text geoparsing as a Python library", + "_organization": "openeventdata", + "_updated_at": "2023-02-05T00:00:00.000Z", + "_created_at": "2016-06-23T00:00:00.000Z", + "_age_weeks": 347, + "_stars_per_week": 1.99, "_topics": [ "geoparsing", "geonames", @@ -43684,39 +60139,44 @@ "spacy", "toponym-resolution" ], - "_language": "Python", - "_homepage": "", - "_description": "mordecai: Full text geoparsing as a Python library", - "_organization": "openeventdata", - "_updated_at": "2022-12-08T00:00:00.000Z", "_last_commit_date": "2021-02-01T00:00:00.000Z", - "_created_at": "2016-06-23T00:00:00.000Z", - "_age_weeks": 338, - "_stars_per_week": 2.02, "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "ahalterman@msupoliticalscience", + "arfon@github", + "chilland@maxar", + "johnb30", + "riordan@phillymedia" + ], "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "github", "maxar", "msupoliticalscience", "phillymedia" ], + "_pop_contributor_orgs_raw": [ + "@github", + "@phillymedia ", + "MSU Political Science", + "Maxar" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 2, + "_pop_updated_issues_count": 3, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 79, - "_pop_updated_since_days": 23, + "_pop_created_since_days": 81, + "_pop_updated_since_days": 25, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 2.0, - "_pop_comment_count": 2.0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 4, - "_pop_score": 24.05, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 21.82, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/openeventdata/mordecai/master/README.md", "_readme_localurl": "openeventdata~mordecai~README.md", @@ -43733,6 +60193,180 @@ "openeventdata~mordecai~setup.py" ] }, + { + "index": 818, + "category": "ml", + "githuburl": "https://github.com/automl/tabpfn", + "featured": null, + "links": null, + "description": null, + "_repopath": "automl/tabpfn", + "_reponame": "TabPFN", + "_stars": 692, + "_forks": 49, + "_watches": 16, + "_language": "Python", + "_homepage": "https://arxiv.org/abs/2207.01848", + "_description": "TabPFN: Official implementation of the TabPFN and the tabpfn package.", + "_organization": "automl", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-07-01T00:00:00.000Z", + "_age_weeks": 33, + "_stars_per_week": 20.53, + "_topics": [], + "_last_commit_date": "2023-02-05T00:00:00.000Z", + "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "David-Schnurr", + "SamuelGabriel", + "eddiebergman@automl.org", + "frank-hutter@universityoffreiburg", + "noahho", + "tabpfn-anonym" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "automl.org", + "universityoffreiburg" + ], + "_pop_contributor_orgs_raw": [ + "University of Freiburg ", + "automl.org" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.35, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 8, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 12.0, + "_pop_comment_count": 37.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.1, + "_pop_dependents_count": 0, + "_pop_score": 25.99, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/automl/tabpfn/master/README.md", + "_readme_localurl": "automl~tabpfn~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/automl/tabpfn/master/requirements.txt", + "https://raw.githubusercontent.com/automl/tabpfn/master/setup.py", + "https://raw.githubusercontent.com/automl/tabpfn/master/pyproject.toml" + ], + "_requirements_localurls": [ + "automl~tabpfn~requirements.txt", + "automl~tabpfn~setup.py", + "automl~tabpfn~pyproject.toml" + ] + }, + { + "index": 620, + "category": "jupyter", + "githuburl": "https://github.com/nbqa-dev/nbqa", + "featured": null, + "links": null, + "description": null, + "_repopath": "nbqa-dev/nbqa", + "_reponame": "nbQA", + "_stars": 692, + "_forks": 35, + "_watches": 7, + "_language": "Python", + "_homepage": "https://nbqa.readthedocs.io/en/latest/index.html", + "_description": "nbQA: Run isort, pyupgrade, mypy, pylint, flake8, and more on Jupyter Notebooks", + "_organization": "nbqa-dev", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2020-07-11T00:00:00.000Z", + "_age_weeks": 136, + "_stars_per_week": 5.07, + "_topics": [ + "python", + "jupyter-notebook", + "pre-commit", + "codequality", + "lint", + "isort", + "black", + "flake8", + "doctest", + "pyupgrade", + "pylint", + "mypy", + "yapf", + "pre-commit-hook" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 23, + "_pop_contributor_logins": [ + "MarcoGorelli@quansight", + "allcontributors[bot]", + "bdice@nvidia", + "caioariede@tesorio", + "girip11", + "janosh@cambridgeuniversity", + "neomatrix369@seniorsoftware,data,mlengnr(self-employed)", + "pre-commit-ci[bot]", + "s-weigand", + "tovrstra@ghentuniversity" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "cambridgeuniversity", + "ghentuniversity", + "nvidia", + "quansight", + "seniorsoftware,data,mlengnr(self-employed)", + "tesorio" + ], + "_pop_contributor_orgs_raw": [ + "@NVIDIA", + "@Tesorio", + "Cambridge University", + "Ghent University", + "Quansight", + "Senior Software, Data, ML Engnr (Self-employed)" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.27, + "_pop_updated_issues_count": 28, + "_pop_closed_issues_count": 26, + "_pop_created_since_days": 32, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 32, + "_pop_recent_releases_adjusted_count": 32, + "_pop_issue_count": 28.0, + "_pop_comment_count": 48.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 43.0, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nbqa-dev/nbqa/master/README.md", + "_readme_localurl": "nbqa-dev~nbqa~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/nbqa-dev/nbqa/master/setup.py", + "https://raw.githubusercontent.com/nbqa-dev/nbqa/master/pyproject.toml" + ], + "_requirements_localurls": [ + "nbqa-dev~nbqa~setup.py", + "nbqa-dev~nbqa~pyproject.toml" + ] + }, { "index": 572, "category": "gis", @@ -43742,34 +60376,58 @@ "description": null, "_repopath": "developmentseed/landsat-util", "_reponame": "landsat-util", - "_stars": 681, + "_stars": 684, "_forks": 155, - "_watches": 125, - "_topics": [], + "_watches": 127, "_language": "Python", "_homepage": null, "_description": "landsat-util: A utility to search, download and process Landsat 8 satellite imagery", "_organization": "developmentseed", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2018-07-30T00:00:00.000Z", + "_updated_at": "2023-02-17T00:00:00.000Z", "_created_at": "2014-08-01T00:00:00.000Z", - "_age_weeks": 437, - "_stars_per_week": 1.56, + "_age_weeks": 446, + "_stars_per_week": 1.53, + "_topics": [], + "_last_commit_date": "2018-07-30T00:00:00.000Z", "_pop_contributor_count": 24, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "angevineMiller@ucsdschoolofmedicine", + "astrojuanlu@kedro-org", + "drewbo@cloud-gov(work)+personalprojects;", + "julesair@ledgy", + "kamicut@developmentseed", + "lpinner", + "matthewhanson@element84", + "mileswwatkins", + "njwilson23@fortyninemaps", + "scisco" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "cloud-gov(work)+personalprojects;", "developmentseed", "element84", - "ledgy" + "fortyninemaps", + "kedro-org", + "ledgy", + "ucsdschoolofmedicine" + ], + "_pop_contributor_orgs_raw": [ + "@Ledgy ", + "@cloud-gov (work) + personal projects; ", + "@developmentseed ", + "@element84", + "@fortyninemaps", + "@kedro-org", + "UCSD School of Medicine" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 102, - "_pop_updated_since_days": 53, + "_pop_created_since_days": 104, + "_pop_updated_since_days": 56, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 2, @@ -43777,8 +60435,8 @@ "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 11, - "_pop_score": 24.79, + "_pop_dependents_count": 0, + "_pop_score": 22.55, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/developmentseed/landsat-util/master/README.rst", "_readme_localurl": "developmentseed~landsat-util~README.rst", @@ -43804,44 +60462,65 @@ "description": null, "_repopath": "klen/py-frameworks-bench", "_reponame": "py-frameworks-bench", - "_stars": 673, - "_forks": 78, - "_watches": 28, - "_topics": [ - "benchmark", - "python-frameworks" - ], + "_stars": 682, + "_forks": 81, + "_watches": 27, "_language": "Python", "_homepage": "https://klen.github.io/py-frameworks-bench/", "_description": "py-frameworks-bench: Another benchmark for some python frameworks", "_organization": "klen", - "_updated_at": "2022-12-11T00:00:00.000Z", - "_last_commit_date": "2022-03-14T00:00:00.000Z", + "_updated_at": "2023-01-21T00:00:00.000Z", "_created_at": "2015-04-30T00:00:00.000Z", - "_age_weeks": 398, - "_stars_per_week": 1.69, + "_age_weeks": 407, + "_stars_per_week": 1.67, + "_topics": [ + "benchmark", + "python-frameworks" + ], + "_last_commit_date": "2022-03-14T00:00:00.000Z", "_pop_contributor_count": 10, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Kludex@encode", + "abersheeran@get-post-technology", + "alkorgun", + "dependabot[bot]", + "gi0baro", + "github-actions[bot]", + "hawkowl@redhat", + "iurisilvio@buser", + "klen@home" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "buser", + "encode", "get-post-technology", + "home", + "redhat" + ], + "_pop_contributor_orgs_raw": [ + "@encode", + "@get-post-technology", + "Buser", + "Red Hat", "home" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.44, - "_pop_updated_issues_count": 17, - "_pop_closed_issues_count": 10, - "_pop_created_since_days": 93, - "_pop_updated_since_days": 9, + "_pop_commit_frequency": 0.12, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 9, + "_pop_created_since_days": 95, + "_pop_updated_since_days": 11, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 17.0, + "_pop_issue_count": 16.0, "_pop_comment_count": 9.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, + "_pop_comment_frequency": 0.6, "_pop_dependents_count": 0, - "_pop_score": 25.98, + "_pop_score": 28.72, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/klen/py-frameworks-bench/master/README.md", "_readme_localurl": "klen~py-frameworks-bench~README.md", @@ -43850,76 +60529,144 @@ "_requirements_localurls": [] }, { - "index": 164, - "category": "nlp", - "githuburl": "https://github.com/explosion/spacy-stanza", + "index": 882, + "category": "time-series", + "githuburl": "https://github.com/winedarksea/autots", "featured": null, "links": null, "description": null, - "_repopath": "explosion/spacy-stanza", - "_reponame": "spacy-stanza", - "_stars": 662, - "_forks": 50, - "_watches": 25, + "_repopath": "winedarksea/autots", + "_reponame": "AutoTS", + "_stars": 678, + "_forks": 65, + "_watches": 14, + "_language": "Python", + "_homepage": "", + "_description": "AutoTS: Automated Time Series Forecasting", + "_organization": "winedarksea", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-11-26T00:00:00.000Z", + "_age_weeks": 169, + "_stars_per_week": 4.01, "_topics": [ - "nlp", - "natural-language-processing", + "time-series", "machine-learning", - "data-science", - "spacy", - "spacy-pipeline", - "stanford-nlp", - "stanford-corenlp", - "stanford-machine-learning", - "corenlp", - "stanza" + "automl", + "autots", + "forecasting", + "deep-learning", + "preprocessing", + "feature-engineering" + ], + "_last_commit_date": "2023-02-02T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "winedarksea" + ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.23, + "_pop_updated_issues_count": 13, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 39, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 13.0, + "_pop_comment_count": 30.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 24.14, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/winedarksea/autots/master/README.md", + "_readme_localurl": "winedarksea~autots~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/winedarksea/autots/master/setup.py" + ], + "_requirements_localurls": [ + "winedarksea~autots~setup.py" + ] + }, + { + "index": 741, + "category": "data", + "githuburl": "https://github.com/koaning/human-learn", + "featured": null, + "links": null, + "description": null, + "_repopath": "koaning/human-learn", + "_reponame": "human-learn", + "_stars": 677, + "_forks": 54, + "_watches": 13, + "_language": "Jupyter Notebook", + "_homepage": "https://koaning.github.io/human-learn/", + "_description": "human-learn: Natural Intelligence is still a pretty good idea.", + "_organization": "koaning", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-07-11T00:00:00.000Z", + "_age_weeks": 136, + "_stars_per_week": 4.96, + "_topics": [ + "scikit-learn", + "machine-learning", + "benchmark" + ], + "_last_commit_date": "2021-10-05T00:00:00.000Z", + "_pop_contributor_count": 5, + "_pop_contributor_logins": [ + "kayhoogland@floryn", + "koaning@explosion", + "nthomsencph@nttdatabusinesssolutions", + "ogabrielluiz", + "synapticarbors" ], - "_language": "Python", - "_homepage": "", - "_description": "spacy-stanza: \ud83d\udca5 Use the latest Stanza (StanfordNLP) research models directly in spaCy", - "_organization": "explosion", - "_updated_at": "2022-12-09T00:00:00.000Z", - "_last_commit_date": "2022-05-27T00:00:00.000Z", - "_created_at": "2019-01-31T00:00:00.000Z", - "_age_weeks": 202, - "_stars_per_week": 3.27, - "_pop_contributor_count": 7, "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "founderexplosion", - "graphext", - "lt3kuleuven" + "explosion", + "floryn", + "nttdatabusinesssolutions" + ], + "_pop_contributor_orgs_raw": [ + "@explosion", + "Floryn", + "NTT Data Business Solutions" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.06, - "_pop_updated_issues_count": 0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 2, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 47, - "_pop_updated_since_days": 7, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, + "_pop_created_since_days": 32, + "_pop_updated_since_days": 17, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 10.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, + "_pop_comment_frequency": 5.0, "_pop_dependents_count": 0, - "_pop_score": 18.28, + "_pop_score": 21.6, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/explosion/spacy-stanza/master/README.md", - "_readme_localurl": "explosion~spacy-stanza~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/koaning/human-learn/master/README.md", + "_readme_localurl": "koaning~human-learn~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/explosion/spacy-stanza/master/requirements.txt", - "https://raw.githubusercontent.com/explosion/spacy-stanza/master/setup.py" + "https://raw.githubusercontent.com/koaning/human-learn/master/setup.py" ], "_requirements_localurls": [ - "explosion~spacy-stanza~requirements.txt", - "explosion~spacy-stanza~setup.py" + "koaning~human-learn~setup.py" ] }, { @@ -43931,9 +60678,17 @@ "description": null, "_repopath": "sentinel-hub/sentinelhub-py", "_reponame": "sentinelhub-py", - "_stars": 655, - "_forks": 213, - "_watches": 48, + "_stars": 674, + "_forks": 218, + "_watches": 47, + "_language": "Python", + "_homepage": "http://sentinelhub-py.readthedocs.io/en/latest/", + "_description": "sentinelhub-py: Download and process satellite imagery in Python using Sentinel Hub services.", + "_organization": "sentinel-hub", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2017-05-17T00:00:00.000Z", + "_age_weeks": 301, + "_stars_per_week": 2.24, "_topics": [ "python-library", "sentinel-hub", @@ -43941,38 +60696,51 @@ "ogc-services", "satellite-imagery" ], - "_language": "Python", - "_homepage": "http://sentinelhub-py.readthedocs.io/en/latest/", - "_description": "sentinelhub-py: Download and process satellite imagery in Python using Sentinel Hub services.", - "_organization": "sentinel-hub", - "_updated_at": "2022-12-11T00:00:00.000Z", - "_last_commit_date": "2022-10-06T00:00:00.000Z", - "_created_at": "2017-05-17T00:00:00.000Z", - "_age_weeks": 291, - "_stars_per_week": 2.25, - "_pop_contributor_count": 40, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 44, + "_pop_contributor_logins": [ + "AleksMat@google", + "andrejburja", + "batic@sinergise", + "blazs", + "devisperessutti@sinergisesentinel-hub", + "iovsn", + "jgersak", + "mlubej@eoresearchteamsinergise", + "rmocnik@sinergise", + "zigaLuksic@sinergise" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "eoresearchteamsinergise", "google", - "sinergise" + "sinergise", + "sinergisesentinel-hub" + ], + "_pop_contributor_orgs_raw": [ + "@Sinergise", + "@sinergise ", + "@sinergise @sentinel-hub ", + "EO Research Team @ Sinergise", + "Google", + "Sinergise" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.83, - "_pop_updated_issues_count": 29, - "_pop_closed_issues_count": 27, - "_pop_created_since_days": 68, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 12, + "_pop_commit_frequency": 4.67, + "_pop_updated_issues_count": 65, + "_pop_closed_issues_count": 64, + "_pop_created_since_days": 70, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 13, "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 29.0, - "_pop_comment_count": 18.0, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 65.0, + "_pop_comment_count": 37.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 335, - "_pop_score": 49.09, + "_pop_dependents_count": 0, + "_pop_score": 44.3, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/sentinel-hub/sentinelhub-py/master/README.md", "_readme_localurl": "sentinel-hub~sentinelhub-py~README.md", @@ -43992,142 +60760,6 @@ "sentinel-hub~sentinelhub-py~pyproject.toml" ] }, - { - "index": 818, - "category": "ml", - "githuburl": "https://github.com/automl/tabpfn", - "featured": null, - "links": null, - "description": null, - "_repopath": "automl/tabpfn", - "_reponame": "TabPFN", - "_stars": 654, - "_forks": 44, - "_watches": 15, - "_topics": [], - "_language": "Python", - "_homepage": "https://arxiv.org/abs/2207.01848", - "_description": "TabPFN: Official implementation of the TabPFN and the tabpfn package.", - "_organization": "automl", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-09T00:00:00.000Z", - "_created_at": "2022-07-01T00:00:00.000Z", - "_age_weeks": 24, - "_stars_per_week": 26.77, - "_pop_contributor_count": 6, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "automl.org" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.31, - "_pop_updated_issues_count": 23, - "_pop_closed_issues_count": 22, - "_pop_created_since_days": 6, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 23.0, - "_pop_comment_count": 45.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 0, - "_pop_score": 24.61, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/automl/tabpfn/master/README.md", - "_readme_localurl": "automl~tabpfn~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/automl/tabpfn/master/requirements.txt", - "https://raw.githubusercontent.com/automl/tabpfn/master/setup.py", - "https://raw.githubusercontent.com/automl/tabpfn/master/pyproject.toml" - ], - "_requirements_localurls": [ - "automl~tabpfn~requirements.txt", - "automl~tabpfn~setup.py", - "automl~tabpfn~pyproject.toml" - ] - }, - { - "index": 620, - "category": "jupyter", - "githuburl": "https://github.com/nbqa-dev/nbqa", - "featured": null, - "links": null, - "description": null, - "_repopath": "nbqa-dev/nbqa", - "_reponame": "nbQA", - "_stars": 646, - "_forks": 36, - "_watches": 7, - "_topics": [ - "python", - "jupyter-notebook", - "pre-commit", - "codequality", - "lint", - "isort", - "black", - "flake8", - "doctest", - "pyupgrade", - "pylint", - "mypy", - "yapf", - "pre-commit-hook" - ], - "_language": "Python", - "_homepage": "https://nbqa.readthedocs.io/en/latest/index.html", - "_description": "nbQA: Run isort, pyupgrade, mypy, pylint, flake8, and more on Jupyter Notebooks", - "_organization": "nbqa-dev", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-12-11T00:00:00.000Z", - "_created_at": "2020-07-11T00:00:00.000Z", - "_age_weeks": 127, - "_stars_per_week": 5.08, - "_pop_contributor_count": 22, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "quansight" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.19, - "_pop_updated_issues_count": 36, - "_pop_closed_issues_count": 31, - "_pop_created_since_days": 30, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 33, - "_pop_recent_releases_adjusted_count": 33, - "_pop_issue_count": 36.0, - "_pop_comment_count": 56.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 674, - "_pop_score": 48.33, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nbqa-dev/nbqa/master/README.md", - "_readme_localurl": "nbqa-dev~nbqa~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/nbqa-dev/nbqa/master/setup.py", - "https://raw.githubusercontent.com/nbqa-dev/nbqa/master/pyproject.toml" - ], - "_requirements_localurls": [ - "nbqa-dev~nbqa~setup.py", - "nbqa-dev~nbqa~pyproject.toml" - ] - }, { "index": 629, "category": "gis", @@ -44137,9 +60769,17 @@ "description": null, "_repopath": "makepath/xarray-spatial", "_reponame": "xarray-spatial", - "_stars": 645, - "_forks": 73, - "_watches": 25, + "_stars": 672, + "_forks": 76, + "_watches": 24, + "_language": "Python", + "_homepage": "https://xarray-spatial.org", + "_description": "xarray-spatial: Raster-based Spatial Analytics for Python", + "_organization": "makepath", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-02-08T00:00:00.000Z", + "_age_weeks": 158, + "_stars_per_week": 4.24, "_topics": [ "python", "raster-analysis", @@ -44148,37 +60788,50 @@ "datashader", "xarray" ], - "_language": "Python", - "_homepage": "https://xarray-spatial.org", - "_description": "xarray-spatial: Raster-based Spatial Analytics for Python", - "_organization": "makepath", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-06-22T00:00:00.000Z", - "_created_at": "2020-02-08T00:00:00.000Z", - "_age_weeks": 149, - "_stars_per_week": 4.32, + "_last_commit_date": "2023-02-16T00:00:00.000Z", "_pop_contributor_count": 28, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "SapirLastimoza-Dooley@esri", + "a7az0th@software-supreme", + "brendancol@makepath", + "calexat-123", + "chase-dwelle", + "giancastro@makepath", + "ianthomas23@anaconda", + "kristinepetrosyan", + "marcozimmermannpm", + "thuydotm@makepath" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "anaconda", - "makepath" + "esri", + "makepath", + "software-supreme" + ], + "_pop_contributor_orgs_raw": [ + "@makepath", + "@makepath ", + "Anaconda, Inc.", + "Esri", + "Software-Supreme" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.52, - "_pop_updated_issues_count": 82, - "_pop_closed_issues_count": 14, - "_pop_created_since_days": 35, - "_pop_updated_since_days": 6, - "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 13, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 82.0, - "_pop_comment_count": 11.0, + "_pop_commit_frequency": 1.02, + "_pop_updated_issues_count": 107, + "_pop_closed_issues_count": 41, + "_pop_created_since_days": 37, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 107.0, + "_pop_comment_count": 40.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.1, - "_pop_dependents_count": 12, - "_pop_score": 33.41, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 37.04, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/makepath/xarray-spatial/master/README.md", "_readme_localurl": "makepath~xarray-spatial~README.md", @@ -44199,66 +60852,175 @@ ] }, { - "index": 882, - "category": "time-series", - "githuburl": "https://github.com/winedarksea/autots", + "index": 164, + "category": "nlp", + "githuburl": "https://github.com/explosion/spacy-stanza", "featured": null, "links": null, "description": null, - "_repopath": "winedarksea/autots", - "_reponame": "AutoTS", - "_stars": 643, - "_forks": 60, - "_watches": 13, + "_repopath": "explosion/spacy-stanza", + "_reponame": "spacy-stanza", + "_stars": 672, + "_forks": 50, + "_watches": 26, + "_language": "Python", + "_homepage": "", + "_description": "spacy-stanza: \ud83d\udca5 Use the latest Stanza (StanfordNLP) research models directly in spaCy", + "_organization": "explosion", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2019-01-31T00:00:00.000Z", + "_age_weeks": 211, + "_stars_per_week": 3.17, "_topics": [ - "time-series", + "nlp", + "natural-language-processing", "machine-learning", - "automl", - "autots", - "forecasting", - "deep-learning", - "preprocessing", - "feature-engineering" + "data-science", + "spacy", + "spacy-pipeline", + "stanford-nlp", + "stanford-corenlp", + "stanford-machine-learning", + "corenlp", + "stanza" + ], + "_last_commit_date": "2022-05-27T00:00:00.000Z", + "_pop_contributor_count": 7, + "_pop_contributor_logins": [ + "BramVanroy@lt3kuleuven", + "SergeyShk@anna.money", + "adrianeboyd", + "buhrmann@graphext", + "honnibal@founderexplosion", + "ines@founderexplosion", + "yuhaozhang@stanforduniversity" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "anna.money", + "founderexplosion", + "graphext", + "lt3kuleuven", + "stanforduniversity" + ], + "_pop_contributor_orgs_raw": [ + "@graphext ", + "@lt3 @kuleuven", + "ANNA.MONEY", + "Founder @explosion ", + "Stanford University" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.06, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 9, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 4.0, + "_pop_comment_count": 5.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 24.76, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/explosion/spacy-stanza/master/README.md", + "_readme_localurl": "explosion~spacy-stanza~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/explosion/spacy-stanza/master/requirements.txt", + "https://raw.githubusercontent.com/explosion/spacy-stanza/master/setup.py" ], + "_requirements_localurls": [ + "explosion~spacy-stanza~requirements.txt", + "explosion~spacy-stanza~setup.py" + ] + }, + { + "index": 938, + "category": "web", + "githuburl": "https://github.com/koxudaxi/fastapi-code-generator", + "featured": null, + "links": null, + "description": null, + "_repopath": "koxudaxi/fastapi-code-generator", + "_reponame": "fastapi-code-generator", + "_stars": 662, + "_forks": 76, + "_watches": 14, "_language": "Python", - "_homepage": "", - "_description": "AutoTS: Automated Time Series Forecasting", - "_organization": "winedarksea", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2019-11-26T00:00:00.000Z", - "_age_weeks": 159, - "_stars_per_week": 4.02, - "_pop_contributor_count": 1, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_homepage": null, + "_description": "fastapi-code-generator: This code generator creates FastAPI app from an openapi file.", + "_organization": "koxudaxi", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2020-06-14T00:00:00.000Z", + "_age_weeks": 140, + "_stars_per_week": 4.71, + "_topics": [ + "fastapi", + "openapi", + "generator", + "python", + "pydantic" + ], + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 18, + "_pop_contributor_logins": [ + "allen-munsch", + "baophamtd", + "david-westreicher", + "dependabot-preview[bot]", + "dependabot[bot]", + "ioggstream@teamdigitale", + "koxudaxi@tractabletractableai", + "n0nvme", + "rominf@aiven", + "ytoml" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "aiven", + "teamdigitale", + "tractabletractableai" + ], + "_pop_contributor_orgs_raw": [ + "@teamdigitale", + "Aiven", + "Tractable @tractableai" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.35, - "_pop_updated_issues_count": 5, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 37, + "_pop_commit_frequency": 0.65, + "_pop_updated_issues_count": 33, + "_pop_closed_issues_count": 22, + "_pop_created_since_days": 33, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 12, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 5.0, - "_pop_comment_count": 14.0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 33.0, + "_pop_comment_count": 42.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.8, - "_pop_dependents_count": 5, - "_pop_score": 28.04, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 35.45, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/winedarksea/autots/master/README.md", - "_readme_localurl": "winedarksea~autots~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/koxudaxi/fastapi-code-generator/master/README.md", + "_readme_localurl": "koxudaxi~fastapi-code-generator~README.md", "_requirements_filenames": [ - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/winedarksea/autots/master/setup.py" + "https://raw.githubusercontent.com/koxudaxi/fastapi-code-generator/master/pyproject.toml" ], "_requirements_localurls": [ - "winedarksea~autots~setup.py" + "koxudaxi~fastapi-code-generator~pyproject.toml" ] }, { @@ -44270,9 +61032,17 @@ "description": null, "_repopath": "holoviz/holoviz", "_reponame": "holoviz", - "_stars": 636, - "_forks": 114, + "_stars": 659, + "_forks": 116, "_watches": 35, + "_language": "Python", + "_homepage": "https://holoviz.org/", + "_description": "holoviz: High-level tools to simplify visualization in Python.", + "_organization": "holoviz", + "_updated_at": "2023-02-16T00:00:00.000Z", + "_created_at": "2017-09-22T00:00:00.000Z", + "_age_weeks": 282, + "_stars_per_week": 2.33, "_topics": [ "holoviz", "holoviews", @@ -44282,37 +61052,47 @@ "hvplot", "colorcet" ], - "_language": "Python", - "_homepage": "https://holoviz.org/", - "_description": "holoviz: High-level tools to simplify visualization in Python.", - "_organization": "holoviz", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2017-09-22T00:00:00.000Z", - "_age_weeks": 273, - "_stars_per_week": 2.33, + "_last_commit_date": "2023-01-30T00:00:00.000Z", "_pop_contributor_count": 21, + "_pop_contributor_logins": [ + "Hoxbro", + "ceball", + "droumis", + "jbednar@anaconda", + "jlstevens", + "jsignell@azavea", + "kebowen730", + "maximlt@anaconda", + "philippjfr@anaconda", + "ppwadhwa" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "anaconda", "azavea" ], + "_pop_contributor_orgs_raw": [ + "@azavea", + "Anaconda", + "Anaconda Inc.", + "Anaconda, Inc." + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.46, - "_pop_updated_issues_count": 18, - "_pop_closed_issues_count": 8, - "_pop_created_since_days": 64, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.71, + "_pop_updated_issues_count": 20, + "_pop_closed_issues_count": 16, + "_pop_created_since_days": 66, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 13, - "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 18.0, - "_pop_comment_count": 54.0, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 20.0, + "_pop_comment_count": 39.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.0, - "_pop_dependents_count": 2, - "_pop_score": 40.93, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 36.98, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/holoviz/holoviz/master/README.md", "_readme_localurl": "holoviz~holoviz~README.md", @@ -44330,135 +61110,100 @@ ] }, { - "index": 741, - "category": "data", - "githuburl": "https://github.com/koaning/human-learn", + "index": 808, + "category": "web", + "githuburl": "https://github.com/s3rius/fastapi-template", "featured": null, "links": null, "description": null, - "_repopath": "koaning/human-learn", - "_reponame": "human-learn", - "_stars": 635, - "_forks": 51, - "_watches": 13, + "_repopath": "s3rius/fastapi-template", + "_reponame": "FastAPI-template", + "_stars": 659, + "_forks": 69, + "_watches": 12, + "_language": "Python", + "_homepage": "", + "_description": "FastAPI-template: Feature rich robust FastAPI template.", + "_organization": "s3rius", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2020-10-05T00:00:00.000Z", + "_age_weeks": 124, + "_stars_per_week": 5.3, "_topics": [ - "scikit-learn", - "machine-learning", - "benchmark" - ], - "_language": "Jupyter Notebook", - "_homepage": "https://koaning.github.io/human-learn/", - "_description": "human-learn: Natural Intelligence is still a pretty good idea.", - "_organization": "koaning", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2021-10-05T00:00:00.000Z", - "_created_at": "2020-07-11T00:00:00.000Z", - "_age_weeks": 127, - "_stars_per_week": 4.99, - "_pop_contributor_count": 5, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "explosion", - "floryn", - "nttdatabusinesssolutions" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 30, - "_pop_updated_since_days": 15, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 0, - "_pop_score": 13.37, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/koaning/human-learn/master/README.md", - "_readme_localurl": "koaning~human-learn~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/koaning/human-learn/master/setup.py" + "fastapi", + "cookiecutter", + "cookiecutter-template", + "cookiecutter-python3", + "sqlalchemy-orm", + "asynchronous", + "ormar", + "tortoise-orm", + "aerich", + "alembic", + "python3", + "asyncio", + "graphql", + "strawberry-graphql", + "opentelemetry", + "prometheus", + "sentry", + "fastapi-template", + "fastapi-boilerplate" ], - "_requirements_localurls": [ - "koaning~human-learn~setup.py" - ] - }, - { - "index": 344, - "category": "data", - "githuburl": "https://github.com/scikit-hep/awkward-1.0", - "featured": null, - "links": null, - "description": null, - "_repopath": "scikit-hep/awkward-1.0", - "_reponame": "awkward", - "_stars": 632, - "_forks": 64, - "_watches": 17, - "_topics": [ - "json", - "numpy", - "data-analysis", - "jagged-array", - "ragged-array", - "columnar-format", - "pandas", - "numba", - "apache-arrow", - "cern-root", - "scikit-hep", - "python" + "_last_commit_date": "2023-02-05T00:00:00.000Z", + "_pop_contributor_count": 13, + "_pop_contributor_logins": [ + "Bensebabillal", + "WP-LKL", + "am1ru1@infosec", + "anton-petrov", + "chandr-andr@iponweb", + "codeleta", + "gpkc@fyndiq", + "haluk@universityofnebraska-lincoln", + "s3rius", + "sorasful" ], - "_language": "Python", - "_homepage": "https://awkward-array.org", - "_description": "awkward: Manipulate JSON-like data with NumPy-like idioms.", - "_organization": "scikit-hep", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2019-08-14T00:00:00.000Z", - "_age_weeks": 174, - "_stars_per_week": 3.62, - "_pop_contributor_count": 35, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "princeton,iris-hep,pyhep,scikit-hep", - "purdueuniversity" + "fyndiq", + "infosec", + "iponweb", + "universityofnebraska-lincoln" + ], + "_pop_contributor_orgs_raw": [ + "@fyndiq", + "IPONWEB ", + "InfoSec", + "University of Nebraska-Lincoln" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 10.04, - "_pop_updated_issues_count": 362, - "_pop_closed_issues_count": 309, - "_pop_created_since_days": 41, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 42, - "_pop_recent_releases_estimated_tags": 61, - "_pop_recent_releases_adjusted_count": 42, - "_pop_issue_count": 362.0, - "_pop_comment_count": 923.0, + "_pop_commit_frequency": 1.08, + "_pop_updated_issues_count": 17, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 29, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 17.0, + "_pop_comment_count": 36.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 26, - "_pop_score": 53.69, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 0, + "_pop_score": 36.58, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/scikit-hep/awkward-1.0/master/README.md", - "_readme_localurl": "scikit-hep~awkward-1.0~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/s3rius/fastapi-template/master/README.md", + "_readme_localurl": "s3rius~fastapi-template~README.md", "_requirements_filenames": [ "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/scikit-hep/awkward-1.0/master/pyproject.toml" + "https://raw.githubusercontent.com/s3rius/fastapi-template/master/pyproject.toml" ], "_requirements_localurls": [ - "scikit-hep~awkward-1.0~pyproject.toml" + "s3rius~fastapi-template~pyproject.toml" ] }, { @@ -44470,45 +61215,63 @@ "description": null, "_repopath": "samuelcolvin/python-devtools", "_reponame": "python-devtools", - "_stars": 631, - "_forks": 31, + "_stars": 654, + "_forks": 33, "_watches": 8, - "_topics": [ - "python-devtools", - "python", - "devtools" - ], "_language": "Python", "_homepage": "https://python-devtools.helpmanual.io/", "_description": "python-devtools: Dev tools for python", "_organization": "samuelcolvin", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-11-28T00:00:00.000Z", + "_updated_at": "2023-02-18T00:00:00.000Z", "_created_at": "2017-08-20T00:00:00.000Z", - "_age_weeks": 278, - "_stars_per_week": 2.27, - "_pop_contributor_count": 10, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 287, + "_stars_per_week": 2.28, + "_topics": [ + "python-devtools", + "python", + "devtools" + ], + "_last_commit_date": "2023-02-06T00:00:00.000Z", + "_pop_contributor_count": 11, + "_pop_contributor_logins": [ + "0xsirsaif", + "AlwxSin@pik.pro", + "Cielquan", + "alexmojaki", + "aliereno", + "dependabot[bot]", + "pyup-bot@pyupio", + "samuelcolvin@pydantic", + "staticf0x", + "the-vty" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "pik.pro", "pydantic", "pyupio" ], + "_pop_contributor_orgs_raw": [ + "@pik.pro", + "@pydantic", + "@pyupio" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.29, - "_pop_updated_issues_count": 10, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 65, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 0.31, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 67, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 10.0, - "_pop_comment_count": 20.0, + "_pop_issue_count": 12.0, + "_pop_comment_count": 23.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 85, - "_pop_score": 38.4, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 33.96, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/samuelcolvin/python-devtools/master/README.md", "_readme_localurl": "samuelcolvin~python-devtools~README.md", @@ -44526,135 +61289,93 @@ ] }, { - "index": 640, + "index": 344, "category": "data", - "githuburl": "https://github.com/dask/fastparquet", + "githuburl": "https://github.com/scikit-hep/awkward-1.0", "featured": null, "links": null, "description": null, - "_repopath": "dask/fastparquet", - "_reponame": "fastparquet", - "_stars": 624, - "_forks": 161, - "_watches": 18, - "_topics": [ - "hacktoberfest" - ], + "_repopath": "scikit-hep/awkward-1.0", + "_reponame": "awkward", + "_stars": 648, + "_forks": 68, + "_watches": 17, "_language": "Python", - "_homepage": null, - "_description": "fastparquet: python implementation of the parquet columnar file format.", - "_organization": "dask", - "_updated_at": "2022-12-13T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2015-11-06T00:00:00.000Z", - "_age_weeks": 371, - "_stars_per_week": 1.68, - "_pop_contributor_count": 86, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "anaconda", - "coiled", - "confluentinc", - "steminc" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.06, - "_pop_updated_issues_count": 31, - "_pop_closed_issues_count": 25, - "_pop_created_since_days": 87, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 31.0, - "_pop_comment_count": 104.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.4, - "_pop_dependents_count": 75, - "_pop_score": 54.34, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/dask/fastparquet/master/README.rst", - "_readme_localurl": "dask~fastparquet~README.rst", - "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/dask/fastparquet/master/requirements.txt", - "https://raw.githubusercontent.com/dask/fastparquet/master/setup.py", - "https://raw.githubusercontent.com/dask/fastparquet/master/pyproject.toml" - ], - "_requirements_localurls": [ - "dask~fastparquet~requirements.txt", - "dask~fastparquet~setup.py", - "dask~fastparquet~pyproject.toml" - ] - }, - { - "index": 397, - "category": "web", - "githuburl": "https://github.com/klen/muffin", - "featured": null, - "links": null, - "description": null, - "_repopath": "klen/muffin", - "_reponame": "muffin", - "_stars": 621, - "_forks": 25, - "_watches": 31, + "_homepage": "https://awkward-array.org", + "_description": "awkward: Manipulate JSON-like data with NumPy-like idioms.", + "_organization": "scikit-hep", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2019-08-14T00:00:00.000Z", + "_age_weeks": 184, + "_stars_per_week": 3.52, "_topics": [ - "python", - "asyncio", - "trio", - "asgi", - "webframework", - "muffin", - "curio" - ], - "_language": "Python", - "_homepage": "", - "_description": "Muffin is a fast, simple and asyncronous web-framework for Python 3", - "_organization": "klen", - "_updated_at": "2022-10-28T00:00:00.000Z", - "_last_commit_date": "2022-08-12T00:00:00.000Z", - "_created_at": "2015-02-03T00:00:00.000Z", - "_age_weeks": 410, - "_stars_per_week": 1.51, - "_pop_contributor_count": 13, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "json", + "numpy", + "data-analysis", + "jagged-array", + "ragged-array", + "columnar-format", + "pandas", + "numba", + "apache-arrow", + "cern-root", + "scikit-hep", + "python" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 36, + "_pop_contributor_logins": [ + "agoose77", + "allcontributors[bot]", + "dependabot[bot]", + "henryiii@princetonuniversity", + "ianna", + "ioanaif", + "jpivarski@princeton,iris-hep,pyhep,scikit-hep", + "pre-commit-ci[bot]", + "reikdas@purdueuniversity", + "swishdiff@microsoft" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "faceapp", - "home" + "microsoft", + "princeton,iris-hep,pyhep,scikit-hep", + "princetonuniversity", + "purdueuniversity" + ], + "_pop_contributor_orgs_raw": [ + "@microsoft", + "Princeton University", + "Princeton, IRIS-HEP, PyHEP, Scikit-HEP", + "Purdue University" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.15, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 96, - "_pop_updated_since_days": 4, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 42, - "_pop_recent_releases_adjusted_count": 42, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, + "_pop_commit_frequency": 11.38, + "_pop_updated_issues_count": 374, + "_pop_closed_issues_count": 324, + "_pop_created_since_days": 43, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 45, + "_pop_recent_releases_estimated_tags": 62, + "_pop_recent_releases_adjusted_count": 45, + "_pop_issue_count": 374.0, + "_pop_comment_count": 809.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 14, - "_pop_score": 30.93, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/klen/muffin/master/README.rst", - "_readme_localurl": "klen~muffin~README.rst", + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 0, + "_pop_score": 50.34, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/scikit-hep/awkward-1.0/master/README.md", + "_readme_localurl": "scikit-hep~awkward-1.0~README.md", "_requirements_filenames": [ - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/klen/muffin/master/setup.py" + "https://raw.githubusercontent.com/scikit-hep/awkward-1.0/master/pyproject.toml" ], "_requirements_localurls": [ - "klen~muffin~setup.py" + "scikit-hep~awkward-1.0~pyproject.toml" ] }, { @@ -44666,46 +61387,71 @@ "description": null, "_repopath": "fsspec/s3fs", "_reponame": "s3fs", - "_stars": 621, - "_forks": 208, - "_watches": 21, - "_topics": [ - "hacktoberfest" - ], + "_stars": 644, + "_forks": 216, + "_watches": 22, "_language": "Python", "_homepage": "http://s3fs.readthedocs.io/en/latest/", "_description": "s3fs: S3 Filesystem ", "_organization": "fsspec", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", + "_updated_at": "2023-02-20T00:00:00.000Z", "_created_at": "2016-03-16T00:00:00.000Z", - "_age_weeks": 352, - "_stars_per_week": 1.76, - "_pop_contributor_count": 108, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 362, + "_stars_per_week": 1.78, + "_topics": [ + "hacktoberfest" + ], + "_last_commit_date": "2023-02-13T00:00:00.000Z", + "_pop_contributor_count": 113, + "_pop_contributor_logins": [ + "TomAugspurger@microsoft", + "fhoering@criteo", + "gsakkis", + "isidentical@fal-ai", + "jrbourbeau@coiled", + "koverholt@google", + "mariusvniekerk@voltrondata", + "martindurant@anaconda", + "mrocklin@coiled", + "raybellwaves@dtn" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "anaconda", "coiled", + "criteo", + "dtn", "fal-ai", + "google", "microsoft", "voltrondata" ], + "_pop_contributor_orgs_raw": [ + "@coiled ", + "@criteo ", + "@fal-ai", + "@microsoft", + "@voltrondata", + "Anaconda, inc.", + "DTN", + "Google" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.88, - "_pop_updated_issues_count": 30, - "_pop_closed_issues_count": 17, - "_pop_created_since_days": 82, + "_pop_commit_frequency": 0.87, + "_pop_updated_issues_count": 46, + "_pop_closed_issues_count": 26, + "_pop_created_since_days": 84, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 8, "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 30.0, - "_pop_comment_count": 77.0, + "_pop_issue_count": 46.0, + "_pop_comment_count": 124.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.6, - "_pop_dependents_count": 58, - "_pop_score": 54.7, + "_pop_comment_frequency": 2.7, + "_pop_dependents_count": 0, + "_pop_score": 50.24, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/fsspec/s3fs/master/README.rst", "_readme_localurl": "fsspec~s3fs~README.rst", @@ -44722,6 +61468,156 @@ "fsspec~s3fs~setup.py" ] }, + { + "index": 235, + "category": "nlp", + "githuburl": "https://github.com/salesforce/codet5", + "featured": null, + "links": null, + "description": null, + "_repopath": "salesforce/codet5", + "_reponame": "CodeT5", + "_stars": 642, + "_forks": 121, + "_watches": 19, + "_language": "Python", + "_homepage": "https://arxiv.org/abs/2109.00859", + "_description": "Code for CodeT5: a new code-aware pre-trained encoder-decoder model.", + "_organization": "salesforce", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2021-08-16T00:00:00.000Z", + "_age_weeks": 79, + "_stars_per_week": 8.1, + "_topics": [ + "language-model", + "code-intelligence", + "programming-language", + "representation-learning", + "nlp" + ], + "_last_commit_date": "2022-07-08T00:00:00.000Z", + "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "svc-scm", + "yuewang-cuhk@salesforceresearch" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "salesforceresearch" + ], + "_pop_contributor_orgs_raw": [ + "Salesforce Research" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 21, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 18, + "_pop_updated_since_days": 8, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 21.0, + "_pop_comment_count": 14.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 15.39, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/salesforce/codet5/master/README.md", + "_readme_localurl": "salesforce~codet5~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 640, + "category": "data", + "githuburl": "https://github.com/dask/fastparquet", + "featured": null, + "links": null, + "description": null, + "_repopath": "dask/fastparquet", + "_reponame": "fastparquet", + "_stars": 639, + "_forks": 164, + "_watches": 18, + "_language": "Python", + "_homepage": null, + "_description": "fastparquet: python implementation of the parquet columnar file format.", + "_organization": "dask", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2015-11-06T00:00:00.000Z", + "_age_weeks": 380, + "_stars_per_week": 1.68, + "_topics": [ + "hacktoberfest" + ], + "_last_commit_date": "2023-02-09T00:00:00.000Z", + "_pop_contributor_count": 86, + "_pop_contributor_logins": [ + "TomAugspurger@microsoft", + "dscottcs@steminc", + "indera", + "jaguarx", + "jcrobak@confluentinc", + "jonathanunderwood", + "martindurant@anaconda", + "mrocklin@coiled", + "pitrou", + "yohplala" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "anaconda", + "coiled", + "confluentinc", + "microsoft", + "steminc" + ], + "_pop_contributor_orgs_raw": [ + "@coiled ", + "@confluentinc ", + "@microsoft", + "Anaconda, inc.", + "Stem Inc" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.08, + "_pop_updated_issues_count": 37, + "_pop_closed_issues_count": 36, + "_pop_created_since_days": 89, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 37.0, + "_pop_comment_count": 82.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 0, + "_pop_score": 46.83, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/dask/fastparquet/master/README.rst", + "_readme_localurl": "dask~fastparquet~README.rst", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/dask/fastparquet/master/requirements.txt", + "https://raw.githubusercontent.com/dask/fastparquet/master/setup.py", + "https://raw.githubusercontent.com/dask/fastparquet/master/pyproject.toml" + ], + "_requirements_localurls": [ + "dask~fastparquet~requirements.txt", + "dask~fastparquet~setup.py", + "dask~fastparquet~pyproject.toml" + ] + }, { "index": 760, "category": "study", @@ -44731,9 +61627,17 @@ "description": null, "_repopath": "jackhidary/quantumcomputingbook", "_reponame": "quantumcomputingbook", - "_stars": 614, - "_forks": 187, - "_watches": 54, + "_stars": 633, + "_forks": 188, + "_watches": 55, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "quantumcomputingbook: Companion site for the textbook Quantum Computing: An Applied Approach", + "_organization": "jackhidary", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2019-02-28T00:00:00.000Z", + "_age_weeks": 207, + "_stars_per_week": 3.05, "_topics": [ "quantum", "quantum-computing", @@ -44747,36 +61651,39 @@ "quantum-information-science", "google-quantum" ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "quantumcomputingbook: Companion site for the textbook Quantum Computing: An Applied Approach", - "_organization": "jackhidary", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2021-10-14T00:00:00.000Z", - "_created_at": "2019-02-28T00:00:00.000Z", - "_age_weeks": 198, - "_stars_per_week": 3.09, "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "JackHidary", + "dlyongemallo@google", + "jaeyoo@google", + "joetricot", + "kikejimenez", + "rmlarose" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "google" ], + "_pop_contributor_orgs_raw": [ + "Google" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 1, + "_pop_updated_issues_count": 2, "_pop_closed_issues_count": 1, - "_pop_created_since_days": 46, - "_pop_updated_since_days": 14, + "_pop_created_since_days": 48, + "_pop_updated_since_days": 16, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 1.0, + "_pop_issue_count": 2.0, "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 6, - "_pop_score": 21.38, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 16.25, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jackhidary/quantumcomputingbook/master/README.md", "_readme_localurl": "jackhidary~quantumcomputingbook~README.md", @@ -44793,9 +61700,17 @@ "description": null, "_repopath": "explosion/spacy-streamlit", "_reponame": "spacy-streamlit", - "_stars": 613, + "_stars": 631, "_forks": 102, "_watches": 18, + "_language": "Python", + "_homepage": "https://share.streamlit.io/ines/spacy-streamlit-demo/master/app.py", + "_description": "spacy-streamlit: \ud83d\udc51 spaCy building blocks and visualizers for Streamlit apps", + "_organization": "explosion", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-06-23T00:00:00.000Z", + "_age_weeks": 139, + "_stars_per_week": 4.53, "_topics": [ "spacy", "nlp", @@ -44812,37 +61727,51 @@ "tokenization", "machine-learning" ], - "_language": "Python", - "_homepage": "https://share.streamlit.io/ines/spacy-streamlit-demo/master/app.py", - "_description": "spacy-streamlit: \ud83d\udc51 spaCy building blocks and visualizers for Streamlit apps", - "_organization": "explosion", - "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-08-23T00:00:00.000Z", - "_created_at": "2020-06-23T00:00:00.000Z", - "_age_weeks": 129, - "_stars_per_week": 4.72, "_pop_contributor_count": 12, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Jcharis@jcharistech", + "Jette16", + "adrianeboyd", + "callistachang", + "discdiver", + "ines@founderexplosion", + "narayanacharya6", + "pmbaumgartner@explosion", + "svlandeg@explosion&oxykodit", + "tvst@streamlit" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "explosion", - "founderexplosion" + "explosion&oxykodit", + "founderexplosion", + "jcharistech", + "streamlit" + ], + "_pop_contributor_orgs_raw": [ + "@explosion", + "Explosion & OxyKodit", + "Founder @explosion ", + "JCharisTech", + "Streamlit" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.56, - "_pop_updated_issues_count": 1, + "_pop_commit_frequency": 0.25, + "_pop_updated_issues_count": 2, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 30, - "_pop_updated_since_days": 4, + "_pop_created_since_days": 32, + "_pop_updated_since_days": 6, "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 4, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 1.0, - "_pop_comment_count": 1.0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.0, "_pop_dependents_count": 0, - "_pop_score": 23.09, + "_pop_score": 25.72, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/explosion/spacy-streamlit/master/README.md", "_readme_localurl": "explosion~spacy-streamlit~README.md", @@ -44868,9 +61797,17 @@ "description": null, "_repopath": "idanya/algo-trader", "_reponame": "algo-trader", - "_stars": 610, - "_forks": 57, - "_watches": 21, + "_stars": 631, + "_forks": 67, + "_watches": 22, + "_language": "Python", + "_homepage": "", + "_description": "algo-trader: Trading bot with support for realtime trading, backtesting, custom strategies and much more.", + "_organization": "idanya", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2021-09-14T00:00:00.000Z", + "_age_weeks": 75, + "_stars_per_week": 8.4, "_topics": [ "algorithmic-trading", "backtesting", @@ -44880,48 +61817,139 @@ "trading-bot", "trading-strategies" ], - "_language": "Python", - "_homepage": "", - "_description": "algo-trader: Trading bot with support for realtime trading, backtesting, custom strategies and much more.", - "_organization": "idanya", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2021-09-14T00:00:00.000Z", - "_age_weeks": 65, - "_stars_per_week": 9.26, + "_last_commit_date": "2023-01-20T00:00:00.000Z", "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "ChrisAnstey", + "idanya@fireblocks", + "scottsdevelopment@scott'sdevelopment" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "fireblocks", "scott'sdevelopment" ], + "_pop_contributor_orgs_raw": [ + "Fireblocks", + "Scott's Development" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.5, - "_pop_updated_issues_count": 21, - "_pop_closed_issues_count": 17, - "_pop_created_since_days": 15, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 21.0, - "_pop_comment_count": 45.0, + "_pop_commit_frequency": 0.6, + "_pop_updated_issues_count": 13, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 18, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 13.0, + "_pop_comment_count": 16.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, + "_pop_comment_frequency": 1.2, "_pop_dependents_count": 0, - "_pop_score": 26.26, + "_pop_score": 26.24, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/idanya/algo-trader/master/README.md", "_readme_localurl": "idanya~algo-trader~README.md", "_requirements_filenames": [ - "requirements.txt" + "requirements.txt", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/idanya/algo-trader/master/requirements.txt", + "https://raw.githubusercontent.com/idanya/algo-trader/master/pyproject.toml" + ], + "_requirements_localurls": [ + "idanya~algo-trader~requirements.txt", + "idanya~algo-trader~pyproject.toml" + ] + }, + { + "index": 397, + "category": "web", + "githuburl": "https://github.com/klen/muffin", + "featured": null, + "links": null, + "description": null, + "_repopath": "klen/muffin", + "_reponame": "muffin", + "_stars": 625, + "_forks": 25, + "_watches": 31, + "_language": "Python", + "_homepage": "", + "_description": "Muffin is a fast, simple and asyncronous web-framework for Python 3", + "_organization": "klen", + "_updated_at": "2023-02-02T00:00:00.000Z", + "_created_at": "2015-02-03T00:00:00.000Z", + "_age_weeks": 420, + "_stars_per_week": 1.49, + "_topics": [ + "python", + "asyncio", + "trio", + "asgi", + "webframework", + "muffin", + "curio" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 13, + "_pop_contributor_logins": [ + "DanielBacci@nubank", + "Krukov", + "MarSoft", + "abnerpc@loadsmart", + "dependabot[bot]", + "drgarcia1986", + "dveselov", + "ei-grad@faceapp", + "klen@home", + "msabramo@adobe" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "adobe", + "faceapp", + "home", + "loadsmart", + "nubank" + ], + "_pop_contributor_orgs_raw": [ + "@adobe", + "@loadsmart", + "FaceApp", + "Nubank", + "home" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.52, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 98, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 42, + "_pop_recent_releases_adjusted_count": 42, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 33.95, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/klen/muffin/master/README.rst", + "_readme_localurl": "klen~muffin~README.rst", + "_requirements_filenames": [ + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/idanya/algo-trader/master/requirements.txt" + "https://raw.githubusercontent.com/klen/muffin/master/setup.py" ], "_requirements_localurls": [ - "idanya~algo-trader~requirements.txt" + "klen~muffin~setup.py" ] }, { @@ -44933,9 +61961,17 @@ "description": null, "_repopath": "uber/h3-py", "_reponame": "h3-py", - "_stars": 601, - "_forks": 113, - "_watches": 34, + "_stars": 625, + "_forks": 116, + "_watches": 36, + "_language": "Python", + "_homepage": "https://uber.github.io/h3-py", + "_description": "h3-py: Python bindings for H3, a hierarchical hexagonal geospatial indexing system", + "_organization": "uber", + "_updated_at": "2023-02-16T00:00:00.000Z", + "_created_at": "2018-06-12T00:00:00.000Z", + "_age_weeks": 245, + "_stars_per_week": 2.55, "_topics": [ "uber", "python", @@ -44945,38 +61981,51 @@ "geocoding", "gis" ], - "_language": "Python", - "_homepage": "https://uber.github.io/h3-py", - "_description": "h3-py: Python bindings for H3, a hierarchical hexagonal geospatial indexing system", - "_organization": "uber", - "_updated_at": "2022-12-18T00:00:00.000Z", "_last_commit_date": "2022-11-24T00:00:00.000Z", - "_created_at": "2018-06-12T00:00:00.000Z", - "_age_weeks": 235, - "_stars_per_week": 2.55, "_pop_contributor_count": 16, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "TengHu@softwareengineer,uber", + "ajfriend", + "dfellis@alantech", + "henryiii@princetonuniversity", + "isaacbrodsky@unfoldedinc", + "karentycoon", + "kylebarron", + "nastasi-oq@g.e.m.foundation", + "nrabinowitz", + "wwchen" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "alantech", + "g.e.m.foundation", + "princetonuniversity", "softwareengineer,uber", "unfoldedinc" ], + "_pop_contributor_orgs_raw": [ + "@UnfoldedInc ", + "@alantech", + "G.E.M. Foundation", + "Princeton University", + "Software Engineer, Uber" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.52, - "_pop_updated_issues_count": 22, - "_pop_closed_issues_count": 14, - "_pop_created_since_days": 55, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 0.46, + "_pop_updated_issues_count": 21, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 57, + "_pop_updated_since_days": 3, "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_estimated_tags": 4, "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 22.0, - "_pop_comment_count": 50.0, + "_pop_issue_count": 21.0, + "_pop_comment_count": 32.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.3, - "_pop_dependents_count": 149, - "_pop_score": 44.47, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 34.23, "_readme_filename": "readme.md", "_readme_giturl": "https://raw.githubusercontent.com/uber/h3-py/master/readme.md", "_readme_localurl": "uber~h3-py~readme.md", @@ -44993,6 +62042,92 @@ "uber~h3-py~pyproject.toml" ] }, + { + "index": 690, + "category": "util", + "githuburl": "https://github.com/pyfpdf/fpdf2", + "featured": null, + "links": null, + "description": null, + "_repopath": "pyfpdf/fpdf2", + "_reponame": "fpdf2", + "_stars": 615, + "_forks": 163, + "_watches": 17, + "_language": "Python", + "_homepage": "https://pyfpdf.github.io/fpdf2/", + "_description": "fpdf2: Simple PDF generation for Python", + "_organization": "pyfpdf", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-03-15T00:00:00.000Z", + "_age_weeks": 310, + "_stars_per_week": 1.98, + "_topics": [ + "pdf-generation", + "pdf", + "python", + "hacktoberfest", + "barcode", + "pdf-library", + "python3", + "library", + "svg", + "markdown" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 87, + "_pop_contributor_logins": [ + "Lucas-C@sncfconnect&techvoyages-sncf-technologies", + "RedShy", + "RomanKharin", + "alexanderankin@lymaconsulting", + "allcontributors[bot]", + "andersonhc", + "eumiro", + "fbernhart", + "gmischler", + "reingart@onapsis" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "lymaconsulting", + "onapsis", + "sncfconnect&techvoyages-sncf-technologies" + ], + "_pop_contributor_orgs_raw": [ + "@Onapsis", + "Lyma Consulting", + "SNCF Connect & Tech @voyages-sncf-technologies" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.06, + "_pop_updated_issues_count": 109, + "_pop_closed_issues_count": 81, + "_pop_created_since_days": 72, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 109.0, + "_pop_comment_count": 257.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 0, + "_pop_score": 48.62, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pyfpdf/fpdf2/master/README.md", + "_readme_localurl": "pyfpdf~fpdf2~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pyfpdf/fpdf2/master/setup.py" + ], + "_requirements_localurls": [ + "pyfpdf~fpdf2~setup.py" + ] + }, { "index": 680, "category": "util", @@ -45002,43 +62137,64 @@ "description": null, "_repopath": "lukasschwab/arxiv.py", "_reponame": "arxiv.py", - "_stars": 588, - "_forks": 76, + "_stars": 608, + "_forks": 81, "_watches": 16, + "_language": "Python", + "_homepage": "", + "_description": "arxiv.py: Python wrapper for the arXiv API", + "_organization": "lukasschwab", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-11-25T00:00:00.000Z", + "_age_weeks": 378, + "_stars_per_week": 1.61, "_topics": [ "arxiv", "arxiv-api", "python-wrapper", "pdf" ], - "_language": "Python", - "_homepage": "", - "_description": "arxiv.py: Python wrapper for the arXiv API", - "_organization": "lukasschwab", - "_updated_at": "2022-12-12T00:00:00.000Z", - "_last_commit_date": "2022-09-12T00:00:00.000Z", - "_created_at": "2015-11-25T00:00:00.000Z", - "_age_weeks": 368, - "_stars_per_week": 1.59, - "_pop_contributor_count": 13, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_last_commit_date": "2023-02-01T00:00:00.000Z", + "_pop_contributor_count": 14, + "_pop_contributor_logins": [ + "Japoneris", + "Miguel-ASM@bbkbootcamp(code4jobs)", + "arkel23@nycupcs", + "jacquerie@aws", + "lukasschwab", + "mdamien", + "mhils", + "msoelch", + "natfarleydev", + "windisch" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "aws", + "bbkbootcamp(code4jobs)", + "nycupcs" + ], + "_pop_contributor_orgs_raw": [ + "@aws", + "BBK Bootcamp (Code 4 Jobs)", + "NYCU PCS" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.08, - "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 86, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 0, + "_pop_commit_frequency": 0.15, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 88, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 3.0, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 8.0, "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 383, - "_pop_score": 32.61, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 29.82, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/lukasschwab/arxiv.py/master/README.md", "_readme_localurl": "lukasschwab~arxiv.py~README.md", @@ -45064,45 +62220,65 @@ "description": null, "_repopath": "westhealth/pyvis", "_reponame": "pyvis", - "_stars": 582, - "_forks": 109, - "_watches": 13, - "_topics": [ - "network-visualization", - "python", - "networkx" - ], + "_stars": 607, + "_forks": 115, + "_watches": 15, "_language": "HTML", "_homepage": "http://pyvis.readthedocs.io/en/latest/", "_description": "pyvis: Python package for creating and visualizing interactive network graphs.", "_organization": "westhealth", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-04T00:00:00.000Z", + "_updated_at": "2023-02-19T00:00:00.000Z", "_created_at": "2018-05-10T00:00:00.000Z", - "_age_weeks": 240, - "_stars_per_week": 2.42, - "_pop_contributor_count": 31, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 249, + "_stars_per_week": 2.43, + "_topics": [ + "network-visualization", + "python", + "networkx" + ], + "_last_commit_date": "2023-02-10T00:00:00.000Z", + "_pop_contributor_count": 32, + "_pop_contributor_logins": [ + "BerserkerGaruk", + "Darkproduct", + "Nanoseb", + "WilsonHChung", + "aalok-sathe@mitbrain&cognitivesciences", + "boludo00", + "jhunpingco@westhealthinstitute", + "js-konda@westhealth", + "nocluebutalotofit", + "olive004@universityofoxford" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "mitbrain&cognitivesciences", + "universityofoxford", "westhealth", "westhealthinstitute" ], + "_pop_contributor_orgs_raw": [ + "@MIT Brain & Cognitive Sciences", + "University of Oxford", + "West Health Institute ", + "WestHealth" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.58, - "_pop_updated_issues_count": 37, - "_pop_closed_issues_count": 12, - "_pop_created_since_days": 56, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 0.69, + "_pop_updated_issues_count": 32, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 58, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 3, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 37.0, - "_pop_comment_count": 28.0, + "_pop_issue_count": 32.0, + "_pop_comment_count": 25.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 24, - "_pop_score": 38.98, + "_pop_dependents_count": 0, + "_pop_score": 36.79, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/westhealth/pyvis/master/README.md", "_readme_localurl": "westhealth~pyvis~README.md", @@ -45119,6 +62295,254 @@ "westhealth~pyvis~setup.py" ] }, + { + "index": 982, + "category": "ml", + "githuburl": "https://github.com/googlecloudplatform/vertex-ai-samples", + "featured": null, + "links": null, + "description": null, + "_repopath": "googlecloudplatform/vertex-ai-samples", + "_reponame": "vertex-ai-samples", + "_stars": 604, + "_forks": 407, + "_watches": 37, + "_language": "Jupyter Notebook", + "_homepage": "https://cloud.google.com/vertex-ai", + "_description": "vertex-ai-samples: Sample code and notebooks for Vertex AI, the end-to-end machine learning platform on Google Cloud", + "_organization": "googlecloudplatform", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2021-05-27T00:00:00.000Z", + "_age_weeks": 90, + "_stars_per_week": 6.65, + "_topics": [ + "samples", + "gcp", + "google-cloud-platform", + "vertex-ai", + "notebook", + "python", + "ai", + "ml", + "data-science", + "mlops" + ], + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 98, + "_pop_contributor_logins": [ + "andrewferlitsch", + "inardini@googlecloud", + "ivanmkc@google", + "krishr2d2@springml-code", + "kweinmeister@google", + "morgandu@google", + "renovate-bot@mend", + "soheilazangeneh@google", + "sudarshan-SpringML", + "udaypunna@springml" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "google", + "googlecloud", + "mend", + "springml", + "springml-code" + ], + "_pop_contributor_orgs_raw": [ + "@google ", + "@mend", + "@springml-code ", + "Google", + "Google Cloud ", + "SpringML" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 23.08, + "_pop_updated_issues_count": 279, + "_pop_closed_issues_count": 235, + "_pop_created_since_days": 21, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 275.0, + "_pop_comment_count": 473.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 46.36, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/googlecloudplatform/vertex-ai-samples/master/README.md", + "_readme_localurl": "googlecloudplatform~vertex-ai-samples~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 831, + "category": "typing", + "githuburl": "https://github.com/python-attrs/cattrs", + "featured": null, + "links": null, + "description": null, + "_repopath": "python-attrs/cattrs", + "_reponame": "cattrs", + "_stars": 597, + "_forks": 87, + "_watches": 16, + "_language": "Python", + "_homepage": null, + "_description": "cattrs: Complex custom class converters for attrs.", + "_organization": "python-attrs", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2016-08-28T00:00:00.000Z", + "_age_weeks": 338, + "_stars_per_week": 1.76, + "_topics": [ + "attrs", + "deserialization", + "serialization" + ], + "_last_commit_date": "2023-02-05T00:00:00.000Z", + "_pop_contributor_count": 45, + "_pop_contributor_logins": [ + "MicaelJarniac@micaeljarniac", + "Tinche@pocketzworld", + "adetokunbo", + "bibajz", + "bluetech", + "dswistowski", + "jap", + "joeldodge79@looker", + "raabf@siemensag", + "toumorokoshi@google" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "google", + "looker", + "micaeljarniac", + "pocketzworld", + "siemensag" + ], + "_pop_contributor_orgs_raw": [ + "@google", + "@pocketzworld ", + "Looker", + "Micael Jarniac", + "Siemens AG" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.13, + "_pop_updated_issues_count": 21, + "_pop_closed_issues_count": 15, + "_pop_created_since_days": 79, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 21.0, + "_pop_comment_count": 49.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 44.05, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/python-attrs/cattrs/master/README.md", + "_readme_localurl": "python-attrs~cattrs~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/python-attrs/cattrs/master/pyproject.toml" + ], + "_requirements_localurls": [ + "python-attrs~cattrs~pyproject.toml" + ] + }, + { + "index": 958, + "category": "web", + "githuburl": "https://github.com/long2ice/fastapi-cache", + "featured": null, + "links": null, + "description": null, + "_repopath": "long2ice/fastapi-cache", + "_reponame": "fastapi-cache", + "_stars": 596, + "_forks": 88, + "_watches": 9, + "_language": "Python", + "_homepage": "https://github.com/long2ice/fastapi-cache", + "_description": "fastapi-cache is a tool to cache fastapi response and function result, with backends support redis and memcached.", + "_organization": "long2ice", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-08-25T00:00:00.000Z", + "_age_weeks": 130, + "_stars_per_week": 4.58, + "_topics": [ + "cache", + "fastapi", + "redis", + "memcached" + ], + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 24, + "_pop_contributor_logins": [ + "DevLucca@redventures", + "Mrreadiness", + "cpbotha", + "dveleztx@tamusa-acm", + "geo-mathijs", + "hackjammer", + "long2ice", + "schmocker@axpogridag", + "squaresmile", + "vvanglro" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "axpogridag", + "redventures", + "tamusa-acm" + ], + "_pop_contributor_orgs_raw": [ + "@RedVentures ", + "@TAMUSA-ACM", + "Axpo Grid AG" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.02, + "_pop_updated_issues_count": 30, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 30, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 30.0, + "_pop_comment_count": 50.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 36.51, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/long2ice/fastapi-cache/master/README.md", + "_readme_localurl": "long2ice~fastapi-cache~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/long2ice/fastapi-cache/master/pyproject.toml" + ], + "_requirements_localurls": [ + "long2ice~fastapi-cache~pyproject.toml" + ] + }, { "index": 505, "category": "gis", @@ -45128,9 +62552,17 @@ "description": null, "_repopath": "scikit-mobility/scikit-mobility", "_reponame": "scikit-mobility", - "_stars": 573, - "_forks": 130, - "_watches": 29, + "_stars": 593, + "_forks": 137, + "_watches": 28, + "_language": "Python", + "_homepage": "https://scikit-mobility.github.io/scikit-mobility/", + "_description": "scikit-mobility: mobility analysis in Python", + "_organization": "scikit-mobility", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2019-04-30T00:00:00.000Z", + "_age_weeks": 199, + "_stars_per_week": 2.98, "_topics": [ "data-science", "data-analysis", @@ -45144,37 +62576,47 @@ "mobility-flows", "synthetic-flows" ], - "_language": "Python", - "_homepage": "https://scikit-mobility.github.io/scikit-mobility/", - "_description": "scikit-mobility: mobility analysis in Python", - "_organization": "scikit-mobility", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-06-13T00:00:00.000Z", - "_created_at": "2019-04-30T00:00:00.000Z", - "_age_weeks": 189, - "_stars_per_week": 3.02, - "_pop_contributor_count": 21, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-01-20T00:00:00.000Z", + "_pop_contributor_count": 23, + "_pop_contributor_logins": [ + "FilippoSimini@argonnenationallaboratory", + "GiulianoCornacchia", + "gbarlacchi", + "jonpappalord@isti-cnr", + "lcandeago", + "miccferr", + "michelegirolami@isti-cnr", + "pareyesv@barcelonasupercomputingcenter,bsc", + "pellungrobe", + "sebxwolf" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "argonnenationallaboratory", + "barcelonasupercomputingcenter,bsc", "isti-cnr" ], + "_pop_contributor_orgs_raw": [ + "Argonne National Laboratory", + "Barcelona Supercomputing Center, BSC", + "ISTI-CNR" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.67, - "_pop_updated_issues_count": 10, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 44, - "_pop_updated_since_days": 6, - "_pop_recent_releases_count": 2, + "_pop_commit_frequency": 1.1, + "_pop_updated_issues_count": 50, + "_pop_closed_issues_count": 36, + "_pop_created_since_days": 46, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 10.0, - "_pop_comment_count": 3.0, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 50.0, + "_pop_comment_count": 32.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.3, - "_pop_dependents_count": 20, - "_pop_score": 30.83, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 33.03, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/scikit-mobility/scikit-mobility/master/README.md", "_readme_localurl": "scikit-mobility~scikit-mobility~README.md", @@ -45191,6 +62633,102 @@ "scikit-mobility~scikit-mobility~pyproject.toml" ] }, + { + "index": 889, + "category": "gis", + "githuburl": "https://github.com/osgeo/grass", + "featured": null, + "links": null, + "description": null, + "_repopath": "osgeo/grass", + "_reponame": "grass", + "_stars": 590, + "_forks": 218, + "_watches": 43, + "_language": "C", + "_homepage": "https://grass.osgeo.org", + "_description": "GRASS GIS - free and open source Geographic Information System (GIS)", + "_organization": "osgeo", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-05-17T00:00:00.000Z", + "_age_weeks": 196, + "_stars_per_week": 3.0, + "_topics": [ + "osgeo", + "grass-gis", + "geospatial", + "geospatial-analysis", + "raster", + "vector", + "timeseries-analysis", + "earth-observation", + "gis", + "hacktoberfest", + "open-science", + "remote-sensing", + "science", + "spatial" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 96, + "_pop_contributor_logins": [ + "HamishB", + "HuidaeCho@newmexicostateuniversity", + "glynnc", + "huhabla", + "landam@czechtechnicaluniversityinprague", + "lucadelu@fondazioneedmundmach", + "metzm", + "neteler@mundialis", + "petrasovaa@ncsu", + "wenzeslaus@northcarolinastateuniversity" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "czechtechnicaluniversityinprague", + "fondazioneedmundmach", + "mundialis", + "ncsu", + "newmexicostateuniversity", + "northcarolinastateuniversity" + ], + "_pop_contributor_orgs_raw": [ + "@mundialis ", + "Czech Technical University in Prague", + "Fondazione Edmund Mach", + "NCSU", + "New Mexico State University", + "North Carolina State University" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.02, + "_pop_updated_issues_count": 416, + "_pop_closed_issues_count": 196, + "_pop_created_since_days": 46, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 36, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 416.0, + "_pop_comment_count": 628.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 51.46, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/osgeo/grass/master/README.md", + "_readme_localurl": "osgeo~grass~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/osgeo/grass/master/pyproject.toml" + ], + "_requirements_localurls": [ + "osgeo~grass~pyproject.toml" + ] + }, { "index": 117, "category": "nlp", @@ -45200,9 +62738,17 @@ "description": null, "_repopath": "iclrandd/blackstone", "_reponame": "Blackstone", - "_stars": 573, + "_stars": 585, "_forks": 93, "_watches": 37, + "_language": "Python", + "_homepage": "https://research.iclr.co.uk", + "_description": "Blackstone: :black_circle: A spaCy pipeline and model for NLP on unstructured legal text.", + "_organization": "iclrandd", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-03-25T00:00:00.000Z", + "_age_weeks": 204, + "_stars_per_week": 2.86, "_topics": [ "law", "caselaw", @@ -45210,27 +62756,29 @@ "spacy-models", "legaltech" ], - "_language": "Python", - "_homepage": "https://research.iclr.co.uk", - "_description": "Blackstone: :black_circle: A spaCy pipeline and model for NLP on unstructured legal text.", - "_organization": "iclrandd", - "_updated_at": "2022-11-27T00:00:00.000Z", "_last_commit_date": "2021-01-31T00:00:00.000Z", - "_created_at": "2019-03-25T00:00:00.000Z", - "_age_weeks": 195, - "_stars_per_week": 2.94, "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "DeNeutoy", + "ICLRandD@theincorporatedcounciloflawreportingforenglandandwales", + "danielhoadley", + "hueyy", + "richardbatstone" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "theincorporatedcounciloflawreportingforenglandandwales" ], + "_pop_contributor_orgs_raw": [ + "The Incorporated Council of Law Reporting for England and Wales" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 45, - "_pop_updated_since_days": 23, + "_pop_created_since_days": 48, + "_pop_updated_since_days": 25, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -45239,7 +62787,7 @@ "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 11.07, + "_pop_score": 11.03, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/iclrandd/blackstone/master/README.md", "_readme_localurl": "iclrandd~blackstone~README.md", @@ -45254,340 +62802,197 @@ ] }, { - "index": 831, - "category": "typing", - "githuburl": "https://github.com/python-attrs/cattrs", - "featured": null, - "links": null, - "description": null, - "_repopath": "python-attrs/cattrs", - "_reponame": "cattrs", - "_stars": 570, - "_forks": 82, - "_watches": 15, - "_topics": [ - "attrs", - "deserialization", - "serialization" - ], - "_language": "Python", - "_homepage": null, - "_description": "cattrs: Complex custom class converters for attrs.", - "_organization": "python-attrs", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-09T00:00:00.000Z", - "_created_at": "2016-08-28T00:00:00.000Z", - "_age_weeks": 329, - "_stars_per_week": 1.73, - "_pop_contributor_count": 44, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "google", - "pocketzworld" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.77, - "_pop_updated_issues_count": 33, - "_pop_closed_issues_count": 18, - "_pop_created_since_days": 77, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 33.0, - "_pop_comment_count": 90.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.7, - "_pop_dependents_count": 73, - "_pop_score": 49.46, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/python-attrs/cattrs/master/README.rst", - "_readme_localurl": "python-attrs~cattrs~README.rst", - "_requirements_filenames": [ - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/python-attrs/cattrs/master/pyproject.toml" - ], - "_requirements_localurls": [ - "python-attrs~cattrs~pyproject.toml" - ] - }, - { - "index": 752, - "category": "diffusion", - "githuburl": "https://github.com/sharonzhou/long_stable_diffusion", - "featured": null, - "links": null, - "description": null, - "_repopath": "sharonzhou/long_stable_diffusion", - "_reponame": "long_stable_diffusion", - "_stars": 569, - "_forks": 44, - "_watches": 13, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "long_stable_diffusion: Long-form text-to-images generation, using a pipeline of deep generative models (GPT-3 and Stable Diffusion)", - "_organization": "sharonzhou", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-10-30T00:00:00.000Z", - "_created_at": "2022-09-04T00:00:00.000Z", - "_age_weeks": 15, - "_stars_per_week": 37.58, - "_pop_contributor_count": 2, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "stanford" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.44, - "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 4, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 3.0, - "_pop_comment_count": 1.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.3, - "_pop_dependents_count": 0, - "_pop_score": 11.14, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/sharonzhou/long_stable_diffusion/master/README.md", - "_readme_localurl": "sharonzhou~long_stable_diffusion~README.md", - "_requirements_filenames": [ - "requirements.txt" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/sharonzhou/long_stable_diffusion/master/requirements.txt" - ], - "_requirements_localurls": [ - "sharonzhou~long_stable_diffusion~requirements.txt" - ] - }, - { - "index": 808, - "category": "web", - "githuburl": "https://github.com/s3rius/fastapi-template", - "featured": null, - "links": null, - "description": null, - "_repopath": "s3rius/fastapi-template", - "_reponame": "FastAPI-template", - "_stars": 569, - "_forks": 51, - "_watches": 11, - "_topics": [ - "fastapi", - "cookiecutter", - "cookiecutter-template", - "cookiecutter-python3", - "sqlalchemy-orm", - "asynchronous", - "ormar", - "tortoise-orm", - "aerich", - "alembic", - "python3", - "asyncio", - "graphql", - "strawberry-graphql", - "opentelemetry", - "prometheus", - "sentry", - "fastapi-template", - "fastapi-boilerplate" - ], - "_language": "Python", - "_homepage": "", - "_description": "FastAPI-template: Feature rich robust FastAPI template.", - "_organization": "s3rius", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2020-10-05T00:00:00.000Z", - "_age_weeks": 115, - "_stars_per_week": 4.95, - "_pop_contributor_count": 12, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "fyndiq", - "gazprom-media", - "infosec" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.06, - "_pop_updated_issues_count": 26, - "_pop_closed_issues_count": 21, - "_pop_created_since_days": 27, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 13, - "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 26.0, - "_pop_comment_count": 63.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.4, - "_pop_dependents_count": 0, - "_pop_score": 37.61, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/s3rius/fastapi-template/master/README.md", - "_readme_localurl": "s3rius~fastapi-template~README.md", - "_requirements_filenames": [ - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/s3rius/fastapi-template/master/pyproject.toml" - ], - "_requirements_localurls": [ - "s3rius~fastapi-template~pyproject.toml" - ] - }, - { - "index": 690, - "category": "util", - "githuburl": "https://github.com/pyfpdf/fpdf2", + "index": 957, + "category": "ml", + "githuburl": "https://github.com/facebookresearch/balance", "featured": null, "links": null, "description": null, - "_repopath": "pyfpdf/fpdf2", - "_reponame": "fpdf2", - "_stars": 568, - "_forks": 152, - "_watches": 16, - "_topics": [ - "pdf-generation", - "pdf", - "python", - "hacktoberfest", - "barcode", - "pdf-library", - "python3", - "library", - "svg", - "markdown" - ], + "_repopath": "facebookresearch/balance", + "_reponame": "balance", + "_stars": 584, + "_forks": 27, + "_watches": 5, "_language": "Python", - "_homepage": "https://pyfpdf.github.io/fpdf2/", - "_description": "fpdf2: Simple PDF generation for Python", - "_organization": "pyfpdf", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2017-03-15T00:00:00.000Z", - "_age_weeks": 300, - "_stars_per_week": 1.89, - "_pop_contributor_count": 81, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://import-balance.org", + "_description": "balance: The balance python package offers a simple workflow and methods for dealing with biased data samples when looking to infer from them to some target population of interest.", + "_organization": "facebookresearch", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-11-15T00:00:00.000Z", + "_age_weeks": 14, + "_stars_per_week": 41.29, + "_topics": [], + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 11, + "_pop_contributor_logins": [ + "SarigT", + "antonk52", + "facebook-github-bot@facebook", + "jknoxville@facebook", + "talgalili@telavivuniversity", + "zbraiterman" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "lymaconsulting", - "onapsis", - "sncfconnect&techvoyages-sncf-technologies" + "facebook", + "telavivuniversity" + ], + "_pop_contributor_orgs_raw": [ + "@facebook", + "Facebook", + "Tel Aviv University" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.46, - "_pop_updated_issues_count": 87, - "_pop_closed_issues_count": 69, - "_pop_created_since_days": 70, + "_pop_commit_frequency": 1.88, + "_pop_updated_issues_count": 22, + "_pop_closed_issues_count": 18, + "_pop_created_since_days": 3, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 9, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 9, - "_pop_issue_count": 87.0, - "_pop_comment_count": 296.0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 20, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 22.0, + "_pop_comment_count": 89.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.4, + "_pop_comment_frequency": 4.0, "_pop_dependents_count": 0, - "_pop_score": 49.03, + "_pop_score": 31.68, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pyfpdf/fpdf2/master/README.md", - "_readme_localurl": "pyfpdf~fpdf2~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/balance/master/README.md", + "_readme_localurl": "facebookresearch~balance~README.md", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pyfpdf/fpdf2/master/setup.py" + "https://raw.githubusercontent.com/facebookresearch/balance/master/setup.py" ], "_requirements_localurls": [ - "pyfpdf~fpdf2~setup.py" + "facebookresearch~balance~setup.py" ] }, { - "index": 889, - "category": "gis", - "githuburl": "https://github.com/osgeo/grass", + "index": 752, + "category": "diffusion", + "githuburl": "https://github.com/sharonzhou/long_stable_diffusion", "featured": null, "links": null, "description": null, - "_repopath": "osgeo/grass", - "_reponame": "grass", - "_stars": 562, - "_forks": 209, - "_watches": 47, - "_topics": [ - "osgeo", - "grass-gis", - "geospatial", - "geospatial-analysis", - "raster", - "vector", - "timeseries-analysis", - "earth-observation", - "gis", - "hacktoberfest", - "open-science", - "remote-sensing", - "science", - "spatial" + "_repopath": "sharonzhou/long_stable_diffusion", + "_reponame": "long_stable_diffusion", + "_stars": 583, + "_forks": 48, + "_watches": 14, + "_language": "Python", + "_homepage": "", + "_description": "long_stable_diffusion: Long-form text-to-images generation, using a pipeline of deep generative models (GPT-3 and Stable Diffusion)", + "_organization": "sharonzhou", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2022-09-04T00:00:00.000Z", + "_age_weeks": 24, + "_stars_per_week": 23.87, + "_topics": [], + "_last_commit_date": "2022-10-30T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "andreykurenkov@stanford", + "sharonzhou" ], - "_language": "C", - "_homepage": "https://grass.osgeo.org", - "_description": "GRASS GIS - free and open source Geographic Information System (GIS)", - "_organization": "osgeo", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2019-05-17T00:00:00.000Z", - "_age_weeks": 187, - "_stars_per_week": 3.0, - "_pop_contributor_count": 93, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "czechtechnicaluniversityinprague", - "mundialis", - "ncsu" + "stanford" + ], + "_pop_contributor_orgs_raw": [ + "Stanford" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.92, - "_pop_updated_issues_count": 198, - "_pop_closed_issues_count": 117, - "_pop_created_since_days": 44, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 15, - "_pop_recent_releases_estimated_tags": 37, - "_pop_recent_releases_adjusted_count": 15, - "_pop_issue_count": 198.0, - "_pop_comment_count": 394.0, + "_pop_commit_frequency": 0.44, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 6, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 187, - "_pop_score": 58.16, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 7.88, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/osgeo/grass/master/README.md", - "_readme_localurl": "osgeo~grass~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/sharonzhou/long_stable_diffusion/master/README.md", + "_readme_localurl": "sharonzhou~long_stable_diffusion~README.md", "_requirements_filenames": [ - "pyproject.toml" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/osgeo/grass/master/pyproject.toml" + "https://raw.githubusercontent.com/sharonzhou/long_stable_diffusion/master/requirements.txt" ], "_requirements_localurls": [ - "osgeo~grass~pyproject.toml" + "sharonzhou~long_stable_diffusion~requirements.txt" + ] + }, + { + "index": 671, + "category": "ml", + "githuburl": "https://github.com/apple/ml-ane-transformers", + "featured": null, + "links": null, + "description": null, + "_repopath": "apple/ml-ane-transformers", + "_reponame": "ml-ane-transformers", + "_stars": 581, + "_forks": 30, + "_watches": 33, + "_language": "Python", + "_homepage": "", + "_description": "ml-ane-transformers: Reference implementation of the Transformer architecture optimized for Apple Neural Engine (ANE)", + "_organization": "apple", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-06-03T00:00:00.000Z", + "_age_weeks": 37, + "_stars_per_week": 15.41, + "_topics": [], + "_last_commit_date": "2022-08-09T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "atiorh" + ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 9, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 5.1, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/apple/ml-ane-transformers/master/README.md", + "_readme_localurl": "apple~ml-ane-transformers~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/apple/ml-ane-transformers/master/requirements.txt", + "https://raw.githubusercontent.com/apple/ml-ane-transformers/master/setup.py" + ], + "_requirements_localurls": [ + "apple~ml-ane-transformers~requirements.txt", + "apple~ml-ane-transformers~setup.py" ] }, { @@ -45599,9 +63004,17 @@ "description": null, "_repopath": "lexpredict/lexpredict-lexnlp", "_reponame": "lexpredict-lexnlp", - "_stars": 557, - "_forks": 153, - "_watches": 49, + "_stars": 581, + "_forks": 157, + "_watches": 50, + "_language": "HTML", + "_homepage": null, + "_description": "lexpredict-lexnlp: LexNLP by LexPredict", + "_organization": "lexpredict", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-09-30T00:00:00.000Z", + "_age_weeks": 281, + "_stars_per_week": 2.06, "_topics": [ "nlp", "ml", @@ -45613,36 +63026,36 @@ "analytics", "data" ], - "_language": "HTML", - "_homepage": null, - "_description": "lexpredict-lexnlp: LexNLP by LexPredict", - "_organization": "lexpredict", - "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-08-10T00:00:00.000Z", - "_created_at": "2017-09-30T00:00:00.000Z", - "_age_weeks": 272, - "_stars_per_week": 2.05, "_pop_contributor_count": 8, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "bommaritoconsulting" + "_pop_contributor_logins": [ + "AndreyCorelli", + "kpmarsh", + "mjbommar", + "mviktorov", + "pchestek", + "reddalexx", + "warrenagin" ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.06, "_pop_updated_issues_count": 5, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 64, - "_pop_updated_since_days": 4, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 66, + "_pop_updated_since_days": 6, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, "_pop_issue_count": 5.0, - "_pop_comment_count": 2.0, + "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.4, - "_pop_dependents_count": 17, - "_pop_score": 23.71, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 15.92, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/lexpredict/lexpredict-lexnlp/master/README.md", "_readme_localurl": "lexpredict~lexpredict-lexnlp~README.md", @@ -45656,6 +63069,159 @@ "lexpredict~lexpredict-lexnlp~setup.py" ] }, + { + "index": 906, + "category": "data", + "githuburl": "https://github.com/googleapis/python-bigquery", + "featured": null, + "links": null, + "description": null, + "_repopath": "googleapis/python-bigquery", + "_reponame": "python-bigquery", + "_stars": 568, + "_forks": 229, + "_watches": 57, + "_language": "Python", + "_homepage": null, + "_description": "googleapis/python-bigquery", + "_organization": "googleapis", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2019-12-10T00:00:00.000Z", + "_age_weeks": 167, + "_stars_per_week": 3.4, + "_topics": [], + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 122, + "_pop_contributor_logins": [ + "HemangChothani", + "alixhami", + "dhermes@co-founderhardfinhq", + "gcf-owl-bot[bot]", + "jba@google", + "plamut@independentcontractor", + "release-please[bot]", + "renovate-bot@mend", + "tseaver@agendalessconsulting", + "tswast@google" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "agendalessconsulting", + "co-founderhardfinhq", + "google", + "independentcontractor", + "mend" + ], + "_pop_contributor_orgs_raw": [ + "@mend", + "Agendaless Consulting, Inc.", + "Co-founder @hardfinhq", + "Google", + "Independent contractor" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.52, + "_pop_updated_issues_count": 132, + "_pop_closed_issues_count": 75, + "_pop_created_since_days": 39, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 21, + "_pop_recent_releases_estimated_tags": 38, + "_pop_recent_releases_adjusted_count": 21, + "_pop_issue_count": 132.0, + "_pop_comment_count": 132.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 48.53, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/googleapis/python-bigquery/master/README.rst", + "_readme_localurl": "googleapis~python-bigquery~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/googleapis/python-bigquery/master/setup.py" + ], + "_requirements_localurls": [ + "googleapis~python-bigquery~setup.py" + ] + }, + { + "index": 160, + "category": "nlp", + "githuburl": "https://github.com/nipunsadvilkar/pysbd", + "featured": null, + "links": null, + "description": null, + "_repopath": "nipunsadvilkar/pysbd", + "_reponame": "pySBD", + "_stars": 567, + "_forks": 65, + "_watches": 10, + "_language": "Python", + "_homepage": "", + "_description": "pySBD: \ud83d\udc0d\ud83d\udcafpySBD (Python Sentence Boundary Disambiguation) is a rule-based sentence boundary detection that works out-of-the-box.", + "_organization": "nipunsadvilkar", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2017-06-11T00:00:00.000Z", + "_age_weeks": 297, + "_stars_per_week": 1.91, + "_topics": [ + "sentence-boundary-detection", + "python", + "segmentation", + "rule-based", + "sentence-tokenizer", + "sentence" + ], + "_last_commit_date": "2021-02-11T00:00:00.000Z", + "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "matthen", + "misotrnka@gerulatatechnologies", + "nipunsadvilkar@explosion", + "spate141" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "explosion", + "gerulatatechnologies" + ], + "_pop_contributor_orgs_raw": [ + "@explosion", + "Gerulata Technologies" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 69, + "_pop_updated_since_days": 25, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 3.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 20.05, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nipunsadvilkar/pysbd/master/README.md", + "_readme_localurl": "nipunsadvilkar~pysbd~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/nipunsadvilkar/pysbd/master/setup.py" + ], + "_requirements_localurls": [ + "nipunsadvilkar~pysbd~setup.py" + ] + }, { "index": 567, "category": "sim", @@ -45665,9 +63231,17 @@ "description": null, "_repopath": "gboeing/pynamical", "_reponame": "pynamical", - "_stars": 551, - "_forks": 108, - "_watches": 32, + "_stars": 566, + "_forks": 109, + "_watches": 31, + "_language": "Python", + "_homepage": "https://geoffboeing.com/publications/nonlinear-chaos-fractals-prediction/", + "_description": "Pynamical is a Python package for modeling and visualizing discrete nonlinear dynamical systems, chaos, and fractals.", + "_organization": "gboeing", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2014-09-28T00:00:00.000Z", + "_age_weeks": 438, + "_stars_per_week": 1.29, "_topics": [ "chaos", "nonlinear", @@ -45690,27 +63264,25 @@ "phase-diagram", "cobweb-plot" ], - "_language": "Python", - "_homepage": "https://geoffboeing.com/publications/nonlinear-chaos-fractals-prediction/", - "_description": "Pynamical is a Python package for modeling and visualizing discrete nonlinear dynamical systems, chaos, and fractals.", - "_organization": "gboeing", - "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2022-05-24T00:00:00.000Z", - "_created_at": "2014-09-28T00:00:00.000Z", - "_age_weeks": 429, - "_stars_per_week": 1.28, "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "gboeing@universityofsoutherncalifornia" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "universityofsoutherncalifornia" ], + "_pop_contributor_orgs_raw": [ + "University of Southern California" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.13, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 100, - "_pop_updated_since_days": 7, + "_pop_created_since_days": 102, + "_pop_updated_since_days": 9, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, @@ -45719,7 +63291,7 @@ "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 12.98, + "_pop_score": 12.48, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/gboeing/pynamical/master/README.md", "_readme_localurl": "gboeing~pynamical~README.md", @@ -45736,6 +63308,71 @@ "gboeing~pynamical~setup.py" ] }, + { + "index": 306, + "category": "crypto", + "githuburl": "https://github.com/palkeo/panoramix", + "featured": null, + "links": null, + "description": null, + "_repopath": "palkeo/panoramix", + "_reponame": "panoramix", + "_stars": 559, + "_forks": 154, + "_watches": 31, + "_language": "Python", + "_homepage": "", + "_description": "panoramix: Ethereum decompiler", + "_organization": "palkeo", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-02-17T00:00:00.000Z", + "_age_weeks": 157, + "_stars_per_week": 3.55, + "_topics": [], + "_last_commit_date": "2020-08-22T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "cleanunicorn@ethereum", + "kolinko@eveem.org" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "ethereum", + "eveem.org" + ], + "_pop_contributor_orgs_raw": [ + "Ethereum", + "Eveem.org" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 37, + "_pop_updated_since_days": 30, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 7.0, + "_pop_comment_count": 4.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 15.48, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/palkeo/panoramix/master/README.md", + "_readme_localurl": "palkeo~panoramix~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/palkeo/panoramix/master/setup.py" + ], + "_requirements_localurls": [ + "palkeo~panoramix~setup.py" + ] + }, { "index": 259, "category": "crypto", @@ -45745,9 +63382,17 @@ "description": null, "_repopath": "pmaji/crypto-whale-watching-app", "_reponame": "crypto-whale-watching-app", - "_stars": 548, - "_forks": 132, + "_stars": 555, + "_forks": 134, "_watches": 48, + "_language": "Python", + "_homepage": "", + "_description": "crypto-whale-watching-app: Python Dash app that tracks whale activity in cryptocurrency markets.", + "_organization": "pmaji", + "_updated_at": "2023-02-08T00:00:00.000Z", + "_created_at": "2018-01-23T00:00:00.000Z", + "_age_weeks": 265, + "_stars_per_week": 2.09, "_topics": [ "gdax", "python", @@ -45770,27 +63415,30 @@ "plotly", "plotly-dash" ], - "_language": "Python", - "_homepage": "", - "_description": "crypto-whale-watching-app: Python Dash app that tracks whale activity in cryptocurrency markets.", - "_organization": "pmaji", - "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2022-12-08T00:00:00.000Z", - "_created_at": "2018-01-23T00:00:00.000Z", - "_age_weeks": 255, - "_stars_per_week": 2.14, "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "CrackLord", + "dependabot[bot]", + "mifunetoshiro", + "pmaji@capitalone", + "stainedhat", + "theimo1221" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "capitalone" ], + "_pop_contributor_orgs_raw": [ + "Capital One" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.06, "_pop_updated_issues_count": 2, "_pop_closed_issues_count": 2, - "_pop_created_since_days": 60, - "_pop_updated_since_days": 0, + "_pop_created_since_days": 62, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -45798,561 +63446,498 @@ "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 0, - "_pop_score": 21.17, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pmaji/crypto-whale-watching-app/master/README.md", - "_readme_localurl": "pmaji~crypto-whale-watching-app~README.md", - "_requirements_filenames": [ - "requirements.txt" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pmaji/crypto-whale-watching-app/master/requirements.txt" - ], - "_requirements_localurls": [ - "pmaji~crypto-whale-watching-app~requirements.txt" - ] - }, - { - "index": 235, - "category": "nlp", - "githuburl": "https://github.com/salesforce/codet5", - "featured": null, - "links": null, - "description": null, - "_repopath": "salesforce/codet5", - "_reponame": "CodeT5", - "_stars": 547, - "_forks": 105, - "_watches": 18, - "_topics": [ - "language-model", - "code-intelligence", - "programming-language", - "representation-learning", - "nlp" - ], - "_language": "Python", - "_homepage": "https://arxiv.org/abs/2109.00859", - "_description": "Code for CodeT5: a new code-aware pre-trained encoder-decoder model.", - "_organization": "salesforce", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-07-08T00:00:00.000Z", - "_created_at": "2021-08-16T00:00:00.000Z", - "_age_weeks": 70, - "_stars_per_week": 7.81, - "_pop_contributor_count": 3, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "salesforceresearch" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.1, - "_pop_updated_issues_count": 10, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 16, - "_pop_updated_since_days": 5, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 10.0, - "_pop_comment_count": 4.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.4, - "_pop_dependents_count": 0, - "_pop_score": 13.99, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/salesforce/codet5/master/README.md", - "_readme_localurl": "salesforce~codet5~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, - { - "index": 874, - "category": "util", - "githuburl": "https://github.com/ipython/ipykernel", - "featured": null, - "links": null, - "description": null, - "_repopath": "ipython/ipykernel", - "_reponame": "ipykernel", - "_stars": 529, - "_forks": 335, - "_watches": 33, - "_topics": [ - "ipython", - "ipython-kernel", - "jupyter", - "python", - "closember", - "jupyter-notebook", - "kernel" - ], - "_language": "Python", - "_homepage": "https://ipython.readthedocs.io/en/stable/", - "_description": "ipykernel: IPython Kernel for Jupyter", - "_organization": "ipython", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2015-04-09T00:00:00.000Z", - "_age_weeks": 401, - "_stars_per_week": 1.32, - "_pop_contributor_count": 161, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "amazonwebservices", - "mongodb", - "quansight-labs", - "simularesearchlaboratory" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.9, - "_pop_updated_issues_count": 77, - "_pop_closed_issues_count": 59, - "_pop_created_since_days": 94, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 29, - "_pop_recent_releases_estimated_tags": 14, - "_pop_recent_releases_adjusted_count": 29, - "_pop_issue_count": 77.0, - "_pop_comment_count": 132.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 1683, - "_pop_score": 65.4, + "_pop_dependents_count": 0, + "_pop_score": 18.56, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/ipython/ipykernel/master/README.md", - "_readme_localurl": "ipython~ipykernel~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pmaji/crypto-whale-watching-app/master/README.md", + "_readme_localurl": "pmaji~crypto-whale-watching-app~README.md", "_requirements_filenames": [ - "pyproject.toml" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/ipython/ipykernel/master/pyproject.toml" + "https://raw.githubusercontent.com/pmaji/crypto-whale-watching-app/master/requirements.txt" ], "_requirements_localurls": [ - "ipython~ipykernel~pyproject.toml" + "pmaji~crypto-whale-watching-app~requirements.txt" ] }, { - "index": 160, - "category": "nlp", - "githuburl": "https://github.com/nipunsadvilkar/pysbd", + "index": 576, + "category": "util", + "githuburl": "https://github.com/fsspec/filesystem_spec", "featured": null, "links": null, "description": null, - "_repopath": "nipunsadvilkar/pysbd", - "_reponame": "pySBD", - "_stars": 528, - "_forks": 63, - "_watches": 10, - "_topics": [ - "sentence-boundary-detection", - "python", - "segmentation", - "rule-based", - "sentence-tokenizer", - "sentence" - ], + "_repopath": "fsspec/filesystem_spec", + "_reponame": "filesystem_spec", + "_stars": 548, + "_forks": 236, + "_watches": 22, "_language": "Python", - "_homepage": "", - "_description": "pySBD: \ud83d\udc0d\ud83d\udcafpySBD (Python Sentence Boundary Disambiguation) is a rule-based sentence boundary detection that works out-of-the-box.", - "_organization": "nipunsadvilkar", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2021-02-11T00:00:00.000Z", - "_created_at": "2017-06-11T00:00:00.000Z", - "_age_weeks": 288, - "_stars_per_week": 1.83, - "_pop_contributor_count": 6, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": null, + "_description": "filesystem_spec: A specification that python filesystems should adhere to.", + "_organization": "fsspec", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-04-23T00:00:00.000Z", + "_age_weeks": 252, + "_stars_per_week": 2.17, + "_topics": [], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 170, + "_pop_contributor_logins": [ + "TomAugspurger@microsoft", + "asford@abcellerabiologics", + "efiop@iterative", + "ianthomas23@anaconda", + "isidentical@fal-ai", + "juliospain", + "martindurant@anaconda", + "rjzamora@nvidia", + "sodre@zeroae", + "xyb" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "explosion", - "gerulatatechnologies" + "abcellerabiologics", + "anaconda", + "fal-ai", + "iterative", + "microsoft", + "nvidia", + "zeroae" + ], + "_pop_contributor_orgs_raw": [ + "@NVIDIA", + "@fal-ai", + "@iterative", + "@microsoft", + "AbCellera Biologics", + "Anaconda, Inc.", + "Anaconda, inc.", + "ZeroAE LLC" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 67, - "_pop_updated_since_days": 22, + "_pop_commit_frequency": 2.88, + "_pop_updated_issues_count": 98, + "_pop_closed_issues_count": 67, + "_pop_created_since_days": 59, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 2.0, - "_pop_comment_count": 3.0, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 98.0, + "_pop_comment_count": 199.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 5, - "_pop_score": 23.76, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 52.34, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nipunsadvilkar/pysbd/master/README.md", - "_readme_localurl": "nipunsadvilkar~pysbd~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/fsspec/filesystem_spec/master/README.md", + "_readme_localurl": "fsspec~filesystem_spec~README.md", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/nipunsadvilkar/pysbd/master/setup.py" + "https://raw.githubusercontent.com/fsspec/filesystem_spec/master/setup.py", + "https://raw.githubusercontent.com/fsspec/filesystem_spec/master/pyproject.toml" ], "_requirements_localurls": [ - "nipunsadvilkar~pysbd~setup.py" + "fsspec~filesystem_spec~setup.py", + "fsspec~filesystem_spec~pyproject.toml" ] }, { - "index": 625, - "category": "gis", - "githuburl": "https://github.com/scitools/iris", + "index": 685, + "category": "ml", + "githuburl": "https://github.com/nvidia/cuda-python", "featured": null, "links": null, "description": null, - "_repopath": "scitools/iris", - "_reponame": "iris", - "_stars": 527, - "_forks": 259, - "_watches": 44, - "_topics": [ - "iris", - "python", - "netcdf", - "grib", - "visualisation", - "data-analysis", - "earth-science", - "meteorology", - "oceanography", - "spaceweather" - ], + "_repopath": "nvidia/cuda-python", + "_reponame": "cuda-python", + "_stars": 543, + "_forks": 42, + "_watches": 22, "_language": "Python", - "_homepage": "https://scitools-iris.readthedocs.io/en/latest/", - "_description": "iris: A powerful, format-agnostic, and community-driven Python package for analysing and visualising Earth science data", - "_organization": "scitools", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2012-08-06T00:00:00.000Z", - "_age_weeks": 541, - "_stars_per_week": 0.97, - "_pop_contributor_count": 99, + "_homepage": "https://nvidia.github.io/cuda-python/", + "_description": "cuda-python: CUDA Python Low-level Bindings", + "_organization": "nvidia", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-06-28T00:00:00.000Z", + "_age_weeks": 86, + "_stars_per_week": 6.29, + "_topics": [], + "_last_commit_date": "2022-12-09T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "mmccarty@nvidia", + "vzhurba01" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "metoffice" + "nvidia" + ], + "_pop_contributor_orgs_raw": [ + "NVIDIA" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.63, - "_pop_updated_issues_count": 257, - "_pop_closed_issues_count": 160, - "_pop_created_since_days": 126, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 10, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 10, - "_pop_issue_count": 257.0, - "_pop_comment_count": 387.0, + "_pop_commit_frequency": 0.19, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 9, + "_pop_created_since_days": 20, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 12.0, + "_pop_comment_count": 24.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 46, - "_pop_score": 53.76, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 23.0, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/scitools/iris/master/README.md", - "_readme_localurl": "scitools~iris~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nvidia/cuda-python/master/README.md", + "_readme_localurl": "nvidia~cuda-python~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/scitools/iris/master/setup.py", - "https://raw.githubusercontent.com/scitools/iris/master/pyproject.toml" + "https://raw.githubusercontent.com/nvidia/cuda-python/master/requirements.txt", + "https://raw.githubusercontent.com/nvidia/cuda-python/master/setup.py" ], "_requirements_localurls": [ - "scitools~iris~setup.py", - "scitools~iris~pyproject.toml" + "nvidia~cuda-python~requirements.txt", + "nvidia~cuda-python~setup.py" ] }, { - "index": 516, - "category": "ml-dl", - "githuburl": "https://github.com/kakaobrain/rq-vae-transformer", + "index": 883, + "category": "time-series", + "githuburl": "https://github.com/autoviml/auto_ts", "featured": null, "links": null, "description": null, - "_repopath": "kakaobrain/rq-vae-transformer", - "_reponame": "rq-vae-transformer", - "_stars": 521, - "_forks": 60, - "_watches": 15, - "_topics": [], + "_repopath": "autoviml/auto_ts", + "_reponame": "Auto_TS", + "_stars": 540, + "_forks": 95, + "_watches": 17, "_language": "Jupyter Notebook", "_homepage": "", - "_description": "rq-vae-transformer: The official implementation of Autoregressive Image Generation using Residual Quantization (CVPR '22)", - "_organization": "kakaobrain", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-08-18T00:00:00.000Z", - "_created_at": "2022-03-03T00:00:00.000Z", - "_age_weeks": 41, - "_stars_per_week": 12.53, - "_pop_contributor_count": 1, + "_description": "Auto_TS: Automatically build ARIMA, SARIMAX, VAR, FB Prophet and XGBoost Models on Time Series data sets with a Single Line of Code. Now updated with Dask to handle millions of rows.", + "_organization": "autoviml", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-02-15T00:00:00.000Z", + "_age_weeks": 157, + "_stars_per_week": 3.43, + "_topics": [ + "time-series", + "time-series-analysis", + "auto-timeseries", + "automl", + "autosklearn", + "tpot", + "autokeras", + "python3", + "prophet", + "python", + "sklearn", + "arima", + "auto-arima", + "auto-sklearn" + ], + "_last_commit_date": "2022-08-16T00:00:00.000Z", + "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "AutoViML", + "JimmyBroomfield", + "Kevin-Chen0", + "ngupta23@o9solutions", + "rsesha" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "kakaobrain" + "o9solutions" + ], + "_pop_contributor_orgs_raw": [ + "o9 Solutions Inc." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.08, + "_pop_commit_frequency": 0.12, "_pop_updated_issues_count": 3, "_pop_closed_issues_count": 2, - "_pop_created_since_days": 10, - "_pop_updated_since_days": 4, + "_pop_created_since_days": 37, + "_pop_updated_since_days": 6, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, "_pop_issue_count": 3.0, "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.3, "_pop_dependents_count": 0, - "_pop_score": 12.63, + "_pop_score": 19.61, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/kakaobrain/rq-vae-transformer/master/README.md", - "_readme_localurl": "kakaobrain~rq-vae-transformer~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/autoviml/auto_ts/master/README.md", + "_readme_localurl": "autoviml~auto_ts~README.md", "_requirements_filenames": [ - "requirements.txt" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/kakaobrain/rq-vae-transformer/master/requirements.txt" + "https://raw.githubusercontent.com/autoviml/auto_ts/master/requirements.txt", + "https://raw.githubusercontent.com/autoviml/auto_ts/master/setup.py" ], "_requirements_localurls": [ - "kakaobrain~rq-vae-transformer~requirements.txt" + "autoviml~auto_ts~requirements.txt", + "autoviml~auto_ts~setup.py" ] }, { - "index": 685, - "category": "ml", - "githuburl": "https://github.com/nvidia/cuda-python", + "index": 625, + "category": "gis", + "githuburl": "https://github.com/scitools/iris", "featured": null, "links": null, "description": null, - "_repopath": "nvidia/cuda-python", - "_reponame": "cuda-python", - "_stars": 520, - "_forks": 39, - "_watches": 22, - "_topics": [], + "_repopath": "scitools/iris", + "_reponame": "iris", + "_stars": 536, + "_forks": 264, + "_watches": 45, "_language": "Python", - "_homepage": "https://nvidia.github.io/cuda-python/", - "_description": "cuda-python: CUDA Python Low-level Bindings", - "_organization": "nvidia", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-09T00:00:00.000Z", - "_created_at": "2021-06-28T00:00:00.000Z", - "_age_weeks": 77, - "_stars_per_week": 6.75, - "_pop_contributor_count": 2, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://scitools-iris.readthedocs.io/en/latest/", + "_description": "iris: A powerful, format-agnostic, and community-driven Python package for analysing and visualising Earth science data", + "_organization": "scitools", + "_updated_at": "2023-02-16T00:00:00.000Z", + "_created_at": "2012-08-06T00:00:00.000Z", + "_age_weeks": 550, + "_stars_per_week": 0.97, + "_topics": [ + "iris", + "python", + "netcdf", + "grib", + "visualisation", + "data-analysis", + "earth-science", + "meteorology", + "oceanography", + "spaceweather" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 100, + "_pop_contributor_logins": [ + "DPeterK@informatics-lab", + "QuLogic", + "ajdawson", + "bblay", + "bjlittle@metoffice", + "esc24", + "lbdreyer", + "pelson", + "pp-mo@metoffice", + "rhattersley@metoffice" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "nvidia" + "informatics-lab", + "metoffice" + ], + "_pop_contributor_orgs_raw": [ + "@MetOffice ", + "@informatics-lab ", + "Met Office", + "MetOffice" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.23, - "_pop_updated_issues_count": 18, - "_pop_closed_issues_count": 14, - "_pop_created_since_days": 18, + "_pop_commit_frequency": 5.58, + "_pop_updated_issues_count": 174, + "_pop_closed_issues_count": 98, + "_pop_created_since_days": 128, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 7, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 18.0, - "_pop_comment_count": 27.0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 174.0, + "_pop_comment_count": 237.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 3, - "_pop_score": 28.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 47.49, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nvidia/cuda-python/master/README.md", - "_readme_localurl": "nvidia~cuda-python~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/scitools/iris/master/README.md", + "_readme_localurl": "scitools~iris~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/nvidia/cuda-python/master/requirements.txt", - "https://raw.githubusercontent.com/nvidia/cuda-python/master/setup.py" + "https://raw.githubusercontent.com/scitools/iris/master/setup.py", + "https://raw.githubusercontent.com/scitools/iris/master/pyproject.toml" ], "_requirements_localurls": [ - "nvidia~cuda-python~requirements.txt", - "nvidia~cuda-python~setup.py" + "scitools~iris~setup.py", + "scitools~iris~pyproject.toml" ] }, { - "index": 576, + "index": 874, "category": "util", - "githuburl": "https://github.com/fsspec/filesystem_spec", + "githuburl": "https://github.com/ipython/ipykernel", "featured": null, "links": null, "description": null, - "_repopath": "fsspec/filesystem_spec", - "_reponame": "filesystem_spec", - "_stars": 520, - "_forks": 226, - "_watches": 21, - "_topics": [], + "_repopath": "ipython/ipykernel", + "_reponame": "ipykernel", + "_stars": 535, + "_forks": 336, + "_watches": 34, "_language": "Python", - "_homepage": null, - "_description": "filesystem_spec: A specification that python filesystems should adhere to.", - "_organization": "fsspec", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", - "_created_at": "2018-04-23T00:00:00.000Z", - "_age_weeks": 243, - "_stars_per_week": 2.14, + "_homepage": "https://ipython.readthedocs.io/en/stable/", + "_description": "ipykernel: IPython Kernel for Jupyter", + "_organization": "ipython", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2015-04-09T00:00:00.000Z", + "_age_weeks": 410, + "_stars_per_week": 1.3, + "_topics": [ + "ipython", + "ipython-kernel", + "jupyter", + "python", + "closember", + "jupyter-notebook", + "kernel" + ], + "_last_commit_date": "2023-02-16T00:00:00.000Z", "_pop_contributor_count": 165, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Carreau@quansight-labs", + "SylvainCorlay@quantstack", + "blink1073@mongodb", + "echarles@datalayer", + "ellisonbg@amazonwebservices", + "fperez@universityofcalifornia,berkeley.", + "github-actions[bot]", + "minrk@simularesearchlaboratory", + "pre-commit-ci[bot]", + "takluyver" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "abcellerabiologics", - "anaconda", - "fal-ai", - "microsoft", - "nvidia" + "amazonwebservices", + "datalayer", + "mongodb", + "quansight-labs", + "quantstack", + "simularesearchlaboratory", + "universityofcalifornia,berkeley." + ], + "_pop_contributor_orgs_raw": [ + "@Datalayer", + "@Quansight-Labs", + "Amazon Web Services", + "MongoDB", + "QuantStack", + "Simula Research Laboratory", + "University of California, Berkeley." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.67, - "_pop_updated_issues_count": 118, - "_pop_closed_issues_count": 84, - "_pop_created_since_days": 57, + "_pop_commit_frequency": 4.37, + "_pop_updated_issues_count": 92, + "_pop_closed_issues_count": 61, + "_pop_created_since_days": 96, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, + "_pop_recent_releases_count": 32, "_pop_recent_releases_estimated_tags": 14, - "_pop_recent_releases_adjusted_count": 14, - "_pop_issue_count": 118.0, - "_pop_comment_count": 314.0, + "_pop_recent_releases_adjusted_count": 32, + "_pop_issue_count": 92.0, + "_pop_comment_count": 225.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.7, - "_pop_dependents_count": 209, - "_pop_score": 61.43, + "_pop_comment_frequency": 2.4, + "_pop_dependents_count": 0, + "_pop_score": 55.46, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/fsspec/filesystem_spec/master/README.md", - "_readme_localurl": "fsspec~filesystem_spec~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/ipython/ipykernel/master/README.md", + "_readme_localurl": "ipython~ipykernel~README.md", "_requirements_filenames": [ - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/fsspec/filesystem_spec/master/setup.py", - "https://raw.githubusercontent.com/fsspec/filesystem_spec/master/pyproject.toml" + "https://raw.githubusercontent.com/ipython/ipykernel/master/pyproject.toml" ], "_requirements_localurls": [ - "fsspec~filesystem_spec~setup.py", - "fsspec~filesystem_spec~pyproject.toml" + "ipython~ipykernel~pyproject.toml" ] }, { - "index": 665, - "category": "study", - "githuburl": "https://github.com/rasbt/stat453-deep-learning-ss20", + "index": 516, + "category": "ml-dl", + "githuburl": "https://github.com/kakaobrain/rq-vae-transformer", "featured": null, "links": null, "description": null, - "_repopath": "rasbt/stat453-deep-learning-ss20", - "_reponame": "stat453-deep-learning-ss20", - "_stars": 518, - "_forks": 148, - "_watches": 36, - "_topics": [], + "_repopath": "kakaobrain/rq-vae-transformer", + "_reponame": "rq-vae-transformer", + "_stars": 535, + "_forks": 61, + "_watches": 15, "_language": "Jupyter Notebook", - "_homepage": "http://pages.stat.wisc.edu/~sraschka/teaching/stat453-ss2020/", - "_description": "stat453-deep-learning-ss20: STAT 453: Intro to Deep Learning @ UW-Madison (Spring 2020)", - "_organization": "rasbt", - "_updated_at": "2022-11-30T00:00:00.000Z", - "_last_commit_date": "2020-05-01T00:00:00.000Z", - "_created_at": "2020-01-20T00:00:00.000Z", - "_age_weeks": 152, - "_stars_per_week": 3.41, + "_homepage": "", + "_description": "rq-vae-transformer: The official implementation of Autoregressive Image Generation using Residual Quantization (CVPR '22)", + "_organization": "kakaobrain", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-03-03T00:00:00.000Z", + "_age_weeks": 50, + "_stars_per_week": 10.52, + "_topics": [], + "_last_commit_date": "2022-08-18T00:00:00.000Z", "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "LeeDoYup@kakaobrain" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "lightning-ai,universityofwisconsin-madison" + "kakaobrain" + ], + "_pop_contributor_orgs_raw": [ + "Kakao Brain" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, + "_pop_commit_frequency": 0.08, "_pop_updated_issues_count": 2, "_pop_closed_issues_count": 1, - "_pop_created_since_days": 35, - "_pop_updated_since_days": 32, + "_pop_created_since_days": 12, + "_pop_updated_since_days": 6, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, "_pop_issue_count": 2.0, - "_pop_comment_count": 1.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 6, - "_pop_score": 11.98, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/rasbt/stat453-deep-learning-ss20/master/README.md", - "_readme_localurl": "rasbt~stat453-deep-learning-ss20~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, - { - "index": 306, - "category": "crypto", - "githuburl": "https://github.com/palkeo/panoramix", - "featured": null, - "links": null, - "description": null, - "_repopath": "palkeo/panoramix", - "_reponame": "panoramix", - "_stars": 516, - "_forks": 142, - "_watches": 31, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "panoramix: Ethereum decompiler", - "_organization": "palkeo", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2020-08-22T00:00:00.000Z", - "_created_at": "2020-02-17T00:00:00.000Z", - "_age_weeks": 148, - "_stars_per_week": 3.49, - "_pop_contributor_count": 4, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "ethereum", - "eveem.org" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 5, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 34, - "_pop_updated_since_days": 28, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 5.0, - "_pop_comment_count": 4.0, + "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, + "_pop_comment_frequency": 1.0, "_pop_dependents_count": 0, - "_pop_score": 16.02, + "_pop_score": 11.14, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/palkeo/panoramix/master/README.md", - "_readme_localurl": "palkeo~panoramix~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/kakaobrain/rq-vae-transformer/master/README.md", + "_readme_localurl": "kakaobrain~rq-vae-transformer~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/palkeo/panoramix/master/setup.py" + "https://raw.githubusercontent.com/kakaobrain/rq-vae-transformer/master/requirements.txt" ], "_requirements_localurls": [ - "palkeo~panoramix~setup.py" + "kakaobrain~rq-vae-transformer~requirements.txt" ] }, { @@ -46364,43 +63949,65 @@ "description": null, "_repopath": "toblerity/rtree", "_reponame": "rtree", - "_stars": 515, + "_stars": 527, "_forks": 123, "_watches": 30, - "_topics": [], "_language": "Python", "_homepage": "https://rtree.readthedocs.io/en/latest/", "_description": "Rtree: spatial index for Python GIS \u00b6", "_organization": "toblerity", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2011-06-19T00:00:00.000Z", - "_age_weeks": 600, + "_age_weeks": 609, "_stars_per_week": 0.86, + "_topics": [], + "_last_commit_date": "2023-01-23T00:00:00.000Z", "_pop_contributor_count": 39, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "EwoutH", + "KennethAdamMiller", + "adamjstewart@universityofillinoisaturbana-champaign", + "brentp@universityofutah", + "dependabot[bot]", + "dokai@facebook", + "hobu@hobu", + "mwtoews@gnsscience", + "sgillies@planetlabs", + "sr-murthy" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "facebook", + "gnsscience", "hobu", "planetlabs", "universityofillinoisaturbana-champaign", "universityofutah" ], + "_pop_contributor_orgs_raw": [ + "@planetlabs", + "Facebook", + "GNS Science", + "Hobu, Inc.", + "University of Illinois at Urbana-Champaign", + "University of Utah" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.75, - "_pop_updated_issues_count": 11, - "_pop_closed_issues_count": 10, - "_pop_created_since_days": 140, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.35, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 142, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 11.0, - "_pop_comment_count": 26.0, + "_pop_issue_count": 6.0, + "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.4, - "_pop_dependents_count": 25, - "_pop_score": 47.17, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 37.11, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/toblerity/rtree/master/README.md", "_readme_localurl": "toblerity~rtree~README.md", @@ -46417,80 +64024,6 @@ "toblerity~rtree~pyproject.toml" ] }, - { - "index": 883, - "category": "time-series", - "githuburl": "https://github.com/autoviml/auto_ts", - "featured": null, - "links": null, - "description": null, - "_repopath": "autoviml/auto_ts", - "_reponame": "Auto_TS", - "_stars": 514, - "_forks": 92, - "_watches": 16, - "_topics": [ - "time-series", - "time-series-analysis", - "auto-timeseries", - "automl", - "autosklearn", - "tpot", - "autokeras", - "python3", - "prophet", - "python", - "sklearn", - "arima", - "auto-arima", - "auto-sklearn" - ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "Auto_TS: Automatically build ARIMA, SARIMAX, VAR, FB Prophet and XGBoost Models on Time Series data sets with a Single Line of Code. Now updated with Dask to handle millions of rows.", - "_organization": "autoviml", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-08-16T00:00:00.000Z", - "_created_at": "2020-02-15T00:00:00.000Z", - "_age_weeks": 148, - "_stars_per_week": 3.47, - "_pop_contributor_count": 6, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "o9solutions" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.27, - "_pop_updated_issues_count": 8, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 35, - "_pop_updated_since_days": 4, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 8.0, - "_pop_comment_count": 12.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 26, - "_pop_score": 27.54, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/autoviml/auto_ts/master/README.md", - "_readme_localurl": "autoviml~auto_ts~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/autoviml/auto_ts/master/requirements.txt", - "https://raw.githubusercontent.com/autoviml/auto_ts/master/setup.py" - ], - "_requirements_localurls": [ - "autoviml~auto_ts~requirements.txt", - "autoviml~auto_ts~setup.py" - ] - }, { "index": 589, "category": "ml-ops", @@ -46500,9 +64033,17 @@ "description": null, "_repopath": "kedro-org/kedro-viz", "_reponame": "kedro-viz", - "_stars": 510, - "_forks": 84, - "_watches": 9, + "_stars": 522, + "_forks": 87, + "_watches": 11, + "_language": "JavaScript", + "_homepage": "https://demo.kedro.org/", + "_description": "kedro-viz: Visualise your Kedro data and machine-learning pipelines and track your experiments. ", + "_organization": "kedro-org", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2019-05-09T00:00:00.000Z", + "_age_weeks": 197, + "_stars_per_week": 2.64, "_topics": [ "kedro", "kedro-plugin", @@ -46512,37 +64053,47 @@ "experiment-tracking", "python" ], - "_language": "JavaScript", - "_homepage": "https://demo.kedro.org/", - "_description": "kedro-viz: Visualise your Kedro data and machine-learning pipelines and track your experiments. ", - "_organization": "kedro-org", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2019-05-09T00:00:00.000Z", - "_age_weeks": 188, - "_stars_per_week": 2.7, + "_last_commit_date": "2023-02-21T00:00:00.000Z", "_pop_contributor_count": 38, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "921kiyo", + "AntonyMilneQB", + "bru5", + "dependabot[bot]", + "limdauto", + "rashidakanchwala", + "richardwestenra@medshr", + "snyk-bot@snyk", + "studioswong", + "tynandebold@kedro-org,quantumblacklabs" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "kedro-org,quantumblacklabs", - "medshr" + "medshr", + "snyk" + ], + "_pop_contributor_orgs_raw": [ + "@Snyk", + "@kedro-org, @quantumblacklabs", + "MedShr" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.83, - "_pop_updated_issues_count": 149, - "_pop_closed_issues_count": 116, - "_pop_created_since_days": 44, + "_pop_commit_frequency": 4.06, + "_pop_updated_issues_count": 136, + "_pop_closed_issues_count": 98, + "_pop_created_since_days": 46, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 12, + "_pop_recent_releases_count": 13, "_pop_recent_releases_estimated_tags": 14, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 149.0, - "_pop_comment_count": 204.0, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 136.0, + "_pop_comment_count": 141.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 2, - "_pop_score": 44.86, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 43.35, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/kedro-org/kedro-viz/master/README.md", "_readme_localurl": "kedro-org~kedro-viz~README.md", @@ -46551,61 +64102,60 @@ "_requirements_localurls": [] }, { - "index": 413, - "category": "util", - "githuburl": "https://github.com/bastibe/python-soundfile", + "index": 665, + "category": "study", + "githuburl": "https://github.com/rasbt/stat453-deep-learning-ss20", "featured": null, "links": null, "description": null, - "_repopath": "bastibe/python-soundfile", - "_reponame": "python-soundfile", - "_stars": 507, - "_forks": 85, - "_watches": 17, + "_repopath": "rasbt/stat453-deep-learning-ss20", + "_reponame": "stat453-deep-learning-ss20", + "_stars": 521, + "_forks": 154, + "_watches": 36, + "_language": "Jupyter Notebook", + "_homepage": "http://pages.stat.wisc.edu/~sraschka/teaching/stat453-ss2020/", + "_description": "stat453-deep-learning-ss20: STAT 453: Intro to Deep Learning @ UW-Madison (Spring 2020)", + "_organization": "rasbt", + "_updated_at": "2023-02-15T00:00:00.000Z", + "_created_at": "2020-01-20T00:00:00.000Z", + "_age_weeks": 161, + "_stars_per_week": 3.23, "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "python-soundfile: SoundFile is an audio library based on libsndfile, CFFI, and NumPy", - "_organization": "bastibe", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-09-27T00:00:00.000Z", - "_created_at": "2013-08-27T00:00:00.000Z", - "_age_weeks": 485, - "_stars_per_week": 1.04, - "_pop_contributor_count": 28, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2020-05-01T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "rasbt@lightning-ai,universityofwisconsin-madison" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "quantco", - "self" + "lightning-ai,universityofwisconsin-madison" + ], + "_pop_contributor_orgs_raw": [ + "@Lightning-AI , University of Wisconsin-Madison" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.37, - "_pop_updated_issues_count": 30, - "_pop_closed_issues_count": 13, - "_pop_created_since_days": 113, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 30.0, - "_pop_comment_count": 99.0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 38, + "_pop_updated_since_days": 34, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.3, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 37.3, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/bastibe/python-soundfile/master/README.rst", - "_readme_localurl": "bastibe~python-soundfile~README.rst", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/bastibe/python-soundfile/master/setup.py" - ], - "_requirements_localurls": [ - "bastibe~python-soundfile~setup.py" - ] + "_pop_score": 5.58, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/rasbt/stat453-deep-learning-ss20/master/README.md", + "_readme_localurl": "rasbt~stat453-deep-learning-ss20~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { "index": 359, @@ -46616,38 +64166,59 @@ "description": null, "_repopath": "google/ml-metadata", "_reponame": "ml-metadata", - "_stars": 502, - "_forks": 114, - "_watches": 27, - "_topics": [], + "_stars": 519, + "_forks": 118, + "_watches": 29, "_language": "C++", "_homepage": "https://www.tensorflow.org/tfx/guide/mlmd", "_description": "ml-metadata: For recording and retrieving metadata associated with ML developer and data scientist workflows.", "_organization": "google", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", + "_updated_at": "2023-02-19T00:00:00.000Z", "_created_at": "2019-01-15T00:00:00.000Z", - "_age_weeks": 204, - "_stars_per_week": 2.45, + "_age_weeks": 214, + "_stars_per_week": 2.42, + "_topics": [], + "_last_commit_date": "2023-02-18T00:00:00.000Z", "_pop_contributor_count": 15, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_pop_contributor_logins": [ + "BrianSong", + "CandiedCode", + "StefanoFioravanzo@arrikto", + "atn832", + "daikeshi@spotify", + "hughmiao", + "mzinkevi", + "npoly", + "yupbank@shopify", + "zijianjoy" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "arrikto", + "shopify", + "spotify" + ], + "_pop_contributor_orgs_raw": [ + "@Shopify ", + "Arrikto", + "Spotify" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.56, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 48, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 50, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 7, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 4.0, - "_pop_comment_count": 28.0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 6.0, + "_pop_comment_count": 8.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 7.0, - "_pop_dependents_count": 20, - "_pop_score": 37.83, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 34.17, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/google/ml-metadata/master/README.md", "_readme_localurl": "google~ml-metadata~README.md", @@ -46665,108 +64236,148 @@ ] }, { - "index": 671, - "category": "ml", - "githuburl": "https://github.com/apple/ml-ane-transformers", + "index": 413, + "category": "util", + "githuburl": "https://github.com/bastibe/python-soundfile", "featured": null, "links": null, "description": null, - "_repopath": "apple/ml-ane-transformers", - "_reponame": "ml-ane-transformers", - "_stars": 494, - "_forks": 26, - "_watches": 26, - "_topics": [], + "_repopath": "bastibe/python-soundfile", + "_reponame": "python-soundfile", + "_stars": 518, + "_forks": 87, + "_watches": 17, "_language": "Python", "_homepage": "", - "_description": "ml-ane-transformers: Reference implementation of the Transformer architecture optimized for Apple Neural Engine (ANE)", - "_organization": "apple", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-08-09T00:00:00.000Z", - "_created_at": "2022-06-03T00:00:00.000Z", - "_age_weeks": 28, - "_stars_per_week": 17.38, - "_pop_contributor_count": 1, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_description": "python-soundfile: SoundFile is an audio library based on libsndfile, CFFI, and NumPy", + "_organization": "bastibe", + "_updated_at": "2023-02-15T00:00:00.000Z", + "_created_at": "2013-08-27T00:00:00.000Z", + "_age_weeks": 495, + "_stars_per_week": 1.05, + "_topics": [], + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 29, + "_pop_contributor_logins": [ + "Jajcus", + "bastibe", + "davidblewett", + "gesellkammer", + "jonashaag@quantco", + "mgeier", + "peircej@universityofnottingham", + "tgarc@self", + "tillahoffmann@harvardt.h.chanschoolofpublichealth", + "upsuper@canva" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "canva", + "harvardt.h.chanschoolofpublichealth", + "quantco", + "self", + "universityofnottingham" + ], + "_pop_contributor_orgs_raw": [ + "@Canva ", + "@Quantco", + "Harvard T.H. Chan School of Public Health", + "University of Nottingham", + "self" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.1, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 7, - "_pop_updated_since_days": 4, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, + "_pop_commit_frequency": 0.48, + "_pop_updated_issues_count": 20, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 116, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 20.0, + "_pop_comment_count": 73.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, + "_pop_comment_frequency": 3.6, "_pop_dependents_count": 0, - "_pop_score": 5.7, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/apple/ml-ane-transformers/master/README.md", - "_readme_localurl": "apple~ml-ane-transformers~README.md", + "_pop_score": 44.7, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/bastibe/python-soundfile/master/README.rst", + "_readme_localurl": "bastibe~python-soundfile~README.rst", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/apple/ml-ane-transformers/master/requirements.txt", - "https://raw.githubusercontent.com/apple/ml-ane-transformers/master/setup.py" + "https://raw.githubusercontent.com/bastibe/python-soundfile/master/setup.py" ], "_requirements_localurls": [ - "apple~ml-ane-transformers~requirements.txt", - "apple~ml-ane-transformers~setup.py" + "bastibe~python-soundfile~setup.py" ] }, { - "index": 241, - "category": "ml", - "githuburl": "https://github.com/microsoft/focal-transformer", + "index": 797, + "category": "ml-interpretability", + "githuburl": "https://github.com/selfexplainml/piml-toolbox", "featured": null, "links": null, "description": null, - "_repopath": "microsoft/focal-transformer", - "_reponame": "Focal-Transformer", - "_stars": 487, - "_forks": 57, - "_watches": 17, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "Focal-Transformer: [NeurIPS 2021 Spotlight] Official code for \"Focal Self-attention for Local-Global Interactions in Vision Transformers\"", - "_organization": "microsoft", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-03-27T00:00:00.000Z", - "_created_at": "2021-07-10T00:00:00.000Z", - "_age_weeks": 75, - "_stars_per_week": 6.47, - "_pop_contributor_count": 2, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_repopath": "selfexplainml/piml-toolbox", + "_reponame": "PiML-Toolbox", + "_stars": 513, + "_forks": 61, + "_watches": 14, + "_language": "Jupyter Notebook", + "_homepage": "https://selfexplainml.github.io/PiML-Toolbox", + "_description": "PiML-Toolbox: PiML (Python Interpretable Machine Learning) toolbox for model development and model validation", + "_organization": "selfexplainml", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-04-29T00:00:00.000Z", + "_age_weeks": 42, + "_stars_per_week": 12.01, + "_topics": [ + "interpretable-machine-learning", + "low-code", + "ml-workflow", + "model-diagnostics" + ], + "_last_commit_date": "2023-02-09T00:00:00.000Z", + "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "CnBDM-Su@cityuniversityofhongkong", + "Eveyz", + "ZebinYang", + "ajzhanghk", + "parulnith@h2oai", + "simoncos" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "microsoft" + "cityuniversityofhongkong", + "h2oai" + ], + "_pop_contributor_orgs_raw": [ + "@h2oai", + "City University of HongKong" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.04, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 18, - "_pop_updated_since_days": 9, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 2.0, - "_pop_comment_count": 1.0, + "_pop_commit_frequency": 4.29, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 10, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 15, + "_pop_recent_releases_estimated_tags": 19, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 9.0, + "_pop_comment_count": 27.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 2, - "_pop_score": 12.53, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 0, + "_pop_score": 33.42, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/microsoft/focal-transformer/master/README.md", - "_readme_localurl": "microsoft~focal-transformer~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/selfexplainml/piml-toolbox/master/README.md", + "_readme_localurl": "selfexplainml~piml-toolbox~README.md", "_requirements_filenames": [], "_requirements_giturls": [], "_requirements_localurls": [] @@ -46780,41 +64391,49 @@ "description": null, "_repopath": "brandtbucher/specialist", "_reponame": "specialist", - "_stars": 485, + "_stars": 511, "_forks": 9, - "_watches": 9, - "_topics": [], + "_watches": 10, "_language": "Python", "_homepage": "", "_description": "specialist: Visualize CPython 3.11's specializing, adaptive interpreter. :fire:", "_organization": "brandtbucher", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2022-06-01T00:00:00.000Z", - "_age_weeks": 28, - "_stars_per_week": 16.89, + "_age_weeks": 38, + "_stars_per_week": 13.45, + "_topics": [], + "_last_commit_date": "2022-12-15T00:00:00.000Z", "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "brandtbucher@microsoft", + "cclauss@christianclauss" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "christianclauss", "microsoft" ], + "_pop_contributor_orgs_raw": [ + "@microsoft", + "Christian Clauss" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 1.0, - "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 7, - "_pop_updated_since_days": 0, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 9, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 10, - "_pop_recent_releases_estimated_tags": 17, + "_pop_recent_releases_estimated_tags": 14, "_pop_recent_releases_adjusted_count": 10, - "_pop_issue_count": 3.0, - "_pop_comment_count": 11.0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 6.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.7, + "_pop_comment_frequency": 3.0, "_pop_dependents_count": 0, - "_pop_score": 26.99, + "_pop_score": 23.48, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/brandtbucher/specialist/master/README.md", "_readme_localurl": "brandtbucher~specialist~README.md", @@ -46829,56 +64448,169 @@ ] }, { - "index": 797, - "category": "ml-interpretability", - "githuburl": "https://github.com/selfexplainml/piml-toolbox", - "featured": null, + "index": 47, + "category": "data", + "githuburl": "https://github.com/macbre/sql-metadata", + "featured": 1.0, "links": null, "description": null, - "_repopath": "selfexplainml/piml-toolbox", - "_reponame": "PiML-Toolbox", - "_stars": 485, - "_forks": 52, - "_watches": 14, + "_repopath": "macbre/sql-metadata", + "_reponame": "sql-metadata", + "_stars": 506, + "_forks": 86, + "_watches": 15, + "_language": "Python", + "_homepage": "https://pypi.python.org/pypi/sql-metadata", + "_description": "sql-metadata: Uses tokenized query returned by python-sqlparse and generates query metadata", + "_organization": "macbre", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-06-06T00:00:00.000Z", + "_age_weeks": 298, + "_stars_per_week": 1.7, "_topics": [ - "interpretable-machine-learning", - "low-code", - "ml-workflow", - "model-diagnostics" + "sql", + "parser", + "database", + "sql-parser", + "metadata", + "sqlparse", + "python-package", + "python3-library", + "hiveql", + "hive", + "mysql-query" + ], + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 13, + "_pop_contributor_logins": [ + "Governa", + "Jedi18", + "aborecki", + "christopherpickering@atlas-bi", + "collerek@kaizentech", + "dependabot[bot]", + "dylanhogg@infocruncher", + "glentakahashi", + "macbre@automattic", + "vakhmenin" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "atlas-bi", + "automattic", + "infocruncher", + "kaizentech" + ], + "_pop_contributor_orgs_raw": [ + "@atlas-bi", + "@automattic", + "Infocruncher", + "KaizenTech" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.92, + "_pop_updated_issues_count": 22, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 70, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 22.0, + "_pop_comment_count": 10.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 34.63, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/macbre/sql-metadata/master/README.md", + "_readme_localurl": "macbre~sql-metadata~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/macbre/sql-metadata/master/pyproject.toml" ], + "_requirements_localurls": [ + "macbre~sql-metadata~pyproject.toml" + ] + }, + { + "index": 794, + "category": "gis", + "githuburl": "https://github.com/kvos/coastsat", + "featured": null, + "links": null, + "description": null, + "_repopath": "kvos/coastsat", + "_reponame": "CoastSat", + "_stars": 501, + "_forks": 205, + "_watches": 23, "_language": "Jupyter Notebook", - "_homepage": "https://selfexplainml.github.io/PiML-Toolbox", - "_description": "PiML-Toolbox: PiML (Python Interpretable Machine Learning) toolbox for model development and model validation", - "_organization": "selfexplainml", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2022-04-29T00:00:00.000Z", - "_age_weeks": 33, - "_stars_per_week": 14.51, - "_pop_contributor_count": 6, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_homepage": "http://coastsat.wrl.unsw.edu.au/", + "_description": "CoastSat: Global shoreline mapping tool from satellite imagery", + "_organization": "kvos", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2018-09-28T00:00:00.000Z", + "_age_weeks": 229, + "_stars_per_week": 2.18, + "_topics": [ + "google-earth-engine", + "earth-engine", + "remote-sensing", + "satellite-images", + "coastal-engineering", + "shoreline-detection" + ], + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 14, + "_pop_contributor_logins": [ + "2320sharon@sacramentostate", + "KristenSplinter@unswsydney", + "SBFRF@usaceerdc-fieldresearchfacility", + "borgstad", + "chrisleaman@waterresearchlaboratory(unsw)", + "hcastrol", + "ianlturner", + "kant", + "kvos@waterresearchlaboratory" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "cityuniversityofhongkong" + "sacramentostate", + "unswsydney", + "usaceerdc-fieldresearchfacility", + "waterresearchlaboratory", + "waterresearchlaboratory(unsw)" + ], + "_pop_contributor_orgs_raw": [ + "Sacramento State", + "UNSW Sydney", + "USACE ERDC - Field Research Facility ", + "Water Research Laboratory", + "Water Research Laboratory (UNSW)" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.02, - "_pop_updated_issues_count": 16, - "_pop_closed_issues_count": 13, - "_pop_created_since_days": 8, + "_pop_commit_frequency": 1.44, + "_pop_updated_issues_count": 26, + "_pop_closed_issues_count": 20, + "_pop_created_since_days": 54, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 15, - "_pop_recent_releases_estimated_tags": 24, - "_pop_recent_releases_adjusted_count": 15, - "_pop_issue_count": 16.0, - "_pop_comment_count": 24.0, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 26.0, + "_pop_comment_count": 46.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 5, - "_pop_score": 32.74, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 39.24, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/selfexplainml/piml-toolbox/master/README.md", - "_readme_localurl": "selfexplainml~piml-toolbox~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/kvos/coastsat/master/README.md", + "_readme_localurl": "kvos~coastsat~README.md", "_requirements_filenames": [], "_requirements_giturls": [], "_requirements_localurls": [] @@ -46892,9 +64624,17 @@ "description": null, "_repopath": "nccr-itmo/fedot", "_reponame": "FEDOT", - "_stars": 481, - "_forks": 63, - "_watches": 9, + "_stars": 497, + "_forks": 68, + "_watches": 10, + "_language": "Python", + "_homepage": "https://fedot.readthedocs.io", + "_description": "FEDOT: Automated modeling and machine learning framework FEDOT", + "_organization": "nccr-itmo", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-01-13T00:00:00.000Z", + "_age_weeks": 162, + "_stars_per_week": 3.06, "_topics": [ "automl", "machine-learning", @@ -46908,38 +64648,49 @@ "multimodality", "fedot" ], - "_language": "Python", - "_homepage": "https://fedot.readthedocs.io", - "_description": "FEDOT: Automated modeling and machine learning framework FEDOT", - "_organization": "nccr-itmo", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2020-01-13T00:00:00.000Z", - "_age_weeks": 153, - "_stars_per_week": 3.14, - "_pop_contributor_count": 26, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 27, + "_pop_contributor_logins": [ + "BarabanovaIrina", + "Dreamlone@wiredhut", + "J3FALL", + "MorrisNein", + "YamLyubov", + "YanaPolonskaya@mail.rugroup", + "gkirgizov@itmo-nss-team", + "maypink@itmo-nss-team", + "nicl-nno@itmouniversity", + "valer1435" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "itmo-nss-team", "itmouniversity", "mail.rugroup", "wiredhut" ], + "_pop_contributor_orgs_raw": [ + "@ITMO-NSS-team", + "ITMO University", + "Mail.Ru Group", + "Wiredhut" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.02, - "_pop_updated_issues_count": 175, - "_pop_closed_issues_count": 137, - "_pop_created_since_days": 36, + "_pop_commit_frequency": 4.81, + "_pop_updated_issues_count": 101, + "_pop_closed_issues_count": 74, + "_pop_created_since_days": 38, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 175.0, - "_pop_comment_count": 167.0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 101.0, + "_pop_comment_count": 99.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.0, "_pop_dependents_count": 0, - "_pop_score": 40.61, + "_pop_score": 40.68, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/nccr-itmo/fedot/master/README.rst", "_readme_localurl": "nccr-itmo~fedot~README.rst", @@ -46957,133 +64708,165 @@ ] }, { - "index": 794, - "category": "gis", - "githuburl": "https://github.com/kvos/coastsat", + "index": 241, + "category": "ml", + "githuburl": "https://github.com/microsoft/focal-transformer", "featured": null, "links": null, "description": null, - "_repopath": "kvos/coastsat", - "_reponame": "CoastSat", - "_stars": 480, - "_forks": 195, - "_watches": 23, - "_topics": [ - "google-earth-engine", - "earth-engine", - "remote-sensing", - "satellite-images", - "coastal-engineering", - "shoreline-detection" + "_repopath": "microsoft/focal-transformer", + "_reponame": "Focal-Transformer", + "_stars": 492, + "_forks": 58, + "_watches": 17, + "_language": "Python", + "_homepage": "", + "_description": "Focal-Transformer: [NeurIPS 2021 Spotlight] Official code for \"Focal Self-attention for Local-Global Interactions in Vision Transformers\"", + "_organization": "microsoft", + "_updated_at": "2023-02-06T00:00:00.000Z", + "_created_at": "2021-07-10T00:00:00.000Z", + "_age_weeks": 84, + "_stars_per_week": 5.82, + "_topics": [], + "_last_commit_date": "2022-03-27T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "jwyang@microsoft" ], - "_language": "Jupyter Notebook", - "_homepage": "http://coastsat.wrl.unsw.edu.au/", - "_description": "CoastSat: Global shoreline mapping tool from satellite imagery", - "_organization": "kvos", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2018-09-28T00:00:00.000Z", - "_age_weeks": 220, - "_stars_per_week": 2.18, - "_pop_contributor_count": 14, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "sacramentostate", - "unswsydney", - "usaceerdc-fieldresearchfacility", - "waterresearchlaboratory", - "waterresearchlaboratory(unsw)" + "microsoft" + ], + "_pop_contributor_orgs_raw": [ + "Microsoft" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.4, - "_pop_updated_issues_count": 53, - "_pop_closed_issues_count": 36, - "_pop_created_since_days": 51, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 53.0, - "_pop_comment_count": 109.0, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 20, + "_pop_updated_since_days": 11, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 17, - "_pop_score": 45.16, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 7.88, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/kvos/coastsat/master/README.md", - "_readme_localurl": "kvos~coastsat~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/microsoft/focal-transformer/master/README.md", + "_readme_localurl": "microsoft~focal-transformer~README.md", "_requirements_filenames": [], "_requirements_giturls": [], "_requirements_localurls": [] }, { - "index": 47, - "category": "data", - "githuburl": "https://github.com/macbre/sql-metadata", - "featured": 1.0, + "index": 582, + "category": "gis", + "githuburl": "https://github.com/developmentseed/titiler", + "featured": null, "links": null, "description": null, - "_repopath": "macbre/sql-metadata", - "_reponame": "sql-metadata", - "_stars": 478, - "_forks": 84, - "_watches": 15, + "_repopath": "developmentseed/titiler", + "_reponame": "titiler", + "_stars": 479, + "_forks": 103, + "_watches": 18, + "_language": "Python", + "_homepage": "https://developmentseed.org/titiler/", + "_description": "titiler: Build your own Raster dynamic map tile services", + "_organization": "developmentseed", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2019-06-28T00:00:00.000Z", + "_age_weeks": 190, + "_stars_per_week": 2.51, "_topics": [ - "sql", - "parser", - "database", - "sql-parser", - "metadata", - "sqlparse", - "python-package", - "python3-library", - "hiveql", - "hive", - "mysql-query" + "fastapi", + "cog", + "aws-cdk", + "aws-lambda", + "stac", + "cogeotiff", + "mosaicjson", + "raster", + "dynamic", + "server", + "rest", + "gdal", + "rasterio", + "tile", + "map-tile-server", + "map-tiles" ], - "_language": "Python", - "_homepage": "https://pypi.python.org/pypi/sql-metadata", - "_description": "sql-metadata: Uses tokenized query returned by python-sqlparse and generates query metadata", - "_organization": "macbre", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2017-06-06T00:00:00.000Z", - "_age_weeks": 288, - "_stars_per_week": 1.65, - "_pop_contributor_count": 13, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 32, + "_pop_contributor_logins": [ + "FischerLGLN@lgln-landesamtf\u00fcrgeoinformationundlandesvermessungniedersachsen", + "RichardScottOZ@ozminerals", + "abarciauskas-bgse@developmentseed", + "drnextgis@satellogic", + "emmanuelmathot@terradue", + "fredliporace@amskepler", + "geospatial-jeff@regrowag", + "kylebarron", + "samn@upstream-tech", + "vincentsarago@developmentseed" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "automattic", - "kaizentech" + "amskepler", + "developmentseed", + "lgln-landesamtf\u00fcrgeoinformationundlandesvermessungniedersachsen", + "ozminerals", + "regrowag", + "satellogic", + "terradue", + "upstream-tech" + ], + "_pop_contributor_orgs_raw": [ + "@Terradue", + "@Upstream-Tech ", + "@developmentseed ", + "@regrowag", + "@satellogic", + "AMS Kepler", + "Development Seed", + "LGLN - Landesamt f\u00fcr Geoinformation und Landesvermessung Niedersachsen", + "OZ Minerals" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.0, - "_pop_updated_issues_count": 21, - "_pop_closed_issues_count": 15, - "_pop_created_since_days": 67, + "_pop_commit_frequency": 2.0, + "_pop_updated_issues_count": 36, + "_pop_closed_issues_count": 30, + "_pop_created_since_days": 44, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 21.0, - "_pop_comment_count": 10.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 36.0, + "_pop_comment_count": 36.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 27, - "_pop_score": 38.43, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 44.29, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/macbre/sql-metadata/master/README.md", - "_readme_localurl": "macbre~sql-metadata~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/developmentseed/titiler/master/README.md", + "_readme_localurl": "developmentseed~titiler~README.md", "_requirements_filenames": [ + "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/macbre/sql-metadata/master/pyproject.toml" + "https://raw.githubusercontent.com/developmentseed/titiler/master/setup.py", + "https://raw.githubusercontent.com/developmentseed/titiler/master/pyproject.toml" ], "_requirements_localurls": [ - "macbre~sql-metadata~pyproject.toml" + "developmentseed~titiler~setup.py", + "developmentseed~titiler~pyproject.toml" ] }, { @@ -47095,9 +64878,17 @@ "description": null, "_repopath": "fatiando/verde", "_reponame": "verde", - "_stars": 467, - "_forks": 60, + "_stars": 473, + "_forks": 59, "_watches": 21, + "_language": "Python", + "_homepage": "https://www.fatiando.org/verde", + "_description": "verde: Processing and interpolating spatial data with a twist of machine learning", + "_organization": "fatiando", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2018-04-25T00:00:00.000Z", + "_age_weeks": 252, + "_stars_per_week": 1.88, "_topics": [ "geophysics", "earth-science", @@ -47110,39 +64901,57 @@ "fatiando-a-terra", "geoscience" ], - "_language": "Python", - "_homepage": "https://www.fatiando.org/verde", - "_description": "verde: Processing and interpolating spatial data with a twist of machine learning", - "_organization": "fatiando", - "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2022-12-09T00:00:00.000Z", - "_created_at": "2018-04-25T00:00:00.000Z", - "_age_weeks": 242, - "_stars_per_week": 1.92, "_pop_contributor_count": 13, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_pop_contributor_logins": [ + "Esteban82@institutodegeocienciasb\u00e1sicas,aplicadasyambientalesdebuenosaires-igeba(universityofbuenosaires-conicet)", + "Goto15", + "JamesSample@nivanorge", + "arfon@github", + "dcslagel@codefarm", + "djhoese@spacescienceandengineeringcenter(ssec)", + "fatiando-bot@fatiando", + "jessepisel", + "leouieda@universityofliverpool", + "santisoler@fatiandoubcgifcompgeolabgeolatinas" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "codefarm", "fatiando", "fatiandoubcgifcompgeolabgeolatinas", + "github", + "institutodegeocienciasb\u00e1sicas,aplicadasyambientalesdebuenosaires-igeba(universityofbuenosaires-conicet)", + "nivanorge", "spacescienceandengineeringcenter(ssec)", "universityofliverpool" ], + "_pop_contributor_orgs_raw": [ + "@NIVANorge", + "@fatiando", + "@fatiando @ubcgif @compgeolab @GeoLatinas", + "@github", + "Code Farm LLC", + "Instituto de Geociencias B\u00e1sicas, Aplicadas y Ambientales de Buenos Aires - IGEBA (University of Buenos Aires-CONICET)", + "Space Science and Engineering Center (@ssec)", + "University of Liverpool" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.56, - "_pop_updated_issues_count": 29, - "_pop_closed_issues_count": 26, - "_pop_created_since_days": 57, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.54, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 59, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 29.0, - "_pop_comment_count": 21.0, + "_pop_issue_count": 6.0, + "_pop_comment_count": 5.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 15, - "_pop_score": 38.99, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 32.19, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/fatiando/verde/master/README.md", "_readme_localurl": "fatiando~verde~README.md", @@ -47165,9 +64974,17 @@ "description": null, "_repopath": "firmai/atspy", "_reponame": "atspy", - "_stars": 464, + "_stars": 471, "_forks": 88, - "_watches": 21, + "_watches": 20, + "_language": "Python", + "_homepage": "https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3580631", + "_description": "AtsPy: Automated Time Series Models in Python (by @firmai)", + "_organization": "firmai", + "_updated_at": "2023-02-07T00:00:00.000Z", + "_created_at": "2020-01-28T00:00:00.000Z", + "_age_weeks": 160, + "_stars_per_week": 2.94, "_topics": [ "time-series", "time-series-analysis", @@ -47177,37 +64994,40 @@ "forecasting-models", "finance" ], - "_language": "Python", - "_homepage": "https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3580631", - "_description": "AtsPy: Automated Time Series Models in Python (by @firmai)", - "_organization": "firmai", - "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2021-12-18T00:00:00.000Z", - "_created_at": "2020-01-28T00:00:00.000Z", - "_age_weeks": 150, - "_stars_per_week": 3.08, "_pop_contributor_count": 5, + "_pop_contributor_logins": [ + "0xflotus", + "Finance-781", + "dependabot[bot]", + "fatihbaltaci@ddosify", + "firmai@alanturinginstitute,firmai" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "alanturinginstitute,firmai", "ddosify" ], + "_pop_contributor_orgs_raw": [ + "@ddosify", + "Alan Turing Institute, FirmAI" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 35, - "_pop_updated_since_days": 12, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 37, + "_pop_updated_since_days": 14, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 3.0, - "_pop_comment_count": 1.0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.3, - "_pop_dependents_count": 12, - "_pop_score": 19.99, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 13.1, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/firmai/atspy/master/README.md", "_readme_localurl": "firmai~atspy~README.md", @@ -47233,40 +65053,48 @@ "description": null, "_repopath": "facebookresearch/ppuda", "_reponame": "ppuda", - "_stars": 459, - "_forks": 61, - "_watches": 17, - "_topics": [], + "_stars": 466, + "_forks": 60, + "_watches": 19, "_language": "Python", "_homepage": null, "_description": "ppuda: Code for Parameter Prediction for Unseen Deep Architectures (NeurIPS 2021)", "_organization": "facebookresearch", - "_updated_at": "2022-12-10T00:00:00.000Z", - "_last_commit_date": "2022-07-26T00:00:00.000Z", + "_updated_at": "2023-02-17T00:00:00.000Z", "_created_at": "2021-10-21T00:00:00.000Z", - "_age_weeks": 60, - "_stars_per_week": 7.58, + "_age_weeks": 69, + "_stars_per_week": 6.67, + "_topics": [], + "_last_commit_date": "2022-07-26T00:00:00.000Z", "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "GeraldCSC", + "bknyaz@samsung-saitailab,montreal", + "michaldrozdzal" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "samsung-saitailab,montreal" ], + "_pop_contributor_orgs_raw": [ + "Samsung - SAIT AI Lab, Montreal" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.29, - "_pop_updated_issues_count": 1, + "_pop_commit_frequency": 0.19, + "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 14, - "_pop_updated_since_days": 5, + "_pop_created_since_days": 16, + "_pop_updated_since_days": 7, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 1.0, - "_pop_comment_count": 3.0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.0, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 16.27, + "_pop_score": 9.38, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/ppuda/master/README.md", "_readme_localurl": "facebookresearch~ppuda~README.md", @@ -47286,6 +65114,105 @@ "facebookresearch~ppuda~pyproject.toml" ] }, + { + "index": 914, + "category": "ml", + "githuburl": "https://github.com/cvxgrp/pymde", + "featured": null, + "links": null, + "description": null, + "_repopath": "cvxgrp/pymde", + "_reponame": "pymde", + "_stars": 465, + "_forks": 26, + "_watches": 9, + "_language": "Python", + "_homepage": "https://pymde.org", + "_description": "pymde: Minimum-distortion embedding with PyTorch", + "_organization": "cvxgrp", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2020-11-29T00:00:00.000Z", + "_age_weeks": 116, + "_stars_per_week": 3.99, + "_topics": [ + "embedding", + "visualization", + "feature-vectors", + "machine-learning", + "dimensionality-reduction", + "graph-embedding", + "pytorch", + "cuda", + "gpu" + ], + "_last_commit_date": "2022-11-20T00:00:00.000Z", + "_pop_contributor_count": 10, + "_pop_contributor_logins": [ + "BastianZim@arche-finanz", + "adamgayoso@ucberkeley", + "adswa@psychoinformatics-de", + "akshayka@cvxgrpcvxpy", + "angeris", + "frederikschubert@leibnizuniversit\u00e4thannover", + "kashif", + "kruus@neclabsamerica", + "rajarshi", + "theresekoch@utsouthwesternmedicalcenter" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "arche-finanz", + "cvxgrpcvxpy", + "leibnizuniversit\u00e4thannover", + "neclabsamerica", + "psychoinformatics-de", + "ucberkeley", + "utsouthwesternmedicalcenter" + ], + "_pop_contributor_orgs_raw": [ + " @psychoinformatics-de", + "@arche-finanz", + "@cvxgrp @cvxpy", + "Leibniz Universit\u00e4t Hannover", + "NEC Labs America", + "UC Berkeley", + "UT Southwestern Medical Center" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.25, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 27, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 4.0, + "_pop_comment_count": 10.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 0, + "_pop_score": 31.36, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/cvxgrp/pymde/master/README.md", + "_readme_localurl": "cvxgrp~pymde~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/cvxgrp/pymde/master/requirements.txt", + "https://raw.githubusercontent.com/cvxgrp/pymde/master/setup.py", + "https://raw.githubusercontent.com/cvxgrp/pymde/master/pyproject.toml" + ], + "_requirements_localurls": [ + "cvxgrp~pymde~requirements.txt", + "cvxgrp~pymde~setup.py", + "cvxgrp~pymde~pyproject.toml" + ] + }, { "index": 497, "category": "ml-dl", @@ -47295,40 +65222,47 @@ "description": null, "_repopath": "mcahny/deep-video-inpainting", "_reponame": "Deep-Video-Inpainting", - "_stars": 448, - "_forks": 86, - "_watches": 13, - "_topics": [], + "_stars": 463, + "_forks": 87, + "_watches": 14, "_language": "Python", "_homepage": "", "_description": "Deep-Video-Inpainting: Official pytorch implementation for \"Deep Video Inpainting\" (CVPR 2019)", "_organization": "mcahny", - "_updated_at": "2022-12-12T00:00:00.000Z", - "_last_commit_date": "2020-12-10T00:00:00.000Z", + "_updated_at": "2023-02-19T00:00:00.000Z", "_created_at": "2019-05-22T00:00:00.000Z", - "_age_weeks": 186, - "_stars_per_week": 2.4, + "_age_weeks": 196, + "_stars_per_week": 2.36, + "_topics": [], + "_last_commit_date": "2020-12-10T00:00:00.000Z", "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "SeokjuLee@kentech", + "mcahny" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "kentech" ], + "_pop_contributor_orgs_raw": [ + "KENTECH" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 3, + "_pop_updated_issues_count": 2, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 44, - "_pop_updated_since_days": 25, + "_pop_created_since_days": 46, + "_pop_updated_since_days": 27, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 3.0, - "_pop_comment_count": 1.0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.3, - "_pop_dependents_count": 2, - "_pop_score": 12.62, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 9.26, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/mcahny/deep-video-inpainting/master/README.md", "_readme_localurl": "mcahny~deep-video-inpainting~README.md", @@ -47337,136 +65271,176 @@ "_requirements_localurls": [] }, { - "index": 437, + "index": 872, "category": "pandas", - "githuburl": "https://github.com/polyaxon/datatile", + "githuburl": "https://github.com/eventual-inc/daft", "featured": null, "links": null, "description": null, - "_repopath": "polyaxon/datatile", - "_reponame": "datatile", - "_stars": 447, - "_forks": 40, - "_watches": 13, + "_repopath": "eventual-inc/daft", + "_reponame": "Daft", + "_stars": 463, + "_forks": 17, + "_watches": 6, + "_language": "Python", + "_homepage": "", + "_description": "Daft: The Python DataFrame for Complex Data", + "_organization": "eventual-inc", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-04-25T00:00:00.000Z", + "_age_weeks": 43, + "_stars_per_week": 10.7, "_topics": [ - "pandas", - "pandas-summary", - "dataframes", - "data-analysis", + "image-processing", + "machine-learning", + "python", + "data-engineering", "data-science", - "spark", - "dask", - "plotly", - "statistics", - "matplotlib", - "data-profiling", - "data-visualization", - "data-summary", - "data-reporting", - "data-exploration", - "dataops", - "mlops", - "data-quality", - "data-quality-monitoring", - "data-quality-checks" + "dataframe", + "deep-learning", + "distributed-computing" ], - "_language": "Python", - "_homepage": "", - "_description": "datatile: A library for managing, validating, summarizing, and visualizing data", - "_organization": "polyaxon", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2016-03-25T00:00:00.000Z", - "_age_weeks": 351, - "_stars_per_week": 1.27, - "_pop_contributor_count": 10, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "Asrst@dataamazon", + "dependabot[bot]", + "jaychia@lyft", + "jeevb@freenome", + "samster25@eventual-inc", + "xcharleslin" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "hospiq", - "sidhulabs" + "dataamazon", + "eventual-inc", + "freenome", + "lyft" + ], + "_pop_contributor_orgs_raw": [ + "@Eventual-Inc ", + "@lyft", + "Data @ Amazon", + "Freenome" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.48, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 82, + "_pop_commit_frequency": 11.98, + "_pop_updated_issues_count": 266, + "_pop_closed_issues_count": 227, + "_pop_created_since_days": 10, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, + "_pop_recent_releases_estimated_tags": 28, + "_pop_recent_releases_adjusted_count": 28, + "_pop_issue_count": 265.0, + "_pop_comment_count": 139.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, + "_pop_comment_frequency": 0.5, "_pop_dependents_count": 0, - "_pop_score": 23.52, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/polyaxon/datatile/master/README.md", - "_readme_localurl": "polyaxon~datatile~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_pop_score": 38.73, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/eventual-inc/daft/master/README.rst", + "_readme_localurl": "eventual-inc~daft~README.rst", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/eventual-inc/daft/master/pyproject.toml" + ], + "_requirements_localurls": [ + "eventual-inc~daft~pyproject.toml" + ] }, { - "index": 375, - "category": "viz", - "githuburl": "https://github.com/vhranger/nodevectors", + "index": 437, + "category": "pandas", + "githuburl": "https://github.com/polyaxon/datatile", "featured": null, "links": null, "description": null, - "_repopath": "vhranger/nodevectors", - "_reponame": "nodevectors", - "_stars": 445, - "_forks": 52, - "_watches": 11, - "_topics": [], + "_repopath": "polyaxon/datatile", + "_reponame": "traceml", + "_stars": 460, + "_forks": 40, + "_watches": 13, "_language": "Python", "_homepage": "", - "_description": "nodevectors: Fastest network node embeddings in the west", - "_organization": "vhranger", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2021-11-06T00:00:00.000Z", - "_created_at": "2019-07-25T00:00:00.000Z", - "_age_weeks": 177, - "_stars_per_week": 2.51, - "_pop_contributor_count": 6, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_description": "traceml: Engine for ML/Data tracking, visualization, explainability, drift detection, and dashboards for Polyaxon.", + "_organization": "polyaxon", + "_updated_at": "2023-02-11T00:00:00.000Z", + "_created_at": "2016-03-25T00:00:00.000Z", + "_age_weeks": 360, + "_stars_per_week": 1.28, + "_topics": [ + "pandas", + "pandas-summary", + "dataframes", + "data-science", + "spark", + "dask", + "plotly", + "statistics", + "matplotlib", + "data-profiling", + "data-visualization", + "data-exploration", + "dataops", + "mlops", + "data-quality", + "data-quality-checks", + "explainable-ai", + "pytorch", + "tensorflow", + "tracking" + ], + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 98, + "_pop_contributor_logins": [ + "DXist", + "dependabot[bot]", + "gzcf", + "javidgon", + "lgeiger@plumerailarq", + "mmourafiq", + "polyaxon-ci", + "polyaxon-team", + "vfdev-5@quansight", + "wbuchwalter@microsoftresearch" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "harvardmedicalschool", - "sap" + "microsoftresearch", + "plumerailarq", + "quansight" + ], + "_pop_contributor_orgs_raw": [ + "@Quansight", + "@plumerai @larq ", + "Microsoft Research" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 2, + "_pop_commit_frequency": 1.98, + "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 41, - "_pop_updated_since_days": 14, + "_pop_created_since_days": 84, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 2.0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 0.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 16.92, + "_pop_score": 33.49, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/vhranger/nodevectors/master/README.md", - "_readme_localurl": "vhranger~nodevectors~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/vhranger/nodevectors/master/requirements.txt", - "https://raw.githubusercontent.com/vhranger/nodevectors/master/setup.py" - ], - "_requirements_localurls": [ - "vhranger~nodevectors~requirements.txt", - "vhranger~nodevectors~setup.py" - ] + "_readme_giturl": "https://raw.githubusercontent.com/polyaxon/datatile/master/README.md", + "_readme_localurl": "polyaxon~datatile~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { "index": 479, @@ -47477,9 +65451,17 @@ "description": null, "_repopath": "holoviz/geoviews", "_reponame": "geoviews", - "_stars": 442, - "_forks": 67, - "_watches": 30, + "_stars": 458, + "_forks": 68, + "_watches": 28, + "_language": "Python", + "_homepage": "http://geoviews.org", + "_description": "geoviews: Simple, concise geographical visualization in Python", + "_organization": "holoviz", + "_updated_at": "2023-02-14T00:00:00.000Z", + "_created_at": "2016-04-19T00:00:00.000Z", + "_age_weeks": 357, + "_stars_per_week": 1.28, "_topics": [ "holoviz", "geoviews", @@ -47488,36 +65470,51 @@ "cartopy", "plotting" ], - "_language": "Python", - "_homepage": "http://geoviews.org", - "_description": "geoviews: Simple, concise geographical visualization in Python", - "_organization": "holoviz", - "_updated_at": "2022-12-12T00:00:00.000Z", - "_last_commit_date": "2022-12-07T00:00:00.000Z", - "_created_at": "2016-04-19T00:00:00.000Z", - "_age_weeks": 347, - "_stars_per_week": 1.27, + "_last_commit_date": "2023-01-17T00:00:00.000Z", "_pop_contributor_count": 28, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Hoxbro", + "ahuang11@prefect!", + "bjlittle@metoffice", + "ceball", + "jbednar@anaconda", + "jlstevens", + "jsignell@azavea", + "marqh", + "maximlt@anaconda", + "philippjfr@anaconda" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "anaconda" + "anaconda", + "azavea", + "metoffice", + "prefect!" + ], + "_pop_contributor_orgs_raw": [ + "@azavea", + "Anaconda", + "Anaconda Inc.", + "Anaconda, Inc.", + "Met Office", + "Prefect!" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.69, - "_pop_updated_issues_count": 19, - "_pop_closed_issues_count": 11, - "_pop_created_since_days": 81, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, + "_pop_commit_frequency": 0.73, + "_pop_updated_issues_count": 82, + "_pop_closed_issues_count": 19, + "_pop_created_since_days": 83, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 19.0, - "_pop_comment_count": 20.0, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 82.0, + "_pop_comment_count": 23.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 10, - "_pop_score": 38.11, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 0, + "_pop_score": 35.5, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/holoviz/geoviews/master/README.md", "_readme_localurl": "holoviz~geoviews~README.md", @@ -47535,70 +65532,73 @@ ] }, { - "index": 872, - "category": "pandas", - "githuburl": "https://github.com/eventual-inc/daft", + "index": 375, + "category": "viz", + "githuburl": "https://github.com/vhranger/nodevectors", "featured": null, "links": null, "description": null, - "_repopath": "eventual-inc/daft", - "_reponame": "Daft", - "_stars": 437, - "_forks": 12, - "_watches": 6, - "_topics": [ - "image-processing", - "machine-learning", - "python", - "data-engineering", - "data-science", - "dataframe", - "deep-learning", - "distributed-computing" - ], + "_repopath": "vhranger/nodevectors", + "_reponame": "nodevectors", + "_stars": 453, + "_forks": 53, + "_watches": 11, "_language": "Python", "_homepage": "", - "_description": "Daft: The Python DataFrame for Complex Data", - "_organization": "eventual-inc", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2022-04-25T00:00:00.000Z", - "_age_weeks": 34, - "_stars_per_week": 12.85, - "_pop_contributor_count": 5, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_description": "nodevectors: Fastest network node embeddings in the west", + "_organization": "vhranger", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2019-07-25T00:00:00.000Z", + "_age_weeks": 186, + "_stars_per_week": 2.42, + "_topics": [], + "_last_commit_date": "2021-11-06T00:00:00.000Z", + "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "VHRanger", + "cthoyt@harvardmedicalschool", + "kannankumar@sap", + "ldorigo" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "eventual-inc", - "freenome", - "lyft" + "harvardmedicalschool", + "sap" + ], + "_pop_contributor_orgs_raw": [ + "Harvard Medical School", + "SAP" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 9.44, - "_pop_updated_issues_count": 199, - "_pop_closed_issues_count": 173, - "_pop_created_since_days": 8, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 16, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 27, - "_pop_recent_releases_adjusted_count": 27, - "_pop_issue_count": 199.0, - "_pop_comment_count": 41.0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 5.0, + "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.2, - "_pop_dependents_count": 7, - "_pop_score": 38.74, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/eventual-inc/daft/master/README.rst", - "_readme_localurl": "eventual-inc~daft~README.rst", + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 20.12, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/vhranger/nodevectors/master/README.md", + "_readme_localurl": "vhranger~nodevectors~README.md", "_requirements_filenames": [ - "pyproject.toml" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/eventual-inc/daft/master/pyproject.toml" + "https://raw.githubusercontent.com/vhranger/nodevectors/master/requirements.txt", + "https://raw.githubusercontent.com/vhranger/nodevectors/master/setup.py" ], "_requirements_localurls": [ - "eventual-inc~daft~pyproject.toml" + "vhranger~nodevectors~requirements.txt", + "vhranger~nodevectors~setup.py" ] }, { @@ -47610,38 +65610,60 @@ "description": null, "_repopath": "koaning/whatlies", "_reponame": "whatlies", - "_stars": 436, - "_forks": 49, + "_stars": 451, + "_forks": 50, "_watches": 13, - "_topics": [ - "nlp", - "embeddings", - "visualisations" - ], "_language": "Python", "_homepage": "https://koaning.github.io/whatlies/", "_description": "whatlies: Toolkit to help understand \"what lies\" in word embeddings. Also benchmarking! ", "_organization": "koaning", - "_updated_at": "2022-12-13T00:00:00.000Z", - "_last_commit_date": "2022-07-28T00:00:00.000Z", + "_updated_at": "2023-02-11T00:00:00.000Z", "_created_at": "2020-02-22T00:00:00.000Z", - "_age_weeks": 147, - "_stars_per_week": 2.96, + "_age_weeks": 156, + "_stars_per_week": 2.88, + "_topics": [ + "nlp", + "embeddings", + "visualisations" + ], + "_last_commit_date": "2023-02-06T00:00:00.000Z", "_pop_contributor_count": 13, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Arsilla@kpmgnetherlands", + "Ayushsunny@inviiiwardrobedoor", + "Raghibshams456", + "RensDimmendaal", + "itsabdelrahman@trivago", + "koaning@explosion", + "louisguitton@motain", + "mkaze", + "timvink", + "tttthomasssss@zalandose" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "explosion", + "inviiiwardrobedoor", "kpmgnetherlands", "motain", + "trivago", "zalandose" ], + "_pop_contributor_orgs_raw": [ + "@INVIII @wardrobedoor", + "@explosion", + "@motain ", + "KPMG Netherlands", + "Zalando SE", + "trivago" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.27, + "_pop_commit_frequency": 0.12, "_pop_updated_issues_count": 1, "_pop_closed_issues_count": 1, - "_pop_created_since_days": 34, - "_pop_updated_since_days": 5, + "_pop_created_since_days": 36, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 9, "_pop_recent_releases_adjusted_count": 1, @@ -47650,7 +65672,7 @@ "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 2.0, "_pop_dependents_count": 0, - "_pop_score": 26.78, + "_pop_score": 32.74, "_readme_filename": "readme.md", "_readme_giturl": "https://raw.githubusercontent.com/koaning/whatlies/master/readme.md", "_readme_localurl": "koaning~whatlies~readme.md", @@ -47664,6 +65686,92 @@ "koaning~whatlies~setup.py" ] }, + { + "index": 837, + "category": "gis", + "githuburl": "https://github.com/perrygeo/python-rasterstats", + "featured": null, + "links": null, + "description": null, + "_repopath": "perrygeo/python-rasterstats", + "_reponame": "python-rasterstats", + "_stars": 444, + "_forks": 109, + "_watches": 33, + "_language": "Python", + "_homepage": "", + "_description": "python-rasterstats: Summary statistics of geospatial raster datasets based on vector geometries.", + "_organization": "perrygeo", + "_updated_at": "2023-02-13T00:00:00.000Z", + "_created_at": "2013-09-18T00:00:00.000Z", + "_age_weeks": 492, + "_stars_per_week": 0.9, + "_topics": [], + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 30, + "_pop_contributor_logins": [ + "Zeitsperre@ouranos", + "brendancol@makepath", + "drnextgis@satellogic", + "hawkaa@duneanalytics", + "mwtoews@gnsscience", + "ozak@southernmethodistuniversity", + "perrygeo", + "sdtaylor", + "sgoodm@aiddata", + "theroggy" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "aiddata", + "duneanalytics", + "gnsscience", + "makepath", + "ouranos", + "satellogic", + "southernmethodistuniversity" + ], + "_pop_contributor_orgs_raw": [ + "@aiddata", + "@duneanalytics", + "@makepath ", + "@satellogic", + "GNS Science", + "Ouranos", + "Southern Methodist University" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.38, + "_pop_updated_issues_count": 29, + "_pop_closed_issues_count": 21, + "_pop_created_since_days": 115, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 29.0, + "_pop_comment_count": 32.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 41.49, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/README.rst", + "_readme_localurl": "perrygeo~python-rasterstats~README.rst", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/setup.py", + "https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/pyproject.toml" + ], + "_requirements_localurls": [ + "perrygeo~python-rasterstats~setup.py", + "perrygeo~python-rasterstats~pyproject.toml" + ] + }, { "index": 573, "category": "gis", @@ -47673,9 +65781,17 @@ "description": null, "_repopath": "developmentseed/label-maker", "_reponame": "label-maker", - "_stars": 436, - "_forks": 113, - "_watches": 50, + "_stars": 443, + "_forks": 112, + "_watches": 52, + "_language": "Python", + "_homepage": "http://devseed.com/label-maker/", + "_description": "label-maker: Data Preparation for Satellite Machine Learning", + "_organization": "developmentseed", + "_updated_at": "2023-01-20T00:00:00.000Z", + "_created_at": "2018-01-10T00:00:00.000Z", + "_age_weeks": 267, + "_stars_per_week": 1.66, "_topics": [ "satellite-imagery", "data-preparation", @@ -47684,39 +65800,54 @@ "remote-sensing", "keras" ], - "_language": "Python", - "_homepage": "http://devseed.com/label-maker/", - "_description": "label-maker: Data Preparation for Satellite Machine Learning", - "_organization": "developmentseed", - "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2020-11-19T00:00:00.000Z", - "_created_at": "2018-01-10T00:00:00.000Z", - "_age_weeks": 257, - "_stars_per_week": 1.69, "_pop_contributor_count": 15, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Geoyi@regrow", + "PallawiSinghal@heretechnologies", + "achyutjoshi", + "drewbo@cloud-gov(work)+personalprojects;", + "giswqs@universityoftennessee", + "jreiberkyle@planetlabs", + "martham93@developmentseed", + "palacima", + "vincentsarago@developmentseed", + "wronk" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "cloud-gov(work)+personalprojects;", "developmentseed", + "heretechnologies", "planetlabs", - "regrow" + "regrow", + "universityoftennessee" + ], + "_pop_contributor_orgs_raw": [ + "@cloud-gov (work) + personal projects; ", + "@developmentseed ", + "@planetlabs ", + "Development Seed", + "Here Technologies ", + "Regrow", + "University of Tennessee" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 60, - "_pop_updated_since_days": 25, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 62, + "_pop_updated_since_days": 27, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 2.0, - "_pop_comment_count": 1.0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 9, - "_pop_score": 27.21, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 21.67, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/developmentseed/label-maker/master/README.md", "_readme_localurl": "developmentseed~label-maker~README.md", @@ -47734,206 +65865,255 @@ ] }, { - "index": 582, - "category": "gis", - "githuburl": "https://github.com/developmentseed/titiler", + "index": 844, + "category": "perf", + "githuburl": "https://github.com/joblib/loky", "featured": null, "links": null, "description": null, - "_repopath": "developmentseed/titiler", - "_reponame": "titiler", - "_stars": 436, - "_forks": 99, - "_watches": 18, + "_repopath": "joblib/loky", + "_reponame": "loky", + "_stars": 442, + "_forks": 43, + "_watches": 10, + "_language": "Python", + "_homepage": "http://loky.readthedocs.io/en/stable/", + "_description": "loky: Robust and reusable Executor for joblib", + "_organization": "joblib", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2015-12-25T00:00:00.000Z", + "_age_weeks": 373, + "_stars_per_week": 1.18, "_topics": [ - "fastapi", - "cog", - "aws-cdk", - "aws-lambda", - "stac", - "cogeotiff", - "mosaicjson", - "raster", - "dynamic", - "server", - "rest", - "gdal", - "rasterio", - "tile", - "map-tile-server", - "map-tiles" + "multiprocessing-library", + "python" ], - "_language": "Python", - "_homepage": "https://developmentseed.org/titiler/", - "_description": "titiler: Build your own Raster dynamic map tile services", - "_organization": "developmentseed", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2019-06-28T00:00:00.000Z", - "_age_weeks": 181, - "_stars_per_week": 2.4, - "_pop_contributor_count": 28, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 17, + "_pop_contributor_logins": [ + "aabadie@inria", + "albertcthomas", + "basnijholt@microsoft", + "glemaitre@scikit-learninriafoundation", + "haim0n@private", + "jeremiedbb", + "ogrisel@inria", + "pierreglaser@ucl", + "rth", + "tomMoral@inriasaclay-parietalteam" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "developmentseed", - "ozminerals", - "satellogic", - "terradue" + "inria", + "inriasaclay-parietalteam", + "microsoft", + "private", + "scikit-learninriafoundation", + "ucl" + ], + "_pop_contributor_orgs_raw": [ + "@Microsoft", + "INRIA Saclay - Parietal team", + "Inria", + "Private", + "Scikit-learn @ Inria foundation", + "UCL" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.0, - "_pop_updated_issues_count": 31, - "_pop_closed_issues_count": 26, - "_pop_created_since_days": 42, + "_pop_commit_frequency": 0.35, + "_pop_updated_issues_count": 15, + "_pop_closed_issues_count": 9, + "_pop_created_since_days": 87, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 15, - "_pop_recent_releases_adjusted_count": 15, - "_pop_issue_count": 31.0, - "_pop_comment_count": 39.0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 15.0, + "_pop_comment_count": 24.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 13, - "_pop_score": 46.18, + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 39.78, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/developmentseed/titiler/master/README.md", - "_readme_localurl": "developmentseed~titiler~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/joblib/loky/master/README.md", + "_readme_localurl": "joblib~loky~README.md", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/developmentseed/titiler/master/setup.py" + "https://raw.githubusercontent.com/joblib/loky/master/setup.py", + "https://raw.githubusercontent.com/joblib/loky/master/pyproject.toml" ], "_requirements_localurls": [ - "developmentseed~titiler~setup.py" + "joblib~loky~setup.py", + "joblib~loky~pyproject.toml" ] }, { - "index": 837, - "category": "gis", - "githuburl": "https://github.com/perrygeo/python-rasterstats", + "index": 913, + "category": "util", + "githuburl": "https://github.com/methexis-inc/terminal-copilot", "featured": null, "links": null, "description": null, - "_repopath": "perrygeo/python-rasterstats", - "_reponame": "python-rasterstats", - "_stars": 434, - "_forks": 108, - "_watches": 33, - "_topics": [], + "_repopath": "methexis-inc/terminal-copilot", + "_reponame": "terminal-copilot", + "_stars": 439, + "_forks": 23, + "_watches": 6, "_language": "Python", "_homepage": "", - "_description": "python-rasterstats: Summary statistics of geospatial raster datasets based on vector geometries.", - "_organization": "perrygeo", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-10-18T00:00:00.000Z", - "_created_at": "2013-09-18T00:00:00.000Z", - "_age_weeks": 482, - "_stars_per_week": 0.9, - "_pop_contributor_count": 30, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_description": "terminal-copilot: A smart terminal assistant that helps you find the right command.", + "_organization": "methexis-inc", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-12-11T00:00:00.000Z", + "_age_weeks": 10, + "_stars_per_week": 42.1, + "_topics": [], + "_last_commit_date": "2023-01-25T00:00:00.000Z", + "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "2mawi2", + "EdwardTheLegend", + "JoelKronander", + "cedarbaum", + "instance-id@instance.id", + "kafischer@stanforduniversity", + "rebelzion", + "rmax@paige.ai" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "aiddata", - "ouranos", - "satellogic", - "southernmethodistuniversity" + "instance.id", + "paige.ai", + "stanforduniversity" + ], + "_pop_contributor_orgs_raw": [ + "Paige.AI", + "Stanford University", + "instance.id" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.12, - "_pop_updated_issues_count": 9, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 113, - "_pop_updated_since_days": 2, + "_pop_commit_frequency": 1.42, + "_pop_updated_issues_count": 39, + "_pop_closed_issues_count": 25, + "_pop_created_since_days": 2, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_estimated_tags": 6, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 9.0, - "_pop_comment_count": 12.0, + "_pop_issue_count": 39.0, + "_pop_comment_count": 71.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 50, - "_pop_score": 40.67, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/README.rst", - "_readme_localurl": "perrygeo~python-rasterstats~README.rst", + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 25.77, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/methexis-inc/terminal-copilot/master/README.md", + "_readme_localurl": "methexis-inc~terminal-copilot~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/requirements.txt", - "https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/setup.py", - "https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/pyproject.toml" + "https://raw.githubusercontent.com/methexis-inc/terminal-copilot/master/requirements.txt", + "https://raw.githubusercontent.com/methexis-inc/terminal-copilot/master/setup.py" ], "_requirements_localurls": [ - "perrygeo~python-rasterstats~requirements.txt", - "perrygeo~python-rasterstats~setup.py", - "perrygeo~python-rasterstats~pyproject.toml" + "methexis-inc~terminal-copilot~requirements.txt", + "methexis-inc~terminal-copilot~setup.py" ] }, { - "index": 844, - "category": "perf", - "githuburl": "https://github.com/joblib/loky", + "index": 292, + "category": "util", + "githuburl": "https://github.com/fastai/ghapi", "featured": null, "links": null, "description": null, - "_repopath": "joblib/loky", - "_reponame": "loky", - "_stars": 433, - "_forks": 41, - "_watches": 9, + "_repopath": "fastai/ghapi", + "_reponame": "ghapi", + "_stars": 437, + "_forks": 45, + "_watches": 8, + "_language": "Jupyter Notebook", + "_homepage": "https://ghapi.fast.ai/", + "_description": "ghapi: A delightful and complete interface to GitHub's amazing API", + "_organization": "fastai", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2020-11-21T00:00:00.000Z", + "_age_weeks": 117, + "_stars_per_week": 3.72, "_topics": [ - "multiprocessing-library", - "python" + "github-api", + "github", + "nbdev", + "openapi", + "api-client" ], - "_language": "Python", - "_homepage": "http://loky.readthedocs.io/en/stable/", - "_description": "loky: Robust and reusable Executor for joblib", - "_organization": "joblib", - "_updated_at": "2022-12-13T00:00:00.000Z", - "_last_commit_date": "2022-09-15T00:00:00.000Z", - "_created_at": "2015-12-25T00:00:00.000Z", - "_age_weeks": 364, - "_stars_per_week": 1.19, + "_last_commit_date": "2022-09-27T00:00:00.000Z", "_pop_contributor_count": 16, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "inria", - "inriasaclay-parietalteam", - "scikit-learninriafoundation", - "ucl" + "_pop_contributor_logins": [ + "danpalmer@google", + "dependabot[bot]", + "hamelsmu@github", + "hwine", + "jph00@fastai", + "jrieke@streamlit", + "lfdebrux@alphagov", + "mszhanyi@microsoft", + "muellerzr@huggingface", + "rshk" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "alphagov", + "fastai", + "github", + "google", + "huggingface", + "microsoft", + "streamlit" + ], + "_pop_contributor_orgs_raw": [ + "@Google", + "@HuggingFace", + "@alphagov", + "@fastai ", + "@github ", + "@streamlit", + "Microsoft" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.0, - "_pop_updated_issues_count": 6, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 85, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 6.0, - "_pop_comment_count": 2.0, + "_pop_commit_frequency": 1.08, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 27, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 2.0, + "_pop_comment_count": 3.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.3, - "_pop_dependents_count": 59, - "_pop_score": 38.19, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 31.17, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/joblib/loky/master/README.md", - "_readme_localurl": "joblib~loky~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/fastai/ghapi/master/README.md", + "_readme_localurl": "fastai~ghapi~README.md", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/joblib/loky/master/setup.py" + "https://raw.githubusercontent.com/fastai/ghapi/master/setup.py" ], "_requirements_localurls": [ - "joblib~loky~setup.py" + "fastai~ghapi~setup.py" ] }, { @@ -47945,46 +66125,68 @@ "description": null, "_repopath": "astronomer/astronomer", "_reponame": "astronomer", - "_stars": 431, - "_forks": 78, - "_watches": 43, + "_stars": 437, + "_forks": 80, + "_watches": 44, + "_language": "Python", + "_homepage": "https://www.astronomer.io", + "_description": "astronomer: Helm Charts for the Astronomer Platform, Apache Airflow as a Service on Kubernetes", + "_organization": "astronomer", + "_updated_at": "2023-02-15T00:00:00.000Z", + "_created_at": "2018-01-15T00:00:00.000Z", + "_age_weeks": 266, + "_stars_per_week": 1.64, "_topics": [ "apache-airflow", "kubernetes", "docker", "astronomer-platform" ], - "_language": "Python", - "_homepage": "https://www.astronomer.io", - "_description": "astronomer: Helm Charts for the Astronomer Platform, Apache Airflow as a Service on Kubernetes", - "_organization": "astronomer", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2018-01-15T00:00:00.000Z", - "_age_weeks": 257, - "_stars_per_week": 1.68, - "_pop_contributor_count": 70, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 71, + "_pop_contributor_logins": [ + "andriisoldatenko", + "andscoop", + "bote795", + "cwurtz", + "danielhoherd@astronomer", + "jpweber@astronomer(formerlyheptiovmware)", + "pgvishnuram@astronomer", + "schnie@astronomer", + "sjmiller609@coredb", + "tedmiston@mandolin-dev" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "astronomer", - "cerebral" + "astronomer(formerlyheptiovmware)", + "coredb", + "mandolin-dev" + ], + "_pop_contributor_orgs_raw": [ + "@astronomer", + "@astronomer ", + "@astronomer (formerly @heptio @vmware)", + "@mandolin-dev", + "Astronomer", + "CoreDB" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 8.96, - "_pop_updated_issues_count": 113, - "_pop_closed_issues_count": 109, - "_pop_created_since_days": 60, + "_pop_commit_frequency": 8.94, + "_pop_updated_issues_count": 77, + "_pop_closed_issues_count": 74, + "_pop_created_since_days": 62, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 29, - "_pop_recent_releases_estimated_tags": 69, - "_pop_recent_releases_adjusted_count": 29, - "_pop_issue_count": 112.0, - "_pop_comment_count": 78.0, + "_pop_recent_releases_count": 28, + "_pop_recent_releases_estimated_tags": 68, + "_pop_recent_releases_adjusted_count": 28, + "_pop_issue_count": 77.0, + "_pop_comment_count": 55.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 133, - "_pop_score": 54.6, + "_pop_dependents_count": 0, + "_pop_score": 47.91, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/astronomer/astronomer/master/README.md", "_readme_localurl": "astronomer~astronomer~README.md", @@ -47993,68 +66195,87 @@ "_requirements_localurls": [] }, { - "index": 292, - "category": "util", - "githuburl": "https://github.com/fastai/ghapi", + "index": 188, + "category": "math", + "githuburl": "https://github.com/dit/dit", "featured": null, "links": null, "description": null, - "_repopath": "fastai/ghapi", - "_reponame": "ghapi", - "_stars": 421, - "_forks": 45, - "_watches": 8, + "_repopath": "dit/dit", + "_reponame": "dit", + "_stars": 429, + "_forks": 78, + "_watches": 24, + "_language": "Python", + "_homepage": "http://docs.dit.io", + "_description": "dit: Python package for information theory.", + "_organization": "dit", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2013-09-29T00:00:00.000Z", + "_age_weeks": 490, + "_stars_per_week": 0.87, "_topics": [ - "github-api", - "github", - "nbdev", - "openapi", - "api-client" + "python", + "information-theory" ], - "_language": "Jupyter Notebook", - "_homepage": "https://ghapi.fast.ai/", - "_description": "ghapi: A delightful and complete interface to GitHub's amazing API", - "_organization": "fastai", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-09-27T00:00:00.000Z", - "_created_at": "2020-11-21T00:00:00.000Z", - "_age_weeks": 108, - "_stars_per_week": 3.89, - "_pop_contributor_count": 16, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-07-25T00:00:00.000Z", + "_pop_contributor_count": 20, + "_pop_contributor_logins": [ + "Autoplectic", + "Ejjaffe", + "agrif", + "artemyk", + "chebee7i", + "feeds@phdstudentepfl", + "marcharper@google", + "robince", + "stsievert", + "volpatto@esss" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "fastai", - "github", - "huggingface", - "streamlit" + "esss", + "google", + "phdstudentepfl" + ], + "_pop_contributor_orgs_raw": [ + "@ESSS", + "Google", + "PhD student @ EPFL" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.17, - "_pop_updated_issues_count": 10, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 25, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 6, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 10.0, - "_pop_comment_count": 7.0, + "_pop_commit_frequency": 0.19, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 114, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 1.0, + "_pop_comment_count": 3.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 21, - "_pop_score": 35.51, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/fastai/ghapi/master/README.md", - "_readme_localurl": "fastai~ghapi~README.md", + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 0, + "_pop_score": 29.65, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/dit/dit/master/README.rst", + "_readme_localurl": "dit~dit~README.rst", "_requirements_filenames": [ - "setup.py" + "requirements.txt", + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/fastai/ghapi/master/setup.py" + "https://raw.githubusercontent.com/dit/dit/master/requirements.txt", + "https://raw.githubusercontent.com/dit/dit/master/setup.py", + "https://raw.githubusercontent.com/dit/dit/master/pyproject.toml" ], "_requirements_localurls": [ - "fastai~ghapi~setup.py" + "dit~dit~requirements.txt", + "dit~dit~setup.py", + "dit~dit~pyproject.toml" ] }, { @@ -48066,44 +66287,65 @@ "description": null, "_repopath": "udst/urbansim", "_reponame": "urbansim", - "_stars": 418, - "_forks": 124, + "_stars": 423, + "_forks": 125, "_watches": 78, - "_topics": [], "_language": "Python", "_homepage": "https://udst.github.io/urbansim/", "_description": "urbansim: Platform for building statistical models of cities and regions", "_organization": "udst", - "_updated_at": "2022-12-08T00:00:00.000Z", - "_last_commit_date": "2020-05-11T00:00:00.000Z", + "_updated_at": "2023-02-17T00:00:00.000Z", "_created_at": "2013-08-15T00:00:00.000Z", - "_age_weeks": 487, - "_stars_per_week": 0.86, + "_age_weeks": 496, + "_stars_per_week": 0.85, + "_topics": [], + "_last_commit_date": "2020-05-11T00:00:00.000Z", "_pop_contributor_count": 20, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Eh2406@amazon", + "bridwell", + "daradib@applemontechnologies", + "fscottfoti@populus-aimapcraftlabsoaklandanalytics", + "gonzalobenegas", + "janowicz", + "jiffyclub@populus-ai", + "pksohn@google", + "smmaurer@urbansim", + "waddell" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "amazon", "applemontechnologies", "google", "populus-ai", "populus-aimapcraftlabsoaklandanalytics", "urbansim" ], + "_pop_contributor_orgs_raw": [ + "@Amazon ", + "@populus-ai ", + "@populus-ai @mapcraftlabs @oaklandanalytics ", + "Applemon Technologies", + "Google", + "UrbanSim Inc." + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 0, + "_pop_updated_issues_count": 1, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 114, - "_pop_updated_since_days": 32, + "_pop_created_since_days": 116, + "_pop_updated_since_days": 34, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 0.0, + "_pop_issue_count": 1.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 40, - "_pop_score": 28.16, + "_pop_dependents_count": 0, + "_pop_score": 22.63, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/udst/urbansim/master/README.rst", "_readme_localurl": "udst~urbansim~README.rst", @@ -48117,71 +66359,6 @@ "udst~urbansim~setup.py" ] }, - { - "index": 188, - "category": "math", - "githuburl": "https://github.com/dit/dit", - "featured": null, - "links": null, - "description": null, - "_repopath": "dit/dit", - "_reponame": "dit", - "_stars": 417, - "_forks": 77, - "_watches": 24, - "_topics": [ - "python", - "information-theory" - ], - "_language": "Python", - "_homepage": "http://docs.dit.io", - "_description": "dit: Python package for information theory.", - "_organization": "dit", - "_updated_at": "2022-12-13T00:00:00.000Z", - "_last_commit_date": "2022-07-25T00:00:00.000Z", - "_created_at": "2013-09-29T00:00:00.000Z", - "_age_weeks": 481, - "_stars_per_week": 0.87, - "_pop_contributor_count": 20, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "google" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.92, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 112, - "_pop_updated_since_days": 5, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 4.0, - "_pop_comment_count": 7.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 269, - "_pop_score": 36.88, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/dit/dit/master/README.rst", - "_readme_localurl": "dit~dit~README.rst", - "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/dit/dit/master/requirements.txt", - "https://raw.githubusercontent.com/dit/dit/master/setup.py", - "https://raw.githubusercontent.com/dit/dit/master/pyproject.toml" - ], - "_requirements_localurls": [ - "dit~dit~requirements.txt", - "dit~dit~setup.py", - "dit~dit~pyproject.toml" - ] - }, { "index": 486, "category": "gis", @@ -48191,9 +66368,17 @@ "description": null, "_repopath": "earthlab/earthpy", "_reponame": "earthpy", - "_stars": 412, - "_forks": 149, - "_watches": 22, + "_stars": 421, + "_forks": 151, + "_watches": 21, + "_language": "Python", + "_homepage": "https://earthpy.readthedocs.io", + "_description": "earthpy: A package built to support working with spatial data using open source python", + "_organization": "earthlab", + "_updated_at": "2023-02-16T00:00:00.000Z", + "_created_at": "2018-02-20T00:00:00.000Z", + "_age_weeks": 261, + "_stars_per_week": 1.61, "_topics": [ "spatial-data", "raster", @@ -48201,39 +66386,57 @@ "python", "education" ], - "_language": "Python", - "_homepage": "https://earthpy.readthedocs.io", - "_description": "earthpy: A package built to support working with spatial data using open source python", - "_organization": "earthlab", - "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2021-12-20T00:00:00.000Z", - "_created_at": "2018-02-20T00:00:00.000Z", - "_age_weeks": 251, - "_stars_per_week": 1.64, - "_pop_contributor_count": 41, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_count": 43, + "_pop_contributor_logins": [ + "PowerChell@radiantearth", + "annaspiers", + "arfon@github", + "betatim@nvidia", + "mbjoseph@silviaterra", + "mgraber@nycplanning", + "nkorinek", + "pyup-bot@pyupio", + "sgillies@planetlabs", + "windnage@nationalsnowandicedatacenteratcu,boulder" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "hydrosat", + "github", + "nationalsnowandicedatacenteratcu,boulder", "nvidia", + "nycplanning", + "planetlabs", "pyupio", + "radiantearth", "silviaterra" ], + "_pop_contributor_orgs_raw": [ + "@NYCPlanning", + "@SilviaTerra", + "@github", + "@planetlabs", + "@pyupio", + "@radiantearth ", + "National Snow and Ice Data Center at CU, Boulder", + "Nvidia " + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 28, - "_pop_closed_issues_count": 21, - "_pop_created_since_days": 59, - "_pop_updated_since_days": 12, + "_pop_updated_issues_count": 57, + "_pop_closed_issues_count": 49, + "_pop_created_since_days": 61, + "_pop_updated_since_days": 14, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 7, "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 28.0, - "_pop_comment_count": 43.0, + "_pop_issue_count": 58.0, + "_pop_comment_count": 100.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 60, - "_pop_score": 41.4, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 38.15, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/earthlab/earthpy/master/README.md", "_readme_localurl": "earthlab~earthpy~README.md", @@ -48250,6 +66453,59 @@ "earthlab~earthpy~pyproject.toml" ] }, + { + "index": 472, + "category": "nlp", + "githuburl": "https://github.com/google-research/byt5", + "featured": null, + "links": null, + "description": null, + "_repopath": "google-research/byt5", + "_reponame": "byt5", + "_stars": 413, + "_forks": 25, + "_watches": 11, + "_language": "Python", + "_homepage": null, + "_description": "google-research/byt5", + "_organization": "google-research", + "_updated_at": "2023-02-15T00:00:00.000Z", + "_created_at": "2021-05-26T00:00:00.000Z", + "_age_weeks": 91, + "_stars_per_week": 4.54, + "_topics": [], + "_last_commit_date": "2022-03-02T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "lintingxue", + "nconstant-google" + ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 21, + "_pop_updated_since_days": 12, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 4.36, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/google-research/byt5/master/README.md", + "_readme_localurl": "google-research~byt5~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 705, "category": "ml-ops", @@ -48259,9 +66515,17 @@ "description": null, "_repopath": "bodywork-ml/bodywork-core", "_reponame": "bodywork-core", - "_stars": 406, + "_stars": 413, "_forks": 18, "_watches": 9, + "_language": "Python", + "_homepage": "https://bodywork.readthedocs.io/en/latest/", + "_description": "bodywork-core: ML pipeline orchestration and model deployments on Kubernetes, made really easy.", + "_organization": "bodywork-ml", + "_updated_at": "2023-02-01T00:00:00.000Z", + "_created_at": "2020-11-17T00:00:00.000Z", + "_age_weeks": 118, + "_stars_per_week": 3.5, "_topics": [ "mlops", "python", @@ -48277,37 +66541,37 @@ "cicd", "orchestration" ], - "_language": "Python", - "_homepage": "https://bodywork.readthedocs.io/en/latest/", - "_description": "bodywork-core: ML pipeline orchestration and model deployments on Kubernetes, made really easy.", - "_organization": "bodywork-ml", - "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2022-07-04T00:00:00.000Z", - "_created_at": "2020-11-17T00:00:00.000Z", - "_age_weeks": 108, - "_stars_per_week": 3.73, "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "AlexIoannides@bodywork-mllloydsbankinggroup", + "Marios85@bodyworkmachinelearning" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "bodywork-mllloydsbankinggroup", "bodyworkmachinelearning" ], + "_pop_contributor_orgs_raw": [ + "@bodywork-ml @lloydsbankinggroup", + "Bodywork Machine Learning" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.73, + "_pop_commit_frequency": 2.35, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 25, - "_pop_updated_since_days": 6, + "_pop_created_since_days": 28, + "_pop_updated_since_days": 8, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 29, - "_pop_recent_releases_adjusted_count": 29, + "_pop_recent_releases_estimated_tags": 26, + "_pop_recent_releases_adjusted_count": 26, "_pop_issue_count": 0.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 8, - "_pop_score": 25.12, + "_pop_dependents_count": 0, + "_pop_score": 20.65, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/bodywork-ml/bodywork-core/master/README.md", "_readme_localurl": "bodywork-ml~bodywork-core~README.md", @@ -48322,111 +66586,405 @@ ] }, { - "index": 472, - "category": "nlp", - "githuburl": "https://github.com/google-research/byt5", + "index": 786, + "category": "util", + "githuburl": "https://github.com/gefyrahq/gefyra", + "featured": null, + "links": null, + "description": null, + "_repopath": "gefyrahq/gefyra", + "_reponame": "gefyra", + "_stars": 410, + "_forks": 23, + "_watches": 7, + "_language": "Python", + "_homepage": "https://gefyra.dev", + "_description": "gefyra: Blazingly-fast :rocket:, rock-solid, local application development :arrow_right: with Kubernetes.", + "_organization": "gefyrahq", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2021-11-18T00:00:00.000Z", + "_age_weeks": 65, + "_stars_per_week": 6.23, + "_topics": [ + "kubernetes", + "development", + "developer-tool", + "containers", + "coding", + "tunnel", + "docker", + "k8s" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 13, + "_pop_contributor_logins": [ + "LittleFox94@anexia,anexia-it", + "Schille@blueshoe", + "SteinRobert@blueshoe", + "buschNT", + "cappuc", + "dependabot[bot]", + "georgkrause", + "kianmeng", + "tschale@blueshoeunikubehq", + "vvvityaaa" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "anexia,anexia-it", + "blueshoe", + "blueshoeunikubehq" + ], + "_pop_contributor_orgs_raw": [ + "@Blueshoe ", + "@Blueshoe @unikubehq ", + "@anexia, @anexia-it", + "Blueshoe" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.23, + "_pop_updated_issues_count": 80, + "_pop_closed_issues_count": 68, + "_pop_created_since_days": 15, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 41, + "_pop_recent_releases_estimated_tags": 42, + "_pop_recent_releases_adjusted_count": 41, + "_pop_issue_count": 80.0, + "_pop_comment_count": 139.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 40.54, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/gefyrahq/gefyra/master/README.md", + "_readme_localurl": "gefyrahq~gefyra~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 275, + "category": "crypto", + "githuburl": "https://github.com/ethtx/ethtx", + "featured": null, + "links": null, + "description": null, + "_repopath": "ethtx/ethtx", + "_reponame": "ethtx", + "_stars": 406, + "_forks": 62, + "_watches": 16, + "_language": "Python", + "_homepage": "https://www.ethtx.info", + "_description": "ethtx: Python package with core transaction decoding functions.", + "_organization": "ethtx", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2021-06-28T00:00:00.000Z", + "_age_weeks": 86, + "_stars_per_week": 4.71, + "_topics": [], + "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "dudzicz@tokenflowinsights", + "kchojn@py-world", + "piotr-rudnik", + "rmaganza@tokenflowinsights", + "tmierzwa@tokenflowinsights", + "wolololol" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "py-world", + "tokenflowinsights" + ], + "_pop_contributor_orgs_raw": [ + "@TokenFlowInsights ", + "Py-World", + "Token Flow Insights" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.08, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 20, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 22, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 12.0, + "_pop_comment_count": 10.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 26.64, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/ethtx/ethtx/master/README.md", + "_readme_localurl": "ethtx~ethtx~README.md", + "_requirements_filenames": [ + "setup.py", + "Pipfile" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/ethtx/ethtx/master/setup.py", + "https://raw.githubusercontent.com/ethtx/ethtx/master/Pipfile" + ], + "_requirements_localurls": [ + "ethtx~ethtx~setup.py", + "ethtx~ethtx~Pipfile" + ] + }, + { + "index": 722, + "category": "perf", + "githuburl": "https://github.com/noxdafox/pebble", + "featured": null, + "links": null, + "description": null, + "_repopath": "noxdafox/pebble", + "_reponame": "pebble", + "_stars": 405, + "_forks": 46, + "_watches": 10, + "_language": "Python", + "_homepage": "", + "_description": "pebble: Multi threading and processing eye-candy.", + "_organization": "noxdafox", + "_updated_at": "2023-02-15T00:00:00.000Z", + "_created_at": "2013-10-16T00:00:00.000Z", + "_age_weeks": 488, + "_stars_per_week": 0.83, + "_topics": [ + "threading", + "multiprocessing", + "python", + "pool", + "decorators", + "asyncio" + ], + "_last_commit_date": "2022-11-15T00:00:00.000Z", + "_pop_contributor_count": 14, + "_pop_contributor_logins": [ + "Gistbatch@technicaluniversityofmunich", + "alanjds", + "ampolloreno@universityofcoloradoboulder", + "art049@codspeedhq", + "cbrnr@universityofgraz", + "marxin", + "noxdafox@getcujo", + "sam-harding", + "villind", + "wimglenn" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "codspeedhq", + "getcujo", + "technicaluniversityofmunich", + "universityofcoloradoboulder", + "universityofgraz" + ], + "_pop_contributor_orgs_raw": [ + "@CodSpeedHQ ", + "@getCUJO", + "Technical University of Munich", + "University of Colorado Boulder", + "University of Graz" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.98, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 114, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 2.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 31.5, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/noxdafox/pebble/master/README.rst", + "_readme_localurl": "noxdafox~pebble~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/noxdafox/pebble/master/setup.py" + ], + "_requirements_localurls": [ + "noxdafox~pebble~setup.py" + ] + }, + { + "index": 803, + "category": "util", + "githuburl": "https://github.com/open-telemetry/opentelemetry-python-contrib", "featured": null, "links": null, "description": null, - "_repopath": "google-research/byt5", - "_reponame": "byt5", - "_stars": 405, - "_forks": 25, - "_watches": 11, - "_topics": [], + "_repopath": "open-telemetry/opentelemetry-python-contrib", + "_reponame": "opentelemetry-python-contrib", + "_stars": 404, + "_forks": 314, + "_watches": 15, "_language": "Python", - "_homepage": null, - "_description": "google-research/byt5", - "_organization": "google-research", - "_updated_at": "2022-12-11T00:00:00.000Z", - "_last_commit_date": "2022-03-02T00:00:00.000Z", - "_created_at": "2021-05-26T00:00:00.000Z", - "_age_weeks": 81, - "_stars_per_week": 4.96, - "_pop_contributor_count": 2, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_homepage": "https://opentelemetry.io", + "_description": "opentelemetry-python-contrib: OpenTelemetry instrumentation for Python modules", + "_organization": "open-telemetry", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2019-11-08T00:00:00.000Z", + "_age_weeks": 171, + "_stars_per_week": 2.35, + "_topics": [], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 182, + "_pop_contributor_logins": [ + "NathanielRN", + "codeboten@lightstep", + "lzchen@microsoftcorporation", + "mariojonke", + "mauriciovasquezbernal@microsoft(kinvolk)", + "nemoshlag@epsagon", + "ocelotl", + "ofek@datadog", + "owais@splunk", + "srikanthccv@signoz.io" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "datadog", + "epsagon", + "lightstep", + "microsoft(kinvolk)", + "microsoftcorporation", + "signoz.io", + "splunk" + ], + "_pop_contributor_orgs_raw": [ + "@datadog", + "@microsoft (@kinvolk)", + "@splunk", + "Epsagon", + "Lightstep", + "Microsoft Corporation", + "signoz.io" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.04, - "_pop_updated_issues_count": 1, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 19, - "_pop_updated_since_days": 10, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 1.0, - "_pop_comment_count": 0.0, + "_pop_commit_frequency": 6.08, + "_pop_updated_issues_count": 300, + "_pop_closed_issues_count": 171, + "_pop_created_since_days": 40, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 10, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 299.0, + "_pop_comment_count": 363.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, + "_pop_comment_frequency": 1.2, "_pop_dependents_count": 0, - "_pop_score": 5.05, + "_pop_score": 52.16, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/google-research/byt5/master/README.md", - "_readme_localurl": "google-research~byt5~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/open-telemetry/opentelemetry-python-contrib/master/README.md", + "_readme_localurl": "open-telemetry~opentelemetry-python-contrib~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/open-telemetry/opentelemetry-python-contrib/master/pyproject.toml" + ], + "_requirements_localurls": [ + "open-telemetry~opentelemetry-python-contrib~pyproject.toml" + ] }, { - "index": 275, - "category": "crypto", - "githuburl": "https://github.com/ethtx/ethtx", + "index": 254, + "category": "ml", + "githuburl": "https://github.com/amzn/pecos", "featured": null, "links": null, "description": null, - "_repopath": "ethtx/ethtx", - "_reponame": "ethtx", - "_stars": 397, - "_forks": 60, - "_watches": 16, - "_topics": [], + "_repopath": "amzn/pecos", + "_reponame": "pecos", + "_stars": 401, + "_forks": 87, + "_watches": 21, "_language": "Python", - "_homepage": "https://www.ethtx.info", - "_description": "ethtx: Python package with core transaction decoding functions.", - "_organization": "ethtx", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", - "_created_at": "2021-06-28T00:00:00.000Z", - "_age_weeks": 77, - "_stars_per_week": 5.16, - "_pop_contributor_count": 6, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://libpecos.org/", + "_description": "PECOS - Prediction for Enormous and Correlated Spaces", + "_organization": "amzn", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-08-12T00:00:00.000Z", + "_age_weeks": 132, + "_stars_per_week": 3.04, + "_topics": [ + "machine-learning-algorithms", + "extreme-multi-label-classification", + "extreme-multi-label-ranking", + "transformers", + "approximate-nearest-neighbor-search" + ], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 25, + "_pop_contributor_logins": [ + "OctoberChang@amazon", + "Patrick-H-Chen", + "bhl00@sfhacksdubhacks", + "dependabot[bot]", + "hallogameboy@amazonsearchandai", + "jiong-zhang", + "nishant4995", + "rofuyu", + "weiliw-amz", + "yaushian" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "py-world", - "tokenflowinsights" + "amazon", + "amazonsearchandai", + "sfhacksdubhacks" + ], + "_pop_contributor_orgs_raw": [ + "@sfhacks @dubhacks", + "Amazon", + "Amazon Search and AI" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.37, - "_pop_updated_issues_count": 23, - "_pop_closed_issues_count": 22, - "_pop_created_since_days": 18, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 17, - "_pop_recent_releases_estimated_tags": 24, - "_pop_recent_releases_adjusted_count": 17, - "_pop_issue_count": 23.0, - "_pop_comment_count": 9.0, + "_pop_commit_frequency": 1.12, + "_pop_updated_issues_count": 44, + "_pop_closed_issues_count": 42, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 44.0, + "_pop_comment_count": 21.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.4, + "_pop_comment_frequency": 0.5, "_pop_dependents_count": 0, - "_pop_score": 28.7, + "_pop_score": 34.49, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/ethtx/ethtx/master/README.md", - "_readme_localurl": "ethtx~ethtx~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/amzn/pecos/master/README.md", + "_readme_localurl": "amzn~pecos~README.md", "_requirements_filenames": [ - "setup.py", - "Pipfile" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/ethtx/ethtx/master/setup.py", - "https://raw.githubusercontent.com/ethtx/ethtx/master/Pipfile" + "https://raw.githubusercontent.com/amzn/pecos/master/setup.py" ], "_requirements_localurls": [ - "ethtx~ethtx~setup.py", - "ethtx~ethtx~Pipfile" + "amzn~pecos~setup.py" ] }, { @@ -48438,9 +66996,17 @@ "description": null, "_repopath": "computationalmodelling/nbval", "_reponame": "nbval", - "_stars": 393, - "_forks": 50, + "_stars": 395, + "_forks": 51, "_watches": 10, + "_language": "Python", + "_homepage": "", + "_description": "nbval: A py.test plugin to validate Jupyter notebooks", + "_organization": "computationalmodelling", + "_updated_at": "2023-02-01T00:00:00.000Z", + "_created_at": "2015-04-09T00:00:00.000Z", + "_age_weeks": 410, + "_stars_per_week": 0.96, "_topics": [ "ipython-notebook", "jupyter-notebook", @@ -48449,36 +67015,49 @@ "pytest-plugin", "pytest" ], - "_language": "Python", - "_homepage": "", - "_description": "nbval: A py.test plugin to validate Jupyter notebooks", - "_organization": "computationalmodelling", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-09-17T00:00:00.000Z", - "_created_at": "2015-04-09T00:00:00.000Z", - "_age_weeks": 401, - "_stars_per_week": 0.98, - "_pop_contributor_count": 31, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-01-11T00:00:00.000Z", + "_pop_contributor_count": 33, + "_pop_contributor_logins": [ + "bsipocz@caltech/ipac", + "ceball", + "fangohr@mpsd&universityofsouthampton", + "gliptak", + "kanderso-nrel@nationalrenewableenergylaboratory", + "maxalbert", + "minrk@simularesearchlaboratory", + "takluyver", + "vidartf", + "wence-" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "mpsd&universityofsouthampton" + "caltech/ipac", + "mpsd&universityofsouthampton", + "nationalrenewableenergylaboratory", + "simularesearchlaboratory" + ], + "_pop_contributor_orgs_raw": [ + "Caltech/IPAC", + "MPSD & University of Southampton", + "National Renewable Energy Laboratory", + "Simula Research Laboratory" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.21, - "_pop_updated_issues_count": 5, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 94, - "_pop_updated_since_days": 3, + "_pop_commit_frequency": 0.25, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 96, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 5.0, - "_pop_comment_count": 2.0, + "_pop_issue_count": 9.0, + "_pop_comment_count": 10.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.4, - "_pop_dependents_count": 44, - "_pop_score": 33.0, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 35.68, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/computationalmodelling/nbval/master/README.md", "_readme_localurl": "computationalmodelling~nbval~README.md", @@ -48493,66 +67072,78 @@ ] }, { - "index": 722, - "category": "perf", - "githuburl": "https://github.com/noxdafox/pebble", + "index": 841, + "category": "util", + "githuburl": "https://github.com/carlospuenteg/file-injector", "featured": null, "links": null, "description": null, - "_repopath": "noxdafox/pebble", - "_reponame": "pebble", - "_stars": 389, - "_forks": 45, - "_watches": 10, + "_repopath": "carlospuenteg/file-injector", + "_reponame": "File-Injector", + "_stars": 395, + "_forks": 19, + "_watches": 7, + "_language": "Python", + "_homepage": "", + "_description": "File-Injector: File Injector is a script that allows you to store any file in an image using steganography", + "_organization": "carlospuenteg", + "_updated_at": "2023-02-15T00:00:00.000Z", + "_created_at": "2022-10-22T00:00:00.000Z", + "_age_weeks": 17, + "_stars_per_week": 22.48, "_topics": [ - "threading", - "multiprocessing", + "image", + "image-manipulation", + "image-processing", + "noise", + "numpy", + "photography", "python", - "pool", - "decorators", - "asyncio" + "python3", + "file", + "files", + "extraction", + "injection", + "storage", + "steganography", + "file-injection", + "file-injector" ], - "_language": "Python", - "_homepage": "", - "_description": "pebble: Multi threading and processing eye-candy.", - "_organization": "noxdafox", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-15T00:00:00.000Z", - "_created_at": "2013-10-16T00:00:00.000Z", - "_age_weeks": 478, - "_stars_per_week": 0.81, - "_pop_contributor_count": 14, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "getcujo" + "_last_commit_date": "2022-11-18T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "carlospuenteg" ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.08, - "_pop_updated_issues_count": 11, - "_pop_closed_issues_count": 11, - "_pop_created_since_days": 112, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 11.0, - "_pop_comment_count": 35.0, + "_pop_commit_frequency": 0.77, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 4, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 13, + "_pop_recent_releases_estimated_tags": 40, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 1.0, + "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.2, - "_pop_dependents_count": 322, - "_pop_score": 44.78, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/noxdafox/pebble/master/README.rst", - "_readme_localurl": "noxdafox~pebble~README.rst", + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 11.56, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/carlospuenteg/file-injector/master/README.md", + "_readme_localurl": "carlospuenteg~file-injector~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/noxdafox/pebble/master/setup.py" + "https://raw.githubusercontent.com/carlospuenteg/file-injector/master/requirements.txt" ], "_requirements_localurls": [ - "noxdafox~pebble~setup.py" + "carlospuenteg~file-injector~requirements.txt" ] }, { @@ -48564,36 +67155,60 @@ "description": null, "_repopath": "hazyresearch/fonduer", "_reponame": "fonduer", - "_stars": 386, + "_stars": 390, "_forks": 79, "_watches": 27, + "_language": "Python", + "_homepage": "https://fonduer.readthedocs.io/", + "_description": "fonduer: A knowledge base construction engine for richly formatted data", + "_organization": "hazyresearch", + "_updated_at": "2023-01-27T00:00:00.000Z", + "_created_at": "2018-02-02T00:00:00.000Z", + "_age_weeks": 263, + "_stars_per_week": 1.48, "_topics": [ "multimodality", "machine-learning", "knowledge-base-construction" ], - "_language": "Python", - "_homepage": "https://fonduer.readthedocs.io/", - "_description": "fonduer: A knowledge base construction engine for richly formatted data", - "_organization": "hazyresearch", - "_updated_at": "2022-12-05T00:00:00.000Z", "_last_commit_date": "2021-06-23T00:00:00.000Z", - "_created_at": "2018-02-02T00:00:00.000Z", - "_age_weeks": 254, - "_stars_per_week": 1.52, "_pop_contributor_count": 14, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_pop_contributor_logins": [ + "HiromuHota@https://snorkel.ai/", + "KenSugimoto@hitachiamerica,ltd.", + "YasushiMiyata", + "annelhote@mesr", + "bhancock8@snorkel-ai", + "j-rausch", + "lukehsiao@numbersstationai", + "payalbajaj", + "senwu", + "wajdikhattel@think-it-labs" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "hitachiamerica,ltd.", "https://snorkel.ai/", - "numbersstationai" + "mesr", + "numbersstationai", + "snorkel-ai", + "think-it-labs" + ], + "_pop_contributor_orgs_raw": [ + "@NumbersStationAI ", + "@Think-iT-Labs", + "@snorkel-ai ", + "Hitachi America, Ltd.", + "MESR", + "https://snorkel.ai/" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 59, - "_pop_updated_since_days": 18, + "_pop_created_since_days": 62, + "_pop_updated_since_days": 20, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 6, "_pop_recent_releases_adjusted_count": 6, @@ -48601,8 +67216,8 @@ "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 23, - "_pop_score": 24.86, + "_pop_dependents_count": 0, + "_pop_score": 23.2, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/hazyresearch/fonduer/master/README.rst", "_readme_localurl": "hazyresearch~fonduer~README.rst", @@ -48617,137 +67232,253 @@ ] }, { - "index": 841, - "category": "util", - "githuburl": "https://github.com/carlospuenteg/file-injector", + "index": 185, + "category": "math", + "githuburl": "https://github.com/willianfuks/tfcausalimpact", "featured": null, "links": null, "description": null, - "_repopath": "carlospuenteg/file-injector", - "_reponame": "File-Injector", - "_stars": 383, - "_forks": 17, - "_watches": 6, + "_repopath": "willianfuks/tfcausalimpact", + "_reponame": "tfcausalimpact", + "_stars": 389, + "_forks": 53, + "_watches": 10, + "_language": "Python", + "_homepage": "", + "_description": "tfcausalimpact: Python Causal Impact Implementation Based on Google's R Package. Built using TensorFlow Probability.", + "_organization": "willianfuks", + "_updated_at": "2023-02-16T00:00:00.000Z", + "_created_at": "2020-08-17T00:00:00.000Z", + "_age_weeks": 131, + "_stars_per_week": 2.96, "_topics": [ - "image", - "image-manipulation", - "image-processing", - "noise", - "numpy", - "photography", + "causalimpact", + "tensorflow-probability", "python", - "python3", - "file", - "files", - "extraction", - "injection", - "storage", - "steganography", - "file-injection", - "file-injector" + "causal-inference" + ], + "_last_commit_date": "2022-12-20T00:00:00.000Z", + "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "WillianFuks", + "glentakahashi", + "kjappelbaum@epfl" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "epfl" + ], + "_pop_contributor_orgs_raw": [ + "EPFL" ], - "_language": "Python", - "_homepage": "", - "_description": "File-Injector: File Injector is a script that allows you to store any file in an image using steganography", - "_organization": "carlospuenteg", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-11-18T00:00:00.000Z", - "_created_at": "2022-10-22T00:00:00.000Z", - "_age_weeks": 8, - "_stars_per_week": 46.22, - "_pop_contributor_count": 1, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.77, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 2, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 13, - "_pop_recent_releases_estimated_tags": 79, - "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, + "_pop_commit_frequency": 0.21, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 6.0, + "_pop_comment_count": 15.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, + "_pop_comment_frequency": 2.5, "_pop_dependents_count": 0, - "_pop_score": 8.59, + "_pop_score": 25.18, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/carlospuenteg/file-injector/master/README.md", - "_readme_localurl": "carlospuenteg~file-injector~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/willianfuks/tfcausalimpact/master/README.md", + "_readme_localurl": "willianfuks~tfcausalimpact~README.md", "_requirements_filenames": [ - "requirements.txt" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/carlospuenteg/file-injector/master/requirements.txt" + "https://raw.githubusercontent.com/willianfuks/tfcausalimpact/master/setup.py" ], "_requirements_localurls": [ - "carlospuenteg~file-injector~requirements.txt" + "willianfuks~tfcausalimpact~setup.py" ] }, { - "index": 254, - "category": "ml", - "githuburl": "https://github.com/amzn/pecos", + "index": 561, + "category": "gis", + "githuburl": "https://github.com/geopandas/contextily", "featured": null, "links": null, "description": null, - "_repopath": "amzn/pecos", - "_reponame": "pecos", - "_stars": 383, - "_forks": 84, - "_watches": 18, + "_repopath": "geopandas/contextily", + "_reponame": "contextily", + "_stars": 386, + "_forks": 67, + "_watches": 14, + "_language": "Jupyter Notebook", + "_homepage": "https://contextily.readthedocs.io/en/latest/", + "_description": "contextily: Context geo-tiles in Python", + "_organization": "geopandas", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2016-09-08T00:00:00.000Z", + "_age_weeks": 336, + "_stars_per_week": 1.15, "_topics": [ - "machine-learning-algorithms", - "extreme-multi-label-classification", - "extreme-multi-label-ranking", - "transformers", - "approximate-nearest-neighbor-search" + "tiles", + "stamen", + "openstreetmap", + "python", + "tile", + "mapping", + "webtiles", + "geography", + "cartography", + "matplotlib", + "osm", + "stamen-maps" ], - "_language": "Python", - "_homepage": "https://libpecos.org/", - "_description": "PECOS - Prediction for Enormous and Correlated Spaces", - "_organization": "amzn", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2020-08-12T00:00:00.000Z", - "_age_weeks": 122, - "_stars_per_week": 3.12, - "_pop_contributor_count": 25, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-06T00:00:00.000Z", + "_pop_contributor_count": 20, + "_pop_contributor_logins": [ + "EwoutH", + "choldgraf@ucberkeley", + "darribas", + "dependabot[bot]", + "hugovk@nordsoftware", + "jGaboardi@ornl", + "jorisvandenbossche", + "ljwolf@geogbristol", + "martinfleis", + "ocefpaf" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "amazon", - "amazonsearchandai" + "geogbristol", + "nordsoftware", + "ornl", + "ucberkeley" + ], + "_pop_contributor_orgs_raw": [ + "@geogbristol ", + "Nord Software", + "ORNL", + "UC Berkeley" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.15, - "_pop_updated_issues_count": 35, - "_pop_closed_issues_count": 34, - "_pop_created_since_days": 29, + "_pop_commit_frequency": 0.15, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 79, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 35.0, - "_pop_comment_count": 13.0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 14.0, + "_pop_comment_count": 12.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 34.84, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/geopandas/contextily/master/README.md", + "_readme_localurl": "geopandas~contextily~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/geopandas/contextily/master/requirements.txt", + "https://raw.githubusercontent.com/geopandas/contextily/master/setup.py" + ], + "_requirements_localurls": [ + "geopandas~contextily~requirements.txt", + "geopandas~contextily~setup.py" + ] + }, + { + "index": 929, + "category": "util", + "githuburl": "https://github.com/heuer/segno", + "featured": null, + "links": null, + "description": null, + "_repopath": "heuer/segno", + "_reponame": "segno", + "_stars": 385, + "_forks": 42, + "_watches": 11, + "_language": "Python", + "_homepage": "https://pypi.org/project/segno/", + "_description": "segno: Python QR Code and Micro QR Code encoder", + "_organization": "heuer", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2016-08-04T00:00:00.000Z", + "_age_weeks": 341, + "_stars_per_week": 1.13, + "_topics": [ + "qrcode", + "barcode", + "micro-qrcode", + "matrix-barcode", + "qr-code", + "segno", + "python", + "qr-generator", + "iso-18004", + "structured-append", + "python-qrcode", + "micro-qr-code" + ], + "_last_commit_date": "2022-12-10T00:00:00.000Z", + "_pop_contributor_count": 9, + "_pop_contributor_logins": [ + "DerBiasto", + "barbashovtd", + "bitcoinhodler", + "christian-oudard", + "eduardomazolini@intera", + "heuer", + "jayaddison", + "neycyanshi", + "stefanoborini@astrazenecauk" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "astrazenecauk", + "intera" + ], + "_pop_contributor_orgs_raw": [ + "AstraZeneca UK", + "Intera" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.81, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 80, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 3.0, + "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.4, + "_pop_comment_frequency": 1.3, "_pop_dependents_count": 0, - "_pop_score": 32.36, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/amzn/pecos/master/README.md", - "_readme_localurl": "amzn~pecos~README.md", + "_pop_score": 27.05, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/heuer/segno/master/README.rst", + "_readme_localurl": "heuer~segno~README.rst", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/amzn/pecos/master/setup.py" + "https://raw.githubusercontent.com/heuer/segno/master/setup.py", + "https://raw.githubusercontent.com/heuer/segno/master/pyproject.toml" ], "_requirements_localurls": [ - "amzn~pecos~setup.py" + "heuer~segno~setup.py", + "heuer~segno~pyproject.toml" ] }, { @@ -48759,46 +67490,70 @@ "description": null, "_repopath": "dialogflow/dialogflow-python-client-v2", "_reponame": "python-dialogflow", - "_stars": 379, - "_forks": 146, + "_stars": 385, + "_forks": 145, "_watches": 53, - "_topics": [ - "python", - "machine-learning", - "dialogflow" - ], "_language": "Python", "_homepage": "https://dialogflow.com/", "_description": "python-dialogflow: Python client for Dialogflow: Design and integrate a conversational user interface into your applications and devices.", "_organization": "dialogflow", - "_updated_at": "2022-12-09T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_updated_at": "2023-02-05T00:00:00.000Z", "_created_at": "2017-10-24T00:00:00.000Z", - "_age_weeks": 268, - "_stars_per_week": 1.41, + "_age_weeks": 278, + "_stars_per_week": 1.38, + "_topics": [ + "python", + "machine-learning", + "dialogflow" + ], + "_last_commit_date": "2023-02-16T00:00:00.000Z", "_pop_contributor_count": 34, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "busunkim96@googleapis", + "crwilcox@googlecloud", + "dandhlee@googlecloudplatform", + "galz10@google", + "gcf-owl-bot[bot]", + "lukesneeringer@highsignalsystems", + "parthea@google", + "release-please[bot]", + "renovate-bot@mend", + "yoshi-automation@googleapis" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "google", "googleapis", "googlecloud", + "googlecloudplatform", + "highsignalsystems", "mend" ], + "_pop_contributor_orgs_raw": [ + "@GoogleCloudPlatform", + "@googleapis", + "@mend", + "Google", + "Google ", + "Google Cloud", + "High Signal Systems" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.13, - "_pop_updated_issues_count": 31, - "_pop_closed_issues_count": 27, - "_pop_created_since_days": 63, + "_pop_commit_frequency": 2.12, + "_pop_updated_issues_count": 29, + "_pop_closed_issues_count": 28, + "_pop_created_since_days": 65, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 13, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 31.0, - "_pop_comment_count": 27.0, + "_pop_recent_releases_count": 15, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 29.0, + "_pop_comment_count": 31.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 49, - "_pop_score": 47.91, + "_pop_comment_frequency": 1.1, + "_pop_dependents_count": 0, + "_pop_score": 44.36, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/dialogflow/dialogflow-python-client-v2/master/README.rst", "_readme_localurl": "dialogflow~dialogflow-python-client-v2~README.rst", @@ -48813,123 +67568,149 @@ ] }, { - "index": 331, + "index": 496, "category": "ml", - "githuburl": "https://github.com/jacopotagliabue/reclist", + "githuburl": "https://github.com/linkedin/fasttreeshap", "featured": null, "links": null, "description": null, - "_repopath": "jacopotagliabue/reclist", - "_reponame": "reclist", - "_stars": 370, - "_forks": 20, - "_watches": 8, + "_repopath": "linkedin/fasttreeshap", + "_reponame": "FastTreeSHAP", + "_stars": 384, + "_forks": 23, + "_watches": 7, + "_language": "Python", + "_homepage": "", + "_description": "FastTreeSHAP: Fast SHAP value computation for interpreting tree-based models", + "_organization": "linkedin", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-01-24T00:00:00.000Z", + "_age_weeks": 56, + "_stars_per_week": 6.82, "_topics": [ - "recommender-system", + "explainable-ai", + "interpretability", + "lightgbm", "machine-learning", - "qa-automation" + "random-forest", + "shap", + "xgboost" ], - "_language": "Python", - "_homepage": "", - "_description": "reclist: Behavioral \"black-box\" testing for recommender systems", - "_organization": "jacopotagliabue", - "_updated_at": "2022-12-13T00:00:00.000Z", - "_last_commit_date": "2022-11-03T00:00:00.000Z", - "_created_at": "2021-11-08T00:00:00.000Z", - "_age_weeks": 58, - "_stars_per_week": 6.38, - "_pop_contributor_count": 7, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-11-29T00:00:00.000Z", + "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "jlyang1990@linkedincorporation" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "digitalgreenorg", - "stanforduniversity" + "linkedincorporation" + ], + "_pop_contributor_orgs_raw": [ + "LinkedIn Corporation" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.71, + "_pop_commit_frequency": 0.15, "_pop_updated_issues_count": 6, "_pop_closed_issues_count": 3, - "_pop_created_since_days": 14, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 6, + "_pop_created_since_days": 13, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 2, "_pop_issue_count": 6.0, - "_pop_comment_count": 3.0, + "_pop_comment_count": 15.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 10, - "_pop_score": 27.79, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/jacopotagliabue/reclist/master/README.rst", - "_readme_localurl": "jacopotagliabue~reclist~README.rst", + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 0, + "_pop_score": 20.12, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/linkedin/fasttreeshap/master/README.md", + "_readme_localurl": "linkedin~fasttreeshap~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt", + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/jacopotagliabue/reclist/master/setup.py" + "https://raw.githubusercontent.com/linkedin/fasttreeshap/master/requirements.txt", + "https://raw.githubusercontent.com/linkedin/fasttreeshap/master/setup.py", + "https://raw.githubusercontent.com/linkedin/fasttreeshap/master/pyproject.toml" ], "_requirements_localurls": [ - "jacopotagliabue~reclist~setup.py" + "linkedin~fasttreeshap~requirements.txt", + "linkedin~fasttreeshap~setup.py", + "linkedin~fasttreeshap~pyproject.toml" ] }, { - "index": 803, - "category": "util", - "githuburl": "https://github.com/open-telemetry/opentelemetry-python-contrib", + "index": 331, + "category": "ml", + "githuburl": "https://github.com/jacopotagliabue/reclist", "featured": null, "links": null, "description": null, - "_repopath": "open-telemetry/opentelemetry-python-contrib", - "_reponame": "opentelemetry-python-contrib", - "_stars": 369, - "_forks": 277, - "_watches": 14, - "_topics": [], + "_repopath": "jacopotagliabue/reclist", + "_reponame": "reclist", + "_stars": 384, + "_forks": 21, + "_watches": 9, "_language": "Python", - "_homepage": "https://opentelemetry.io", - "_description": "opentelemetry-python-contrib: OpenTelemetry instrumentation for Python modules", - "_organization": "open-telemetry", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2019-11-08T00:00:00.000Z", - "_age_weeks": 162, - "_stars_per_week": 2.27, - "_pop_contributor_count": 167, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_homepage": "", + "_description": "reclist: Behavioral \"black-box\" testing for recommender systems", + "_organization": "jacopotagliabue", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2021-11-08T00:00:00.000Z", + "_age_weeks": 67, + "_stars_per_week": 5.71, + "_topics": [ + "recommender-system", + "machine-learning", + "qa-automation" + ], + "_last_commit_date": "2023-01-26T00:00:00.000Z", + "_pop_contributor_count": 7, + "_pop_contributor_logins": [ + "briankosw", + "jacopotagliabue", + "nsbits", + "patrickjohncyh", + "vinid@stanforduniversity" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "lightstep", - "microsoftcorporation", - "signoz.io", - "splunk" + "stanforduniversity" + ], + "_pop_contributor_orgs_raw": [ + "Stanford University" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 5.38, - "_pop_updated_issues_count": 246, - "_pop_closed_issues_count": 164, - "_pop_created_since_days": 38, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 11, - "_pop_recent_releases_estimated_tags": 11, - "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 246.0, - "_pop_comment_count": 335.0, + "_pop_commit_frequency": 0.65, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 16, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 11.0, + "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 35, - "_pop_score": 56.1, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/open-telemetry/opentelemetry-python-contrib/master/README.md", - "_readme_localurl": "open-telemetry~opentelemetry-python-contrib~README.md", + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 22.55, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/jacopotagliabue/reclist/master/README.rst", + "_readme_localurl": "jacopotagliabue~reclist~README.rst", "_requirements_filenames": [ - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/open-telemetry/opentelemetry-python-contrib/master/pyproject.toml" + "https://raw.githubusercontent.com/jacopotagliabue/reclist/master/setup.py" ], "_requirements_localurls": [ - "open-telemetry~opentelemetry-python-contrib~pyproject.toml" + "jacopotagliabue~reclist~setup.py" ] }, { @@ -48941,9 +67722,17 @@ "description": null, "_repopath": "cogeotiff/rio-tiler", "_reponame": "rio-tiler", - "_stars": 369, - "_forks": 86, - "_watches": 65, + "_stars": 379, + "_forks": 88, + "_watches": 66, + "_language": "Python", + "_homepage": "https://cogeotiff.github.io/rio-tiler/", + "_description": "rio-tiler: User friendly Rasterio plugin to read raster datasets.", + "_organization": "cogeotiff", + "_updated_at": "2023-02-10T00:00:00.000Z", + "_created_at": "2017-10-06T00:00:00.000Z", + "_age_weeks": 280, + "_stars_per_week": 1.35, "_topics": [ "satellite", "cog", @@ -48957,38 +67746,55 @@ "rasterio", "raster" ], - "_language": "Python", - "_homepage": "https://cogeotiff.github.io/rio-tiler/", - "_description": "rio-tiler: User friendly Rasterio plugin to read raster datasets.", - "_organization": "cogeotiff", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2017-10-06T00:00:00.000Z", - "_age_weeks": 271, - "_stars_per_week": 1.36, + "_last_commit_date": "2023-02-15T00:00:00.000Z", "_pop_contributor_count": 21, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "DanSchoppe", + "benjaminleighton@csiro", + "chrieke@up42", + "emmanuelmathot@terradue", + "fredliporace@amskepler", + "kant", + "kylebarron", + "samsammurphy@ecmwf", + "sgillies@planetlabs", + "vincentsarago@developmentseed" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "amskepler", - "angloamerican", - "developmentseed" + "csiro", + "developmentseed", + "ecmwf", + "planetlabs", + "terradue", + "up42" + ], + "_pop_contributor_orgs_raw": [ + "@Terradue", + "@developmentseed ", + "@planetlabs", + "@up42", + "AMS Kepler", + "CSIRO", + "ECMWF" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.19, - "_pop_updated_issues_count": 47, - "_pop_closed_issues_count": 46, - "_pop_created_since_days": 63, + "_pop_commit_frequency": 1.13, + "_pop_updated_issues_count": 19, + "_pop_closed_issues_count": 16, + "_pop_created_since_days": 65, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 23, "_pop_recent_releases_adjusted_count": 23, - "_pop_issue_count": 47.0, - "_pop_comment_count": 50.0, + "_pop_issue_count": 19.0, + "_pop_comment_count": 6.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 10, - "_pop_score": 45.33, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 0, + "_pop_score": 41.12, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/cogeotiff/rio-tiler/master/README.md", "_readme_localurl": "cogeotiff~rio-tiler~README.md", @@ -49006,201 +67812,190 @@ ] }, { - "index": 185, - "category": "math", - "githuburl": "https://github.com/willianfuks/tfcausalimpact", + "index": 747, + "category": "study", + "githuburl": "https://github.com/bayesianmodelingandcomputationinpython/bookcode_edition1", "featured": null, "links": null, "description": null, - "_repopath": "willianfuks/tfcausalimpact", - "_reponame": "tfcausalimpact", - "_stars": 366, - "_forks": 51, - "_watches": 10, - "_topics": [ - "causalimpact", - "tensorflow-probability", - "python", - "causal-inference" + "_repopath": "bayesianmodelingandcomputationinpython/bookcode_edition1", + "_reponame": "BookCode_Edition1", + "_stars": 378, + "_forks": 93, + "_watches": 17, + "_language": "Jupyter Notebook", + "_homepage": "https://www.bayesiancomputationbook.com", + "_description": "bayesianmodelingandcomputationinpython/bookcode_edition1", + "_organization": "bayesianmodelingandcomputationinpython", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2021-08-17T00:00:00.000Z", + "_age_weeks": 79, + "_stars_per_week": 4.78, + "_topics": [], + "_last_commit_date": "2023-01-09T00:00:00.000Z", + "_pop_contributor_count": 10, + "_pop_contributor_logins": [ + "OriolAbril", + "aloctavodia@imasl-conicet", + "canyon289", + "dependabot[bot]", + "erocarrera", + "ikarosilva@philips", + "jmshea@universityofflorida", + "junpenglao@google", + "paw-lu" ], - "_language": "Python", - "_homepage": "", - "_description": "tfcausalimpact: Python Causal Impact Implementation Based on Google's R Package. Built using TensorFlow Probability.", - "_organization": "willianfuks", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-10-07T00:00:00.000Z", - "_created_at": "2020-08-17T00:00:00.000Z", - "_age_weeks": 122, - "_stars_per_week": 3.0, - "_pop_contributor_count": 3, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "epfl" + "google", + "imasl-conicet", + "philips", + "universityofflorida" + ], + "_pop_contributor_orgs_raw": [ + "@google ", + "IMASL-CONICET", + "Philips", + "University of Florida" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.19, - "_pop_updated_issues_count": 7, + "_pop_commit_frequency": 0.52, + "_pop_updated_issues_count": 8, "_pop_closed_issues_count": 3, - "_pop_created_since_days": 28, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 7, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 7.0, - "_pop_comment_count": 17.0, + "_pop_created_since_days": 18, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 8.0, + "_pop_comment_count": 6.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.4, + "_pop_comment_frequency": 0.8, "_pop_dependents_count": 0, - "_pop_score": 24.39, + "_pop_score": 25.73, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/willianfuks/tfcausalimpact/master/README.md", - "_readme_localurl": "willianfuks~tfcausalimpact~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/willianfuks/tfcausalimpact/master/setup.py" - ], - "_requirements_localurls": [ - "willianfuks~tfcausalimpact~setup.py" - ] + "_readme_giturl": "https://raw.githubusercontent.com/bayesianmodelingandcomputationinpython/bookcode_edition1/master/README.md", + "_readme_localurl": "bayesianmodelingandcomputationinpython~bookcode_edition1~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { - "index": 561, - "category": "gis", - "githuburl": "https://github.com/geopandas/contextily", + "index": 756, + "category": "ml-dl", + "githuburl": "https://github.com/samuela/git-re-basin", "featured": null, "links": null, "description": null, - "_repopath": "geopandas/contextily", - "_reponame": "contextily", - "_stars": 366, - "_forks": 66, - "_watches": 14, + "_repopath": "samuela/git-re-basin", + "_reponame": "git-re-basin", + "_stars": 372, + "_forks": 32, + "_watches": 5, + "_language": "Python", + "_homepage": "https://arxiv.org/abs/2209.04836", + "_description": "git-re-basin: Code release for \"Git Re-Basin: Merging Models modulo Permutation Symmetries\"", + "_organization": "samuela", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-09-13T00:00:00.000Z", + "_age_weeks": 23, + "_stars_per_week": 16.07, "_topics": [ - "tiles", - "stamen", - "openstreetmap", - "python", - "tile", - "mapping", - "webtiles", - "geography", - "cartography", - "matplotlib", - "osm", - "stamen-maps" + "deep-learning", + "deeplearning", + "jax", + "machine-learning", + "neural-networks" ], - "_language": "Jupyter Notebook", - "_homepage": "https://contextily.readthedocs.io/en/latest/", - "_description": "contextily: Context geo-tiles in Python", - "_organization": "geopandas", - "_updated_at": "2022-11-22T00:00:00.000Z", - "_last_commit_date": "2022-11-30T00:00:00.000Z", - "_created_at": "2016-09-08T00:00:00.000Z", - "_age_weeks": 327, - "_stars_per_week": 1.12, - "_pop_contributor_count": 18, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "geogbristol", - "nordsoftware", - "ornl" + "_last_commit_date": "2023-01-09T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "samuela" ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.08, - "_pop_updated_issues_count": 7, + "_pop_commit_frequency": 0.46, + "_pop_updated_issues_count": 5, "_pop_closed_issues_count": 1, - "_pop_created_since_days": 76, + "_pop_created_since_days": 5, "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 7.0, - "_pop_comment_count": 6.0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 5.0, + "_pop_comment_count": 10.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 3, - "_pop_score": 32.38, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 11.63, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/geopandas/contextily/master/README.md", - "_readme_localurl": "geopandas~contextily~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/geopandas/contextily/master/requirements.txt", - "https://raw.githubusercontent.com/geopandas/contextily/master/setup.py" - ], - "_requirements_localurls": [ - "geopandas~contextily~requirements.txt", - "geopandas~contextily~setup.py" - ] + "_readme_giturl": "https://raw.githubusercontent.com/samuela/git-re-basin/master/README.md", + "_readme_localurl": "samuela~git-re-basin~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { - "index": 522, - "category": "gis", - "githuburl": "https://github.com/pygeos/pygeos", + "index": 335, + "category": "ml", + "githuburl": "https://github.com/mrdbourke/m1-machine-learning-test", "featured": null, "links": null, "description": null, - "_repopath": "pygeos/pygeos", - "_reponame": "pygeos", - "_stars": 361, - "_forks": 37, - "_watches": 16, - "_topics": [], - "_language": "Python", - "_homepage": "https://pygeos.readthedocs.io", - "_description": "pygeos: Wraps GEOS geometry functions in numpy ufuncs.", - "_organization": "pygeos", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2019-06-10T00:00:00.000Z", - "_age_weeks": 184, - "_stars_per_week": 1.96, - "_pop_contributor_count": 13, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "adonmo(adonmo)", - "astutespruce", - "gnsscience", - "nelen&schuurmans" + "_repopath": "mrdbourke/m1-machine-learning-test", + "_reponame": "m1-machine-learning-test", + "_stars": 371, + "_forks": 120, + "_watches": 12, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "m1-machine-learning-test: Code for testing various M1 Chip benchmarks with TensorFlow.", + "_organization": "mrdbourke", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-11-14T00:00:00.000Z", + "_age_weeks": 66, + "_stars_per_week": 5.58, + "_topics": [ + "tensorflow", + "tensorflow-macos", + "metal", + "machine-learning" + ], + "_last_commit_date": "2022-07-16T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "KittyBorgX", + "mrdbourke" ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.19, - "_pop_updated_issues_count": 21, - "_pop_closed_issues_count": 21, - "_pop_created_since_days": 43, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 21.0, - "_pop_comment_count": 14.0, + "_pop_commit_frequency": 0.06, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 15, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 321, - "_pop_score": 43.6, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pygeos/pygeos/master/README.rst", - "_readme_localurl": "pygeos~pygeos~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pygeos/pygeos/master/setup.py", - "https://raw.githubusercontent.com/pygeos/pygeos/master/pyproject.toml" - ], - "_requirements_localurls": [ - "pygeos~pygeos~setup.py", - "pygeos~pygeos~pyproject.toml" - ] + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 4.83, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/mrdbourke/m1-machine-learning-test/master/README.md", + "_readme_localurl": "mrdbourke~m1-machine-learning-test~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { "index": 49, @@ -49211,37 +68006,56 @@ "description": null, "_repopath": "mozillazg/pypy", "_reponame": "pypy", - "_stars": 358, - "_forks": 57, + "_stars": 367, + "_forks": 59, "_watches": 11, - "_topics": [ - "pypy", - "github-mirror", - "unofficial", - "unofficial-mirror", - "read-only-repository" - ], "_language": "Python", "_homepage": "https://foss.heptapod.net/pypy/pypy", "_description": "pypy: The unofficial GitHub mirror of PyPy", "_organization": "mozillazg", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_updated_at": "2023-02-14T00:00:00.000Z", "_created_at": "2015-08-03T00:00:00.000Z", - "_age_weeks": 385, + "_age_weeks": 394, "_stars_per_week": 0.93, + "_topics": [ + "pypy", + "github-mirror", + "unofficial", + "unofficial-mirror", + "read-only-repository", + "readonly" + ], + "_last_commit_date": "2023-02-14T00:00:00.000Z", "_pop_contributor_count": 374, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "alex", + "amauryfa", + "antocuni", + "bdkearns", + "cfbolz", + "fijal@pypy,baroquesoftware", + "mattip@quansightlabs", + "mwhudson@canonicalltd", + "pedronis", + "rlamy" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "canonicalltd", "pypy,baroquesoftware", "quansightlabs" ], + "_pop_contributor_orgs_raw": [ + "@CanonicalLtd", + "PyPy, baroquesoftware", + "Quansight Labs" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 13.0, + "_pop_commit_frequency": 11.08, "_pop_updated_issues_count": 1, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 90, + "_pop_created_since_days": 92, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 22, @@ -49250,8 +68064,8 @@ "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 3, - "_pop_score": 45.88, + "_pop_dependents_count": 0, + "_pop_score": 44.61, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/mozillazg/pypy/master/README.rst", "_readme_localurl": "mozillazg~pypy~README.rst", @@ -49266,127 +68080,280 @@ ] }, { - "index": 496, - "category": "ml", - "githuburl": "https://github.com/linkedin/fasttreeshap", + "index": 560, + "category": "gis", + "githuburl": "https://github.com/corteva/rioxarray", "featured": null, "links": null, "description": null, - "_repopath": "linkedin/fasttreeshap", - "_reponame": "FastTreeSHAP", - "_stars": 358, - "_forks": 22, - "_watches": 6, + "_repopath": "corteva/rioxarray", + "_reponame": "rioxarray", + "_stars": 364, + "_forks": 61, + "_watches": 14, + "_language": "Python", + "_homepage": "https://corteva.github.io/rioxarray", + "_description": "rioxarray: geospatial xarray extension powered by rasterio", + "_organization": "corteva", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2019-04-16T00:00:00.000Z", + "_age_weeks": 201, + "_stars_per_week": 1.81, "_topics": [ - "explainable-ai", - "interpretability", - "lightgbm", - "machine-learning", - "random-forest", - "shap", - "xgboost" + "gis", + "rasterio", + "xarray", + "geospatial", + "python", + "gdal", + "raster", + "netcdf", + "hacktoberfest" + ], + "_last_commit_date": "2023-02-07T00:00:00.000Z", + "_pop_contributor_count": 29, + "_pop_contributor_logins": [ + "RichardScottOZ@ozminerals", + "alexamici@bopen", + "cheginit@universityofhouston", + "davidbrochart@quantstack", + "mraspaud@smhi", + "mwtoews@gnsscience", + "raybellwaves@dtn", + "remi-braun@icube-sertit", + "scottyhq@universityofwashington,uwescience", + "snowman2@corteva" + ], + "_pop_contributor_orgs_len": 10, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "bopen", + "corteva", + "dtn", + "gnsscience", + "icube-sertit", + "ozminerals", + "quantstack", + "smhi", + "universityofhouston", + "universityofwashington,uwescience" + ], + "_pop_contributor_orgs_raw": [ + "@QuantStack", + "@bopen", + "@corteva ", + "DTN", + "GNS Science", + "ICube-SERTIT", + "OZ Minerals", + "SMHI", + "University of Houston", + "University of Washington, @uwescience" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.27, + "_pop_updated_issues_count": 29, + "_pop_closed_issues_count": 19, + "_pop_created_since_days": 47, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 16, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 29.0, + "_pop_comment_count": 58.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 46.59, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/corteva/rioxarray/master/README.rst", + "_readme_localurl": "corteva~rioxarray~README.rst", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/corteva/rioxarray/master/setup.py", + "https://raw.githubusercontent.com/corteva/rioxarray/master/pyproject.toml" ], + "_requirements_localurls": [ + "corteva~rioxarray~setup.py", + "corteva~rioxarray~pyproject.toml" + ] + }, + { + "index": 586, + "category": "gis", + "githuburl": "https://github.com/pysal/momepy", + "featured": null, + "links": null, + "description": null, + "_repopath": "pysal/momepy", + "_reponame": "momepy", + "_stars": 364, + "_forks": 47, + "_watches": 16, "_language": "Python", - "_homepage": "", - "_description": "FastTreeSHAP: Fast SHAP value computation for interpreting tree-based models", - "_organization": "linkedin", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", - "_created_at": "2022-01-24T00:00:00.000Z", - "_age_weeks": 47, - "_stars_per_week": 7.62, - "_pop_contributor_count": 3, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://docs.momepy.org", + "_description": "momepy: Urban Morphology Measuring Toolkit", + "_organization": "pysal", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2018-03-30T00:00:00.000Z", + "_age_weeks": 255, + "_stars_per_week": 1.42, + "_topics": [ + "urban", + "morphology", + "morphological-analysis", + "morphometrics", + "urban-morphometrics", + "urban-street-networks" + ], + "_last_commit_date": "2023-01-09T00:00:00.000Z", + "_pop_contributor_count": 10, + "_pop_contributor_logins": [ + "AleFeli", + "PratyushTripathy", + "Thaulino", + "amorfinv", + "gregmaya", + "jGaboardi@ornl", + "kopytjuk", + "martinfleis", + "matthew-law", + "phuismann@gas-undw\u00e4rme-institutessen" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "linkedincorporation" + "gas-undw\u00e4rme-institutessen", + "ornl" + ], + "_pop_contributor_orgs_raw": [ + "Gas- und W\u00e4rme-Institut Essen", + "ORNL" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.23, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 11, + "_pop_commit_frequency": 0.98, + "_pop_updated_issues_count": 26, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 60, "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 3, + "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 7.0, - "_pop_comment_count": 11.0, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 26.0, + "_pop_comment_count": 64.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, + "_pop_comment_frequency": 2.5, "_pop_dependents_count": 0, - "_pop_score": 20.7, + "_pop_score": 32.83, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/linkedin/fasttreeshap/master/README.md", - "_readme_localurl": "linkedin~fasttreeshap~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pysal/momepy/master/README.md", + "_readme_localurl": "pysal~momepy~README.md", "_requirements_filenames": [ "requirements.txt", "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/linkedin/fasttreeshap/master/requirements.txt", - "https://raw.githubusercontent.com/linkedin/fasttreeshap/master/setup.py", - "https://raw.githubusercontent.com/linkedin/fasttreeshap/master/pyproject.toml" + "https://raw.githubusercontent.com/pysal/momepy/master/requirements.txt", + "https://raw.githubusercontent.com/pysal/momepy/master/setup.py", + "https://raw.githubusercontent.com/pysal/momepy/master/pyproject.toml" ], "_requirements_localurls": [ - "linkedin~fasttreeshap~requirements.txt", - "linkedin~fasttreeshap~setup.py", - "linkedin~fasttreeshap~pyproject.toml" + "pysal~momepy~requirements.txt", + "pysal~momepy~setup.py", + "pysal~momepy~pyproject.toml" ] }, { - "index": 499, - "category": "ml-dl", - "githuburl": "https://github.com/researchmm/sttn", + "index": 522, + "category": "gis", + "githuburl": "https://github.com/pygeos/pygeos", "featured": null, "links": null, "description": null, - "_repopath": "researchmm/sttn", - "_reponame": "STTN", - "_stars": 355, - "_forks": 70, - "_watches": 20, - "_topics": [ - "video-inpainting", - "completing-videos", - "transformer", - "spatial-temporal" + "_repopath": "pygeos/pygeos", + "_reponame": "pygeos", + "_stars": 361, + "_forks": 40, + "_watches": 16, + "_language": "Python", + "_homepage": "https://pygeos.readthedocs.io", + "_description": "pygeos: Wraps GEOS geometry functions in numpy ufuncs.", + "_organization": "pygeos", + "_updated_at": "2023-02-14T00:00:00.000Z", + "_created_at": "2019-06-10T00:00:00.000Z", + "_age_weeks": 193, + "_stars_per_week": 1.87, + "_topics": [], + "_last_commit_date": "2022-12-14T00:00:00.000Z", + "_pop_contributor_count": 13, + "_pop_contributor_logins": [ + "0phoff@eavise,kuleuven", + "brendan-ward@astutespruce", + "caspervdw@nelen&schuurmans", + "chaitan94@adonmo(adonmo)", + "jamesmyatt@capgeminiengineering", + "jorisvandenbossche", + "martinfleis", + "martinlackner@tuwien", + "mwtoews@gnsscience", + "snowman2@corteva" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "adonmo(adonmo)", + "astutespruce", + "capgeminiengineering", + "corteva", + "eavise,kuleuven", + "gnsscience", + "nelen&schuurmans", + "tuwien" + ], + "_pop_contributor_orgs_raw": [ + "@corteva ", + "Adonmo (@adonmo)", + "Astute Spruce, LLC", + "Capgemini Engineering", + "EAVISE, KU Leuven", + "GNS Science", + "Nelen & Schuurmans", + "TU Wien" ], - "_language": "Jupyter Notebook", - "_homepage": "https://arxiv.org/abs/2007.10247", - "_description": "[ECCV'2020] STTN: Learning Joint Spatial-Temporal Transformations for Video Inpainting", - "_organization": "researchmm", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2021-07-26T00:00:00.000Z", - "_created_at": "2020-07-10T00:00:00.000Z", - "_age_weeks": 127, - "_stars_per_week": 2.79, - "_pop_contributor_count": 2, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 1, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 30, - "_pop_updated_since_days": 17, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 1.0, - "_pop_comment_count": 1.0, + "_pop_commit_frequency": 0.19, + "_pop_updated_issues_count": 19, + "_pop_closed_issues_count": 18, + "_pop_created_since_days": 45, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 19.0, + "_pop_comment_count": 12.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, + "_pop_comment_frequency": 0.6, "_pop_dependents_count": 0, - "_pop_score": 7.79, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/researchmm/sttn/master/README.md", - "_readme_localurl": "researchmm~sttn~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_pop_score": 33.12, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pygeos/pygeos/master/README.rst", + "_readme_localurl": "pygeos~pygeos~README.rst", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pygeos/pygeos/master/setup.py", + "https://raw.githubusercontent.com/pygeos/pygeos/master/pyproject.toml" + ], + "_requirements_localurls": [ + "pygeos~pygeos~setup.py", + "pygeos~pygeos~pyproject.toml" + ] }, { "index": 519, @@ -49397,9 +68364,17 @@ "description": null, "_repopath": "scikit-geometry/scikit-geometry", "_reponame": "scikit-geometry", - "_stars": 354, - "_forks": 49, - "_watches": 13, + "_stars": 360, + "_forks": 50, + "_watches": 14, + "_language": "Jupyter Notebook", + "_homepage": "https://scikit-geometry.github.io/scikit-geometry", + "_description": "scikit-geometry: Scientific Python Geometric Algorithms Library", + "_organization": "scikit-geometry", + "_updated_at": "2023-01-20T00:00:00.000Z", + "_created_at": "2016-03-28T00:00:00.000Z", + "_age_weeks": 360, + "_stars_per_week": 1.0, "_topics": [ "cgal", "geometry", @@ -49407,40 +68382,53 @@ "geometric-algorithms", "wrapper" ], - "_language": "Jupyter Notebook", - "_homepage": "https://scikit-geometry.github.io/scikit-geometry", - "_description": "scikit-geometry: Scientific Python Geometric Algorithms Library", - "_organization": "scikit-geometry", - "_updated_at": "2022-11-28T00:00:00.000Z", "_last_commit_date": "2022-10-14T00:00:00.000Z", - "_created_at": "2016-03-28T00:00:00.000Z", - "_age_weeks": 351, - "_stars_per_week": 1.01, "_pop_contributor_count": 15, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "JingMatrix", + "anjiro@universityofcopenhagen", + "eboix", + "jskrzypek@resonance", + "mjd3@ambirobotics", + "mozzsa", + "poke1024@leipziguniversity", + "sanatladkat", + "timsavage@westpac", + "wolfv@prefix.devgmbh" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "ambirobotics", "leipziguniversity", "prefix.devgmbh", "resonance", + "universityofcopenhagen", "westpac" ], + "_pop_contributor_orgs_raw": [ + "@resonance ", + "Ambi Robotics", + "Leipzig University", + "University of Copenhagen", + "Westpac", + "prefix.dev GmbH" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.1, - "_pop_updated_issues_count": 6, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 82, - "_pop_updated_since_days": 2, + "_pop_commit_frequency": 0.08, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 84, + "_pop_updated_since_days": 4, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 6.0, - "_pop_comment_count": 3.0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 4, - "_pop_score": 31.19, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 0, + "_pop_score": 26.17, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/scikit-geometry/scikit-geometry/master/README.md", "_readme_localurl": "scikit-geometry~scikit-geometry~README.md", @@ -49455,356 +68443,432 @@ ] }, { - "index": 756, + "index": 499, "category": "ml-dl", - "githuburl": "https://github.com/samuela/git-re-basin", + "githuburl": "https://github.com/researchmm/sttn", "featured": null, "links": null, "description": null, - "_repopath": "samuela/git-re-basin", - "_reponame": "git-re-basin", - "_stars": 349, - "_forks": 29, - "_watches": 4, + "_repopath": "researchmm/sttn", + "_reponame": "STTN", + "_stars": 360, + "_forks": 72, + "_watches": 20, + "_language": "Jupyter Notebook", + "_homepage": "https://arxiv.org/abs/2007.10247", + "_description": "[ECCV'2020] STTN: Learning Joint Spatial-Temporal Transformations for Video Inpainting", + "_organization": "researchmm", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-07-10T00:00:00.000Z", + "_age_weeks": 136, + "_stars_per_week": 2.63, "_topics": [ - "deep-learning", - "deeplearning", - "jax", - "machine-learning", - "neural-networks" + "video-inpainting", + "completing-videos", + "transformer", + "spatial-temporal" + ], + "_last_commit_date": "2021-07-26T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "zengyh1900@openmmlab" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "openmmlab" + ], + "_pop_contributor_orgs_raw": [ + "OpenMMLab" ], - "_language": "Python", - "_homepage": "https://arxiv.org/abs/2209.04836", - "_description": "git-re-basin: Code release for \"Git Re-Basin: Merging Models modulo Permutation Symmetries\"", - "_organization": "samuela", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-10-12T00:00:00.000Z", - "_created_at": "2022-09-13T00:00:00.000Z", - "_age_weeks": 13, - "_stars_per_week": 25.19, - "_pop_contributor_count": 1, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.44, - "_pop_updated_issues_count": 8, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 3, - "_pop_updated_since_days": 2, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 32, + "_pop_updated_since_days": 19, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 8.0, - "_pop_comment_count": 52.0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 6.5, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 13.79, + "_pop_score": 7.66, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/samuela/git-re-basin/master/README.md", - "_readme_localurl": "samuela~git-re-basin~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/researchmm/sttn/master/README.md", + "_readme_localurl": "researchmm~sttn~README.md", "_requirements_filenames": [], "_requirements_giturls": [], "_requirements_localurls": [] }, { - "index": 692, - "category": "util", - "githuburl": "https://github.com/paperswithcode/axcell", + "index": 563, + "category": "gis", + "githuburl": "https://github.com/geopandas/dask-geopandas", "featured": null, "links": null, "description": null, - "_repopath": "paperswithcode/axcell", - "_reponame": "axcell", - "_stars": 344, - "_forks": 51, - "_watches": 13, - "_topics": [], + "_repopath": "geopandas/dask-geopandas", + "_reponame": "dask-geopandas", + "_stars": 357, + "_forks": 35, + "_watches": 23, "_language": "Python", - "_homepage": "", - "_description": "axcell: Tools for extracting tables and results from Machine Learning papers", - "_organization": "paperswithcode", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2021-06-23T00:00:00.000Z", - "_created_at": "2019-06-27T00:00:00.000Z", - "_age_weeks": 181, - "_stars_per_week": 1.89, - "_pop_contributor_count": 7, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://dask-geopandas.readthedocs.io/", + "_description": "dask-geopandas: Parallel GeoPandas with Dask", + "_organization": "geopandas", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2020-02-13T00:00:00.000Z", + "_age_weeks": 157, + "_stars_per_week": 2.26, + "_topics": [], + "_last_commit_date": "2023-01-23T00:00:00.000Z", + "_pop_contributor_count": 17, + "_pop_contributor_logins": [ + "DahnJ@sylveraio", + "TomAugspurger@microsoft", + "fbunt", + "gadomski@element84", + "jorisvandenbossche", + "jsignell@azavea", + "martinfleis", + "raybellwaves@dtn", + "slumnitz@europeanspaceagency,esrin", + "tastatham@mr" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "ukplab,tudarmstadt", - "xyzlab" + "azavea", + "dtn", + "element84", + "europeanspaceagency,esrin", + "microsoft", + "mr", + "sylveraio" + ], + "_pop_contributor_orgs_raw": [ + "@Element84", + "@SylveraIO", + "@azavea", + "@microsoft", + "DTN", + "European Space Agency, ESRIN", + "Mr" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 1, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 42, - "_pop_updated_since_days": 18, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 1.0, - "_pop_comment_count": 0.0, + "_pop_commit_frequency": 0.44, + "_pop_updated_issues_count": 19, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 37, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 19.0, + "_pop_comment_count": 30.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, + "_pop_comment_frequency": 1.6, "_pop_dependents_count": 0, - "_pop_score": 13.62, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/paperswithcode/axcell/master/README.md", - "_readme_localurl": "paperswithcode~axcell~README.md", + "_pop_score": 37.52, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/geopandas/dask-geopandas/master/README.rst", + "_readme_localurl": "geopandas~dask-geopandas~README.rst", "_requirements_filenames": [ - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/paperswithcode/axcell/master/setup.py" + "https://raw.githubusercontent.com/geopandas/dask-geopandas/master/setup.py", + "https://raw.githubusercontent.com/geopandas/dask-geopandas/master/pyproject.toml" ], "_requirements_localurls": [ - "paperswithcode~axcell~setup.py" + "geopandas~dask-geopandas~setup.py", + "geopandas~dask-geopandas~pyproject.toml" ] }, { - "index": 586, - "category": "gis", - "githuburl": "https://github.com/pysal/momepy", + "index": 902, + "category": "util", + "githuburl": "https://github.com/ofek/pypinfo", "featured": null, "links": null, "description": null, - "_repopath": "pysal/momepy", - "_reponame": "momepy", - "_stars": 343, - "_forks": 46, - "_watches": 16, + "_repopath": "ofek/pypinfo", + "_reponame": "pypinfo", + "_stars": 356, + "_forks": 31, + "_watches": 14, + "_language": "Python", + "_homepage": null, + "_description": "pypinfo: Easily view PyPI download statistics via Google's BigQuery.", + "_organization": "ofek", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2017-05-13T00:00:00.000Z", + "_age_weeks": 301, + "_stars_per_week": 1.18, "_topics": [ - "urban", - "morphology", - "morphological-analysis", - "morphometrics", - "urban-morphometrics", - "urban-street-networks" + "python", + "bigquery", + "pypi", + "statistics" ], - "_language": "Python", - "_homepage": "https://docs.momepy.org", - "_description": "momepy: Urban Morphology Measuring Toolkit", - "_organization": "pysal", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-10-17T00:00:00.000Z", - "_created_at": "2018-03-30T00:00:00.000Z", - "_age_weeks": 246, - "_stars_per_week": 1.39, - "_pop_contributor_count": 10, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-11-30T00:00:00.000Z", + "_pop_contributor_count": 9, + "_pop_contributor_logins": [ + "JulienPalard", + "bskinn@openteams", + "hugovk@nordsoftware", + "jdufresne@pioneervalleybooks", + "jwilk", + "mayeut", + "ofek@datadog", + "rahiel@kabisa", + "tswast@google" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "ornl", - "udl-ai" + "datadog", + "google", + "kabisa", + "nordsoftware", + "openteams", + "pioneervalleybooks" + ], + "_pop_contributor_orgs_raw": [ + "@datadog", + "@kabisa", + "Google", + "Nord Software", + "OpenTeams", + "Pioneer Valley Books" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.1, - "_pop_updated_issues_count": 29, - "_pop_closed_issues_count": 19, - "_pop_created_since_days": 57, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 3, + "_pop_commit_frequency": 0.29, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 70, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 29.0, - "_pop_comment_count": 68.0, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 1.0, + "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.3, - "_pop_dependents_count": 39, - "_pop_score": 39.12, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pysal/momepy/master/README.md", - "_readme_localurl": "pysal~momepy~README.md", + "_pop_comment_frequency": 4.0, + "_pop_dependents_count": 0, + "_pop_score": 34.34, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/ofek/pypinfo/master/README.rst", + "_readme_localurl": "ofek~pypinfo~README.rst", "_requirements_filenames": [ - "requirements.txt", - "setup.py", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pysal/momepy/master/requirements.txt", - "https://raw.githubusercontent.com/pysal/momepy/master/setup.py", - "https://raw.githubusercontent.com/pysal/momepy/master/pyproject.toml" + "https://raw.githubusercontent.com/ofek/pypinfo/master/pyproject.toml" ], "_requirements_localurls": [ - "pysal~momepy~requirements.txt", - "pysal~momepy~setup.py", - "pysal~momepy~pyproject.toml" + "ofek~pypinfo~pyproject.toml" ] - }, - { - "index": 560, - "category": "gis", - "githuburl": "https://github.com/corteva/rioxarray", + }, + { + "index": 510, + "category": "ml-dl", + "githuburl": "https://github.com/leondgarse/keras_cv_attention_models", "featured": null, "links": null, "description": null, - "_repopath": "corteva/rioxarray", - "_reponame": "rioxarray", - "_stars": 342, - "_forks": 56, - "_watches": 12, + "_repopath": "leondgarse/keras_cv_attention_models", + "_reponame": "keras_cv_attention_models", + "_stars": 355, + "_forks": 57, + "_watches": 17, + "_language": "Python", + "_homepage": "", + "_description": "keras_cv_attention_models: Keras beit,botnet,CMT,CoaT,CoAtNet,convnext,cotnet,davit,efficientdet,edgenext,efficientformer,efficientnet,fbnet,flexivit,gcvit,ghostnet,gmlp,gpvit,halonet,hornet,iformer,lcnet,levit,maxvit,mlp-mixer,mobilevit,nat,nfnets,pvt,regnet,resmlp,resnest,resnext,resnetd,swin,tinynet,uniformer,volo,wavemlp,yolor,yolov7,yolox", + "_organization": "leondgarse", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-08-02T00:00:00.000Z", + "_age_weeks": 81, + "_stars_per_week": 4.37, "_topics": [ - "gis", - "rasterio", - "xarray", - "geospatial", - "python", - "gdal", - "raster", - "netcdf", - "hacktoberfest" + "tensorflow", + "visualizing", + "keras", + "attention", + "model", + "imagenet", + "coco", + "recognition", + "detection", + "anchor-free", + "tf", + "tf2" ], - "_language": "Python", - "_homepage": "https://corteva.github.io/rioxarray", - "_description": "rioxarray: geospatial xarray extension powered by rasterio", - "_organization": "corteva", - "_updated_at": "2022-12-13T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", - "_created_at": "2019-04-16T00:00:00.000Z", - "_age_weeks": 191, - "_stars_per_week": 1.78, - "_pop_contributor_count": 26, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "AminHP@koala-team", + "awsaf49@wandb", + "dcleres@resmonicsag", + "leondgarse" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "corteva", - "dtn", - "gnsscience", - "quantstack", - "smhi" + "koala-team", + "resmonicsag", + "wandb" + ], + "_pop_contributor_orgs_raw": [ + "@koala-team", + "@wandb", + "Resmonics AG" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.5, - "_pop_updated_issues_count": 43, - "_pop_closed_issues_count": 21, - "_pop_created_since_days": 45, + "_pop_commit_frequency": 6.31, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 19, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 16, - "_pop_recent_releases_estimated_tags": 16, - "_pop_recent_releases_adjusted_count": 16, - "_pop_issue_count": 43.0, - "_pop_comment_count": 75.0, + "_pop_recent_releases_count": 21, + "_pop_recent_releases_estimated_tags": 67, + "_pop_recent_releases_adjusted_count": 21, + "_pop_issue_count": 9.0, + "_pop_comment_count": 31.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 3, - "_pop_score": 45.93, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/corteva/rioxarray/master/README.rst", - "_readme_localurl": "corteva~rioxarray~README.rst", + "_pop_comment_frequency": 3.4, + "_pop_dependents_count": 0, + "_pop_score": 36.81, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/leondgarse/keras_cv_attention_models/master/README.md", + "_readme_localurl": "leondgarse~keras_cv_attention_models~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/corteva/rioxarray/master/setup.py", - "https://raw.githubusercontent.com/corteva/rioxarray/master/pyproject.toml" + "https://raw.githubusercontent.com/leondgarse/keras_cv_attention_models/master/setup.py" ], "_requirements_localurls": [ - "corteva~rioxarray~setup.py", - "corteva~rioxarray~pyproject.toml" + "leondgarse~keras_cv_attention_models~setup.py" ] }, { - "index": 786, - "category": "util", - "githuburl": "https://github.com/gefyrahq/gefyra", + "index": 237, + "category": "ml", + "githuburl": "https://github.com/salesforce/warp-drive", "featured": null, "links": null, "description": null, - "_repopath": "gefyrahq/gefyra", - "_reponame": "gefyra", - "_stars": 339, - "_forks": 22, - "_watches": 6, + "_repopath": "salesforce/warp-drive", + "_reponame": "warp-drive", + "_stars": 349, + "_forks": 64, + "_watches": 13, + "_language": "Python", + "_homepage": "", + "_description": "warp-drive: Extremely Fast End-to-End Deep Multi-Agent Reinforcement Learning Framework on a GPU (JMLR 2022)", + "_organization": "salesforce", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2021-08-25T00:00:00.000Z", + "_age_weeks": 78, + "_stars_per_week": 4.47, "_topics": [ - "kubernetes", - "development", - "developer-tool", - "containers", - "coding", - "tunnel", - "docker", - "k8s" + "reinforcement-learning", + "gpu", + "cuda", + "multiagent-reinforcement-learning", + "deep-learning", + "high-throughput", + "pytorch", + "numba" ], - "_language": "Python", - "_homepage": "https://gefyra.dev", - "_description": "gefyra: Blazingly-fast :rocket:, rock-solid, local application development :arrow_right: with Kubernetes.", - "_organization": "gefyrahq", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2021-11-18T00:00:00.000Z", - "_age_weeks": 56, - "_stars_per_week": 5.99, - "_pop_contributor_count": 13, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-01-17T00:00:00.000Z", + "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "Emerald01@salesforceresearch", + "blchu", + "sunil-s@salesforceresearch", + "svc-scm" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "blueshoe", - "blueshoeunikubehq" + "salesforceresearch" + ], + "_pop_contributor_orgs_raw": [ + "Salesforce Research" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 7.1, - "_pop_updated_issues_count": 131, - "_pop_closed_issues_count": 114, - "_pop_created_since_days": 13, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 44, - "_pop_recent_releases_estimated_tags": 47, - "_pop_recent_releases_adjusted_count": 44, - "_pop_issue_count": 131.0, - "_pop_comment_count": 200.0, + "_pop_commit_frequency": 2.29, + "_pop_updated_issues_count": 13, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 18, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 13.0, + "_pop_comment_count": 18.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 3, - "_pop_score": 41.62, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 25.65, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/gefyrahq/gefyra/master/README.md", - "_readme_localurl": "gefyrahq~gefyra~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/salesforce/warp-drive/master/README.md", + "_readme_localurl": "salesforce~warp-drive~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/salesforce/warp-drive/master/requirements.txt", + "https://raw.githubusercontent.com/salesforce/warp-drive/master/setup.py" + ], + "_requirements_localurls": [ + "salesforce~warp-drive~requirements.txt", + "salesforce~warp-drive~setup.py" + ] }, { - "index": 335, + "index": 978, "category": "ml", - "githuburl": "https://github.com/mrdbourke/m1-machine-learning-test", + "githuburl": "https://github.com/tanelp/tiny-diffusion", "featured": null, "links": null, "description": null, - "_repopath": "mrdbourke/m1-machine-learning-test", - "_reponame": "m1-machine-learning-test", - "_stars": 339, - "_forks": 101, - "_watches": 12, - "_topics": [ - "tensorflow", - "tensorflow-macos", - "metal", - "machine-learning" - ], + "_repopath": "tanelp/tiny-diffusion", + "_reponame": "tiny-diffusion", + "_stars": 348, + "_forks": 21, + "_watches": 6, "_language": "Jupyter Notebook", "_homepage": "", - "_description": "m1-machine-learning-test: Code for testing various M1 Chip benchmarks with TensorFlow.", - "_organization": "mrdbourke", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-07-16T00:00:00.000Z", - "_created_at": "2021-11-14T00:00:00.000Z", - "_age_weeks": 57, - "_stars_per_week": 5.93, - "_pop_contributor_count": 2, + "_description": "tiny-diffusion: A minimal PyTorch implementation of probabilistic diffusion models for 2D datasets.", + "_organization": "tanelp", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2023-01-13T00:00:00.000Z", + "_age_weeks": 5, + "_stars_per_week": 60.9, + "_topics": [], + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "tanelp" + ], "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.06, "_pop_updated_issues_count": 1, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 13, - "_pop_updated_since_days": 5, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 1, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -49812,77 +68876,82 @@ "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 12, - "_pop_score": 10.29, + "_pop_dependents_count": 0, + "_pop_score": 4.67, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/mrdbourke/m1-machine-learning-test/master/README.md", - "_readme_localurl": "mrdbourke~m1-machine-learning-test~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/tanelp/tiny-diffusion/master/README.md", + "_readme_localurl": "tanelp~tiny-diffusion~README.md", "_requirements_filenames": [], "_requirements_giturls": [], "_requirements_localurls": [] }, { - "index": 848, - "category": "gis", - "githuburl": "https://github.com/mapbox/mercantile", + "index": 692, + "category": "util", + "githuburl": "https://github.com/paperswithcode/axcell", "featured": null, "links": null, "description": null, - "_repopath": "mapbox/mercantile", - "_reponame": "mercantile", - "_stars": 338, - "_forks": 62, - "_watches": 116, - "_topics": [ - "satellite", - "pxm", - "imagery" - ], + "_repopath": "paperswithcode/axcell", + "_reponame": "axcell", + "_stars": 348, + "_forks": 55, + "_watches": 13, "_language": "Python", - "_homepage": null, - "_description": "mercantile: Spherical mercator tile and coordinate utilities", - "_organization": "mapbox", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2021-10-22T00:00:00.000Z", - "_created_at": "2014-02-12T00:00:00.000Z", - "_age_weeks": 461, - "_stars_per_week": 0.73, - "_pop_contributor_count": 20, + "_homepage": "", + "_description": "axcell: Tools for extracting tables and results from Machine Learning papers", + "_organization": "paperswithcode", + "_updated_at": "2023-02-10T00:00:00.000Z", + "_created_at": "2019-06-27T00:00:00.000Z", + "_age_weeks": 190, + "_stars_per_week": 1.82, + "_topics": [], + "_last_commit_date": "2021-06-23T00:00:00.000Z", + "_pop_contributor_count": 7, + "_pop_contributor_logins": [ + "PiotrCzapla", + "RJT1990", + "VXenomac@xyzlab", + "mkardas", + "rstojnic", + "timbmg@ukplab,tudarmstadt" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "planetlabs", - "tudresden" + "ukplab,tudarmstadt", + "xyzlab" + ], + "_pop_contributor_orgs_raw": [ + "@xyzlab ", + "UKP Lab, TU Darmstadt" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 3, + "_pop_updated_issues_count": 1, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 108, - "_pop_updated_since_days": 14, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 20, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 3.0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 111, - "_pop_score": 30.96, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/mapbox/mercantile/master/README.rst", - "_readme_localurl": "mapbox~mercantile~README.rst", + "_pop_dependents_count": 0, + "_pop_score": 13.48, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/paperswithcode/axcell/master/README.md", + "_readme_localurl": "paperswithcode~axcell~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/mapbox/mercantile/master/requirements.txt", - "https://raw.githubusercontent.com/mapbox/mercantile/master/setup.py" + "https://raw.githubusercontent.com/paperswithcode/axcell/master/setup.py" ], "_requirements_localurls": [ - "mapbox~mercantile~requirements.txt", - "mapbox~mercantile~setup.py" + "paperswithcode~axcell~setup.py" ] }, { @@ -49894,9 +68963,17 @@ "description": null, "_repopath": "federicoceratto/dashing", "_reponame": "dashing", - "_stars": 338, + "_stars": 346, "_forks": 30, "_watches": 9, + "_language": "Python", + "_homepage": "https://dashing.readthedocs.io/en/latest/", + "_description": "dashing: Terminal dashboards for Python", + "_organization": "federicoceratto", + "_updated_at": "2023-02-10T00:00:00.000Z", + "_created_at": "2017-06-03T00:00:00.000Z", + "_age_weeks": 298, + "_stars_per_week": 1.16, "_topics": [ "python", "python3", @@ -49906,36 +68983,35 @@ "gauges", "charts" ], - "_language": "Python", - "_homepage": "https://dashing.readthedocs.io/en/latest/", - "_description": "dashing: Terminal dashboards for Python", - "_organization": "federicoceratto", - "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2020-09-06T00:00:00.000Z", - "_created_at": "2017-06-03T00:00:00.000Z", - "_age_weeks": 289, - "_stars_per_week": 1.17, "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "Aareon", + "FedericoCeratto@ooni/torproject/debian" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "ooni/torproject/debian" ], + "_pop_contributor_orgs_raw": [ + "OONI / Tor Project / Debian" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 1, + "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 67, - "_pop_updated_since_days": 28, + "_pop_created_since_days": 70, + "_pop_updated_since_days": 30, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 1.0, + "_pop_issue_count": 0.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 9.0, + "_pop_score": 8.47, "_readme_filename": "README.adoc", "_readme_giturl": "https://raw.githubusercontent.com/federicoceratto/dashing/master/README.adoc", "_readme_localurl": "federicoceratto~dashing~README.adoc", @@ -49955,6 +69031,95 @@ "federicoceratto~dashing~Pipfile" ] }, + { + "index": 848, + "category": "gis", + "githuburl": "https://github.com/mapbox/mercantile", + "featured": null, + "links": null, + "description": null, + "_repopath": "mapbox/mercantile", + "_reponame": "mercantile", + "_stars": 346, + "_forks": 60, + "_watches": 117, + "_language": "Python", + "_homepage": null, + "_description": "mercantile: Spherical mercator tile and coordinate utilities", + "_organization": "mapbox", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2014-02-12T00:00:00.000Z", + "_age_weeks": 471, + "_stars_per_week": 0.73, + "_topics": [ + "satellite", + "pxm", + "imagery" + ], + "_last_commit_date": "2021-10-22T00:00:00.000Z", + "_pop_contributor_count": 20, + "_pop_contributor_logins": [ + "brendan-ward@astutespruce", + "daniel-j-h@robofarmio", + "dnomadb", + "fxjung@tudresden", + "kapadia@planetlabs", + "perrygeo", + "pratikyadav@mapbox", + "samsammurphy@ecmwf", + "sgillies@planetlabs", + "youngpm" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "astutespruce", + "ecmwf", + "mapbox", + "planetlabs", + "robofarmio", + "tudresden" + ], + "_pop_contributor_orgs_raw": [ + "@planetlabs", + "@planetlabs ", + "@robofarmio ", + "Astute Spruce, LLC", + "ECMWF", + "Mapbox", + "TU Dresden" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 110, + "_pop_updated_since_days": 16, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 25.43, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/mapbox/mercantile/master/README.rst", + "_readme_localurl": "mapbox~mercantile~README.rst", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/mapbox/mercantile/master/requirements.txt", + "https://raw.githubusercontent.com/mapbox/mercantile/master/setup.py" + ], + "_requirements_localurls": [ + "mapbox~mercantile~requirements.txt", + "mapbox~mercantile~setup.py" + ] + }, { "index": 158, "category": "jupyter", @@ -49964,9 +69129,17 @@ "description": null, "_repopath": "nteract/testbook", "_reponame": "testbook", - "_stars": 336, - "_forks": 34, + "_stars": 345, + "_forks": 38, "_watches": 15, + "_language": "Python", + "_homepage": "https://testbook.readthedocs.io", + "_description": "testbook: \ud83e\uddea \ud83d\udcd7 Unit test your Jupyter Notebooks the right way", + "_organization": "nteract", + "_updated_at": "2023-02-06T00:00:00.000Z", + "_created_at": "2020-02-26T00:00:00.000Z", + "_age_weeks": 156, + "_stars_per_week": 2.21, "_topics": [ "jupyter-notebook", "unit-testing", @@ -49975,174 +69148,70 @@ "python", "testbook" ], - "_language": "Python", - "_homepage": "https://testbook.readthedocs.io", - "_description": "testbook: \ud83e\uddea \ud83d\udcd7 Unit test your Jupyter Notebooks the right way", - "_organization": "nteract", - "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2022-11-29T00:00:00.000Z", - "_created_at": "2020-02-26T00:00:00.000Z", - "_age_weeks": 146, - "_stars_per_week": 2.29, "_pop_contributor_count": 15, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_pop_contributor_logins": [ + "MSeal@noteable-io", + "alonme", + "bensenberner@doordash", + "dav009", + "fcollonval@quantstack", + "lfunderburk@seaspancorporation", + "nastra@tabular-io", + "rohitsanj@noteable-io", + "ronnie-llamado", + "willingc@willingconsulting" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "doordash", "noteable-io", "quantstack", "seaspancorporation", + "tabular-io", "willingconsulting" ], + "_pop_contributor_orgs_raw": [ + "@QuantStack", + "@noteable-io", + "@tabular-io", + "DoorDash", + "Seaspan Corporation", + "Willing Consulting" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.04, - "_pop_updated_issues_count": 5, + "_pop_updated_issues_count": 11, "_pop_closed_issues_count": 2, - "_pop_created_since_days": 34, - "_pop_updated_since_days": 1, + "_pop_created_since_days": 36, + "_pop_updated_since_days": 3, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 5, "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 5.0, - "_pop_comment_count": 5.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 5, - "_pop_score": 33.99, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nteract/testbook/master/README.md", - "_readme_localurl": "nteract~testbook~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/nteract/testbook/master/requirements.txt", - "https://raw.githubusercontent.com/nteract/testbook/master/setup.py", - "https://raw.githubusercontent.com/nteract/testbook/master/pyproject.toml" - ], - "_requirements_localurls": [ - "nteract~testbook~requirements.txt", - "nteract~testbook~setup.py", - "nteract~testbook~pyproject.toml" - ] - }, - { - "index": 563, - "category": "gis", - "githuburl": "https://github.com/geopandas/dask-geopandas", - "featured": null, - "links": null, - "description": null, - "_repopath": "geopandas/dask-geopandas", - "_reponame": "dask-geopandas", - "_stars": 336, - "_forks": 34, - "_watches": 23, - "_topics": [], - "_language": "Python", - "_homepage": "https://dask-geopandas.readthedocs.io/", - "_description": "dask-geopandas: Parallel GeoPandas with Dask", - "_organization": "geopandas", - "_updated_at": "2022-12-12T00:00:00.000Z", - "_last_commit_date": "2022-08-28T00:00:00.000Z", - "_created_at": "2020-02-13T00:00:00.000Z", - "_age_weeks": 148, - "_stars_per_week": 2.26, - "_pop_contributor_count": 16, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "azavea", - "mr", - "sylveraio", - "udl-ai" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.1, - "_pop_updated_issues_count": 13, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 35, - "_pop_updated_since_days": 4, - "_pop_recent_releases_count": 7, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 13.0, - "_pop_comment_count": 23.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 0, - "_pop_score": 32.69, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/geopandas/dask-geopandas/master/README.rst", - "_readme_localurl": "geopandas~dask-geopandas~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/geopandas/dask-geopandas/master/setup.py", - "https://raw.githubusercontent.com/geopandas/dask-geopandas/master/pyproject.toml" - ], - "_requirements_localurls": [ - "geopandas~dask-geopandas~setup.py", - "geopandas~dask-geopandas~pyproject.toml" - ] - }, - { - "index": 464, - "category": "data", - "githuburl": "https://github.com/dmarx/psaw", - "featured": null, - "links": null, - "description": null, - "_repopath": "dmarx/psaw", - "_reponame": "psaw", - "_stars": 333, - "_forks": 46, - "_watches": 9, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "psaw: Python Pushshift.io API Wrapper (for comment/submission search)", - "_organization": "dmarx", - "_updated_at": "2022-12-12T00:00:00.000Z", - "_last_commit_date": "2022-07-09T00:00:00.000Z", - "_created_at": "2018-04-15T00:00:00.000Z", - "_age_weeks": 244, - "_stars_per_week": 1.36, - "_pop_contributor_count": 8, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "stability.ai,eleuther.ai" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.04, - "_pop_updated_issues_count": 1, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 57, - "_pop_updated_since_days": 5, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 1.0, - "_pop_comment_count": 0.0, + "_pop_issue_count": 11.0, + "_pop_comment_count": 8.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 4, - "_pop_score": 18.47, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/dmarx/psaw/master/README.rst", - "_readme_localurl": "dmarx~psaw~README.rst", + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 30.65, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nteract/testbook/master/README.md", + "_readme_localurl": "nteract~testbook~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt", + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/dmarx/psaw/master/setup.py" + "https://raw.githubusercontent.com/nteract/testbook/master/requirements.txt", + "https://raw.githubusercontent.com/nteract/testbook/master/setup.py", + "https://raw.githubusercontent.com/nteract/testbook/master/pyproject.toml" ], "_requirements_localurls": [ - "dmarx~psaw~setup.py" + "nteract~testbook~requirements.txt", + "nteract~testbook~setup.py", + "nteract~testbook~pyproject.toml" ] }, { @@ -50154,9 +69223,17 @@ "description": null, "_repopath": "sciunto-org/python-bibtexparser", "_reponame": "python-bibtexparser", - "_stars": 330, - "_forks": 117, + "_stars": 344, + "_forks": 118, "_watches": 16, + "_language": "Python", + "_homepage": "https://bibtexparser.readthedocs.io", + "_description": "python-bibtexparser: Bibtex parser for Python 3", + "_organization": "sciunto-org", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2013-01-05T00:00:00.000Z", + "_age_weeks": 528, + "_stars_per_week": 0.65, "_topics": [ "bibtex", "bibtex-files", @@ -50164,39 +69241,53 @@ "python", "hacktoberfest2022" ], - "_language": "Python", - "_homepage": "https://bibtexparser.readthedocs.io", - "_description": "python-bibtexparser: Bibtex parser for Python 3", - "_organization": "sciunto-org", - "_updated_at": "2022-12-13T00:00:00.000Z", - "_last_commit_date": "2022-10-20T00:00:00.000Z", - "_created_at": "2013-01-05T00:00:00.000Z", - "_age_weeks": 519, - "_stars_per_week": 0.64, + "_last_commit_date": "2023-01-03T00:00:00.000Z", "_pop_contributor_count": 45, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_pop_contributor_logins": [ + "MiWeiss@universit\u00e0dellasvizzeraitaliana(testingautomated-usi)", + "Phyks", + "bcbnz", + "cao@ruhruniversitybochum", + "drakeguan@kkstream", + "flopraden@quicksign", + "grochmal", + "michaelfruth@universityofpassau", + "omangin", + "sciunto@paris-saclayuniversity" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "kkstream", "paris-saclayuniversity", "quicksign", "ruhruniversitybochum", + "universityofpassau", "universit\u00e0dellasvizzeraitaliana(testingautomated-usi)" ], + "_pop_contributor_orgs_raw": [ + "KKStream", + "Paris-Saclay University", + "QuickSign", + "Ruhr University Bochum", + "University of Passau", + "Universit\u00e0 della Svizzera Italiana (@testingautomated-usi)" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.6, - "_pop_updated_issues_count": 41, - "_pop_closed_issues_count": 24, - "_pop_created_since_days": 121, + "_pop_commit_frequency": 0.65, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 9, + "_pop_created_since_days": 123, "_pop_updated_since_days": 2, "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 41.0, - "_pop_comment_count": 37.0, + "_pop_issue_count": 12.0, + "_pop_comment_count": 9.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 35, - "_pop_score": 44.26, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 37.86, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/sciunto-org/python-bibtexparser/master/README.rst", "_readme_localurl": "sciunto-org~python-bibtexparser~README.rst", @@ -50214,71 +69305,76 @@ ] }, { - "index": 237, - "category": "ml", - "githuburl": "https://github.com/salesforce/warp-drive", + "index": 464, + "category": "data", + "githuburl": "https://github.com/dmarx/psaw", "featured": null, "links": null, "description": null, - "_repopath": "salesforce/warp-drive", - "_reponame": "warp-drive", - "_stars": 329, - "_forks": 58, - "_watches": 12, - "_topics": [ - "reinforcement-learning", - "gpu", - "cuda", - "multiagent-reinforcement-learning", - "deep-learning", - "high-throughput", - "pytorch", - "numba" - ], + "_repopath": "dmarx/psaw", + "_reponame": "psaw", + "_stars": 341, + "_forks": 54, + "_watches": 9, "_language": "Python", - "_homepage": "", - "_description": "warp-drive: Extremely Fast End-to-End Deep Multi-Agent Reinforcement Learning Framework on a GPU", - "_organization": "salesforce", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", - "_created_at": "2021-08-25T00:00:00.000Z", - "_age_weeks": 68, - "_stars_per_week": 4.79, - "_pop_contributor_count": 6, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_homepage": null, + "_description": "psaw: Python Pushshift.io API Wrapper (for comment/submission search)", + "_organization": "dmarx", + "_updated_at": "2023-01-30T00:00:00.000Z", + "_created_at": "2018-04-15T00:00:00.000Z", + "_age_weeks": 253, + "_stars_per_week": 1.35, + "_topics": [], + "_last_commit_date": "2022-07-09T00:00:00.000Z", + "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "Jabb0", + "arlenk", + "dmarx@stability.ai,eleuther.ai", + "lolamathematician", + "melaniewalsh", + "mental32@iworkoncompilersandstuff.", + "robhawkins", + "wassname@i'mjustaguywholikestomachinelearn" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "salesforceresearch" + "i'mjustaguywholikestomachinelearn", + "iworkoncompilersandstuff.", + "stability.ai,eleuther.ai" + ], + "_pop_contributor_orgs_raw": [ + "I work on compilers and stuff.", + "I'm just a guy who likes to machine learn", + "Stability.ai, Eleuther.ai" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.21, - "_pop_updated_issues_count": 14, - "_pop_closed_issues_count": 11, - "_pop_created_since_days": 16, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 14.0, - "_pop_comment_count": 11.0, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 59, + "_pop_updated_since_days": 8, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 5.0, + "_pop_comment_count": 8.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 15, - "_pop_score": 29.49, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/salesforce/warp-drive/master/README.md", - "_readme_localurl": "salesforce~warp-drive~README.md", + "_pop_comment_frequency": 1.6, + "_pop_dependents_count": 0, + "_pop_score": 23.36, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/dmarx/psaw/master/README.rst", + "_readme_localurl": "dmarx~psaw~README.rst", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/salesforce/warp-drive/master/requirements.txt", - "https://raw.githubusercontent.com/salesforce/warp-drive/master/setup.py" + "https://raw.githubusercontent.com/dmarx/psaw/master/setup.py" ], "_requirements_localurls": [ - "salesforce~warp-drive~requirements.txt", - "salesforce~warp-drive~setup.py" + "dmarx~psaw~setup.py" ] }, { @@ -50290,31 +69386,37 @@ "description": null, "_repopath": "rasbt/stat451-machine-learning-fs20", "_reponame": "stat451-machine-learning-fs20", - "_stars": 327, - "_forks": 176, + "_stars": 339, + "_forks": 179, "_watches": 18, - "_topics": [], "_language": "Jupyter Notebook", "_homepage": null, "_description": "stat451-machine-learning-fs20: STAT 451: Intro to Machine Learning @ UW-Madison (Fall 2020)", "_organization": "rasbt", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2020-12-03T00:00:00.000Z", + "_updated_at": "2023-02-18T00:00:00.000Z", "_created_at": "2020-08-06T00:00:00.000Z", - "_age_weeks": 123, - "_stars_per_week": 2.65, + "_age_weeks": 132, + "_stars_per_week": 2.55, + "_topics": [], + "_last_commit_date": "2020-12-03T00:00:00.000Z", "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "rasbt@lightning-ai,universityofwisconsin-madison" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "lightning-ai,universityofwisconsin-madison" ], + "_pop_contributor_orgs_raw": [ + "@Lightning-AI , University of Wisconsin-Madison" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 29, - "_pop_updated_since_days": 25, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 27, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -50322,8 +69424,8 @@ "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 2, - "_pop_score": 7.64, + "_pop_dependents_count": 0, + "_pop_score": 5.64, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/rasbt/stat451-machine-learning-fs20/master/README.md", "_readme_localurl": "rasbt~stat451-machine-learning-fs20~README.md", @@ -50332,114 +69434,152 @@ "_requirements_localurls": [] }, { - "index": 747, - "category": "study", - "githuburl": "https://github.com/bayesianmodelingandcomputationinpython/bookcode_edition1", + "index": 719, + "category": "gis", + "githuburl": "https://github.com/weecology/deepforest", "featured": null, "links": null, "description": null, - "_repopath": "bayesianmodelingandcomputationinpython/bookcode_edition1", - "_reponame": "BookCode_Edition1", - "_stars": 326, - "_forks": 75, - "_watches": 13, + "_repopath": "weecology/deepforest", + "_reponame": "DeepForest", + "_stars": 336, + "_forks": 132, + "_watches": 15, + "_language": "JavaScript", + "_homepage": "https://deepforest.readthedocs.io/", + "_description": "DeepForest: Python Package for Tree Crown Detection in Airborne RGB imagery", + "_organization": "weecology", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2018-03-07T00:00:00.000Z", + "_age_weeks": 259, + "_stars_per_week": 1.3, "_topics": [], - "_language": "Jupyter Notebook", - "_homepage": "https://www.bayesiancomputationbook.com", - "_description": "bayesianmodelingandcomputationinpython/bookcode_edition1", - "_organization": "bayesianmodelingandcomputationinpython", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-09-20T00:00:00.000Z", - "_created_at": "2021-08-17T00:00:00.000Z", - "_age_weeks": 69, - "_stars_per_week": 4.67, - "_pop_contributor_count": 10, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 11, + "_pop_contributor_logins": [ + "ElliotSalisbury", + "PolarNick239@agisoft-", + "bw4sz@weecology", + "cbudac-fwig", + "davidnyberg", + "dingyif@rbccapitalmarkets", + "dwaipayan05", + "ethanwhite@weecology,univofflorida", + "henrykironde@universityofflorida" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google", - "imasl-conicet" + "agisoft-", + "rbccapitalmarkets", + "universityofflorida", + "weecology", + "weecology,univofflorida" + ], + "_pop_contributor_orgs_raw": [ + "@agisoft-llc ", + "@weecology ", + "@weecology, Univ of Florida ", + "RBC Capital Markets", + "University of Florida" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.69, - "_pop_updated_issues_count": 8, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 16, - "_pop_updated_since_days": 3, + "_pop_commit_frequency": 0.4, + "_pop_updated_issues_count": 26, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 60, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 8.0, - "_pop_comment_count": 7.0, + "_pop_recent_releases_estimated_tags": 13, + "_pop_recent_releases_adjusted_count": 13, + "_pop_issue_count": 26.0, + "_pop_comment_count": 52.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, + "_pop_comment_frequency": 2.0, "_pop_dependents_count": 0, - "_pop_score": 22.25, + "_pop_score": 39.4, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/bayesianmodelingandcomputationinpython/bookcode_edition1/master/README.md", - "_readme_localurl": "bayesianmodelingandcomputationinpython~bookcode_edition1~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/weecology/deepforest/master/README.md", + "_readme_localurl": "weecology~deepforest~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/weecology/deepforest/master/setup.py" + ], + "_requirements_localurls": [ + "weecology~deepforest~setup.py" + ] }, { - "index": 364, - "category": "ml-ops", - "githuburl": "https://github.com/kubeflow/fairing", + "index": 943, + "category": "sim", + "githuburl": "https://github.com/crflynn/stochastic", "featured": null, "links": null, "description": null, - "_repopath": "kubeflow/fairing", - "_reponame": "fairing", - "_stars": 325, - "_forks": 146, - "_watches": 40, - "_topics": [], - "_language": "Jsonnet", - "_homepage": "", - "_description": "fairing: Python SDK for building, training, and deploying ML models", - "_organization": "kubeflow", - "_updated_at": "2022-12-13T00:00:00.000Z", - "_last_commit_date": "2021-08-26T00:00:00.000Z", - "_created_at": "2018-09-03T00:00:00.000Z", - "_age_weeks": 224, - "_stars_per_week": 1.45, - "_pop_contributor_count": 41, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "google", - "ibm" + "_repopath": "crflynn/stochastic", + "_reponame": "stochastic", + "_stars": 331, + "_forks": 64, + "_watches": 15, + "_language": "Python", + "_homepage": "http://stochastic.readthedocs.io/en/stable/", + "_description": "stochastic: Generate realizations of stochastic processes in python.", + "_organization": "crflynn", + "_updated_at": "2023-02-13T00:00:00.000Z", + "_created_at": "2017-02-17T00:00:00.000Z", + "_age_weeks": 313, + "_stars_per_week": 1.06, + "_topics": [ + "stochastic-processes", + "stochastic", + "stochastic-differential-equations", + "probability", + "stochastic-volatility-models", + "stochastic-simulation-algorithm" + ], + "_last_commit_date": "2022-07-12T00:00:00.000Z", + "_pop_contributor_count": 7, + "_pop_contributor_logins": [ + "Anna-Strakovskaia", + "Gabinou", + "JJJerome", + "MichaelHogervorst", + "anntzer", + "crflynn", + "firefly-cpp" ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 1, + "_pop_commit_frequency": 0.06, + "_pop_updated_issues_count": 2, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 52, - "_pop_updated_since_days": 16, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 1, + "_pop_created_since_days": 73, + "_pop_updated_since_days": 7, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 1.0, - "_pop_comment_count": 1.0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 113, - "_pop_score": 31.65, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/kubeflow/fairing/master/README.md", - "_readme_localurl": "kubeflow~fairing~README.md", + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 13.3, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/crflynn/stochastic/master/README.rst", + "_readme_localurl": "crflynn~stochastic~README.rst", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/kubeflow/fairing/master/requirements.txt", - "https://raw.githubusercontent.com/kubeflow/fairing/master/setup.py" + "https://raw.githubusercontent.com/crflynn/stochastic/master/pyproject.toml" ], "_requirements_localurls": [ - "kubeflow~fairing~requirements.txt", - "kubeflow~fairing~setup.py" + "crflynn~stochastic~pyproject.toml" ] }, { @@ -50451,47 +69591,74 @@ "description": null, "_repopath": "blosc/python-blosc", "_reponame": "python-blosc", - "_stars": 322, + "_stars": 329, "_forks": 75, - "_watches": 12, - "_topics": [ - "python", - "wrapper", - "blosc", - "compression" - ], + "_watches": 14, "_language": "Python", "_homepage": "https://www.blosc.org/python-blosc/python-blosc.html", "_description": "python-blosc: A Python wrapper for the extremely fast Blosc compression library ", "_organization": "blosc", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_updated_at": "2023-02-07T00:00:00.000Z", "_created_at": "2010-09-30T00:00:00.000Z", - "_age_weeks": 637, + "_age_weeks": 646, "_stars_per_week": 0.51, + "_topics": [ + "python", + "wrapper", + "blosc", + "compression" + ], + "_last_commit_date": "2023-01-11T00:00:00.000Z", "_pop_contributor_count": 43, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "DimitriPapadopoulos@cea", + "FrancescAlted@francescalted", + "esc@anaconda", + "hmaarrfk@californiainstituteoftechnology", + "keszybz@redhat", + "lgarrison@scientificcomputingcore,flatironinstitute", + "oscargm98", + "robbmcleod@hitachihigh-techcanada", + "sdvillal", + "thewtex@kitware" + ], + "_pop_contributor_orgs_len": 8, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "anaconda", + "californiainstituteoftechnology", "cea", - "francescalted" + "francescalted", + "hitachihigh-techcanada", + "kitware", + "redhat", + "scientificcomputingcore,flatironinstitute" + ], + "_pop_contributor_orgs_raw": [ + "@FrancescAlted", + "@Kitware", + "Anaconda Inc.", + "CEA", + "California Institute of Technology", + "Hitachi High-tech Canada Inc.", + "Red Hat", + "Scientific Computing Core, Flatiron Institute" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.92, - "_pop_updated_issues_count": 43, - "_pop_closed_issues_count": 41, - "_pop_created_since_days": 149, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.96, + "_pop_updated_issues_count": 25, + "_pop_closed_issues_count": 23, + "_pop_created_since_days": 151, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 4, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 43.0, - "_pop_comment_count": 66.0, + "_pop_issue_count": 25.0, + "_pop_comment_count": 26.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 167, - "_pop_score": 49.64, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 41.07, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/blosc/python-blosc/master/README.rst", "_readme_localurl": "blosc~python-blosc~README.rst", @@ -50512,62 +69679,284 @@ ] }, { - "index": 719, - "category": "gis", - "githuburl": "https://github.com/weecology/deepforest", + "index": 727, + "category": "web", + "githuburl": "https://github.com/rstudio/py-shiny", "featured": null, "links": null, "description": null, - "_repopath": "weecology/deepforest", - "_reponame": "DeepForest", - "_stars": 321, - "_forks": 122, - "_watches": 15, - "_topics": [], + "_repopath": "rstudio/py-shiny", + "_reponame": "py-shiny", + "_stars": 328, + "_forks": 20, + "_watches": 22, "_language": "JavaScript", - "_homepage": "https://deepforest.readthedocs.io/", - "_description": "DeepForest: Python Package for Tree Crown Detection in Airborne RGB imagery", - "_organization": "weecology", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-12-02T00:00:00.000Z", - "_created_at": "2018-03-07T00:00:00.000Z", - "_age_weeks": 249, - "_stars_per_week": 1.29, - "_pop_contributor_count": 11, + "_homepage": "https://shiny.rstudio.com/py/", + "_description": "py-shiny: Shiny for Python", + "_organization": "rstudio", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2021-07-27T00:00:00.000Z", + "_age_weeks": 82, + "_stars_per_week": 3.99, + "_topics": [], + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "cclauss@christianclauss", + "cpsievert@rstudio", + "fpgmaas@freelance", + "gregswinehart", + "jcheng5@rstudio", + "jonmoore", + "schloerke@rstudio", + "wch@posit-pbc" + ], "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "rbccapitalmarkets", - "universityofflorida", - "weecology", - "weecology,univofflorida" + "christianclauss", + "freelance", + "posit-pbc", + "rstudio" + ], + "_pop_contributor_orgs_raw": [ + "@posit-pbc", + "@rstudio", + "@rstudio ", + "Christian Clauss", + "Freelance" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 9.02, + "_pop_updated_issues_count": 30, + "_pop_closed_issues_count": 11, + "_pop_created_since_days": 19, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 30.0, + "_pop_comment_count": 22.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 35.5, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/rstudio/py-shiny/master/README.md", + "_readme_localurl": "rstudio~py-shiny~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/rstudio/py-shiny/master/setup.py" + ], + "_requirements_localurls": [ + "rstudio~py-shiny~setup.py" + ] + }, + { + "index": 364, + "category": "ml-ops", + "githuburl": "https://github.com/kubeflow/fairing", + "featured": null, + "links": null, + "description": null, + "_repopath": "kubeflow/fairing", + "_reponame": "fairing", + "_stars": 326, + "_forks": 146, + "_watches": 39, + "_language": "Jsonnet", + "_homepage": "", + "_description": "fairing: Python SDK for building, training, and deploying ML models", + "_organization": "kubeflow", + "_updated_at": "2023-02-14T00:00:00.000Z", + "_created_at": "2018-09-03T00:00:00.000Z", + "_age_weeks": 233, + "_stars_per_week": 1.4, + "_topics": [], + "_last_commit_date": "2021-08-26T00:00:00.000Z", + "_pop_contributor_count": 41, + "_pop_contributor_logins": [ + "Jeffwan@bytedance", + "abhi-g@google", + "hamedhsn@playstation", + "jinchihe@ibm", + "jlewi", + "karthikv2k@google", + "r2d4", + "rpasricha", + "wbuchwalter@microsoftresearch", + "xauthulei@ibm" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "bytedance", + "google", + "ibm", + "microsoftresearch", + "playstation" + ], + "_pop_contributor_orgs_raw": [ + "@google ", + "Bytedance", + "Google", + "IBM", + "Microsoft Research", + "Playstation" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 54, + "_pop_updated_since_days": 18, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 22.96, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/kubeflow/fairing/master/README.md", + "_readme_localurl": "kubeflow~fairing~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/kubeflow/fairing/master/requirements.txt", + "https://raw.githubusercontent.com/kubeflow/fairing/master/setup.py" + ], + "_requirements_localurls": [ + "kubeflow~fairing~requirements.txt", + "kubeflow~fairing~setup.py" + ] + }, + { + "index": 500, + "category": "study", + "githuburl": "https://github.com/googlecloudplatform/practical-ml-vision-book", + "featured": null, + "links": null, + "description": null, + "_repopath": "googlecloudplatform/practical-ml-vision-book", + "_reponame": "practical-ml-vision-book", + "_stars": 325, + "_forks": 147, + "_watches": 19, + "_language": "Jupyter Notebook", + "_homepage": null, + "_description": "googlecloudplatform/practical-ml-vision-book", + "_organization": "googlecloudplatform", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2020-11-18T00:00:00.000Z", + "_age_weeks": 118, + "_stars_per_week": 2.75, + "_topics": [], + "_last_commit_date": "2022-11-21T00:00:00.000Z", + "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "enakai00", + "lakshmanok", + "martin-gorner@google", + "ryangillard" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "google" + ], + "_pop_contributor_orgs_raw": [ + "Google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.08, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 28, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 17.19, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/googlecloudplatform/practical-ml-vision-book/master/README.md", + "_readme_localurl": "googlecloudplatform~practical-ml-vision-book~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 960, + "category": "nlp", + "githuburl": "https://github.com/cqcl/lambeq", + "featured": null, + "links": null, + "description": null, + "_repopath": "cqcl/lambeq", + "_reponame": "lambeq", + "_stars": 323, + "_forks": 70, + "_watches": 25, + "_language": "Python", + "_homepage": "https://cqcl.github.io/lambeq", + "_description": "lambeq: A high-level Python library for Quantum Natural Language Processing", + "_organization": "cqcl", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2021-10-10T00:00:00.000Z", + "_age_weeks": 71, + "_stars_per_week": 4.52, + "_topics": [], + "_last_commit_date": "2023-01-09T00:00:00.000Z", + "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "KentaroAOKI", + "Thommy257", + "dimkart", + "ianyfan", + "kinianlo", + "y-richie-y" ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.71, - "_pop_updated_issues_count": 29, - "_pop_closed_issues_count": 14, - "_pop_created_since_days": 58, + "_pop_commit_frequency": 0.19, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 17, "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 13, - "_pop_recent_releases_adjusted_count": 13, - "_pop_issue_count": 29.0, - "_pop_comment_count": 53.0, + "_pop_recent_releases_count": 9, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 6.0, + "_pop_comment_count": 10.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, - "_pop_dependents_count": 119, - "_pop_score": 45.86, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 22.38, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/weecology/deepforest/master/README.md", - "_readme_localurl": "weecology~deepforest~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/cqcl/lambeq/master/README.md", + "_readme_localurl": "cqcl~lambeq~README.md", "_requirements_filenames": [ - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/weecology/deepforest/master/setup.py" + "https://raw.githubusercontent.com/cqcl/lambeq/master/pyproject.toml" ], "_requirements_localurls": [ - "weecology~deepforest~setup.py" + "cqcl~lambeq~pyproject.toml" ] }, { @@ -50579,42 +69968,65 @@ "description": null, "_repopath": "geopython/owslib", "_reponame": "OWSLib", - "_stars": 315, - "_forks": 257, - "_watches": 31, - "_topics": [], + "_stars": 320, + "_forks": 261, + "_watches": 30, "_language": "Python", "_homepage": "https://geopython.github.io/OWSLib", "_description": "OWSLib is a Python package for client programming with Open Geospatial Consortium (OGC) web service (hence OWS) interface standards, and their related content models.", "_organization": "geopython", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", + "_updated_at": "2023-02-20T00:00:00.000Z", "_created_at": "2012-01-13T00:00:00.000Z", - "_age_weeks": 570, + "_age_weeks": 579, "_stars_per_week": 0.55, - "_pop_contributor_count": 138, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_topics": [], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 140, + "_pop_contributor_logins": [ + "JuergenWeichand", + "bradh", + "cehbrecht", + "daf", + "huard@ouranos", + "jachym@opengeolabs,maptiler", + "kalxas@opensourcegeospatialfoundation", + "kwilcox@axiom-data-science", + "sgillies@planetlabs", + "tomkralidis@geopythonwmo-imopengeospatial" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "axiom-data-science", "geopythonwmo-imopengeospatial", + "opengeolabs,maptiler", "opensourcegeospatialfoundation", + "ouranos", "planetlabs" ], + "_pop_contributor_orgs_raw": [ + "@OpenGeoLabs , @maptiler ", + "@axiom-data-science ", + "@geopython @wmo-im @opengeospatial", + "@planetlabs", + "Open Source Geospatial Foundation", + "Ouranos" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.9, - "_pop_updated_issues_count": 20, - "_pop_closed_issues_count": 7, - "_pop_created_since_days": 133, + "_pop_commit_frequency": 1.1, + "_pop_updated_issues_count": 27, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 135, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 4, "_pop_recent_releases_estimated_tags": 7, "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 20.0, - "_pop_comment_count": 28.0, + "_pop_issue_count": 27.0, + "_pop_comment_count": 39.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.4, - "_pop_dependents_count": 308, - "_pop_score": 53.7, + "_pop_dependents_count": 0, + "_pop_score": 47.01, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/geopython/owslib/master/README.rst", "_readme_localurl": "geopython~owslib~README.rst", @@ -50632,74 +70044,207 @@ ] }, { - "index": 510, + "index": 967, "category": "ml-dl", - "githuburl": "https://github.com/leondgarse/keras_cv_attention_models", + "githuburl": "https://github.com/suanrong/sdne", "featured": null, "links": null, "description": null, - "_repopath": "leondgarse/keras_cv_attention_models", - "_reponame": "keras_cv_attention_models", - "_stars": 313, - "_forks": 51, - "_watches": 16, - "_topics": [ - "tensorflow", - "visualizing", - "keras", - "attention", - "model", - "imagenet", - "coco", - "recognition", - "detection", - "anchor-free", - "tf", - "tf2" + "_repopath": "suanrong/sdne", + "_reponame": "SDNE", + "_stars": 310, + "_forks": 124, + "_watches": 10, + "_language": "Python", + "_homepage": "http://www.kdd.org/kdd2016/subtopic/view/structural-deep-network-embedding", + "_description": "SDNE: This is a implementation of SDNE (Structural Deep Network embedding)", + "_organization": "suanrong", + "_updated_at": "2023-01-04T00:00:00.000Z", + "_created_at": "2016-11-30T00:00:00.000Z", + "_age_weeks": 325, + "_stars_per_week": 0.95, + "_topics": [], + "_last_commit_date": "2021-09-10T00:00:00.000Z", + "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "suanrong@tsinghuauniversity" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "tsinghuauniversity" + ], + "_pop_contributor_orgs_raw": [ + "Tsinghua University" ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 76, + "_pop_updated_since_days": 18, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 12.21, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/suanrong/sdne/master/README.md", + "_readme_localurl": "suanrong~sdne~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 788, + "category": "study", + "githuburl": "https://github.com/mynameisfiber/high_performance_python_2e", + "featured": null, + "links": null, + "description": null, + "_repopath": "mynameisfiber/high_performance_python_2e", + "_reponame": "high_performance_python_2e", + "_stars": 306, + "_forks": 98, + "_watches": 6, "_language": "Python", "_homepage": "", - "_description": "keras_cv_attention_models: Keras/Tensorflow models including beit,botnet,CMT,CoaT,CoAtNet,convnext,cotnet,davit,efficientdet,edgenext,efficientformer,efficientnet,fbnet,gcvit,ghostnetv2,gmlp,halonet,hornet,lcnet,levit,maxvit,mlp-mixer,mobilevit,nat,nfnets,regnet,resmlp,resnest,resnext,resnetd,swin,tinynet,uniformer,volo,wavemlp,yolor,yolov7,yolox", - "_organization": "leondgarse", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-12-04T00:00:00.000Z", - "_created_at": "2021-08-02T00:00:00.000Z", - "_age_weeks": 72, - "_stars_per_week": 4.35, + "_description": "high_performance_python_2e: Code for the book \"High Performance Python 2e\" by Micha Gorelick and Ian Ozsvald with OReilly ", + "_organization": "mynameisfiber", + "_updated_at": "2023-02-16T00:00:00.000Z", + "_created_at": "2020-04-12T00:00:00.000Z", + "_age_weeks": 149, + "_stars_per_week": 2.05, + "_topics": [ + "python", + "high-performance", + "code-samples", + "oreilly", + "oreilly-books" + ], + "_last_commit_date": "2023-01-18T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "ianozsvald@http://morconsulting.com/", + "mynameisfiber@digital-witness-lab" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "digital-witness-lab", + "http://morconsulting.com/" + ], + "_pop_contributor_orgs_raw": [ + "@digital-witness-lab ", + "http://morconsulting.com/" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 35, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 15.55, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/mynameisfiber/high_performance_python_2e/master/README.md", + "_readme_localurl": "mynameisfiber~high_performance_python_2e~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 827, + "category": "gis", + "githuburl": "https://github.com/datasystemslab/geotorch", + "featured": null, + "links": null, + "description": null, + "_repopath": "datasystemslab/geotorch", + "_reponame": "GeoTorchAI", + "_stars": 306, + "_forks": 21, + "_watches": 9, + "_language": "Python", + "_homepage": "https://kanchanchy.github.io/geotorchai/", + "_description": "GeoTorchAI: A Spatiotemporal Deep Learning Framework (https://dl.acm.org/doi/abs/10.1145/3557915.3561036)", + "_organization": "datasystemslab", + "_updated_at": "2023-02-15T00:00:00.000Z", + "_created_at": "2022-05-23T00:00:00.000Z", + "_age_weeks": 39, + "_stars_per_week": 7.79, + "_topics": [ + "classification-model", + "convlstm-pytorch", + "deep-learning", + "deep-neural-networks", + "deepsat", + "prediction-model", + "raster-data", + "satellite-images", + "segmentation-models", + "sequence-models", + "spatial-data-analysis", + "spatio-temporal-analysis", + "spatio-temporal-models", + "spatio-temporal-prediction", + "st-resnet", + "satellite-classification" + ], + "_last_commit_date": "2023-02-05T00:00:00.000Z", "_pop_contributor_count": 4, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Sarwat@wherobots", + "kanchan-chy@amberit", + "kanchanchy" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "koala-team", - "resmonicsag", - "wandb" + "amberit", + "wherobots" + ], + "_pop_contributor_orgs_raw": [ + "Amber IT", + "Wherobots Inc." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 7.21, - "_pop_updated_issues_count": 14, - "_pop_closed_issues_count": 13, - "_pop_created_since_days": 17, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 19, - "_pop_recent_releases_estimated_tags": 68, - "_pop_recent_releases_adjusted_count": 19, - "_pop_issue_count": 14.0, - "_pop_comment_count": 35.0, + "_pop_commit_frequency": 2.6, + "_pop_updated_issues_count": 21, + "_pop_closed_issues_count": 12, + "_pop_created_since_days": 9, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 21.0, + "_pop_comment_count": 25.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, + "_pop_comment_frequency": 1.2, "_pop_dependents_count": 0, - "_pop_score": 36.28, + "_pop_score": 24.45, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/leondgarse/keras_cv_attention_models/master/README.md", - "_readme_localurl": "leondgarse~keras_cv_attention_models~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/datasystemslab/geotorch/master/README.md", + "_readme_localurl": "datasystemslab~geotorch~README.md", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/leondgarse/keras_cv_attention_models/master/setup.py" + "https://raw.githubusercontent.com/datasystemslab/geotorch/master/setup.py" ], "_requirements_localurls": [ - "leondgarse~keras_cv_attention_models~setup.py" + "datasystemslab~geotorch~setup.py" ] }, { @@ -50711,9 +70256,17 @@ "description": null, "_repopath": "nyandwi/modernconvnets", "_reponame": "ModernConvNets", - "_stars": 304, - "_forks": 31, + "_stars": 306, + "_forks": 32, "_watches": 7, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "ModernConvNets: Revisions and implementations of modern Convolutional Neural Networks architectures in TensorFlow and Keras", + "_organization": "nyandwi", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2022-02-10T00:00:00.000Z", + "_age_weeks": 53, + "_stars_per_week": 5.68, "_topics": [ "convnets", "deep-learning-algorithms", @@ -50725,27 +70278,25 @@ "image-classification", "cnns" ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "ModernConvNets: Revisions and implementations of modern Convolutional Neural Networks architectures in TensorFlow and Keras", - "_organization": "nyandwi", - "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2022-10-05T00:00:00.000Z", - "_created_at": "2022-02-10T00:00:00.000Z", - "_age_weeks": 44, - "_stars_per_week": 6.82, "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "Nyandwi@cargeniemellon" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "cargeniemellon" ], + "_pop_contributor_orgs_raw": [ + "Cargenie Mellon" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.6, + "_pop_commit_frequency": 0.52, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 10, - "_pop_updated_since_days": 2, + "_pop_created_since_days": 13, + "_pop_updated_since_days": 5, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -50754,7 +70305,7 @@ "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 9.3, + "_pop_score": 8.11, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/nyandwi/modernconvnets/master/README.md", "_readme_localurl": "nyandwi~modernconvnets~README.md", @@ -50763,54 +70314,83 @@ "_requirements_localurls": [] }, { - "index": 500, - "category": "study", - "githuburl": "https://github.com/googlecloudplatform/practical-ml-vision-book", + "index": 930, + "category": "ml", + "githuburl": "https://github.com/google-research/maxvit", "featured": null, "links": null, "description": null, - "_repopath": "googlecloudplatform/practical-ml-vision-book", - "_reponame": "practical-ml-vision-book", - "_stars": 304, - "_forks": 138, - "_watches": 18, - "_topics": [], + "_repopath": "google-research/maxvit", + "_reponame": "maxvit", + "_stars": 306, + "_forks": 19, + "_watches": 6, "_language": "Jupyter Notebook", - "_homepage": null, - "_description": "googlecloudplatform/practical-ml-vision-book", - "_organization": "googlecloudplatform", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-21T00:00:00.000Z", - "_created_at": "2020-11-18T00:00:00.000Z", - "_age_weeks": 108, - "_stars_per_week": 2.8, - "_pop_contributor_count": 6, + "_homepage": "", + "_description": "[ECCV 2022] Official repository for \"MaxViT: Multi-Axis Vision Transformer\". SOTA foundation models for classification, detection, segmentation, image quality, and generative modeling...", + "_organization": "google-research", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-07-07T00:00:00.000Z", + "_age_weeks": 32, + "_stars_per_week": 9.31, + "_topics": [ + "architecture", + "classification", + "cnn", + "computer-vision", + "image", + "image-processing", + "mlp", + "object-detection", + "transformer", + "transformer-architecture", + "vision-transformer", + "segmentation", + "resnet" + ], + "_last_commit_date": "2022-10-23T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "Yinxiaoli@columbiauniversity" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "google" + "columbiauniversity" + ], + "_pop_contributor_orgs_raw": [ + "Columbia University" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.1, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 25, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 0.06, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 8, + "_pop_updated_since_days": 4, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, + "_pop_issue_count": 6.0, + "_pop_comment_count": 5.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 9, - "_pop_score": 19.36, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 11.81, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/googlecloudplatform/practical-ml-vision-book/master/README.md", - "_readme_localurl": "googlecloudplatform~practical-ml-vision-book~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/google-research/maxvit/master/README.md", + "_readme_localurl": "google-research~maxvit~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/google-research/maxvit/master/requirements.txt", + "https://raw.githubusercontent.com/google-research/maxvit/master/setup.py" + ], + "_requirements_localurls": [ + "google-research~maxvit~requirements.txt", + "google-research~maxvit~setup.py" + ] }, { "index": 430, @@ -50821,46 +70401,60 @@ "description": null, "_repopath": "chaoleili/jupyterlab_tensorboard", "_reponame": "jupyterlab_tensorboard", - "_stars": 295, - "_forks": 35, + "_stars": 298, + "_forks": 36, "_watches": 11, + "_language": "TypeScript", + "_homepage": "", + "_description": "jupyterlab_tensorboard: Tensorboard extension for jupyterlab.", + "_organization": "chaoleili", + "_updated_at": "2023-01-30T00:00:00.000Z", + "_created_at": "2018-08-14T00:00:00.000Z", + "_age_weeks": 236, + "_stars_per_week": 1.26, "_topics": [ "jupyterlab-extension", "tensorboard", "jupyterlab" ], - "_language": "TypeScript", - "_homepage": "", - "_description": "jupyterlab_tensorboard: Tensorboard extension for jupyterlab.", - "_organization": "chaoleili", - "_updated_at": "2022-11-11T00:00:00.000Z", "_last_commit_date": "2022-07-18T00:00:00.000Z", - "_created_at": "2018-08-14T00:00:00.000Z", - "_age_weeks": 226, - "_stars_per_week": 1.3, "_pop_contributor_count": 7, + "_pop_contributor_logins": [ + "Queuecumber@researchscientistnvidia", + "carmark", + "chaoleili", + "consideRatio@sundellopensourceconsultingab", + "dependabot[bot]", + "twalcari@imec-idlab,departmentofinformationtechnology,ghentuniversity,belgium", + "wexder" + ], "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "imec-idlab,departmentofinformationtechnology,ghentuniversity,belgium", - "researchscientistatnvidia", + "researchscientistnvidia", "sundellopensourceconsultingab" ], + "_pop_contributor_orgs_raw": [ + "Research Scientist @NVIDIA", + "Sundell Open Source Consulting AB", + "imec - IDLab, Department of Information Technology, Ghent University, Belgium" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.1, - "_pop_updated_issues_count": 1, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 53, - "_pop_updated_since_days": 5, + "_pop_created_since_days": 55, + "_pop_updated_since_days": 7, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 1.0, - "_pop_comment_count": 2.0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 23.24, + "_pop_score": 17.32, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/chaoleili/jupyterlab_tensorboard/master/README.md", "_readme_localurl": "chaoleili~jupyterlab_tensorboard~README.md", @@ -50878,58 +70472,300 @@ ] }, { - "index": 788, - "category": "study", - "githuburl": "https://github.com/mynameisfiber/high_performance_python_2e", + "index": 939, + "category": "web", + "githuburl": "https://github.com/dmontagu/fastapi_client", "featured": null, "links": null, "description": null, - "_repopath": "mynameisfiber/high_performance_python_2e", - "_reponame": "high_performance_python_2e", + "_repopath": "dmontagu/fastapi_client", + "_reponame": "fastapi_client", + "_stars": 294, + "_forks": 39, + "_watches": 8, + "_language": "Python", + "_homepage": null, + "_description": "fastapi_client: FastAPI client generator", + "_organization": "dmontagu", + "_updated_at": "2023-02-16T00:00:00.000Z", + "_created_at": "2019-08-03T00:00:00.000Z", + "_age_weeks": 185, + "_stars_per_week": 1.58, + "_topics": [], + "_last_commit_date": "2021-02-11T00:00:00.000Z", + "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "ChristopheLallement", + "Toumetis", + "b0g3r@semrush", + "daveholladay", + "dmontagu@formlogic", + "fj-sanchez" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "formlogic", + "semrush" + ], + "_pop_contributor_orgs_raw": [ + "@semrush", + "Formlogic" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 43, + "_pop_updated_since_days": 25, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 12.75, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/dmontagu/fastapi_client/master/README.md", + "_readme_localurl": "dmontagu~fastapi_client~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/dmontagu/fastapi_client/master/pyproject.toml" + ], + "_requirements_localurls": [ + "dmontagu~fastapi_client~pyproject.toml" + ] + }, + { + "index": 300, + "category": "nlp", + "githuburl": "https://github.com/openai/grade-school-math", + "featured": null, + "links": null, + "description": null, + "_repopath": "openai/grade-school-math", + "_reponame": "grade-school-math", + "_stars": 293, + "_forks": 62, + "_watches": 9, + "_language": "Python", + "_homepage": null, + "_description": "openai/grade-school-math", + "_organization": "openai", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2021-10-20T00:00:00.000Z", + "_age_weeks": 70, + "_stars_per_week": 4.19, + "_topics": [], + "_last_commit_date": "2021-11-19T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "kcobbe", + "vineetsk10@openai" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "openai" + ], + "_pop_contributor_orgs_raw": [ + "OpenAI" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 16, + "_pop_updated_since_days": 15, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 7.06, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/openai/grade-school-math/master/README.md", + "_readme_localurl": "openai~grade-school-math~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/openai/grade-school-math/master/setup.py" + ], + "_requirements_localurls": [ + "openai~grade-school-math~setup.py" + ] + }, + { + "index": 884, + "category": "time-series", + "githuburl": "https://github.com/pastas/pastas", + "featured": null, + "links": null, + "description": null, + "_repopath": "pastas/pastas", + "_reponame": "pastas", "_stars": 291, - "_forks": 88, - "_watches": 6, + "_forks": 53, + "_watches": 18, + "_language": "Python", + "_homepage": "https://pastas.readthedocs.io", + "_description": "pastas: :spaghetti: Pastas is an open-source Python framework for the analysis of groundwater time series.", + "_organization": "pastas", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2016-04-15T00:00:00.000Z", + "_age_weeks": 357, + "_stars_per_week": 0.81, + "_topics": [ + "hydrology", + "groundwater", + "python", + "timeseries", + "analysis", + "pastas" + ], + "_last_commit_date": "2023-02-07T00:00:00.000Z", + "_pop_contributor_count": 17, + "_pop_contributor_logins": [ + "EitvanderMeulen@amo", + "Hugovdberg@brabantwater", + "OnnoEbbens", + "dbrakenhoff@artesiawater", + "dcslagel@codefarm", + "martinvonk", + "mbakker7@tudelft", + "raoulcollenteur@karl-franzensuniversityofgraz", + "rubencalje@artesia-water", + "saklop" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "amo", + "artesia-water", + "artesiawater", + "brabantwater", + "codefarm", + "karl-franzensuniversityofgraz", + "tudelft" + ], + "_pop_contributor_orgs_raw": [ + "AMO", + "Artesia Water", + "Artesia-water", + "Brabant Water", + "Code Farm LLC", + "Karl-Franzens University of Graz", + "TU Delft" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 4.73, + "_pop_updated_issues_count": 158, + "_pop_closed_issues_count": 115, + "_pop_created_since_days": 83, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 158.0, + "_pop_comment_count": 298.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 47.04, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/pastas/pastas/master/README.rst", + "_readme_localurl": "pastas~pastas~README.rst", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pastas/pastas/master/pyproject.toml" + ], + "_requirements_localurls": [ + "pastas~pastas~pyproject.toml" + ] + }, + { + "index": 946, + "category": "web", + "githuburl": "https://github.com/aeternalis-ingenium/fastapi-backend-template", + "featured": null, + "links": null, + "description": null, + "_repopath": "aeternalis-ingenium/fastapi-backend-template", + "_reponame": "FastAPI-Backend-Template", + "_stars": 288, + "_forks": 48, + "_watches": 9, + "_language": "Python", + "_homepage": "", + "_description": "FastAPI-Backend-Template: A backend project template with FastAPI, PostgreSQL with asynchronous SQLAlchemy 2.0, Alembic for asynchronous database migration, and Docker.", + "_organization": "aeternalis-ingenium", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-12-05T00:00:00.000Z", + "_age_weeks": 11, + "_stars_per_week": 25.52, "_topics": [ + "asynchronous", + "docker", + "docker-compose", + "fastapi", + "postgresql", "python", - "high-performance", - "code-samples", - "oreilly", - "oreilly-books" + "sqlalchemy", + "codecov", + "githubactions", + "jwt", + "pre-commit", + "alembic", + "asyncpg", + "coverage", + "pytest" + ], + "_last_commit_date": "2023-02-05T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "Aeternalis-Ingenium@j.a.r.v.i.s.", + "cclauss@christianclauss", + "kumaravelabinbev", + "pre-commit-ci[bot]" ], - "_language": "Python", - "_homepage": "", - "_description": "high_performance_python_2e: Code for the book \"High Performance Python 2e\" by Micha Gorelick and Ian Ozsvald with OReilly ", - "_organization": "mynameisfiber", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2021-01-15T00:00:00.000Z", - "_created_at": "2020-04-12T00:00:00.000Z", - "_age_weeks": 140, - "_stars_per_week": 2.08, - "_pop_contributor_count": 2, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "http://morconsulting.com/", - "occrp,the-markup" + "christianclauss", + "j.a.r.v.i.s." + ], + "_pop_contributor_orgs_raw": [ + "Christian Clauss", + "J. A. R.V. I. S." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 33, - "_pop_updated_since_days": 23, + "_pop_commit_frequency": 1.19, + "_pop_updated_issues_count": 13, + "_pop_closed_issues_count": 12, + "_pop_created_since_days": 3, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, + "_pop_issue_count": 13.0, + "_pop_comment_count": 3.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, + "_pop_comment_frequency": 0.2, "_pop_dependents_count": 0, - "_pop_score": 9.28, + "_pop_score": 17.24, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/mynameisfiber/high_performance_python_2e/master/README.md", - "_readme_localurl": "mynameisfiber~high_performance_python_2e~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/aeternalis-ingenium/fastapi-backend-template/master/README.md", + "_readme_localurl": "aeternalis-ingenium~fastapi-backend-template~README.md", "_requirements_filenames": [], "_requirements_giturls": [], "_requirements_localurls": [] @@ -50943,41 +70779,55 @@ "description": null, "_repopath": "developmentseed/geolambda", "_reponame": "geolambda", - "_stars": 278, - "_forks": 84, - "_watches": 50, - "_topics": [], + "_stars": 281, + "_forks": 85, + "_watches": 49, "_language": "Dockerfile", "_homepage": null, "_description": "geolambda: Create and deploy Geospatial AWS Lambda functions", "_organization": "developmentseed", - "_updated_at": "2022-12-09T00:00:00.000Z", - "_last_commit_date": "2021-02-16T00:00:00.000Z", + "_updated_at": "2023-01-24T00:00:00.000Z", "_created_at": "2017-05-02T00:00:00.000Z", - "_age_weeks": 293, - "_stars_per_week": 0.95, + "_age_weeks": 303, + "_stars_per_week": 0.93, + "_topics": [], + "_last_commit_date": "2021-02-16T00:00:00.000Z", "_pop_contributor_count": 6, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "bluetyson", + "kylebarron", + "matthewhanson@element84", + "robertd", + "seilerman@jupiter", + "vincentsarago@developmentseed" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "developmentseed", - "element84" + "element84", + "jupiter" + ], + "_pop_contributor_orgs_raw": [ + "@developmentseed ", + "@element84", + "Jupiter" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 0, + "_pop_updated_issues_count": 2, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 69, - "_pop_updated_since_days": 22, + "_pop_created_since_days": 71, + "_pop_updated_since_days": 24, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 0.0, + "_pop_issue_count": 2.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 3, - "_pop_score": 17.22, + "_pop_dependents_count": 0, + "_pop_score": 16.77, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/developmentseed/geolambda/master/README.md", "_readme_localurl": "developmentseed~geolambda~README.md", @@ -50994,9 +70844,17 @@ "description": null, "_repopath": "venth/aws-adfs", "_reponame": "aws-adfs", - "_stars": 277, - "_forks": 91, + "_stars": 280, + "_forks": 92, "_watches": 11, + "_language": "Python", + "_homepage": "", + "_description": "aws-adfs: Command line tool to ease aws cli authentication against ADFS (multi factor authentication with active directory)", + "_organization": "venth", + "_updated_at": "2023-01-31T00:00:00.000Z", + "_created_at": "2016-06-25T00:00:00.000Z", + "_age_weeks": 347, + "_stars_per_week": 0.81, "_topics": [ "aws", "adfs", @@ -51006,37 +70864,47 @@ "multi-factor-authentication", "duo-security" ], - "_language": "Python", - "_homepage": "", - "_description": "aws-adfs: Command line tool to ease aws cli authentication against ADFS (multi factor authentication with active directory)", - "_organization": "venth", - "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2016-06-25T00:00:00.000Z", - "_age_weeks": 338, - "_stars_per_week": 0.82, "_pop_contributor_count": 46, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "KyleJamesWalker@zefr", + "b0rken", + "bghinkle", + "brandond@rancher", + "dependabot[bot]", + "mikereinhold", + "pdecat@claranet", + "pvbouwel", + "trav-c", + "venth" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "claranet", - "rancher" + "rancher", + "zefr" + ], + "_pop_contributor_orgs_raw": [ + "@claranet", + "@rancher", + "ZEFR" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.67, - "_pop_updated_issues_count": 47, - "_pop_closed_issues_count": 44, - "_pop_created_since_days": 79, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 29, - "_pop_recent_releases_estimated_tags": 18, - "_pop_recent_releases_adjusted_count": 29, - "_pop_issue_count": 47.0, - "_pop_comment_count": 37.0, + "_pop_commit_frequency": 2.04, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 81, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 20, + "_pop_recent_releases_estimated_tags": 17, + "_pop_recent_releases_adjusted_count": 20, + "_pop_issue_count": 14.0, + "_pop_comment_count": 9.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 5, - "_pop_score": 45.88, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 37.98, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/venth/aws-adfs/master/README.md", "_readme_localurl": "venth~aws-adfs~README.md", @@ -51051,200 +70919,73 @@ ] }, { - "index": 884, - "category": "time-series", - "githuburl": "https://github.com/pastas/pastas", + "index": 342, + "category": "term", + "githuburl": "https://github.com/rockhopper-technologies/enlighten", "featured": null, "links": null, "description": null, - "_repopath": "pastas/pastas", - "_reponame": "pastas", - "_stars": 276, - "_forks": 54, - "_watches": 15, + "_repopath": "rockhopper-technologies/enlighten", + "_reponame": "enlighten", + "_stars": 275, + "_forks": 19, + "_watches": 4, + "_language": "Python", + "_homepage": "https://python-enlighten.readthedocs.io", + "_description": "Enlighten Progress Bar for Python Console Apps", + "_organization": "rockhopper-technologies", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2017-09-22T00:00:00.000Z", + "_age_weeks": 282, + "_stars_per_week": 0.97, "_topics": [ - "hydrology", - "groundwater", - "python", - "timeseries", - "analysis", - "pastas" - ], - "_language": "Jupyter Notebook", - "_homepage": "http://pastas.readthedocs.io/", - "_description": "pastas: :spaghetti: Pastas is an open-source Python framework for the analysis of groundwater time series.", - "_organization": "pastas", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-08-02T00:00:00.000Z", - "_created_at": "2016-04-15T00:00:00.000Z", - "_age_weeks": 348, - "_stars_per_week": 0.79, - "_pop_contributor_count": 17, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "artesia-water", - "artesiawater", - "karl-franzensuniversityofgraz", - "tudelft" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.88, - "_pop_updated_issues_count": 12, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 81, - "_pop_updated_since_days": 5, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 12.0, - "_pop_comment_count": 30.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 6069, - "_pop_score": 50.62, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/pastas/pastas/master/README.rst", - "_readme_localurl": "pastas~pastas~README.rst", - "_requirements_filenames": [ - "setup.py" + "python" ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/pastas/pastas/master/setup.py" + "_last_commit_date": "2023-02-04T00:00:00.000Z", + "_pop_contributor_count": 5, + "_pop_contributor_logins": [ + "MicaelJarniac@micaeljarniac", + "avylove", + "bunjiboys", + "sourcery-ai[bot]" ], - "_requirements_localurls": [ - "pastas~pastas~setup.py" - ] - }, - { - "index": 727, - "category": "web", - "githuburl": "https://github.com/rstudio/py-shiny", - "featured": null, - "links": null, - "description": null, - "_repopath": "rstudio/py-shiny", - "_reponame": "py-shiny", - "_stars": 275, - "_forks": 14, - "_watches": 18, - "_topics": [], - "_language": "JavaScript", - "_homepage": "https://shiny.rstudio.com/py/", - "_description": "py-shiny: Shiny for Python", - "_organization": "rstudio", - "_updated_at": "2022-12-13T00:00:00.000Z", - "_last_commit_date": "2022-12-09T00:00:00.000Z", - "_created_at": "2021-07-27T00:00:00.000Z", - "_age_weeks": 72, - "_stars_per_week": 3.77, - "_pop_contributor_count": 7, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "freelance", - "rstudio" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 11.27, - "_pop_updated_issues_count": 54, - "_pop_closed_issues_count": 32, - "_pop_created_since_days": 17, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 8, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 54.0, - "_pop_comment_count": 57.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 2, - "_pop_score": 36.72, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/rstudio/py-shiny/master/README.md", - "_readme_localurl": "rstudio~py-shiny~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/rstudio/py-shiny/master/setup.py" - ], - "_requirements_localurls": [ - "rstudio~py-shiny~setup.py" - ] - }, - { - "index": 827, - "category": "gis", - "githuburl": "https://github.com/datasystemslab/geotorch", - "featured": null, - "links": null, - "description": null, - "_repopath": "datasystemslab/geotorch", - "_reponame": "GeoTorch", - "_stars": 272, - "_forks": 15, - "_watches": 8, - "_topics": [ - "classification-model", - "convlstm-pytorch", - "deep-learning", - "deep-neural-networks", - "deepsat", - "prediction-model", - "raster-data", - "satellite-images", - "segmentation-models", - "sequence-models", - "spatial-data-analysis", - "spatio-temporal-analysis", - "spatio-temporal-models", - "spatio-temporal-prediction", - "st-resnet", - "satellite-classification" + "micaeljarniac" ], - "_language": "Python", - "_homepage": "https://kanchanchy.github.io/geotorch/", - "_description": "GeoTorch: A Spatiotemporal Deep Learning Framework", - "_organization": "datasystemslab", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-11-27T00:00:00.000Z", - "_created_at": "2022-05-23T00:00:00.000Z", - "_age_weeks": 30, - "_stars_per_week": 9.07, - "_pop_contributor_count": 4, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "amberit", - "wherobots" + "_pop_contributor_orgs_raw": [ + "Micael Jarniac" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.96, - "_pop_updated_issues_count": 5, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 7, + "_pop_commit_frequency": 0.73, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 66, "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 6.0, - "_pop_comment_count": 9.0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 3.0, + "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 2, - "_pop_score": 23.14, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/datasystemslab/geotorch/master/README.md", - "_readme_localurl": "datasystemslab~geotorch~README.md", + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 25.62, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/rockhopper-technologies/enlighten/master/README.rst", + "_readme_localurl": "rockhopper-technologies~enlighten~README.rst", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/datasystemslab/geotorch/master/setup.py" + "https://raw.githubusercontent.com/rockhopper-technologies/enlighten/master/requirements.txt", + "https://raw.githubusercontent.com/rockhopper-technologies/enlighten/master/setup.py" ], "_requirements_localurls": [ - "datasystemslab~geotorch~setup.py" + "rockhopper-technologies~enlighten~requirements.txt", + "rockhopper-technologies~enlighten~setup.py" ] }, { @@ -51256,43 +70997,65 @@ "description": null, "_repopath": "mgedmin/check-manifest", "_reponame": "check-manifest", - "_stars": 268, + "_stars": 274, "_forks": 37, "_watches": 7, - "_topics": [], "_language": "Python", "_homepage": "https://pypi.org/p/check-manifest", "_description": "check-manifest: Tool to check the completeness of MANIFEST.in for Python packages", "_organization": "mgedmin", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-12-11T00:00:00.000Z", + "_updated_at": "2023-02-06T00:00:00.000Z", "_created_at": "2013-03-05T00:00:00.000Z", - "_age_weeks": 510, - "_stars_per_week": 0.52, + "_age_weeks": 520, + "_stars_per_week": 0.53, + "_topics": [], + "_last_commit_date": "2022-12-11T00:00:00.000Z", "_pop_contributor_count": 22, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "GhostofGoes", + "brechtm@opqode", + "hugovk@nordsoftware", + "jdufresne@pioneervalleybooks", + "jwilk", + "mauritsvanrees@zestsoftware", + "mgedmin@programmersofvilnius", + "myint", + "phijor", + "tobiasraabe@quantilope" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "nordsoftware", + "opqode", "pioneervalleybooks", "programmersofvilnius", + "quantilope", "zestsoftware" ], + "_pop_contributor_orgs_raw": [ + "@opqode ", + "@quantilope", + "@zestsoftware ", + "Nord Software", + "Pioneer Valley Books", + "Programmers of Vilnius" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.6, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 119, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.58, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 121, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 6, "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 4.0, - "_pop_comment_count": 8.0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 789, - "_pop_score": 51.42, + "_pop_dependents_count": 0, + "_pop_score": 37.71, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/mgedmin/check-manifest/master/README.rst", "_readme_localurl": "mgedmin~check-manifest~README.rst", @@ -51306,62 +71069,6 @@ "mgedmin~check-manifest~setup.py" ] }, - { - "index": 852, - "category": "web", - "githuburl": "https://github.com/conradbez/hstream", - "featured": null, - "links": null, - "description": null, - "_repopath": "conradbez/hstream", - "_reponame": "hstream", - "_stars": 264, - "_forks": 11, - "_watches": 6, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "hstream: Hyper Stream", - "_organization": "conradbez", - "_updated_at": "2022-12-12T00:00:00.000Z", - "_last_commit_date": "2022-11-24T00:00:00.000Z", - "_created_at": "2022-11-03T00:00:00.000Z", - "_age_weeks": 6, - "_stars_per_week": 40.17, - "_pop_contributor_count": 5, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "streamlit" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.79, - "_pop_updated_issues_count": 9, - "_pop_closed_issues_count": 9, - "_pop_created_since_days": 2, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 9.0, - "_pop_comment_count": 8.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 0, - "_pop_score": 16.24, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/conradbez/hstream/master/README.md", - "_readme_localurl": "conradbez~hstream~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/conradbez/hstream/master/setup.py" - ], - "_requirements_localurls": [ - "conradbez~hstream~setup.py" - ] - }, { "index": 210, "category": "util", @@ -51371,9 +71078,17 @@ "description": null, "_repopath": "tiangolo/poetry-version-plugin", "_reponame": "poetry-version-plugin", - "_stars": 263, + "_stars": 274, "_forks": 24, "_watches": 5, + "_language": "Python", + "_homepage": "", + "_description": "poetry-version-plugin: Poetry plugin for dynamically extracting the package version from a __version__ variable or a Git tag.", + "_organization": "tiangolo", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2021-05-27T00:00:00.000Z", + "_age_weeks": 90, + "_stars_per_week": 3.02, "_topics": [ "python-poetry", "packaging", @@ -51382,27 +71097,26 @@ "pypi", "packaging-for-pypi" ], - "_language": "Python", - "_homepage": "", - "_description": "poetry-version-plugin: Poetry plugin for dynamically extracting the package version from a __version__ variable or a Git tag.", - "_organization": "tiangolo", - "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2021-05-28T00:00:00.000Z", - "_created_at": "2021-05-27T00:00:00.000Z", - "_age_weeks": 81, - "_stars_per_week": 3.22, "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "Gl0deanR@belike", + "tiangolo" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "belike" ], + "_pop_contributor_orgs_raw": [ + "beLIKE" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 1, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 19, - "_pop_updated_since_days": 19, + "_pop_created_since_days": 21, + "_pop_updated_since_days": 21, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, @@ -51422,7 +71136,164 @@ "https://raw.githubusercontent.com/tiangolo/poetry-version-plugin/master/pyproject.toml" ], "_requirements_localurls": [ - "tiangolo~poetry-version-plugin~pyproject.toml" + "tiangolo~poetry-version-plugin~pyproject.toml" + ] + }, + { + "index": 385, + "category": "nlp", + "githuburl": "https://github.com/kootenpv/contractions", + "featured": null, + "links": null, + "description": null, + "_repopath": "kootenpv/contractions", + "_reponame": "contractions", + "_stars": 272, + "_forks": 35, + "_watches": 7, + "_language": "Python", + "_homepage": "", + "_description": "contractions: Fixes contractions such as `you're` to `you are`", + "_organization": "kootenpv", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2016-12-25T00:00:00.000Z", + "_age_weeks": 321, + "_stars_per_week": 0.85, + "_topics": [], + "_last_commit_date": "2022-11-15T00:00:00.000Z", + "_pop_contributor_count": 14, + "_pop_contributor_logins": [ + "Kev-Y-Huang", + "Wan-Yifei", + "christian-storm@independentresearch", + "daikikatsuragawa@japan", + "harshasomisetty", + "kootenpv@vankootenaisolutions/ex-mgnr", + "maximkir-fl", + "misha345a", + "nickumia", + "sajal2692@unscramblinc" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "independentresearch", + "japan", + "unscramblinc", + "vankootenaisolutions/ex-mgnr" + ], + "_pop_contributor_orgs_raw": [ + "Independent Research", + "Japan", + "Unscrambl Inc", + "Van Kooten AI Solutions / ex-mgnr" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 75, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 26.66, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/kootenpv/contractions/master/README.md", + "_readme_localurl": "kootenpv~contractions~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/kootenpv/contractions/master/requirements.txt", + "https://raw.githubusercontent.com/kootenpv/contractions/master/setup.py" + ], + "_requirements_localurls": [ + "kootenpv~contractions~requirements.txt", + "kootenpv~contractions~setup.py" + ] + }, + { + "index": 418, + "category": "pandas", + "githuburl": "https://github.com/zsailer/pandas_flavor", + "featured": null, + "links": null, + "description": null, + "_repopath": "zsailer/pandas_flavor", + "_reponame": "pandas_flavor", + "_stars": 272, + "_forks": 17, + "_watches": 11, + "_language": "Python", + "_homepage": "https://zsailer.github.io/software/pandas-flavor/", + "_description": "pandas_flavor: The easy way to write your own flavor of Pandas", + "_organization": "zsailer", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2018-01-25T00:00:00.000Z", + "_age_weeks": 264, + "_stars_per_week": 1.03, + "_topics": [ + "pandas" + ], + "_last_commit_date": "2023-02-03T00:00:00.000Z", + "_pop_contributor_count": 9, + "_pop_contributor_logins": [ + "Zsailer@apple", + "asmirnov69", + "ericmjl", + "eyaltrabelsi@bigabid", + "haimjether", + "musicinmybrain", + "partev", + "pre-commit-ci[bot]", + "toddrme2178" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "apple", + "bigabid" + ], + "_pop_contributor_orgs_raw": [ + "Apple", + "Bigabid" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.06, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 62, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 6.0, + "_pop_comment_count": 7.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 28.33, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/zsailer/pandas_flavor/master/README.md", + "_readme_localurl": "zsailer~pandas_flavor~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/zsailer/pandas_flavor/master/setup.py", + "https://raw.githubusercontent.com/zsailer/pandas_flavor/master/pyproject.toml" + ], + "_requirements_localurls": [ + "zsailer~pandas_flavor~setup.py", + "zsailer~pandas_flavor~pyproject.toml" ] }, { @@ -51434,45 +71305,61 @@ "description": null, "_repopath": "ethereum/eth-utils", "_reponame": "eth-utils", - "_stars": 263, - "_forks": 140, + "_stars": 270, + "_forks": 141, "_watches": 18, - "_topics": [ - "ethereum", - "python", - "utility-library" - ], "_language": "Python", "_homepage": "https://eth-utils.readthedocs.io/en/latest/", "_description": "eth-utils: Utility functions for working with ethereum related codebases.", "_organization": "ethereum", - "_updated_at": "2022-12-03T00:00:00.000Z", - "_last_commit_date": "2022-11-17T00:00:00.000Z", + "_updated_at": "2023-02-13T00:00:00.000Z", "_created_at": "2017-02-07T00:00:00.000Z", - "_age_weeks": 305, + "_age_weeks": 315, "_stars_per_week": 0.86, + "_topics": [ + "ethereum", + "python", + "utility-library" + ], + "_last_commit_date": "2022-11-17T00:00:00.000Z", "_pop_contributor_count": 31, + "_pop_contributor_logins": [ + "Alegzander", + "Christofon", + "carver@ethereumfoundation", + "cburgdorf", + "davesque", + "gsalgado", + "kclowes", + "njgheorghita@ethereum", + "pipermerriam@ethereumfoundation", + "reiven" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "ethereum", "ethereumfoundation" ], + "_pop_contributor_orgs_raw": [ + "@ethereum ", + "Ethereum Foundation" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.31, - "_pop_updated_issues_count": 12, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 71, - "_pop_updated_since_days": 1, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 74, + "_pop_updated_since_days": 3, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 11, - "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 12.0, - "_pop_comment_count": 15.0, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 10, + "_pop_issue_count": 4.0, + "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 92, - "_pop_score": 43.01, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 0, + "_pop_score": 29.54, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ethereum/eth-utils/master/README.md", "_readme_localurl": "ethereum~eth-utils~README.md", @@ -51490,124 +71377,159 @@ ] }, { - "index": 342, - "category": "term", - "githuburl": "https://github.com/rockhopper-technologies/enlighten", + "index": 852, + "category": "web", + "githuburl": "https://github.com/conradbez/hstream", "featured": null, "links": null, "description": null, - "_repopath": "rockhopper-technologies/enlighten", - "_reponame": "enlighten", - "_stars": 263, - "_forks": 19, - "_watches": 4, - "_topics": [ - "python" - ], + "_repopath": "conradbez/hstream", + "_reponame": "hstream", + "_stars": 267, + "_forks": 11, + "_watches": 6, "_language": "Python", - "_homepage": "https://python-enlighten.readthedocs.io", - "_description": "Enlighten Progress Bar for Python Console Apps", - "_organization": "rockhopper-technologies", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2017-09-22T00:00:00.000Z", - "_age_weeks": 273, - "_stars_per_week": 0.96, + "_homepage": null, + "_description": "hstream: Hyper Stream", + "_organization": "conradbez", + "_updated_at": "2023-01-29T00:00:00.000Z", + "_created_at": "2022-11-03T00:00:00.000Z", + "_age_weeks": 15, + "_stars_per_week": 16.84, + "_topics": [], + "_last_commit_date": "2023-02-10T00:00:00.000Z", "_pop_contributor_count": 5, + "_pop_contributor_logins": [ + "blackary@streamlit", + "charliec443", + "collingreen", + "conradbez", + "thewchan" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "micaeljarniac" + "streamlit" + ], + "_pop_contributor_orgs_raw": [ + "Streamlit" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.54, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 64, + "_pop_commit_frequency": 0.81, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 4, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 4.0, - "_pop_comment_count": 15.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.8, - "_pop_dependents_count": 5, - "_pop_score": 33.22, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/rockhopper-technologies/enlighten/master/README.rst", - "_readme_localurl": "rockhopper-technologies~enlighten~README.rst", + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 13.31, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/conradbez/hstream/master/README.md", + "_readme_localurl": "conradbez~hstream~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/rockhopper-technologies/enlighten/master/requirements.txt", - "https://raw.githubusercontent.com/rockhopper-technologies/enlighten/master/setup.py" + "https://raw.githubusercontent.com/conradbez/hstream/master/setup.py" ], "_requirements_localurls": [ - "rockhopper-technologies~enlighten~requirements.txt", - "rockhopper-technologies~enlighten~setup.py" + "conradbez~hstream~setup.py" ] }, { - "index": 385, - "category": "nlp", - "githuburl": "https://github.com/kootenpv/contractions", + "index": 714, + "category": "ml-ops", + "githuburl": "https://github.com/unionai-oss/unionml", "featured": null, "links": null, "description": null, - "_repopath": "kootenpv/contractions", - "_reponame": "contractions", + "_repopath": "unionai-oss/unionml", + "_reponame": "unionml", "_stars": 263, - "_forks": 35, - "_watches": 7, - "_topics": [], + "_forks": 38, + "_watches": 4, "_language": "Python", - "_homepage": null, - "_description": "contractions: Fixes contractions such as `you're` to you `are`", - "_organization": "kootenpv", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-15T00:00:00.000Z", - "_created_at": "2016-12-25T00:00:00.000Z", - "_age_weeks": 312, - "_stars_per_week": 0.84, - "_pop_contributor_count": 14, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_homepage": "https://www.union.ai/unionml", + "_description": "UnionML: the easiest way to build and deploy machine learning microservices", + "_organization": "unionai-oss", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2021-11-17T00:00:00.000Z", + "_age_weeks": 66, + "_stars_per_week": 3.98, + "_topics": [ + "machine-learning", + "mlops", + "hacktoberfest" + ], + "_last_commit_date": "2022-12-21T00:00:00.000Z", + "_pop_contributor_count": 15, + "_pop_contributor_logins": [ + "MrKrishnaAgarwal@letsopen-source", + "Smartmind12", + "SmritiSatyanV", + "bilal-aamer", + "cosmicBboy@unionai", + "eapolinario", + "evalsocket@unionai", + "jonwiggins@chartbeatillinoishackny", + "sugatoray@universityofwisconsin-milwaukee", + "zevisert@revelasystems" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "japan", - "vankootenaisolutions/mgnr.io" + "chartbeatillinoishackny", + "letsopen-source", + "revelasystems", + "unionai", + "universityofwisconsin-milwaukee" + ], + "_pop_contributor_orgs_raw": [ + "@Chartbeat @Illinois @hackny", + "@LetsOpen-Source", + "@unionai", + "Revela Systems", + "University of Wisconsin - Milwaukee", + "unionai" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.23, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 73, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 2.0, - "_pop_comment_count": 1.0, + "_pop_commit_frequency": 4.5, + "_pop_updated_issues_count": 23, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 15, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 18, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 18, + "_pop_issue_count": 23.0, + "_pop_comment_count": 10.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 16, - "_pop_score": 29.64, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 33.45, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/kootenpv/contractions/master/README.md", - "_readme_localurl": "kootenpv~contractions~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/unionai-oss/unionml/master/README.md", + "_readme_localurl": "unionai-oss~unionml~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/kootenpv/contractions/master/requirements.txt", - "https://raw.githubusercontent.com/kootenpv/contractions/master/setup.py" + "https://raw.githubusercontent.com/unionai-oss/unionml/master/requirements.txt", + "https://raw.githubusercontent.com/unionai-oss/unionml/master/setup.py", + "https://raw.githubusercontent.com/unionai-oss/unionml/master/pyproject.toml" ], "_requirements_localurls": [ - "kootenpv~contractions~requirements.txt", - "kootenpv~contractions~setup.py" + "unionai-oss~unionml~requirements.txt", + "unionai-oss~unionml~setup.py", + "unionai-oss~unionml~pyproject.toml" ] }, { @@ -51619,40 +71541,59 @@ "description": null, "_repopath": "facebookresearch/mephisto", "_reponame": "Mephisto", - "_stars": 258, - "_forks": 57, - "_watches": 14, - "_topics": [], + "_stars": 263, + "_forks": 59, + "_watches": 15, "_language": "JavaScript", "_homepage": "https://mephisto.ai/", "_description": "Mephisto: A suite of tools for managing crowdsourcing tasks from the inception through to data packaging for research use. ", "_organization": "facebookresearch", - "_updated_at": "2022-12-12T00:00:00.000Z", - "_last_commit_date": "2022-12-17T00:00:00.000Z", + "_updated_at": "2023-02-19T00:00:00.000Z", "_created_at": "2019-08-19T00:00:00.000Z", - "_age_weeks": 174, - "_stars_per_week": 1.48, - "_pop_contributor_count": 33, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 183, + "_stars_per_week": 1.43, + "_topics": [], + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 36, + "_pop_contributor_logins": [ + "EricMichaelSmith", + "Etesam913@spectatorpublishingcorrelation-one", + "JackUrb", + "bottler", + "dependabot[bot]", + "jxmsML@facebookresearch", + "mojtaba-komeili@facebookresearch", + "pringshia", + "salelkafrawy", + "sghmk12@federato" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "facebookresearch", + "federato", "spectatorpublishingcorrelation-one" ], + "_pop_contributor_orgs_raw": [ + "@facebookresearch ", + "@spectatorpublishing @correlation-one ", + "Federato" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 16.15, - "_pop_updated_issues_count": 76, - "_pop_closed_issues_count": 64, - "_pop_created_since_days": 41, + "_pop_commit_frequency": 14.0, + "_pop_updated_issues_count": 81, + "_pop_closed_issues_count": 71, + "_pop_created_since_days": 43, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, + "_pop_recent_releases_count": 5, "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 76.0, - "_pop_comment_count": 85.0, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 81.0, + "_pop_comment_count": 68.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.1, - "_pop_dependents_count": 80, - "_pop_score": 47.53, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 42.36, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/facebookresearch/mephisto/master/README.md", "_readme_localurl": "facebookresearch~mephisto~README.md", @@ -51666,6 +71607,165 @@ "facebookresearch~mephisto~pyproject.toml" ] }, + { + "index": 670, + "category": "gis", + "githuburl": "https://github.com/cgal/cgal-swig-bindings", + "featured": null, + "links": null, + "description": null, + "_repopath": "cgal/cgal-swig-bindings", + "_reponame": "cgal-swig-bindings", + "_stars": 261, + "_forks": 80, + "_watches": 26, + "_language": "C++", + "_homepage": "", + "_description": "cgal-swig-bindings: CGAL bindings using SWIG", + "_organization": "cgal", + "_updated_at": "2023-02-09T00:00:00.000Z", + "_created_at": "2015-03-14T00:00:00.000Z", + "_age_weeks": 414, + "_stars_per_week": 0.63, + "_topics": [], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 21, + "_pop_contributor_logins": [ + "WillieMaddox", + "afabri@geometryfactory", + "dependabot[bot]", + "lrineau@geometryfactory", + "maxGimeno", + "sgiraudot", + "sloriot@geometryfactory", + "snoyer", + "thopiekar", + "xantares" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "geometryfactory" + ], + "_pop_contributor_orgs_raw": [ + "GeometryFactory" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.44, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 97, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 6.0, + "_pop_comment_count": 12.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 34.88, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/cgal/cgal-swig-bindings/master/README.md", + "_readme_localurl": "cgal~cgal-swig-bindings~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/cgal/cgal-swig-bindings/master/setup.py" + ], + "_requirements_localurls": [ + "cgal~cgal-swig-bindings~setup.py" + ] + }, + { + "index": 737, + "category": "ml-ops", + "githuburl": "https://github.com/skops-dev/skops", + "featured": null, + "links": null, + "description": null, + "_repopath": "skops-dev/skops", + "_reponame": "skops", + "_stars": 260, + "_forks": 42, + "_watches": 7, + "_language": "Python", + "_homepage": "https://skops.readthedocs.io/en/stable/", + "_description": "skops is a Python library helping you share your scikit-learn based models and put them in production", + "_organization": "skops-dev", + "_updated_at": "2023-02-16T00:00:00.000Z", + "_created_at": "2022-05-04T00:00:00.000Z", + "_age_weeks": 42, + "_stars_per_week": 6.19, + "_topics": [ + "huggingface", + "machine-learning", + "mlops", + "scikit-learn", + "hacktoberfest" + ], + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 13, + "_pop_contributor_logins": [ + "BenjaminBossan", + "E-Aho@bumble-tech", + "EdAbati", + "adrinjalali@huggingface", + "anferico@pischool,translated", + "ayyucedemirbas", + "dependabot[bot]", + "eltociear@bandism", + "merveenoyan@huggingface", + "omar-araboghli@tib" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "bandism", + "bumble-tech", + "huggingface", + "pischool,translated", + "tib" + ], + "_pop_contributor_orgs_raw": [ + "@PiSchool, @Translated", + "@bandism ", + "@bumble-tech", + "@huggingface ", + "TIB" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.98, + "_pop_updated_issues_count": 117, + "_pop_closed_issues_count": 81, + "_pop_created_since_days": 10, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 117.0, + "_pop_comment_count": 377.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.2, + "_pop_dependents_count": 0, + "_pop_score": 40.22, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/skops-dev/skops/master/README.rst", + "_readme_localurl": "skops-dev~skops~README.rst", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/skops-dev/skops/master/setup.py", + "https://raw.githubusercontent.com/skops-dev/skops/master/pyproject.toml" + ], + "_requirements_localurls": [ + "skops-dev~skops~setup.py", + "skops-dev~skops~pyproject.toml" + ] + }, { "index": 303, "category": "util", @@ -51675,31 +71775,37 @@ "description": null, "_repopath": "airbnb/ottr", "_reponame": "ottr", - "_stars": 257, - "_forks": 27, + "_stars": 259, + "_forks": 28, "_watches": 8, - "_topics": [], "_language": "Python", "_homepage": "", "_description": "ottr: Serverless Public Key Infrastructure Framework", "_organization": "airbnb", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-01-04T00:00:00.000Z", + "_updated_at": "2023-01-08T00:00:00.000Z", "_created_at": "2021-08-27T00:00:00.000Z", - "_age_weeks": 68, - "_stars_per_week": 3.76, + "_age_weeks": 77, + "_stars_per_week": 3.33, + "_topics": [], + "_last_commit_date": "2022-01-04T00:00:00.000Z", "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "yangkenneth@coinbase" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "coinbase" ], + "_pop_contributor_orgs_raw": [ + "@coinbase" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.02, + "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 16, - "_pop_updated_since_days": 12, + "_pop_created_since_days": 18, + "_pop_updated_since_days": 14, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -51708,7 +71814,7 @@ "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 7.13, + "_pop_score": 7.02, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/airbnb/ottr/master/README.md", "_readme_localurl": "airbnb~ottr~README.md", @@ -51723,181 +71829,243 @@ ] }, { - "index": 418, - "category": "pandas", - "githuburl": "https://github.com/zsailer/pandas_flavor", + "index": 454, + "category": "gis", + "githuburl": "https://github.com/openaddresses/pyesridump", "featured": null, "links": null, "description": null, - "_repopath": "zsailer/pandas_flavor", - "_reponame": "pandas_flavor", - "_stars": 256, - "_forks": 17, - "_watches": 6, - "_topics": [ - "pandas" - ], + "_repopath": "openaddresses/pyesridump", + "_reponame": "pyesridump", + "_stars": 258, + "_forks": 60, + "_watches": 16, "_language": "Python", - "_homepage": "https://zsailer.github.io/software/pandas-flavor/", - "_description": "pandas_flavor: The easy way to write your own flavor of Pandas", - "_organization": "zsailer", - "_updated_at": "2022-12-12T00:00:00.000Z", - "_last_commit_date": "2022-04-17T00:00:00.000Z", - "_created_at": "2018-01-25T00:00:00.000Z", - "_age_weeks": 255, - "_stars_per_week": 1.0, - "_pop_contributor_count": 5, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "apple", - "bigabid" + "_homepage": null, + "_description": "pyesridump: Scrapes an ESRI MapServer REST endpoint to spit out more generally-usable geodata.", + "_organization": "openaddresses", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2013-12-06T00:00:00.000Z", + "_age_weeks": 480, + "_stars_per_week": 0.54, + "_topics": [], + "_last_commit_date": "2023-02-01T00:00:00.000Z", + "_pop_contributor_count": 12, + "_pop_contributor_logins": [ + "ahmednoureldeen@cartologic", + "albarrentine", + "andrewharvey@alantgeo", + "candrsn@nlt", + "dionysio@bringg", + "fgregg@datamade,partner", + "hancush@datamade", + "iandees", + "ingalls@openaddressesdevelopmentseed", + "ramSeraph" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "alantgeo", + "bringg", + "cartologic", + "datamade", + "datamade,partner", + "nlt", + "openaddressesdevelopmentseed" + ], + "_pop_contributor_orgs_raw": [ + "@bringg", + "@cartologic", + "@datamade", + "@datamade, Partner", + "@openaddresses @developmentseed", + "Alantgeo", + "NLT" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.38, - "_pop_updated_issues_count": 2, + "_pop_commit_frequency": 0.4, + "_pop_updated_issues_count": 4, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 60, - "_pop_updated_since_days": 8, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 2.0, - "_pop_comment_count": 1.0, + "_pop_created_since_days": 112, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 4.0, + "_pop_comment_count": 3.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, + "_pop_comment_frequency": 0.8, "_pop_dependents_count": 0, - "_pop_score": 18.06, + "_pop_score": 33.32, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/zsailer/pandas_flavor/master/README.md", - "_readme_localurl": "zsailer~pandas_flavor~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/openaddresses/pyesridump/master/README.md", + "_readme_localurl": "openaddresses~pyesridump~README.md", "_requirements_filenames": [ "setup.py", - "pyproject.toml" + "Pipfile" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/zsailer/pandas_flavor/master/setup.py", - "https://raw.githubusercontent.com/zsailer/pandas_flavor/master/pyproject.toml" + "https://raw.githubusercontent.com/openaddresses/pyesridump/master/setup.py", + "https://raw.githubusercontent.com/openaddresses/pyesridump/master/Pipfile" ], "_requirements_localurls": [ - "zsailer~pandas_flavor~setup.py", - "zsailer~pandas_flavor~pyproject.toml" + "openaddresses~pyesridump~setup.py", + "openaddresses~pyesridump~Pipfile" ] }, { - "index": 670, - "category": "gis", - "githuburl": "https://github.com/cgal/cgal-swig-bindings", + "index": 826, + "category": "diffusion", + "githuburl": "https://github.com/thereforegames/unprompted", "featured": null, "links": null, "description": null, - "_repopath": "cgal/cgal-swig-bindings", - "_reponame": "cgal-swig-bindings", - "_stars": 252, - "_forks": 78, - "_watches": 26, + "_repopath": "thereforegames/unprompted", + "_reponame": "unprompted", + "_stars": 258, + "_forks": 30, + "_watches": 10, + "_language": "Python", + "_homepage": null, + "_description": "unprompted: Text generator written for Stable Diffusion workflows.", + "_organization": "thereforegames", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-10-31T00:00:00.000Z", + "_age_weeks": 16, + "_stars_per_week": 15.84, "_topics": [], - "_language": "C++", - "_homepage": "", - "_description": "cgal-swig-bindings: CGAL bindings using SWIG", - "_organization": "cgal", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-10-19T00:00:00.000Z", - "_created_at": "2015-03-14T00:00:00.000Z", - "_age_weeks": 405, - "_stars_per_week": 0.62, - "_pop_contributor_count": 21, + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "MaikoTan@awesomehamster", + "ThereforeGames", + "WeberSamuel", + "kylechallis" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "geometryfactory" + "awesomehamster" + ], + "_pop_contributor_orgs_raw": [ + "@AwesomeHamster" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.4, - "_pop_updated_issues_count": 12, - "_pop_closed_issues_count": 7, - "_pop_created_since_days": 95, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 3, + "_pop_commit_frequency": 2.42, + "_pop_updated_issues_count": 48, + "_pop_closed_issues_count": 28, + "_pop_created_since_days": 4, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 12.0, - "_pop_comment_count": 8.0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 48.0, + "_pop_comment_count": 137.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.7, - "_pop_dependents_count": 4, - "_pop_score": 33.34, + "_pop_comment_frequency": 2.9, + "_pop_dependents_count": 0, + "_pop_score": 24.68, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/cgal/cgal-swig-bindings/master/README.md", - "_readme_localurl": "cgal~cgal-swig-bindings~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/thereforegames/unprompted/master/README.md", + "_readme_localurl": "thereforegames~unprompted~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/cgal/cgal-swig-bindings/master/setup.py" + "https://raw.githubusercontent.com/thereforegames/unprompted/master/requirements.txt" ], "_requirements_localurls": [ - "cgal~cgal-swig-bindings~setup.py" + "thereforegames~unprompted~requirements.txt" ] }, { - "index": 693, - "category": "data", - "githuburl": "https://github.com/paperswithcode/sota-extractor", + "index": 480, + "category": "pandas", + "githuburl": "https://github.com/holoviz/spatialpandas", "featured": null, "links": null, "description": null, - "_repopath": "paperswithcode/sota-extractor", - "_reponame": "sota-extractor", - "_stars": 251, - "_forks": 27, - "_watches": 13, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "sota-extractor: The SOTA extractor pipeline", - "_organization": "paperswithcode", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-03-09T00:00:00.000Z", - "_created_at": "2018-12-07T00:00:00.000Z", - "_age_weeks": 210, - "_stars_per_week": 1.19, - "_pop_contributor_count": 8, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_repopath": "holoviz/spatialpandas", + "_reponame": "spatialpandas", + "_stars": 255, + "_forks": 22, + "_watches": 22, + "_language": "Python", + "_homepage": "", + "_description": "spatialpandas: Pandas extension arrays for spatial/geometric operations", + "_organization": "holoviz", + "_updated_at": "2023-02-13T00:00:00.000Z", + "_created_at": "2019-10-28T00:00:00.000Z", + "_age_weeks": 173, + "_stars_per_week": 1.47, + "_topics": [ + "holoviz", + "spatialpandas", + "pandas", + "geopandas", + "geographic-data" + ], + "_last_commit_date": "2023-01-09T00:00:00.000Z", + "_pop_contributor_count": 9, + "_pop_contributor_logins": [ + "Hoxbro", + "brl0@datum-tech", + "iameskild@quansight", + "ianthomas23@anaconda", + "jbednar@anaconda", + "jonmmease@hextechnologies", + "jrbourbeau@coiled", + "maximlt@anaconda", + "philippjfr@anaconda" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "https://alefnula.io", - "metaai" + "anaconda", + "coiled", + "datum-tech", + "hextechnologies", + "quansight" + ], + "_pop_contributor_orgs_raw": [ + "@Datum-Tech ", + "@coiled ", + "@quansight", + "Anaconda", + "Anaconda Inc.", + "Anaconda, Inc.", + "Hex Technologies" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.04, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 49, - "_pop_updated_since_days": 9, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 2.0, - "_pop_comment_count": 1.0, + "_pop_commit_frequency": 0.35, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 40, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 11.0, + "_pop_comment_count": 5.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.5, "_pop_dependents_count": 0, - "_pop_score": 21.31, + "_pop_score": 30.42, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/README.md", - "_readme_localurl": "paperswithcode~sota-extractor~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/holoviz/spatialpandas/master/README.md", + "_readme_localurl": "holoviz~spatialpandas~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/requirements.txt", - "https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/setup.py" + "https://raw.githubusercontent.com/holoviz/spatialpandas/master/setup.py", + "https://raw.githubusercontent.com/holoviz/spatialpandas/master/pyproject.toml" ], "_requirements_localurls": [ - "paperswithcode~sota-extractor~requirements.txt", - "paperswithcode~sota-extractor~setup.py" + "holoviz~spatialpandas~setup.py", + "holoviz~spatialpandas~pyproject.toml" ] }, { @@ -51909,9 +72077,17 @@ "description": null, "_repopath": "merantix-momentum/squirrel-core", "_reponame": "squirrel-core", - "_stars": 249, + "_stars": 254, "_forks": 6, - "_watches": 14, + "_watches": 13, + "_language": "Python", + "_homepage": "https://squirrel-core.readthedocs.io/", + "_description": "squirrel-core: A Python library that enables ML teams to share, load, and transform data in a collaborative, flexible, and efficient way :chestnut:", + "_organization": "merantix-momentum", + "_updated_at": "2023-02-16T00:00:00.000Z", + "_created_at": "2022-02-11T00:00:00.000Z", + "_age_weeks": 53, + "_stars_per_week": 4.73, "_topics": [ "python", "ml", @@ -51934,38 +72110,51 @@ "data-ingestion", "cloud-computing" ], - "_language": "Python", - "_homepage": "https://squirrel-core.readthedocs.io/", - "_description": "squirrel-core: A Python library that enables ML teams to share, load, and transform data in a collaborative, flexible, and efficient way :chestnut:", - "_organization": "merantix-momentum", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-11-17T00:00:00.000Z", - "_created_at": "2022-02-11T00:00:00.000Z", - "_age_weeks": 44, - "_stars_per_week": 5.6, + "_last_commit_date": "2023-02-14T00:00:00.000Z", "_pop_contributor_count": 12, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "AdemFr", + "AlirezaSohofi@merantixlabs", + "AlpAribal", + "MaxSchambach@merantixmomentum", + "ThomasWollmann@merantix&pw-solutions", + "TiansuYu@idealointernetgmbh", + "axkoenig@merantixmomentum", + "kai-tub", + "pzdkn@merantix-momentum", + "winfried-ripken" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "idealointernetgmbh", "merantix&pw-solutions", - "merantixlabs" + "merantix-momentum", + "merantixlabs", + "merantixmomentum" + ], + "_pop_contributor_orgs_raw": [ + "@merantix-momentum ", + "Idealo Internet GmbH", + "Merantix & PW-Solutions", + "Merantix Labs", + "Merantix Momentum" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.87, - "_pop_updated_issues_count": 17, - "_pop_closed_issues_count": 14, - "_pop_created_since_days": 10, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 12, - "_pop_recent_releases_estimated_tags": 15, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 17.0, - "_pop_comment_count": 21.0, + "_pop_commit_frequency": 2.0, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 12, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 14, + "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_adjusted_count": 14, + "_pop_issue_count": 14.0, + "_pop_comment_count": 11.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, + "_pop_comment_frequency": 0.8, "_pop_dependents_count": 0, - "_pop_score": 31.65, + "_pop_score": 34.89, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/merantix-momentum/squirrel-core/master/README.md", "_readme_localurl": "merantix-momentum~squirrel-core~README.md", @@ -51986,115 +72175,144 @@ ] }, { - "index": 374, + "index": 693, "category": "data", - "githuburl": "https://github.com/ndrplz/google-drive-downloader", + "githuburl": "https://github.com/paperswithcode/sota-extractor", "featured": null, "links": null, "description": null, - "_repopath": "ndrplz/google-drive-downloader", - "_reponame": "google-drive-downloader", - "_stars": 249, - "_forks": 63, - "_watches": 11, - "_topics": [], + "_repopath": "paperswithcode/sota-extractor", + "_reponame": "sota-extractor", + "_stars": 252, + "_forks": 28, + "_watches": 13, "_language": "Python", "_homepage": null, - "_description": "google-drive-downloader: Minimal class to download shared files from Google Drive.", - "_organization": "ndrplz", - "_updated_at": "2022-11-15T00:00:00.000Z", - "_last_commit_date": "2019-02-09T00:00:00.000Z", - "_created_at": "2017-12-08T00:00:00.000Z", - "_age_weeks": 262, - "_stars_per_week": 0.95, - "_pop_contributor_count": 4, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_description": "sota-extractor: The SOTA extractor pipeline", + "_organization": "paperswithcode", + "_updated_at": "2022-12-26T00:00:00.000Z", + "_created_at": "2018-12-07T00:00:00.000Z", + "_age_weeks": 219, + "_stars_per_week": 1.15, + "_topics": [], + "_last_commit_date": "2022-03-09T00:00:00.000Z", + "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "RJT1990", + "alefnula@https://alefnula.io", + "gcucurull", + "mkardas", + "omarsar@dair.ai", + "rstojnic", + "thatch", + "zeke@replicate" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "nomitri-perceptionaiformobile" + "dair.ai", + "https://alefnula.io", + "replicate" + ], + "_pop_contributor_orgs_raw": [ + "@replicate ", + "DAIR.AI", + "https://alefnula.io" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 61, - "_pop_updated_since_days": 47, + "_pop_commit_frequency": 0.02, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 51, + "_pop_updated_since_days": 12, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 4.0, - "_pop_comment_count": 1.0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.2, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 10.84, + "_pop_score": 19.18, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/ndrplz/google-drive-downloader/master/README.md", - "_readme_localurl": "ndrplz~google-drive-downloader~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/README.md", + "_readme_localurl": "paperswithcode~sota-extractor~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/ndrplz/google-drive-downloader/master/setup.py" + "https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/requirements.txt", + "https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/setup.py" ], "_requirements_localurls": [ - "ndrplz~google-drive-downloader~setup.py" + "paperswithcode~sota-extractor~requirements.txt", + "paperswithcode~sota-extractor~setup.py" ] }, { - "index": 300, - "category": "nlp", - "githuburl": "https://github.com/openai/grade-school-math", + "index": 374, + "category": "data", + "githuburl": "https://github.com/ndrplz/google-drive-downloader", "featured": null, "links": null, "description": null, - "_repopath": "openai/grade-school-math", - "_reponame": "grade-school-math", - "_stars": 248, - "_forks": 47, - "_watches": 7, - "_topics": [], + "_repopath": "ndrplz/google-drive-downloader", + "_reponame": "google-drive-downloader", + "_stars": 252, + "_forks": 62, + "_watches": 11, "_language": "Python", "_homepage": null, - "_description": "openai/grade-school-math", - "_organization": "openai", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2021-11-19T00:00:00.000Z", - "_created_at": "2021-10-20T00:00:00.000Z", - "_age_weeks": 60, - "_stars_per_week": 4.08, - "_pop_contributor_count": 2, + "_description": "google-drive-downloader: Minimal class to download shared files from Google Drive.", + "_organization": "ndrplz", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-12-08T00:00:00.000Z", + "_age_weeks": 271, + "_stars_per_week": 0.93, + "_topics": [], + "_last_commit_date": "2019-02-09T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "DavideA", + "TheZoc", + "kant", + "ndrplz@nomitri-perceptionaiformobile" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "openai" + "nomitri-perceptionaiformobile" + ], + "_pop_contributor_orgs_raw": [ + "Nomitri - Perception AI for Mobile" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 1, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 14, - "_pop_updated_since_days": 13, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 63, + "_pop_updated_since_days": 49, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 1.0, - "_pop_comment_count": 0.0, + "_pop_issue_count": 5.0, + "_pop_comment_count": 5.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 2, - "_pop_score": 9.05, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 13.11, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/openai/grade-school-math/master/README.md", - "_readme_localurl": "openai~grade-school-math~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/ndrplz/google-drive-downloader/master/README.md", + "_readme_localurl": "ndrplz~google-drive-downloader~README.md", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/openai/grade-school-math/master/setup.py" + "https://raw.githubusercontent.com/ndrplz/google-drive-downloader/master/setup.py" ], "_requirements_localurls": [ - "openai~grade-school-math~setup.py" + "ndrplz~google-drive-downloader~setup.py" ] }, { @@ -52106,9 +72324,17 @@ "description": null, "_repopath": "rpgreen/apilogs", "_reponame": "apilogs", - "_stars": 247, + "_stars": 249, "_forks": 19, "_watches": 9, + "_language": "Python", + "_homepage": "", + "_description": "apilogs: Easy logging and debugging for Amazon API Gateway and AWS Lambda Serverless APIs", + "_organization": "rpgreen", + "_updated_at": "2023-02-10T00:00:00.000Z", + "_created_at": "2016-09-07T00:00:00.000Z", + "_age_weeks": 337, + "_stars_per_week": 0.74, "_topics": [ "api", "gateway", @@ -52120,28 +72346,42 @@ "aws-lambda", "aws-apigateway" ], - "_language": "Python", - "_homepage": "", - "_description": "apilogs: Easy logging and debugging for Amazon API Gateway and AWS Lambda Serverless APIs", - "_organization": "rpgreen", - "_updated_at": "2022-10-23T00:00:00.000Z", "_last_commit_date": "2019-11-13T00:00:00.000Z", - "_created_at": "2016-09-07T00:00:00.000Z", - "_age_weeks": 327, - "_stars_per_week": 0.75, "_pop_contributor_count": 23, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "adamchainz@django,djangolondon", + "agonzalezro@auth0", + "alanc10n", + "angelabad", + "graingert", + "nathanleiby@engineeringstableauto", + "obestwalter@avira", + "philipn@encycla", + "rpgreen", + "vlcinsky" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "auth0", "avira", + "django,djangolondon", + "encycla", "engineeringstableauto" ], + "_pop_contributor_orgs_raw": [ + "@Auth0", + "@Avira", + "@django, @djangolondon", + "Encycla", + "Engineering @ Stable Auto" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 76, - "_pop_updated_since_days": 38, + "_pop_created_since_days": 79, + "_pop_updated_since_days": 40, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -52150,7 +72390,7 @@ "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 15.84, + "_pop_score": 19.21, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/rpgreen/apilogs/master/README.rst", "_readme_localurl": "rpgreen~apilogs~README.rst", @@ -52165,256 +72405,137 @@ ] }, { - "index": 714, - "category": "ml-ops", - "githuburl": "https://github.com/unionai-oss/unionml", + "index": 515, + "category": "data", + "githuburl": "https://github.com/jovianml/opendatasets", "featured": null, "links": null, "description": null, - "_repopath": "unionai-oss/unionml", - "_reponame": "unionml", - "_stars": 246, - "_forks": 38, - "_watches": 4, + "_repopath": "jovianml/opendatasets", + "_reponame": "opendatasets", + "_stars": 248, + "_forks": 123, + "_watches": 13, + "_language": "Python", + "_homepage": "", + "_description": "opendatasets: A Python library for downloading datasets from Kaggle, Google Drive, and other online sources.", + "_organization": "jovianml", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-09-17T00:00:00.000Z", + "_age_weeks": 126, + "_stars_per_week": 1.95, "_topics": [ + "data-science", "machine-learning", - "mlops", - "hacktoberfest" - ], - "_language": "Python", - "_homepage": "https://www.union.ai/unionml", - "_description": "UnionML: the easiest way to build and deploy machine learning microservices", - "_organization": "unionai-oss", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2021-11-17T00:00:00.000Z", - "_age_weeks": 56, - "_stars_per_week": 4.34, - "_pop_contributor_count": 15, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "letsopen-source", - "unionai" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.79, - "_pop_updated_issues_count": 76, - "_pop_closed_issues_count": 46, - "_pop_created_since_days": 13, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 17, - "_pop_recent_releases_estimated_tags": 16, - "_pop_recent_releases_adjusted_count": 17, - "_pop_issue_count": 76.0, - "_pop_comment_count": 127.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, - "_pop_dependents_count": 2, - "_pop_score": 39.52, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/unionai-oss/unionml/master/README.md", - "_readme_localurl": "unionai-oss~unionml~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/unionai-oss/unionml/master/requirements.txt", - "https://raw.githubusercontent.com/unionai-oss/unionml/master/setup.py", - "https://raw.githubusercontent.com/unionai-oss/unionml/master/pyproject.toml" + "datasets", + "python" ], - "_requirements_localurls": [ - "unionai-oss~unionml~requirements.txt", - "unionai-oss~unionml~setup.py", - "unionai-oss~unionml~pyproject.toml" - ] - }, - { - "index": 480, - "category": "pandas", - "githuburl": "https://github.com/holoviz/spatialpandas", - "featured": null, - "links": null, - "description": null, - "_repopath": "holoviz/spatialpandas", - "_reponame": "spatialpandas", - "_stars": 245, - "_forks": 21, - "_watches": 22, - "_topics": [ - "holoviz", - "spatialpandas", - "pandas", - "geopandas", - "geographic-data" + "_last_commit_date": "2022-11-01T00:00:00.000Z", + "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "BirajCoder@jovian", + "aakashns@jovianml" ], - "_language": "Python", - "_homepage": "", - "_description": "spatialpandas: Pandas extension arrays for spatial/geometric operations", - "_organization": "holoviz", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2019-10-28T00:00:00.000Z", - "_age_weeks": 164, - "_stars_per_week": 1.49, - "_pop_contributor_count": 9, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "anaconda", - "datum-tech", - "hextechnologies" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.31, - "_pop_updated_issues_count": 8, - "_pop_closed_issues_count": 7, - "_pop_created_since_days": 38, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 12, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 8.0, - "_pop_comment_count": 2.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.2, - "_pop_dependents_count": 2, - "_pop_score": 30.27, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/holoviz/spatialpandas/master/README.md", - "_readme_localurl": "holoviz~spatialpandas~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/holoviz/spatialpandas/master/setup.py", - "https://raw.githubusercontent.com/holoviz/spatialpandas/master/pyproject.toml" + "jovian", + "jovianml" ], - "_requirements_localurls": [ - "holoviz~spatialpandas~setup.py", - "holoviz~spatialpandas~pyproject.toml" - ] - }, - { - "index": 454, - "category": "gis", - "githuburl": "https://github.com/openaddresses/pyesridump", - "featured": null, - "links": null, - "description": null, - "_repopath": "openaddresses/pyesridump", - "_reponame": "pyesridump", - "_stars": 243, - "_forks": 59, - "_watches": 16, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "pyesridump: Scrapes an ESRI MapServer REST endpoint to spit out more generally-usable geodata.", - "_organization": "openaddresses", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-06-19T00:00:00.000Z", - "_created_at": "2013-12-06T00:00:00.000Z", - "_age_weeks": 471, - "_stars_per_week": 0.52, - "_pop_contributor_count": 12, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "datamade", - "nlt", - "openaddressesdevelopmentseed" + "_pop_contributor_orgs_raw": [ + "@JovianML", + "Jovian" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.38, + "_pop_commit_frequency": 0.13, "_pop_updated_issues_count": 3, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 110, - "_pop_updated_since_days": 6, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 1, + "_pop_created_since_days": 30, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, "_pop_issue_count": 3.0, - "_pop_comment_count": 7.0, + "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.3, + "_pop_comment_frequency": 0.3, "_pop_dependents_count": 0, - "_pop_score": 28.48, + "_pop_score": 15.97, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/openaddresses/pyesridump/master/README.md", - "_readme_localurl": "openaddresses~pyesridump~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/jovianml/opendatasets/master/README.md", + "_readme_localurl": "jovianml~opendatasets~README.md", "_requirements_filenames": [ - "setup.py", - "Pipfile" + "requirements.txt", + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/openaddresses/pyesridump/master/setup.py", - "https://raw.githubusercontent.com/openaddresses/pyesridump/master/Pipfile" + "https://raw.githubusercontent.com/jovianml/opendatasets/master/requirements.txt", + "https://raw.githubusercontent.com/jovianml/opendatasets/master/setup.py" ], "_requirements_localurls": [ - "openaddresses~pyesridump~setup.py", - "openaddresses~pyesridump~Pipfile" + "jovianml~opendatasets~requirements.txt", + "jovianml~opendatasets~setup.py" ] }, { - "index": 276, - "category": "crypto", - "githuburl": "https://github.com/ethtx/ethtx_ce", + "index": 888, + "category": "study", + "githuburl": "https://github.com/amaargiru/pyroad", "featured": null, "links": null, "description": null, - "_repopath": "ethtx/ethtx_ce", - "_reponame": "ethtx_ce", - "_stars": 239, - "_forks": 60, - "_watches": 13, - "_topics": [], - "_language": "Python", - "_homepage": "https://ethtx.info", - "_description": "ethtx_ce: Ethereum transaction decoder (community version).", - "_organization": "ethtx", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-12-05T00:00:00.000Z", - "_created_at": "2021-07-26T00:00:00.000Z", - "_age_weeks": 73, - "_stars_per_week": 3.27, - "_pop_contributor_count": 7, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_repopath": "amaargiru/pyroad", + "_reponame": "pyroad", + "_stars": 248, + "_forks": 27, + "_watches": 6, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "pyroad: Detailed Python developer roadmap", + "_organization": "amaargiru", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2022-11-03T00:00:00.000Z", + "_age_weeks": 15, + "_stars_per_week": 15.64, + "_topics": [ + "python", + "roadmap", + "tutorial" + ], + "_last_commit_date": "2023-01-04T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "amaargiru@oznadigitalsolutions" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "py-world", - "tokenflowinsights" + "oznadigitalsolutions" + ], + "_pop_contributor_orgs_raw": [ + "OZNA Digital Solutions" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.71, - "_pop_updated_issues_count": 9, - "_pop_closed_issues_count": 9, - "_pop_created_since_days": 17, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 1.04, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 4, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 9.0, - "_pop_comment_count": 8.0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 0, - "_pop_score": 25.04, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/ethtx/ethtx_ce/master/README.md", - "_readme_localurl": "ethtx~ethtx_ce~README.md", - "_requirements_filenames": [ - "Pipfile" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/ethtx/ethtx_ce/master/Pipfile" - ], - "_requirements_localurls": [ - "ethtx~ethtx_ce~Pipfile" - ] + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 13.2, + "_readme_filename": "readme.md", + "_readme_giturl": "https://raw.githubusercontent.com/amaargiru/pyroad/master/readme.md", + "_readme_localurl": "amaargiru~pyroad~readme.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { "index": 864, @@ -52425,47 +72546,66 @@ "description": null, "_repopath": "astronomer/airflow-chart", "_reponame": "airflow-chart", - "_stars": 239, + "_stars": 244, "_forks": 87, "_watches": 44, + "_language": "Python", + "_homepage": null, + "_description": "airflow-chart: A Helm chart to install Apache Airflow on Kubernetes", + "_organization": "astronomer", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-01-22T00:00:00.000Z", + "_age_weeks": 161, + "_stars_per_week": 1.52, "_topics": [ "helm-chart", "airflow", "apache-airflow", "kubernetes" ], - "_language": "Python", - "_homepage": null, - "_description": "airflow-chart: A Helm chart to install Apache Airflow on Kubernetes", - "_organization": "astronomer", - "_updated_at": "2022-12-13T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2020-01-22T00:00:00.000Z", - "_age_weeks": 151, - "_stars_per_week": 1.58, + "_last_commit_date": "2023-02-10T00:00:00.000Z", "_pop_contributor_count": 48, + "_pop_contributor_logins": [ + "andriisoldatenko", + "andscoop", + "cwurtz", + "danielhoherd@astronomer", + "ianstanton@coredb", + "kaxil@astronomer", + "pgvishnuram@astronomer", + "schnie@astronomer", + "sjmiller609@coredb", + "tedmiston@mandolin-dev" + ], "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "astronomer", - "cerebral", + "coredb", "mandolin-dev" ], + "_pop_contributor_orgs_raw": [ + "@astronomer", + "@astronomer ", + "@mandolin-dev", + "Astronomer", + "CoreDB" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.58, - "_pop_updated_issues_count": 29, - "_pop_closed_issues_count": 29, - "_pop_created_since_days": 35, + "_pop_commit_frequency": 1.85, + "_pop_updated_issues_count": 33, + "_pop_closed_issues_count": 30, + "_pop_created_since_days": 38, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 18, + "_pop_recent_releases_count": 17, "_pop_recent_releases_estimated_tags": 29, - "_pop_recent_releases_adjusted_count": 18, - "_pop_issue_count": 29.0, - "_pop_comment_count": 14.0, + "_pop_recent_releases_adjusted_count": 17, + "_pop_issue_count": 33.0, + "_pop_comment_count": 24.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 14, - "_pop_score": 44.49, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 40.54, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/astronomer/airflow-chart/master/README.md", "_readme_localurl": "astronomer~airflow-chart~README.md", @@ -52474,120 +72614,155 @@ "_requirements_localurls": [] }, { - "index": 277, - "category": "data", - "githuburl": "https://github.com/airbnb/omniduct", + "index": 870, + "category": "ml", + "githuburl": "https://github.com/infer-actively/pymdp", "featured": null, "links": null, "description": null, - "_repopath": "airbnb/omniduct", - "_reponame": "omniduct", - "_stars": 238, - "_forks": 47, - "_watches": 30, - "_topics": [], + "_repopath": "infer-actively/pymdp", + "_reponame": "pymdp", + "_stars": 244, + "_forks": 37, + "_watches": 24, "_language": "Python", "_homepage": "", - "_description": "omniduct: A toolkit providing a uniform interface for connecting to and extracting data from a wide variety of (potentially remote) data stores (including HDFS, Hive, Presto, MySQL, etc).", - "_organization": "airbnb", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-05-09T00:00:00.000Z", - "_created_at": "2017-02-22T00:00:00.000Z", - "_age_weeks": 303, - "_stars_per_week": 0.78, + "_description": "pymdp: A Python implementation of active inference for Markov Decision Processes", + "_organization": "infer-actively", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2019-11-27T00:00:00.000Z", + "_age_weeks": 169, + "_stars_per_week": 1.44, + "_topics": [], + "_last_commit_date": "2022-12-08T00:00:00.000Z", "_pop_contributor_count": 12, + "_pop_contributor_logins": [ + "Arun-Niranjan@bud", + "BerenMillidge", + "alec-tschantz", + "conorheins", + "dependabot[bot]", + "mahault", + "pitmonticone@universityofturin" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "airbnb", - "datascientistatnetflix" + "bud", + "universityofturin" + ], + "_pop_contributor_orgs_raw": [ + "Bud", + "University of Turin" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.04, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 71, - "_pop_updated_since_days": 7, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 13, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, + "_pop_commit_frequency": 1.31, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 39, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 5.0, + "_pop_comment_count": 3.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, + "_pop_comment_frequency": 0.6, "_pop_dependents_count": 0, - "_pop_score": 19.17, + "_pop_score": 27.07, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/airbnb/omniduct/master/README.md", - "_readme_localurl": "airbnb~omniduct~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/infer-actively/pymdp/master/README.md", + "_readme_localurl": "infer-actively~pymdp~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/airbnb/omniduct/master/setup.py" + "https://raw.githubusercontent.com/infer-actively/pymdp/master/requirements.txt", + "https://raw.githubusercontent.com/infer-actively/pymdp/master/setup.py" ], "_requirements_localurls": [ - "airbnb~omniduct~setup.py" + "infer-actively~pymdp~requirements.txt", + "infer-actively~pymdp~setup.py" ] }, { - "index": 588, + "index": 277, "category": "data", - "githuburl": "https://github.com/tokern/data-lineage", + "githuburl": "https://github.com/airbnb/omniduct", "featured": null, "links": null, "description": null, - "_repopath": "tokern/data-lineage", - "_reponame": "data-lineage", - "_stars": 235, - "_forks": 27, - "_watches": 8, - "_topics": [ - "data-lineage", - "data-governance", - "python", - "postgresql", - "jupyter" - ], + "_repopath": "airbnb/omniduct", + "_reponame": "omniduct", + "_stars": 243, + "_forks": 47, + "_watches": 31, "_language": "Python", - "_homepage": "https://tokern.io/data-lineage/", - "_description": "data-lineage: Generate and Visualize Data Lineage from query history", - "_organization": "tokern", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-05-02T00:00:00.000Z", - "_created_at": "2020-03-17T00:00:00.000Z", - "_age_weeks": 143, - "_stars_per_week": 1.63, - "_pop_contributor_count": 4, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_homepage": "", + "_description": "omniduct: A toolkit providing a uniform interface for connecting to and extracting data from a wide variety of (potentially remote) data stores (including HDFS, Hive, Presto, MySQL, etc).", + "_organization": "airbnb", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2017-02-22T00:00:00.000Z", + "_age_weeks": 313, + "_stars_per_week": 0.78, + "_topics": [], + "_last_commit_date": "2022-05-09T00:00:00.000Z", + "_pop_contributor_count": 12, + "_pop_contributor_logins": [ + "danfrankj", + "delirious-lettuce", + "foxyblue", + "gloutsch", + "gthomas-slack@slack", + "harsham4026", + "kination@line", + "ljharb@tc39", + "matthewwardrop@datascientistatnetflix", + "naoyak@airbnb" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "airbnb", + "datascientistatnetflix", + "line", + "slack", + "tc39" + ], + "_pop_contributor_orgs_raw": [ + "@airbnb", + "@line", + "@tc39", + "Data Scientist at @Netflix", + "Slack" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.06, - "_pop_updated_issues_count": 8, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 34, - "_pop_updated_since_days": 8, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 9, - "_pop_issue_count": 8.0, - "_pop_comment_count": 3.0, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 73, + "_pop_updated_since_days": 10, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 1.0, + "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.4, + "_pop_comment_frequency": 1.0, "_pop_dependents_count": 0, - "_pop_score": 14.93, + "_pop_score": 25.76, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/tokern/data-lineage/master/README.md", - "_readme_localurl": "tokern~data-lineage~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/airbnb/omniduct/master/README.md", + "_readme_localurl": "airbnb~omniduct~README.md", "_requirements_filenames": [ - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/tokern/data-lineage/master/pyproject.toml" + "https://raw.githubusercontent.com/airbnb/omniduct/master/setup.py" ], "_requirements_localurls": [ - "tokern~data-lineage~pyproject.toml" + "airbnb~omniduct~setup.py" ] }, { @@ -52599,42 +72774,65 @@ "description": null, "_repopath": "sqlalchemy/mako", "_reponame": "mako", - "_stars": 234, + "_stars": 243, "_forks": 46, - "_watches": 10, - "_topics": [], + "_watches": 11, "_language": "Python", "_homepage": "https://www.makotemplates.org", "_description": "Mako Templates for Python", "_organization": "sqlalchemy", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_updated_at": "2023-02-09T00:00:00.000Z", "_created_at": "2018-11-26T00:00:00.000Z", - "_age_weeks": 212, + "_age_weeks": 221, "_stars_per_week": 1.1, + "_topics": [], + "_last_commit_date": "2023-01-03T00:00:00.000Z", "_pop_contributor_count": 59, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ + "_pop_contributor_logins": [ + "CaselIT", + "bbangert@mozilla,nabucasa", + "bourke@iter8ve", + "donkopotamus", + "mindw", + "olduvaihand@google,inc", + "pjenvey@mozilla", + "vincent-ferotin", + "wichert@simplonb.v.", + "zzzeek@redhat" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "google,inc", "iter8ve", "mozilla", - "redhat" + "mozilla,nabucasa", + "redhat", + "simplonb.v." + ], + "_pop_contributor_orgs_raw": [ + "@mozilla, @NabuCasa", + "Google, Inc", + "Mozilla", + "Red Hat", + "Simplon B.V.", + "iter8ve" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.67, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 7, - "_pop_created_since_days": 49, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 0.54, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 5, - "_pop_recent_releases_estimated_tags": 16, + "_pop_recent_releases_estimated_tags": 15, "_pop_recent_releases_adjusted_count": 5, - "_pop_issue_count": 7.0, - "_pop_comment_count": 17.0, + "_pop_issue_count": 6.0, + "_pop_comment_count": 18.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.4, - "_pop_dependents_count": 1216, - "_pop_score": 50.88, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 0, + "_pop_score": 40.17, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/sqlalchemy/mako/master/README.rst", "_readme_localurl": "sqlalchemy~mako~README.rst", @@ -52652,319 +72850,522 @@ ] }, { - "index": 870, - "category": "ml", - "githuburl": "https://github.com/infer-actively/pymdp", + "index": 229, + "category": "data", + "githuburl": "https://github.com/microsoft/genalog", "featured": null, "links": null, "description": null, - "_repopath": "infer-actively/pymdp", - "_reponame": "pymdp", - "_stars": 233, - "_forks": 36, - "_watches": 23, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "pymdp: A Python implementation of active inference for Markov Decision Processes", - "_organization": "infer-actively", - "_updated_at": "2022-12-10T00:00:00.000Z", - "_last_commit_date": "2022-12-08T00:00:00.000Z", - "_created_at": "2019-11-27T00:00:00.000Z", - "_age_weeks": 159, - "_stars_per_week": 1.46, - "_pop_contributor_count": 12, + "_repopath": "microsoft/genalog", + "_reponame": "genalog", + "_stars": 243, + "_forks": 24, + "_watches": 10, + "_language": "Jupyter Notebook", + "_homepage": "https://microsoft.github.io/genalog/", + "_description": "Genalog is an open source, cross-platform python package allowing generation of synthetic document images with custom degradations and text alignment capabilities.", + "_organization": "microsoft", + "_updated_at": "2023-02-13T00:00:00.000Z", + "_created_at": "2020-06-15T00:00:00.000Z", + "_age_weeks": 140, + "_stars_per_week": 1.73, + "_topics": [ + "ner", + "ocr-recognition", + "python", + "text-alignment", + "data-generation", + "data-science", + "machine-learning", + "synthetic-data", + "synthetic-images", + "synthetic-data-generation" + ], + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 5, + "_pop_contributor_logins": [ + "dbanda@microsoft", + "jgc128", + "laserprec", + "microsoft-github-operations[bot]", + "microsoftopensource@microsoft" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "thoughtmachine" + "microsoft" + ], + "_pop_contributor_orgs_raw": [ + "Microsoft" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.54, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 37, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 33, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 7.0, - "_pop_comment_count": 9.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 8, - "_pop_score": 34.12, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 20.5, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/infer-actively/pymdp/master/README.md", - "_readme_localurl": "infer-actively~pymdp~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/microsoft/genalog/master/README.md", + "_readme_localurl": "microsoft~genalog~README.md", "_requirements_filenames": [ "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/infer-actively/pymdp/master/requirements.txt", - "https://raw.githubusercontent.com/infer-actively/pymdp/master/setup.py" + "https://raw.githubusercontent.com/microsoft/genalog/master/requirements.txt", + "https://raw.githubusercontent.com/microsoft/genalog/master/setup.py" ], "_requirements_localurls": [ - "infer-actively~pymdp~requirements.txt", - "infer-actively~pymdp~setup.py" + "microsoft~genalog~requirements.txt", + "microsoft~genalog~setup.py" ] }, { - "index": 515, - "category": "data", - "githuburl": "https://github.com/jovianml/opendatasets", + "index": 276, + "category": "crypto", + "githuburl": "https://github.com/ethtx/ethtx_ce", "featured": null, "links": null, "description": null, - "_repopath": "jovianml/opendatasets", - "_reponame": "opendatasets", - "_stars": 233, - "_forks": 109, - "_watches": 14, - "_topics": [ - "data-science", - "machine-learning", - "datasets", - "python" - ], + "_repopath": "ethtx/ethtx_ce", + "_reponame": "ethtx_ce", + "_stars": 241, + "_forks": 60, + "_watches": 13, "_language": "Python", - "_homepage": "", - "_description": "opendatasets: A Python library for downloading datasets from Kaggle, Google Drive, and other online sources.", - "_organization": "jovianml", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-01T00:00:00.000Z", - "_created_at": "2020-09-17T00:00:00.000Z", - "_age_weeks": 117, - "_stars_per_week": 1.98, - "_pop_contributor_count": 3, + "_homepage": "https://ethtx.info", + "_description": "ethtx_ce: Ethereum transaction decoder (community version).", + "_organization": "ethtx", + "_updated_at": "2023-02-12T00:00:00.000Z", + "_created_at": "2021-07-26T00:00:00.000Z", + "_age_weeks": 82, + "_stars_per_week": 2.93, + "_topics": [], + "_last_commit_date": "2022-12-22T00:00:00.000Z", + "_pop_contributor_count": 7, + "_pop_contributor_logins": [ + "dudzicz@tokenflowinsights", + "feld", + "kchojn@py-world", + "piotr-rudnik", + "tmierzwa@tokenflowinsights", + "wolololol", + "zdumitru" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "jovian", - "jovianml" + "py-world", + "tokenflowinsights" + ], + "_pop_contributor_orgs_raw": [ + "Py-World", + "Token Flow Insights" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.13, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 27, + "_pop_commit_frequency": 0.6, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 19, "_pop_updated_since_days": 2, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 2.0, - "_pop_comment_count": 0.0, + "_pop_issue_count": 9.0, + "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 3, - "_pop_score": 18.15, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 0, + "_pop_score": 20.47, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/jovianml/opendatasets/master/README.md", - "_readme_localurl": "jovianml~opendatasets~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/ethtx/ethtx_ce/master/README.md", + "_readme_localurl": "ethtx~ethtx_ce~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "Pipfile" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/jovianml/opendatasets/master/requirements.txt", - "https://raw.githubusercontent.com/jovianml/opendatasets/master/setup.py" + "https://raw.githubusercontent.com/ethtx/ethtx_ce/master/Pipfile" ], "_requirements_localurls": [ - "jovianml~opendatasets~requirements.txt", - "jovianml~opendatasets~setup.py" + "ethtx~ethtx_ce~Pipfile" ] }, { - "index": 229, + "index": 588, "category": "data", - "githuburl": "https://github.com/microsoft/genalog", + "githuburl": "https://github.com/tokern/data-lineage", "featured": null, "links": null, "description": null, - "_repopath": "microsoft/genalog", - "_reponame": "genalog", - "_stars": 232, - "_forks": 23, - "_watches": 10, + "_repopath": "tokern/data-lineage", + "_reponame": "data-lineage", + "_stars": 241, + "_forks": 28, + "_watches": 8, + "_language": "Python", + "_homepage": "https://tokern.io/data-lineage/", + "_description": "data-lineage: Generate and Visualize Data Lineage from query history", + "_organization": "tokern", + "_updated_at": "2023-02-04T00:00:00.000Z", + "_created_at": "2020-03-17T00:00:00.000Z", + "_age_weeks": 153, + "_stars_per_week": 1.57, "_topics": [ - "ner", - "ocr-recognition", + "data-lineage", + "data-governance", "python", - "text-alignment", - "data-generation", - "data-science", - "machine-learning", - "synthetic-data", - "synthetic-images", - "synthetic-data-generation" + "postgresql", + "jupyter" ], - "_language": "Jupyter Notebook", - "_homepage": "https://microsoft.github.io/genalog/", - "_description": "Genalog is an open source, cross-platform python package allowing generation of synthetic document images with custom degradations and text alignment capabilities.", - "_organization": "microsoft", - "_updated_at": "2022-12-11T00:00:00.000Z", - "_last_commit_date": "2022-09-13T00:00:00.000Z", - "_created_at": "2020-06-15T00:00:00.000Z", - "_age_weeks": 131, - "_stars_per_week": 1.77, - "_pop_contributor_count": 5, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-05-02T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "dependabot[bot]", + "dorianj", + "vrajat" + ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 36, + "_pop_updated_since_days": 10, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 6.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 0, + "_pop_score": 14.19, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/tokern/data-lineage/master/README.md", + "_readme_localurl": "tokern~data-lineage~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/tokern/data-lineage/master/pyproject.toml" + ], + "_requirements_localurls": [ + "tokern~data-lineage~pyproject.toml" + ] + }, + { + "index": 83, + "category": "ml", + "githuburl": "https://github.com/stan-dev/pystan", + "featured": null, + "links": null, + "description": null, + "_repopath": "stan-dev/pystan", + "_reponame": "pystan", + "_stars": 240, + "_forks": 46, + "_watches": 13, + "_language": "Python", + "_homepage": "", + "_description": "PyStan, a Python interface to Stan, a platform for statistical modeling. Documentation: https://pystan.readthedocs.io", + "_organization": "stan-dev", + "_updated_at": "2023-02-16T00:00:00.000Z", + "_created_at": "2017-09-17T00:00:00.000Z", + "_age_weeks": 283, + "_stars_per_week": 0.85, + "_topics": [], + "_last_commit_date": "2022-11-26T00:00:00.000Z", + "_pop_contributor_count": 11, + "_pop_contributor_logins": [ + "MichaelClerx@universityofnottingham", + "ahartikainen@lumoanalytics", + "amas0", + "asottile", + "jburroni", + "jgabry@columbiauniversitystan-dev", + "mjcarter95", + "riddell-stan", + "smoh" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "columbiauniversitystan-dev", + "lumoanalytics", + "universityofnottingham" + ], + "_pop_contributor_orgs_raw": [ + "@lumoanalytics ", + "Columbia University @stan-dev", + "University of Nottingham" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.35, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 66, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 5.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 27.11, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/stan-dev/pystan/master/README.rst", + "_readme_localurl": "stan-dev~pystan~README.rst", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/stan-dev/pystan/master/pyproject.toml" + ], + "_requirements_localurls": [ + "stan-dev~pystan~pyproject.toml" + ] + }, + { + "index": 923, + "category": "gis", + "githuburl": "https://github.com/giswqs/aws-open-data-geo", + "featured": null, + "links": null, + "description": null, + "_repopath": "giswqs/aws-open-data-geo", + "_reponame": "aws-open-data-geo", + "_stars": 234, + "_forks": 6, + "_watches": 9, + "_language": "Python", + "_homepage": "", + "_description": "aws-open-data-geo: A list of open geospatial datasets on AWS", + "_organization": "giswqs", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-12-18T00:00:00.000Z", + "_age_weeks": 9, + "_stars_per_week": 24.82, + "_topics": [ + "aws", + "environment", + "geospatial", + "mapping", + "open-data", + "satellite-imagery", + "sustainability" + ], + "_last_commit_date": "2023-02-18T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "actions-user@actions", + "giswqs@universityoftennessee" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "microsoft" + "actions", + "universityoftennessee" + ], + "_pop_contributor_orgs_raw": [ + "@actions", + "University of Tennessee" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.02, + "_pop_commit_frequency": 0.75, "_pop_updated_issues_count": 1, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 31, - "_pop_updated_since_days": 3, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 2, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, "_pop_issue_count": 1.0, - "_pop_comment_count": 0.0, + "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, + "_pop_comment_frequency": 4.0, "_pop_dependents_count": 0, - "_pop_score": 16.92, + "_pop_score": 19.38, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/microsoft/genalog/master/README.md", - "_readme_localurl": "microsoft~genalog~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/giswqs/aws-open-data-geo/master/README.md", + "_readme_localurl": "giswqs~aws-open-data-geo~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/microsoft/genalog/master/requirements.txt", - "https://raw.githubusercontent.com/microsoft/genalog/master/setup.py" + "https://raw.githubusercontent.com/giswqs/aws-open-data-geo/master/requirements.txt" ], "_requirements_localurls": [ - "microsoft~genalog~requirements.txt", - "microsoft~genalog~setup.py" + "giswqs~aws-open-data-geo~requirements.txt" ] }, { - "index": 737, + "index": 865, "category": "ml-ops", - "githuburl": "https://github.com/skops-dev/skops", + "githuburl": "https://github.com/astronomer/astro-sdk", "featured": null, "links": null, "description": null, - "_repopath": "skops-dev/skops", - "_reponame": "skops", - "_stars": 227, - "_forks": 32, - "_watches": 7, + "_repopath": "astronomer/astro-sdk", + "_reponame": "astro-sdk", + "_stars": 230, + "_forks": 31, + "_watches": 14, + "_language": "Python", + "_homepage": "https://astro-sdk-python.rtfd.io/", + "_description": "astro-sdk: Astro SDK allows rapid and clean development of {Extract, Load, Transform} workflows using Python and SQL, powered by Apache Airflow.", + "_organization": "astronomer", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2021-12-06T00:00:00.000Z", + "_age_weeks": 63, + "_stars_per_week": 3.63, "_topics": [ - "huggingface", - "machine-learning", - "mlops", - "scikit-learn", - "hacktoberfest" + "python", + "sql", + "pandas", + "airflow", + "sqlite", + "bigquery", + "postgres", + "snowflake", + "gcs", + "s3", + "etl", + "elt", + "dags", + "workflows", + "data-analysis", + "data-science", + "apache-airflow" + ], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 32, + "_pop_contributor_logins": [ + "dimberman@astronomerio", + "feluelle@astronomer", + "kaxil@astronomer", + "pankajastro@astronomer", + "pankajkoti@astronomer", + "pre-commit-ci[bot]", + "rajaths010494", + "sunank200@astronomer", + "tatiana@astronomer", + "utkarsharma2@astronomer" ], - "_language": "Python", - "_homepage": "https://skops.readthedocs.io/en/stable/", - "_description": "skops is a Python library helping you share your scikit-learn based models and put them in production", - "_organization": "skops-dev", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2022-05-04T00:00:00.000Z", - "_age_weeks": 32, - "_stars_per_week": 6.94, - "_pop_contributor_count": 9, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "huggingface", - "jsainsburyplc,sainsburys-tech" + "astronomer", + "astronomerio" + ], + "_pop_contributor_orgs_raw": [ + "@astronomer", + "@astronomer ", + "@astronomerio", + "Astronomer" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.48, - "_pop_updated_issues_count": 138, - "_pop_closed_issues_count": 104, - "_pop_created_since_days": 8, + "_pop_commit_frequency": 15.13, + "_pop_updated_issues_count": 628, + "_pop_closed_issues_count": 492, + "_pop_created_since_days": 15, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 138.0, - "_pop_comment_count": 530.0, + "_pop_recent_releases_count": 41, + "_pop_recent_releases_estimated_tags": 54, + "_pop_recent_releases_adjusted_count": 41, + "_pop_issue_count": 628.0, + "_pop_comment_count": 770.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.8, - "_pop_dependents_count": 4, - "_pop_score": 38.3, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/skops-dev/skops/master/README.rst", - "_readme_localurl": "skops-dev~skops~README.rst", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/skops-dev/skops/master/setup.py", - "https://raw.githubusercontent.com/skops-dev/skops/master/pyproject.toml" - ], - "_requirements_localurls": [ - "skops-dev~skops~setup.py", - "skops-dev~skops~pyproject.toml" - ] + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 44.55, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/astronomer/astro-sdk/master/README.md", + "_readme_localurl": "astronomer~astro-sdk~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] }, { - "index": 83, - "category": "ml", - "githuburl": "https://github.com/stan-dev/pystan", + "index": 933, + "category": "nlp", + "githuburl": "https://github.com/lucidrains/medical-chatgpt", "featured": null, "links": null, "description": null, - "_repopath": "stan-dev/pystan", - "_reponame": "pystan", - "_stars": 226, - "_forks": 45, - "_watches": 12, - "_topics": [], + "_repopath": "lucidrains/medical-chatgpt", + "_reponame": "medical-chatgpt", + "_stars": 227, + "_forks": 19, + "_watches": 25, "_language": "Python", "_homepage": "", - "_description": "PyStan, a Python interface to Stan, a platform for statistical modeling. Documentation: https://pystan.readthedocs.io", - "_organization": "stan-dev", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-11-26T00:00:00.000Z", - "_created_at": "2017-09-17T00:00:00.000Z", - "_age_weeks": 274, - "_stars_per_week": 0.82, - "_pop_contributor_count": 11, + "_description": "medical-chatgpt: Implementation of ChatGPT, but tailored towards primary care medicine, with the reward being able to collect patient histories in a thorough and efficient manner and come up with a reasonable differential diagnosis", + "_organization": "lucidrains", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-12-10T00:00:00.000Z", + "_age_weeks": 10, + "_stars_per_week": 21.47, + "_topics": [ + "artificial-intelligence", + "attention-mechanisms", + "deep-learning", + "transformers", + "medicine" + ], + "_last_commit_date": "2023-02-12T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "ell-hol@orange", + "lucidrains" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "lumoanalytics" + "orange" + ], + "_pop_contributor_orgs_raw": [ + "Orange" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.48, - "_pop_updated_issues_count": 23, - "_pop_closed_issues_count": 16, - "_pop_created_since_days": 64, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 0.21, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 2, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 23.0, - "_pop_comment_count": 58.0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, - "_pop_dependents_count": 26, - "_pop_score": 37.72, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/stan-dev/pystan/master/README.rst", - "_readme_localurl": "stan-dev~pystan~README.rst", + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 10.97, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/lucidrains/medical-chatgpt/master/README.md", + "_readme_localurl": "lucidrains~medical-chatgpt~README.md", "_requirements_filenames": [ - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/stan-dev/pystan/master/pyproject.toml" + "https://raw.githubusercontent.com/lucidrains/medical-chatgpt/master/setup.py" ], "_requirements_localurls": [ - "stan-dev~pystan~pyproject.toml" + "lucidrains~medical-chatgpt~setup.py" ] }, { @@ -52976,41 +73377,59 @@ "description": null, "_repopath": "amzn/ion-python", "_reponame": "ion-python", - "_stars": 215, + "_stars": 223, "_forks": 49, - "_watches": 23, - "_topics": [], + "_watches": 25, "_language": "Python", - "_homepage": "http://amzn.github.io/ion-docs/", + "_homepage": "https://amazon-ion.github.io/ion-docs/", "_description": "ion-python: A Python implementation of Amazon Ion.", "_organization": "amzn", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", + "_updated_at": "2023-02-21T00:00:00.000Z", "_created_at": "2016-04-07T00:00:00.000Z", - "_age_weeks": 349, + "_age_weeks": 358, "_stars_per_week": 0.62, + "_topics": [], + "_last_commit_date": "2023-02-14T00:00:00.000Z", "_pop_contributor_count": 25, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Antrikshy@amazon", + "almann", + "cheqianh@amazon", + "daniel-butler", + "dlurton@amzn", + "mijamo911@nope", + "popematt@amzn", + "rmarrowstone@amazon", + "rubcuevas", + "tgregg" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "amazon", - "amzn" + "amzn", + "nope" + ], + "_pop_contributor_orgs_raw": [ + "@amzn ", + "Amazon", + "Nope" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.33, - "_pop_updated_issues_count": 13, - "_pop_closed_issues_count": 5, - "_pop_created_since_days": 82, + "_pop_commit_frequency": 0.38, + "_pop_updated_issues_count": 25, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 84, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 3, "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 13.0, - "_pop_comment_count": 6.0, + "_pop_issue_count": 25.0, + "_pop_comment_count": 11.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 16, - "_pop_score": 38.05, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 35.22, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/amzn/ion-python/master/README.md", "_readme_localurl": "amzn~ion-python~README.md", @@ -53036,9 +73455,17 @@ "description": null, "_repopath": "cogeotiff/rio-cogeo", "_reponame": "rio-cogeo", - "_stars": 213, - "_forks": 30, + "_stars": 218, + "_forks": 31, "_watches": 44, + "_language": "Python", + "_homepage": "https://cogeotiff.github.io/rio-cogeo/", + "_description": "rio-cogeo: Cloud Optimized GeoTIFF creation and validation plugin for rasterio", + "_organization": "cogeotiff", + "_updated_at": "2023-02-10T00:00:00.000Z", + "_created_at": "2018-03-09T00:00:00.000Z", + "_age_weeks": 258, + "_stars_per_week": 0.84, "_topics": [ "satellite", "cog", @@ -53046,38 +73473,56 @@ "rasterio", "cogeotiff" ], - "_language": "Python", - "_homepage": "https://cogeotiff.github.io/rio-cogeo/", - "_description": "rio-cogeo: Cloud Optimized GeoTIFF creation and validation plugin for rasterio", - "_organization": "cogeotiff", - "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2022-10-26T00:00:00.000Z", - "_created_at": "2018-03-09T00:00:00.000Z", - "_age_weeks": 249, - "_stars_per_week": 0.85, "_pop_contributor_count": 13, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "drnextgis@satellogic", + "geospatial-jeff@regrowag", + "j08lue@developmentseed", + "kant", + "kylebarron", + "perliedman@solvi", + "pierotofy@uav4geo", + "rukku@phl-microsatdpad", + "sgillies@planetlabs", + "vincentsarago@developmentseed" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "developmentseed", + "phl-microsatdpad", + "planetlabs", "regrowag", + "satellogic", + "solvi", "uav4geo" ], + "_pop_contributor_orgs_raw": [ + "@developmentseed ", + "@planetlabs", + "@regrowag", + "@satellogic", + "Development Seed", + "PHL-Microsat DPAD", + "Solvi", + "UAV4GEO" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.63, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 58, - "_pop_updated_since_days": 2, + "_pop_commit_frequency": 0.52, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 60, + "_pop_updated_since_days": 4, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 12, "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 4.0, - "_pop_comment_count": 6.0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 14.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 11, - "_pop_score": 37.22, + "_pop_comment_frequency": 4.7, + "_pop_dependents_count": 0, + "_pop_score": 37.74, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/cogeotiff/rio-cogeo/master/README.md", "_readme_localurl": "cogeotiff~rio-cogeo~README.md", @@ -53092,111 +73537,423 @@ ] }, { - "index": 888, - "category": "study", - "githuburl": "https://github.com/amaargiru/pyroad", + "index": 249, + "category": "sim", + "githuburl": "https://github.com/bilhim/trafficsimulator", "featured": null, "links": null, "description": null, - "_repopath": "amaargiru/pyroad", - "_reponame": "pyroad", - "_stars": 205, - "_forks": 26, + "_repopath": "bilhim/trafficsimulator", + "_reponame": "trafficSimulator", + "_stars": 217, + "_forks": 81, + "_watches": 16, + "_language": "Python", + "_homepage": null, + "_description": "bilhim/trafficsimulator", + "_organization": "bilhim", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2021-09-05T00:00:00.000Z", + "_age_weeks": 76, + "_stars_per_week": 2.84, + "_topics": [], + "_last_commit_date": "2021-09-07T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "BilHim", + "hamolicious" + ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 18, + "_pop_updated_since_days": 18, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 3.51, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/bilhim/trafficsimulator/master/README.md", + "_readme_localurl": "bilhim~trafficsimulator~README.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/bilhim/trafficsimulator/master/requirements.txt" + ], + "_requirements_localurls": [ + "bilhim~trafficsimulator~requirements.txt" + ] + }, + { + "index": 337, + "category": "util", + "githuburl": "https://github.com/mrabarnett/mrab-regex", + "featured": null, + "links": null, + "description": null, + "_repopath": "mrabarnett/mrab-regex", + "_reponame": "mrab-regex", + "_stars": 214, + "_forks": 27, + "_watches": 6, + "_language": "C", + "_homepage": null, + "_description": "mrabarnett/mrab-regex", + "_organization": "mrabarnett", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2020-11-02T00:00:00.000Z", + "_age_weeks": 120, + "_stars_per_week": 1.78, + "_topics": [], + "_last_commit_date": "2022-10-31T00:00:00.000Z", + "_pop_contributor_count": 9, + "_pop_contributor_logins": [ + "animalize", + "gpshead@google", + "mrabarnett", + "zsol@facebook" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "facebook", + "google" + ], + "_pop_contributor_orgs_raw": [ + "@facebook ", + "Google" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.25, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 28, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 7.0, + "_pop_comment_count": 12.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 26.52, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/mrabarnett/mrab-regex/master/README.rst", + "_readme_localurl": "mrabarnett~mrab-regex~README.rst", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/mrabarnett/mrab-regex/master/setup.py" + ], + "_requirements_localurls": [ + "mrabarnett~mrab-regex~setup.py" + ] + }, + { + "index": 520, + "category": "gis", + "githuburl": "https://github.com/lydorn/polygonization-by-frame-field-learning", + "featured": null, + "links": null, + "description": null, + "_repopath": "lydorn/polygonization-by-frame-field-learning", + "_reponame": "Polygonization-by-Frame-Field-Learning", + "_stars": 214, + "_forks": 54, + "_watches": 11, + "_language": "Python", + "_homepage": "", + "_description": "Polygonization-by-Frame-Field-Learning: This repository contains the code for our fast polygonal building extraction from overhead images pipeline.", + "_organization": "lydorn", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2020-05-26T00:00:00.000Z", + "_age_weeks": 143, + "_stars_per_week": 1.5, + "_topics": [ + "segmentation", + "polygonization", + "remote", + "sensing", + "frame", + "field" + ], + "_last_commit_date": "2022-12-09T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "Lydorn" + ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.13, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 33, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 5.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 10.74, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/lydorn/polygonization-by-frame-field-learning/master/README.md", + "_readme_localurl": "lydorn~polygonization-by-frame-field-learning~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/lydorn/polygonization-by-frame-field-learning/master/requirements.txt", + "https://raw.githubusercontent.com/lydorn/polygonization-by-frame-field-learning/master/setup.py" + ], + "_requirements_localurls": [ + "lydorn~polygonization-by-frame-field-learning~requirements.txt", + "lydorn~polygonization-by-frame-field-learning~setup.py" + ] + }, + { + "index": 467, + "category": "math", + "githuburl": "https://github.com/lukaszahradnik/pyneuralogic", + "featured": null, + "links": null, + "description": null, + "_repopath": "lukaszahradnik/pyneuralogic", + "_reponame": "PyNeuraLogic", + "_stars": 214, + "_forks": 17, "_watches": 5, + "_language": "Python", + "_homepage": "https://pyneuralogic.readthedocs.io/", + "_description": "PyNeuraLogic lets you use Python to create Differentiable Logic Programs", + "_organization": "lukaszahradnik", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-12-06T00:00:00.000Z", + "_age_weeks": 115, + "_stars_per_week": 1.85, "_topics": [ + "machine-learning", + "deep-learning", + "graph-neural-networks", + "relational-learning", "python", - "roadmap", - "tutorial" + "geometric-deep-learning", + "pytorch", + "logic-programming", + "differentiable-programming" ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "pyroad: Detailed Python developer roadmap", - "_organization": "amaargiru", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2022-11-03T00:00:00.000Z", - "_age_weeks": 6, - "_stars_per_week": 31.2, - "_pop_contributor_count": 1, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "GustikS@czechtechnicaluniversity", + "LukasZahradnik", + "joaquincabezas@adevinta" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "oznadigitalsolutions" + "adevinta", + "czechtechnicaluniversity" + ], + "_pop_contributor_orgs_raw": [ + "Adevinta", + "Czech Technical University" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.92, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 2, + "_pop_commit_frequency": 6.06, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 27, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 18, + "_pop_recent_releases_estimated_tags": 17, + "_pop_recent_releases_adjusted_count": 18, + "_pop_issue_count": 4.0, + "_pop_comment_count": 7.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 32.57, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/README.md", + "_readme_localurl": "lukaszahradnik~pyneuralogic~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/requirements.txt", + "https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/setup.py", + "https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/pyproject.toml" + ], + "_requirements_localurls": [ + "lukaszahradnik~pyneuralogic~requirements.txt", + "lukaszahradnik~pyneuralogic~setup.py", + "lukaszahradnik~pyneuralogic~pyproject.toml" + ] + }, + { + "index": 981, + "category": "util", + "githuburl": "https://github.com/google/pyglove", + "featured": 1.0, + "links": null, + "description": null, + "_repopath": "google/pyglove", + "_reponame": "pyglove", + "_stars": 212, + "_forks": 8, + "_watches": 6, + "_language": "Python", + "_homepage": "", + "_description": "pyglove: Manipulating Python Programs", + "_organization": "google", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-05-12T00:00:00.000Z", + "_age_weeks": 40, + "_stars_per_week": 5.19, + "_topics": [ + "automl", + "evolution", + "machine-learning", + "meta-learning", + "meta-programming", + "symbolic-programming", + "manipulation", + "python" + ], + "_last_commit_date": "2023-02-08T00:00:00.000Z", + "_pop_contributor_count": 5, + "_pop_contributor_logins": [ + "D-X-Y@google", + "daiyip", + "rchen152", + "sinopalnikov", + "xingyousong@googlebrain" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "google", + "googlebrain" + ], + "_pop_contributor_orgs_raw": [ + "Google", + "Google Brain" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.21, + "_pop_updated_issues_count": 29, + "_pop_closed_issues_count": 27, + "_pop_created_since_days": 9, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 2.0, - "_pop_comment_count": 4.0, + "_pop_recent_releases_count": 3, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 3, + "_pop_issue_count": 29.0, + "_pop_comment_count": 14.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, + "_pop_comment_frequency": 0.5, "_pop_dependents_count": 0, - "_pop_score": 14.54, - "_readme_filename": "readme.md", - "_readme_giturl": "https://raw.githubusercontent.com/amaargiru/pyroad/master/readme.md", - "_readme_localurl": "amaargiru~pyroad~readme.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_pop_score": 26.82, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/google/pyglove/master/README.md", + "_readme_localurl": "google~pyglove~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/google/pyglove/master/setup.py" + ], + "_requirements_localurls": [ + "google~pyglove~setup.py" + ] }, { - "index": 249, - "category": "sim", - "githuburl": "https://github.com/bilhim/trafficsimulator", + "index": 819, + "category": "time-series", + "githuburl": "https://github.com/salesforce/deeptime", "featured": null, "links": null, "description": null, - "_repopath": "bilhim/trafficsimulator", - "_reponame": "trafficSimulator", - "_stars": 204, - "_forks": 77, - "_watches": 13, - "_topics": [], + "_repopath": "salesforce/deeptime", + "_reponame": "DeepTime", + "_stars": 207, + "_forks": 32, + "_watches": 7, "_language": "Python", - "_homepage": null, - "_description": "bilhim/trafficsimulator", - "_organization": "bilhim", - "_updated_at": "2022-12-12T00:00:00.000Z", - "_last_commit_date": "2021-09-07T00:00:00.000Z", - "_created_at": "2021-09-05T00:00:00.000Z", - "_age_weeks": 67, - "_stars_per_week": 3.04, + "_homepage": "", + "_description": "PyTorch code for DeepTime: Deep Time-Index Meta-Learning for Non-Stationary Time-Series Forecasting", + "_organization": "salesforce", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-06-27T00:00:00.000Z", + "_age_weeks": 34, + "_stars_per_week": 6.04, + "_topics": [ + "deep-learning", + "forecasting", + "meta-learning", + "time-series", + "time-series-forecasting", + "time-series-regression", + "implicit-neural-representation" + ], + "_last_commit_date": "2022-11-03T00:00:00.000Z", "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "dependabot[bot]", + "gorold" + ], "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 16, - "_pop_updated_since_days": 16, + "_pop_commit_frequency": 0.21, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 8, + "_pop_updated_since_days": 4, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 5.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 4, - "_pop_score": 5.92, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 9.74, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/bilhim/trafficsimulator/master/README.md", - "_readme_localurl": "bilhim~trafficsimulator~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/salesforce/deeptime/master/README.md", + "_readme_localurl": "salesforce~deeptime~README.md", "_requirements_filenames": [ "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/bilhim/trafficsimulator/master/requirements.txt" + "https://raw.githubusercontent.com/salesforce/deeptime/master/requirements.txt" ], "_requirements_localurls": [ - "bilhim~trafficsimulator~requirements.txt" + "salesforce~deeptime~requirements.txt" ] }, { @@ -53208,9 +73965,17 @@ "description": null, "_repopath": "carla-recourse/carla", "_reponame": "CARLA", - "_stars": 198, - "_forks": 42, + "_stars": 206, + "_forks": 48, "_watches": 5, + "_language": "Python", + "_homepage": "", + "_description": "CARLA: A Python Library to Benchmark Algorithmic Recourse and Counterfactual Explanation Algorithms", + "_organization": "carla-recourse", + "_updated_at": "2023-02-08T00:00:00.000Z", + "_created_at": "2020-12-09T00:00:00.000Z", + "_age_weeks": 115, + "_stars_per_week": 1.79, "_topics": [ "python", "machine-learning", @@ -53228,36 +73993,39 @@ "tensorflow2", "pytorch" ], - "_language": "Python", - "_homepage": "", - "_description": "CARLA: A Python Library to Benchmark Algorithmic Recourse and Counterfactual Explanation Algorithms", - "_organization": "carla-recourse", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-09-07T00:00:00.000Z", - "_created_at": "2020-12-09T00:00:00.000Z", - "_age_weeks": 105, - "_stars_per_week": 1.87, + "_last_commit_date": "2023-02-21T00:00:00.000Z", "_pop_contributor_count": 7, + "_pop_contributor_logins": [ + "JohanvandenHeuvel", + "Philoso-Fish", + "Voulgaris-Sot", + "ah-ansari", + "aredelmeier", + "indyfree@bezerocarbon" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "bezerocarbon" ], + "_pop_contributor_orgs_raw": [ + "@BeZeroCarbon " + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.81, - "_pop_updated_issues_count": 1, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 25, - "_pop_updated_since_days": 3, + "_pop_commit_frequency": 0.67, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 27, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 1.0, + "_pop_issue_count": 8.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 15.23, + "_pop_score": 20.95, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/carla-recourse/carla/master/README.md", "_readme_localurl": "carla-recourse~carla~README.md", @@ -53271,193 +74039,6 @@ "carla-recourse~carla~setup.py" ] }, - { - "index": 240, - "category": "sim", - "githuburl": "https://github.com/nv-tlabs/gamegan_code", - "featured": null, - "links": null, - "description": null, - "_repopath": "nv-tlabs/gamegan_code", - "_reponame": "GameGAN_code", - "_stars": 198, - "_forks": 32, - "_watches": 9, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "GameGAN_code: Learning to Simulate Dynamic Environments with GameGAN (CVPR 2020)", - "_organization": "nv-tlabs", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2021-11-11T00:00:00.000Z", - "_created_at": "2020-12-11T00:00:00.000Z", - "_age_weeks": 105, - "_stars_per_week": 1.88, - "_pop_contributor_count": 2, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 25, - "_pop_updated_since_days": 13, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 2, - "_pop_score": 6.52, - "_readme_filename": "readme.md", - "_readme_giturl": "https://raw.githubusercontent.com/nv-tlabs/gamegan_code/master/readme.md", - "_readme_localurl": "nv-tlabs~gamegan_code~readme.md", - "_requirements_filenames": [ - "requirements.txt" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/nv-tlabs/gamegan_code/master/requirements.txt" - ], - "_requirements_localurls": [ - "nv-tlabs~gamegan_code~requirements.txt" - ] - }, - { - "index": 865, - "category": "ml-ops", - "githuburl": "https://github.com/astronomer/astro-sdk", - "featured": null, - "links": null, - "description": null, - "_repopath": "astronomer/astro-sdk", - "_reponame": "astro-sdk", - "_stars": 197, - "_forks": 27, - "_watches": 13, - "_topics": [ - "python", - "sql", - "pandas", - "airflow", - "sqlite", - "bigquery", - "postgres", - "snowflake", - "gcs", - "s3", - "etl", - "elt", - "dags", - "workflows", - "data-analysis", - "data-science", - "apache-airflow" - ], - "_language": "Python", - "_homepage": "https://docs.astronomer.io/learn/astro-python-sdk-etl", - "_description": "astro-sdk: Astro SDK allows rapid and clean development of {Extract, Load, Transform} workflows using Python and SQL, powered by Apache Airflow.", - "_organization": "astronomer", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2021-12-06T00:00:00.000Z", - "_age_weeks": 54, - "_stars_per_week": 3.65, - "_pop_contributor_count": 32, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "astronomer", - "astronomerio" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 13.54, - "_pop_updated_issues_count": 677, - "_pop_closed_issues_count": 489, - "_pop_created_since_days": 13, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 42, - "_pop_recent_releases_estimated_tags": 49, - "_pop_recent_releases_adjusted_count": 42, - "_pop_issue_count": 677.0, - "_pop_comment_count": 784.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, - "_pop_dependents_count": 112, - "_pop_score": 52.57, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/astronomer/astro-sdk/master/README.md", - "_readme_localurl": "astronomer~astro-sdk~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, - { - "index": 836, - "category": "gis", - "githuburl": "https://github.com/r-barnes/richdem", - "featured": null, - "links": null, - "description": null, - "_repopath": "r-barnes/richdem", - "_reponame": "richdem", - "_stars": 195, - "_forks": 57, - "_watches": 14, - "_topics": [ - "digital-elevation-model", - "geosciences", - "geospatial", - "hydrology", - "hydrologic-modeling", - "big-data" - ], - "_language": "C++", - "_homepage": "", - "_description": "richdem: High-performance Terrain and Hydrology Analysis ", - "_organization": "r-barnes", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-11-18T00:00:00.000Z", - "_created_at": "2013-01-06T00:00:00.000Z", - "_age_weeks": 519, - "_stars_per_week": 0.38, - "_pop_contributor_count": 4, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "universityofcolorado", - "universityofidaho" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.79, - "_pop_updated_issues_count": 9, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 121, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 9.0, - "_pop_comment_count": 5.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 84, - "_pop_score": 34.88, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/r-barnes/richdem/master/README.md", - "_readme_localurl": "r-barnes~richdem~README.md", - "_requirements_filenames": [ - "requirements.txt" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/r-barnes/richdem/master/requirements.txt" - ], - "_requirements_localurls": [ - "r-barnes~richdem~requirements.txt" - ] - }, { "index": 733, "category": "ml", @@ -53467,9 +74048,17 @@ "description": null, "_repopath": "autonlab/auton-survival", "_reponame": "auton-survival", - "_stars": 194, - "_forks": 48, - "_watches": 6, + "_stars": 206, + "_forks": 51, + "_watches": 7, + "_language": "Python", + "_homepage": "http://autonlab.github.io/auton-survival", + "_description": "auton-survival: Auton Survival - an open source package for Regression, Counterfactual Estimation, Evaluation and Phenotyping with Censored Time-to-Events ", + "_organization": "autonlab", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-04-01T00:00:00.000Z", + "_age_weeks": 151, + "_stars_per_week": 1.36, "_topics": [ "survival-analysis", "reliability-analysis", @@ -53483,37 +74072,44 @@ "causal-inference", "graphical-models" ], - "_language": "Python", - "_homepage": "http://autonlab.github.io/auton-survival", - "_description": "auton-survival: Auton Survival - an open source package for Regression, Counterfactual Estimation, Evaluation and Phenotyping with Censored Time-to-Events ", - "_organization": "autonlab", - "_updated_at": "2022-12-02T00:00:00.000Z", "_last_commit_date": "2022-11-05T00:00:00.000Z", - "_created_at": "2020-04-01T00:00:00.000Z", - "_age_weeks": 141, - "_stars_per_week": 1.37, "_pop_contributor_count": 10, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Jeanselme@universityofcambridge", + "PotosnakW", + "chiragnagpal@carnegiemellonuniversity", + "chufangao@carnegiemellonuniversity", + "haivanle", + "kishanmaharaj@indianinstituteoftechnologybombay", + "shikhareddy" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "carnegiemellonuniversity", + "indianinstituteoftechnologybombay", "universityofcambridge" ], + "_pop_contributor_orgs_raw": [ + "Carnegie Mellon University", + "Indian Institute Of Technology Bombay ", + "University of Cambridge" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.85, - "_pop_updated_issues_count": 8, - "_pop_closed_issues_count": 5, - "_pop_created_since_days": 33, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 2.23, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 35, + "_pop_updated_since_days": 4, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 8.0, - "_pop_comment_count": 27.0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 7.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.4, - "_pop_dependents_count": 12, - "_pop_score": 34.9, + "_pop_comment_frequency": 1.8, + "_pop_dependents_count": 0, + "_pop_score": 26.7, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/autonlab/auton-survival/master/README.md", "_readme_localurl": "autonlab~auton-survival~README.md", @@ -53527,6 +74123,65 @@ "autonlab~auton-survival~requirements.txt" ] }, + { + "index": 240, + "category": "sim", + "githuburl": "https://github.com/nv-tlabs/gamegan_code", + "featured": null, + "links": null, + "description": null, + "_repopath": "nv-tlabs/gamegan_code", + "_reponame": "GameGAN_code", + "_stars": 205, + "_forks": 34, + "_watches": 10, + "_language": "Python", + "_homepage": null, + "_description": "GameGAN_code: Learning to Simulate Dynamic Environments with GameGAN (CVPR 2020)", + "_organization": "nv-tlabs", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2020-12-11T00:00:00.000Z", + "_age_weeks": 114, + "_stars_per_week": 1.79, + "_topics": [], + "_last_commit_date": "2021-11-11T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "daniel-kukiela", + "seung-kim" + ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 27, + "_pop_updated_since_days": 16, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 4.26, + "_readme_filename": "readme.md", + "_readme_giturl": "https://raw.githubusercontent.com/nv-tlabs/gamegan_code/master/readme.md", + "_readme_localurl": "nv-tlabs~gamegan_code~readme.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/nv-tlabs/gamegan_code/master/requirements.txt" + ], + "_requirements_localurls": [ + "nv-tlabs~gamegan_code~requirements.txt" + ] + }, { "index": 859, "category": "jupyter", @@ -53536,43 +74191,67 @@ "description": null, "_repopath": "jupyter/nbformat", "_reponame": "nbformat", - "_stars": 193, - "_forks": 142, - "_watches": 26, - "_topics": [], + "_stars": 204, + "_forks": 143, + "_watches": 25, "_language": "Python", "_homepage": "http://nbformat.readthedocs.io/", "_description": "nbformat: Reference implementation of the Jupyter Notebook format", "_organization": "jupyter", - "_updated_at": "2022-12-01T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_updated_at": "2023-02-11T00:00:00.000Z", "_created_at": "2015-04-09T00:00:00.000Z", - "_age_weeks": 401, - "_stars_per_week": 0.48, - "_pop_contributor_count": 70, - "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 410, + "_stars_per_week": 0.5, + "_topics": [], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 74, + "_pop_contributor_logins": [ + "Carreau@quansight-labs", + "MSeal@noteable-io", + "blink1073@mongodb", + "ellisonbg@amazonwebservices", + "jdfreder@google", + "jhamrick", + "minrk@simularesearchlaboratory", + "mpacer@netflix", + "pre-commit-ci[bot]", + "takluyver" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "amazonwebservices", + "google", "mongodb", + "netflix", "noteable-io", "quansight-labs", "simularesearchlaboratory" ], + "_pop_contributor_orgs_raw": [ + "@Quansight-Labs", + "@google ", + "@noteable-io", + "Amazon Web Services", + "MongoDB", + "Netflix", + "Simula Research Laboratory" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.35, - "_pop_updated_issues_count": 40, - "_pop_closed_issues_count": 30, - "_pop_created_since_days": 94, + "_pop_commit_frequency": 3.5, + "_pop_updated_issues_count": 22, + "_pop_closed_issues_count": 18, + "_pop_created_since_days": 96, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 9, + "_pop_recent_releases_count": 12, "_pop_recent_releases_estimated_tags": 4, - "_pop_recent_releases_adjusted_count": 9, - "_pop_issue_count": 40.0, - "_pop_comment_count": 40.0, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 22.0, + "_pop_comment_count": 6.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 1138, - "_pop_score": 57.95, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 0, + "_pop_score": 45.8, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jupyter/nbformat/master/README.md", "_readme_localurl": "jupyter~nbformat~README.md", @@ -53595,190 +74274,148 @@ "description": null, "_repopath": "graal-research/deepparse", "_reponame": "deepparse", - "_stars": 190, + "_stars": 203, "_forks": 23, "_watches": 4, - "_topics": [ - "machine-learning", - "python", - "addresses-parsing" - ], "_language": "Python", "_homepage": "https://deepparse.org/", "_description": "Deepparse is a state-of-the-art library for parsing multinational street addresses using deep learning", "_organization": "graal-research", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-01T00:00:00.000Z", + "_updated_at": "2023-02-20T00:00:00.000Z", "_created_at": "2020-07-01T00:00:00.000Z", - "_age_weeks": 128, - "_stars_per_week": 1.48, - "_pop_contributor_count": 6, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "baseline.qu\u00e9bec" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.54, - "_pop_updated_issues_count": 17, - "_pop_closed_issues_count": 15, - "_pop_created_since_days": 30, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 20, - "_pop_recent_releases_estimated_tags": 18, - "_pop_recent_releases_adjusted_count": 20, - "_pop_issue_count": 17.0, - "_pop_comment_count": 15.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 34, - "_pop_score": 36.86, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/graal-research/deepparse/master/README.md", - "_readme_localurl": "graal-research~deepparse~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" + "_age_weeks": 138, + "_stars_per_week": 1.47, + "_topics": [ + "machine-learning", + "python", + "addresses-parsing" ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/graal-research/deepparse/master/requirements.txt", - "https://raw.githubusercontent.com/graal-research/deepparse/master/setup.py", - "https://raw.githubusercontent.com/graal-research/deepparse/master/pyproject.toml" + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "GameSetAndMatch@baseline", + "MAYAS3", + "davebulaval@baseline.qu\u00e9bec", + "dependabot[bot]", + "freud14", + "yogeshchandrasekharuni" ], - "_requirements_localurls": [ - "graal-research~deepparse~requirements.txt", - "graal-research~deepparse~setup.py", - "graal-research~deepparse~pyproject.toml" - ] - }, - { - "index": 337, - "category": "util", - "githuburl": "https://github.com/mrabarnett/mrab-regex", - "featured": null, - "links": null, - "description": null, - "_repopath": "mrabarnett/mrab-regex", - "_reponame": "mrab-regex", - "_stars": 189, - "_forks": 24, - "_watches": 5, - "_topics": [], - "_language": "C", - "_homepage": null, - "_description": "mrabarnett/mrab-regex", - "_organization": "mrabarnett", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-10-31T00:00:00.000Z", - "_created_at": "2020-11-02T00:00:00.000Z", - "_age_weeks": 111, - "_stars_per_week": 1.7, - "_pop_contributor_count": 9, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "facebook", - "google" + "baseline", + "baseline.qu\u00e9bec" + ], + "_pop_contributor_orgs_raw": [ + "Baseline.qu\u00e9bec", + "baseline" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.31, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 26, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 7.0, - "_pop_comment_count": 15.0, + "_pop_commit_frequency": 3.35, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 32, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 15, + "_pop_recent_releases_estimated_tags": 17, + "_pop_recent_releases_adjusted_count": 15, + "_pop_issue_count": 14.0, + "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.1, - "_pop_dependents_count": 2311, - "_pop_score": 42.54, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/mrabarnett/mrab-regex/master/README.rst", - "_readme_localurl": "mrabarnett~mrab-regex~README.rst", + "_pop_comment_frequency": 0.1, + "_pop_dependents_count": 0, + "_pop_score": 30.94, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/graal-research/deepparse/master/README.md", + "_readme_localurl": "graal-research~deepparse~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt", + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/mrabarnett/mrab-regex/master/setup.py" + "https://raw.githubusercontent.com/graal-research/deepparse/master/requirements.txt", + "https://raw.githubusercontent.com/graal-research/deepparse/master/setup.py", + "https://raw.githubusercontent.com/graal-research/deepparse/master/pyproject.toml" ], "_requirements_localurls": [ - "mrabarnett~mrab-regex~setup.py" + "graal-research~deepparse~requirements.txt", + "graal-research~deepparse~setup.py", + "graal-research~deepparse~pyproject.toml" ] }, { - "index": 446, + "index": 836, "category": "gis", - "githuburl": "https://github.com/pysal/spopt", + "githuburl": "https://github.com/r-barnes/richdem", "featured": null, "links": null, "description": null, - "_repopath": "pysal/spopt", - "_reponame": "spopt", - "_stars": 184, - "_forks": 32, - "_watches": 13, + "_repopath": "r-barnes/richdem", + "_reponame": "richdem", + "_stars": 199, + "_forks": 59, + "_watches": 14, + "_language": "C++", + "_homepage": "", + "_description": "richdem: High-performance Terrain and Hydrology Analysis ", + "_organization": "r-barnes", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2013-01-06T00:00:00.000Z", + "_age_weeks": 528, + "_stars_per_week": 0.38, "_topics": [ - "spatial-optimization", - "regionalization", - "facility-location", - "routing", - "transportation", - "spatial-analysis", - "location-allocation", - "location-modeling", - "resource-planning", - "python" + "digital-elevation-model", + "geosciences", + "geospatial", + "hydrology", + "hydrologic-modeling", + "big-data" ], - "_language": "Python", - "_homepage": "https://pysal.org/spopt/", - "_description": "spopt: Spatial Optimization", - "_organization": "pysal", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2019-03-01T00:00:00.000Z", - "_age_weeks": 198, - "_stars_per_week": 0.93, - "_pop_contributor_count": 15, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2022-11-18T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "benbovy", + "mcflugen@universityofcolorado", + "r-barnes", + "tbartholomaus@universityofidaho" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "center-for-open-geographical-science", - "centerforopengeographicalscience", - "ornl" + "universityofcolorado", + "universityofidaho" + ], + "_pop_contributor_orgs_raw": [ + "University of Colorado", + "University of Idaho" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 6.38, - "_pop_updated_issues_count": 75, - "_pop_closed_issues_count": 58, - "_pop_created_since_days": 46, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 75.0, - "_pop_comment_count": 73.0, + "_pop_commit_frequency": 0.56, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 123, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 8.0, + "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 104, - "_pop_score": 46.88, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 0, + "_pop_score": 23.69, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/pysal/spopt/master/README.md", - "_readme_localurl": "pysal~spopt~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/r-barnes/richdem/master/README.md", + "_readme_localurl": "r-barnes~richdem~README.md", "_requirements_filenames": [ - "requirements.txt", - "setup.py" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/pysal/spopt/master/requirements.txt", - "https://raw.githubusercontent.com/pysal/spopt/master/setup.py" + "https://raw.githubusercontent.com/r-barnes/richdem/master/requirements.txt" ], "_requirements_localurls": [ - "pysal~spopt~requirements.txt", - "pysal~spopt~setup.py" + "r-barnes~richdem~requirements.txt" ] }, { @@ -53790,41 +74427,63 @@ "description": null, "_repopath": "aws/aws-lambda-python-runtime-interface-client", "_reponame": "aws-lambda-python-runtime-interface-client", - "_stars": 181, - "_forks": 42, - "_watches": 13, - "_topics": [], + "_stars": 195, + "_forks": 48, + "_watches": 15, "_language": "Python", "_homepage": null, "_description": "aws/aws-lambda-python-runtime-interface-client", "_organization": "aws", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-08-16T00:00:00.000Z", + "_updated_at": "2023-02-10T00:00:00.000Z", "_created_at": "2020-09-02T00:00:00.000Z", - "_age_weeks": 119, + "_age_weeks": 129, "_stars_per_week": 1.51, - "_pop_contributor_count": 21, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_topics": [], + "_last_commit_date": "2023-02-16T00:00:00.000Z", + "_pop_contributor_count": 23, + "_pop_contributor_logins": [ + "SukanyaHanumanthu@356", + "aboelhamd@aws", + "adamchainz@django,djangolondon", + "amazon-auto@amazon", + "carlzogh@amazonwebservices", + "keshayad@amazonwebservices", + "preearor", + "smirnoal", + "stefanbotez", + "zsombor-balogh" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "356", - "amazonwebservices" + "amazon", + "amazonwebservices", + "aws", + "django,djangolondon" + ], + "_pop_contributor_orgs_raw": [ + "356", + "@aws", + "@django, @djangolondon", + "Amazon", + "Amazon Web Services" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.31, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 28, - "_pop_updated_since_days": 4, + "_pop_commit_frequency": 0.37, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 30, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 7.0, - "_pop_comment_count": 6.0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 8.0, + "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.9, - "_pop_dependents_count": 2, - "_pop_score": 27.78, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 32.49, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/aws/aws-lambda-python-runtime-interface-client/master/README.md", "_readme_localurl": "aws~aws-lambda-python-runtime-interface-client~README.md", @@ -53839,76 +74498,71 @@ ] }, { - "index": 467, - "category": "math", - "githuburl": "https://github.com/lukaszahradnik/pyneuralogic", + "index": 954, + "category": "diffusion", + "githuburl": "https://github.com/lunarring/latentblending", "featured": null, "links": null, "description": null, - "_repopath": "lukaszahradnik/pyneuralogic", - "_reponame": "PyNeuraLogic", - "_stars": 181, - "_forks": 14, - "_watches": 5, + "_repopath": "lunarring/latentblending", + "_reponame": "latentblending", + "_stars": 194, + "_forks": 18, + "_watches": 11, + "_language": "Python", + "_homepage": "", + "_description": "latentblending: Create butter-smooth transitions between prompts, powered by stable diffusion", + "_organization": "lunarring", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-11-19T00:00:00.000Z", + "_age_weeks": 13, + "_stars_per_week": 14.29, "_topics": [ - "machine-learning", - "deep-learning", - "graph-neural-networks", - "relational-learning", - "python", - "geometric-deep-learning", - "pytorch", - "logic-programming", - "differentiable-programming" + "animation", + "diffusion", + "stable-diffusion" ], - "_language": "Python", - "_homepage": "https://pyneuralogic.readthedocs.io/", - "_description": "PyNeuraLogic lets you use Python to create Differentiable Logic Programs", - "_organization": "lukaszahradnik", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2020-12-06T00:00:00.000Z", - "_age_weeks": 106, - "_stars_per_week": 1.71, - "_pop_contributor_count": 3, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "adevinta", - "czechtechnicaluniversity" + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 9, + "_pop_contributor_logins": [ + "brianfitzgerald", + "jjnnss", + "lunarring", + "maxlund" ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 7.31, - "_pop_updated_issues_count": 1, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 25, + "_pop_commit_frequency": 3.12, + "_pop_updated_issues_count": 8, + "_pop_closed_issues_count": 7, + "_pop_created_since_days": 3, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 16, - "_pop_recent_releases_estimated_tags": 17, - "_pop_recent_releases_adjusted_count": 16, - "_pop_issue_count": 1.0, - "_pop_comment_count": 0.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 8.0, + "_pop_comment_count": 27.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, + "_pop_comment_frequency": 3.4, "_pop_dependents_count": 0, - "_pop_score": 26.83, + "_pop_score": 21.41, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/README.md", - "_readme_localurl": "lukaszahradnik~pyneuralogic~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/lunarring/latentblending/master/README.md", + "_readme_localurl": "lunarring~latentblending~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/requirements.txt", - "https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/setup.py", - "https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/pyproject.toml" + "https://raw.githubusercontent.com/lunarring/latentblending/master/requirements.txt", + "https://raw.githubusercontent.com/lunarring/latentblending/master/setup.py" ], "_requirements_localurls": [ - "lukaszahradnik~pyneuralogic~requirements.txt", - "lukaszahradnik~pyneuralogic~setup.py", - "lukaszahradnik~pyneuralogic~pyproject.toml" + "lunarring~latentblending~requirements.txt", + "lunarring~latentblending~setup.py" ] }, { @@ -53920,9 +74574,17 @@ "description": null, "_repopath": "kuanb/peartree", "_reponame": "peartree", - "_stars": 181, - "_forks": 16, + "_stars": 192, + "_forks": 17, "_watches": 13, + "_language": "Python", + "_homepage": "", + "_description": "peartree: A library for converting transit data into a directed graph for sketch network analysis.", + "_organization": "kuanb", + "_updated_at": "2023-02-16T00:00:00.000Z", + "_created_at": "2017-11-12T00:00:00.000Z", + "_age_weeks": 275, + "_stars_per_week": 0.7, "_topics": [ "network-analysis", "transit", @@ -53932,37 +74594,39 @@ "gis", "modeling" ], - "_language": "Python", - "_homepage": "", - "_description": "peartree: A library for converting transit data into a directed graph for sketch network analysis.", - "_organization": "kuanb", - "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2021-01-18T00:00:00.000Z", - "_created_at": "2017-11-12T00:00:00.000Z", - "_age_weeks": 266, - "_stars_per_week": 0.68, "_pop_contributor_count": 5, + "_pop_contributor_logins": [ + "bryanculbertson@eradb", + "d3netxer", + "kuanb@mapbox", + "pitrz" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "eradb", "mapbox" ], + "_pop_contributor_orgs_raw": [ + "@eradb ", + "@mapbox" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 1, + "_pop_updated_issues_count": 2, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 62, - "_pop_updated_since_days": 23, + "_pop_created_since_days": 64, + "_pop_updated_since_days": 25, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 1.0, + "_pop_issue_count": 2.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 15.66, + "_pop_score": 15.82, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/kuanb/peartree/master/README.rst", "_readme_localurl": "kuanb~peartree~README.rst", @@ -53980,67 +74644,236 @@ ] }, { - "index": 520, + "index": 446, "category": "gis", - "githuburl": "https://github.com/lydorn/polygonization-by-frame-field-learning", + "githuburl": "https://github.com/pysal/spopt", "featured": null, "links": null, "description": null, - "_repopath": "lydorn/polygonization-by-frame-field-learning", - "_reponame": "Polygonization-by-Frame-Field-Learning", - "_stars": 179, - "_forks": 51, - "_watches": 11, + "_repopath": "pysal/spopt", + "_reponame": "spopt", + "_stars": 187, + "_forks": 34, + "_watches": 13, + "_language": "Python", + "_homepage": "https://pysal.org/spopt/", + "_description": "spopt: Spatial Optimization", + "_organization": "pysal", + "_updated_at": "2023-02-13T00:00:00.000Z", + "_created_at": "2019-03-01T00:00:00.000Z", + "_age_weeks": 207, + "_stars_per_week": 0.9, "_topics": [ - "segmentation", - "polygonization", - "remote", - "sensing", - "frame", - "field" + "spatial-optimization", + "regionalization", + "facility-location", + "routing", + "transportation", + "spatial-analysis", + "location-allocation", + "location-modeling", + "resource-planning", + "python" ], - "_language": "Python", + "_last_commit_date": "2023-02-13T00:00:00.000Z", + "_pop_contributor_count": 17, + "_pop_contributor_logins": [ + "TimMcCauley", + "dependabot[bot]", + "erinrolson", + "gegen07", + "jGaboardi@ornl", + "knaaptime@center-for-open-geographical-science", + "pre-commit-ci[bot]", + "rwei5", + "sjsrey@centerforopengeographicalscience", + "xf37@universityofoklahoma" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "center-for-open-geographical-science", + "centerforopengeographicalscience", + "ornl", + "universityofoklahoma" + ], + "_pop_contributor_orgs_raw": [ + "@center-for-open-geographical-science", + "Center for Open Geographical Science", + "ORNL", + "University of Oklahoma" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 6.63, + "_pop_updated_issues_count": 57, + "_pop_closed_issues_count": 43, + "_pop_created_since_days": 48, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 57.0, + "_pop_comment_count": 79.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.4, + "_pop_dependents_count": 0, + "_pop_score": 41.49, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pysal/spopt/master/README.md", + "_readme_localurl": "pysal~spopt~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/pysal/spopt/master/requirements.txt", + "https://raw.githubusercontent.com/pysal/spopt/master/setup.py" + ], + "_requirements_localurls": [ + "pysal~spopt~requirements.txt", + "pysal~spopt~setup.py" + ] + }, + { + "index": 339, + "category": "perf", + "githuburl": "https://github.com/tlkh/tf-metal-experiments", + "featured": null, + "links": null, + "description": null, + "_repopath": "tlkh/tf-metal-experiments", + "_reponame": "tf-metal-experiments", + "_stars": 187, + "_forks": 19, + "_watches": 11, + "_language": "Jupyter Notebook", "_homepage": "", - "_description": "Polygonization-by-Frame-Field-Learning: This repository contains the code for our fast polygonal building extraction from overhead images pipeline.", - "_organization": "lydorn", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-12-09T00:00:00.000Z", - "_created_at": "2020-05-26T00:00:00.000Z", - "_age_weeks": 133, - "_stars_per_week": 1.34, - "_pop_contributor_count": 1, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_description": "tf-metal-experiments: TensorFlow Metal Backend on Apple Silicon Experiments (just for fun)", + "_organization": "tlkh", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2021-10-26T00:00:00.000Z", + "_age_weeks": 69, + "_stars_per_week": 2.7, + "_topics": [ + "gpu", + "deep-learning", + "tensorflow", + "m1", + "m1-max", + "benchmark", + "bert" + ], + "_last_commit_date": "2021-11-15T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "mend-bolt-for-github[bot]", + "tlkh@singaporeuniversityoftechnologyanddesign" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "singaporeuniversityoftechnologyanddesign" + ], + "_pop_contributor_orgs_raw": [ + "Singapore University of Technology and Design" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.13, + "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 2, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 31, - "_pop_updated_since_days": 0, + "_pop_created_since_days": 16, + "_pop_updated_since_days": 15, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, "_pop_issue_count": 2.0, - "_pop_comment_count": 11.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 5.5, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 19.33, + "_pop_score": 7.34, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/lydorn/polygonization-by-frame-field-learning/master/README.md", - "_readme_localurl": "lydorn~polygonization-by-frame-field-learning~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/tlkh/tf-metal-experiments/master/README.md", + "_readme_localurl": "tlkh~tf-metal-experiments~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 266, + "category": "nlp", + "githuburl": "https://github.com/allenai/s2orc-doc2json", + "featured": null, + "links": null, + "description": null, + "_repopath": "allenai/s2orc-doc2json", + "_reponame": "s2orc-doc2json", + "_stars": 181, + "_forks": 34, + "_watches": 6, + "_language": "Python", + "_homepage": "", + "_description": "s2orc-doc2json: Parsers for scientific papers (PDF2JSON, TEX2JSON, JATS2JSON)", + "_organization": "allenai", + "_updated_at": "2023-02-06T00:00:00.000Z", + "_created_at": "2020-12-10T00:00:00.000Z", + "_age_weeks": 114, + "_stars_per_week": 1.58, + "_topics": [], + "_last_commit_date": "2022-12-09T00:00:00.000Z", + "_pop_contributor_count": 9, + "_pop_contributor_logins": [ + "Kabongosalomon@universityofhannover,l3sandtib", + "TrellixVulnTeam", + "a3nm", + "castedo@castedo.com", + "gabrielmbmb", + "kyleclo@allenai", + "lucylw", + "nayha-auradkar", + "tsogi" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "allenai", + "castedo.com", + "universityofhannover,l3sandtib" + ], + "_pop_contributor_orgs_raw": [ + "@allenai ", + "University of Hannover, L3S and TIB", + "castedo.com" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.12, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 27, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.3, + "_pop_dependents_count": 0, + "_pop_score": 21.66, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/README.md", + "_readme_localurl": "allenai~s2orc-doc2json~README.md", "_requirements_filenames": [ "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/lydorn/polygonization-by-frame-field-learning/master/requirements.txt", - "https://raw.githubusercontent.com/lydorn/polygonization-by-frame-field-learning/master/setup.py" + "https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/requirements.txt", + "https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/setup.py" ], "_requirements_localurls": [ - "lydorn~polygonization-by-frame-field-learning~requirements.txt", - "lydorn~polygonization-by-frame-field-learning~setup.py" + "allenai~s2orc-doc2json~requirements.txt", + "allenai~s2orc-doc2json~setup.py" ] }, { @@ -54052,58 +74885,141 @@ "description": null, "_repopath": "spatialucr/geosnap", "_reponame": "geosnap", - "_stars": 176, + "_stars": 181, "_forks": 28, "_watches": 17, - "_topics": [], "_language": "Python", "_homepage": "https://spatialucr.github.io/geosnap-guide", "_description": "geosnap: The Geospatial Neighborhood Analysis Package", "_organization": "spatialucr", - "_updated_at": "2022-12-08T00:00:00.000Z", - "_last_commit_date": "2022-10-24T00:00:00.000Z", + "_updated_at": "2023-02-14T00:00:00.000Z", "_created_at": "2018-09-19T00:00:00.000Z", - "_age_weeks": 221, - "_stars_per_week": 0.79, + "_age_weeks": 231, + "_stars_per_week": 0.78, + "_topics": [], + "_last_commit_date": "2023-01-25T00:00:00.000Z", "_pop_contributor_count": 9, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "AnGWar26@mansueto-institute", + "jGaboardi@ornl", + "knaaptime@center-for-open-geographical-science", + "ljwolf@geogbristol", + "renanxcortes", + "sjsrey@centerforopengeographicalscience", + "suhanmappingideas", + "weikang9009@universityofnorthtexas" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "center-for-open-geographical-science", "centerforopengeographicalscience", + "geogbristol", "mansueto-institute", "ornl", "universityofnorthtexas" ], + "_pop_contributor_orgs_raw": [ + "@center-for-open-geographical-science", + "@geogbristol ", + "@mansueto-institute", + "Center for Open Geographical Science", + "ORNL", + "University of North Texas" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.94, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 52, - "_pop_updated_since_days": 2, + "_pop_commit_frequency": 0.98, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 54, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 4, - "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_estimated_tags": 6, "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 4.0, - "_pop_comment_count": 1.0, + "_pop_issue_count": 10.0, + "_pop_comment_count": 20.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 35.5, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/spatialucr/geosnap/master/README.md", + "_readme_localurl": "spatialucr~geosnap~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/spatialucr/geosnap/master/requirements.txt", + "https://raw.githubusercontent.com/spatialucr/geosnap/master/setup.py" + ], + "_requirements_localurls": [ + "spatialucr~geosnap~requirements.txt", + "spatialucr~geosnap~setup.py" + ] + }, + { + "index": 461, + "category": "nlp", + "githuburl": "https://github.com/yoadtew/zero-shot-image-to-text", + "featured": null, + "links": null, + "description": null, + "_repopath": "yoadtew/zero-shot-image-to-text", + "_reponame": "zero-shot-image-to-text", + "_stars": 181, + "_forks": 26, + "_watches": 7, + "_language": "Python", + "_homepage": "", + "_description": "zero-shot-image-to-text: Implementation of Zero-Shot Image-to-Text Generation for Visual-Semantic Arithmetic", + "_organization": "yoadtew", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2021-11-26T00:00:00.000Z", + "_age_weeks": 64, + "_stars_per_week": 2.8, + "_topics": [], + "_last_commit_date": "2022-09-17T00:00:00.000Z", + "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "YoadTew", + "chenxwh", + "idansc", + "itsyoavshalev" + ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.1, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 15, + "_pop_updated_since_days": 5, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.2, - "_pop_dependents_count": 16, - "_pop_score": 33.92, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 9.38, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/spatialucr/geosnap/master/README.md", - "_readme_localurl": "spatialucr~geosnap~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/yoadtew/zero-shot-image-to-text/master/README.md", + "_readme_localurl": "yoadtew~zero-shot-image-to-text~README.md", "_requirements_filenames": [ "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/spatialucr/geosnap/master/requirements.txt", - "https://raw.githubusercontent.com/spatialucr/geosnap/master/setup.py" + "https://raw.githubusercontent.com/yoadtew/zero-shot-image-to-text/master/requirements.txt", + "https://raw.githubusercontent.com/yoadtew/zero-shot-image-to-text/master/setup.py" ], "_requirements_localurls": [ - "spatialucr~geosnap~requirements.txt", - "spatialucr~geosnap~setup.py" + "yoadtew~zero-shot-image-to-text~requirements.txt", + "yoadtew~zero-shot-image-to-text~setup.py" ] }, { @@ -54115,29 +75031,34 @@ "description": null, "_repopath": "bowenc0221/boundary-iou-api", "_reponame": "boundary-iou-api", - "_stars": 175, - "_forks": 17, + "_stars": 178, + "_forks": 19, "_watches": 8, - "_topics": [], "_language": "Python", "_homepage": "", "_description": "boundary-iou-api: Boundary IoU API (Beta version)", "_organization": "bowenc0221", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2021-04-05T00:00:00.000Z", + "_updated_at": "2023-01-12T00:00:00.000Z", "_created_at": "2021-03-29T00:00:00.000Z", - "_age_weeks": 90, - "_stars_per_week": 1.94, + "_age_weeks": 99, + "_stars_per_week": 1.79, + "_topics": [], + "_last_commit_date": "2021-04-05T00:00:00.000Z", "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "bowenc0221", + "ppwwyyxx" + ], "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 21, - "_pop_updated_since_days": 21, + "_pop_created_since_days": 23, + "_pop_updated_since_days": 23, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -54160,67 +75081,6 @@ "bowenc0221~boundary-iou-api~setup.py" ] }, - { - "index": 266, - "category": "nlp", - "githuburl": "https://github.com/allenai/s2orc-doc2json", - "featured": null, - "links": null, - "description": null, - "_repopath": "allenai/s2orc-doc2json", - "_reponame": "s2orc-doc2json", - "_stars": 174, - "_forks": 30, - "_watches": 6, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "s2orc-doc2json: Parsers for scientific papers (PDF2JSON, TEX2JSON, JATS2JSON)", - "_organization": "allenai", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-09T00:00:00.000Z", - "_created_at": "2020-12-10T00:00:00.000Z", - "_age_weeks": 105, - "_stars_per_week": 1.65, - "_pop_contributor_count": 9, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "allenai", - "castedo.com", - "kafkodersfrontiersin" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.13, - "_pop_updated_issues_count": 6, - "_pop_closed_issues_count": 5, - "_pop_created_since_days": 25, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 6.0, - "_pop_comment_count": 2.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.3, - "_pop_dependents_count": 0, - "_pop_score": 25.06, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/README.md", - "_readme_localurl": "allenai~s2orc-doc2json~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/requirements.txt", - "https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/setup.py" - ], - "_requirements_localurls": [ - "allenai~s2orc-doc2json~requirements.txt", - "allenai~s2orc-doc2json~setup.py" - ] - }, { "index": 33, "category": "gis", @@ -54230,46 +75090,54 @@ "description": null, "_repopath": "jasonrig/address-net", "_reponame": "address-net", - "_stars": 171, - "_forks": 71, + "_stars": 175, + "_forks": 73, "_watches": 13, + "_language": "Python", + "_homepage": null, + "_description": "address-net: A package to structure Australian addresses", + "_organization": "jasonrig", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2018-12-05T00:00:00.000Z", + "_age_weeks": 220, + "_stars_per_week": 0.8, "_topics": [ "rnn", "deep-learning", "machine-learning", "address-parser" ], - "_language": "Python", - "_homepage": null, - "_description": "address-net: A package to structure Australian addresses", - "_organization": "jasonrig", - "_updated_at": "2022-12-01T00:00:00.000Z", "_last_commit_date": "2020-09-09T00:00:00.000Z", - "_created_at": "2018-12-05T00:00:00.000Z", - "_age_weeks": 210, - "_stars_per_week": 0.81, "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "Stallon-niranjan@deceptiveai", + "jasonrig@monash-mercpay-baymax" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "deceptiveai", "monash-mercpay-baymax" ], + "_pop_contributor_orgs_raw": [ + "@monash-merc @Pay-Baymax", + "Deceptive AI" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 2, + "_pop_updated_issues_count": 1, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 49, - "_pop_updated_since_days": 28, + "_pop_created_since_days": 51, + "_pop_updated_since_days": 30, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 2.0, - "_pop_comment_count": 5.0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.5, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 15.84, + "_pop_score": 10.17, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jasonrig/address-net/master/README.md", "_readme_localurl": "jasonrig~address-net~README.md", @@ -54283,63 +75151,6 @@ "jasonrig~address-net~setup.py" ] }, - { - "index": 461, - "category": "nlp", - "githuburl": "https://github.com/yoadtew/zero-shot-image-to-text", - "featured": null, - "links": null, - "description": null, - "_repopath": "yoadtew/zero-shot-image-to-text", - "_reponame": "zero-shot-image-to-text", - "_stars": 165, - "_forks": 23, - "_watches": 7, - "_topics": [], - "_language": "Python", - "_homepage": "", - "_description": "zero-shot-image-to-text: Implementation of Zero-Shot Image-to-Text Generation for Visual-Semantic Arithmetic", - "_organization": "yoadtew", - "_updated_at": "2022-12-11T00:00:00.000Z", - "_last_commit_date": "2022-09-17T00:00:00.000Z", - "_created_at": "2021-11-26T00:00:00.000Z", - "_age_weeks": 55, - "_stars_per_week": 2.98, - "_pop_contributor_count": 6, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.12, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 13, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 7.0, - "_pop_comment_count": 1.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.1, - "_pop_dependents_count": 0, - "_pop_score": 11.24, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/yoadtew/zero-shot-image-to-text/master/README.md", - "_readme_localurl": "yoadtew~zero-shot-image-to-text~README.md", - "_requirements_filenames": [ - "requirements.txt", - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/yoadtew/zero-shot-image-to-text/master/requirements.txt", - "https://raw.githubusercontent.com/yoadtew/zero-shot-image-to-text/master/setup.py" - ], - "_requirements_localurls": [ - "yoadtew~zero-shot-image-to-text~requirements.txt", - "yoadtew~zero-shot-image-to-text~setup.py" - ] - }, { "index": 415, "category": "ml-dl", @@ -54349,9 +75160,17 @@ "description": null, "_repopath": "rafiqhasan/auto-tensorflow", "_reponame": "auto-tensorflow", - "_stars": 163, - "_forks": 33, - "_watches": 12, + "_stars": 174, + "_forks": 34, + "_watches": 13, + "_language": "Python", + "_homepage": "", + "_description": "auto-tensorflow: Build Low Code Automated Tensorflow explainable models in just 3 lines of code. Library created by: Hasan Rafiq - https://www.linkedin.com/in/sam04/", + "_organization": "rafiqhasan", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2021-07-05T00:00:00.000Z", + "_age_weeks": 85, + "_stars_per_week": 2.04, "_topics": [ "tensorflow", "deeplearning", @@ -54363,27 +75182,25 @@ "auto-tensorflow", "autotensorflow" ], - "_language": "Python", - "_homepage": "", - "_description": "auto-tensorflow: Build Low Code Automated Tensorflow explainable models in just 3 lines of code. Library created by: Hasan Rafiq - https://www.linkedin.com/in/sam04/", - "_organization": "rafiqhasan", - "_updated_at": "2022-12-17T00:00:00.000Z", "_last_commit_date": "2022-12-09T00:00:00.000Z", - "_created_at": "2021-07-05T00:00:00.000Z", - "_age_weeks": 76, - "_stars_per_week": 2.14, "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "rafiqhasan@google" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "google" ], + "_pop_contributor_orgs_raw": [ + "Google" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.1, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 18, - "_pop_updated_since_days": 0, + "_pop_created_since_days": 20, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 5, "_pop_recent_releases_adjusted_count": 2, @@ -54392,7 +75209,7 @@ "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 14.66, + "_pop_score": 12.21, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/rafiqhasan/auto-tensorflow/master/README.md", "_readme_localurl": "rafiqhasan~auto-tensorflow~README.md", @@ -54410,121 +75227,338 @@ ] }, { - "index": 819, - "category": "time-series", - "githuburl": "https://github.com/salesforce/deeptime", + "index": 948, + "category": "nlp", + "githuburl": "https://github.com/ibm/transition-amr-parser", "featured": null, "links": null, "description": null, - "_repopath": "salesforce/deeptime", - "_reponame": "DeepTime", - "_stars": 161, - "_forks": 22, - "_watches": 5, + "_repopath": "ibm/transition-amr-parser", + "_reponame": "transition-amr-parser", + "_stars": 173, + "_forks": 39, + "_watches": 9, + "_language": "Python", + "_homepage": "", + "_description": "transition-amr-parser: SoTA Abstract Meaning Representation (AMR) parsing with word-node alignments in Pytorch. Includes checkpoints and other tools such as statistical significance Smatch.", + "_organization": "ibm", + "_updated_at": "2023-02-10T00:00:00.000Z", + "_created_at": "2019-10-08T00:00:00.000Z", + "_age_weeks": 176, + "_stars_per_week": 0.98, "_topics": [ - "deep-learning", - "forecasting", - "meta-learning", - "time-series", - "time-series-forecasting", - "time-series-regression", - "implicit-neural-representation" + "machine-learning", + "nlp", + "semantic-parsing", + "amr", + "amr-parser", + "abstract-meaning-representation", + "amr-parsing", + "amr-graphs" + ], + "_last_commit_date": "2023-02-01T00:00:00.000Z", + "_pop_contributor_count": 15, + "_pop_contributor_logins": [ + "cpendus", + "gangiswag", + "jzhou316", + "kant", + "kjbarker-work", + "mrdrozdov", + "ramon-astudillo@ibm", + "sadhana01", + "tahira", + "ysuklee@github.com/ibm" ], - "_language": "Python", + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "github.com/ibm", + "ibm" + ], + "_pop_contributor_orgs_raw": [ + "@IBM", + "github.com/IBM" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 5.83, + "_pop_updated_issues_count": 9, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 41, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 9.0, + "_pop_comment_count": 9.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 32.54, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/ibm/transition-amr-parser/master/README.md", + "_readme_localurl": "ibm~transition-amr-parser~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/ibm/transition-amr-parser/master/setup.py" + ], + "_requirements_localurls": [ + "ibm~transition-amr-parser~setup.py" + ] + }, + { + "index": 901, + "category": "gis", + "githuburl": "https://github.com/amazon-science/earth-forecasting-transformer", + "featured": null, + "links": null, + "description": null, + "_repopath": "amazon-science/earth-forecasting-transformer", + "_reponame": "earth-forecasting-transformer", + "_stars": 171, + "_forks": 29, + "_watches": 10, + "_language": "Jupyter Notebook", "_homepage": "", - "_description": "PyTorch code for DeepTime: Deep Time-Index Meta-Learning for Non-Stationary Time-Series Forecasting", - "_organization": "salesforce", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-03T00:00:00.000Z", - "_created_at": "2022-06-27T00:00:00.000Z", - "_age_weeks": 25, - "_stars_per_week": 6.44, - "_pop_contributor_count": 2, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_description": "earth-forecasting-transformer: Official implementation of Earthformer", + "_organization": "amazon-science", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2022-09-12T00:00:00.000Z", + "_age_weeks": 23, + "_stars_per_week": 7.34, + "_topics": [], + "_last_commit_date": "2023-02-03T00:00:00.000Z", + "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "amazon-auto@amazon", + "bryanyzhu@amazonai", + "gaozhihan@hongkonguniversityofscienceandtechnology", + "giswqs@universityoftennessee", + "sxjscience@amazonwebservices", + "vitusbenson" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "amazon", + "amazonai", + "amazonwebservices", + "hongkonguniversityofscienceandtechnology", + "universityoftennessee" + ], + "_pop_contributor_orgs_raw": [ + "Amazon", + "Amazon AI", + "Amazon Web Services", + "Hong Kong University of Science and Technology", + "University of Tennessee" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.21, - "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 6, - "_pop_updated_since_days": 2, + "_pop_commit_frequency": 0.77, + "_pop_updated_issues_count": 15, + "_pop_closed_issues_count": 13, + "_pop_created_since_days": 5, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 3.0, - "_pop_comment_count": 9.0, + "_pop_issue_count": 15.0, + "_pop_comment_count": 7.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.0, + "_pop_comment_frequency": 0.5, "_pop_dependents_count": 0, - "_pop_score": 12.76, + "_pop_score": 23.29, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/salesforce/deeptime/master/README.md", - "_readme_localurl": "salesforce~deeptime~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/amazon-science/earth-forecasting-transformer/master/README.md", + "_readme_localurl": "amazon-science~earth-forecasting-transformer~README.md", "_requirements_filenames": [ - "requirements.txt" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/salesforce/deeptime/master/requirements.txt" + "https://raw.githubusercontent.com/amazon-science/earth-forecasting-transformer/master/setup.py" ], "_requirements_localurls": [ - "salesforce~deeptime~requirements.txt" + "amazon-science~earth-forecasting-transformer~setup.py" ] }, { - "index": 339, - "category": "perf", - "githuburl": "https://github.com/tlkh/tf-metal-experiments", + "index": 955, + "category": "diffusion", + "githuburl": "https://github.com/coyote-a/ultimate-upscale-for-automatic1111", "featured": null, "links": null, "description": null, - "_repopath": "tlkh/tf-metal-experiments", - "_reponame": "tf-metal-experiments", - "_stars": 160, - "_forks": 17, - "_watches": 9, + "_repopath": "coyote-a/ultimate-upscale-for-automatic1111", + "_reponame": "ultimate-upscale-for-automatic1111", + "_stars": 170, + "_forks": 14, + "_watches": 4, + "_language": "Python", + "_homepage": null, + "_description": "coyote-a/ultimate-upscale-for-automatic1111", + "_organization": "coyote-a", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2023-01-02T00:00:00.000Z", + "_age_weeks": 7, + "_stars_per_week": 23.33, + "_topics": [], + "_last_commit_date": "2023-02-07T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "Coyote-A", + "Danamir", + "Jopezzia" + ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.19, + "_pop_updated_issues_count": 33, + "_pop_closed_issues_count": 16, + "_pop_created_since_days": 2, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 33.0, + "_pop_comment_count": 83.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.5, + "_pop_dependents_count": 0, + "_pop_score": 18.18, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/coyote-a/ultimate-upscale-for-automatic1111/master/README.md", + "_readme_localurl": "coyote-a~ultimate-upscale-for-automatic1111~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 959, + "category": "util", + "githuburl": "https://github.com/cqcl/tket", + "featured": null, + "links": null, + "description": null, + "_repopath": "cqcl/tket", + "_reponame": "tket", + "_stars": 167, + "_forks": 30, + "_watches": 14, + "_language": "C++", + "_homepage": "", + "_description": "tket: Source code for the TKET quantum compiler, Python bindings and utilities", + "_organization": "cqcl", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2021-09-13T00:00:00.000Z", + "_age_weeks": 75, + "_stars_per_week": 2.22, "_topics": [ - "gpu", - "deep-learning", - "tensorflow", - "m1", - "m1-max", - "benchmark", - "bert" + "quantum-computing", + "compiler" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 22, + "_pop_contributor_logins": [ + "CalMacCQ@quantinuum", + "Roland-djee", + "aborgna-q@quantinuum", + "cqc-alec", + "cqc-melf", + "lmondada@cambridgequantumcomputing", + "sjdilkes", + "ss2165@quantinuum", + "willsimmons1465@cambridgequantumcomputing", + "yao-cqc" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "cambridgequantumcomputing", + "quantinuum" + ], + "_pop_contributor_orgs_raw": [ + "Cambridge Quantum Computing", + "Quantinuum" ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 7.48, + "_pop_updated_issues_count": 109, + "_pop_closed_issues_count": 95, + "_pop_created_since_days": 18, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 53, + "_pop_recent_releases_estimated_tags": 57, + "_pop_recent_releases_adjusted_count": 53, + "_pop_issue_count": 109.0, + "_pop_comment_count": 58.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 38.92, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/cqcl/tket/master/README.md", + "_readme_localurl": "cqcl~tket~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 743, + "category": "study", + "githuburl": "https://github.com/koaning/calm-notebooks", + "featured": null, + "links": null, + "description": null, + "_repopath": "koaning/calm-notebooks", + "_reponame": "calm-notebooks", + "_stars": 166, + "_forks": 150, + "_watches": 7, "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "tf-metal-experiments: TensorFlow Metal Backend on Apple Silicon Experiments (just for fun)", - "_organization": "tlkh", - "_updated_at": "2022-11-30T00:00:00.000Z", - "_last_commit_date": "2021-11-15T00:00:00.000Z", - "_created_at": "2021-10-26T00:00:00.000Z", - "_age_weeks": 59, - "_stars_per_week": 2.67, - "_pop_contributor_count": 2, + "_homepage": "https://calmcode.io", + "_description": "calm-notebooks: notebooks that are used at calmcode.io", + "_organization": "koaning", + "_updated_at": "2023-02-07T00:00:00.000Z", + "_created_at": "2020-03-01T00:00:00.000Z", + "_age_weeks": 155, + "_stars_per_week": 1.07, + "_topics": [], + "_last_commit_date": "2021-10-21T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "koaning@explosion" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "singaporeuniversityoftechnologyanddesign" + "explosion" + ], + "_pop_contributor_orgs_raw": [ + "@explosion" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 1, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 14, - "_pop_updated_since_days": 13, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 36, + "_pop_updated_since_days": 16, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 1.0, + "_pop_issue_count": 0.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 7.56, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/tlkh/tf-metal-experiments/master/README.md", - "_readme_localurl": "tlkh~tf-metal-experiments~README.md", + "_pop_score": 7.22, + "_readme_filename": "readme.md", + "_readme_giturl": "https://raw.githubusercontent.com/koaning/calm-notebooks/master/readme.md", + "_readme_localurl": "koaning~calm-notebooks~readme.md", "_requirements_filenames": [], "_requirements_giturls": [], "_requirements_localurls": [] @@ -54538,34 +75572,38 @@ "description": null, "_repopath": "h4kor/graph-force", "_reponame": "graph-force", - "_stars": 159, + "_stars": 163, "_forks": 0, "_watches": 9, + "_language": "Rust", + "_homepage": "https://pypi.org/project/graph-force/", + "_description": "graph-force: Python library for embedding large graphs in 2D space, using force-directed layouts.", + "_organization": "h4kor", + "_updated_at": "2023-02-16T00:00:00.000Z", + "_created_at": "2022-11-28T00:00:00.000Z", + "_age_weeks": 12, + "_stars_per_week": 13.27, "_topics": [ "force-directed-graphs", "graph-algorithms", "python", "python3" ], - "_language": "Rust", - "_homepage": "https://pypi.org/project/graph-force/", - "_description": "graph-force: Python library for embedding large graphs in 2D space, using force-directed layouts.", - "_organization": "h4kor", - "_updated_at": "2022-12-15T00:00:00.000Z", "_last_commit_date": "2022-11-28T00:00:00.000Z", - "_created_at": "2022-11-28T00:00:00.000Z", - "_age_weeks": 3, - "_stars_per_week": 53.0, "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "H4kor" + ], "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.77, "_pop_updated_issues_count": 4, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 1, - "_pop_updated_since_days": 1, + "_pop_created_since_days": 3, + "_pop_updated_since_days": 3, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -54591,56 +75629,6 @@ "h4kor~graph-force~pyproject.toml" ] }, - { - "index": 743, - "category": "study", - "githuburl": "https://github.com/koaning/calm-notebooks", - "featured": null, - "links": null, - "description": null, - "_repopath": "koaning/calm-notebooks", - "_reponame": "calm-notebooks", - "_stars": 158, - "_forks": 135, - "_watches": 7, - "_topics": [], - "_language": "Jupyter Notebook", - "_homepage": "https://calmcode.io", - "_description": "calm-notebooks: notebooks that are used at calmcode.io", - "_organization": "koaning", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2021-10-21T00:00:00.000Z", - "_created_at": "2020-03-01T00:00:00.000Z", - "_age_weeks": 146, - "_stars_per_week": 1.08, - "_pop_contributor_count": 1, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "explosion" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 34, - "_pop_updated_since_days": 14, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 5, - "_pop_score": 10.61, - "_readme_filename": "readme.md", - "_readme_giturl": "https://raw.githubusercontent.com/koaning/calm-notebooks/master/readme.md", - "_readme_localurl": "koaning~calm-notebooks~readme.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 775, "category": "sim", @@ -54650,51 +75638,70 @@ "description": null, "_repopath": "activitysim/activitysim", "_reponame": "activitysim", - "_stars": 145, - "_forks": 86, - "_watches": 43, - "_topics": [ - "python", - "travel-modeling", - "data-science", - "bsd-3-clause", - "microsimulation", - "activitysim" - ], + "_stars": 150, + "_forks": 87, + "_watches": 42, "_language": "Jupyter Notebook", "_homepage": "https://activitysim.github.io", "_description": "activitysim: An Open Platform for Activity-Based Travel Modeling", "_organization": "activitysim", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-09-14T00:00:00.000Z", + "_updated_at": "2023-02-15T00:00:00.000Z", "_created_at": "2014-06-18T00:00:00.000Z", - "_age_weeks": 443, + "_age_weeks": 453, "_stars_per_week": 0.33, - "_pop_contributor_count": 25, + "_topics": [ + "python", + "travel-modeling", + "data-science", + "bsd-3-clause", + "microsimulation", + "activitysim" + ], + "_last_commit_date": "2023-01-31T00:00:00.000Z", + "_pop_contributor_count": 31, + "_pop_contributor_logins": [ + "JoeJimFlood", + "bstabler@ptvgroup", + "chesterharvey", + "dhensle", + "fscottfoti@populus-aimapcraftlabsoaklandanalytics", + "jiffyclub@populus-ai", + "jpn--@cambridgesystematics|georgiatech", + "mxndrwgrdnr", + "nick-fournier-rsg@rsg", + "toliwaga" + ], "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "cambridgesystematics|georgiatech", "populus-ai", "populus-aimapcraftlabsoaklandanalytics", "ptvgroup", - "rsginc" + "rsg" + ], + "_pop_contributor_orgs_raw": [ + "@populus-ai ", + "@populus-ai @mapcraftlabs @oaklandanalytics ", + "Cambridge Systematics | Georgia Tech", + "PTV Group", + "RSG Inc." ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.9, - "_pop_updated_issues_count": 43, - "_pop_closed_issues_count": 19, - "_pop_created_since_days": 104, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 4, + "_pop_commit_frequency": 14.88, + "_pop_updated_issues_count": 55, + "_pop_closed_issues_count": 35, + "_pop_created_since_days": 106, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 5, "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 4, - "_pop_issue_count": 43.0, - "_pop_comment_count": 68.0, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 55.0, + "_pop_comment_count": 56.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 28, - "_pop_score": 45.77, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 44.23, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/activitysim/activitysim/master/README.md", "_readme_localurl": "activitysim~activitysim~README.md", @@ -54720,40 +75727,55 @@ "description": null, "_repopath": "pyscript/pyscript-cli", "_reponame": "pyscript-cli", - "_stars": 142, + "_stars": 146, "_forks": 14, "_watches": 12, - "_topics": [], "_language": "Python", "_homepage": null, "_description": "pyscript-cli: A CLI for PyScript", "_organization": "pyscript", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", + "_updated_at": "2023-02-19T00:00:00.000Z", "_created_at": "2022-05-01T00:00:00.000Z", - "_age_weeks": 33, - "_stars_per_week": 4.28, - "_pop_contributor_count": 7, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 42, + "_stars_per_week": 3.44, + "_topics": [], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "KennyOliver@sixthformcsstudent", + "anaconda-renovate-bot", + "fpliger", + "mattkram@anaconda", + "ntoll", + "ozanturker", + "pre-commit-ci[bot]", + "pww217" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "anaconda" + "anaconda", + "sixthformcsstudent" + ], + "_pop_contributor_orgs_raw": [ + "Anaconda, Inc.", + "Sixth Form CS Student" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.35, - "_pop_updated_issues_count": 5, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 8, + "_pop_commit_frequency": 1.58, + "_pop_updated_issues_count": 34, + "_pop_closed_issues_count": 26, + "_pop_created_since_days": 10, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 9, - "_pop_issue_count": 5.0, - "_pop_comment_count": 4.0, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 34.0, + "_pop_comment_count": 17.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, + "_pop_comment_frequency": 0.5, "_pop_dependents_count": 0, - "_pop_score": 24.94, + "_pop_score": 29.12, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pyscript/pyscript-cli/master/README.md", "_readme_localurl": "pyscript~pyscript-cli~README.md", @@ -54776,9 +75798,17 @@ "description": null, "_repopath": "hugovk/pypistats", "_reponame": "pypistats", - "_stars": 138, - "_forks": 25, + "_stars": 145, + "_forks": 26, "_watches": 4, + "_language": "Python", + "_homepage": "https://pypistats.org/api/", + "_description": "pypistats: Command-line interface to PyPI Stats API to get download stats for Python packages", + "_organization": "hugovk", + "_updated_at": "2023-02-15T00:00:00.000Z", + "_created_at": "2018-09-22T00:00:00.000Z", + "_age_weeks": 230, + "_stars_per_week": 0.63, "_topics": [ "python", "python3", @@ -54792,36 +75822,47 @@ "downloads", "hacktoberfest" ], - "_language": "Python", - "_homepage": "https://pypistats.org/api/", - "_description": "pypistats: Command-line interface to PyPI Stats API to get download stats for Python packages", - "_organization": "hugovk", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-12-03T00:00:00.000Z", - "_created_at": "2018-09-22T00:00:00.000Z", - "_age_weeks": 221, - "_stars_per_week": 0.62, + "_last_commit_date": "2023-02-14T00:00:00.000Z", "_pop_contributor_count": 12, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "CozyDoomer", + "banesullivan@kitware", + "cclauss@christianclauss", + "dependabot-preview[bot]", + "dependabot[bot]", + "erayerdin", + "github-actions[bot]", + "hugovk@nordsoftware", + "pre-commit-ci[bot]", + "renovate[bot]" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "christianclauss", + "kitware", "nordsoftware" ], + "_pop_contributor_orgs_raw": [ + "@Kitware", + "Christian Clauss", + "Nord Software" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.42, - "_pop_updated_issues_count": 14, - "_pop_closed_issues_count": 13, - "_pop_created_since_days": 52, + "_pop_commit_frequency": 1.52, + "_pop_updated_issues_count": 16, + "_pop_closed_issues_count": 15, + "_pop_created_since_days": 54, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 3, "_pop_recent_releases_estimated_tags": 6, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 14.0, - "_pop_comment_count": 11.0, + "_pop_issue_count": 16.0, + "_pop_comment_count": 14.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 8, - "_pop_score": 34.33, + "_pop_comment_frequency": 0.9, + "_pop_dependents_count": 0, + "_pop_score": 34.36, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/hugovk/pypistats/master/README.md", "_readme_localurl": "hugovk~pypistats~README.md", @@ -54839,63 +75880,76 @@ ] }, { - "index": 901, - "category": "gis", - "githuburl": "https://github.com/amazon-science/earth-forecasting-transformer", + "index": 936, + "category": "ml", + "githuburl": "https://github.com/jonasgeiping/breaching", "featured": null, "links": null, "description": null, - "_repopath": "amazon-science/earth-forecasting-transformer", - "_reponame": "earth-forecasting-transformer", - "_stars": 137, - "_forks": 20, - "_watches": 7, - "_topics": [], - "_language": "Jupyter Notebook", + "_repopath": "jonasgeiping/breaching", + "_reponame": "breaching", + "_stars": 144, + "_forks": 32, + "_watches": 3, + "_language": "Python", "_homepage": "", - "_description": "earth-forecasting-transformer: Official implementation of Earthformer", - "_organization": "amazon-science", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2022-09-12T00:00:00.000Z", - "_age_weeks": 14, - "_stars_per_week": 9.79, - "_pop_contributor_count": 5, - "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_description": "Breaching privacy in federated learning scenarios for vision and text", + "_organization": "jonasgeiping", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2022-02-15T00:00:00.000Z", + "_age_weeks": 53, + "_stars_per_week": 2.71, + "_topics": [ + "security", + "machine-learning", + "pytorch", + "federated-learning", + "decentralized-learning", + "privacy-audit" + ], + "_last_commit_date": "2023-02-09T00:00:00.000Z", + "_pop_contributor_count": 17, + "_pop_contributor_logins": [ + "JonasGeiping@computerscienceatumd", + "YuxinWenRick@universityofmaryland", + "lhfowl" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "amazon", - "amazonai", - "amazonwebservices", - "hongkonguniversityofscienceandtechnology", - "universityoftennessee" + "computerscienceatumd", + "universityofmaryland" + ], + "_pop_contributor_orgs_raw": [ + "Computer Science at UMD", + "University of Maryland" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.71, - "_pop_updated_issues_count": 39, - "_pop_closed_issues_count": 38, - "_pop_created_since_days": 3, + "_pop_commit_frequency": 0.88, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 12, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 39.0, - "_pop_comment_count": 46.0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.2, + "_pop_comment_frequency": 1.0, "_pop_dependents_count": 0, - "_pop_score": 26.48, + "_pop_score": 24.64, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/amazon-science/earth-forecasting-transformer/master/README.md", - "_readme_localurl": "amazon-science~earth-forecasting-transformer~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/jonasgeiping/breaching/master/README.md", + "_readme_localurl": "jonasgeiping~breaching~README.md", "_requirements_filenames": [ - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/amazon-science/earth-forecasting-transformer/master/setup.py" + "https://raw.githubusercontent.com/jonasgeiping/breaching/master/pyproject.toml" ], "_requirements_localurls": [ - "amazon-science~earth-forecasting-transformer~setup.py" + "jonasgeiping~breaching~pyproject.toml" ] }, { @@ -54907,9 +75961,17 @@ "description": null, "_repopath": "crmne/cookiecutter-modern-datascience", "_reponame": "cookiecutter-modern-datascience", - "_stars": 136, - "_forks": 27, + "_stars": 142, + "_forks": 29, "_watches": 3, + "_language": "Python", + "_homepage": "", + "_description": "cookiecutter-modern-datascience: Start a data science project with modern tools", + "_organization": "crmne", + "_updated_at": "2023-01-15T00:00:00.000Z", + "_created_at": "2020-07-06T00:00:00.000Z", + "_age_weeks": 137, + "_stars_per_week": 1.03, "_topics": [ "cookiecutter", "cookiecutter-template", @@ -54917,36 +75979,35 @@ "python", "datascience" ], - "_language": "Python", - "_homepage": "", - "_description": "cookiecutter-modern-datascience: Start a data science project with modern tools", - "_organization": "crmne", - "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2022-06-10T00:00:00.000Z", - "_created_at": "2020-07-06T00:00:00.000Z", - "_age_weeks": 128, - "_stars_per_week": 1.06, "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "crmne@freshflowai", + "dependabot[bot]" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "freshflowai" ], + "_pop_contributor_orgs_raw": [ + "@freshflowai" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.02, - "_pop_updated_issues_count": 4, + "_pop_updated_issues_count": 5, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 30, - "_pop_updated_since_days": 6, + "_pop_created_since_days": 32, + "_pop_updated_since_days": 9, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 4.0, - "_pop_comment_count": 2.0, + "_pop_issue_count": 5.0, + "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, + "_pop_comment_frequency": 0.2, "_pop_dependents_count": 0, - "_pop_score": 12.95, + "_pop_score": 11.41, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/crmne/cookiecutter-modern-datascience/master/README.md", "_readme_localurl": "crmne~cookiecutter-modern-datascience~README.md", @@ -54961,55 +76022,211 @@ ] }, { - "index": 826, - "category": "diffusion", - "githuburl": "https://github.com/thereforegames/unprompted", + "index": 785, + "category": "util", + "githuburl": "https://github.com/brokenloop/jsontopydantic", "featured": null, "links": null, "description": null, - "_repopath": "thereforegames/unprompted", - "_reponame": "unprompted", - "_stars": 134, - "_forks": 10, - "_watches": 4, + "_repopath": "brokenloop/jsontopydantic", + "_reponame": "jsontopydantic", + "_stars": 140, + "_forks": 8, + "_watches": 3, + "_language": "TypeScript", + "_homepage": "https://jsontopydantic.com", + "_description": "jsontopydantic: Web tool for generating Pydantic models from JSON objects", + "_organization": "brokenloop", + "_updated_at": "2023-02-04T00:00:00.000Z", + "_created_at": "2020-11-28T00:00:00.000Z", + "_age_weeks": 116, + "_stars_per_week": 1.2, "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "unprompted: Text generator written for Stable Diffusion workflows.", - "_organization": "thereforegames", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2022-10-31T00:00:00.000Z", - "_age_weeks": 7, - "_stars_per_week": 19.14, + "_last_commit_date": "2022-05-13T00:00:00.000Z", "_pop_contributor_count": 2, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "awesomehamster" + "_pop_contributor_logins": [ + "brokenloop", + "matthieudesprez" ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.29, - "_pop_updated_issues_count": 22, - "_pop_closed_issues_count": 16, - "_pop_created_since_days": 2, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.06, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 27, + "_pop_updated_since_days": 9, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 22.0, - "_pop_comment_count": 74.0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.4, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 20.95, + "_pop_score": 6.42, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/thereforegames/unprompted/master/README.md", - "_readme_localurl": "thereforegames~unprompted~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/brokenloop/jsontopydantic/master/README.md", + "_readme_localurl": "brokenloop~jsontopydantic~README.md", "_requirements_filenames": [], "_requirements_giturls": [], "_requirements_localurls": [] }, + { + "index": 466, + "category": "nlp", + "githuburl": "https://github.com/infinitylogesh/mutate", + "featured": null, + "links": null, + "description": null, + "_repopath": "infinitylogesh/mutate", + "_reponame": "mutate", + "_stars": 140, + "_forks": 11, + "_watches": 3, + "_language": "Python", + "_homepage": "", + "_description": "mutate: A library to synthesize text datasets using Large Language Models (LLM)", + "_organization": "infinitylogesh", + "_updated_at": "2023-02-16T00:00:00.000Z", + "_created_at": "2021-12-29T00:00:00.000Z", + "_age_weeks": 60, + "_stars_per_week": 2.33, + "_topics": [ + "nlp-library", + "text-generation", + "language-model", + "data-augmentation", + "data-labeling" + ], + "_last_commit_date": "2023-01-17T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "davidberenstein1957@argilla-io", + "infinitylogesh" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "argilla-io" + ], + "_pop_contributor_orgs_raw": [ + "@argilla-io " + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.23, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 14, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 7.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 18.71, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/infinitylogesh/mutate/master/README.md", + "_readme_localurl": "infinitylogesh~mutate~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/infinitylogesh/mutate/master/requirements.txt", + "https://raw.githubusercontent.com/infinitylogesh/mutate/master/setup.py", + "https://raw.githubusercontent.com/infinitylogesh/mutate/master/pyproject.toml" + ], + "_requirements_localurls": [ + "infinitylogesh~mutate~requirements.txt", + "infinitylogesh~mutate~setup.py", + "infinitylogesh~mutate~pyproject.toml" + ] + }, + { + "index": 774, + "category": "sim", + "githuburl": "https://github.com/openfisca/openfisca-core", + "featured": null, + "links": null, + "description": null, + "_repopath": "openfisca/openfisca-core", + "_reponame": "openfisca-core", + "_stars": 139, + "_forks": 70, + "_watches": 24, + "_language": "Python", + "_homepage": "https://openfisca.org", + "_description": "openfisca-core: OpenFisca core engine. See other repositories for countries-specific code & data.", + "_organization": "openfisca", + "_updated_at": "2023-02-08T00:00:00.000Z", + "_created_at": "2013-12-29T00:00:00.000Z", + "_age_weeks": 477, + "_stars_per_week": 0.29, + "_topics": [ + "legislation-as-code", + "rules-as-code", + "better-rules", + "microsimulation" + ], + "_last_commit_date": "2023-01-24T00:00:00.000Z", + "_pop_contributor_count": 58, + "_pop_contributor_logins": [ + "Anna-Livia", + "HAEKADI@codeworks", + "MattiSG", + "Morendil@codeworksfrance", + "benjello", + "clems", + "eraviart", + "fpagnoux", + "maukoquiroga", + "sandcha" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "codeworks", + "codeworksfrance" + ], + "_pop_contributor_orgs_raw": [ + "@CodeWorksFrance", + "CodeWorks" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 3.0, + "_pop_updated_issues_count": 52, + "_pop_closed_issues_count": 31, + "_pop_created_since_days": 111, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 42, + "_pop_recent_releases_adjusted_count": 42, + "_pop_issue_count": 52.0, + "_pop_comment_count": 69.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.3, + "_pop_dependents_count": 0, + "_pop_score": 43.44, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/openfisca/openfisca-core/master/README.md", + "_readme_localurl": "openfisca~openfisca-core~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/openfisca/openfisca-core/master/setup.py" + ], + "_requirements_localurls": [ + "openfisca~openfisca-core~setup.py" + ] + }, { "index": 564, "category": "gis", @@ -55019,41 +76236,58 @@ "description": null, "_repopath": "geopandas/pyogrio", "_reponame": "pyogrio", - "_stars": 134, - "_forks": 8, - "_watches": 8, - "_topics": [], + "_stars": 139, + "_forks": 10, + "_watches": 9, "_language": "Python", "_homepage": "https://pyogrio.readthedocs.io", "_description": "pyogrio: Vectorized vector I/O using OGR", "_organization": "geopandas", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", + "_updated_at": "2023-02-19T00:00:00.000Z", "_created_at": "2020-03-27T00:00:00.000Z", - "_age_weeks": 142, - "_stars_per_week": 0.94, - "_pop_contributor_count": 8, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_age_weeks": 151, + "_stars_per_week": 0.92, + "_topics": [], + "_last_commit_date": "2023-02-08T00:00:00.000Z", + "_pop_contributor_count": 9, + "_pop_contributor_logins": [ + "EwoutH", + "TheBiggerGuy", + "brendan-ward@astutespruce", + "dependabot[bot]", + "jorisvandenbossche", + "martinfleis", + "theroggy", + "tqa236@descartesunderwriting", + "weiji14@developmentseed" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "astutespruce", - "udl-ai" + "descartesunderwriting", + "developmentseed" + ], + "_pop_contributor_orgs_raw": [ + "@developmentseed", + "Astute Spruce, LLC", + "Descartes Underwriting" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.87, - "_pop_updated_issues_count": 43, - "_pop_closed_issues_count": 29, - "_pop_created_since_days": 33, + "_pop_commit_frequency": 2.08, + "_pop_updated_issues_count": 54, + "_pop_closed_issues_count": 41, + "_pop_created_since_days": 35, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 6, + "_pop_recent_releases_count": 7, "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 43.0, - "_pop_comment_count": 84.0, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 54.0, + "_pop_comment_count": 83.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.0, - "_pop_dependents_count": 5, - "_pop_score": 38.22, + "_pop_comment_frequency": 1.5, + "_pop_dependents_count": 0, + "_pop_score": 36.82, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/geopandas/pyogrio/master/README.md", "_readme_localurl": "geopandas~pyogrio~README.md", @@ -55074,175 +76308,218 @@ ] }, { - "index": 147, - "category": "graph", - "githuburl": "https://github.com/guyallard/markov_clustering", + "index": 555, + "category": "ml", + "githuburl": "https://github.com/nicolas-chaulet/torch-points3d", "featured": null, "links": null, "description": null, - "_repopath": "guyallard/markov_clustering", - "_reponame": "markov_clustering", - "_stars": 132, - "_forks": 33, - "_watches": 9, - "_topics": [ - "markov-clustering", - "clustering", - "python", - "networks" + "_repopath": "nicolas-chaulet/torch-points3d", + "_reponame": "torch-points3d", + "_stars": 133, + "_forks": 32, + "_watches": 0, + "_language": null, + "_homepage": "https://torch-points3d.readthedocs.io/en/latest/", + "_description": "torch-points3d: Pytorch framework for doing deep learning on point clouds.", + "_organization": "nicolas-chaulet", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2022-01-09T00:00:00.000Z", + "_age_weeks": 58, + "_stars_per_week": 2.28, + "_topics": [], + "_last_commit_date": "2021-12-10T00:00:00.000Z", + "_pop_contributor_count": 29, + "_pop_contributor_logins": [ + "CCInc@universityoftexasatdallas", + "daili650", + "ggrzeczkowicz", + "humanpose1", + "liubigli", + "loicland@strudel/ign", + "nicolas-chaulet@canoapbc", + "tchaton@lightning.ai|pytorchlightning", + "tristanheywood", + "zeliu98@microsoftresearchasia" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "canoapbc", + "lightning.ai|pytorchlightning", + "microsoftresearchasia", + "strudel/ign", + "universityoftexasatdallas" + ], + "_pop_contributor_orgs_raw": [ + "@CanoaPBC", + "Lightning.ai | Pytorch Lightning", + "Microsoft Research Asia", + "STRUDEL/ IGN", + "University of Texas at Dallas" ], - "_language": "Python", - "_homepage": null, - "_description": "markov_clustering: markov clustering in python", - "_organization": "guyallard", - "_updated_at": "2022-11-15T00:00:00.000Z", - "_last_commit_date": "2018-12-11T00:00:00.000Z", - "_created_at": "2017-09-27T00:00:00.000Z", - "_age_weeks": 272, - "_stars_per_week": 0.48, - "_pop_contributor_count": 3, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 64, - "_pop_updated_since_days": 49, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 14, + "_pop_updated_since_days": 15, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 2.0, - "_pop_comment_count": 1.0, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 9, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 7.43, + "_pop_score": 22.14, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/guyallard/markov_clustering/master/README.md", - "_readme_localurl": "guyallard~markov_clustering~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nicolas-chaulet/torch-points3d/master/README.md", + "_readme_localurl": "nicolas-chaulet~torch-points3d~README.md", "_requirements_filenames": [ "requirements.txt", - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/guyallard/markov_clustering/master/requirements.txt", - "https://raw.githubusercontent.com/guyallard/markov_clustering/master/setup.py" + "https://raw.githubusercontent.com/nicolas-chaulet/torch-points3d/master/requirements.txt", + "https://raw.githubusercontent.com/nicolas-chaulet/torch-points3d/master/pyproject.toml" ], "_requirements_localurls": [ - "guyallard~markov_clustering~requirements.txt", - "guyallard~markov_clustering~setup.py" + "nicolas-chaulet~torch-points3d~requirements.txt", + "nicolas-chaulet~torch-points3d~pyproject.toml" ] }, { - "index": 774, - "category": "sim", - "githuburl": "https://github.com/openfisca/openfisca-core", + "index": 147, + "category": "graph", + "githuburl": "https://github.com/guyallard/markov_clustering", "featured": null, "links": null, "description": null, - "_repopath": "openfisca/openfisca-core", - "_reponame": "openfisca-core", - "_stars": 131, - "_forks": 71, - "_watches": 24, + "_repopath": "guyallard/markov_clustering", + "_reponame": "markov_clustering", + "_stars": 133, + "_forks": 34, + "_watches": 9, + "_language": "Python", + "_homepage": null, + "_description": "markov_clustering: markov clustering in python", + "_organization": "guyallard", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2017-09-27T00:00:00.000Z", + "_age_weeks": 282, + "_stars_per_week": 0.47, "_topics": [ - "legislation-as-code", - "rules-as-code", - "better-rules", - "microsimulation" + "markov-clustering", + "clustering", + "python", + "networks" ], - "_language": "Python", - "_homepage": "https://openfisca.org", - "_description": "openfisca-core: OpenFisca core engine. See other repositories for countries-specific code & data.", - "_organization": "openfisca", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", - "_created_at": "2013-12-29T00:00:00.000Z", - "_age_weeks": 468, - "_stars_per_week": 0.28, - "_pop_contributor_count": 58, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "codeworksfrance" + "_last_commit_date": "2018-12-11T00:00:00.000Z", + "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "GuyAllard", + "jonahar" ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.31, - "_pop_updated_issues_count": 61, - "_pop_closed_issues_count": 35, - "_pop_created_since_days": 109, - "_pop_updated_since_days": 0, + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 66, + "_pop_updated_since_days": 51, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 43, - "_pop_recent_releases_adjusted_count": 43, - "_pop_issue_count": 62.0, - "_pop_comment_count": 83.0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.3, - "_pop_dependents_count": 53, - "_pop_score": 50.58, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 7.87, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/openfisca/openfisca-core/master/README.md", - "_readme_localurl": "openfisca~openfisca-core~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/guyallard/markov_clustering/master/README.md", + "_readme_localurl": "guyallard~markov_clustering~README.md", "_requirements_filenames": [ + "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/openfisca/openfisca-core/master/setup.py" + "https://raw.githubusercontent.com/guyallard/markov_clustering/master/requirements.txt", + "https://raw.githubusercontent.com/guyallard/markov_clustering/master/setup.py" ], "_requirements_localurls": [ - "openfisca~openfisca-core~setup.py" + "guyallard~markov_clustering~requirements.txt", + "guyallard~markov_clustering~setup.py" ] }, { - "index": 785, + "index": 316, "category": "util", - "githuburl": "https://github.com/brokenloop/jsontopydantic", + "githuburl": "https://github.com/irmen/pyminiaudio", "featured": null, "links": null, "description": null, - "_repopath": "brokenloop/jsontopydantic", - "_reponame": "jsontopydantic", + "_repopath": "irmen/pyminiaudio", + "_reponame": "pyminiaudio", "_stars": 128, - "_forks": 7, + "_forks": 16, "_watches": 3, + "_language": "C", + "_homepage": "", + "_description": "pyminiaudio: python interface to the miniaudio audio playback, recording, decoding and conversion library", + "_organization": "irmen", + "_updated_at": "2023-02-14T00:00:00.000Z", + "_created_at": "2019-06-30T00:00:00.000Z", + "_age_weeks": 190, + "_stars_per_week": 0.67, "_topics": [], - "_language": "TypeScript", - "_homepage": "https://jsontopydantic.com", - "_description": "jsontopydantic: Web tool for generating Pydantic models from JSON objects", - "_organization": "brokenloop", - "_updated_at": "2022-12-12T00:00:00.000Z", - "_last_commit_date": "2022-05-13T00:00:00.000Z", - "_created_at": "2020-11-28T00:00:00.000Z", - "_age_weeks": 107, - "_stars_per_week": 1.19, - "_pop_contributor_count": 2, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_last_commit_date": "2023-02-09T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "cameronmaske@closedlooplabs", + "irmen", + "martinosspa", + "shauneccles" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "closedlooplabs" + ], + "_pop_contributor_orgs_raw": [ + "Closed Loop Labs" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.08, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 25, - "_pop_updated_since_days": 7, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 2.0, - "_pop_comment_count": 0.0, + "_pop_commit_frequency": 0.4, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 6, + "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_adjusted_count": 6, + "_pop_issue_count": 4.0, + "_pop_comment_count": 9.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, + "_pop_comment_frequency": 2.2, "_pop_dependents_count": 0, - "_pop_score": 6.82, + "_pop_score": 27.76, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/brokenloop/jsontopydantic/master/README.md", - "_readme_localurl": "brokenloop~jsontopydantic~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/irmen/pyminiaudio/master/README.md", + "_readme_localurl": "irmen~pyminiaudio~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/irmen/pyminiaudio/master/setup.py" + ], + "_requirements_localurls": [ + "irmen~pyminiaudio~setup.py" + ] }, { "index": 290, @@ -55253,9 +76530,17 @@ "description": null, "_repopath": "eugeneyan/python-collab-template", "_reponame": "python-collab-template", - "_stars": 125, - "_forks": 35, + "_stars": 127, + "_forks": 37, "_watches": 4, + "_language": "Python", + "_homepage": "https://eugeneyan.com/writing/setting-up-python-project-for-automation-and-collaboration/", + "_description": "python-collab-template: \ud83d\udee0 Python project template with unit tests, code coverage, linting, type checking, Makefile wrapper, and GitHub Actions.", + "_organization": "eugeneyan", + "_updated_at": "2023-01-24T00:00:00.000Z", + "_created_at": "2020-06-21T00:00:00.000Z", + "_age_weeks": 139, + "_stars_per_week": 0.91, "_topics": [ "python", "unit-testing", @@ -55266,27 +76551,26 @@ "coverage", "hacktoberfest" ], - "_language": "Python", - "_homepage": "https://eugeneyan.com/writing/setting-up-python-project-for-automation-and-collaboration/", - "_description": "python-collab-template: \ud83d\udee0 Python project template with unit tests, code coverage, linting, type checking, Makefile wrapper, and GitHub Actions.", - "_organization": "eugeneyan", - "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2022-07-02T00:00:00.000Z", - "_created_at": "2020-06-21T00:00:00.000Z", - "_age_weeks": 130, - "_stars_per_week": 0.96, "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "eugeneyan@amzn", + "segunadelowo" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "amzn" ], + "_pop_contributor_orgs_raw": [ + "@amzn" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.04, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 30, - "_pop_updated_since_days": 6, + "_pop_created_since_days": 32, + "_pop_updated_since_days": 8, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -55295,7 +76579,7 @@ "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 10.15, + "_pop_score": 9.69, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/eugeneyan/python-collab-template/master/README.md", "_readme_localurl": "eugeneyan~python-collab-template~README.md", @@ -55304,60 +76588,160 @@ "_requirements_localurls": [] }, { - "index": 583, - "category": "web", - "githuburl": "https://github.com/developmentseed/fastai-serving", + "index": 407, + "category": "data", + "githuburl": "https://github.com/google/weather-tools", "featured": null, "links": null, "description": null, - "_repopath": "developmentseed/fastai-serving", - "_reponame": "fastai-serving", - "_stars": 121, - "_forks": 11, - "_watches": 8, + "_repopath": "google/weather-tools", + "_reponame": "weather-tools", + "_stars": 125, + "_forks": 27, + "_watches": 15, + "_language": "Python", + "_homepage": "https://weather-tools.readthedocs.io/", + "_description": "weather-tools: Apache Beam pipelines to make weather data accessible and useful.", + "_organization": "google", + "_updated_at": "2023-02-14T00:00:00.000Z", + "_created_at": "2021-11-22T00:00:00.000Z", + "_age_weeks": 65, + "_stars_per_week": 1.91, "_topics": [ - "machine-learning", "python", - "deep-learning", - "pytorch", - "docker" + "apache-beam", + "weather" + ], + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 26, + "_pop_contributor_logins": [ + "CillianFn", + "alxmrs", + "deepgabani8@infocuspinnovationspvt.ltd.", + "dlowell12", + "ksic8", + "mahrsee1997", + "pbattaglia", + "pramodg", + "sgreenberg@google", + "uhager" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "google", + "infocuspinnovationspvt.ltd." + ], + "_pop_contributor_orgs_raw": [ + "Google", + "Infocusp Innovations Pvt. Ltd." + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.79, + "_pop_updated_issues_count": 48, + "_pop_closed_issues_count": 29, + "_pop_created_since_days": 15, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 47.0, + "_pop_comment_count": 25.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 33.0, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/google/weather-tools/master/README.md", + "_readme_localurl": "google~weather-tools~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/google/weather-tools/master/setup.py" ], + "_requirements_localurls": [ + "google~weather-tools~setup.py" + ] + }, + { + "index": 835, + "category": "typing", + "githuburl": "https://github.com/jellezijlstra/autotyping", + "featured": null, + "links": null, + "description": null, + "_repopath": "jellezijlstra/autotyping", + "_reponame": "autotyping", + "_stars": 124, + "_forks": 9, + "_watches": 4, "_language": "Python", - "_homepage": "", - "_description": "fastai-serving: A Docker image for serving fast.ai models, mimicking the API of Tensorflow Serving", - "_organization": "developmentseed", - "_updated_at": "2022-04-08T00:00:00.000Z", - "_last_commit_date": "2020-02-10T00:00:00.000Z", - "_created_at": "2019-07-01T00:00:00.000Z", - "_age_weeks": 181, - "_stars_per_week": 0.67, - "_pop_contributor_count": 2, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_homepage": null, + "_description": "jellezijlstra/autotyping", + "_organization": "jellezijlstra", + "_updated_at": "2023-02-16T00:00:00.000Z", + "_created_at": "2021-06-25T00:00:00.000Z", + "_age_weeks": 86, + "_stars_per_week": 1.43, + "_topics": [], + "_last_commit_date": "2023-02-14T00:00:00.000Z", + "_pop_contributor_count": 7, + "_pop_contributor_logins": [ + "DmytroLitvinov@softformance", + "JelleZijlstra@quora", + "MarcoGorelli@quansight", + "hauntsaninja@openai", + "jakkdl", + "orsinium@sendcloud", + "sobolevn" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "cloud-gov(work)+personalprojects;" + "openai", + "quansight", + "quora", + "sendcloud", + "softformance" + ], + "_pop_contributor_orgs_raw": [ + "@OpenAI", + "@quora ", + "@sendcloud", + "@softformance ", + "Quansight" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 42, - "_pop_updated_since_days": 35, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, + "_pop_commit_frequency": 0.35, + "_pop_updated_issues_count": 15, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 20, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 15.0, + "_pop_comment_count": 25.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, + "_pop_comment_frequency": 1.7, "_pop_dependents_count": 0, - "_pop_score": 6.87, + "_pop_score": 32.48, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/developmentseed/fastai-serving/master/README.md", - "_readme_localurl": "developmentseed~fastai-serving~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/jellezijlstra/autotyping/master/README.md", + "_readme_localurl": "jellezijlstra~autotyping~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/jellezijlstra/autotyping/master/setup.py", + "https://raw.githubusercontent.com/jellezijlstra/autotyping/master/pyproject.toml" + ], + "_requirements_localurls": [ + "jellezijlstra~autotyping~setup.py", + "jellezijlstra~autotyping~pyproject.toml" + ] }, { "index": 305, @@ -55368,29 +76752,34 @@ "description": null, "_repopath": "xrudelis/pytrait", "_reponame": "pytrait", - "_stars": 121, + "_stars": 123, "_forks": 3, "_watches": 3, - "_topics": [], "_language": "Python", "_homepage": null, "_description": "pytrait: Traits for Python3", "_organization": "xrudelis", - "_updated_at": "2022-11-15T00:00:00.000Z", - "_last_commit_date": "2021-11-27T00:00:00.000Z", + "_updated_at": "2023-02-15T00:00:00.000Z", "_created_at": "2021-11-21T00:00:00.000Z", - "_age_weeks": 56, - "_stars_per_week": 2.16, + "_age_weeks": 65, + "_stars_per_week": 1.88, + "_topics": [], + "_last_commit_date": "2021-11-27T00:00:00.000Z", "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "sobolevn", + "xrudelis" + ], "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 13, - "_pop_updated_since_days": 13, + "_pop_created_since_days": 15, + "_pop_updated_since_days": 15, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -55414,182 +76803,292 @@ ] }, { - "index": 555, - "category": "ml", - "githuburl": "https://github.com/nicolas-chaulet/torch-points3d", + "index": 571, + "category": "gis", + "githuburl": "https://github.com/developmentseed/geojson-pydantic", "featured": null, "links": null, "description": null, - "_repopath": "nicolas-chaulet/torch-points3d", - "_reponame": "torch-points3d", - "_stars": 118, - "_forks": 30, - "_watches": 0, - "_topics": [], - "_language": null, - "_homepage": "https://torch-points3d.readthedocs.io/en/latest/", - "_description": "torch-points3d: Pytorch framework for doing deep learning on point clouds.", - "_organization": "nicolas-chaulet", - "_updated_at": "2022-12-12T00:00:00.000Z", - "_last_commit_date": "2021-12-10T00:00:00.000Z", - "_created_at": "2022-01-09T00:00:00.000Z", - "_age_weeks": 49, - "_stars_per_week": 2.4, - "_pop_contributor_count": 29, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_repopath": "developmentseed/geojson-pydantic", + "_reponame": "geojson-pydantic", + "_stars": 122, + "_forks": 28, + "_watches": 11, + "_language": "Python", + "_homepage": null, + "_description": "geojson-pydantic: Pydantic data models for the GeoJSON spec", + "_organization": "developmentseed", + "_updated_at": "2023-02-21T00:00:00.000Z", + "_created_at": "2020-05-21T00:00:00.000Z", + "_age_weeks": 143, + "_stars_per_week": 0.85, + "_topics": [ + "geojson", + "pydantic", + "geojson-spec" + ], + "_last_commit_date": "2023-02-10T00:00:00.000Z", + "_pop_contributor_count": 19, + "_pop_contributor_logins": [ + "dorianturba", + "drewbo@cloud-gov(work)+personalprojects;", + "eseglem@bigbear.ai", + "geospatial-jeff@regrowag", + "hawkaa@duneanalytics", + "iwpnd@tiermobility", + "moradology", + "regisfbrilhante", + "vincentsarago@developmentseed", + "yellowcap" + ], + "_pop_contributor_orgs_len": 6, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "canoapbc", - "grid.ai|pytorchlightning", - "universityoftexasatdallas" + "bigbear.ai", + "cloud-gov(work)+personalprojects;", + "developmentseed", + "duneanalytics", + "regrowag", + "tiermobility" + ], + "_pop_contributor_orgs_raw": [ + "@TierMobility ", + "@cloud-gov (work) + personal projects; ", + "@developmentseed ", + "@duneanalytics", + "@regrowag", + "BigBear.ai" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 11, - "_pop_updated_since_days": 12, + "_pop_commit_frequency": 1.44, + "_pop_updated_issues_count": 24, + "_pop_closed_issues_count": 17, + "_pop_created_since_days": 34, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 11, - "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, + "_pop_recent_releases_estimated_tags": 5, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 24.0, + "_pop_comment_count": 53.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 38, - "_pop_score": 27.01, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 0, + "_pop_score": 40.42, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/nicolas-chaulet/torch-points3d/master/README.md", - "_readme_localurl": "nicolas-chaulet~torch-points3d~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/developmentseed/geojson-pydantic/master/README.md", + "_readme_localurl": "developmentseed~geojson-pydantic~README.md", "_requirements_filenames": [ - "requirements.txt", "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/nicolas-chaulet/torch-points3d/master/requirements.txt", - "https://raw.githubusercontent.com/nicolas-chaulet/torch-points3d/master/pyproject.toml" + "https://raw.githubusercontent.com/developmentseed/geojson-pydantic/master/pyproject.toml" ], "_requirements_localurls": [ - "nicolas-chaulet~torch-points3d~requirements.txt", - "nicolas-chaulet~torch-points3d~pyproject.toml" + "developmentseed~geojson-pydantic~pyproject.toml" ] }, { - "index": 316, - "category": "util", - "githuburl": "https://github.com/irmen/pyminiaudio", + "index": 583, + "category": "web", + "githuburl": "https://github.com/developmentseed/fastai-serving", "featured": null, "links": null, "description": null, - "_repopath": "irmen/pyminiaudio", - "_reponame": "pyminiaudio", - "_stars": 117, - "_forks": 13, - "_watches": 3, - "_topics": [], - "_language": "C", + "_repopath": "developmentseed/fastai-serving", + "_reponame": "fastai-serving", + "_stars": 121, + "_forks": 11, + "_watches": 8, + "_language": "Python", "_homepage": "", - "_description": "pyminiaudio: python interface to the miniaudio audio playback, recording, decoding and conversion library", - "_organization": "irmen", - "_updated_at": "2022-11-22T00:00:00.000Z", - "_last_commit_date": "2022-11-15T00:00:00.000Z", - "_created_at": "2019-06-30T00:00:00.000Z", - "_age_weeks": 181, - "_stars_per_week": 0.65, - "_pop_contributor_count": 4, + "_description": "fastai-serving: A Docker image for serving fast.ai models, mimicking the API of Tensorflow Serving", + "_organization": "developmentseed", + "_updated_at": "2022-04-08T00:00:00.000Z", + "_created_at": "2019-07-01T00:00:00.000Z", + "_age_weeks": 190, + "_stars_per_week": 0.64, + "_topics": [ + "machine-learning", + "python", + "deep-learning", + "pytorch", + "docker" + ], + "_last_commit_date": "2020-02-10T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "drewbo@cloud-gov(work)+personalprojects;" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "closedlooplabs" + "cloud-gov(work)+personalprojects;" + ], + "_pop_contributor_orgs_raw": [ + "@cloud-gov (work) + personal projects; " ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.44, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 42, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 7, - "_pop_recent_releases_estimated_tags": 9, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 4.0, - "_pop_comment_count": 6.0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 44, + "_pop_updated_since_days": 37, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.5, - "_pop_dependents_count": 8, - "_pop_score": 29.76, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 6.85, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/irmen/pyminiaudio/master/README.md", - "_readme_localurl": "irmen~pyminiaudio~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/developmentseed/fastai-serving/master/README.md", + "_readme_localurl": "developmentseed~fastai-serving~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 973, + "category": "data", + "githuburl": "https://github.com/nickreynke/python-gedcom", + "featured": null, + "links": null, + "description": null, + "_repopath": "nickreynke/python-gedcom", + "_reponame": "python-gedcom", + "_stars": 121, + "_forks": 31, + "_watches": 16, + "_language": "Python", + "_homepage": "https://nickreynke.github.io/python-gedcom/gedcom/index.html", + "_description": "python-gedcom: Python module for parsing, analyzing, and manipulating GEDCOM files", + "_organization": "nickreynke", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2018-01-09T00:00:00.000Z", + "_age_weeks": 267, + "_stars_per_week": 0.45, + "_topics": [ + "python", + "gedcom", + "parser", + "gedcom-parser" + ], + "_last_commit_date": "2021-06-03T00:00:00.000Z", + "_pop_contributor_count": 16, + "_pop_contributor_logins": [ + "KeithPetro", + "damonbrodie", + "joephayes@telegraphio", + "jonorthwash", + "madprime@openhumans", + "mameen", + "mtdcr", + "nickreynke", + "paulproteus@day:reduct.night:?!", + "scavone" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "day:reduct.night:?!", + "openhumans", + "telegraphio" + ], + "_pop_contributor_orgs_raw": [ + "@OpenHumans ", + "@telegraphio", + "Day: Reduct. Night: ?!" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 62, + "_pop_updated_since_days": 21, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 20.41, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/nickreynke/python-gedcom/master/README.md", + "_readme_localurl": "nickreynke~python-gedcom~README.md", "_requirements_filenames": [ - "setup.py" + "setup.py", + "Pipfile" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/irmen/pyminiaudio/master/setup.py" + "https://raw.githubusercontent.com/nickreynke/python-gedcom/master/setup.py", + "https://raw.githubusercontent.com/nickreynke/python-gedcom/master/Pipfile" ], "_requirements_localurls": [ - "irmen~pyminiaudio~setup.py" + "nickreynke~python-gedcom~setup.py", + "nickreynke~python-gedcom~Pipfile" ] }, { - "index": 571, - "category": "gis", - "githuburl": "https://github.com/developmentseed/geojson-pydantic", + "index": 463, + "category": "data", + "githuburl": "https://github.com/psycoguana/subredditmediadownloader", "featured": null, "links": null, "description": null, - "_repopath": "developmentseed/geojson-pydantic", - "_reponame": "geojson-pydantic", - "_stars": 113, - "_forks": 27, - "_watches": 11, - "_topics": [ - "geojson", - "pydantic", - "geojson-spec" - ], + "_repopath": "psycoguana/subredditmediadownloader", + "_reponame": "SubredditMediaDownloader", + "_stars": 112, + "_forks": 8, + "_watches": 3, "_language": "Python", "_homepage": null, - "_description": "geojson-pydantic: Pydantic data models for the GeoJSON spec", - "_organization": "developmentseed", - "_updated_at": "2022-11-29T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2020-05-21T00:00:00.000Z", - "_age_weeks": 134, - "_stars_per_week": 0.84, - "_pop_contributor_count": 19, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "bigbear.ai", - "cloud-gov(work)+personalprojects;", - "developmentseed" + "_description": "SubredditMediaDownloader: Simple Python script to download images and videos from public subreddits without using Reddit's API \ud83d\ude0e", + "_organization": "psycoguana", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2022-02-18T00:00:00.000Z", + "_age_weeks": 52, + "_stars_per_week": 2.12, + "_topics": [], + "_last_commit_date": "2023-01-17T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "Psycoguana", + "coenvlietstra" ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.21, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 31, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.37, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 12, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 6, - "_pop_issue_count": 4.0, - "_pop_comment_count": 3.0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 3.0, + "_pop_comment_count": 12.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.8, - "_pop_dependents_count": 5, - "_pop_score": 35.7, + "_pop_comment_frequency": 4.0, + "_pop_dependents_count": 0, + "_pop_score": 16.91, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/developmentseed/geojson-pydantic/master/README.md", - "_readme_localurl": "developmentseed~geojson-pydantic~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/psycoguana/subredditmediadownloader/master/README.md", + "_readme_localurl": "psycoguana~subredditmediadownloader~README.md", "_requirements_filenames": [ - "pyproject.toml" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/developmentseed/geojson-pydantic/master/pyproject.toml" + "https://raw.githubusercontent.com/psycoguana/subredditmediadownloader/master/requirements.txt" ], "_requirements_localurls": [ - "developmentseed~geojson-pydantic~pyproject.toml" + "psycoguana~subredditmediadownloader~requirements.txt" ] }, { @@ -55601,9 +77100,17 @@ "description": null, "_repopath": "crowdbotp/socialways", "_reponame": "socialways", - "_stars": 110, + "_stars": 111, "_forks": 45, "_watches": 9, + "_language": "Python", + "_homepage": "", + "_description": "socialways: Social Ways: Learning Multi-Modal Distributions of Pedestrian Trajectories with GANs (CVPR 2019)", + "_organization": "crowdbotp", + "_updated_at": "2023-01-26T00:00:00.000Z", + "_created_at": "2019-04-23T00:00:00.000Z", + "_age_weeks": 200, + "_stars_per_week": 0.55, "_topics": [ "trajectory-prediction", "human-trajectory-prediction", @@ -55621,28 +77128,29 @@ "info-gan", "crowd-simulation" ], - "_language": "Python", - "_homepage": "", - "_description": "socialways: Social Ways: Learning Multi-Modal Distributions of Pedestrian Trajectories with GANs (CVPR 2019)", - "_organization": "crowdbotp", - "_updated_at": "2022-12-13T00:00:00.000Z", "_last_commit_date": "2020-03-20T00:00:00.000Z", - "_created_at": "2019-04-23T00:00:00.000Z", - "_age_weeks": 190, - "_stars_per_week": 0.58, "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "amiryanj@inriaresearchcenter", + "franciscovalentecastro", + "jbhayet@cimat" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "cimat", "inriaresearchcenter" ], + "_pop_contributor_orgs_raw": [ + "CIMAT", + "Inria Research Center" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 44, - "_pop_updated_since_days": 33, + "_pop_created_since_days": 47, + "_pop_updated_since_days": 36, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -55651,7 +77159,7 @@ "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 9.91, + "_pop_score": 9.86, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/crowdbotp/socialways/master/README.md", "_readme_localurl": "crowdbotp~socialways~README.md", @@ -55660,182 +77168,157 @@ "_requirements_localurls": [] }, { - "index": 407, - "category": "data", - "githuburl": "https://github.com/google/weather-tools", + "index": 945, + "category": "web", + "githuburl": "https://github.com/rawheel/fastapi-boilerplate", "featured": null, "links": null, "description": null, - "_repopath": "google/weather-tools", - "_reponame": "weather-tools", - "_stars": 109, - "_forks": 23, - "_watches": 12, + "_repopath": "rawheel/fastapi-boilerplate", + "_reponame": "fastapi-boilerplate", + "_stars": 108, + "_forks": 10, + "_watches": 1, + "_language": "Python", + "_homepage": "", + "_description": "fastapi-boilerplate: Dockerized FastAPI boiler plate similar to Django code structure with views, serializers(pydantic) and model( Sqlalchemy ORM) with dockerized database(PostgresSQL) and PgAdmin. \ud83d\ude80 ", + "_organization": "rawheel", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-12-28T00:00:00.000Z", + "_age_weeks": 8, + "_stars_per_week": 13.5, "_topics": [ - "python", - "apache-beam", - "weather" + "alembic", + "boilerplate", + "docker", + "fastapi", + "fastapi-boilerplate", + "fastapi-sqlalchemy", + "postgresql", + "pydantic", + "python3", + "docker-compose", + "sqlalchemy", + "sqlalchemy-orm", + "poetry-python", + "orm" ], - "_language": "Python", - "_homepage": "https://weather-tools.readthedocs.io/", - "_description": "weather-tools: Apache Beam pipelines to make weather data accessible and useful.", - "_organization": "google", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-12-13T00:00:00.000Z", - "_created_at": "2021-11-22T00:00:00.000Z", - "_age_weeks": 56, - "_stars_per_week": 1.95, - "_pop_contributor_count": 25, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-01-07T00:00:00.000Z", + "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "rawheel@github", + "sebastianmarines@clickit:devops&softwaredevelopment" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "infocuspinnovationspvt.ltd." + "clickit:devops&softwaredevelopment", + "github" + ], + "_pop_contributor_orgs_raw": [ + "ClickIT: DevOps & Software Development", + "GitHub" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 2.19, - "_pop_updated_issues_count": 48, - "_pop_closed_issues_count": 25, - "_pop_created_since_days": 13, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 8, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 48.0, - "_pop_comment_count": 29.0, + "_pop_commit_frequency": 0.27, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 2, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 31.7, + "_pop_score": 10.58, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/google/weather-tools/master/README.md", - "_readme_localurl": "google~weather-tools~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/rawheel/fastapi-boilerplate/master/README.md", + "_readme_localurl": "rawheel~fastapi-boilerplate~README.md", "_requirements_filenames": [ - "setup.py" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/google/weather-tools/master/setup.py" + "https://raw.githubusercontent.com/rawheel/fastapi-boilerplate/master/pyproject.toml" ], "_requirements_localurls": [ - "google~weather-tools~setup.py" + "rawheel~fastapi-boilerplate~pyproject.toml" ] }, { - "index": 466, - "category": "nlp", - "githuburl": "https://github.com/infinitylogesh/mutate", + "index": 847, + "category": "gis", + "githuburl": "https://github.com/remotesensinglab/raster4ml", "featured": null, "links": null, "description": null, - "_repopath": "infinitylogesh/mutate", - "_reponame": "mutate", + "_repopath": "remotesensinglab/raster4ml", + "_reponame": "raster4ml", "_stars": 105, - "_forks": 7, - "_watches": 3, + "_forks": 12, + "_watches": 4, + "_language": "Python", + "_homepage": "https://raster4ml.readthedocs.io", + "_description": "raster4ml: A geospatial raster processing library for machine learning", + "_organization": "remotesensinglab", + "_updated_at": "2023-02-09T00:00:00.000Z", + "_created_at": "2022-07-11T00:00:00.000Z", + "_age_weeks": 32, + "_stars_per_week": 3.25, "_topics": [ - "nlp-library", - "text-generation", - "language-model", - "data-augmentation", - "data-labeling" + "agriculture-research", + "data-science", + "geospatial-data", + "machine-learning", + "remote-sensing", + "vegetation", + "vegetation-index", + "python" + ], + "_last_commit_date": "2022-11-01T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "souravbhadra@saintlouisuniversity" ], - "_language": "Python", - "_homepage": "", - "_description": "mutate: A library to synthesize text datasets using Large Language Models (LLM)", - "_organization": "infinitylogesh", - "_updated_at": "2022-11-08T00:00:00.000Z", - "_last_commit_date": "2022-04-18T00:00:00.000Z", - "_created_at": "2021-12-29T00:00:00.000Z", - "_age_weeks": 50, - "_stars_per_week": 2.07, - "_pop_contributor_count": 2, "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "argilla" + "saintlouisuniversity" + ], + "_pop_contributor_orgs_raw": [ + "Saint Louis University" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.27, + "_pop_commit_frequency": 0.96, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 12, - "_pop_updated_since_days": 8, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, + "_pop_created_since_days": 8, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, "_pop_issue_count": 0.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 7.74, + "_pop_score": 9.14, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/infinitylogesh/mutate/master/README.md", - "_readme_localurl": "infinitylogesh~mutate~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/remotesensinglab/raster4ml/master/README.md", + "_readme_localurl": "remotesensinglab~raster4ml~README.md", "_requirements_filenames": [ "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/infinitylogesh/mutate/master/requirements.txt", - "https://raw.githubusercontent.com/infinitylogesh/mutate/master/setup.py" - ], - "_requirements_localurls": [ - "infinitylogesh~mutate~requirements.txt", - "infinitylogesh~mutate~setup.py" - ] - }, - { - "index": 463, - "category": "data", - "githuburl": "https://github.com/psycoguana/subredditmediadownloader", - "featured": null, - "links": null, - "description": null, - "_repopath": "psycoguana/subredditmediadownloader", - "_reponame": "SubredditMediaDownloader", - "_stars": 102, - "_forks": 7, - "_watches": 3, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "SubredditMediaDownloader: Simple Python script to download images and videos from public subreddits without using Reddit's API \ud83d\ude0e", - "_organization": "psycoguana", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-11-20T00:00:00.000Z", - "_created_at": "2022-02-18T00:00:00.000Z", - "_age_weeks": 43, - "_stars_per_week": 2.35, - "_pop_contributor_count": 2, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.4, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 7, - "_pop_created_since_days": 10, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 7.0, - "_pop_comment_count": 21.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.0, - "_pop_dependents_count": 0, - "_pop_score": 16.54, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/psycoguana/subredditmediadownloader/master/README.md", - "_readme_localurl": "psycoguana~subredditmediadownloader~README.md", - "_requirements_filenames": [ - "requirements.txt" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/psycoguana/subredditmediadownloader/master/requirements.txt" + "https://raw.githubusercontent.com/remotesensinglab/raster4ml/master/requirements.txt", + "https://raw.githubusercontent.com/remotesensinglab/raster4ml/master/setup.py" ], "_requirements_localurls": [ - "psycoguana~subredditmediadownloader~requirements.txt" + "remotesensinglab~raster4ml~requirements.txt", + "remotesensinglab~raster4ml~setup.py" ] }, { @@ -55847,117 +77330,53 @@ "description": null, "_repopath": "hazyresearch/domino", "_reponame": "domino", - "_stars": 99, - "_forks": 14, + "_stars": 104, + "_forks": 16, "_watches": 20, - "_topics": [], "_language": "Python", "_homepage": null, "_description": "hazyresearch/domino", "_organization": "hazyresearch", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-08-02T00:00:00.000Z", + "_updated_at": "2023-02-15T00:00:00.000Z", "_created_at": "2021-11-29T00:00:00.000Z", - "_age_weeks": 55, - "_stars_per_week": 1.8, + "_age_weeks": 64, + "_stars_per_week": 1.62, + "_topics": [], + "_last_commit_date": "2022-08-02T00:00:00.000Z", "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "seyuboglu" + ], "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.19, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 13, - "_pop_updated_since_days": 5, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 6, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 4.0, - "_pop_comment_count": 0.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 6, - "_pop_score": 15.11, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/hazyresearch/domino/master/README.md", - "_readme_localurl": "hazyresearch~domino~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/hazyresearch/domino/master/setup.py" - ], - "_requirements_localurls": [ - "hazyresearch~domino~setup.py" - ] - }, - { - "index": 847, - "category": "gis", - "githuburl": "https://github.com/remotesensinglab/raster4ml", - "featured": null, - "links": null, - "description": null, - "_repopath": "remotesensinglab/raster4ml", - "_reponame": "raster4ml", - "_stars": 97, - "_forks": 12, - "_watches": 4, - "_topics": [ - "agriculture-research", - "data-science", - "geospatial-data", - "machine-learning", - "remote-sensing", - "vegetation", - "vegetation-index", - "python" - ], - "_language": "Python", - "_homepage": "https://raster4ml.readthedocs.io", - "_description": "raster4ml: A geospatial raster processing library for machine learning", - "_organization": "remotesensinglab", - "_updated_at": "2022-12-04T00:00:00.000Z", - "_last_commit_date": "2022-11-01T00:00:00.000Z", - "_created_at": "2022-07-11T00:00:00.000Z", - "_age_weeks": 23, - "_stars_per_week": 4.22, - "_pop_contributor_count": 1, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "saintlouisuniversity" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.96, + "_pop_commit_frequency": 1.08, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 5, - "_pop_updated_since_days": 2, + "_pop_created_since_days": 15, + "_pop_updated_since_days": 7, "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_estimated_tags": 5, "_pop_recent_releases_adjusted_count": 1, "_pop_issue_count": 0.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 9.4, + "_pop_score": 9.56, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/remotesensinglab/raster4ml/master/README.md", - "_readme_localurl": "remotesensinglab~raster4ml~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/hazyresearch/domino/master/README.md", + "_readme_localurl": "hazyresearch~domino~README.md", "_requirements_filenames": [ - "requirements.txt", "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/remotesensinglab/raster4ml/master/requirements.txt", - "https://raw.githubusercontent.com/remotesensinglab/raster4ml/master/setup.py" + "https://raw.githubusercontent.com/hazyresearch/domino/master/setup.py" ], "_requirements_localurls": [ - "remotesensinglab~raster4ml~requirements.txt", - "remotesensinglab~raster4ml~setup.py" + "hazyresearch~domino~setup.py" ] }, { @@ -55969,40 +77388,47 @@ "description": null, "_repopath": "gdaosu/lod2buildingmodel", "_reponame": "LOD2BuildingModel", - "_stars": 96, + "_stars": 102, "_forks": 23, "_watches": 9, - "_topics": [], "_language": "Python", "_homepage": "", "_description": "LOD2BuildingModel: SAT2LoD2: Automated LoD-2 Model Reconstruction from Satellite-derived DSM and Orthophoto", "_organization": "gdaosu", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-07-21T00:00:00.000Z", + "_updated_at": "2023-02-19T00:00:00.000Z", "_created_at": "2021-08-30T00:00:00.000Z", - "_age_weeks": 68, - "_stars_per_week": 1.41, + "_age_weeks": 77, + "_stars_per_week": 1.32, + "_topics": [], + "_last_commit_date": "2022-07-21T00:00:00.000Z", "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "Ggs1mida", + "HeavenswordG@ohiostateuniversity" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "ohiostateuniversity" ], + "_pop_contributor_orgs_raw": [ + "Ohio State University" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.85, - "_pop_updated_issues_count": 1, + "_pop_commit_frequency": 0.44, + "_pop_updated_issues_count": 2, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 16, - "_pop_updated_since_days": 5, + "_pop_created_since_days": 18, + "_pop_updated_since_days": 7, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 1.0, - "_pop_comment_count": 1.0, + "_pop_issue_count": 2.0, + "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.0, "_pop_dependents_count": 0, - "_pop_score": 13.46, + "_pop_score": 12.88, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/gdaosu/lod2buildingmodel/master/README.md", "_readme_localurl": "gdaosu~lod2buildingmodel~README.md", @@ -56010,6 +77436,123 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, + { + "index": 667, + "category": "gis", + "githuburl": "https://github.com/zorzi-s/polyworldpretrainednetwork", + "featured": null, + "links": null, + "description": null, + "_repopath": "zorzi-s/polyworldpretrainednetwork", + "_reponame": "PolyWorldPretrainedNetwork", + "_stars": 101, + "_forks": 15, + "_watches": 7, + "_language": "Python", + "_homepage": null, + "_description": "PolyWorldPretrainedNetwork: PolyWorld: Polygonal Building Extraction with Graph Neural Networks in Satellite Images", + "_organization": "zorzi-s", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2022-03-23T00:00:00.000Z", + "_age_weeks": 48, + "_stars_per_week": 2.1, + "_topics": [], + "_last_commit_date": "2022-11-10T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "zorzi-s" + ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.4, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 11, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 5.0, + "_pop_comment_count": 11.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.2, + "_pop_dependents_count": 0, + "_pop_score": 12.11, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/zorzi-s/polyworldpretrainednetwork/master/README.md", + "_readme_localurl": "zorzi-s~polyworldpretrainednetwork~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, + { + "index": 457, + "category": "nlp", + "githuburl": "https://github.com/coastalcph/lex-glue", + "featured": null, + "links": null, + "description": null, + "_repopath": "coastalcph/lex-glue", + "_reponame": "lex-glue", + "_stars": 101, + "_forks": 24, + "_watches": 6, + "_language": "Python", + "_homepage": "", + "_description": "lex-glue: LexGLUE: A Benchmark Dataset for Legal Language Understanding in English", + "_organization": "coastalcph", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2021-09-27T00:00:00.000Z", + "_age_weeks": 73, + "_stars_per_week": 1.38, + "_topics": [ + "legal", + "nlp", + "benchmark", + "legaltech", + "lawtech" + ], + "_last_commit_date": "2022-11-04T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "danigoju", + "iliaschalkidis" + ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.38, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 17, + "_pop_updated_since_days": 4, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.0, + "_pop_dependents_count": 0, + "_pop_score": 12.34, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/coastalcph/lex-glue/master/README.md", + "_readme_localurl": "coastalcph~lex-glue~README.md", + "_requirements_filenames": [ + "requirements.txt" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/coastalcph/lex-glue/master/requirements.txt" + ], + "_requirements_localurls": [ + "coastalcph~lex-glue~requirements.txt" + ] + }, { "index": 529, "category": "nlp", @@ -56019,42 +77562,56 @@ "description": null, "_repopath": "hazyresearch/fonduer-tutorials", "_reponame": "fonduer-tutorials", - "_stars": 96, - "_forks": 23, + "_stars": 97, + "_forks": 25, "_watches": 18, - "_topics": [], "_language": "Jupyter Notebook", "_homepage": "https://github.com/HazyResearch/fonduer", "_description": "fonduer-tutorials: A collection of simple tutorials for using Fonduer", "_organization": "hazyresearch", - "_updated_at": "2022-12-01T00:00:00.000Z", - "_last_commit_date": "2020-05-27T00:00:00.000Z", + "_updated_at": "2023-02-05T00:00:00.000Z", "_created_at": "2018-03-23T00:00:00.000Z", - "_age_weeks": 247, - "_stars_per_week": 0.39, + "_age_weeks": 256, + "_stars_per_week": 0.38, + "_topics": [], + "_last_commit_date": "2020-05-27T00:00:00.000Z", "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "HiromuHota@https://snorkel.ai/", + "j-rausch", + "lukehsiao@numbersstationai", + "nicholaschiang@numbersstationai", + "rehanguha@vodafone", + "senwu" + ], "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "https://snorkel.ai/", "numbersstationai", "vodafone" ], + "_pop_contributor_orgs_raw": [ + "@NumbersStationAI", + "@NumbersStationAI ", + "@Vodafone", + "https://snorkel.ai/" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 58, - "_pop_updated_since_days": 31, + "_pop_created_since_days": 60, + "_pop_updated_since_days": 33, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, "_pop_issue_count": 0.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 16.15, + "_pop_score": 15.57, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/hazyresearch/fonduer-tutorials/master/README.md", "_readme_localurl": "hazyresearch~fonduer-tutorials~README.md", @@ -56069,63 +77626,84 @@ ] }, { - "index": 457, - "category": "nlp", - "githuburl": "https://github.com/coastalcph/lex-glue", + "index": 746, + "category": "data", + "githuburl": "https://github.com/ktrueda/parquet-tools", "featured": null, "links": null, "description": null, - "_repopath": "coastalcph/lex-glue", - "_reponame": "lex-glue", - "_stars": 95, - "_forks": 22, - "_watches": 6, - "_topics": [ - "legal", - "nlp", - "benchmark", - "legaltech", - "lawtech" - ], + "_repopath": "ktrueda/parquet-tools", + "_reponame": "parquet-tools", + "_stars": 96, + "_forks": 12, + "_watches": 3, "_language": "Python", "_homepage": "", - "_description": "lex-glue: LexGLUE: A Benchmark Dataset for Legal Language Understanding in English", - "_organization": "coastalcph", - "_updated_at": "2022-12-08T00:00:00.000Z", - "_last_commit_date": "2022-11-04T00:00:00.000Z", - "_created_at": "2021-09-27T00:00:00.000Z", - "_age_weeks": 64, - "_stars_per_week": 1.48, - "_pop_contributor_count": 2, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_description": "parquet-tools: easy install parquet-tools", + "_organization": "ktrueda", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2020-05-02T00:00:00.000Z", + "_age_weeks": 146, + "_stars_per_week": 0.65, + "_topics": [ + "parquet", + "parquet-tools", + "cli" + ], + "_last_commit_date": "2023-01-18T00:00:00.000Z", + "_pop_contributor_count": 12, + "_pop_contributor_logins": [ + "dependabot[bot]", + "engstrom@discogs", + "exaspace", + "fabaff", + "jdblischak", + "ktrueda", + "mrdavidlaing@shopify", + "omo", + "sattler@tumi8", + "sbrandtb@fri-day" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "discogs", + "fri-day", + "shopify", + "tumi8" + ], + "_pop_contributor_orgs_raw": [ + "@FRI-DAY ", + "@Shopify ", + "@discogs ", + "@tumi8" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.6, - "_pop_updated_issues_count": 4, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 15, + "_pop_commit_frequency": 0.19, + "_pop_updated_issues_count": 7, + "_pop_closed_issues_count": 5, + "_pop_created_since_days": 34, "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 4.0, - "_pop_comment_count": 11.0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 7.0, + "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.8, - "_pop_dependents_count": 8, - "_pop_score": 20.76, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 28.93, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/coastalcph/lex-glue/master/README.md", - "_readme_localurl": "coastalcph~lex-glue~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/ktrueda/parquet-tools/master/README.md", + "_readme_localurl": "ktrueda~parquet-tools~README.md", "_requirements_filenames": [ - "requirements.txt" + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/coastalcph/lex-glue/master/requirements.txt" + "https://raw.githubusercontent.com/ktrueda/parquet-tools/master/pyproject.toml" ], "_requirements_localurls": [ - "coastalcph~lex-glue~requirements.txt" + "ktrueda~parquet-tools~pyproject.toml" ] }, { @@ -56138,8 +77716,16 @@ "_repopath": "ghislainv/forestatrisk", "_reponame": "forestatrisk", "_stars": 95, - "_forks": 20, + "_forks": 21, "_watches": 4, + "_language": "Python", + "_homepage": "https://ecology.ghislainv.fr/forestatrisk", + "_description": "forestatrisk: :package: :snake: Python package to model and forecast the risk of deforestation", + "_organization": "ghislainv", + "_updated_at": "2023-01-31T00:00:00.000Z", + "_created_at": "2016-12-01T00:00:00.000Z", + "_age_weeks": 324, + "_stars_per_week": 0.29, "_topics": [ "python", "land-use-change", @@ -56159,18 +77745,18 @@ "deforestation-risk", "redd" ], - "_language": "Python", - "_homepage": "https://ecology.ghislainv.fr/forestatrisk", - "_description": "forestatrisk: :package: :snake: Python package to model and forecast the risk of deforestation", - "_organization": "ghislainv", - "_updated_at": "2022-11-07T00:00:00.000Z", "_last_commit_date": "2022-08-23T00:00:00.000Z", - "_created_at": "2016-12-01T00:00:00.000Z", - "_age_weeks": 315, - "_stars_per_week": 0.3, "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "12rambau@faoopenforis", + "danielskatz@uiuc", + "ethanwhite@weecology,univofflorida", + "ghislainv@cirad", + "kbarnhart", + "molgor@lancasteruniversity" + ], "_pop_contributor_orgs_len": 5, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "cirad", "faoopenforis", @@ -56178,12 +77764,19 @@ "uiuc", "weecology,univofflorida" ], + "_pop_contributor_orgs_raw": [ + "@weecology, Univ of Florida ", + "Cirad", + "FAO @openforis", + "Lancaster University", + "UIUC" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.56, + "_pop_commit_frequency": 0.15, "_pop_updated_issues_count": 1, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 74, - "_pop_updated_since_days": 4, + "_pop_created_since_days": 76, + "_pop_updated_since_days": 6, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 1, @@ -56191,8 +77784,8 @@ "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 22, - "_pop_score": 28.9, + "_pop_dependents_count": 0, + "_pop_score": 22.0, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/ghislainv/forestatrisk/master/README.rst", "_readme_localurl": "ghislainv~forestatrisk~README.rst", @@ -56219,8 +77812,16 @@ "_repopath": "darribas/gds_env", "_reponame": "gds_env", "_stars": 93, - "_forks": 37, - "_watches": 10, + "_forks": 36, + "_watches": 9, + "_language": "Jupyter Notebook", + "_homepage": "https://darribas.org/gds_env", + "_description": "gds_env: A containerised platform for Geographic Data Science", + "_organization": "darribas", + "_updated_at": "2022-11-16T00:00:00.000Z", + "_created_at": "2016-08-12T00:00:00.000Z", + "_age_weeks": 340, + "_stars_per_week": 0.27, "_topics": [ "geographic-data-science", "docker", @@ -56229,38 +77830,46 @@ "latex", "jupyter-lab" ], - "_language": "Jupyter Notebook", - "_homepage": "https://darribas.org/gds_env", - "_description": "gds_env: A containerised platform for Geographic Data Science", - "_organization": "darribas", - "_updated_at": "2022-11-16T00:00:00.000Z", "_last_commit_date": "2022-12-09T00:00:00.000Z", - "_created_at": "2016-08-12T00:00:00.000Z", - "_age_weeks": 331, - "_stars_per_week": 0.28, "_pop_contributor_count": 8, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "actions-user@actions", + "darribas", + "fcorowe@universityofliverpool", + "jreades@ucl", + "ljwolf@geogbristol", + "martinfleis", + "ocefpaf" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "actions", - "udl-ai", + "geogbristol", + "ucl", "universityofliverpool" ], + "_pop_contributor_orgs_raw": [ + "@actions", + "@geogbristol ", + "UCL", + "University of Liverpool" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.83, - "_pop_updated_issues_count": 3, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 77, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.79, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 79, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 3.0, - "_pop_comment_count": 1.0, + "_pop_issue_count": 4.0, + "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.3, - "_pop_dependents_count": 79, - "_pop_score": 35.75, + "_pop_comment_frequency": 0.5, + "_pop_dependents_count": 0, + "_pop_score": 27.56, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/darribas/gds_env/master/README.md", "_readme_localurl": "darribas~gds_env~README.md", @@ -56268,67 +77877,6 @@ "_requirements_giturls": [], "_requirements_localurls": [] }, - { - "index": 835, - "category": "typing", - "githuburl": "https://github.com/jellezijlstra/autotyping", - "featured": null, - "links": null, - "description": null, - "_repopath": "jellezijlstra/autotyping", - "_reponame": "autotyping", - "_stars": 91, - "_forks": 8, - "_watches": 3, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "jellezijlstra/autotyping", - "_organization": "jellezijlstra", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-18T00:00:00.000Z", - "_created_at": "2021-06-25T00:00:00.000Z", - "_age_weeks": 77, - "_stars_per_week": 1.18, - "_pop_contributor_count": 6, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "quora", - "sendcloud", - "softformance" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.25, - "_pop_updated_issues_count": 12, - "_pop_closed_issues_count": 7, - "_pop_created_since_days": 18, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 12.0, - "_pop_comment_count": 23.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.9, - "_pop_dependents_count": 3, - "_pop_score": 31.95, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/jellezijlstra/autotyping/master/README.md", - "_readme_localurl": "jellezijlstra~autotyping~README.md", - "_requirements_filenames": [ - "setup.py", - "pyproject.toml" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/jellezijlstra/autotyping/master/setup.py", - "https://raw.githubusercontent.com/jellezijlstra/autotyping/master/pyproject.toml" - ], - "_requirements_localurls": [ - "jellezijlstra~autotyping~setup.py", - "jellezijlstra~autotyping~pyproject.toml" - ] - }, { "index": 534, "category": "ml-dl", @@ -56338,9 +77886,17 @@ "description": null, "_repopath": "benedekrozemberczki/tigerlily", "_reponame": "tigerlily", - "_stars": 90, - "_forks": 10, + "_stars": 91, + "_forks": 9, "_watches": 1, + "_language": "Jupyter Notebook", + "_homepage": "", + "_description": "TigerLily: Finding drug interactions in silico with the Graph.", + "_organization": "benedekrozemberczki", + "_updated_at": "2022-12-30T00:00:00.000Z", + "_created_at": "2022-02-28T00:00:00.000Z", + "_age_weeks": 51, + "_stars_per_week": 1.77, "_topics": [ "node", "embedding", @@ -56362,27 +77918,25 @@ "graph-database", "graph-machine-learning" ], - "_language": "Jupyter Notebook", - "_homepage": "", - "_description": "TigerLily: Finding drug interactions in silico with the Graph.", - "_organization": "benedekrozemberczki", - "_updated_at": "2022-09-11T00:00:00.000Z", "_last_commit_date": "2022-12-17T00:00:00.000Z", - "_created_at": "2022-02-28T00:00:00.000Z", - "_age_weeks": 42, - "_stars_per_week": 2.14, "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "benedekrozemberczki@isomorphiclabs" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "isomorphiclabs" ], + "_pop_contributor_orgs_raw": [ + "@isomorphiclabs" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 1.98, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 10, - "_pop_updated_since_days": 0, + "_pop_created_since_days": 12, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, @@ -56391,7 +77945,7 @@ "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 14.29, + "_pop_score": 12.01, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/benedekrozemberczki/tigerlily/master/README.md", "_readme_localurl": "benedekrozemberczki~tigerlily~README.md", @@ -56408,54 +77962,6 @@ "benedekrozemberczki~tigerlily~pyproject.toml" ] }, - { - "index": 667, - "category": "gis", - "githuburl": "https://github.com/zorzi-s/polyworldpretrainednetwork", - "featured": null, - "links": null, - "description": null, - "_repopath": "zorzi-s/polyworldpretrainednetwork", - "_reponame": "PolyWorldPretrainedNetwork", - "_stars": 90, - "_forks": 13, - "_watches": 7, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "PolyWorldPretrainedNetwork: PolyWorld: Polygonal Building Extraction with Graph Neural Networks in Satellite Images", - "_organization": "zorzi-s", - "_updated_at": "2022-12-17T00:00:00.000Z", - "_last_commit_date": "2022-11-10T00:00:00.000Z", - "_created_at": "2022-03-23T00:00:00.000Z", - "_age_weeks": 38, - "_stars_per_week": 2.32, - "_pop_contributor_count": 1, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.4, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 9, - "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 7.0, - "_pop_comment_count": 19.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 2.7, - "_pop_dependents_count": 0, - "_pop_score": 14.18, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/zorzi-s/polyworldpretrainednetwork/master/README.md", - "_readme_localurl": "zorzi-s~polyworldpretrainednetwork~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 744, "category": "ml-ops", @@ -56465,32 +77971,43 @@ "description": null, "_repopath": "aiqc/aiqc", "_reponame": "AIQC", - "_stars": 88, - "_forks": 19, + "_stars": 91, + "_forks": 20, "_watches": 4, - "_topics": [], "_language": "Jupyter Notebook", "_homepage": "", "_description": "AIQC: End-to-end deep learning on your desktop or server.", "_organization": "aiqc", - "_updated_at": "2022-11-21T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_updated_at": "2023-02-18T00:00:00.000Z", "_created_at": "2020-12-02T00:00:00.000Z", - "_age_weeks": 106, - "_stars_per_week": 0.82, + "_age_weeks": 116, + "_stars_per_week": 0.78, + "_topics": [], + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "Bennylave", + "aiqc@aiqc", + "amoh-godwin@deuteronomyworks", + "layne-sadler@aiqc", + "sahilgupta2105" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "aiqc", "deuteronomyworks" ], + "_pop_contributor_orgs_raw": [ + "AIQC", + "Deuteronomy Works" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 8.5, + "_pop_commit_frequency": 6.9, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 25, - "_pop_updated_since_days": 0, + "_pop_created_since_days": 27, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -56498,8 +78015,8 @@ "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 2, - "_pop_score": 25.26, + "_pop_dependents_count": 0, + "_pop_score": 20.46, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/aiqc/aiqc/master/README.md", "_readme_localurl": "aiqc~aiqc~README.md", @@ -56517,102 +78034,119 @@ ] }, { - "index": 485, - "category": "gis", - "githuburl": "https://github.com/scisco/area", + "index": 842, + "category": "jupyter", + "githuburl": "https://github.com/cmudig/autoprofiler", "featured": null, "links": null, "description": null, - "_repopath": "scisco/area", - "_reponame": "area", + "_repopath": "cmudig/autoprofiler", + "_reponame": "AutoProfiler", "_stars": 87, - "_forks": 19, - "_watches": 3, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "area: Calculate the area inside of any GeoJSON geometry. This is a port of Mapbox's geojson-area for Python", - "_organization": "scisco", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2018-10-31T00:00:00.000Z", - "_created_at": "2015-11-25T00:00:00.000Z", - "_age_weeks": 368, - "_stars_per_week": 0.24, - "_pop_contributor_count": 3, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_forks": 4, + "_watches": 1, + "_language": "Svelte", + "_homepage": "", + "_description": "AutoProfiler: Automatically profile dataframes in the Jupyter sidebar", + "_organization": "cmudig", + "_updated_at": "2023-02-09T00:00:00.000Z", + "_created_at": "2022-03-24T00:00:00.000Z", + "_age_weeks": 47, + "_stars_per_week": 1.82, + "_topics": [ + "jupyter", + "pandas", + "python" + ], + "_last_commit_date": "2023-02-20T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "domoritz@cmu,apple", + "vaish399", + "willeppy@cmu", + "yuqizhang99" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "cmu", + "cmu,apple" + ], + "_pop_contributor_orgs_raw": [ + "CMU", + "CMU, Apple" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 86, - "_pop_updated_since_days": 50, + "_pop_commit_frequency": 4.17, + "_pop_updated_issues_count": 41, + "_pop_closed_issues_count": 30, + "_pop_created_since_days": 11, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, + "_pop_issue_count": 41.0, + "_pop_comment_count": 19.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, + "_pop_comment_frequency": 0.5, "_pop_dependents_count": 0, - "_pop_score": 5.14, - "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/scisco/area/master/README.rst", - "_readme_localurl": "scisco~area~README.rst", + "_pop_score": 25.4, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/cmudig/autoprofiler/master/README.md", + "_readme_localurl": "cmudig~autoprofiler~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt", + "setup.py", + "pyproject.toml" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/scisco/area/master/setup.py" + "https://raw.githubusercontent.com/cmudig/autoprofiler/master/requirements.txt", + "https://raw.githubusercontent.com/cmudig/autoprofiler/master/setup.py", + "https://raw.githubusercontent.com/cmudig/autoprofiler/master/pyproject.toml" ], "_requirements_localurls": [ - "scisco~area~setup.py" + "cmudig~autoprofiler~requirements.txt", + "cmudig~autoprofiler~setup.py", + "cmudig~autoprofiler~pyproject.toml" ] }, { - "index": 269, - "category": "term", - "githuburl": "https://github.com/deeplook/sparklines", + "index": 485, + "category": "gis", + "githuburl": "https://github.com/scisco/area", "featured": null, "links": null, "description": null, - "_repopath": "deeplook/sparklines", - "_reponame": "sparklines", - "_stars": 83, - "_forks": 6, + "_repopath": "scisco/area", + "_reponame": "area", + "_stars": 87, + "_forks": 20, "_watches": 3, - "_topics": [ - "python", - "command-line-tool", - "graphs", - "ascii", - "sparklines", - "sparkline-graphs" - ], "_language": "Python", - "_homepage": "", - "_description": "sparklines: Text-based sparkline command line mimicking those of Edward Tuft.", - "_organization": "deeplook", - "_updated_at": "2022-11-26T00:00:00.000Z", - "_last_commit_date": "2021-06-26T00:00:00.000Z", - "_created_at": "2016-05-17T00:00:00.000Z", - "_age_weeks": 343, - "_stars_per_week": 0.24, - "_pop_contributor_count": 7, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "deepsourcelabs", - "investnext", - "quantifiedcode" + "_homepage": null, + "_description": "area: Calculate the area inside of any GeoJSON geometry. This is a port of Mapbox's geojson-area for Python", + "_organization": "scisco", + "_updated_at": "2022-12-14T00:00:00.000Z", + "_created_at": "2015-11-25T00:00:00.000Z", + "_age_weeks": 378, + "_stars_per_week": 0.23, + "_topics": [], + "_last_commit_date": "2018-10-31T00:00:00.000Z", + "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "lgw4", + "scisco" ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 80, - "_pop_updated_since_days": 18, + "_pop_created_since_days": 88, + "_pop_updated_since_days": 52, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -56621,79 +78155,94 @@ "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 16.1, + "_pop_score": 5.1, "_readme_filename": "README.rst", - "_readme_giturl": "https://raw.githubusercontent.com/deeplook/sparklines/master/README.rst", - "_readme_localurl": "deeplook~sparklines~README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/scisco/area/master/README.rst", + "_readme_localurl": "scisco~area~README.rst", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/deeplook/sparklines/master/setup.py" + "https://raw.githubusercontent.com/scisco/area/master/setup.py" ], "_requirements_localurls": [ - "deeplook~sparklines~setup.py" + "scisco~area~setup.py" ] }, { - "index": 746, + "index": 974, "category": "data", - "githuburl": "https://github.com/ktrueda/parquet-tools", + "githuburl": "https://github.com/vmiklos/ged2dot", "featured": null, "links": null, "description": null, - "_repopath": "ktrueda/parquet-tools", - "_reponame": "parquet-tools", - "_stars": 82, - "_forks": 10, - "_watches": 3, + "_repopath": "vmiklos/ged2dot", + "_reponame": "ged2dot", + "_stars": 87, + "_forks": 17, + "_watches": 6, + "_language": "Python", + "_homepage": "https://vmiklos.hu/ged2dot/", + "_description": "ged2dot: GEDCOM to Graphviz converter", + "_organization": "vmiklos", + "_updated_at": "2023-02-12T00:00:00.000Z", + "_created_at": "2013-11-01T00:00:00.000Z", + "_age_weeks": 485, + "_stars_per_week": 0.18, "_topics": [ - "parquet", - "parquet-tools", - "cli" + "gedcom", + "dot", + "python", + "libreoffice" + ], + "_last_commit_date": "2023-02-17T00:00:00.000Z", + "_pop_contributor_count": 9, + "_pop_contributor_logins": [ + "ColinChargy", + "bAndie91", + "dougstarfish@starfishstorage", + "drzraf", + "fetsorn", + "rgerkin@ozymandianindustries", + "schuellerf", + "vmiklos" ], - "_language": "Python", - "_homepage": "", - "_description": "parquet-tools: easy install parquet-tools", - "_organization": "ktrueda", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-06-14T00:00:00.000Z", - "_created_at": "2020-05-02T00:00:00.000Z", - "_age_weeks": 137, - "_stars_per_week": 0.6, - "_pop_contributor_count": 10, "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "discogs", - "shopify" + "ozymandianindustries", + "starfishstorage" + ], + "_pop_contributor_orgs_raw": [ + "Ozymandian Industries", + "Starfish Storage" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.1, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 32, - "_pop_updated_since_days": 6, + "_pop_commit_frequency": 0.83, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 14, + "_pop_created_since_days": 113, + "_pop_updated_since_days": 0, "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 2.0, + "_pop_issue_count": 14.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 5, - "_pop_score": 21.91, + "_pop_dependents_count": 0, + "_pop_score": 30.1, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/ktrueda/parquet-tools/master/README.md", - "_readme_localurl": "ktrueda~parquet-tools~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/vmiklos/ged2dot/master/README.md", + "_readme_localurl": "vmiklos~ged2dot~README.md", "_requirements_filenames": [ - "pyproject.toml" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/ktrueda/parquet-tools/master/pyproject.toml" + "https://raw.githubusercontent.com/vmiklos/ged2dot/master/requirements.txt" ], "_requirements_localurls": [ - "ktrueda~parquet-tools~pyproject.toml" + "vmiklos~ged2dot~requirements.txt" ] }, { @@ -56705,167 +78254,151 @@ "description": null, "_repopath": "geopandas/xyzservices", "_reponame": "xyzservices", - "_stars": 81, + "_stars": 84, "_forks": 19, "_watches": 11, - "_topics": [], "_language": "Python", "_homepage": "https://xyzservices.readthedocs.io/", "_description": "xyzservices: Source of XYZ tiles providers", "_organization": "geopandas", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", + "_updated_at": "2023-01-04T00:00:00.000Z", "_created_at": "2021-05-21T00:00:00.000Z", - "_age_weeks": 82, - "_stars_per_week": 0.98, + "_age_weeks": 91, + "_stars_per_week": 0.92, + "_topics": [], + "_last_commit_date": "2023-02-19T00:00:00.000Z", "_pop_contributor_count": 17, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "EdwardBetts", + "HaudinFlorence@quantstack", + "SylvainCorlay@quantstack", + "benoit9126@roseautechnologies", + "darribas", + "davidbrochart@quantstack", + "dependabot[bot]", + "drnextgis@satellogic", + "martinfleis", + "tsutterley@uw-eduappliedphysicslaboratory" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "quantstack", - "udl-ai" + "roseautechnologies", + "satellogic", + "uw-eduappliedphysicslaboratory" + ], + "_pop_contributor_orgs_raw": [ + "@QuantStack", + "@RoseauTechnologies ", + "@satellogic", + "@uw-edu Applied Physics Laboratory", + "QuantStack" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.13, - "_pop_updated_issues_count": 9, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 19, + "_pop_commit_frequency": 0.94, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 21, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 7, + "_pop_recent_releases_count": 5, "_pop_recent_releases_estimated_tags": 10, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 9.0, - "_pop_comment_count": 5.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.6, - "_pop_dependents_count": 0, - "_pop_score": 30.65, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/geopandas/xyzservices/master/README.md", - "_readme_localurl": "geopandas~xyzservices~README.md", - "_requirements_filenames": [ - "setup.py" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/geopandas/xyzservices/master/setup.py" - ], - "_requirements_localurls": [ - "geopandas~xyzservices~setup.py" - ] - }, - { - "index": 668, - "category": "gis", - "githuburl": "https://github.com/zorzi-s/projectregularization", - "featured": null, - "links": null, - "description": null, - "_repopath": "zorzi-s/projectregularization", - "_reponame": "projectRegularization", - "_stars": 80, - "_forks": 7, - "_watches": 2, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "projectRegularization: Regularization of Building Boundaries using Adversarial and Regularized losses", - "_organization": "zorzi-s", - "_updated_at": "2022-11-10T00:00:00.000Z", - "_last_commit_date": "2021-09-17T00:00:00.000Z", - "_created_at": "2021-05-18T00:00:00.000Z", - "_age_weeks": 82, - "_stars_per_week": 0.97, - "_pop_contributor_count": 1, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 19, - "_pop_updated_since_days": 15, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 0.0, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 2.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 2.46, + "_pop_score": 29.31, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/zorzi-s/projectregularization/master/README.md", - "_readme_localurl": "zorzi-s~projectregularization~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] + "_readme_giturl": "https://raw.githubusercontent.com/geopandas/xyzservices/master/README.md", + "_readme_localurl": "geopandas~xyzservices~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/geopandas/xyzservices/master/setup.py" + ], + "_requirements_localurls": [ + "geopandas~xyzservices~setup.py" + ] }, { - "index": 842, - "category": "jupyter", - "githuburl": "https://github.com/cmudig/autoprofiler", + "index": 269, + "category": "term", + "githuburl": "https://github.com/deeplook/sparklines", "featured": null, "links": null, "description": null, - "_repopath": "cmudig/autoprofiler", - "_reponame": "AutoProfiler", - "_stars": 79, - "_forks": 4, - "_watches": 1, + "_repopath": "deeplook/sparklines", + "_reponame": "sparklines", + "_stars": 84, + "_forks": 6, + "_watches": 3, + "_language": "Python", + "_homepage": "", + "_description": "sparklines: Text-based sparkline command line mimicking those of Edward Tuft.", + "_organization": "deeplook", + "_updated_at": "2022-12-28T00:00:00.000Z", + "_created_at": "2016-05-17T00:00:00.000Z", + "_age_weeks": 353, + "_stars_per_week": 0.24, "_topics": [ - "jupyter", - "pandas", - "python" + "python", + "command-line-tool", + "graphs", + "ascii", + "sparklines", + "sparkline-graphs" ], - "_language": "Svelte", - "_homepage": "", - "_description": "AutoProfiler: Automatically profile dataframes in the Jupyter sidebar", - "_organization": "cmudig", - "_updated_at": "2022-12-04T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", - "_created_at": "2022-03-24T00:00:00.000Z", - "_age_weeks": 38, - "_stars_per_week": 2.05, - "_pop_contributor_count": 2, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2021-06-26T00:00:00.000Z", + "_pop_contributor_count": 7, + "_pop_contributor_logins": [ + "aldencolerain", + "deeplook", + "deepsource-autofix[bot]", + "deepsourcebot@deepsourcelabs", + "mkgs@investnext", + "quantifiedcode-bot@quantifiedcode" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "cmu", - "cmu,apple" + "deepsourcelabs", + "investnext", + "quantifiedcode" + ], + "_pop_contributor_orgs_raw": [ + "@deepsourcelabs", + "@investnext", + "QuantifiedCode" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.58, - "_pop_updated_issues_count": 94, - "_pop_closed_issues_count": 70, - "_pop_created_since_days": 9, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 82, + "_pop_updated_since_days": 20, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 94.0, - "_pop_comment_count": 41.0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.4, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 24.18, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/cmudig/autoprofiler/master/README.md", - "_readme_localurl": "cmudig~autoprofiler~README.md", + "_pop_score": 15.92, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/deeplook/sparklines/master/README.rst", + "_readme_localurl": "deeplook~sparklines~README.rst", "_requirements_filenames": [ - "requirements.txt", - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/cmudig/autoprofiler/master/requirements.txt", - "https://raw.githubusercontent.com/cmudig/autoprofiler/master/setup.py", - "https://raw.githubusercontent.com/cmudig/autoprofiler/master/pyproject.toml" + "https://raw.githubusercontent.com/deeplook/sparklines/master/setup.py" ], "_requirements_localurls": [ - "cmudig~autoprofiler~requirements.txt", - "cmudig~autoprofiler~setup.py", - "cmudig~autoprofiler~pyproject.toml" + "deeplook~sparklines~setup.py" ] }, { @@ -56877,9 +78410,17 @@ "description": null, "_repopath": "praw-dev/asyncpraw", "_reponame": "asyncpraw", - "_stars": 79, - "_forks": 14, + "_stars": 82, + "_forks": 13, "_watches": 3, + "_language": "Python", + "_homepage": "https://asyncpraw.readthedocs.io", + "_description": "asyncpraw: Async PRAW, an abbreviation for \"Asynchronous Python Reddit API Wrapper\", is a python package that allows for simple access to Reddit's API.", + "_organization": "praw-dev", + "_updated_at": "2023-01-31T00:00:00.000Z", + "_created_at": "2019-02-05T00:00:00.000Z", + "_age_weeks": 211, + "_stars_per_week": 0.39, "_topics": [ "python", "api", @@ -56890,39 +78431,49 @@ "asyncpraw", "praw" ], - "_language": "Python", - "_homepage": "https://asyncpraw.readthedocs.io", - "_description": "asyncpraw: Async PRAW, an abbreviation for \"Asynchronous Python Reddit API Wrapper\", is a python package that allows for simple access to Reddit's API.", - "_organization": "praw-dev", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-12-09T00:00:00.000Z", - "_created_at": "2019-02-05T00:00:00.000Z", - "_age_weeks": 201, - "_stars_per_week": 0.39, + "_last_commit_date": "2023-02-19T00:00:00.000Z", "_pop_contributor_count": 226, + "_pop_contributor_logins": [ + "13steinj", + "Damgaard@billy", + "LilSpazJoekp@indeed", + "PythonCoderAS", + "bboe@netflix", + "jarhill0@appfolio", + "leviroth", + "nmtake", + "tmelz", + "voussoir" + ], "_pop_contributor_orgs_len": 4, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "appfolio", "billy", "indeed", "netflix" ], + "_pop_contributor_orgs_raw": [ + "@appfolio", + "@netflix", + "Billy", + "Indeed, Inc." + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 4.1, - "_pop_updated_issues_count": 29, - "_pop_closed_issues_count": 26, - "_pop_created_since_days": 47, + "_pop_commit_frequency": 1.67, + "_pop_updated_issues_count": 34, + "_pop_closed_issues_count": 34, + "_pop_created_since_days": 49, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 2, - "_pop_recent_releases_estimated_tags": 3, + "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 29.0, - "_pop_comment_count": 12.0, + "_pop_issue_count": 34.0, + "_pop_comment_count": 6.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.4, - "_pop_dependents_count": 14, - "_pop_score": 48.02, + "_pop_comment_frequency": 0.2, + "_pop_dependents_count": 0, + "_pop_score": 41.8, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/praw-dev/asyncpraw/master/README.rst", "_readme_localurl": "praw-dev~asyncpraw~README.rst", @@ -56939,6 +78490,117 @@ "praw-dev~asyncpraw~pyproject.toml" ] }, + { + "index": 925, + "category": "gis", + "githuburl": "https://github.com/benbovy/spherely", + "featured": null, + "links": null, + "description": null, + "_repopath": "benbovy/spherely", + "_reponame": "spherely", + "_stars": 82, + "_forks": 2, + "_watches": 4, + "_language": "C++", + "_homepage": "https://spherely.readthedocs.io/", + "_description": "spherely: Manipulation and analysis of geometric objects on the sphere.", + "_organization": "benbovy", + "_updated_at": "2023-02-09T00:00:00.000Z", + "_created_at": "2022-11-24T00:00:00.000Z", + "_age_weeks": 12, + "_stars_per_week": 6.38, + "_topics": [], + "_last_commit_date": "2023-01-12T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "benbovy", + "jorisvandenbossche" + ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.79, + "_pop_updated_issues_count": 14, + "_pop_closed_issues_count": 10, + "_pop_created_since_days": 3, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 14.0, + "_pop_comment_count": 30.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.1, + "_pop_dependents_count": 0, + "_pop_score": 14.05, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/benbovy/spherely/master/README.md", + "_readme_localurl": "benbovy~spherely~README.md", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/benbovy/spherely/master/pyproject.toml" + ], + "_requirements_localurls": [ + "benbovy~spherely~pyproject.toml" + ] + }, + { + "index": 668, + "category": "gis", + "githuburl": "https://github.com/zorzi-s/projectregularization", + "featured": null, + "links": null, + "description": null, + "_repopath": "zorzi-s/projectregularization", + "_reponame": "projectRegularization", + "_stars": 81, + "_forks": 7, + "_watches": 2, + "_language": "Python", + "_homepage": null, + "_description": "projectRegularization: Regularization of Building Boundaries using Adversarial and Regularized losses", + "_organization": "zorzi-s", + "_updated_at": "2023-02-09T00:00:00.000Z", + "_created_at": "2021-05-18T00:00:00.000Z", + "_age_weeks": 92, + "_stars_per_week": 0.88, + "_topics": [], + "_last_commit_date": "2021-09-17T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "zorzi-s" + ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 21, + "_pop_updated_since_days": 17, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 2.41, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/zorzi-s/projectregularization/master/README.md", + "_readme_localurl": "zorzi-s~projectregularization~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 327, "category": "security", @@ -56948,9 +78610,17 @@ "description": null, "_repopath": "sonatype-nexus-community/jake", "_reponame": "jake", - "_stars": 75, - "_forks": 19, + "_stars": 80, + "_forks": 21, "_watches": 8, + "_language": "Python", + "_homepage": "https://jake.readthedocs.io/", + "_description": "jake: Check your Python environments for vulnerable Open Source packages with OSS Index or Sonatype Nexus Lifecycle.", + "_organization": "sonatype-nexus-community", + "_updated_at": "2023-01-25T00:00:00.000Z", + "_created_at": "2019-10-10T00:00:00.000Z", + "_age_weeks": 175, + "_stars_per_week": 0.45, "_topics": [ "python", "vulnerabilities", @@ -56959,38 +78629,51 @@ "nexus-iq", "sonatype-iq" ], - "_language": "Python", - "_homepage": "https://jake.readthedocs.io/", - "_description": "jake: Check your Python environments for vulnerable Open Source packages with OSS Index or Sonatype Nexus Lifecycle.", - "_organization": "sonatype-nexus-community", - "_updated_at": "2022-12-14T00:00:00.000Z", "_last_commit_date": "2022-12-14T00:00:00.000Z", - "_created_at": "2019-10-10T00:00:00.000Z", - "_age_weeks": 166, - "_stars_per_week": 0.45, "_pop_contributor_count": 15, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "ButterB0wl@nginxinc", + "DarthHater@sonatype", + "allenhsieh", + "arichtman@silverrail", + "bhamail", + "daviskirk@oniqgmbh", + "jwa5426", + "madpah@sonatypecyclonedx", + "sanzoghenzo", + "therealak12" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "nginxinc", + "oniqgmbh", + "silverrail", "sonatype", "sonatypecyclonedx" ], + "_pop_contributor_orgs_raw": [ + "@nginxinc ", + "@sonatype ", + "@sonatype @CycloneDX ", + "ONIQ GmbH", + "SilverRail" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.0, - "_pop_updated_issues_count": 5, - "_pop_closed_issues_count": 4, - "_pop_created_since_days": 39, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 12, - "_pop_recent_releases_estimated_tags": 41, - "_pop_recent_releases_adjusted_count": 12, - "_pop_issue_count": 5.0, - "_pop_comment_count": 8.0, + "_pop_commit_frequency": 0.54, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 3, + "_pop_created_since_days": 41, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 4, + "_pop_recent_releases_estimated_tags": 39, + "_pop_recent_releases_adjusted_count": 4, + "_pop_issue_count": 6.0, + "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.6, - "_pop_dependents_count": 30, - "_pop_score": 41.83, + "_pop_comment_frequency": 0.7, + "_pop_dependents_count": 0, + "_pop_score": 31.08, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/sonatype-nexus-community/jake/master/README.md", "_readme_localurl": "sonatype-nexus-community~jake~README.md", @@ -57005,59 +78688,164 @@ ] }, { - "index": 851, - "category": "profiling", - "githuburl": "https://github.com/kshitij12345/torchnnprofiler", + "index": 816, + "category": "util", + "githuburl": "https://github.com/aws-samples/sagemaker-ssh-helper", "featured": null, "links": null, "description": null, - "_repopath": "kshitij12345/torchnnprofiler", - "_reponame": "torchnnprofiler", - "_stars": 72, - "_forks": 2, - "_watches": 4, - "_topics": [], + "_repopath": "aws-samples/sagemaker-ssh-helper", + "_reponame": "sagemaker-ssh-helper", + "_stars": 80, + "_forks": 10, + "_watches": 7, "_language": "Python", - "_homepage": null, - "_description": "torchnnprofiler: Context Manager to profile the forward and backward times of PyTorch's nn.Module", - "_organization": "kshitij12345", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-11-02T00:00:00.000Z", - "_created_at": "2022-10-22T00:00:00.000Z", - "_age_weeks": 8, - "_stars_per_week": 8.69, - "_pop_contributor_count": 1, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_homepage": "", + "_description": "sagemaker-ssh-helper: A helper library to connect into Amazon SageMaker with AWS Systems Manager and SSH", + "_organization": "aws-samples", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2022-10-14T00:00:00.000Z", + "_age_weeks": 18, + "_stars_per_week": 4.27, + "_topics": [ + "amazon-sagemaker", + "aws", + "aws-systems-manager", + "machine-learning", + "pycharm", + "sagemaker", + "sagemaker-studio", + "ssh", + "vscode" + ], + "_last_commit_date": "2023-01-20T00:00:00.000Z", + "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "amazon-auto@amazon", + "gilinachum@amazon", + "ivan-khvostishkov@amazonwebservices(aws)" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "quansight" + "amazon", + "amazonwebservices(aws)" + ], + "_pop_contributor_orgs_raw": [ + "Amazon", + "Amazon Web Services (AWS)" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.96, - "_pop_updated_issues_count": 6, - "_pop_closed_issues_count": 3, - "_pop_created_since_days": 2, - "_pop_updated_since_days": 2, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 6.0, - "_pop_comment_count": 1.0, + "_pop_commit_frequency": 0.73, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 6, + "_pop_created_since_days": 4, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 12.0, + "_pop_comment_count": 20.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.2, - "_pop_dependents_count": 2, - "_pop_score": 11.51, + "_pop_comment_frequency": 1.7, + "_pop_dependents_count": 0, + "_pop_score": 23.55, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/kshitij12345/torchnnprofiler/master/README.md", - "_readme_localurl": "kshitij12345~torchnnprofiler~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/aws-samples/sagemaker-ssh-helper/master/README.md", + "_readme_localurl": "aws-samples~sagemaker-ssh-helper~README.md", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/kshitij12345/torchnnprofiler/master/setup.py" + "https://raw.githubusercontent.com/aws-samples/sagemaker-ssh-helper/master/setup.py" ], "_requirements_localurls": [ - "kshitij12345~torchnnprofiler~setup.py" + "aws-samples~sagemaker-ssh-helper~setup.py" + ] + }, + { + "index": 584, + "category": "gis", + "githuburl": "https://github.com/developmentseed/cogeo-mosaic", + "featured": null, + "links": null, + "description": null, + "_repopath": "developmentseed/cogeo-mosaic", + "_reponame": "cogeo-mosaic", + "_stars": 78, + "_forks": 20, + "_watches": 8, + "_language": "Python", + "_homepage": "https://developmentseed.org/cogeo-mosaic/", + "_description": "cogeo-mosaic: Create and use COG mosaic based on mosaicJSON", + "_organization": "developmentseed", + "_updated_at": "2023-02-14T00:00:00.000Z", + "_created_at": "2019-05-14T00:00:00.000Z", + "_age_weeks": 197, + "_stars_per_week": 0.4, + "_topics": [], + "_last_commit_date": "2023-02-06T00:00:00.000Z", + "_pop_contributor_count": 9, + "_pop_contributor_logins": [ + "AndreaGiardini", + "RichardScottOZ@ozminerals", + "andrewharvey@alantgeo", + "christoe@qualicodeconsulting", + "drnextgis@satellogic", + "geospatial-jeff@regrowag", + "kylebarron", + "lseelenbinder@stadiamaps", + "vincentsarago@developmentseed" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "alantgeo", + "developmentseed", + "ozminerals", + "qualicodeconsulting", + "regrowag", + "satellogic", + "stadiamaps" + ], + "_pop_contributor_orgs_raw": [ + "@developmentseed ", + "@regrowag", + "@satellogic", + "@stadiamaps ", + "Alantgeo", + "OZ Minerals", + "Qualicode Consulting" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.5, + "_pop_updated_issues_count": 4, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 46, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 11, + "_pop_recent_releases_adjusted_count": 11, + "_pop_issue_count": 4.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 35.85, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/developmentseed/cogeo-mosaic/master/README.md", + "_readme_localurl": "developmentseed~cogeo-mosaic~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/developmentseed/cogeo-mosaic/master/setup.py", + "https://raw.githubusercontent.com/developmentseed/cogeo-mosaic/master/pyproject.toml" + ], + "_requirements_localurls": [ + "developmentseed~cogeo-mosaic~setup.py", + "developmentseed~cogeo-mosaic~pyproject.toml" ] }, { @@ -57069,32 +78857,41 @@ "description": null, "_repopath": "brohrer/cottonwood", "_reponame": "cottonwood", - "_stars": 72, + "_stars": 74, "_forks": 13, "_watches": 14, - "_topics": [], "_language": "Python", "_homepage": "https://end-to-end-machine-learning.teachable.com/p/write-a-neural-network-framework/", "_description": "cottonwood: A flexible neural network framework for running experiments and trying ideas.", "_organization": "brohrer", - "_updated_at": "2022-09-23T00:00:00.000Z", - "_last_commit_date": "2020-02-02T00:00:00.000Z", + "_updated_at": "2023-02-11T00:00:00.000Z", "_created_at": "2019-09-29T00:00:00.000Z", - "_age_weeks": 168, - "_stars_per_week": 0.43, + "_age_weeks": 177, + "_stars_per_week": 0.42, + "_topics": [], + "_last_commit_date": "2020-02-02T00:00:00.000Z", "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "ShahriyarR@azerbaijanpug", + "brohrer", + "gkaissis@tum,imperialcollege,openmined" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "azerbaijanpug", "tum,imperialcollege,openmined" ], + "_pop_contributor_orgs_raw": [ + "Azerbaijan PUG", + "TUM, Imperial College, OpenMined" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 39, - "_pop_updated_since_days": 35, + "_pop_created_since_days": 41, + "_pop_updated_since_days": 37, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 4, "_pop_recent_releases_adjusted_count": 4, @@ -57102,8 +78899,8 @@ "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 11, - "_pop_score": 16.81, + "_pop_dependents_count": 0, + "_pop_score": 12.34, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/brohrer/cottonwood/master/README.md", "_readme_localurl": "brohrer~cottonwood~README.md", @@ -57118,64 +78915,135 @@ ] }, { - "index": 584, - "category": "gis", - "githuburl": "https://github.com/developmentseed/cogeo-mosaic", + "index": 851, + "category": "profiling", + "githuburl": "https://github.com/kshitij12345/torchnnprofiler", "featured": null, "links": null, "description": null, - "_repopath": "developmentseed/cogeo-mosaic", - "_reponame": "cogeo-mosaic", - "_stars": 70, - "_forks": 19, - "_watches": 8, - "_topics": [], + "_repopath": "kshitij12345/torchnnprofiler", + "_reponame": "torchnnprofiler", + "_stars": 74, + "_forks": 3, + "_watches": 4, "_language": "Python", - "_homepage": "https://developmentseed.org/cogeo-mosaic/", - "_description": "cogeo-mosaic: Create and use COG mosaic based on mosaicJSON", - "_organization": "developmentseed", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-11-21T00:00:00.000Z", - "_created_at": "2019-05-14T00:00:00.000Z", - "_age_weeks": 187, - "_stars_per_week": 0.37, - "_pop_contributor_count": 8, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_homepage": null, + "_description": "torchnnprofiler: Context Manager to profile the forward and backward times of PyTorch's nn.Module", + "_organization": "kshitij12345", + "_updated_at": "2023-01-17T00:00:00.000Z", + "_created_at": "2022-10-22T00:00:00.000Z", + "_age_weeks": 17, + "_stars_per_week": 4.21, + "_topics": [], + "_last_commit_date": "2022-11-02T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "kshitij12345@quansight" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "developmentseed", - "regrowag", - "satellogic" + "quansight" + ], + "_pop_contributor_orgs_raw": [ + "Quansight" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.44, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 44, - "_pop_updated_since_days": 1, + "_pop_commit_frequency": 0.96, + "_pop_updated_issues_count": 3, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 4, + "_pop_updated_since_days": 4, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 11, - "_pop_recent_releases_adjusted_count": 11, - "_pop_issue_count": 7.0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 3.0, "_pop_comment_count": 7.0, "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 2.3, + "_pop_dependents_count": 0, + "_pop_score": 13.24, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/kshitij12345/torchnnprofiler/master/README.md", + "_readme_localurl": "kshitij12345~torchnnprofiler~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/kshitij12345/torchnnprofiler/master/setup.py" + ], + "_requirements_localurls": [ + "kshitij12345~torchnnprofiler~setup.py" + ] + }, + { + "index": 453, + "category": "gis", + "githuburl": "https://github.com/googlecloudplatform/dataflow-geobeam", + "featured": null, + "links": null, + "description": null, + "_repopath": "googlecloudplatform/dataflow-geobeam", + "_reponame": "dataflow-geobeam", + "_stars": 67, + "_forks": 26, + "_watches": 10, + "_language": "Python", + "_homepage": null, + "_description": "googlecloudplatform/dataflow-geobeam", + "_organization": "googlecloudplatform", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2021-02-04T00:00:00.000Z", + "_age_weeks": 106, + "_stars_per_week": 0.63, + "_topics": [], + "_last_commit_date": "2022-11-29T00:00:00.000Z", + "_pop_contributor_count": 5, + "_pop_contributor_logins": [ + "hashkanna", + "koshy1123@calthorpeanalytics", + "mbforr@carto", + "remylouisew", + "tjwebb@googlegooglecloudplatform" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "calthorpeanalytics", + "carto", + "googlegooglecloudplatform" + ], + "_pop_contributor_orgs_raw": [ + "@CalthorpeAnalytics ", + "@google @GoogleCloudPlatform ", + "CARTO" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.62, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 25, + "_pop_updated_since_days": 3, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 1.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 6, - "_pop_score": 34.78, + "_pop_dependents_count": 0, + "_pop_score": 22.55, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/developmentseed/cogeo-mosaic/master/README.md", - "_readme_localurl": "developmentseed~cogeo-mosaic~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/googlecloudplatform/dataflow-geobeam/master/README.md", + "_readme_localurl": "googlecloudplatform~dataflow-geobeam~README.md", "_requirements_filenames": [ - "setup.py", - "pyproject.toml" + "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/developmentseed/cogeo-mosaic/master/setup.py", - "https://raw.githubusercontent.com/developmentseed/cogeo-mosaic/master/pyproject.toml" + "https://raw.githubusercontent.com/googlecloudplatform/dataflow-geobeam/master/setup.py" ], "_requirements_localurls": [ - "developmentseed~cogeo-mosaic~setup.py", - "developmentseed~cogeo-mosaic~pyproject.toml" + "googlecloudplatform~dataflow-geobeam~setup.py" ] }, { @@ -57187,9 +79055,17 @@ "description": null, "_repopath": "blockchainsllc/in3", "_reponame": "in3", - "_stars": 65, - "_forks": 18, + "_stars": 66, + "_forks": 19, "_watches": 12, + "_language": "C", + "_homepage": "https://in3.readthedocs.io/en/develop/index.html", + "_description": "in3: The IN3 client (written in C).", + "_organization": "blockchainsllc", + "_updated_at": "2023-01-30T00:00:00.000Z", + "_created_at": "2019-09-17T00:00:00.000Z", + "_age_weeks": 179, + "_stars_per_week": 0.37, "_topics": [ "blockchain", "verify", @@ -57197,37 +79073,48 @@ "ethereum", "ipfs" ], - "_language": "C", - "_homepage": "https://in3.readthedocs.io/en/develop/index.html", - "_description": "in3: The IN3 client (written in C).", - "_organization": "blockchainsllc", - "_updated_at": "2022-11-17T00:00:00.000Z", "_last_commit_date": "2022-04-01T00:00:00.000Z", - "_created_at": "2019-09-17T00:00:00.000Z", - "_age_weeks": 169, - "_stars_per_week": 0.38, "_pop_contributor_count": 35, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "cerealkill@sni", + "chirag-parmar@slock.it", + "devrajsinghrawat", + "hu55a1n1", + "jbentke", + "kgeweniger@slock.it", + "leonardostsouza", + "leonardotc", + "simon-jentzsch@blockchains", + "unparalleled-js" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "blockchains", + "slock.it", "sni" ], + "_pop_contributor_orgs_raw": [ + "@SNI", + "@slock.it", + "Blockchains LLC", + "Slock.it" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 3.81, + "_pop_commit_frequency": 0.87, "_pop_updated_issues_count": 2, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 40, - "_pop_updated_since_days": 9, + "_pop_created_since_days": 42, + "_pop_updated_since_days": 11, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 28, - "_pop_recent_releases_adjusted_count": 28, + "_pop_recent_releases_estimated_tags": 27, + "_pop_recent_releases_adjusted_count": 27, "_pop_issue_count": 2.0, "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.0, - "_pop_dependents_count": 3, - "_pop_score": 33.49, + "_pop_dependents_count": 0, + "_pop_score": 30.48, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/blockchainsllc/in3/master/README.md", "_readme_localurl": "blockchainsllc~in3~README.md", @@ -57247,28 +79134,34 @@ "_stars": 64, "_forks": 4, "_watches": 2, - "_topics": [], "_language": "Python", "_homepage": "https://osf.io/f2dqc", "_description": "street-network-models: Street network models and indicators for every urban area in the world", "_organization": "gboeing", "_updated_at": "2022-12-13T00:00:00.000Z", - "_last_commit_date": "2021-03-05T00:00:00.000Z", "_created_at": "2020-04-13T00:00:00.000Z", - "_age_weeks": 140, - "_stars_per_week": 0.46, + "_age_weeks": 149, + "_stars_per_week": 0.43, + "_topics": [], + "_last_commit_date": "2021-03-05T00:00:00.000Z", "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "gboeing@universityofsoutherncalifornia" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "universityofsoutherncalifornia" ], + "_pop_contributor_orgs_raw": [ + "University of Southern California" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 33, - "_pop_updated_since_days": 22, + "_pop_created_since_days": 35, + "_pop_updated_since_days": 24, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -57276,8 +79169,8 @@ "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 2, - "_pop_score": 8.24, + "_pop_dependents_count": 0, + "_pop_score": 6.21, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/gboeing/street-network-models/master/README.md", "_readme_localurl": "gboeing~street-network-models~README.md", @@ -57286,61 +79179,63 @@ "_requirements_localurls": [] }, { - "index": 453, - "category": "gis", - "githuburl": "https://github.com/googlecloudplatform/dataflow-geobeam", - "featured": null, + "index": 968, + "category": "math", + "githuburl": "https://github.com/albahnsen/pycircular", + "featured": 1.0, "links": null, "description": null, - "_repopath": "googlecloudplatform/dataflow-geobeam", - "_reponame": "dataflow-geobeam", - "_stars": 61, - "_forks": 25, - "_watches": 9, - "_topics": [], + "_repopath": "albahnsen/pycircular", + "_reponame": "pycircular", + "_stars": 60, + "_forks": 3, + "_watches": 5, "_language": "Python", - "_homepage": null, - "_description": "googlecloudplatform/dataflow-geobeam", - "_organization": "googlecloudplatform", - "_updated_at": "2022-11-08T00:00:00.000Z", - "_last_commit_date": "2022-11-29T00:00:00.000Z", - "_created_at": "2021-02-04T00:00:00.000Z", - "_age_weeks": 97, - "_stars_per_week": 0.63, + "_homepage": "", + "_description": "pycircular is a Python module for circular data analysis", + "_organization": "albahnsen", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-09-12T00:00:00.000Z", + "_age_weeks": 23, + "_stars_per_week": 2.58, + "_topics": [], + "_last_commit_date": "2023-01-21T00:00:00.000Z", "_pop_contributor_count": 5, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "calthorpeanalytics", - "carto", - "google" + "_pop_contributor_logins": [ + "albahnsen", + "jdacevedo3010", + "jussalcedoga" ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.79, - "_pop_updated_issues_count": 6, + "_pop_commit_frequency": 0.83, + "_pop_updated_issues_count": 13, "_pop_closed_issues_count": 3, - "_pop_created_since_days": 23, + "_pop_created_since_days": 5, "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 6.0, - "_pop_comment_count": 3.0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 13.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.5, - "_pop_dependents_count": 4, - "_pop_score": 28.22, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/googlecloudplatform/dataflow-geobeam/master/README.md", - "_readme_localurl": "googlecloudplatform~dataflow-geobeam~README.md", + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 12.69, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/albahnsen/pycircular/master/README.rst", + "_readme_localurl": "albahnsen~pycircular~README.rst", "_requirements_filenames": [ "setup.py" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/googlecloudplatform/dataflow-geobeam/master/setup.py" + "https://raw.githubusercontent.com/albahnsen/pycircular/master/setup.py" ], "_requirements_localurls": [ - "googlecloudplatform~dataflow-geobeam~setup.py" + "albahnsen~pycircular~setup.py" ] }, { @@ -57352,9 +79247,17 @@ "description": null, "_repopath": "cloudsen12/easystac", "_reponame": "easystac", - "_stars": 57, + "_stars": 60, "_forks": 1, "_watches": 3, + "_language": "Python", + "_homepage": "https://easystac.readthedocs.io/", + "_description": "easystac: A Python package for simple STAC queries", + "_organization": "cloudsen12", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-01-20T00:00:00.000Z", + "_age_weeks": 56, + "_stars_per_week": 1.06, "_topics": [ "stac", "remote-sensing", @@ -57367,29 +79270,31 @@ "planetary-computer", "radiant" ], - "_language": "Python", - "_homepage": "https://easystac.readthedocs.io/", - "_description": "easystac: A Python package for simple STAC queries", - "_organization": "cloudsen12", - "_updated_at": "2022-11-26T00:00:00.000Z", "_last_commit_date": "2022-08-07T00:00:00.000Z", - "_created_at": "2022-01-20T00:00:00.000Z", - "_age_weeks": 47, - "_stars_per_week": 1.2, "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "csaybar@emcdestudent", + "davemlz@rsc4earth|universityofleipzig", + "duckontheweb@regrowag" + ], "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "emcdestudent", "regrowag", "rsc4earth|universityofleipzig" ], + "_pop_contributor_orgs_raw": [ + "@regrowag", + "EMCDE Student", + "RSC4Earth | University of Leipzig" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.06, + "_pop_commit_frequency": 0.08, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 11, - "_pop_updated_since_days": 4, + "_pop_created_since_days": 13, + "_pop_updated_since_days": 7, "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, @@ -57398,7 +79303,7 @@ "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 15.25, + "_pop_score": 13.37, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/cloudsen12/easystac/master/README.md", "_readme_localurl": "cloudsen12~easystac~README.md", @@ -57412,6 +79317,63 @@ "cloudsen12~easystac~setup.py" ] }, + { + "index": 912, + "category": "security", + "githuburl": "https://github.com/abnamro/repository-scanner", + "featured": null, + "links": null, + "description": null, + "_repopath": "abnamro/repository-scanner", + "_reponame": "repository-scanner", + "_stars": 57, + "_forks": 2, + "_watches": 6, + "_language": "Python", + "_homepage": "", + "_description": "repository-scanner: Tool to detect secrets in source code management systems.", + "_organization": "abnamro", + "_updated_at": "2023-02-19T00:00:00.000Z", + "_created_at": "2022-09-08T00:00:00.000Z", + "_age_weeks": 23, + "_stars_per_week": 2.39, + "_topics": [], + "_last_commit_date": "2023-02-21T00:00:00.000Z", + "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "DamienVermaas", + "Peter-v-d-Spek", + "Usman2ABN", + "ajaikuruppath", + "amrityamrout", + "b-abderrahmane-abnamro" + ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.73, + "_pop_updated_issues_count": 38, + "_pop_closed_issues_count": 36, + "_pop_created_since_days": 6, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 5, + "_pop_recent_releases_estimated_tags": 10, + "_pop_recent_releases_adjusted_count": 5, + "_pop_issue_count": 38.0, + "_pop_comment_count": 2.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.1, + "_pop_dependents_count": 0, + "_pop_score": 19.71, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/abnamro/repository-scanner/master/README.md", + "_readme_localurl": "abnamro~repository-scanner~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 521, "category": "gis", @@ -57421,38 +79383,43 @@ "description": null, "_repopath": "lydorn/mapalignment", "_reponame": "mapalignment", - "_stars": 55, + "_stars": 57, "_forks": 14, "_watches": 4, - "_topics": [], "_language": "Python", "_homepage": "", "_description": "mapalignment: Aligning and Updating Cadaster Maps with Remote Sensing Images", "_organization": "lydorn", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2020-09-03T00:00:00.000Z", + "_updated_at": "2023-02-10T00:00:00.000Z", "_created_at": "2018-09-05T00:00:00.000Z", - "_age_weeks": 223, - "_stars_per_week": 0.25, + "_age_weeks": 233, + "_stars_per_week": 0.24, + "_topics": [], + "_last_commit_date": "2020-09-03T00:00:00.000Z", "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "Lydorn", + "netsimilarity" + ], "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 1, + "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 52, - "_pop_updated_since_days": 28, + "_pop_created_since_days": 54, + "_pop_updated_since_days": 30, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 1.0, + "_pop_issue_count": 0.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 4.99, + "_pop_score": 4.44, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/lydorn/mapalignment/master/README.md", "_readme_localurl": "lydorn~mapalignment~README.md", @@ -57472,6 +79439,14 @@ "_stars": 55, "_forks": 5, "_watches": 8, + "_language": "Python", + "_homepage": "https://cowait.io", + "_description": "cowait: Containerized distributed programming framework for Python", + "_organization": "backtick-se", + "_updated_at": "2022-11-16T00:00:00.000Z", + "_created_at": "2019-09-18T00:00:00.000Z", + "_age_weeks": 179, + "_stars_per_week": 0.31, "_topics": [ "python", "task-scheduler", @@ -57483,36 +79458,42 @@ "docker", "workflow-engine" ], - "_language": "Python", - "_homepage": "https://cowait.io", - "_description": "cowait: Containerized distributed programming framework for Python", - "_organization": "backtick-se", - "_updated_at": "2022-11-16T00:00:00.000Z", "_last_commit_date": "2022-09-22T00:00:00.000Z", - "_created_at": "2019-09-18T00:00:00.000Z", - "_age_weeks": 169, - "_stars_per_week": 0.32, "_pop_contributor_count": 10, + "_pop_contributor_logins": [ + "MTullbergDebricked", + "Martomate", + "OskarHandmark@backticktechnologies", + "dependabot[bot]", + "emil-debricked", + "emilwareus", + "fredrikolsson96@backticktechnologies", + "johanhenriksson", + "michalstypa@backticktechnologies" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "backticktechnologies" ], + "_pop_contributor_orgs_raw": [ + "Backtick Technologies" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.33, - "_pop_updated_issues_count": 13, - "_pop_closed_issues_count": 2, - "_pop_created_since_days": 40, - "_pop_updated_since_days": 3, + "_pop_commit_frequency": 0.25, + "_pop_updated_issues_count": 6, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 42, + "_pop_updated_since_days": 5, "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 14, + "_pop_recent_releases_estimated_tags": 13, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 13.0, - "_pop_comment_count": 2.0, + "_pop_issue_count": 6.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.2, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 22.05, + "_pop_score": 19.05, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/backtick-se/cowait/master/README.md", "_readme_localurl": "backtick-se~cowait~README.md", @@ -57533,70 +79514,77 @@ ] }, { - "index": 816, - "category": "util", - "githuburl": "https://github.com/aws-samples/sagemaker-ssh-helper", + "index": 400, + "category": "study", + "githuburl": "https://github.com/dylanhogg/crazy-awesome-python", "featured": null, "links": null, "description": null, - "_repopath": "aws-samples/sagemaker-ssh-helper", - "_reponame": "sagemaker-ssh-helper", - "_stars": 51, - "_forks": 7, - "_watches": 6, + "_repopath": "dylanhogg/crazy-awesome-python", + "_reponame": "crazy-awesome-python", + "_stars": 53, + "_forks": 8, + "_watches": 3, + "_language": "HTML", + "_homepage": "https://www.awesomepython.org/", + "_description": "crazy-awesome-python: A curated list of awesome Python frameworks, with a bias towards data and machine learning", + "_organization": "dylanhogg", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2020-06-20T00:00:00.000Z", + "_age_weeks": 139, + "_stars_per_week": 0.38, "_topics": [ - "amazon-sagemaker", - "aws", - "aws-systems-manager", + "python", + "python-data", + "awesome-list", + "python-machine-learning", + "python-nlp", + "python-frameworks", + "python-library", + "data", "machine-learning", - "pycharm", - "sagemaker", - "sagemaker-studio", - "ssh", - "vscode" + "natural-language-processing" ], - "_language": "Python", - "_homepage": "", - "_description": "sagemaker-ssh-helper: A helper library to connect into Amazon SageMaker with AWS Systems Manager and SSH", - "_organization": "aws-samples", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-12-15T00:00:00.000Z", - "_created_at": "2022-10-14T00:00:00.000Z", - "_age_weeks": 9, - "_stars_per_week": 5.41, - "_pop_contributor_count": 4, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_last_commit_date": "2023-02-11T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "dependabot[bot]", + "dylanhogg@infocruncher" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "amazon", - "amazonwebservices(aws)" + "infocruncher" + ], + "_pop_contributor_orgs_raw": [ + "Infocruncher" ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.5, - "_pop_updated_issues_count": 9, - "_pop_closed_issues_count": 5, - "_pop_created_since_days": 2, + "_pop_commit_frequency": 1.54, + "_pop_updated_issues_count": 2, + "_pop_closed_issues_count": 2, + "_pop_created_since_days": 33, "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 3, - "_pop_recent_releases_estimated_tags": 18, - "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 9.0, - "_pop_comment_count": 16.0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 2.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.8, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 22.89, + "_pop_score": 20.15, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/aws-samples/sagemaker-ssh-helper/master/README.md", - "_readme_localurl": "aws-samples~sagemaker-ssh-helper~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/dylanhogg/crazy-awesome-python/master/README.md", + "_readme_localurl": "dylanhogg~crazy-awesome-python~README.md", "_requirements_filenames": [ - "setup.py" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/aws-samples/sagemaker-ssh-helper/master/setup.py" + "https://raw.githubusercontent.com/dylanhogg/crazy-awesome-python/master/requirements.txt" ], "_requirements_localurls": [ - "aws-samples~sagemaker-ssh-helper~setup.py" + "dylanhogg~crazy-awesome-python~requirements.txt" ] }, { @@ -57608,46 +79596,67 @@ "description": null, "_repopath": "snyk-labs/pysnyk", "_reponame": "pysnyk", - "_stars": 50, - "_forks": 91, + "_stars": 52, + "_forks": 93, "_watches": 10, - "_topics": [ - "snyk", - "python", - "api" - ], "_language": "Python", "_homepage": "https://snyk.docs.apiary.io/", "_description": "pysnyk: A Python client for the Snyk API.", "_organization": "snyk-labs", - "_updated_at": "2022-11-04T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", + "_updated_at": "2023-01-20T00:00:00.000Z", "_created_at": "2019-02-03T00:00:00.000Z", - "_age_weeks": 202, + "_age_weeks": 211, "_stars_per_week": 0.25, - "_pop_contributor_count": 22, - "_pop_contributor_orgs_len": 3, - "_pop_contributor_orgs_max": 5, + "_topics": [ + "snyk", + "python", + "api" + ], + "_last_commit_date": "2023-01-20T00:00:00.000Z", + "_pop_contributor_count": 30, + "_pop_contributor_logins": [ + "colinbarr@paddlehq", + "garethr@snyk", + "jdewinne@replicated.com", + "jgresty", + "lili2311@snyk", + "maxjeffos", + "mnimmny", + "mrzarquon@gitpod-io", + "nirfuchs@snyk", + "xavierxmorris" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "gitpod-io", + "paddlehq", "replicated.com", "snyk" ], + "_pop_contributor_orgs_raw": [ + "@PaddleHQ", + "@gitpod-io ", + "@snyk", + "@snyk ", + "Snyk", + "replicated.com" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.29, - "_pop_updated_issues_count": 10, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 47, - "_pop_updated_since_days": 0, + "_pop_commit_frequency": 0.56, + "_pop_updated_issues_count": 28, + "_pop_closed_issues_count": 16, + "_pop_created_since_days": 49, + "_pop_updated_since_days": 1, "_pop_recent_releases_count": 8, "_pop_recent_releases_estimated_tags": 5, "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 10.0, - "_pop_comment_count": 4.0, + "_pop_issue_count": 28.0, + "_pop_comment_count": 21.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.4, - "_pop_dependents_count": 4, - "_pop_score": 35.76, + "_pop_comment_frequency": 0.8, + "_pop_dependents_count": 0, + "_pop_score": 36.73, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/snyk-labs/pysnyk/master/README.md", "_readme_localurl": "snyk-labs~pysnyk~README.md", @@ -57661,71 +79670,6 @@ "snyk-labs~pysnyk~pyproject.toml" ] }, - { - "index": 400, - "category": "study", - "githuburl": "https://github.com/dylanhogg/crazy-awesome-python", - "featured": null, - "links": null, - "description": null, - "_repopath": "dylanhogg/crazy-awesome-python", - "_reponame": "crazy-awesome-python", - "_stars": 47, - "_forks": 8, - "_watches": 3, - "_topics": [ - "python", - "python-data", - "awesome-list", - "python-machine-learning", - "python-nlp", - "python-frameworks", - "python-library", - "data", - "machine-learning", - "natural-language-processing" - ], - "_language": "HTML", - "_homepage": "https://www.awesomepython.org/", - "_description": "crazy-awesome-python: A curated list of awesome Python frameworks, with a bias towards data and machine learning", - "_organization": "dylanhogg", - "_updated_at": "2022-12-09T00:00:00.000Z", - "_last_commit_date": "2022-12-10T00:00:00.000Z", - "_created_at": "2020-06-20T00:00:00.000Z", - "_age_weeks": 130, - "_stars_per_week": 0.36, - "_pop_contributor_count": 2, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.62, - "_pop_updated_issues_count": 6, - "_pop_closed_issues_count": 6, - "_pop_created_since_days": 30, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 6.0, - "_pop_comment_count": 0.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 0, - "_pop_score": 17.75, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/dylanhogg/crazy-awesome-python/master/README.md", - "_readme_localurl": "dylanhogg~crazy-awesome-python~README.md", - "_requirements_filenames": [ - "requirements.txt" - ], - "_requirements_giturls": [ - "https://raw.githubusercontent.com/dylanhogg/crazy-awesome-python/master/requirements.txt" - ], - "_requirements_localurls": [ - "dylanhogg~crazy-awesome-python~requirements.txt" - ] - }, { "index": 401, "category": "crypto", @@ -57735,9 +79679,17 @@ "description": null, "_repopath": "dylanhogg/crazy-awesome-crypto", "_reponame": "crazy-awesome-crypto", - "_stars": 43, - "_forks": 13, + "_stars": 46, + "_forks": 15, "_watches": 4, + "_language": "Python", + "_homepage": "https://www.awesomecrypto.xyz/", + "_description": "crazy-awesome-crypto: A list of awesome crypto and blockchain projects", + "_organization": "dylanhogg", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2021-09-27T00:00:00.000Z", + "_age_weeks": 73, + "_stars_per_week": 0.63, "_topics": [ "crypto", "cryptocurrency", @@ -57750,34 +79702,34 @@ "github", "awesome" ], - "_language": "Python", - "_homepage": "https://www.awesomecrypto.xyz/", - "_description": "crazy-awesome-crypto: A list of awesome crypto and blockchain projects", - "_organization": "dylanhogg", - "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-12-10T00:00:00.000Z", - "_created_at": "2021-09-27T00:00:00.000Z", - "_age_weeks": 64, - "_stars_per_week": 0.67, + "_last_commit_date": "2023-02-13T00:00:00.000Z", "_pop_contributor_count": 1, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_pop_contributor_logins": [ + "dylanhogg@infocruncher" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "infocruncher" + ], + "_pop_contributor_orgs_raw": [ + "Infocruncher" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.63, + "_pop_commit_frequency": 0.33, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 15, + "_pop_created_since_days": 17, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 2, - "_pop_recent_releases_adjusted_count": 2, + "_pop_recent_releases_estimated_tags": 1, + "_pop_recent_releases_adjusted_count": 1, "_pop_issue_count": 0.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 11.51, + "_pop_score": 14.13, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/dylanhogg/crazy-awesome-crypto/master/README.md", "_readme_localurl": "dylanhogg~crazy-awesome-crypto~README.md", @@ -57791,6 +79743,90 @@ "dylanhogg~crazy-awesome-crypto~requirements.txt" ] }, + { + "index": 924, + "category": "gis", + "githuburl": "https://github.com/radiantearth/radiant-mlhub", + "featured": null, + "links": null, + "description": null, + "_repopath": "radiantearth/radiant-mlhub", + "_reponame": "radiant-mlhub", + "_stars": 46, + "_forks": 10, + "_watches": 5, + "_language": "Python", + "_homepage": "https://radiant-mlhub.readthedocs.io/", + "_description": "radiant-mlhub: A Python client for the Radiant MLHub API (https://mlhub.earth).", + "_organization": "radiantearth", + "_updated_at": "2023-02-02T00:00:00.000Z", + "_created_at": "2020-10-13T00:00:00.000Z", + "_age_weeks": 123, + "_stars_per_week": 0.37, + "_topics": [ + "machine-learning", + "satellite-imagery", + "python", + "python-client", + "python-3", + "stac" + ], + "_last_commit_date": "2023-02-13T00:00:00.000Z", + "_pop_contributor_count": 9, + "_pop_contributor_logins": [ + "PowerChell@radiantearth", + "adamjstewart@universityofillinoisaturbana-champaign", + "dependabot[bot]", + "duckontheweb@regrowag", + "guidorice@regrow", + "kbgg@radiantearth", + "rowenarono95" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "radiantearth", + "regrow", + "regrowag", + "universityofillinoisaturbana-champaign" + ], + "_pop_contributor_orgs_raw": [ + "@radiantearth ", + "@regrowag", + "Regrow", + "University of Illinois at Urbana-Champaign" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.44, + "_pop_updated_issues_count": 12, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 29, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 7, + "_pop_recent_releases_estimated_tags": 8, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 12.0, + "_pop_comment_count": 7.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.6, + "_pop_dependents_count": 0, + "_pop_score": 33.11, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/radiantearth/radiant-mlhub/master/README.md", + "_readme_localurl": "radiantearth~radiant-mlhub~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/radiantearth/radiant-mlhub/master/setup.py", + "https://raw.githubusercontent.com/radiantearth/radiant-mlhub/master/pyproject.toml" + ], + "_requirements_localurls": [ + "radiantearth~radiant-mlhub~setup.py", + "radiantearth~radiant-mlhub~pyproject.toml" + ] + }, { "index": 202, "category": "crypto", @@ -57800,30 +79836,36 @@ "description": null, "_repopath": "nerolation/ethereum-datafarm", "_reponame": "ethereum-datafarm", - "_stars": 37, - "_forks": 8, + "_stars": 45, + "_forks": 10, "_watches": 1, - "_topics": [], "_language": "Python", "_homepage": null, "_description": "ethereum-datafarm: Scrap blockchain data from the public API of Etherscan.io", "_organization": "nerolation", - "_updated_at": "2022-12-18T00:00:00.000Z", - "_last_commit_date": "2022-11-19T00:00:00.000Z", + "_updated_at": "2023-02-19T00:00:00.000Z", "_created_at": "2021-03-13T00:00:00.000Z", - "_age_weeks": 92, - "_stars_per_week": 0.4, + "_age_weeks": 101, + "_stars_per_week": 0.44, + "_topics": [], + "_last_commit_date": "2023-01-21T00:00:00.000Z", "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "nerolation@viennauniversityofeconomicsandbusiness(wu)" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "viennauniversityofeconomicsandbusiness(wu)" ], + "_pop_contributor_orgs_raw": [ + "Vienna University of Economics and Business (WU)" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 1.71, + "_pop_commit_frequency": 1.69, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 22, + "_pop_created_since_days": 24, "_pop_updated_since_days": 1, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, @@ -57833,7 +79875,7 @@ "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 13.0, + "_pop_score": 13.2, "_readme_filename": "Readme.md", "_readme_giturl": "https://raw.githubusercontent.com/nerolation/ethereum-datafarm/master/Readme.md", "_readme_localurl": "nerolation~ethereum-datafarm~Readme.md", @@ -57856,9 +79898,17 @@ "description": null, "_repopath": "activitysim/populationsim", "_reponame": "populationsim", - "_stars": 37, + "_stars": 40, "_forks": 27, "_watches": 11, + "_language": "Jupyter Notebook", + "_homepage": "https://activitysim.github.io/populationsim", + "_description": "populationsim: An Open Platform for Population Synthesis", + "_organization": "activitysim", + "_updated_at": "2023-02-15T00:00:00.000Z", + "_created_at": "2017-02-14T00:00:00.000Z", + "_age_weeks": 314, + "_stars_per_week": 0.13, "_topics": [ "python", "data-science", @@ -57867,37 +79917,43 @@ "bsd-3-clause", "microsimulation" ], - "_language": "Jupyter Notebook", - "_homepage": "https://activitysim.github.io/populationsim", - "_description": "populationsim: An Open Platform for Population Synthesis", - "_organization": "activitysim", - "_updated_at": "2022-08-23T00:00:00.000Z", "_last_commit_date": "2021-11-19T00:00:00.000Z", - "_created_at": "2017-02-14T00:00:00.000Z", - "_age_weeks": 304, - "_stars_per_week": 0.12, "_pop_contributor_count": 9, + "_pop_contributor_logins": [ + "bettinardi@oregondepartmentoftransportation", + "binnympaul", + "blakerosenthal", + "bstabler@ptvgroup", + "jamiecook", + "jfdman", + "johnklawlor", + "toliwaga" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ - "ptvgroup", - "rsginc" + "oregondepartmentoftransportation", + "ptvgroup" + ], + "_pop_contributor_orgs_raw": [ + "Oregon Department of Transportation", + "PTV Group" ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 1, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 71, - "_pop_updated_since_days": 13, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 73, + "_pop_updated_since_days": 15, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 1.0, - "_pop_comment_count": 3.0, + "_pop_issue_count": 5.0, + "_pop_comment_count": 4.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 3.0, + "_pop_comment_frequency": 0.8, "_pop_dependents_count": 0, - "_pop_score": 23.37, + "_pop_score": 20.96, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/activitysim/populationsim/master/README.md", "_readme_localurl": "activitysim~populationsim~README.md", @@ -57911,6 +79967,80 @@ "activitysim~populationsim~setup.py" ] }, + { + "index": 979, + "category": "sim", + "githuburl": "https://github.com/glpcc/pokerpy", + "featured": null, + "links": null, + "description": null, + "_repopath": "glpcc/pokerpy", + "_reponame": "PokerPy", + "_stars": 40, + "_forks": 4, + "_watches": 1, + "_language": "C++", + "_homepage": "", + "_description": "PokerPy: Texas Hold'em Poker Probability Calculator in Python", + "_organization": "glpcc", + "_updated_at": "2023-02-10T00:00:00.000Z", + "_created_at": "2022-12-11T00:00:00.000Z", + "_age_weeks": 10, + "_stars_per_week": 3.84, + "_topics": [ + "cpp", + "fast", + "performance", + "poker", + "pybind11", + "python", + "texas-holdem" + ], + "_last_commit_date": "2023-02-10T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "glpcc@universidadpolit\u00e9cnicademadrid", + "luigibrancati" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "universidadpolit\u00e9cnicademadrid" + ], + "_pop_contributor_orgs_raw": [ + "Universidad Polit\u00e9cnica de Madrid" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.08, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 2, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 8.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 8.0, + "_pop_dependents_count": 0, + "_pop_score": 20.66, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/glpcc/pokerpy/master/README.md", + "_readme_localurl": "glpcc~pokerpy~README.md", + "_requirements_filenames": [ + "setup.py", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/glpcc/pokerpy/master/setup.py", + "https://raw.githubusercontent.com/glpcc/pokerpy/master/pyproject.toml" + ], + "_requirements_localurls": [ + "glpcc~pokerpy~setup.py", + "glpcc~pokerpy~pyproject.toml" + ] + }, { "index": 821, "category": "pandas", @@ -57920,38 +80050,42 @@ "description": null, "_repopath": "ddelange/mapply", "_reponame": "mapply", - "_stars": 35, - "_forks": 2, - "_watches": 3, - "_topics": [], + "_stars": 39, + "_forks": 3, + "_watches": 4, "_language": "Python", "_homepage": "", "_description": "mapply: Sensible multi-core apply function for Pandas", "_organization": "ddelange", - "_updated_at": "2022-12-14T00:00:00.000Z", - "_last_commit_date": "2022-12-16T00:00:00.000Z", + "_updated_at": "2023-02-15T00:00:00.000Z", "_created_at": "2020-10-26T00:00:00.000Z", - "_age_weeks": 112, - "_stars_per_week": 0.31, + "_age_weeks": 121, + "_stars_per_week": 0.32, + "_topics": [], + "_last_commit_date": "2022-12-16T00:00:00.000Z", "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "ddelange" + ], "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.29, - "_pop_updated_issues_count": 7, - "_pop_closed_issues_count": 7, - "_pop_created_since_days": 26, - "_pop_updated_since_days": 0, + "_pop_updated_issues_count": 5, + "_pop_closed_issues_count": 4, + "_pop_created_since_days": 28, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 9, - "_pop_recent_releases_estimated_tags": 9, + "_pop_recent_releases_estimated_tags": 8, "_pop_recent_releases_adjusted_count": 9, - "_pop_issue_count": 7.0, - "_pop_comment_count": 12.0, + "_pop_issue_count": 5.0, + "_pop_comment_count": 8.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.7, + "_pop_comment_frequency": 1.6, "_pop_dependents_count": 0, - "_pop_score": 21.63, + "_pop_score": 18.43, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ddelange/mapply/master/README.md", "_readme_localurl": "ddelange~mapply~README.md", @@ -57965,6 +80099,95 @@ "ddelange~mapply~setup.py" ] }, + { + "index": 940, + "category": "data", + "githuburl": "https://github.com/scylladb/python-driver", + "featured": null, + "links": null, + "description": null, + "_repopath": "scylladb/python-driver", + "_reponame": "python-driver", + "_stars": 38, + "_forks": 27, + "_watches": 6, + "_language": "Python", + "_homepage": "https://python-driver.docs.scylladb.com", + "_description": "python-driver: ScyllaDB Python Driver, originally DataStax Python Driver for Apache Cassandra", + "_organization": "scylladb", + "_updated_at": "2023-02-02T00:00:00.000Z", + "_created_at": "2018-11-20T00:00:00.000Z", + "_age_weeks": 222, + "_stars_per_week": 0.17, + "_topics": [ + "scylladb", + "python" + ], + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 204, + "_pop_contributor_logins": [ + "GregBestland", + "TheRealFalcon@canonical", + "aboudreault@kovarogroup", + "aholmberg", + "bdeggleston@apple", + "fruch@scylladb", + "joaquincasares@audiusproject", + "mambocab@rapid7", + "rustyrazorblade@apple", + "thobbs@anticlassicstudios" + ], + "_pop_contributor_orgs_len": 7, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "anticlassicstudios", + "apple", + "audiusproject", + "canonical", + "kovarogroup", + "rapid7", + "scylladb" + ], + "_pop_contributor_orgs_raw": [ + "@AudiusProject", + "@scylladb", + "Anticlassic Studios, LLC", + "Apple", + "Canonical", + "Kovaro Group", + "Rapid7" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.75, + "_pop_updated_issues_count": 36, + "_pop_closed_issues_count": 23, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 26, + "_pop_recent_releases_adjusted_count": 26, + "_pop_issue_count": 36.0, + "_pop_comment_count": 67.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.9, + "_pop_dependents_count": 0, + "_pop_score": 51.46, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/scylladb/python-driver/master/README.rst", + "_readme_localurl": "scylladb~python-driver~README.rst", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/scylladb/python-driver/master/requirements.txt", + "https://raw.githubusercontent.com/scylladb/python-driver/master/setup.py" + ], + "_requirements_localurls": [ + "scylladb~python-driver~requirements.txt", + "scylladb~python-driver~setup.py" + ] + }, { "index": 386, "category": "nlp", @@ -57974,9 +80197,17 @@ "description": null, "_repopath": "ferdinandzhong/punctuator", "_reponame": "punctuator", - "_stars": 35, + "_stars": 36, "_forks": 5, "_watches": 1, + "_language": "Python", + "_homepage": "", + "_description": "punctuator: A small seq2seq punctuator tool based on DistilBERT", + "_organization": "ferdinandzhong", + "_updated_at": "2023-02-07T00:00:00.000Z", + "_created_at": "2020-11-19T00:00:00.000Z", + "_age_weeks": 117, + "_stars_per_week": 0.31, "_topics": [ "bert", "nlp", @@ -57987,34 +80218,30 @@ "bert-ner", "chinese-nlp" ], - "_language": "Python", - "_homepage": "", - "_description": "punctuator: A small seq2seq punctuator tool based on DistilBERT", - "_organization": "ferdinandzhong", - "_updated_at": "2022-10-19T00:00:00.000Z", "_last_commit_date": "2022-09-28T00:00:00.000Z", - "_created_at": "2020-11-19T00:00:00.000Z", - "_age_weeks": 108, - "_stars_per_week": 0.32, "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "FerdinandZhong" + ], "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.17, - "_pop_updated_issues_count": 2, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 25, - "_pop_updated_since_days": 3, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 27, + "_pop_updated_since_days": 5, "_pop_recent_releases_count": 2, "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 2.0, - "_pop_comment_count": 13.0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 6.5, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 21.05, + "_pop_score": 10.45, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/ferdinandzhong/punctuator/master/README.md", "_readme_localurl": "ferdinandzhong~punctuator~README.md", @@ -58031,6 +80258,85 @@ "ferdinandzhong~punctuator~setup.py" ] }, + { + "index": 918, + "category": "ml-ops", + "githuburl": "https://github.com/anyscale/airflow-provider-ray", + "featured": null, + "links": null, + "description": null, + "_repopath": "anyscale/airflow-provider-ray", + "_reponame": "airflow-provider-ray", + "_stars": 32, + "_forks": 10, + "_watches": 13, + "_language": "Python", + "_homepage": null, + "_description": "airflow-provider-ray: Ray provider for Apache Airflow", + "_organization": "anyscale", + "_updated_at": "2022-11-16T00:00:00.000Z", + "_created_at": "2021-03-05T00:00:00.000Z", + "_age_weeks": 102, + "_stars_per_week": 0.31, + "_topics": [], + "_last_commit_date": "2021-10-03T00:00:00.000Z", + "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "dimberman@astronomerio", + "mrrobby@advocatingdistributeddataplatforms", + "petedejoy@astronomer", + "pgzmnk@astronomer.io", + "richardliaw@anyscale", + "sunkickr@astronomer" + ], + "_pop_contributor_orgs_len": 5, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "advocatingdistributeddataplatforms", + "anyscale", + "astronomer", + "astronomer.io", + "astronomerio" + ], + "_pop_contributor_orgs_raw": [ + "@anyscale", + "@astronomer", + "@astronomerio", + "Advocating Distributed Data Platforms", + "Astronomer", + "Astronomer.io" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 24, + "_pop_updated_since_days": 17, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 3.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 3.0, + "_pop_dependents_count": 0, + "_pop_score": 22.03, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/anyscale/airflow-provider-ray/master/README.md", + "_readme_localurl": "anyscale~airflow-provider-ray~README.md", + "_requirements_filenames": [ + "requirements.txt", + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/anyscale/airflow-provider-ray/master/requirements.txt", + "https://raw.githubusercontent.com/anyscale/airflow-provider-ray/master/setup.py" + ], + "_requirements_localurls": [ + "anyscale~airflow-provider-ray~requirements.txt", + "anyscale~airflow-provider-ray~setup.py" + ] + }, { "index": 333, "category": "util", @@ -58041,8 +80347,16 @@ "_repopath": "gondolav/pyfuncol", "_reponame": "pyfuncol", "_stars": 32, - "_forks": 3, + "_forks": 2, "_watches": 3, + "_language": "Python", + "_homepage": "https://pyfuncol.readthedocs.io/", + "_description": "pyfuncol: Functional collections extension functions for Python", + "_organization": "gondolav", + "_updated_at": "2022-11-16T00:00:00.000Z", + "_created_at": "2021-12-16T00:00:00.000Z", + "_age_weeks": 61, + "_stars_per_week": 0.52, "_topics": [ "functional", "collections", @@ -58051,36 +80365,37 @@ "python3", "extension-functions" ], - "_language": "Python", - "_homepage": "https://pyfuncol.readthedocs.io/", - "_description": "pyfuncol: Functional collections extension functions for Python", - "_organization": "gondolav", - "_updated_at": "2022-11-16T00:00:00.000Z", - "_last_commit_date": "2022-11-16T00:00:00.000Z", - "_created_at": "2021-12-16T00:00:00.000Z", - "_age_weeks": 52, - "_stars_per_week": 0.61, + "_last_commit_date": "2023-01-14T00:00:00.000Z", "_pop_contributor_count": 4, + "_pop_contributor_logins": [ + "Gondolav", + "dependabot[bot]", + "m-doescode", + "samuelchassot@epfl" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "epfl" ], + "_pop_contributor_orgs_raw": [ + "EPFL" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.98, - "_pop_updated_issues_count": 27, + "_pop_commit_frequency": 0.71, + "_pop_updated_issues_count": 25, "_pop_closed_issues_count": 20, - "_pop_created_since_days": 12, + "_pop_created_since_days": 14, "_pop_updated_since_days": 1, - "_pop_recent_releases_count": 7, - "_pop_recent_releases_estimated_tags": 7, - "_pop_recent_releases_adjusted_count": 7, - "_pop_issue_count": 27.0, - "_pop_comment_count": 38.0, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 6, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 25.0, + "_pop_comment_count": 30.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.4, + "_pop_comment_frequency": 1.2, "_pop_dependents_count": 0, - "_pop_score": 25.43, + "_pop_score": 22.64, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/gondolav/pyfuncol/master/README.md", "_readme_localurl": "gondolav~pyfuncol~README.md", @@ -58097,6 +80412,86 @@ "gondolav~pyfuncol~setup.py" ] }, + { + "index": 921, + "category": "util", + "githuburl": "https://github.com/python-odin/odin", + "featured": null, + "links": null, + "description": null, + "_repopath": "python-odin/odin", + "_reponame": "odin", + "_stars": 29, + "_forks": 7, + "_watches": 3, + "_language": "Python", + "_homepage": "https://odin.readthedocs.org/en/latest/", + "_description": "odin: Data-structure definition/validation/traversal, mapping and serialisation toolkit for Python", + "_organization": "python-odin", + "_updated_at": "2023-02-14T00:00:00.000Z", + "_created_at": "2013-08-20T00:00:00.000Z", + "_age_weeks": 496, + "_stars_per_week": 0.06, + "_topics": [ + "python", + "validation", + "data-structures", + "data-mapping", + "serialize", + "de-serialize", + "json", + "csv", + "msgpack", + "xml", + "yaml" + ], + "_last_commit_date": "2023-02-19T00:00:00.000Z", + "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "dependabot-preview[bot]", + "dependabot[bot]", + "pyup-bot@pyupio", + "thedrow", + "timsavage@westpac" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "pyupio", + "westpac" + ], + "_pop_contributor_orgs_raw": [ + "@pyupio", + "Westpac" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 2.21, + "_pop_updated_issues_count": 11, + "_pop_closed_issues_count": 9, + "_pop_created_since_days": 116, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 12, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 11.0, + "_pop_comment_count": 13.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 36.36, + "_readme_filename": "README.rst", + "_readme_giturl": "https://raw.githubusercontent.com/python-odin/odin/master/README.rst", + "_readme_localurl": "python-odin~odin~README.rst", + "_requirements_filenames": [ + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/python-odin/odin/master/pyproject.toml" + ], + "_requirements_localurls": [ + "python-odin~odin~pyproject.toml" + ] + }, { "index": 711, "category": "gis", @@ -58106,40 +80501,47 @@ "description": null, "_repopath": "artelys/geonetworkx", "_reponame": "geonetworkx", - "_stars": 30, + "_stars": 29, "_forks": 1, "_watches": 7, - "_topics": [], "_language": "Python", "_homepage": null, "_description": "geonetworkx: Python tools for geographic graphs", "_organization": "artelys", - "_updated_at": "2022-10-27T00:00:00.000Z", - "_last_commit_date": "2021-06-28T00:00:00.000Z", + "_updated_at": "2022-12-22T00:00:00.000Z", "_created_at": "2019-10-24T00:00:00.000Z", - "_age_weeks": 164, - "_stars_per_week": 0.18, + "_age_weeks": 173, + "_stars_per_week": 0.17, + "_topics": [], + "_last_commit_date": "2021-06-28T00:00:00.000Z", "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "Hyrae", + "frapac@argonnenationallaboratory" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "argonnenationallaboratory" ], + "_pop_contributor_orgs_raw": [ + "Argonne National Laboratory" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 1, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 38, - "_pop_updated_since_days": 18, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 41, + "_pop_updated_since_days": 20, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 2, - "_pop_issue_count": 1.0, - "_pop_comment_count": 1.0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.0, + "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 16.4, + "_pop_score": 12.44, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/artelys/geonetworkx/master/README.md", "_readme_localurl": "artelys~geonetworkx~README.md", @@ -58168,6 +80570,14 @@ "_stars": 28, "_forks": 0, "_watches": 2, + "_language": "Python", + "_homepage": "", + "_description": "mapcompare: Comparison of Python packages and libraries for visualising geospatial vector data: applications for Smarter Cities.", + "_organization": "gregorhd", + "_updated_at": "2022-12-06T00:00:00.000Z", + "_created_at": "2021-05-21T00:00:00.000Z", + "_age_weeks": 91, + "_stars_per_week": 0.31, "_topics": [ "visualisation-libraries", "sample-visualisation", @@ -58177,27 +80587,25 @@ "urban-data-science", "interactive-visualisations" ], - "_language": "Python", - "_homepage": "", - "_description": "mapcompare: Comparison of Python packages and libraries for visualising geospatial vector data: applications for Smarter Cities.", - "_organization": "gregorhd", - "_updated_at": "2022-12-06T00:00:00.000Z", "_last_commit_date": "2022-12-03T00:00:00.000Z", - "_created_at": "2021-05-21T00:00:00.000Z", - "_age_weeks": 82, - "_stars_per_week": 0.34, "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "gregorhd@gafag" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "gafag" ], + "_pop_contributor_orgs_raw": [ + "GAF AG" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.17, + "_pop_commit_frequency": 0.04, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 19, - "_pop_updated_since_days": 0, + "_pop_created_since_days": 21, + "_pop_updated_since_days": 3, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 2, @@ -58206,7 +80614,7 @@ "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 14.89, + "_pop_score": 11.53, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/gregorhd/mapcompare/master/README.md", "_readme_localurl": "gregorhd~mapcompare~README.md", @@ -58220,6 +80628,62 @@ "gregorhd~mapcompare~setup.py" ] }, + { + "index": 934, + "category": "ml", + "githuburl": "https://github.com/pgniewko/forward_forward_vhts", + "featured": null, + "links": null, + "description": null, + "_repopath": "pgniewko/forward_forward_vhts", + "_reponame": "forward_forward_vhts", + "_stars": 28, + "_forks": 5, + "_watches": 1, + "_language": "Jupyter Notebook", + "_homepage": null, + "_description": "forward_forward_vhts: The Forward-Forward Algorithm for Drug Discovery", + "_organization": "pgniewko", + "_updated_at": "2023-02-18T00:00:00.000Z", + "_created_at": "2022-12-29T00:00:00.000Z", + "_age_weeks": 7, + "_stars_per_week": 3.56, + "_topics": [], + "_last_commit_date": "2022-12-30T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "pgniewko@atomwise" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "atomwise" + ], + "_pop_contributor_orgs_raw": [ + "Atomwise, Inc." + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.12, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 2, + "_pop_updated_since_days": 2, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 6.47, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/pgniewko/forward_forward_vhts/master/README.md", + "_readme_localurl": "pgniewko~forward_forward_vhts~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 894, "category": "sim", @@ -58229,46 +80693,54 @@ "description": null, "_repopath": "crowddynamics/crowddynamics", "_reponame": "crowddynamics", - "_stars": 27, + "_stars": 28, "_forks": 9, "_watches": 9, + "_language": "Python", + "_homepage": "https://jaantollander.com/post/how-to-implement-continuous-time-multi-agent-crowd-simulation/", + "_description": "crowddynamics: Continuous-time multi-agent crowd simulation engine implemented in Python using Numba and Numpy for performance.", + "_organization": "crowddynamics", + "_updated_at": "2023-01-31T00:00:00.000Z", + "_created_at": "2016-03-22T00:00:00.000Z", + "_age_weeks": 361, + "_stars_per_week": 0.08, "_topics": [ "crowd-dynamics", "multi-agent", "continuous-time", "crowd-simulation" ], - "_language": "Python", - "_homepage": "https://jaantollander.com/post/how-to-implement-continuous-time-multi-agent-crowd-simulation/", - "_description": "crowddynamics: Continuous-time multi-agent crowd simulation engine implemented in Python using Numba and Numpy for performance.", - "_organization": "crowddynamics", - "_updated_at": "2022-12-16T00:00:00.000Z", "_last_commit_date": "2020-01-02T00:00:00.000Z", - "_created_at": "2016-03-22T00:00:00.000Z", - "_age_weeks": 351, - "_stars_per_week": 0.08, "_pop_contributor_count": 7, + "_pop_contributor_logins": [ + "jaantollander@aaltouniversity", + "pyup-bot@pyupio" + ], "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "aaltouniversity", "pyupio" ], + "_pop_contributor_orgs_raw": [ + "@pyupio", + "Aalto University" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 0, + "_pop_updated_issues_count": 1, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 82, - "_pop_updated_since_days": 36, + "_pop_created_since_days": 84, + "_pop_updated_since_days": 38, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 0.0, + "_pop_issue_count": 1.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 13.12, + "_pop_score": 13.52, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/crowddynamics/crowddynamics/master/README.md", "_readme_localurl": "crowddynamics~crowddynamics~README.md", @@ -58285,6 +80757,81 @@ "crowddynamics~crowddynamics~setup.py" ] }, + { + "index": 578, + "category": "term", + "githuburl": "https://github.com/matthewdeanmartin/terminaltables", + "featured": null, + "links": null, + "description": null, + "_repopath": "matthewdeanmartin/terminaltables", + "_reponame": "terminaltables", + "_stars": 25, + "_forks": 5, + "_watches": 0, + "_language": "Python", + "_homepage": "https://robpol86.github.io/terminaltables", + "_description": "terminaltables: Generate simple tables in terminals from a nested list of strings.", + "_organization": "matthewdeanmartin", + "_updated_at": "2023-02-16T00:00:00.000Z", + "_created_at": "2021-12-04T00:00:00.000Z", + "_age_weeks": 63, + "_stars_per_week": 0.39, + "_topics": [], + "_last_commit_date": "2022-01-30T00:00:00.000Z", + "_pop_contributor_count": 10, + "_pop_contributor_logins": [ + "Robpol86", + "aleivag", + "bcho", + "kovacsbalu", + "liiight", + "matthewdeanmartin", + "mgorny@projg2", + "msabramo@adobe", + "zqqf16" + ], + "_pop_contributor_orgs_len": 2, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "adobe", + "projg2" + ], + "_pop_contributor_orgs_raw": [ + "@adobe", + "@projg2" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 15, + "_pop_updated_since_days": 13, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 12, + "_pop_recent_releases_adjusted_count": 12, + "_pop_issue_count": 1.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 17.4, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/matthewdeanmartin/terminaltables/master/README.md", + "_readme_localurl": "matthewdeanmartin~terminaltables~README.md", + "_requirements_filenames": [ + "pyproject.toml", + "Pipfile" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/matthewdeanmartin/terminaltables/master/pyproject.toml", + "https://raw.githubusercontent.com/matthewdeanmartin/terminaltables/master/Pipfile" + ], + "_requirements_localurls": [ + "matthewdeanmartin~terminaltables~pyproject.toml", + "matthewdeanmartin~terminaltables~Pipfile" + ] + }, { "index": 688, "category": "ml-dl", @@ -58295,44 +80842,51 @@ "_repopath": "jerryyli/valhalla-nmt", "_reponame": "valhalla-nmt", "_stars": 23, - "_forks": 3, + "_forks": 4, "_watches": 1, + "_language": "Python", + "_homepage": "", + "_description": "valhalla-nmt: Code repository for CVPR 2022 paper \"VALHALLA: Visual Hallucination for Machine Translation\"", + "_organization": "jerryyli", + "_updated_at": "2023-02-11T00:00:00.000Z", + "_created_at": "2022-03-22T00:00:00.000Z", + "_age_weeks": 48, + "_stars_per_week": 0.48, "_topics": [ "computer-vision", "machine-translation", "multimodal-learning", "natural-language-processing" ], - "_language": "Python", - "_homepage": "", - "_description": "valhalla-nmt: Code repository for CVPR 2022 paper \"VALHALLA: Visual Hallucination for Machine Translation\"", - "_organization": "jerryyli", - "_updated_at": "2022-11-26T00:00:00.000Z", - "_last_commit_date": "2022-06-06T00:00:00.000Z", - "_created_at": "2022-03-22T00:00:00.000Z", - "_age_weeks": 38, - "_stars_per_week": 0.59, + "_last_commit_date": "2023-02-19T00:00:00.000Z", "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "JerryYLi", + "rpand002@mit-ibmwatsonailab" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "mit-ibmwatsonailab" ], + "_pop_contributor_orgs_raw": [ + "MIT-IBM Watson AI Lab" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.31, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 9, - "_pop_updated_since_days": 6, - "_pop_recent_releases_count": 1, - "_pop_recent_releases_estimated_tags": 1, - "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, + "_pop_commit_frequency": 0.33, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 1, + "_pop_created_since_days": 11, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 2, + "_pop_recent_releases_estimated_tags": 2, + "_pop_recent_releases_adjusted_count": 2, + "_pop_issue_count": 1.0, + "_pop_comment_count": 2.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, + "_pop_comment_frequency": 2.0, "_pop_dependents_count": 0, - "_pop_score": 9.8, + "_pop_score": 21.39, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jerryyli/valhalla-nmt/master/README.md", "_readme_localurl": "jerryyli~valhalla-nmt~README.md", @@ -58352,26 +80906,32 @@ "_stars": 21, "_forks": 8, "_watches": 6, - "_topics": [], "_language": "Python", "_homepage": null, "_description": "PaCAL - ProbAbilistic CALculator", "_organization": "jszymon", "_updated_at": "2022-11-02T00:00:00.000Z", - "_last_commit_date": "2022-11-02T00:00:00.000Z", "_created_at": "2014-08-04T00:00:00.000Z", - "_age_weeks": 437, + "_age_weeks": 446, "_stars_per_week": 0.05, + "_topics": [], + "_last_commit_date": "2022-11-02T00:00:00.000Z", "_pop_contributor_count": 8, + "_pop_contributor_logins": [ + "jszymon", + "mkorzen1729", + "ricardoV94" + ], "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.04, "_pop_updated_issues_count": 1, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 102, - "_pop_updated_since_days": 2, + "_pop_created_since_days": 104, + "_pop_updated_since_days": 4, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -58379,8 +80939,8 @@ "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 5, - "_pop_score": 18.5, + "_pop_dependents_count": 0, + "_pop_score": 14.08, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/jszymon/pacal/master/README.md", "_readme_localurl": "jszymon~pacal~README.md", @@ -58409,6 +80969,14 @@ "_stars": 18, "_forks": 5, "_watches": 11, + "_language": "Python", + "_homepage": "https://pardata.readthedocs.io/en/latest/", + "_description": "codait/pardata", + "_organization": "codait", + "_updated_at": "2022-08-14T00:00:00.000Z", + "_created_at": "2020-11-17T00:00:00.000Z", + "_age_weeks": 118, + "_stars_per_week": 0.15, "_topics": [ "dataset", "python", @@ -58416,37 +80984,46 @@ "artificial-intelligence", "data-science" ], - "_language": "Python", - "_homepage": "https://pardata.readthedocs.io/en/latest/", - "_description": "codait/pardata", - "_organization": "codait", - "_updated_at": "2022-08-14T00:00:00.000Z", "_last_commit_date": "2021-12-01T00:00:00.000Z", - "_created_at": "2020-11-17T00:00:00.000Z", - "_age_weeks": 108, - "_stars_per_week": 0.17, "_pop_contributor_count": 7, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "cclauss@christianclauss", + "dependabot[bot]", + "djalova", + "edwardleardi@ibmcodait", + "renovate[bot]", + "tlzhu19@ibm", + "xuhdev@google" + ], + "_pop_contributor_orgs_len": 4, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "christianclauss", "google", + "ibm", "ibmcodait" ], + "_pop_contributor_orgs_raw": [ + "@Google", + "@IBM @CODAIT ", + "Christian Clauss", + "IBM" + ], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 7, + "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 25, - "_pop_updated_since_days": 13, + "_pop_created_since_days": 28, + "_pop_updated_since_days": 15, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 3, "_pop_recent_releases_adjusted_count": 3, - "_pop_issue_count": 7.0, + "_pop_issue_count": 0.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 16.56, + "_pop_score": 17.57, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/codait/pardata/master/README.rst", "_readme_localurl": "codait~pardata~README.rst", @@ -58461,64 +81038,115 @@ ] }, { - "index": 578, - "category": "term", - "githuburl": "https://github.com/matthewdeanmartin/terminaltables", + "index": 919, + "category": "study", + "githuburl": "https://github.com/anyscale/rl-course", "featured": null, "links": null, "description": null, - "_repopath": "matthewdeanmartin/terminaltables", - "_reponame": "terminaltables", + "_repopath": "anyscale/rl-course", + "_reponame": "rl-course", "_stars": 17, - "_forks": 4, - "_watches": 0, + "_forks": 0, + "_watches": 5, + "_language": "Jupyter Notebook", + "_homepage": null, + "_description": "anyscale/rl-course", + "_organization": "anyscale", + "_updated_at": "2023-02-07T00:00:00.000Z", + "_created_at": "2022-03-01T00:00:00.000Z", + "_age_weeks": 51, + "_stars_per_week": 0.33, "_topics": [], - "_language": "Python", - "_homepage": "https://robpol86.github.io/terminaltables", - "_description": "terminaltables: Generate simple tables in terminals from a nested list of strings.", - "_organization": "matthewdeanmartin", - "_updated_at": "2022-11-15T00:00:00.000Z", - "_last_commit_date": "2022-01-30T00:00:00.000Z", - "_created_at": "2021-12-04T00:00:00.000Z", - "_age_weeks": 54, - "_stars_per_week": 0.31, - "_pop_contributor_count": 10, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "adobe" + "_last_commit_date": "2023-01-02T00:00:00.000Z", + "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "maxpumperla" ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.02, - "_pop_updated_issues_count": 1, + "_pop_commit_frequency": 4.96, + "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 13, - "_pop_updated_since_days": 11, + "_pop_created_since_days": 12, + "_pop_updated_since_days": 2, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 14, - "_pop_recent_releases_adjusted_count": 14, - "_pop_issue_count": 1.0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 31, - "_pop_score": 21.96, + "_pop_dependents_count": 0, + "_pop_score": 9.67, "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/matthewdeanmartin/terminaltables/master/README.md", - "_readme_localurl": "matthewdeanmartin~terminaltables~README.md", + "_readme_giturl": "https://raw.githubusercontent.com/anyscale/rl-course/master/README.md", + "_readme_localurl": "anyscale~rl-course~README.md", "_requirements_filenames": [ - "pyproject.toml", - "Pipfile" + "requirements.txt" ], "_requirements_giturls": [ - "https://raw.githubusercontent.com/matthewdeanmartin/terminaltables/master/pyproject.toml", - "https://raw.githubusercontent.com/matthewdeanmartin/terminaltables/master/Pipfile" + "https://raw.githubusercontent.com/anyscale/rl-course/master/requirements.txt" ], "_requirements_localurls": [ - "matthewdeanmartin~terminaltables~pyproject.toml", - "matthewdeanmartin~terminaltables~Pipfile" + "anyscale~rl-course~requirements.txt" ] }, + { + "index": 669, + "category": "gis", + "githuburl": "https://github.com/zorzi-s/maprepair", + "featured": null, + "links": null, + "description": null, + "_repopath": "zorzi-s/maprepair", + "_reponame": "MapRepair", + "_stars": 17, + "_forks": 4, + "_watches": 2, + "_language": "Python", + "_homepage": null, + "_description": "MapRepair: Deep Cadastre Maps Alignment and Temporal Inconsistencies Fix in Satellite Images", + "_organization": "zorzi-s", + "_updated_at": "2023-02-17T00:00:00.000Z", + "_created_at": "2020-07-30T00:00:00.000Z", + "_age_weeks": 133, + "_stars_per_week": 0.13, + "_topics": [], + "_last_commit_date": "2021-05-17T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "zorzi-s" + ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.0, + "_pop_updated_issues_count": 0, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 31, + "_pop_updated_since_days": 22, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 0.0, + "_pop_comment_count": 0.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.0, + "_pop_dependents_count": 0, + "_pop_score": 2.72, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/zorzi-s/maprepair/master/README.md", + "_readme_localurl": "zorzi-s~maprepair~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] + }, { "index": 679, "category": "util", @@ -58531,6 +81159,14 @@ "_stars": 16, "_forks": 4, "_watches": 2, + "_language": "Python", + "_homepage": "https://pypi.org/project/arxiv-dl/", + "_description": "arxiv-dl: Command-line ArXiv & CVF (CVPR, ICCV, WACV) Paper Downloader", + "_organization": "markhershey", + "_updated_at": "2022-12-02T00:00:00.000Z", + "_created_at": "2021-01-21T00:00:00.000Z", + "_age_weeks": 108, + "_stars_per_week": 0.15, "_topics": [ "arxiv", "paper", @@ -58539,34 +81175,31 @@ "paper-with-code", "cvpr" ], - "_language": "Python", - "_homepage": "https://pypi.org/project/arxiv-dl/", - "_description": "arxiv-dl: Command-line ArXiv & CVF (CVPR, ICCV, WACV) Paper Downloader", - "_organization": "markhershey", - "_updated_at": "2022-12-02T00:00:00.000Z", - "_last_commit_date": "2022-12-06T00:00:00.000Z", - "_created_at": "2021-01-21T00:00:00.000Z", - "_age_weeks": 99, - "_stars_per_week": 0.16, + "_last_commit_date": "2023-01-30T00:00:00.000Z", "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "MarkHershey", + "lambdaofgod" + ], "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.48, + "_pop_commit_frequency": 0.37, "_pop_updated_issues_count": 1, - "_pop_closed_issues_count": 1, - "_pop_created_since_days": 23, - "_pop_updated_since_days": 0, - "_pop_recent_releases_count": 2, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 25, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, "_pop_recent_releases_estimated_tags": 3, - "_pop_recent_releases_adjusted_count": 2, + "_pop_recent_releases_adjusted_count": 1, "_pop_issue_count": 1.0, "_pop_comment_count": 1.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 1.0, "_pop_dependents_count": 0, - "_pop_score": 17.36, + "_pop_score": 14.52, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/markhershey/arxiv-dl/master/README.md", "_readme_localurl": "markhershey~arxiv-dl~README.md", @@ -58583,54 +81216,6 @@ "markhershey~arxiv-dl~setup.py" ] }, - { - "index": 669, - "category": "gis", - "githuburl": "https://github.com/zorzi-s/maprepair", - "featured": null, - "links": null, - "description": null, - "_repopath": "zorzi-s/maprepair", - "_reponame": "MapRepair", - "_stars": 16, - "_forks": 4, - "_watches": 2, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "MapRepair: Deep Cadastre Maps Alignment and Temporal Inconsistencies Fix in Satellite Images", - "_organization": "zorzi-s", - "_updated_at": "2022-12-06T00:00:00.000Z", - "_last_commit_date": "2021-05-17T00:00:00.000Z", - "_created_at": "2020-07-30T00:00:00.000Z", - "_age_weeks": 124, - "_stars_per_week": 0.13, - "_pop_contributor_count": 1, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.0, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 29, - "_pop_updated_since_days": 19, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 0, - "_pop_score": 2.91, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/zorzi-s/maprepair/master/README.md", - "_readme_localurl": "zorzi-s~maprepair~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 892, "category": "util", @@ -58640,45 +81225,56 @@ "description": null, "_repopath": "pyodide/micropip", "_reponame": "micropip", - "_stars": 10, - "_forks": 4, + "_stars": 16, + "_forks": 5, "_watches": 5, + "_language": "Python", + "_homepage": "https://micropip.pyodide.org", + "_description": "micropip: A lightweight Python package installer for Pyodide", + "_organization": "pyodide", + "_updated_at": "2023-01-26T00:00:00.000Z", + "_created_at": "2022-09-15T00:00:00.000Z", + "_age_weeks": 22, + "_stars_per_week": 0.7, "_topics": [ "package-installer", "pyodide", "python", "webassembly" ], - "_language": "Python", - "_homepage": "https://micropip.pyodide.org", - "_description": "micropip: A lightweight Python package installer for Pyodide", - "_organization": "pyodide", - "_updated_at": "2022-12-15T00:00:00.000Z", - "_last_commit_date": "2022-12-12T00:00:00.000Z", - "_created_at": "2022-09-15T00:00:00.000Z", - "_age_weeks": 13, - "_stars_per_week": 0.74, + "_last_commit_date": "2023-02-20T00:00:00.000Z", "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "hoodmane@mitmathdepartment", + "joemarshall", + "mentalisttraceur", + "pre-commit-ci[bot]", + "rth", + "ryanking13" + ], "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ "mitmathdepartment" ], + "_pop_contributor_orgs_raw": [ + "MIT Math Department" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.54, - "_pop_updated_issues_count": 37, + "_pop_commit_frequency": 0.71, + "_pop_updated_issues_count": 30, "_pop_closed_issues_count": 27, - "_pop_created_since_days": 3, + "_pop_created_since_days": 5, "_pop_updated_since_days": 0, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 8, - "_pop_recent_releases_adjusted_count": 8, - "_pop_issue_count": 37.0, - "_pop_comment_count": 70.0, + "_pop_recent_releases_estimated_tags": 7, + "_pop_recent_releases_adjusted_count": 7, + "_pop_issue_count": 30.0, + "_pop_comment_count": 37.0, "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 1.9, - "_pop_dependents_count": 3, - "_pop_score": 28.65, + "_pop_comment_frequency": 1.2, + "_pop_dependents_count": 0, + "_pop_score": 25.82, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/pyodide/micropip/master/README.md", "_readme_localurl": "pyodide~micropip~README.md", @@ -58704,26 +81300,31 @@ "_stars": 10, "_forks": 5, "_watches": 3, - "_topics": [], "_language": "Jupyter Notebook", "_homepage": "", "_description": "wikinet: Python library for exploring networks of hyperlinked Wikipedia articles", "_organization": "harangju", "_updated_at": "2022-12-16T00:00:00.000Z", - "_last_commit_date": "2022-01-25T00:00:00.000Z", "_created_at": "2019-08-05T00:00:00.000Z", - "_age_weeks": 176, - "_stars_per_week": 0.06, + "_age_weeks": 185, + "_stars_per_week": 0.05, + "_topics": [], + "_last_commit_date": "2022-01-25T00:00:00.000Z", "_pop_contributor_count": 6, + "_pop_contributor_logins": [ + "erteich", + "harangju" + ], "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.1, + "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 41, - "_pop_updated_since_days": 11, + "_pop_created_since_days": 43, + "_pop_updated_since_days": 13, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -58731,8 +81332,8 @@ "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 9, - "_pop_score": 12.74, + "_pop_dependents_count": 0, + "_pop_score": 8.18, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/harangju/wikinet/master/README.md", "_readme_localurl": "harangju~wikinet~README.md", @@ -58761,38 +81362,52 @@ "_stars": 7, "_forks": 5, "_watches": 6, - "_topics": [], "_language": "Python", "_homepage": null, "_description": "tk0miya/docutils-stubs", "_organization": "tk0miya", "_updated_at": "2022-01-02T00:00:00.000Z", - "_last_commit_date": "2022-01-02T00:00:00.000Z", "_created_at": "2018-11-02T00:00:00.000Z", - "_age_weeks": 215, + "_age_weeks": 224, "_stars_per_week": 0.03, + "_topics": [], + "_last_commit_date": "2022-01-02T00:00:00.000Z", "_pop_contributor_count": 6, - "_pop_contributor_orgs_len": 2, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_logins": [ + "Huy-Ngo", + "McSinyx@unist", + "cocoatomo", + "danieleades", + "flying-sheep@cellarity", + "tk0miya@timeintermedia(timedia)" + ], + "_pop_contributor_orgs_len": 3, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [ + "cellarity", "timeintermedia(timedia)", "unist" ], + "_pop_contributor_orgs_raw": [ + "@Cellarity", + "Time Intermedia (@timedia)", + "UNIST" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.04, + "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 50, - "_pop_updated_since_days": 12, + "_pop_created_since_days": 52, + "_pop_updated_since_days": 14, "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 5, - "_pop_recent_releases_adjusted_count": 5, + "_pop_recent_releases_estimated_tags": 4, + "_pop_recent_releases_adjusted_count": 4, "_pop_issue_count": 0.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 8, - "_pop_score": 21.32, + "_pop_dependents_count": 0, + "_pop_score": 18.15, "_readme_filename": "README.rst", "_readme_giturl": "https://raw.githubusercontent.com/tk0miya/docutils-stubs/master/README.rst", "_readme_localurl": "tk0miya~docutils-stubs~README.rst", @@ -58806,6 +81421,68 @@ "tk0miya~docutils-stubs~setup.py" ] }, + { + "index": 920, + "category": "ml-ops", + "githuburl": "https://github.com/anyscale/prefect-anyscale", + "featured": null, + "links": null, + "description": null, + "_repopath": "anyscale/prefect-anyscale", + "_reponame": "prefect-anyscale", + "_stars": 6, + "_forks": 1, + "_watches": 3, + "_language": "Python", + "_homepage": null, + "_description": "prefect-anyscale: Prefect integration with Anyscale", + "_organization": "anyscale", + "_updated_at": "2023-02-20T00:00:00.000Z", + "_created_at": "2022-11-07T00:00:00.000Z", + "_age_weeks": 15, + "_stars_per_week": 0.39, + "_topics": [], + "_last_commit_date": "2023-02-15T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "pcmoritz@anyscale" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "anyscale" + ], + "_pop_contributor_orgs_raw": [ + "Anyscale" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.44, + "_pop_updated_issues_count": 10, + "_pop_closed_issues_count": 8, + "_pop_created_since_days": 4, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 8, + "_pop_recent_releases_estimated_tags": 24, + "_pop_recent_releases_adjusted_count": 8, + "_pop_issue_count": 10.0, + "_pop_comment_count": 4.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 0.4, + "_pop_dependents_count": 0, + "_pop_score": 18.41, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/anyscale/prefect-anyscale/master/README.md", + "_readme_localurl": "anyscale~prefect-anyscale~README.md", + "_requirements_filenames": [ + "setup.py" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/anyscale/prefect-anyscale/master/setup.py" + ], + "_requirements_localurls": [ + "anyscale~prefect-anyscale~setup.py" + ] + }, { "index": 180, "category": "sim", @@ -58815,29 +81492,34 @@ "description": null, "_repopath": "artemyk/dynpy", "_reponame": "dynpy", - "_stars": 5, + "_stars": 6, "_forks": 5, "_watches": 3, - "_topics": [], "_language": "Python", "_homepage": null, "_description": "dynpy: Dynamical systems for Python", "_organization": "artemyk", - "_updated_at": "2021-09-24T00:00:00.000Z", - "_last_commit_date": "2018-09-28T00:00:00.000Z", + "_updated_at": "2022-12-27T00:00:00.000Z", "_created_at": "2014-09-12T00:00:00.000Z", - "_age_weeks": 431, + "_age_weeks": 440, "_stars_per_week": 0.01, + "_topics": [], + "_last_commit_date": "2018-09-28T00:00:00.000Z", "_pop_contributor_count": 5, + "_pop_contributor_logins": [ + "artemyk", + "gdmcbain" + ], "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 101, - "_pop_updated_since_days": 51, + "_pop_created_since_days": 103, + "_pop_updated_since_days": 54, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 0, "_pop_recent_releases_adjusted_count": 0, @@ -58845,8 +81527,8 @@ "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 3, - "_pop_score": 9.09, + "_pop_dependents_count": 0, + "_pop_score": 6.51, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/artemyk/dynpy/master/README.md", "_readme_localurl": "artemyk~dynpy~README.md", @@ -58860,6 +81542,75 @@ "artemyk~dynpy~setup.py" ] }, + { + "index": 911, + "category": "data", + "githuburl": "https://github.com/malloydata/malloy-py", + "featured": null, + "links": null, + "description": null, + "_repopath": "malloydata/malloy-py", + "_reponame": "malloy-py", + "_stars": 3, + "_forks": 1, + "_watches": 4, + "_language": "Python", + "_homepage": "", + "_description": "malloy-py: Python package for executing Malloy", + "_organization": "malloydata", + "_updated_at": "2023-02-07T00:00:00.000Z", + "_created_at": "2022-11-02T00:00:00.000Z", + "_age_weeks": 16, + "_stars_per_week": 0.19, + "_topics": [ + "business-analytics", + "business-intelligence", + "data", + "data-modeling", + "python", + "sql", + "semantic-modeling" + ], + "_last_commit_date": "2023-01-17T00:00:00.000Z", + "_pop_contributor_count": 1, + "_pop_contributor_logins": [ + "gmaden" + ], + "_pop_contributor_orgs_len": 0, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 1.02, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 4, + "_pop_updated_since_days": 1, + "_pop_recent_releases_count": 1, + "_pop_recent_releases_estimated_tags": 15, + "_pop_recent_releases_adjusted_count": 1, + "_pop_issue_count": 1.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 10.02, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/malloydata/malloy-py/master/README.md", + "_readme_localurl": "malloydata~malloy-py~README.md", + "_requirements_filenames": [ + "requirements.txt", + "pyproject.toml" + ], + "_requirements_giturls": [ + "https://raw.githubusercontent.com/malloydata/malloy-py/master/requirements.txt", + "https://raw.githubusercontent.com/malloydata/malloy-py/master/pyproject.toml" + ], + "_requirements_localurls": [ + "malloydata~malloy-py~requirements.txt", + "malloydata~malloy-py~pyproject.toml" + ] + }, { "index": 526, "category": "gis", @@ -58872,26 +81623,31 @@ "_stars": 3, "_forks": 2, "_watches": 1, - "_topics": [], "_language": "Python", "_homepage": "https://github.com/mapbox/wagyu", "_description": "wagyu: Python port of mapbox/wagyu library (with separate C++ binding)", "_organization": "lycantropos", "_updated_at": "2022-07-19T00:00:00.000Z", - "_last_commit_date": "2020-11-21T00:00:00.000Z", "_created_at": "2020-06-30T00:00:00.000Z", - "_age_weeks": 128, + "_age_weeks": 138, "_stars_per_week": 0.02, + "_topics": [], + "_last_commit_date": "2020-11-21T00:00:00.000Z", "_pop_contributor_count": 2, + "_pop_contributor_logins": [ + "lycantropos", + "synapticarbors" + ], "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, + "_pop_contributor_orgs_max": 10, "_pop_contributor_orgs": [], + "_pop_contributor_orgs_raw": [], "_pop_contributor_orgs_error": null, "_pop_commit_frequency": 0.0, "_pop_updated_issues_count": 0, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 30, - "_pop_updated_since_days": 25, + "_pop_created_since_days": 32, + "_pop_updated_since_days": 27, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 2, "_pop_recent_releases_adjusted_count": 2, @@ -58900,7 +81656,7 @@ "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 5.43, + "_pop_score": 5.4, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/lycantropos/wagyu/master/README.md", "_readme_localurl": "lycantropos~wagyu~README.md", @@ -58917,56 +81673,6 @@ "lycantropos~wagyu~setup.py" ] }, - { - "index": 751, - "category": "gis", - "githuburl": "https://github.com/edomel/boundaryvt", - "featured": null, - "links": null, - "description": null, - "_repopath": "edomel/boundaryvt", - "_reponame": "BoundaryVT", - "_stars": 2, - "_forks": 0, - "_watches": 2, - "_topics": [], - "_language": "Python", - "_homepage": null, - "_description": "edomel/boundaryvt", - "_organization": "edomel", - "_updated_at": "2022-12-07T00:00:00.000Z", - "_last_commit_date": "2022-09-29T00:00:00.000Z", - "_created_at": "2022-07-29T00:00:00.000Z", - "_age_weeks": 20, - "_stars_per_week": 0.1, - "_pop_contributor_count": 2, - "_pop_contributor_orgs_len": 1, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [ - "ethzurich" - ], - "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.1, - "_pop_updated_issues_count": 0, - "_pop_closed_issues_count": 0, - "_pop_created_since_days": 5, - "_pop_updated_since_days": 3, - "_pop_recent_releases_count": 0, - "_pop_recent_releases_estimated_tags": 0, - "_pop_recent_releases_adjusted_count": 0, - "_pop_issue_count": 0.0, - "_pop_comment_count": 0.0, - "_pop_comment_count_lookback_days": 90.0, - "_pop_comment_frequency": 0.0, - "_pop_dependents_count": 0, - "_pop_score": 7.59, - "_readme_filename": "README.md", - "_readme_giturl": "https://raw.githubusercontent.com/edomel/boundaryvt/master/README.md", - "_readme_localurl": "edomel~boundaryvt~README.md", - "_requirements_filenames": [], - "_requirements_giturls": [], - "_requirements_localurls": [] - }, { "index": 420, "category": "template", @@ -58979,40 +81685,49 @@ "_stars": 1, "_forks": 0, "_watches": 2, - "_topics": [ - "python", - "template", - "jupyterlab", - "cookiecutter" - ], "_language": "Python", "_homepage": "", "_description": "python-project-template: A quick-start Python project template with helpful functionality and common libraries.", "_organization": "dylanhogg", "_updated_at": "2022-08-19T00:00:00.000Z", - "_last_commit_date": "2022-08-19T00:00:00.000Z", "_created_at": "2020-02-12T00:00:00.000Z", - "_age_weeks": 148, + "_age_weeks": 158, "_stars_per_week": 0.01, + "_topics": [ + "python", + "template", + "jupyterlab", + "cookiecutter" + ], + "_last_commit_date": "2022-08-19T00:00:00.000Z", "_pop_contributor_count": 2, - "_pop_contributor_orgs_len": 0, - "_pop_contributor_orgs_max": 5, - "_pop_contributor_orgs": [], + "_pop_contributor_logins": [ + "dependabot[bot]", + "dylanhogg@infocruncher" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "infocruncher" + ], + "_pop_contributor_orgs_raw": [ + "Infocruncher" + ], "_pop_contributor_orgs_error": null, - "_pop_commit_frequency": 0.1, - "_pop_updated_issues_count": 1, + "_pop_commit_frequency": 0.04, + "_pop_updated_issues_count": 2, "_pop_closed_issues_count": 0, - "_pop_created_since_days": 35, - "_pop_updated_since_days": 4, + "_pop_created_since_days": 37, + "_pop_updated_since_days": 6, "_pop_recent_releases_count": 0, "_pop_recent_releases_estimated_tags": 1, "_pop_recent_releases_adjusted_count": 1, - "_pop_issue_count": 1.0, + "_pop_issue_count": 2.0, "_pop_comment_count": 0.0, "_pop_comment_count_lookback_days": 90.0, "_pop_comment_frequency": 0.0, "_pop_dependents_count": 0, - "_pop_score": 9.76, + "_pop_score": 12.65, "_readme_filename": "README.md", "_readme_giturl": "https://raw.githubusercontent.com/dylanhogg/python-project-template/master/README.md", "_readme_localurl": "dylanhogg~python-project-template~README.md", @@ -59025,6 +81740,63 @@ "_requirements_localurls": [ "dylanhogg~python-project-template~requirements.txt" ] + }, + { + "index": 751, + "category": "gis", + "githuburl": "https://github.com/edomel/boundaryvt", + "featured": null, + "links": null, + "description": null, + "_repopath": "edomel/boundaryvt", + "_reponame": "BoundaryVT", + "_stars": 1, + "_forks": 0, + "_watches": 2, + "_language": "Python", + "_homepage": null, + "_description": "edomel/boundaryvt", + "_organization": "edomel", + "_updated_at": "2022-12-19T00:00:00.000Z", + "_created_at": "2022-07-29T00:00:00.000Z", + "_age_weeks": 29, + "_stars_per_week": 0.03, + "_topics": [], + "_last_commit_date": "2023-01-11T00:00:00.000Z", + "_pop_contributor_count": 3, + "_pop_contributor_logins": [ + "ajadchhatkuli@ethzurich", + "edomel" + ], + "_pop_contributor_orgs_len": 1, + "_pop_contributor_orgs_max": 10, + "_pop_contributor_orgs": [ + "ethzurich" + ], + "_pop_contributor_orgs_raw": [ + "ETH Zurich" + ], + "_pop_contributor_orgs_error": null, + "_pop_commit_frequency": 0.13, + "_pop_updated_issues_count": 1, + "_pop_closed_issues_count": 0, + "_pop_created_since_days": 7, + "_pop_updated_since_days": 0, + "_pop_recent_releases_count": 0, + "_pop_recent_releases_estimated_tags": 0, + "_pop_recent_releases_adjusted_count": 0, + "_pop_issue_count": 1.0, + "_pop_comment_count": 1.0, + "_pop_comment_count_lookback_days": 90.0, + "_pop_comment_frequency": 1.0, + "_pop_dependents_count": 0, + "_pop_score": 15.96, + "_readme_filename": "README.md", + "_readme_giturl": "https://raw.githubusercontent.com/edomel/boundaryvt/master/README.md", + "_readme_localurl": "edomel~boundaryvt~README.md", + "_requirements_filenames": [], + "_requirements_giturls": [], + "_requirements_localurls": [] } ] } \ No newline at end of file diff --git a/github_data.min.json b/github_data.min.json index 4a6cb19..b56f33b 100644 --- a/github_data.min.json +++ b/github_data.min.json @@ -1 +1 @@ -{"schema":{"fields":[{"name":"index","type":"integer"},{"name":"category","type":"string"},{"name":"githuburl","type":"string"},{"name":"featured","type":"number"},{"name":"links","type":"string"},{"name":"description","type":"number"},{"name":"_repopath","type":"string"},{"name":"_reponame","type":"string"},{"name":"_stars","type":"integer"},{"name":"_forks","type":"integer"},{"name":"_watches","type":"integer"},{"name":"_topics","type":"string"},{"name":"_language","type":"string"},{"name":"_homepage","type":"string"},{"name":"_description","type":"string"},{"name":"_organization","type":"string"},{"name":"_updated_at","type":"string"},{"name":"_last_commit_date","type":"string"},{"name":"_created_at","type":"string"},{"name":"_age_weeks","type":"integer"},{"name":"_stars_per_week","type":"number"},{"name":"_pop_contributor_count","type":"integer"},{"name":"_pop_contributor_orgs_len","type":"integer"},{"name":"_pop_contributor_orgs_max","type":"integer"},{"name":"_pop_contributor_orgs","type":"string"},{"name":"_pop_contributor_orgs_error","type":"string"},{"name":"_pop_commit_frequency","type":"number"},{"name":"_pop_updated_issues_count","type":"integer"},{"name":"_pop_closed_issues_count","type":"integer"},{"name":"_pop_created_since_days","type":"integer"},{"name":"_pop_updated_since_days","type":"integer"},{"name":"_pop_recent_releases_count","type":"integer"},{"name":"_pop_recent_releases_estimated_tags","type":"integer"},{"name":"_pop_recent_releases_adjusted_count","type":"integer"},{"name":"_pop_issue_count","type":"number"},{"name":"_pop_comment_count","type":"number"},{"name":"_pop_comment_count_lookback_days","type":"number"},{"name":"_pop_comment_frequency","type":"number"},{"name":"_pop_dependents_count","type":"integer"},{"name":"_pop_score","type":"number"},{"name":"_readme_filename","type":"string"},{"name":"_readme_giturl","type":"string"},{"name":"_readme_localurl","type":"string"},{"name":"_requirements_filenames","type":"string"},{"name":"_requirements_giturls","type":"string"},{"name":"_requirements_localurls","type":"string"}],"primaryKey":["index"],"pandas_version":"0.20.0"},"data":[{"index":89,"category":"ml-dl","githuburl":"https://github.com/tensorflow/tensorflow","featured":null,"links":null,"description":null,"_repopath":"tensorflow/tensorflow","_reponame":"tensorflow","_stars":169751,"_forks":87558,"_watches":7793,"_topics":["tensorflow","machine-learning","python","deep-learning","deep-neural-networks","neural-network","ml","distributed"],"_language":"C++","_homepage":"https://tensorflow.org","_description":"tensorflow: An Open Source Machine Learning Framework for Everyone","_organization":"tensorflow","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2015-11-07T00:00:00.000Z","_age_weeks":371,"_stars_per_week":457.2,"_pop_contributor_count":4198,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","googletensorflow"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":312.65,"_pop_updated_issues_count":2393,"_pop_closed_issues_count":1430,"_pop_created_since_days":87,"_pop_updated_since_days":0,"_pop_recent_releases_count":32,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":32,"_pop_issue_count":2393.0,"_pop_comment_count":6694.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":175460,"_pop_score":92.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/tensorflow/master/README.md","_readme_localurl":"tensorflow~tensorflow~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":405,"category":"study","githuburl":"https://github.com/thealgorithms/python","featured":null,"links":null,"description":null,"_repopath":"thealgorithms/python","_reponame":"Python","_stars":150017,"_forks":38545,"_watches":5937,"_topics":["python","algorithm","algorithms-implemented","algorithm-competitions","algos","sorts","searches","sorting-algorithms","education","learn","practice","community-driven","interview","hacktoberfest"],"_language":"Python","_homepage":"https://the-algorithms.com/","_description":"Python: All Algorithms implemented in Python","_organization":"thealgorithms","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2016-07-16T00:00:00.000Z","_age_weeks":335,"_stars_per_week":447.43,"_pop_contributor_count":973,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["christianclauss","fossasiagojekthealgorithms","thealgorithmsgojek","universit\u00e4tpassau"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.31,"_pop_updated_issues_count":1926,"_pop_closed_issues_count":1831,"_pop_created_since_days":78,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1926.0,"_pop_comment_count":2356.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":3296,"_pop_score":69.3,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/thealgorithms/python/master/README.md","_readme_localurl":"thealgorithms~python~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/thealgorithms/python/master/requirements.txt","https://raw.githubusercontent.com/thealgorithms/python/master/pyproject.toml"],"_requirements_localurls":["thealgorithms~python~requirements.txt","thealgorithms~python~pyproject.toml"]},{"index":112,"category":"nlp","githuburl":"https://github.com/huggingface/transformers","featured":null,"links":null,"description":null,"_repopath":"huggingface/transformers","_reponame":"transformers","_stars":76398,"_forks":17261,"_watches":866,"_topics":["nlp","natural-language-processing","pytorch","language-model","tensorflow","bert","language-models","pytorch-transformers","nlp-library","transformer","model-hub","pretrained-models","jax","flax","seq2seq","speech-recognition","hacktoberfest","python","machine-learning","deep-learning"],"_language":"Python","_homepage":"https://huggingface.co/transformers","_description":"\ud83e\udd17 Transformers: State-of-the-art Machine Learning for Pytorch, TensorFlow, and JAX.","_organization":"huggingface","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-10-29T00:00:00.000Z","_age_weeks":216,"_stars_per_week":353.69,"_pop_contributor_count":1650,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","stasosphereonline"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":56.79,"_pop_updated_issues_count":2247,"_pop_closed_issues_count":1896,"_pop_created_since_days":50,"_pop_updated_since_days":0,"_pop_recent_releases_count":24,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":24,"_pop_issue_count":2248.0,"_pop_comment_count":6558.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":10695,"_pop_score":81.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/transformers/master/README.md","_readme_localurl":"huggingface~transformers~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/transformers/master/setup.py","https://raw.githubusercontent.com/huggingface/transformers/master/pyproject.toml"],"_requirements_localurls":["huggingface~transformers~setup.py","huggingface~transformers~pyproject.toml"]},{"index":14,"category":"web","githuburl":"https://github.com/django/django","featured":null,"links":null,"description":null,"_repopath":"django/django","_reponame":"django","_stars":67753,"_forks":28322,"_watches":2271,"_topics":["python","django","web","framework","orm","templates","models","views","apps"],"_language":"Python","_homepage":"https://www.djangoproject.com/","_description":"django: The Web framework for perfectionists with deadlines.","_organization":"django","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2012-04-28T00:00:00.000Z","_age_weeks":555,"_stars_per_week":122.01,"_pop_contributor_count":2842,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["2xlibre.nets\u00e0rl"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":18.12,"_pop_updated_issues_count":377,"_pop_closed_issues_count":307,"_pop_created_since_days":130,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":34,"_pop_recent_releases_adjusted_count":34,"_pop_issue_count":377.0,"_pop_comment_count":957.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":61720,"_pop_score":79.49,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/django/django/master/README.rst","_readme_localurl":"django~django~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/django/django/master/setup.py","https://raw.githubusercontent.com/django/django/master/pyproject.toml"],"_requirements_localurls":["django~django~setup.py","django~django~pyproject.toml"]},{"index":57,"category":"web","githuburl":"https://github.com/pallets/flask","featured":null,"links":null,"description":null,"_repopath":"pallets/flask","_reponame":"flask","_stars":61341,"_forks":15349,"_watches":2146,"_topics":["python","flask","wsgi","web-framework","werkzeug","jinja","pallets"],"_language":"Python","_homepage":"https://flask.palletsprojects.com","_description":"flask: The Python micro framework for building web applications.","_organization":"pallets","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-25T00:00:00.000Z","_created_at":"2010-04-06T00:00:00.000Z","_age_weeks":662,"_stars_per_week":92.54,"_pop_contributor_count":800,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["getsentry","sentry"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.71,"_pop_updated_issues_count":76,"_pop_closed_issues_count":65,"_pop_created_since_days":155,"_pop_updated_since_days":1,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":76.0,"_pop_comment_count":61.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":8741,"_pop_score":65.15,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/flask/master/README.rst","_readme_localurl":"pallets~flask~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/flask/master/setup.py"],"_requirements_localurls":["pallets~flask~setup.py"]},{"index":76,"category":"ml-dl","githuburl":"https://github.com/pytorch/pytorch","featured":null,"links":null,"description":null,"_repopath":"pytorch/pytorch","_reponame":"pytorch","_stars":61054,"_forks":17007,"_watches":1624,"_topics":["neural-network","autograd","gpu","numpy","deep-learning","tensor","python","machine-learning"],"_language":"C++","_homepage":"https://pytorch.org","_description":"pytorch: Tensors and Dynamic neural networks in Python with strong GPU acceleration","_organization":"pytorch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2016-08-13T00:00:00.000Z","_age_weeks":331,"_stars_per_week":184.29,"_pop_contributor_count":3755,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebookairesearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":216.04,"_pop_updated_issues_count":8263,"_pop_closed_issues_count":5684,"_pop_created_since_days":77,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":120,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":8258.0,"_pop_comment_count":34479.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.2,"_pop_dependents_count":961352,"_pop_score":91.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/pytorch/master/README.md","_readme_localurl":"pytorch~pytorch~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/pytorch/master/requirements.txt","https://raw.githubusercontent.com/pytorch/pytorch/master/setup.py","https://raw.githubusercontent.com/pytorch/pytorch/master/pyproject.toml"],"_requirements_localurls":["pytorch~pytorch~requirements.txt","pytorch~pytorch~setup.py","pytorch~pytorch~pyproject.toml"]},{"index":40,"category":"ml-dl","githuburl":"https://github.com/keras-team/keras","featured":null,"links":null,"description":null,"_repopath":"keras-team/keras","_reponame":"keras","_stars":56861,"_forks":19228,"_watches":1936,"_topics":["deep-learning","tensorflow","neural-networks","machine-learning","data-science","python"],"_language":"Python","_homepage":"http://keras.io/","_description":"keras: Deep Learning for humans","_organization":"keras-team","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2015-03-28T00:00:00.000Z","_age_weeks":403,"_stars_per_week":140.99,"_pop_contributor_count":1133,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","sktelecom"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":20.58,"_pop_updated_issues_count":486,"_pop_closed_issues_count":353,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":486.0,"_pop_comment_count":894.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":3088,"_pop_score":73.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/keras-team/keras/master/README.md","_readme_localurl":"keras-team~keras~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/keras-team/keras/master/requirements.txt"],"_requirements_localurls":["keras-team~keras~requirements.txt"]},{"index":189,"category":"util","githuburl":"https://github.com/home-assistant/core","featured":null,"links":null,"description":null,"_repopath":"home-assistant/core","_reponame":"core","_stars":56762,"_forks":20995,"_watches":1345,"_topics":["python","home-automation","iot","internet-of-things","mqtt","raspberry-pi","asyncio","hacktoberfest"],"_language":"Python","_homepage":"https://www.home-assistant.io","_description":"core: :house_with_garden: Open source home automation that puts local control and privacy first.","_organization":"home-assistant","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2013-09-17T00:00:00.000Z","_age_weeks":482,"_stars_per_week":117.55,"_pop_contributor_count":3475,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["home-assistant,nabucasa","home-assistanthassio-addons"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":241.85,"_pop_updated_issues_count":7960,"_pop_closed_issues_count":5914,"_pop_created_since_days":113,"_pop_updated_since_days":0,"_pop_recent_releases_count":173,"_pop_recent_releases_estimated_tags":111,"_pop_recent_releases_adjusted_count":173,"_pop_issue_count":7960.0,"_pop_comment_count":23769.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":3239,"_pop_score":86.91,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/home-assistant/core/master/README.rst","_readme_localurl":"home-assistant~core~README.rst","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/home-assistant/core/master/requirements.txt","https://raw.githubusercontent.com/home-assistant/core/master/pyproject.toml"],"_requirements_localurls":["home-assistant~core~requirements.txt","home-assistant~core~pyproject.toml"]},{"index":135,"category":"web","githuburl":"https://github.com/tiangolo/fastapi","featured":1.0,"links":null,"description":null,"_repopath":"tiangolo/fastapi","_reponame":"fastapi","_stars":52565,"_forks":4303,"_watches":603,"_topics":["python","json","swagger-ui","redoc","starlette","openapi","api","openapi3","framework","async","asyncio","uvicorn","python3","python-types","pydantic","json-schema","fastapi","swagger","rest","web"],"_language":"Python","_homepage":"https://fastapi.tiangolo.com/","_description":"FastAPI framework, high performance, easy to learn, fast to code, ready for production","_organization":"tiangolo","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-12-08T00:00:00.000Z","_age_weeks":210,"_stars_per_week":249.97,"_pop_contributor_count":401,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.75,"_pop_updated_issues_count":1366,"_pop_closed_issues_count":887,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":25,"_pop_recent_releases_estimated_tags":35,"_pop_recent_releases_adjusted_count":25,"_pop_issue_count":1366.0,"_pop_comment_count":3158.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":4316,"_pop_score":66.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/fastapi/master/README.md","_readme_localurl":"tiangolo~fastapi~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tiangolo/fastapi/master/pyproject.toml"],"_requirements_localurls":["tiangolo~fastapi~pyproject.toml"]},{"index":78,"category":"ml","githuburl":"https://github.com/scikit-learn/scikit-learn","featured":null,"links":null,"description":null,"_repopath":"scikit-learn/scikit-learn","_reponame":"scikit-learn","_stars":52354,"_forks":23790,"_watches":2167,"_topics":["machine-learning","python","statistics","data-science","data-analysis"],"_language":"Python","_homepage":"https://scikit-learn.org","_description":"scikit-learn: machine learning in Python","_organization":"scikit-learn","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2010-08-17T00:00:00.000Z","_age_weeks":643,"_stars_per_week":81.31,"_pop_contributor_count":2806,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["inria","meta","microsoft","uli\u00e8ge"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":31.21,"_pop_updated_issues_count":1080,"_pop_closed_issues_count":710,"_pop_created_since_days":150,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":1079.0,"_pop_comment_count":2656.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":36390,"_pop_score":84.49,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/scikit-learn/scikit-learn/master/README.rst","_readme_localurl":"scikit-learn~scikit-learn~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scikit-learn/scikit-learn/master/setup.py","https://raw.githubusercontent.com/scikit-learn/scikit-learn/master/pyproject.toml"],"_requirements_localurls":["scikit-learn~scikit-learn~setup.py","scikit-learn~scikit-learn~pyproject.toml"]},{"index":399,"category":"util","githuburl":"https://github.com/python/cpython","featured":null,"links":null,"description":null,"_repopath":"python/cpython","_reponame":"cpython","_stars":49550,"_forks":25219,"_watches":1465,"_topics":[],"_language":"Python","_homepage":"https://www.python.org/","_description":"cpython: The Python programming language","_organization":"python","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2017-02-10T00:00:00.000Z","_age_weeks":305,"_stars_per_week":162.23,"_pop_contributor_count":2294,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["fzj\u00fclich","keepertech","microsoft","redhatofficial"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":68.56,"_pop_updated_issues_count":4833,"_pop_closed_issues_count":3383,"_pop_created_since_days":71,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":91,"_pop_recent_releases_adjusted_count":91,"_pop_issue_count":4833.0,"_pop_comment_count":11415.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":11228,"_pop_score":86.26,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/python/cpython/master/README.rst","_readme_localurl":"python~cpython~README.rst","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":177,"category":"web","githuburl":"https://github.com/psf/requests","featured":null,"links":null,"description":null,"_repopath":"psf/requests","_reponame":"requests","_stars":48718,"_forks":8929,"_watches":1362,"_topics":["python","http","forhumans","requests","python-requests","client","humans","cookies"],"_language":"Python","_homepage":"https://requests.readthedocs.io/en/latest/","_description":"requests: A simple, yet elegant, HTTP library.","_organization":"psf","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-21T00:00:00.000Z","_created_at":"2011-02-13T00:00:00.000Z","_age_weeks":618,"_stars_per_week":78.81,"_pop_contributor_count":723,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","apple","tableau&salesforce"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.87,"_pop_updated_issues_count":89,"_pop_closed_issues_count":56,"_pop_created_since_days":144,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":89.0,"_pop_comment_count":124.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":9183,"_pop_score":64.97,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/psf/requests/master/README.md","_readme_localurl":"psf~requests~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/psf/requests/master/setup.py","https://raw.githubusercontent.com/psf/requests/master/pyproject.toml"],"_requirements_localurls":["psf~requests~setup.py","psf~requests~pyproject.toml"]},{"index":80,"category":"data","githuburl":"https://github.com/scrapy/scrapy","featured":null,"links":null,"description":null,"_repopath":"scrapy/scrapy","_reponame":"scrapy","_stars":45399,"_forks":9807,"_watches":1789,"_topics":["python","scraping","crawling","framework","crawler","hacktoberfest"],"_language":"Python","_homepage":"https://scrapy.org","_description":"Scrapy, a fast high-level web crawling & scraping framework for Python.","_organization":"scrapy","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2010-02-22T00:00:00.000Z","_age_weeks":669,"_stars_per_week":67.86,"_pop_contributor_count":569,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["superfly","zytedata(formerlyscrapinghub)","zytedata,scrapinghub"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.71,"_pop_updated_issues_count":259,"_pop_closed_issues_count":190,"_pop_created_since_days":156,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":260.0,"_pop_comment_count":538.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":1159,"_pop_score":67.91,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/scrapy/scrapy/master/README.rst","_readme_localurl":"scrapy~scrapy~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/scrapy/scrapy/master/setup.py"],"_requirements_localurls":["scrapy~scrapy~setup.py"]},{"index":695,"category":"ml-dl","githuburl":"https://github.com/deepfakes/faceswap","featured":null,"links":null,"description":null,"_repopath":"deepfakes/faceswap","_reponame":"faceswap","_stars":42994,"_forks":12012,"_watches":1502,"_topics":["faceswap","face-swap","deep-learning","deeplearning","deep-neural-networks","deepfakes","deepface","deep-face-swap","fakeapp","neural-networks","neural-nets","openfaceswap","myfakeapp","machine-learning"],"_language":"Python","_homepage":"https://www.faceswap.dev","_description":"faceswap: Deepfakes Software For All","_organization":"deepfakes","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2017-12-19T00:00:00.000Z","_age_weeks":260,"_stars_per_week":164.82,"_pop_contributor_count":94,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.87,"_pop_updated_issues_count":21,"_pop_closed_issues_count":14,"_pop_created_since_days":61,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":21.0,"_pop_comment_count":17.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":1192,"_pop_score":46.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/deepfakes/faceswap/master/README.md","_readme_localurl":"deepfakes~faceswap~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/deepfakes/faceswap/master/setup.py"],"_requirements_localurls":["deepfakes~faceswap~setup.py"]},{"index":179,"category":"term","githuburl":"https://github.com/willmcgugan/rich","featured":null,"links":null,"description":null,"_repopath":"willmcgugan/rich","_reponame":"rich","_stars":41137,"_forks":1447,"_watches":541,"_topics":["python","python3","python-library","terminal","terminal-color","markdown","tables","syntax-highlighting","ansi-colors","progress-bar-python","progress-bar","traceback","rich","tracebacks-rich","emoji","tui"],"_language":"Python","_homepage":"https://rich.readthedocs.io/en/latest/","_description":"Rich is a Python library for rich text and beautiful formatting in the terminal.","_organization":"willmcgugan","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2019-11-10T00:00:00.000Z","_age_weeks":162,"_stars_per_week":253.71,"_pop_contributor_count":203,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["davep.org","textualize"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.44,"_pop_updated_issues_count":197,"_pop_closed_issues_count":147,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":45,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":197.0,"_pop_comment_count":392.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":3007,"_pop_score":64.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/willmcgugan/rich/master/README.md","_readme_localurl":"willmcgugan~rich~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/willmcgugan/rich/master/setup.py","https://raw.githubusercontent.com/willmcgugan/rich/master/pyproject.toml"],"_requirements_localurls":["willmcgugan~rich~setup.py","willmcgugan~rich~pyproject.toml"]},{"index":262,"category":"web","githuburl":"https://github.com/sherlock-project/sherlock","featured":null,"links":null,"description":null,"_repopath":"sherlock-project/sherlock","_reponame":"sherlock","_stars":37843,"_forks":4466,"_watches":963,"_topics":["osint","reconnaissance","linux","macos","cli","sherlock","python3","windows","redteam","tools","information-gathering","hacktoberfest","hacktoberfest2022","python"],"_language":"Python","_homepage":"http://sherlock-project.github.io","_description":"sherlock: \ud83d\udd0e Hunt down social media accounts by username across social networks","_organization":"sherlock-project","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-21T00:00:00.000Z","_created_at":"2018-12-24T00:00:00.000Z","_age_weeks":208,"_stars_per_week":181.94,"_pop_contributor_count":209,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["paackeng"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.25,"_pop_updated_issues_count":194,"_pop_closed_issues_count":117,"_pop_created_since_days":48,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":194.0,"_pop_comment_count":179.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":415,"_pop_score":47.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sherlock-project/sherlock/master/README.md","_readme_localurl":"sherlock-project~sherlock~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/sherlock-project/sherlock/master/requirements.txt"],"_requirements_localurls":["sherlock-project~sherlock~requirements.txt"]},{"index":736,"category":"diffusion","githuburl":"https://github.com/compvis/stable-diffusion","featured":null,"links":null,"description":null,"_repopath":"compvis/stable-diffusion","_reponame":"stable-diffusion","_stars":37519,"_forks":5790,"_watches":355,"_topics":[],"_language":"Jupyter Notebook","_homepage":"https://ommer-lab.com/research/latent-diffusion-models/","_description":"stable-diffusion: A latent text-to-image diffusion model","_organization":"compvis","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-16T00:00:00.000Z","_created_at":"2022-08-10T00:00:00.000Z","_age_weeks":18,"_stars_per_week":2004.83,"_pop_contributor_count":8,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["runwayml"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.4,"_pop_updated_issues_count":324,"_pop_closed_issues_count":77,"_pop_created_since_days":4,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":324.0,"_pop_comment_count":729.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":53,"_pop_score":31.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/compvis/stable-diffusion/master/README.md","_readme_localurl":"compvis~stable-diffusion~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/compvis/stable-diffusion/master/setup.py"],"_requirements_localurls":["compvis~stable-diffusion~setup.py"]},{"index":432,"category":"study","githuburl":"https://github.com/jakevdp/pythondatasciencehandbook","featured":null,"links":null,"description":null,"_repopath":"jakevdp/pythondatasciencehandbook","_reponame":"PythonDataScienceHandbook","_stars":36840,"_forks":16265,"_watches":1768,"_topics":["scikit-learn","numpy","python","jupyter-notebook","matplotlib","pandas"],"_language":"Jupyter Notebook","_homepage":"http://jakevdp.github.io/PythonDataScienceHandbook","_description":"PythonDataScienceHandbook: Python Data Science Handbook: full text in Jupyter Notebooks","_organization":"jakevdp","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2018-11-30T00:00:00.000Z","_created_at":"2016-08-10T00:00:00.000Z","_age_weeks":331,"_stars_per_week":111.06,"_pop_contributor_count":17,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["coiled","google","kvantify","quansight"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":19,"_pop_closed_issues_count":11,"_pop_created_since_days":77,"_pop_updated_since_days":49,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":19.0,"_pop_comment_count":17.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":172,"_pop_score":32.72,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jakevdp/pythondatasciencehandbook/master/README.md","_readme_localurl":"jakevdp~pythondatasciencehandbook~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/jakevdp/pythondatasciencehandbook/master/requirements.txt"],"_requirements_localurls":["jakevdp~pythondatasciencehandbook~requirements.txt"]},{"index":59,"category":"pandas","githuburl":"https://github.com/pandas-dev/pandas","featured":1.0,"links":null,"description":null,"_repopath":"pandas-dev/pandas","_reponame":"pandas","_stars":36289,"_forks":15523,"_watches":1119,"_topics":["data-analysis","pandas","flexible","alignment","python","data-science"],"_language":"Python","_homepage":"https://pandas.pydata.org","_description":"pandas: Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more","_organization":"pandas-dev","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2010-08-24T00:00:00.000Z","_age_weeks":642,"_stars_per_week":56.45,"_pop_contributor_count":3189,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["rapidsai","voltrondata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":45.63,"_pop_updated_issues_count":4619,"_pop_closed_issues_count":3022,"_pop_created_since_days":150,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":4619.0,"_pop_comment_count":5418.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":4975,"_pop_score":80.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pandas-dev/pandas/master/README.md","_readme_localurl":"pandas-dev~pandas~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pandas-dev/pandas/master/setup.py","https://raw.githubusercontent.com/pandas-dev/pandas/master/pyproject.toml"],"_requirements_localurls":["pandas-dev~pandas~setup.py","pandas-dev~pandas~pyproject.toml"]},{"index":694,"category":"ml-dl","githuburl":"https://github.com/iperov/deepfacelab","featured":null,"links":null,"description":null,"_repopath":"iperov/deepfacelab","_reponame":"DeepFaceLab","_stars":36190,"_forks":8167,"_watches":1044,"_topics":["faceswap","face-swap","deep-learning","deeplearning","deep-neural-networks","deepfakes","deepface","deep-face-swap","fakeapp","neural-networks","neural-nets","deepfacelab","creating-deepfakes","arxiv","machine-learning"],"_language":"Python","_homepage":"","_description":"DeepFaceLab is the leading software for creating deepfakes.","_organization":"iperov","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-31T00:00:00.000Z","_created_at":"2018-06-04T00:00:00.000Z","_age_weeks":237,"_stars_per_week":152.7,"_pop_contributor_count":21,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":63,"_pop_closed_issues_count":12,"_pop_created_since_days":55,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":63.0,"_pop_comment_count":53.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":333,"_pop_score":33.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/iperov/deepfacelab/master/README.md","_readme_localurl":"iperov~deepfacelab~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":64,"category":"util","githuburl":"https://github.com/psf/black","featured":null,"links":null,"description":null,"_repopath":"psf/black","_reponame":"black","_stars":30470,"_forks":1949,"_watches":227,"_topics":["python","code","formatter","codeformatter","gofmt","yapf","autopep8","pre-commit-hook","hacktoberfest"],"_language":"Python","_homepage":"https://black.readthedocs.io/en/stable/","_description":"black: The uncompromising Python code formatter","_organization":"psf","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-03-14T00:00:00.000Z","_age_weeks":248,"_stars_per_week":122.51,"_pop_contributor_count":350,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["clc","facebook","psf","quora"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.35,"_pop_updated_issues_count":295,"_pop_closed_issues_count":176,"_pop_created_since_days":58,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":299.0,"_pop_comment_count":585.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":28929,"_pop_score":71.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/psf/black/master/README.md","_readme_localurl":"psf~black~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/psf/black/master/pyproject.toml"],"_requirements_localurls":["psf~black~pyproject.toml"]},{"index":220,"category":"util","githuburl":"https://github.com/pyenv/pyenv","featured":null,"links":null,"description":null,"_repopath":"pyenv/pyenv","_reponame":"pyenv","_stars":29882,"_forks":2655,"_watches":380,"_topics":["python","shell"],"_language":"Roff","_homepage":"","_description":"pyenv: Simple Python version management","_organization":"pyenv","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2012-08-31T00:00:00.000Z","_age_weeks":537,"_stars_per_week":55.6,"_pop_contributor_count":402,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["treasuredata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.25,"_pop_updated_issues_count":133,"_pop_closed_issues_count":117,"_pop_created_since_days":125,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":133.0,"_pop_comment_count":307.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":1883,"_pop_score":64.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyenv/pyenv/master/README.md","_readme_localurl":"pyenv~pyenv~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":55,"category":"sim","githuburl":"https://github.com/openai/gym","featured":null,"links":null,"description":null,"_repopath":"openai/gym","_reponame":"gym","_stars":29439,"_forks":8120,"_watches":999,"_topics":[],"_language":"Python","_homepage":"https://www.gymlibrary.dev","_description":"gym: A toolkit for developing and comparing reinforcement learning algorithms.","_organization":"openai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-25T00:00:00.000Z","_created_at":"2016-04-27T00:00:00.000Z","_age_weeks":346,"_stars_per_week":84.91,"_pop_contributor_count":384,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.62,"_pop_updated_issues_count":113,"_pop_closed_issues_count":83,"_pop_created_since_days":81,"_pop_updated_since_days":2,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":113.0,"_pop_comment_count":261.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":7204,"_pop_score":59.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/gym/master/README.md","_readme_localurl":"openai~gym~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/gym/master/requirements.txt","https://raw.githubusercontent.com/openai/gym/master/setup.py","https://raw.githubusercontent.com/openai/gym/master/pyproject.toml"],"_requirements_localurls":["openai~gym~requirements.txt","openai~gym~setup.py","openai~gym~pyproject.toml"]},{"index":118,"category":"ml-ops","githuburl":"https://github.com/apache/airflow","featured":null,"links":null,"description":null,"_repopath":"apache/airflow","_reponame":"airflow","_stars":28488,"_forks":11690,"_watches":764,"_topics":["airflow","apache","apache-airflow","python","scheduler","workflow","hacktoberfest"],"_language":"Python","_homepage":"https://airflow.apache.org/","_description":"airflow: Apache Airflow - A platform to programmatically author, schedule, and monitor workflows","_organization":"apache","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2015-04-13T00:00:00.000Z","_age_weeks":401,"_stars_per_week":71.04,"_pop_contributor_count":2662,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["apachesoftwarefoundation","astronomer","astronomer.io","preset-io","snowflakedb"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":70.71,"_pop_updated_issues_count":2090,"_pop_closed_issues_count":1667,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":337,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":2091.0,"_pop_comment_count":4975.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":13010,"_pop_score":86.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apache/airflow/master/README.md","_readme_localurl":"apache~airflow~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/apache/airflow/master/setup.py","https://raw.githubusercontent.com/apache/airflow/master/pyproject.toml"],"_requirements_localurls":["apache~airflow~setup.py","apache~airflow~pyproject.toml"]},{"index":592,"category":"util","githuburl":"https://github.com/mingrammer/diagrams","featured":null,"links":null,"description":null,"_repopath":"mingrammer/diagrams","_reponame":"diagrams","_stars":27457,"_forks":1675,"_watches":350,"_topics":["diagram","diagram-as-code","architecture","graphviz"],"_language":"Python","_homepage":"https://diagrams.mingrammer.com","_description":"diagrams: :art: Diagram as Code for prototyping cloud system architectures","_organization":"mingrammer","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-27T00:00:00.000Z","_created_at":"2020-02-02T00:00:00.000Z","_age_weeks":150,"_stars_per_week":182.87,"_pop_contributor_count":123,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["daangn","luxeys"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.17,"_pop_updated_issues_count":165,"_pop_closed_issues_count":63,"_pop_created_since_days":35,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":165.0,"_pop_comment_count":168.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":59,"_pop_score":46.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mingrammer/diagrams/master/README.md","_readme_localurl":"mingrammer~diagrams~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mingrammer/diagrams/master/pyproject.toml"],"_requirements_localurls":["mingrammer~diagrams~pyproject.toml"]},{"index":257,"category":"crypto","githuburl":"https://github.com/ccxt/ccxt","featured":null,"links":null,"description":null,"_repopath":"ccxt/ccxt","_reponame":"ccxt","_stars":26668,"_forks":6520,"_watches":930,"_topics":["altcoin","api","arbitrage","bitcoin","bot","cryptocurrency","crypto","e-commerce","ethereum","exchange","invest","library","strategy","trading","btc","eth","trade","merchant","market-data"],"_language":"JavaScript","_homepage":"","_description":"ccxt: A JavaScript / Python / PHP cryptocurrency trading API with support for more than 100 bitcoin/altcoin exchanges","_organization":"ccxt","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2017-05-14T00:00:00.000Z","_age_weeks":292,"_stars_per_week":91.28,"_pop_contributor_count":709,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ccxt"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":235.92,"_pop_updated_issues_count":1408,"_pop_closed_issues_count":1047,"_pop_created_since_days":68,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":142,"_pop_recent_releases_adjusted_count":142,"_pop_issue_count":1408.0,"_pop_comment_count":2198.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":37950,"_pop_score":79.89,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ccxt/ccxt/master/README.md","_readme_localurl":"ccxt~ccxt~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":838,"category":"diffusion","githuburl":"https://github.com/automatic1111/stable-diffusion-webui","featured":null,"links":null,"description":null,"_repopath":"automatic1111/stable-diffusion-webui","_reponame":"stable-diffusion-webui","_stars":25507,"_forks":4618,"_watches":247,"_topics":[],"_language":"Python","_homepage":null,"_description":"stable-diffusion-webui: Stable Diffusion web UI","_organization":"automatic1111","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2022-08-22T00:00:00.000Z","_age_weeks":17,"_stars_per_week":1500.41,"_pop_contributor_count":278,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":42.46,"_pop_updated_issues_count":3672,"_pop_closed_issues_count":2189,"_pop_created_since_days":4,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3672.0,"_pop_comment_count":13755.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.7,"_pop_dependents_count":863,"_pop_score":55.6,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/automatic1111/stable-diffusion-webui/master/README.md","_readme_localurl":"automatic1111~stable-diffusion-webui~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/automatic1111/stable-diffusion-webui/master/requirements.txt"],"_requirements_localurls":["automatic1111~stable-diffusion-webui~requirements.txt"]},{"index":677,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/detectron","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/detectron","_reponame":"Detectron","_stars":25464,"_forks":5480,"_watches":959,"_topics":[],"_language":"Python","_homepage":"","_description":"Detectron: FAIR's research platform for object detection research, implementing popular algorithms like Mask R-CNN and RetinaNet.","_organization":"facebookresearch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-03-27T00:00:00.000Z","_created_at":"2017-10-05T00:00:00.000Z","_age_weeks":271,"_stars_per_week":93.77,"_pop_contributor_count":40,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","ucberkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":11,"_pop_closed_issues_count":3,"_pop_created_since_days":63,"_pop_updated_since_days":21,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":11.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":865,"_pop_score":34.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/detectron/master/README.md","_readme_localurl":"facebookresearch~detectron~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/detectron/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/detectron/master/setup.py"],"_requirements_localurls":["facebookresearch~detectron~requirements.txt","facebookresearch~detectron~setup.py"]},{"index":245,"category":"ml","githuburl":"https://github.com/tencentarc/gfpgan","featured":null,"links":null,"description":null,"_repopath":"tencentarc/gfpgan","_reponame":"GFPGAN","_stars":25179,"_forks":3809,"_watches":373,"_topics":["pytorch","gan","deep-learning","super-resolution","face-restoration","image-restoration","gfpgan"],"_language":"Python","_homepage":"","_description":"GFPGAN aims at developing Practical Algorithms for Real-world Face Restoration.","_organization":"tencentarc","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-16T00:00:00.000Z","_created_at":"2021-03-19T00:00:00.000Z","_age_weeks":91,"_stars_per_week":275.4,"_pop_contributor_count":11,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","tencent"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":59,"_pop_closed_issues_count":16,"_pop_created_since_days":21,"_pop_updated_since_days":3,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":58.0,"_pop_comment_count":54.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":11,"_pop_score":32.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tencentarc/gfpgan/master/README.md","_readme_localurl":"tencentarc~gfpgan~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tencentarc/gfpgan/master/requirements.txt","https://raw.githubusercontent.com/tencentarc/gfpgan/master/setup.py"],"_requirements_localurls":["tencentarc~gfpgan~requirements.txt","tencentarc~gfpgan~setup.py"]},{"index":17,"category":"nlp","githuburl":"https://github.com/explosion/spacy","featured":null,"links":null,"description":null,"_repopath":"explosion/spacy","_reponame":"spaCy","_stars":24789,"_forks":3988,"_watches":549,"_topics":["natural-language-processing","data-science","machine-learning","python","cython","nlp","artificial-intelligence","ai","spacy","nlp-library","neural-network","neural-networks","deep-learning","named-entity-recognition","entity-linking","text-classification","tokenization"],"_language":"Python","_homepage":"https://spacy.io","_description":"spaCy: \ud83d\udcab Industrial-strength Natural Language Processing (NLP) in Python","_organization":"explosion","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2014-07-03T00:00:00.000Z","_age_weeks":441,"_stars_per_week":56.14,"_pop_contributor_count":710,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["explosion&oxykodit","founderexplosion"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.85,"_pop_updated_issues_count":356,"_pop_closed_issues_count":316,"_pop_created_since_days":103,"_pop_updated_since_days":0,"_pop_recent_releases_count":19,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":19,"_pop_issue_count":356.0,"_pop_comment_count":577.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":5776,"_pop_score":71.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/spacy/master/README.md","_readme_localurl":"explosion~spacy~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/explosion/spacy/master/requirements.txt","https://raw.githubusercontent.com/explosion/spacy/master/setup.py","https://raw.githubusercontent.com/explosion/spacy/master/pyproject.toml"],"_requirements_localurls":["explosion~spacy~requirements.txt","explosion~spacy~setup.py","explosion~spacy~pyproject.toml"]},{"index":501,"category":"ml","githuburl":"https://github.com/ageron/handson-ml2","featured":null,"links":null,"description":null,"_repopath":"ageron/handson-ml2","_reponame":"handson-ml2","_stars":23709,"_forks":11459,"_watches":625,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"handson-ml2: A series of Jupyter notebooks that walk you through the fundamentals of Machine Learning and Deep Learning in Python using Scikit-Learn, Keras and TensorFlow 2.","_organization":"ageron","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-08T00:00:00.000Z","_created_at":"2019-01-08T00:00:00.000Z","_age_weeks":205,"_stars_per_week":115.17,"_pop_contributor_count":75,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":21,"_pop_closed_issues_count":3,"_pop_created_since_days":48,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":21.0,"_pop_comment_count":31.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":1115,"_pop_score":39.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ageron/handson-ml2/master/README.md","_readme_localurl":"ageron~handson-ml2~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/ageron/handson-ml2/master/requirements.txt"],"_requirements_localurls":["ageron~handson-ml2~requirements.txt"]},{"index":163,"category":"term","githuburl":"https://github.com/tqdm/tqdm","featured":1.0,"links":null,"description":null,"_repopath":"tqdm/tqdm","_reponame":"tqdm","_stars":23582,"_forks":1199,"_watches":207,"_topics":["progressbar","progressmeter","progress-bar","meter","rate","console","terminal","time","progress","gui","python","parallel","cli","utilities","jupyter","discord","telegram","pandas","keras","closember"],"_language":"Python","_homepage":"https://tqdm.github.io","_description":"tqdm: A Fast, Extensible Progress Bar for Python and CLI","_organization":"tqdm","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-03T00:00:00.000Z","_created_at":"2015-06-03T00:00:00.000Z","_age_weeks":393,"_stars_per_week":59.9,"_pop_contributor_count":112,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["giga-consciousness-comasciencegroup-university&hospitalofli\u00e8ge","valence"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":69,"_pop_closed_issues_count":11,"_pop_created_since_days":92,"_pop_updated_since_days":4,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":20,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":69.0,"_pop_comment_count":82.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":6644,"_pop_score":53.31,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/tqdm/tqdm/master/README.rst","_readme_localurl":"tqdm~tqdm~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tqdm/tqdm/master/setup.py","https://raw.githubusercontent.com/tqdm/tqdm/master/pyproject.toml"],"_requirements_localurls":["tqdm~tqdm~setup.py","tqdm~tqdm~pyproject.toml"]},{"index":103,"category":"ml","githuburl":"https://github.com/dmlc/xgboost","featured":null,"links":null,"description":null,"_repopath":"dmlc/xgboost","_reponame":"xgboost","_stars":23555,"_forks":8535,"_watches":931,"_topics":["gbdt","gbrt","gbm","distributed-systems","xgboost","machine-learning"],"_language":"C++","_homepage":"https://xgboost.ai/","_description":"xgboost: Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library, for Python, R, Java, Scala, C++ and more. Runs on single machine, Hadoop, Spark, Dask, Flink and DataFlow","_organization":"dmlc","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2014-02-06T00:00:00.000Z","_age_weeks":462,"_stars_per_week":50.92,"_pop_contributor_count":589,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonai","cmu,octoml","els-rdlefebvresarrut","nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.9,"_pop_updated_issues_count":464,"_pop_closed_issues_count":372,"_pop_created_since_days":108,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":464.0,"_pop_comment_count":840.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":1612,"_pop_score":71.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dmlc/xgboost/master/README.md","_readme_localurl":"dmlc~xgboost~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":26,"category":"term","githuburl":"https://github.com/google/python-fire","featured":null,"links":null,"description":null,"_repopath":"google/python-fire","_reponame":"python-fire","_stars":23487,"_forks":1353,"_watches":380,"_topics":["python","cli"],"_language":"Python","_homepage":"","_description":"python-fire: Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object.","_organization":"google","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2017-02-21T00:00:00.000Z","_age_weeks":303,"_stars_per_week":77.3,"_pop_contributor_count":55,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","googlebrain","syracuseuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":48,"_pop_closed_issues_count":26,"_pop_created_since_days":71,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":48.0,"_pop_comment_count":43.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":114,"_pop_score":46.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/python-fire/master/README.md","_readme_localurl":"google~python-fire~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/python-fire/master/requirements.txt","https://raw.githubusercontent.com/google/python-fire/master/setup.py"],"_requirements_localurls":["google~python-fire~requirements.txt","google~python-fire~setup.py"]},{"index":678,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/detectron2","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/detectron2","_reponame":"detectron2","_stars":23127,"_forks":6313,"_watches":365,"_topics":[],"_language":"Python","_homepage":"https://detectron2.readthedocs.io/en/latest/","_description":"Detectron2 is a platform for object detection, segmentation and other visual recognition tasks.","_organization":"facebookresearch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2019-09-05T00:00:00.000Z","_age_weeks":171,"_stars_per_week":134.8,"_pop_contributor_count":227,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebookairesearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.67,"_pop_updated_issues_count":214,"_pop_closed_issues_count":132,"_pop_created_since_days":40,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":214.0,"_pop_comment_count":258.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":23330,"_pop_score":60.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/detectron2/master/README.md","_readme_localurl":"facebookresearch~detectron2~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/detectron2/master/setup.py"],"_requirements_localurls":["facebookresearch~detectron2~setup.py"]},{"index":646,"category":"util","githuburl":"https://github.com/python-poetry/poetry","featured":null,"links":null,"description":null,"_repopath":"python-poetry/poetry","_reponame":"poetry","_stars":22961,"_forks":1857,"_watches":184,"_topics":["python","dependency-manager","package-manager","packaging","poetry"],"_language":"Python","_homepage":"https://python-poetry.org","_description":"poetry: Python packaging and dependency management made easy","_organization":"python-poetry","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-02-28T00:00:00.000Z","_age_weeks":250,"_stars_per_week":91.58,"_pop_contributor_count":417,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.08,"_pop_updated_issues_count":1180,"_pop_closed_issues_count":864,"_pop_created_since_days":58,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":1181.0,"_pop_comment_count":2846.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":2403,"_pop_score":64.6,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python-poetry/poetry/master/README.md","_readme_localurl":"python-poetry~poetry~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-poetry/poetry/master/pyproject.toml"],"_requirements_localurls":["python-poetry~poetry~pyproject.toml"]},{"index":289,"category":"ml-dl","githuburl":"https://github.com/rwightman/pytorch-image-models","featured":null,"links":null,"description":null,"_repopath":"rwightman/pytorch-image-models","_reponame":"pytorch-image-models","_stars":22569,"_forks":3759,"_watches":292,"_topics":["pytorch","imagenet-classifier","resnet","dual-path-networks","cnn-classification","pretrained-models","pretrained-weights","distributed-training","mobile-deep-learning","mobilenet-v2","mnasnet","mobilenetv3","efficientnet","augmix","randaugment","mixnet","efficientnet-training","vision-transformer-models","nfnets","normalization-free-training"],"_language":"Python","_homepage":"https://huggingface.co/docs/timm","_description":"pytorch-image-models: PyTorch image models, scripts, pretrained weights -- ResNet, ResNeXT, EfficientNet, EfficientNetV2, NFNet, Vision Transformer, MixNet, MobileNet-V3/V2, RegNet, DPN, CSPNet, and more","_organization":"rwightman","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2019-02-02T00:00:00.000Z","_age_weeks":202,"_stars_per_week":111.57,"_pop_contributor_count":89,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","independent","weights&biases"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.46,"_pop_updated_issues_count":111,"_pop_closed_issues_count":72,"_pop_created_since_days":47,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":111.0,"_pop_comment_count":146.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":159,"_pop_score":55.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rwightman/pytorch-image-models/master/README.md","_readme_localurl":"rwightman~pytorch-image-models~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rwightman/pytorch-image-models/master/requirements.txt","https://raw.githubusercontent.com/rwightman/pytorch-image-models/master/setup.py"],"_requirements_localurls":["rwightman~pytorch-image-models~requirements.txt","rwightman~pytorch-image-models~setup.py"]},{"index":689,"category":"ml-dl","githuburl":"https://github.com/matterport/mask_rcnn","featured":null,"links":null,"description":null,"_repopath":"matterport/mask_rcnn","_reponame":"Mask_RCNN","_stars":22507,"_forks":11179,"_watches":597,"_topics":["mask-rcnn","tensorflow","object-detection","instance-segmentation","keras"],"_language":"Python","_homepage":null,"_description":"Mask_RCNN: Mask R-CNN for object detection and instance segmentation on Keras and TensorFlow","_organization":"matterport","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2019-03-31T00:00:00.000Z","_created_at":"2017-10-19T00:00:00.000Z","_age_weeks":269,"_stars_per_week":83.49,"_pop_contributor_count":47,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["apple","freelance","grid.ai|pytorchlightning"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":89,"_pop_closed_issues_count":18,"_pop_created_since_days":63,"_pop_updated_since_days":46,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":89.0,"_pop_comment_count":107.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":1541,"_pop_score":41.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/matterport/mask_rcnn/master/README.md","_readme_localurl":"matterport~mask_rcnn~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/matterport/mask_rcnn/master/requirements.txt","https://raw.githubusercontent.com/matterport/mask_rcnn/master/setup.py"],"_requirements_localurls":["matterport~mask_rcnn~requirements.txt","matterport~mask_rcnn~setup.py"]},{"index":550,"category":"ml","githuburl":"https://github.com/open-mmlab/mmdetection","featured":null,"links":null,"description":null,"_repopath":"open-mmlab/mmdetection","_reponame":"mmdetection","_stars":22420,"_forks":8168,"_watches":362,"_topics":["object-detection","instance-segmentation","rpn","fast-rcnn","faster-rcnn","mask-rcnn","cascade-rcnn","ssd","retinanet","pytorch"],"_language":"Python","_homepage":"https://mmdetection.readthedocs.io","_description":"mmdetection: OpenMMLab Detection Toolbox and Benchmark","_organization":"open-mmlab","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2018-08-22T00:00:00.000Z","_age_weeks":225,"_stars_per_week":99.33,"_pop_contributor_count":377,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cuhk,mmlab","mmlab,ntu","nuaa","open-mmlab","ucsd"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.21,"_pop_updated_issues_count":876,"_pop_closed_issues_count":652,"_pop_created_since_days":53,"_pop_updated_since_days":1,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":873.0,"_pop_comment_count":1322.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":4620,"_pop_score":69.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-mmlab/mmdetection/master/README.md","_readme_localurl":"open-mmlab~mmdetection~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/open-mmlab/mmdetection/master/requirements.txt","https://raw.githubusercontent.com/open-mmlab/mmdetection/master/setup.py"],"_requirements_localurls":["open-mmlab~mmdetection~requirements.txt","open-mmlab~mmdetection~setup.py"]},{"index":54,"category":"math","githuburl":"https://github.com/numpy/numpy","featured":1.0,"links":null,"description":null,"_repopath":"numpy/numpy","_reponame":"numpy","_stars":22230,"_forks":7600,"_watches":571,"_topics":["numpy","python","closember"],"_language":"Python","_homepage":"https://numpy.org","_description":"numpy: The fundamental package for scientific computing with Python.","_organization":"numpy","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2010-09-13T00:00:00.000Z","_age_weeks":640,"_stars_per_week":34.73,"_pop_contributor_count":1556,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mercarijp","quansight,openteams","quansightlabs","retired"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":29.58,"_pop_updated_issues_count":907,"_pop_closed_issues_count":655,"_pop_created_since_days":149,"_pop_updated_since_days":0,"_pop_recent_releases_count":20,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":20,"_pop_issue_count":908.0,"_pop_comment_count":2325.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":27499,"_pop_score":84.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/numpy/numpy/master/README.md","_readme_localurl":"numpy~numpy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/numpy/numpy/master/setup.py","https://raw.githubusercontent.com/numpy/numpy/master/pyproject.toml"],"_requirements_localurls":["numpy~numpy~setup.py","numpy~numpy~pyproject.toml"]},{"index":649,"category":"util","githuburl":"https://github.com/keon/algorithms","featured":null,"links":null,"description":null,"_repopath":"keon/algorithms","_reponame":"algorithms","_stars":21936,"_forks":4425,"_watches":643,"_topics":["algorithm","python","competitive-programming","data-structure","algorithms","sort","search","tree","graph"],"_language":"Python","_homepage":"","_description":"algorithms: Minimal examples of data structures and algorithms in Python","_organization":"keon","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-12T00:00:00.000Z","_created_at":"2016-11-17T00:00:00.000Z","_age_weeks":317,"_stars_per_week":69.07,"_pop_contributor_count":193,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["gojek","google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":11,"_pop_closed_issues_count":2,"_pop_created_since_days":74,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":11.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":74,"_pop_score":41.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/keon/algorithms/master/README.md","_readme_localurl":"keon~algorithms~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/keon/algorithms/master/setup.py"],"_requirements_localurls":["keon~algorithms~setup.py"]},{"index":86,"category":"viz","githuburl":"https://github.com/streamlit/streamlit","featured":null,"links":null,"description":null,"_repopath":"streamlit/streamlit","_reponame":"streamlit","_stars":21862,"_forks":1957,"_watches":284,"_topics":["python","machine-learning","data-science","deep-learning","data-visualization","streamlit","data-analysis","developer-tools"],"_language":"Python","_homepage":"https://streamlit.io","_description":"Streamlit \u2014 The fastest way to build data apps in Python","_organization":"streamlit","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-08-24T00:00:00.000Z","_age_weeks":173,"_stars_per_week":126.16,"_pop_contributor_count":160,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["independent","streamlit"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.52,"_pop_updated_issues_count":1080,"_pop_closed_issues_count":630,"_pop_created_since_days":40,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":347,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":1080.0,"_pop_comment_count":1206.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":1546,"_pop_score":64.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/streamlit/streamlit/master/README.md","_readme_localurl":"streamlit~streamlit~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":183,"category":"ml","githuburl":"https://github.com/google/jax","featured":null,"links":null,"description":null,"_repopath":"google/jax","_reponame":"jax","_stars":21230,"_forks":1987,"_watches":288,"_topics":["jax"],"_language":"Python","_homepage":"http://jax.readthedocs.io/","_description":"jax: Composable transformations of Python+NumPy programs: differentiate, vectorize, JIT to GPU/TPU, and more","_organization":"google","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-10-25T00:00:00.000Z","_age_weeks":216,"_stars_per_week":98.03,"_pop_contributor_count":484,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":50.02,"_pop_updated_issues_count":1255,"_pop_closed_issues_count":952,"_pop_created_since_days":50,"_pop_updated_since_days":0,"_pop_recent_releases_count":39,"_pop_recent_releases_estimated_tags":38,"_pop_recent_releases_adjusted_count":39,"_pop_issue_count":1254.0,"_pop_comment_count":1433.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":6513,"_pop_score":71.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/jax/master/README.md","_readme_localurl":"google~jax~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/jax/master/setup.py"],"_requirements_localurls":["google~jax~setup.py"]},{"index":252,"category":"ml-dl","githuburl":"https://github.com/pytorchlightning/pytorch-lightning","featured":1.0,"links":null,"description":null,"_repopath":"pytorchlightning/pytorch-lightning","_reponame":"lightning","_stars":20989,"_forks":2683,"_watches":227,"_topics":["python","deep-learning","artificial-intelligence","ai","pytorch","data-science","machine-learning"],"_language":"Python","_homepage":"https://lightning.ai","_description":"lightning: Build and train PyTorch models and connect them to the ML lifecycle using Lightning App templates, without handling DIY infrastructure, cost management, scaling, and other headaches.","_organization":"pytorchlightning","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-03-31T00:00:00.000Z","_age_weeks":194,"_stars_per_week":108.11,"_pop_contributor_count":811,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["current:opentowork|previouslylightning-ai,episource","grid.ai|pytorchlightning","lightning-ai","lightningai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":39.56,"_pop_updated_issues_count":1617,"_pop_closed_issues_count":1237,"_pop_created_since_days":45,"_pop_updated_since_days":0,"_pop_recent_releases_count":41,"_pop_recent_releases_estimated_tags":46,"_pop_recent_releases_adjusted_count":41,"_pop_issue_count":1616.0,"_pop_comment_count":2285.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":550,"_pop_score":73.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorchlightning/pytorch-lightning/master/README.md","_readme_localurl":"pytorchlightning~pytorch-lightning~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorchlightning/pytorch-lightning/master/requirements.txt","https://raw.githubusercontent.com/pytorchlightning/pytorch-lightning/master/setup.py","https://raw.githubusercontent.com/pytorchlightning/pytorch-lightning/master/pyproject.toml"],"_requirements_localurls":["pytorchlightning~pytorch-lightning~requirements.txt","pytorchlightning~pytorch-lightning~setup.py","pytorchlightning~pytorch-lightning~pyproject.toml"]},{"index":90,"category":"web","githuburl":"https://github.com/tornadoweb/tornado","featured":1.0,"links":null,"description":null,"_repopath":"tornadoweb/tornado","_reponame":"tornado","_stars":20902,"_forks":5485,"_watches":1006,"_topics":["python","asynchronous"],"_language":"Python","_homepage":"http://www.tornadoweb.org/","_description":"Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.","_organization":"tornadoweb","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2009-09-09T00:00:00.000Z","_age_weeks":692,"_stars_per_week":30.17,"_pop_contributor_count":432,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["healthbyro","mongodb"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.42,"_pop_updated_issues_count":39,"_pop_closed_issues_count":24,"_pop_created_since_days":162,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":39.0,"_pop_comment_count":62.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":879,"_pop_score":59.61,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/tornadoweb/tornado/master/README.rst","_readme_localurl":"tornadoweb~tornado~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tornadoweb/tornado/master/setup.py","https://raw.githubusercontent.com/tornadoweb/tornado/master/pyproject.toml"],"_requirements_localurls":["tornadoweb~tornado~setup.py","tornadoweb~tornado~pyproject.toml"]},{"index":8,"category":"perf","githuburl":"https://github.com/celery/celery","featured":null,"links":null,"description":null,"_repopath":"celery/celery","_reponame":"celery","_stars":20658,"_forks":4395,"_watches":476,"_topics":["python","task-manager","task-scheduler","task-runner","queue-workers","queued-jobs","queue-tasks","amqp","redis","sqs","sqs-queue","python3","python-library","redis-queue"],"_language":"Python","_homepage":"https://docs.celeryq.dev","_description":"celery: Distributed Task Queue (development branch)","_organization":"celery","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2009-04-24T00:00:00.000Z","_age_weeks":712,"_stars_per_week":29.0,"_pop_contributor_count":1255,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["celerypsfapache","robinhoodmarkets"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.23,"_pop_updated_issues_count":297,"_pop_closed_issues_count":166,"_pop_created_since_days":166,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":297.0,"_pop_comment_count":543.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":6865,"_pop_score":71.58,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/celery/celery/master/README.rst","_readme_localurl":"celery~celery~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/celery/celery/master/setup.py","https://raw.githubusercontent.com/celery/celery/master/pyproject.toml"],"_requirements_localurls":["celery~celery~setup.py","celery~celery~pyproject.toml"]},{"index":45,"category":"testing","githuburl":"https://github.com/locustio/locust","featured":1.0,"links":null,"description":null,"_repopath":"locustio/locust","_reponame":"locust","_stars":20331,"_forks":2602,"_watches":431,"_topics":["locust","python","load-testing","performance-testing","http","benchmarking","load-generator"],"_language":"Python","_homepage":"","_description":"locust: Scalable load testing tool written in Python","_organization":"locustio","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2011-02-17T00:00:00.000Z","_age_weeks":617,"_stars_per_week":32.92,"_pop_contributor_count":271,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["5m","heylab","redshirtconsultingab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.37,"_pop_updated_issues_count":96,"_pop_closed_issues_count":83,"_pop_created_since_days":144,"_pop_updated_since_days":0,"_pop_recent_releases_count":26,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":26,"_pop_issue_count":96.0,"_pop_comment_count":201.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":596,"_pop_score":66.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/locustio/locust/master/README.md","_readme_localurl":"locustio~locust~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/locustio/locust/master/setup.py","https://raw.githubusercontent.com/locustio/locust/master/pyproject.toml"],"_requirements_localurls":["locustio~locust~setup.py","locustio~locust~pyproject.toml"]},{"index":75,"category":"nlp","githuburl":"https://github.com/pytorch/fairseq","featured":null,"links":null,"description":null,"_repopath":"pytorch/fairseq","_reponame":"fairseq","_stars":20311,"_forks":5092,"_watches":355,"_topics":["python","pytorch","artificial-intelligence"],"_language":"Python","_homepage":null,"_description":"fairseq: Facebook AI Research Sequence-to-Sequence Toolkit written in Python.","_organization":"pytorch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2017-08-29T00:00:00.000Z","_age_weeks":276,"_stars_per_week":73.36,"_pop_contributor_count":412,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","facebookairesearch","facebookresearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.77,"_pop_updated_issues_count":277,"_pop_closed_issues_count":114,"_pop_created_since_days":65,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":277.0,"_pop_comment_count":248.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":81045,"_pop_score":69.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/fairseq/master/README.md","_readme_localurl":"pytorch~fairseq~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/fairseq/master/setup.py","https://raw.githubusercontent.com/pytorch/fairseq/master/pyproject.toml"],"_requirements_localurls":["pytorch~fairseq~setup.py","pytorch~fairseq~pyproject.toml"]},{"index":2,"category":"ml-dl","githuburl":"https://github.com/apache/incubator-mxnet","featured":null,"links":null,"description":null,"_repopath":"apache/incubator-mxnet","_reponame":"mxnet","_stars":20194,"_forks":6876,"_watches":1088,"_topics":["mxnet"],"_language":"C++","_homepage":"https://mxnet.apache.org","_description":"mxnet: Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler; for Python, R, Julia, Scala, Go, Javascript and more","_organization":"apache","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-26T00:00:00.000Z","_created_at":"2015-04-30T00:00:00.000Z","_age_weeks":398,"_stars_per_week":50.67,"_pop_contributor_count":980,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon","cmu,octoml","facebook","mit","universityofwashington"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.65,"_pop_updated_issues_count":95,"_pop_closed_issues_count":14,"_pop_created_since_days":93,"_pop_updated_since_days":3,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":95.0,"_pop_comment_count":53.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":1919,"_pop_score":61.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apache/incubator-mxnet/master/README.md","_readme_localurl":"apache~incubator-mxnet~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":255,"category":"crypto","githuburl":"https://github.com/freqtrade/freqtrade","featured":null,"links":null,"description":null,"_repopath":"freqtrade/freqtrade","_reponame":"freqtrade","_stars":20137,"_forks":4263,"_watches":595,"_topics":["python","cryptocurrencies","trading-bot","telegram-bot","bitcoin","trade","cryptocurrency","algorithmic-trading","freqtrade"],"_language":"Python","_homepage":"https://www.freqtrade.io","_description":"freqtrade: Free, open source crypto trading bot","_organization":"freqtrade","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2017-05-17T00:00:00.000Z","_age_weeks":291,"_stars_per_week":69.03,"_pop_contributor_count":284,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["freqtradecoredev;frizzleapps/whatsitwhatsit"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":69.62,"_pop_updated_issues_count":530,"_pop_closed_issues_count":502,"_pop_created_since_days":68,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":530.0,"_pop_comment_count":1379.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":1085,"_pop_score":68.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/freqtrade/freqtrade/master/README.md","_readme_localurl":"freqtrade~freqtrade~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/freqtrade/freqtrade/master/requirements.txt","https://raw.githubusercontent.com/freqtrade/freqtrade/master/setup.py","https://raw.githubusercontent.com/freqtrade/freqtrade/master/pyproject.toml"],"_requirements_localurls":["freqtrade~freqtrade~requirements.txt","freqtrade~freqtrade~setup.py","freqtrade~freqtrade~pyproject.toml"]},{"index":607,"category":"util","githuburl":"https://github.com/norvig/pytudes","featured":null,"links":null,"description":null,"_repopath":"norvig/pytudes","_reponame":"pytudes","_stars":19802,"_forks":2265,"_watches":730,"_topics":["python","python-3","programming","practice","demonstrate-skills"],"_language":"Jupyter Notebook","_homepage":"","_description":"pytudes: Python programs, usually short, of considerable difficulty, to perfect particular skills.","_organization":"norvig","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2017-03-01T00:00:00.000Z","_age_weeks":302,"_stars_per_week":65.41,"_pop_contributor_count":44,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.38,"_pop_updated_issues_count":5,"_pop_closed_issues_count":4,"_pop_created_since_days":71,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":5.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":17,"_pop_score":34.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/norvig/pytudes/master/README.md","_readme_localurl":"norvig~pytudes~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/norvig/pytudes/master/requirements.txt"],"_requirements_localurls":["norvig~pytudes~requirements.txt"]},{"index":273,"category":"ml","githuburl":"https://github.com/google/mediapipe","featured":null,"links":null,"description":null,"_repopath":"google/mediapipe","_reponame":"mediapipe","_stars":19756,"_forks":4148,"_watches":494,"_topics":["mediapipe","c-plus-plus","computer-vision","deep-learning","android","video-processing","audio-processing","mobile-development","machine-learning","inference","graph-framework","graph-based","calculator","framework","pipeline-framework","stream-processing","perception"],"_language":"C++","_homepage":"https://mediapipe.dev","_description":"mediapipe: Cross-platform, customizable ML solutions for live and streaming media.","_organization":"google","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-06-13T00:00:00.000Z","_age_weeks":183,"_stars_per_week":107.62,"_pop_contributor_count":21,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.92,"_pop_updated_issues_count":556,"_pop_closed_issues_count":322,"_pop_created_since_days":43,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":556.0,"_pop_comment_count":1433.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":111,"_pop_score":50.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/mediapipe/master/README.md","_readme_localurl":"google~mediapipe~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/mediapipe/master/requirements.txt","https://raw.githubusercontent.com/google/mediapipe/master/setup.py"],"_requirements_localurls":["google~mediapipe~requirements.txt","google~mediapipe~setup.py"]},{"index":409,"category":"perf","githuburl":"https://github.com/google/flatbuffers","featured":null,"links":null,"description":null,"_repopath":"google/flatbuffers","_reponame":"flatbuffers","_stars":19528,"_forks":2976,"_watches":649,"_topics":["flatbuffers","serialization","serialization-library","json-parser","marshalling","rpc","zero-copy","mmap","cross-platform","c-plus-plus","java","c-sharp","go","python","rust","javascript","typescript","grpc","c","protobuf"],"_language":"C++","_homepage":"http://google.github.io/flatbuffers/","_description":"FlatBuffers: Memory Efficient Serialization Library","_organization":"google","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2014-05-19T00:00:00.000Z","_age_weeks":448,"_stars_per_week":43.59,"_pop_contributor_count":613,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cto","google","voxraygames"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.4,"_pop_updated_issues_count":227,"_pop_closed_issues_count":156,"_pop_created_since_days":104,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":227.0,"_pop_comment_count":576.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":3175,"_pop_score":70.7,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/google/flatbuffers/master/readme.md","_readme_localurl":"google~flatbuffers~readme.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":350,"category":"ml-dl","githuburl":"https://github.com/paddlepaddle/paddle","featured":null,"links":null,"description":null,"_repopath":"paddlepaddle/paddle","_reponame":"Paddle","_stars":19328,"_forks":4834,"_watches":734,"_topics":["paddlepaddle","deep-learning","scalability","machine-learning","neural-network","python","efficiency","distributed-training"],"_language":"C++","_homepage":"http://www.paddlepaddle.org/","_description":"Paddle: PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice \uff08\u300e\u98de\u6868\u300f\u6838\u5fc3\u6846\u67b6\uff0c\u6df1\u5ea6\u5b66\u4e60&\u673a\u5668\u5b66\u4e60\u9ad8\u6027\u80fd\u5355\u673a\u3001\u5206\u5e03\u5f0f\u8bad\u7ec3\u548c\u8de8\u5e73\u53f0\u90e8\u7f72\uff09","_organization":"paddlepaddle","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2016-08-15T00:00:00.000Z","_age_weeks":331,"_stars_per_week":58.39,"_pop_contributor_count":895,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["baidubdg/idl/dltp","paddlepaddle","tencent"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":110.33,"_pop_updated_issues_count":4106,"_pop_closed_issues_count":3158,"_pop_created_since_days":77,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":4104.0,"_pop_comment_count":6254.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":19940,"_pop_score":80.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/paddlepaddle/paddle/master/README.md","_readme_localurl":"paddlepaddle~paddle~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":232,"category":"template","githuburl":"https://github.com/cookiecutter/cookiecutter","featured":null,"links":null,"description":null,"_repopath":"cookiecutter/cookiecutter","_reponame":"cookiecutter","_stars":18574,"_forks":1762,"_watches":236,"_topics":["python","cookiecutter"],"_language":"Python","_homepage":"https://pypi.org/project/cookiecutter/","_description":"cookiecutter: A cross-platform command-line utility that creates projects from cookiecutters (project templates), e.g. Python package projects, C projects.","_organization":"cookiecutter","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-09T00:00:00.000Z","_created_at":"2013-07-14T00:00:00.000Z","_age_weeks":492,"_stars_per_week":37.74,"_pop_contributor_count":285,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["margaritahumanitarian","mozilla","octoenergy"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.08,"_pop_updated_issues_count":50,"_pop_closed_issues_count":10,"_pop_created_since_days":115,"_pop_updated_since_days":3,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":50.0,"_pop_comment_count":43.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":611,"_pop_score":53.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cookiecutter/cookiecutter/master/README.md","_readme_localurl":"cookiecutter~cookiecutter~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cookiecutter/cookiecutter/master/setup.py","https://raw.githubusercontent.com/cookiecutter/cookiecutter/master/pyproject.toml"],"_requirements_localurls":["cookiecutter~cookiecutter~setup.py","cookiecutter~cookiecutter~pyproject.toml"]},{"index":789,"category":"study","githuburl":"https://github.com/wesm/pydata-book","featured":null,"links":null,"description":null,"_repopath":"wesm/pydata-book","_reponame":"pydata-book","_stars":18518,"_forks":13789,"_watches":1456,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"pydata-book: Materials and IPython notebooks for \"Python for Data Analysis\" by Wes McKinney, published by O'Reilly Media","_organization":"wesm","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-03T00:00:00.000Z","_created_at":"2012-06-30T00:00:00.000Z","_age_weeks":546,"_stars_per_week":33.9,"_pop_contributor_count":9,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["googlecloud","vndly","voltrondata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":7,"_pop_closed_issues_count":4,"_pop_created_since_days":127,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":7.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":5,"_pop_score":30.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/wesm/pydata-book/master/README.md","_readme_localurl":"wesm~pydata-book~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/wesm/pydata-book/master/requirements.txt"],"_requirements_localurls":["wesm~pydata-book~requirements.txt"]},{"index":186,"category":"ml","githuburl":"https://github.com/harisiqbal88/plotneuralnet","featured":null,"links":null,"description":null,"_repopath":"harisiqbal88/plotneuralnet","_reponame":"PlotNeuralNet","_stars":18466,"_forks":2542,"_watches":219,"_topics":["latex","deep-neural-networks"],"_language":"TeX","_homepage":null,"_description":"PlotNeuralNet: Latex code for making neural networks diagrams","_organization":"harisiqbal88","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-11-06T00:00:00.000Z","_created_at":"2018-07-24T00:00:00.000Z","_age_weeks":229,"_stars_per_week":80.34,"_pop_contributor_count":13,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cesarbr","universityofoxford"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":54,"_pop_updated_since_days":26,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":35,"_pop_score":25.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/harisiqbal88/plotneuralnet/master/README.md","_readme_localurl":"harisiqbal88~plotneuralnet~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":187,"category":"ml-interpretability","githuburl":"https://github.com/slundberg/shap","featured":null,"links":null,"description":null,"_repopath":"slundberg/shap","_reponame":"shap","_stars":18176,"_forks":2729,"_watches":259,"_topics":["interpretability","machine-learning","deep-learning","gradient-boosting","shap","shapley","explainability"],"_language":"Jupyter Notebook","_homepage":"","_description":"shap: A game theoretic approach to explain the output of any machine learning model.","_organization":"slundberg","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-06-16T00:00:00.000Z","_created_at":"2016-11-22T00:00:00.000Z","_age_weeks":316,"_stars_per_week":57.36,"_pop_contributor_count":205,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoft","microsoftresearch","mila-iqia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.31,"_pop_updated_issues_count":187,"_pop_closed_issues_count":27,"_pop_created_since_days":74,"_pop_updated_since_days":6,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":187.0,"_pop_comment_count":160.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":439,"_pop_score":50.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/slundberg/shap/master/README.md","_readme_localurl":"slundberg~shap~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/slundberg/shap/master/requirements.txt","https://raw.githubusercontent.com/slundberg/shap/master/setup.py","https://raw.githubusercontent.com/slundberg/shap/master/pyproject.toml"],"_requirements_localurls":["slundberg~shap~requirements.txt","slundberg~shap~setup.py","slundberg~shap~pyproject.toml"]},{"index":61,"category":"viz","githuburl":"https://github.com/plotly/dash","featured":null,"links":null,"description":null,"_repopath":"plotly/dash","_reponame":"dash","_stars":17833,"_forks":1815,"_watches":409,"_topics":["dash","plotly","data-visualization","data-science","gui-framework","flask","react","python","finance","bioinformatics","technical-computing","charting","plotly-dash","web-app","productivity","modeling","r","rstats","jupyter","julia"],"_language":"Python","_homepage":"https://plotly.com/dash","_description":"dash: Analytical Web Apps for Python, R, Julia, and Jupyter. No JavaScript Required.","_organization":"plotly","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2015-04-10T00:00:00.000Z","_age_weeks":401,"_stars_per_week":44.42,"_pop_contributor_count":132,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["plotly"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.54,"_pop_updated_issues_count":177,"_pop_closed_issues_count":85,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":177.0,"_pop_comment_count":210.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":5155,"_pop_score":62.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/plotly/dash/master/README.md","_readme_localurl":"plotly~dash~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/plotly/dash/master/setup.py"],"_requirements_localurls":["plotly~dash~setup.py"]},{"index":763,"category":"ml-dl","githuburl":"https://github.com/xinntao/real-esrgan","featured":null,"links":null,"description":null,"_repopath":"xinntao/real-esrgan","_reponame":"Real-ESRGAN","_stars":17026,"_forks":1811,"_watches":181,"_topics":["esrgan","pytorch","real-esrgan","super-resolution","image-restoration","denoise","jpeg-compression","amine"],"_language":"Python","_homepage":"","_description":"Real-ESRGAN aims at developing Practical Algorithms for General Image/Video Restoration.","_organization":"xinntao","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-20T00:00:00.000Z","_created_at":"2021-07-19T00:00:00.000Z","_age_weeks":74,"_stars_per_week":230.08,"_pop_contributor_count":11,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","tencent","vk|hse"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.69,"_pop_updated_issues_count":87,"_pop_closed_issues_count":7,"_pop_created_since_days":17,"_pop_updated_since_days":3,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":87.0,"_pop_comment_count":78.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":67,"_pop_score":35.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/xinntao/real-esrgan/master/README.md","_readme_localurl":"xinntao~real-esrgan~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/xinntao/real-esrgan/master/requirements.txt","https://raw.githubusercontent.com/xinntao/real-esrgan/master/setup.py"],"_requirements_localurls":["xinntao~real-esrgan~requirements.txt","xinntao~real-esrgan~setup.py"]},{"index":6,"category":"viz","githuburl":"https://github.com/bokeh/bokeh","featured":null,"links":null,"description":null,"_repopath":"bokeh/bokeh","_reponame":"bokeh","_stars":17007,"_forks":4012,"_watches":451,"_topics":["bokeh","python","interactive-plots","javascript","visualization","plotting","plots","data-visualisation","notebooks","jupyter","visualisation","numfocus"],"_language":"Python","_homepage":"https://bokeh.org","_description":"bokeh: Interactive Data Visualization in the browser, from Python","_organization":"bokeh","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2012-03-26T00:00:00.000Z","_age_weeks":560,"_stars_per_week":30.37,"_pop_contributor_count":624,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.15,"_pop_updated_issues_count":405,"_pop_closed_issues_count":275,"_pop_created_since_days":131,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":405.0,"_pop_comment_count":824.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":1783,"_pop_score":67.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bokeh/bokeh/master/README.md","_readme_localurl":"bokeh~bokeh~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/bokeh/bokeh/master/setup.py","https://raw.githubusercontent.com/bokeh/bokeh/master/pyproject.toml"],"_requirements_localurls":["bokeh~bokeh~setup.py","bokeh~bokeh~pyproject.toml"]},{"index":107,"category":"sim","githuburl":"https://github.com/atsushisakai/pythonrobotics","featured":null,"links":null,"description":null,"_repopath":"atsushisakai/pythonrobotics","_reponame":"PythonRobotics","_stars":16987,"_forks":5385,"_watches":503,"_topics":["python","robotics","algorithm","path-planning","control","animation","localization","slam","cvxpy","ekf","autonomous-vehicles","autonomous-driving","mapping","autonomous-navigation","robot","hacktoberfest"],"_language":"Python","_homepage":"https://atsushisakai.github.io/PythonRobotics/","_description":"PythonRobotics: Python sample codes for robotics algorithms.","_organization":"atsushisakai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2016-03-21T00:00:00.000Z","_age_weeks":352,"_stars_per_week":48.26,"_pop_contributor_count":102,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["idealworks","tiiuae"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.15,"_pop_updated_issues_count":45,"_pop_closed_issues_count":35,"_pop_created_since_days":82,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":45.0,"_pop_comment_count":24.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":950,"_pop_score":50.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/atsushisakai/pythonrobotics/master/README.md","_readme_localurl":"atsushisakai~pythonrobotics~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":349,"category":"ml","githuburl":"https://github.com/jina-ai/jina","featured":null,"links":null,"description":null,"_repopath":"jina-ai/jina","_reponame":"jina","_stars":16915,"_forks":2000,"_watches":183,"_topics":["neural-search","cloud-native","deep-learning","machine-learning","framework","vector-search-engine","grpc","kubernetes","microservices","semantic-search","multimodal","crossmodal","creative-ai","aiops","mlops","pipeline","workflow","airflow","fastapi","generative-ai"],"_language":"Python","_homepage":"https://docs.jina.ai","_description":"jina: \ud83d\udd2e Build multimodal AI services via cloud native technologies \u00b7 Neural Search \u00b7 Generative AI \u00b7 Cloud Native","_organization":"jina-ai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2020-02-13T00:00:00.000Z","_age_weeks":148,"_stars_per_week":113.85,"_pop_contributor_count":161,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["jina-ai","jinaai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":23.48,"_pop_updated_issues_count":403,"_pop_closed_issues_count":374,"_pop_created_since_days":35,"_pop_updated_since_days":0,"_pop_recent_releases_count":109,"_pop_recent_releases_estimated_tags":127,"_pop_recent_releases_adjusted_count":109,"_pop_issue_count":403.0,"_pop_comment_count":797.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":1437,"_pop_score":65.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jina-ai/jina/master/README.md","_readme_localurl":"jina-ai~jina~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jina-ai/jina/master/requirements.txt","https://raw.githubusercontent.com/jina-ai/jina/master/setup.py","https://raw.githubusercontent.com/jina-ai/jina/master/pyproject.toml"],"_requirements_localurls":["jina-ai~jina~requirements.txt","jina-ai~jina~setup.py","jina-ai~jina~pyproject.toml"]},{"index":30,"category":"web","githuburl":"https://github.com/huge-success/sanic","featured":null,"links":null,"description":null,"_repopath":"huge-success/sanic","_reponame":"sanic","_stars":16695,"_forks":1484,"_watches":414,"_topics":["python","framework","asyncio","api-server","web","web-server","web-framework","asgi","sanic"],"_language":"Python","_homepage":"https://sanic.dev","_description":"sanic: Next generation Python web server/framework | Build fast. Run fast.","_organization":"huge-success","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2016-05-26T00:00:00.000Z","_age_weeks":342,"_stars_per_week":48.73,"_pop_contributor_count":325,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["airbnb","packetfabric","pytorch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.42,"_pop_updated_issues_count":121,"_pop_closed_issues_count":91,"_pop_created_since_days":80,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":121.0,"_pop_comment_count":310.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":62,"_pop_score":59.8,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/huge-success/sanic/master/README.rst","_readme_localurl":"huge-success~sanic~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huge-success/sanic/master/setup.py","https://raw.githubusercontent.com/huge-success/sanic/master/pyproject.toml"],"_requirements_localurls":["huge-success~sanic~setup.py","huge-success~sanic~pyproject.toml"]},{"index":228,"category":"term","githuburl":"https://github.com/willmcgugan/textual","featured":null,"links":null,"description":null,"_repopath":"willmcgugan/textual","_reponame":"textual","_stars":16593,"_forks":476,"_watches":151,"_topics":["terminal","python","tui","rich","cli","framework"],"_language":"Python","_homepage":"https://textual.textualize.io/","_description":"Textual is a TUI (Text User Interface) framework for Python inspired by modern web development.","_organization":"willmcgugan","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2021-04-08T00:00:00.000Z","_age_weeks":88,"_stars_per_week":187.34,"_pop_contributor_count":61,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["davep.org","lastmileict","textualize"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":50.9,"_pop_updated_issues_count":650,"_pop_closed_issues_count":542,"_pop_created_since_days":21,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":650.0,"_pop_comment_count":957.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":26,"_pop_score":55.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/willmcgugan/textual/master/README.md","_readme_localurl":"willmcgugan~textual~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/willmcgugan/textual/master/pyproject.toml"],"_requirements_localurls":["willmcgugan~textual~pyproject.toml"]},{"index":48,"category":"viz","githuburl":"https://github.com/matplotlib/matplotlib","featured":null,"links":null,"description":null,"_repopath":"matplotlib/matplotlib","_reponame":"matplotlib","_stars":16560,"_forks":6641,"_watches":587,"_topics":["matplotlib","data-visualization","data-science","python","qt","wx","gtk","plotting","tk","hacktoberfest"],"_language":"Python","_homepage":"https://matplotlib.org/stable/","_description":"matplotlib: plotting with Python","_organization":"matplotlib","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2011-02-19T00:00:00.000Z","_age_weeks":617,"_stars_per_week":26.83,"_pop_contributor_count":1447,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["brookhavennationallab","microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":35.75,"_pop_updated_issues_count":2020,"_pop_closed_issues_count":1442,"_pop_created_since_days":144,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":2020.0,"_pop_comment_count":2716.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":7290,"_pop_score":76.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/matplotlib/matplotlib/master/README.md","_readme_localurl":"matplotlib~matplotlib~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/matplotlib/matplotlib/master/setup.py","https://raw.githubusercontent.com/matplotlib/matplotlib/master/pyproject.toml"],"_requirements_localurls":["matplotlib~matplotlib~setup.py","matplotlib~matplotlib~pyproject.toml"]},{"index":31,"category":"data","githuburl":"https://github.com/jaidedai/easyocr","featured":null,"links":null,"description":null,"_repopath":"jaidedai/easyocr","_reponame":"EasyOCR","_stars":16541,"_forks":2390,"_watches":284,"_topics":["ocr","deep-learning","crnn","pytorch","lstm","machine-learning","scene-text","scene-text-recognition","optical-character-recognition","cnn","data-mining","image-processing","python","easyocr","information-retrieval"],"_language":"Python","_homepage":"https://www.jaided.ai","_description":"EasyOCR: Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc.","_organization":"jaidedai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-18T00:00:00.000Z","_created_at":"2020-03-14T00:00:00.000Z","_age_weeks":144,"_stars_per_week":114.64,"_pop_contributor_count":110,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["enveritas","jaidedai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.0,"_pop_updated_issues_count":86,"_pop_closed_issues_count":31,"_pop_created_since_days":34,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":86.0,"_pop_comment_count":125.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":122,"_pop_score":49.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jaidedai/easyocr/master/README.md","_readme_localurl":"jaidedai~easyocr~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jaidedai/easyocr/master/requirements.txt","https://raw.githubusercontent.com/jaidedai/easyocr/master/setup.py"],"_requirements_localurls":["jaidedai~easyocr~requirements.txt","jaidedai~easyocr~setup.py"]},{"index":373,"category":"ml-dl","githuburl":"https://github.com/pyg-team/pytorch_geometric","featured":null,"links":null,"description":null,"_repopath":"pyg-team/pytorch_geometric","_reponame":"pytorch_geometric","_stars":16385,"_forks":2991,"_watches":246,"_topics":["pytorch","geometric-deep-learning","graph-neural-networks","deep-learning","graph-convolutional-networks"],"_language":"Python","_homepage":"https://pytorch-geometric.readthedocs.io/","_description":"pytorch_geometric: Graph Neural Network Library for PyTorch","_organization":"pyg-team","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2017-10-06T00:00:00.000Z","_age_weeks":271,"_stars_per_week":60.37,"_pop_contributor_count":351,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["max-planckinstituteforinformatics,kumo.ai","uilab-githubsparcs-kaist"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":16.75,"_pop_updated_issues_count":996,"_pop_closed_issues_count":819,"_pop_created_since_days":63,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":995.0,"_pop_comment_count":1179.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":47,"_pop_score":59.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyg-team/pytorch_geometric/master/README.md","_readme_localurl":"pyg-team~pytorch_geometric~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyg-team/pytorch_geometric/master/setup.py"],"_requirements_localurls":["pyg-team~pytorch_geometric~setup.py"]},{"index":102,"category":"ml-ops","githuburl":"https://github.com/spotify/luigi","featured":null,"links":null,"description":null,"_repopath":"spotify/luigi","_reponame":"luigi","_stars":16191,"_forks":2352,"_watches":486,"_topics":["python","luigi","orchestration-framework","scheduling","hadoop"],"_language":"Python","_homepage":null,"_description":"Luigi is a Python module that helps you build complex pipelines of batch jobs. It handles dependency resolution, workflow management, visualization etc. It also comes with Hadoop support built in. ","_organization":"spotify","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2012-09-20T00:00:00.000Z","_age_weeks":534,"_stars_per_week":30.29,"_pop_contributor_count":596,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","houzz","modallabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.81,"_pop_updated_issues_count":21,"_pop_closed_issues_count":10,"_pop_created_since_days":125,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":21.0,"_pop_comment_count":32.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":387,"_pop_score":55.86,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/spotify/luigi/master/README.rst","_readme_localurl":"spotify~luigi~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/spotify/luigi/master/setup.py"],"_requirements_localurls":["spotify~luigi~setup.py"]},{"index":426,"category":"study","githuburl":"https://github.com/fchollet/deep-learning-with-python-notebooks","featured":null,"links":null,"description":null,"_repopath":"fchollet/deep-learning-with-python-notebooks","_reponame":"deep-learning-with-python-notebooks","_stars":16168,"_forks":7914,"_watches":647,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"deep-learning-with-python-notebooks: Jupyter notebooks for the code samples of the book \"Deep Learning with Python\"","_organization":"fchollet","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-02-10T00:00:00.000Z","_created_at":"2017-09-05T00:00:00.000Z","_age_weeks":275,"_stars_per_week":58.61,"_pop_contributor_count":6,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":64,"_pop_updated_since_days":10,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":2,"_pop_score":16.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fchollet/deep-learning-with-python-notebooks/master/README.md","_readme_localurl":"fchollet~deep-learning-with-python-notebooks~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":144,"category":"nlp","githuburl":"https://github.com/openai/gpt-2","featured":null,"links":null,"description":null,"_repopath":"openai/gpt-2","_reponame":"gpt-2","_stars":15919,"_forks":4021,"_watches":584,"_topics":["paper"],"_language":"Python","_homepage":"https://openai.com/blog/better-language-models/","_description":"gpt-2: Code for the paper \"Language Models are Unsupervised Multitask Learners\"","_organization":"openai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-12-02T00:00:00.000Z","_created_at":"2019-02-11T00:00:00.000Z","_age_weeks":201,"_stars_per_week":79.2,"_pop_contributor_count":16,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["openai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":47,"_pop_updated_since_days":25,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":5.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":365,"_pop_score":27.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/gpt-2/master/README.md","_readme_localurl":"openai~gpt-2~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/gpt-2/master/requirements.txt"],"_requirements_localurls":["openai~gpt-2~requirements.txt"]},{"index":109,"category":"data","githuburl":"https://github.com/binux/pyspider","featured":null,"links":null,"description":null,"_repopath":"binux/pyspider","_reponame":"pyspider","_stars":15686,"_forks":3660,"_watches":906,"_topics":["python","crawler"],"_language":"Python","_homepage":"http://docs.pyspider.org/","_description":"pyspider: A Powerful Spider(Web Crawler) System in Python.","_organization":"binux","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-08-02T00:00:00.000Z","_created_at":"2014-02-21T00:00:00.000Z","_age_weeks":460,"_stars_per_week":34.07,"_pop_contributor_count":62,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":8,"_pop_closed_issues_count":2,"_pop_created_since_days":107,"_pop_updated_since_days":29,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":8.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":243,"_pop_score":29.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/binux/pyspider/master/README.md","_readme_localurl":"binux~pyspider~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/binux/pyspider/master/requirements.txt","https://raw.githubusercontent.com/binux/pyspider/master/setup.py"],"_requirements_localurls":["binux~pyspider~requirements.txt","binux~pyspider~setup.py"]},{"index":834,"category":"util","githuburl":"https://github.com/micropython/micropython","featured":null,"links":null,"description":null,"_repopath":"micropython/micropython","_reponame":"micropython","_stars":15625,"_forks":6002,"_watches":731,"_topics":["micropython","python","embedded","microcontroller"],"_language":"C","_homepage":"https://micropython.org","_description":"MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems","_organization":"micropython","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2013-12-20T00:00:00.000Z","_age_weeks":469,"_stars_per_week":33.29,"_pop_contributor_count":536,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["micropython","openmv"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":25.54,"_pop_updated_issues_count":524,"_pop_closed_issues_count":330,"_pop_created_since_days":110,"_pop_updated_since_days":7,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":524.0,"_pop_comment_count":1537.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":17483,"_pop_score":68.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/micropython/micropython/master/README.md","_readme_localurl":"micropython~micropython~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":873,"category":"util","githuburl":"https://github.com/ipython/ipython","featured":null,"links":null,"description":null,"_repopath":"ipython/ipython","_reponame":"ipython","_stars":15614,"_forks":4403,"_watches":775,"_topics":["ipython","jupyter","data-science","notebook","python","repl","closember","hacktoberfest"],"_language":"Python","_homepage":"https://ipython.readthedocs.org","_description":"ipython: Official repository for IPython itself. Other repos in the IPython organization contain things like the website, documentation builds, etc.","_organization":"ipython","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2010-05-10T00:00:00.000Z","_age_weeks":658,"_stars_per_week":23.73,"_pop_contributor_count":925,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","google","quansight-labs","simularesearchlaboratory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.67,"_pop_updated_issues_count":183,"_pop_closed_issues_count":91,"_pop_created_since_days":154,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":183.0,"_pop_comment_count":194.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":14264,"_pop_score":73.37,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/ipython/ipython/master/README.rst","_readme_localurl":"ipython~ipython~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ipython/ipython/master/setup.py","https://raw.githubusercontent.com/ipython/ipython/master/pyproject.toml"],"_requirements_localurls":["ipython~ipython~setup.py","ipython~ipython~pyproject.toml"]},{"index":176,"category":"debug","githuburl":"https://github.com/cool-rr/pysnooper","featured":1.0,"links":null,"description":null,"_repopath":"cool-rr/pysnooper","_reponame":"PySnooper","_stars":15499,"_forks":932,"_watches":234,"_topics":["python","debug","debugger","introspection","logging"],"_language":"Python","_homepage":"","_description":"PySnooper: Never use print for debugging again","_organization":"cool-rr","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2019-04-18T00:00:00.000Z","_age_weeks":191,"_stars_per_week":80.9,"_pop_contributor_count":27,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["japan","nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":45,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":3.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":10,"_pop_score":37.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cool-rr/pysnooper/master/README.md","_readme_localurl":"cool-rr~pysnooper~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/cool-rr/pysnooper/master/requirements.txt","https://raw.githubusercontent.com/cool-rr/pysnooper/master/setup.py"],"_requirements_localurls":["cool-rr~pysnooper~requirements.txt","cool-rr~pysnooper~setup.py"]},{"index":493,"category":"ml-dl","githuburl":"https://github.com/rasbt/deeplearning-models","featured":null,"links":null,"description":null,"_repopath":"rasbt/deeplearning-models","_reponame":"deeplearning-models","_stars":15476,"_forks":3828,"_watches":598,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"deeplearning-models: A collection of various deep learning architectures, models, and tips","_organization":"rasbt","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-16T00:00:00.000Z","_created_at":"2019-06-05T00:00:00.000Z","_age_weeks":184,"_stars_per_week":83.78,"_pop_contributor_count":11,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["alibaba-inc&nanjinguniversity","irtsaint-exup\u00e9ry","lightning-ai,universityofwisconsin-madison","microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.4,"_pop_updated_issues_count":4,"_pop_closed_issues_count":3,"_pop_created_since_days":43,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":49,"_pop_score":33.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/deeplearning-models/master/README.md","_readme_localurl":"rasbt~deeplearning-models~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":41,"category":"util","githuburl":"https://github.com/kivy/kivy","featured":null,"links":null,"description":null,"_repopath":"kivy/kivy","_reponame":"kivy","_stars":15305,"_forks":2966,"_watches":619,"_topics":["python","ui","windows","ios","android","macos","linux","app","kivy"],"_language":"Python","_homepage":"https://kivy.org","_description":"kivy: Open source UI framework written in Python, running on Windows, Linux, macOS, Android and iOS","_organization":"kivy","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2010-11-03T00:00:00.000Z","_age_weeks":632,"_stars_per_week":24.19,"_pop_contributor_count":577,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cornelluniversity","freelance","imc.com","meltingrocks","zencode"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.21,"_pop_updated_issues_count":117,"_pop_closed_issues_count":65,"_pop_created_since_days":148,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":117.0,"_pop_comment_count":187.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":6614,"_pop_score":67.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kivy/kivy/master/README.md","_readme_localurl":"kivy~kivy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/kivy/kivy/master/setup.py","https://raw.githubusercontent.com/kivy/kivy/master/pyproject.toml"],"_requirements_localurls":["kivy~kivy~setup.py","kivy~kivy~pyproject.toml"]},{"index":469,"category":"util","githuburl":"https://github.com/alievk/avatarify-python","featured":null,"links":null,"description":null,"_repopath":"alievk/avatarify-python","_reponame":"avatarify-python","_stars":15297,"_forks":2357,"_watches":306,"_topics":[],"_language":"Python","_homepage":"","_description":"avatarify-python: Avatars for Zoom, Skype and other video-conferencing apps.","_organization":"alievk","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-11T00:00:00.000Z","_created_at":"2020-04-06T00:00:00.000Z","_age_weeks":141,"_stars_per_week":108.49,"_pop_contributor_count":22,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["entrepreneur","occrp,the-markup","universityofhildesheim"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":58,"_pop_closed_issues_count":15,"_pop_created_since_days":33,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":58.0,"_pop_comment_count":174.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":34.3,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alievk/avatarify-python/master/README.md","_readme_localurl":"alievk~avatarify-python~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/alievk/avatarify-python/master/requirements.txt"],"_requirements_localurls":["alievk~avatarify-python~requirements.txt"]},{"index":328,"category":"security","githuburl":"https://github.com/aquasecurity/trivy","featured":null,"links":null,"description":null,"_repopath":"aquasecurity/trivy","_reponame":"trivy","_stars":15287,"_forks":1475,"_watches":145,"_topics":["security","security-tools","docker","containers","vulnerability-scanners","vulnerability-detection","vulnerability","golang","go","kubernetes","hacktoberfest","devsecops","misconfiguration","infrastructure-as-code","iac"],"_language":"Go","_homepage":"https://trivy.dev","_description":"trivy: Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more","_organization":"aquasecurity","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-04-11T00:00:00.000Z","_age_weeks":192,"_stars_per_week":79.38,"_pop_contributor_count":268,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.67,"_pop_updated_issues_count":547,"_pop_closed_issues_count":334,"_pop_created_since_days":45,"_pop_updated_since_days":0,"_pop_recent_releases_count":35,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":35,"_pop_issue_count":547.0,"_pop_comment_count":947.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":2726,"_pop_score":62.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aquasecurity/trivy/master/README.md","_readme_localurl":"aquasecurity~trivy~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":19,"category":"time-series","githuburl":"https://github.com/facebook/prophet","featured":1.0,"links":null,"description":null,"_repopath":"facebook/prophet","_reponame":"prophet","_stars":15280,"_forks":4341,"_watches":426,"_topics":["forecasting","r","python"],"_language":"Python","_homepage":"https://facebook.github.io/prophet","_description":"prophet: Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth.","_organization":"facebook","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-21T00:00:00.000Z","_created_at":"2016-11-16T00:00:00.000Z","_age_weeks":317,"_stars_per_week":48.09,"_pop_contributor_count":158,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["canva"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.88,"_pop_updated_issues_count":88,"_pop_closed_issues_count":26,"_pop_created_since_days":74,"_pop_updated_since_days":3,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":88.0,"_pop_comment_count":95.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":1139,"_pop_score":48.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebook/prophet/master/README.md","_readme_localurl":"facebook~prophet~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":36,"category":"data","githuburl":"https://github.com/joke2k/faker","featured":null,"links":null,"description":null,"_repopath":"joke2k/faker","_reponame":"faker","_stars":15170,"_forks":1708,"_watches":220,"_topics":["python","fake","testing","dataset","fake-data","test-data","test-data-generator"],"_language":"Python","_homepage":"http://faker.rtfd.org","_description":"Faker is a Python package that generates fake data for you.","_organization":"joke2k","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2012-11-12T00:00:00.000Z","_age_weeks":527,"_stars_per_week":28.79,"_pop_contributor_count":489,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mdxs","minted","sailoboats","selfemployed"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.06,"_pop_updated_issues_count":76,"_pop_closed_issues_count":51,"_pop_created_since_days":123,"_pop_updated_since_days":1,"_pop_recent_releases_count":55,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":55,"_pop_issue_count":76.0,"_pop_comment_count":136.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":6153,"_pop_score":69.77,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/joke2k/faker/master/README.rst","_readme_localurl":"joke2k~faker~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/joke2k/faker/master/setup.py"],"_requirements_localurls":["joke2k~faker~setup.py"]},{"index":604,"category":"web","githuburl":"https://github.com/pyscript/pyscript","featured":null,"links":null,"description":null,"_repopath":"pyscript/pyscript","_reponame":"pyscript","_stars":15152,"_forks":1110,"_watches":180,"_topics":["python","html","javascript"],"_language":"Python","_homepage":"https://community.anaconda.cloud/c/tech-topics/pyscript","_description":"pyscript: Home Page: https://pyscript.net Examples: https://pyscript.net/examples","_organization":"pyscript","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2022-02-21T00:00:00.000Z","_age_weeks":43,"_stars_per_week":352.37,"_pop_contributor_count":95,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.27,"_pop_updated_issues_count":497,"_pop_closed_issues_count":367,"_pop_created_since_days":10,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":497.0,"_pop_comment_count":1009.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":34,"_pop_score":48.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyscript/pyscript/master/README.md","_readme_localurl":"pyscript~pyscript~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":137,"category":"nlp","githuburl":"https://github.com/huggingface/datasets","featured":null,"links":null,"description":null,"_repopath":"huggingface/datasets","_reponame":"datasets","_stars":14923,"_forks":1942,"_watches":260,"_topics":["nlp","datasets","metrics","evaluation","pytorch","tensorflow","pandas","numpy","natural-language-processing","computer-vision","machine-learning","deep-learning","speech","hacktoberfest"],"_language":"Python","_homepage":"https://huggingface.co/docs/datasets","_description":"datasets: \ud83e\udd17 The largest hub of ready-to-use datasets for ML models with fast, easy-to-use and efficient data manipulation tools","_organization":"huggingface","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2020-03-26T00:00:00.000Z","_age_weeks":142,"_stars_per_week":104.67,"_pop_contributor_count":474,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","huggingfaceaiinnova"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":18.37,"_pop_updated_issues_count":643,"_pop_closed_issues_count":505,"_pop_created_since_days":33,"_pop_updated_since_days":0,"_pop_recent_releases_count":23,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":23,"_pop_issue_count":643.0,"_pop_comment_count":1331.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":2106,"_pop_score":69.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/datasets/master/README.md","_readme_localurl":"huggingface~datasets~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/datasets/master/setup.py","https://raw.githubusercontent.com/huggingface/datasets/master/pyproject.toml"],"_requirements_localurls":["huggingface~datasets~setup.py","huggingface~datasets~pyproject.toml"]},{"index":74,"category":"typing","githuburl":"https://github.com/python/mypy","featured":null,"links":null,"description":null,"_repopath":"python/mypy","_reponame":"mypy","_stars":14361,"_forks":2385,"_watches":223,"_topics":["python","types","typing","typechecker","linter"],"_language":"Python","_homepage":"http://www.mypy-lang.org/","_description":"mypy: Optional static typing for Python","_organization":"python","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2012-12-07T00:00:00.000Z","_age_weeks":523,"_stars_per_week":27.44,"_pop_contributor_count":618,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["edgedb","microsoft","openai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":16.12,"_pop_updated_issues_count":944,"_pop_closed_issues_count":561,"_pop_created_since_days":122,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":944.0,"_pop_comment_count":2100.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":21972,"_pop_score":76.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python/mypy/master/README.md","_readme_localurl":"python~mypy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python/mypy/master/setup.py","https://raw.githubusercontent.com/python/mypy/master/pyproject.toml"],"_requirements_localurls":["python~mypy~setup.py","python~mypy~pyproject.toml"]},{"index":148,"category":"data","githuburl":"https://github.com/twintproject/twint","featured":null,"links":null,"description":null,"_repopath":"twintproject/twint","_reponame":"twint","_stars":14185,"_forks":2432,"_watches":310,"_topics":["osint","twitter","python","scrape","tweets","elasticsearch","kibana","scrape-followers","scrape-likes","scrape-following","twint","tweep"],"_language":"Python","_homepage":"","_description":"twint: An advanced Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API, allowing you to scrape a user's followers, following, Tweets and more while evading most API limitations.","_organization":"twintproject","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-03-02T00:00:00.000Z","_created_at":"2017-06-10T00:00:00.000Z","_age_weeks":288,"_stars_per_week":49.2,"_pop_contributor_count":65,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["maximlevin","none"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":67,"_pop_updated_since_days":22,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":313,"_pop_score":33.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/twintproject/twint/master/README.md","_readme_localurl":"twintproject~twint~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/twintproject/twint/master/requirements.txt","https://raw.githubusercontent.com/twintproject/twint/master/setup.py"],"_requirements_localurls":["twintproject~twint~requirements.txt","twintproject~twint~setup.py"]},{"index":124,"category":"ml","githuburl":"https://github.com/onnx/onnx","featured":null,"links":null,"description":null,"_repopath":"onnx/onnx","_reponame":"onnx","_stars":13818,"_forks":3231,"_watches":430,"_topics":["deep-learning","deep-neural-networks","neural-network","onnx","pytorch","mxnet","tensorflow","keras","scikit-learn","ml","machine-learning","dnn"],"_language":"Python","_homepage":"https://onnx.ai/","_description":"onnx: Open standard for machine learning interoperability","_organization":"onnx","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-09-07T00:00:00.000Z","_age_weeks":275,"_stars_per_week":50.14,"_pop_contributor_count":264,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoft","microsoftresearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.88,"_pop_updated_issues_count":267,"_pop_closed_issues_count":175,"_pop_created_since_days":64,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":267.0,"_pop_comment_count":461.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":32190,"_pop_score":66.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/onnx/onnx/master/README.md","_readme_localurl":"onnx~onnx~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/onnx/onnx/master/requirements.txt","https://raw.githubusercontent.com/onnx/onnx/master/setup.py","https://raw.githubusercontent.com/onnx/onnx/master/pyproject.toml"],"_requirements_localurls":["onnx~onnx~requirements.txt","onnx~onnx~setup.py","onnx~onnx~pyproject.toml"]},{"index":104,"category":"nlp","githuburl":"https://github.com/rare-technologies/gensim","featured":null,"links":null,"description":null,"_repopath":"rare-technologies/gensim","_reponame":"gensim","_stars":13801,"_forks":4298,"_watches":430,"_topics":["gensim","topic-modeling","information-retrieval","machine-learning","natural-language-processing","nlp","data-science","python","data-mining","word2vec","word-embeddings","neural-network","document-similarity","word-similarity","fasttext"],"_language":"Python","_homepage":"https://radimrehurek.com/gensim","_description":"gensim: Topic Modelling for Humans","_organization":"rare-technologies","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2011-02-10T00:00:00.000Z","_age_weeks":618,"_stars_per_week":22.31,"_pop_contributor_count":440,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["constructor.io,embedika","http://xavvy.com","profoundnetworks","rare-technologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.77,"_pop_updated_issues_count":51,"_pop_closed_issues_count":41,"_pop_created_since_days":144,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":51.0,"_pop_comment_count":100.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":156,"_pop_score":58.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rare-technologies/gensim/master/README.md","_readme_localurl":"rare-technologies~gensim~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rare-technologies/gensim/master/setup.py"],"_requirements_localurls":["rare-technologies~gensim~setup.py"]},{"index":332,"category":"sim","githuburl":"https://github.com/unity-technologies/ml-agents","featured":null,"links":null,"description":null,"_repopath":"unity-technologies/ml-agents","_reponame":"ml-agents","_stars":13800,"_forks":3635,"_watches":539,"_topics":["reinforcement-learning","unity3d","deep-learning","unity","deep-reinforcement-learning","neural-networks","machine-learning"],"_language":"C#","_homepage":"https://unity.com/products/machine-learning-agents","_description":"ml-agents: The Unity Machine Learning Agents Toolkit (ML-Agents) is an open-source project that enables games and simulations to serve as environments for training intelligent agents using deep reinforcement learning and imitation learning.","_organization":"unity-technologies","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-09-08T00:00:00.000Z","_age_weeks":275,"_stars_per_week":50.1,"_pop_contributor_count":147,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ziplineinternational"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.85,"_pop_updated_issues_count":198,"_pop_closed_issues_count":145,"_pop_created_since_days":64,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":198.0,"_pop_comment_count":155.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":428,"_pop_score":51.65,"_readme_filename":"","_readme_giturl":"","_readme_localurl":"","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":175,"category":"util","githuburl":"https://github.com/delgan/loguru","featured":1.0,"links":null,"description":null,"_repopath":"delgan/loguru","_reponame":"loguru","_stars":13598,"_forks":570,"_watches":119,"_topics":["python","logging","logger","log"],"_language":"Python","_homepage":"","_description":"loguru: Python logging made (stupidly) simple","_organization":"delgan","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2017-08-15T00:00:00.000Z","_age_weeks":278,"_stars_per_week":48.76,"_pop_contributor_count":41,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["freelancer,upforhire"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.17,"_pop_updated_issues_count":92,"_pop_closed_issues_count":68,"_pop_created_since_days":65,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":92.0,"_pop_comment_count":198.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":258,"_pop_score":46.46,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/delgan/loguru/master/README.rst","_readme_localurl":"delgan~loguru~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/delgan/loguru/master/setup.py"],"_requirements_localurls":["delgan~loguru~setup.py"]},{"index":674,"category":"ml-dl","githuburl":"https://github.com/borisdayma/dalle-mini","featured":null,"links":null,"description":null,"_repopath":"borisdayma/dalle-mini","_reponame":"dalle-mini","_stars":13453,"_forks":1011,"_watches":103,"_topics":[],"_language":"Python","_homepage":"https://www.craiyon.com","_description":"dalle-mini: DALL\u00b7E Mini - Generate images from a text prompt","_organization":"borisdayma","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-09T00:00:00.000Z","_created_at":"2021-07-03T00:00:00.000Z","_age_weeks":76,"_stars_per_week":176.35,"_pop_contributor_count":27,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","universityofmaryland,collegepark"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.35,"_pop_updated_issues_count":13,"_pop_closed_issues_count":4,"_pop_created_since_days":18,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":13.0,"_pop_comment_count":32.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":121,"_pop_score":42.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/borisdayma/dalle-mini/master/README.md","_readme_localurl":"borisdayma~dalle-mini~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/borisdayma/dalle-mini/master/setup.py","https://raw.githubusercontent.com/borisdayma/dalle-mini/master/pyproject.toml"],"_requirements_localurls":["borisdayma~dalle-mini~setup.py","borisdayma~dalle-mini~pyproject.toml"]},{"index":56,"category":"term","githuburl":"https://github.com/pallets/click","featured":null,"links":null,"description":null,"_repopath":"pallets/click","_reponame":"click","_stars":13290,"_forks":1299,"_watches":183,"_topics":["python","cli","click","pallets"],"_language":"Python","_homepage":"https://click.palletsprojects.com","_description":"click: Python composable command line interface toolkit","_organization":"pallets","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-01T00:00:00.000Z","_created_at":"2014-04-24T00:00:00.000Z","_age_weeks":451,"_stars_per_week":29.43,"_pop_contributor_count":333,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["getsentry","sentry"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.23,"_pop_updated_issues_count":65,"_pop_closed_issues_count":24,"_pop_created_since_days":105,"_pop_updated_since_days":2,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":65.0,"_pop_comment_count":62.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":3073,"_pop_score":57.21,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/click/master/README.rst","_readme_localurl":"pallets~click~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/click/master/setup.py"],"_requirements_localurls":["pallets~click~setup.py"]},{"index":119,"category":"ml-ops","githuburl":"https://github.com/mlflow/mlflow","featured":null,"links":null,"description":null,"_repopath":"mlflow/mlflow","_reponame":"mlflow","_stars":13208,"_forks":3082,"_watches":285,"_topics":["machine-learning","ai","ml","mlflow","apache-spark","model-management"],"_language":"Python","_homepage":"https://mlflow.org","_description":"mlflow: Open source platform for the machine learning lifecycle","_organization":"mlflow","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-06-05T00:00:00.000Z","_age_weeks":236,"_stars_per_week":55.76,"_pop_contributor_count":526,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["databricks"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":22.33,"_pop_updated_issues_count":849,"_pop_closed_issues_count":680,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":850.0,"_pop_comment_count":2007.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":955,"_pop_score":67.32,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mlflow/mlflow/master/README.rst","_readme_localurl":"mlflow~mlflow~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mlflow/mlflow/master/setup.py","https://raw.githubusercontent.com/mlflow/mlflow/master/pyproject.toml"],"_requirements_localurls":["mlflow~mlflow~setup.py","mlflow~mlflow~pyproject.toml"]},{"index":544,"category":"ml","githuburl":"https://github.com/aleju/imgaug","featured":null,"links":null,"description":null,"_repopath":"aleju/imgaug","_reponame":"imgaug","_stars":13184,"_forks":2333,"_watches":228,"_topics":["image-augmentation","machine-learning","augmentation","deep-learning","images","affine-transformation","polygon","heatmap","segmentation-maps","keypoints","bounding-boxes","augment-images","crop","contrast"],"_language":"Python","_homepage":"http://imgaug.readthedocs.io","_description":"imgaug: Image augmentation for machine learning experiments.","_organization":"aleju","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-06-01T00:00:00.000Z","_created_at":"2015-07-10T00:00:00.000Z","_age_weeks":388,"_stars_per_week":33.94,"_pop_contributor_count":36,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["kitware","maxplanckinstituteofanimalbehavior","mujin"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":91,"_pop_updated_since_days":31,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":5.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":383,"_pop_score":37.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aleju/imgaug/master/README.md","_readme_localurl":"aleju~imgaug~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aleju/imgaug/master/requirements.txt","https://raw.githubusercontent.com/aleju/imgaug/master/setup.py"],"_requirements_localurls":["aleju~imgaug~requirements.txt","aleju~imgaug~setup.py"]},{"index":408,"category":"web","githuburl":"https://github.com/aio-libs/aiohttp","featured":null,"links":null,"description":null,"_repopath":"aio-libs/aiohttp","_reponame":"aiohttp","_stars":13100,"_forks":1836,"_watches":227,"_topics":["aiohttp","asyncio","python","http","http-server","http-client","async","hacktoberfest"],"_language":"Python","_homepage":"https://docs.aiohttp.org","_description":"aiohttp: Asynchronous HTTP client/server framework for asyncio and Python","_organization":"aio-libs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2013-10-01T00:00:00.000Z","_age_weeks":480,"_stars_per_week":27.24,"_pop_contributor_count":661,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ansiblecoreredhatofficial","microsoft","neu.ro"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.35,"_pop_updated_issues_count":303,"_pop_closed_issues_count":207,"_pop_created_since_days":112,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":303.0,"_pop_comment_count":598.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":5253,"_pop_score":69.77,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/aio-libs/aiohttp/master/README.rst","_readme_localurl":"aio-libs~aiohttp~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/aio-libs/aiohttp/master/setup.py","https://raw.githubusercontent.com/aio-libs/aiohttp/master/pyproject.toml"],"_requirements_localurls":["aio-libs~aiohttp~setup.py","aio-libs~aiohttp~pyproject.toml"]},{"index":554,"category":"ml-ops","githuburl":"https://github.com/horovod/horovod","featured":null,"links":null,"description":null,"_repopath":"horovod/horovod","_reponame":"horovod","_stars":12898,"_forks":2145,"_watches":332,"_topics":["tensorflow","uber","machine-learning","machinelearning","mpi","baidu","deep-learning","deeplearning","keras","pytorch","mxnet","spark","ray"],"_language":"Python","_homepage":"http://horovod.ai","_description":"horovod: Distributed training framework for TensorFlow, Keras, PyTorch, and Apache MXNet.","_organization":"horovod","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2017-08-09T00:00:00.000Z","_age_weeks":279,"_stars_per_week":46.11,"_pop_contributor_count":163,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["carbonrobotics","nvidia","uber"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.12,"_pop_updated_issues_count":128,"_pop_closed_issues_count":75,"_pop_created_since_days":65,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":128.0,"_pop_comment_count":269.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":93,"_pop_score":56.58,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/horovod/horovod/master/README.rst","_readme_localurl":"horovod~horovod~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/horovod/horovod/master/setup.py"],"_requirements_localurls":["horovod~horovod~setup.py"]},{"index":507,"category":"ml","githuburl":"https://github.com/tensorflow/tensor2tensor","featured":null,"links":null,"description":null,"_repopath":"tensorflow/tensor2tensor","_reponame":"tensor2tensor","_stars":12835,"_forks":3147,"_watches":458,"_topics":["machine-learning","machine-translation","deep-learning","reinforcement-learning","tpu"],"_language":"Python","_homepage":"","_description":"tensor2tensor: Library of deep learning models and datasets designed to make deep learning more accessible and accelerate ML research.","_organization":"tensorflow","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-24T00:00:00.000Z","_created_at":"2017-06-15T00:00:00.000Z","_age_weeks":287,"_stars_per_week":44.63,"_pop_contributor_count":243,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","mimuw","universityofillinoisaturbana\u2013champaign"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.23,"_pop_updated_issues_count":14,"_pop_closed_issues_count":2,"_pop_created_since_days":67,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":14.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":295,"_pop_score":50.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/tensor2tensor/master/README.md","_readme_localurl":"tensorflow~tensor2tensor~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorflow/tensor2tensor/master/setup.py"],"_requirements_localurls":["tensorflow~tensor2tensor~setup.py"]},{"index":812,"category":"nlp","githuburl":"https://github.com/gunthercox/chatterbot","featured":null,"links":null,"description":null,"_repopath":"gunthercox/chatterbot","_reponame":"ChatterBot","_stars":12738,"_forks":4189,"_watches":552,"_topics":["chatterbot","machine-learning","chatbot","python","conversation","language","bot"],"_language":"Python","_homepage":"https://chatterbot.readthedocs.io","_description":"ChatterBot is a machine learning, conversational dialog engine for creating chat bots","_organization":"gunthercox","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-06-01T00:00:00.000Z","_created_at":"2014-09-28T00:00:00.000Z","_age_weeks":429,"_stars_per_week":29.68,"_pop_contributor_count":103,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","wedgwoodwebworks"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":27,"_pop_closed_issues_count":10,"_pop_created_since_days":100,"_pop_updated_since_days":19,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":27.0,"_pop_comment_count":17.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":247,"_pop_score":42.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gunthercox/chatterbot/master/README.md","_readme_localurl":"gunthercox~chatterbot~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gunthercox/chatterbot/master/requirements.txt","https://raw.githubusercontent.com/gunthercox/chatterbot/master/setup.py"],"_requirements_localurls":["gunthercox~chatterbot~requirements.txt","gunthercox~chatterbot~setup.py"]},{"index":62,"category":"viz","githuburl":"https://github.com/plotly/plotly.py","featured":null,"links":null,"description":null,"_repopath":"plotly/plotly.py","_reponame":"plotly.py","_stars":12630,"_forks":2251,"_watches":275,"_topics":["python","d3","plotly","plotlyjs","webgl","dashboard","visualization","graph-library","plotly-dash","jupyter-notebook","sparkles","regl","declarative","interactive"],"_language":"Python","_homepage":"https://plotly.com/python/","_description":"plotly.py: The interactive graphing library for Python (includes Plotly Express) :sparkles:","_organization":"plotly","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-27T00:00:00.000Z","_created_at":"2013-11-21T00:00:00.000Z","_age_weeks":473,"_stars_per_week":26.67,"_pop_contributor_count":201,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["hextechnologies","netflix","plotly"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.52,"_pop_updated_issues_count":166,"_pop_closed_issues_count":40,"_pop_created_since_days":110,"_pop_updated_since_days":2,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":166.0,"_pop_comment_count":236.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":2044,"_pop_score":60.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/plotly/plotly.py/master/README.md","_readme_localurl":"plotly~plotly.py~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/plotly/plotly.py/master/setup.py","https://raw.githubusercontent.com/plotly/plotly.py/master/pyproject.toml"],"_requirements_localurls":["plotly~plotly.py~setup.py","plotly~plotly.py~pyproject.toml"]},{"index":39,"category":"jupyter","githuburl":"https://github.com/jupyterlab/jupyterlab","featured":null,"links":null,"description":null,"_repopath":"jupyterlab/jupyterlab","_reponame":"jupyterlab","_stars":12515,"_forks":2511,"_watches":311,"_topics":["jupyterlab","jupyter"],"_language":"TypeScript","_homepage":"https://jupyterlab.readthedocs.io/","_description":"JupyterLab computational environment.","_organization":"jupyterlab","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2016-06-03T00:00:00.000Z","_age_weeks":341,"_stars_per_week":36.65,"_pop_contributor_count":517,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["coiled","databricks","jupyterquantstack","mongodb","quantstack"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.75,"_pop_updated_issues_count":777,"_pop_closed_issues_count":555,"_pop_created_since_days":80,"_pop_updated_since_days":0,"_pop_recent_releases_count":53,"_pop_recent_releases_estimated_tags":5006,"_pop_recent_releases_adjusted_count":53,"_pop_issue_count":777.0,"_pop_comment_count":1800.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":5103,"_pop_score":76.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyterlab/jupyterlab/master/README.md","_readme_localurl":"jupyterlab~jupyterlab~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyterlab/jupyterlab/master/setup.py","https://raw.githubusercontent.com/jupyterlab/jupyterlab/master/pyproject.toml"],"_requirements_localurls":["jupyterlab~jupyterlab~setup.py","jupyterlab~jupyterlab~pyproject.toml"]},{"index":127,"category":"ml","githuburl":"https://github.com/microsoft/nni","featured":null,"links":null,"description":null,"_repopath":"microsoft/nni","_reponame":"nni","_stars":12327,"_forks":1729,"_watches":282,"_topics":["automl","deep-learning","neural-architecture-search","hyperparameter-optimization","distributed","bayesian-optimization","automated-machine-learning","machine-learning","machine-learning-algorithms","data-science","tensorflow","pytorch","neural-network","deep-neural-network","model-compression","feature-engineering","nas","python","hyperparameter-tuning","mlops"],"_language":"Python","_homepage":"https://nni.readthedocs.io","_description":"nni: An open source AutoML toolkit for automate machine learning lifecycle, including feature engineering, neural architecture search, model compression and hyper-parameter tuning.","_organization":"microsoft","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-06-01T00:00:00.000Z","_age_weeks":237,"_stars_per_week":51.92,"_pop_contributor_count":185,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.79,"_pop_updated_issues_count":212,"_pop_closed_issues_count":115,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":213.0,"_pop_comment_count":379.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":186,"_pop_score":55.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/nni/master/README.md","_readme_localurl":"microsoft~nni~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/nni/master/setup.py"],"_requirements_localurls":["microsoft~nni~setup.py"]},{"index":152,"category":"nlp","githuburl":"https://github.com/flairnlp/flair","featured":null,"links":null,"description":null,"_repopath":"flairnlp/flair","_reponame":"flair","_stars":12300,"_forks":1977,"_watches":206,"_topics":["pytorch","nlp","named-entity-recognition","sequence-labeling","semantic-role-labeling","word-embeddings","natural-language-processing","machine-learning"],"_language":"Python","_homepage":"","_description":"flair: A very simple framework for state-of-the-art Natural Language Processing (NLP)","_organization":"flairnlp","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-06-11T00:00:00.000Z","_age_weeks":236,"_stars_per_week":52.12,"_pop_contributor_count":235,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["humboldtuniversit\u00e4t","rasahq","researchindustrialsystemsengineering(rise)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.98,"_pop_updated_issues_count":195,"_pop_closed_issues_count":127,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":195.0,"_pop_comment_count":260.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":254,"_pop_score":57.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/flairnlp/flair/master/README.md","_readme_localurl":"flairnlp~flair~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/flairnlp/flair/master/requirements.txt","https://raw.githubusercontent.com/flairnlp/flair/master/setup.py","https://raw.githubusercontent.com/flairnlp/flair/master/pyproject.toml","https://raw.githubusercontent.com/flairnlp/flair/master/Pipfile"],"_requirements_localurls":["flairnlp~flair~requirements.txt","flairnlp~flair~setup.py","flairnlp~flair~pyproject.toml","flairnlp~flair~Pipfile"]},{"index":281,"category":"util","githuburl":"https://github.com/squidfunk/mkdocs-material","featured":null,"links":null,"description":null,"_repopath":"squidfunk/mkdocs-material","_reponame":"mkdocs-material","_stars":12080,"_forks":2664,"_watches":110,"_topics":["mkdocs","theme","documentation","material-design","template","static"],"_language":"TypeScript","_homepage":"https://squidfunk.github.io/mkdocs-material/","_description":"mkdocs-material: Documentation that simply works","_organization":"squidfunk","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2016-01-28T00:00:00.000Z","_age_weeks":359,"_stars_per_week":33.6,"_pop_contributor_count":173,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["stylezen","trimble-oss"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.37,"_pop_updated_issues_count":245,"_pop_closed_issues_count":232,"_pop_created_since_days":84,"_pop_updated_since_days":0,"_pop_recent_releases_count":58,"_pop_recent_releases_estimated_tags":43,"_pop_recent_releases_adjusted_count":58,"_pop_issue_count":245.0,"_pop_comment_count":619.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":13300,"_pop_score":70.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/README.md","_readme_localurl":"squidfunk~mkdocs-material~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/requirements.txt","https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/setup.py","https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/pyproject.toml"],"_requirements_localurls":["squidfunk~mkdocs-material~requirements.txt","squidfunk~mkdocs-material~setup.py","squidfunk~mkdocs-material~pyproject.toml"]},{"index":575,"category":"perf","githuburl":"https://github.com/pybind/pybind11","featured":null,"links":null,"description":null,"_repopath":"pybind/pybind11","_reponame":"pybind11","_stars":11971,"_forks":1736,"_watches":247,"_topics":["python","bindings"],"_language":"C++","_homepage":"https://pybind11.readthedocs.io/","_description":"pybind11: Seamless operability between C++11 and Python","_organization":"pybind","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2015-07-05T00:00:00.000Z","_age_weeks":389,"_stars_per_week":30.76,"_pop_contributor_count":312,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["epfl","lumicks","princetonuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.27,"_pop_updated_issues_count":230,"_pop_closed_issues_count":176,"_pop_created_since_days":91,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":230.0,"_pop_comment_count":886.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.9,"_pop_dependents_count":1836,"_pop_score":67.65,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pybind/pybind11/master/README.rst","_readme_localurl":"pybind~pybind11~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pybind/pybind11/master/setup.py","https://raw.githubusercontent.com/pybind/pybind11/master/pyproject.toml"],"_requirements_localurls":["pybind~pybind11~setup.py","pybind~pybind11~pyproject.toml"]},{"index":52,"category":"graph","githuburl":"https://github.com/networkx/networkx","featured":null,"links":null,"description":null,"_repopath":"networkx/networkx","_reponame":"networkx","_stars":11960,"_forks":2803,"_watches":276,"_topics":["python","complex-networks","graph-theory","graph-algorithms","graph-analysis","graph-generation","graph-visualization"],"_language":"Python","_homepage":"https://networkx.org","_description":"networkx: Network Analysis in Python","_organization":"networkx","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2010-09-06T00:00:00.000Z","_age_weeks":641,"_stars_per_week":18.66,"_pop_contributor_count":636,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ucberkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.06,"_pop_updated_issues_count":390,"_pop_closed_issues_count":241,"_pop_created_since_days":150,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":390.0,"_pop_comment_count":500.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":957,"_pop_score":65.75,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/networkx/networkx/master/README.rst","_readme_localurl":"networkx~networkx~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/networkx/networkx/master/setup.py"],"_requirements_localurls":["networkx~networkx~setup.py"]},{"index":314,"category":"util","githuburl":"https://github.com/samuelcolvin/pydantic","featured":null,"links":null,"description":null,"_repopath":"samuelcolvin/pydantic","_reponame":"pydantic","_stars":11924,"_forks":1113,"_watches":88,"_topics":["validation","parsing","json-schema","python37","python38","pydantic","python39","python","hints","python310","python311"],"_language":"Python","_homepage":"https://docs.pydantic.dev","_description":"pydantic: Data parsing and validation using Python type hints","_organization":"samuelcolvin","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-05-03T00:00:00.000Z","_age_weeks":293,"_stars_per_week":40.6,"_pop_contributor_count":333,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["pydantic","pyupio","toucantoco"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.4,"_pop_updated_issues_count":340,"_pop_closed_issues_count":204,"_pop_created_since_days":68,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":340.0,"_pop_comment_count":668.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":1774,"_pop_score":66.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/samuelcolvin/pydantic/master/README.md","_readme_localurl":"samuelcolvin~pydantic~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/samuelcolvin/pydantic/master/setup.py","https://raw.githubusercontent.com/samuelcolvin/pydantic/master/pyproject.toml"],"_requirements_localurls":["samuelcolvin~pydantic~setup.py","samuelcolvin~pydantic~pyproject.toml"]},{"index":114,"category":"nlp","githuburl":"https://github.com/allenai/allennlp","featured":null,"links":null,"description":null,"_repopath":"allenai/allennlp","_reponame":"allennlp","_stars":11332,"_forks":2231,"_watches":280,"_topics":["pytorch","nlp","natural-language-processing","deep-learning","data-science","python"],"_language":"Python","_homepage":"http://www.allennlp.org","_description":"allennlp: An open-source NLP research library, built on PyTorch.","_organization":"allenai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-22T00:00:00.000Z","_created_at":"2017-05-15T00:00:00.000Z","_age_weeks":292,"_stars_per_week":38.81,"_pop_contributor_count":265,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoftsemanticmachines"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.6,"_pop_updated_issues_count":36,"_pop_closed_issues_count":32,"_pop_created_since_days":68,"_pop_updated_since_days":1,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":36.0,"_pop_comment_count":98.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":331,"_pop_score":53.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/allenai/allennlp/master/README.md","_readme_localurl":"allenai~allennlp~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/allenai/allennlp/master/setup.py","https://raw.githubusercontent.com/allenai/allennlp/master/pyproject.toml"],"_requirements_localurls":["allenai~allennlp~setup.py","allenai~allennlp~pyproject.toml"]},{"index":425,"category":"ml-dl","githuburl":"https://github.com/albumentations-team/albumentations","featured":null,"links":null,"description":null,"_repopath":"albumentations-team/albumentations","_reponame":"albumentations","_stars":11325,"_forks":1447,"_watches":124,"_topics":["image-augmentation","machine-learning","augmentation","deep-learning","detection","fast-augmentations","segmentation","image-segmentation","image-processing","image-classification","python","object-detection"],"_language":"Python","_homepage":"https://albumentations.ai","_description":"albumentations: Fast image augmentation library and an easy-to-use wrapper around other libraries. Documentation: https://albumentations.ai/docs/ Paper about the library: https://www.mdpi.com/2078-2489/11/2/125","_organization":"albumentations-team","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2018-06-06T00:00:00.000Z","_age_weeks":236,"_stars_per_week":47.84,"_pop_contributor_count":123,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deci-ai","ternaus.com"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.29,"_pop_updated_issues_count":95,"_pop_closed_issues_count":40,"_pop_created_since_days":55,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":95.0,"_pop_comment_count":133.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":24,"_pop_score":45.97,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/albumentations-team/albumentations/master/README.md","_readme_localurl":"albumentations-team~albumentations~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/albumentations-team/albumentations/master/setup.py"],"_requirements_localurls":["albumentations-team~albumentations~setup.py"]},{"index":105,"category":"nlp","githuburl":"https://github.com/nltk/nltk","featured":null,"links":null,"description":null,"_repopath":"nltk/nltk","_reponame":"nltk","_stars":11321,"_forks":2671,"_watches":469,"_topics":["nltk","python","nlp","natural-language-processing","machine-learning"],"_language":"Python","_homepage":"https://www.nltk.org","_description":"NLTK Source","_organization":"nltk","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2009-09-07T00:00:00.000Z","_age_weeks":693,"_stars_per_week":16.34,"_pop_contributor_count":435,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["googleresearch","zytedata,scrapinghub"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.29,"_pop_updated_issues_count":66,"_pop_closed_issues_count":52,"_pop_created_since_days":162,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":66.0,"_pop_comment_count":154.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":4758,"_pop_score":64.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nltk/nltk/master/README.md","_readme_localurl":"nltk~nltk~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nltk/nltk/master/setup.py"],"_requirements_localurls":["nltk~nltk~setup.py"]},{"index":346,"category":"viz","githuburl":"https://github.com/gradio-app/gradio","featured":null,"links":null,"description":null,"_repopath":"gradio-app/gradio","_reponame":"gradio","_stars":11301,"_forks":717,"_watches":88,"_topics":["machine-learning","models","ui","ui-components","interface","python","data-science","data-visualization","deep-learning","data-analysis","gradio","gradio-interface","python-notebook","deploy"],"_language":"HTML","_homepage":"http://www.gradio.app","_description":"gradio: Create UIs for your machine learning model in Python in 3 minutes","_organization":"gradio-app","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-12-19T00:00:00.000Z","_age_weeks":208,"_stars_per_week":54.15,"_pop_contributor_count":118,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["pennstate"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":29.58,"_pop_updated_issues_count":698,"_pop_closed_issues_count":489,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":75,"_pop_recent_releases_estimated_tags":19,"_pop_recent_releases_adjusted_count":75,"_pop_issue_count":698.0,"_pop_comment_count":1859.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":794,"_pop_score":64.23,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gradio-app/gradio/master/README.md","_readme_localurl":"gradio-app~gradio~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gradio-app/gradio/master/setup.py"],"_requirements_localurls":["gradio-app~gradio~setup.py"]},{"index":242,"category":"ml","githuburl":"https://github.com/deepmind/deepmind-research","featured":null,"links":null,"description":null,"_repopath":"deepmind/deepmind-research","_reponame":"deepmind-research","_stars":11213,"_forks":2300,"_watches":325,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"deepmind-research: This repository contains implementations and illustrative code to accompany DeepMind publications","_organization":"deepmind","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-24T00:00:00.000Z","_created_at":"2019-01-15T00:00:00.000Z","_age_weeks":204,"_stars_per_week":54.74,"_pop_contributor_count":91,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deepmind"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.77,"_pop_updated_issues_count":37,"_pop_closed_issues_count":6,"_pop_created_since_days":48,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":37.0,"_pop_comment_count":26.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":7,"_pop_score":33.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/deepmind/deepmind-research/master/README.md","_readme_localurl":"deepmind~deepmind-research~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":320,"category":"gui","githuburl":"https://github.com/pysimplegui/pysimplegui","featured":1.0,"links":null,"description":null,"_repopath":"pysimplegui/pysimplegui","_reponame":"PySimpleGUI","_stars":10984,"_forks":1632,"_watches":220,"_topics":["pysimplegui","gui-framework","python","tkinter","tkinter-python","tkinter-gui","wxpython","pyside2","qt","qt-gui","remi","gui","gui-window","gui-programming","datavisualization","games","beginner-friendly","systemtray","python-gui","user-interface"],"_language":"Python","_homepage":"","_description":"PySimpleGUI: Launched in 2018. It's 2022 and PySimpleGUI is actively developed & supported. Create complex windows simply. Supports tkinter, Qt, WxPython, Remi (in browser). Create GUI applications trivially with a full set of widgets. Multi-Window applications are also simple. 3.4 to 3.11 supported. 325+ Demo programs & Cookbook for rapid start. Extensive documentation. Examples for Machine Learning(OpenCV Integration, Chatterbot), Rainmeter-like Desktop Widgets, Matplotlib + Pyplot integration, add GUI to command line scripts, PDF & Image Viewer. For both beginning and advanced programmers. docs - PySimpleGUI.org GitHub - PySimpleGUI.com. The Minecraft of GUIs - simple to complex... does them all.","_organization":"pysimplegui","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-07-11T00:00:00.000Z","_age_weeks":231,"_stars_per_week":47.4,"_pop_contributor_count":18,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["netperfect","pysimplegui"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.48,"_pop_updated_issues_count":242,"_pop_closed_issues_count":202,"_pop_created_since_days":54,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":242.0,"_pop_comment_count":689.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":67,"_pop_score":51.25,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/pysimplegui/pysimplegui/master/readme.md","_readme_localurl":"pysimplegui~pysimplegui~readme.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pysimplegui/pysimplegui/master/setup.py"],"_requirements_localurls":["pysimplegui~pysimplegui~setup.py"]},{"index":190,"category":"ml-dl","githuburl":"https://github.com/dmlc/dgl","featured":null,"links":null,"description":null,"_repopath":"dmlc/dgl","_reponame":"dgl","_stars":10871,"_forks":2643,"_watches":174,"_topics":["deep-learning","graph-neural-networks"],"_language":"Python","_homepage":"http://dgl.ai","_description":"dgl: Python package built to ease deep learning on graph, on top of existing DL frameworks.","_organization":"dmlc","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-04-20T00:00:00.000Z","_age_weeks":243,"_stars_per_week":44.66,"_pop_contributor_count":240,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aws","awsailabshanghai","awsshanghai","newyorkuniversity","tensorchord"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.92,"_pop_updated_issues_count":617,"_pop_closed_issues_count":452,"_pop_created_since_days":57,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":615.0,"_pop_comment_count":3148.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":5.1,"_pop_dependents_count":47,"_pop_score":65.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dmlc/dgl/master/README.md","_readme_localurl":"dmlc~dgl~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dmlc/dgl/master/pyproject.toml"],"_requirements_localurls":["dmlc~dgl~pyproject.toml"]},{"index":122,"category":"data","githuburl":"https://github.com/iterative/dvc","featured":null,"links":null,"description":null,"_repopath":"iterative/dvc","_reponame":"dvc","_stars":10804,"_forks":1010,"_watches":136,"_topics":["data-science","machine-learning","reproducibility","data-version-control","git","developer-tools","collaboration","ai","python","hacktoberfest"],"_language":"Python","_homepage":"https://dvc.org","_description":"dvc: \ud83e\udd89Data Version Control | Git for Data & Models | ML Experiments Management","_organization":"iterative","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-03-04T00:00:00.000Z","_age_weeks":302,"_stars_per_week":35.74,"_pop_contributor_count":276,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["iterative","iterative.ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":19.79,"_pop_updated_issues_count":520,"_pop_closed_issues_count":371,"_pop_created_since_days":70,"_pop_updated_since_days":0,"_pop_recent_releases_count":54,"_pop_recent_releases_estimated_tags":73,"_pop_recent_releases_adjusted_count":54,"_pop_issue_count":519.0,"_pop_comment_count":1066.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":3399,"_pop_score":70.22,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/iterative/dvc/master/README.rst","_readme_localurl":"iterative~dvc~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/iterative/dvc/master/setup.py","https://raw.githubusercontent.com/iterative/dvc/master/pyproject.toml"],"_requirements_localurls":["iterative~dvc~setup.py","iterative~dvc~pyproject.toml"]},{"index":1,"category":"data","githuburl":"https://github.com/apache/arrow","featured":null,"links":null,"description":null,"_repopath":"apache/arrow","_reponame":"arrow","_stars":10801,"_forks":2663,"_watches":345,"_topics":["arrow"],"_language":"C++","_homepage":"https://arrow.apache.org/","_description":"arrow: Apache Arrow is a multi-language toolbox for accelerated data interchange and in-memory processing","_organization":"apache","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2016-02-17T00:00:00.000Z","_age_weeks":356,"_stars_per_week":30.28,"_pop_contributor_count":976,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["clear-code","quantco","voltron-data/ursa-computing","voltrondata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":41.44,"_pop_updated_issues_count":1046,"_pop_closed_issues_count":764,"_pop_created_since_days":83,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":1046.0,"_pop_comment_count":5523.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":5.3,"_pop_dependents_count":15514,"_pop_score":82.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apache/arrow/master/README.md","_readme_localurl":"apache~arrow~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":120,"category":"ml-ops","githuburl":"https://github.com/prefecthq/prefect","featured":null,"links":null,"description":null,"_repopath":"prefecthq/prefect","_reponame":"prefect","_stars":10681,"_forks":1084,"_watches":152,"_topics":["python","workflow","data-engineering","data-science","workflow-engine","prefect","infrastructure","ml-ops","data-ops","automation","orchestration","orion","data","observability","pipeline"],"_language":"Python","_homepage":"https://prefect.io","_description":"prefect: The easiest way to coordinate your dataflow","_organization":"prefecthq","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-06-29T00:00:00.000Z","_age_weeks":233,"_stars_per_week":45.76,"_pop_contributor_count":100,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["prefect","prefecthq"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":131.9,"_pop_updated_issues_count":1305,"_pop_closed_issues_count":920,"_pop_created_since_days":54,"_pop_updated_since_days":0,"_pop_recent_releases_count":47,"_pop_recent_releases_estimated_tags":36,"_pop_recent_releases_adjusted_count":47,"_pop_issue_count":1308.0,"_pop_comment_count":2629.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":362,"_pop_score":67.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/prefecthq/prefect/master/README.md","_readme_localurl":"prefecthq~prefect~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/prefecthq/prefect/master/requirements.txt","https://raw.githubusercontent.com/prefecthq/prefect/master/setup.py","https://raw.githubusercontent.com/prefecthq/prefect/master/pyproject.toml"],"_requirements_localurls":["prefecthq~prefect~requirements.txt","prefecthq~prefect~setup.py","prefecthq~prefect~pyproject.toml"]},{"index":192,"category":"template","githuburl":"https://github.com/tiangolo/full-stack-fastapi-postgresql","featured":null,"links":null,"description":null,"_repopath":"tiangolo/full-stack-fastapi-postgresql","_reponame":"full-stack-fastapi-postgresql","_stars":10628,"_forks":1932,"_watches":172,"_topics":["python","python3","json","json-schema","docker","postgresql","frontend","backend","fastapi","traefik","letsencrypt","swagger","celery","jwt","vue","vuex","cookiecutter","openapi","openapi3","pgadmin"],"_language":"Python","_homepage":null,"_description":"full-stack-fastapi-postgresql: Full stack, modern web application generator. Using FastAPI, PostgreSQL as database, Docker, automatic HTTPS and more.","_organization":"tiangolo","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-06-05T00:00:00.000Z","_created_at":"2019-02-23T00:00:00.000Z","_age_weeks":199,"_stars_per_week":53.33,"_pop_contributor_count":17,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cortexia","formlogic","intelliatherapeutics","messagg"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":152,"_pop_closed_issues_count":51,"_pop_created_since_days":46,"_pop_updated_since_days":31,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":152.0,"_pop_comment_count":84.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":44,"_pop_score":33.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/full-stack-fastapi-postgresql/master/README.md","_readme_localurl":"tiangolo~full-stack-fastapi-postgresql~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":79,"category":"ml","githuburl":"https://github.com/scipy/scipy","featured":null,"links":null,"description":null,"_repopath":"scipy/scipy","_reponame":"scipy","_stars":10608,"_forks":4514,"_watches":341,"_topics":["python","scipy","algorithms","closember","scientific-computing"],"_language":"Python","_homepage":"https://scipy.org","_description":"SciPy library main repository","_organization":"scipy","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2011-03-09T00:00:00.000Z","_age_weeks":614,"_stars_per_week":17.26,"_pop_contributor_count":1401,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quansight"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":30.5,"_pop_updated_issues_count":1144,"_pop_closed_issues_count":738,"_pop_created_since_days":143,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":1144.0,"_pop_comment_count":2983.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":7282,"_pop_score":76.57,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/scipy/scipy/master/README.rst","_readme_localurl":"scipy~scipy~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scipy/scipy/master/setup.py","https://raw.githubusercontent.com/scipy/scipy/master/pyproject.toml"],"_requirements_localurls":["scipy~scipy~setup.py","scipy~scipy~pyproject.toml"]},{"index":11,"category":"perf","githuburl":"https://github.com/dask/dask","featured":null,"links":null,"description":null,"_repopath":"dask/dask","_reponame":"dask","_stars":10578,"_forks":1575,"_watches":216,"_topics":["dask","python","pydata","numpy","pandas","scikit-learn","scipy"],"_language":"Python","_homepage":"https://dask.org","_description":"dask: Parallel computing with task scheduling","_organization":"dask","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2015-01-04T00:00:00.000Z","_age_weeks":415,"_stars_per_week":25.48,"_pop_contributor_count":570,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["coiled","voltrondata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.13,"_pop_updated_issues_count":346,"_pop_closed_issues_count":211,"_pop_created_since_days":97,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":32,"_pop_recent_releases_adjusted_count":32,"_pop_issue_count":346.0,"_pop_comment_count":856.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":3107,"_pop_score":71.78,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dask/dask/master/README.rst","_readme_localurl":"dask~dask~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dask/dask/master/setup.py"],"_requirements_localurls":["dask~dask~setup.py"]},{"index":218,"category":"ml","githuburl":"https://github.com/spotify/annoy","featured":null,"links":null,"description":null,"_repopath":"spotify/annoy","_reponame":"annoy","_stars":10574,"_forks":1066,"_watches":325,"_topics":["c-plus-plus","python","nearest-neighbor-search","locality-sensitive-hashing","approximate-nearest-neighbor-search","golang","lua"],"_language":"C++","_homepage":null,"_description":"annoy: Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk","_organization":"spotify","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-27T00:00:00.000Z","_created_at":"2013-04-01T00:00:00.000Z","_age_weeks":507,"_stars_per_week":20.86,"_pop_contributor_count":82,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":17,"_pop_closed_issues_count":9,"_pop_created_since_days":118,"_pop_updated_since_days":2,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":17.0,"_pop_comment_count":28.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":66,"_pop_score":41.25,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/spotify/annoy/master/README.rst","_readme_localurl":"spotify~annoy~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/spotify/annoy/master/setup.py"],"_requirements_localurls":["spotify~annoy~setup.py"]},{"index":857,"category":"viz","githuburl":"https://github.com/visgl/deck.gl","featured":null,"links":null,"description":null,"_repopath":"visgl/deck.gl","_reponame":"deck.gl","_stars":10477,"_forks":1892,"_watches":1730,"_topics":["webgl","data-visualization","javascript","visualization","python","geospatial-analysis","maps"],"_language":"JavaScript","_homepage":"https://deck.gl","_description":"deck.gl: WebGL2 powered visualization framework","_organization":"visgl","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2015-12-15T00:00:00.000Z","_age_weeks":365,"_stars_per_week":28.64,"_pop_contributor_count":209,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["foursquare"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.31,"_pop_updated_issues_count":185,"_pop_closed_issues_count":127,"_pop_created_since_days":85,"_pop_updated_since_days":0,"_pop_recent_releases_count":59,"_pop_recent_releases_estimated_tags":74,"_pop_recent_releases_adjusted_count":59,"_pop_issue_count":186.0,"_pop_comment_count":250.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":273,"_pop_score":59.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/visgl/deck.gl/master/README.md","_readme_localurl":"visgl~deck.gl~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":718,"category":"perf","githuburl":"https://github.com/pola-rs/polars","featured":1.0,"links":null,"description":null,"_repopath":"pola-rs/polars","_reponame":"polars","_stars":10407,"_forks":553,"_watches":104,"_topics":["dataframe-library","dataframe","dataframes","rust","arrow","python","out-of-core"],"_language":"Rust","_homepage":"https://pola.rs/","_description":"polars: Fast multi-threaded, hybrid-streaming DataFrame library in Rust | Python | Node.js","_organization":"pola-rs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2020-05-13T00:00:00.000Z","_age_weeks":135,"_stars_per_week":76.68,"_pop_contributor_count":141,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aertslab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":39.65,"_pop_updated_issues_count":1083,"_pop_closed_issues_count":893,"_pop_created_since_days":32,"_pop_updated_since_days":0,"_pop_recent_releases_count":26,"_pop_recent_releases_estimated_tags":129,"_pop_recent_releases_adjusted_count":26,"_pop_issue_count":1083.0,"_pop_comment_count":1784.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":102,"_pop_score":59.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pola-rs/polars/master/README.md","_readme_localurl":"pola-rs~polars~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":72,"category":"util","githuburl":"https://github.com/python-pillow/pillow","featured":null,"links":null,"description":null,"_repopath":"python-pillow/pillow","_reponame":"Pillow","_stars":10374,"_forks":1957,"_watches":218,"_topics":["c","cross-platform","pil","pillow","python","python-3","image-processing","image"],"_language":"Python","_homepage":"https://python-pillow.org","_description":"Pillow: The friendly PIL fork (Python Imaging Library)","_organization":"python-pillow","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2012-07-24T00:00:00.000Z","_age_weeks":542,"_stars_per_week":19.11,"_pop_contributor_count":420,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aclark.net","nordsoftware","uploadcare"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":19.37,"_pop_updated_issues_count":361,"_pop_closed_issues_count":295,"_pop_created_since_days":127,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":361.0,"_pop_comment_count":568.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":26551,"_pop_score":74.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python-pillow/pillow/master/README.md","_readme_localurl":"python-pillow~pillow~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/python-pillow/pillow/master/setup.py"],"_requirements_localurls":["python-pillow~pillow~setup.py"]},{"index":110,"category":"ml-interpretability","githuburl":"https://github.com/marcotcr/lime","featured":null,"links":null,"description":null,"_repopath":"marcotcr/lime","_reponame":"lime","_stars":10294,"_forks":1693,"_watches":272,"_topics":[],"_language":"JavaScript","_homepage":"","_description":"Lime: Explaining the predictions of any machine learning classifier","_organization":"marcotcr","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2021-07-29T00:00:00.000Z","_created_at":"2016-03-15T00:00:00.000Z","_age_weeks":352,"_stars_per_week":29.17,"_pop_contributor_count":61,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["related-sciences","system1"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":25,"_pop_closed_issues_count":10,"_pop_created_since_days":82,"_pop_updated_since_days":17,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":25.0,"_pop_comment_count":19.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":145,"_pop_score":38.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/marcotcr/lime/master/README.md","_readme_localurl":"marcotcr~lime~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/marcotcr/lime/master/setup.py"],"_requirements_localurls":["marcotcr~lime~setup.py"]},{"index":427,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/detr","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/detr","_reponame":"detr","_stars":10233,"_forks":1866,"_watches":146,"_topics":[],"_language":"Python","_homepage":null,"_description":"detr: End-to-End Object Detection with Transformers","_organization":"facebookresearch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-03-07T00:00:00.000Z","_created_at":"2020-05-26T00:00:00.000Z","_age_weeks":133,"_stars_per_week":76.45,"_pop_contributor_count":25,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["axera-tech","facebookaireseach","facebookairesearch","mtsai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":48,"_pop_closed_issues_count":13,"_pop_created_since_days":31,"_pop_updated_since_days":10,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":48.0,"_pop_comment_count":51.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":66,"_pop_score":34.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/detr/master/README.md","_readme_localurl":"facebookresearch~detr~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/detr/master/requirements.txt"],"_requirements_localurls":["facebookresearch~detr~requirements.txt"]},{"index":50,"category":"viz","githuburl":"https://github.com/mwaskom/seaborn","featured":null,"links":null,"description":null,"_repopath":"mwaskom/seaborn","_reponame":"seaborn","_stars":10172,"_forks":1678,"_watches":252,"_topics":["python","data-visualization","data-science","matplotlib","pandas"],"_language":"Python","_homepage":"https://seaborn.pydata.org","_description":"seaborn: Statistical data visualization in Python","_organization":"mwaskom","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2012-06-18T00:00:00.000Z","_age_weeks":548,"_stars_per_week":18.56,"_pop_contributor_count":181,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bridgebioanalytics","coiled","universityofbritishcolumbia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.69,"_pop_updated_issues_count":146,"_pop_closed_issues_count":116,"_pop_created_since_days":128,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":146.0,"_pop_comment_count":305.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":522,"_pop_score":62.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mwaskom/seaborn/master/README.md","_readme_localurl":"mwaskom~seaborn~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mwaskom/seaborn/master/pyproject.toml"],"_requirements_localurls":["mwaskom~seaborn~pyproject.toml"]},{"index":166,"category":"sim","githuburl":"https://github.com/bulletphysics/bullet3","featured":null,"links":null,"description":null,"_repopath":"bulletphysics/bullet3","_reponame":"bullet3","_stars":10043,"_forks":2620,"_watches":405,"_topics":["simulation","robotics","kinematics","virtual-reality","reinforcement-learning","computer-animation","game-development","simulator","pybullet"],"_language":"C++","_homepage":"http://bulletphysics.org","_description":"bullet3: Bullet Physics SDK: real-time collision detection and multi-physics simulation for VR, games, visual effects, robotics, machine learning etc.","_organization":"bulletphysics","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-25T00:00:00.000Z","_created_at":"2011-04-12T00:00:00.000Z","_age_weeks":609,"_stars_per_week":16.47,"_pop_contributor_count":299,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ucla"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.69,"_pop_updated_issues_count":55,"_pop_closed_issues_count":14,"_pop_created_since_days":142,"_pop_updated_since_days":3,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":55.0,"_pop_comment_count":34.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":2098,"_pop_score":51.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bulletphysics/bullet3/master/README.md","_readme_localurl":"bulletphysics~bullet3~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bulletphysics/bullet3/master/setup.py"],"_requirements_localurls":["bulletphysics~bullet3~setup.py"]},{"index":173,"category":"term","githuburl":"https://github.com/tiangolo/typer","featured":1.0,"links":null,"description":null,"_repopath":"tiangolo/typer","_reponame":"typer","_stars":9986,"_forks":399,"_watches":66,"_topics":["cli","click","python3","typehints","terminal","shell","python","typer"],"_language":"Python","_homepage":"https://typer.tiangolo.com/","_description":"Typer, build great CLIs. Easy to code. Based on Python type hints.","_organization":"tiangolo","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-12-24T00:00:00.000Z","_age_weeks":155,"_stars_per_week":64.07,"_pop_contributor_count":32,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lofidynamics"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.75,"_pop_updated_issues_count":183,"_pop_closed_issues_count":93,"_pop_created_since_days":36,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":183.0,"_pop_comment_count":342.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":381,"_pop_score":49.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/typer/master/README.md","_readme_localurl":"tiangolo~typer~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tiangolo/typer/master/pyproject.toml"],"_requirements_localurls":["tiangolo~typer~pyproject.toml"]},{"index":24,"category":"ml","githuburl":"https://github.com/google/dopamine","featured":null,"links":null,"description":null,"_repopath":"google/dopamine","_reponame":"dopamine","_stars":9956,"_forks":1337,"_watches":440,"_topics":["rl","ml","ai","google","tensorflow"],"_language":"Jupyter Notebook","_homepage":"https://github.com/google/dopamine","_description":"Dopamine is a research framework for fast prototyping of reinforcement learning algorithms. ","_organization":"google","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2018-07-26T00:00:00.000Z","_age_weeks":229,"_stars_per_week":43.37,"_pop_contributor_count":15,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":6,"_pop_closed_issues_count":2,"_pop_created_since_days":54,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":6.0,"_pop_comment_count":17.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":27,"_pop_score":33.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/dopamine/master/README.md","_readme_localurl":"google~dopamine~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/dopamine/master/requirements.txt","https://raw.githubusercontent.com/google/dopamine/master/setup.py"],"_requirements_localurls":["google~dopamine~requirements.txt","google~dopamine~setup.py"]},{"index":60,"category":"pandas","githuburl":"https://github.com/pandas-profiling/pandas-profiling","featured":1.0,"links":null,"description":null,"_repopath":"pandas-profiling/pandas-profiling","_reponame":"pandas-profiling","_stars":9944,"_forks":1413,"_watches":150,"_topics":["pandas-profiling","pandas-dataframe","statistics","jupyter-notebook","exploration","data-science","python","pandas","machine-learning","deep-learning","exploratory-data-analysis","eda","data-quality","html-report","data-exploration","data-analysis","jupyter","big-data-analytics","data-profiling","hacktoberfest"],"_language":"Python","_homepage":"https://pandas-profiling.ydata.ai","_description":"pandas-profiling: Create HTML profiling reports from pandas DataFrame objects","_organization":"pandas-profiling","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2016-01-09T00:00:00.000Z","_age_weeks":362,"_stars_per_week":27.45,"_pop_contributor_count":105,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["metamaze"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.54,"_pop_updated_issues_count":196,"_pop_closed_issues_count":144,"_pop_created_since_days":84,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":196.0,"_pop_comment_count":260.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":60,"_pop_score":50.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pandas-profiling/pandas-profiling/master/README.md","_readme_localurl":"pandas-profiling~pandas-profiling~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pandas-profiling/pandas-profiling/master/requirements.txt","https://raw.githubusercontent.com/pandas-profiling/pandas-profiling/master/setup.py"],"_requirements_localurls":["pandas-profiling~pandas-profiling~requirements.txt","pandas-profiling~pandas-profiling~setup.py"]},{"index":87,"category":"math","githuburl":"https://github.com/sympy/sympy","featured":1.0,"links":null,"description":null,"_repopath":"sympy/sympy","_reponame":"sympy","_stars":9887,"_forks":3794,"_watches":283,"_topics":["python","math","computer-algebra","science","hacktoberfest"],"_language":"Python","_homepage":"https://sympy.org/","_description":"sympy: A computer algebra system written in pure Python","_organization":"sympy","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2010-04-30T00:00:00.000Z","_age_weeks":659,"_stars_per_week":14.99,"_pop_contributor_count":1186,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["gsitechnology","quansight"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":40.35,"_pop_updated_issues_count":914,"_pop_closed_issues_count":247,"_pop_created_since_days":154,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":914.0,"_pop_comment_count":1859.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":7939,"_pop_score":76.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sympy/sympy/master/README.md","_readme_localurl":"sympy~sympy~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sympy/sympy/master/setup.py"],"_requirements_localurls":["sympy~sympy~setup.py"]},{"index":645,"category":"util","githuburl":"https://github.com/pyinstaller/pyinstaller","featured":null,"links":null,"description":null,"_repopath":"pyinstaller/pyinstaller","_reponame":"pyinstaller","_stars":9831,"_forks":1852,"_watches":233,"_topics":["python","python-3","bundle","package","pyinstaller","python-to-exe","py2exe","py2app"],"_language":"Python","_homepage":"http://www.pyinstaller.org","_description":"pyinstaller: Freeze (package) Python programs into stand-alone executables","_organization":"pyinstaller","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2011-11-23T00:00:00.000Z","_age_weeks":577,"_stars_per_week":17.02,"_pop_contributor_count":443,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["develers.r.l."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.4,"_pop_updated_issues_count":6291,"_pop_closed_issues_count":6242,"_pop_created_since_days":135,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":6291.0,"_pop_comment_count":670.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.1,"_pop_dependents_count":2287,"_pop_score":66.5,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyinstaller/pyinstaller/master/README.rst","_readme_localurl":"pyinstaller~pyinstaller~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyinstaller/pyinstaller/master/requirements.txt","https://raw.githubusercontent.com/pyinstaller/pyinstaller/master/setup.py","https://raw.githubusercontent.com/pyinstaller/pyinstaller/master/pyproject.toml"],"_requirements_localurls":["pyinstaller~pyinstaller~requirements.txt","pyinstaller~pyinstaller~setup.py","pyinstaller~pyinstaller~pyproject.toml"]},{"index":805,"category":"web","githuburl":"https://github.com/encode/httpx","featured":null,"links":null,"description":null,"_repopath":"encode/httpx","_reponame":"httpx","_stars":9786,"_forks":640,"_watches":106,"_topics":["python","http","trio","asyncio"],"_language":"Python","_homepage":"https://www.python-httpx.org/","_description":"httpx: A next generation HTTP client for Python. \ud83e\udd8b","_organization":"encode","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2019-04-04T00:00:00.000Z","_age_weeks":193,"_stars_per_week":50.55,"_pop_contributor_count":182,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["elastic","encodeoss"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.13,"_pop_updated_issues_count":130,"_pop_closed_issues_count":103,"_pop_created_since_days":45,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":20,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":130.0,"_pop_comment_count":242.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":2114,"_pop_score":59.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/encode/httpx/master/README.md","_readme_localurl":"encode~httpx~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/encode/httpx/master/requirements.txt","https://raw.githubusercontent.com/encode/httpx/master/setup.py","https://raw.githubusercontent.com/encode/httpx/master/pyproject.toml"],"_requirements_localurls":["encode~httpx~requirements.txt","encode~httpx~setup.py","encode~httpx~pyproject.toml"]},{"index":536,"category":"profiling","githuburl":"https://github.com/bloomberg/memray","featured":1.0,"links":null,"description":null,"_repopath":"bloomberg/memray","_reponame":"memray","_stars":9678,"_forks":267,"_watches":54,"_topics":["memory","memory-leak","memory-leak-detection","memory-profiler","profiler","python","python3","hacktoberfest"],"_language":"Python","_homepage":"https://bloomberg.github.io/memray/","_description":"Memray is a memory profiler for Python","_organization":"bloomberg","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2022-04-08T00:00:00.000Z","_age_weeks":36,"_stars_per_week":265.67,"_pop_contributor_count":22,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bloomberg","bloombergpythoninfrastructure"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.85,"_pop_updated_issues_count":60,"_pop_closed_issues_count":47,"_pop_created_since_days":8,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":60.0,"_pop_comment_count":73.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":3,"_pop_score":38.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bloomberg/memray/master/README.md","_readme_localurl":"bloomberg~memray~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/bloomberg/memray/master/setup.py","https://raw.githubusercontent.com/bloomberg/memray/master/pyproject.toml"],"_requirements_localurls":["bloomberg~memray~setup.py","bloomberg~memray~pyproject.toml"]},{"index":22,"category":"nlp","githuburl":"https://github.com/facebookresearch/parlai","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/parlai","_reponame":"ParlAI","_stars":9672,"_forks":1974,"_watches":290,"_topics":[],"_language":"Python","_homepage":"https://parl.ai","_description":"ParlAI: A framework for training and evaluating AI models on a variety of openly available dialogue datasets.","_organization":"facebookresearch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2017-04-24T00:00:00.000Z","_age_weeks":295,"_stars_per_week":32.79,"_pop_contributor_count":204,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebookairesearch","facebookresearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.13,"_pop_updated_issues_count":177,"_pop_closed_issues_count":138,"_pop_created_since_days":69,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":177.0,"_pop_comment_count":276.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":1804,"_pop_score":60.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/parlai/master/README.md","_readme_localurl":"facebookresearch~parlai~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/parlai/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/parlai/master/setup.py","https://raw.githubusercontent.com/facebookresearch/parlai/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~parlai~requirements.txt","facebookresearch~parlai~setup.py","facebookresearch~parlai~pyproject.toml"]},{"index":38,"category":"jupyter","githuburl":"https://github.com/jupyter/notebook","featured":null,"links":null,"description":null,"_repopath":"jupyter/notebook","_reponame":"notebook","_stars":9629,"_forks":3983,"_watches":320,"_topics":["closember","jupyter","jupyter-notebook","notebook"],"_language":"Jupyter Notebook","_homepage":"https://jupyter-notebook.readthedocs.io/","_description":"notebook: Jupyter Interactive Notebook","_organization":"jupyter","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":401,"_stars_per_week":23.98,"_pop_contributor_count":622,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","google","quansight-labs","simularesearchlaboratory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.38,"_pop_updated_issues_count":222,"_pop_closed_issues_count":148,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":19,"_pop_recent_releases_estimated_tags":30,"_pop_recent_releases_adjusted_count":19,"_pop_issue_count":222.0,"_pop_comment_count":373.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":97078,"_pop_score":78.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/notebook/master/README.md","_readme_localurl":"jupyter~notebook~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/notebook/master/setup.py","https://raw.githubusercontent.com/jupyter/notebook/master/pyproject.toml"],"_requirements_localurls":["jupyter~notebook~setup.py","jupyter~notebook~pyproject.toml"]},{"index":71,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest","_reponame":"pytest","_stars":9601,"_forks":2216,"_watches":195,"_topics":["unit-testing","test","testing","python","hacktoberfest"],"_language":"Python","_homepage":"https://pytest.org","_description":"pytest: The pytest framework makes it easy to write small tests, yet scales to support complex functional testing","_organization":"pytest-dev","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2015-06-15T00:00:00.000Z","_age_weeks":392,"_stars_per_week":24.49,"_pop_contributor_count":842,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["esss","freelancer,upforhire","merlinux","redhatinsights"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.56,"_pop_updated_issues_count":302,"_pop_closed_issues_count":217,"_pop_created_since_days":91,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":302.0,"_pop_comment_count":631.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":42749,"_pop_score":76.55,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest/master/README.rst","_readme_localurl":"pytest-dev~pytest~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest/master/setup.py","https://raw.githubusercontent.com/pytest-dev/pytest/master/pyproject.toml"],"_requirements_localurls":["pytest-dev~pytest~setup.py","pytest-dev~pytest~pyproject.toml"]},{"index":653,"category":"profiling","githuburl":"https://github.com/benfred/py-spy","featured":null,"links":null,"description":null,"_repopath":"benfred/py-spy","_reponame":"py-spy","_stars":9464,"_forks":344,"_watches":107,"_topics":["profiler","python","performance-analysis","profiling"],"_language":"Rust","_homepage":"","_description":"py-spy: Sampling profiler for Python programs","_organization":"benfred","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2018-08-01T00:00:00.000Z","_age_weeks":228,"_stars_per_week":41.38,"_pop_contributor_count":31,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.58,"_pop_updated_issues_count":29,"_pop_closed_issues_count":10,"_pop_created_since_days":53,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":29.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":156,"_pop_score":41.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/benfred/py-spy/master/README.md","_readme_localurl":"benfred~py-spy~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/benfred/py-spy/master/pyproject.toml"],"_requirements_localurls":["benfred~py-spy~pyproject.toml"]},{"index":225,"category":"util","githuburl":"https://github.com/pyodide/pyodide","featured":null,"links":null,"description":null,"_repopath":"pyodide/pyodide","_reponame":"pyodide","_stars":9408,"_forks":616,"_watches":124,"_topics":["python","webassembly"],"_language":"Python","_homepage":"https://pyodide.org/en/stable/","_description":"Pyodide is a Python distribution for the browser and Node.js based on WebAssembly","_organization":"pyodide","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-02-23T00:00:00.000Z","_age_weeks":251,"_stars_per_week":37.42,"_pop_contributor_count":159,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoft","mitmathdepartment"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.48,"_pop_updated_issues_count":288,"_pop_closed_issues_count":200,"_pop_created_since_days":59,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":289.0,"_pop_comment_count":724.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":60,"_pop_score":59.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyodide/pyodide/master/README.md","_readme_localurl":"pyodide~pyodide~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyodide/pyodide/master/requirements.txt","https://raw.githubusercontent.com/pyodide/pyodide/master/pyproject.toml"],"_requirements_localurls":["pyodide~pyodide~requirements.txt","pyodide~pyodide~pyproject.toml"]},{"index":412,"category":"util","githuburl":"https://github.com/pre-commit/pre-commit","featured":null,"links":null,"description":null,"_repopath":"pre-commit/pre-commit","_reponame":"pre-commit","_stars":9355,"_forks":689,"_watches":82,"_topics":["git","pre-commit","python","linter","refactoring"],"_language":"Python","_homepage":"https://pre-commit.com","_description":"pre-commit: A framework for managing and maintaining multi-language pre-commit hooks.","_organization":"pre-commit","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2014-03-13T00:00:00.000Z","_age_weeks":457,"_stars_per_week":20.44,"_pop_contributor_count":146,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["twitter","yelp"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.08,"_pop_updated_issues_count":155,"_pop_closed_issues_count":139,"_pop_created_since_days":107,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":20,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":155.0,"_pop_comment_count":361.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":1348,"_pop_score":60.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pre-commit/pre-commit/master/README.md","_readme_localurl":"pre-commit~pre-commit~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pre-commit/pre-commit/master/setup.py"],"_requirements_localurls":["pre-commit~pre-commit~setup.py"]},{"index":315,"category":"gui","githuburl":"https://github.com/hoffstadt/dearpygui","featured":null,"links":null,"description":null,"_repopath":"hoffstadt/dearpygui","_reponame":"DearPyGui","_stars":9255,"_forks":496,"_watches":136,"_topics":["cpp","python","imgui","toolkit","native","tools","gui","graphics","macos","linux","ui","python-gui","cross-platform","windows","dearpygui"],"_language":"C++","_homepage":"https://dearpygui.readthedocs.io/en/latest/","_description":"DearPyGui: Dear PyGui: A fast and powerful Graphical User Interface Toolkit for Python with minimal dependencies","_organization":"hoffstadt","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2020-05-28T00:00:00.000Z","_age_weeks":133,"_stars_per_week":69.29,"_pop_contributor_count":51,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["benoitpremiumthreading","metecs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.42,"_pop_updated_issues_count":131,"_pop_closed_issues_count":57,"_pop_created_since_days":31,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":131.0,"_pop_comment_count":131.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":64,"_pop_score":48.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hoffstadt/dearpygui/master/README.md","_readme_localurl":"hoffstadt~dearpygui~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hoffstadt/dearpygui/master/setup.py"],"_requirements_localurls":["hoffstadt~dearpygui~setup.py"]},{"index":155,"category":"data","githuburl":"https://github.com/s0md3v/photon","featured":null,"links":null,"description":null,"_repopath":"s0md3v/photon","_reponame":"Photon","_stars":9231,"_forks":1359,"_watches":324,"_topics":["crawler","spider","python","osint","information-gathering"],"_language":"Python","_homepage":"","_description":"Photon: Incredibly fast crawler designed for OSINT.","_organization":"s0md3v","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-03-16T00:00:00.000Z","_created_at":"2018-03-30T00:00:00.000Z","_age_weeks":246,"_stars_per_week":37.46,"_pop_contributor_count":21,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["na"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":57,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":3.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":52,"_pop_score":29.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/s0md3v/photon/master/README.md","_readme_localurl":"s0md3v~photon~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/s0md3v/photon/master/requirements.txt"],"_requirements_localurls":["s0md3v~photon~requirements.txt"]},{"index":655,"category":"util","githuburl":"https://github.com/magicstack/uvloop","featured":null,"links":null,"description":null,"_repopath":"magicstack/uvloop","_reponame":"uvloop","_stars":9071,"_forks":525,"_watches":226,"_topics":["asyncio","async-await","async","high-performance","libuv","python","python-3","event-loop","networking","async-python"],"_language":"Cython","_homepage":"","_description":"uvloop: Ultra fast asyncio event loop.","_organization":"magicstack","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-14T00:00:00.000Z","_created_at":"2015-11-08T00:00:00.000Z","_age_weeks":371,"_stars_per_week":24.44,"_pop_contributor_count":55,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["edgedb"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":26,"_pop_closed_issues_count":6,"_pop_created_since_days":87,"_pop_updated_since_days":3,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":26.0,"_pop_comment_count":37.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":569,"_pop_score":42.85,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/magicstack/uvloop/master/README.rst","_readme_localurl":"magicstack~uvloop~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/magicstack/uvloop/master/setup.py"],"_requirements_localurls":["magicstack~uvloop~setup.py"]},{"index":238,"category":"data","githuburl":"https://github.com/tiangolo/sqlmodel","featured":1.0,"links":null,"description":null,"_repopath":"tiangolo/sqlmodel","_reponame":"sqlmodel","_stars":9061,"_forks":385,"_watches":118,"_topics":["python","sql","sqlalchemy","pydantic","fastapi","json","json-schema"],"_language":"Python","_homepage":"https://sqlmodel.tiangolo.com/","_description":"sqlmodel: SQL databases in Python, designed for simplicity, compatibility, and robustness.","_organization":"tiangolo","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2021-08-24T00:00:00.000Z","_age_weeks":68,"_stars_per_week":131.59,"_pop_contributor_count":54,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.98,"_pop_updated_issues_count":137,"_pop_closed_issues_count":67,"_pop_created_since_days":16,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":137.0,"_pop_comment_count":308.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":42,"_pop_score":40.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/sqlmodel/master/README.md","_readme_localurl":"tiangolo~sqlmodel~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tiangolo/sqlmodel/master/pyproject.toml"],"_requirements_localurls":["tiangolo~sqlmodel~pyproject.toml"]},{"index":142,"category":"nlp","githuburl":"https://github.com/ukplab/sentence-transformers","featured":null,"links":null,"description":null,"_repopath":"ukplab/sentence-transformers","_reponame":"sentence-transformers","_stars":9012,"_forks":1796,"_watches":116,"_topics":[],"_language":"Python","_homepage":"https://www.SBERT.net","_description":"sentence-transformers: Multilingual Sentence & Image Embeddings with BERT","_organization":"ukplab","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2019-07-24T00:00:00.000Z","_age_weeks":177,"_stars_per_week":50.71,"_pop_contributor_count":106,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","telekom"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.02,"_pop_updated_issues_count":141,"_pop_closed_issues_count":44,"_pop_created_since_days":41,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":141.0,"_pop_comment_count":158.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":118,"_pop_score":47.89,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ukplab/sentence-transformers/master/README.md","_readme_localurl":"ukplab~sentence-transformers~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ukplab/sentence-transformers/master/requirements.txt","https://raw.githubusercontent.com/ukplab/sentence-transformers/master/setup.py"],"_requirements_localurls":["ukplab~sentence-transformers~requirements.txt","ukplab~sentence-transformers~setup.py"]},{"index":398,"category":"web","githuburl":"https://github.com/falconry/falcon","featured":null,"links":null,"description":null,"_repopath":"falconry/falcon","_reponame":"falcon","_stars":8978,"_forks":898,"_watches":266,"_topics":["python","framework","rest","microservices","web","api","http","wsgi","asgi","api-rest","hacktoberfest-accepted","hacktoberfest2022","hacktoberfest"],"_language":"Python","_homepage":"https://falcon.readthedocs.io/en/stable/","_description":"falcon: The no-magic web data plane API and microservices framework for Python developers, with a focus on reliability, correctness, and performance at scale.","_organization":"falconry","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2012-12-06T00:00:00.000Z","_age_weeks":523,"_stars_per_week":17.15,"_pop_contributor_count":195,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["centurylink","liquidweb"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.27,"_pop_updated_issues_count":43,"_pop_closed_issues_count":26,"_pop_created_since_days":122,"_pop_updated_since_days":1,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":43.0,"_pop_comment_count":67.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":39,"_pop_score":50.91,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/falconry/falcon/master/README.rst","_readme_localurl":"falconry~falcon~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/falconry/falcon/master/setup.py","https://raw.githubusercontent.com/falconry/falcon/master/pyproject.toml"],"_requirements_localurls":["falconry~falcon~setup.py","falconry~falcon~pyproject.toml"]},{"index":157,"category":"util","githuburl":"https://github.com/pallets/jinja","featured":null,"links":null,"description":null,"_repopath":"pallets/jinja","_reponame":"jinja","_stars":8940,"_forks":1529,"_watches":252,"_topics":["python","template-engine","jinja","jinja2","templates","pallets"],"_language":"Python","_homepage":"https://jinja.palletsprojects.com","_description":"jinja: A very fast and expressive template engine.","_organization":"pallets","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-01T00:00:00.000Z","_created_at":"2010-10-17T00:00:00.000Z","_age_weeks":635,"_stars_per_week":14.08,"_pop_contributor_count":302,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cern/indico","getsentry","sentry"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.25,"_pop_updated_issues_count":52,"_pop_closed_issues_count":31,"_pop_created_since_days":148,"_pop_updated_since_days":2,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":52.0,"_pop_comment_count":48.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":16433,"_pop_score":60.78,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/jinja/master/README.rst","_readme_localurl":"pallets~jinja~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/jinja/master/setup.py"],"_requirements_localurls":["pallets~jinja~setup.py"]},{"index":371,"category":"viz","githuburl":"https://github.com/marceloprates/prettymaps","featured":null,"links":null,"description":null,"_repopath":"marceloprates/prettymaps","_reponame":"prettymaps","_stars":8935,"_forks":428,"_watches":80,"_topics":["matplotlib","jupyter-notebook","python","generative-art","cartography","maps","openstreetmap"],"_language":"Jupyter Notebook","_homepage":"","_description":"prettymaps: A small set of Python functions to draw pretty maps from OpenStreetMap data. Based on osmnx, matplotlib and shapely libraries.","_organization":"marceloprates","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-16T00:00:00.000Z","_created_at":"2021-03-05T00:00:00.000Z","_age_weeks":93,"_stars_per_week":95.63,"_pop_contributor_count":15,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["up42"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":11,"_pop_closed_issues_count":6,"_pop_created_since_days":22,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":11.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":14,"_pop_score":29.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/marceloprates/prettymaps/master/README.md","_readme_localurl":"marceloprates~prettymaps~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/marceloprates/prettymaps/master/requirements.txt","https://raw.githubusercontent.com/marceloprates/prettymaps/master/setup.py"],"_requirements_localurls":["marceloprates~prettymaps~requirements.txt","marceloprates~prettymaps~setup.py"]},{"index":517,"category":"typing","githuburl":"https://github.com/microsoft/pyright","featured":null,"links":null,"description":null,"_repopath":"microsoft/pyright","_reponame":"pyright","_stars":8923,"_forks":644,"_watches":79,"_topics":[],"_language":"Python","_homepage":"","_description":"pyright: Static type checker for Python","_organization":"microsoft","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-03-12T00:00:00.000Z","_age_weeks":196,"_stars_per_week":45.33,"_pop_contributor_count":83,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoft","microsoftcorp."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":24.56,"_pop_updated_issues_count":372,"_pop_closed_issues_count":356,"_pop_created_since_days":46,"_pop_updated_since_days":0,"_pop_recent_releases_count":87,"_pop_recent_releases_estimated_tags":97,"_pop_recent_releases_adjusted_count":87,"_pop_issue_count":370.0,"_pop_comment_count":924.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":1392,"_pop_score":64.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/pyright/master/README.md","_readme_localurl":"microsoft~pyright~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":244,"category":"util","githuburl":"https://github.com/aws/serverless-application-model","featured":null,"links":null,"description":null,"_repopath":"aws/serverless-application-model","_reponame":"serverless-application-model","_stars":8855,"_forks":2275,"_watches":307,"_topics":["serverless","aws","lambda","aws-sam","sam","sam-specification","serverless-applications","serverless-application-model"],"_language":"Python","_homepage":"https://aws.amazon.com/serverless/sam","_description":"serverless-application-model: The AWS Serverless Application Model (AWS SAM) transform is a AWS CloudFormation macro that transforms SAM templates into CloudFormation templates.","_organization":"aws","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2016-10-10T00:00:00.000Z","_age_weeks":323,"_stars_per_week":27.41,"_pop_contributor_count":255,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aws","leland"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.06,"_pop_updated_issues_count":467,"_pop_closed_issues_count":322,"_pop_created_since_days":75,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":467.0,"_pop_comment_count":343.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":372,"_pop_score":60.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aws/serverless-application-model/master/README.md","_readme_localurl":"aws~serverless-application-model~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/aws/serverless-application-model/master/setup.py","https://raw.githubusercontent.com/aws/serverless-application-model/master/pyproject.toml"],"_requirements_localurls":["aws~serverless-application-model~setup.py","aws~serverless-application-model~pyproject.toml"]},{"index":132,"category":"ml","githuburl":"https://github.com/epistasislab/tpot","featured":null,"links":null,"description":null,"_repopath":"epistasislab/tpot","_reponame":"tpot","_stars":8846,"_forks":1504,"_watches":291,"_topics":["machine-learning","python","data-science","automl","automation","scikit-learn","hyperparameter-optimization","model-selection","parameter-tuning","automated-machine-learning","random-forest","gradient-boosting","feature-engineering","aiml","alzheimer","alzheimers","nia","u01ag066833","ag066833","adsp"],"_language":"Python","_homepage":"http://epistasislab.github.io/tpot/","_description":"tpot: A Python Automated Machine Learning tool that optimizes machine learning pipelines using genetic programming.","_organization":"epistasislab","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-07-29T00:00:00.000Z","_created_at":"2015-11-03T00:00:00.000Z","_age_weeks":371,"_stars_per_week":23.79,"_pop_contributor_count":112,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["children'shospitalofphiladelphia","eindhovenuniversityoftechnology","usc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.35,"_pop_updated_issues_count":15,"_pop_closed_issues_count":4,"_pop_created_since_days":87,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":15.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":20,"_pop_score":41.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/epistasislab/tpot/master/README.md","_readme_localurl":"epistasislab~tpot~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/epistasislab/tpot/master/requirements.txt","https://raw.githubusercontent.com/epistasislab/tpot/master/setup.py"],"_requirements_localurls":["epistasislab~tpot~requirements.txt","epistasislab~tpot~setup.py"]},{"index":780,"category":"diffusion","githuburl":"https://github.com/huggingface/diffusers","featured":null,"links":null,"description":null,"_repopath":"huggingface/diffusers","_reponame":"diffusers","_stars":8780,"_forks":1520,"_watches":99,"_topics":["deep-learning","diffusion","image-generation","pytorch","score-based-generative-modeling","image2image","text2image","stable-diffusion","hacktoberfest"],"_language":"Python","_homepage":"https://huggingface.co/docs/diffusers","_description":"\ud83e\udd17 Diffusers: State-of-the-art diffusion models for image and audio generation in PyTorch","_organization":"huggingface","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2022-05-30T00:00:00.000Z","_age_weeks":29,"_stars_per_week":302.76,"_pop_contributor_count":159,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":26.25,"_pop_updated_issues_count":1315,"_pop_closed_issues_count":1033,"_pop_created_since_days":7,"_pop_updated_since_days":0,"_pop_recent_releases_count":23,"_pop_recent_releases_estimated_tags":49,"_pop_recent_releases_adjusted_count":23,"_pop_issue_count":1315.0,"_pop_comment_count":5140.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.9,"_pop_dependents_count":5139,"_pop_score":65.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/diffusers/master/README.md","_readme_localurl":"huggingface~diffusers~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/diffusers/master/setup.py","https://raw.githubusercontent.com/huggingface/diffusers/master/pyproject.toml"],"_requirements_localurls":["huggingface~diffusers~setup.py","huggingface~diffusers~pyproject.toml"]},{"index":5,"category":"web","githuburl":"https://github.com/benoitc/gunicorn","featured":null,"links":null,"description":null,"_repopath":"benoitc/gunicorn","_reponame":"gunicorn","_stars":8684,"_forks":1619,"_watches":234,"_topics":["http-server","http","python","wsgi-server","wsgi"],"_language":"Python","_homepage":"http://www.gunicorn.org","_description":"gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications.","_organization":"benoitc","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2009-11-30T00:00:00.000Z","_age_weeks":681,"_stars_per_week":12.75,"_pop_contributor_count":380,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["confluentinc","enkimultimedia","nytimes"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.5,"_pop_updated_issues_count":167,"_pop_closed_issues_count":90,"_pop_created_since_days":159,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":167.0,"_pop_comment_count":184.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":2114,"_pop_score":62.92,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/benoitc/gunicorn/master/README.rst","_readme_localurl":"benoitc~gunicorn~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/benoitc/gunicorn/master/setup.py"],"_requirements_localurls":["benoitc~gunicorn~setup.py"]},{"index":134,"category":"ml-dl","githuburl":"https://github.com/keras-team/autokeras","featured":null,"links":null,"description":null,"_repopath":"keras-team/autokeras","_reponame":"autokeras","_stars":8681,"_forks":1385,"_watches":306,"_topics":["automl","neural-architecture-search","automated-machine-learning","python","deep-learning","machine-learning","autodl","tensorflow","keras"],"_language":"Python","_homepage":"http://autokeras.com/","_description":"autokeras: AutoML library for deep learning","_organization":"keras-team","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-11-19T00:00:00.000Z","_age_weeks":265,"_stars_per_week":32.74,"_pop_contributor_count":139,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["keras-teamtensorflowgooglers","preligens"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.6,"_pop_updated_issues_count":47,"_pop_closed_issues_count":28,"_pop_created_since_days":62,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":47.0,"_pop_comment_count":42.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":3,"_pop_score":43.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/keras-team/autokeras/master/README.md","_readme_localurl":"keras-team~autokeras~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/keras-team/autokeras/master/setup.py"],"_requirements_localurls":["keras-team~autokeras~setup.py"]},{"index":92,"category":"ml-ops","githuburl":"https://github.com/uber/ludwig","featured":null,"links":null,"description":null,"_repopath":"uber/ludwig","_reponame":"ludwig","_stars":8670,"_forks":1024,"_watches":181,"_topics":["deep-learning","deeplearning","deep","learning","machine-learning","machinelearning","machine","natural-language-processing","natural-language","computer-vision","data-centric","data-science","python","pytorch","neural-network","ml","datascience"],"_language":"Python","_homepage":"http://ludwig.ai","_description":"ludwig: Data-centric declarative deep learning framework","_organization":"uber","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-12-27T00:00:00.000Z","_age_weeks":207,"_stars_per_week":41.77,"_pop_contributor_count":130,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["predibase","uber"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.54,"_pop_updated_issues_count":383,"_pop_closed_issues_count":334,"_pop_created_since_days":48,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":383.0,"_pop_comment_count":479.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":54,"_pop_score":57.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/uber/ludwig/master/README.md","_readme_localurl":"uber~ludwig~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/ludwig/master/requirements.txt","https://raw.githubusercontent.com/uber/ludwig/master/setup.py","https://raw.githubusercontent.com/uber/ludwig/master/pyproject.toml"],"_requirements_localurls":["uber~ludwig~requirements.txt","uber~ludwig~setup.py","uber~ludwig~pyproject.toml"]},{"index":759,"category":"diffusion","githuburl":"https://github.com/invoke-ai/invokeai","featured":null,"links":null,"description":null,"_repopath":"invoke-ai/invokeai","_reponame":"InvokeAI","_stars":8507,"_forks":960,"_watches":102,"_topics":["ai-art","artificial-intelligence","generative-art","image-generation","img2img","inpainting","latent-diffusion","linux","macos","outpainting","txt2img","windows","stable-diffusion"],"_language":"Jupyter Notebook","_homepage":"https://invoke-ai.github.io/InvokeAI/","_description":"InvokeAI: This version of Stable Diffusion features a slick WebGUI, an interactive command-line script that combines text2img and img2img functionality in a \"dream bot\" style interface, and multiple features and other enhancements. For more info, see the website link below.","_organization":"invoke-ai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2022-08-17T00:00:00.000Z","_age_weeks":17,"_stars_per_week":480.23,"_pop_contributor_count":146,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ares-consulting","ontarioinstituteforcancerresearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":34.5,"_pop_updated_issues_count":1312,"_pop_closed_issues_count":1023,"_pop_created_since_days":4,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":195,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":1312.0,"_pop_comment_count":5106.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.9,"_pop_dependents_count":230,"_pop_score":60.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/invoke-ai/invokeai/master/README.md","_readme_localurl":"invoke-ai~invokeai~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/invoke-ai/invokeai/master/setup.py"],"_requirements_localurls":["invoke-ai~invokeai~setup.py"]},{"index":523,"category":"ml-dl","githuburl":"https://github.com/lucidrains/dalle2-pytorch","featured":null,"links":null,"description":null,"_repopath":"lucidrains/dalle2-pytorch","_reponame":"DALLE2-pytorch","_stars":8496,"_forks":692,"_watches":113,"_topics":["artificial-intelligence","deep-learning","text-to-image"],"_language":"Python","_homepage":"","_description":"DALLE2-pytorch: Implementation of DALL-E 2, OpenAI's updated text-to-image synthesis neural network, in Pytorch","_organization":"lucidrains","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2022-04-07T00:00:00.000Z","_age_weeks":36,"_stars_per_week":232.31,"_pop_contributor_count":16,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.19,"_pop_updated_issues_count":32,"_pop_closed_issues_count":18,"_pop_created_since_days":8,"_pop_updated_since_days":0,"_pop_recent_releases_count":332,"_pop_recent_releases_estimated_tags":514,"_pop_recent_releases_adjusted_count":332,"_pop_issue_count":32.0,"_pop_comment_count":52.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":50,"_pop_score":38.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lucidrains/dalle2-pytorch/master/README.md","_readme_localurl":"lucidrains~dalle2-pytorch~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lucidrains/dalle2-pytorch/master/setup.py"],"_requirements_localurls":["lucidrains~dalle2-pytorch~setup.py"]},{"index":151,"category":"nlp","githuburl":"https://github.com/sloria/textblob","featured":null,"links":null,"description":null,"_repopath":"sloria/textblob","_reponame":"TextBlob","_stars":8388,"_forks":1100,"_watches":270,"_topics":["nlp","nltk","pattern","python","python-3","python-2","natural-language-processing"],"_language":"Python","_homepage":"https://textblob.readthedocs.io/","_description":"TextBlob: Simple, Pythonic, text processing--Sentiment analysis, part-of-speech tagging, noun phrase extraction, translation, and more.","_organization":"sloria","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-10-22T00:00:00.000Z","_created_at":"2013-06-30T00:00:00.000Z","_age_weeks":494,"_stars_per_week":16.97,"_pop_contributor_count":36,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","urbaninfrastructure"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":115,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":38,"_pop_score":31.9,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sloria/textblob/master/README.rst","_readme_localurl":"sloria~textblob~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sloria/textblob/master/setup.py"],"_requirements_localurls":["sloria~textblob~setup.py"]},{"index":100,"category":"nlp","githuburl":"https://github.com/clips/pattern","featured":null,"links":null,"description":null,"_repopath":"clips/pattern","_reponame":"pattern","_stars":8371,"_forks":1594,"_watches":548,"_topics":["python","machine-learning","natural-language-processing","web-mining","wordnet","sentiment-analysis","network-analysis"],"_language":"Python","_homepage":"https://github.com/clips/pattern/wiki","_description":"pattern: Web mining module for Python, with tools for scraping, natural language processing, machine learning, network analysis and visualization.","_organization":"clips","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-04-25T00:00:00.000Z","_created_at":"2011-05-03T00:00:00.000Z","_age_weeks":606,"_stars_per_week":13.79,"_pop_contributor_count":30,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["twitter-research"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":6,"_pop_closed_issues_count":2,"_pop_created_since_days":142,"_pop_updated_since_days":32,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":6.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":293,"_pop_score":31.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/clips/pattern/master/README.md","_readme_localurl":"clips~pattern~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/clips/pattern/master/setup.py"],"_requirements_localurls":["clips~pattern~setup.py"]},{"index":126,"category":"ml-dl","githuburl":"https://github.com/microsoft/deepspeed","featured":null,"links":null,"description":null,"_repopath":"microsoft/deepspeed","_reponame":"DeepSpeed","_stars":8355,"_forks":985,"_watches":144,"_topics":["deep-learning","pytorch","gpu","machine-learning","billion-parameters","data-parallelism","model-parallelism","inference","pipeline-parallelism","compression","mixture-of-experts","trillion-parameters","zero"],"_language":"Python","_homepage":"https://www.deepspeed.ai/","_description":"DeepSpeed is a deep learning optimization library that makes distributed training and inference easy, efficient, and effective.","_organization":"microsoft","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2020-01-23T00:00:00.000Z","_age_weeks":151,"_stars_per_week":55.12,"_pop_contributor_count":148,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoft","stasosphereonline"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.46,"_pop_updated_issues_count":386,"_pop_closed_issues_count":270,"_pop_created_since_days":35,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":386.0,"_pop_comment_count":708.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":150,"_pop_score":58.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/deepspeed/master/README.md","_readme_localurl":"microsoft~deepspeed~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/deepspeed/master/setup.py"],"_requirements_localurls":["microsoft~deepspeed~setup.py"]},{"index":282,"category":"util","githuburl":"https://github.com/arrow-py/arrow","featured":null,"links":null,"description":null,"_repopath":"arrow-py/arrow","_reponame":"arrow","_stars":8167,"_forks":636,"_watches":134,"_topics":["python","arrow","datetime","date","time","timestamp","timezones","hacktoberfest"],"_language":"Python","_homepage":"https://arrow.readthedocs.io","_description":"arrow: \ud83c\udff9 Better dates & times for Python","_organization":"arrow-py","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-15T00:00:00.000Z","_created_at":"2012-11-18T00:00:00.000Z","_age_weeks":526,"_stars_per_week":15.52,"_pop_contributor_count":268,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.73,"_pop_updated_issues_count":28,"_pop_closed_issues_count":11,"_pop_created_since_days":123,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":28.0,"_pop_comment_count":46.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":943,"_pop_score":51.47,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/arrow-py/arrow/master/README.rst","_readme_localurl":"arrow-py~arrow~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/arrow-py/arrow/master/setup.py"],"_requirements_localurls":["arrow-py~arrow~setup.py"]},{"index":125,"category":"perf","githuburl":"https://github.com/modin-project/modin","featured":null,"links":null,"description":null,"_repopath":"modin-project/modin","_reponame":"modin","_stars":8151,"_forks":584,"_watches":110,"_topics":["dataframe","pandas","distributed","datascience","modin","sql","python","analytics","data-science","hacktoberfest"],"_language":"Python","_homepage":"http://modin.readthedocs.io","_description":"Modin: Scale your Pandas workflows by changing a single line of code","_organization":"modin-project","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-06-21T00:00:00.000Z","_age_weeks":234,"_stars_per_week":34.75,"_pop_contributor_count":109,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ponder","ponder.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.44,"_pop_updated_issues_count":815,"_pop_closed_issues_count":505,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":815.0,"_pop_comment_count":1026.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":22,"_pop_score":55.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/modin-project/modin/master/README.md","_readme_localurl":"modin-project~modin~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/modin-project/modin/master/setup.py"],"_requirements_localurls":["modin-project~modin~setup.py"]},{"index":53,"category":"perf","githuburl":"https://github.com/numba/numba","featured":null,"links":null,"description":null,"_repopath":"numba/numba","_reponame":"numba","_stars":8074,"_forks":983,"_watches":205,"_topics":["python","numpy","llvm","compiler","cuda","parallel"],"_language":"Python","_homepage":"http://numba.pydata.org/","_description":"numba: NumPy aware dynamic Python compiler using LLVM","_organization":"numba","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2012-03-08T00:00:00.000Z","_age_weeks":562,"_stars_per_week":14.35,"_pop_contributor_count":327,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mlabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":29.77,"_pop_updated_issues_count":388,"_pop_closed_issues_count":197,"_pop_created_since_days":131,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":388.0,"_pop_comment_count":1032.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":4467,"_pop_score":69.11,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/numba/numba/master/README.rst","_readme_localurl":"numba~numba~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/numba/numba/master/requirements.txt","https://raw.githubusercontent.com/numba/numba/master/setup.py"],"_requirements_localurls":["numba~numba~requirements.txt","numba~numba~setup.py"]},{"index":294,"category":"util","githuburl":"https://github.com/paramiko/paramiko","featured":null,"links":null,"description":null,"_repopath":"paramiko/paramiko","_reponame":"paramiko","_stars":8042,"_forks":1887,"_watches":320,"_topics":[],"_language":"Python","_homepage":"http://paramiko.org","_description":"paramiko: The leading native Python SSHv2 protocol library.","_organization":"paramiko","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2009-02-02T00:00:00.000Z","_age_weeks":724,"_stars_per_week":11.11,"_pop_contributor_count":177,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["codecobblers,inc","healthbyro","jumptrading"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.71,"_pop_updated_issues_count":93,"_pop_closed_issues_count":36,"_pop_created_since_days":169,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":93.0,"_pop_comment_count":204.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":2010,"_pop_score":61.79,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/paramiko/paramiko/master/README.rst","_readme_localurl":"paramiko~paramiko~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/paramiko/paramiko/master/setup.py"],"_requirements_localurls":["paramiko~paramiko~setup.py"]},{"index":84,"category":"ml","githuburl":"https://github.com/statsmodels/statsmodels","featured":null,"links":null,"description":null,"_repopath":"statsmodels/statsmodels","_reponame":"statsmodels","_stars":8013,"_forks":2627,"_watches":272,"_topics":["python","statistics","econometrics","data-analysis","generalized-linear-models","timeseries-analysis","regression-models","count-model","data-science","forecasting","hypothesis-testing","prediction","robust-estimation"],"_language":"Python","_homepage":"http://www.statsmodels.org/devel/","_description":"Statsmodels: statistical modeling and econometrics in Python","_organization":"statsmodels","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2011-06-12T00:00:00.000Z","_age_weeks":601,"_stars_per_week":13.33,"_pop_contributor_count":402,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["hcahealthcare"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.0,"_pop_updated_issues_count":450,"_pop_closed_issues_count":237,"_pop_created_since_days":140,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":450.0,"_pop_comment_count":623.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":1144,"_pop_score":62.27,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/statsmodels/statsmodels/master/README.rst","_readme_localurl":"statsmodels~statsmodels~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/statsmodels/statsmodels/master/requirements.txt","https://raw.githubusercontent.com/statsmodels/statsmodels/master/setup.py","https://raw.githubusercontent.com/statsmodels/statsmodels/master/pyproject.toml"],"_requirements_localurls":["statsmodels~statsmodels~requirements.txt","statsmodels~statsmodels~setup.py","statsmodels~statsmodels~pyproject.toml"]},{"index":128,"category":"viz","githuburl":"https://github.com/altair-viz/altair","featured":null,"links":null,"description":null,"_repopath":"altair-viz/altair","_reponame":"altair","_stars":7936,"_forks":710,"_watches":150,"_topics":[],"_language":"Python","_homepage":"https://altair-viz.github.io/","_description":"altair: Declarative statistical visualization library for Python","_organization":"altair-viz","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2015-09-19T00:00:00.000Z","_age_weeks":378,"_stars_per_week":20.98,"_pop_contributor_count":147,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","google","losangelestimesandstanford'sbiglocalnews"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.27,"_pop_updated_issues_count":112,"_pop_closed_issues_count":69,"_pop_created_since_days":88,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":112.0,"_pop_comment_count":374.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.3,"_pop_dependents_count":95,"_pop_score":55.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/altair-viz/altair/master/README.md","_readme_localurl":"altair-viz~altair~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/altair-viz/altair/master/requirements.txt","https://raw.githubusercontent.com/altair-viz/altair/master/setup.py","https://raw.githubusercontent.com/altair-viz/altair/master/pyproject.toml"],"_requirements_localurls":["altair-viz~altair~requirements.txt","altair-viz~altair~setup.py","altair-viz~altair~pyproject.toml"]},{"index":116,"category":"ml-ops","githuburl":"https://github.com/kedro-org/kedro","featured":null,"links":"From: https://github.com/quantumblacklabs/kedro","description":null,"_repopath":"kedro-org/kedro","_reponame":"kedro","_stars":7893,"_forks":741,"_watches":102,"_topics":["pipeline","kedro","hacktoberfest","mlops","experiment-tracking","python","machine-learning"],"_language":"Python","_homepage":"https://kedro.org","_description":"kedro: A Python framework for creating reproducible, maintainable and modular data science code.","_organization":"kedro-org","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2019-04-18T00:00:00.000Z","_age_weeks":191,"_stars_per_week":41.2,"_pop_contributor_count":176,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quantumblack","softwareengineeratquantumblacklabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.88,"_pop_updated_issues_count":366,"_pop_closed_issues_count":212,"_pop_created_since_days":45,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":366.0,"_pop_comment_count":529.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":9,"_pop_score":51.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kedro-org/kedro/master/README.md","_readme_localurl":"kedro-org~kedro~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/kedro-org/kedro/master/setup.py","https://raw.githubusercontent.com/kedro-org/kedro/master/pyproject.toml"],"_requirements_localurls":["kedro-org~kedro~setup.py","kedro-org~kedro~pyproject.toml"]},{"index":706,"category":"sim","githuburl":"https://github.com/isl-org/open3d","featured":null,"links":null,"description":null,"_repopath":"isl-org/open3d","_reponame":"Open3D","_stars":7821,"_forks":1838,"_watches":170,"_topics":["mesh-processing","computer-graphics","opengl","cpp","python","reconstruction","odometry","visualization","registration","machine-learning","3d","pointcloud","rendering","gui","3d-perception","gpu","arm","cuda","pytorch","tensorflow"],"_language":"C++","_homepage":"http://www.open3d.org","_description":"Open3D: A Modern Library for 3D Data Processing","_organization":"isl-org","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2016-12-02T00:00:00.000Z","_age_weeks":315,"_stars_per_week":24.79,"_pop_contributor_count":175,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["formatechnologies","hku-cs","postech"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.5,"_pop_updated_issues_count":345,"_pop_closed_issues_count":128,"_pop_created_since_days":74,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":345.0,"_pop_comment_count":419.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":11,"_pop_score":52.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/isl-org/open3d/master/README.md","_readme_localurl":"isl-org~open3d~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":7,"category":"util","githuburl":"https://github.com/boto/boto3","featured":null,"links":null,"description":null,"_repopath":"boto/boto3","_reponame":"boto3","_stars":7770,"_forks":1691,"_watches":239,"_topics":["python","aws","cloud","cloud-management","aws-sdk"],"_language":"Python","_homepage":"https://aws.amazon.com/sdk-for-python/","_description":"boto3: AWS SDK for Python","_organization":"boto","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2014-10-03T00:00:00.000Z","_age_weeks":428,"_stars_per_week":18.14,"_pop_contributor_count":139,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","istreamplanet"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.92,"_pop_updated_issues_count":326,"_pop_closed_issues_count":182,"_pop_created_since_days":100,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":147,"_pop_recent_releases_adjusted_count":147,"_pop_issue_count":326.0,"_pop_comment_count":432.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":28646,"_pop_score":69.85,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/boto/boto3/master/README.rst","_readme_localurl":"boto~boto3~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/boto/boto3/master/requirements.txt","https://raw.githubusercontent.com/boto/boto3/master/setup.py","https://raw.githubusercontent.com/boto/boto3/master/pyproject.toml"],"_requirements_localurls":["boto~boto3~requirements.txt","boto~boto3~setup.py","boto~boto3~pyproject.toml"]},{"index":29,"category":"ml-ops","githuburl":"https://github.com/great-expectations/great_expectations","featured":null,"links":null,"description":null,"_repopath":"great-expectations/great_expectations","_reponame":"great_expectations","_stars":7751,"_forks":1156,"_watches":69,"_topics":["pipeline-tests","dataquality","datacleaning","datacleaner","data-science","data-profiling","pipeline","pipeline-testing","cleandata","dataunittest","data-unit-tests","eda","exploratory-data-analysis","exploratory-analysis","exploratorydataanalysis","data-quality","data-engineering","pipeline-debt","data-profilers","mlops"],"_language":"Python","_homepage":"https://docs.greatexpectations.io/","_description":"great_expectations: Always know what to expect from your data.","_organization":"great-expectations","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2017-09-11T00:00:00.000Z","_age_weeks":275,"_stars_per_week":28.19,"_pop_contributor_count":342,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["superconductive"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":35.42,"_pop_updated_issues_count":638,"_pop_closed_issues_count":516,"_pop_created_since_days":64,"_pop_updated_since_days":0,"_pop_recent_releases_count":58,"_pop_recent_releases_estimated_tags":41,"_pop_recent_releases_adjusted_count":58,"_pop_issue_count":638.0,"_pop_comment_count":1340.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":158,"_pop_score":64.44,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/great-expectations/great_expectations/master/README.md","_readme_localurl":"great-expectations~great_expectations~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/great-expectations/great_expectations/master/requirements.txt","https://raw.githubusercontent.com/great-expectations/great_expectations/master/setup.py","https://raw.githubusercontent.com/great-expectations/great_expectations/master/pyproject.toml"],"_requirements_localurls":["great-expectations~great_expectations~requirements.txt","great-expectations~great_expectations~setup.py","great-expectations~great_expectations~pyproject.toml"]},{"index":422,"category":"ml-dl","githuburl":"https://github.com/pyro-ppl/pyro","featured":null,"links":null,"description":null,"_repopath":"pyro-ppl/pyro","_reponame":"pyro","_stars":7715,"_forks":940,"_watches":203,"_topics":["python","pytorch","machine-learning","bayesian","probabilistic-programming","bayesian-inference","variational-inference","probabilistic-modeling","deep-learning"],"_language":"Python","_homepage":"http://pyro.ai","_description":"pyro: Deep universal probabilistic programming with Python and PyTorch","_organization":"pyro-ppl","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2017-06-16T00:00:00.000Z","_age_weeks":287,"_stars_per_week":26.84,"_pop_contributor_count":130,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","generatebiomedicines","meta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.35,"_pop_updated_issues_count":37,"_pop_closed_issues_count":24,"_pop_created_since_days":67,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":37.0,"_pop_comment_count":44.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":106,"_pop_score":51.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyro-ppl/pyro/master/README.md","_readme_localurl":"pyro-ppl~pyro~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyro-ppl/pyro/master/setup.py"],"_requirements_localurls":["pyro-ppl~pyro~setup.py"]},{"index":394,"category":"web","githuburl":"https://github.com/encode/starlette","featured":null,"links":null,"description":null,"_repopath":"encode/starlette","_reponame":"starlette","_stars":7692,"_forks":693,"_watches":112,"_topics":["python","async","websockets","graphql","http"],"_language":"Python","_homepage":"https://www.starlette.io/","_description":"starlette: The little ASGI framework that shines. \ud83c\udf1f","_organization":"encode","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2018-06-25T00:00:00.000Z","_age_weeks":234,"_stars_per_week":32.87,"_pop_contributor_count":217,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["encode","encodeoss"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.56,"_pop_updated_issues_count":129,"_pop_closed_issues_count":96,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":27,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":129.0,"_pop_comment_count":273.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":1476,"_pop_score":62.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/encode/starlette/master/README.md","_readme_localurl":"encode~starlette~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/encode/starlette/master/requirements.txt","https://raw.githubusercontent.com/encode/starlette/master/setup.py","https://raw.githubusercontent.com/encode/starlette/master/pyproject.toml"],"_requirements_localurls":["encode~starlette~requirements.txt","encode~starlette~setup.py","encode~starlette~pyproject.toml"]},{"index":367,"category":"ml","githuburl":"https://github.com/megvii-basedetection/yolox","featured":null,"links":null,"description":null,"_repopath":"megvii-basedetection/yolox","_reponame":"YOLOX","_stars":7687,"_forks":1837,"_watches":72,"_topics":["yolox","yolov3","onnx","tensorrt","ncnn","openvino","pytorch","megengine","object-detection","yolo","deep-learning"],"_language":"Python","_homepage":"","_description":"YOLOX is a high-performance anchor-free YOLO, exceeding yolov3~v5 with MegEngine, ONNX, TensorRT, ncnn, and OpenVINO supported. Documentation: https://yolox.readthedocs.io/","_organization":"megvii-basedetection","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2021-07-17T00:00:00.000Z","_age_weeks":74,"_stars_per_week":103.48,"_pop_contributor_count":67,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["markany","megvii-basedetection","megviibasedetection","wandb"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.92,"_pop_updated_issues_count":122,"_pop_closed_issues_count":50,"_pop_created_since_days":17,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":122.0,"_pop_comment_count":147.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":10,"_pop_score":43.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/megvii-basedetection/yolox/master/README.md","_readme_localurl":"megvii-basedetection~yolox~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/megvii-basedetection/yolox/master/requirements.txt","https://raw.githubusercontent.com/megvii-basedetection/yolox/master/setup.py"],"_requirements_localurls":["megvii-basedetection~yolox~requirements.txt","megvii-basedetection~yolox~setup.py"]},{"index":495,"category":"data","githuburl":"https://github.com/duckdb/duckdb","featured":1.0,"links":null,"description":null,"_repopath":"duckdb/duckdb","_reponame":"duckdb","_stars":7647,"_forks":730,"_watches":115,"_topics":["sql","database","olap","analytics","embedded-database"],"_language":"C++","_homepage":"http://www.duckdb.org","_description":"DuckDB is an in-process SQL OLAP Database Management System","_organization":"duckdb","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-06-26T00:00:00.000Z","_age_weeks":233,"_stars_per_week":32.7,"_pop_contributor_count":215,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cwi","duckdblabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":131.92,"_pop_updated_issues_count":1149,"_pop_closed_issues_count":956,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":1150.0,"_pop_comment_count":1990.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":349,"_pop_score":66.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/duckdb/duckdb/master/README.md","_readme_localurl":"duckdb~duckdb~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":815,"category":"ml-dl","githuburl":"https://github.com/danielgatis/rembg","featured":null,"links":null,"description":null,"_repopath":"danielgatis/rembg","_reponame":"rembg","_stars":7640,"_forks":969,"_watches":99,"_topics":["image-processing","background-removal","python"],"_language":"Python","_homepage":"","_description":"Rembg is a tool to remove images background.","_organization":"danielgatis","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2020-08-10T00:00:00.000Z","_age_weeks":123,"_stars_per_week":62.11,"_pop_contributor_count":32,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["christianclauss"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.35,"_pop_updated_issues_count":73,"_pop_closed_issues_count":51,"_pop_created_since_days":29,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":73.0,"_pop_comment_count":149.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":18,"_pop_score":44.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/danielgatis/rembg/master/README.md","_readme_localurl":"danielgatis~rembg~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/danielgatis/rembg/master/requirements.txt","https://raw.githubusercontent.com/danielgatis/rembg/master/setup.py","https://raw.githubusercontent.com/danielgatis/rembg/master/pyproject.toml"],"_requirements_localurls":["danielgatis~rembg~requirements.txt","danielgatis~rembg~setup.py","danielgatis~rembg~pyproject.toml"]},{"index":615,"category":"testing","githuburl":"https://github.com/robotframework/robotframework","featured":null,"links":null,"description":null,"_repopath":"robotframework/robotframework","_reponame":"robotframework","_stars":7635,"_forks":2052,"_watches":483,"_topics":["robotframework","testing","automation","testautomation","attd","bdd","rpa","python"],"_language":"Python","_homepage":"http://robotframework.org","_description":"robotframework: Generic automation framework for acceptance testing and RPA","_organization":"robotframework","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2014-06-27T00:00:00.000Z","_age_weeks":442,"_stars_per_week":17.26,"_pop_contributor_count":172,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["eligaoy","reaktor"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.92,"_pop_updated_issues_count":157,"_pop_closed_issues_count":94,"_pop_created_since_days":103,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":157.0,"_pop_comment_count":321.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":1572,"_pop_score":64.57,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/robotframework/robotframework/master/README.rst","_readme_localurl":"robotframework~robotframework~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/robotframework/robotframework/master/setup.py"],"_requirements_localurls":["robotframework~robotframework~setup.py"]},{"index":95,"category":"perf","githuburl":"https://github.com/vaexio/vaex","featured":null,"links":null,"description":null,"_repopath":"vaexio/vaex","_reponame":"vaex","_stars":7633,"_forks":581,"_watches":144,"_topics":["dataframe","python","bigdata","tabular-data","visualization","memory-mapped-file","hdf5","machine-learning","machinelearning","data-science","pyarrow"],"_language":"Python","_homepage":"https://vaex.io","_description":"vaex: Out-of-Core hybrid Apache Arrow/NumPy DataFrame for Python, ML, visualization and exploration of big tabular data at a billion rows per second \ud83d\ude80","_organization":"vaexio","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-08T00:00:00.000Z","_created_at":"2014-09-27T00:00:00.000Z","_age_weeks":429,"_stars_per_week":17.78,"_pop_contributor_count":72,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["maartenbreddels","rungalileo","xdss"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.52,"_pop_updated_issues_count":131,"_pop_closed_issues_count":68,"_pop_created_since_days":100,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":44,"_pop_recent_releases_adjusted_count":44,"_pop_issue_count":131.0,"_pop_comment_count":263.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":29,"_pop_score":55.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vaexio/vaex/master/README.md","_readme_localurl":"vaexio~vaex~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/vaexio/vaex/master/setup.py"],"_requirements_localurls":["vaexio~vaex~setup.py"]},{"index":10,"category":"util","githuburl":"https://github.com/cython/cython","featured":null,"links":null,"description":null,"_repopath":"cython/cython","_reponame":"cython","_stars":7517,"_forks":1345,"_watches":230,"_topics":["python","cython","cpython","cpython-extensions","c","cpp","performance","big-data"],"_language":"Python","_homepage":"https://cython.org","_description":"cython: The most widely used Python to C compiler","_organization":"cython","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2010-11-21T00:00:00.000Z","_age_weeks":630,"_stars_per_week":11.93,"_pop_contributor_count":489,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ecrcatkaust","mlabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.35,"_pop_updated_issues_count":222,"_pop_closed_issues_count":136,"_pop_created_since_days":147,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":222.0,"_pop_comment_count":496.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":4115,"_pop_score":69.16,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/cython/cython/master/README.rst","_readme_localurl":"cython~cython~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/cython/cython/master/setup.py"],"_requirements_localurls":["cython~cython~setup.py"]},{"index":440,"category":"ml-dl","githuburl":"https://github.com/kornia/kornia","featured":null,"links":null,"description":null,"_repopath":"kornia/kornia","_reponame":"kornia","_stars":7514,"_forks":753,"_watches":118,"_topics":["computer-vision","image-processing","machine-learning","pytorch","deep-learning","neural-network","python","artificial-intelligence"],"_language":"Python","_homepage":"https://kornia.github.io/kornia/","_description":"kornia: Open Source Differentiable Computer Vision Library","_organization":"kornia","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-08-22T00:00:00.000Z","_age_weeks":225,"_stars_per_week":33.29,"_pop_contributor_count":195,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["computervisioncenter","czechtechnicaluniversityinprague","kaust","kornia.org"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.37,"_pop_updated_issues_count":236,"_pop_closed_issues_count":174,"_pop_created_since_days":53,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":236.0,"_pop_comment_count":411.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":103,"_pop_score":59.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kornia/kornia/master/README.md","_readme_localurl":"kornia~kornia~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/kornia/kornia/master/setup.py","https://raw.githubusercontent.com/kornia/kornia/master/pyproject.toml"],"_requirements_localurls":["kornia~kornia~setup.py","kornia~kornia~pyproject.toml"]},{"index":322,"category":"web","githuburl":"https://github.com/graphql-python/graphene","featured":null,"links":null,"description":null,"_repopath":"graphql-python/graphene","_reponame":"graphene","_stars":7496,"_forks":804,"_watches":146,"_topics":["graphql","python","relay","framework","graphene"],"_language":"Python","_homepage":"http://graphene-python.org/","_description":"graphene: GraphQL framework for Python","_organization":"graphql-python","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2015-09-24T00:00:00.000Z","_age_weeks":377,"_stars_per_week":19.85,"_pop_contributor_count":194,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["wasmerio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.79,"_pop_updated_issues_count":49,"_pop_closed_issues_count":34,"_pop_created_since_days":88,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":49.0,"_pop_comment_count":110.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":1177,"_pop_score":55.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/graphql-python/graphene/master/README.md","_readme_localurl":"graphql-python~graphene~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/graphql-python/graphene/master/setup.py"],"_requirements_localurls":["graphql-python~graphene~setup.py"]},{"index":470,"category":"nlp","githuburl":"https://github.com/microsoft/unilm","featured":null,"links":null,"description":null,"_repopath":"microsoft/unilm","_reponame":"unilm","_stars":7463,"_forks":1365,"_watches":178,"_topics":["nlp","language-understanding","language-generation","pre-trained-model","small-pre-trained-model","unilm","minilm","layoutlm","infoxlm","multimodal-pre-trained-model","layoutxlm","beit","document-ai","trocr","wavlm","beit-3","foundation-models","xlm-e","deepnet","document-foundation-model"],"_language":"Python","_homepage":"https://aka.ms/nlpagi","_description":"unilm: Large-scale Self-supervised Pre-training Across Tasks, Languages, and Modalities","_organization":"microsoft","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2019-07-23T00:00:00.000Z","_age_weeks":177,"_stars_per_week":41.96,"_pop_contributor_count":50,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoftresearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.02,"_pop_updated_issues_count":136,"_pop_closed_issues_count":79,"_pop_created_since_days":41,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":136.0,"_pop_comment_count":207.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":32,"_pop_score":42.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/unilm/master/README.md","_readme_localurl":"microsoft~unilm~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":547,"category":"ml","githuburl":"https://github.com/optuna/optuna","featured":null,"links":null,"description":null,"_repopath":"optuna/optuna","_reponame":"optuna","_stars":7310,"_forks":784,"_watches":121,"_topics":["python","machine-learning","parallel","distributed","hyperparameter-optimization","hacktoberfest"],"_language":"Python","_homepage":"https://optuna.org","_description":"optuna: A hyperparameter optimization framework","_organization":"optuna","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-02-21T00:00:00.000Z","_age_weeks":251,"_stars_per_week":29.04,"_pop_contributor_count":220,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["preferrednetworks"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":46.4,"_pop_updated_issues_count":323,"_pop_closed_issues_count":226,"_pop_created_since_days":59,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":323.0,"_pop_comment_count":983.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":1036,"_pop_score":65.44,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/optuna/optuna/master/README.md","_readme_localurl":"optuna~optuna~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/optuna/optuna/master/setup.py","https://raw.githubusercontent.com/optuna/optuna/master/pyproject.toml"],"_requirements_localurls":["optuna~optuna~setup.py","optuna~optuna~pyproject.toml"]},{"index":28,"category":"ml-dl","githuburl":"https://github.com/google/trax","featured":null,"links":null,"description":null,"_repopath":"google/trax","_reponame":"trax","_stars":7217,"_forks":750,"_watches":145,"_topics":["jax","numpy","deep-learning","deep-reinforcement-learning","machine-learning","transformer","reinforcement-learning"],"_language":"Python","_homepage":"","_description":"Trax \u2014 Deep Learning with Clear Code and Speed","_organization":"google","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-09T00:00:00.000Z","_created_at":"2019-10-05T00:00:00.000Z","_age_weeks":167,"_stars_per_week":43.14,"_pop_contributor_count":78,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","mimuw"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.38,"_pop_updated_issues_count":8,"_pop_closed_issues_count":1,"_pop_created_since_days":39,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":8.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":19,"_pop_score":38.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/trax/master/README.md","_readme_localurl":"google~trax~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/trax/master/setup.py"],"_requirements_localurls":["google~trax~setup.py"]},{"index":70,"category":"ml","githuburl":"https://github.com/pymc-devs/pymc3","featured":null,"links":null,"description":null,"_repopath":"pymc-devs/pymc3","_reponame":"pymc","_stars":7187,"_forks":1711,"_watches":225,"_topics":["python","statistical-analysis","bayesian-inference","mcmc","variational-inference","probabilistic-programming","aesara","hacktoberfest","pytensor"],"_language":"Python","_homepage":"https://docs.pymc.io/","_description":"pymc: Probabilistic Programming in Python: Bayesian Modeling and Probabilistic Machine Learning with PyTensor","_organization":"pymc-devs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2009-05-05T00:00:00.000Z","_age_weeks":710,"_stars_per_week":10.11,"_pop_contributor_count":428,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["msueconomics/skoltechcs","pymclabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":17.42,"_pop_updated_issues_count":365,"_pop_closed_issues_count":279,"_pop_created_since_days":166,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":365.0,"_pop_comment_count":941.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":236,"_pop_score":67.67,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pymc-devs/pymc3/master/README.rst","_readme_localurl":"pymc-devs~pymc3~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pymc-devs/pymc3/master/requirements.txt","https://raw.githubusercontent.com/pymc-devs/pymc3/master/setup.py","https://raw.githubusercontent.com/pymc-devs/pymc3/master/pyproject.toml"],"_requirements_localurls":["pymc-devs~pymc3~requirements.txt","pymc-devs~pymc3~setup.py","pymc-devs~pymc3~pyproject.toml"]},{"index":455,"category":"ml-dl","githuburl":"https://github.com/tensorlayer/tensorlayer","featured":null,"links":null,"description":null,"_repopath":"tensorlayer/tensorlayer","_reponame":"TensorLayer","_stars":7126,"_forks":1612,"_watches":462,"_topics":["tensorlayer","deep-learning","tensorflow","neural-network","reinforcement-learning","artificial-intelligence","gan","a3c","tensorflow-tutorials","dqn","object-detection","chatbot","python","tensorflow-tutorial","imagenet","google"],"_language":"Python","_homepage":"http://tensorlayer.org","_description":"TensorLayer: Deep Learning and Reinforcement Learning Library for Scientists and Engineers ","_organization":"tensorlayer","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-04-23T00:00:00.000Z","_created_at":"2016-06-07T00:00:00.000Z","_age_weeks":340,"_stars_per_week":20.91,"_pop_contributor_count":132,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["columbiauniversity","imperialcollegelondon,pangaeadata","pekinguniversity","universityofedinburgh"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":80,"_pop_updated_since_days":8,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":52,"_pop_score":42.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorlayer/tensorlayer/master/README.md","_readme_localurl":"tensorlayer~tensorlayer~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorlayer/tensorlayer/master/setup.py"],"_requirements_localurls":["tensorlayer~tensorlayer~setup.py"]},{"index":165,"category":"nlp","githuburl":"https://github.com/doccano/doccano","featured":null,"links":null,"description":null,"_repopath":"doccano/doccano","_reponame":"doccano","_stars":7043,"_forks":1449,"_watches":122,"_topics":["natural-language-processing","machine-learning","annotation-tool","python","datasets","dataset","data-labeling","text-annotation","nuxtjs","vue","vuejs","nuxt"],"_language":"Python","_homepage":"https://doccano.herokuapp.com","_description":"doccano: Open source annotation tool for machine learning practitioners.","_organization":"doccano","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-05-09T00:00:00.000Z","_age_weeks":240,"_stars_per_week":29.26,"_pop_contributor_count":98,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["classi","noom","statisticscanada"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.69,"_pop_updated_issues_count":115,"_pop_closed_issues_count":68,"_pop_created_since_days":56,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":115.0,"_pop_comment_count":161.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":94,"_pop_score":55.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/doccano/doccano/master/README.md","_readme_localurl":"doccano~doccano~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":758,"category":"diffusion","githuburl":"https://github.com/divamgupta/diffusionbee-stable-diffusion-ui","featured":null,"links":null,"description":null,"_repopath":"divamgupta/diffusionbee-stable-diffusion-ui","_reponame":"diffusionbee-stable-diffusion-ui","_stars":7014,"_forks":271,"_watches":71,"_topics":["electron-app","macos","stable-diffusion"],"_language":"JavaScript","_homepage":"https://diffusionbee.com","_description":"diffusionbee-stable-diffusion-ui: Diffusion Bee is the easiest way to run Stable Diffusion locally on your M1 Mac. Comes with a one-click installer. No dependencies or technical knowledge needed.","_organization":"divamgupta","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2022-09-06T00:00:00.000Z","_age_weeks":14,"_stars_per_week":472.1,"_pop_contributor_count":16,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.87,"_pop_updated_issues_count":338,"_pop_closed_issues_count":129,"_pop_created_since_days":3,"_pop_updated_since_days":1,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":57,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":338.0,"_pop_comment_count":773.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":29.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/divamgupta/diffusionbee-stable-diffusion-ui/master/README.md","_readme_localurl":"divamgupta~diffusionbee-stable-diffusion-ui~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":868,"category":"ml-dl","githuburl":"https://github.com/hpcaitech/colossalai","featured":null,"links":null,"description":null,"_repopath":"hpcaitech/colossalai","_reponame":"ColossalAI","_stars":7002,"_forks":658,"_watches":88,"_topics":["deep-learning","hpc","large-scale","data-parallelism","pipeline-parallelism","model-parallelism","ai","big-model","distributed-computing","inference","heterogeneous-training"],"_language":"Python","_homepage":"https://www.colossalai.org/","_description":"ColossalAI: Colossal-AI: A Unified Deep Learning System for Big Model Era","_organization":"hpcaitech","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2021-10-28T00:00:00.000Z","_age_weeks":59,"_stars_per_week":117.54,"_pop_contributor_count":82,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["hpc-aitech","hpcaitech"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":27.52,"_pop_updated_issues_count":514,"_pop_closed_issues_count":452,"_pop_created_since_days":14,"_pop_updated_since_days":0,"_pop_recent_releases_count":18,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":511.0,"_pop_comment_count":266.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":3,"_pop_score":47.94,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hpcaitech/colossalai/master/README.md","_readme_localurl":"hpcaitech~colossalai~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hpcaitech/colossalai/master/setup.py"],"_requirements_localurls":["hpcaitech~colossalai~setup.py"]},{"index":846,"category":"time-series","githuburl":"https://github.com/blue-yonder/tsfresh","featured":null,"links":null,"description":null,"_repopath":"blue-yonder/tsfresh","_reponame":"tsfresh","_stars":6943,"_forks":1093,"_watches":159,"_topics":["data-science","feature-extraction","time-series"],"_language":"Jupyter Notebook","_homepage":"http://tsfresh.readthedocs.io","_description":"tsfresh: Automatic extraction of relevant features from time series:","_organization":"blue-yonder","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-18T00:00:00.000Z","_created_at":"2016-10-26T00:00:00.000Z","_age_weeks":320,"_stars_per_week":21.65,"_pop_contributor_count":82,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["apple","universityofauckland"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":24,"_pop_closed_issues_count":6,"_pop_created_since_days":75,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":24.0,"_pop_comment_count":48.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":26,"_pop_score":42.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/blue-yonder/tsfresh/master/README.md","_readme_localurl":"blue-yonder~tsfresh~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":650,"category":"profiling","githuburl":"https://github.com/plasma-umass/scalene","featured":1.0,"links":null,"description":null,"_repopath":"plasma-umass/scalene","_reponame":"scalene","_stars":6939,"_forks":232,"_watches":69,"_topics":["python","profiling","performance-analysis","cpu-profiling","profiler","python-profilers","gpu-programming","scalene","profiles-memory","performance-cpu","cpu","memory-allocation","gpu","memory-consumption"],"_language":"JavaScript","_homepage":"","_description":"Scalene: a high-performance, high-precision CPU, GPU, and memory profiler for Python","_organization":"plasma-umass","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-12-17T00:00:00.000Z","_age_weeks":156,"_stars_per_week":44.24,"_pop_contributor_count":34,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["umassamherst","universityofmassachusettsamherst"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.71,"_pop_updated_issues_count":93,"_pop_closed_issues_count":52,"_pop_created_since_days":37,"_pop_updated_since_days":0,"_pop_recent_releases_count":21,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":21,"_pop_issue_count":94.0,"_pop_comment_count":167.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":76,"_pop_score":52.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/plasma-umass/scalene/master/README.md","_readme_localurl":"plasma-umass~scalene~README.md","_requirements_filenames":["requirements.txt","setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/plasma-umass/scalene/master/requirements.txt","https://raw.githubusercontent.com/plasma-umass/scalene/master/setup.py","https://raw.githubusercontent.com/plasma-umass/scalene/master/Pipfile"],"_requirements_localurls":["plasma-umass~scalene~requirements.txt","plasma-umass~scalene~setup.py","plasma-umass~scalene~Pipfile"]},{"index":150,"category":"ml","githuburl":"https://github.com/catboost/catboost","featured":null,"links":null,"description":null,"_repopath":"catboost/catboost","_reponame":"catboost","_stars":6846,"_forks":1070,"_watches":193,"_topics":["machine-learning","decision-trees","gradient-boosting","gbm","gbdt","python","r","kaggle","gpu-computing","catboost","tutorial","categorical-features","gpu","coreml","data-science","big-data","cuda","data-mining"],"_language":"C","_homepage":"https://catboost.ai","_description":"catboost: A fast, scalable, high performance Gradient Boosting on Decision Trees library, used for ranking, classification, regression and other machine learning tasks for Python, R, Java, C++. Supports computation on CPU and GPU.","_organization":"catboost","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2017-07-18T00:00:00.000Z","_age_weeks":282,"_stars_per_week":24.2,"_pop_contributor_count":1038,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["yandex","yandexnv"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":117.42,"_pop_updated_issues_count":146,"_pop_closed_issues_count":58,"_pop_created_since_days":66,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":146.0,"_pop_comment_count":263.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":276,"_pop_score":66.94,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/catboost/catboost/master/README.md","_readme_localurl":"catboost~catboost~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":171,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/pytorch3d","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/pytorch3d","_reponame":"pytorch3d","_stars":6806,"_forks":1032,"_watches":140,"_topics":[],"_language":"Python","_homepage":"https://pytorch3d.org/","_description":"PyTorch3D is FAIR's library of reusable components for deep learning with 3D data","_organization":"facebookresearch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-10-25T00:00:00.000Z","_age_weeks":164,"_stars_per_week":41.39,"_pop_contributor_count":110,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["caltech","facebook","facebookairesearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.92,"_pop_updated_issues_count":88,"_pop_closed_issues_count":37,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":88.0,"_pop_comment_count":123.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":383,"_pop_score":54.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/pytorch3d/master/README.md","_readme_localurl":"facebookresearch~pytorch3d~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/pytorch3d/master/setup.py"],"_requirements_localurls":["facebookresearch~pytorch3d~setup.py"]},{"index":286,"category":"data","githuburl":"https://github.com/simonw/datasette","featured":1.0,"links":null,"description":null,"_repopath":"simonw/datasette","_reponame":"datasette","_stars":6758,"_forks":474,"_watches":99,"_topics":["sqlite","python","datasets","json","docker","datasette","automatic-api","asgi","csv","datasette-io","sql"],"_language":"Python","_homepage":"https://datasette.io","_description":"datasette: An open source multi-tool for exploring and publishing data","_organization":"simonw","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2017-10-23T00:00:00.000Z","_age_weeks":269,"_stars_per_week":25.12,"_pop_contributor_count":72,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datasette","latacora"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.62,"_pop_updated_issues_count":178,"_pop_closed_issues_count":108,"_pop_created_since_days":63,"_pop_updated_since_days":0,"_pop_recent_releases_count":19,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":19,"_pop_issue_count":178.0,"_pop_comment_count":853.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.8,"_pop_dependents_count":557,"_pop_score":62.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/simonw/datasette/master/README.md","_readme_localurl":"simonw~datasette~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/simonw/datasette/master/setup.py"],"_requirements_localurls":["simonw~datasette~setup.py"]},{"index":65,"category":"ml","githuburl":"https://github.com/pycaret/pycaret","featured":null,"links":null,"description":null,"_repopath":"pycaret/pycaret","_reponame":"pycaret","_stars":6669,"_forks":1522,"_watches":125,"_topics":["data-science","citizen-data-scientists","python","machine-learning","pycaret","ml","gpu","time-series","regression","classification","anomaly-detection","nlp","clustering"],"_language":"Jupyter Notebook","_homepage":"https://www.pycaret.org","_description":"pycaret: An open-source, low-code machine learning library in Python","_organization":"pycaret","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-11-23T00:00:00.000Z","_age_weeks":160,"_stars_per_week":41.61,"_pop_contributor_count":107,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["konfio","o9solutions","pycaret","softwareengineeranyscale"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":19.88,"_pop_updated_issues_count":307,"_pop_closed_issues_count":228,"_pop_created_since_days":37,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":307.0,"_pop_comment_count":380.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":194,"_pop_score":58.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pycaret/pycaret/master/README.md","_readme_localurl":"pycaret~pycaret~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pycaret/pycaret/master/requirements.txt","https://raw.githubusercontent.com/pycaret/pycaret/master/setup.py"],"_requirements_localurls":["pycaret~pycaret~requirements.txt","pycaret~pycaret~setup.py"]},{"index":131,"category":"ml","githuburl":"https://github.com/automl/auto-sklearn","featured":null,"links":null,"description":null,"_repopath":"automl/auto-sklearn","_reponame":"auto-sklearn","_stars":6666,"_forks":1208,"_watches":213,"_topics":["automl","scikit-learn","automated-machine-learning","hyperparameter-optimization","hyperparameter-tuning","hyperparameter-search","bayesian-optimization","metalearning","meta-learning","smac"],"_language":"Python","_homepage":"https://automl.github.io/auto-sklearn","_description":"auto-sklearn: Automated Machine Learning with scikit-learn","_organization":"automl","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2015-07-02T00:00:00.000Z","_age_weeks":389,"_stars_per_week":17.11,"_pop_contributor_count":88,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["albert-ludwigs-universit\u00e4tfreiburg","automl.org","awsberlin","centerforarmyanalysisandsimulation","universityoffreiburg"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.65,"_pop_updated_issues_count":71,"_pop_closed_issues_count":34,"_pop_created_since_days":91,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":71.0,"_pop_comment_count":101.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":388,"_pop_score":57.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/automl/auto-sklearn/master/README.md","_readme_localurl":"automl~auto-sklearn~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/automl/auto-sklearn/master/requirements.txt","https://raw.githubusercontent.com/automl/auto-sklearn/master/setup.py","https://raw.githubusercontent.com/automl/auto-sklearn/master/pyproject.toml"],"_requirements_localurls":["automl~auto-sklearn~requirements.txt","automl~auto-sklearn~setup.py","automl~auto-sklearn~pyproject.toml"]},{"index":197,"category":"nlp","githuburl":"https://github.com/eleutherai/gpt-neo","featured":null,"links":null,"description":null,"_repopath":"eleutherai/gpt-neo","_reponame":"gpt-neo","_stars":6663,"_forks":591,"_watches":161,"_topics":["language-model","transformers","gpt","gpt-2","gpt-3"],"_language":"Python","_homepage":"https://www.eleuther.ai","_description":"gpt-neo: An implementation of model parallel GPT-2 and GPT-3-style models using the mesh-tensorflow library.","_organization":"eleutherai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-02-25T00:00:00.000Z","_created_at":"2020-07-05T00:00:00.000Z","_age_weeks":128,"_stars_per_week":52.0,"_pop_contributor_count":29,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["boozallenhamilton"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":30,"_pop_updated_since_days":10,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":14,"_pop_score":22.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/eleutherai/gpt-neo/master/README.md","_readme_localurl":"eleutherai~gpt-neo~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/eleutherai/gpt-neo/master/requirements.txt"],"_requirements_localurls":["eleutherai~gpt-neo~requirements.txt"]},{"index":824,"category":"study","githuburl":"https://github.com/firmai/industry-machine-learning","featured":null,"links":null,"description":null,"_repopath":"firmai/industry-machine-learning","_reponame":"industry-machine-learning","_stars":6654,"_forks":1119,"_watches":392,"_topics":["machine-learning","jupyter-notebook","datascience","example","python","practical-machine-learning","data-science","firmai"],"_language":"Jupyter Notebook","_homepage":"https://www.linkedin.com/company/firmai","_description":"industry-machine-learning: A curated list of applied machine learning and data science notebooks and libraries across different industries (by @firmai)","_organization":"firmai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-12-18T00:00:00.000Z","_created_at":"2019-05-03T00:00:00.000Z","_age_weeks":189,"_stars_per_week":35.13,"_pop_contributor_count":6,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["alanturinginstitute,firmai","tilde-lab","universityofutah"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":44,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":15.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/firmai/industry-machine-learning/master/README.md","_readme_localurl":"firmai~industry-machine-learning~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":532,"category":"util","githuburl":"https://github.com/facebookresearch/hydra","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/hydra","_reponame":"hydra","_stars":6600,"_forks":527,"_watches":83,"_topics":[],"_language":"Python","_homepage":"https://hydra.cc","_description":"Hydra is a framework for elegantly configuring complex applications","_organization":"facebookresearch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2019-06-12T00:00:00.000Z","_age_weeks":183,"_stars_per_week":35.93,"_pop_contributor_count":105,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","facebookairesearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.27,"_pop_updated_issues_count":147,"_pop_closed_issues_count":91,"_pop_created_since_days":43,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":147.0,"_pop_comment_count":233.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":47,"_pop_score":50.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/hydra/master/README.md","_readme_localurl":"facebookresearch~hydra~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/hydra/master/setup.py","https://raw.githubusercontent.com/facebookresearch/hydra/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~hydra~setup.py","facebookresearch~hydra~pyproject.toml"]},{"index":67,"category":"web","githuburl":"https://github.com/pyeve/eve","featured":null,"links":null,"description":null,"_repopath":"pyeve/eve","_reponame":"eve","_stars":6567,"_forks":752,"_watches":229,"_topics":["python","rest","flask","mongodb"],"_language":"Python","_homepage":"https://python-eve.org","_description":"eve: REST API framework designed for human beings","_organization":"pyeve","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-10T00:00:00.000Z","_created_at":"2012-10-22T00:00:00.000Z","_age_weeks":530,"_stars_per_week":12.39,"_pop_contributor_count":211,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cir2000","denoland","google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.06,"_pop_updated_issues_count":16,"_pop_closed_issues_count":9,"_pop_created_since_days":124,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":16.0,"_pop_comment_count":28.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":34,"_pop_score":50.38,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyeve/eve/master/README.rst","_readme_localurl":"pyeve~eve~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyeve/eve/master/setup.py","https://raw.githubusercontent.com/pyeve/eve/master/pyproject.toml"],"_requirements_localurls":["pyeve~eve~setup.py","pyeve~eve~pyproject.toml"]},{"index":389,"category":"data","githuburl":"https://github.com/yzhao062/pyod","featured":null,"links":null,"description":null,"_repopath":"yzhao062/pyod","_reponame":"pyod","_stars":6557,"_forks":1217,"_watches":151,"_topics":["outlier-detection","anomaly-detection","outlier-ensembles","outliers","anomaly","python","machine-learning","data-mining","unsupervised-learning","python2","python3","fraud-detection","autoencoder","neural-networks","deep-learning","data-science","data-analysis","novelty-detection","out-of-distribution-detection"],"_language":"Python","_homepage":"http://pyod.readthedocs.io","_description":"pyod: A Comprehensive and Scalable Python Library for Outlier Detection (Anomaly Detection)","_organization":"yzhao062","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2017-10-03T00:00:00.000Z","_age_weeks":271,"_stars_per_week":24.12,"_pop_contributor_count":46,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["carnegiemellonuniversity","erasmusmedicalcentre","royalbankofcanada(rbc)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.69,"_pop_updated_issues_count":28,"_pop_closed_issues_count":13,"_pop_created_since_days":63,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":28.0,"_pop_comment_count":59.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":66,"_pop_score":51.34,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/yzhao062/pyod/master/README.rst","_readme_localurl":"yzhao062~pyod~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/yzhao062/pyod/master/requirements.txt","https://raw.githubusercontent.com/yzhao062/pyod/master/setup.py"],"_requirements_localurls":["yzhao062~pyod~requirements.txt","yzhao062~pyod~setup.py"]},{"index":133,"category":"ml","githuburl":"https://github.com/hyperopt/hyperopt","featured":null,"links":null,"description":null,"_repopath":"hyperopt/hyperopt","_reponame":"hyperopt","_stars":6511,"_forks":1004,"_watches":126,"_topics":[],"_language":"Python","_homepage":"http://hyperopt.github.io/hyperopt","_description":"hyperopt: Distributed Asynchronous Hyperparameter Optimization in Python","_organization":"hyperopt","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2021-11-29T00:00:00.000Z","_created_at":"2011-09-06T00:00:00.000Z","_age_weeks":588,"_stars_per_week":11.06,"_pop_contributor_count":93,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["contxts-io","databricks","kindred.ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":14,"_pop_closed_issues_count":3,"_pop_created_since_days":137,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":14.0,"_pop_comment_count":28.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":135,"_pop_score":42.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hyperopt/hyperopt/master/README.md","_readme_localurl":"hyperopt~hyperopt~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hyperopt/hyperopt/master/setup.py"],"_requirements_localurls":["hyperopt~hyperopt~setup.py"]},{"index":716,"category":"util","githuburl":"https://github.com/jazzband/pip-tools","featured":null,"links":null,"description":null,"_repopath":"jazzband/pip-tools","_reponame":"pip-tools","_stars":6473,"_forks":554,"_watches":105,"_topics":["python","packaging","pip","pip-tools","pip-compile","setuptools","requirements","lockfile","hashes"],"_language":"Python","_homepage":"https://pip-tools.rtfd.io","_description":"pip-tools: A set of tools to keep your pinned Python dependencies fresh.","_organization":"jazzband","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2012-09-10T00:00:00.000Z","_age_weeks":536,"_stars_per_week":12.08,"_pop_contributor_count":181,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["pioneervalleybooks","ubisoftinc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.67,"_pop_updated_issues_count":179,"_pop_closed_issues_count":132,"_pop_created_since_days":125,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":179.0,"_pop_comment_count":312.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":2531,"_pop_score":63.55,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jazzband/pip-tools/master/README.rst","_readme_localurl":"jazzband~pip-tools~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jazzband/pip-tools/master/pyproject.toml"],"_requirements_localurls":["jazzband~pip-tools~pyproject.toml"]},{"index":215,"category":"debug","githuburl":"https://github.com/gruns/icecream","featured":null,"links":null,"description":null,"_repopath":"gruns/icecream","_reponame":"icecream","_stars":6468,"_forks":134,"_watches":50,"_topics":["python","python3","library","inspects","debug","debugging","debugging-tool","print"],"_language":"Python","_homepage":"","_description":"icecream: \ud83c\udf66 Never use print() to debug again.","_organization":"gruns","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2018-02-13T00:00:00.000Z","_age_weeks":252,"_stars_per_week":25.58,"_pop_contributor_count":21,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["fixpoint","https://arc.io,https://pep.dev","pku-epic"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.85,"_pop_updated_issues_count":12,"_pop_closed_issues_count":5,"_pop_created_since_days":59,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":12.0,"_pop_comment_count":26.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":34,"_pop_score":42.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gruns/icecream/master/README.md","_readme_localurl":"gruns~icecream~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gruns/icecream/master/setup.py"],"_requirements_localurls":["gruns~icecream~setup.py"]},{"index":82,"category":"data","githuburl":"https://github.com/sqlalchemy/sqlalchemy","featured":null,"links":null,"description":null,"_repopath":"sqlalchemy/sqlalchemy","_reponame":"sqlalchemy","_stars":6443,"_forks":1025,"_watches":94,"_topics":["sqlalchemy","sql","python"],"_language":"Python","_homepage":"https://www.sqlalchemy.org","_description":"sqlalchemy: The Database Toolkit for Python","_organization":"sqlalchemy","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-11-27T00:00:00.000Z","_age_weeks":211,"_stars_per_week":30.41,"_pop_contributor_count":583,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["redhat","self-employed"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.65,"_pop_updated_issues_count":304,"_pop_closed_issues_count":231,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":21,"_pop_recent_releases_estimated_tags":66,"_pop_recent_releases_adjusted_count":21,"_pop_issue_count":304.0,"_pop_comment_count":1209.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.0,"_pop_dependents_count":10439,"_pop_score":73.81,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sqlalchemy/sqlalchemy/master/README.rst","_readme_localurl":"sqlalchemy~sqlalchemy~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sqlalchemy/sqlalchemy/master/setup.py","https://raw.githubusercontent.com/sqlalchemy/sqlalchemy/master/pyproject.toml"],"_requirements_localurls":["sqlalchemy~sqlalchemy~setup.py","sqlalchemy~sqlalchemy~pyproject.toml"]},{"index":141,"category":"ml","githuburl":"https://github.com/featurelabs/featuretools","featured":1.0,"links":null,"description":null,"_repopath":"featurelabs/featuretools","_reponame":"featuretools","_stars":6424,"_forks":835,"_watches":158,"_topics":["feature-engineering","machine-learning","data-science","automated-machine-learning","automl","python","scikit-learn","automated-feature-engineering"],"_language":"Python","_homepage":"https://www.featuretools.com","_description":"featuretools: An open source python library for automated feature engineering","_organization":"featurelabs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2017-09-08T00:00:00.000Z","_age_weeks":275,"_stars_per_week":23.32,"_pop_contributor_count":68,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["alteryx"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.17,"_pop_updated_issues_count":161,"_pop_closed_issues_count":125,"_pop_created_since_days":64,"_pop_updated_since_days":0,"_pop_recent_releases_count":25,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":25,"_pop_issue_count":161.0,"_pop_comment_count":189.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":31,"_pop_score":50.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/featurelabs/featuretools/master/README.md","_readme_localurl":"featurelabs~featuretools~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/featurelabs/featuretools/master/pyproject.toml"],"_requirements_localurls":["featurelabs~featuretools~pyproject.toml"]},{"index":288,"category":"testing","githuburl":"https://github.com/hypothesisworks/hypothesis","featured":1.0,"links":null,"description":null,"_repopath":"hypothesisworks/hypothesis","_reponame":"hypothesis","_stars":6401,"_forks":539,"_watches":69,"_topics":["python","testing","fuzzing","property-based-testing"],"_language":"Python","_homepage":"https://hypothesis.works","_description":"Hypothesis is a powerful, flexible, and easy to use library for property-based testing.","_organization":"hypothesisworks","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2013-03-10T00:00:00.000Z","_age_weeks":510,"_stars_per_week":12.55,"_pop_contributor_count":297,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anthropic","pyupio","quansight","weomecollection"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.75,"_pop_updated_issues_count":88,"_pop_closed_issues_count":66,"_pop_created_since_days":119,"_pop_updated_since_days":0,"_pop_recent_releases_count":95,"_pop_recent_releases_estimated_tags":135,"_pop_recent_releases_adjusted_count":95,"_pop_issue_count":88.0,"_pop_comment_count":128.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":12462,"_pop_score":72.65,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/hypothesisworks/hypothesis/master/README.rst","_readme_localurl":"hypothesisworks~hypothesis~README.rst","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":153,"category":"util","githuburl":"https://github.com/marshmallow-code/marshmallow","featured":null,"links":null,"description":null,"_repopath":"marshmallow-code/marshmallow","_reponame":"marshmallow","_stars":6358,"_forks":621,"_watches":82,"_topics":["serialization","deserialization","validation","python","marshalling","python-3","serde","schema","hacktoberfest"],"_language":"Python","_homepage":"https://marshmallow.readthedocs.io/","_description":"marshmallow: A lightweight library for converting complex objects to and from simple Python datatypes.","_organization":"marshmallow-code","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2013-11-10T00:00:00.000Z","_age_weeks":475,"_stars_per_week":13.38,"_pop_contributor_count":203,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nobatek"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.79,"_pop_updated_issues_count":54,"_pop_closed_issues_count":36,"_pop_created_since_days":111,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":19,"_pop_recent_releases_adjusted_count":19,"_pop_issue_count":54.0,"_pop_comment_count":52.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":2390,"_pop_score":58.91,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/marshmallow-code/marshmallow/master/README.rst","_readme_localurl":"marshmallow-code~marshmallow~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/marshmallow-code/marshmallow/master/setup.py","https://raw.githubusercontent.com/marshmallow-code/marshmallow/master/pyproject.toml"],"_requirements_localurls":["marshmallow-code~marshmallow~setup.py","marshmallow-code~marshmallow~pyproject.toml"]},{"index":230,"category":"template","githuburl":"https://github.com/drivendata/cookiecutter-data-science","featured":1.0,"links":null,"description":null,"_repopath":"drivendata/cookiecutter-data-science","_reponame":"cookiecutter-data-science","_stars":6335,"_forks":2015,"_watches":111,"_topics":["cookiecutter-data-science","cookiecutter","cookiecutter-template","data-science","machine-learning","ai"],"_language":"Python","_homepage":"http://drivendata.github.io/cookiecutter-data-science/","_description":"cookiecutter-data-science: A logical, reasonably standardized, but flexible project structure for doing and sharing data science work.","_organization":"drivendata","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-03-11T00:00:00.000Z","_created_at":"2015-10-30T00:00:00.000Z","_age_weeks":372,"_stars_per_week":17.01,"_pop_contributor_count":45,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["contentful","drivendata","unseenbio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":17,"_pop_closed_issues_count":7,"_pop_created_since_days":87,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":17.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":28,"_pop_score":34.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/drivendata/cookiecutter-data-science/master/README.md","_readme_localurl":"drivendata~cookiecutter-data-science~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/drivendata/cookiecutter-data-science/master/requirements.txt"],"_requirements_localurls":["drivendata~cookiecutter-data-science~requirements.txt"]},{"index":602,"category":"testing","githuburl":"https://github.com/newsapps/beeswithmachineguns","featured":null,"links":null,"description":null,"_repopath":"newsapps/beeswithmachineguns","_reponame":"beeswithmachineguns","_stars":6267,"_forks":663,"_watches":227,"_topics":[],"_language":"Python","_homepage":"http://apps.chicagotribune.com/","_description":"beeswithmachineguns: A utility for arming (creating) many bees (micro EC2 instances) to attack (load test) targets (web applications).","_organization":"newsapps","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2017-12-20T00:00:00.000Z","_created_at":"2010-06-29T00:00:00.000Z","_age_weeks":650,"_stars_per_week":9.63,"_pop_contributor_count":49,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["br","datascopeanalytics","facebook","fivethirtyeight","https://github.com/verizondigital/"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":152,"_pop_updated_since_days":61,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":64,"_pop_score":32.42,"_readme_filename":"","_readme_giturl":"","_readme_localurl":"","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/newsapps/beeswithmachineguns/master/requirements.txt","https://raw.githubusercontent.com/newsapps/beeswithmachineguns/master/setup.py"],"_requirements_localurls":["newsapps~beeswithmachineguns~requirements.txt","newsapps~beeswithmachineguns~setup.py"]},{"index":800,"category":"web","githuburl":"https://github.com/pallets/werkzeug","featured":null,"links":null,"description":null,"_repopath":"pallets/werkzeug","_reponame":"werkzeug","_stars":6234,"_forks":1663,"_watches":227,"_topics":["python","wsgi","werkzeug","http","pallets"],"_language":"Python","_homepage":"https://werkzeug.palletsprojects.com","_description":"werkzeug: The comprehensive WSGI web application library.","_organization":"pallets","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-01T00:00:00.000Z","_created_at":"2010-10-18T00:00:00.000Z","_age_weeks":635,"_stars_per_week":9.82,"_pop_contributor_count":463,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["getsentry","sentry","zalandose"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.62,"_pop_updated_issues_count":50,"_pop_closed_issues_count":34,"_pop_created_since_days":148,"_pop_updated_since_days":2,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":50.0,"_pop_comment_count":43.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":9133,"_pop_score":62.98,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/werkzeug/master/README.rst","_readme_localurl":"pallets~werkzeug~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/werkzeug/master/setup.py"],"_requirements_localurls":["pallets~werkzeug~setup.py"]},{"index":356,"category":"ml-ops","githuburl":"https://github.com/netflix/metaflow","featured":null,"links":null,"description":null,"_repopath":"netflix/metaflow","_reponame":"metaflow","_stars":6219,"_forks":583,"_watches":239,"_topics":["machine-learning","data-science","productivity","model-management","ai","ml","ml-platform","ml-infrastructure","python","r","rstats","reproducible-research","r-package","mlops","datascience","cli","high-performance-computing","kubernetes"],"_language":"Python","_homepage":"https://metaflow.org","_description":"metaflow: :rocket: Build and manage real-life data science projects with ease!","_organization":"netflix","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2019-09-17T00:00:00.000Z","_age_weeks":169,"_stars_per_week":36.61,"_pop_contributor_count":62,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["missingexponent","outerbounds"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.27,"_pop_updated_issues_count":106,"_pop_closed_issues_count":65,"_pop_created_since_days":40,"_pop_updated_since_days":0,"_pop_recent_releases_count":30,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":30,"_pop_issue_count":106.0,"_pop_comment_count":147.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":49,"_pop_score":51.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/netflix/metaflow/master/README.md","_readme_localurl":"netflix~metaflow~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/netflix/metaflow/master/setup.py"],"_requirements_localurls":["netflix~metaflow~setup.py"]},{"index":382,"category":"ml-ops","githuburl":"https://github.com/deepset-ai/haystack","featured":null,"links":null,"description":null,"_repopath":"deepset-ai/haystack","_reponame":"haystack","_stars":6210,"_forks":964,"_watches":87,"_topics":["nlp","question-answering","bert","transfer-learning","language-model","pytorch","semantic-search","neural-search","squad","elasticsearch","dpr","information-retrieval","summarization","search-engine","transformers","natural-language-processing","machine-learning","ai","python"],"_language":"Python","_homepage":"https://deepset.ai/haystack","_description":"haystack: :mag: Haystack is an open source NLP framework that leverages pre-trained Transformer models. It enables developers to quickly implement production-ready semantic search, question answering, summarization and document ranking for a wide range of NLP applications.","_organization":"deepset-ai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-11-14T00:00:00.000Z","_age_weeks":161,"_stars_per_week":38.44,"_pop_contributor_count":149,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deepset","deepset-ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.31,"_pop_updated_issues_count":617,"_pop_closed_issues_count":399,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":18,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":617.0,"_pop_comment_count":895.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":57,"_pop_score":57.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/deepset-ai/haystack/master/README.md","_readme_localurl":"deepset-ai~haystack~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/deepset-ai/haystack/master/pyproject.toml"],"_requirements_localurls":["deepset-ai~haystack~pyproject.toml"]},{"index":459,"category":"ml-ops","githuburl":"https://github.com/dbt-labs/dbt-core","featured":null,"links":null,"description":null,"_repopath":"dbt-labs/dbt-core","_reponame":"dbt-core","_stars":6207,"_forks":1095,"_watches":131,"_topics":["dbt-viewpoint","slack","pypa","data-modeling","business-intelligence","analytics","elt"],"_language":"Python","_homepage":"https://getdbt.com","_description":"dbt-core: dbt enables data analysts and engineers to transform their data using the same practices that software engineers use to build applications.","_organization":"dbt-labs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2016-03-10T00:00:00.000Z","_age_weeks":353,"_stars_per_week":17.56,"_pop_contributor_count":252,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dbt-labs","fishtownanalytics"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.29,"_pop_updated_issues_count":890,"_pop_closed_issues_count":615,"_pop_created_since_days":82,"_pop_updated_since_days":0,"_pop_recent_releases_count":40,"_pop_recent_releases_estimated_tags":21,"_pop_recent_releases_adjusted_count":40,"_pop_issue_count":889.0,"_pop_comment_count":1514.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":82,"_pop_score":62.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dbt-labs/dbt-core/master/README.md","_readme_localurl":"dbt-labs~dbt-core~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dbt-labs/dbt-core/master/requirements.txt","https://raw.githubusercontent.com/dbt-labs/dbt-core/master/setup.py"],"_requirements_localurls":["dbt-labs~dbt-core~requirements.txt","dbt-labs~dbt-core~setup.py"]},{"index":20,"category":"typing","githuburl":"https://github.com/facebook/pyre-check","featured":null,"links":null,"description":null,"_repopath":"facebook/pyre-check","_reponame":"pyre-check","_stars":6164,"_forks":407,"_watches":107,"_topics":["python","typechecker","type-check","static-analysis","ocaml","code-quality","abstract-interpretation","security","program-analysis","taint-analysis","control-flow-analysis"],"_language":"OCaml","_homepage":"https://pyre-check.org/","_description":"pyre-check: Performant type-checking for python.","_organization":"facebook","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2017-11-10T00:00:00.000Z","_age_weeks":266,"_stars_per_week":23.14,"_pop_contributor_count":231,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","metaplatforms"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":47.44,"_pop_updated_issues_count":46,"_pop_closed_issues_count":22,"_pop_created_since_days":62,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":46.0,"_pop_comment_count":51.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":322,"_pop_score":58.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebook/pyre-check/master/README.md","_readme_localurl":"facebook~pyre-check~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebook/pyre-check/master/requirements.txt","https://raw.githubusercontent.com/facebook/pyre-check/master/pyproject.toml"],"_requirements_localurls":["facebook~pyre-check~requirements.txt","facebook~pyre-check~pyproject.toml"]},{"index":556,"category":"ml-dl","githuburl":"https://github.com/arogozhnikov/einops","featured":null,"links":null,"description":null,"_repopath":"arogozhnikov/einops","_reponame":"einops","_stars":6140,"_forks":269,"_watches":62,"_topics":["deep-learning","pytorch","tensorflow","numpy","gluon","cupy","chainer","keras","tensor","jax"],"_language":"Python","_homepage":"https://einops.rocks","_description":"einops: Deep learning operations reinvented (for pytorch, tensorflow, jax and others)","_organization":"arogozhnikov","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2018-09-22T00:00:00.000Z","_age_weeks":221,"_stars_per_week":27.75,"_pop_contributor_count":22,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aperturescience","idea","princetonuniversity","quansight","sunyat-senuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.52,"_pop_updated_issues_count":41,"_pop_closed_issues_count":26,"_pop_created_since_days":52,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":41.0,"_pop_comment_count":42.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":8,"_pop_score":43.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/arogozhnikov/einops/master/README.md","_readme_localurl":"arogozhnikov~einops~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/arogozhnikov/einops/master/pyproject.toml"],"_requirements_localurls":["arogozhnikov~einops~pyproject.toml"]},{"index":681,"category":"ml","githuburl":"https://github.com/hips/autograd","featured":null,"links":null,"description":null,"_repopath":"hips/autograd","_reponame":"autograd","_stars":6109,"_forks":843,"_watches":216,"_topics":[],"_language":"Python","_homepage":"","_description":"autograd: Efficiently computes derivatives of numpy code.","_organization":"hips","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-09-29T00:00:00.000Z","_created_at":"2014-11-24T00:00:00.000Z","_age_weeks":421,"_stars_per_week":14.51,"_pop_contributor_count":52,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","googlebrain","universityofamsterdam","universityoftoronto","visa"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":7,"_pop_closed_issues_count":4,"_pop_created_since_days":98,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":7.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":160,"_pop_score":44.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hips/autograd/master/README.md","_readme_localurl":"hips~autograd~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hips/autograd/master/setup.py"],"_requirements_localurls":["hips~autograd~setup.py"]},{"index":121,"category":"ml-ops","githuburl":"https://github.com/dagster-io/dagster","featured":null,"links":null,"description":null,"_repopath":"dagster-io/dagster","_reponame":"dagster","_stars":6053,"_forks":759,"_watches":87,"_topics":["data-pipelines","dagster","workflow","data-science","workflow-automation","python","scheduler","data-orchestrator","etl","analytics","data-engineering","mlops","orchestration","data-integration","metadata"],"_language":"Python","_homepage":"https://dagster.io","_description":"dagster: An orchestration platform for the development, production, and observation of data assets.","_organization":"dagster-io","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-04-30T00:00:00.000Z","_age_weeks":242,"_stars_per_week":25.01,"_pop_contributor_count":256,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["elementl"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":57.9,"_pop_updated_issues_count":1677,"_pop_closed_issues_count":1229,"_pop_created_since_days":56,"_pop_updated_since_days":0,"_pop_recent_releases_count":59,"_pop_recent_releases_estimated_tags":139,"_pop_recent_releases_adjusted_count":59,"_pop_issue_count":1677.0,"_pop_comment_count":3154.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":2733,"_pop_score":70.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dagster-io/dagster/master/README.md","_readme_localurl":"dagster-io~dagster~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dagster-io/dagster/master/pyproject.toml"],"_requirements_localurls":["dagster-io~dagster~pyproject.toml"]},{"index":73,"category":"gis","githuburl":"https://github.com/python-visualization/folium","featured":null,"links":null,"description":null,"_repopath":"python-visualization/folium","_reponame":"folium","_stars":6023,"_forks":2154,"_watches":166,"_topics":["closember","data-science","data-visualization","javascript","maps","python"],"_language":"Python","_homepage":"https://python-visualization.github.io/folium/","_description":"folium: Python Data. Leaflet.js Maps. ","_organization":"python-visualization","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2013-05-09T00:00:00.000Z","_age_weeks":501,"_stars_per_week":12.01,"_pop_contributor_count":147,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datartibus","jgardinerconsultingltd.","stripe"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.81,"_pop_updated_issues_count":309,"_pop_closed_issues_count":276,"_pop_created_since_days":117,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":309.0,"_pop_comment_count":344.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":671,"_pop_score":58.7,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/python-visualization/folium/master/README.rst","_readme_localurl":"python-visualization~folium~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-visualization/folium/master/requirements.txt","https://raw.githubusercontent.com/python-visualization/folium/master/setup.py","https://raw.githubusercontent.com/python-visualization/folium/master/pyproject.toml"],"_requirements_localurls":["python-visualization~folium~requirements.txt","python-visualization~folium~setup.py","python-visualization~folium~pyproject.toml"]},{"index":879,"category":"time-series","githuburl":"https://github.com/sktime/sktime","featured":1.0,"links":null,"description":null,"_repopath":"sktime/sktime","_reponame":"sktime","_stars":5980,"_forks":984,"_watches":110,"_topics":["time-series","machine-learning","scikit-learn","time-series-classification","time-series-regression","forecasting","time-series-analysis","data-science","data-mining"],"_language":"Python","_homepage":"https://sktime.org","_description":"sktime: A unified framework for machine learning with time series","_organization":"sktime","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-11-06T00:00:00.000Z","_age_weeks":214,"_stars_per_week":27.83,"_pop_contributor_count":206,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ucl","uclalan-turing-instituteesrc-cdrc","universitycollegelondon","universityofeastanglia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":17.92,"_pop_updated_issues_count":655,"_pop_closed_issues_count":376,"_pop_created_since_days":50,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":656.0,"_pop_comment_count":1884.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":51,"_pop_score":63.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sktime/sktime/master/README.md","_readme_localurl":"sktime~sktime~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sktime/sktime/master/pyproject.toml"],"_requirements_localurls":["sktime~sktime~pyproject.toml"]},{"index":410,"category":"web","githuburl":"https://github.com/encode/uvicorn","featured":null,"links":null,"description":null,"_repopath":"encode/uvicorn","_reponame":"uvicorn","_stars":5962,"_forks":522,"_watches":87,"_topics":["python","asyncio","asgi","http","http-server"],"_language":"Python","_homepage":"https://www.uvicorn.org/","_description":"uvicorn: An ASGI web server, for Python. \ud83e\udd84","_organization":"encode","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2017-05-31T00:00:00.000Z","_age_weeks":289,"_stars_per_week":20.58,"_pop_contributor_count":149,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["encode","encodeoss"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.92,"_pop_updated_issues_count":212,"_pop_closed_issues_count":178,"_pop_created_since_days":68,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":212.0,"_pop_comment_count":395.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":3899,"_pop_score":63.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/encode/uvicorn/master/README.md","_readme_localurl":"encode~uvicorn~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/encode/uvicorn/master/requirements.txt","https://raw.githubusercontent.com/encode/uvicorn/master/setup.py","https://raw.githubusercontent.com/encode/uvicorn/master/pyproject.toml"],"_requirements_localurls":["encode~uvicorn~requirements.txt","encode~uvicorn~setup.py","encode~uvicorn~pyproject.toml"]},{"index":44,"category":"ml","githuburl":"https://github.com/lmcinnes/umap","featured":null,"links":null,"description":null,"_repopath":"lmcinnes/umap","_reponame":"umap","_stars":5961,"_forks":694,"_watches":124,"_topics":["umap","dimensionality-reduction","visualization","machine-learning","topological-data-analysis"],"_language":"Python","_homepage":null,"_description":"umap: Uniform Manifold Approximation and Projection","_organization":"lmcinnes","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-11T00:00:00.000Z","_created_at":"2017-07-02T00:00:00.000Z","_age_weeks":285,"_stars_per_week":20.91,"_pop_contributor_count":109,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","contextlabcosanlab","microsoft","tutteinstituteformathematicsandcomputing"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.87,"_pop_updated_issues_count":34,"_pop_closed_issues_count":11,"_pop_created_since_days":67,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":34.0,"_pop_comment_count":42.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":45,"_pop_score":46.95,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/lmcinnes/umap/master/README.rst","_readme_localurl":"lmcinnes~umap~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lmcinnes/umap/master/requirements.txt","https://raw.githubusercontent.com/lmcinnes/umap/master/setup.py"],"_requirements_localurls":["lmcinnes~umap~requirements.txt","lmcinnes~umap~setup.py"]},{"index":599,"category":"gis","githuburl":"https://github.com/domlysz/blendergis","featured":null,"links":null,"description":null,"_repopath":"domlysz/blendergis","_reponame":"BlenderGIS","_stars":5875,"_forks":1093,"_watches":244,"_topics":["blender","addon","geospatial","gis","shapefile","delaunay-triangulation","raster","openstreetmap","python","dem","3dgis","map","geodata","georeferencing","importexport","3d","terrain-model","basemap","3d-map"],"_language":"Python","_homepage":"","_description":"BlenderGIS: Blender addons to make the bridge between Blender and geographic data","_organization":"domlysz","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-05-31T00:00:00.000Z","_created_at":"2014-05-08T00:00:00.000Z","_age_weeks":449,"_stars_per_week":13.07,"_pop_contributor_count":15,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["alphagov"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.21,"_pop_updated_issues_count":28,"_pop_closed_issues_count":4,"_pop_created_since_days":105,"_pop_updated_since_days":7,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":28.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":61,"_pop_score":33.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/domlysz/blendergis/master/README.md","_readme_localurl":"domlysz~blendergis~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":537,"category":"nlp","githuburl":"https://github.com/espnet/espnet","featured":null,"links":null,"description":null,"_repopath":"espnet/espnet","_reponame":"espnet","_stars":5832,"_forks":1782,"_watches":184,"_topics":["deep-learning","end-to-end","chainer","pytorch","kaldi","speech-recognition","speech-synthesis","speech-translation","machine-translation","voice-conversion","speech-enhancement","speech-separation","singing-voice-synthesis","speaker-diarization","spoken-language-understanding"],"_language":"Python","_homepage":"https://espnet.github.io/espnet/","_description":"espnet: End-to-End Speech Processing Toolkit","_organization":"espnet","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2017-12-13T00:00:00.000Z","_age_weeks":261,"_stars_per_week":22.28,"_pop_contributor_count":312,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["fairatmetaai","nagoyauniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":35.96,"_pop_updated_issues_count":258,"_pop_closed_issues_count":151,"_pop_created_since_days":61,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":258.0,"_pop_comment_count":530.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":6280,"_pop_score":69.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/espnet/espnet/master/README.md","_readme_localurl":"espnet~espnet~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/espnet/espnet/master/setup.py"],"_requirements_localurls":["espnet~espnet~setup.py"]},{"index":313,"category":"util","githuburl":"https://github.com/pypa/pipx","featured":null,"links":null,"description":null,"_repopath":"pypa/pipx","_reponame":"pipx","_stars":5810,"_forks":265,"_watches":65,"_topics":["pip","cli","pypi","venv","hacktoberfest","python"],"_language":"Python","_homepage":"https://pypa.github.io/pipx/","_description":"pipx: Install and Run Python Applications in Isolated Environments","_organization":"pypa","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2018-10-06T00:00:00.000Z","_age_weeks":219,"_stars_per_week":26.5,"_pop_contributor_count":82,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["astronomer","bloomberglp"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.12,"_pop_updated_issues_count":51,"_pop_closed_issues_count":21,"_pop_created_since_days":51,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":51.0,"_pop_comment_count":95.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":107,"_pop_score":49.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pypa/pipx/master/README.md","_readme_localurl":"pypa~pipx~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pypa/pipx/master/pyproject.toml"],"_requirements_localurls":["pypa~pipx~pyproject.toml"]},{"index":777,"category":"util","githuburl":"https://github.com/google/latexify_py","featured":null,"links":null,"description":null,"_repopath":"google/latexify_py","_reponame":"latexify_py","_stars":5807,"_forks":316,"_watches":50,"_topics":[],"_language":"Python","_homepage":"","_description":"latexify_py: A library to generate LaTeX expression from Python code.","_organization":"google","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2020-07-25T00:00:00.000Z","_age_weeks":125,"_stars_per_week":46.35,"_pop_contributor_count":24,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","inspired-co"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.69,"_pop_updated_issues_count":146,"_pop_closed_issues_count":133,"_pop_created_since_days":29,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":146.0,"_pop_comment_count":389.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":4,"_pop_score":42.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/latexify_py/master/README.md","_readme_localurl":"google~latexify_py~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/google/latexify_py/master/pyproject.toml"],"_requirements_localurls":["google~latexify_py~pyproject.toml"]},{"index":345,"category":"jupyter","githuburl":"https://github.com/mwouts/jupytext","featured":null,"links":null,"description":null,"_repopath":"mwouts/jupytext","_reponame":"jupytext","_stars":5713,"_forks":363,"_watches":70,"_topics":["jupyter-notebook","jupyterlab-extension","version-control","knitr","rstudio","markdown","rmarkdown","python","hydrogen","notebooks","jupyterlab"],"_language":"Python","_homepage":"https://jupytext.readthedocs.io","_description":"jupytext: Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts","_organization":"mwouts","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2018-06-15T00:00:00.000Z","_age_weeks":235,"_stars_per_week":24.27,"_pop_contributor_count":74,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebookresearch","imperialcollegelondon","ucberkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.9,"_pop_updated_issues_count":40,"_pop_closed_issues_count":18,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":29,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":40.0,"_pop_comment_count":92.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":113,"_pop_score":52.13,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mwouts/jupytext/master/README.md","_readme_localurl":"mwouts~jupytext~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mwouts/jupytext/master/requirements.txt","https://raw.githubusercontent.com/mwouts/jupytext/master/setup.py","https://raw.githubusercontent.com/mwouts/jupytext/master/pyproject.toml"],"_requirements_localurls":["mwouts~jupytext~requirements.txt","mwouts~jupytext~setup.py","mwouts~jupytext~pyproject.toml"]},{"index":69,"category":"util","githuburl":"https://github.com/pygithub/pygithub","featured":null,"links":null,"description":null,"_repopath":"pygithub/pygithub","_reponame":"PyGithub","_stars":5678,"_forks":1566,"_watches":113,"_topics":["pygithub","python","github","github-api"],"_language":"Python","_homepage":"https://pygithub.readthedocs.io/","_description":"PyGithub: Typed interactions with the GitHub API v3","_organization":"pygithub","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2012-02-25T00:00:00.000Z","_age_weeks":564,"_stars_per_week":10.06,"_pop_contributor_count":293,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["authzed","suse","zendesk"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":128,"_pop_closed_issues_count":53,"_pop_created_since_days":132,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":128.0,"_pop_comment_count":162.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":897,"_pop_score":58.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pygithub/pygithub/master/README.md","_readme_localurl":"pygithub~pygithub~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pygithub/pygithub/master/requirements.txt","https://raw.githubusercontent.com/pygithub/pygithub/master/setup.py"],"_requirements_localurls":["pygithub~pygithub~requirements.txt","pygithub~pygithub~setup.py"]},{"index":730,"category":"ml","githuburl":"https://github.com/cleverhans-lab/cleverhans","featured":null,"links":null,"description":null,"_repopath":"cleverhans-lab/cleverhans","_reponame":"cleverhans","_stars":5662,"_forks":1376,"_watches":190,"_topics":["machine-learning","security","benchmarking"],"_language":"Jupyter Notebook","_homepage":"","_description":"cleverhans: An adversarial example library for constructing attacks, building defenses, and benchmarking both","_organization":"cleverhans-lab","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2021-09-23T00:00:00.000Z","_created_at":"2016-09-15T00:00:00.000Z","_age_weeks":326,"_stars_per_week":17.34,"_pop_contributor_count":129,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["universityoftoronto"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":76,"_pop_updated_since_days":15,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":5,"_pop_score":25.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cleverhans-lab/cleverhans/master/README.md","_readme_localurl":"cleverhans-lab~cleverhans~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/cleverhans-lab/cleverhans/master/setup.py"],"_requirements_localurls":["cleverhans-lab~cleverhans~setup.py"]},{"index":106,"category":"ml","githuburl":"https://github.com/nicolashug/surprise","featured":null,"links":null,"description":null,"_repopath":"nicolashug/surprise","_reponame":"Surprise","_stars":5637,"_forks":963,"_watches":149,"_topics":["recommender","systems","recommendation","svd","matrix","factorization","machine-learning"],"_language":"Python","_homepage":"http://surpriselib.com","_description":"Surprise: A Python scikit for building and analyzing recommender systems","_organization":"nicolashug","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-31T00:00:00.000Z","_created_at":"2016-10-23T00:00:00.000Z","_age_weeks":321,"_stars_per_week":17.55,"_pop_contributor_count":44,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["centralesupelec","hirosystems"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":23,"_pop_closed_issues_count":12,"_pop_created_since_days":75,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":23.0,"_pop_comment_count":24.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":99,"_pop_score":41.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nicolashug/surprise/master/README.md","_readme_localurl":"nicolashug~surprise~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nicolashug/surprise/master/requirements.txt","https://raw.githubusercontent.com/nicolashug/surprise/master/setup.py"],"_requirements_localurls":["nicolashug~surprise~requirements.txt","nicolashug~surprise~setup.py"]},{"index":68,"category":"gamedev","githuburl":"https://github.com/pygame/pygame","featured":1.0,"links":null,"description":null,"_repopath":"pygame/pygame","_reponame":"pygame","_stars":5546,"_forks":2435,"_watches":160,"_topics":["python","pygame","sdl2","sdl","game-development","gamedev","game-dev"],"_language":"C","_homepage":"https://www.pygame.org","_description":"pygame: \ud83d\udc0d\ud83c\udfae pygame (the library) is a Free and Open Source python programming language library for making multimedia applications like games built on top of the excellent SDL library. C, Python, Native, OpenGL.","_organization":"pygame","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2017-03-26T00:00:00.000Z","_age_weeks":299,"_stars_per_week":18.54,"_pop_contributor_count":263,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.81,"_pop_updated_issues_count":342,"_pop_closed_issues_count":231,"_pop_created_since_days":70,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":342.0,"_pop_comment_count":571.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":806,"_pop_score":58.38,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pygame/pygame/master/README.rst","_readme_localurl":"pygame~pygame~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pygame/pygame/master/setup.py"],"_requirements_localurls":["pygame~pygame~setup.py"]},{"index":773,"category":"ml-dl","githuburl":"https://github.com/sanster/lama-cleaner","featured":null,"links":null,"description":null,"_repopath":"sanster/lama-cleaner","_reponame":"lama-cleaner","_stars":5506,"_forks":445,"_watches":47,"_topics":["inpainting","pytorch","lama","latent-diffusion","mat","zits","stable-diffusion"],"_language":"Python","_homepage":"","_description":"lama-cleaner: Image inpainting tool powered by SOTA AI Model. Remove any unwanted object, defect, people from your pictures or erase and replace(powered by stable diffusion) any thing on your pictures.","_organization":"sanster","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2021-11-15T00:00:00.000Z","_age_weeks":57,"_stars_per_week":96.6,"_pop_contributor_count":11,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["musixmatchdev"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.69,"_pop_updated_issues_count":105,"_pop_closed_issues_count":84,"_pop_created_since_days":13,"_pop_updated_since_days":0,"_pop_recent_releases_count":33,"_pop_recent_releases_estimated_tags":33,"_pop_recent_releases_adjusted_count":33,"_pop_issue_count":105.0,"_pop_comment_count":214.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":7,"_pop_score":40.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sanster/lama-cleaner/master/README.md","_readme_localurl":"sanster~lama-cleaner~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sanster/lama-cleaner/master/requirements.txt","https://raw.githubusercontent.com/sanster/lama-cleaner/master/setup.py"],"_requirements_localurls":["sanster~lama-cleaner~requirements.txt","sanster~lama-cleaner~setup.py"]},{"index":643,"category":"util","githuburl":"https://github.com/theskumar/python-dotenv","featured":null,"links":null,"description":null,"_repopath":"theskumar/python-dotenv","_reponame":"python-dotenv","_stars":5495,"_forks":353,"_watches":33,"_topics":["python","devops-tools","dotenv","12-factor-app","configuration","env","environment-variables"],"_language":"Python","_homepage":"https://saurabh-kumar.com/python-dotenv/","_description":"python-dotenv: Reads key-value pairs from a .env file and can set them as environment variables. It helps in developing applications following the 12-factor principles.","_organization":"theskumar","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-25T00:00:00.000Z","_created_at":"2014-09-06T00:00:00.000Z","_age_weeks":432,"_stars_per_week":12.71,"_pop_contributor_count":85,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["codiumteam","docker","fueled","latacora"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.69,"_pop_updated_issues_count":29,"_pop_closed_issues_count":14,"_pop_created_since_days":101,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":29.0,"_pop_comment_count":23.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":3185,"_pop_score":53.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/theskumar/python-dotenv/master/README.md","_readme_localurl":"theskumar~python-dotenv~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/theskumar/python-dotenv/master/requirements.txt","https://raw.githubusercontent.com/theskumar/python-dotenv/master/setup.py"],"_requirements_localurls":["theskumar~python-dotenv~requirements.txt","theskumar~python-dotenv~setup.py"]},{"index":682,"category":"diffusion","githuburl":"https://github.com/compvis/latent-diffusion","featured":null,"links":null,"description":null,"_repopath":"compvis/latent-diffusion","_reponame":"latent-diffusion","_stars":5488,"_forks":716,"_watches":71,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"latent-diffusion: High-Resolution Image Synthesis with Latent Diffusion Models","_organization":"compvis","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-07-26T00:00:00.000Z","_created_at":"2021-12-20T00:00:00.000Z","_age_weeks":52,"_stars_per_week":105.54,"_pop_contributor_count":5,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","runwayml"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":80,"_pop_closed_issues_count":14,"_pop_created_since_days":12,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":80.0,"_pop_comment_count":126.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":16,"_pop_score":26.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/compvis/latent-diffusion/master/README.md","_readme_localurl":"compvis~latent-diffusion~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/compvis/latent-diffusion/master/setup.py"],"_requirements_localurls":["compvis~latent-diffusion~setup.py"]},{"index":439,"category":"perf","githuburl":"https://github.com/mher/flower","featured":null,"links":null,"description":null,"_repopath":"mher/flower","_reponame":"flower","_stars":5485,"_forks":979,"_watches":144,"_topics":["celery","task-queue","monitoring","administration","workers","rabbitmq","redis","python","asynchronous"],"_language":"Python","_homepage":"https://flower.readthedocs.io","_description":"flower: Real-time monitor and web admin for Celery distributed task queue","_organization":"mher","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-14T00:00:00.000Z","_created_at":"2012-07-08T00:00:00.000Z","_age_weeks":545,"_stars_per_week":10.06,"_pop_contributor_count":196,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["robinhoodmarkets","zipsale"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.27,"_pop_updated_issues_count":31,"_pop_closed_issues_count":12,"_pop_created_since_days":127,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":31.0,"_pop_comment_count":41.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":364,"_pop_score":50.7,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mher/flower/master/README.rst","_readme_localurl":"mher~flower~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mher/flower/master/setup.py"],"_requirements_localurls":["mher~flower~setup.py"]},{"index":723,"category":"ml","githuburl":"https://github.com/py-why/dowhy","featured":null,"links":null,"description":null,"_repopath":"py-why/dowhy","_reponame":"dowhy","_stars":5478,"_forks":771,"_watches":136,"_topics":["causal-inference","machine-learning","graphical-models","bayesian-networks","data-science","python3","causality","causal-models","treatment-effects","do-calculus","causal-machine-learning"],"_language":"Python","_homepage":"https://www.pywhy.org/dowhy","_description":"DoWhy is a Python library for causal inference that supports explicit modeling and testing of causal assumptions. DoWhy is based on a unified language for causal inference, combining causal graphical models and potential outcomes frameworks. ","_organization":"py-why","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-05-31T00:00:00.000Z","_age_weeks":237,"_stars_per_week":23.06,"_pop_contributor_count":64,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon","barclaysib;columbia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.81,"_pop_updated_issues_count":191,"_pop_closed_issues_count":159,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":191.0,"_pop_comment_count":321.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":5,"_pop_score":47.82,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/py-why/dowhy/master/README.rst","_readme_localurl":"py-why~dowhy~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/py-why/dowhy/master/pyproject.toml"],"_requirements_localurls":["py-why~dowhy~pyproject.toml"]},{"index":193,"category":"util","githuburl":"https://github.com/pycqa/isort","featured":null,"links":null,"description":null,"_repopath":"pycqa/isort","_reponame":"isort","_stars":5429,"_forks":502,"_watches":42,"_topics":["auto-formatter","isort","sorting-imports","python-utility","cli","linter","cleaner","formatter","python","python3","hacktoberfest"],"_language":"Python","_homepage":"https://pycqa.github.io/isort/","_description":"isort: A Python utility / library to sort imports.","_organization":"pycqa","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2013-09-02T00:00:00.000Z","_age_weeks":485,"_stars_per_week":11.19,"_pop_contributor_count":271,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","pioneervalleybooks","stripe","swisscom"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.6,"_pop_updated_issues_count":124,"_pop_closed_issues_count":92,"_pop_created_since_days":113,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":124.0,"_pop_comment_count":106.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":9130,"_pop_score":65.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pycqa/isort/master/README.md","_readme_localurl":"pycqa~isort~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pycqa/isort/master/pyproject.toml"],"_requirements_localurls":["pycqa~isort~pyproject.toml"]},{"index":96,"category":"data","githuburl":"https://github.com/vi3k6i5/flashtext","featured":null,"links":null,"description":null,"_repopath":"vi3k6i5/flashtext","_reponame":"flashtext","_stars":5326,"_forks":597,"_watches":139,"_topics":["search-in-text","keyword-extraction","nlp","word2vec","data-extraction"],"_language":"Python","_homepage":null,"_description":"flashtext: Extract Keywords from sentence or Replace keywords in sentences.","_organization":"vi3k6i5","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-05-03T00:00:00.000Z","_created_at":"2017-08-15T00:00:00.000Z","_age_weeks":278,"_stars_per_week":19.1,"_pop_contributor_count":7,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["meta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":4,"_pop_closed_issues_count":0,"_pop_created_since_days":65,"_pop_updated_since_days":32,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":5,"_pop_score":18.52,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/vi3k6i5/flashtext/master/README.rst","_readme_localurl":"vi3k6i5~flashtext~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/vi3k6i5/flashtext/master/setup.py"],"_requirements_localurls":["vi3k6i5~flashtext~setup.py"]},{"index":579,"category":"ml","githuburl":"https://github.com/probml/pyprobml","featured":null,"links":null,"description":null,"_repopath":"probml/pyprobml","_reponame":"pyprobml","_stars":5282,"_forks":1249,"_watches":173,"_topics":["jupyter-notebooks","machine-learning","colab","pml","probabilistic-programming","jax","tensorflow","pytorch","pymc3","numpyro","flax","pyro","blackjax"],"_language":"Jupyter Notebook","_homepage":"","_description":"pyprobml: Python code for \"Probabilistic Machine learning\" book by Kevin Murphy","_organization":"probml","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2016-08-17T00:00:00.000Z","_age_weeks":330,"_stars_per_week":15.97,"_pop_contributor_count":66,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["collaborative,learning,andadaptiverobots(clear)","google","iitgandhinagar","indianinstituteofscience(iisc)","nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.58,"_pop_updated_issues_count":7,"_pop_closed_issues_count":6,"_pop_created_since_days":77,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":7.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":232,"_pop_score":50.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/probml/pyprobml/master/README.md","_readme_localurl":"probml~pyprobml~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/probml/pyprobml/master/requirements.txt","https://raw.githubusercontent.com/probml/pyprobml/master/pyproject.toml"],"_requirements_localurls":["probml~pyprobml~requirements.txt","probml~pyprobml~pyproject.toml"]},{"index":278,"category":"data","githuburl":"https://github.com/airbnb/knowledge-repo","featured":null,"links":null,"description":null,"_repopath":"airbnb/knowledge-repo","_reponame":"knowledge-repo","_stars":5238,"_forks":704,"_watches":180,"_topics":["data","data-science","knowledge","data-analysis"],"_language":"Python","_homepage":"","_description":"knowledge-repo: A next-generation curated knowledge sharing platform for data scientists and other technical professions.","_organization":"airbnb","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2016-08-17T00:00:00.000Z","_age_weeks":330,"_stars_per_week":15.84,"_pop_contributor_count":69,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["airbnb","datascientistatnetflix"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.25,"_pop_updated_issues_count":17,"_pop_closed_issues_count":13,"_pop_created_since_days":77,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":17.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":16,"_pop_score":43.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/airbnb/knowledge-repo/master/README.md","_readme_localurl":"airbnb~knowledge-repo~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/airbnb/knowledge-repo/master/requirements.txt","https://raw.githubusercontent.com/airbnb/knowledge-repo/master/setup.py"],"_requirements_localurls":["airbnb~knowledge-repo~requirements.txt","airbnb~knowledge-repo~setup.py"]},{"index":283,"category":"util","githuburl":"https://github.com/sdispater/pendulum","featured":null,"links":null,"description":null,"_repopath":"sdispater/pendulum","_reponame":"pendulum","_stars":5226,"_forks":312,"_watches":63,"_topics":["python","datetime","date","time","python3","timezones"],"_language":"Python","_homepage":"https://pendulum.eustace.io","_description":"pendulum: Python datetimes made easy","_organization":"sdispater","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2016-06-27T00:00:00.000Z","_age_weeks":338,"_stars_per_week":15.46,"_pop_contributor_count":87,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["stxnext"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.75,"_pop_updated_issues_count":39,"_pop_closed_issues_count":15,"_pop_created_since_days":79,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":39.0,"_pop_comment_count":28.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":60,"_pop_score":41.09,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sdispater/pendulum/master/README.rst","_readme_localurl":"sdispater~pendulum~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sdispater/pendulum/master/pyproject.toml"],"_requirements_localurls":["sdispater~pendulum~pyproject.toml"]},{"index":632,"category":"util","githuburl":"https://github.com/pyca/cryptography","featured":null,"links":null,"description":null,"_repopath":"pyca/cryptography","_reponame":"cryptography","_stars":5220,"_forks":1103,"_watches":119,"_topics":["python","cryptography"],"_language":"Python","_homepage":"https://cryptography.io","_description":"cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.","_organization":"pyca","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2013-08-07T00:00:00.000Z","_age_weeks":488,"_stars_per_week":10.68,"_pop_contributor_count":275,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["purple-dot"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.67,"_pop_updated_issues_count":380,"_pop_closed_issues_count":359,"_pop_created_since_days":114,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":380.0,"_pop_comment_count":341.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":11167,"_pop_score":67.29,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyca/cryptography/master/README.rst","_readme_localurl":"pyca~cryptography~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyca/cryptography/master/setup.py","https://raw.githubusercontent.com/pyca/cryptography/master/pyproject.toml"],"_requirements_localurls":["pyca~cryptography~setup.py","pyca~cryptography~pyproject.toml"]},{"index":538,"category":"nlp","githuburl":"https://github.com/nvidia/nemo","featured":null,"links":null,"description":null,"_repopath":"nvidia/nemo","_reponame":"NeMo","_stars":5219,"_forks":1294,"_watches":138,"_topics":["deep-learning","speech-recognition","nlp","nlp-machine-learning","neural-network","machine-translation","speech-synthesis","speech-to-text","text-to-speech","nmt","language-model","speaker-diarization","speaker-recognition","text-normalization","asr","tts"],"_language":"Python","_homepage":"https://nvidia.github.io/NeMo/","_description":"NeMo: a toolkit for conversational AI","_organization":"nvidia","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2019-08-05T00:00:00.000Z","_age_weeks":176,"_stars_per_week":29.65,"_pop_contributor_count":193,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nvidia","nyu,nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":18.9,"_pop_updated_issues_count":833,"_pop_closed_issues_count":753,"_pop_created_since_days":41,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":833.0,"_pop_comment_count":1535.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":885,"_pop_score":64.8,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/nvidia/nemo/master/README.rst","_readme_localurl":"nvidia~nemo~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nvidia/nemo/master/setup.py"],"_requirements_localurls":["nvidia~nemo~setup.py"]},{"index":511,"category":"ml","githuburl":"https://github.com/google/automl","featured":null,"links":null,"description":null,"_repopath":"google/automl","_reponame":"automl","_stars":5211,"_forks":1382,"_watches":150,"_topics":["automl","efficientdet","object-detection","efficientnet","efficientnetv2"],"_language":"Jupyter Notebook","_homepage":"","_description":"automl: Google Brain AutoML","_organization":"google","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-10-09T00:00:00.000Z","_created_at":"2020-03-12T00:00:00.000Z","_age_weeks":144,"_stars_per_week":36.04,"_pop_contributor_count":37,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amd","google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":13,"_pop_closed_issues_count":3,"_pop_created_since_days":34,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":13.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":959,"_pop_score":39.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/automl/master/README.md","_readme_localurl":"google~automl~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":434,"category":"util","githuburl":"https://github.com/scikit-image/scikit-image","featured":null,"links":null,"description":null,"_repopath":"scikit-image/scikit-image","_reponame":"scikit-image","_stars":5172,"_forks":2076,"_watches":187,"_topics":["image-processing","python","computer-vision","hacktoberfest","closember"],"_language":"Python","_homepage":"https://scikit-image.org","_description":"scikit-image: Image processing in Python","_organization":"scikit-image","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2011-07-07T00:00:00.000Z","_age_weeks":597,"_stars_per_week":8.66,"_pop_contributor_count":586,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["biomedicinediscoveryinstitute,monashuniversity","microsoft","mongodb","nvidia","universityofcalifornia,berkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.21,"_pop_updated_issues_count":376,"_pop_closed_issues_count":226,"_pop_created_since_days":139,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":377.0,"_pop_comment_count":566.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":779,"_pop_score":66.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scikit-image/scikit-image/master/README.md","_readme_localurl":"scikit-image~scikit-image~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scikit-image/scikit-image/master/requirements.txt","https://raw.githubusercontent.com/scikit-image/scikit-image/master/setup.py","https://raw.githubusercontent.com/scikit-image/scikit-image/master/pyproject.toml"],"_requirements_localurls":["scikit-image~scikit-image~requirements.txt","scikit-image~scikit-image~setup.py","scikit-image~scikit-image~pyproject.toml"]},{"index":3,"category":"ml","githuburl":"https://github.com/awslabs/autogluon","featured":null,"links":null,"description":null,"_repopath":"awslabs/autogluon","_reponame":"autogluon","_stars":5160,"_forks":674,"_watches":94,"_topics":["automl","machine-learning","data-science","deep-learning","ensemble-learning","image-classification","computer-vision","natural-language-processing","structured-data","object-detection","gluon","transfer-learning","pytorch","automated-machine-learning","scikit-learn","autogluon","tabular-data","hyperparameter-optimization","time-series","forecasting"],"_language":"Python","_homepage":"https://auto.gluon.ai/","_description":"AutoGluon: AutoML for Image, Text, Time Series, and Tabular Data","_organization":"awslabs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2019-07-29T00:00:00.000Z","_age_weeks":177,"_stars_per_week":29.15,"_pop_contributor_count":96,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon","amazonai","amazonwebservices","awsai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.71,"_pop_updated_issues_count":481,"_pop_closed_issues_count":353,"_pop_created_since_days":41,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":481.0,"_pop_comment_count":972.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":56,"_pop_score":58.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/awslabs/autogluon/master/README.md","_readme_localurl":"awslabs~autogluon~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/awslabs/autogluon/master/pyproject.toml"],"_requirements_localurls":["awslabs~autogluon~pyproject.toml"]},{"index":880,"category":"time-series","githuburl":"https://github.com/unit8co/darts","featured":null,"links":null,"description":null,"_repopath":"unit8co/darts","_reponame":"darts","_stars":5138,"_forks":557,"_watches":41,"_topics":["python","time-series","forecasting","machine-learning","deep-learning"],"_language":"Python","_homepage":"https://unit8co.github.io/darts/","_description":"darts: A python library for easy manipulation and forecasting of time series.","_organization":"unit8co","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-09-13T00:00:00.000Z","_age_weeks":222,"_stars_per_week":23.08,"_pop_contributor_count":73,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["unit8co","unit8sa"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.38,"_pop_updated_issues_count":278,"_pop_closed_issues_count":166,"_pop_created_since_days":52,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":278.0,"_pop_comment_count":419.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":13,"_pop_score":50.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/unit8co/darts/master/README.md","_readme_localurl":"unit8co~darts~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/unit8co/darts/master/setup.py","https://raw.githubusercontent.com/unit8co/darts/master/pyproject.toml"],"_requirements_localurls":["unit8co~darts~setup.py","unit8co~darts~pyproject.toml"]},{"index":546,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/mmf","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/mmf","_reponame":"mmf","_stars":5093,"_forks":899,"_watches":117,"_topics":["pytorch","vqa","pretrained-models","multimodal","deep-learning","captioning","dialog","textvqa","hateful-memes","multi-tasking"],"_language":"Python","_homepage":"https://mmf.sh/","_description":"mmf: A modular framework for vision & language multimodal research from Facebook AI Research (FAIR)","_organization":"facebookresearch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2018-06-27T00:00:00.000Z","_age_weeks":233,"_stars_per_week":21.79,"_pop_contributor_count":107,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["metaai","researchhuggingface,contributorjquery,pastfacebookresearch","uwstudent"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.83,"_pop_updated_issues_count":18,"_pop_closed_issues_count":2,"_pop_created_since_days":54,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":18.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":3572,"_pop_score":51.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/mmf/master/README.md","_readme_localurl":"facebookresearch~mmf~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/mmf/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/mmf/master/setup.py","https://raw.githubusercontent.com/facebookresearch/mmf/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~mmf~requirements.txt","facebookresearch~mmf~setup.py","facebookresearch~mmf~pyproject.toml"]},{"index":352,"category":"ml-ops","githuburl":"https://github.com/activeloopai/hub","featured":null,"links":null,"description":null,"_repopath":"activeloopai/hub","_reponame":"deeplake","_stars":5093,"_forks":412,"_watches":66,"_topics":["datasets","deep-learning","machine-learning","data-science","pytorch","tensorflow","data-version-control","python","ai","ml","mlops","computer-vision","cv","data-processing","image-processing","data-centric","jupyter-notebook","datalake","lakehouse"],"_language":"Python","_homepage":"https://activeloop.ai","_description":"deeplake: Data Lake for Deep Learning. Build, manage, query, version, & visualize datasets. Stream data real-time to PyTorch/TensorFlow. https://activeloop.ai ","_organization":"activeloopai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-08-09T00:00:00.000Z","_age_weeks":175,"_stars_per_week":29.03,"_pop_contributor_count":109,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["activeloop"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":23.83,"_pop_updated_issues_count":202,"_pop_closed_issues_count":178,"_pop_created_since_days":41,"_pop_updated_since_days":0,"_pop_recent_releases_count":47,"_pop_recent_releases_estimated_tags":30,"_pop_recent_releases_adjusted_count":47,"_pop_issue_count":202.0,"_pop_comment_count":254.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":242,"_pop_score":57.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/activeloopai/hub/master/README.md","_readme_localurl":"activeloopai~hub~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/activeloopai/hub/master/requirements.txt","https://raw.githubusercontent.com/activeloopai/hub/master/setup.py"],"_requirements_localurls":["activeloopai~hub~requirements.txt","activeloopai~hub~setup.py"]},{"index":161,"category":"ml","githuburl":"https://github.com/wandb/client","featured":null,"links":null,"description":null,"_repopath":"wandb/client","_reponame":"wandb","_stars":5078,"_forks":387,"_watches":38,"_topics":["machine-learning","experiment-track","deep-learning","keras","tensorflow","pytorch","hyperparameter-search","reinforcement-learning","mlops","data-science","collaboration","hyperparameter-optimization","reproducibility","hyperparameter-tuning","data-versioning","model-versioning","ml-platform"],"_language":"Python","_homepage":"https://wandb.ai","_description":"wandb: \ud83d\udd25 A tool for visualizing and tracking your machine learning experiments. This repo contains the CLI and Python API.","_organization":"wandb","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2017-03-24T00:00:00.000Z","_age_weeks":299,"_stars_per_week":16.96,"_pop_contributor_count":135,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["crowdflower.com","weightsandbiases"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.27,"_pop_updated_issues_count":692,"_pop_closed_issues_count":325,"_pop_created_since_days":70,"_pop_updated_since_days":0,"_pop_recent_releases_count":26,"_pop_recent_releases_estimated_tags":21,"_pop_recent_releases_adjusted_count":26,"_pop_issue_count":692.0,"_pop_comment_count":1398.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":363,"_pop_score":63.32,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/wandb/client/master/README.md","_readme_localurl":"wandb~client~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/wandb/client/master/requirements.txt","https://raw.githubusercontent.com/wandb/client/master/setup.py","https://raw.githubusercontent.com/wandb/client/master/pyproject.toml"],"_requirements_localurls":["wandb~client~requirements.txt","wandb~client~setup.py","wandb~client~pyproject.toml"]},{"index":301,"category":"data","githuburl":"https://github.com/kaggle/kaggle-api","featured":null,"links":null,"description":null,"_repopath":"kaggle/kaggle-api","_reponame":"kaggle-api","_stars":5073,"_forks":978,"_watches":188,"_topics":[],"_language":"Python","_homepage":"","_description":"kaggle-api: Official Kaggle API","_organization":"kaggle","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-03-15T00:00:00.000Z","_created_at":"2018-01-25T00:00:00.000Z","_age_weeks":255,"_stars_per_week":19.85,"_pop_contributor_count":36,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":37,"_pop_closed_issues_count":7,"_pop_created_since_days":60,"_pop_updated_since_days":21,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":37.0,"_pop_comment_count":41.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":27,"_pop_score":28.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kaggle/kaggle-api/master/README.md","_readme_localurl":"kaggle~kaggle-api~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kaggle/kaggle-api/master/setup.py"],"_requirements_localurls":["kaggle~kaggle-api~setup.py"]},{"index":81,"category":"util","githuburl":"https://github.com/sphinx-doc/sphinx","featured":null,"links":null,"description":null,"_repopath":"sphinx-doc/sphinx","_reponame":"sphinx","_stars":5056,"_forks":1812,"_watches":140,"_topics":["python","documentation","documentation-tool","sphinx","markdown","restructuredtext"],"_language":"Python","_homepage":"https://www.sphinx-doc.org/","_description":"sphinx: The Sphinx documentation generator","_organization":"sphinx-doc","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2015-01-02T00:00:00.000Z","_age_weeks":415,"_stars_per_week":12.17,"_pop_contributor_count":759,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["beproud","fzj\u00fclich","timeintermedia(timedia)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.21,"_pop_updated_issues_count":1262,"_pop_closed_issues_count":297,"_pop_created_since_days":97,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":31,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":1262.0,"_pop_comment_count":578.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":18396,"_pop_score":74.04,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sphinx-doc/sphinx/master/README.rst","_readme_localurl":"sphinx-doc~sphinx~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sphinx-doc/sphinx/master/pyproject.toml"],"_requirements_localurls":["sphinx-doc~sphinx~pyproject.toml"]},{"index":279,"category":"jupyter","githuburl":"https://github.com/nteract/papermill","featured":null,"links":null,"description":null,"_repopath":"nteract/papermill","_reponame":"papermill","_stars":5037,"_forks":379,"_watches":91,"_topics":["jupyter","notebooks","notebook-generator","nteract","publishing","pipeline","notebook","python","r","julia","scala"],"_language":"Python","_homepage":"http://papermill.readthedocs.io/en/latest/","_description":"papermill: \ud83d\udcda Parameterize, execute, and analyze notebooks","_organization":"nteract","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-10-18T00:00:00.000Z","_created_at":"2017-07-06T00:00:00.000Z","_age_weeks":284,"_stars_per_week":17.7,"_pop_contributor_count":108,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["netflix","noteable-io","willingconsulting"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.77,"_pop_updated_issues_count":36,"_pop_closed_issues_count":19,"_pop_created_since_days":66,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":36.0,"_pop_comment_count":56.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":106,"_pop_score":50.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nteract/papermill/master/README.md","_readme_localurl":"nteract~papermill~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nteract/papermill/master/requirements.txt","https://raw.githubusercontent.com/nteract/papermill/master/setup.py","https://raw.githubusercontent.com/nteract/papermill/master/pyproject.toml"],"_requirements_localurls":["nteract~papermill~requirements.txt","nteract~papermill~setup.py","nteract~papermill~pyproject.toml"]},{"index":214,"category":"nlp","githuburl":"https://github.com/speechbrain/speechbrain","featured":null,"links":null,"description":null,"_repopath":"speechbrain/speechbrain","_reponame":"speechbrain","_stars":5021,"_forks":974,"_watches":110,"_topics":["speech-recognition","speech-toolkit","speaker-recognition","speech-to-text","speech-enhancement","speech-separation","audio","audio-processing","speech-processing","speechrecognition","asr","voice-recognition","spoken-language-understanding","speaker-diarization","speaker-verification","pytorch","huggingface","transformers","language-model","deep-learning"],"_language":"Python","_homepage":"http://speechbrain.github.io","_description":"speechbrain: A PyTorch-based Speech Toolkit","_organization":"speechbrain","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2020-04-28T00:00:00.000Z","_age_weeks":137,"_stars_per_week":36.42,"_pop_contributor_count":194,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["jpmorganchase","mit","samsung","universityofmontreal"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":17.15,"_pop_updated_issues_count":271,"_pop_closed_issues_count":185,"_pop_created_since_days":32,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":271.0,"_pop_comment_count":521.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":1683,"_pop_score":63.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/speechbrain/speechbrain/master/README.md","_readme_localurl":"speechbrain~speechbrain~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/speechbrain/speechbrain/master/requirements.txt","https://raw.githubusercontent.com/speechbrain/speechbrain/master/setup.py","https://raw.githubusercontent.com/speechbrain/speechbrain/master/pyproject.toml"],"_requirements_localurls":["speechbrain~speechbrain~requirements.txt","speechbrain~speechbrain~setup.py","speechbrain~speechbrain~pyproject.toml"]},{"index":404,"category":"perf","githuburl":"https://github.com/python-trio/trio","featured":null,"links":null,"description":null,"_repopath":"python-trio/trio","_reponame":"trio","_stars":5017,"_forks":290,"_watches":88,"_topics":["python","async","async-await","networking","io","trio","structured-concurrency"],"_language":"Python","_homepage":"https://trio.readthedocs.io","_description":"Trio \u2013 a friendly Python library for async concurrency and I/O","_organization":"python-trio","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2017-01-16T00:00:00.000Z","_age_weeks":309,"_stars_per_week":16.24,"_pop_contributor_count":138,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["elastic","hudsonrivertrading"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.5,"_pop_updated_issues_count":128,"_pop_closed_issues_count":97,"_pop_created_since_days":72,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":128.0,"_pop_comment_count":226.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":503,"_pop_score":57.9,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/python-trio/trio/master/README.rst","_readme_localurl":"python-trio~trio~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-trio/trio/master/setup.py","https://raw.githubusercontent.com/python-trio/trio/master/pyproject.toml"],"_requirements_localurls":["python-trio~trio~setup.py","python-trio~trio~pyproject.toml"]},{"index":605,"category":"jupyter","githuburl":"https://github.com/connorferster/handcalcs","featured":null,"links":null,"description":null,"_repopath":"connorferster/handcalcs","_reponame":"handcalcs","_stars":4989,"_forks":389,"_watches":76,"_topics":[],"_language":"CSS","_homepage":null,"_description":"handcalcs: Python library for converting Python calculations into rendered latex.","_organization":"connorferster","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-28T00:00:00.000Z","_created_at":"2020-02-19T00:00:00.000Z","_age_weeks":147,"_stars_per_week":33.77,"_pop_contributor_count":11,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["applemontechnologies","christianclauss","clearcalcs","rjc-development"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.98,"_pop_updated_issues_count":19,"_pop_closed_issues_count":5,"_pop_created_since_days":34,"_pop_updated_since_days":3,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":19.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":13,"_pop_score":34.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/connorferster/handcalcs/master/README.md","_readme_localurl":"connorferster~handcalcs~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/connorferster/handcalcs/master/requirements.txt","https://raw.githubusercontent.com/connorferster/handcalcs/master/pyproject.toml"],"_requirements_localurls":["connorferster~handcalcs~requirements.txt","connorferster~handcalcs~pyproject.toml"]},{"index":686,"category":"util","githuburl":"https://github.com/py-pdf/pypdf2","featured":null,"links":null,"description":null,"_repopath":"py-pdf/pypdf2","_reponame":"PyPDF2","_stars":4988,"_forks":1143,"_watches":139,"_topics":["pypdf2","pdf","python","pdf-parser","pdf-parsing","pdf-manipulation","pdf-documents","help-wanted"],"_language":"Python","_homepage":"https://pypdf2.readthedocs.io/en/latest/","_description":"PyPDF2: A pure-python PDF library capable of splitting, merging, cropping, and transforming the pages of PDF files","_organization":"py-pdf","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2012-01-06T00:00:00.000Z","_age_weeks":571,"_stars_per_week":8.73,"_pop_contributor_count":160,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["popsql"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.06,"_pop_updated_issues_count":157,"_pop_closed_issues_count":121,"_pop_created_since_days":133,"_pop_updated_since_days":0,"_pop_recent_releases_count":47,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":47,"_pop_issue_count":157.0,"_pop_comment_count":492.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.1,"_pop_dependents_count":628,"_pop_score":63.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/py-pdf/pypdf2/master/README.md","_readme_localurl":"py-pdf~pypdf2~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/py-pdf/pypdf2/master/pyproject.toml"],"_requirements_localurls":["py-pdf~pypdf2~pyproject.toml"]},{"index":652,"category":"profiling","githuburl":"https://github.com/joerick/pyinstrument","featured":null,"links":null,"description":null,"_repopath":"joerick/pyinstrument","_reponame":"pyinstrument","_stars":4954,"_forks":217,"_watches":52,"_topics":["python","django","profiler","performance","profile","async"],"_language":"Python","_homepage":"https://pyinstrument.readthedocs.io/","_description":"pyinstrument: \ud83d\udeb4\u00a0Call stack profiler for Python. Shows you why your code is slow!","_organization":"joerick","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2014-03-13T00:00:00.000Z","_age_weeks":457,"_stars_per_week":10.83,"_pop_contributor_count":47,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datadog,formerlyllnl","flycode-org","jpmorgan","nordprojects"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.92,"_pop_updated_issues_count":47,"_pop_closed_issues_count":39,"_pop_created_since_days":107,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":47.0,"_pop_comment_count":51.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":30,"_pop_score":49.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/joerick/pyinstrument/master/README.md","_readme_localurl":"joerick~pyinstrument~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/joerick/pyinstrument/master/setup.py","https://raw.githubusercontent.com/joerick/pyinstrument/master/pyproject.toml"],"_requirements_localurls":["joerick~pyinstrument~setup.py","joerick~pyinstrument~pyproject.toml"]},{"index":471,"category":"util","githuburl":"https://github.com/parthjadhav/tkinter-designer","featured":null,"links":null,"description":null,"_repopath":"parthjadhav/tkinter-designer","_reponame":"Tkinter-Designer","_stars":4944,"_forks":470,"_watches":51,"_topics":["tkinter","tkinter-gui","tkinter-python","tkinter-graphic-interface","python3","tkinter-widgets","gui-application","python-script","drag-and-drop","easy","easy-to-use","fast","gui","tkinter-designer","figma","python","automatic","collaborate","learn","hacktoberfest"],"_language":"Python","_homepage":"","_description":"Tkinter-Designer: An easy and fast way to create a Python GUI \ud83d\udc0d","_organization":"parthjadhav","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2021-05-18T00:00:00.000Z","_age_weeks":82,"_stars_per_week":59.67,"_pop_contributor_count":33,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoftazure","xd2sketch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.02,"_pop_updated_issues_count":48,"_pop_closed_issues_count":30,"_pop_created_since_days":19,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":48.0,"_pop_comment_count":42.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":15,"_pop_score":37.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/parthjadhav/tkinter-designer/master/README.md","_readme_localurl":"parthjadhav~tkinter-designer~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/parthjadhav/tkinter-designer/master/requirements.txt","https://raw.githubusercontent.com/parthjadhav/tkinter-designer/master/pyproject.toml"],"_requirements_localurls":["parthjadhav~tkinter-designer~requirements.txt","parthjadhav~tkinter-designer~pyproject.toml"]},{"index":552,"category":"ml","githuburl":"https://github.com/open-mmlab/mmsegmentation","featured":null,"links":null,"description":null,"_repopath":"open-mmlab/mmsegmentation","_reponame":"mmsegmentation","_stars":4927,"_forks":1821,"_watches":51,"_topics":["semantic-segmentation","pytorch","pspnet","deeplabv3","transformer","swin-transformer","realtime-segmentation","vessel-segmentation","retinal-vessel-segmentation","image-segmentation","medical-image-segmentation"],"_language":"Python","_homepage":"https://mmsegmentation.readthedocs.io/en/latest/","_description":"mmsegmentation: OpenMMLab Semantic Segmentation Toolbox and Benchmark.","_organization":"open-mmlab","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2020-06-14T00:00:00.000Z","_age_weeks":131,"_stars_per_week":37.57,"_pop_contributor_count":127,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["open-mmlab,shanghaiailaboratory","openmmlab","ucsd"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.42,"_pop_updated_issues_count":403,"_pop_closed_issues_count":300,"_pop_created_since_days":31,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":403.0,"_pop_comment_count":797.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":229,"_pop_score":59.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-mmlab/mmsegmentation/master/README.md","_readme_localurl":"open-mmlab~mmsegmentation~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/open-mmlab/mmsegmentation/master/requirements.txt","https://raw.githubusercontent.com/open-mmlab/mmsegmentation/master/setup.py"],"_requirements_localurls":["open-mmlab~mmsegmentation~requirements.txt","open-mmlab~mmsegmentation~setup.py"]},{"index":15,"category":"ml-dl","githuburl":"https://github.com/skorch-dev/skorch","featured":null,"links":null,"description":null,"_repopath":"skorch-dev/skorch","_reponame":"skorch","_stars":4891,"_forks":330,"_watches":81,"_topics":["scikit-learn","pytorch","machine-learning","hacktoberfest"],"_language":"Jupyter Notebook","_homepage":"","_description":"skorch: A scikit-learn compatible neural network library that wraps PyTorch","_organization":"skorch-dev","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2017-07-18T00:00:00.000Z","_age_weeks":282,"_stars_per_week":17.29,"_pop_contributor_count":52,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aeolusrobotics","ottogroupbi","quansight-labs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.06,"_pop_updated_issues_count":40,"_pop_closed_issues_count":32,"_pop_created_since_days":66,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":40.0,"_pop_comment_count":92.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":14,"_pop_score":46.18,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/skorch-dev/skorch/master/README.rst","_readme_localurl":"skorch-dev~skorch~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/skorch-dev/skorch/master/requirements.txt","https://raw.githubusercontent.com/skorch-dev/skorch/master/setup.py"],"_requirements_localurls":["skorch-dev~skorch~requirements.txt","skorch-dev~skorch~setup.py"]},{"index":569,"category":"ml","githuburl":"https://github.com/mdbloice/augmentor","featured":null,"links":null,"description":null,"_repopath":"mdbloice/augmentor","_reponame":"Augmentor","_stars":4841,"_forks":852,"_watches":123,"_topics":["augmentation","machine-learning","deep-learning","neural-networks"],"_language":"Python","_homepage":"https://augmentor.readthedocs.io/en/stable","_description":"Augmentor: Image augmentation library in Python for machine learning.","_organization":"mdbloice","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-09-23T00:00:00.000Z","_created_at":"2016-03-01T00:00:00.000Z","_age_weeks":354,"_stars_per_week":13.64,"_pop_contributor_count":22,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["medicaluniversitygraz"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.17,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":83,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":68,"_pop_score":33.28,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mdbloice/augmentor/master/README.md","_readme_localurl":"mdbloice~augmentor~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mdbloice/augmentor/master/requirements.txt","https://raw.githubusercontent.com/mdbloice/augmentor/master/setup.py"],"_requirements_localurls":["mdbloice~augmentor~requirements.txt","mdbloice~augmentor~setup.py"]},{"index":169,"category":"nlp","githuburl":"https://github.com/minimaxir/textgenrnn","featured":null,"links":null,"description":null,"_repopath":"minimaxir/textgenrnn","_reponame":"textgenrnn","_stars":4825,"_forks":753,"_watches":138,"_topics":["keras","deep-learning","text-generation","tensorflow","python"],"_language":"Python","_homepage":"","_description":"textgenrnn: Easily train your own text-generating neural network of any size and complexity on any text dataset with a few lines of code.","_organization":"minimaxir","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-07-14T00:00:00.000Z","_created_at":"2017-08-07T00:00:00.000Z","_age_weeks":280,"_stars_per_week":17.23,"_pop_contributor_count":19,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["buzzfeed","valohai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":10,"_pop_closed_issues_count":6,"_pop_created_since_days":65,"_pop_updated_since_days":30,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":10.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":4,"_pop_score":24.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/minimaxir/textgenrnn/master/README.md","_readme_localurl":"minimaxir~textgenrnn~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/minimaxir/textgenrnn/master/requirements.txt","https://raw.githubusercontent.com/minimaxir/textgenrnn/master/setup.py"],"_requirements_localurls":["minimaxir~textgenrnn~requirements.txt","minimaxir~textgenrnn~setup.py"]},{"index":784,"category":"diffusion","githuburl":"https://github.com/xavierxiao/dreambooth-stable-diffusion","featured":null,"links":null,"description":null,"_repopath":"xavierxiao/dreambooth-stable-diffusion","_reponame":"Dreambooth-Stable-Diffusion","_stars":4801,"_forks":521,"_watches":73,"_topics":["pytorch","pytorch-lightning","stable-diffusion","text-to-image"],"_language":"Jupyter Notebook","_homepage":"","_description":"Dreambooth-Stable-Diffusion: Implementation of Dreambooth (https://arxiv.org/abs/2208.12242) with Stable Diffusion","_organization":"xavierxiao","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-21T00:00:00.000Z","_created_at":"2022-09-06T00:00:00.000Z","_age_weeks":14,"_stars_per_week":323.14,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["universityofchicago"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":100,"_pop_closed_issues_count":13,"_pop_created_since_days":3,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":100.0,"_pop_comment_count":234.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":15,"_pop_score":21.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/xavierxiao/dreambooth-stable-diffusion/master/README.md","_readme_localurl":"xavierxiao~dreambooth-stable-diffusion~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/xavierxiao/dreambooth-stable-diffusion/master/setup.py"],"_requirements_localurls":["xavierxiao~dreambooth-stable-diffusion~setup.py"]},{"index":661,"category":"study","githuburl":"https://github.com/udacity/deep-learning-v2-pytorch","featured":null,"links":null,"description":null,"_repopath":"udacity/deep-learning-v2-pytorch","_reponame":"deep-learning-v2-pytorch","_stars":4793,"_forks":5176,"_watches":172,"_topics":["deep-learning","neural-network","convolutional-networks","pytorch","recurrent-networks","style-transfer","sentiment-analysis"],"_language":"Jupyter Notebook","_homepage":null,"_description":"deep-learning-v2-pytorch: Projects and exercises for the latest Deep Learning ND program https://www.udacity.com/course/deep-learning-nanodegree--nd101","_organization":"udacity","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-03T00:00:00.000Z","_created_at":"2018-09-04T00:00:00.000Z","_age_weeks":223,"_stars_per_week":21.41,"_pop_contributor_count":97,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bardeen","lumafield","udacity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":52,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":1469,"_pop_score":40.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/udacity/deep-learning-v2-pytorch/master/README.md","_readme_localurl":"udacity~deep-learning-v2-pytorch~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/udacity/deep-learning-v2-pytorch/master/requirements.txt"],"_requirements_localurls":["udacity~deep-learning-v2-pytorch~requirements.txt"]},{"index":380,"category":"data","githuburl":"https://github.com/alirezamika/autoscraper","featured":null,"links":null,"description":null,"_repopath":"alirezamika/autoscraper","_reponame":"autoscraper","_stars":4781,"_forks":510,"_watches":125,"_topics":["scraping","scraper","scrape","webscraping","crawler","web-scraping","ai","artificial-intelligence","python","webautomation","automation","machine-learning"],"_language":"Python","_homepage":"","_description":"autoscraper: A Smart, Automatic, Fast and Lightweight Web Scraper for Python","_organization":"alirezamika","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-07-17T00:00:00.000Z","_created_at":"2020-08-31T00:00:00.000Z","_age_weeks":120,"_stars_per_week":39.84,"_pop_contributor_count":8,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cognitifai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":6,"_pop_closed_issues_count":4,"_pop_created_since_days":28,"_pop_updated_since_days":5,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":6.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":20.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alirezamika/autoscraper/master/README.md","_readme_localurl":"alirezamika~autoscraper~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/alirezamika/autoscraper/master/setup.py"],"_requirements_localurls":["alirezamika~autoscraper~setup.py"]},{"index":223,"category":"nlp","githuburl":"https://github.com/kingoflolz/mesh-transformer-jax","featured":1.0,"links":null,"description":null,"_repopath":"kingoflolz/mesh-transformer-jax","_reponame":"mesh-transformer-jax","_stars":4763,"_forks":673,"_watches":82,"_topics":[],"_language":"Python","_homepage":"","_description":"mesh-transformer-jax: Model parallel transformers in JAX and Haiku","_organization":"kingoflolz","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-01-28T00:00:00.000Z","_created_at":"2021-03-13T00:00:00.000Z","_age_weeks":92,"_stars_per_week":51.61,"_pop_contributor_count":23,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":13,"_pop_closed_issues_count":2,"_pop_created_since_days":22,"_pop_updated_since_days":11,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":13.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":7,"_pop_score":19.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/README.md","_readme_localurl":"kingoflolz~mesh-transformer-jax~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/requirements.txt","https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/setup.py"],"_requirements_localurls":["kingoflolz~mesh-transformer-jax~requirements.txt","kingoflolz~mesh-transformer-jax~setup.py"]},{"index":181,"category":"security","githuburl":"https://github.com/pycqa/bandit","featured":null,"links":null,"description":null,"_repopath":"pycqa/bandit","_reponame":"bandit","_stars":4744,"_forks":493,"_watches":62,"_topics":["linter","bandit","security-tools","security-scanner","security","static-code-analysis","python"],"_language":"Python","_homepage":"https://bandit.readthedocs.io","_description":"Bandit is a tool designed to find common security issues in Python code.","_organization":"pycqa","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-28T00:00:00.000Z","_created_at":"2018-04-26T00:00:00.000Z","_age_weeks":242,"_stars_per_week":19.56,"_pop_contributor_count":160,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["redhat,inc","securesauce"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.08,"_pop_updated_issues_count":31,"_pop_closed_issues_count":10,"_pop_created_since_days":57,"_pop_updated_since_days":2,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":31.0,"_pop_comment_count":49.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":1216,"_pop_score":51.93,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pycqa/bandit/master/README.rst","_readme_localurl":"pycqa~bandit~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pycqa/bandit/master/requirements.txt","https://raw.githubusercontent.com/pycqa/bandit/master/setup.py"],"_requirements_localurls":["pycqa~bandit~requirements.txt","pycqa~bandit~setup.py"]},{"index":642,"category":"util","githuburl":"https://github.com/pycqa/pycodestyle","featured":null,"links":null,"description":null,"_repopath":"pycqa/pycodestyle","_reponame":"pycodestyle","_stars":4742,"_forks":685,"_watches":119,"_topics":["python","pep8","styleguide","style-guide","linter-plugin","linter-flake8","flake8-plugin"],"_language":"Python","_homepage":"https://pycodestyle.pycqa.org","_description":"pycodestyle: Simple Python style checker in one Python file","_organization":"pycqa","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2009-10-02T00:00:00.000Z","_age_weeks":689,"_stars_per_week":6.88,"_pop_contributor_count":131,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["llnl","tableau&salesforce"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.88,"_pop_updated_issues_count":37,"_pop_closed_issues_count":36,"_pop_created_since_days":161,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":37.0,"_pop_comment_count":41.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":2936,"_pop_score":56.66,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pycqa/pycodestyle/master/README.rst","_readme_localurl":"pycqa~pycodestyle~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pycqa/pycodestyle/master/setup.py"],"_requirements_localurls":["pycqa~pycodestyle~setup.py"]},{"index":687,"category":"util","githuburl":"https://github.com/bndr/pipreqs","featured":null,"links":null,"description":null,"_repopath":"bndr/pipreqs","_reponame":"pipreqs","_stars":4741,"_forks":319,"_watches":59,"_topics":[],"_language":"Python","_homepage":"","_description":"pipreqs - Generate pip requirements.txt file based on imports of any project. Looking for maintainers to move this project forward.","_organization":"bndr","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2015-04-22T00:00:00.000Z","_age_weeks":399,"_stars_per_week":11.86,"_pop_contributor_count":52,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":28,"_pop_closed_issues_count":7,"_pop_created_since_days":93,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":28.0,"_pop_comment_count":26.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":27,"_pop_score":35.38,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/bndr/pipreqs/master/README.rst","_readme_localurl":"bndr~pipreqs~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bndr/pipreqs/master/requirements.txt","https://raw.githubusercontent.com/bndr/pipreqs/master/setup.py"],"_requirements_localurls":["bndr~pipreqs~requirements.txt","bndr~pipreqs~setup.py"]},{"index":513,"category":"util","githuburl":"https://github.com/agronholm/apscheduler","featured":null,"links":null,"description":null,"_repopath":"agronholm/apscheduler","_reponame":"apscheduler","_stars":4722,"_forks":604,"_watches":126,"_topics":[],"_language":"Python","_homepage":"","_description":"apscheduler: Task scheduling library for Python","_organization":"agronholm","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2016-03-27T00:00:00.000Z","_age_weeks":351,"_stars_per_week":13.45,"_pop_contributor_count":37,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nextdaysolutionsoy"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.81,"_pop_updated_issues_count":25,"_pop_closed_issues_count":16,"_pop_created_since_days":82,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":25.0,"_pop_comment_count":53.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":713,"_pop_score":51.28,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/agronholm/apscheduler/master/README.rst","_readme_localurl":"agronholm~apscheduler~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/agronholm/apscheduler/master/pyproject.toml"],"_requirements_localurls":["agronholm~apscheduler~pyproject.toml"]},{"index":265,"category":"util","githuburl":"https://github.com/pytransitions/transitions","featured":null,"links":null,"description":null,"_repopath":"pytransitions/transitions","_reponame":"transitions","_stars":4690,"_forks":512,"_watches":93,"_topics":["python","state-machine","nested-states","hierarchical-state-machine","state-diagram"],"_language":"Python","_homepage":"","_description":"transitions: A lightweight, object-oriented finite state machine implementation in Python with many extensions","_organization":"pytransitions","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-08T00:00:00.000Z","_created_at":"2014-10-12T00:00:00.000Z","_age_weeks":427,"_stars_per_week":10.98,"_pop_contributor_count":75,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["caretechowl,fhbielefeld","jrc-stu","twitter"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.65,"_pop_updated_issues_count":8,"_pop_closed_issues_count":5,"_pop_created_since_days":100,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":8.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":143,"_pop_score":45.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytransitions/transitions/master/README.md","_readme_localurl":"pytransitions~transitions~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pytransitions/transitions/master/requirements.txt","https://raw.githubusercontent.com/pytransitions/transitions/master/setup.py"],"_requirements_localurls":["pytransitions~transitions~requirements.txt","pytransitions~transitions~setup.py"]},{"index":213,"category":"data","githuburl":"https://github.com/facebookresearch/augly","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/augly","_reponame":"AugLy","_stars":4625,"_forks":267,"_watches":61,"_topics":[],"_language":"Python","_homepage":"https://ai.facebook.com/blog/augly-a-new-data-augmentation-library-to-help-build-more-robust-ai-models/","_description":"AugLy: A data augmentations library for audio, image, text, and video.","_organization":"facebookresearch","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2021-06-09T00:00:00.000Z","_age_weeks":79,"_stars_per_week":58.02,"_pop_contributor_count":26,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebookresearch","omnilib"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.02,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":19,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":106,"_pop_score":33.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/augly/master/README.md","_readme_localurl":"facebookresearch~augly~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/augly/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/augly/master/setup.py"],"_requirements_localurls":["facebookresearch~augly~requirements.txt","facebookresearch~augly~setup.py"]},{"index":551,"category":"ml","githuburl":"https://github.com/open-mmlab/mmcv","featured":null,"links":null,"description":null,"_repopath":"open-mmlab/mmcv","_reponame":"mmcv","_stars":4578,"_forks":1326,"_watches":83,"_topics":[],"_language":"Python","_homepage":"https://mmcv.readthedocs.io/en/latest/","_description":"mmcv: OpenMMLab Computer Vision Foundation","_organization":"open-mmlab","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2018-08-22T00:00:00.000Z","_age_weeks":225,"_stars_per_week":20.28,"_pop_contributor_count":237,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mmlab,ntu","open-mmlab","ucsd"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.75,"_pop_updated_issues_count":283,"_pop_closed_issues_count":219,"_pop_created_since_days":53,"_pop_updated_since_days":0,"_pop_recent_releases_count":18,"_pop_recent_releases_estimated_tags":23,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":283.0,"_pop_comment_count":368.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":41,"_pop_score":58.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-mmlab/mmcv/master/README.md","_readme_localurl":"open-mmlab~mmcv~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/open-mmlab/mmcv/master/requirements.txt","https://raw.githubusercontent.com/open-mmlab/mmcv/master/setup.py"],"_requirements_localurls":["open-mmlab~mmcv~requirements.txt","open-mmlab~mmcv~setup.py"]},{"index":830,"category":"typing","githuburl":"https://github.com/python-attrs/attrs","featured":1.0,"links":null,"description":null,"_repopath":"python-attrs/attrs","_reponame":"attrs","_stars":4546,"_forks":319,"_watches":58,"_topics":["python","boilerplate","classes","oop","attributes","srp"],"_language":"Python","_homepage":"https://www.attrs.org/","_description":"attrs: Python Classes Without Boilerplate","_organization":"python-attrs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2015-01-27T00:00:00.000Z","_age_weeks":411,"_stars_per_week":11.04,"_pop_contributor_count":137,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["pocketzworld","variomediaag"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.12,"_pop_updated_issues_count":61,"_pop_closed_issues_count":44,"_pop_created_since_days":96,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":61.0,"_pop_comment_count":133.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":1224,"_pop_score":58.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python-attrs/attrs/master/README.md","_readme_localurl":"python-attrs~attrs~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-attrs/attrs/master/setup.py","https://raw.githubusercontent.com/python-attrs/attrs/master/pyproject.toml"],"_requirements_localurls":["python-attrs~attrs~setup.py","python-attrs~attrs~pyproject.toml"]},{"index":783,"category":"diffusion","githuburl":"https://github.com/carson-katri/dream-textures","featured":null,"links":null,"description":null,"_repopath":"carson-katri/dream-textures","_reponame":"dream-textures","_stars":4525,"_forks":221,"_watches":85,"_topics":["ai","blender","blender-addon","image-generation","stable-diffusion"],"_language":"Python","_homepage":"","_description":"dream-textures: Stable Diffusion built-in to the Blender shader editor","_organization":"carson-katri","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2022-09-08T00:00:00.000Z","_age_weeks":14,"_stars_per_week":310.54,"_pop_contributor_count":7,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["blastframe","blenderdiplom"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.1,"_pop_updated_issues_count":352,"_pop_closed_issues_count":214,"_pop_created_since_days":3,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":36,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":352.0,"_pop_comment_count":1050.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":5,"_pop_score":37.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/carson-katri/dream-textures/master/README.md","_readme_localurl":"carson-katri~dream-textures~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":247,"category":"util","githuburl":"https://github.com/jorgebastida/awslogs","featured":null,"links":null,"description":null,"_repopath":"jorgebastida/awslogs","_reponame":"awslogs","_stars":4512,"_forks":325,"_watches":61,"_topics":[],"_language":"Python","_homepage":null,"_description":"awslogs: AWS CloudWatch logs for Humans\u2122","_organization":"jorgebastida","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2020-07-10T00:00:00.000Z","_created_at":"2015-01-21T00:00:00.000Z","_age_weeks":412,"_stars_per_week":10.93,"_pop_contributor_count":39,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["freelancer,upforhire","infiniteforksl"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":6,"_pop_closed_issues_count":0,"_pop_created_since_days":96,"_pop_updated_since_days":30,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":6.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":53,"_pop_score":29.83,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jorgebastida/awslogs/master/README.rst","_readme_localurl":"jorgebastida~awslogs~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jorgebastida/awslogs/master/setup.py"],"_requirements_localurls":["jorgebastida~awslogs~setup.py"]},{"index":97,"category":"jupyter","githuburl":"https://github.com/voila-dashboards/voila","featured":null,"links":null,"description":null,"_repopath":"voila-dashboards/voila","_reponame":"voila","_stars":4489,"_forks":448,"_watches":77,"_topics":["jupyter","jupyter-notebook","jupyterlab-extension","dashboarding"],"_language":"Python","_homepage":"https://voila.readthedocs.io","_description":"voila: Voil\u00e0 turns Jupyter notebooks into standalone web applications","_organization":"voila-dashboards","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2018-08-21T00:00:00.000Z","_age_weeks":225,"_stars_per_week":19.88,"_pop_contributor_count":63,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["maartenbreddels","quantstack"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.63,"_pop_updated_issues_count":114,"_pop_closed_issues_count":64,"_pop_created_since_days":53,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":29,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":114.0,"_pop_comment_count":285.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":77,"_pop_score":52.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/voila-dashboards/voila/master/README.md","_readme_localurl":"voila-dashboards~voila~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/voila-dashboards/voila/master/setup.py","https://raw.githubusercontent.com/voila-dashboards/voila/master/pyproject.toml"],"_requirements_localurls":["voila-dashboards~voila~setup.py","voila-dashboards~voila~pyproject.toml"]},{"index":312,"category":"util","githuburl":"https://github.com/indygreg/pyoxidizer","featured":null,"links":null,"description":null,"_repopath":"indygreg/pyoxidizer","_reponame":"PyOxidizer","_stars":4430,"_forks":190,"_watches":59,"_topics":[],"_language":"Rust","_homepage":"","_description":"PyOxidizer: A modern Python application packaging and distribution tool","_organization":"indygreg","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-20T00:00:00.000Z","_created_at":"2018-12-18T00:00:00.000Z","_age_weeks":208,"_stars_per_week":21.21,"_pop_contributor_count":53,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["franklin-ai","isaadvisers"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":27.5,"_pop_updated_issues_count":40,"_pop_closed_issues_count":6,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":88,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":40.0,"_pop_comment_count":47.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":59,"_pop_score":50.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/indygreg/pyoxidizer/master/README.md","_readme_localurl":"indygreg~pyoxidizer~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/indygreg/pyoxidizer/master/setup.py"],"_requirements_localurls":["indygreg~pyoxidizer~setup.py"]},{"index":66,"category":"util","githuburl":"https://github.com/pycqa/pylint","featured":null,"links":null,"description":null,"_repopath":"pycqa/pylint","_reponame":"pylint","_stars":4389,"_forks":950,"_watches":72,"_topics":["static-analysis","linter","static-code-analysis","code-quality","pep8","closember","hacktoberfest"],"_language":"Python","_homepage":"http://pylint.pycqa.org","_description":"pylint: It's not just a linter that annoys you!","_organization":"pycqa","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2015-12-09T00:00:00.000Z","_age_weeks":366,"_stars_per_week":11.97,"_pop_contributor_count":503,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["azavea","channable"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":36.04,"_pop_updated_issues_count":722,"_pop_closed_issues_count":471,"_pop_created_since_days":86,"_pop_updated_since_days":0,"_pop_recent_releases_count":28,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":28,"_pop_issue_count":722.0,"_pop_comment_count":2451.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.4,"_pop_dependents_count":17832,"_pop_score":78.21,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pycqa/pylint/master/README.rst","_readme_localurl":"pycqa~pylint~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pycqa/pylint/master/pyproject.toml"],"_requirements_localurls":["pycqa~pylint~pyproject.toml"]},{"index":206,"category":"ml","githuburl":"https://github.com/lucidrains/deep-daze","featured":null,"links":null,"description":null,"_repopath":"lucidrains/deep-daze","_reponame":"deep-daze","_stars":4366,"_forks":328,"_watches":76,"_topics":["artificial-intelligence","deep-learning","transformers","siren","implicit-neural-representation","text-to-image","multi-modality"],"_language":"Python","_homepage":"","_description":"deep-daze: Simple command line tool for text to image generation using OpenAI's CLIP and Siren (Implicit neural representation network). Technique was originally created by https://twitter.com/advadnoun","_organization":"lucidrains","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-03-13T00:00:00.000Z","_created_at":"2021-01-17T00:00:00.000Z","_age_weeks":100,"_stars_per_week":43.6,"_pop_contributor_count":14,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["adalab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":23,"_pop_updated_since_days":9,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":35,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":37,"_pop_score":25.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lucidrains/deep-daze/master/README.md","_readme_localurl":"lucidrains~deep-daze~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lucidrains/deep-daze/master/setup.py"],"_requirements_localurls":["lucidrains~deep-daze~setup.py"]},{"index":196,"category":"viz","githuburl":"https://github.com/lux-org/lux","featured":null,"links":null,"description":null,"_repopath":"lux-org/lux","_reponame":"lux","_stars":4329,"_forks":338,"_watches":86,"_topics":["visualization-tools","jupyter","python","data-science","exploratory-data-analysis","visualization","pandas"],"_language":"Python","_homepage":"","_description":"lux: Automatically visualize your pandas dataframe via a single print! \ud83d\udcca \ud83d\udca1","_organization":"lux-org","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-05-21T00:00:00.000Z","_created_at":"2020-01-08T00:00:00.000Z","_age_weeks":153,"_stars_per_week":28.16,"_pop_contributor_count":20,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ponder-org"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.35,"_pop_updated_issues_count":6,"_pop_closed_issues_count":0,"_pop_created_since_days":36,"_pop_updated_since_days":7,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":6.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":23.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lux-org/lux/master/README.md","_readme_localurl":"lux-org~lux~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/lux-org/lux/master/requirements.txt","https://raw.githubusercontent.com/lux-org/lux/master/setup.py","https://raw.githubusercontent.com/lux-org/lux/master/pyproject.toml"],"_requirements_localurls":["lux-org~lux~requirements.txt","lux-org~lux~setup.py","lux-org~lux~pyproject.toml"]},{"index":21,"category":"nlp","githuburl":"https://github.com/facebookresearch/drqa","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/drqa","_reponame":"DrQA","_stars":4315,"_forks":898,"_watches":165,"_topics":[],"_language":"Python","_homepage":null,"_description":"DrQA: Reading Wikipedia to Answer Open-Domain Questions","_organization":"facebookresearch","_updated_at":"2022-12-08T00:00:00.000Z","_last_commit_date":"2021-05-18T00:00:00.000Z","_created_at":"2017-07-07T00:00:00.000Z","_age_weeks":284,"_stars_per_week":15.17,"_pop_contributor_count":12,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebookresearch","hewlett-packardenterprise","mitnlp"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":66,"_pop_updated_since_days":19,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":90,"_pop_score":26.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/drqa/master/README.md","_readme_localurl":"facebookresearch~drqa~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/drqa/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/drqa/master/setup.py"],"_requirements_localurls":["facebookresearch~drqa~requirements.txt","facebookresearch~drqa~setup.py"]},{"index":570,"category":"util","githuburl":"https://github.com/jd/tenacity","featured":null,"links":null,"description":null,"_repopath":"jd/tenacity","_reponame":"tenacity","_stars":4313,"_forks":217,"_watches":43,"_topics":["python","failure","retry","retry-library","hacktoberfest"],"_language":"Python","_homepage":"http://tenacity.readthedocs.io","_description":"tenacity: Retrying library for Python","_organization":"jd","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2016-08-11T00:00:00.000Z","_age_weeks":331,"_stars_per_week":13.01,"_pop_contributor_count":74,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mergifyio","waymo"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.17,"_pop_updated_issues_count":24,"_pop_closed_issues_count":7,"_pop_created_since_days":77,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":24.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":502,"_pop_score":50.34,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jd/tenacity/master/README.rst","_readme_localurl":"jd~tenacity~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jd/tenacity/master/setup.py","https://raw.githubusercontent.com/jd/tenacity/master/pyproject.toml"],"_requirements_localurls":["jd~tenacity~setup.py","jd~tenacity~pyproject.toml"]},{"index":603,"category":"ml","githuburl":"https://github.com/cleanlab/cleanlab","featured":null,"links":null,"description":null,"_repopath":"cleanlab/cleanlab","_reponame":"cleanlab","_stars":4300,"_forks":397,"_watches":63,"_topics":["weak-supervision","machine-learning","confident-learning","robust-machine-learning","learning-with-confident-examples","learning-with-noisy-labels","noisy-data","data-cleaning","audio-classification","classification","data-quality","data-science","exploratory-data-analysis","image-classification","label-errors","noisy-labels","text-classification","data-centric-ai","data-centric-machine-learning"],"_language":"Python","_homepage":"https://cleanlab.ai","_description":"cleanlab: The standard data-centric AI package for data quality and machine learning with messy, real-world data and labels.","_organization":"cleanlab","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-05-11T00:00:00.000Z","_age_weeks":240,"_stars_per_week":17.88,"_pop_contributor_count":24,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cleanlab","cleanlab|mit","mitcsail"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.31,"_pop_updated_issues_count":170,"_pop_closed_issues_count":135,"_pop_created_since_days":56,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":170.0,"_pop_comment_count":164.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":228,"_pop_score":51.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cleanlab/cleanlab/master/README.md","_readme_localurl":"cleanlab~cleanlab~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cleanlab/cleanlab/master/setup.py","https://raw.githubusercontent.com/cleanlab/cleanlab/master/pyproject.toml"],"_requirements_localurls":["cleanlab~cleanlab~setup.py","cleanlab~cleanlab~pyproject.toml"]},{"index":896,"category":"diffusion","githuburl":"https://github.com/apple/ml-stable-diffusion","featured":null,"links":null,"description":null,"_repopath":"apple/ml-stable-diffusion","_reponame":"ml-stable-diffusion","_stars":4291,"_forks":165,"_watches":57,"_topics":[],"_language":"Python","_homepage":"","_description":"ml-stable-diffusion: Stable Diffusion with Core ML on Apple Silicon","_organization":"apple","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2022-11-16T00:00:00.000Z","_age_weeks":4,"_stars_per_week":910.21,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["christianclauss","google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.17,"_pop_updated_issues_count":74,"_pop_closed_issues_count":17,"_pop_created_since_days":1,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":74.0,"_pop_comment_count":192.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":0,"_pop_score":24.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/README.md","_readme_localurl":"apple~ml-stable-diffusion~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/requirements.txt","https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/setup.py"],"_requirements_localurls":["apple~ml-stable-diffusion~requirements.txt","apple~ml-stable-diffusion~setup.py"]},{"index":717,"category":"data","githuburl":"https://github.com/jazzband/tablib","featured":null,"links":null,"description":null,"_repopath":"jazzband/tablib","_reponame":"tablib","_stars":4203,"_forks":570,"_watches":141,"_topics":[],"_language":"Python","_homepage":"https://tablib.readthedocs.io/","_description":"tablib: Python Module for Tabular Datasets in XLS, CSV, JSON, YAML, &c.","_organization":"jazzband","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2011-03-28T00:00:00.000Z","_age_weeks":612,"_stars_per_week":6.87,"_pop_contributor_count":118,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["2xlibre.nets\u00e0rl","buser","http://www.lukelee.me","nordsoftware"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":9,"_pop_closed_issues_count":8,"_pop_created_since_days":143,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":9.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":117,"_pop_score":50.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jazzband/tablib/master/README.md","_readme_localurl":"jazzband~tablib~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jazzband/tablib/master/setup.py","https://raw.githubusercontent.com/jazzband/tablib/master/pyproject.toml"],"_requirements_localurls":["jazzband~tablib~setup.py","jazzband~tablib~pyproject.toml"]},{"index":101,"category":"ml","githuburl":"https://github.com/rasbt/mlxtend","featured":null,"links":null,"description":null,"_repopath":"rasbt/mlxtend","_reponame":"mlxtend","_stars":4183,"_forks":796,"_watches":121,"_topics":["python","machine-learning","data-science","data-mining","association-rules","supervised-learning","unsupervised-learning"],"_language":"Python","_homepage":"http://rasbt.github.io/mlxtend/","_description":"mlxtend: A library of extension and helper modules for Python's data analysis and machine learning libraries.","_organization":"rasbt","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2014-08-14T00:00:00.000Z","_age_weeks":435,"_stars_per_week":9.6,"_pop_contributor_count":91,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["coiled","lightning-ai,universityofwisconsin-madison"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.75,"_pop_updated_issues_count":46,"_pop_closed_issues_count":35,"_pop_created_since_days":102,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":46.0,"_pop_comment_count":66.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":37,"_pop_score":49.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/mlxtend/master/README.md","_readme_localurl":"rasbt~mlxtend~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rasbt/mlxtend/master/requirements.txt","https://raw.githubusercontent.com/rasbt/mlxtend/master/setup.py"],"_requirements_localurls":["rasbt~mlxtend~requirements.txt","rasbt~mlxtend~setup.py"]},{"index":764,"category":"ml-dl","githuburl":"https://github.com/xpixelgroup/basicsr","featured":null,"links":null,"description":null,"_repopath":"xpixelgroup/basicsr","_reponame":"BasicSR","_stars":4171,"_forks":864,"_watches":85,"_topics":["basicsr","esrgan","edsr","rcan","edvr","srresnet","srgan","super-resolution","restoration","pytorch","stylegan2","dfdnet","basicvsr","swinir","ecbsr"],"_language":"Python","_homepage":"https://basicsr.readthedocs.io/en/latest/","_description":"BasicSR: Open Source Image and Video Restoration Toolbox for Super-resolution, Denoise, Deblurring, etc. Currently, it includes EDSR, RCAN, SRResNet, SRGAN, ESRGAN, EDVR, BasicVSR, SwinIR, ECBSR, etc. Also support StyleGAN2, DFDNet.","_organization":"xpixelgroup","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-06T00:00:00.000Z","_created_at":"2018-04-19T00:00:00.000Z","_age_weeks":243,"_stars_per_week":17.12,"_pop_contributor_count":18,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["msft","tencent","um&siat","whut"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.02,"_pop_updated_issues_count":30,"_pop_closed_issues_count":6,"_pop_created_since_days":57,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":30.0,"_pop_comment_count":16.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":33.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/xpixelgroup/basicsr/master/README.md","_readme_localurl":"xpixelgroup~basicsr~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/xpixelgroup/basicsr/master/requirements.txt","https://raw.githubusercontent.com/xpixelgroup/basicsr/master/setup.py"],"_requirements_localurls":["xpixelgroup~basicsr~requirements.txt","xpixelgroup~basicsr~setup.py"]},{"index":734,"category":"ml-dl","githuburl":"https://github.com/pytorch/ignite","featured":1.0,"links":null,"description":null,"_repopath":"pytorch/ignite","_reponame":"ignite","_stars":4142,"_forks":562,"_watches":59,"_topics":["pytorch","neural-network","python","machine-learning","deep-learning","metrics","hacktoberfest","closember"],"_language":"Python","_homepage":"https://pytorch-ignite.ai","_description":"ignite: High-level library to help with training and evaluating neural networks in PyTorch flexibly and transparently.","_organization":"pytorch","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2017-11-23T00:00:00.000Z","_age_weeks":264,"_stars_per_week":15.66,"_pop_contributor_count":183,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bimsbbioinfopytorch-ignite","cision","pytorch-ignitemichelin","quansight","sharechat"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.77,"_pop_updated_issues_count":111,"_pop_closed_issues_count":94,"_pop_created_since_days":62,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":111.0,"_pop_comment_count":203.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":529,"_pop_score":60.52,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/ignite/master/README.md","_readme_localurl":"pytorch~ignite~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/ignite/master/setup.py","https://raw.githubusercontent.com/pytorch/ignite/master/pyproject.toml"],"_requirements_localurls":["pytorch~ignite~setup.py","pytorch~ignite~pyproject.toml"]},{"index":370,"category":"time-series","githuburl":"https://github.com/facebookresearch/kats","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/kats","_reponame":"Kats","_stars":4122,"_forks":434,"_watches":69,"_topics":[],"_language":"Python","_homepage":"","_description":"Kats, a kit to analyze time series data, a lightweight, easy-to-use, generalizable, and extendable framework to perform time series analysis, from understanding the key statistics and characteristics, detecting change points and anomalies, to forecasting future trends. ","_organization":"facebookresearch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2021-02-25T00:00:00.000Z","_age_weeks":94,"_stars_per_week":43.59,"_pop_contributor_count":121,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","meta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.67,"_pop_updated_issues_count":31,"_pop_closed_issues_count":19,"_pop_created_since_days":22,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":31.0,"_pop_comment_count":48.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":118,"_pop_score":47.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/kats/master/README.md","_readme_localurl":"facebookresearch~kats~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/kats/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/kats/master/setup.py"],"_requirements_localurls":["facebookresearch~kats~requirements.txt","facebookresearch~kats~setup.py"]},{"index":293,"category":"util","githuburl":"https://github.com/pytoolz/toolz","featured":null,"links":null,"description":null,"_repopath":"pytoolz/toolz","_reponame":"toolz","_stars":4103,"_forks":246,"_watches":82,"_topics":[],"_language":"Python","_homepage":"http://toolz.readthedocs.org/","_description":"toolz: A functional standard library for Python.","_organization":"pytoolz","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-03T00:00:00.000Z","_created_at":"2013-09-13T00:00:00.000Z","_age_weeks":483,"_stars_per_week":8.49,"_pop_contributor_count":74,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["coiled","formerlyquantopian","google","lynkertechnologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":15,"_pop_closed_issues_count":7,"_pop_created_since_days":113,"_pop_updated_since_days":2,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":15.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":90,"_pop_score":46.23,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytoolz/toolz/master/README.rst","_readme_localurl":"pytoolz~toolz~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pytoolz/toolz/master/setup.py"],"_requirements_localurls":["pytoolz~toolz~setup.py"]},{"index":27,"category":"typing","githuburl":"https://github.com/google/pytype","featured":null,"links":null,"description":null,"_repopath":"google/pytype","_reponame":"pytype","_stars":4016,"_forks":258,"_watches":55,"_topics":["python","typing","typechecker","linter","types","static-analysis","static-code-analysis"],"_language":"Python","_homepage":"https://google.github.io/pytype","_description":"pytype: A static type analyzer for Python code","_organization":"google","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2015-03-18T00:00:00.000Z","_age_weeks":404,"_stars_per_week":9.92,"_pop_contributor_count":87,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","googledart-langflutter"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.4,"_pop_updated_issues_count":56,"_pop_closed_issues_count":41,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":21,"_pop_recent_releases_adjusted_count":21,"_pop_issue_count":56.0,"_pop_comment_count":45.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":2154,"_pop_score":60.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/pytype/master/README.md","_readme_localurl":"google~pytype~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/google/pytype/master/requirements.txt","https://raw.githubusercontent.com/google/pytype/master/setup.py","https://raw.githubusercontent.com/google/pytype/master/pyproject.toml"],"_requirements_localurls":["google~pytype~requirements.txt","google~pytype~setup.py","google~pytype~pyproject.toml"]},{"index":542,"category":"util","githuburl":"https://github.com/mamba-org/mamba","featured":null,"links":null,"description":null,"_repopath":"mamba-org/mamba","_reponame":"mamba","_stars":4000,"_forks":230,"_watches":39,"_topics":[],"_language":"C++","_homepage":"https://mamba.readthedocs.io","_description":"mamba: The Fast Cross-Platform Package Manager","_organization":"mamba-org","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2019-03-05T00:00:00.000Z","_age_weeks":197,"_stars_per_week":20.22,"_pop_contributor_count":101,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["prefix.devgmbh","quantstack"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.98,"_pop_updated_issues_count":449,"_pop_closed_issues_count":227,"_pop_created_since_days":46,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":50,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":449.0,"_pop_comment_count":1062.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":49.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mamba-org/mamba/master/README.md","_readme_localurl":"mamba-org~mamba~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mamba-org/mamba/master/pyproject.toml"],"_requirements_localurls":["mamba-org~mamba~pyproject.toml"]},{"index":565,"category":"gis","githuburl":"https://github.com/gboeing/osmnx","featured":null,"links":null,"description":null,"_repopath":"gboeing/osmnx","_reponame":"osmnx","_stars":3963,"_forks":734,"_watches":121,"_topics":["openstreetmap","gis","street-networks","overpass-api","networkx","spatial-analysis","geospatial","urban-planning","transportation","geography","osmnx","networks","spatial-data","urban","osm","spatial","python","transport","mapping","routing"],"_language":"Python","_homepage":"https://geoffboeing.com/publications/osmnx-complex-street-networks/","_description":"OSMnx: Python for street networks. Retrieve, model, analyze, and visualize street networks and other spatial data from OpenStreetMap.","_organization":"gboeing","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2016-07-24T00:00:00.000Z","_age_weeks":334,"_stars_per_week":11.86,"_pop_contributor_count":73,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aaltouniversity","universityofsoutherncalifornia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.94,"_pop_updated_issues_count":51,"_pop_closed_issues_count":49,"_pop_created_since_days":78,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":51.0,"_pop_comment_count":88.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":93,"_pop_score":52.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gboeing/osmnx/master/README.md","_readme_localurl":"gboeing~osmnx~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gboeing/osmnx/master/requirements.txt","https://raw.githubusercontent.com/gboeing/osmnx/master/setup.py"],"_requirements_localurls":["gboeing~osmnx~requirements.txt","gboeing~osmnx~setup.py"]},{"index":227,"category":"ml","githuburl":"https://github.com/online-ml/river","featured":1.0,"links":null,"description":null,"_repopath":"online-ml/river","_reponame":"river","_stars":3958,"_forks":437,"_watches":82,"_topics":["incremental-learning","machine-learning","python","online-learning","online-statistics","data-science","streaming","online-machine-learning","streaming-data","concept-drift","real-time-processing","stream-processing"],"_language":"Python","_homepage":"https://riverml.xyz","_description":"river: \ud83c\udf0a Online machine learning in Python","_organization":"online-ml","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2019-01-24T00:00:00.000Z","_age_weeks":203,"_stars_per_week":19.44,"_pop_contributor_count":89,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["carbonfact","manomano","phdcandidateatuniversityofs\u00e3opaulo","universityofwaikato","volvo-cars"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.13,"_pop_updated_issues_count":60,"_pop_closed_issues_count":55,"_pop_created_since_days":47,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":60.0,"_pop_comment_count":155.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":2,"_pop_score":50.3,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/online-ml/river/master/README.md","_readme_localurl":"online-ml~river~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/online-ml/river/master/setup.py","https://raw.githubusercontent.com/online-ml/river/master/pyproject.toml"],"_requirements_localurls":["online-ml~river~setup.py","online-ml~river~pyproject.toml"]},{"index":258,"category":"crypto","githuburl":"https://github.com/ethereum/web3.py","featured":1.0,"links":null,"description":null,"_repopath":"ethereum/web3.py","_reponame":"web3.py","_stars":3917,"_forks":1232,"_watches":119,"_topics":[],"_language":"Python","_homepage":"http://web3py.readthedocs.io","_description":"web3.py: A python interface for interacting with the Ethereum blockchain and ecosystem.","_organization":"ethereum","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2016-04-14T00:00:00.000Z","_age_weeks":348,"_stars_per_week":11.24,"_pop_contributor_count":218,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ethereum","ethereumfoundation"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.88,"_pop_updated_issues_count":149,"_pop_closed_issues_count":122,"_pop_created_since_days":81,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":28,"_pop_issue_count":149.0,"_pop_comment_count":174.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":547,"_pop_score":61.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethereum/web3.py/master/README.md","_readme_localurl":"ethereum~web3.py~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ethereum/web3.py/master/setup.py","https://raw.githubusercontent.com/ethereum/web3.py/master/pyproject.toml"],"_requirements_localurls":["ethereum~web3.py~setup.py","ethereum~web3.py~pyproject.toml"]},{"index":549,"category":"ml","githuburl":"https://github.com/open-mmlab/mmediting","featured":null,"links":null,"description":null,"_repopath":"open-mmlab/mmediting","_reponame":"mmediting","_stars":3869,"_forks":698,"_watches":83,"_topics":["super-resolution","inpainting","matting","image-generation","generative-adversarial-network","pytorch","deep-learning","video-interpolation","video-frame-interpolation","video-super-resolution","computer-vision","image-editing","image-processing","image-synthesis"],"_language":"Python","_homepage":"https://mmediting.readthedocs.io/en/latest/","_description":"mmediting: OpenMMLab Image and Video Restoration, Editing and Generation Toolbox","_organization":"open-mmlab","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2019-08-23T00:00:00.000Z","_age_weeks":173,"_stars_per_week":22.31,"_pop_contributor_count":64,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cuhk","nanyangtechnologicaluniversity","universityofalberta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.6,"_pop_updated_issues_count":461,"_pop_closed_issues_count":389,"_pop_created_since_days":40,"_pop_updated_since_days":1,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":460.0,"_pop_comment_count":452.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":1643,"_pop_score":57.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-mmlab/mmediting/master/README.md","_readme_localurl":"open-mmlab~mmediting~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/open-mmlab/mmediting/master/requirements.txt","https://raw.githubusercontent.com/open-mmlab/mmediting/master/setup.py"],"_requirements_localurls":["open-mmlab~mmediting~requirements.txt","open-mmlab~mmediting~setup.py"]},{"index":13,"category":"ml","githuburl":"https://github.com/districtdatalabs/yellowbrick","featured":null,"links":null,"description":null,"_repopath":"districtdatalabs/yellowbrick","_reponame":"yellowbrick","_stars":3866,"_forks":538,"_watches":101,"_topics":["machine-learning","visual-analysis","model-selection","visualization","scikit-learn","visualizer","matplotlib","python","estimator","anaconda"],"_language":"Python","_homepage":"http://www.scikit-yb.org/","_description":"yellowbrick: Visual analysis and diagnostic tools to facilitate machine learning model selection.","_organization":"districtdatalabs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2016-05-18T00:00:00.000Z","_age_weeks":343,"_stars_per_week":11.25,"_pop_contributor_count":110,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["rotationalio","rotationallabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.65,"_pop_updated_issues_count":13,"_pop_closed_issues_count":9,"_pop_created_since_days":80,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":13.0,"_pop_comment_count":25.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":57,"_pop_score":47.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/districtdatalabs/yellowbrick/master/README.md","_readme_localurl":"districtdatalabs~yellowbrick~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/districtdatalabs/yellowbrick/master/requirements.txt","https://raw.githubusercontent.com/districtdatalabs/yellowbrick/master/setup.py"],"_requirements_localurls":["districtdatalabs~yellowbrick~requirements.txt","districtdatalabs~yellowbrick~setup.py"]},{"index":362,"category":"ml-ops","githuburl":"https://github.com/allegroai/clearml","featured":null,"links":null,"description":null,"_repopath":"allegroai/clearml","_reponame":"clearml","_stars":3857,"_forks":519,"_watches":82,"_topics":["version-control","experiment-manager","version","control","experiment","deeplearning","deep-learning","machine-learning","machinelearning","ai","trains","trainsai","clearml","k8s","devops","mlops"],"_language":"Python","_homepage":"https://clear.ml/docs","_description":"ClearML - Auto-Magical CI/CD to streamline your ML workflow. Experiment Manager, MLOps and Data-Management","_organization":"allegroai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-06-10T00:00:00.000Z","_age_weeks":184,"_stars_per_week":20.96,"_pop_contributor_count":62,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["allegroai","techlearnersincallegroai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.46,"_pop_updated_issues_count":114,"_pop_closed_issues_count":39,"_pop_created_since_days":43,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":36,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":114.0,"_pop_comment_count":249.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":22,"_pop_score":49.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/allegroai/clearml/master/README.md","_readme_localurl":"allegroai~clearml~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/allegroai/clearml/master/requirements.txt","https://raw.githubusercontent.com/allegroai/clearml/master/setup.py"],"_requirements_localurls":["allegroai~clearml~requirements.txt","allegroai~clearml~setup.py"]},{"index":43,"category":"data","githuburl":"https://github.com/lk-geimfari/mimesis","featured":null,"links":null,"description":null,"_repopath":"lk-geimfari/mimesis","_reponame":"mimesis","_stars":3833,"_forks":303,"_watches":64,"_topics":["mimesis","fake","data","generator","fixtures","dummy","json","schema","testing","python","json-generator","faker","mock","synthetic-data","datascience","api-mock"],"_language":"Python","_homepage":"https://mimesis.name","_description":"Mimesis is a high-performance fake data generator for Python, which provides data for a variety of purposes in a variety of languages. ","_organization":"lk-geimfari","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2016-09-09T00:00:00.000Z","_age_weeks":327,"_stars_per_week":11.71,"_pop_contributor_count":112,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["extendi","roskomsvoboda"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.96,"_pop_updated_issues_count":46,"_pop_closed_issues_count":32,"_pop_created_since_days":76,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":46.0,"_pop_comment_count":56.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":100,"_pop_score":52.64,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/lk-geimfari/mimesis/master/README.rst","_readme_localurl":"lk-geimfari~mimesis~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/lk-geimfari/mimesis/master/pyproject.toml"],"_requirements_localurls":["lk-geimfari~mimesis~pyproject.toml"]},{"index":184,"category":"ml-dl","githuburl":"https://github.com/google/flax","featured":null,"links":null,"description":null,"_repopath":"google/flax","_reponame":"flax","_stars":3821,"_forks":444,"_watches":74,"_topics":["jax"],"_language":"Python","_homepage":"https://flax.readthedocs.io","_description":"Flax is a neural network library for JAX that is designed for flexibility.","_organization":"google","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2020-01-10T00:00:00.000Z","_age_weeks":153,"_stars_per_week":24.9,"_pop_contributor_count":183,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.9,"_pop_updated_issues_count":289,"_pop_closed_issues_count":218,"_pop_created_since_days":36,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":289.0,"_pop_comment_count":489.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":588,"_pop_score":58.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/flax/master/README.md","_readme_localurl":"google~flax~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/flax/master/setup.py"],"_requirements_localurls":["google~flax~setup.py"]},{"index":355,"category":"ml-ops","githuburl":"https://github.com/feast-dev/feast","featured":null,"links":null,"description":null,"_repopath":"feast-dev/feast","_reponame":"feast","_stars":3820,"_forks":714,"_watches":74,"_topics":["machine-learning","features","ml","big-data","feature-store","python","mlops","data-engineering","data-science","data-quality"],"_language":"Python","_homepage":"https://feast.dev","_description":"feast: Feature Store for Machine Learning","_organization":"feast-dev","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-12-10T00:00:00.000Z","_age_weeks":210,"_stars_per_week":18.19,"_pop_contributor_count":179,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["gojekindonesia","tecton","tectonai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.31,"_pop_updated_issues_count":271,"_pop_closed_issues_count":156,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":31,"_pop_recent_releases_estimated_tags":31,"_pop_recent_releases_adjusted_count":31,"_pop_issue_count":271.0,"_pop_comment_count":434.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":4,"_pop_score":55.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/feast-dev/feast/master/README.md","_readme_localurl":"feast-dev~feast~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/feast-dev/feast/master/setup.py","https://raw.githubusercontent.com/feast-dev/feast/master/pyproject.toml"],"_requirements_localurls":["feast-dev~feast~setup.py","feast-dev~feast~pyproject.toml"]},{"index":376,"category":"util","githuburl":"https://github.com/spotify/pedalboard","featured":null,"links":null,"description":null,"_repopath":"spotify/pedalboard","_reponame":"pedalboard","_stars":3802,"_forks":153,"_watches":46,"_topics":["vst3","vst3-host","python","juce","tensorflow","audio-unit","pybind11","audio-processing","audio-production","audio-research","audio"],"_language":"C++","_homepage":"","_description":"pedalboard: \ud83c\udf9b \ud83d\udd0a A Python library for working with audio.","_organization":"spotify","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-08T00:00:00.000Z","_created_at":"2021-07-06T00:00:00.000Z","_age_weeks":75,"_stars_per_week":50.12,"_pop_contributor_count":24,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["b3ta","myr","spotify"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.35,"_pop_updated_issues_count":36,"_pop_closed_issues_count":23,"_pop_created_since_days":18,"_pop_updated_since_days":0,"_pop_recent_releases_count":30,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":30,"_pop_issue_count":36.0,"_pop_comment_count":38.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":16,"_pop_score":45.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/spotify/pedalboard/master/README.md","_readme_localurl":"spotify~pedalboard~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/spotify/pedalboard/master/requirements.txt","https://raw.githubusercontent.com/spotify/pedalboard/master/setup.py","https://raw.githubusercontent.com/spotify/pedalboard/master/pyproject.toml"],"_requirements_localurls":["spotify~pedalboard~requirements.txt","spotify~pedalboard~setup.py","spotify~pedalboard~pyproject.toml"]},{"index":199,"category":"viz","githuburl":"https://github.com/man-group/dtale","featured":null,"links":null,"description":null,"_repopath":"man-group/dtale","_reponame":"dtale","_stars":3769,"_forks":318,"_watches":69,"_topics":["python27","python3","react","flask","pandas","ipython","jupyter-notebook","react-virtualized","data-analysis","data-visualization","visualization","plotly-dash","data-science","xarray"],"_language":"TypeScript","_homepage":"http://alphatechadmin.pythonanywhere.com","_description":"dtale: Visualizer for pandas data structures","_organization":"man-group","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2019-07-15T00:00:00.000Z","_age_weeks":179,"_stars_per_week":21.06,"_pop_contributor_count":29,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.65,"_pop_updated_issues_count":23,"_pop_closed_issues_count":11,"_pop_created_since_days":42,"_pop_updated_since_days":1,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":40,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":23.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":253,"_pop_score":39.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/man-group/dtale/master/README.md","_readme_localurl":"man-group~dtale~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/man-group/dtale/master/requirements.txt","https://raw.githubusercontent.com/man-group/dtale/master/setup.py"],"_requirements_localurls":["man-group~dtale~requirements.txt","man-group~dtale~setup.py"]},{"index":343,"category":"web","githuburl":"https://github.com/vitalik/django-ninja","featured":null,"links":null,"description":null,"_repopath":"vitalik/django-ninja","_reponame":"django-ninja","_stars":3763,"_forks":235,"_watches":61,"_topics":["python","django","rest-api","openapi","pydantic","swagger","swagger-ui","django-ninja"],"_language":"Python","_homepage":"https://django-ninja.rest-framework.com","_description":"django-ninja: \ud83d\udca8 Fast, Async-ready, Openapi, type hints based framework for building APIs","_organization":"vitalik","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2020-05-19T00:00:00.000Z","_age_weeks":134,"_stars_per_week":27.9,"_pop_contributor_count":70,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.58,"_pop_updated_issues_count":97,"_pop_closed_issues_count":46,"_pop_created_since_days":31,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":97.0,"_pop_comment_count":173.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":22,"_pop_score":42.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vitalik/django-ninja/master/README.md","_readme_localurl":"vitalik~django-ninja~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/vitalik/django-ninja/master/setup.py","https://raw.githubusercontent.com/vitalik/django-ninja/master/pyproject.toml"],"_requirements_localurls":["vitalik~django-ninja~setup.py","vitalik~django-ninja~pyproject.toml"]},{"index":753,"category":"study","githuburl":"https://github.com/karpathy/nn-zero-to-hero","featured":null,"links":null,"description":null,"_repopath":"karpathy/nn-zero-to-hero","_reponame":"nn-zero-to-hero","_stars":3754,"_forks":259,"_watches":151,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"nn-zero-to-hero: Neural Networks: Zero to Hero","_organization":"karpathy","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-21T00:00:00.000Z","_created_at":"2022-09-08T00:00:00.000Z","_age_weeks":14,"_stars_per_week":257.63,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.17,"_pop_updated_issues_count":13,"_pop_closed_issues_count":5,"_pop_created_since_days":3,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":13.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":11.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/karpathy/nn-zero-to-hero/master/README.md","_readme_localurl":"karpathy~nn-zero-to-hero~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":388,"category":"nlp","githuburl":"https://github.com/makcedward/nlpaug","featured":null,"links":null,"description":null,"_repopath":"makcedward/nlpaug","_reponame":"nlpaug","_stars":3690,"_forks":420,"_watches":39,"_topics":["nlp","augmentation","machine-learning","artificial-intelligence","data-science","natural-language-processing","adversarial-attacks","adversarial-example","ai","ml"],"_language":"Jupyter Notebook","_homepage":"https://makcedward.github.io/","_description":"nlpaug: Data augmentation for NLP ","_organization":"makcedward","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-07-07T00:00:00.000Z","_created_at":"2019-03-21T00:00:00.000Z","_age_weeks":195,"_stars_per_week":18.87,"_pop_contributor_count":33,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["clevertech","cresta","toyotaconnected","truefoundry"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":11,"_pop_closed_issues_count":1,"_pop_created_since_days":46,"_pop_updated_since_days":5,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":11.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":2,"_pop_score":31.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/makcedward/nlpaug/master/README.md","_readme_localurl":"makcedward~nlpaug~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/makcedward/nlpaug/master/requirements.txt","https://raw.githubusercontent.com/makcedward/nlpaug/master/setup.py"],"_requirements_localurls":["makcedward~nlpaug~requirements.txt","makcedward~nlpaug~setup.py"]},{"index":855,"category":"profiling","githuburl":"https://github.com/pythonprofilers/memory_profiler","featured":null,"links":null,"description":null,"_repopath":"pythonprofilers/memory_profiler","_reponame":"memory_profiler","_stars":3684,"_forks":363,"_watches":75,"_topics":[],"_language":"Python","_homepage":"http://pypi.python.org/pypi/memory_profiler","_description":"memory_profiler: Monitor Memory usage of Python code","_organization":"pythonprofilers","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2011-10-14T00:00:00.000Z","_age_weeks":583,"_stars_per_week":6.31,"_pop_contributor_count":101,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cardiologs","google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.73,"_pop_updated_issues_count":21,"_pop_closed_issues_count":14,"_pop_created_since_days":136,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":21.0,"_pop_comment_count":23.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":225,"_pop_score":50.61,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pythonprofilers/memory_profiler/master/README.rst","_readme_localurl":"pythonprofilers~memory_profiler~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pythonprofilers/memory_profiler/master/setup.py","https://raw.githubusercontent.com/pythonprofilers/memory_profiler/master/pyproject.toml"],"_requirements_localurls":["pythonprofilers~memory_profiler~setup.py","pythonprofilers~memory_profiler~pyproject.toml"]},{"index":357,"category":"data","githuburl":"https://github.com/amundsen-io/amundsen","featured":null,"links":null,"description":null,"_repopath":"amundsen-io/amundsen","_reponame":"amundsen","_stars":3680,"_forks":891,"_watches":245,"_topics":["amundsen","metadata","data-catalog","data-discovery","linuxfoundation"],"_language":"Python","_homepage":"https://www.amundsen.io/amundsen/","_description":"Amundsen is a metadata driven application for improving the productivity of data analysts, data scientists and engineers when interacting with data.","_organization":"amundsen-io","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2019-05-14T00:00:00.000Z","_age_weeks":187,"_stars_per_week":19.59,"_pop_contributor_count":215,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["databricksamundsen-ioapache","lyft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.73,"_pop_updated_issues_count":270,"_pop_closed_issues_count":253,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":48,"_pop_recent_releases_estimated_tags":33,"_pop_recent_releases_adjusted_count":48,"_pop_issue_count":270.0,"_pop_comment_count":147.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":16,"_pop_score":52.6,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/amundsen-io/amundsen/master/README.md","_readme_localurl":"amundsen-io~amundsen~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/amundsen-io/amundsen/master/requirements.txt"],"_requirements_localurls":["amundsen-io~amundsen~requirements.txt"]},{"index":822,"category":"ml","githuburl":"https://github.com/project-monai/monai","featured":null,"links":null,"description":null,"_repopath":"project-monai/monai","_reponame":"MONAI","_stars":3663,"_forks":698,"_watches":89,"_topics":["healthcare-imaging","deep-learning","medical-image-computing","medical-image-processing","pytorch","python3","monai"],"_language":"Python","_homepage":"https://monai.io/","_description":"MONAI: AI Toolkit for Healthcare Imaging","_organization":"project-monai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-10-11T00:00:00.000Z","_age_weeks":166,"_stars_per_week":22.01,"_pop_contributor_count":131,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["king'scollegelondon","nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.46,"_pop_updated_issues_count":573,"_pop_closed_issues_count":466,"_pop_created_since_days":39,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":22,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":572.0,"_pop_comment_count":1388.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":151,"_pop_score":58.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/project-monai/monai/master/README.md","_readme_localurl":"project-monai~monai~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/project-monai/monai/master/requirements.txt","https://raw.githubusercontent.com/project-monai/monai/master/setup.py","https://raw.githubusercontent.com/project-monai/monai/master/pyproject.toml"],"_requirements_localurls":["project-monai~monai~requirements.txt","project-monai~monai~setup.py","project-monai~monai~pyproject.toml"]},{"index":91,"category":"ml","githuburl":"https://github.com/uber/causalml","featured":null,"links":null,"description":null,"_repopath":"uber/causalml","_reponame":"causalml","_stars":3644,"_forks":579,"_watches":76,"_topics":["incubation","machine-learning","causal-inference","uplift-modeling"],"_language":"Python","_homepage":"","_description":"causalml: Uplift modeling and causal inference with machine learning algorithms","_organization":"uber","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2019-07-09T00:00:00.000Z","_age_weeks":179,"_stars_per_week":20.26,"_pop_contributor_count":48,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["spotify","toyotaresearchinstitute","uber"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.48,"_pop_updated_issues_count":45,"_pop_closed_issues_count":19,"_pop_created_since_days":42,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":45.0,"_pop_comment_count":45.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":19,"_pop_score":44.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/uber/causalml/master/README.md","_readme_localurl":"uber~causalml~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/causalml/master/requirements.txt","https://raw.githubusercontent.com/uber/causalml/master/setup.py","https://raw.githubusercontent.com/uber/causalml/master/pyproject.toml"],"_requirements_localurls":["uber~causalml~requirements.txt","uber~causalml~setup.py","uber~causalml~pyproject.toml"]},{"index":354,"category":"ml-interpretability","githuburl":"https://github.com/pytorch/captum","featured":null,"links":null,"description":null,"_repopath":"pytorch/captum","_reponame":"captum","_stars":3635,"_forks":390,"_watches":213,"_topics":["interpretability","interpretable-ai","interpretable-ml","feature-importance","feature-attribution"],"_language":"Python","_homepage":"https://captum.ai","_description":"captum: Model interpretability and understanding for PyTorch","_organization":"pytorch","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-08-27T00:00:00.000Z","_age_weeks":172,"_stars_per_week":21.03,"_pop_contributor_count":95,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","meta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.1,"_pop_updated_issues_count":87,"_pop_closed_issues_count":45,"_pop_created_since_days":40,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":87.0,"_pop_comment_count":170.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":444,"_pop_score":51.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/captum/master/README.md","_readme_localurl":"pytorch~captum~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/captum/master/setup.py","https://raw.githubusercontent.com/pytorch/captum/master/pyproject.toml"],"_requirements_localurls":["pytorch~captum~setup.py","pytorch~captum~pyproject.toml"]},{"index":762,"category":"sim","githuburl":"https://github.com/quantumlib/cirq","featured":null,"links":null,"description":null,"_repopath":"quantumlib/cirq","_reponame":"Cirq","_stars":3617,"_forks":815,"_watches":175,"_topics":["quantum-circuits","nisq","quantum-algorithms","quantum-computing","cirq"],"_language":"Python","_homepage":"","_description":"Cirq: A python framework for creating, editing, and invoking Noisy Intermediate Scale Quantum (NISQ) circuits.","_organization":"quantumlib","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2017-12-14T00:00:00.000Z","_age_weeks":261,"_stars_per_week":13.83,"_pop_contributor_count":179,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dukeuniversity","google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.63,"_pop_updated_issues_count":119,"_pop_closed_issues_count":76,"_pop_created_since_days":61,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":119.0,"_pop_comment_count":178.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":1234,"_pop_score":60.48,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/quantumlib/cirq/master/README.rst","_readme_localurl":"quantumlib~cirq~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/quantumlib/cirq/master/setup.py","https://raw.githubusercontent.com/quantumlib/cirq/master/pyproject.toml"],"_requirements_localurls":["quantumlib~cirq~setup.py","quantumlib~cirq~pyproject.toml"]},{"index":58,"category":"gamedev","githuburl":"https://github.com/panda3d/panda3d","featured":null,"links":null,"description":null,"_repopath":"panda3d/panda3d","_reponame":"panda3d","_stars":3608,"_forks":730,"_watches":192,"_topics":["game-engine","open-source","panda3d","cross-platform","python","panda3d-game-engine","game-development","opengl","multi-platform","gamedev","c-plus-plus"],"_language":"C++","_homepage":"https://www.panda3d.org/","_description":"panda3d: Powerful, mature open-source cross-platform game engine for Python and C++, developed by Disney and CMU","_organization":"panda3d","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2013-09-30T00:00:00.000Z","_age_weeks":481,"_stars_per_week":7.5,"_pop_contributor_count":155,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.71,"_pop_updated_issues_count":128,"_pop_closed_issues_count":83,"_pop_created_since_days":112,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":128.0,"_pop_comment_count":194.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":523,"_pop_score":52.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/panda3d/panda3d/master/README.md","_readme_localurl":"panda3d~panda3d~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":793,"category":"ml-ops","githuburl":"https://github.com/orchest/orchest","featured":null,"links":null,"description":null,"_repopath":"orchest/orchest","_reponame":"orchest","_stars":3589,"_forks":212,"_watches":36,"_topics":["data-science","machine-learning","pipelines","ide","jupyter","cloud","self-hosted","jupyterlab","notebooks","docker","python","data-pipelines","orchest","deployment","kubernetes","airflow","dag","etl","etl-pipeline"],"_language":"TypeScript","_homepage":"https://orchest.io","_description":"orchest: Build data pipelines, the easy way \ud83d\udee0\ufe0f","_organization":"orchest","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2020-05-21T00:00:00.000Z","_age_weeks":134,"_stars_per_week":26.67,"_pop_contributor_count":31,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["orchest","orchest.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":82.5,"_pop_updated_issues_count":254,"_pop_closed_issues_count":225,"_pop_created_since_days":31,"_pop_updated_since_days":0,"_pop_recent_releases_count":99,"_pop_recent_releases_estimated_tags":75,"_pop_recent_releases_adjusted_count":99,"_pop_issue_count":254.0,"_pop_comment_count":203.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":757,"_pop_score":58.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/orchest/orchest/master/README.md","_readme_localurl":"orchest~orchest~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/orchest/orchest/master/pyproject.toml"],"_requirements_localurls":["orchest~orchest~pyproject.toml"]},{"index":423,"category":"util","githuburl":"https://github.com/tebelorg/rpa-python","featured":null,"links":null,"description":null,"_repopath":"tebelorg/rpa-python","_reponame":"RPA-Python","_stars":3566,"_forks":523,"_watches":99,"_topics":["rpa","python","opencv","tesseract","tagui","sikuli","cross-platform"],"_language":"Python","_homepage":"","_description":"RPA-Python: Python package for doing RPA","_organization":"tebelorg","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-09-07T00:00:00.000Z","_created_at":"2019-03-30T00:00:00.000Z","_age_weeks":194,"_stars_per_week":18.35,"_pop_contributor_count":3,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["universityofappliedtrialanderror"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.17,"_pop_updated_issues_count":25,"_pop_closed_issues_count":13,"_pop_created_since_days":45,"_pop_updated_since_days":3,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":25.0,"_pop_comment_count":38.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":8,"_pop_score":28.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tebelorg/rpa-python/master/README.md","_readme_localurl":"tebelorg~rpa-python~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tebelorg/rpa-python/master/setup.py"],"_requirements_localurls":["tebelorg~rpa-python~setup.py"]},{"index":209,"category":"web","githuburl":"https://github.com/pywebio/pywebio","featured":null,"links":null,"description":null,"_repopath":"pywebio/pywebio","_reponame":"PyWebIO","_stars":3563,"_forks":319,"_watches":45,"_topics":["pywebio"],"_language":"Python","_homepage":"https://pywebio.readthedocs.io","_description":"PyWebIO: Write interactive web app in script way.","_organization":"pywebio","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-26T00:00:00.000Z","_created_at":"2020-02-29T00:00:00.000Z","_age_weeks":146,"_stars_per_week":24.36,"_pop_contributor_count":15,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["christianclauss"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.71,"_pop_updated_issues_count":27,"_pop_closed_issues_count":3,"_pop_created_since_days":34,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":27.0,"_pop_comment_count":21.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":6,"_pop_score":33.3,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pywebio/pywebio/master/README.md","_readme_localurl":"pywebio~pywebio~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pywebio/pywebio/master/requirements.txt","https://raw.githubusercontent.com/pywebio/pywebio/master/setup.py"],"_requirements_localurls":["pywebio~pywebio~requirements.txt","pywebio~pywebio~setup.py"]},{"index":309,"category":"crypto","githuburl":"https://github.com/crytic/slither","featured":null,"links":null,"description":null,"_repopath":"crytic/slither","_reponame":"slither","_stars":3530,"_forks":645,"_watches":61,"_topics":["solidity","ethereum","static-analysis"],"_language":"Python","_homepage":"https://blog.trailofbits.com/2018/10/19/slither-a-solidity-static-analysis-framework/","_description":"slither: Static Analyzer for Solidity","_organization":"crytic","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2018-09-05T00:00:00.000Z","_age_weeks":223,"_stars_per_week":15.78,"_pop_contributor_count":96,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["trailofbits"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.79,"_pop_updated_issues_count":193,"_pop_closed_issues_count":90,"_pop_created_since_days":52,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":193.0,"_pop_comment_count":305.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":369,"_pop_score":51.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/crytic/slither/master/README.md","_readme_localurl":"crytic~slither~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/crytic/slither/master/setup.py","https://raw.githubusercontent.com/crytic/slither/master/pyproject.toml"],"_requirements_localurls":["crytic~slither~setup.py","crytic~slither~pyproject.toml"]},{"index":616,"category":"testing","githuburl":"https://github.com/spulec/freezegun","featured":null,"links":null,"description":null,"_repopath":"spulec/freezegun","_reponame":"freezegun","_stars":3510,"_forks":243,"_watches":34,"_topics":[],"_language":"Python","_homepage":null,"_description":"freezegun: Let your Python tests travel through time","_organization":"spulec","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-08-12T00:00:00.000Z","_created_at":"2012-12-11T00:00:00.000Z","_age_weeks":522,"_stars_per_week":6.71,"_pop_contributor_count":106,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dryft-technologies","nordsoftware","pioneervalleybooks","policystat","yipitdata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.33,"_pop_updated_issues_count":22,"_pop_closed_issues_count":1,"_pop_created_since_days":122,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":22.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":692,"_pop_score":49.82,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/spulec/freezegun/master/README.rst","_readme_localurl":"spulec~freezegun~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/spulec/freezegun/master/requirements.txt","https://raw.githubusercontent.com/spulec/freezegun/master/setup.py","https://raw.githubusercontent.com/spulec/freezegun/master/pyproject.toml"],"_requirements_localurls":["spulec~freezegun~requirements.txt","spulec~freezegun~setup.py","spulec~freezegun~pyproject.toml"]},{"index":770,"category":"data","githuburl":"https://github.com/gristlabs/grist-core","featured":null,"links":null,"description":null,"_repopath":"gristlabs/grist-core","_reponame":"grist-core","_stars":3501,"_forks":164,"_watches":40,"_topics":["awesome","database","spreadsheet"],"_language":"TypeScript","_homepage":"https://support.getgrist.com/self-managed/","_description":"grist-core: Grist is the evolution of spreadsheets.","_organization":"gristlabs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2020-05-22T00:00:00.000Z","_age_weeks":134,"_stars_per_week":26.04,"_pop_contributor_count":20,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["gristlabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.13,"_pop_updated_issues_count":117,"_pop_closed_issues_count":58,"_pop_created_since_days":31,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":117.0,"_pop_comment_count":253.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":11,"_pop_score":43.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gristlabs/grist-core/master/README.md","_readme_localurl":"gristlabs~grist-core~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":442,"category":"gis","githuburl":"https://github.com/osgeo/gdal","featured":null,"links":null,"description":null,"_repopath":"osgeo/gdal","_reponame":"gdal","_stars":3496,"_forks":1955,"_watches":169,"_topics":["raster","geospatial-data","vector","remote-sensing"],"_language":"C++","_homepage":"https://gdal.org","_description":"GDAL is an open source MIT licensed translator library for raster and vector geospatial data formats.","_organization":"osgeo","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2012-10-09T00:00:00.000Z","_age_weeks":531,"_stars_per_week":6.57,"_pop_contributor_count":506,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cadcorp","google","spatialys"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":47.69,"_pop_updated_issues_count":625,"_pop_closed_issues_count":575,"_pop_created_since_days":124,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":625.0,"_pop_comment_count":665.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":6036,"_pop_score":74.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/osgeo/gdal/master/README.md","_readme_localurl":"osgeo~gdal~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":280,"category":"nlp","githuburl":"https://github.com/maartengr/bertopic","featured":null,"links":null,"description":null,"_repopath":"maartengr/bertopic","_reponame":"BERTopic","_stars":3488,"_forks":455,"_watches":45,"_topics":["bert","transformers","topic-modeling","sentence-embeddings","nlp","machine-learning","topic","ldavis","topic-modelling","topic-models"],"_language":"Python","_homepage":"https://maartengr.github.io/BERTopic/","_description":"BERTopic: Leveraging BERT and c-TF-IDF to create easily interpretable topics. ","_organization":"maartengr","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2020-09-22T00:00:00.000Z","_age_weeks":116,"_stars_per_week":29.85,"_pop_contributor_count":15,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ada","expedock","iknl","mustanganalytics","scitedotai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":221,"_pop_closed_issues_count":136,"_pop_created_since_days":27,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":221.0,"_pop_comment_count":544.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":0,"_pop_score":40.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/maartengr/bertopic/master/README.md","_readme_localurl":"maartengr~bertopic~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/maartengr/bertopic/master/setup.py"],"_requirements_localurls":["maartengr~bertopic~setup.py"]},{"index":287,"category":"gis","githuburl":"https://github.com/geopandas/geopandas","featured":1.0,"links":null,"description":null,"_repopath":"geopandas/geopandas","_reponame":"geopandas","_stars":3462,"_forks":774,"_watches":107,"_topics":[],"_language":"Python","_homepage":"http://geopandas.org/","_description":"geopandas: Python tools for geographic data","_organization":"geopandas","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2013-06-27T00:00:00.000Z","_age_weeks":494,"_stars_per_week":7.0,"_pop_contributor_count":183,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["planetlabs","udl-ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.08,"_pop_updated_issues_count":204,"_pop_closed_issues_count":93,"_pop_created_since_days":115,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":204.0,"_pop_comment_count":443.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":243,"_pop_score":58.66,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/geopandas/geopandas/master/README.md","_readme_localurl":"geopandas~geopandas~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/geopandas/geopandas/master/setup.py","https://raw.githubusercontent.com/geopandas/geopandas/master/pyproject.toml"],"_requirements_localurls":["geopandas~geopandas~setup.py","geopandas~geopandas~pyproject.toml"]},{"index":778,"category":"study","githuburl":"https://github.com/nielsrogge/transformers-tutorials","featured":null,"links":null,"description":null,"_repopath":"nielsrogge/transformers-tutorials","_reponame":"Transformers-Tutorials","_stars":3456,"_forks":516,"_watches":77,"_topics":["transformers","pytorch","bert","vision-transformer","layoutlm","gpt-2"],"_language":"Jupyter Notebook","_homepage":"","_description":"Transformers-Tutorials: This repository contains demos I made with the Transformers library by HuggingFace.","_organization":"nielsrogge","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2020-08-31T00:00:00.000Z","_age_weeks":120,"_stars_per_week":28.8,"_pop_contributor_count":4,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","roboflow"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.33,"_pop_updated_issues_count":63,"_pop_closed_issues_count":25,"_pop_created_since_days":28,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":63.0,"_pop_comment_count":92.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":29.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nielsrogge/transformers-tutorials/master/README.md","_readme_localurl":"nielsrogge~transformers-tutorials~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":782,"category":"diffusion","githuburl":"https://github.com/jina-ai/discoart","featured":null,"links":null,"description":null,"_repopath":"jina-ai/discoart","_reponame":"discoart","_stars":3428,"_forks":204,"_watches":33,"_topics":["creative-ai","disco-diffusion","cross-modal","dalle","generative-art","multimodal","diffusion","prompts","midjourney","imgen","discodiffusion","creative-art","clip-guided-diffusion","latent-diffusion","stable-diffusion"],"_language":"Python","_homepage":"","_description":"discoart: \ud83e\udea9 Create Disco Diffusion artworks in one line","_organization":"jina-ai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-08-17T00:00:00.000Z","_created_at":"2022-06-30T00:00:00.000Z","_age_weeks":24,"_stars_per_week":139.51,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["jina-ai","jinaai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.21,"_pop_updated_issues_count":14,"_pop_closed_issues_count":0,"_pop_created_since_days":6,"_pop_updated_since_days":4,"_pop_recent_releases_count":110,"_pop_recent_releases_estimated_tags":241,"_pop_recent_releases_adjusted_count":110,"_pop_issue_count":14.0,"_pop_comment_count":19.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":8,"_pop_score":30.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jina-ai/discoart/master/README.md","_readme_localurl":"jina-ai~discoart~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jina-ai/discoart/master/setup.py"],"_requirements_localurls":["jina-ai~discoart~setup.py"]},{"index":754,"category":"study","githuburl":"https://github.com/karpathy/micrograd","featured":null,"links":null,"description":null,"_repopath":"karpathy/micrograd","_reponame":"micrograd","_stars":3406,"_forks":309,"_watches":80,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"micrograd: A tiny scalar-valued autograd engine and a neural net library on top of it with PyTorch-like API","_organization":"karpathy","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-04-18T00:00:00.000Z","_created_at":"2020-04-13T00:00:00.000Z","_age_weeks":140,"_stars_per_week":24.33,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["enscognitique"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":8,"_pop_closed_issues_count":4,"_pop_created_since_days":33,"_pop_updated_since_days":32,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":8.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":10.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/karpathy/micrograd/master/README.md","_readme_localurl":"karpathy~micrograd~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/karpathy/micrograd/master/setup.py"],"_requirements_localurls":["karpathy~micrograd~setup.py"]},{"index":757,"category":"util","githuburl":"https://github.com/pypa/hatch","featured":null,"links":null,"description":null,"_repopath":"pypa/hatch","_reponame":"hatch","_stars":3396,"_forks":165,"_watches":49,"_topics":["python","cli","virtualenv","packaging","versioning","build","plugin"],"_language":"Python","_homepage":"https://hatch.pypa.io/latest/","_description":"hatch: Modern, extensible Python project management","_organization":"pypa","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2017-05-31T00:00:00.000Z","_age_weeks":289,"_stars_per_week":11.72,"_pop_contributor_count":20,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datadog","douban","mongodb"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.4,"_pop_updated_issues_count":164,"_pop_closed_issues_count":126,"_pop_created_since_days":68,"_pop_updated_since_days":0,"_pop_recent_releases_count":82,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":82,"_pop_issue_count":164.0,"_pop_comment_count":303.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":205,"_pop_score":56.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pypa/hatch/master/README.md","_readme_localurl":"pypa~hatch~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pypa/hatch/master/pyproject.toml"],"_requirements_localurls":["pypa~hatch~pyproject.toml"]},{"index":462,"category":"util","githuburl":"https://github.com/rspeer/python-ftfy","featured":null,"links":null,"description":null,"_repopath":"rspeer/python-ftfy","_reponame":"python-ftfy","_stars":3387,"_forks":116,"_watches":74,"_topics":[],"_language":"Python","_homepage":"http://ftfy.readthedocs.org","_description":"python-ftfy: Fixes mojibake and other glitches in Unicode text, after the fact.","_organization":"rspeer","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-10-25T00:00:00.000Z","_created_at":"2012-08-24T00:00:00.000Z","_age_weeks":538,"_stars_per_week":6.29,"_pop_contributor_count":18,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["elementalcognition","luminoso"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":126,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":3,"_pop_score":31.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rspeer/python-ftfy/master/README.md","_readme_localurl":"rspeer~python-ftfy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/rspeer/python-ftfy/master/setup.py","https://raw.githubusercontent.com/rspeer/python-ftfy/master/pyproject.toml"],"_requirements_localurls":["rspeer~python-ftfy~setup.py","rspeer~python-ftfy~pyproject.toml"]},{"index":200,"category":"ml","githuburl":"https://github.com/huggingface/accelerate","featured":null,"links":null,"description":null,"_repopath":"huggingface/accelerate","_reponame":"accelerate","_stars":3380,"_forks":286,"_watches":65,"_topics":[],"_language":"Python","_homepage":"https://huggingface.co/docs/accelerate","_description":"accelerate: \ud83d\ude80 A simple way to train and use PyTorch models with multi-GPU, TPU, mixed-precision","_organization":"huggingface","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2020-10-30T00:00:00.000Z","_age_weeks":111,"_stars_per_week":30.33,"_pop_contributor_count":77,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.46,"_pop_updated_issues_count":287,"_pop_closed_issues_count":250,"_pop_created_since_days":26,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":287.0,"_pop_comment_count":733.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":1206,"_pop_score":57.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/accelerate/master/README.md","_readme_localurl":"huggingface~accelerate~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/accelerate/master/setup.py","https://raw.githubusercontent.com/huggingface/accelerate/master/pyproject.toml"],"_requirements_localurls":["huggingface~accelerate~setup.py","huggingface~accelerate~pyproject.toml"]},{"index":790,"category":"diffusion","githuburl":"https://github.com/ashawkey/stable-dreamfusion","featured":null,"links":null,"description":null,"_repopath":"ashawkey/stable-dreamfusion","_reponame":"stable-dreamfusion","_stars":3366,"_forks":280,"_watches":79,"_topics":["text-to-3d","gui","nerf","stable-diffusion","dreamfusion"],"_language":"Python","_homepage":"","_description":"stable-dreamfusion: A pytorch implementation of text-to-3D dreamfusion, powered by stable diffusion.","_organization":"ashawkey","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2022-10-06T00:00:00.000Z","_age_weeks":10,"_stars_per_week":318.41,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ctcmedia","pekinguniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.12,"_pop_updated_issues_count":114,"_pop_closed_issues_count":54,"_pop_created_since_days":2,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":114.0,"_pop_comment_count":317.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":10,"_pop_score":30.75,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/ashawkey/stable-dreamfusion/master/readme.md","_readme_localurl":"ashawkey~stable-dreamfusion~readme.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/ashawkey/stable-dreamfusion/master/requirements.txt"],"_requirements_localurls":["ashawkey~stable-dreamfusion~requirements.txt"]},{"index":368,"category":"nlp","githuburl":"https://github.com/layout-parser/layout-parser","featured":null,"links":null,"description":null,"_repopath":"layout-parser/layout-parser","_reponame":"layout-parser","_stars":3346,"_forks":332,"_watches":57,"_topics":["layout-analysis","deep-learning","object-detection","ocr","layout-parser","detectron2","document-layout-analysis","computer-vision","document-image-processing","layout-detection"],"_language":"Python","_homepage":"https://layout-parser.github.io/","_description":"layout-parser: A Unified Toolkit for Deep Learning Based Document Image Analysis","_organization":"layout-parser","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-08-06T00:00:00.000Z","_created_at":"2020-06-10T00:00:00.000Z","_age_weeks":131,"_stars_per_week":25.4,"_pop_contributor_count":8,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon","clinicalmlallenai","factminers"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":16,"_pop_closed_issues_count":2,"_pop_created_since_days":31,"_pop_updated_since_days":4,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":16.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":25.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/layout-parser/layout-parser/master/README.md","_readme_localurl":"layout-parser~layout-parser~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/layout-parser/layout-parser/master/setup.py"],"_requirements_localurls":["layout-parser~layout-parser~setup.py"]},{"index":833,"category":"util","githuburl":"https://github.com/adafruit/circuitpython","featured":null,"links":null,"description":null,"_repopath":"adafruit/circuitpython","_reponame":"circuitpython","_stars":3320,"_forks":877,"_watches":128,"_topics":["circuitpython","micropython","python","embedded","microcontroller","education","beginner","cpython","python3","hacktoberfest"],"_language":"C","_homepage":"https://circuitpython.org","_description":"CircuitPython - a Python implementation for teaching coding with microcontrollers","_organization":"adafruit","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2016-08-20T00:00:00.000Z","_age_weeks":330,"_stars_per_week":10.05,"_pop_contributor_count":877,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["chickadee-tech","unpythonicnetworks"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":37.1,"_pop_updated_issues_count":622,"_pop_closed_issues_count":448,"_pop_created_since_days":77,"_pop_updated_since_days":0,"_pop_recent_releases_count":31,"_pop_recent_releases_estimated_tags":37,"_pop_recent_releases_adjusted_count":31,"_pop_issue_count":622.0,"_pop_comment_count":1458.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":5191,"_pop_score":75.95,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/adafruit/circuitpython/master/README.rst","_readme_localurl":"adafruit~circuitpython~README.rst","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":421,"category":"ml","githuburl":"https://github.com/facebookresearch/reagent","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/reagent","_reponame":"ReAgent","_stars":3311,"_forks":498,"_watches":146,"_topics":[],"_language":"Python","_homepage":"https://reagent.ai","_description":"ReAgent: A platform for Reasoning systems (Reinforcement Learning, Contextual Bandits, etc.)","_organization":"facebookresearch","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2017-07-27T00:00:00.000Z","_age_weeks":281,"_stars_per_week":11.76,"_pop_contributor_count":151,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["banditml","cornell"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.08,"_pop_updated_issues_count":22,"_pop_closed_issues_count":15,"_pop_created_since_days":66,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":22.0,"_pop_comment_count":36.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":587,"_pop_score":51.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/reagent/master/README.md","_readme_localurl":"facebookresearch~reagent~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/reagent/master/setup.py","https://raw.githubusercontent.com/facebookresearch/reagent/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~reagent~setup.py","facebookresearch~reagent~pyproject.toml"]},{"index":897,"category":"viz","githuburl":"https://github.com/has2k1/plotnine","featured":null,"links":null,"description":null,"_repopath":"has2k1/plotnine","_reponame":"plotnine","_stars":3278,"_forks":184,"_watches":65,"_topics":["plotting","grammar","graphics","python","data-analysis"],"_language":"Python","_homepage":"https://plotnine.readthedocs.io/en/stable/","_description":"plotnine: A grammar of graphics for Python","_organization":"has2k1","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2017-04-24T00:00:00.000Z","_age_weeks":295,"_stars_per_week":11.11,"_pop_contributor_count":99,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["kreuzwerker"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.85,"_pop_updated_issues_count":40,"_pop_closed_issues_count":22,"_pop_created_since_days":69,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":40.0,"_pop_comment_count":67.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":34,"_pop_score":44.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/has2k1/plotnine/master/README.md","_readme_localurl":"has2k1~plotnine~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/has2k1/plotnine/master/setup.py","https://raw.githubusercontent.com/has2k1/plotnine/master/pyproject.toml"],"_requirements_localurls":["has2k1~plotnine~setup.py","has2k1~plotnine~pyproject.toml"]},{"index":4,"category":"pandas","githuburl":"https://github.com/aws/aws-sdk-pandas","featured":1.0,"links":null,"description":null,"_repopath":"aws/aws-sdk-pandas","_reponame":"aws-sdk-pandas","_stars":3257,"_forks":562,"_watches":57,"_topics":["python","aws","pandas","apache-arrow","apache-parquet","data-engineering","etl","data-science","redshift","athena","lambda","aws-lambda","aws-glue","emr","amazon-athena","glue-catalog","mysql","amazon-sagemaker-notebook"],"_language":"Python","_homepage":"https://aws-sdk-pandas.readthedocs.io","_description":"aws-sdk-pandas: pandas on AWS - Easy integration with Athena, Glue, Redshift, Timestream, Neptune, OpenSearch, QuickSight, Chime, CloudWatchLogs, DynamoDB, EMR, SecretManager, PostgreSQL, MySQL, SQLServer and S3 (Parquet, CSV, JSON and EXCEL).","_organization":"aws","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-02-26T00:00:00.000Z","_age_weeks":198,"_stars_per_week":16.38,"_pop_contributor_count":121,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","aws","vtex"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.17,"_pop_updated_issues_count":328,"_pop_closed_issues_count":297,"_pop_created_since_days":46,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":328.0,"_pop_comment_count":1279.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.9,"_pop_dependents_count":0,"_pop_score":52.13,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aws/aws-sdk-pandas/master/README.md","_readme_localurl":"aws~aws-sdk-pandas~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/aws/aws-sdk-pandas/master/pyproject.toml"],"_requirements_localurls":["aws~aws-sdk-pandas~pyproject.toml"]},{"index":321,"category":"gui","githuburl":"https://github.com/r0x0r/pywebview","featured":null,"links":null,"description":null,"_repopath":"r0x0r/pywebview","_reponame":"pywebview","_stars":3247,"_forks":433,"_watches":57,"_topics":["python","webkit","gtk","linux","windows","gui","osx","cocoa","html","javascript","qt","cef"],"_language":"Python","_homepage":"https://pywebview.flowrl.com","_description":"pywebview: Build GUI for your Python program with JavaScript, HTML, and CSS","_organization":"r0x0r","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2014-11-20T00:00:00.000Z","_age_weeks":421,"_stars_per_week":7.7,"_pop_contributor_count":97,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["beeper"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.46,"_pop_updated_issues_count":66,"_pop_closed_issues_count":46,"_pop_created_since_days":98,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":66.0,"_pop_comment_count":194.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":43,"_pop_score":50.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/r0x0r/pywebview/master/README.md","_readme_localurl":"r0x0r~pywebview~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/r0x0r/pywebview/master/requirements.txt","https://raw.githubusercontent.com/r0x0r/pywebview/master/setup.py"],"_requirements_localurls":["r0x0r~pywebview~requirements.txt","r0x0r~pywebview~setup.py"]},{"index":663,"category":"util","githuburl":"https://github.com/zeromq/pyzmq","featured":null,"links":null,"description":null,"_repopath":"zeromq/pyzmq","_reponame":"pyzmq","_stars":3225,"_forks":610,"_watches":102,"_topics":["cython","python","zeromq"],"_language":"Python","_homepage":"http://zguide.zeromq.org/py:all","_description":"PyZMQ: Python bindings for zeromq","_organization":"zeromq","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2010-07-21T00:00:00.000Z","_age_weeks":647,"_stars_per_week":4.98,"_pop_contributor_count":187,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","microsoft","simularesearchlaboratory","universityofcalifornia,berkeley."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.42,"_pop_updated_issues_count":60,"_pop_closed_issues_count":48,"_pop_created_since_days":151,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":60.0,"_pop_comment_count":63.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":604,"_pop_score":60.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zeromq/pyzmq/master/README.md","_readme_localurl":"zeromq~pyzmq~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/zeromq/pyzmq/master/setup.py","https://raw.githubusercontent.com/zeromq/pyzmq/master/pyproject.toml"],"_requirements_localurls":["zeromq~pyzmq~setup.py","zeromq~pyzmq~pyproject.toml"]},{"index":895,"category":"time-series","githuburl":"https://github.com/awslabs/gluonts","featured":null,"links":null,"description":null,"_repopath":"awslabs/gluonts","_reponame":"gluonts","_stars":3224,"_forks":652,"_watches":69,"_topics":["time-series","deep-learning","forecasting","neural-networks","machine-learning","time-series-prediction","time-series-forecasting","mxnet","pytorch","aws","sagemaker","timeseries","artificial-intelligence","data-science"],"_language":"Python","_homepage":"https://ts.gluon.ai","_description":"gluonts: Probabilistic time series modeling in Python","_organization":"awslabs","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2019-05-15T00:00:00.000Z","_age_weeks":187,"_stars_per_week":17.18,"_pop_contributor_count":98,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon","awsawsawslabs","awslabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.65,"_pop_updated_issues_count":176,"_pop_closed_issues_count":121,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":27,"_pop_recent_releases_estimated_tags":19,"_pop_recent_releases_adjusted_count":27,"_pop_issue_count":176.0,"_pop_comment_count":224.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":48.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/awslabs/gluonts/master/README.md","_readme_localurl":"awslabs~gluonts~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/awslabs/gluonts/master/setup.py","https://raw.githubusercontent.com/awslabs/gluonts/master/pyproject.toml"],"_requirements_localurls":["awslabs~gluonts~setup.py","awslabs~gluonts~pyproject.toml"]},{"index":208,"category":"crypto","githuburl":"https://github.com/cyberpunkmetalhead/binance-volatility-trading-bot","featured":null,"links":null,"description":null,"_repopath":"cyberpunkmetalhead/binance-volatility-trading-bot","_reponame":"Binance-volatility-trading-bot","_stars":3222,"_forks":763,"_watches":145,"_topics":[],"_language":"Python","_homepage":null,"_description":"Binance-volatility-trading-bot: This is a fully functioning Binance trading bot that measures the volatility of every coin on Binance and places trades with the highest gaining coins If you like this project consider donating though the Brave browser to allow me to continuously improve the script.","_organization":"cyberpunkmetalhead","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2021-06-10T00:00:00.000Z","_created_at":"2021-05-08T00:00:00.000Z","_age_weeks":84,"_stars_per_week":38.23,"_pop_contributor_count":19,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mazette!"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":20,"_pop_updated_since_days":19,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":12.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cyberpunkmetalhead/binance-volatility-trading-bot/master/README.md","_readme_localurl":"cyberpunkmetalhead~binance-volatility-trading-bot~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/cyberpunkmetalhead/binance-volatility-trading-bot/master/requirements.txt"],"_requirements_localurls":["cyberpunkmetalhead~binance-volatility-trading-bot~requirements.txt"]},{"index":93,"category":"web","githuburl":"https://github.com/unbit/uwsgi","featured":null,"links":null,"description":null,"_repopath":"unbit/uwsgi","_reponame":"uwsgi","_stars":3218,"_forks":668,"_watches":113,"_topics":[],"_language":"C","_homepage":"http://projects.unbit.it/uwsgi","_description":"uWSGI application server container","_organization":"unbit","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2011-10-09T00:00:00.000Z","_age_weeks":584,"_stars_per_week":5.51,"_pop_contributor_count":352,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["20tabsrl","menodizero.it","unbit"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":67,"_pop_closed_issues_count":33,"_pop_created_since_days":136,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":67.0,"_pop_comment_count":85.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":1403,"_pop_score":60.1,"_readme_filename":"","_readme_giturl":"","_readme_localurl":"","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/unbit/uwsgi/master/setup.py"],"_requirements_localurls":["unbit~uwsgi~setup.py"]},{"index":361,"category":"ml-ops","githuburl":"https://github.com/polyaxon/polyaxon","featured":null,"links":null,"description":null,"_repopath":"polyaxon/polyaxon","_reponame":"polyaxon","_stars":3216,"_forks":316,"_watches":77,"_topics":["deep-learning","machine-learning","artificial-intelligence","data-science","reinforcement-learning","kubernetes","tensorflow","pytorch","keras","mxnet","caffe","ml","k8s","jupyter","notebook","jupyterlab","pipelines","workflow","mlops","hyperparameter-optimization"],"_language":"Python","_homepage":"https://polyaxon.com","_description":"polyaxon: MLOps Tools For Managing & Orchestrating The Machine Learning LifeCycle","_organization":"polyaxon","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-11T00:00:00.000Z","_created_at":"2016-12-26T00:00:00.000Z","_age_weeks":312,"_stars_per_week":10.31,"_pop_contributor_count":98,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.58,"_pop_updated_issues_count":6,"_pop_closed_issues_count":0,"_pop_created_since_days":73,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":25,"_pop_issue_count":6.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":111,"_pop_score":40.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/polyaxon/polyaxon/master/README.md","_readme_localurl":"polyaxon~polyaxon~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":319,"category":"gui","githuburl":"https://github.com/dddomodossola/remi","featured":null,"links":null,"description":null,"_repopath":"dddomodossola/remi","_reponame":"remi","_stars":3185,"_forks":390,"_watches":119,"_topics":["python","gui-library","remi","platform-independent","ui","gui"],"_language":"Python","_homepage":"","_description":"remi: Python REMote Interface library. Platform independent. In about 100 Kbytes, perfect for your diet.","_organization":"dddomodossola","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2014-03-20T00:00:00.000Z","_age_weeks":456,"_stars_per_week":6.98,"_pop_contributor_count":56,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["europeanspallationsourceeric","imtssrl"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.71,"_pop_updated_issues_count":24,"_pop_closed_issues_count":21,"_pop_created_since_days":106,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":24.0,"_pop_comment_count":42.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":471,"_pop_score":49.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dddomodossola/remi/master/README.md","_readme_localurl":"dddomodossola~remi~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dddomodossola/remi/master/setup.py"],"_requirements_localurls":["dddomodossola~remi~setup.py"]},{"index":557,"category":"jupyter","githuburl":"https://github.com/executablebooks/jupyter-book","featured":null,"links":null,"description":null,"_repopath":"executablebooks/jupyter-book","_reponame":"jupyter-book","_stars":3163,"_forks":587,"_watches":63,"_topics":["jupyter","sphinx-doc","documentation-generator"],"_language":"Python","_homepage":"http://jupyterbook.org","_description":"jupyter-book: Create beautiful, publication-quality books and documents from computational content.","_organization":"executablebooks","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2018-06-14T00:00:00.000Z","_age_weeks":235,"_stars_per_week":13.43,"_pop_contributor_count":118,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["imperialcollegelondon","stanforduniversity","ucberkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.63,"_pop_updated_issues_count":107,"_pop_closed_issues_count":37,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":107.0,"_pop_comment_count":197.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":139,"_pop_score":53.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/executablebooks/jupyter-book/master/README.md","_readme_localurl":"executablebooks~jupyter-book~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/executablebooks/jupyter-book/master/pyproject.toml"],"_requirements_localurls":["executablebooks~jupyter-book~pyproject.toml"]},{"index":99,"category":"ml","githuburl":"https://github.com/skvark/opencv-python","featured":null,"links":null,"description":null,"_repopath":"skvark/opencv-python","_reponame":"opencv-python","_stars":3161,"_forks":618,"_watches":82,"_topics":["opencv","python","wheel","python-3","opencv-python","opencv-contrib-python","precompiled","pypi","manylinux"],"_language":"Shell","_homepage":"https://pypi.org/project/opencv-python/","_description":"opencv-python: Automated CI toolchain to produce precompiled opencv-python, opencv-python-headless, opencv-contrib-python and opencv-contrib-python-headless packages.","_organization":"skvark","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2016-04-08T00:00:00.000Z","_age_weeks":349,"_stars_per_week":9.05,"_pop_contributor_count":40,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["softlandia-ltd","xperience.ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.75,"_pop_updated_issues_count":50,"_pop_closed_issues_count":30,"_pop_created_since_days":82,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":50.0,"_pop_comment_count":105.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":1469,"_pop_score":53.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/skvark/opencv-python/master/README.md","_readme_localurl":"skvark~opencv-python~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/skvark/opencv-python/master/setup.py","https://raw.githubusercontent.com/skvark/opencv-python/master/pyproject.toml"],"_requirements_localurls":["skvark~opencv-python~setup.py","skvark~opencv-python~pyproject.toml"]},{"index":804,"category":"util","githuburl":"https://github.com/miguelgrinberg/python-socketio","featured":null,"links":null,"description":null,"_repopath":"miguelgrinberg/python-socketio","_reponame":"python-socketio","_stars":3151,"_forks":512,"_watches":63,"_topics":["socket-io","socketio","socketio-server","websocket","long-polling","low-latency","web-server","python","asyncio","eventlet","gevent"],"_language":"Python","_homepage":"","_description":"python-socketio: Python Socket.IO server and client","_organization":"miguelgrinberg","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-08T00:00:00.000Z","_created_at":"2015-07-15T00:00:00.000Z","_age_weeks":387,"_stars_per_week":8.13,"_pop_contributor_count":61,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["untienots"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.19,"_pop_updated_issues_count":51,"_pop_closed_issues_count":43,"_pop_created_since_days":90,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":51.0,"_pop_comment_count":105.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":285,"_pop_score":52.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/miguelgrinberg/python-socketio/master/README.md","_readme_localurl":"miguelgrinberg~python-socketio~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/miguelgrinberg/python-socketio/master/setup.py","https://raw.githubusercontent.com/miguelgrinberg/python-socketio/master/pyproject.toml"],"_requirements_localurls":["miguelgrinberg~python-socketio~setup.py","miguelgrinberg~python-socketio~pyproject.toml"]},{"index":250,"category":"web","githuburl":"https://github.com/websocket-client/websocket-client","featured":null,"links":null,"description":null,"_repopath":"websocket-client/websocket-client","_reponame":"websocket-client","_stars":3133,"_forks":724,"_watches":88,"_topics":["websocket","websockets","websocket-client","websockets-client","python","rfc-6455"],"_language":"Python","_homepage":"https://github.com/websocket-client/websocket-client","_description":"websocket-client: WebSocket client for Python","_organization":"websocket-client","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2010-12-28T00:00:00.000Z","_age_weeks":624,"_stars_per_week":5.01,"_pop_contributor_count":205,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["piclo","redhat,inc","yacademy"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.96,"_pop_updated_issues_count":32,"_pop_closed_issues_count":26,"_pop_created_since_days":146,"_pop_updated_since_days":2,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":32.0,"_pop_comment_count":57.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":986,"_pop_score":56.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/websocket-client/websocket-client/master/README.md","_readme_localurl":"websocket-client~websocket-client~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/websocket-client/websocket-client/master/setup.py"],"_requirements_localurls":["websocket-client~websocket-client~setup.py"]},{"index":832,"category":"pandas","githuburl":"https://github.com/blaze/blaze","featured":null,"links":null,"description":null,"_repopath":"blaze/blaze","_reponame":"blaze","_stars":3118,"_forks":386,"_watches":200,"_topics":[],"_language":"Python","_homepage":"blaze.pydata.org","_description":"blaze: NumPy and Pandas interface to Big Data","_organization":"blaze","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2019-08-15T00:00:00.000Z","_created_at":"2012-10-26T00:00:00.000Z","_age_weeks":529,"_stars_per_week":5.89,"_pop_contributor_count":65,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["awsthinkbox","coiled","formerlyquantopian","voltrondata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":124,"_pop_updated_since_days":41,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":1860,"_pop_score":41.24,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/blaze/blaze/master/README.rst","_readme_localurl":"blaze~blaze~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/blaze/blaze/master/setup.py"],"_requirements_localurls":["blaze~blaze~setup.py"]},{"index":182,"category":"testing","githuburl":"https://github.com/tox-dev/tox","featured":null,"links":null,"description":null,"_repopath":"tox-dev/tox","_reponame":"tox","_stars":3115,"_forks":452,"_watches":40,"_topics":["testing","python","virtualenv","continuous-integration","cli","automation","venv","travis","appveyor","gitlab","circleci","azure-pipelines","hacktoberfest"],"_language":"Python","_homepage":"https://tox.wiki","_description":"tox: Command line driven CI frontend and development task automation tool.","_organization":"tox-dev","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2016-09-17T00:00:00.000Z","_age_weeks":326,"_stars_per_week":9.55,"_pop_contributor_count":26,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bloomberglp","canonical","redhatansible"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.0,"_pop_updated_issues_count":283,"_pop_closed_issues_count":229,"_pop_created_since_days":76,"_pop_updated_since_days":0,"_pop_recent_releases_count":26,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":26,"_pop_issue_count":284.0,"_pop_comment_count":495.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":6182,"_pop_score":62.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tox-dev/tox/master/README.md","_readme_localurl":"tox-dev~tox~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tox-dev/tox/master/setup.py","https://raw.githubusercontent.com/tox-dev/tox/master/pyproject.toml"],"_requirements_localurls":["tox-dev~tox~setup.py","tox-dev~tox~pyproject.toml"]},{"index":35,"category":"data","githuburl":"https://github.com/jmcnamara/xlsxwriter","featured":null,"links":null,"description":null,"_repopath":"jmcnamara/xlsxwriter","_reponame":"XlsxWriter","_stars":3115,"_forks":592,"_watches":121,"_topics":["python","xlsx-files","libxlsxwriter","pandas","charts","spreadsheet","xlsx","xlsxwriter"],"_language":"Python","_homepage":"https://xlsxwriter.readthedocs.io","_description":"XlsxWriter: A Python module for creating Excel XLSX files.","_organization":"jmcnamara","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2013-01-04T00:00:00.000Z","_age_weeks":519,"_stars_per_week":6.0,"_pop_contributor_count":47,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["crunch.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.79,"_pop_updated_issues_count":32,"_pop_closed_issues_count":23,"_pop_created_since_days":121,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":32.0,"_pop_comment_count":87.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":362,"_pop_score":52.53,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jmcnamara/xlsxwriter/master/README.rst","_readme_localurl":"jmcnamara~xlsxwriter~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jmcnamara/xlsxwriter/master/setup.py"],"_requirements_localurls":["jmcnamara~xlsxwriter~setup.py"]},{"index":518,"category":"util","githuburl":"https://github.com/spack/spack","featured":null,"links":null,"description":null,"_repopath":"spack/spack","_reponame":"spack","_stars":3102,"_forks":1796,"_watches":105,"_topics":["python","spack","package-manager","hpc","build-tools","radiuss","scientific-computing","macos","linux"],"_language":"Python","_homepage":"https://spack.io","_description":"spack: A flexible package manager that supports multiple versions, configurations, platforms, and compilers.","_organization":"spack","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2014-01-08T00:00:00.000Z","_age_weeks":466,"_stars_per_week":6.65,"_pop_contributor_count":1314,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["llnl","np-complete","universityofillinoisaturbana-champaign"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":84.79,"_pop_updated_issues_count":2517,"_pop_closed_issues_count":1844,"_pop_created_since_days":109,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":2515.0,"_pop_comment_count":5597.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":1578,"_pop_score":77.97,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/spack/spack/master/README.md","_readme_localurl":"spack~spack~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/spack/spack/master/pyproject.toml"],"_requirements_localurls":["spack~spack~pyproject.toml"]},{"index":443,"category":"gis","githuburl":"https://github.com/shapely/shapely","featured":1.0,"links":null,"description":null,"_repopath":"shapely/shapely","_reponame":"shapely","_stars":3100,"_forks":501,"_watches":82,"_topics":[],"_language":"Python","_homepage":"https://shapely.readthedocs.io/en/stable/","_description":"shapely: Manipulation and analysis of geometric objects","_organization":"shapely","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2011-12-31T00:00:00.000Z","_age_weeks":572,"_stars_per_week":5.42,"_pop_contributor_count":140,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["gnsscience","nelen&schuurmans","planetlabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.21,"_pop_updated_issues_count":221,"_pop_closed_issues_count":143,"_pop_created_since_days":134,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":221.0,"_pop_comment_count":488.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":135,"_pop_score":60.43,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/shapely/shapely/master/README.rst","_readme_localurl":"shapely~shapely~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/shapely/shapely/master/setup.py","https://raw.githubusercontent.com/shapely/shapely/master/pyproject.toml"],"_requirements_localurls":["shapely~shapely~setup.py","shapely~shapely~pyproject.toml"]},{"index":0,"category":"data","githuburl":"https://github.com/andialbrecht/sqlparse","featured":null,"links":null,"description":null,"_repopath":"andialbrecht/sqlparse","_reponame":"sqlparse","_stars":3091,"_forks":613,"_watches":93,"_topics":[],"_language":"Python","_homepage":"","_description":"sqlparse: A non-validating SQL parser module for Python","_organization":"andialbrecht","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-23T00:00:00.000Z","_created_at":"2012-04-18T00:00:00.000Z","_age_weeks":556,"_stars_per_week":5.55,"_pop_contributor_count":100,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dyte-in,mafalda-sfu","pioneervalleybooks"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.46,"_pop_updated_issues_count":27,"_pop_closed_issues_count":4,"_pop_created_since_days":130,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":27.0,"_pop_comment_count":36.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":2598,"_pop_score":50.67,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/andialbrecht/sqlparse/master/README.rst","_readme_localurl":"andialbrecht~sqlparse~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/andialbrecht/sqlparse/master/setup.py"],"_requirements_localurls":["andialbrecht~sqlparse~setup.py"]},{"index":260,"category":"util","githuburl":"https://github.com/python-markdown/markdown","featured":null,"links":null,"description":null,"_repopath":"python-markdown/markdown","_reponame":"markdown","_stars":3079,"_forks":789,"_watches":76,"_topics":["python-markdown","markdown","markdown-parser","markdown-to-html","python","python3"],"_language":"Python","_homepage":"https://python-markdown.github.io/","_description":"markdown: A Python implementation of John Gruber\u2019s Markdown with Extension support.","_organization":"python-markdown","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2010-05-29T00:00:00.000Z","_age_weeks":655,"_stars_per_week":4.7,"_pop_contributor_count":164,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["rangle.io","theinterfacefinancialgroup"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.62,"_pop_updated_issues_count":25,"_pop_closed_issues_count":19,"_pop_created_since_days":153,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":25.0,"_pop_comment_count":100.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.0,"_pop_dependents_count":1745,"_pop_score":59.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python-markdown/markdown/master/README.md","_readme_localurl":"python-markdown~markdown~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-markdown/markdown/master/setup.py","https://raw.githubusercontent.com/python-markdown/markdown/master/pyproject.toml"],"_requirements_localurls":["python-markdown~markdown~setup.py","python-markdown~markdown~pyproject.toml"]},{"index":384,"category":"nlp","githuburl":"https://github.com/minimaxir/gpt-2-simple","featured":null,"links":null,"description":null,"_repopath":"minimaxir/gpt-2-simple","_reponame":"gpt-2-simple","_stars":3070,"_forks":633,"_watches":74,"_topics":["text-generation","tensorflow","openai","textgenrnn"],"_language":"Python","_homepage":"","_description":"gpt-2-simple: Python package to easily retrain OpenAI's GPT-2 text-generating model on new texts","_organization":"minimaxir","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-05-22T00:00:00.000Z","_created_at":"2019-04-13T00:00:00.000Z","_age_weeks":192,"_stars_per_week":15.97,"_pop_contributor_count":21,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["buzzfeed","universityofnotredame"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":9,"_pop_closed_issues_count":3,"_pop_created_since_days":45,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":9.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":26.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/minimaxir/gpt-2-simple/master/README.md","_readme_localurl":"minimaxir~gpt-2-simple~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/minimaxir/gpt-2-simple/master/requirements.txt","https://raw.githubusercontent.com/minimaxir/gpt-2-simple/master/setup.py"],"_requirements_localurls":["minimaxir~gpt-2-simple~requirements.txt","minimaxir~gpt-2-simple~setup.py"]},{"index":363,"category":"ml-ops","githuburl":"https://github.com/kubeflow/pipelines","featured":null,"links":null,"description":null,"_repopath":"kubeflow/pipelines","_reponame":"pipelines","_stars":3069,"_forks":1358,"_watches":103,"_topics":["kubeflow-pipelines","mlops","kubeflow","machine-learning","kubernetes","pipeline","data-science"],"_language":"Python","_homepage":"https://www.kubeflow.org/docs/components/pipelines/","_description":"pipelines: Machine Learning Pipelines for Kubeflow","_organization":"kubeflow","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-05-12T00:00:00.000Z","_age_weeks":240,"_stars_per_week":12.77,"_pop_contributor_count":350,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.87,"_pop_updated_issues_count":577,"_pop_closed_issues_count":245,"_pop_created_since_days":56,"_pop_updated_since_days":0,"_pop_recent_releases_count":30,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":30,"_pop_issue_count":577.0,"_pop_comment_count":1161.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":3456,"_pop_score":67.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kubeflow/pipelines/master/README.md","_readme_localurl":"kubeflow~pipelines~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/kubeflow/pipelines/master/requirements.txt"],"_requirements_localurls":["kubeflow~pipelines~requirements.txt"]},{"index":140,"category":"nlp","githuburl":"https://github.com/neuml/txtai","featured":null,"links":null,"description":null,"_repopath":"neuml/txtai","_reponame":"txtai","_stars":3059,"_forks":273,"_watches":54,"_topics":["python","search","machine-learning","nlp","deep-learning","document-search","audio-search","image-search","video-search","semantic-search","similarity-search","neural-search","contextual-search","vector-search","machine-learning-workflows","machine-learning-pipelines","microservice","api","cloud-native","txtai"],"_language":"Python","_homepage":"https://neuml.github.io/txtai","_description":"txtai: \ud83d\udca1 Build AI-powered semantic search applications ","_organization":"neuml","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2020-08-09T00:00:00.000Z","_age_weeks":123,"_stars_per_week":24.84,"_pop_contributor_count":8,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bigtincan","neuml"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.63,"_pop_updated_issues_count":68,"_pop_closed_issues_count":57,"_pop_created_since_days":29,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":68.0,"_pop_comment_count":99.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":3,"_pop_score":40.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/neuml/txtai/master/README.md","_readme_localurl":"neuml~txtai~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/neuml/txtai/master/setup.py","https://raw.githubusercontent.com/neuml/txtai/master/pyproject.toml"],"_requirements_localurls":["neuml~txtai~setup.py","neuml~txtai~pyproject.toml"]},{"index":138,"category":"ml-interpretability","githuburl":"https://github.com/pair-code/lit","featured":1.0,"links":null,"description":null,"_repopath":"pair-code/lit","_reponame":"lit","_stars":3043,"_forks":322,"_watches":71,"_topics":["machine-learning","natural-language-processing","visualization"],"_language":"TypeScript","_homepage":"https://pair-code.github.io/lit","_description":"lit: The Learning Interpretability Tool: Interactively analyze ML models to understand their behavior in an extensible and framework agnostic interface.","_organization":"pair-code","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2020-07-28T00:00:00.000Z","_age_weeks":124,"_stars_per_week":24.37,"_pop_contributor_count":27,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deepmind","google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.96,"_pop_updated_issues_count":168,"_pop_closed_issues_count":154,"_pop_created_since_days":29,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":168.0,"_pop_comment_count":33.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":6,"_pop_score":38.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pair-code/lit/master/README.md","_readme_localurl":"pair-code~lit~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":610,"category":"testing","githuburl":"https://github.com/seleniumbase/seleniumbase","featured":null,"links":null,"description":null,"_repopath":"seleniumbase/seleniumbase","_reponame":"SeleniumBase","_stars":3027,"_forks":726,"_watches":119,"_topics":["python","selenium","webdriver","selenium-python","e2e-testing","seleniumbase","pytest-plugin","web-automation","pytest","behave","chrome","webkit","chromedriver","firefox","test"],"_language":"Python","_homepage":"https://seleniumbase.io","_description":"SeleniumBase: Python framework for web automation and testing that extends Selenium.","_organization":"seleniumbase","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2014-03-04T00:00:00.000Z","_age_weeks":458,"_stars_per_week":6.6,"_pop_contributor_count":35,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["https://www.iboss.com/","nausetconsulting"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":24.38,"_pop_updated_issues_count":108,"_pop_closed_issues_count":105,"_pop_created_since_days":107,"_pop_updated_since_days":0,"_pop_recent_releases_count":152,"_pop_recent_releases_estimated_tags":86,"_pop_recent_releases_adjusted_count":152,"_pop_issue_count":108.0,"_pop_comment_count":127.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":318,"_pop_score":58.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/seleniumbase/seleniumbase/master/README.md","_readme_localurl":"seleniumbase~seleniumbase~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/seleniumbase/seleniumbase/master/requirements.txt","https://raw.githubusercontent.com/seleniumbase/seleniumbase/master/setup.py"],"_requirements_localurls":["seleniumbase~seleniumbase~requirements.txt","seleniumbase~seleniumbase~setup.py"]},{"index":42,"category":"nlp","githuburl":"https://github.com/life4/textdistance","featured":null,"links":null,"description":null,"_repopath":"life4/textdistance","_reponame":"textdistance","_stars":3015,"_forks":240,"_watches":61,"_topics":["distance","algorithm","python","textdistance","hamming-distance","levenshtein-distance","damerau-levenshtein","damerau-levenshtein-distance","algorithms","distance-calculation","jellyfish","diff","levenshtein"],"_language":"Python","_homepage":"","_description":"textdistance: Compute distance between sequences. 30+ algorithms, pure python implementation, common interface, optional external libs usage.","_organization":"life4","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-18T00:00:00.000Z","_created_at":"2017-05-05T00:00:00.000Z","_age_weeks":293,"_stars_per_week":10.28,"_pop_contributor_count":13,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["archlinux","sendcloud","universityofcambridge"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.79,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":68,"_pop_updated_since_days":3,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":73,"_pop_score":32.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/life4/textdistance/master/README.md","_readme_localurl":"life4~textdistance~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/life4/textdistance/master/setup.py","https://raw.githubusercontent.com/life4/textdistance/master/pyproject.toml"],"_requirements_localurls":["life4~textdistance~setup.py","life4~textdistance~pyproject.toml"]},{"index":336,"category":"ml","githuburl":"https://github.com/apple/coremltools","featured":null,"links":null,"description":null,"_repopath":"apple/coremltools","_reponame":"coremltools","_stars":2999,"_forks":481,"_watches":110,"_topics":["coremltools","tensorflow","pytorch","coreml","machine-learning","model-converter","model-conversion"],"_language":"Python","_homepage":"https://coremltools.readme.io","_description":"coremltools: Core ML tools contain supporting tools for Core ML model conversion, editing, and validation.","_organization":"apple","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2017-06-30T00:00:00.000Z","_age_weeks":285,"_stars_per_week":10.51,"_pop_contributor_count":143,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["apple"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.0,"_pop_updated_issues_count":312,"_pop_closed_issues_count":236,"_pop_created_since_days":67,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":312.0,"_pop_comment_count":465.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":49,"_pop_score":51.2,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apple/coremltools/master/README.md","_readme_localurl":"apple~coremltools~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/apple/coremltools/master/setup.py"],"_requirements_localurls":["apple~coremltools~setup.py"]},{"index":698,"category":"util","githuburl":"https://github.com/joblib/joblib","featured":null,"links":null,"description":null,"_repopath":"joblib/joblib","_reponame":"joblib","_stars":2994,"_forks":357,"_watches":63,"_topics":["python","parallel-computing","caching","multiprocessing","threading","memoization"],"_language":"Python","_homepage":"http://joblib.readthedocs.org","_description":"joblib: Computing with Python functions.","_organization":"joblib","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-25T00:00:00.000Z","_created_at":"2010-05-07T00:00:00.000Z","_age_weeks":658,"_stars_per_week":4.55,"_pop_contributor_count":113,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["inria","inriasaclay-parietalteam"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.9,"_pop_updated_issues_count":50,"_pop_closed_issues_count":21,"_pop_created_since_days":154,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":50.0,"_pop_comment_count":81.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":1999,"_pop_score":55.64,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/joblib/joblib/master/README.rst","_readme_localurl":"joblib~joblib~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/joblib/joblib/master/setup.py"],"_requirements_localurls":["joblib~joblib~setup.py"]},{"index":348,"category":"ml-ops","githuburl":"https://github.com/evidentlyai/evidently","featured":null,"links":null,"description":null,"_repopath":"evidentlyai/evidently","_reponame":"evidently","_stars":2986,"_forks":325,"_watches":32,"_topics":["data-drift","jupyter-notebook","pandas-dataframe","machine-learning","model-monitoring","html-report","production-machine-learning","machine-learning-operations","mlops","data-science","hacktoberfest"],"_language":"Python","_homepage":"","_description":"evidently: Evaluate and monitor ML models from validation to production. Join our Discord: https://discord.com/invite/xZjKRaNp8b","_organization":"evidentlyai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2020-11-25T00:00:00.000Z","_age_weeks":107,"_stars_per_week":27.72,"_pop_contributor_count":31,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["evidentlyai","intento,evidentlyai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":20.81,"_pop_updated_issues_count":186,"_pop_closed_issues_count":152,"_pop_created_since_days":25,"_pop_updated_since_days":0,"_pop_recent_releases_count":24,"_pop_recent_releases_estimated_tags":19,"_pop_recent_releases_adjusted_count":24,"_pop_issue_count":186.0,"_pop_comment_count":203.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":16,"_pop_score":49.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/evidentlyai/evidently/master/README.md","_readme_localurl":"evidentlyai~evidently~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/evidentlyai/evidently/master/requirements.txt","https://raw.githubusercontent.com/evidentlyai/evidently/master/setup.py"],"_requirements_localurls":["evidentlyai~evidently~requirements.txt","evidentlyai~evidently~setup.py"]},{"index":139,"category":"viz","githuburl":"https://github.com/vispy/vispy","featured":null,"links":null,"description":null,"_repopath":"vispy/vispy","_reponame":"vispy","_stars":2985,"_forks":604,"_watches":121,"_topics":["hacktoberfest","python","opengl","visualization","closember"],"_language":"Python","_homepage":"http://vispy.org","_description":"vispy: Main repository for Vispy","_organization":"vispy","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2013-03-21T00:00:00.000Z","_age_weeks":508,"_stars_per_week":5.87,"_pop_contributor_count":182,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["independentsoftwareengineer","spacescienceandengineeringcenter(ssec)","universityofedinburgh","universityofwashington"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.31,"_pop_updated_issues_count":79,"_pop_closed_issues_count":47,"_pop_created_since_days":119,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":79.0,"_pop_comment_count":326.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.1,"_pop_dependents_count":125,"_pop_score":61.28,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/vispy/vispy/master/README.rst","_readme_localurl":"vispy~vispy~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/vispy/vispy/master/setup.py","https://raw.githubusercontent.com/vispy/vispy/master/pyproject.toml"],"_requirements_localurls":["vispy~vispy~setup.py","vispy~vispy~pyproject.toml"]},{"index":285,"category":"crypto","githuburl":"https://github.com/ethereum/consensus-specs","featured":null,"links":null,"description":null,"_repopath":"ethereum/consensus-specs","_reponame":"consensus-specs","_stars":2973,"_forks":749,"_watches":246,"_topics":[],"_language":"Python","_homepage":"","_description":"consensus-specs: Ethereum Proof-of-Stake Consensus Specifications","_organization":"ethereum","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2018-09-20T00:00:00.000Z","_age_weeks":221,"_stars_per_week":13.42,"_pop_contributor_count":128,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ctrl^t","oplabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.48,"_pop_updated_issues_count":169,"_pop_closed_issues_count":126,"_pop_created_since_days":52,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":169.0,"_pop_comment_count":335.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":146,"_pop_score":57.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethereum/consensus-specs/master/README.md","_readme_localurl":"ethereum~consensus-specs~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ethereum/consensus-specs/master/setup.py"],"_requirements_localurls":["ethereum~consensus-specs~setup.py"]},{"index":221,"category":"jupyter","githuburl":"https://github.com/jupyterlite/jupyterlite","featured":null,"links":null,"description":null,"_repopath":"jupyterlite/jupyterlite","_reponame":"jupyterlite","_stars":2973,"_forks":186,"_watches":44,"_topics":["jupyter","jupyterlab","jupyterlab-extension","lite","webassembly","wasm","pyodide"],"_language":"Python","_homepage":"https://jupyterlite.rtfd.io/en/latest/try/lab","_description":"jupyterlite: Wasm powered Jupyter running in the browser \ud83d\udca1","_organization":"jupyterlite","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2021-03-27T00:00:00.000Z","_age_weeks":90,"_stars_per_week":32.93,"_pop_contributor_count":41,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quantstack"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.35,"_pop_updated_issues_count":137,"_pop_closed_issues_count":71,"_pop_created_since_days":21,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":458,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":137.0,"_pop_comment_count":330.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":25,"_pop_score":49.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyterlite/jupyterlite/master/README.md","_readme_localurl":"jupyterlite~jupyterlite~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyterlite/jupyterlite/master/pyproject.toml"],"_requirements_localurls":["jupyterlite~jupyterlite~pyproject.toml"]},{"index":272,"category":"data","githuburl":"https://github.com/praw-dev/praw","featured":null,"links":null,"description":null,"_repopath":"praw-dev/praw","_reponame":"praw","_stars":2962,"_forks":449,"_watches":72,"_topics":["python","reddit","api","oauth","praw","reddit-api"],"_language":"Python","_homepage":"http://praw.readthedocs.io/","_description":"PRAW, an acronym for \"Python Reddit API Wrapper\", is a python package that allows for simple access to Reddit's API.","_organization":"praw-dev","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2010-08-19T00:00:00.000Z","_age_weeks":643,"_stars_per_week":4.6,"_pop_contributor_count":220,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["appfolio","billy","indeed","netflix"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.02,"_pop_updated_issues_count":30,"_pop_closed_issues_count":24,"_pop_created_since_days":150,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":30.0,"_pop_comment_count":62.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":541,"_pop_score":59.97,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/praw-dev/praw/master/README.rst","_readme_localurl":"praw-dev~praw~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/praw-dev/praw/master/setup.py","https://raw.githubusercontent.com/praw-dev/praw/master/pyproject.toml"],"_requirements_localurls":["praw-dev~praw~setup.py","praw-dev~praw~pyproject.toml"]},{"index":715,"category":"ml-ops","githuburl":"https://github.com/flyteorg/flyte","featured":null,"links":null,"description":null,"_repopath":"flyteorg/flyte","_reponame":"flyte","_stars":2930,"_forks":305,"_watches":266,"_topics":["flyte","machine-learning","golang","scale","workflow","data-science","data-analysis","data","kubernetes-operator","kubernetes","orchestration-engine","mlops","dataops","grpc","python","battle-tested","production","production-grade","declarative","hacktoberfest"],"_language":"Python","_homepage":"https://flyte.org","_description":"flyte: Kubernetes-native workflow automation platform for complex, mission-critical data and ML processes at scale. It has been battle-tested at Lyft, Spotify, Freenome, and others and is truly open-source.","_organization":"flyteorg","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-10-21T00:00:00.000Z","_age_weeks":165,"_stars_per_week":17.76,"_pop_contributor_count":110,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["flyteorg","unionai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.98,"_pop_updated_issues_count":375,"_pop_closed_issues_count":172,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":31,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":31,"_pop_issue_count":376.0,"_pop_comment_count":569.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":31,"_pop_score":54.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/flyteorg/flyte/master/README.md","_readme_localurl":"flyteorg~flyte~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/flyteorg/flyte/master/requirements.txt"],"_requirements_localurls":["flyteorg~flyte~requirements.txt"]},{"index":381,"category":"ml-ops","githuburl":"https://github.com/aimhubio/aim","featured":null,"links":null,"description":null,"_repopath":"aimhubio/aim","_reponame":"aim","_stars":2926,"_forks":183,"_watches":35,"_topics":["python","ai","data-science","data-visualization","experiment-tracking","machine-learning","metadata","metadata-tracking","ml","mlflow","mlops","pytorch","tensorboard","tensorflow","visualization"],"_language":"TypeScript","_homepage":"https://aimstack.io","_description":"Aim \ud83d\udcab \u2014 easy-to-use and performant open-source ML experiment tracker.","_organization":"aimhubio","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2019-05-31T00:00:00.000Z","_age_weeks":185,"_stars_per_week":15.78,"_pop_contributor_count":48,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aimhub","aimhubio","aimstack"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.19,"_pop_updated_issues_count":332,"_pop_closed_issues_count":236,"_pop_created_since_days":43,"_pop_updated_since_days":0,"_pop_recent_releases_count":45,"_pop_recent_releases_estimated_tags":42,"_pop_recent_releases_adjusted_count":45,"_pop_issue_count":332.0,"_pop_comment_count":521.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":33,"_pop_score":55.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aimhubio/aim/master/README.md","_readme_localurl":"aimhubio~aim~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/aimhubio/aim/master/requirements.txt","https://raw.githubusercontent.com/aimhubio/aim/master/setup.py","https://raw.githubusercontent.com/aimhubio/aim/master/pyproject.toml"],"_requirements_localurls":["aimhubio~aim~requirements.txt","aimhubio~aim~setup.py","aimhubio~aim~pyproject.toml"]},{"index":623,"category":"util","githuburl":"https://github.com/suor/funcy","featured":null,"links":null,"description":null,"_repopath":"suor/funcy","_reponame":"funcy","_stars":2923,"_forks":133,"_watches":73,"_topics":["functional-programming","utilities","python"],"_language":"Python","_homepage":"","_description":"funcy: A fancy and practical functional tools","_organization":"suor","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-08-25T00:00:00.000Z","_created_at":"2012-10-13T00:00:00.000Z","_age_weeks":531,"_stars_per_week":5.5,"_pop_contributor_count":31,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["festicket","iress","obsidian-security"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":124,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":110,"_pop_score":39.73,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/suor/funcy/master/README.rst","_readme_localurl":"suor~funcy~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/suor/funcy/master/setup.py"],"_requirements_localurls":["suor~funcy~setup.py"]},{"index":77,"category":"jupyter","githuburl":"https://github.com/quantopian/qgrid","featured":null,"links":null,"description":null,"_repopath":"quantopian/qgrid","_reponame":"qgrid","_stars":2921,"_forks":418,"_watches":90,"_topics":[],"_language":"Python","_homepage":"","_description":"qgrid: An interactive grid for sorting, filtering, and editing DataFrames in Jupyter notebooks","_organization":"quantopian","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-04-07T00:00:00.000Z","_created_at":"2014-09-30T00:00:00.000Z","_age_weeks":428,"_stars_per_week":6.81,"_pop_contributor_count":30,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mongodb","sundellopensourceconsultingab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":100,"_pop_updated_since_days":33,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":3.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":18,"_pop_score":28.51,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/quantopian/qgrid/master/README.rst","_readme_localurl":"quantopian~qgrid~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/quantopian/qgrid/master/requirements.txt","https://raw.githubusercontent.com/quantopian/qgrid/master/setup.py"],"_requirements_localurls":["quantopian~qgrid~requirements.txt","quantopian~qgrid~setup.py"]},{"index":390,"category":"diffusion","githuburl":"https://github.com/openai/glide-text2im","featured":null,"links":null,"description":null,"_repopath":"openai/glide-text2im","_reponame":"glide-text2im","_stars":2908,"_forks":408,"_watches":119,"_topics":[],"_language":"Python","_homepage":"","_description":"glide-text2im: GLIDE: a diffusion-based text-conditional image synthesis model","_organization":"openai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-03-21T00:00:00.000Z","_created_at":"2021-12-10T00:00:00.000Z","_age_weeks":53,"_stars_per_week":54.43,"_pop_contributor_count":4,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["texasa&mcenterforappliedtechnology"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":12,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/glide-text2im/master/README.md","_readme_localurl":"openai~glide-text2im~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/glide-text2im/master/setup.py"],"_requirements_localurls":["openai~glide-text2im~setup.py"]},{"index":704,"category":"data","githuburl":"https://github.com/pyeve/cerberus","featured":null,"links":null,"description":null,"_repopath":"pyeve/cerberus","_reponame":"cerberus","_stars":2890,"_forks":226,"_watches":48,"_topics":["python","data-validation"],"_language":"Python","_homepage":"http://python-cerberus.org","_description":"cerberus: Lightweight, extensible data validation library for Python","_organization":"pyeve","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2021-05-05T00:00:00.000Z","_created_at":"2012-10-10T00:00:00.000Z","_age_weeks":531,"_stars_per_week":5.44,"_pop_contributor_count":62,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cir2000"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":9,"_pop_closed_issues_count":4,"_pop_created_since_days":124,"_pop_updated_since_days":20,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":9.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":144,"_pop_score":35.67,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyeve/cerberus/master/README.rst","_readme_localurl":"pyeve~cerberus~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyeve/cerberus/master/setup.py","https://raw.githubusercontent.com/pyeve/cerberus/master/pyproject.toml"],"_requirements_localurls":["pyeve~cerberus~setup.py","pyeve~cerberus~pyproject.toml"]},{"index":476,"category":"gis","githuburl":"https://github.com/holoviz/datashader","featured":1.0,"links":null,"description":null,"_repopath":"holoviz/datashader","_reponame":"datashader","_stars":2887,"_forks":361,"_watches":95,"_topics":["holoviz","datashader","data-visualizations","rasterization"],"_language":"Python","_homepage":"http://datashader.org","_description":"datashader: Quickly and accurately render even the largest data.","_organization":"holoviz","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2015-12-23T00:00:00.000Z","_age_weeks":364,"_stars_per_week":7.92,"_pop_contributor_count":51,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","stripe","voltrondata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.56,"_pop_updated_issues_count":54,"_pop_closed_issues_count":41,"_pop_created_since_days":85,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":54.0,"_pop_comment_count":53.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":17,"_pop_score":46.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/datashader/master/README.md","_readme_localurl":"holoviz~datashader~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/datashader/master/setup.py","https://raw.githubusercontent.com/holoviz/datashader/master/pyproject.toml"],"_requirements_localurls":["holoviz~datashader~setup.py","holoviz~datashader~pyproject.toml"]},{"index":660,"category":"ml","githuburl":"https://github.com/pytorch/glow","featured":null,"links":null,"description":null,"_repopath":"pytorch/glow","_reponame":"glow","_stars":2882,"_forks":655,"_watches":154,"_topics":[],"_language":"C++","_homepage":null,"_description":"glow: Compiler for Neural Network hardware accelerators","_organization":"pytorch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2017-09-29T00:00:00.000Z","_age_weeks":272,"_stars_per_week":10.58,"_pop_contributor_count":332,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.33,"_pop_updated_issues_count":52,"_pop_closed_issues_count":16,"_pop_created_since_days":64,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":52.0,"_pop_comment_count":95.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":3085,"_pop_score":55.66,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/glow/master/README.md","_readme_localurl":"pytorch~glow~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":366,"category":"ml","githuburl":"https://github.com/facebookresearch/vissl","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/vissl","_reponame":"vissl","_stars":2877,"_forks":300,"_watches":53,"_topics":[],"_language":"Jupyter Notebook","_homepage":"https://vissl.ai","_description":"VISSL is FAIR's library of extensible, modular and scalable components for SOTA Self-Supervised Learning with images.","_organization":"facebookresearch","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-10-12T00:00:00.000Z","_created_at":"2020-04-09T00:00:00.000Z","_age_weeks":140,"_stars_per_week":20.47,"_pop_contributor_count":34,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","meta","mosaicml"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.92,"_pop_updated_issues_count":9,"_pop_closed_issues_count":3,"_pop_created_since_days":33,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":9.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":429,"_pop_score":42.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/vissl/master/README.md","_readme_localurl":"facebookresearch~vissl~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/vissl/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/vissl/master/setup.py"],"_requirements_localurls":["facebookresearch~vissl~requirements.txt","facebookresearch~vissl~setup.py"]},{"index":811,"category":"ml-ops","githuburl":"https://github.com/ploomber/ploomber","featured":null,"links":null,"description":null,"_repopath":"ploomber/ploomber","_reponame":"ploomber","_stars":2874,"_forks":199,"_watches":27,"_topics":["workflow","machine-learning","data-science","data-engineering","mlops","papermill","jupyter","jupyter-notebooks","pipelines","vscode","pycharm","notebooks","hacktoberfest"],"_language":"Python","_homepage":"https://ploomber.io","_description":"ploomber: The fastest \u26a1\ufe0f way to build data pipelines. Develop iteratively, deploy anywhere. \u2601\ufe0f","_organization":"ploomber","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2020-01-20T00:00:00.000Z","_age_weeks":152,"_stars_per_week":18.91,"_pop_contributor_count":70,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ploomber"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.5,"_pop_updated_issues_count":68,"_pop_closed_issues_count":42,"_pop_created_since_days":35,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":36,"_pop_recent_releases_adjusted_count":36,"_pop_issue_count":68.0,"_pop_comment_count":95.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":15,"_pop_score":48.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ploomber/ploomber/master/README.md","_readme_localurl":"ploomber~ploomber~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ploomber/ploomber/master/setup.py","https://raw.githubusercontent.com/ploomber/ploomber/master/pyproject.toml"],"_requirements_localurls":["ploomber~ploomber~setup.py","ploomber~ploomber~pyproject.toml"]},{"index":765,"category":"diffusion","githuburl":"https://github.com/lkwq007/stablediffusion-infinity","featured":null,"links":null,"description":null,"_repopath":"lkwq007/stablediffusion-infinity","_reponame":"stablediffusion-infinity","_stars":2832,"_forks":220,"_watches":29,"_topics":["outpainting","stablediffusion"],"_language":"Python","_homepage":"","_description":"stablediffusion-infinity: Outpainting with Stable Diffusion on an infinite canvas","_organization":"lkwq007","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2022-09-02T00:00:00.000Z","_age_weeks":15,"_stars_per_week":183.56,"_pop_contributor_count":6,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cuhk"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.29,"_pop_updated_issues_count":123,"_pop_closed_issues_count":65,"_pop_created_since_days":4,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":123.0,"_pop_comment_count":352.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":10,"_pop_score":35.97,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/lkwq007/stablediffusion-infinity/master/readme.md","_readme_localurl":"lkwq007~stablediffusion-infinity~readme.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":624,"category":"util","githuburl":"https://github.com/more-itertools/more-itertools","featured":null,"links":null,"description":null,"_repopath":"more-itertools/more-itertools","_reponame":"more-itertools","_stars":2825,"_forks":221,"_watches":35,"_topics":[],"_language":"Python","_homepage":"https://more-itertools.rtfd.io","_description":"more-itertools: More routines for operating on iterables, beyond itertools","_organization":"more-itertools","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2012-04-26T00:00:00.000Z","_age_weeks":555,"_stars_per_week":5.08,"_pop_contributor_count":92,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mozilla","universityofoxford","wurlinc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.31,"_pop_updated_issues_count":25,"_pop_closed_issues_count":22,"_pop_created_since_days":130,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":25.0,"_pop_comment_count":30.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":420,"_pop_score":53.58,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/more-itertools/more-itertools/master/README.rst","_readme_localurl":"more-itertools~more-itertools~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/more-itertools/more-itertools/master/setup.py","https://raw.githubusercontent.com/more-itertools/more-itertools/master/pyproject.toml"],"_requirements_localurls":["more-itertools~more-itertools~setup.py","more-itertools~more-itertools~pyproject.toml"]},{"index":761,"category":"sim","githuburl":"https://github.com/qiskit/qiskit","featured":null,"links":null,"description":null,"_repopath":"qiskit/qiskit","_reponame":"qiskit","_stars":2821,"_forks":756,"_watches":97,"_topics":["qiskit","quantum-computing","quantum-programming-language","documentation"],"_language":"OpenQASM","_homepage":"https://qiskit.org","_description":"Qiskit is an open-source SDK for working with quantum computers at the level of circuits, algorithms, and application modules.","_organization":"qiskit","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2018-12-12T00:00:00.000Z","_age_weeks":209,"_stars_per_week":13.45,"_pop_contributor_count":155,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ibm"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.4,"_pop_updated_issues_count":49,"_pop_closed_issues_count":37,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":21,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":49.0,"_pop_comment_count":53.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":4225,"_pop_score":56.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/qiskit/qiskit/master/README.md","_readme_localurl":"qiskit~qiskit~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/qiskit/qiskit/master/setup.py"],"_requirements_localurls":["qiskit~qiskit~setup.py"]},{"index":261,"category":"time-series","githuburl":"https://github.com/salesforce/merlion","featured":null,"links":null,"description":null,"_repopath":"salesforce/merlion","_reponame":"Merlion","_stars":2817,"_forks":242,"_watches":45,"_topics":["time-series","anomaly-detection","forecasting","machine-learning","benchmarking","automl","ensemble-learning"],"_language":"Python","_homepage":"","_description":"Merlion: A Machine Learning Framework for Time Series Intelligence","_organization":"salesforce","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2021-07-28T00:00:00.000Z","_age_weeks":72,"_stars_per_week":38.74,"_pop_contributor_count":13,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["salesforce","twilio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.92,"_pop_updated_issues_count":18,"_pop_closed_issues_count":13,"_pop_created_since_days":17,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":18.0,"_pop_comment_count":22.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":39,"_pop_score":39.13,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/merlion/master/README.md","_readme_localurl":"salesforce~merlion~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/salesforce/merlion/master/setup.py"],"_requirements_localurls":["salesforce~merlion~setup.py"]},{"index":270,"category":"web","githuburl":"https://github.com/strawberry-graphql/strawberry","featured":null,"links":null,"description":null,"_repopath":"strawberry-graphql/strawberry","_reponame":"strawberry","_stars":2808,"_forks":345,"_watches":44,"_topics":["graphql","graphql-server","python","starlette","asyncio","mypy","django","graphql-library","asgi","graphql-schema","strawberry","hacktoberfest"],"_language":"Python","_homepage":"https://strawberry.rocks","_description":"strawberry: A GraphQL library for Python that leverages type annotations \ud83c\udf53","_organization":"strawberry-graphql","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2018-12-21T00:00:00.000Z","_age_weeks":208,"_stars_per_week":13.47,"_pop_contributor_count":166,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["apollographql","strawberry-graphql"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.23,"_pop_updated_issues_count":350,"_pop_closed_issues_count":210,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":178,"_pop_recent_releases_estimated_tags":123,"_pop_recent_releases_adjusted_count":178,"_pop_issue_count":350.0,"_pop_comment_count":691.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":90,"_pop_score":59.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/README.md","_readme_localurl":"strawberry-graphql~strawberry~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/setup.py","https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/pyproject.toml"],"_requirements_localurls":["strawberry-graphql~strawberry~setup.py","strawberry-graphql~strawberry~pyproject.toml"]},{"index":787,"category":"study","githuburl":"https://github.com/cosmicpython/book","featured":null,"links":null,"description":null,"_repopath":"cosmicpython/book","_reponame":"book","_stars":2806,"_forks":481,"_watches":93,"_topics":[],"_language":"Python","_homepage":"https://www.cosmicpython.com","_description":"book: A Book about Pythonic Application Architecture Patterns for Managing Complexity. Cosmos is the Opposite of Chaos you see. O'R. wouldn't actually let us call it \"Cosmic Python\" tho.","_organization":"cosmicpython","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-03T00:00:00.000Z","_created_at":"2019-02-05T00:00:00.000Z","_age_weeks":201,"_stars_per_week":13.9,"_pop_contributor_count":44,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["carbon-re","o'reillymedia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":3,"_pop_closed_issues_count":2,"_pop_created_since_days":47,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":6,"_pop_score":29.7,"_readme_filename":"Readme.md","_readme_giturl":"https://raw.githubusercontent.com/cosmicpython/book/master/Readme.md","_readme_localurl":"cosmicpython~book~Readme.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/cosmicpython/book/master/requirements.txt"],"_requirements_localurls":["cosmicpython~book~requirements.txt"]},{"index":154,"category":"pandas","githuburl":"https://github.com/adamerose/pandasgui","featured":null,"links":null,"description":null,"_repopath":"adamerose/pandasgui","_reponame":"PandasGUI","_stars":2796,"_forks":190,"_watches":53,"_topics":["pandas","dataframe","gui","viewer"],"_language":"Python","_homepage":"","_description":"PandasGUI: A GUI for Pandas DataFrames","_organization":"adamerose","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-03-16T00:00:00.000Z","_created_at":"2019-06-12T00:00:00.000Z","_age_weeks":183,"_stars_per_week":15.22,"_pop_contributor_count":13,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dionresearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":7,"_pop_closed_issues_count":1,"_pop_created_since_days":43,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":7.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":30,"_pop_score":28.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/adamerose/pandasgui/master/README.md","_readme_localurl":"adamerose~pandasgui~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/adamerose/pandasgui/master/requirements.txt","https://raw.githubusercontent.com/adamerose/pandasgui/master/setup.py"],"_requirements_localurls":["adamerose~pandasgui~requirements.txt","adamerose~pandasgui~setup.py"]},{"index":792,"category":"ml-dl","githuburl":"https://github.com/facebookincubator/aitemplate","featured":null,"links":null,"description":null,"_repopath":"facebookincubator/aitemplate","_reponame":"AITemplate","_stars":2789,"_forks":184,"_watches":79,"_topics":[],"_language":"Python","_homepage":"","_description":"AITemplate is a Python framework which renders neural network into high performance CUDA/HIP C++ code. Specialized for FP16 TensorCore (NVIDIA GPU) and MatrixCore (AMD GPU) inference.","_organization":"facebookincubator","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2022-07-15T00:00:00.000Z","_age_weeks":22,"_stars_per_week":124.35,"_pop_contributor_count":18,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.56,"_pop_updated_issues_count":128,"_pop_closed_issues_count":88,"_pop_created_since_days":5,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":128.0,"_pop_comment_count":328.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":0,"_pop_score":29.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookincubator/aitemplate/master/README.md","_readme_localurl":"facebookincubator~aitemplate~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":488,"category":"util","githuburl":"https://github.com/pydata/xarray","featured":null,"links":null,"description":null,"_repopath":"pydata/xarray","_reponame":"xarray","_stars":2788,"_forks":857,"_watches":107,"_topics":["python","netcdf","numpy","pandas","xarray","dask"],"_language":"Python","_homepage":"https://xarray.dev","_description":"xarray: N-D labeled arrays and datasets in Python","_organization":"pydata","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2013-09-30T00:00:00.000Z","_age_weeks":481,"_stars_per_week":5.8,"_pop_contributor_count":407,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","mathandstatsdepartment","ncar"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.54,"_pop_updated_issues_count":448,"_pop_closed_issues_count":256,"_pop_created_since_days":112,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":448.0,"_pop_comment_count":1120.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":1142,"_pop_score":69.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pydata/xarray/master/README.md","_readme_localurl":"pydata~xarray~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pydata/xarray/master/requirements.txt","https://raw.githubusercontent.com/pydata/xarray/master/setup.py","https://raw.githubusercontent.com/pydata/xarray/master/pyproject.toml"],"_requirements_localurls":["pydata~xarray~requirements.txt","pydata~xarray~setup.py","pydata~xarray~pyproject.toml"]},{"index":729,"category":"ml-dl","githuburl":"https://github.com/mosaicml/composer","featured":null,"links":null,"description":null,"_repopath":"mosaicml/composer","_reponame":"composer","_stars":2782,"_forks":174,"_watches":21,"_topics":["deep-learning","pytorch","neural-networks","ml-systems","ml-efficiency","ml-training","machine-learning","neural-network"],"_language":"Python","_homepage":"http://docs.mosaicml.com","_description":"composer: Train neural networks up to 7x faster","_organization":"mosaicml","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2021-10-12T00:00:00.000Z","_age_weeks":61,"_stars_per_week":44.97,"_pop_contributor_count":54,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mosaicml","stanford'22"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":24.19,"_pop_updated_issues_count":357,"_pop_closed_issues_count":327,"_pop_created_since_days":14,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":357.0,"_pop_comment_count":326.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":21,"_pop_score":49.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mosaicml/composer/master/README.md","_readme_localurl":"mosaicml~composer~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mosaicml/composer/master/setup.py","https://raw.githubusercontent.com/mosaicml/composer/master/pyproject.toml"],"_requirements_localurls":["mosaicml~composer~setup.py","mosaicml~composer~pyproject.toml"]},{"index":203,"category":"viz","githuburl":"https://github.com/ml-tooling/opyrator","featured":null,"links":null,"description":null,"_repopath":"ml-tooling/opyrator","_reponame":"opyrator","_stars":2759,"_forks":132,"_watches":48,"_topics":["fastapi","streamlit","pydantic","python","microservices","serverless","faas","functions","python-functions","machine-learning","deployment","type-hints"],"_language":"Python","_homepage":"https://opyrator-playground.mltooling.org","_description":"opyrator: \ud83e\ude84 Turns your machine learning code into microservices with web API, interactive GUI, and more.","_organization":"ml-tooling","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-05-06T00:00:00.000Z","_created_at":"2021-04-06T00:00:00.000Z","_age_weeks":88,"_stars_per_week":31.05,"_pop_contributor_count":4,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":10,"_pop_closed_issues_count":5,"_pop_created_since_days":21,"_pop_updated_since_days":20,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":10.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":7,"_pop_score":17.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ml-tooling/opyrator/master/README.md","_readme_localurl":"ml-tooling~opyrator~README.md","_requirements_filenames":["setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/ml-tooling/opyrator/master/setup.py","https://raw.githubusercontent.com/ml-tooling/opyrator/master/pyproject.toml","https://raw.githubusercontent.com/ml-tooling/opyrator/master/Pipfile"],"_requirements_localurls":["ml-tooling~opyrator~setup.py","ml-tooling~opyrator~pyproject.toml","ml-tooling~opyrator~Pipfile"]},{"index":156,"category":"profiling","githuburl":"https://github.com/gaogaotiantian/viztracer","featured":null,"links":null,"description":null,"_repopath":"gaogaotiantian/viztracer","_reponame":"viztracer","_stars":2756,"_forks":276,"_watches":40,"_topics":["tracer","python3","debugging","profiling","visualization","flamegraph","python","logging"],"_language":"Python","_homepage":"https://viztracer.readthedocs.io/","_description":"VizTracer is a low-overhead logging/debugging/profiling tool that can trace and visualize your python code execution.","_organization":"gaogaotiantian","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-08T00:00:00.000Z","_created_at":"2020-08-05T00:00:00.000Z","_age_weeks":123,"_stars_per_week":22.28,"_pop_contributor_count":17,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebookairesearch","microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.21,"_pop_updated_issues_count":26,"_pop_closed_issues_count":22,"_pop_created_since_days":29,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":32,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":26.0,"_pop_comment_count":57.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":4,"_pop_score":39.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gaogaotiantian/viztracer/master/README.md","_readme_localurl":"gaogaotiantian~viztracer~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gaogaotiantian/viztracer/master/setup.py"],"_requirements_localurls":["gaogaotiantian~viztracer~setup.py"]},{"index":641,"category":"testing","githuburl":"https://github.com/behave/behave","featured":null,"links":null,"description":null,"_repopath":"behave/behave","_reponame":"behave","_stars":2739,"_forks":608,"_watches":120,"_topics":[],"_language":"Python","_homepage":"","_description":"behave: BDD, Python style.","_organization":"behave","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2011-10-25T00:00:00.000Z","_age_weeks":581,"_stars_per_week":4.71,"_pop_contributor_count":85,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["painless-software","smartsgroupmarketsurveillance,nasdaqomx"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.19,"_pop_updated_issues_count":62,"_pop_closed_issues_count":31,"_pop_created_since_days":136,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":62.0,"_pop_comment_count":99.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":391,"_pop_score":52.77,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/behave/behave/master/README.rst","_readme_localurl":"behave~behave~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/behave/behave/master/setup.py"],"_requirements_localurls":["behave~behave~setup.py"]},{"index":709,"category":"pandas","githuburl":"https://github.com/nalepae/pandarallel","featured":1.0,"links":null,"description":null,"_repopath":"nalepae/pandarallel","_reponame":"pandarallel","_stars":2733,"_forks":166,"_watches":26,"_topics":["pandas","python","parallel"],"_language":"Python","_homepage":"https://nalepae.github.io/pandarallel","_description":"pandarallel: A simple and efficient tool to parallelize Pandas operations on all available\u00a0CPUs","_organization":"nalepae","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-03-10T00:00:00.000Z","_age_weeks":197,"_stars_per_week":13.86,"_pop_contributor_count":22,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["boatboatboat","caddi","https://www.kiln.fi/","swissdatasciencecenter"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.87,"_pop_updated_issues_count":26,"_pop_closed_issues_count":14,"_pop_created_since_days":46,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":26.0,"_pop_comment_count":48.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":4,"_pop_score":42.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nalepae/pandarallel/master/README.md","_readme_localurl":"nalepae~pandarallel~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nalepae/pandarallel/master/setup.py"],"_requirements_localurls":["nalepae~pandarallel~setup.py"]},{"index":170,"category":"ml","githuburl":"https://github.com/ourownstory/neural_prophet","featured":null,"links":null,"description":null,"_repopath":"ourownstory/neural_prophet","_reponame":"neural_prophet","_stars":2702,"_forks":363,"_watches":47,"_topics":["forecasting","time-series","machine-learning","fbprophet","prophet","forecast","artificial-intelligence","prediction","trend","seasonality","autoregression","pytorch","timeseries","forecasting-algorithm","forecasting-model","neuralprophet","neural","neural-network","python","deep-learning"],"_language":"Python","_homepage":"https://neuralprophet.com","_description":"neural_prophet: NeuralProphet: A simple forecasting package","_organization":"ourownstory","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2020-05-04T00:00:00.000Z","_age_weeks":137,"_stars_per_week":19.72,"_pop_contributor_count":34,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["stanforduniversity","technicaluniversityofmunich"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.9,"_pop_updated_issues_count":314,"_pop_closed_issues_count":251,"_pop_created_since_days":32,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":314.0,"_pop_comment_count":588.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":19,"_pop_score":48.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ourownstory/neural_prophet/master/README.md","_readme_localurl":"ourownstory~neural_prophet~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ourownstory/neural_prophet/master/setup.py","https://raw.githubusercontent.com/ourownstory/neural_prophet/master/pyproject.toml"],"_requirements_localurls":["ourownstory~neural_prophet~setup.py","ourownstory~neural_prophet~pyproject.toml"]},{"index":34,"category":"nlp","githuburl":"https://github.com/jbesomi/texthero","featured":null,"links":null,"description":null,"_repopath":"jbesomi/texthero","_reponame":"texthero","_stars":2659,"_forks":226,"_watches":44,"_topics":["text-preprocessing","text-representation","text-visualization","nlp","word-embeddings","machine-learning","text-mining","nlp-pipeline","text-clustering","texthero"],"_language":"Python","_homepage":"https://texthero.org","_description":"texthero: Text preprocessing, representation and visualization from zero to hero.","_organization":"jbesomi","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-28T00:00:00.000Z","_created_at":"2020-04-06T00:00:00.000Z","_age_weeks":141,"_stars_per_week":18.86,"_pop_contributor_count":20,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aaltouniversity","imctrading"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":33,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":3.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":29,"_pop_score":32.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jbesomi/texthero/master/README.md","_readme_localurl":"jbesomi~texthero~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jbesomi/texthero/master/setup.py"],"_requirements_localurls":["jbesomi~texthero~setup.py"]},{"index":130,"category":"ml-dl","githuburl":"https://github.com/explosion/thinc","featured":null,"links":null,"description":null,"_repopath":"explosion/thinc","_reponame":"thinc","_stars":2635,"_forks":259,"_watches":85,"_topics":["machine-learning","deep-learning","artificial-intelligence","ai","python","nlp","natural-language-processing","spacy","machine-learning-library","type-checking","functional-programming","pytorch","tensorflow","mxnet","jax"],"_language":"Python","_homepage":"https://thinc.ai","_description":"thinc: \ud83d\udd2e A refreshing functional take on deep learning, compatible with your favorite libraries","_organization":"explosion","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2014-10-16T00:00:00.000Z","_age_weeks":426,"_stars_per_week":6.18,"_pop_contributor_count":57,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["explosion&oxykodit","founderexplosion"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.29,"_pop_updated_issues_count":58,"_pop_closed_issues_count":50,"_pop_created_since_days":100,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":58.0,"_pop_comment_count":67.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":255,"_pop_score":53.66,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/thinc/master/README.md","_readme_localurl":"explosion~thinc~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/explosion/thinc/master/requirements.txt","https://raw.githubusercontent.com/explosion/thinc/master/setup.py","https://raw.githubusercontent.com/explosion/thinc/master/pyproject.toml"],"_requirements_localurls":["explosion~thinc~requirements.txt","explosion~thinc~setup.py","explosion~thinc~pyproject.toml"]},{"index":113,"category":"nlp","githuburl":"https://github.com/huggingface/neuralcoref","featured":null,"links":null,"description":null,"_repopath":"huggingface/neuralcoref","_reponame":"neuralcoref","_stars":2630,"_forks":461,"_watches":96,"_topics":["python","machine-learning","coreference","spacy","coreference-resolution","spacy-extension","spacy-pipeline","nlp","neural-networks","pytorch"],"_language":"C","_homepage":"https://huggingface.co/coref/","_description":"neuralcoref: \u2728Fast Coreference Resolution in spaCy with Neural Networks","_organization":"huggingface","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2021-06-22T00:00:00.000Z","_created_at":"2017-07-03T00:00:00.000Z","_age_weeks":285,"_stars_per_week":9.23,"_pop_contributor_count":21,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["explosion&oxykodit","filamentai","huggingface"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":7,"_pop_closed_issues_count":2,"_pop_created_since_days":66,"_pop_updated_since_days":18,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":7.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":26,"_pop_score":31.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/neuralcoref/master/README.md","_readme_localurl":"huggingface~neuralcoref~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/neuralcoref/master/requirements.txt","https://raw.githubusercontent.com/huggingface/neuralcoref/master/setup.py"],"_requirements_localurls":["huggingface~neuralcoref~requirements.txt","huggingface~neuralcoref~setup.py"]},{"index":111,"category":"ml","githuburl":"https://github.com/teamhg-memex/eli5","featured":null,"links":null,"description":null,"_repopath":"teamhg-memex/eli5","_reponame":"eli5","_stars":2618,"_forks":326,"_watches":68,"_topics":["scikit-learn","machine-learning","xgboost","lightgbm","crfsuite","inspection","explanation","nlp","data-science","python"],"_language":"Jupyter Notebook","_homepage":"http://eli5.readthedocs.io","_description":"eli5: A library for debugging/inspecting machine learning classifiers and explaining their predictions","_organization":"teamhg-memex","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-01-22T00:00:00.000Z","_created_at":"2016-09-15T00:00:00.000Z","_age_weeks":326,"_stars_per_week":8.02,"_pop_contributor_count":14,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["canva","zyte","zytedata,scrapinghub"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":7,"_pop_closed_issues_count":1,"_pop_created_since_days":76,"_pop_updated_since_days":35,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":7.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":13,"_pop_score":27.66,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/teamhg-memex/eli5/master/README.rst","_readme_localurl":"teamhg-memex~eli5~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/teamhg-memex/eli5/master/requirements.txt","https://raw.githubusercontent.com/teamhg-memex/eli5/master/setup.py"],"_requirements_localurls":["teamhg-memex~eli5~requirements.txt","teamhg-memex~eli5~setup.py"]},{"index":801,"category":"data","githuburl":"https://github.com/pallets/itsdangerous","featured":null,"links":null,"description":null,"_repopath":"pallets/itsdangerous","_reponame":"itsdangerous","_stars":2593,"_forks":213,"_watches":57,"_topics":["python","security","hmac","serialization","itsdangerous","pallets"],"_language":"Python","_homepage":"https://itsdangerous.palletsprojects.com","_description":"itsdangerous: Safely pass trusted data to untrusted environments and back.","_organization":"pallets","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-01T00:00:00.000Z","_created_at":"2011-06-24T00:00:00.000Z","_age_weeks":599,"_stars_per_week":4.33,"_pop_contributor_count":41,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["sentry"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.67,"_pop_updated_issues_count":8,"_pop_closed_issues_count":7,"_pop_created_since_days":140,"_pop_updated_since_days":2,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":8.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":598,"_pop_score":41.34,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/itsdangerous/master/README.rst","_readme_localurl":"pallets~itsdangerous~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/itsdangerous/master/setup.py"],"_requirements_localurls":["pallets~itsdangerous~setup.py"]},{"index":85,"category":"graph","githuburl":"https://github.com/stellargraph/stellargraph","featured":null,"links":null,"description":null,"_repopath":"stellargraph/stellargraph","_reponame":"stellargraph","_stars":2572,"_forks":396,"_watches":62,"_topics":["graphs","machine-learning","machine-learning-algorithms","graph-convolutional-networks","networkx","geometric-deep-learning","saliency-map","interpretability","heterogeneous-networks","graph-neural-networks","graph-analysis","graph-machine-learning","gcn","link-prediction","stellargraph-library","graph-data","python","deep-learning","data-science"],"_language":"Python","_homepage":"https://stellargraph.readthedocs.io/","_description":"StellarGraph - Machine Learning on Graphs","_organization":"stellargraph","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2021-10-29T00:00:00.000Z","_created_at":"2018-04-13T00:00:00.000Z","_age_weeks":244,"_stars_per_week":10.52,"_pop_contributor_count":36,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["data61","exoflare","xoflare"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":12,"_pop_closed_issues_count":4,"_pop_created_since_days":57,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":12.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":177,"_pop_score":38.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/stellargraph/stellargraph/master/README.md","_readme_localurl":"stellargraph~stellargraph~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/stellargraph/stellargraph/master/requirements.txt","https://raw.githubusercontent.com/stellargraph/stellargraph/master/setup.py"],"_requirements_localurls":["stellargraph~stellargraph~requirements.txt","stellargraph~stellargraph~setup.py"]},{"index":539,"category":"nlp","githuburl":"https://github.com/huawei-noah/pretrained-language-model","featured":null,"links":null,"description":null,"_repopath":"huawei-noah/pretrained-language-model","_reponame":"Pretrained-Language-Model","_stars":2562,"_forks":550,"_watches":52,"_topics":["knowledge-distillation","model-compression","quantization","pretrained-models","large-scale-distributed"],"_language":"Python","_homepage":"","_description":"Pretrained-Language-Model: Pretrained language model and its related optimization techniques developed by Huawei Noah's Ark Lab.","_organization":"huawei-noah","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-21T00:00:00.000Z","_created_at":"2019-12-02T00:00:00.000Z","_age_weeks":159,"_stars_per_week":16.11,"_pop_contributor_count":19,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huawei-noah"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.38,"_pop_updated_issues_count":23,"_pop_closed_issues_count":4,"_pop_created_since_days":37,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":23.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":2,"_pop_score":27.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huawei-noah/pretrained-language-model/master/README.md","_readme_localurl":"huawei-noah~pretrained-language-model~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":611,"category":"debug","githuburl":"https://github.com/inducer/pudb","featured":null,"links":null,"description":null,"_repopath":"inducer/pudb","_reponame":"pudb","_stars":2559,"_forks":215,"_watches":46,"_topics":["python","debugger","pytest","pytest-plugin","pdb","ipython","bpython","urwid","debug"],"_language":"Python","_homepage":"https://documen.tician.de/pudb/","_description":"pudb: Full-screen console debugger for Python","_organization":"inducer","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-20T00:00:00.000Z","_created_at":"2011-05-13T00:00:00.000Z","_age_weeks":605,"_stars_per_week":4.23,"_pop_contributor_count":91,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quansight","scalableminds","scientificcomputing,csuiuc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.96,"_pop_updated_issues_count":24,"_pop_closed_issues_count":13,"_pop_created_since_days":141,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":24.0,"_pop_comment_count":35.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":428,"_pop_score":51.27,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/inducer/pudb/master/README.rst","_readme_localurl":"inducer~pudb~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/inducer/pudb/master/setup.py"],"_requirements_localurls":["inducer~pudb~setup.py"]},{"index":159,"category":"data","githuburl":"https://github.com/goldsmith/wikipedia","featured":null,"links":null,"description":null,"_repopath":"goldsmith/wikipedia","_reponame":"Wikipedia","_stars":2532,"_forks":514,"_watches":82,"_topics":[],"_language":"Python","_homepage":"https://wikipedia.readthedocs.org/","_description":"Wikipedia: A Pythonic wrapper for the Wikipedia API","_organization":"goldsmith","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-10-09T00:00:00.000Z","_created_at":"2013-08-20T00:00:00.000Z","_age_weeks":486,"_stars_per_week":5.2,"_pop_contributor_count":23,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["localkitchens","nationalradioastronomyobservatory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":10,"_pop_closed_issues_count":3,"_pop_created_since_days":114,"_pop_updated_since_days":27,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":10.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":81,"_pop_score":31.09,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/goldsmith/wikipedia/master/README.rst","_readme_localurl":"goldsmith~wikipedia~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/goldsmith/wikipedia/master/requirements.txt","https://raw.githubusercontent.com/goldsmith/wikipedia/master/setup.py"],"_requirements_localurls":["goldsmith~wikipedia~requirements.txt","goldsmith~wikipedia~setup.py"]},{"index":428,"category":"util","githuburl":"https://github.com/pycqa/flake8","featured":null,"links":null,"description":null,"_repopath":"pycqa/flake8","_reponame":"flake8","_stars":2524,"_forks":255,"_watches":33,"_topics":["python","python3","static-analysis","static-code-analysis","linter","linter-flake8","stylelint","styleguide","style-guide","flake8","pep8","complexity-analysis"],"_language":"Python","_homepage":"https://flake8.pycqa.org","_description":"flake8 is a python tool that glues together pycodestyle, pyflakes, mccabe, and third-party plugins to check the style and quality of some python code.","_organization":"pycqa","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2014-09-13T00:00:00.000Z","_age_weeks":431,"_stars_per_week":5.85,"_pop_contributor_count":172,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bloomberg","elastic","tableau&salesforce"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.38,"_pop_updated_issues_count":92,"_pop_closed_issues_count":86,"_pop_created_since_days":101,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":92.0,"_pop_comment_count":141.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":14344,"_pop_score":66.0,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pycqa/flake8/master/README.rst","_readme_localurl":"pycqa~flake8~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pycqa/flake8/master/setup.py"],"_requirements_localurls":["pycqa~flake8~setup.py"]},{"index":369,"category":"nlp","githuburl":"https://github.com/bytedance/lightseq","featured":null,"links":null,"description":null,"_repopath":"bytedance/lightseq","_reponame":"lightseq","_stars":2518,"_forks":281,"_watches":51,"_topics":["inference","transformer","beam-search","bert","cuda","sampling","diverse-decoding","multilingual-nmt","training","bart","gpt","accelerate"],"_language":"C++","_homepage":"","_description":"LightSeq: A High Performance Library for Sequence Processing and Generation","_organization":"bytedance","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2019-12-06T00:00:00.000Z","_age_weeks":158,"_stars_per_week":15.89,"_pop_contributor_count":14,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bytedance","bytedance,ailab","bytedanceailab","bytedanceantnlp","universityofillinoisaturbana-champaign"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.25,"_pop_updated_issues_count":69,"_pop_closed_issues_count":35,"_pop_created_since_days":37,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":69.0,"_pop_comment_count":99.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":2,"_pop_score":40.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bytedance/lightseq/master/README.md","_readme_localurl":"bytedance~lightseq~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bytedance/lightseq/master/setup.py"],"_requirements_localurls":["bytedance~lightseq~setup.py"]},{"index":94,"category":"term","githuburl":"https://github.com/urwid/urwid","featured":null,"links":null,"description":null,"_repopath":"urwid/urwid","_reponame":"urwid","_stars":2518,"_forks":310,"_watches":60,"_topics":[],"_language":"Python","_homepage":"urwid.org","_description":"urwid: Console user interface library for Python (official repo)","_organization":"urwid","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-07-12T00:00:00.000Z","_created_at":"2010-02-25T00:00:00.000Z","_age_weeks":668,"_stars_per_week":3.77,"_pop_contributor_count":116,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["newfirepartners,mediwareinc,holmusk,unitio-org,urwid"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":8,"_pop_closed_issues_count":2,"_pop_created_since_days":156,"_pop_updated_since_days":17,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":8.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":56,"_pop_score":36.42,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/urwid/urwid/master/README.rst","_readme_localurl":"urwid~urwid~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/urwid/urwid/master/setup.py"],"_requirements_localurls":["urwid~urwid~setup.py"]},{"index":433,"category":"pandas","githuburl":"https://github.com/pydata/pandas-datareader","featured":null,"links":null,"description":null,"_repopath":"pydata/pandas-datareader","_reponame":"pandas-datareader","_stars":2506,"_forks":620,"_watches":132,"_topics":["html","data-analysis","data","dataset","stock-data","finance","financial-data","python","pydata","pandas","econdb","fama-french","economic-data","fred"],"_language":"Python","_homepage":"https://pydata.github.io/pandas-datareader/stable/index.html","_description":"pandas-datareader: Extract data from a wide range of Internet sources into a pandas DataFrame.","_organization":"pydata","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-03-16T00:00:00.000Z","_created_at":"2015-01-15T00:00:00.000Z","_age_weeks":413,"_stars_per_week":6.06,"_pop_contributor_count":85,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":17,"_pop_closed_issues_count":1,"_pop_created_since_days":96,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":17.0,"_pop_comment_count":32.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":118,"_pop_score":35.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pydata/pandas-datareader/master/README.md","_readme_localurl":"pydata~pandas-datareader~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pydata/pandas-datareader/master/requirements.txt","https://raw.githubusercontent.com/pydata/pandas-datareader/master/setup.py"],"_requirements_localurls":["pydata~pandas-datareader~requirements.txt","pydata~pandas-datareader~setup.py"]},{"index":675,"category":"ml-dl","githuburl":"https://github.com/saharmor/dalle-playground","featured":null,"links":null,"description":null,"_repopath":"saharmor/dalle-playground","_reponame":"dalle-playground","_stars":2500,"_forks":561,"_watches":28,"_topics":["dall-e","openai","gan","text-to-image","transformers","artificial","artificial-intelligence","machine-learning","dalle","dalle-mini","stable-diffusion"],"_language":"Jupyter Notebook","_homepage":"","_description":"dalle-playground: A playground to generate images from any text prompt using Stable Diffusion (past: using DALL-E Mini)","_organization":"saharmor","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2021-09-13T00:00:00.000Z","_age_weeks":66,"_stars_per_week":37.88,"_pop_contributor_count":10,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bitly","highfalootintechnologycorp.","saamaresearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.15,"_pop_updated_issues_count":21,"_pop_closed_issues_count":16,"_pop_created_since_days":15,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":21.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":27.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/saharmor/dalle-playground/master/README.md","_readme_localurl":"saharmor~dalle-playground~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":553,"category":"ml-dl","githuburl":"https://github.com/pytorch/botorch","featured":null,"links":null,"description":null,"_repopath":"pytorch/botorch","_reponame":"botorch","_stars":2477,"_forks":295,"_watches":51,"_topics":[],"_language":"Jupyter Notebook","_homepage":"https://botorch.org/","_description":"botorch: Bayesian optimization in PyTorch","_organization":"pytorch","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-07-30T00:00:00.000Z","_age_weeks":229,"_stars_per_week":10.82,"_pop_contributor_count":86,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","meta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.17,"_pop_updated_issues_count":156,"_pop_closed_issues_count":116,"_pop_created_since_days":53,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":156.0,"_pop_comment_count":607.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.9,"_pop_dependents_count":1061,"_pop_score":61.32,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/botorch/master/README.md","_readme_localurl":"pytorch~botorch~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/botorch/master/requirements.txt","https://raw.githubusercontent.com/pytorch/botorch/master/setup.py","https://raw.githubusercontent.com/pytorch/botorch/master/pyproject.toml"],"_requirements_localurls":["pytorch~botorch~requirements.txt","pytorch~botorch~setup.py","pytorch~botorch~pyproject.toml"]},{"index":98,"category":"data","githuburl":"https://github.com/zoomeranalytics/xlwings","featured":null,"links":null,"description":null,"_repopath":"zoomeranalytics/xlwings","_reponame":"xlwings","_stars":2466,"_forks":450,"_watches":119,"_topics":["python","excel","reporting","automation","googlesheets","google-sheets"],"_language":"Python","_homepage":"https://www.xlwings.org","_description":"xlwings is a Python library that makes it easy to call Python from Excel and vice versa. It works with Excel on Windows and macOS as well as with Google Sheets and Excel on the web. ","_organization":"zoomeranalytics","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2014-03-17T00:00:00.000Z","_age_weeks":457,"_stars_per_week":5.4,"_pop_contributor_count":57,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["xlwings"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.27,"_pop_updated_issues_count":122,"_pop_closed_issues_count":69,"_pop_created_since_days":107,"_pop_updated_since_days":0,"_pop_recent_releases_count":27,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":27,"_pop_issue_count":122.0,"_pop_comment_count":161.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":55,"_pop_score":51.83,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/zoomeranalytics/xlwings/master/README.rst","_readme_localurl":"zoomeranalytics~xlwings~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/zoomeranalytics/xlwings/master/setup.py","https://raw.githubusercontent.com/zoomeranalytics/xlwings/master/pyproject.toml"],"_requirements_localurls":["zoomeranalytics~xlwings~setup.py","zoomeranalytics~xlwings~pyproject.toml"]},{"index":845,"category":"time-series","githuburl":"https://github.com/tdameritrade/stumpy","featured":null,"links":null,"description":null,"_repopath":"tdameritrade/stumpy","_reponame":"stumpy","_stars":2463,"_forks":239,"_watches":51,"_topics":["data-science","time-series-analysis","dask","numba","python","anomaly-detection","pattern-matching","pydata","matrix-profile","motif-discovery","time-series-segmentation","time-series-data-mining"],"_language":"Python","_homepage":"https://stumpy.readthedocs.io/en/latest/","_description":"STUMPY is a powerful and scalable Python library for modern time series analysis","_organization":"tdameritrade","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-05-03T00:00:00.000Z","_age_weeks":189,"_stars_per_week":13.0,"_pop_contributor_count":32,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.15,"_pop_updated_issues_count":79,"_pop_closed_issues_count":58,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":79.0,"_pop_comment_count":556.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":7.0,"_pop_dependents_count":12,"_pop_score":46.93,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/tdameritrade/stumpy/master/README.rst","_readme_localurl":"tdameritrade~stumpy~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tdameritrade/stumpy/master/requirements.txt","https://raw.githubusercontent.com/tdameritrade/stumpy/master/setup.py"],"_requirements_localurls":["tdameritrade~stumpy~requirements.txt","tdameritrade~stumpy~setup.py"]},{"index":431,"category":"viz","githuburl":"https://github.com/holoviz/panel","featured":null,"links":null,"description":null,"_repopath":"holoviz/panel","_reponame":"panel","_stars":2438,"_forks":313,"_watches":48,"_topics":["holoviz","panel","dashboards","control-panels","gui"],"_language":"Python","_homepage":"https://panel.holoviz.org","_description":"panel: A high-level app and dashboarding solution for Python","_organization":"holoviz","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-08-23T00:00:00.000Z","_age_weeks":225,"_stars_per_week":10.81,"_pop_contributor_count":111,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","cea","data,modelsandanalytics"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.71,"_pop_updated_issues_count":450,"_pop_closed_issues_count":272,"_pop_created_since_days":53,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":103,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":450.0,"_pop_comment_count":654.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":55,"_pop_score":56.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/panel/master/README.md","_readme_localurl":"holoviz~panel~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/panel/master/setup.py","https://raw.githubusercontent.com/holoviz/panel/master/pyproject.toml"],"_requirements_localurls":["holoviz~panel~setup.py","holoviz~panel~pyproject.toml"]},{"index":600,"category":"gis","githuburl":"https://github.com/giswqs/geemap","featured":null,"links":null,"description":null,"_repopath":"giswqs/geemap","_reponame":"geemap","_stars":2428,"_forks":904,"_watches":96,"_topics":["google-earth-engine","gis","remote-sensing","image-processing","python","jupyter-notebook","ipyleaflet","mapping","earth-engine","ipywidgets","folium","jupyter","colab","geospatial","landsat","dataviz","data-science","streamlit","streamlit-webapp","earthengine"],"_language":"Python","_homepage":"https://geemap.org","_description":"geemap: A Python package for interactive mapping with Google Earth Engine, ipyleaflet, and ipywidgets.","_organization":"giswqs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2020-03-08T00:00:00.000Z","_age_weeks":145,"_stars_per_week":16.73,"_pop_contributor_count":35,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["christianclauss","faoopenforis","google","universityoftennessee"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.23,"_pop_updated_issues_count":54,"_pop_closed_issues_count":51,"_pop_created_since_days":34,"_pop_updated_since_days":0,"_pop_recent_releases_count":53,"_pop_recent_releases_estimated_tags":47,"_pop_recent_releases_adjusted_count":53,"_pop_issue_count":54.0,"_pop_comment_count":102.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":16,"_pop_score":51.28,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/giswqs/geemap/master/README.rst","_readme_localurl":"giswqs~geemap~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/giswqs/geemap/master/requirements.txt","https://raw.githubusercontent.com/giswqs/geemap/master/setup.py"],"_requirements_localurls":["giswqs~geemap~requirements.txt","giswqs~geemap~setup.py"]},{"index":172,"category":"viz","githuburl":"https://github.com/facebookresearch/hiplot","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/hiplot","_reponame":"hiplot","_stars":2385,"_forks":120,"_watches":28,"_topics":[],"_language":"TypeScript","_homepage":"https://facebookresearch.github.io/hiplot/","_description":"HiPlot makes understanding high dimensional data easy","_organization":"facebookresearch","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2019-11-08T00:00:00.000Z","_age_weeks":162,"_stars_per_week":14.68,"_pop_contributor_count":8,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["opensourcedevrelfacebook"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":17,"_pop_closed_issues_count":17,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":17.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":412,"_pop_score":41.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/hiplot/master/README.md","_readme_localurl":"facebookresearch~hiplot~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/hiplot/master/setup.py"],"_requirements_localurls":["facebookresearch~hiplot~setup.py"]},{"index":886,"category":"study","githuburl":"https://github.com/huggingface/deep-rl-class","featured":null,"links":null,"description":null,"_repopath":"huggingface/deep-rl-class","_reponame":"deep-rl-class","_stars":2373,"_forks":285,"_watches":90,"_topics":["deep-reinforcement-learning","reinforcement-learning","reinforcement-learning-excercises","deep-learning"],"_language":"Jupyter Notebook","_homepage":"","_description":"deep-rl-class: This repo contain the syllabus of the Hugging Face Deep Reinforcement Learning Class.","_organization":"huggingface","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2022-04-21T00:00:00.000Z","_age_weeks":34,"_stars_per_week":68.64,"_pop_contributor_count":35,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.21,"_pop_updated_issues_count":63,"_pop_closed_issues_count":43,"_pop_created_since_days":8,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":63.0,"_pop_comment_count":113.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":5,"_pop_score":35.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/deep-rl-class/master/README.md","_readme_localurl":"huggingface~deep-rl-class~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":708,"category":"ml","githuburl":"https://github.com/mljar/mljar-supervised","featured":null,"links":null,"description":null,"_repopath":"mljar/mljar-supervised","_reponame":"mljar-supervised","_stars":2372,"_forks":313,"_watches":42,"_topics":["automl","machine-learning","automatic-machine-learning","mljar","data-science","scikit-learn","hyperparameter-optimization","feature-engineering","xgboost","random-forest","neural-network","lightgbm","catboost","ensemble","tuning-algorithm","models-tuning","hyper-parameters","decision-tree","shap","automated-machine-learning"],"_language":"Python","_homepage":"https://mljar.com","_description":"mljar-supervised: Python package for AutoML on Tabular Data with Feature Engineering, Hyper-Parameters Tuning, Explanations and Automatic Documentation","_organization":"mljar","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2018-11-05T00:00:00.000Z","_age_weeks":215,"_stars_per_week":11.03,"_pop_contributor_count":20,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bitspilanihyderabadcampus","mljar","otterclamfinance"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":32,"_pop_closed_issues_count":10,"_pop_created_since_days":50,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":32.0,"_pop_comment_count":82.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":49,"_pop_score":44.47,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mljar/mljar-supervised/master/README.md","_readme_localurl":"mljar~mljar-supervised~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mljar/mljar-supervised/master/requirements.txt","https://raw.githubusercontent.com/mljar/mljar-supervised/master/setup.py"],"_requirements_localurls":["mljar~mljar-supervised~requirements.txt","mljar~mljar-supervised~setup.py"]},{"index":174,"category":"util","githuburl":"https://github.com/liiight/notifiers","featured":null,"links":null,"description":null,"_repopath":"liiight/notifiers","_reponame":"notifiers","_stars":2351,"_forks":91,"_watches":33,"_topics":["python","notifications","notifier","notification-service","python3","pypi"],"_language":"Python","_homepage":"http://notifiers.readthedocs.io/","_description":"notifiers: The easy way to send notifications","_organization":"liiight","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-07-14T00:00:00.000Z","_created_at":"2017-06-01T00:00:00.000Z","_age_weeks":289,"_stars_per_week":8.12,"_pop_contributor_count":19,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["pyupio","totango"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.31,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":68,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":6,"_pop_score":28.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/liiight/notifiers/master/README.md","_readme_localurl":"liiight~notifiers~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/liiight/notifiers/master/pyproject.toml"],"_requirements_localurls":["liiight~notifiers~pyproject.toml"]},{"index":129,"category":"viz","githuburl":"https://github.com/holoviz/holoviews","featured":null,"links":null,"description":null,"_repopath":"holoviz/holoviews","_reponame":"holoviews","_stars":2341,"_forks":364,"_watches":63,"_topics":["holoviz","holoviews","plotting"],"_language":"Python","_homepage":"https://holoviews.org","_description":"holoviews: With Holoviews, your data visualizes itself.","_organization":"holoviz","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2014-05-07T00:00:00.000Z","_age_weeks":449,"_stars_per_week":5.21,"_pop_contributor_count":126,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.62,"_pop_updated_issues_count":237,"_pop_closed_issues_count":108,"_pop_created_since_days":105,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":41,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":237.0,"_pop_comment_count":294.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":40,"_pop_score":50.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/holoviews/master/README.md","_readme_localurl":"holoviz~holoviews~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/holoviews/master/setup.py","https://raw.githubusercontent.com/holoviz/holoviews/master/pyproject.toml"],"_requirements_localurls":["holoviz~holoviews~setup.py","holoviz~holoviews~pyproject.toml"]},{"index":136,"category":"nlp","githuburl":"https://github.com/ddangelov/top2vec","featured":null,"links":null,"description":null,"_repopath":"ddangelov/top2vec","_reponame":"Top2Vec","_stars":2339,"_forks":326,"_watches":39,"_topics":["topic-modeling","word-embeddings","document-embedding","topic-vector","topic-search","text-search","text-semantic-similarity","topic-modelling","semantic-search","bert","top2vec","sentence-transformers","sentence-encoder","pre-trained-language-models"],"_language":"Python","_homepage":"","_description":"Top2Vec learns jointly embedded topic, document and word vectors.","_organization":"ddangelov","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-04-03T00:00:00.000Z","_created_at":"2020-03-20T00:00:00.000Z","_age_weeks":143,"_stars_per_week":16.31,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.17,"_pop_updated_issues_count":53,"_pop_closed_issues_count":37,"_pop_created_since_days":33,"_pop_updated_since_days":9,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":53.0,"_pop_comment_count":46.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":21,"_pop_score":21.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ddangelov/top2vec/master/README.md","_readme_localurl":"ddangelov~top2vec~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ddangelov/top2vec/master/requirements.txt","https://raw.githubusercontent.com/ddangelov/top2vec/master/setup.py"],"_requirements_localurls":["ddangelov~top2vec~requirements.txt","ddangelov~top2vec~setup.py"]},{"index":858,"category":"jupyter","githuburl":"https://github.com/jupyter/nbdime","featured":null,"links":null,"description":null,"_repopath":"jupyter/nbdime","_reponame":"nbdime","_stars":2339,"_forks":154,"_watches":43,"_topics":["jupyterlab-extension","jupyter","jupyter-notebook","diff","diffing","merge","git","hg","mercurial","mergetool","merge-driver","vcs","version-control"],"_language":"Python","_homepage":"http://nbdime.readthedocs.io","_description":"nbdime: Tools for diffing and merging of Jupyter notebooks.","_organization":"jupyter","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2015-11-16T00:00:00.000Z","_age_weeks":370,"_stars_per_week":6.32,"_pop_contributor_count":41,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ibmcodait","quantstack","simularesearchlaboratory","willingconsulting"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":29,"_pop_closed_issues_count":7,"_pop_created_since_days":86,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":29.0,"_pop_comment_count":29.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":402,"_pop_score":49.23,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/nbdime/master/README.md","_readme_localurl":"jupyter~nbdime~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/nbdime/master/setup.py","https://raw.githubusercontent.com/jupyter/nbdime/master/pyproject.toml"],"_requirements_localurls":["jupyter~nbdime~setup.py","jupyter~nbdime~pyproject.toml"]},{"index":809,"category":"web","githuburl":"https://github.com/fastapi-users/fastapi-users","featured":null,"links":null,"description":null,"_repopath":"fastapi-users/fastapi-users","_reponame":"fastapi-users","_stars":2323,"_forks":239,"_watches":33,"_topics":["python","starlette","fastapi","async","asyncio","users","fastapi-users"],"_language":"Python","_homepage":"https://fastapi-users.github.io/fastapi-users/","_description":"fastapi-users: Ready-to-use and customizable users management for FastAPI","_organization":"fastapi-users","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2019-10-05T00:00:00.000Z","_age_weeks":167,"_stars_per_week":13.89,"_pop_contributor_count":53,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["beemydesk","fitctuinprague","quantstack"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.96,"_pop_updated_issues_count":19,"_pop_closed_issues_count":19,"_pop_created_since_days":39,"_pop_updated_since_days":1,"_pop_recent_releases_count":32,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":32,"_pop_issue_count":19.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":134,"_pop_score":49.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fastapi-users/fastapi-users/master/README.md","_readme_localurl":"fastapi-users~fastapi-users~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/fastapi-users/fastapi-users/master/pyproject.toml"],"_requirements_localurls":["fastapi-users~fastapi-users~pyproject.toml"]},{"index":875,"category":"perf","githuburl":"https://github.com/ipython/ipyparallel","featured":null,"links":null,"description":null,"_repopath":"ipython/ipyparallel","_reponame":"ipyparallel","_stars":2319,"_forks":949,"_watches":119,"_topics":["parallel","jupyter","python"],"_language":"Jupyter Notebook","_homepage":"https://ipyparallel.readthedocs.io/","_description":"ipyparallel: IPython Parallel: Interactive Parallel Computing in Python","_organization":"ipython","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-22T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":401,"_stars_per_week":5.77,"_pop_contributor_count":112,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","ardoq","simularesearchlaboratory","universityofcalifornia,berkeley."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.29,"_pop_updated_issues_count":19,"_pop_closed_issues_count":16,"_pop_created_since_days":94,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":19.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":318,"_pop_score":52.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ipython/ipyparallel/master/README.md","_readme_localurl":"ipython~ipyparallel~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ipython/ipyparallel/master/pyproject.toml"],"_requirements_localurls":["ipython~ipyparallel~pyproject.toml"]},{"index":51,"category":"testing","githuburl":"https://github.com/nedbat/coveragepy","featured":null,"links":null,"description":null,"_repopath":"nedbat/coveragepy","_reponame":"coveragepy","_stars":2305,"_forks":331,"_watches":28,"_topics":[],"_language":"Python","_homepage":"https://coverage.readthedocs.io","_description":"coveragepy: The code coverage tool for Python","_organization":"nedbat","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-06-23T00:00:00.000Z","_age_weeks":234,"_stars_per_week":9.84,"_pop_contributor_count":142,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["freelancer,upforhire","shoobx"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.65,"_pop_updated_issues_count":134,"_pop_closed_issues_count":89,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":134.0,"_pop_comment_count":400.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":9969,"_pop_score":66.43,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/nedbat/coveragepy/master/README.rst","_readme_localurl":"nedbat~coveragepy~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nedbat/coveragepy/master/setup.py","https://raw.githubusercontent.com/nedbat/coveragepy/master/pyproject.toml"],"_requirements_localurls":["nedbat~coveragepy~setup.py","nedbat~coveragepy~pyproject.toml"]},{"index":691,"category":"ml-dl","githuburl":"https://github.com/nerdyrodent/vqgan-clip","featured":null,"links":null,"description":null,"_repopath":"nerdyrodent/vqgan-clip","_reponame":"VQGAN-CLIP","_stars":2304,"_forks":401,"_watches":53,"_topics":["text2image","text-to-image"],"_language":"Python","_homepage":"","_description":"VQGAN-CLIP: Just playing with getting VQGAN+CLIP running locally, rather than having to use colab.","_organization":"nerdyrodent","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-02T00:00:00.000Z","_created_at":"2021-07-02T00:00:00.000Z","_age_weeks":76,"_stars_per_week":30.15,"_pop_contributor_count":7,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["az\u00e9otropecanada","censys"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":2,"_pop_closed_issues_count":2,"_pop_created_since_days":18,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":19.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nerdyrodent/vqgan-clip/master/README.md","_readme_localurl":"nerdyrodent~vqgan-clip~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/nerdyrodent/vqgan-clip/master/requirements.txt"],"_requirements_localurls":["nerdyrodent~vqgan-clip~requirements.txt"]},{"index":296,"category":"sim","githuburl":"https://github.com/openai/mujoco-py","featured":null,"links":null,"description":null,"_repopath":"openai/mujoco-py","_reponame":"mujoco-py","_stars":2300,"_forks":715,"_watches":161,"_topics":[],"_language":"Cython","_homepage":"","_description":"mujoco-py: MuJoCo is a physics engine for detailed, efficient rigid body simulations with contacts. mujoco-py allows using MuJoCo from Python 3.","_organization":"openai","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-17T00:00:00.000Z","_created_at":"2016-04-24T00:00:00.000Z","_age_weeks":347,"_stars_per_week":6.63,"_pop_contributor_count":33,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["millionintegrals","openai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":33,"_pop_closed_issues_count":4,"_pop_created_since_days":81,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":33.0,"_pop_comment_count":23.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":34,"_pop_score":37.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/mujoco-py/master/README.md","_readme_localurl":"openai~mujoco-py~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/mujoco-py/master/requirements.txt","https://raw.githubusercontent.com/openai/mujoco-py/master/setup.py","https://raw.githubusercontent.com/openai/mujoco-py/master/pyproject.toml"],"_requirements_localurls":["openai~mujoco-py~requirements.txt","openai~mujoco-py~setup.py","openai~mujoco-py~pyproject.toml"]},{"index":246,"category":"util","githuburl":"https://github.com/pyston/pyston","featured":null,"links":null,"description":null,"_repopath":"pyston/pyston","_reponame":"pyston","_stars":2295,"_forks":83,"_watches":32,"_topics":[],"_language":"Python","_homepage":"https://www.pyston.org/","_description":"pyston: A faster and highly-compatible implementation of the Python programming language.","_organization":"pyston","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2021-03-01T00:00:00.000Z","_age_weeks":94,"_stars_per_week":24.41,"_pop_contributor_count":1035,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["fzj\u00fclich","keepertech","microsoft","mutableminds"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.1,"_pop_updated_issues_count":22,"_pop_closed_issues_count":10,"_pop_created_since_days":22,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":261,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":22.0,"_pop_comment_count":30.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":9,"_pop_score":50.69,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyston/pyston/master/README.rst","_readme_localurl":"pyston~pyston~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyston/pyston/master/setup.py"],"_requirements_localurls":["pyston~pyston~setup.py"]},{"index":866,"category":"ml-ops","githuburl":"https://github.com/mage-ai/mage-ai","featured":1.0,"links":null,"description":null,"_repopath":"mage-ai/mage-ai","_reponame":"mage-ai","_stars":2287,"_forks":203,"_watches":40,"_topics":["machine-learning","artificial-intelligence","data","data-engineering","data-science","python","elt","etl","pipelines","data-pipelines","orchestration","data-integration","sql","spark","dbt","pipeline","reverse-etl","transformation"],"_language":"Python","_homepage":"https://www.mage.ai/","_description":"mage-ai: \ud83e\uddd9 A modern replacement for Airflow.","_organization":"mage-ai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2022-05-16T00:00:00.000Z","_age_weeks":31,"_stars_per_week":73.77,"_pop_contributor_count":19,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mage"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":37.4,"_pop_updated_issues_count":525,"_pop_closed_issues_count":488,"_pop_created_since_days":7,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":525.0,"_pop_comment_count":134.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":18,"_pop_score":37.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mage-ai/mage-ai/master/README.md","_readme_localurl":"mage-ai~mage-ai~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mage-ai/mage-ai/master/requirements.txt","https://raw.githubusercontent.com/mage-ai/mage-ai/master/setup.py","https://raw.githubusercontent.com/mage-ai/mage-ai/master/pyproject.toml"],"_requirements_localurls":["mage-ai~mage-ai~requirements.txt","mage-ai~mage-ai~setup.py","mage-ai~mage-ai~pyproject.toml"]},{"index":696,"category":"ml-dl","githuburl":"https://github.com/deepmind/dm-haiku","featured":null,"links":null,"description":null,"_repopath":"deepmind/dm-haiku","_reponame":"dm-haiku","_stars":2285,"_forks":192,"_watches":37,"_topics":["machine-learning","neural-networks","jax","deep-learning","deep-neural-networks"],"_language":"Python","_homepage":"https://dm-haiku.readthedocs.io","_description":"dm-haiku: JAX-based neural network library","_organization":"deepmind","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2020-02-18T00:00:00.000Z","_age_weeks":147,"_stars_per_week":15.45,"_pop_contributor_count":68,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deepmind","openai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.69,"_pop_updated_issues_count":64,"_pop_closed_issues_count":39,"_pop_created_since_days":34,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":64.0,"_pop_comment_count":40.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":34,"_pop_score":44.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/deepmind/dm-haiku/master/README.md","_readme_localurl":"deepmind~dm-haiku~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/deepmind/dm-haiku/master/requirements.txt","https://raw.githubusercontent.com/deepmind/dm-haiku/master/setup.py"],"_requirements_localurls":["deepmind~dm-haiku~requirements.txt","deepmind~dm-haiku~setup.py"]},{"index":814,"category":"data","githuburl":"https://github.com/deepchecks/deepchecks","featured":null,"links":null,"description":null,"_repopath":"deepchecks/deepchecks","_reponame":"deepchecks","_stars":2282,"_forks":159,"_watches":13,"_topics":["machine-learning","ml","model-validation","data-validation","mlops","data-science","python","jupyter-notebook","model-monitoring","data-drift","html-report","deep-learning","pytorch","pandas-dataframe"],"_language":"Python","_homepage":"https://docs.deepchecks.com","_description":"deepchecks: Tests for Continuous Validation of ML Models & Data. Deepchecks is a Python package for comprehensively validating your machine learning models and data with minimal effort.","_organization":"deepchecks","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2021-10-11T00:00:00.000Z","_age_weeks":62,"_stars_per_week":36.81,"_pop_contributor_count":37,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deepchecks","starnavi"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":17.17,"_pop_updated_issues_count":255,"_pop_closed_issues_count":169,"_pop_created_since_days":14,"_pop_updated_since_days":0,"_pop_recent_releases_count":35,"_pop_recent_releases_estimated_tags":42,"_pop_recent_releases_adjusted_count":35,"_pop_issue_count":255.0,"_pop_comment_count":269.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":5,"_pop_score":46.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/deepchecks/deepchecks/master/README.md","_readme_localurl":"deepchecks~deepchecks~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/deepchecks/deepchecks/master/setup.py"],"_requirements_localurls":["deepchecks~deepchecks~setup.py"]},{"index":145,"category":"ml","githuburl":"https://github.com/nmslib/hnswlib","featured":null,"links":null,"description":null,"_repopath":"nmslib/hnswlib","_reponame":"hnswlib","_stars":2269,"_forks":419,"_watches":62,"_topics":[],"_language":"C++","_homepage":"https://github.com/nmslib/hnswlib","_description":"hnswlib: Header-only C++/python library for fast approximate nearest neighbors","_organization":"nmslib","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-04-16T00:00:00.000Z","_created_at":"2017-07-06T00:00:00.000Z","_age_weeks":284,"_stars_per_week":7.97,"_pop_contributor_count":56,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["twittercortex"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.25,"_pop_updated_issues_count":18,"_pop_closed_issues_count":6,"_pop_created_since_days":66,"_pop_updated_since_days":8,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":18.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":24,"_pop_score":34.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nmslib/hnswlib/master/README.md","_readme_localurl":"nmslib~hnswlib~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nmslib/hnswlib/master/setup.py","https://raw.githubusercontent.com/nmslib/hnswlib/master/pyproject.toml"],"_requirements_localurls":["nmslib~hnswlib~setup.py","nmslib~hnswlib~pyproject.toml"]},{"index":735,"category":"data","githuburl":"https://github.com/ibis-project/ibis","featured":1.0,"links":null,"description":null,"_repopath":"ibis-project/ibis","_reponame":"ibis","_stars":2231,"_forks":375,"_watches":77,"_topics":["python","impala","pandas","spark","database","clickhouse","postgresql","sqlite","mysql","datafusion","sql","pyspark","dask","duckdb","bigquery","sqlalchemy","pyarrow","arrow","mssql","polars"],"_language":"Python","_homepage":"http://ibis-project.org","_description":"ibis: Expressive analytics in Python at any scale.","_organization":"ibis-project","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2015-04-17T00:00:00.000Z","_age_weeks":400,"_stars_per_week":5.57,"_pop_contributor_count":121,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["voltron-data/ursa-computing","voltrondata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":43.25,"_pop_updated_issues_count":565,"_pop_closed_issues_count":501,"_pop_created_since_days":93,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":565.0,"_pop_comment_count":1237.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":428,"_pop_score":64.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ibis-project/ibis/master/README.md","_readme_localurl":"ibis-project~ibis~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ibis-project/ibis/master/requirements.txt","https://raw.githubusercontent.com/ibis-project/ibis/master/pyproject.toml"],"_requirements_localurls":["ibis-project~ibis~requirements.txt","ibis-project~ibis~pyproject.toml"]},{"index":308,"category":"util","githuburl":"https://github.com/legrandin/pycryptodome","featured":null,"links":null,"description":null,"_repopath":"legrandin/pycryptodome","_reponame":"pycryptodome","_stars":2218,"_forks":402,"_watches":58,"_topics":["cryptography","security","python"],"_language":"C","_homepage":"https://www.pycryptodome.org","_description":"pycryptodome: A self-contained cryptographic library for Python","_organization":"legrandin","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2014-05-02T00:00:00.000Z","_age_weeks":450,"_stars_per_week":4.92,"_pop_contributor_count":130,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aitaustrianinstituteoftechnology","cisco"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.35,"_pop_updated_issues_count":75,"_pop_closed_issues_count":64,"_pop_created_since_days":105,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":75.0,"_pop_comment_count":126.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":1485,"_pop_score":57.5,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/legrandin/pycryptodome/master/README.rst","_readme_localurl":"legrandin~pycryptodome~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/legrandin/pycryptodome/master/setup.py"],"_requirements_localurls":["legrandin~pycryptodome~setup.py"]},{"index":253,"category":"ml","githuburl":"https://github.com/microsoft/flaml","featured":null,"links":null,"description":null,"_repopath":"microsoft/flaml","_reponame":"FLAML","_stars":2172,"_forks":331,"_watches":39,"_topics":["automl","hyperparam","automated-machine-learning","machine-learning","data-science","python","jupyter-notebook","hyperparameter-optimization","random-forest","scikit-learn","deep-learning","natural-language-processing","natural-language-generation","timeseries-forecasting","classification","regression","tuning","finetuning","tabular-data"],"_language":"Jupyter Notebook","_homepage":"https://microsoft.github.io/FLAML/","_description":"FLAML: A fast library for AutoML and tuning. Join our Discord: https://discord.gg/Cppx2vSPVP.","_organization":"microsoft","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2020-08-20T00:00:00.000Z","_age_weeks":121,"_stars_per_week":17.87,"_pop_contributor_count":59,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoft","pennsylvaniastateuniversity","stevensinstituteoftechnology"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.04,"_pop_updated_issues_count":138,"_pop_closed_issues_count":85,"_pop_created_since_days":28,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":21,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":138.0,"_pop_comment_count":225.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":11,"_pop_score":50.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/flaml/master/README.md","_readme_localurl":"microsoft~flaml~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/flaml/master/setup.py"],"_requirements_localurls":["microsoft~flaml~setup.py"]},{"index":710,"category":"pandas","githuburl":"https://github.com/jmcarpenter2/swifter","featured":null,"links":null,"description":null,"_repopath":"jmcarpenter2/swifter","_reponame":"swifter","_stars":2161,"_forks":98,"_watches":28,"_topics":["pandas","pandas-dataframe","parallel-computing","parallelization","dask","modin"],"_language":"Python","_homepage":"","_description":"swifter: A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner","_organization":"jmcarpenter2","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-08-16T00:00:00.000Z","_created_at":"2018-04-07T00:00:00.000Z","_age_weeks":245,"_stars_per_week":8.81,"_pop_contributor_count":17,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["freshrelevance","manifoldai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.62,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":57,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":5.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":9,"_pop_score":33.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jmcarpenter2/swifter/master/README.md","_readme_localurl":"jmcarpenter2~swifter~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jmcarpenter2/swifter/master/requirements.txt","https://raw.githubusercontent.com/jmcarpenter2/swifter/master/setup.py"],"_requirements_localurls":["jmcarpenter2~swifter~requirements.txt","jmcarpenter2~swifter~setup.py"]},{"index":617,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-testinfra","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-testinfra","_reponame":"pytest-testinfra","_stars":2133,"_forks":312,"_watches":82,"_topics":["python","testing","infrastructure-as-code","devops","tdd","nagios","docker","tdd-utilities","testing-tools","devops-tools","infrastructure-testing","saltstack","chef","puppet","ansible","kubernetes","pytest-plugin"],"_language":"Python","_homepage":"https://testinfra.readthedocs.io","_description":"pytest-testinfra: Testinfra test your infrastructures","_organization":"pytest-dev","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2015-03-15T00:00:00.000Z","_age_weeks":405,"_stars_per_week":5.26,"_pop_contributor_count":121,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lowatt","redhatansible"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.54,"_pop_updated_issues_count":16,"_pop_closed_issues_count":10,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":16.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":123,"_pop_score":49.17,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-testinfra/master/README.rst","_readme_localurl":"pytest-dev~pytest-testinfra~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-testinfra/master/setup.py","https://raw.githubusercontent.com/pytest-dev/pytest-testinfra/master/pyproject.toml"],"_requirements_localurls":["pytest-dev~pytest-testinfra~setup.py","pytest-dev~pytest-testinfra~pyproject.toml"]},{"index":807,"category":"web","githuburl":"https://github.com/flipkart-incubator/astra","featured":null,"links":null,"description":null,"_repopath":"flipkart-incubator/astra","_reponame":"Astra","_stars":2129,"_forks":356,"_watches":84,"_topics":["security","restapiautomation","python","owasp","penetration-testing-framework","postman-collection","ci-cd","sdlc","penetration-testing","security-automation"],"_language":"Python","_homepage":"","_description":"Astra: Automated Security Testing For REST API's","_organization":"flipkart-incubator","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2019-04-05T00:00:00.000Z","_created_at":"2018-01-10T00:00:00.000Z","_age_weeks":257,"_stars_per_week":8.26,"_pop_contributor_count":11,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aarhusuni","myntradesignspvtltd"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":4,"_pop_closed_issues_count":0,"_pop_created_since_days":60,"_pop_updated_since_days":45,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":20,"_pop_score":22.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/flipkart-incubator/astra/master/README.md","_readme_localurl":"flipkart-incubator~astra~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/flipkart-incubator/astra/master/requirements.txt"],"_requirements_localurls":["flipkart-incubator~astra~requirements.txt"]},{"index":503,"category":"gis","githuburl":"https://github.com/google/earthengine-api","featured":null,"links":null,"description":null,"_repopath":"google/earthengine-api","_reponame":"earthengine-api","_stars":2093,"_forks":892,"_watches":204,"_topics":[],"_language":"JavaScript","_homepage":"","_description":"earthengine-api: Python and JavaScript bindings for calling the Earth Engine API.","_organization":"google","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2015-04-22T00:00:00.000Z","_age_weeks":399,"_stars_per_week":5.24,"_pop_contributor_count":36,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":7,"_pop_closed_issues_count":1,"_pop_created_since_days":93,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":32,"_pop_recent_releases_adjusted_count":32,"_pop_issue_count":7.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":9,"_pop_score":38.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/earthengine-api/master/README.md","_readme_localurl":"google~earthengine-api~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":878,"category":"time-series","githuburl":"https://github.com/nixtla/statsforecast","featured":null,"links":null,"description":null,"_repopath":"nixtla/statsforecast","_reponame":"statsforecast","_stars":2070,"_forks":119,"_watches":19,"_topics":["time-series","statistics","forecasting","arima","econometrics","machine-learning","python","exponential-smoothing","ets","baselines","predictions","naive","seasonal-naive","fbprophet","prophet","neuralprophet","mstl","theta","automl","data-science"],"_language":"Python","_homepage":"https://nixtla.github.io/statsforecast/","_description":"statsforecast: Lightning \u26a1\ufe0f fast forecasting with statistical and econometric models.","_organization":"nixtla","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2021-11-24T00:00:00.000Z","_age_weeks":55,"_stars_per_week":37.15,"_pop_contributor_count":16,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nixtla","nubank"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":16.48,"_pop_updated_issues_count":124,"_pop_closed_issues_count":103,"_pop_created_since_days":13,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":23,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":124.0,"_pop_comment_count":148.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":28,"_pop_score":46.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nixtla/statsforecast/master/README.md","_readme_localurl":"nixtla~statsforecast~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nixtla/statsforecast/master/setup.py"],"_requirements_localurls":["nixtla~statsforecast~setup.py"]},{"index":222,"category":"data","githuburl":"https://github.com/pynamodb/pynamodb","featured":1.0,"links":null,"description":null,"_repopath":"pynamodb/pynamodb","_reponame":"PynamoDB","_stars":2060,"_forks":411,"_watches":41,"_topics":["python","dynamodb","aws"],"_language":"Python","_homepage":"http://pynamodb.readthedocs.io","_description":"PynamoDB: A pythonic interface to Amazon's DynamoDB","_organization":"pynamodb","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2014-01-20T00:00:00.000Z","_age_weeks":465,"_stars_per_week":4.43,"_pop_contributor_count":100,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lyft","openeyescientificsoftware"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.87,"_pop_updated_issues_count":114,"_pop_closed_issues_count":93,"_pop_created_since_days":108,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":114.0,"_pop_comment_count":177.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":72,"_pop_score":53.16,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pynamodb/pynamodb/master/README.rst","_readme_localurl":"pynamodb~pynamodb~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pynamodb/pynamodb/master/setup.py"],"_requirements_localurls":["pynamodb~pynamodb~setup.py"]},{"index":268,"category":"jupyter","githuburl":"https://github.com/jupyterlab/jupyterlab-desktop","featured":null,"links":null,"description":null,"_repopath":"jupyterlab/jupyterlab-desktop","_reponame":"jupyterlab-desktop","_stars":2059,"_forks":213,"_watches":40,"_topics":["jupyterlab","jupyter","jupyter-notebook"],"_language":"TypeScript","_homepage":"","_description":"jupyterlab-desktop: JupyterLab desktop application, based on Electron.","_organization":"jupyterlab","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2017-05-04T00:00:00.000Z","_age_weeks":293,"_stars_per_week":7.01,"_pop_contributor_count":33,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["fermiumlabssrl(fermiumlabs)","netflix"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.94,"_pop_updated_issues_count":66,"_pop_closed_issues_count":45,"_pop_created_since_days":68,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":66.0,"_pop_comment_count":99.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":2,"_pop_score":43.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyterlab/jupyterlab-desktop/master/README.md","_readme_localurl":"jupyterlab~jupyterlab-desktop~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":867,"category":"util","githuburl":"https://github.com/dosisod/refurb","featured":1.0,"links":null,"description":null,"_repopath":"dosisod/refurb","_reponame":"refurb","_stars":2055,"_forks":35,"_watches":15,"_topics":["cli","mypy","python","python310","testing","gplv3","hacktoberfest"],"_language":"Python","_homepage":"","_description":"refurb: A tool for refurbishing and modernizing Python codebases","_organization":"dosisod","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2022-07-27T00:00:00.000Z","_age_weeks":20,"_stars_per_week":99.21,"_pop_contributor_count":8,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["grupoboticario","hotjar","resgroup"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.46,"_pop_updated_issues_count":153,"_pop_closed_issues_count":139,"_pop_created_since_days":5,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":34,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":153.0,"_pop_comment_count":162.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":5,"_pop_score":36.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dosisod/refurb/master/README.md","_readme_localurl":"dosisod~refurb~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dosisod/refurb/master/pyproject.toml"],"_requirements_localurls":["dosisod~refurb~pyproject.toml"]},{"index":198,"category":"ml","githuburl":"https://github.com/maif/shapash","featured":null,"links":null,"description":null,"_repopath":"maif/shapash","_reponame":"shapash","_stars":2053,"_forks":253,"_watches":37,"_topics":["python","machine-learning","explainability","explainable-ml","transparency","ethical-artificial-intelligence","shap","lime","interpretability"],"_language":"Jupyter Notebook","_homepage":"https://maif.github.io/shapash/","_description":"shapash: \ud83d\udd05 Shapash makes Machine Learning models transparent and understandable by everyone","_organization":"maif","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2020-04-29T00:00:00.000Z","_age_weeks":137,"_stars_per_week":14.91,"_pop_contributor_count":35,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["helsing","maif"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.9,"_pop_updated_issues_count":34,"_pop_closed_issues_count":30,"_pop_created_since_days":32,"_pop_updated_since_days":1,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":34.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":12,"_pop_score":39.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/maif/shapash/master/README.md","_readme_localurl":"maif~shapash~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/maif/shapash/master/setup.py"],"_requirements_localurls":["maif~shapash~setup.py"]},{"index":724,"category":"util","githuburl":"https://github.com/ashleve/lightning-hydra-template","featured":null,"links":null,"description":null,"_repopath":"ashleve/lightning-hydra-template","_reponame":"lightning-hydra-template","_stars":2051,"_forks":343,"_watches":19,"_topics":["pytorch-lightning","wandb","project-structure","config","deep-learning","hydra","template","pytorch","research","experiments","reproducibility","experiment-tracking","best-practices","neptune","mlflow","tensorboard","comet","mlops"],"_language":"Python","_homepage":"","_description":"lightning-hydra-template: PyTorch Lightning + Hydra. A very user-friendly template for rapid and reproducible ML experimentation with best practices. \u26a1\ud83d\udd25\u26a1","_organization":"ashleve","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2020-11-04T00:00:00.000Z","_age_weeks":110,"_stars_per_week":18.53,"_pop_contributor_count":26,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["hunanuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.81,"_pop_updated_issues_count":46,"_pop_closed_issues_count":38,"_pop_created_since_days":26,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":46.0,"_pop_comment_count":49.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":7,"_pop_score":36.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/README.md","_readme_localurl":"ashleve~lightning-hydra-template~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/requirements.txt","https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/setup.py","https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/pyproject.toml"],"_requirements_localurls":["ashleve~lightning-hydra-template~requirements.txt","ashleve~lightning-hydra-template~setup.py","ashleve~lightning-hydra-template~pyproject.toml"]},{"index":860,"category":"jupyter","githuburl":"https://github.com/jupyter/nbviewer","featured":null,"links":null,"description":null,"_repopath":"jupyter/nbviewer","_reponame":"nbviewer","_stars":2035,"_forks":530,"_watches":92,"_topics":["jupyter","jupyter-notebook","nbconvert"],"_language":"Python","_homepage":"https://nbviewer.jupyter.org","_description":"nbviewer: nbconvert as a web service: Render Jupyter Notebooks as static web pages","_organization":"jupyter","_updated_at":"2022-12-10T00:00:00.000Z","_last_commit_date":"2022-11-07T00:00:00.000Z","_created_at":"2012-08-05T00:00:00.000Z","_age_weeks":541,"_stars_per_week":3.76,"_pop_contributor_count":92,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["noteable-io","quansight-labs","simularesearchlaboratory","wearethorn"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.25,"_pop_updated_issues_count":22,"_pop_closed_issues_count":14,"_pop_created_since_days":126,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":22.0,"_pop_comment_count":21.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":240,"_pop_score":48.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/nbviewer/master/README.md","_readme_localurl":"jupyter~nbviewer~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/nbviewer/master/requirements.txt","https://raw.githubusercontent.com/jupyter/nbviewer/master/setup.py"],"_requirements_localurls":["jupyter~nbviewer~requirements.txt","jupyter~nbviewer~setup.py"]},{"index":411,"category":"util","githuburl":"https://github.com/yaml/pyyaml","featured":null,"links":null,"description":null,"_repopath":"yaml/pyyaml","_reponame":"pyyaml","_stars":2007,"_forks":423,"_watches":46,"_topics":["python","yaml"],"_language":"Python","_homepage":"","_description":"pyyaml: Canonical source repository for PyYAML","_organization":"yaml","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-09-13T00:00:00.000Z","_created_at":"2011-11-03T00:00:00.000Z","_age_weeks":580,"_stars_per_week":3.46,"_pop_contributor_count":40,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ansible","newfolddigital/bluehost","suse"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":36,"_pop_closed_issues_count":9,"_pop_created_since_days":135,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":36.0,"_pop_comment_count":33.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":6927,"_pop_score":51.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/yaml/pyyaml/master/README.md","_readme_localurl":"yaml~pyyaml~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/yaml/pyyaml/master/setup.py","https://raw.githubusercontent.com/yaml/pyyaml/master/pyproject.toml"],"_requirements_localurls":["yaml~pyyaml~setup.py","yaml~pyyaml~pyproject.toml"]},{"index":748,"category":"study","githuburl":"https://github.com/zhanymkanov/fastapi-best-practices","featured":null,"links":null,"description":null,"_repopath":"zhanymkanov/fastapi-best-practices","_reponame":"fastapi-best-practices","_stars":2006,"_forks":134,"_watches":36,"_topics":["fastapi","best-practices"],"_language":null,"_homepage":"","_description":"fastapi-best-practices: FastAPI Best Practices and Conventions we used @ hi.peerlink.me","_organization":"zhanymkanov","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-16T00:00:00.000Z","_created_at":"2022-08-09T00:00:00.000Z","_age_weeks":18,"_stars_per_week":106.38,"_pop_contributor_count":3,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["viaprotocol"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.81,"_pop_updated_issues_count":9,"_pop_closed_issues_count":3,"_pop_created_since_days":4,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":9.0,"_pop_comment_count":25.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":0,"_pop_score":17.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zhanymkanov/fastapi-best-practices/master/README.md","_readme_localurl":"zhanymkanov~fastapi-best-practices~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":881,"category":"time-series","githuburl":"https://github.com/rjt1990/pyflux","featured":null,"links":null,"description":null,"_repopath":"rjt1990/pyflux","_reponame":"pyflux","_stars":2001,"_forks":233,"_watches":70,"_topics":["statistics","time-series"],"_language":"Python","_homepage":null,"_description":"pyflux: Open source time series library for Python","_organization":"rjt1990","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2018-12-16T00:00:00.000Z","_created_at":"2016-02-16T00:00:00.000Z","_age_weeks":356,"_stars_per_week":5.61,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["gitter","pinseekerinc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":83,"_pop_updated_since_days":49,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":8,"_pop_score":19.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rjt1990/pyflux/master/README.md","_readme_localurl":"rjt1990~pyflux~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rjt1990/pyflux/master/requirements.txt","https://raw.githubusercontent.com/rjt1990/pyflux/master/setup.py"],"_requirements_localurls":["rjt1990~pyflux~requirements.txt","rjt1990~pyflux~setup.py"]},{"index":548,"category":"ml","githuburl":"https://github.com/lightly-ai/lightly","featured":null,"links":null,"description":null,"_repopath":"lightly-ai/lightly","_reponame":"lightly","_stars":1976,"_forks":164,"_watches":25,"_topics":["deep-learning","self-supervised-learning","machine-learning","computer-vision","pytorch","embeddings","contrastive-learning","active-learning"],"_language":"Python","_homepage":"","_description":"lightly: A python library for self-supervised learning on images.","_organization":"lightly-ai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2020-10-13T00:00:00.000Z","_age_weeks":113,"_stars_per_week":17.36,"_pop_contributor_count":21,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lightly"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.62,"_pop_updated_issues_count":92,"_pop_closed_issues_count":78,"_pop_created_since_days":27,"_pop_updated_since_days":0,"_pop_recent_releases_count":38,"_pop_recent_releases_estimated_tags":33,"_pop_recent_releases_adjusted_count":38,"_pop_issue_count":92.0,"_pop_comment_count":133.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":22,"_pop_score":44.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lightly-ai/lightly/master/README.md","_readme_localurl":"lightly-ai~lightly~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lightly-ai/lightly/master/setup.py"],"_requirements_localurls":["lightly-ai~lightly~setup.py"]},{"index":813,"category":"data","githuburl":"https://github.com/datafold/data-diff","featured":null,"links":null,"description":null,"_repopath":"datafold/data-diff","_reponame":"data-diff","_stars":1953,"_forks":88,"_watches":14,"_topics":["database","mysql","postgresql","snowflake","rdbms","trino","data-engineering","data-quality","data-science","data-quality-monitoring","databricks-sql","dataengineering","dataquality","oracle-database","postgres","sql"],"_language":"Python","_homepage":"https://www.datafold.com/blog/open-source-data-diff","_description":"data-diff: Efficiently diff data in or across relational databases","_organization":"datafold","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2022-03-07T00:00:00.000Z","_age_weeks":41,"_stars_per_week":47.63,"_pop_contributor_count":25,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datafold","webscaleinc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.75,"_pop_updated_issues_count":139,"_pop_closed_issues_count":117,"_pop_created_since_days":10,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":139.0,"_pop_comment_count":220.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":4,"_pop_score":43.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/datafold/data-diff/master/README.md","_readme_localurl":"datafold~data-diff~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/datafold/data-diff/master/pyproject.toml"],"_requirements_localurls":["datafold~data-diff~pyproject.toml"]},{"index":323,"category":"gui","githuburl":"https://github.com/wxwidgets/phoenix","featured":null,"links":null,"description":null,"_repopath":"wxwidgets/phoenix","_reponame":"Phoenix","_stars":1911,"_forks":488,"_watches":105,"_topics":["python","cross-platform","gui-framework","gui-toolkit","gui","windows","macosx","linux","awesome","wxwidgets","wxpython"],"_language":"Python","_homepage":"http://wxpython.org/","_description":"Phoenix: wxPython's Project Phoenix. A new implementation of wxPython, better, stronger, faster than he was before.","_organization":"wxwidgets","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-10T00:00:00.000Z","_created_at":"2012-07-17T00:00:00.000Z","_age_weeks":543,"_stars_per_week":3.51,"_pop_contributor_count":123,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["self;independant"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.96,"_pop_updated_issues_count":79,"_pop_closed_issues_count":45,"_pop_created_since_days":127,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":79.0,"_pop_comment_count":141.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":133,"_pop_score":49.57,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/wxwidgets/phoenix/master/README.rst","_readme_localurl":"wxwidgets~phoenix~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/wxwidgets/phoenix/master/requirements.txt","https://raw.githubusercontent.com/wxwidgets/phoenix/master/setup.py"],"_requirements_localurls":["wxwidgets~phoenix~requirements.txt","wxwidgets~phoenix~setup.py"]},{"index":590,"category":"util","githuburl":"https://github.com/hgrecco/pint","featured":null,"links":null,"description":null,"_repopath":"hgrecco/pint","_reponame":"pint","_stars":1895,"_forks":407,"_watches":40,"_topics":["python","science","units"],"_language":"Python","_homepage":"http://pint.readthedocs.org/","_description":"pint: Operate and manipulate physical quantities in Python","_organization":"hgrecco","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2012-07-13T00:00:00.000Z","_age_weeks":544,"_stars_per_week":3.48,"_pop_contributor_count":181,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.02,"_pop_updated_issues_count":135,"_pop_closed_issues_count":73,"_pop_created_since_days":127,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":135.0,"_pop_comment_count":335.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":462,"_pop_score":52.75,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/hgrecco/pint/master/README.rst","_readme_localurl":"hgrecco~pint~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/hgrecco/pint/master/setup.py","https://raw.githubusercontent.com/hgrecco/pint/master/pyproject.toml"],"_requirements_localurls":["hgrecco~pint~setup.py","hgrecco~pint~pyproject.toml"]},{"index":233,"category":"crypto","githuburl":"https://github.com/ethereum/py-evm","featured":null,"links":null,"description":null,"_repopath":"ethereum/py-evm","_reponame":"py-evm","_stars":1886,"_forks":576,"_watches":98,"_topics":["evm","ethereum","python","ethereum-virtual-machine"],"_language":"Python","_homepage":"https://py-evm.readthedocs.io/en/latest/","_description":"py-evm: A Python implementation of the Ethereum Virtual Machine","_organization":"ethereum","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2016-12-27T00:00:00.000Z","_age_weeks":311,"_stars_per_week":6.05,"_pop_contributor_count":80,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ethereumfoundation"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.71,"_pop_updated_issues_count":13,"_pop_closed_issues_count":6,"_pop_created_since_days":73,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":13.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":107,"_pop_score":44.85,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethereum/py-evm/master/README.md","_readme_localurl":"ethereum~py-evm~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ethereum/py-evm/master/setup.py","https://raw.githubusercontent.com/ethereum/py-evm/master/pyproject.toml"],"_requirements_localurls":["ethereum~py-evm~setup.py","ethereum~py-evm~pyproject.toml"]},{"index":353,"category":"ml-interpretability","githuburl":"https://github.com/seldonio/alibi","featured":null,"links":null,"description":null,"_repopath":"seldonio/alibi","_reponame":"alibi","_stars":1880,"_forks":212,"_watches":43,"_topics":["machine-learning","explanations","interpretability","counterfactual","xai"],"_language":"Python","_homepage":"https://docs.seldon.io/projects/alibi/en/stable/","_description":"alibi: Algorithms for explaining machine learning models","_organization":"seldonio","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2019-02-26T00:00:00.000Z","_age_weeks":198,"_stars_per_week":9.45,"_pop_contributor_count":18,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datascienceseldonio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.52,"_pop_updated_issues_count":84,"_pop_closed_issues_count":61,"_pop_created_since_days":46,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":84.0,"_pop_comment_count":108.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":12,"_pop_score":40.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/seldonio/alibi/master/README.md","_readme_localurl":"seldonio~alibi~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/seldonio/alibi/master/setup.py"],"_requirements_localurls":["seldonio~alibi~setup.py"]},{"index":441,"category":"gis","githuburl":"https://github.com/rasterio/rasterio","featured":1.0,"links":null,"description":null,"_repopath":"rasterio/rasterio","_reponame":"rasterio","_stars":1858,"_forks":490,"_watches":152,"_topics":["python","gis","raster","gdal","cli","cython","mapbox-satellite-oss"],"_language":"Python","_homepage":"https://rasterio.readthedocs.io/","_description":"Rasterio reads and writes geospatial raster datasets","_organization":"rasterio","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2013-11-04T00:00:00.000Z","_age_weeks":476,"_stars_per_week":3.9,"_pop_contributor_count":140,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["astutespruce","corteva","planetlabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.12,"_pop_updated_issues_count":228,"_pop_closed_issues_count":122,"_pop_created_since_days":111,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":228.0,"_pop_comment_count":254.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":102,"_pop_score":56.91,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/rasterio/rasterio/master/README.rst","_readme_localurl":"rasterio~rasterio~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/rasterio/rasterio/master/requirements.txt","https://raw.githubusercontent.com/rasterio/rasterio/master/setup.py","https://raw.githubusercontent.com/rasterio/rasterio/master/pyproject.toml"],"_requirements_localurls":["rasterio~rasterio~requirements.txt","rasterio~rasterio~setup.py","rasterio~rasterio~pyproject.toml"]},{"index":755,"category":"ml","githuburl":"https://github.com/marqo-ai/marqo","featured":null,"links":null,"description":null,"_repopath":"marqo-ai/marqo","_reponame":"marqo","_stars":1852,"_forks":69,"_watches":23,"_topics":["deep-learning","search","information-retrieval","machinelearning","vector-search","tensor-search","clip","multi-modal","search-engine","timm","transformers","vision-language","machine-learning","semantic-search","visual-search","natural-language-processing","hnsw","knn","hacktoberfest","hacktoberfest-accepted"],"_language":"Python","_homepage":"https://www.marqo.ai/","_description":"marqo: Tensor search for humans.","_organization":"marqo-ai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2022-08-01T00:00:00.000Z","_age_weeks":20,"_stars_per_week":92.6,"_pop_contributor_count":20,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["marqo-ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.88,"_pop_updated_issues_count":196,"_pop_closed_issues_count":148,"_pop_created_since_days":5,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":195.0,"_pop_comment_count":147.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":9,"_pop_score":37.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/marqo-ai/marqo/master/README.md","_readme_localurl":"marqo-ai~marqo~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/marqo-ai/marqo/master/requirements.txt","https://raw.githubusercontent.com/marqo-ai/marqo/master/setup.py","https://raw.githubusercontent.com/marqo-ai/marqo/master/pyproject.toml"],"_requirements_localurls":["marqo-ai~marqo~requirements.txt","marqo-ai~marqo~setup.py","marqo-ai~marqo~pyproject.toml"]},{"index":452,"category":"pandas","githuburl":"https://github.com/pandera-dev/pandera","featured":1.0,"links":null,"description":null,"_repopath":"pandera-dev/pandera","_reponame":"pandera","_stars":1851,"_forks":156,"_watches":12,"_topics":["pandas","validation","schema","dataframes","testing","pandas-validation","pandas-dataframe","data-validation","data-cleaning","data-check","testing-tools","assertions","data-assertions","data-verification","dataframe-schema","hypothesis-testing","pandas-validator","data-processing"],"_language":"Python","_homepage":"https://www.union.ai/pandera","_description":"pandera: A light-weight, flexible, and expressive statistical data testing library","_organization":"pandera-dev","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-11-01T00:00:00.000Z","_age_weeks":215,"_stars_per_week":8.59,"_pop_contributor_count":77,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["auxmoney","bcggamma","imperialcollegelondon","unionai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.23,"_pop_updated_issues_count":134,"_pop_closed_issues_count":83,"_pop_created_since_days":50,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":134.0,"_pop_comment_count":355.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":17,"_pop_score":53.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pandera-dev/pandera/master/README.md","_readme_localurl":"pandera-dev~pandera~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pandera-dev/pandera/master/setup.py","https://raw.githubusercontent.com/pandera-dev/pandera/master/pyproject.toml"],"_requirements_localurls":["pandera-dev~pandera~setup.py","pandera-dev~pandera~pyproject.toml"]},{"index":540,"category":"nlp","githuburl":"https://github.com/salesforce/codegen","featured":null,"links":null,"description":null,"_repopath":"salesforce/codegen","_reponame":"CodeGen","_stars":1850,"_forks":137,"_watches":35,"_topics":["programsynthesis","generativemodel","codex","languagemodel","llm","tpu-acceleration"],"_language":"Python","_homepage":"","_description":"CodeGen is an open-source model for program synthesis. Trained on TPU-v4. Competitive with OpenAI Codex.","_organization":"salesforce","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2022-03-28T00:00:00.000Z","_age_weeks":38,"_stars_per_week":48.68,"_pop_contributor_count":7,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["garnercorp"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.83,"_pop_updated_issues_count":21,"_pop_closed_issues_count":12,"_pop_created_since_days":9,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":21.0,"_pop_comment_count":47.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":2,"_pop_score":24.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/codegen/master/README.md","_readme_localurl":"salesforce~codegen~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/salesforce/codegen/master/requirements.txt"],"_requirements_localurls":["salesforce~codegen~requirements.txt"]},{"index":713,"category":"gis","githuburl":"https://github.com/mcordts/cityscapesscripts","featured":null,"links":null,"description":null,"_repopath":"mcordts/cityscapesscripts","_reponame":"cityscapesScripts","_stars":1842,"_forks":565,"_watches":46,"_topics":[],"_language":"Python","_homepage":null,"_description":"cityscapesScripts: README and scripts for the Cityscapes Dataset","_organization":"mcordts","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-22T00:00:00.000Z","_created_at":"2016-02-20T00:00:00.000Z","_age_weeks":356,"_stars_per_week":5.17,"_pop_contributor_count":17,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["daimlerag","facebookairesearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":7,"_pop_closed_issues_count":2,"_pop_created_since_days":83,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":7.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":8,"_pop_score":29.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mcordts/cityscapesscripts/master/README.md","_readme_localurl":"mcordts~cityscapesscripts~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mcordts/cityscapesscripts/master/setup.py"],"_requirements_localurls":["mcordts~cityscapesscripts~setup.py"]},{"index":871,"category":"profiling","githuburl":"https://github.com/reloadware/reloadium","featured":1.0,"links":null,"description":null,"_repopath":"reloadware/reloadium","_reponame":"reloadium","_stars":1836,"_forks":27,"_watches":24,"_topics":["hot-reload","hot-reloading","python","python3","edit-and-continue","django","flask","pandas"],"_language":"Python","_homepage":"https://reloadium.io","_description":"reloadium: Advanced Hot Reloading & Profiling for Python","_organization":"reloadware","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2022-01-15T00:00:00.000Z","_age_weeks":48,"_stars_per_week":38.02,"_pop_contributor_count":2,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bytelogics","reloadware"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.71,"_pop_updated_issues_count":38,"_pop_closed_issues_count":31,"_pop_created_since_days":11,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":38.0,"_pop_comment_count":103.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":0,"_pop_score":27.68,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/reloadware/reloadium/master/README.rst","_readme_localurl":"reloadware~reloadium~README.rst","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":856,"category":"profiling","githuburl":"https://github.com/jiffyclub/snakeviz","featured":null,"links":null,"description":null,"_repopath":"jiffyclub/snakeviz","_reponame":"snakeviz","_stars":1827,"_forks":128,"_watches":22,"_topics":[],"_language":"Python","_homepage":"https://jiffyclub.github.io/snakeviz/","_description":"snakeviz: An in-browser Python profile viewer","_organization":"jiffyclub","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2021-10-25T00:00:00.000Z","_created_at":"2012-06-26T00:00:00.000Z","_age_weeks":546,"_stars_per_week":3.34,"_pop_contributor_count":24,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nvidia","populus-ai","universityofwisconsin-madison"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":10,"_pop_closed_issues_count":4,"_pop_created_since_days":128,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":10.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":24,"_pop_score":34.66,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jiffyclub/snakeviz/master/README.rst","_readme_localurl":"jiffyclub~snakeviz~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jiffyclub/snakeviz/master/setup.py"],"_requirements_localurls":["jiffyclub~snakeviz~setup.py"]},{"index":823,"category":"data","githuburl":"https://github.com/uqfoundation/dill","featured":1.0,"links":null,"description":null,"_repopath":"uqfoundation/dill","_reponame":"dill","_stars":1822,"_forks":151,"_watches":22,"_topics":[],"_language":"Python","_homepage":"http://dill.rtfd.io","_description":"dill: serialize all of python","_organization":"uqfoundation","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2013-06-28T00:00:00.000Z","_age_weeks":494,"_stars_per_week":3.69,"_pop_contributor_count":39,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amphybio-universityofs\u00e3opaulo,medicalschool","uqfoundation"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.94,"_pop_updated_issues_count":40,"_pop_closed_issues_count":19,"_pop_created_since_days":115,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":40.0,"_pop_comment_count":57.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":514,"_pop_score":51.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/uqfoundation/dill/master/README.md","_readme_localurl":"uqfoundation~dill~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/uqfoundation/dill/master/setup.py","https://raw.githubusercontent.com/uqfoundation/dill/master/pyproject.toml"],"_requirements_localurls":["uqfoundation~dill~setup.py","uqfoundation~dill~pyproject.toml"]},{"index":46,"category":"jupyter","githuburl":"https://github.com/maartenbreddels/ipyvolume","featured":null,"links":null,"description":null,"_repopath":"maartenbreddels/ipyvolume","_reponame":"ipyvolume","_stars":1811,"_forks":234,"_watches":53,"_topics":["ipython-widget","jupyter","jupyter-notebook","python","visualisation","volume-rendering","virtual-reality","plotting","dataviz","scientific-visualization","webgl","threejs","rendering-3d-volumes","quiver"],"_language":"TypeScript","_homepage":"","_description":"ipyvolume: 3d plotting for Python in the Jupyter notebook based on IPython widgets using WebGL","_organization":"maartenbreddels","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-07-26T00:00:00.000Z","_created_at":"2016-12-21T00:00:00.000Z","_age_weeks":312,"_stars_per_week":5.79,"_pop_contributor_count":41,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["imperialcollegelondon","maartenbreddels","monashuniversity","surf"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":8,"_pop_closed_issues_count":1,"_pop_created_since_days":73,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":8.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":97,"_pop_score":41.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/maartenbreddels/ipyvolume/master/README.md","_readme_localurl":"maartenbreddels~ipyvolume~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/maartenbreddels/ipyvolume/master/setup.py","https://raw.githubusercontent.com/maartenbreddels/ipyvolume/master/pyproject.toml"],"_requirements_localurls":["maartenbreddels~ipyvolume~setup.py","maartenbreddels~ipyvolume~pyproject.toml"]},{"index":115,"category":"perf","githuburl":"https://github.com/h5py/h5py","featured":null,"links":null,"description":null,"_repopath":"h5py/h5py","_reponame":"h5py","_stars":1806,"_forks":478,"_watches":55,"_topics":[],"_language":"Python","_homepage":"http://www.h5py.org","_description":"h5py: HDF5 for Python -- The h5py package is a Pythonic interface to the HDF5 binary data format.","_organization":"h5py","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2012-09-21T00:00:00.000Z","_age_weeks":534,"_stars_per_week":3.38,"_pop_contributor_count":190,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["brookhavennationallab","departmentofphysicsandastronomy,macquarieuniversity","enthought","esrf"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.48,"_pop_updated_issues_count":70,"_pop_closed_issues_count":41,"_pop_created_since_days":125,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":70.0,"_pop_comment_count":208.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":791,"_pop_score":61.34,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/h5py/h5py/master/README.rst","_readme_localurl":"h5py~h5py~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/h5py/h5py/master/setup.py","https://raw.githubusercontent.com/h5py/h5py/master/pyproject.toml"],"_requirements_localurls":["h5py~h5py~setup.py","h5py~h5py~pyproject.toml"]},{"index":506,"category":"ml-ops","githuburl":"https://github.com/adap/flower","featured":null,"links":null,"description":null,"_repopath":"adap/flower","_reponame":"flower","_stars":1800,"_forks":390,"_watches":24,"_topics":["flower","federated-learning","federated-learning-framework","pytorch-federated-learning","tensorflow-federated-learning","keras-federated-learning","federated-analytics","fleet-learning","fleet-intelligence"],"_language":"Python","_homepage":"https://flower.dev","_description":"Flower - A Friendly Federated Learning Framework","_organization":"adap","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2020-02-17T00:00:00.000Z","_age_weeks":148,"_stars_per_week":12.16,"_pop_contributor_count":51,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["adapgmbh"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.63,"_pop_updated_issues_count":99,"_pop_closed_issues_count":67,"_pop_created_since_days":34,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":99.0,"_pop_comment_count":59.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":18,"_pop_score":42.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/adap/flower/master/README.md","_readme_localurl":"adap~flower~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/adap/flower/master/pyproject.toml"],"_requirements_localurls":["adap~flower~pyproject.toml"]},{"index":648,"category":"util","githuburl":"https://github.com/grahamdumpleton/wrapt","featured":null,"links":null,"description":null,"_repopath":"grahamdumpleton/wrapt","_reponame":"wrapt","_stars":1793,"_forks":208,"_watches":45,"_topics":[],"_language":"Python","_homepage":"","_description":"wrapt: A Python module for decorators, wrappers and monkey patching.","_organization":"grahamdumpleton","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-28T00:00:00.000Z","_created_at":"2013-05-29T00:00:00.000Z","_age_weeks":498,"_stars_per_week":3.6,"_pop_contributor_count":25,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["embl,zellerlab","georgiatech","scampersand"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.4,"_pop_updated_issues_count":5,"_pop_closed_issues_count":4,"_pop_created_since_days":116,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":5.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":1101,"_pop_score":47.52,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/grahamdumpleton/wrapt/master/README.rst","_readme_localurl":"grahamdumpleton~wrapt~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/grahamdumpleton/wrapt/master/setup.py"],"_requirements_localurls":["grahamdumpleton~wrapt~setup.py"]},{"index":601,"category":"gis","githuburl":"https://github.com/plant99/felicette","featured":null,"links":null,"description":null,"_repopath":"plant99/felicette","_reponame":"felicette","_stars":1792,"_forks":85,"_watches":38,"_topics":["geospatial-data","gis","geospatial-visualization","geospatial","python","python3","geoinformatics","earth-observation","earth-science","satellite-imagery","satellite-images","satellite-data"],"_language":"Python","_homepage":"","_description":"felicette: Satellite imagery for dummies.","_organization":"plant99","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2021-09-08T00:00:00.000Z","_created_at":"2020-07-12T00:00:00.000Z","_age_weeks":127,"_stars_per_week":14.09,"_pop_contributor_count":6,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["clemsonuniversity","financeandeconomicsdepartment,mgimo-odintsovo","mattermost","tempulsenoirlinuxmulindisourcehaus"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":30,"_pop_updated_since_days":16,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":16.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/plant99/felicette/master/README.md","_readme_localurl":"plant99~felicette~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/plant99/felicette/master/requirements.txt","https://raw.githubusercontent.com/plant99/felicette/master/setup.py"],"_requirements_localurls":["plant99~felicette~requirements.txt","plant99~felicette~setup.py"]},{"index":295,"category":"util","githuburl":"https://github.com/pyfilesystem/pyfilesystem2","featured":null,"links":null,"description":null,"_repopath":"pyfilesystem/pyfilesystem2","_reponame":"pyfilesystem2","_stars":1785,"_forks":170,"_watches":45,"_topics":["filesystem","pyfilesystem","pyfilesystem2","python","ftp","tar","zip","filesystem-library"],"_language":"Python","_homepage":"https://www.pyfilesystem.org","_description":"pyfilesystem2: Python's Filesystem abstraction layer","_organization":"pyfilesystem","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-10-18T00:00:00.000Z","_created_at":"2016-10-14T00:00:00.000Z","_age_weeks":322,"_stars_per_week":5.54,"_pop_contributor_count":47,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["embl,zellerlab","mercatronicsgmbh","textualize"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.56,"_pop_updated_issues_count":7,"_pop_closed_issues_count":2,"_pop_created_since_days":75,"_pop_updated_since_days":2,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":7.0,"_pop_comment_count":19.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":47,"_pop_score":43.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyfilesystem/pyfilesystem2/master/README.md","_readme_localurl":"pyfilesystem~pyfilesystem2~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyfilesystem/pyfilesystem2/master/setup.py"],"_requirements_localurls":["pyfilesystem~pyfilesystem2~setup.py"]},{"index":63,"category":"sim","githuburl":"https://github.com/projectmesa/mesa","featured":null,"links":null,"description":null,"_repopath":"projectmesa/mesa","_reponame":"mesa","_stars":1778,"_forks":760,"_watches":89,"_topics":["mesa","agent-based-modeling","agent-based-simulation","simulation-framework","simulation","simulation-environment","complex-systems","complexity-analysis","modeling-agents","spatial-models","gis"],"_language":"Python","_homepage":"","_description":"Mesa is an agent-based modeling framework in Python","_organization":"projectmesa","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2014-09-19T00:00:00.000Z","_age_weeks":430,"_stars_per_week":4.13,"_pop_contributor_count":121,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.48,"_pop_updated_issues_count":166,"_pop_closed_issues_count":136,"_pop_created_since_days":100,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":166.0,"_pop_comment_count":676.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.1,"_pop_dependents_count":104,"_pop_score":51.2,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/projectmesa/mesa/master/README.rst","_readme_localurl":"projectmesa~mesa~README.rst","_requirements_filenames":["setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/projectmesa/mesa/master/setup.py","https://raw.githubusercontent.com/projectmesa/mesa/master/Pipfile"],"_requirements_localurls":["projectmesa~mesa~setup.py","projectmesa~mesa~Pipfile"]},{"index":749,"category":"diffusion","githuburl":"https://github.com/nateraw/stable-diffusion-videos","featured":null,"links":null,"description":null,"_repopath":"nateraw/stable-diffusion-videos","_reponame":"stable-diffusion-videos","_stars":1774,"_forks":155,"_watches":21,"_topics":["ai-art","huggingface","huggingface-diffusers","machine-learning","stable-diffusion"],"_language":"Python","_homepage":"","_description":"stable-diffusion-videos: Create \ud83d\udd25 videos with Stable Diffusion by exploring the latent space and morphing between text prompts","_organization":"nateraw","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2022-09-06T00:00:00.000Z","_age_weeks":14,"_stars_per_week":119.4,"_pop_contributor_count":10,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["earth","huggingface","student"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.31,"_pop_updated_issues_count":103,"_pop_closed_issues_count":83,"_pop_created_since_days":3,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":61,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":103.0,"_pop_comment_count":213.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":2,"_pop_score":36.85,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/README.md","_readme_localurl":"nateraw~stable-diffusion-videos~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/requirements.txt","https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/setup.py"],"_requirements_localurls":["nateraw~stable-diffusion-videos~requirements.txt","nateraw~stable-diffusion-videos~setup.py"]},{"index":32,"category":"nlp","githuburl":"https://github.com/jamesturk/jellyfish","featured":null,"links":null,"description":null,"_repopath":"jamesturk/jellyfish","_reponame":"jellyfish","_stars":1766,"_forks":148,"_watches":43,"_topics":["python","levenshtein","soundex","hamming","metaphone","jaro-winkler","fuzzy-search","hacktoberfest"],"_language":"Python","_homepage":"https://jamesturk.github.io/jellyfish/","_description":"jellyfish: \ud83e\udebc a python library for doing approximate and phonetic matching of strings.","_organization":"jamesturk","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-07T00:00:00.000Z","_created_at":"2010-07-09T00:00:00.000Z","_age_weeks":649,"_stars_per_week":2.72,"_pop_contributor_count":27,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ibmresearch","sunlightlabs","utrechtuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.38,"_pop_updated_issues_count":10,"_pop_closed_issues_count":7,"_pop_created_since_days":152,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":10.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":92,"_pop_score":41.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jamesturk/jellyfish/master/README.md","_readme_localurl":"jamesturk~jellyfish~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jamesturk/jellyfish/master/setup.py"],"_requirements_localurls":["jamesturk~jellyfish~setup.py"]},{"index":310,"category":"data","githuburl":"https://github.com/graphistry/pygraphistry","featured":null,"links":null,"description":null,"_repopath":"graphistry/pygraphistry","_reponame":"pygraphistry","_stars":1764,"_forks":185,"_watches":48,"_topics":["graph","visualization","gpu","graphistry","python","rapids","cugraph","networkx","neo4j","tigergraph","pandas","csv","webgl","splunk","cudf","jupyter","igraph","network-analysis","network-visualization","graph-visualization"],"_language":"Python","_homepage":"","_description":"PyGraphistry is a Python library to quickly load, shape, embed, and explore big graphs with the GPU-accelerated Graphistry visual graph analyzer","_organization":"graphistry","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2015-06-02T00:00:00.000Z","_age_weeks":393,"_stars_per_week":4.48,"_pop_contributor_count":31,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["graphistry","nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.44,"_pop_updated_issues_count":38,"_pop_closed_issues_count":21,"_pop_created_since_days":92,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":22,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":38.0,"_pop_comment_count":32.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":36,"_pop_score":46.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/graphistry/pygraphistry/master/README.md","_readme_localurl":"graphistry~pygraphistry~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/graphistry/pygraphistry/master/setup.py"],"_requirements_localurls":["graphistry~pygraphistry~setup.py"]},{"index":9,"category":"ml","githuburl":"https://github.com/contextlab/hypertools","featured":null,"links":null,"description":null,"_repopath":"contextlab/hypertools","_reponame":"hypertools","_stars":1754,"_forks":159,"_watches":60,"_topics":["data-visualization","high-dimensional-data","python","topic-modeling","text-vectorization","data-wrangling","visualization","time-series"],"_language":"Python","_homepage":"http://hypertools.readthedocs.io/en/latest/","_description":"hypertools: A Python toolbox for gaining geometric insights into high-dimensional data","_organization":"contextlab","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-02-12T00:00:00.000Z","_created_at":"2016-09-27T00:00:00.000Z","_age_weeks":324,"_stars_per_week":5.4,"_pop_contributor_count":21,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["akiliinteractive","contextlabcosanlab","dartmouthcollege"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.63,"_pop_updated_issues_count":4,"_pop_closed_issues_count":4,"_pop_created_since_days":76,"_pop_updated_since_days":10,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":4.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":25,"_pop_score":33.19,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/contextlab/hypertools/master/readme.md","_readme_localurl":"contextlab~hypertools~readme.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/contextlab/hypertools/master/requirements.txt","https://raw.githubusercontent.com/contextlab/hypertools/master/setup.py"],"_requirements_localurls":["contextlab~hypertools~requirements.txt","contextlab~hypertools~setup.py"]},{"index":201,"category":"util","githuburl":"https://github.com/camelot-dev/camelot","featured":null,"links":null,"description":null,"_repopath":"camelot-dev/camelot","_reponame":"camelot","_stars":1752,"_forks":329,"_watches":40,"_topics":[],"_language":"Python","_homepage":"https://camelot-py.readthedocs.io","_description":"camelot: A Python library to extract tabular data from PDFs","_organization":"camelot-dev","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2021-07-11T00:00:00.000Z","_created_at":"2019-07-01T00:00:00.000Z","_age_weeks":181,"_stars_per_week":9.68,"_pop_contributor_count":38,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["01s","http://develated.com/"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":16,"_pop_closed_issues_count":5,"_pop_created_since_days":42,"_pop_updated_since_days":18,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":16.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":6,"_pop_score":30.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/camelot-dev/camelot/master/README.md","_readme_localurl":"camelot-dev~camelot~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/camelot-dev/camelot/master/setup.py"],"_requirements_localurls":["camelot-dev~camelot~setup.py"]},{"index":843,"category":"ml","githuburl":"https://github.com/aws/sagemaker-python-sdk","featured":null,"links":null,"description":null,"_repopath":"aws/sagemaker-python-sdk","_reponame":"sagemaker-python-sdk","_stars":1748,"_forks":905,"_watches":131,"_topics":["aws","mxnet","tensorflow","machine-learning","python","pytorch","sagemaker","huggingface"],"_language":"Python","_homepage":"https://sagemaker.readthedocs.io/","_description":"sagemaker-python-sdk: A library for training and deploying machine learning models on Amazon SageMaker","_organization":"aws","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2017-11-14T00:00:00.000Z","_age_weeks":265,"_stars_per_week":6.57,"_pop_contributor_count":311,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.71,"_pop_updated_issues_count":275,"_pop_closed_issues_count":152,"_pop_created_since_days":62,"_pop_updated_since_days":0,"_pop_recent_releases_count":74,"_pop_recent_releases_estimated_tags":93,"_pop_recent_releases_adjusted_count":74,"_pop_issue_count":275.0,"_pop_comment_count":3020.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":11.0,"_pop_dependents_count":133,"_pop_score":66.03,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/aws/sagemaker-python-sdk/master/README.rst","_readme_localurl":"aws~sagemaker-python-sdk~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aws/sagemaker-python-sdk/master/setup.py"],"_requirements_localurls":["aws~sagemaker-python-sdk~setup.py"]},{"index":297,"category":"util","githuburl":"https://github.com/pyparsing/pyparsing","featured":null,"links":null,"description":null,"_repopath":"pyparsing/pyparsing","_reponame":"pyparsing","_stars":1714,"_forks":237,"_watches":23,"_topics":["python","python2","python3","python-2","python-3","parser-combinators","parsing-expression-grammar","parsing","parsing-library","text-processing","peg-parsers"],"_language":"Python","_homepage":"","_description":"pyparsing: Python library for creating PEG parsers","_organization":"pyparsing","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2017-05-14T00:00:00.000Z","_age_weeks":292,"_stars_per_week":5.87,"_pop_contributor_count":52,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","pioneervalleybooks","suse"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.69,"_pop_updated_issues_count":19,"_pop_closed_issues_count":7,"_pop_created_since_days":68,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":19.0,"_pop_comment_count":33.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":2168,"_pop_score":54.35,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyparsing/pyparsing/master/README.rst","_readme_localurl":"pyparsing~pyparsing~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyparsing/pyparsing/master/pyproject.toml"],"_requirements_localurls":["pyparsing~pyparsing~pyproject.toml"]},{"index":25,"category":"util","githuburl":"https://github.com/google/gin-config","featured":null,"links":null,"description":null,"_repopath":"google/gin-config","_reponame":"gin-config","_stars":1710,"_forks":107,"_watches":22,"_topics":["python","configuration-management","tensorflow","tensorflow-experiments"],"_language":"Python","_homepage":"","_description":"gin-config: Gin provides a lightweight configuration framework for Python","_organization":"google","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2018-06-27T00:00:00.000Z","_age_weeks":233,"_stars_per_week":7.32,"_pop_contributor_count":23,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","netguru"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":9,"_pop_closed_issues_count":6,"_pop_created_since_days":54,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":9.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":29.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/gin-config/master/README.md","_readme_localurl":"google~gin-config~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/gin-config/master/setup.py"],"_requirements_localurls":["google~gin-config~setup.py"]},{"index":365,"category":"ml","githuburl":"https://github.com/rentruewang/koila","featured":null,"links":null,"description":null,"_repopath":"rentruewang/koila","_reponame":"koila","_stars":1689,"_forks":61,"_watches":11,"_topics":["pytorch","lazy-evaluation","out-of-memory","python","machine-learning","deep-learning","memory-management","gradient-accumulation","neural-network"],"_language":"Python","_homepage":"https://rentruewang.github.io/koila","_description":"koila: Prevent PyTorch's `CUDA error: out of memory` in just 1 line of code.","_organization":"rentruewang","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2021-11-17T00:00:00.000Z","_age_weeks":56,"_stars_per_week":29.78,"_pop_contributor_count":4,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["collegeofcomputing,georgiatech","iprally"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.83,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":13,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":20.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rentruewang/koila/master/README.md","_readme_localurl":"rentruewang~koila~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/rentruewang/koila/master/pyproject.toml"],"_requirements_localurls":["rentruewang~koila~pyproject.toml"]},{"index":806,"category":"web","githuburl":"https://github.com/python-restx/flask-restx","featured":null,"links":null,"description":null,"_repopath":"python-restx/flask-restx","_reponame":"flask-restx","_stars":1689,"_forks":285,"_watches":65,"_topics":["python","api","swagger","flask","rest","json","restful","restplus","restx"],"_language":"Python","_homepage":"https://flask-restx.readthedocs.io/en/latest/","_description":"flask-restx: Fork of Flask-RESTPlus: Fully featured framework for fast, easy and documented API development with Flask","_organization":"python-restx","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-02T00:00:00.000Z","_created_at":"2020-01-09T00:00:00.000Z","_age_weeks":153,"_stars_per_week":11.0,"_pop_contributor_count":137,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["apihackers","canonical"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":85,"_pop_closed_issues_count":21,"_pop_created_since_days":36,"_pop_updated_since_days":2,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":85.0,"_pop_comment_count":67.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":264,"_pop_score":45.5,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/python-restx/flask-restx/master/README.rst","_readme_localurl":"python-restx~flask-restx~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/python-restx/flask-restx/master/setup.py"],"_requirements_localurls":["python-restx~flask-restx~setup.py"]},{"index":543,"category":"data","githuburl":"https://github.com/sqlalchemy/alembic","featured":null,"links":null,"description":null,"_repopath":"sqlalchemy/alembic","_reponame":"alembic","_stars":1673,"_forks":171,"_watches":18,"_topics":["sqlalchemy","sql","python"],"_language":"Python","_homepage":"","_description":"alembic: A database migrations tool for SQLAlchemy.","_organization":"sqlalchemy","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2018-11-27T00:00:00.000Z","_age_weeks":211,"_stars_per_week":7.9,"_pop_contributor_count":155,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["helioslite","planetarium","redhat","self-employed"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.33,"_pop_updated_issues_count":37,"_pop_closed_issues_count":26,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":37.0,"_pop_comment_count":106.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":1101,"_pop_score":59.21,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sqlalchemy/alembic/master/README.rst","_readme_localurl":"sqlalchemy~alembic~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sqlalchemy/alembic/master/setup.py","https://raw.githubusercontent.com/sqlalchemy/alembic/master/pyproject.toml"],"_requirements_localurls":["sqlalchemy~alembic~setup.py","sqlalchemy~alembic~pyproject.toml"]},{"index":416,"category":"ml","githuburl":"https://github.com/bmabey/pyldavis","featured":null,"links":null,"description":null,"_repopath":"bmabey/pyldavis","_reponame":"pyLDAvis","_stars":1671,"_forks":340,"_watches":57,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"pyLDAvis: Python library for interactive topic model visualization. Port of the R LDAvis package.","_organization":"bmabey","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2021-03-24T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":401,"_stars_per_week":4.16,"_pop_contributor_count":32,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","zalandose"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":13,"_pop_closed_issues_count":2,"_pop_created_since_days":94,"_pop_updated_since_days":21,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":13.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":15,"_pop_score":30.39,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/bmabey/pyldavis/master/README.rst","_readme_localurl":"bmabey~pyldavis~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/bmabey/pyldavis/master/requirements.txt","https://raw.githubusercontent.com/bmabey/pyldavis/master/setup.py","https://raw.githubusercontent.com/bmabey/pyldavis/master/pyproject.toml","https://raw.githubusercontent.com/bmabey/pyldavis/master/Pipfile"],"_requirements_localurls":["bmabey~pyldavis~requirements.txt","bmabey~pyldavis~setup.py","bmabey~pyldavis~pyproject.toml","bmabey~pyldavis~Pipfile"]},{"index":217,"category":"ml","githuburl":"https://github.com/linkedin/greykite","featured":1.0,"links":null,"description":null,"_repopath":"linkedin/greykite","_reponame":"greykite","_stars":1654,"_forks":87,"_watches":37,"_topics":[],"_language":"Python","_homepage":"","_description":"greykite: A flexible, intuitive and fast forecasting library","_organization":"linkedin","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-08-31T00:00:00.000Z","_created_at":"2021-04-27T00:00:00.000Z","_age_weeks":85,"_stars_per_week":19.26,"_pop_contributor_count":8,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["linkedin","pepsico"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":20,"_pop_updated_since_days":4,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":3.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":12,"_pop_score":28.27,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/linkedin/greykite/master/README.rst","_readme_localurl":"linkedin~greykite~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/linkedin/greykite/master/setup.py"],"_requirements_localurls":["linkedin~greykite~setup.py"]},{"index":302,"category":"template","githuburl":"https://github.com/pyscaffold/pyscaffold","featured":null,"links":null,"description":null,"_repopath":"pyscaffold/pyscaffold","_reponame":"pyscaffold","_stars":1649,"_forks":170,"_watches":40,"_topics":["python","release-automation","git","distribution","package-creation","template-project","project-template","package"],"_language":"Python","_homepage":"https://pyscaffold.org","_description":"pyscaffold: \ud83d\udee0 Python project template generator with batteries included","_organization":"pyscaffold","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2014-04-02T00:00:00.000Z","_age_weeks":454,"_stars_per_week":3.63,"_pop_contributor_count":53,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["inovex","karlsruheinstituteoftechnology","universityofbristol"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.98,"_pop_updated_issues_count":18,"_pop_closed_issues_count":13,"_pop_created_since_days":106,"_pop_updated_since_days":1,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":22,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":18.0,"_pop_comment_count":22.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":105,"_pop_score":49.78,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyscaffold/pyscaffold/master/README.rst","_readme_localurl":"pyscaffold~pyscaffold~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyscaffold/pyscaffold/master/setup.py","https://raw.githubusercontent.com/pyscaffold/pyscaffold/master/pyproject.toml"],"_requirements_localurls":["pyscaffold~pyscaffold~setup.py","pyscaffold~pyscaffold~pyproject.toml"]},{"index":732,"category":"study","githuburl":"https://github.com/amanchadha/coursera-deep-learning-specialization","featured":null,"links":null,"description":null,"_repopath":"amanchadha/coursera-deep-learning-specialization","_reponame":"coursera-deep-learning-specialization","_stars":1649,"_forks":1451,"_watches":16,"_topics":["deep-learning","coursera","coursera-assignment","coursera-specialization","coursera-machine-learning","andrew-ng","andrew-ng-course","convolutional-neural-networks","cnns","recurrent-neural-networks","rnns","convolutional-neural-network","recurrent-neural-network","hyperparameter-optimization","hyperparameter-tuning","neural-network","neural-networks","neural-machine-translation","neural-style-transfer","regularization"],"_language":"Jupyter Notebook","_homepage":"","_description":"coursera-deep-learning-specialization: Notes, programming assignments and quizzes from all courses within the Coursera Deep Learning specialization offered by deeplearning.ai: (i) Neural Networks and Deep Learning; (ii) Improving Deep Neural Networks: Hyperparameter tuning, Regularization and Optimization; (iii) Structuring Machine Learning Projects; (iv) Convolutional Neural Networks; (v) Sequence Models","_organization":"amanchadha","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-02-07T00:00:00.000Z","_created_at":"2020-06-24T00:00:00.000Z","_age_weeks":129,"_stars_per_week":12.71,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon/stanforduniversity","readytocollaborateonaiprojects"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":30,"_pop_updated_since_days":10,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":17.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/amanchadha/coursera-deep-learning-specialization/master/README.md","_readme_localurl":"amanchadha~coursera-deep-learning-specialization~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":424,"category":"debug","githuburl":"https://github.com/gotcha/ipdb","featured":null,"links":null,"description":null,"_repopath":"gotcha/ipdb","_reponame":"ipdb","_stars":1640,"_forks":145,"_watches":27,"_topics":["python","ipython","debugger"],"_language":"Python","_homepage":"","_description":"ipdb: Integration of IPython pdb","_organization":"gotcha","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2011-01-15T00:00:00.000Z","_age_weeks":622,"_stars_per_week":2.64,"_pop_contributor_count":54,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bubblenet","let'sdelivery","locatee"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":20,"_pop_closed_issues_count":14,"_pop_created_since_days":145,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":20.0,"_pop_comment_count":29.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":915,"_pop_score":52.46,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/gotcha/ipdb/master/README.rst","_readme_localurl":"gotcha~ipdb~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/gotcha/ipdb/master/setup.py","https://raw.githubusercontent.com/gotcha/ipdb/master/pyproject.toml"],"_requirements_localurls":["gotcha~ipdb~setup.py","gotcha~ipdb~pyproject.toml"]},{"index":330,"category":"nlp","githuburl":"https://github.com/franck-dernoncourt/neuroner","featured":null,"links":null,"description":null,"_repopath":"franck-dernoncourt/neuroner","_reponame":"NeuroNER","_stars":1640,"_forks":483,"_watches":84,"_topics":["nlp","machine-learning","neural-networks","named-entity-recognition","deep-learning","tensorflow"],"_language":"Python","_homepage":"http://neuroner.com","_description":"NeuroNER: Named-entity recognition using neural networks. Easy-to-use and state-of-the-art results.","_organization":"franck-dernoncourt","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2019-10-02T00:00:00.000Z","_created_at":"2017-03-07T00:00:00.000Z","_age_weeks":301,"_stars_per_week":5.43,"_pop_contributor_count":7,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mit"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":70,"_pop_updated_since_days":39,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":13.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/README.md","_readme_localurl":"franck-dernoncourt~neuroner~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/requirements.txt","https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/setup.py"],"_requirements_localurls":["franck-dernoncourt~neuroner~requirements.txt","franck-dernoncourt~neuroner~setup.py"]},{"index":699,"category":"util","githuburl":"https://github.com/grantjenks/python-diskcache","featured":null,"links":null,"description":null,"_repopath":"grantjenks/python-diskcache","_reponame":"python-diskcache","_stars":1627,"_forks":106,"_watches":18,"_topics":["python","cache","persistence","key-value-store","filesystem"],"_language":"Python","_homepage":"http://www.grantjenks.com/docs/diskcache/","_description":"python-diskcache: Python disk-backed cache (Django-compatible). Faster than Redis and Memcached. Pure-Python.","_organization":"grantjenks","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-02-20T00:00:00.000Z","_created_at":"2016-02-03T00:00:00.000Z","_age_weeks":358,"_stars_per_week":4.54,"_pop_contributor_count":24,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["canonical"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":9,"_pop_closed_issues_count":6,"_pop_created_since_days":84,"_pop_updated_since_days":10,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":9.0,"_pop_comment_count":16.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":65,"_pop_score":36.94,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/grantjenks/python-diskcache/master/README.rst","_readme_localurl":"grantjenks~python-diskcache~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/grantjenks/python-diskcache/master/requirements.txt","https://raw.githubusercontent.com/grantjenks/python-diskcache/master/setup.py"],"_requirements_localurls":["grantjenks~python-diskcache~requirements.txt","grantjenks~python-diskcache~setup.py"]},{"index":256,"category":"crypto","githuburl":"https://github.com/bmoscon/cryptofeed","featured":null,"links":null,"description":null,"_repopath":"bmoscon/cryptofeed","_reponame":"cryptofeed","_stars":1610,"_forks":518,"_watches":74,"_topics":["python","trading","market-data","cryptocurrency","bitcoin","exchange","websockets","coinbase","binance","influxdb","asyncio","websocket","ftx-exchange","trading-platform","ethereum","cryptocurrencies","btc","crypto","coinbase-api"],"_language":"Python","_homepage":"","_description":"cryptofeed: Cryptocurrency Exchange Websocket Data Feed Handler","_organization":"bmoscon","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2017-12-16T00:00:00.000Z","_age_weeks":261,"_stars_per_week":6.16,"_pop_contributor_count":104,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.71,"_pop_updated_issues_count":32,"_pop_closed_issues_count":20,"_pop_created_since_days":61,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":32.0,"_pop_comment_count":33.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":173,"_pop_score":46.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bmoscon/cryptofeed/master/README.md","_readme_localurl":"bmoscon~cryptofeed~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/bmoscon/cryptofeed/master/requirements.txt","https://raw.githubusercontent.com/bmoscon/cryptofeed/master/setup.py","https://raw.githubusercontent.com/bmoscon/cryptofeed/master/pyproject.toml"],"_requirements_localurls":["bmoscon~cryptofeed~requirements.txt","bmoscon~cryptofeed~setup.py","bmoscon~cryptofeed~pyproject.toml"]},{"index":383,"category":"nlp","githuburl":"https://github.com/minimaxir/aitextgen","featured":null,"links":null,"description":null,"_repopath":"minimaxir/aitextgen","_reponame":"aitextgen","_stars":1603,"_forks":182,"_watches":36,"_topics":[],"_language":"Python","_homepage":"https://docs.aitextgen.io","_description":"aitextgen: A robust Python tool for text-based AI training and generation using GPT-2.","_organization":"minimaxir","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-08-09T00:00:00.000Z","_created_at":"2019-12-29T00:00:00.000Z","_age_weeks":155,"_stars_per_week":10.33,"_pop_contributor_count":9,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["buzzfeed","lightning-ai","quantcopy"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":8,"_pop_closed_issues_count":1,"_pop_created_since_days":36,"_pop_updated_since_days":4,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":8.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":25.52,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/minimaxir/aitextgen/master/README.md","_readme_localurl":"minimaxir~aitextgen~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/minimaxir/aitextgen/master/requirements.txt","https://raw.githubusercontent.com/minimaxir/aitextgen/master/setup.py"],"_requirements_localurls":["minimaxir~aitextgen~requirements.txt","minimaxir~aitextgen~setup.py"]},{"index":779,"category":"nlp","githuburl":"https://github.com/deepset-ai/farm","featured":null,"links":null,"description":null,"_repopath":"deepset-ai/farm","_reponame":"FARM","_stars":1602,"_forks":232,"_watches":56,"_topics":["language-models","bert","nlp","deep-learning","transfer-learning","pytorch","nlp-library","nlp-framework","xlnet-pytorch","ner","question-answering","pretrained-models","roberta","germanbert"],"_language":"Python","_homepage":"https://farm.deepset.ai","_description":"FARM: :house_with_garden: Fast & easy transfer learning for NLP. Harvesting language models for the industry. Focus on Question Answering.","_organization":"deepset-ai","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-08-31T00:00:00.000Z","_created_at":"2019-07-17T00:00:00.000Z","_age_weeks":178,"_stars_per_week":8.96,"_pop_contributor_count":37,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deepset"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":42,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":39,"_pop_score":29.6,"_readme_filename":"readme.rst","_readme_giturl":"https://raw.githubusercontent.com/deepset-ai/farm/master/readme.rst","_readme_localurl":"deepset-ai~farm~readme.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/deepset-ai/farm/master/requirements.txt","https://raw.githubusercontent.com/deepset-ai/farm/master/setup.py"],"_requirements_localurls":["deepset-ai~farm~requirements.txt","deepset-ai~farm~setup.py"]},{"index":509,"category":"ml","githuburl":"https://github.com/tensorflow/addons","featured":null,"links":null,"description":null,"_repopath":"tensorflow/addons","_reponame":"addons","_stars":1596,"_forks":597,"_watches":58,"_topics":["machine-learning","deep-learning","tensorflow","neural-network","tensorflow-addons","python"],"_language":"Python","_homepage":"","_description":"addons: Useful extra functionality for TensorFlow 2.x maintained by SIG-addons","_organization":"tensorflow","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2018-11-26T00:00:00.000Z","_age_weeks":212,"_stars_per_week":7.53,"_pop_contributor_count":200,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aws","googlers","preligens","systran"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.27,"_pop_updated_issues_count":53,"_pop_closed_issues_count":31,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":53.0,"_pop_comment_count":111.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":2373,"_pop_score":60.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/addons/master/README.md","_readme_localurl":"tensorflow~addons~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorflow/addons/master/requirements.txt","https://raw.githubusercontent.com/tensorflow/addons/master/setup.py","https://raw.githubusercontent.com/tensorflow/addons/master/pyproject.toml"],"_requirements_localurls":["tensorflow~addons~requirements.txt","tensorflow~addons~setup.py","tensorflow~addons~pyproject.toml"]},{"index":825,"category":"study","githuburl":"https://github.com/alirezadir/machine-learning-interview-enlightener","featured":null,"links":null,"description":null,"_repopath":"alirezadir/machine-learning-interview-enlightener","_reponame":"machine-learning-interview-enlightener","_stars":1586,"_forks":327,"_watches":47,"_topics":["machine-learning","machine-learning-algorithms","ai","deep-learning","system-design","scalable-applications","interview","interview-preparation","interview-practice","interviews"],"_language":"Jupyter Notebook","_homepage":"","_description":"machine-learning-interview-enlightener: This repo is meant to serve as a guide for Machine Learning/AI technical interviews. ","_organization":"alirezadir","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-05-25T00:00:00.000Z","_created_at":"2021-01-31T00:00:00.000Z","_age_weeks":98,"_stars_per_week":16.16,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["meta","sdeliveramp"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":23,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":14.13,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alirezadir/machine-learning-interview-enlightener/master/README.md","_readme_localurl":"alirezadir~machine-learning-interview-enlightener~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":767,"category":"study","githuburl":"https://github.com/fluentpython/example-code-2e","featured":null,"links":null,"description":null,"_repopath":"fluentpython/example-code-2e","_reponame":"example-code-2e","_stars":1584,"_forks":464,"_watches":52,"_topics":["python","python3","concurrency","iterators","metaprogramming","special-methods"],"_language":"Python","_homepage":"https://amzn.to/3J48u2J","_description":"example-code-2e: Example code for Fluent Python, 2nd edition (O'Reilly 2022) ","_organization":"fluentpython","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-04-24T00:00:00.000Z","_created_at":"2019-03-21T00:00:00.000Z","_age_weeks":195,"_stars_per_week":8.1,"_pop_contributor_count":7,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["thoughtworksthoughtworksinc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":46,"_pop_updated_since_days":8,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":35,"_pop_score":21.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fluentpython/example-code-2e/master/README.md","_readme_localurl":"fluentpython~example-code-2e~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":768,"category":"ml-dl","githuburl":"https://github.com/fepegar/torchio","featured":null,"links":null,"description":null,"_repopath":"fepegar/torchio","_reponame":"torchio","_stars":1577,"_forks":196,"_watches":15,"_topics":["pytorch","medical-image-computing","deep-learning","data-augmentation","medical-images","machine-learning","python","medical-image-processing","medical-image-analysis","medical-imaging-datasets","medical-imaging-with-deep-learning","augmentation"],"_language":"Python","_homepage":"http://www.torchio.org","_description":"torchio: Medical imaging toolkit for deep learning","_organization":"fepegar","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-19T00:00:00.000Z","_created_at":"2019-11-26T00:00:00.000Z","_age_weeks":159,"_stars_per_week":9.87,"_pop_contributor_count":41,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoftuclkcl-bmeis"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.33,"_pop_updated_issues_count":47,"_pop_closed_issues_count":33,"_pop_created_since_days":37,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":83,"_pop_recent_releases_adjusted_count":83,"_pop_issue_count":47.0,"_pop_comment_count":115.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":14,"_pop_score":44.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fepegar/torchio/master/README.md","_readme_localurl":"fepegar~torchio~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/fepegar/torchio/master/pyproject.toml"],"_requirements_localurls":["fepegar~torchio~pyproject.toml"]},{"index":195,"category":"sim","githuburl":"https://github.com/pettingzoo-team/pettingzoo","featured":null,"links":null,"description":null,"_repopath":"pettingzoo-team/pettingzoo","_reponame":"PettingZoo","_stars":1576,"_forks":250,"_watches":16,"_topics":[],"_language":"Python","_homepage":"https://pettingzoo.farama.org","_description":"PettingZoo: Gymnasium for multi-agent reinforcement learning","_organization":"pettingzoo-team","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-15T00:00:00.000Z","_created_at":"2020-01-20T00:00:00.000Z","_age_weeks":152,"_stars_per_week":10.37,"_pop_contributor_count":79,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["morganstanley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.38,"_pop_updated_issues_count":87,"_pop_closed_issues_count":70,"_pop_created_since_days":35,"_pop_updated_since_days":1,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":87.0,"_pop_comment_count":116.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":40,"_pop_score":47.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pettingzoo-team/pettingzoo/master/README.md","_readme_localurl":"pettingzoo-team~pettingzoo~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pettingzoo-team/pettingzoo/master/setup.py","https://raw.githubusercontent.com/pettingzoo-team/pettingzoo/master/pyproject.toml"],"_requirements_localurls":["pettingzoo-team~pettingzoo~setup.py","pettingzoo-team~pettingzoo~pyproject.toml"]},{"index":263,"category":"sim","githuburl":"https://github.com/quantecon/quantecon.py","featured":null,"links":null,"description":null,"_repopath":"quantecon/quantecon.py","_reponame":"QuantEcon.py","_stars":1566,"_forks":2108,"_watches":151,"_topics":[],"_language":"Python","_homepage":"https://quantecon.org/quantecon-py/","_description":"QuantEcon.py: A community based Python library for quantitative economics","_organization":"quantecon","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2013-03-22T00:00:00.000Z","_age_weeks":508,"_stars_per_week":3.08,"_pop_contributor_count":40,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["australiannationaluniversity","kingabdullahuniversityofscienceandtechnology","umaprotocol","universityoftokyo"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.73,"_pop_updated_issues_count":66,"_pop_closed_issues_count":37,"_pop_created_since_days":119,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":66.0,"_pop_comment_count":168.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":932,"_pop_score":56.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/quantecon/quantecon.py/master/README.md","_readme_localurl":"quantecon~quantecon.py~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/quantecon/quantecon.py/master/pyproject.toml"],"_requirements_localurls":["quantecon~quantecon.py~pyproject.toml"]},{"index":597,"category":"time-series","githuburl":"https://github.com/uber/orbit","featured":null,"links":null,"description":null,"_repopath":"uber/orbit","_reponame":"orbit","_stars":1562,"_forks":117,"_watches":32,"_topics":["python","forecasting","bayesian","exponential-smoothing","pyro","stan","pystan","probabilistic-programming","probabilistic","forecast","orbit","time-series","regression","arima","changepoint","bayesian-methods","bayesian-statistics","machine-learning","regression-models","pytorch"],"_language":"Python","_homepage":"https://orbit-ml.readthedocs.io/en/stable/","_description":"orbit: A Python package for Bayesian forecasting with object-oriented design and probabilistic models under the hood.","_organization":"uber","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2020-01-07T00:00:00.000Z","_age_weeks":153,"_stars_per_week":10.15,"_pop_contributor_count":18,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["uber"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.6,"_pop_updated_issues_count":15,"_pop_closed_issues_count":7,"_pop_created_since_days":36,"_pop_updated_since_days":1,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":15.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":22,"_pop_score":34.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/uber/orbit/master/README.md","_readme_localurl":"uber~orbit~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/orbit/master/requirements.txt","https://raw.githubusercontent.com/uber/orbit/master/setup.py","https://raw.githubusercontent.com/uber/orbit/master/pyproject.toml"],"_requirements_localurls":["uber~orbit~requirements.txt","uber~orbit~setup.py","uber~orbit~pyproject.toml"]},{"index":377,"category":"ml-interpretability","githuburl":"https://github.com/jalammar/ecco","featured":null,"links":null,"description":null,"_repopath":"jalammar/ecco","_reponame":"ecco","_stars":1556,"_forks":111,"_watches":20,"_topics":["nlp","visualization","explorables","natural-language-processing","pytorch","language-models"],"_language":"Jupyter Notebook","_homepage":"https://ecco.readthedocs.io","_description":"ecco: Explain, analyze, and visualize NLP language models. Ecco creates interactive visualizations directly in Jupyter notebooks explaining the behavior of Transformer-based language models (like GPT2, BERT, RoBERTA, T5, and T0).","_organization":"jalammar","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-01-18T00:00:00.000Z","_created_at":"2020-11-07T00:00:00.000Z","_age_weeks":110,"_stars_per_week":14.11,"_pop_contributor_count":10,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cohere-ai","outsystems","truefoundry"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.62,"_pop_updated_issues_count":9,"_pop_closed_issues_count":6,"_pop_created_since_days":26,"_pop_updated_since_days":11,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":9.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":3,"_pop_score":26.12,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jalammar/ecco/master/README.rst","_readme_localurl":"jalammar~ecco~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jalammar/ecco/master/requirements.txt","https://raw.githubusercontent.com/jalammar/ecco/master/setup.py"],"_requirements_localurls":["jalammar~ecco~requirements.txt","jalammar~ecco~setup.py"]},{"index":299,"category":"util","githuburl":"https://github.com/julienpalard/pipe","featured":null,"links":null,"description":null,"_repopath":"julienpalard/pipe","_reponame":"Pipe","_stars":1544,"_forks":101,"_watches":26,"_topics":[],"_language":"Python","_homepage":"","_description":"Pipe: A Python library to use infix notation in Python","_organization":"julienpalard","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-16T00:00:00.000Z","_created_at":"2010-04-08T00:00:00.000Z","_age_weeks":662,"_stars_per_week":2.33,"_pop_contributor_count":25,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["sumologic"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":155,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":2,"_pop_score":30.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/julienpalard/pipe/master/README.md","_readme_localurl":"julienpalard~pipe~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/julienpalard/pipe/master/pyproject.toml"],"_requirements_localurls":["julienpalard~pipe~pyproject.toml"]},{"index":143,"category":"nlp","githuburl":"https://github.com/plasticityai/magnitude","featured":null,"links":null,"description":null,"_repopath":"plasticityai/magnitude","_reponame":"magnitude","_stars":1544,"_forks":113,"_watches":37,"_topics":["python","natural-language-processing","nlp","machine-learning","vectors","embeddings","word2vec","fasttext","glove","gensim","fast","memory-efficient","machine-learning-library","word-embeddings"],"_language":"Python","_homepage":null,"_description":"magnitude: A fast, efficient universal vector embedding utility package.","_organization":"plasticityai","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2020-07-17T00:00:00.000Z","_created_at":"2018-02-24T00:00:00.000Z","_age_weeks":251,"_stars_per_week":6.14,"_pop_contributor_count":4,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["plasticityai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":59,"_pop_updated_since_days":29,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":29,"_pop_recent_releases_adjusted_count":29,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":6,"_pop_score":21.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/plasticityai/magnitude/master/README.md","_readme_localurl":"plasticityai~magnitude~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/plasticityai/magnitude/master/requirements.txt","https://raw.githubusercontent.com/plasticityai/magnitude/master/setup.py"],"_requirements_localurls":["plasticityai~magnitude~requirements.txt","plasticityai~magnitude~setup.py"]},{"index":596,"category":"data","githuburl":"https://github.com/uber/petastorm","featured":null,"links":null,"description":null,"_repopath":"uber/petastorm","_reponame":"petastorm","_stars":1543,"_forks":265,"_watches":41,"_topics":["tensorflow","pytorch","deep-learning","machine-learning","sysml","pyspark","pyarrow","parquet","parquet-files"],"_language":"Python","_homepage":"","_description":"Petastorm library enables single machine or distributed training and evaluation of deep learning models from datasets in Apache Parquet format. It supports ML frameworks such as Tensorflow, Pytorch, and PySpark and can be used from pure Python code.","_organization":"uber","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-06-15T00:00:00.000Z","_age_weeks":235,"_stars_per_week":6.55,"_pop_contributor_count":46,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["databricks","netflix","uber"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.46,"_pop_updated_issues_count":13,"_pop_closed_issues_count":5,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":13.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":10,"_pop_score":44.55,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/uber/petastorm/master/README.rst","_readme_localurl":"uber~petastorm~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/petastorm/master/setup.py"],"_requirements_localurls":["uber~petastorm~setup.py"]},{"index":311,"category":"util","githuburl":"https://github.com/linkedin/shiv","featured":null,"links":null,"description":null,"_repopath":"linkedin/shiv","_reponame":"shiv","_stars":1532,"_forks":84,"_watches":26,"_topics":[],"_language":"Python","_homepage":"","_description":"shiv is a command line utility for building fully self contained Python zipapps as outlined in PEP 441, but with all their dependencies included.","_organization":"linkedin","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2018-03-13T00:00:00.000Z","_age_weeks":248,"_stars_per_week":6.16,"_pop_contributor_count":39,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lincolnloop","linkedin","mam-dev"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.21,"_pop_updated_issues_count":4,"_pop_closed_issues_count":2,"_pop_created_since_days":58,"_pop_updated_since_days":2,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":4.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":8,"_pop_score":35.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/linkedin/shiv/master/README.md","_readme_localurl":"linkedin~shiv~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/linkedin/shiv/master/pyproject.toml"],"_requirements_localurls":["linkedin~shiv~pyproject.toml"]},{"index":662,"category":"util","githuburl":"https://github.com/numba/llvmlite","featured":null,"links":null,"description":null,"_repopath":"numba/llvmlite","_reponame":"llvmlite","_stars":1526,"_forks":289,"_watches":54,"_topics":[],"_language":"Python","_homepage":"http://llvmlite.pydata.org/","_description":"llvmlite: A lightweight LLVM python binding for writing JIT compilers","_organization":"numba","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2014-08-07T00:00:00.000Z","_age_weeks":436,"_stars_per_week":3.5,"_pop_contributor_count":81,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.71,"_pop_updated_issues_count":30,"_pop_closed_issues_count":14,"_pop_created_since_days":102,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":30.0,"_pop_comment_count":87.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":458,"_pop_score":54.36,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/numba/llvmlite/master/README.rst","_readme_localurl":"numba~llvmlite~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/numba/llvmlite/master/setup.py"],"_requirements_localurls":["numba~llvmlite~setup.py"]},{"index":635,"category":"debug","githuburl":"https://github.com/alexmojaki/birdseye","featured":null,"links":null,"description":null,"_repopath":"alexmojaki/birdseye","_reponame":"birdseye","_stars":1524,"_forks":76,"_watches":43,"_topics":["python-debugger","python","debugger","debugging","birdseye","ast"],"_language":"JavaScript","_homepage":"https://birdseye.readthedocs.io","_description":"birdseye: Graphical Python debugger which lets you easily view the values of all evaluated expressions","_organization":"alexmojaki","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-05-18T00:00:00.000Z","_created_at":"2017-07-22T00:00:00.000Z","_age_weeks":282,"_stars_per_week":5.4,"_pop_contributor_count":10,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["actcommodities","cybernetica","skelevilletechnologysolutions"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":66,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":8,"_pop_score":26.84,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/alexmojaki/birdseye/master/README.rst","_readme_localurl":"alexmojaki~birdseye~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/alexmojaki/birdseye/master/setup.py","https://raw.githubusercontent.com/alexmojaki/birdseye/master/pyproject.toml"],"_requirements_localurls":["alexmojaki~birdseye~setup.py","alexmojaki~birdseye~pyproject.toml"]},{"index":795,"category":"web","githuburl":"https://github.com/starlite-api/starlite","featured":null,"links":null,"description":null,"_repopath":"starlite-api/starlite","_reponame":"starlite","_stars":1520,"_forks":141,"_watches":22,"_topics":["python","api","rest","mypy","pydantic","types","asgi","json","openapi","redoc","starlette"],"_language":"Python","_homepage":"https://starlite-api.github.io/starlite/","_description":"starlite: Light, Flexible and Extensible ASGI API framework","_organization":"starlite-api","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2021-12-06T00:00:00.000Z","_age_weeks":54,"_stars_per_week":28.15,"_pop_contributor_count":71,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["safehousetechnologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":19.87,"_pop_updated_issues_count":437,"_pop_closed_issues_count":412,"_pop_created_since_days":13,"_pop_updated_since_days":0,"_pop_recent_releases_count":119,"_pop_recent_releases_estimated_tags":112,"_pop_recent_releases_adjusted_count":119,"_pop_issue_count":437.0,"_pop_comment_count":889.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":78,"_pop_score":53.6,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/starlite-api/starlite/master/README.md","_readme_localurl":"starlite-api~starlite~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/starlite-api/starlite/master/pyproject.toml"],"_requirements_localurls":["starlite-api~starlite~pyproject.toml"]},{"index":799,"category":"web","githuburl":"https://github.com/pallets/quart","featured":null,"links":null,"description":null,"_repopath":"pallets/quart","_reponame":"quart","_stars":1509,"_forks":93,"_watches":24,"_topics":["asyncio","python","http-server","asgi","quart"],"_language":"Python","_homepage":"https://quart.palletsprojects.com","_description":"quart: An async Python micro framework for building web applications. ","_organization":"pallets","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-11-10T00:00:00.000Z","_age_weeks":266,"_stars_per_week":5.66,"_pop_contributor_count":80,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["none"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.81,"_pop_updated_issues_count":28,"_pop_closed_issues_count":25,"_pop_created_since_days":62,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":28.0,"_pop_comment_count":29.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":18,"_pop_score":44.54,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/quart/master/README.rst","_readme_localurl":"pallets~quart~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/quart/master/pyproject.toml"],"_requirements_localurls":["pallets~quart~pyproject.toml"]},{"index":458,"category":"ml-dl","githuburl":"https://github.com/nebuly-ai/nebullvm","featured":null,"links":null,"description":null,"_repopath":"nebuly-ai/nebullvm","_reponame":"nebullvm","_stars":1504,"_forks":70,"_watches":16,"_topics":["deep-learning","pytorch","onnx","machine-learning","tensorflow","tvm","openvino","tensorrt","huggingface","compiler","computing","inference","neural-network","pypi","quantization"],"_language":"Python","_homepage":"","_description":"nebullvm: Accelerate AI models leveraging best-of-breed optimization techniques \ud83d\ude80","_organization":"nebuly-ai","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2022-02-12T00:00:00.000Z","_age_weeks":44,"_stars_per_week":33.96,"_pop_contributor_count":11,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nebuly","nebuly-ai","nebuly|epfl","nebuly|ethzurich"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.23,"_pop_updated_issues_count":48,"_pop_closed_issues_count":30,"_pop_created_since_days":10,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":48.0,"_pop_comment_count":19.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":2,"_pop_score":35.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nebuly-ai/nebullvm/master/README.md","_readme_localurl":"nebuly-ai~nebullvm~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nebuly-ai/nebullvm/master/requirements.txt","https://raw.githubusercontent.com/nebuly-ai/nebullvm/master/setup.py"],"_requirements_localurls":["nebuly-ai~nebullvm~requirements.txt","nebuly-ai~nebullvm~setup.py"]},{"index":205,"category":"debug","githuburl":"https://github.com/alexmojaki/heartrate","featured":null,"links":null,"description":null,"_repopath":"alexmojaki/heartrate","_reponame":"heartrate","_stars":1499,"_forks":120,"_watches":30,"_topics":["python","visualization","debugger"],"_language":"Python","_homepage":null,"_description":"heartrate: Simple real time visualisation of the execution of a Python program.","_organization":"alexmojaki","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2021-11-13T00:00:00.000Z","_created_at":"2019-04-24T00:00:00.000Z","_age_weeks":190,"_stars_per_week":7.86,"_pop_contributor_count":3,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":44,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":6.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alexmojaki/heartrate/master/README.md","_readme_localurl":"alexmojaki~heartrate~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/alexmojaki/heartrate/master/setup.py"],"_requirements_localurls":["alexmojaki~heartrate~setup.py"]},{"index":612,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-mock","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-mock","_reponame":"pytest-mock","_stars":1493,"_forks":119,"_watches":34,"_topics":["pytest","mock","hacktoberfest"],"_language":"Python","_homepage":"https://pytest-mock.readthedocs.io/en/latest/","_description":"pytest-mock: Thin-wrapper around the mock package for easier use with pytest","_organization":"pytest-dev","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2014-07-17T00:00:00.000Z","_age_weeks":439,"_stars_per_week":3.4,"_pop_contributor_count":64,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["esss","freelancer,upforhire","nordsoftware","wayfair"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.08,"_pop_updated_issues_count":26,"_pop_closed_issues_count":26,"_pop_created_since_days":103,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":26.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":3125,"_pop_score":57.46,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-mock/master/README.rst","_readme_localurl":"pytest-dev~pytest-mock~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-mock/master/setup.py"],"_requirements_localurls":["pytest-dev~pytest-mock~setup.py"]},{"index":224,"category":"sim","githuburl":"https://github.com/google/brax","featured":null,"links":null,"description":null,"_repopath":"google/brax","_reponame":"brax","_stars":1479,"_forks":148,"_watches":31,"_topics":["jax","reinforcement-learning","robotics","physics-simulation"],"_language":"Jupyter Notebook","_homepage":"","_description":"brax: Massively parallel rigidbody physics simulation on accelerator hardware.","_organization":"google","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2021-06-02T00:00:00.000Z","_age_weeks":80,"_stars_per_week":18.32,"_pop_contributor_count":25,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["drexeluniversity","instadeep"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.4,"_pop_updated_issues_count":41,"_pop_closed_issues_count":23,"_pop_created_since_days":19,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":41.0,"_pop_comment_count":79.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":11,"_pop_score":39.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/brax/master/README.md","_readme_localurl":"google~brax~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/brax/master/setup.py"],"_requirements_localurls":["google~brax~setup.py"]},{"index":498,"category":"ml-dl","githuburl":"https://github.com/vt-vl-lab/fgvc","featured":null,"links":null,"description":null,"_repopath":"vt-vl-lab/fgvc","_reponame":"FGVC","_stars":1473,"_forks":237,"_watches":68,"_topics":[],"_language":"Python","_homepage":null,"_description":"FGVC: [ECCV 2020] Flow-edge Guided Video Completion ","_organization":"vt-vl-lab","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2021-12-14T00:00:00.000Z","_created_at":"2020-09-09T00:00:00.000Z","_age_weeks":118,"_stars_per_week":12.41,"_pop_contributor_count":3,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["meta","virginiatech"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":4,"_pop_closed_issues_count":2,"_pop_created_since_days":28,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":16.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vt-vl-lab/fgvc/master/README.md","_readme_localurl":"vt-vl-lab~fgvc~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":436,"category":"nlp","githuburl":"https://github.com/recognai/rubrix","featured":null,"links":null,"description":null,"_repopath":"recognai/rubrix","_reponame":"argilla","_stars":1469,"_forks":134,"_watches":18,"_topics":["python","data-science","human-in-the-loop","natural-language-processing","mlops","artificial-intelligence","knowledge-graph","developer-tools","text-labeling","annotation-tool","nlp","machine-learning","active-learning","weak-supervision","weakly-supervised-learning","spacy","text-classification","dataops","text-annotation","hacktoberfest"],"_language":"Python","_homepage":"https://docs.argilla.io","_description":"argilla: \u2728 Open-source tool for data-centric NLP. Argilla helps domain experts and data teams to build better NLP datasets in less time.","_organization":"recognai","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2021-04-28T00:00:00.000Z","_age_weeks":85,"_stars_per_week":17.14,"_pop_contributor_count":33,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aarhusuniversity,vestas","argilla.io","maxplanckcomputing&datafacility","recogai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.4,"_pop_updated_issues_count":364,"_pop_closed_issues_count":231,"_pop_created_since_days":20,"_pop_updated_since_days":0,"_pop_recent_releases_count":30,"_pop_recent_releases_estimated_tags":52,"_pop_recent_releases_adjusted_count":30,"_pop_issue_count":369.0,"_pop_comment_count":470.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":4,"_pop_score":49.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/recognai/rubrix/master/README.md","_readme_localurl":"recognai~rubrix~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/recognai/rubrix/master/setup.py","https://raw.githubusercontent.com/recognai/rubrix/master/pyproject.toml"],"_requirements_localurls":["recognai~rubrix~setup.py","recognai~rubrix~pyproject.toml"]},{"index":531,"category":"ml-dl","githuburl":"https://github.com/neuralmagic/sparseml","featured":null,"links":null,"description":null,"_repopath":"neuralmagic/sparseml","_reponame":"sparseml","_stars":1455,"_forks":104,"_watches":36,"_topics":["pytorch","keras","model-sparsification","sparsification-recipes","tensorflow","smaller-models","deep-learning-library","deep-learning-algorithms","deep-learning-models","automl","pruning-algorithms","sparsity","sparsification","recipe-driven-approaches","pruning","computer-vision-algorithms","object-detection","image-classification","nlp","onnx"],"_language":"Python","_homepage":"","_description":"sparseml: Libraries for applying sparsification recipes to neural networks with a few lines of code, enabling faster and smaller models","_organization":"neuralmagic","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2020-12-11T00:00:00.000Z","_age_weeks":105,"_stars_per_week":13.8,"_pop_contributor_count":36,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["neuralmagic"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.13,"_pop_updated_issues_count":242,"_pop_closed_issues_count":216,"_pop_created_since_days":25,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":242.0,"_pop_comment_count":161.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":9,"_pop_score":43.6,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/neuralmagic/sparseml/master/README.md","_readme_localurl":"neuralmagic~sparseml~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/neuralmagic/sparseml/master/setup.py","https://raw.githubusercontent.com/neuralmagic/sparseml/master/pyproject.toml"],"_requirements_localurls":["neuralmagic~sparseml~setup.py","neuralmagic~sparseml~pyproject.toml"]},{"index":703,"category":"util","githuburl":"https://github.com/openai/openai-python","featured":null,"links":null,"description":null,"_repopath":"openai/openai-python","_reponame":"openai-python","_stars":1433,"_forks":345,"_watches":52,"_topics":[],"_language":"Python","_homepage":null,"_description":"openai/openai-python","_organization":"openai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2020-10-25T00:00:00.000Z","_age_weeks":112,"_stars_per_week":12.78,"_pop_contributor_count":26,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoft","openai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.87,"_pop_updated_issues_count":38,"_pop_closed_issues_count":21,"_pop_created_since_days":26,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":20,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":38.0,"_pop_comment_count":35.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":12,"_pop_score":40.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/openai-python/master/README.md","_readme_localurl":"openai~openai-python~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/openai-python/master/setup.py","https://raw.githubusercontent.com/openai/openai-python/master/pyproject.toml"],"_requirements_localurls":["openai~openai-python~setup.py","openai~openai-python~pyproject.toml"]},{"index":591,"category":"template","githuburl":"https://github.com/buuntu/fastapi-react","featured":null,"links":null,"description":null,"_repopath":"buuntu/fastapi-react","_reponame":"fastapi-react","_stars":1428,"_forks":241,"_watches":35,"_topics":["fastapi","postgres","cookiecutter","react","react-admin","nginx","boilerplate","full-stack","typescript","sqlalchemy","jwt","oauth2","docker"],"_language":"Python","_homepage":"","_description":"fastapi-react: \ud83d\ude80 Cookiecutter Template for FastAPI + React Projects. Using PostgreSQL, SQLAlchemy, and Docker","_organization":"buuntu","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-02-18T00:00:00.000Z","_created_at":"2020-03-21T00:00:00.000Z","_age_weeks":143,"_stars_per_week":9.97,"_pop_contributor_count":13,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","jasonhoku"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":33,"_pop_updated_since_days":10,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":7,"_pop_score":24.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/buuntu/fastapi-react/master/README.md","_readme_localurl":"buuntu~fastapi-react~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":638,"category":"perf","githuburl":"https://github.com/dask/distributed","featured":null,"links":null,"description":null,"_repopath":"dask/distributed","_reponame":"distributed","_stars":1428,"_forks":666,"_watches":59,"_topics":["pydata","dask","distributed-computing","python","hacktoberfest"],"_language":"Python","_homepage":"https://distributed.dask.org","_description":"distributed: A distributed task scheduler for Dask","_organization":"dask","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2015-09-13T00:00:00.000Z","_age_weeks":379,"_stars_per_week":3.77,"_pop_contributor_count":301,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["coiled"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.67,"_pop_updated_issues_count":479,"_pop_closed_issues_count":300,"_pop_created_since_days":88,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":26,"_pop_issue_count":479.0,"_pop_comment_count":1204.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":3056,"_pop_score":68.77,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dask/distributed/master/README.rst","_readme_localurl":"dask~distributed~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dask/distributed/master/requirements.txt","https://raw.githubusercontent.com/dask/distributed/master/setup.py"],"_requirements_localurls":["dask~distributed~requirements.txt","dask~distributed~setup.py"]},{"index":861,"category":"jupyter","githuburl":"https://github.com/jupyter/nbconvert","featured":null,"links":null,"description":null,"_repopath":"jupyter/nbconvert","_reponame":"nbconvert","_stars":1423,"_forks":509,"_watches":50,"_topics":[],"_language":"Python","_homepage":"https://nbconvert.readthedocs.io/","_description":"nbconvert: Jupyter Notebook Conversion","_organization":"jupyter","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":401,"_stars_per_week":3.54,"_pop_contributor_count":254,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","netflix","quansight-labs","simularesearchlaboratory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.06,"_pop_updated_issues_count":93,"_pop_closed_issues_count":44,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":19,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":19,"_pop_issue_count":93.0,"_pop_comment_count":119.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":4472,"_pop_score":66.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/nbconvert/master/README.md","_readme_localurl":"jupyter~nbconvert~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/nbconvert/master/pyproject.toml"],"_requirements_localurls":["jupyter~nbconvert~pyproject.toml"]},{"index":324,"category":"security","githuburl":"https://github.com/pyupio/safety","featured":null,"links":null,"description":null,"_repopath":"pyupio/safety","_reponame":"safety","_stars":1421,"_forks":123,"_watches":32,"_topics":["python","security","security-vulnerability","travis","vulnerability-scanners","vulnerability-detection"],"_language":"Python","_homepage":"https://pyup.io/safety/","_description":"Safety checks Python dependencies for known security vulnerabilities and suggests the proper remediations for vulnerabilities detected.","_organization":"pyupio","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-08T00:00:00.000Z","_created_at":"2016-10-19T00:00:00.000Z","_age_weeks":321,"_stars_per_week":4.42,"_pop_contributor_count":40,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["pyupio","syncsketch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.06,"_pop_updated_issues_count":63,"_pop_closed_issues_count":44,"_pop_created_since_days":75,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":63.0,"_pop_comment_count":38.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":1197,"_pop_score":52.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyupio/safety/master/README.md","_readme_localurl":"pyupio~safety~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyupio/safety/master/pyproject.toml"],"_requirements_localurls":["pyupio~safety~pyproject.toml"]},{"index":108,"category":"util","githuburl":"https://github.com/nficano/python-lambda","featured":null,"links":null,"description":null,"_repopath":"nficano/python-lambda","_reponame":"python-lambda","_stars":1415,"_forks":227,"_watches":31,"_topics":["python","aws","aws-lambda","microservices","serverless"],"_language":"Python","_homepage":"","_description":"python-lambda: A toolkit for developing and deploying serverless Python code in AWS Lambda. ","_organization":"nficano","_updated_at":"2022-12-10T00:00:00.000Z","_last_commit_date":"2022-06-03T00:00:00.000Z","_created_at":"2016-02-26T00:00:00.000Z","_age_weeks":355,"_stars_per_week":3.98,"_pop_contributor_count":48,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["charliehealth","gemovationlabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":83,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":61,"_pop_score":35.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nficano/python-lambda/master/README.md","_readme_localurl":"nficano~python-lambda~README.md","_requirements_filenames":["setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/nficano/python-lambda/master/setup.py","https://raw.githubusercontent.com/nficano/python-lambda/master/Pipfile"],"_requirements_localurls":["nficano~python-lambda~setup.py","nficano~python-lambda~Pipfile"]},{"index":378,"category":"ml-interpretability","githuburl":"https://github.com/oegedijk/explainerdashboard","featured":null,"links":null,"description":null,"_repopath":"oegedijk/explainerdashboard","_reponame":"explainerdashboard","_stars":1405,"_forks":184,"_watches":15,"_topics":["dash","shap-values","dashboard","model-predictions","data-scientists","explainer","interactive-dashboards","permutation-importances","shap","plotly","inner-workings","interactive-plots","xai-library","xai"],"_language":"Python","_homepage":"http://explainerdashboard.readthedocs.io","_description":"explainerdashboard: Quickly build Explainable AI dashboards that show the inner workings of so-called \"blackbox\" machine learning models.","_organization":"oegedijk","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2019-10-30T00:00:00.000Z","_age_weeks":163,"_stars_per_week":8.58,"_pop_contributor_count":16,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dtn","thoughtworks"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.15,"_pop_updated_issues_count":15,"_pop_closed_issues_count":7,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":23,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":15.0,"_pop_comment_count":30.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":151,"_pop_score":43.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/oegedijk/explainerdashboard/master/README.md","_readme_localurl":"oegedijk~explainerdashboard~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/oegedijk/explainerdashboard/master/requirements.txt","https://raw.githubusercontent.com/oegedijk/explainerdashboard/master/setup.py"],"_requirements_localurls":["oegedijk~explainerdashboard~requirements.txt","oegedijk~explainerdashboard~setup.py"]},{"index":429,"category":"jupyter","githuburl":"https://github.com/jupyter-lsp/jupyterlab-lsp","featured":null,"links":null,"description":null,"_repopath":"jupyter-lsp/jupyterlab-lsp","_reponame":"jupyterlab-lsp","_stars":1388,"_forks":116,"_watches":16,"_topics":["jupyterlab","jupyterlab-extension","language-server-protocol","jupyter-lab","lsp","linter","jupyter","jupyter-notebook","notebook","notebook-jupyter","ipython","autocompletion","julia-language","r"],"_language":"TypeScript","_homepage":"","_description":"jupyterlab-lsp: Coding assistance for JupyterLab (code navigation + hover suggestions + linters + autocompletion + rename) using Language Server Protocol","_organization":"jupyter-lsp","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-08-17T00:00:00.000Z","_age_weeks":174,"_stars_per_week":7.96,"_pop_contributor_count":45,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","quantstack","universityofoxford"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.71,"_pop_updated_issues_count":49,"_pop_closed_issues_count":29,"_pop_created_since_days":41,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":49.0,"_pop_comment_count":76.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":4,"_pop_score":44.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter-lsp/jupyterlab-lsp/master/README.md","_readme_localurl":"jupyter-lsp~jupyterlab-lsp~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":683,"category":"util","githuburl":"https://github.com/spotify/basic-pitch","featured":null,"links":null,"description":null,"_repopath":"spotify/basic-pitch","_reponame":"basic-pitch","_stars":1377,"_forks":68,"_watches":25,"_topics":["lightweight","machine-learning","midi","music","pitch-detection","polyphonic","transcription","audio","python","typescript"],"_language":"Python","_homepage":"https://basicpitch.io","_description":"basic-pitch: A lightweight yet powerful audio-to-MIDI converter with pitch bend detection","_organization":"spotify","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-08-30T00:00:00.000Z","_created_at":"2022-05-03T00:00:00.000Z","_age_weeks":32,"_stars_per_week":41.91,"_pop_contributor_count":7,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["christianclauss","spotify"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.58,"_pop_updated_issues_count":15,"_pop_closed_issues_count":6,"_pop_created_since_days":8,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":15.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":19.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/spotify/basic-pitch/master/README.md","_readme_localurl":"spotify~basic-pitch~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/spotify/basic-pitch/master/setup.py"],"_requirements_localurls":["spotify~basic-pitch~setup.py"]},{"index":149,"category":"data","githuburl":"https://github.com/simple-salesforce/simple-salesforce","featured":null,"links":null,"description":null,"_repopath":"simple-salesforce/simple-salesforce","_reponame":"simple-salesforce","_stars":1375,"_forks":606,"_watches":88,"_topics":["salesforce","api","api-client","python"],"_language":"Python","_homepage":null,"_description":"simple-salesforce: A very simple Salesforce.com REST API client for Python","_organization":"simple-salesforce","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2013-01-17T00:00:00.000Z","_age_weeks":517,"_stars_per_week":2.66,"_pop_contributor_count":75,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[":+1:","salesforce"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.21,"_pop_updated_issues_count":29,"_pop_closed_issues_count":11,"_pop_created_since_days":121,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":29.0,"_pop_comment_count":46.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":25,"_pop_score":46.6,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/simple-salesforce/simple-salesforce/master/README.rst","_readme_localurl":"simple-salesforce~simple-salesforce~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/simple-salesforce/simple-salesforce/master/setup.py"],"_requirements_localurls":["simple-salesforce~simple-salesforce~setup.py"]},{"index":284,"category":"data","githuburl":"https://github.com/sdispater/orator","featured":null,"links":null,"description":null,"_repopath":"sdispater/orator","_reponame":"orator","_stars":1373,"_forks":165,"_watches":46,"_topics":["python","orm","database"],"_language":"Python","_homepage":"https://orator-orm.com","_description":"orator: The Orator ORM provides a simple yet beautiful ActiveRecord implementation.","_organization":"sdispater","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-03-13T00:00:00.000Z","_created_at":"2015-05-24T00:00:00.000Z","_age_weeks":395,"_stars_per_week":3.47,"_pop_contributor_count":32,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bellawatt","masoniteframework"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":92,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":4,"_pop_score":27.07,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sdispater/orator/master/README.rst","_readme_localurl":"sdispater~orator~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sdispater/orator/master/pyproject.toml"],"_requirements_localurls":["sdispater~orator~pyproject.toml"]},{"index":438,"category":"gis","githuburl":"https://github.com/giswqs/leafmap","featured":null,"links":null,"description":null,"_repopath":"giswqs/leafmap","_reponame":"leafmap","_stars":1371,"_forks":165,"_watches":40,"_topics":["ipyleaflet","folium","mapping","python","geopython","jupyter-notebook","jupyter","gis","dataviz","data-science","whiteboxtools","geospatial","geospatial-analysis","leafmap","streamlit","streamlit-webapp","plotly","pydeck","keplergl"],"_language":"Python","_homepage":"https://leafmap.org","_description":"leafmap: A Python package for interactive mapping and geospatial analysis with minimal coding in a Jupyter environment","_organization":"giswqs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2021-03-10T00:00:00.000Z","_age_weeks":92,"_stars_per_week":14.79,"_pop_contributor_count":19,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["germanaerospacecenter(dlr)","naxa","universityoftennessee"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.79,"_pop_updated_issues_count":40,"_pop_closed_issues_count":37,"_pop_created_since_days":22,"_pop_updated_since_days":0,"_pop_recent_releases_count":42,"_pop_recent_releases_estimated_tags":35,"_pop_recent_releases_adjusted_count":42,"_pop_issue_count":40.0,"_pop_comment_count":85.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":4,"_pop_score":44.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/giswqs/leafmap/master/README.md","_readme_localurl":"giswqs~leafmap~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/giswqs/leafmap/master/requirements.txt","https://raw.githubusercontent.com/giswqs/leafmap/master/setup.py"],"_requirements_localurls":["giswqs~leafmap~requirements.txt","giswqs~leafmap~setup.py"]},{"index":267,"category":"nlp","githuburl":"https://github.com/arxiv-vanity/arxiv-vanity","featured":null,"links":null,"description":null,"_repopath":"arxiv-vanity/arxiv-vanity","_reponame":"arxiv-vanity","_stars":1366,"_forks":87,"_watches":22,"_topics":["latex","academic-publishing","science","arxiv"],"_language":"Python","_homepage":"https://www.arxiv-vanity.com","_description":"arxiv-vanity: Renders papers from arXiv as responsive web pages so you don't have to squint at a PDF.","_organization":"arxiv-vanity","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-01-18T00:00:00.000Z","_created_at":"2017-08-12T00:00:00.000Z","_age_weeks":279,"_stars_per_week":4.89,"_pop_contributor_count":9,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["replicate"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":26,"_pop_closed_issues_count":15,"_pop_created_since_days":65,"_pop_updated_since_days":11,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":26.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":3,"_pop_score":23.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/arxiv-vanity/arxiv-vanity/master/README.md","_readme_localurl":"arxiv-vanity~arxiv-vanity~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/arxiv-vanity/arxiv-vanity/master/requirements.txt"],"_requirements_localurls":["arxiv-vanity~arxiv-vanity~requirements.txt"]},{"index":721,"category":"util","githuburl":"https://github.com/omry/omegaconf","featured":null,"links":null,"description":null,"_repopath":"omry/omegaconf","_reponame":"omegaconf","_stars":1360,"_forks":71,"_watches":17,"_topics":["python","yaml","yaml-configuration","configuration-files","configuration-loader","python-types","schema-validator"],"_language":"Python","_homepage":"","_description":"omegaconf: Flexible Python configuration system. The last one you will ever need.","_organization":"omry","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2018-09-03T00:00:00.000Z","_age_weeks":224,"_stars_per_week":6.07,"_pop_contributor_count":28,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ceph","facebook","facebookairesearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.33,"_pop_updated_issues_count":51,"_pop_closed_issues_count":35,"_pop_created_since_days":52,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":51.0,"_pop_comment_count":34.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":58,"_pop_score":45.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/omry/omegaconf/master/README.md","_readme_localurl":"omry~omegaconf~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/omry/omegaconf/master/setup.py","https://raw.githubusercontent.com/omry/omegaconf/master/pyproject.toml"],"_requirements_localurls":["omry~omegaconf~setup.py","omry~omegaconf~pyproject.toml"]},{"index":298,"category":"crypto","githuburl":"https://github.com/blankly-finance/blankly","featured":null,"links":null,"description":null,"_repopath":"blankly-finance/blankly","_reponame":"blankly","_stars":1357,"_forks":173,"_watches":28,"_topics":["cryptocurrency","bot-framework","investment","bots","bot","coinbase","binance","blankly","stocks","platform","framework","trading","trading-bot","trading-strategies","python","crypto","algotrading"],"_language":"Python","_homepage":"https://package.blankly.finance","_description":"blankly: \ud83d\ude80 \ud83d\udcb8 Easily build, backtest and deploy your algo in just a few lines of code. Trade stocks, cryptos, and forex across exchanges w/ one package.","_organization":"blankly-finance","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-08T00:00:00.000Z","_created_at":"2021-03-09T00:00:00.000Z","_age_weeks":92,"_stars_per_week":14.61,"_pop_contributor_count":16,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","student"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.13,"_pop_updated_issues_count":16,"_pop_closed_issues_count":10,"_pop_created_since_days":22,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":16.0,"_pop_comment_count":29.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":4,"_pop_score":39.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/blankly-finance/blankly/master/README.md","_readme_localurl":"blankly-finance~blankly~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/blankly-finance/blankly/master/setup.py"],"_requirements_localurls":["blankly-finance~blankly~setup.py"]},{"index":613,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-cov","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-cov","_reponame":"pytest-cov","_stars":1356,"_forks":190,"_watches":34,"_topics":["pytest","python"],"_language":"Python","_homepage":"","_description":"pytest-cov: Coverage plugin for pytest.","_organization":"pytest-dev","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2014-04-17T00:00:00.000Z","_age_weeks":452,"_stars_per_week":3.0,"_pop_contributor_count":81,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["freelancer,upforhire","nordsoftware"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.73,"_pop_updated_issues_count":39,"_pop_closed_issues_count":18,"_pop_created_since_days":106,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":39.0,"_pop_comment_count":78.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":6181,"_pop_score":56.35,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-cov/master/README.rst","_readme_localurl":"pytest-dev~pytest-cov~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-cov/master/setup.py"],"_requirements_localurls":["pytest-dev~pytest-cov~setup.py"]},{"index":478,"category":"ml-dl","githuburl":"https://github.com/tensorflow/mesh","featured":null,"links":null,"description":null,"_repopath":"tensorflow/mesh","_reponame":"mesh","_stars":1344,"_forks":235,"_watches":44,"_topics":[],"_language":"Python","_homepage":"","_description":"Mesh TensorFlow: Model Parallelism Made Easier","_organization":"tensorflow","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-10-04T00:00:00.000Z","_created_at":"2018-09-20T00:00:00.000Z","_age_weeks":221,"_stars_per_week":6.07,"_pop_contributor_count":48,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","uncandhuggingface"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":52,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":40,"_pop_score":34.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/mesh/master/README.md","_readme_localurl":"tensorflow~mesh~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorflow/mesh/master/setup.py"],"_requirements_localurls":["tensorflow~mesh~setup.py"]},{"index":318,"category":"gamedev","githuburl":"https://github.com/pythonarcade/arcade","featured":1.0,"links":null,"description":null,"_repopath":"pythonarcade/arcade","_reponame":"arcade","_stars":1343,"_forks":252,"_watches":56,"_topics":["python3","python","arcade-framework","arcade-api","arcade-learning-environment","opengl","educational-technology","educational-resources"],"_language":"Python","_homepage":"http://arcade.academy","_description":"arcade: Easy to use Python library for creating 2D arcade games.","_organization":"pythonarcade","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2016-01-04T00:00:00.000Z","_age_weeks":363,"_stars_per_week":3.7,"_pop_contributor_count":131,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["freelance,opentofull-timeemployment","optimizely","vw-dilab","zetta.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.96,"_pop_updated_issues_count":135,"_pop_closed_issues_count":102,"_pop_created_since_days":85,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":135.0,"_pop_comment_count":153.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":112,"_pop_score":60.61,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pythonarcade/arcade/master/README.rst","_readme_localurl":"pythonarcade~arcade~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pythonarcade/arcade/master/requirements.txt","https://raw.githubusercontent.com/pythonarcade/arcade/master/setup.py"],"_requirements_localurls":["pythonarcade~arcade~requirements.txt","pythonarcade~arcade~setup.py"]},{"index":460,"category":"nlp","githuburl":"https://github.com/google-research/language","featured":null,"links":null,"description":null,"_repopath":"google-research/language","_reponame":"language","_stars":1339,"_forks":311,"_watches":65,"_topics":["natural-language-processing","machine-learning","research"],"_language":"Python","_homepage":"https://ai.google/research/teams/language/","_description":"language: Shared repository for open-sourced projects from the Google AI Language team.","_organization":"google-research","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-10-16T00:00:00.000Z","_age_weeks":217,"_stars_per_week":6.15,"_pop_contributor_count":10,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","googleresearch","universityofwashington"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":16,"_pop_closed_issues_count":3,"_pop_created_since_days":51,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":16.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":20,"_pop_score":32.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google-research/language/master/README.md","_readme_localurl":"google-research~language~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google-research/language/master/setup.py"],"_requirements_localurls":["google-research~language~setup.py"]},{"index":876,"category":"study","githuburl":"https://github.com/rasbt/machine-learning-book","featured":null,"links":null,"description":null,"_repopath":"rasbt/machine-learning-book","_reponame":"machine-learning-book","_stars":1332,"_forks":496,"_watches":27,"_topics":["machine-learning","scikit-learn","deep-learning","neural-networks","pytorch"],"_language":"Jupyter Notebook","_homepage":"https://sebastianraschka.com/books/#machine-learning-with-pytorch-and-scikit-learn","_description":"machine-learning-book: Code Repository for Machine Learning with PyTorch and Scikit-Learn","_organization":"rasbt","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2021-12-19T00:00:00.000Z","_age_weeks":52,"_stars_per_week":25.55,"_pop_contributor_count":9,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","lightning-ai,universityofwisconsin-madison"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.19,"_pop_updated_issues_count":31,"_pop_closed_issues_count":23,"_pop_created_since_days":12,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":31.0,"_pop_comment_count":31.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":10,"_pop_score":32.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/machine-learning-book/master/README.md","_readme_localurl":"rasbt~machine-learning-book~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":659,"category":"ml","githuburl":"https://github.com/tensorly/tensorly","featured":null,"links":null,"description":null,"_repopath":"tensorly/tensorly","_reponame":"tensorly","_stars":1331,"_forks":261,"_watches":45,"_topics":["machine-learning","tensor","decomposition","tensor-algebra","tensorly","tensor-learning","python","tensor-methods","pytorch","mxnet","jax","tensorflow","cupy","numpy","tensor-decomposition","tensor-factorization","tensor-regression","regression"],"_language":"Python","_homepage":"http://tensorly.org","_description":"TensorLy: Tensor Learning in Python.","_organization":"tensorly","_updated_at":"2022-12-10T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2016-10-21T00:00:00.000Z","_age_weeks":321,"_stars_per_week":4.14,"_pop_contributor_count":57,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["inria","nvidiaai","quansight","simulametropolitan","universityofcalifornia,losangeles"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.83,"_pop_updated_issues_count":33,"_pop_closed_issues_count":22,"_pop_created_since_days":75,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":33.0,"_pop_comment_count":47.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":8377,"_pop_score":60.62,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/tensorly/tensorly/master/README.rst","_readme_localurl":"tensorly~tensorly~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorly/tensorly/master/requirements.txt","https://raw.githubusercontent.com/tensorly/tensorly/master/setup.py"],"_requirements_localurls":["tensorly~tensorly~requirements.txt","tensorly~tensorly~setup.py"]},{"index":898,"category":"ml-ops","githuburl":"https://github.com/hi-primus/optimus","featured":null,"links":null,"description":null,"_repopath":"hi-primus/optimus","_reponame":"optimus","_stars":1325,"_forks":223,"_watches":41,"_topics":["spark","pyspark","data-wrangling","bigdata","big-data-cleaning","data-science","data-cleansing","data-cleaner","data-transformation","machine-learning","data-profiling","data-extraction","data-exploration","data-analysis","data-preparation","cudf","dask","dask-cudf","data-cleaning"],"_language":"Python","_homepage":"https://hi-optimus.com","_description":"optimus: :truck: Agile Data Preparation Workflows made\u00a0easy with Pandas, Dask, cuDF, Dask-cuDF, Vaex and PySpark","_organization":"hi-primus","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-17T00:00:00.000Z","_created_at":"2017-07-13T00:00:00.000Z","_age_weeks":283,"_stars_per_week":4.67,"_pop_contributor_count":24,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["boitas","bumblebee","life","pyupio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.33,"_pop_updated_issues_count":22,"_pop_closed_issues_count":16,"_pop_created_since_days":66,"_pop_updated_since_days":2,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":23,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":22.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":7,"_pop_score":41.25,"_readme_filename":"","_readme_giturl":"","_readme_localurl":"","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":317,"category":"gamedev","githuburl":"https://github.com/pyglet/pyglet","featured":null,"links":null,"description":null,"_repopath":"pyglet/pyglet","_reponame":"pyglet","_stars":1318,"_forks":248,"_watches":29,"_topics":["pyglet","python","opengl","gamedev","scientific-visualization"],"_language":"Python","_homepage":"http://pyglet.org","_description":"pyglet is a cross-platform windowing and multimedia library for Python, for developing games and other visually rich applications.","_organization":"pyglet","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-06-09T00:00:00.000Z","_age_weeks":184,"_stars_per_week":7.16,"_pop_contributor_count":140,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["itv","tomtom-international"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.25,"_pop_updated_issues_count":92,"_pop_closed_issues_count":65,"_pop_created_since_days":43,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":92.0,"_pop_comment_count":261.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":225,"_pop_score":56.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyglet/pyglet/master/README.md","_readme_localurl":"pyglet~pyglet~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyglet/pyglet/master/setup.py"],"_requirements_localurls":["pyglet~pyglet~setup.py"]},{"index":450,"category":"gis","githuburl":"https://github.com/jupyter-widgets/ipyleaflet","featured":null,"links":null,"description":null,"_repopath":"jupyter-widgets/ipyleaflet","_reponame":"ipyleaflet","_stars":1316,"_forks":348,"_watches":61,"_topics":["jupyterlab-extension","leaflet","visualization","jupyter"],"_language":"JavaScript","_homepage":"https://ipyleaflet.readthedocs.io","_description":"ipyleaflet: A Jupyter - Leaflet.js bridge","_organization":"jupyter-widgets","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-10-27T00:00:00.000Z","_created_at":"2014-05-07T00:00:00.000Z","_age_weeks":449,"_stars_per_week":2.93,"_pop_contributor_count":81,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","databricks","quantstack"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.98,"_pop_updated_issues_count":40,"_pop_closed_issues_count":22,"_pop_created_since_days":105,"_pop_updated_since_days":2,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":40.0,"_pop_comment_count":72.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":13,"_pop_score":46.28,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter-widgets/ipyleaflet/master/README.md","_readme_localurl":"jupyter-widgets~ipyleaflet~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter-widgets/ipyleaflet/master/setup.py","https://raw.githubusercontent.com/jupyter-widgets/ipyleaflet/master/pyproject.toml"],"_requirements_localurls":["jupyter-widgets~ipyleaflet~setup.py","jupyter-widgets~ipyleaflet~pyproject.toml"]},{"index":877,"category":"time-series","githuburl":"https://github.com/alkaline-ml/pmdarima","featured":null,"links":null,"description":null,"_repopath":"alkaline-ml/pmdarima","_reponame":"pmdarima","_stars":1290,"_forks":223,"_watches":36,"_topics":["arima","time-series","forecasting","forecasting-models","python","econometrics","pmdarima","machine-learning","sarimax"],"_language":"Python","_homepage":"https://www.alkaline-ml.com/pmdarima","_description":"pmdarima: A statistical library designed to fill the void in Python's time series analysis capabilities, including the equivalent of R's auto.arima function.","_organization":"alkaline-ml","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2017-03-30T00:00:00.000Z","_age_weeks":298,"_stars_per_week":4.32,"_pop_contributor_count":22,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["chivalrysoftware","microsoft","sevcosecurity","toyota-connected"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.46,"_pop_updated_issues_count":21,"_pop_closed_issues_count":10,"_pop_created_since_days":70,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":21.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":11,"_pop_score":41.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alkaline-ml/pmdarima/master/README.md","_readme_localurl":"alkaline-ml~pmdarima~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/alkaline-ml/pmdarima/master/requirements.txt","https://raw.githubusercontent.com/alkaline-ml/pmdarima/master/setup.py"],"_requirements_localurls":["alkaline-ml~pmdarima~requirements.txt","alkaline-ml~pmdarima~setup.py"]},{"index":766,"category":"diffusion","githuburl":"https://github.com/divamgupta/stable-diffusion-tensorflow","featured":null,"links":null,"description":null,"_repopath":"divamgupta/stable-diffusion-tensorflow","_reponame":"stable-diffusion-tensorflow","_stars":1288,"_forks":172,"_watches":19,"_topics":[],"_language":"Python","_homepage":"","_description":"stable-diffusion-tensorflow: Stable Diffusion in TensorFlow / Keras","_organization":"divamgupta","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-22T00:00:00.000Z","_created_at":"2022-09-15T00:00:00.000Z","_age_weeks":13,"_stars_per_week":94.91,"_pop_contributor_count":13,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.79,"_pop_updated_issues_count":56,"_pop_closed_issues_count":34,"_pop_created_since_days":3,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":56.0,"_pop_comment_count":94.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":4,"_pop_score":23.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/divamgupta/stable-diffusion-tensorflow/master/README.md","_readme_localurl":"divamgupta~stable-diffusion-tensorflow~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/divamgupta/stable-diffusion-tensorflow/master/requirements.txt","https://raw.githubusercontent.com/divamgupta/stable-diffusion-tensorflow/master/setup.py"],"_requirements_localurls":["divamgupta~stable-diffusion-tensorflow~requirements.txt","divamgupta~stable-diffusion-tensorflow~setup.py"]},{"index":676,"category":"gis","githuburl":"https://github.com/apache/incubator-sedona","featured":null,"links":null,"description":null,"_repopath":"apache/incubator-sedona","_reponame":"incubator-sedona","_stars":1282,"_forks":536,"_watches":101,"_topics":["cluster-computing","spatial-sql","geospatial","spatial-analysis","spatial-query","scala","java","python"],"_language":"Java","_homepage":"http://sedona.apache.org/","_description":"incubator-sedona: A cluster computing framework for processing large-scale geospatial data","_organization":"apache","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2015-04-24T00:00:00.000Z","_age_weeks":399,"_stars_per_week":3.21,"_pop_contributor_count":91,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bloomberg","grab","nttdata","wherobots"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.79,"_pop_updated_issues_count":52,"_pop_closed_issues_count":46,"_pop_created_since_days":93,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":52.0,"_pop_comment_count":62.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":45.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apache/incubator-sedona/master/README.md","_readme_localurl":"apache~incubator-sedona~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":391,"category":"data","githuburl":"https://github.com/mchong6/jojogan","featured":null,"links":null,"description":null,"_repopath":"mchong6/jojogan","_reponame":"JoJoGAN","_stars":1272,"_forks":185,"_watches":24,"_topics":["image-translation","gans","anime"],"_language":"Jupyter Notebook","_homepage":"","_description":"Official PyTorch repo for JoJoGAN: One Shot Face Stylization","_organization":"mchong6","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-02-05T00:00:00.000Z","_created_at":"2021-12-17T00:00:00.000Z","_age_weeks":52,"_stars_per_week":24.26,"_pop_contributor_count":3,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":12,"_pop_updated_since_days":11,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":12,"_pop_score":14.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mchong6/jojogan/master/README.md","_readme_localurl":"mchong6~jojogan~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":465,"category":"ml-dl","githuburl":"https://github.com/pytorch/torchrec","featured":null,"links":null,"description":null,"_repopath":"pytorch/torchrec","_reponame":"torchrec","_stars":1254,"_forks":206,"_watches":24,"_topics":["pytorch","gpu","deep-learning","cuda","recommender-system","recommendation-system","sharding"],"_language":"Python","_homepage":"","_description":"torchrec: Pytorch domain library for recommendation systems","_organization":"pytorch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2021-07-12T00:00:00.000Z","_age_weeks":75,"_stars_per_week":16.72,"_pop_contributor_count":132,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","facebookai","pytorch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.67,"_pop_updated_issues_count":312,"_pop_closed_issues_count":272,"_pop_created_since_days":17,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":312.0,"_pop_comment_count":699.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":568,"_pop_score":59.54,"_readme_filename":"","_readme_giturl":"","_readme_localurl":"","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/torchrec/master/requirements.txt","https://raw.githubusercontent.com/pytorch/torchrec/master/setup.py","https://raw.githubusercontent.com/pytorch/torchrec/master/pyproject.toml"],"_requirements_localurls":["pytorch~torchrec~requirements.txt","pytorch~torchrec~setup.py","pytorch~torchrec~pyproject.toml"]},{"index":514,"category":"data","githuburl":"https://github.com/agronholm/sqlacodegen","featured":null,"links":null,"description":null,"_repopath":"agronholm/sqlacodegen","_reponame":"sqlacodegen","_stars":1243,"_forks":194,"_watches":20,"_topics":[],"_language":"Python","_homepage":"","_description":"sqlacodegen: Automatic model code generator for SQLAlchemy","_organization":"agronholm","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2016-12-28T00:00:00.000Z","_age_weeks":311,"_stars_per_week":3.99,"_pop_contributor_count":16,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nextdaysolutionsoy"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.04,"_pop_updated_issues_count":20,"_pop_closed_issues_count":8,"_pop_created_since_days":73,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":20.0,"_pop_comment_count":50.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":3,"_pop_score":35.2,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/agronholm/sqlacodegen/master/README.rst","_readme_localurl":"agronholm~sqlacodegen~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/agronholm/sqlacodegen/master/pyproject.toml"],"_requirements_localurls":["agronholm~sqlacodegen~pyproject.toml"]},{"index":581,"category":"ml-dl","githuburl":"https://github.com/alpa-projects/alpa","featured":null,"links":null,"description":null,"_repopath":"alpa-projects/alpa","_reponame":"alpa","_stars":1234,"_forks":138,"_watches":20,"_topics":["deep-learning","machine-learning","compiler","distributed-training","high-performance-computing","alpa","jax","distributed-computing","llm","auto-parallelization"],"_language":"Python","_homepage":"https://alpa.ai","_description":"alpa: Training and serving large-scale neural networks","_organization":"alpa-projects","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2021-02-22T00:00:00.000Z","_age_weeks":95,"_stars_per_week":12.99,"_pop_contributor_count":26,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["carnegiemellonuniversity","pekinguniversity","ucberkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.83,"_pop_updated_issues_count":128,"_pop_closed_issues_count":101,"_pop_created_since_days":22,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":127.0,"_pop_comment_count":225.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":19,"_pop_score":47.97,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alpa-projects/alpa/master/README.md","_readme_localurl":"alpa-projects~alpa~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/alpa-projects/alpa/master/setup.py"],"_requirements_localurls":["alpa-projects~alpa~setup.py"]},{"index":885,"category":"time-series","githuburl":"https://github.com/aistream-peelout/flow-forecast","featured":null,"links":null,"description":null,"_repopath":"aistream-peelout/flow-forecast","_reponame":"flow-forecast","_stars":1231,"_forks":209,"_watches":20,"_topics":["deep-learning","pytorch","time-series-forecasting","time-series","transfer-learning","deep-neural-networks","transformer","forecasting","lstm","time-series-regression","state-of-the-art-models","anomaly-detection","time-series-analysis","hacktoberfest"],"_language":"Python","_homepage":"https://flow-forecast.atlassian.net/wiki/spaces/FF/overview","_description":"flow-forecast: Deep learning PyTorch library for time series forecasting, classification, and anomaly detection (originally for flood forecasting).","_organization":"aistream-peelout","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2019-08-15T00:00:00.000Z","_age_weeks":174,"_stars_per_week":7.05,"_pop_contributor_count":14,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["okratechnologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.37,"_pop_updated_issues_count":35,"_pop_closed_issues_count":26,"_pop_created_since_days":41,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":35.0,"_pop_comment_count":29.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":61,"_pop_score":40.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/README.md","_readme_localurl":"aistream-peelout~flow-forecast~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/requirements.txt","https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/setup.py"],"_requirements_localurls":["aistream-peelout~flow-forecast~requirements.txt","aistream-peelout~flow-forecast~setup.py"]},{"index":372,"category":"gis","githuburl":"https://github.com/microsoft/torchgeo","featured":null,"links":null,"description":null,"_repopath":"microsoft/torchgeo","_reponame":"torchgeo","_stars":1230,"_forks":144,"_watches":33,"_topics":["pytorch","torchvision","datasets","models","transforms","remote-sensing","deep-learning","earth-observation"],"_language":"Python","_homepage":"https://torchgeo.rtfd.io","_description":"TorchGeo: datasets, samplers, transforms, and pre-trained models for geospatial data","_organization":"microsoft","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2021-05-21T00:00:00.000Z","_age_weeks":82,"_stars_per_week":14.92,"_pop_contributor_count":27,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dronebase","microsoft","universityofillinoisaturbana-champaign"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.88,"_pop_updated_issues_count":202,"_pop_closed_issues_count":160,"_pop_created_since_days":19,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":202.0,"_pop_comment_count":309.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":13,"_pop_score":46.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/torchgeo/master/README.md","_readme_localurl":"microsoft~torchgeo~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/torchgeo/master/pyproject.toml"],"_requirements_localurls":["microsoft~torchgeo~pyproject.toml"]},{"index":829,"category":"study","githuburl":"https://github.com/huggingface/diffusion-models-class","featured":null,"links":null,"description":null,"_repopath":"huggingface/diffusion-models-class","_reponame":"diffusion-models-class","_stars":1220,"_forks":97,"_watches":61,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"diffusion-models-class: Materials for the Hugging Face Diffusion Models Course","_organization":"huggingface","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2022-10-13T00:00:00.000Z","_age_weeks":9,"_stars_per_week":127.46,"_pop_contributor_count":10,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["drcfsorg","huggingface","relx"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.31,"_pop_updated_issues_count":27,"_pop_closed_issues_count":25,"_pop_created_since_days":2,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":27.0,"_pop_comment_count":38.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":25.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/diffusion-models-class/master/README.md","_readme_localurl":"huggingface~diffusion-models-class~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":178,"category":"nlp","githuburl":"https://github.com/explosion/spacy-models","featured":null,"links":null,"description":null,"_repopath":"explosion/spacy-models","_reponame":"spacy-models","_stars":1217,"_forks":275,"_watches":48,"_topics":["spacy","nlp","natural-language-processing","machine-learning","models","machine-learning-models","statistical-models","spacy-models"],"_language":"Python","_homepage":"https://spacy.io","_description":"spacy-models: \ud83d\udcab Models for the spaCy Natural Language Processing (NLP) library","_organization":"explosion","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-03-14T00:00:00.000Z","_age_weeks":300,"_stars_per_week":4.05,"_pop_contributor_count":14,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cotonoha","explosion","founderexplosion"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.63,"_pop_updated_issues_count":5,"_pop_closed_issues_count":4,"_pop_created_since_days":70,"_pop_updated_since_days":0,"_pop_recent_releases_count":166,"_pop_recent_releases_estimated_tags":128,"_pop_recent_releases_adjusted_count":166,"_pop_issue_count":5.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":68,"_pop_score":43.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/spacy-models/master/README.md","_readme_localurl":"explosion~spacy-models~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":414,"category":"nlp","githuburl":"https://github.com/chrismattmann/tika-python","featured":null,"links":null,"description":null,"_repopath":"chrismattmann/tika-python","_reponame":"tika-python","_stars":1215,"_forks":223,"_watches":37,"_topics":["tika-server","python","tika-python","tika-server-jar","parser-interface","parse","translation-interface","usc","text-extraction","mime","buffer","memex","text-recognition","detection","recognition","nlp","nlp-machine-learning","nlp-library","covid-19","extraction"],"_language":"Python","_homepage":"","_description":"Tika-Python is a Python binding to the Apache Tika\u2122 REST services allowing Tika to be called natively in the Python community.","_organization":"chrismattmann","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2021-06-07T00:00:00.000Z","_created_at":"2014-06-26T00:00:00.000Z","_age_weeks":442,"_stars_per_week":2.75,"_pop_contributor_count":63,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nasa"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":10,"_pop_closed_issues_count":2,"_pop_created_since_days":103,"_pop_updated_since_days":19,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":10.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":37,"_pop_score":33.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/chrismattmann/tika-python/master/README.md","_readme_localurl":"chrismattmann~tika-python~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/chrismattmann/tika-python/master/requirements.txt","https://raw.githubusercontent.com/chrismattmann/tika-python/master/setup.py"],"_requirements_localurls":["chrismattmann~tika-python~requirements.txt","chrismattmann~tika-python~setup.py"]},{"index":474,"category":"nlp","githuburl":"https://github.com/neuralmagic/deepsparse","featured":null,"links":null,"description":null,"_repopath":"neuralmagic/deepsparse","_reponame":"deepsparse","_stars":1196,"_forks":73,"_watches":37,"_topics":["ml","machinelearning","pytorch","tensorflow","onnx","deepsparse-engine","sparsified-models","sparsification-recipe","inference","computer-vision","object-detection","pruning","quantization","pretrained-models","nlp","auto-ml","cpus","yolov3","sparsification","cpu-inference-api"],"_language":"Python","_homepage":"","_description":"deepsparse: Inference runtime offering GPU-class performance on CPUs and APIs to integrate ML into your application","_organization":"neuralmagic","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2020-12-14T00:00:00.000Z","_age_weeks":105,"_stars_per_week":11.39,"_pop_contributor_count":29,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["neuralmagic"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.83,"_pop_updated_issues_count":179,"_pop_closed_issues_count":159,"_pop_created_since_days":24,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":179.0,"_pop_comment_count":111.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":37.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/neuralmagic/deepsparse/master/README.md","_readme_localurl":"neuralmagic~deepsparse~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/neuralmagic/deepsparse/master/setup.py","https://raw.githubusercontent.com/neuralmagic/deepsparse/master/pyproject.toml"],"_requirements_localurls":["neuralmagic~deepsparse~setup.py","neuralmagic~deepsparse~pyproject.toml"]},{"index":435,"category":"data","githuburl":"https://github.com/sdv-dev/sdv","featured":null,"links":null,"description":null,"_repopath":"sdv-dev/sdv","_reponame":"SDV","_stars":1187,"_forks":189,"_watches":40,"_topics":["synthetic-data","machine-learning","relational-datasets","multi-table","time-series","synthetic-data-generation","sdv","data-generation","generative-adversarial-network","gan","gans","deep-learning","generative-ai","generative-model"],"_language":"Python","_homepage":"https://sdv.dev/SDV","_description":"SDV: Synthetic Data Generation for tabular, relational and time series data.","_organization":"sdv-dev","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2018-05-11T00:00:00.000Z","_age_weeks":240,"_stars_per_week":4.94,"_pop_contributor_count":41,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["precognit","pythiac"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.85,"_pop_updated_issues_count":160,"_pop_closed_issues_count":113,"_pop_created_since_days":56,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":160.0,"_pop_comment_count":131.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":7,"_pop_score":44.85,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sdv-dev/sdv/master/README.md","_readme_localurl":"sdv-dev~sdv~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sdv-dev/sdv/master/requirements.txt","https://raw.githubusercontent.com/sdv-dev/sdv/master/setup.py"],"_requirements_localurls":["sdv-dev~sdv~requirements.txt","sdv-dev~sdv~setup.py"]},{"index":162,"category":"nlp","githuburl":"https://github.com/explosion/spacy-transformers","featured":null,"links":null,"description":null,"_repopath":"explosion/spacy-transformers","_reponame":"spacy-transformers","_stars":1184,"_forks":154,"_watches":30,"_topics":["spacy","spacy-pipeline","spacy-extension","nlp","natural-language-processing","natural-language-understanding","pytorch","bert","google","pytorch-model","openai","language-model","machine-learning","huggingface","transfer-learning","xlnet","gpt-2"],"_language":"Python","_homepage":"https://spacy.io/usage/embeddings-transformers","_description":"spacy-transformers: \ud83d\udef8 Use pretrained transformers like BERT, XLNet and GPT-2 in spaCy","_organization":"explosion","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-07-26T00:00:00.000Z","_age_weeks":177,"_stars_per_week":6.67,"_pop_contributor_count":19,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["explosion&oxykodit","founderexplosion","indeedeng"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.58,"_pop_updated_issues_count":14,"_pop_closed_issues_count":12,"_pop_created_since_days":41,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":14.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":14,"_pop_score":38.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/spacy-transformers/master/README.md","_readme_localurl":"explosion~spacy-transformers~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/explosion/spacy-transformers/master/requirements.txt","https://raw.githubusercontent.com/explosion/spacy-transformers/master/setup.py","https://raw.githubusercontent.com/explosion/spacy-transformers/master/pyproject.toml"],"_requirements_localurls":["explosion~spacy-transformers~requirements.txt","explosion~spacy-transformers~setup.py","explosion~spacy-transformers~pyproject.toml"]},{"index":264,"category":"data","githuburl":"https://github.com/collerek/ormar","featured":null,"links":null,"description":null,"_repopath":"collerek/ormar","_reponame":"ormar","_stars":1182,"_forks":61,"_watches":15,"_topics":["orm","sqlalchemy","async-orm","python-orm","fastapi","pydantic","alembic","databases"],"_language":"Python","_homepage":"https://collerek.github.io/ormar/","_description":"ormar: python async orm with fastapi in mind and pydantic validation","_organization":"collerek","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2020-08-02T00:00:00.000Z","_age_weeks":124,"_stars_per_week":9.52,"_pop_contributor_count":30,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["kaizentech","leyantech","wheel-me"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.63,"_pop_updated_issues_count":121,"_pop_closed_issues_count":100,"_pop_created_since_days":29,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":31,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":121.0,"_pop_comment_count":131.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":130,"_pop_score":49.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/collerek/ormar/master/README.md","_readme_localurl":"collerek~ormar~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/collerek/ormar/master/pyproject.toml"],"_requirements_localurls":["collerek~ormar~pyproject.toml"]},{"index":566,"category":"gis","githuburl":"https://github.com/gboeing/osmnx-examples","featured":null,"links":null,"description":null,"_repopath":"gboeing/osmnx-examples","_reponame":"osmnx-examples","_stars":1179,"_forks":434,"_watches":54,"_topics":["street-networks","binder","jupyter-notebook","notebooks","urban-planning","city","cities","openstreetmap","network-analysis","transport","transportation","accessibility","urban-data-science","urban-analytics","public-transport","python","transit","urban-design"],"_language":"Jupyter Notebook","_homepage":"https://github.com/gboeing/osmnx","_description":"osmnx-examples: Usage examples, demos, and tutorials for OSMnx.","_organization":"gboeing","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-07-22T00:00:00.000Z","_age_weeks":282,"_stars_per_week":4.18,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["universityofsoutherncalifornia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":2,"_pop_closed_issues_count":2,"_pop_created_since_days":66,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":3,"_pop_score":23.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gboeing/osmnx-examples/master/README.md","_readme_localurl":"gboeing~osmnx-examples~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":451,"category":"util","githuburl":"https://github.com/imageio/imageio","featured":null,"links":null,"description":null,"_repopath":"imageio/imageio","_reponame":"imageio","_stars":1168,"_forks":235,"_watches":31,"_topics":["python","imageio","animated-gif","video","webcam-capture","scientific-formats","dicom"],"_language":"Python","_homepage":"https://imageio.readthedocs.io","_description":"imageio: Python library for reading and writing image data","_organization":"imageio","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2013-05-04T00:00:00.000Z","_age_weeks":502,"_stars_per_week":2.33,"_pop_contributor_count":95,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["actions","independentsoftwareengineer","mongodb","usr-lab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.46,"_pop_updated_issues_count":52,"_pop_closed_issues_count":36,"_pop_created_since_days":117,"_pop_updated_since_days":0,"_pop_recent_releases_count":26,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":26,"_pop_issue_count":52.0,"_pop_comment_count":155.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":2463,"_pop_score":65.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/imageio/imageio/master/README.md","_readme_localurl":"imageio~imageio~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/imageio/imageio/master/setup.py"],"_requirements_localurls":["imageio~imageio~setup.py"]},{"index":647,"category":"data","githuburl":"https://github.com/pytables/pytables","featured":null,"links":null,"description":null,"_repopath":"pytables/pytables","_reponame":"PyTables","_stars":1163,"_forks":236,"_watches":59,"_topics":[],"_language":"Python","_homepage":"http://www.pytables.org","_description":"PyTables: A Python package to manage extremely large amounts of data","_organization":"pytables","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2011-06-03T00:00:00.000Z","_age_weeks":602,"_stars_per_week":1.93,"_pop_contributor_count":110,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["coornhertgymnasium","francescalted"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.96,"_pop_updated_issues_count":36,"_pop_closed_issues_count":22,"_pop_created_since_days":141,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":36.0,"_pop_comment_count":105.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":132,"_pop_score":53.64,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytables/pytables/master/README.rst","_readme_localurl":"pytables~pytables~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytables/pytables/master/requirements.txt","https://raw.githubusercontent.com/pytables/pytables/master/setup.py","https://raw.githubusercontent.com/pytables/pytables/master/pyproject.toml"],"_requirements_localurls":["pytables~pytables~requirements.txt","pytables~pytables~setup.py","pytables~pytables~pyproject.toml"]},{"index":304,"category":"nlp","githuburl":"https://github.com/featureform/embeddinghub","featured":null,"links":null,"description":null,"_repopath":"featureform/embeddinghub","_reponame":"featureform","_stars":1162,"_forks":42,"_watches":12,"_topics":["machine-learning","data-science","vector-database","embeddings-similarity","embeddings","hacktoberfest","feature-store","mlops","data-quality","feature-engineering","ml","python"],"_language":"Go","_homepage":"https://www.featureform.com","_description":"featureform: The Virtual Feature Store. Turn your existing data infrastructure into a feature store.","_organization":"featureform","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2020-10-16T00:00:00.000Z","_age_weeks":113,"_stars_per_week":10.24,"_pop_contributor_count":18,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["featureform"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":47.98,"_pop_updated_issues_count":124,"_pop_closed_issues_count":103,"_pop_created_since_days":26,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":124.0,"_pop_comment_count":103.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":9,"_pop_score":42.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/featureform/embeddinghub/master/README.md","_readme_localurl":"featureform~embeddinghub~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":494,"category":"ml-dl","githuburl":"https://github.com/hysts/pytorch_image_classification","featured":null,"links":null,"description":null,"_repopath":"hysts/pytorch_image_classification","_reponame":"pytorch_image_classification","_stars":1159,"_forks":289,"_watches":27,"_topics":["pytorch","computer-vision","cifar10","fashion-mnist","imagenet"],"_language":"Python","_homepage":"","_description":"pytorch_image_classification: PyTorch implementation of image classification models for CIFAR-10/CIFAR-100/MNIST/FashionMNIST/Kuzushiji-MNIST/ImageNet","_organization":"hysts","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2021-12-12T00:00:00.000Z","_created_at":"2017-12-09T00:00:00.000Z","_age_weeks":262,"_stars_per_week":4.42,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":61,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":5.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hysts/pytorch_image_classification/master/README.md","_readme_localurl":"hysts~pytorch_image_classification~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/hysts/pytorch_image_classification/master/requirements.txt"],"_requirements_localurls":["hysts~pytorch_image_classification~requirements.txt"]},{"index":725,"category":"typing","githuburl":"https://github.com/patrick-kidger/torchtyping","featured":null,"links":null,"description":null,"_repopath":"patrick-kidger/torchtyping","_reponame":"torchtyping","_stars":1153,"_forks":27,"_watches":13,"_topics":["tensors","named-tensors","shape","pytorch","typing","python-typing"],"_language":"Python","_homepage":"","_description":"torchtyping: Type annotations and dynamic checking for a tensor's shape, dtype, names, etc.","_organization":"patrick-kidger","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-07-11T00:00:00.000Z","_created_at":"2021-03-28T00:00:00.000Z","_age_weeks":90,"_stars_per_week":12.79,"_pop_contributor_count":6,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["avatarify","googlex","irtsaint-exup\u00e9ry"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":21,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":2,"_pop_score":24.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/patrick-kidger/torchtyping/master/README.md","_readme_localurl":"patrick-kidger~torchtyping~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/patrick-kidger/torchtyping/master/setup.py","https://raw.githubusercontent.com/patrick-kidger/torchtyping/master/pyproject.toml"],"_requirements_localurls":["patrick-kidger~torchtyping~setup.py","patrick-kidger~torchtyping~pyproject.toml"]},{"index":862,"category":"jupyter","githuburl":"https://github.com/jupyter/nbgrader","featured":null,"links":null,"description":null,"_repopath":"jupyter/nbgrader","_reponame":"nbgrader","_stars":1151,"_forks":315,"_watches":43,"_topics":["nbgrader","jupyter","jupyter-notebook","jupyterhub","teaching","grading"],"_language":"Python","_homepage":"https://nbgrader.readthedocs.io/","_description":"nbgrader: A system for assigning and grading notebooks","_organization":"jupyter","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2014-09-13T00:00:00.000Z","_age_weeks":431,"_stars_per_week":2.67,"_pop_contributor_count":98,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quantstack"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.96,"_pop_updated_issues_count":67,"_pop_closed_issues_count":24,"_pop_created_since_days":101,"_pop_updated_since_days":2,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":67.0,"_pop_comment_count":135.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":74,"_pop_score":48.72,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/nbgrader/master/README.md","_readme_localurl":"jupyter~nbgrader~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/nbgrader/master/requirements.txt","https://raw.githubusercontent.com/jupyter/nbgrader/master/setup.py","https://raw.githubusercontent.com/jupyter/nbgrader/master/pyproject.toml"],"_requirements_localurls":["jupyter~nbgrader~requirements.txt","jupyter~nbgrader~setup.py","jupyter~nbgrader~pyproject.toml"]},{"index":636,"category":"util","githuburl":"https://github.com/pygments/pygments","featured":null,"links":null,"description":null,"_repopath":"pygments/pygments","_reponame":"pygments","_stars":1148,"_forks":484,"_watches":27,"_topics":["python","syntax-highlighting"],"_language":"Python","_homepage":"http://pygments.org/","_description":"Pygments is a generic syntax highlighter written in Python","_organization":"pygments","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2019-08-31T00:00:00.000Z","_age_weeks":172,"_stars_per_week":6.66,"_pop_contributor_count":757,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amd","fzj\u00fclich","google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.58,"_pop_updated_issues_count":133,"_pop_closed_issues_count":67,"_pop_created_since_days":40,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":133.0,"_pop_comment_count":184.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":7530,"_pop_score":67.1,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pygments/pygments/master/README.rst","_readme_localurl":"pygments~pygments~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pygments/pygments/master/requirements.txt","https://raw.githubusercontent.com/pygments/pygments/master/setup.py","https://raw.githubusercontent.com/pygments/pygments/master/pyproject.toml"],"_requirements_localurls":["pygments~pygments~requirements.txt","pygments~pygments~setup.py","pygments~pygments~pyproject.toml"]},{"index":489,"category":"gis","githuburl":"https://github.com/scitools/cartopy","featured":null,"links":null,"description":null,"_repopath":"scitools/cartopy","_reponame":"cartopy","_stars":1145,"_forks":333,"_watches":55,"_topics":["cartopy","matplotlib","python","geometry","maps","spatial","projections"],"_language":"Python","_homepage":"https://scitools.org.uk/cartopy/docs/latest","_description":"Cartopy - a cartographic python library with matplotlib support","_organization":"scitools","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2012-08-03T00:00:00.000Z","_age_weeks":541,"_stars_per_week":2.11,"_pop_contributor_count":118,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lasp/lasp/swxtrec","metoffice","ucar/unidata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.4,"_pop_updated_issues_count":46,"_pop_closed_issues_count":26,"_pop_created_since_days":126,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":46.0,"_pop_comment_count":135.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":284,"_pop_score":56.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scitools/cartopy/master/README.md","_readme_localurl":"scitools~cartopy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scitools/cartopy/master/setup.py","https://raw.githubusercontent.com/scitools/cartopy/master/pyproject.toml"],"_requirements_localurls":["scitools~cartopy~setup.py","scitools~cartopy~pyproject.toml"]},{"index":194,"category":"web","githuburl":"https://github.com/jordaneremieff/mangum","featured":null,"links":null,"description":null,"_repopath":"jordaneremieff/mangum","_reponame":"mangum","_stars":1144,"_forks":78,"_watches":16,"_topics":["asgi","aws","lambda","serverless","python","asyncio","api-gateway","starlette","fastapi","quart","django","sanic","aws-lambda","python3"],"_language":"Python","_homepage":"https://mangum.io/","_description":"mangum: AWS Lambda support for ASGI applications","_organization":"jordaneremieff","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-27T00:00:00.000Z","_created_at":"2019-01-14T00:00:00.000Z","_age_weeks":205,"_stars_per_week":5.58,"_pop_contributor_count":29,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["resurety","tractabletractableai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.56,"_pop_updated_issues_count":11,"_pop_closed_issues_count":8,"_pop_created_since_days":48,"_pop_updated_since_days":1,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":11.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":16,"_pop_score":39.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jordaneremieff/mangum/master/README.md","_readme_localurl":"jordaneremieff~mangum~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jordaneremieff/mangum/master/requirements.txt","https://raw.githubusercontent.com/jordaneremieff/mangum/master/setup.py"],"_requirements_localurls":["jordaneremieff~mangum~requirements.txt","jordaneremieff~mangum~setup.py"]},{"index":338,"category":"perf","githuburl":"https://github.com/tlkh/asitop","featured":null,"links":null,"description":null,"_repopath":"tlkh/asitop","_reponame":"asitop","_stars":1142,"_forks":69,"_watches":14,"_topics":["cpu","gpu","cli","macos","m1","apple-silicon"],"_language":"Python","_homepage":"https://tlkh.github.io/asitop/","_description":"asitop: Perf monitoring CLI tool for Apple Silicon","_organization":"tlkh","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-08-20T00:00:00.000Z","_created_at":"2021-10-27T00:00:00.000Z","_age_weeks":59,"_stars_per_week":19.12,"_pop_contributor_count":8,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["singaporeuniversityoftechnologyanddesign"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.27,"_pop_updated_issues_count":13,"_pop_closed_issues_count":3,"_pop_created_since_days":14,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":13.0,"_pop_comment_count":65.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":5.0,"_pop_dependents_count":0,"_pop_score":22.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tlkh/asitop/master/README.md","_readme_localurl":"tlkh~asitop~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tlkh/asitop/master/setup.py"],"_requirements_localurls":["tlkh~asitop~setup.py"]},{"index":16,"category":"perf","githuburl":"https://github.com/eventlet/eventlet","featured":null,"links":null,"description":null,"_repopath":"eventlet/eventlet","_reponame":"eventlet","_stars":1139,"_forks":295,"_watches":62,"_topics":["python","concurrency","network","c10k","greenlet","production-ready"],"_language":"Python","_homepage":"https://eventlet.net","_description":"eventlet: Concurrent networking library for Python","_organization":"eventlet","_updated_at":"2022-12-08T00:00:00.000Z","_last_commit_date":"2022-11-17T00:00:00.000Z","_created_at":"2012-12-11T00:00:00.000Z","_age_weeks":522,"_stars_per_week":2.18,"_pop_contributor_count":181,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":18,"_pop_closed_issues_count":5,"_pop_created_since_days":122,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":18.0,"_pop_comment_count":26.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":2749,"_pop_score":49.06,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/eventlet/eventlet/master/README.rst","_readme_localurl":"eventlet~eventlet~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/eventlet/eventlet/master/setup.py"],"_requirements_localurls":["eventlet~eventlet~setup.py"]},{"index":403,"category":"perf","githuburl":"https://github.com/agronholm/anyio","featured":null,"links":null,"description":null,"_repopath":"agronholm/anyio","_reponame":"anyio","_stars":1134,"_forks":95,"_watches":24,"_topics":["async-await","trio","asyncio","curio"],"_language":"Python","_homepage":"","_description":"anyio: High level asynchronous concurrency and networking framework that works on top of either trio or asyncio","_organization":"agronholm","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2018-08-19T00:00:00.000Z","_age_weeks":226,"_stars_per_week":5.01,"_pop_contributor_count":38,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["andrewjayichlabucsb","nextdaysolutionsoy","norisnetworkag"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.38,"_pop_updated_issues_count":64,"_pop_closed_issues_count":43,"_pop_created_since_days":53,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":64.0,"_pop_comment_count":117.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":553,"_pop_score":54.25,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/agronholm/anyio/master/README.rst","_readme_localurl":"agronholm~anyio~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/agronholm/anyio/master/pyproject.toml"],"_requirements_localurls":["agronholm~anyio~pyproject.toml"]},{"index":720,"category":"math","githuburl":"https://github.com/facebookresearch/theseus","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/theseus","_reponame":"theseus","_stars":1132,"_forks":76,"_watches":29,"_topics":["differentiable-optimization","robotics","embodied-ai","nonlinear-least-squares","pytorch","deep-learning","computer-vision","gauss-newton","levenberg-marquardt","implicit-differentiation","bilevel-optimization"],"_language":"Python","_homepage":"","_description":"theseus: A library for differentiable nonlinear optimization","_organization":"facebookresearch","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2021-11-18T00:00:00.000Z","_age_weeks":56,"_stars_per_week":20.01,"_pop_contributor_count":19,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebookairesearchfacebookresearch","metaai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.25,"_pop_updated_issues_count":107,"_pop_closed_issues_count":84,"_pop_created_since_days":13,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":107.0,"_pop_comment_count":64.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":34.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/theseus/master/README.md","_readme_localurl":"facebookresearch~theseus~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/theseus/master/setup.py"],"_requirements_localurls":["facebookresearch~theseus~setup.py"]},{"index":802,"category":"util","githuburl":"https://github.com/open-telemetry/opentelemetry-python","featured":null,"links":null,"description":null,"_repopath":"open-telemetry/opentelemetry-python","_reponame":"opentelemetry-python","_stars":1125,"_forks":402,"_watches":35,"_topics":["python","opentelemetry","tracecontext","correlationcontext","distributed-tracing","logging","metrics","sdk"],"_language":"Python","_homepage":"https://opentelemetry.io","_description":"opentelemetry-python: OpenTelemetry Python API and SDK ","_organization":"open-telemetry","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2019-05-07T00:00:00.000Z","_age_weeks":188,"_stars_per_week":5.96,"_pop_contributor_count":172,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","lightstep","microsoftcorporation","signoz.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.42,"_pop_updated_issues_count":206,"_pop_closed_issues_count":128,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":206.0,"_pop_comment_count":374.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":128,"_pop_score":59.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-telemetry/opentelemetry-python/master/README.md","_readme_localurl":"open-telemetry~opentelemetry-python~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/open-telemetry/opentelemetry-python/master/pyproject.toml"],"_requirements_localurls":["open-telemetry~opentelemetry-python~pyproject.toml"]},{"index":545,"category":"ml","githuburl":"https://github.com/borealisai/advertorch","featured":null,"links":null,"description":null,"_repopath":"borealisai/advertorch","_reponame":"advertorch","_stars":1119,"_forks":178,"_watches":27,"_topics":["pytorch","adversarial-examples","adversarial-example","adversarial-perturbations","adversarial-attacks","adversarial-machine-learning","adversarial-learning","robustness","toolbox","security","machine-learning","benchmarking"],"_language":"Jupyter Notebook","_homepage":null,"_description":"advertorch: A Toolbox for Adversarial Robustness Research","_organization":"borealisai","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-05-29T00:00:00.000Z","_created_at":"2018-11-29T00:00:00.000Z","_age_weeks":211,"_stars_per_week":5.29,"_pop_contributor_count":21,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["borealisai","ecopiaai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":49,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":2,"_pop_score":23.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/borealisai/advertorch/master/README.md","_readme_localurl":"borealisai~advertorch~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/borealisai/advertorch/master/setup.py"],"_requirements_localurls":["borealisai~advertorch~setup.py"]},{"index":618,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-bdd","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-bdd","_reponame":"pytest-bdd","_stars":1102,"_forks":186,"_watches":54,"_topics":[],"_language":"Python","_homepage":"https://pytest-bdd.readthedocs.io/en/latest/","_description":"pytest-bdd: BDD library for the py.test runner","_organization":"pytest-dev","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2013-03-29T00:00:00.000Z","_age_weeks":507,"_stars_per_week":2.17,"_pop_contributor_count":52,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bruhinsoftware","fareharbor"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.33,"_pop_updated_issues_count":38,"_pop_closed_issues_count":28,"_pop_created_since_days":118,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":38.0,"_pop_comment_count":63.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":232,"_pop_score":51.74,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-bdd/master/README.rst","_readme_localurl":"pytest-dev~pytest-bdd~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-bdd/master/pyproject.toml"],"_requirements_localurls":["pytest-dev~pytest-bdd~pyproject.toml"]},{"index":396,"category":"web","githuburl":"https://github.com/neoteroi/blacksheep","featured":null,"links":null,"description":null,"_repopath":"neoteroi/blacksheep","_reponame":"BlackSheep","_stars":1100,"_forks":50,"_watches":23,"_topics":["asyncio","server","http","asgi","blacksheep","python","http-server","rest","web","framework"],"_language":"Python","_homepage":"https://www.neoteroi.dev/blacksheep/","_description":"BlackSheep: Fast ASGI web framework for Python","_organization":"neoteroi","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2018-11-22T00:00:00.000Z","_age_weeks":212,"_stars_per_week":5.17,"_pop_contributor_count":10,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":17,"_pop_closed_issues_count":12,"_pop_created_since_days":50,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":17.0,"_pop_comment_count":39.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":30,"_pop_score":35.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/neoteroi/blacksheep/master/README.md","_readme_localurl":"neoteroi~blacksheep~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/neoteroi/blacksheep/master/requirements.txt","https://raw.githubusercontent.com/neoteroi/blacksheep/master/setup.py"],"_requirements_localurls":["neoteroi~blacksheep~requirements.txt","neoteroi~blacksheep~setup.py"]},{"index":726,"category":"perf","githuburl":"https://github.com/omyyyy/pycom","featured":null,"links":null,"description":null,"_repopath":"omyyyy/pycom","_reponame":"pycom","_stars":1094,"_forks":21,"_watches":17,"_topics":[],"_language":"C++","_homepage":"","_description":"pycom: A Python compiler, down to native code, using C++","_organization":"omyyyy","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-08-31T00:00:00.000Z","_created_at":"2022-07-16T00:00:00.000Z","_age_weeks":22,"_stars_per_week":49.09,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["marcelpetrick.it","universityofcalgary"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.71,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":5,"_pop_updated_since_days":4,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":17.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/omyyyy/pycom/master/README.md","_readme_localurl":"omyyyy~pycom~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/omyyyy/pycom/master/requirements.txt","https://raw.githubusercontent.com/omyyyy/pycom/master/setup.py"],"_requirements_localurls":["omyyyy~pycom~requirements.txt","omyyyy~pycom~setup.py"]},{"index":900,"category":"ml","githuburl":"https://github.com/shankarpandala/lazypredict","featured":null,"links":null,"description":null,"_repopath":"shankarpandala/lazypredict","_reponame":"lazypredict","_stars":1090,"_forks":123,"_watches":16,"_topics":["machine-learning","automl","regression","classification"],"_language":"Python","_homepage":"","_description":"lazypredict: Lazy Predict help build a lot of basic models without much code and helps understand which models works better without any parameter tuning","_organization":"shankarpandala","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-28T00:00:00.000Z","_created_at":"2019-11-16T00:00:00.000Z","_age_weeks":161,"_stars_per_week":6.76,"_pop_contributor_count":18,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["appliedmaterials","fiolabs-internal","pyupio","streamlit","wildlife-studios"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":24,"_pop_closed_issues_count":5,"_pop_created_since_days":38,"_pop_updated_since_days":3,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":24.0,"_pop_comment_count":22.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":3,"_pop_score":33.22,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/shankarpandala/lazypredict/master/README.rst","_readme_localurl":"shankarpandala~lazypredict~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/shankarpandala/lazypredict/master/requirements.txt","https://raw.githubusercontent.com/shankarpandala/lazypredict/master/setup.py"],"_requirements_localurls":["shankarpandala~lazypredict~requirements.txt","shankarpandala~lazypredict~setup.py"]},{"index":448,"category":"gis","githuburl":"https://github.com/pysal/pysal","featured":1.0,"links":null,"description":null,"_repopath":"pysal/pysal","_reponame":"pysal","_stars":1084,"_forks":287,"_watches":81,"_topics":[],"_language":"Jupyter Notebook","_homepage":"http://pysal.org/pysal","_description":"PySAL: Python Spatial Analysis Library Meta-Package","_organization":"pysal","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-07-23T00:00:00.000Z","_created_at":"2013-02-19T00:00:00.000Z","_age_weeks":512,"_stars_per_week":2.11,"_pop_contributor_count":77,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["centerforopengeographicalscience","geoda/asu","usgsastrogeology"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.65,"_pop_updated_issues_count":2,"_pop_closed_issues_count":2,"_pop_created_since_days":120,"_pop_updated_since_days":5,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":2.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":1349,"_pop_score":50.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pysal/pysal/master/README.md","_readme_localurl":"pysal~pysal~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pysal/pysal/master/requirements.txt","https://raw.githubusercontent.com/pysal/pysal/master/setup.py"],"_requirements_localurls":["pysal~pysal~requirements.txt","pysal~pysal~setup.py"]},{"index":656,"category":"web","githuburl":"https://github.com/magicstack/httptools","featured":null,"links":null,"description":null,"_repopath":"magicstack/httptools","_reponame":"httptools","_stars":1082,"_forks":69,"_watches":40,"_topics":[],"_language":"Python","_homepage":"","_description":"httptools: Fast HTTP parser","_organization":"magicstack","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-09-13T00:00:00.000Z","_created_at":"2016-04-25T00:00:00.000Z","_age_weeks":347,"_stars_per_week":3.12,"_pop_contributor_count":13,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["edgedb","enix"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":81,"_pop_updated_since_days":3,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":3.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":245,"_pop_score":38.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/magicstack/httptools/master/README.md","_readme_localurl":"magicstack~httptools~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/magicstack/httptools/master/setup.py"],"_requirements_localurls":["magicstack~httptools~setup.py"]},{"index":798,"category":"data","githuburl":"https://github.com/jsonpickle/jsonpickle","featured":null,"links":null,"description":null,"_repopath":"jsonpickle/jsonpickle","_reponame":"jsonpickle","_stars":1079,"_forks":153,"_watches":31,"_topics":["json","python","serialization","pickle","deserialization","objectstorage","bsd-3-clause"],"_language":"Python","_homepage":"https://jsonpickle.github.io","_description":"jsonpickle: Python library for serializing any arbitrary object graph into JSON. It can take almost any Python object and turn the object into JSON. Additionally, it can reconstitute the object back into Python.","_organization":"jsonpickle","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2009-12-10T00:00:00.000Z","_age_weeks":679,"_stars_per_week":1.59,"_pop_contributor_count":68,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["3dhubs","equium-io","google","waltdisneyanimationstudios"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.25,"_pop_updated_issues_count":29,"_pop_closed_issues_count":22,"_pop_created_since_days":159,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":29.0,"_pop_comment_count":56.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":170,"_pop_score":54.09,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jsonpickle/jsonpickle/master/README.rst","_readme_localurl":"jsonpickle~jsonpickle~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jsonpickle/jsonpickle/master/setup.py","https://raw.githubusercontent.com/jsonpickle/jsonpickle/master/pyproject.toml"],"_requirements_localurls":["jsonpickle~jsonpickle~setup.py","jsonpickle~jsonpickle~pyproject.toml"]},{"index":771,"category":"data","githuburl":"https://github.com/google/tensorstore","featured":null,"links":null,"description":null,"_repopath":"google/tensorstore","_reponame":"tensorstore","_stars":1074,"_forks":79,"_watches":30,"_topics":[],"_language":"C++","_homepage":"https://google.github.io/tensorstore/","_description":"tensorstore: Library for reading and writing large multi-dimensional arrays.","_organization":"google","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2020-03-30T00:00:00.000Z","_age_weeks":142,"_stars_per_week":7.56,"_pop_contributor_count":10,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.65,"_pop_updated_issues_count":35,"_pop_closed_issues_count":23,"_pop_created_since_days":33,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":35.0,"_pop_comment_count":195.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":5.6,"_pop_dependents_count":29,"_pop_score":45.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/tensorstore/master/README.md","_readme_localurl":"google~tensorstore~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/google/tensorstore/master/setup.py","https://raw.githubusercontent.com/google/tensorstore/master/pyproject.toml"],"_requirements_localurls":["google~tensorstore~setup.py","google~tensorstore~pyproject.toml"]},{"index":417,"category":"pandas","githuburl":"https://github.com/pyjanitor-devs/pyjanitor","featured":1.0,"links":null,"description":null,"_repopath":"pyjanitor-devs/pyjanitor","_reponame":"pyjanitor","_stars":1070,"_forks":160,"_watches":21,"_topics":["pandas","dataframe","data","cleaning-data","data-engineering","pydata","hacktoberfest"],"_language":"Python","_homepage":"https://pyjanitor-devs.github.io/pyjanitor","_description":"pyjanitor: Clean APIs for data cleaning. Python implementation of R package Janitor","_organization":"pyjanitor-devs","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2018-03-04T00:00:00.000Z","_age_weeks":250,"_stars_per_week":4.28,"_pop_contributor_count":106,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amdi","datajanitor","springdiscovery"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.77,"_pop_updated_issues_count":81,"_pop_closed_issues_count":60,"_pop_created_since_days":58,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":81.0,"_pop_comment_count":193.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":2,"_pop_score":45.28,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/README.rst","_readme_localurl":"pyjanitor-devs~pyjanitor~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/requirements.txt","https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/setup.py","https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/pyproject.toml"],"_requirements_localurls":["pyjanitor-devs~pyjanitor~requirements.txt","pyjanitor-devs~pyjanitor~setup.py","pyjanitor-devs~pyjanitor~pyproject.toml"]},{"index":651,"category":"profiling","githuburl":"https://github.com/p403n1x87/austin","featured":null,"links":null,"description":null,"_repopath":"p403n1x87/austin","_reponame":"austin","_stars":1065,"_forks":35,"_watches":14,"_topics":["python","profiling","performance","debugging-tools"],"_language":"C","_homepage":"","_description":"austin: Python frame stack sampler for CPython","_organization":"p403n1x87","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-28T00:00:00.000Z","_created_at":"2018-09-20T00:00:00.000Z","_age_weeks":221,"_stars_per_week":4.81,"_pop_contributor_count":7,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datadog","madalgo","microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.02,"_pop_updated_issues_count":28,"_pop_closed_issues_count":24,"_pop_created_since_days":52,"_pop_updated_since_days":2,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":28.0,"_pop_comment_count":44.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":29,"_pop_score":39.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/p403n1x87/austin/master/README.md","_readme_localurl":"p403n1x87~austin~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":512,"category":"typing","githuburl":"https://github.com/agronholm/typeguard","featured":null,"links":null,"description":null,"_repopath":"agronholm/typeguard","_reponame":"typeguard","_stars":1065,"_forks":79,"_watches":17,"_topics":[],"_language":"Python","_homepage":null,"_description":"typeguard: Run-time type checker for Python","_organization":"agronholm","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-10-11T00:00:00.000Z","_created_at":"2015-12-27T00:00:00.000Z","_age_weeks":364,"_stars_per_week":2.92,"_pop_contributor_count":21,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nextdaysolutionsoy","salesforce.org"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.35,"_pop_updated_issues_count":10,"_pop_closed_issues_count":4,"_pop_created_since_days":85,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":10.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":265,"_pop_score":40.92,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/agronholm/typeguard/master/README.rst","_readme_localurl":"agronholm~typeguard~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/agronholm/typeguard/master/pyproject.toml"],"_requirements_localurls":["agronholm~typeguard~pyproject.toml"]},{"index":626,"category":"viz","githuburl":"https://github.com/enthought/mayavi","featured":null,"links":null,"description":null,"_repopath":"enthought/mayavi","_reponame":"mayavi","_stars":1060,"_forks":264,"_watches":93,"_topics":[],"_language":"Python","_homepage":"http://docs.enthought.com/mayavi/mayavi/","_description":"mayavi: 3D visualization of scientific data in Python","_organization":"enthought","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-10-18T00:00:00.000Z","_created_at":"2011-01-24T00:00:00.000Z","_age_weeks":621,"_stars_per_week":1.71,"_pop_contributor_count":93,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["astrazenecauk","enthought","iitbombay"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.19,"_pop_updated_issues_count":44,"_pop_closed_issues_count":25,"_pop_created_since_days":145,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":44.0,"_pop_comment_count":82.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":119,"_pop_score":50.21,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/enthought/mayavi/master/README.rst","_readme_localurl":"enthought~mayavi~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/enthought/mayavi/master/setup.py","https://raw.githubusercontent.com/enthought/mayavi/master/pyproject.toml"],"_requirements_localurls":["enthought~mayavi~setup.py","enthought~mayavi~pyproject.toml"]},{"index":627,"category":"data","githuburl":"https://github.com/zarr-developers/zarr-python","featured":null,"links":null,"description":null,"_repopath":"zarr-developers/zarr-python","_reponame":"zarr-python","_stars":1059,"_forks":210,"_watches":43,"_topics":["hacktoberfest","zarr","ndimensional-arrays","compressed","python"],"_language":"Python","_homepage":"http://zarr.readthedocs.io/","_description":"zarr-python: An implementation of chunked, compressed, N-dimensional arrays for Python.","_organization":"zarr-developers","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2015-12-15T00:00:00.000Z","_age_weeks":365,"_stars_per_week":2.89,"_pop_contributor_count":77,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["openmicroscopy","quansight-labs","weomesangerinstitute"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.62,"_pop_updated_issues_count":207,"_pop_closed_issues_count":115,"_pop_created_since_days":85,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":207.0,"_pop_comment_count":692.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.3,"_pop_dependents_count":75,"_pop_score":57.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zarr-developers/zarr-python/master/README.md","_readme_localurl":"zarr-developers~zarr-python~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/zarr-developers/zarr-python/master/pyproject.toml"],"_requirements_localurls":["zarr-developers~zarr-python~pyproject.toml"]},{"index":619,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-asyncio","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-asyncio","_reponame":"pytest-asyncio","_stars":1056,"_forks":116,"_watches":35,"_topics":[],"_language":"Python","_homepage":"https://pytest-asyncio.readthedocs.io","_description":"pytest-asyncio: Asyncio support for pytest","_organization":"pytest-dev","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2015-04-11T00:00:00.000Z","_age_weeks":401,"_stars_per_week":2.63,"_pop_contributor_count":40,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["neu.ro","pocketzworld"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.27,"_pop_updated_issues_count":80,"_pop_closed_issues_count":66,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":80.0,"_pop_comment_count":80.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":2129,"_pop_score":56.86,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/master/README.rst","_readme_localurl":"pytest-dev~pytest-asyncio~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/master/pyproject.toml"],"_requirements_localurls":["pytest-dev~pytest-asyncio~pyproject.toml"]},{"index":239,"category":"data","githuburl":"https://github.com/simonw/sqlite-utils","featured":null,"links":null,"description":null,"_repopath":"simonw/sqlite-utils","_reponame":"sqlite-utils","_stars":1055,"_forks":81,"_watches":17,"_topics":["sqlite","python","datasette","sqlite-database","click","cli","datasette-io","datasette-tool"],"_language":"Python","_homepage":"https://sqlite-utils.datasette.io","_description":"sqlite-utils: Python CLI utility and library for manipulating SQLite databases","_organization":"simonw","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2018-07-14T00:00:00.000Z","_age_weeks":231,"_stars_per_week":4.56,"_pop_contributor_count":27,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datasette","stanforduniversity","usatodaynetwork/glasseyemedia/homicidewatch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.17,"_pop_updated_issues_count":39,"_pop_closed_issues_count":22,"_pop_created_since_days":54,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":39.0,"_pop_comment_count":93.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":123,"_pop_score":52.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/simonw/sqlite-utils/master/README.md","_readme_localurl":"simonw~sqlite-utils~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/simonw/sqlite-utils/master/setup.py"],"_requirements_localurls":["simonw~sqlite-utils~setup.py"]},{"index":609,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-xdist","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-xdist","_reponame":"pytest-xdist","_stars":1045,"_forks":185,"_watches":46,"_topics":["hacktoberfest","pytest","pytest-plugin"],"_language":"Python","_homepage":"https://pytest-xdist.readthedocs.io","_description":"pytest-xdist: pytest plugin for distributed testing and loop-on-failures testing modes. ","_organization":"pytest-dev","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2015-09-01T00:00:00.000Z","_age_weeks":380,"_stars_per_week":2.74,"_pop_contributor_count":86,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["esss","merlinux","nordsoftware","redhatinsights"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.25,"_pop_updated_issues_count":56,"_pop_closed_issues_count":37,"_pop_created_since_days":89,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":56.0,"_pop_comment_count":128.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":1467,"_pop_score":60.02,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-xdist/master/README.rst","_readme_localurl":"pytest-dev~pytest-xdist~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-xdist/master/pyproject.toml"],"_requirements_localurls":["pytest-dev~pytest-xdist~pyproject.toml"]},{"index":666,"category":"ml","githuburl":"https://github.com/huggingface/evaluate","featured":null,"links":null,"description":null,"_repopath":"huggingface/evaluate","_reponame":"evaluate","_stars":1038,"_forks":85,"_watches":39,"_topics":["evaluation","machine-learning"],"_language":"Python","_homepage":"https://huggingface.co/docs/evaluate","_description":"\ud83e\udd17 Evaluate: A library for easily evaluating machine learning models and datasets.","_organization":"huggingface","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2022-03-30T00:00:00.000Z","_age_weeks":37,"_stars_per_week":27.52,"_pop_contributor_count":111,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","huggingfaceaiinnova"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.37,"_pop_updated_issues_count":117,"_pop_closed_issues_count":82,"_pop_created_since_days":9,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":117.0,"_pop_comment_count":290.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":644,"_pop_score":55.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/evaluate/master/README.md","_readme_localurl":"huggingface~evaluate~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/evaluate/master/setup.py"],"_requirements_localurls":["huggingface~evaluate~setup.py"]},{"index":191,"category":"ml","githuburl":"https://github.com/awslabs/dgl-ke","featured":null,"links":null,"description":null,"_repopath":"awslabs/dgl-ke","_reponame":"dgl-ke","_stars":1035,"_forks":176,"_watches":23,"_topics":["machine-learning","knowledge-graph","knowledge-graphs-embeddings","graph-learning","dgl"],"_language":"Python","_homepage":"https://dglke.dgl.ai/doc/","_description":"dgl-ke: High performance, easy-to-use, and scalable package for learning large-scale knowledge graph embeddings.","_organization":"awslabs","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-18T00:00:00.000Z","_created_at":"2020-03-03T00:00:00.000Z","_age_weeks":145,"_stars_per_week":7.1,"_pop_contributor_count":25,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon","aws","kwai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":16,"_pop_closed_issues_count":8,"_pop_created_since_days":34,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":16.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":31.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/awslabs/dgl-ke/master/README.md","_readme_localurl":"awslabs~dgl-ke~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":817,"category":"ml-dl","githuburl":"https://github.com/calculatedcontent/weightwatcher","featured":null,"links":null,"description":null,"_repopath":"calculatedcontent/weightwatcher","_reponame":"WeightWatcher","_stars":1033,"_forks":94,"_watches":29,"_topics":[],"_language":"Python","_homepage":null,"_description":"WeightWatcher: The WeightWatcher tool for predicting the accuracy of Deep Neural Networks","_organization":"calculatedcontent","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2018-11-28T00:00:00.000Z","_age_weeks":211,"_stars_per_week":4.88,"_pop_contributor_count":7,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["calculationconsulting","etalab","ozminerals"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.88,"_pop_updated_issues_count":66,"_pop_closed_issues_count":55,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":66.0,"_pop_comment_count":107.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":24,"_pop_score":41.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/calculatedcontent/weightwatcher/master/README.md","_readme_localurl":"calculatedcontent~weightwatcher~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/calculatedcontent/weightwatcher/master/setup.py"],"_requirements_localurls":["calculatedcontent~weightwatcher~setup.py"]},{"index":644,"category":"util","githuburl":"https://github.com/metachris/logzero","featured":null,"links":null,"description":null,"_repopath":"metachris/logzero","_reponame":"logzero","_stars":1033,"_forks":70,"_watches":26,"_topics":["python","logging","logzero","logfiles"],"_language":"Python","_homepage":"https://logzero.readthedocs.io","_description":"logzero: Robust and effective logging for Python 2 and 3.","_organization":"metachris","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2021-03-17T00:00:00.000Z","_created_at":"2017-06-12T00:00:00.000Z","_age_weeks":288,"_stars_per_week":3.59,"_pop_contributor_count":12,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["canva","flashbots","pyupio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":17,"_pop_closed_issues_count":11,"_pop_created_since_days":67,"_pop_updated_since_days":21,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":17.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":4,"_pop_score":27.72,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/metachris/logzero/master/README.md","_readme_localurl":"metachris~logzero~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/metachris/logzero/master/setup.py"],"_requirements_localurls":["metachris~logzero~setup.py"]},{"index":654,"category":"profiling","githuburl":"https://github.com/sumerc/yappi","featured":null,"links":null,"description":null,"_repopath":"sumerc/yappi","_reponame":"yappi","_stars":1031,"_forks":57,"_watches":13,"_topics":["profilers","multi-threaded-applications","coroutine","asynchronous","python","asyncio","performance","profile","asgi","cpu","thread","gevent","greenlet","multithreading"],"_language":"Python","_homepage":"","_description":"yappi: Yet Another Python Profiler, but this time multithreading, asyncio and gevent aware.","_organization":"sumerc","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-25T00:00:00.000Z","_created_at":"2009-10-07T00:00:00.000Z","_age_weeks":688,"_stars_per_week":1.5,"_pop_contributor_count":28,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dara.network","mongodb","nutanix","redhat"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.65,"_pop_updated_issues_count":11,"_pop_closed_issues_count":8,"_pop_created_since_days":161,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":11.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":404,"_pop_score":47.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sumerc/yappi/master/README.md","_readme_localurl":"sumerc~yappi~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sumerc/yappi/master/setup.py","https://raw.githubusercontent.com/sumerc/yappi/master/pyproject.toml"],"_requirements_localurls":["sumerc~yappi~setup.py","sumerc~yappi~pyproject.toml"]},{"index":449,"category":"gis","githuburl":"https://github.com/residentmario/geoplot","featured":1.0,"links":null,"description":null,"_repopath":"residentmario/geoplot","_reponame":"geoplot","_stars":1029,"_forks":90,"_watches":35,"_topics":["geospatial-visualization","geospatial-data","matplotlib","geopandas","spatial-analysis"],"_language":"Python","_homepage":"https://residentmario.github.io/geoplot/index.html","_description":"geoplot: High-level geospatial data visualization library for Python.","_organization":"residentmario","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-03-18T00:00:00.000Z","_created_at":"2016-06-29T00:00:00.000Z","_age_weeks":337,"_stars_per_week":3.05,"_pop_contributor_count":5,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quiltdata","udl-ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":79,"_pop_updated_since_days":9,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":3.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":18,"_pop_score":28.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/residentmario/geoplot/master/README.md","_readme_localurl":"residentmario~geoplot~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/residentmario/geoplot/master/setup.py"],"_requirements_localurls":["residentmario~geoplot~setup.py"]},{"index":580,"category":"util","githuburl":"https://github.com/lidatong/dataclasses-json","featured":null,"links":null,"description":null,"_repopath":"lidatong/dataclasses-json","_reponame":"dataclasses-json","_stars":1024,"_forks":114,"_watches":9,"_topics":["dataclasses","json","python"],"_language":"Python","_homepage":"","_description":"dataclasses-json: Easily serialize Data Classes to and from JSON","_organization":"lidatong","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-08-14T00:00:00.000Z","_created_at":"2018-04-21T00:00:00.000Z","_age_weeks":243,"_stars_per_week":4.21,"_pop_contributor_count":46,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quantenna"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":35,"_pop_closed_issues_count":4,"_pop_created_since_days":57,"_pop_updated_since_days":4,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":35.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":172,"_pop_score":36.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lidatong/dataclasses-json/master/README.md","_readme_localurl":"lidatong~dataclasses-json~README.md","_requirements_filenames":["setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/lidatong/dataclasses-json/master/setup.py","https://raw.githubusercontent.com/lidatong/dataclasses-json/master/pyproject.toml","https://raw.githubusercontent.com/lidatong/dataclasses-json/master/Pipfile"],"_requirements_localurls":["lidatong~dataclasses-json~setup.py","lidatong~dataclasses-json~pyproject.toml","lidatong~dataclasses-json~Pipfile"]},{"index":598,"category":"data","githuburl":"https://github.com/uber/fiber","featured":null,"links":null,"description":null,"_repopath":"uber/fiber","_reponame":"fiber","_stars":995,"_forks":113,"_watches":21,"_topics":["python","distributed-computing","multiprocessing","sandbox","machine-learning"],"_language":"Python","_homepage":"https://uber.github.io/fiber/","_description":"fiber: Distributed Computing for AI Made Simple","_organization":"uber","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2021-03-15T00:00:00.000Z","_created_at":"2020-01-07T00:00:00.000Z","_age_weeks":153,"_stars_per_week":6.47,"_pop_contributor_count":5,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["delltechnologies","litesgroup","nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":36,"_pop_updated_since_days":21,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":3.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":3,"_pop_score":17.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/uber/fiber/master/README.md","_readme_localurl":"uber~fiber~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/fiber/master/requirements.txt","https://raw.githubusercontent.com/uber/fiber/master/setup.py"],"_requirements_localurls":["uber~fiber~requirements.txt","uber~fiber~setup.py"]},{"index":406,"category":"perf","githuburl":"https://github.com/pympler/pympler","featured":null,"links":null,"description":null,"_repopath":"pympler/pympler","_reponame":"pympler","_stars":994,"_forks":82,"_watches":10,"_topics":[],"_language":"Python","_homepage":null,"_description":"pympler: Development tool to measure, monitor and analyze the memory behavior of Python objects in a running Python application.","_organization":"pympler","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-07-24T00:00:00.000Z","_created_at":"2012-10-04T00:00:00.000Z","_age_weeks":532,"_stars_per_week":1.87,"_pop_contributor_count":29,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ableton","finceptiv"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":124,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":5.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":71,"_pop_score":37.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pympler/pympler/master/README.md","_readme_localurl":"pympler~pympler~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pympler/pympler/master/setup.py","https://raw.githubusercontent.com/pympler/pympler/master/pyproject.toml"],"_requirements_localurls":["pympler~pympler~setup.py","pympler~pympler~pyproject.toml"]},{"index":728,"category":"gis","githuburl":"https://github.com/geospatialpython/pyshp","featured":null,"links":null,"description":null,"_repopath":"geospatialpython/pyshp","_reponame":"pyshp","_stars":987,"_forks":258,"_watches":64,"_topics":[],"_language":"Python","_homepage":null,"_description":"pyshp: This library reads and writes ESRI Shapefiles in pure Python.","_organization":"geospatialpython","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-07-28T00:00:00.000Z","_created_at":"2014-03-04T00:00:00.000Z","_age_weeks":458,"_stars_per_week":2.15,"_pop_contributor_count":42,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["geospatialpython.com"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.92,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":107,"_pop_updated_since_days":5,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":4.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":107,"_pop_score":36.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/geospatialpython/pyshp/master/README.md","_readme_localurl":"geospatialpython~pyshp~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/geospatialpython/pyshp/master/setup.py","https://raw.githubusercontent.com/geospatialpython/pyshp/master/pyproject.toml"],"_requirements_localurls":["geospatialpython~pyshp~setup.py","geospatialpython~pyshp~pyproject.toml"]},{"index":444,"category":"gis","githuburl":"https://github.com/toblerity/fiona","featured":null,"links":null,"description":null,"_repopath":"toblerity/fiona","_reponame":"Fiona","_stars":983,"_forks":190,"_watches":49,"_topics":["python","gis","vector","gdal","ogr","cli","cython"],"_language":"Python","_homepage":"https://fiona.readthedocs.io/","_description":"Fiona reads and writes geographic data files","_organization":"toblerity","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2011-12-31T00:00:00.000Z","_age_weeks":572,"_stars_per_week":1.72,"_pop_contributor_count":64,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["gnsscience","planetlabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.4,"_pop_updated_issues_count":58,"_pop_closed_issues_count":42,"_pop_created_since_days":134,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":58.0,"_pop_comment_count":109.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":115,"_pop_score":52.11,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/toblerity/fiona/master/README.rst","_readme_localurl":"toblerity~fiona~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/toblerity/fiona/master/requirements.txt","https://raw.githubusercontent.com/toblerity/fiona/master/setup.py","https://raw.githubusercontent.com/toblerity/fiona/master/pyproject.toml"],"_requirements_localurls":["toblerity~fiona~requirements.txt","toblerity~fiona~setup.py","toblerity~fiona~pyproject.toml"]},{"index":739,"category":"pandas","githuburl":"https://github.com/machow/siuba","featured":null,"links":null,"description":null,"_repopath":"machow/siuba","_reponame":"siuba","_stars":975,"_forks":40,"_watches":20,"_topics":["data-analysis","python","pandas","sql","dplyr"],"_language":"Python","_homepage":"https://siuba.org","_description":"siuba: Python library for using dplyr like syntax with pandas and SQL","_organization":"machow","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-11-16T00:00:00.000Z","_created_at":"2019-02-09T00:00:00.000Z","_age_weeks":201,"_stars_per_week":4.84,"_pop_contributor_count":10,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["flatiron-school","rstudio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.5,"_pop_updated_issues_count":46,"_pop_closed_issues_count":34,"_pop_created_since_days":47,"_pop_updated_since_days":1,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":46.0,"_pop_comment_count":39.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":3,"_pop_score":37.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/machow/siuba/master/README.md","_readme_localurl":"machow~siuba~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/machow/siuba/master/requirements.txt","https://raw.githubusercontent.com/machow/siuba/master/setup.py"],"_requirements_localurls":["machow~siuba~requirements.txt","machow~siuba~setup.py"]},{"index":447,"category":"ml","githuburl":"https://github.com/csinva/imodels","featured":null,"links":null,"description":null,"_repopath":"csinva/imodels","_reponame":"imodels","_stars":975,"_forks":97,"_watches":22,"_topics":["interpretability","machine-learning","data-science","artificial-intelligence","ml","ai","statistics","scikit-learn","python","optimal-classification-tree","rulefit","imodels","rule-learning","supervised-learning","explainable-ml","explainable-ai","rules","bayesian-rule-list"],"_language":"Jupyter Notebook","_homepage":"https://csinva.io/imodels","_description":"imodels: Interpretable ML package \ud83d\udd0d for concise, transparent, and accurate predictive modeling (sklearn-compatible).","_organization":"csinva","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-07-04T00:00:00.000Z","_age_weeks":180,"_stars_per_week":5.4,"_pop_contributor_count":15,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["berkeleyairesearchlab","seniorresearcher"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.0,"_pop_updated_issues_count":16,"_pop_closed_issues_count":14,"_pop_created_since_days":42,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":16.0,"_pop_comment_count":23.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":25,"_pop_score":42.46,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/csinva/imodels/master/readme.md","_readme_localurl":"csinva~imodels~readme.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/csinva/imodels/master/setup.py"],"_requirements_localurls":["csinva~imodels~setup.py"]},{"index":707,"category":"util","githuburl":"https://github.com/brandon-rhodes/python-patterns","featured":null,"links":null,"description":null,"_repopath":"brandon-rhodes/python-patterns","_reponame":"python-patterns","_stars":972,"_forks":88,"_watches":247,"_topics":[],"_language":"Python","_homepage":null,"_description":"python-patterns: Source code behind the python-patterns.guide site by Brandon Rhodes","_organization":"brandon-rhodes","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2021-01-05T00:00:00.000Z","_created_at":"2018-01-31T00:00:00.000Z","_age_weeks":254,"_stars_per_week":3.82,"_pop_contributor_count":4,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bccentreforexcellenceinhiv/aids"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":59,"_pop_updated_since_days":24,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/brandon-rhodes/python-patterns/master/README.md","_readme_localurl":"brandon-rhodes~python-patterns~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/brandon-rhodes/python-patterns/master/requirements.txt"],"_requirements_localurls":["brandon-rhodes~python-patterns~requirements.txt"]},{"index":614,"category":"testing","githuburl":"https://github.com/teemu/pytest-sugar","featured":null,"links":null,"description":null,"_repopath":"teemu/pytest-sugar","_reponame":"pytest-sugar","_stars":961,"_forks":68,"_watches":17,"_topics":["pytest","pytest-sugar","python","testing","pytest-plugin"],"_language":"Python","_homepage":"","_description":"pytest-sugar: a plugin for py.test that changes the default look and feel of py.test (e.g. progressbar, show tests that fail instantly)","_organization":"teemu","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2013-06-25T00:00:00.000Z","_age_weeks":494,"_stars_per_week":1.94,"_pop_contributor_count":45,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["adobe","falcony-io","freelancer,upforhire","wolt"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.83,"_pop_updated_issues_count":54,"_pop_closed_issues_count":48,"_pop_created_since_days":115,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":54.0,"_pop_comment_count":94.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":303,"_pop_score":52.32,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/teemu/pytest-sugar/master/README.md","_readme_localurl":"teemu~pytest-sugar~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/teemu/pytest-sugar/master/setup.py"],"_requirements_localurls":["teemu~pytest-sugar~setup.py"]},{"index":482,"category":"gis","githuburl":"https://github.com/sentinel-hub/eo-learn","featured":null,"links":null,"description":null,"_repopath":"sentinel-hub/eo-learn","_reponame":"eo-learn","_stars":949,"_forks":276,"_watches":50,"_topics":["machine-learning","eo-data","eo-research","python-package"],"_language":"Python","_homepage":null,"_description":"eo-learn: Earth observation processing framework for machine learning in Python","_organization":"sentinel-hub","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-11-23T00:00:00.000Z","_created_at":"2018-05-31T00:00:00.000Z","_age_weeks":237,"_stars_per_week":3.99,"_pop_contributor_count":49,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["eoresearchteamsinergise","google","sinergise","sinergisesentinel-hub"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.48,"_pop_updated_issues_count":56,"_pop_closed_issues_count":51,"_pop_created_since_days":55,"_pop_updated_since_days":1,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":56.0,"_pop_comment_count":54.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":83,"_pop_score":50.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sentinel-hub/eo-learn/master/README.md","_readme_localurl":"sentinel-hub~eo-learn~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sentinel-hub/eo-learn/master/setup.py","https://raw.githubusercontent.com/sentinel-hub/eo-learn/master/pyproject.toml"],"_requirements_localurls":["sentinel-hub~eo-learn~setup.py","sentinel-hub~eo-learn~pyproject.toml"]},{"index":631,"category":"util","githuburl":"https://github.com/pyca/bcrypt","featured":null,"links":null,"description":null,"_repopath":"pyca/bcrypt","_reponame":"bcrypt","_stars":945,"_forks":134,"_watches":29,"_topics":["python"],"_language":"Python","_homepage":"","_description":"bcrypt: Modern(-ish) password hashing for your software and your servers","_organization":"pyca","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2013-05-11T00:00:00.000Z","_age_weeks":501,"_stars_per_week":1.89,"_pop_contributor_count":31,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datadog","pioneervalleybooks"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.85,"_pop_updated_issues_count":56,"_pop_closed_issues_count":49,"_pop_created_since_days":117,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":59.0,"_pop_comment_count":37.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":399,"_pop_score":49.16,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyca/bcrypt/master/README.rst","_readme_localurl":"pyca~bcrypt~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyca/bcrypt/master/requirements.txt","https://raw.githubusercontent.com/pyca/bcrypt/master/setup.py","https://raw.githubusercontent.com/pyca/bcrypt/master/pyproject.toml"],"_requirements_localurls":["pyca~bcrypt~requirements.txt","pyca~bcrypt~setup.py","pyca~bcrypt~pyproject.toml"]},{"index":740,"category":"ml","githuburl":"https://github.com/koaning/scikit-lego","featured":null,"links":null,"description":null,"_repopath":"koaning/scikit-lego","_reponame":"scikit-lego","_stars":936,"_forks":99,"_watches":18,"_topics":["scikit-learn","machine-learning","common-sense"],"_language":"Python","_homepage":"https://scikit-lego.netlify.app","_description":"scikit-lego: Extra blocks for scikit-learn pipelines.","_organization":"koaning","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-11-02T00:00:00.000Z","_created_at":"2019-01-21T00:00:00.000Z","_age_weeks":204,"_stars_per_week":4.59,"_pop_contributor_count":56,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["explosion","m-gate","xcceleratedpydataamsterdam"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":28,"_pop_closed_issues_count":17,"_pop_created_since_days":48,"_pop_updated_since_days":2,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":28.0,"_pop_comment_count":77.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":19,"_pop_score":44.05,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/koaning/scikit-lego/master/readme.md","_readme_localurl":"koaning~scikit-lego~readme.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/koaning/scikit-lego/master/setup.py"],"_requirements_localurls":["koaning~scikit-lego~setup.py"]},{"index":633,"category":"util","githuburl":"https://github.com/pyca/pynacl","featured":null,"links":null,"description":null,"_repopath":"pyca/pynacl","_reponame":"pynacl","_stars":936,"_forks":219,"_watches":28,"_topics":["cryptography","libsodium","nacl","python"],"_language":"C","_homepage":"https://pynacl.readthedocs.io/","_description":"pynacl: Python binding to the Networking and Cryptography (NaCl) library","_organization":"pyca","_updated_at":"2022-12-11T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2013-02-22T00:00:00.000Z","_age_weeks":512,"_stars_per_week":1.83,"_pop_contributor_count":64,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datadog"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":9,"_pop_closed_issues_count":7,"_pop_created_since_days":120,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":9.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":169,"_pop_score":45.62,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyca/pynacl/master/README.rst","_readme_localurl":"pyca~pynacl~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyca/pynacl/master/setup.py","https://raw.githubusercontent.com/pyca/pynacl/master/pyproject.toml"],"_requirements_localurls":["pyca~pynacl~setup.py","pyca~pynacl~pyproject.toml"]},{"index":271,"category":"crypto","githuburl":"https://github.com/man-c/pycoingecko","featured":null,"links":null,"description":null,"_repopath":"man-c/pycoingecko","_reponame":"pycoingecko","_stars":933,"_forks":245,"_watches":32,"_topics":["python3","api-wrapper","api","wrapper","cryptocurrency","crypto","coingecko","python","nft","nfts"],"_language":"Python","_homepage":"","_description":"pycoingecko: Python wrapper for the CoinGecko API","_organization":"man-c","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-26T00:00:00.000Z","_created_at":"2018-08-24T00:00:00.000Z","_age_weeks":225,"_stars_per_week":4.14,"_pop_contributor_count":14,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":5,"_pop_closed_issues_count":2,"_pop_created_since_days":53,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":5.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":180,"_pop_score":32.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/man-c/pycoingecko/master/README.md","_readme_localurl":"man-c~pycoingecko~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/man-c/pycoingecko/master/setup.py"],"_requirements_localurls":["man-c~pycoingecko~setup.py"]},{"index":820,"category":"viz","githuburl":"https://github.com/facultyai/dash-bootstrap-components","featured":null,"links":null,"description":null,"_repopath":"facultyai/dash-bootstrap-components","_reponame":"dash-bootstrap-components","_stars":930,"_forks":201,"_watches":21,"_topics":["bootstrap","plotly-dash","python","dashboards","r","julia"],"_language":"JavaScript","_homepage":"https://dash-bootstrap-components.opensource.faculty.ai/","_description":"dash-bootstrap-components: Bootstrap components for Plotly Dash","_organization":"facultyai","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-08-03T00:00:00.000Z","_created_at":"2018-09-21T00:00:00.000Z","_age_weeks":221,"_stars_per_week":4.2,"_pop_contributor_count":29,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","facultyai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.17,"_pop_updated_issues_count":29,"_pop_closed_issues_count":8,"_pop_created_since_days":52,"_pop_updated_since_days":5,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":33,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":29.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":41,"_pop_score":39.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facultyai/dash-bootstrap-components/master/README.md","_readme_localurl":"facultyai~dash-bootstrap-components~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facultyai/dash-bootstrap-components/master/setup.py","https://raw.githubusercontent.com/facultyai/dash-bootstrap-components/master/pyproject.toml"],"_requirements_localurls":["facultyai~dash-bootstrap-components~setup.py","facultyai~dash-bootstrap-components~pyproject.toml"]},{"index":379,"category":"ml-interpretability","githuburl":"https://github.com/cdpierse/transformers-interpret","featured":null,"links":null,"description":null,"_repopath":"cdpierse/transformers-interpret","_reponame":"transformers-interpret","_stars":924,"_forks":81,"_watches":16,"_topics":["nlp","machine-learning","natural-language-processing","explainable-ai","transformers","model-explainability","transformers-model","captum","deep-learning","neural-network","interpretability","computer-vision"],"_language":"Jupyter Notebook","_homepage":"","_description":"transformers-interpret: Model explainability that works seamlessly with \ud83e\udd17 transformers. Explain your transformers model in just 2 lines of code. ","_organization":"cdpierse","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-17T00:00:00.000Z","_created_at":"2020-05-27T00:00:00.000Z","_age_weeks":133,"_stars_per_week":6.91,"_pop_contributor_count":7,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dfki/universit\u00e4tdessaarlandes","mavenoid;omnimodular","oraikatechnologies","quantcopy"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.98,"_pop_updated_issues_count":17,"_pop_closed_issues_count":5,"_pop_created_since_days":31,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":17.0,"_pop_comment_count":22.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":11,"_pop_score":35.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/README.md","_readme_localurl":"cdpierse~transformers-interpret~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/requirements.txt","https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/setup.py","https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/pyproject.toml"],"_requirements_localurls":["cdpierse~transformers-interpret~requirements.txt","cdpierse~transformers-interpret~setup.py","cdpierse~transformers-interpret~pyproject.toml"]},{"index":212,"category":"data","githuburl":"https://github.com/sfu-db/connector-x","featured":1.0,"links":null,"description":null,"_repopath":"sfu-db/connector-x","_reponame":"connector-x","_stars":919,"_forks":66,"_watches":23,"_topics":["rust","python","database","sql","dataframe"],"_language":"Rust","_homepage":"https://sfu-db.github.io/connector-x/intro.html","_description":"connector-x: Fastest library to load data from DB to DataFrames in Rust and Python","_organization":"sfu-db","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-08T00:00:00.000Z","_created_at":"2021-01-13T00:00:00.000Z","_age_weeks":100,"_stars_per_week":9.12,"_pop_contributor_count":29,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["redhatofficial","sfu-db"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.38,"_pop_updated_issues_count":68,"_pop_closed_issues_count":33,"_pop_created_since_days":23,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":68.0,"_pop_comment_count":79.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":20,"_pop_score":43.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sfu-db/connector-x/master/README.md","_readme_localurl":"sfu-db~connector-x~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":236,"category":"sim","githuburl":"https://github.com/salesforce/ai-economist","featured":1.0,"links":null,"description":null,"_repopath":"salesforce/ai-economist","_reponame":"ai-economist","_stars":918,"_forks":192,"_watches":44,"_topics":["ai","ml","multi-agent","multi-agent-reinforcement-learning","deep-reinforcement-learning","reinforcement-learning-environments","simulation-framework","python-3","economics"],"_language":"Python","_homepage":"https://www.einstein.ai/the-ai-economist","_description":"ai-economist: Foundation is a flexible, modular, and composable framework to model socio-economic behaviors and dynamics with both agents and governments. This framework can be used in conjunction with reinforcement learning to learn optimal economic policies,\u00a0as done by the AI Economist (https://www.einstein.ai/the-ai-economist).","_organization":"salesforce","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-05-09T00:00:00.000Z","_created_at":"2020-07-02T00:00:00.000Z","_age_weeks":128,"_stars_per_week":7.14,"_pop_contributor_count":8,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["apple","salesforceresearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.42,"_pop_updated_issues_count":4,"_pop_closed_issues_count":0,"_pop_created_since_days":30,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":18.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/ai-economist/master/README.md","_readme_localurl":"salesforce~ai-economist~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/salesforce/ai-economist/master/requirements.txt","https://raw.githubusercontent.com/salesforce/ai-economist/master/setup.py"],"_requirements_localurls":["salesforce~ai-economist~requirements.txt","salesforce~ai-economist~setup.py"]},{"index":541,"category":"util","githuburl":"https://github.com/pdoc3/pdoc","featured":null,"links":null,"description":null,"_repopath":"pdoc3/pdoc","_reponame":"pdoc","_stars":911,"_forks":136,"_watches":8,"_topics":["documentation","generator","documentation-generator","documentation-tool","documentation-dumper","api-documentation","python","python3","docs","docs-generator","docstrings","docstring","docstring-documentation","pdoc","hacktoberfest"],"_language":"Python","_homepage":"https://pdoc3.github.io/pdoc/","_description":"pdoc: :snake: :arrow_right: :scroll: Auto-generate API documentation for Python projects","_organization":"pdoc3","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-29T00:00:00.000Z","_created_at":"2019-01-02T00:00:00.000Z","_age_weeks":206,"_stars_per_week":4.41,"_pop_contributor_count":58,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["salesforce"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":15,"_pop_closed_issues_count":10,"_pop_created_since_days":48,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":15.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":183,"_pop_score":41.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pdoc3/pdoc/master/README.md","_readme_localurl":"pdoc3~pdoc~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pdoc3/pdoc/master/setup.py"],"_requirements_localurls":["pdoc3~pdoc~setup.py"]},{"index":251,"category":"ml-dl","githuburl":"https://github.com/tensorflow/similarity","featured":null,"links":null,"description":null,"_repopath":"tensorflow/similarity","_reponame":"similarity","_stars":910,"_forks":86,"_watches":28,"_topics":["similarity-learning","metric-learning","similarity-search","nearest-neighbor-search","nearest-neighbors","deep-learning","tensorflow","contrastive-learning","machine-learning","unsupervised-learning","clustering","python","simclr","simclr2","barlow-twins","simsiam","cosine-similarity","knn"],"_language":"Python","_homepage":"","_description":"similarity: TensorFlow Similarity is a python package focused on making similarity learning quick and easy.","_organization":"tensorflow","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2020-06-15T00:00:00.000Z","_age_weeks":131,"_stars_per_week":6.95,"_pop_contributor_count":23,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.1,"_pop_updated_issues_count":24,"_pop_closed_issues_count":13,"_pop_created_since_days":31,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":24.0,"_pop_comment_count":37.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":29,"_pop_score":36.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/similarity/master/README.md","_readme_localurl":"tensorflow~similarity~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorflow/similarity/master/setup.py","https://raw.githubusercontent.com/tensorflow/similarity/master/pyproject.toml"],"_requirements_localurls":["tensorflow~similarity~setup.py","tensorflow~similarity~pyproject.toml"]},{"index":88,"category":"testing","githuburl":"https://github.com/taverntesting/tavern","featured":null,"links":null,"description":null,"_repopath":"taverntesting/tavern","_reponame":"tavern","_stars":909,"_forks":179,"_watches":28,"_topics":["python","pytest","testing","test-automation","mqtt","http"],"_language":"Python","_homepage":"https://taverntesting.github.io/","_description":"tavern: A command-line tool and Python library and Pytest plugin for automated testing of RESTful APIs, with a simple, concise and flexible YAML-based syntax","_organization":"taverntesting","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-11-01T00:00:00.000Z","_age_weeks":267,"_stars_per_week":3.4,"_pop_contributor_count":56,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["atlassian","forgerock","zalando"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.38,"_pop_updated_issues_count":34,"_pop_closed_issues_count":25,"_pop_created_since_days":62,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":37,"_pop_recent_releases_adjusted_count":37,"_pop_issue_count":34.0,"_pop_comment_count":34.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":38,"_pop_score":49.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/taverntesting/tavern/master/README.md","_readme_localurl":"taverntesting~tavern~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/taverntesting/tavern/master/requirements.txt","https://raw.githubusercontent.com/taverntesting/tavern/master/pyproject.toml"],"_requirements_localurls":["taverntesting~tavern~requirements.txt","taverntesting~tavern~pyproject.toml"]},{"index":387,"category":"nlp","githuburl":"https://github.com/shivam5992/textstat","featured":null,"links":null,"description":null,"_repopath":"shivam5992/textstat","_reponame":"textstat","_stars":892,"_forks":144,"_watches":17,"_topics":["python","textstat","readability","flesch-kincaid-grade","smog","flesch-reading-ease"],"_language":"Python","_homepage":"https://textstat.org","_description":"textstat: :memo: python package to calculate readability statistics of a text object - paragraphs, sentences, articles.","_organization":"shivam5992","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-07-08T00:00:00.000Z","_created_at":"2014-06-18T00:00:00.000Z","_age_weeks":443,"_stars_per_week":2.01,"_pop_contributor_count":46,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["tessian"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":4,"_pop_closed_issues_count":3,"_pop_created_since_days":104,"_pop_updated_since_days":5,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":4.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":19,"_pop_score":33.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/shivam5992/textstat/master/README.md","_readme_localurl":"shivam5992~textstat~README.md","_requirements_filenames":["requirements.txt","setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/shivam5992/textstat/master/requirements.txt","https://raw.githubusercontent.com/shivam5992/textstat/master/setup.py","https://raw.githubusercontent.com/shivam5992/textstat/master/Pipfile"],"_requirements_localurls":["shivam5992~textstat~requirements.txt","shivam5992~textstat~setup.py","shivam5992~textstat~Pipfile"]},{"index":622,"category":"util","githuburl":"https://github.com/pytoolz/cytoolz","featured":null,"links":null,"description":null,"_repopath":"pytoolz/cytoolz","_reponame":"cytoolz","_stars":890,"_forks":67,"_watches":23,"_topics":[],"_language":"Python","_homepage":"","_description":"cytoolz: Cython implementation of Toolz: High performance functional utilities","_organization":"pytoolz","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-11-06T00:00:00.000Z","_created_at":"2014-04-04T00:00:00.000Z","_age_weeks":454,"_stars_per_week":1.96,"_pop_contributor_count":20,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["coiled","formerlyquantopian","lynkertechnologies","voltrondata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":10,"_pop_closed_issues_count":6,"_pop_created_since_days":106,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":10.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":28,"_pop_score":39.05,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytoolz/cytoolz/master/README.rst","_readme_localurl":"pytoolz~cytoolz~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytoolz/cytoolz/master/setup.py","https://raw.githubusercontent.com/pytoolz/cytoolz/master/pyproject.toml"],"_requirements_localurls":["pytoolz~cytoolz~setup.py","pytoolz~cytoolz~pyproject.toml"]},{"index":504,"category":"gis","githuburl":"https://github.com/anitagraser/movingpandas","featured":null,"links":null,"description":null,"_repopath":"anitagraser/movingpandas","_reponame":"movingpandas","_stars":889,"_forks":165,"_watches":36,"_topics":["geopandas","trajectory","movement-data","trajectory-analysis","python","spatial-data-analysis"],"_language":"Python","_homepage":"http://movingpandas.org","_description":"movingpandas: Implementation of Trajectory classes and functions built on top of GeoPandas","_organization":"anitagraser","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-12-16T00:00:00.000Z","_age_weeks":209,"_stars_per_week":4.25,"_pop_contributor_count":29,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dtn","universityofliverpool"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.29,"_pop_updated_issues_count":35,"_pop_closed_issues_count":20,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":35.0,"_pop_comment_count":55.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":25,"_pop_score":44.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/anitagraser/movingpandas/master/README.md","_readme_localurl":"anitagraser~movingpandas~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/anitagraser/movingpandas/master/setup.py"],"_requirements_localurls":["anitagraser~movingpandas~setup.py"]},{"index":672,"category":"perf","githuburl":"https://github.com/markshannon/faster-cpython","featured":null,"links":null,"description":null,"_repopath":"markshannon/faster-cpython","_reponame":"faster-cpython","_stars":888,"_forks":21,"_watches":83,"_topics":[],"_language":null,"_homepage":null,"_description":"faster-cpython: How to make CPython faster.","_organization":"markshannon","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2020-10-28T00:00:00.000Z","_created_at":"2020-10-19T00:00:00.000Z","_age_weeks":113,"_stars_per_week":7.86,"_pop_contributor_count":4,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["colgateuniversity","microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":26,"_pop_updated_since_days":26,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":13.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/markshannon/faster-cpython/master/README.md","_readme_localurl":"markshannon~faster-cpython~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":402,"category":"perf","githuburl":"https://github.com/tiangolo/asyncer","featured":null,"links":null,"description":null,"_repopath":"tiangolo/asyncer","_reponame":"asyncer","_stars":886,"_forks":40,"_watches":14,"_topics":["python","async","asyncio","trio","anyio"],"_language":"Python","_homepage":"https://asyncer.tiangolo.com/","_description":"Asyncer, async and await, focused on developer experience.","_organization":"tiangolo","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2022-01-04T00:00:00.000Z","_age_weeks":49,"_stars_per_week":17.77,"_pop_contributor_count":10,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["snok,intility"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.69,"_pop_updated_issues_count":30,"_pop_closed_issues_count":26,"_pop_created_since_days":12,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":30.0,"_pop_comment_count":38.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":28.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/asyncer/master/README.md","_readme_localurl":"tiangolo~asyncer~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tiangolo/asyncer/master/pyproject.toml"],"_requirements_localurls":["tiangolo~asyncer~pyproject.toml"]},{"index":630,"category":"gis","githuburl":"https://github.com/pytroll/satpy","featured":null,"links":null,"description":null,"_repopath":"pytroll/satpy","_reponame":"satpy","_stars":881,"_forks":256,"_watches":31,"_topics":["python","satellite","weather","hacktoberfest","dask","xarray","closember"],"_language":"Python","_homepage":"http://satpy.readthedocs.org/en/latest/","_description":"satpy: Python package for earth-observing satellite data processing","_organization":"pytroll","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2016-02-09T00:00:00.000Z","_age_weeks":357,"_stars_per_week":2.46,"_pop_contributor_count":132,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deutscherwetterdienst","dwd","smhi","spacescienceandengineeringcenter(ssec)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":21.56,"_pop_updated_issues_count":174,"_pop_closed_issues_count":107,"_pop_created_since_days":83,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":174.0,"_pop_comment_count":595.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.4,"_pop_dependents_count":12,"_pop_score":58.74,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytroll/satpy/master/README.rst","_readme_localurl":"pytroll~satpy~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytroll/satpy/master/setup.py","https://raw.githubusercontent.com/pytroll/satpy/master/pyproject.toml"],"_requirements_localurls":["pytroll~satpy~setup.py","pytroll~satpy~pyproject.toml"]},{"index":219,"category":"template","githuburl":"https://github.com/tezromach/python-package-template","featured":1.0,"links":null,"description":null,"_repopath":"tezromach/python-package-template","_reponame":"python-package-template","_stars":873,"_forks":85,"_watches":6,"_topics":["python","cookiecutter","best-practices","semantic-versions","python-packages","codestyle","formatters","makefile","poetry","template"],"_language":"Python","_homepage":"","_description":"python-package-template: \ud83d\ude80 Your next Python package needs a bleeding-edge project structure.","_organization":"tezromach","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-05-18T00:00:00.000Z","_created_at":"2020-04-15T00:00:00.000Z","_age_weeks":139,"_stars_per_week":6.25,"_pop_contributor_count":13,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":111,"_pop_closed_issues_count":71,"_pop_created_since_days":33,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":111.0,"_pop_comment_count":73.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":18,"_pop_score":28.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tezromach/python-package-template/master/README.md","_readme_localurl":"tezromach~python-package-template~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tezromach/python-package-template/master/pyproject.toml"],"_requirements_localurls":["tezromach~python-package-template~pyproject.toml"]},{"index":750,"category":"data","githuburl":"https://github.com/pytorch/data","featured":null,"links":null,"description":null,"_repopath":"pytorch/data","_reponame":"data","_stars":870,"_forks":102,"_watches":25,"_topics":[],"_language":"Python","_homepage":"","_description":"data: A PyTorch repo for data loading and utilities to be shared by the PyTorch domain libraries.","_organization":"pytorch","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2021-05-12T00:00:00.000Z","_age_weeks":83,"_stars_per_week":10.39,"_pop_contributor_count":60,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","quansight"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.5,"_pop_updated_issues_count":194,"_pop_closed_issues_count":146,"_pop_created_since_days":20,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":194.0,"_pop_comment_count":491.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":1663,"_pop_score":56.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/data/master/README.md","_readme_localurl":"pytorch~data~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/data/master/requirements.txt","https://raw.githubusercontent.com/pytorch/data/master/setup.py","https://raw.githubusercontent.com/pytorch/data/master/pyproject.toml"],"_requirements_localurls":["pytorch~data~requirements.txt","pytorch~data~setup.py","pytorch~data~pyproject.toml"]},{"index":341,"category":"term","githuburl":"https://github.com/jquast/blessed","featured":null,"links":null,"description":null,"_repopath":"jquast/blessed","_reponame":"blessed","_stars":867,"_forks":67,"_watches":24,"_topics":["terminal","curses","cli"],"_language":"Python","_homepage":"http://pypi.python.org/pypi/blessed","_description":"Blessed is an easy, practical library for making python terminal apps","_organization":"jquast","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-09-27T00:00:00.000Z","_created_at":"2014-03-01T00:00:00.000Z","_age_weeks":459,"_stars_per_week":1.89,"_pop_contributor_count":24,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dalibo","mozilla"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":7,"_pop_closed_issues_count":2,"_pop_created_since_days":107,"_pop_updated_since_days":3,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":7.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":11,"_pop_score":34.13,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jquast/blessed/master/README.rst","_readme_localurl":"jquast~blessed~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jquast/blessed/master/requirements.txt","https://raw.githubusercontent.com/jquast/blessed/master/setup.py"],"_requirements_localurls":["jquast~blessed~requirements.txt","jquast~blessed~setup.py"]},{"index":392,"category":"pandas","githuburl":"https://github.com/tkrabel/bamboolib","featured":null,"links":null,"description":null,"_repopath":"tkrabel/bamboolib","_reponame":"bamboolib","_stars":858,"_forks":93,"_watches":31,"_topics":["pandas","pandas-dataframes","jupyter-notebook","jupyterlab","python"],"_language":"Jupyter Notebook","_homepage":"https://bamboolib.com","_description":"bamboolib - a GUI for pandas DataFrames","_organization":"tkrabel","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-27T00:00:00.000Z","_created_at":"2019-05-29T00:00:00.000Z","_age_weeks":185,"_stars_per_week":4.62,"_pop_contributor_count":4,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["8080labs","bamboolib","databricks"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.21,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":43,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":8,"_pop_score":21.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tkrabel/bamboolib/master/README.md","_readme_localurl":"tkrabel~bamboolib~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":204,"category":"debug","githuburl":"https://github.com/alexmojaki/snoop","featured":null,"links":null,"description":null,"_repopath":"alexmojaki/snoop","_reponame":"snoop","_stars":856,"_forks":29,"_watches":16,"_topics":["python","debugging","debugger","debugging-tools","logging"],"_language":"Python","_homepage":"","_description":"snoop: A powerful set of Python debugging tools, based on PySnooper","_organization":"alexmojaki","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2019-05-13T00:00:00.000Z","_age_weeks":188,"_stars_per_week":4.55,"_pop_contributor_count":22,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":6,"_pop_closed_issues_count":2,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":6.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":5,"_pop_score":33.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alexmojaki/snoop/master/README.md","_readme_localurl":"alexmojaki~snoop~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/alexmojaki/snoop/master/setup.py","https://raw.githubusercontent.com/alexmojaki/snoop/master/pyproject.toml"],"_requirements_localurls":["alexmojaki~snoop~setup.py","alexmojaki~snoop~pyproject.toml"]},{"index":700,"category":"perf","githuburl":"https://github.com/intel/scikit-learn-intelex","featured":null,"links":null,"description":null,"_repopath":"intel/scikit-learn-intelex","_reponame":"scikit-learn-intelex","_stars":854,"_forks":136,"_watches":28,"_topics":["oneapi","scikit-learn","machine-learning-algorithms","data-analysis","machine-learning","python","swrepo","ai-machine-learning","big-data","analytics","ai-training","ai-inference","gpu","intel"],"_language":"Python","_homepage":"https://intel.github.io/scikit-learn-intelex/","_description":"scikit-learn-intelex: Intel(R) Extension for Scikit-learn is a seamless way to speed up your Scikit-learn application","_organization":"intel","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-08-07T00:00:00.000Z","_age_weeks":227,"_stars_per_week":3.75,"_pop_contributor_count":62,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["intel","intelcorporation"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.63,"_pop_updated_issues_count":118,"_pop_closed_issues_count":82,"_pop_created_since_days":53,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":118.0,"_pop_comment_count":80.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":39.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/intel/scikit-learn-intelex/master/README.md","_readme_localurl":"intel~scikit-learn-intelex~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/intel/scikit-learn-intelex/master/setup.py"],"_requirements_localurls":["intel~scikit-learn-intelex~setup.py"]},{"index":772,"category":"nlp","githuburl":"https://github.com/huggingface/setfit","featured":null,"links":null,"description":null,"_repopath":"huggingface/setfit","_reponame":"setfit","_stars":850,"_forks":74,"_watches":15,"_topics":["few-shot-learning","nlp","sentence-transformers"],"_language":"Python","_homepage":"","_description":"setfit: Efficient few-shot learning with Sentence Transformers","_organization":"huggingface","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2022-06-30T00:00:00.000Z","_age_weeks":24,"_stars_per_week":34.59,"_pop_contributor_count":29,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","nervanasystems","telekom"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.46,"_pop_updated_issues_count":187,"_pop_closed_issues_count":132,"_pop_created_since_days":6,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":187.0,"_pop_comment_count":415.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":2,"_pop_score":41.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/setfit/master/README.md","_readme_localurl":"huggingface~setfit~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/setfit/master/setup.py"],"_requirements_localurls":["huggingface~setfit~setup.py"]},{"index":347,"category":"nlp","githuburl":"https://github.com/norskregnesentral/skweak","featured":null,"links":null,"description":null,"_repopath":"norskregnesentral/skweak","_reponame":"skweak","_stars":847,"_forks":67,"_watches":27,"_topics":["weak-supervision","nlp-machine-learning","distant-supervision","nlp-library","spacy","python","data-science","training-data","natural-language-processing"],"_language":"Python","_homepage":"","_description":"skweak: A software toolkit for weak supervision applied to NLP tasks","_organization":"norskregnesentral","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-11-08T00:00:00.000Z","_created_at":"2021-03-16T00:00:00.000Z","_age_weeks":91,"_stars_per_week":9.22,"_pop_contributor_count":11,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["norwegiancomputingcentre","palinode","universityofoslo","universityofthebasquecountryupv/ehu"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.46,"_pop_updated_issues_count":7,"_pop_closed_issues_count":5,"_pop_created_since_days":21,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":7.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":13,"_pop_score":32.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/norskregnesentral/skweak/master/README.md","_readme_localurl":"norskregnesentral~skweak~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/norskregnesentral/skweak/master/requirements.txt","https://raw.githubusercontent.com/norskregnesentral/skweak/master/setup.py"],"_requirements_localurls":["norskregnesentral~skweak~requirements.txt","norskregnesentral~skweak~setup.py"]},{"index":628,"category":"data","githuburl":"https://github.com/intake/intake","featured":null,"links":null,"description":null,"_repopath":"intake/intake","_reponame":"intake","_stars":844,"_forks":125,"_watches":41,"_topics":["python","data-access","data-catalog"],"_language":"Python","_homepage":"https://intake.readthedocs.io/","_description":"Intake is a lightweight package for finding, investigating, loading and disseminating data.","_organization":"intake","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2017-08-14T00:00:00.000Z","_age_weeks":279,"_stars_per_week":3.03,"_pop_contributor_count":79,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","azavea","brookhavennationallab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.98,"_pop_updated_issues_count":22,"_pop_closed_issues_count":14,"_pop_created_since_days":65,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":22.0,"_pop_comment_count":41.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":392,"_pop_score":51.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/intake/intake/master/README.md","_readme_localurl":"intake~intake~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/intake/intake/master/requirements.txt","https://raw.githubusercontent.com/intake/intake/master/setup.py"],"_requirements_localurls":["intake~intake~requirements.txt","intake~intake~setup.py"]},{"index":484,"category":"gis","githuburl":"https://github.com/sentinelsat/sentinelsat","featured":null,"links":null,"description":null,"_repopath":"sentinelsat/sentinelsat","_reponame":"sentinelsat","_stars":836,"_forks":225,"_watches":59,"_topics":["sentinel","copernicus","esa","remote-sensing","satellite-imagery","geographic-data","open-data","hacktoberfest"],"_language":"Python","_homepage":"https://sentinelsat.readthedocs.io","_description":"sentinelsat: Search and download Copernicus Sentinel satellite images","_organization":"sentinelsat","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-11-03T00:00:00.000Z","_created_at":"2015-05-22T00:00:00.000Z","_age_weeks":395,"_stars_per_week":2.11,"_pop_contributor_count":42,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deloitte","developmentseed","milremrobotics"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":9,"_pop_closed_issues_count":4,"_pop_created_since_days":92,"_pop_updated_since_days":2,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":9.0,"_pop_comment_count":45.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":5.0,"_pop_dependents_count":7,"_pop_score":41.12,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/README.rst","_readme_localurl":"sentinelsat~sentinelsat~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/requirements.txt","https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/setup.py","https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/pyproject.toml"],"_requirements_localurls":["sentinelsat~sentinelsat~requirements.txt","sentinelsat~sentinelsat~setup.py","sentinelsat~sentinelsat~pyproject.toml"]},{"index":697,"category":"data","githuburl":"https://github.com/scholarly-python-package/scholarly","featured":null,"links":null,"description":null,"_repopath":"scholarly-python-package/scholarly","_reponame":"scholarly","_stars":834,"_forks":250,"_watches":24,"_topics":["scholar","googlescholar","scholarly-articles","scholarly-communications","python3","python-3","python","citation-network","citation-analysis","citations","citation-index","publication-data"],"_language":"Python","_homepage":"https://scholarly.readthedocs.io/","_description":"scholarly: Retrieve author and publication information from Google Scholar in a friendly, Pythonic way without having to worry about CAPTCHAs!","_organization":"scholarly-python-package","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2014-12-02T00:00:00.000Z","_age_weeks":419,"_stars_per_week":1.99,"_pop_contributor_count":43,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["newyorkuniversity","princetonuniversity","universityofalberta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.44,"_pop_updated_issues_count":28,"_pop_closed_issues_count":24,"_pop_created_since_days":98,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":28.0,"_pop_comment_count":68.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":3,"_pop_score":46.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/README.md","_readme_localurl":"scholarly-python-package~scholarly~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/requirements.txt","https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/setup.py","https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/pyproject.toml"],"_requirements_localurls":["scholarly-python-package~scholarly~requirements.txt","scholarly-python-package~scholarly~setup.py","scholarly-python-package~scholarly~pyproject.toml"]},{"index":639,"category":"ml","githuburl":"https://github.com/dask/dask-ml","featured":null,"links":null,"description":null,"_repopath":"dask/dask-ml","_reponame":"dask-ml","_stars":833,"_forks":236,"_watches":40,"_topics":["hacktoberfest"],"_language":"Python","_homepage":"http://ml.dask.org","_description":"dask-ml: Scalable Machine Learning with Dask","_organization":"dask","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-10-19T00:00:00.000Z","_created_at":"2017-06-15T00:00:00.000Z","_age_weeks":287,"_stars_per_week":2.9,"_pop_contributor_count":76,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["coiled","microsoft","voltrondata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.21,"_pop_updated_issues_count":22,"_pop_closed_issues_count":3,"_pop_created_since_days":67,"_pop_updated_since_days":2,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":22.0,"_pop_comment_count":28.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":68,"_pop_score":42.99,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dask/dask-ml/master/README.rst","_readme_localurl":"dask~dask-ml~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dask/dask-ml/master/setup.py"],"_requirements_localurls":["dask~dask-ml~setup.py"]},{"index":445,"category":"gis","githuburl":"https://github.com/pyproj4/pyproj","featured":null,"links":null,"description":null,"_repopath":"pyproj4/pyproj","_reponame":"pyproj","_stars":828,"_forks":189,"_watches":30,"_topics":["geospatial","python","coordinate-systems","coordinate-transformation","cartographic-projection","geodesic","hacktoberfest"],"_language":"Python","_homepage":"https://pyproj4.github.io/pyproj","_description":"pyproj: Python interface to PROJ (cartographic projections and coordinate transformations library)","_organization":"pyproj4","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2014-12-29T00:00:00.000Z","_age_weeks":416,"_stars_per_week":1.99,"_pop_contributor_count":58,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["corteva"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.6,"_pop_updated_issues_count":56,"_pop_closed_issues_count":40,"_pop_created_since_days":97,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":56.0,"_pop_comment_count":144.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":523,"_pop_score":53.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyproj4/pyproj/master/README.md","_readme_localurl":"pyproj4~pyproj~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyproj4/pyproj/master/setup.py","https://raw.githubusercontent.com/pyproj4/pyproj/master/pyproject.toml"],"_requirements_localurls":["pyproj4~pyproj~setup.py","pyproj4~pyproj~pyproject.toml"]},{"index":468,"category":"ml","githuburl":"https://github.com/huggingface/optimum","featured":null,"links":null,"description":null,"_repopath":"huggingface/optimum","_reponame":"optimum","_stars":825,"_forks":105,"_watches":39,"_topics":["onnx","pytorch","inference","training","intel","graphcore","onnxruntime","transformers","quantization","habana","optimization"],"_language":"Python","_homepage":"https://huggingface.co/docs/optimum/","_description":"optimum: \ud83c\udfce\ufe0f Accelerate training and inference of \ud83e\udd17 Transformers with easy to use hardware optimization tools","_organization":"huggingface","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2021-07-20T00:00:00.000Z","_age_weeks":73,"_stars_per_week":11.17,"_pop_contributor_count":37,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.21,"_pop_updated_issues_count":260,"_pop_closed_issues_count":187,"_pop_created_since_days":17,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":260.0,"_pop_comment_count":642.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":679,"_pop_score":52.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/optimum/master/README.md","_readme_localurl":"huggingface~optimum~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/optimum/master/setup.py","https://raw.githubusercontent.com/huggingface/optimum/master/pyproject.toml"],"_requirements_localurls":["huggingface~optimum~setup.py","huggingface~optimum~pyproject.toml"]},{"index":887,"category":"sim","githuburl":"https://github.com/pyscf/pyscf","featured":null,"links":null,"description":null,"_repopath":"pyscf/pyscf","_reponame":"pyscf","_stars":823,"_forks":439,"_watches":75,"_topics":[],"_language":"Python","_homepage":"","_description":"pyscf: Python module for quantum chemistry","_organization":"pyscf","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2014-05-02T00:00:00.000Z","_age_weeks":450,"_stars_per_week":1.83,"_pop_contributor_count":137,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["simuneatomisticss.l.","theohiostateuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.52,"_pop_updated_issues_count":148,"_pop_closed_issues_count":70,"_pop_created_since_days":105,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":148.0,"_pop_comment_count":217.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":660,"_pop_score":57.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyscf/pyscf/master/README.md","_readme_localurl":"pyscf~pyscf~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyscf/pyscf/master/setup.py"],"_requirements_localurls":["pyscf~pyscf~setup.py"]},{"index":712,"category":"ml","githuburl":"https://github.com/google-research/deeplab2","featured":null,"links":null,"description":null,"_repopath":"google-research/deeplab2","_reponame":"deeplab2","_stars":820,"_forks":138,"_watches":20,"_topics":[],"_language":"Python","_homepage":"","_description":"DeepLab2 is a TensorFlow library for deep labeling, aiming to provide a unified and state-of-the-art TensorFlow codebase for dense pixel labeling tasks.","_organization":"google-research","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-05T00:00:00.000Z","_created_at":"2021-05-12T00:00:00.000Z","_age_weeks":83,"_stars_per_week":9.8,"_pop_contributor_count":11,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["johnshopkinsuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.83,"_pop_updated_issues_count":24,"_pop_closed_issues_count":6,"_pop_created_since_days":20,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":24.0,"_pop_comment_count":44.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":3,"_pop_score":27.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google-research/deeplab2/master/README.md","_readme_localurl":"google-research~deeplab2~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":850,"category":"util","githuburl":"https://github.com/wolph/python-progressbar","featured":null,"links":null,"description":null,"_repopath":"wolph/python-progressbar","_reponame":"python-progressbar","_stars":795,"_forks":95,"_watches":22,"_topics":["python","progressbar","progress-bar","rate","eta","percentage","console","terminal","time","progress","bar","cli","gui","library"],"_language":"Python","_homepage":"http://progressbar-2.readthedocs.org/en/latest/","_description":"python-progressbar: Progressbar 2 - A progress bar for Python 2 and Python 3 - \"pip install progressbar2\"","_organization":"wolph","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-08T00:00:00.000Z","_created_at":"2012-02-20T00:00:00.000Z","_age_weeks":565,"_stars_per_week":1.41,"_pop_contributor_count":42,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cslab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.13,"_pop_updated_issues_count":14,"_pop_closed_issues_count":11,"_pop_created_since_days":132,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":14.0,"_pop_comment_count":45.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.2,"_pop_dependents_count":381,"_pop_score":50.05,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/wolph/python-progressbar/master/README.rst","_readme_localurl":"wolph~python-progressbar~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/wolph/python-progressbar/master/setup.py"],"_requirements_localurls":["wolph~python-progressbar~setup.py"]},{"index":395,"category":"web","githuburl":"https://github.com/emmett-framework/emmett","featured":null,"links":null,"description":null,"_repopath":"emmett-framework/emmett","_reponame":"emmett","_stars":794,"_forks":63,"_watches":30,"_topics":["python","web-framework","asgi","asyncio","emmett"],"_language":"Python","_homepage":"","_description":"emmett: The web framework for inventors","_organization":"emmett-framework","_updated_at":"2022-12-10T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2014-10-20T00:00:00.000Z","_age_weeks":426,"_stars_per_week":1.86,"_pop_contributor_count":21,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cashbee-team","lawstudent","ostrovok.ru"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.83,"_pop_updated_issues_count":8,"_pop_closed_issues_count":5,"_pop_created_since_days":99,"_pop_updated_since_days":1,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":8.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":12,"_pop_score":38.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/emmett-framework/emmett/master/README.md","_readme_localurl":"emmett-framework~emmett~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/emmett-framework/emmett/master/pyproject.toml"],"_requirements_localurls":["emmett-framework~emmett~pyproject.toml"]},{"index":490,"category":"viz","githuburl":"https://github.com/luispedro/mahotas","featured":null,"links":null,"description":null,"_repopath":"luispedro/mahotas","_reponame":"mahotas","_stars":788,"_forks":149,"_watches":47,"_topics":["computer-vision","numpy","python","c-plus-plus","python-2","python-3"],"_language":"Python","_homepage":"https://mahotas.rtfd.io","_description":"mahotas: Computer Vision in Python","_organization":"luispedro","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-14T00:00:00.000Z","_created_at":"2010-01-31T00:00:00.000Z","_age_weeks":672,"_stars_per_week":1.17,"_pop_contributor_count":32,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["fudanuniversity","theexclosure"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":157,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":3.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":52,"_pop_score":38.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/luispedro/mahotas/master/README.md","_readme_localurl":"luispedro~mahotas~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/luispedro/mahotas/master/requirements.txt","https://raw.githubusercontent.com/luispedro/mahotas/master/setup.py"],"_requirements_localurls":["luispedro~mahotas~requirements.txt","luispedro~mahotas~setup.py"]},{"index":891,"category":"util","githuburl":"https://github.com/xl0/lovely-tensors","featured":null,"links":null,"description":null,"_repopath":"xl0/lovely-tensors","_reponame":"lovely-tensors","_stars":788,"_forks":11,"_watches":6,"_topics":["deep-learning","library","pytorch","statistics","visualization"],"_language":"Jupyter Notebook","_homepage":"https://xl0.github.io/lovely-tensors","_description":"lovely-tensors: Tensors, ready for human consumption","_organization":"xl0","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2022-10-07T00:00:00.000Z","_age_weeks":10,"_stars_per_week":75.56,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.48,"_pop_updated_issues_count":14,"_pop_closed_issues_count":8,"_pop_created_since_days":2,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":79,"_pop_recent_releases_adjusted_count":79,"_pop_issue_count":14.0,"_pop_comment_count":80.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":5.7,"_pop_dependents_count":0,"_pop_score":23.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/xl0/lovely-tensors/master/README.md","_readme_localurl":"xl0~lovely-tensors~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/xl0/lovely-tensors/master/setup.py"],"_requirements_localurls":["xl0~lovely-tensors~setup.py"]},{"index":226,"category":"sim","githuburl":"https://github.com/facebookresearch/droidlet","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/droidlet","_reponame":"fairo","_stars":785,"_forks":80,"_watches":38,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"fairo: A modular embodied agent architecture and platform for building embodied agents","_organization":"facebookresearch","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2020-11-02T00:00:00.000Z","_age_weeks":111,"_stars_per_week":7.07,"_pop_contributor_count":43,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebookairesearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.77,"_pop_updated_issues_count":41,"_pop_closed_issues_count":27,"_pop_created_since_days":26,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":41.0,"_pop_comment_count":86.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":108,"_pop_score":42.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/droidlet/master/README.md","_readme_localurl":"facebookresearch~droidlet~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/droidlet/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/droidlet/master/setup.py","https://raw.githubusercontent.com/facebookresearch/droidlet/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~droidlet~requirements.txt","facebookresearch~droidlet~setup.py","facebookresearch~droidlet~pyproject.toml"]},{"index":351,"category":"ml","githuburl":"https://github.com/jina-ai/finetuner","featured":null,"links":null,"description":null,"_repopath":"jina-ai/finetuner","_reponame":"finetuner","_stars":771,"_forks":39,"_watches":21,"_topics":["fine-tuning","pretrained-models","few-shot-learning","negative-sampling","metric-learning","siamese-network","triplet-loss","transfer-learning","jina","neural-search","finetuning","similarity-learning"],"_language":"Python","_homepage":"https://finetuner.jina.ai","_description":"finetuner: :dart: Task-oriented finetuning for better embeddings on neural search","_organization":"jina-ai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2021-08-11T00:00:00.000Z","_age_weeks":70,"_stars_per_week":10.9,"_pop_contributor_count":32,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["jina-ai","jinaai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.73,"_pop_updated_issues_count":99,"_pop_closed_issues_count":89,"_pop_created_since_days":16,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":99.0,"_pop_comment_count":117.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":39.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jina-ai/finetuner/master/README.md","_readme_localurl":"jina-ai~finetuner~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jina-ai/finetuner/master/setup.py","https://raw.githubusercontent.com/jina-ai/finetuner/master/pyproject.toml"],"_requirements_localurls":["jina-ai~finetuner~setup.py","jina-ai~finetuner~pyproject.toml"]},{"index":738,"category":"perf","githuburl":"https://github.com/zerointensity/pointers.py","featured":null,"links":null,"description":null,"_repopath":"zerointensity/pointers.py","_reponame":"pointers.py","_stars":766,"_forks":9,"_watches":3,"_topics":["python","pointers","python-pointers"],"_language":"Python","_homepage":"https://pointers.zintensity.dev/","_description":"pointers.py: Bringing the hell of pointers to Python.","_organization":"zerointensity","_updated_at":"2022-12-08T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2022-03-09T00:00:00.000Z","_age_weeks":40,"_stars_per_week":18.81,"_pop_contributor_count":7,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["royalbankofcanada"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.21,"_pop_updated_issues_count":3,"_pop_closed_issues_count":3,"_pop_created_since_days":9,"_pop_updated_since_days":1,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":3.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":2,"_pop_score":25.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zerointensity/pointers.py/master/README.md","_readme_localurl":"zerointensity~pointers.py~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/zerointensity/pointers.py/master/requirements.txt","https://raw.githubusercontent.com/zerointensity/pointers.py/master/setup.py","https://raw.githubusercontent.com/zerointensity/pointers.py/master/pyproject.toml"],"_requirements_localurls":["zerointensity~pointers.py~requirements.txt","zerointensity~pointers.py~setup.py","zerointensity~pointers.py~pyproject.toml"]},{"index":810,"category":"data","githuburl":"https://github.com/neo4j/neo4j-python-driver","featured":null,"links":null,"description":null,"_repopath":"neo4j/neo4j-python-driver","_reponame":"neo4j-python-driver","_stars":759,"_forks":167,"_watches":99,"_topics":["python","graph-database","driver","neo4j","database-driver","protocol","cypher","query-language","python3","binary-protocol"],"_language":"Python","_homepage":"https://neo4j.com/docs/api/python-driver/current/","_description":"neo4j-python-driver: Neo4j Bolt driver for Python","_organization":"neo4j","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2015-05-05T00:00:00.000Z","_age_weeks":397,"_stars_per_week":1.91,"_pop_contributor_count":41,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["elastic","neo4j"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.94,"_pop_updated_issues_count":80,"_pop_closed_issues_count":75,"_pop_created_since_days":93,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":80.0,"_pop_comment_count":48.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":74,"_pop_score":50.12,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/neo4j/neo4j-python-driver/master/README.rst","_readme_localurl":"neo4j~neo4j-python-driver~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/neo4j/neo4j-python-driver/master/requirements.txt","https://raw.githubusercontent.com/neo4j/neo4j-python-driver/master/setup.py","https://raw.githubusercontent.com/neo4j/neo4j-python-driver/master/pyproject.toml"],"_requirements_localurls":["neo4j~neo4j-python-driver~requirements.txt","neo4j~neo4j-python-driver~setup.py","neo4j~neo4j-python-driver~pyproject.toml"]},{"index":146,"category":"util","githuburl":"https://github.com/zenodo/zenodo","featured":null,"links":null,"description":null,"_repopath":"zenodo/zenodo","_reponame":"zenodo","_stars":752,"_forks":225,"_watches":38,"_topics":["zenodo","invenio","python","research-data-repository","research-data-management","flask","digital-library","open-science","open-access","scientific-publications","library-management","elasticsearch","postgresql","inveniosoftware"],"_language":"Python","_homepage":"https://zenodo.org","_description":"zenodo: Research. Shared.","_organization":"zenodo","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2013-02-11T00:00:00.000Z","_age_weeks":514,"_stars_per_week":1.46,"_pop_contributor_count":65,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cern","protonmail","skribble"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.52,"_pop_updated_issues_count":66,"_pop_closed_issues_count":36,"_pop_created_since_days":120,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":42,"_pop_recent_releases_adjusted_count":42,"_pop_issue_count":66.0,"_pop_comment_count":44.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":150,"_pop_score":54.24,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/zenodo/zenodo/master/README.rst","_readme_localurl":"zenodo~zenodo~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/zenodo/zenodo/master/requirements.txt","https://raw.githubusercontent.com/zenodo/zenodo/master/setup.py"],"_requirements_localurls":["zenodo~zenodo~requirements.txt","zenodo~zenodo~setup.py"]},{"index":658,"category":"util","githuburl":"https://github.com/rasbt/watermark","featured":null,"links":null,"description":null,"_repopath":"rasbt/watermark","_reponame":"watermark","_stars":750,"_forks":83,"_watches":13,"_topics":["python","magic-extension","jupyter","ipython"],"_language":"Python","_homepage":null,"_description":"watermark: An IPython magic extension for printing date and time stamps, version numbers, and hardware information","_organization":"rasbt","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-09-13T00:00:00.000Z","_created_at":"2014-07-30T00:00:00.000Z","_age_weeks":437,"_stars_per_week":1.71,"_pop_contributor_count":17,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["brabantwater","capgeminiengineering","drivendata","lightning-ai,universityofwisconsin-madison"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":102,"_pop_updated_since_days":3,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":2.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":94,"_pop_score":38.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/watermark/master/README.md","_readme_localurl":"rasbt~watermark~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rasbt/watermark/master/setup.py"],"_requirements_localurls":["rasbt~watermark~setup.py"]},{"index":334,"category":"util","githuburl":"https://github.com/clarete/forbiddenfruit","featured":null,"links":null,"description":null,"_repopath":"clarete/forbiddenfruit","_reponame":"forbiddenfruit","_stars":750,"_forks":50,"_watches":28,"_topics":["python","monkey-patching"],"_language":"Python","_homepage":"https://clarete.li/forbiddenfruit/","_description":"forbiddenfruit: Patch built-in python objects","_organization":"clarete","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-03-12T00:00:00.000Z","_created_at":"2013-04-03T00:00:00.000Z","_age_weeks":506,"_stars_per_week":1.48,"_pop_contributor_count":15,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bitdeli","django,djangolondon"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":118,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":21.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/clarete/forbiddenfruit/master/README.md","_readme_localurl":"clarete~forbiddenfruit~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/clarete/forbiddenfruit/master/setup.py"],"_requirements_localurls":["clarete~forbiddenfruit~setup.py"]},{"index":791,"category":"sim","githuburl":"https://github.com/viblo/pymunk","featured":1.0,"links":null,"description":null,"_repopath":"viblo/pymunk","_reponame":"pymunk","_stars":733,"_forks":179,"_watches":21,"_topics":["python","physics-2d","library","pygame","pyglet","physics-engine","physics-simulation","python-library"],"_language":"Python","_homepage":"http://www.pymunk.org","_description":"Pymunk is a easy-to-use pythonic 2d physics library that can be used whenever you need 2d rigid body physics from Python","_organization":"viblo","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2013-10-02T00:00:00.000Z","_age_weeks":480,"_stars_per_week":1.52,"_pop_contributor_count":17,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["blksail","google","skamrahlitsolutions"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.02,"_pop_updated_issues_count":7,"_pop_closed_issues_count":7,"_pop_created_since_days":112,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":7.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":22,"_pop_score":43.47,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/viblo/pymunk/master/README.rst","_readme_localurl":"viblo~pymunk~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/viblo/pymunk/master/setup.py","https://raw.githubusercontent.com/viblo/pymunk/master/pyproject.toml"],"_requirements_localurls":["viblo~pymunk~setup.py","viblo~pymunk~pyproject.toml"]},{"index":634,"category":"profiling","githuburl":"https://github.com/csurfer/pyheat","featured":null,"links":null,"description":null,"_repopath":"csurfer/pyheat","_reponame":"pyheat","_stars":733,"_forks":41,"_watches":13,"_topics":["profiling","python","heatmap","matplotlib"],"_language":"Python","_homepage":"","_description":"pyheat: pprofile + matplotlib = Python program profiled as an awesome heatmap!","_organization":"csurfer","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2021-09-18T00:00:00.000Z","_created_at":"2017-02-04T00:00:00.000Z","_age_weeks":306,"_stars_per_week":2.39,"_pop_contributor_count":5,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["citrix","lyft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":71,"_pop_updated_since_days":15,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":14.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/csurfer/pyheat/master/README.md","_readme_localurl":"csurfer~pyheat~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/csurfer/pyheat/master/requirements.txt","https://raw.githubusercontent.com/csurfer/pyheat/master/setup.py"],"_requirements_localurls":["csurfer~pyheat~requirements.txt","csurfer~pyheat~setup.py"]},{"index":853,"category":"data","githuburl":"https://github.com/eliasdabbas/advertools","featured":null,"links":null,"description":null,"_repopath":"eliasdabbas/advertools","_reponame":"advertools","_stars":732,"_forks":158,"_watches":33,"_topics":["marketing","advertising","adwords","python","digital-marketing","online-marketing","keywords","search-engine-marketing","twitter-api","search-engine-optimization","seo","serp","social-media","youtube","robots-txt","scrapy","seo-crawler","log-analysis","google-ads","logfile-parser"],"_language":"Python","_homepage":"https://advertools.readthedocs.io","_description":"advertools - online marketing productivity and analysis tools","_organization":"eliasdabbas","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2017-05-14T00:00:00.000Z","_age_weeks":292,"_stars_per_week":2.51,"_pop_contributor_count":7,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["github","pyupio","themediasupermarket"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.17,"_pop_updated_issues_count":19,"_pop_closed_issues_count":16,"_pop_created_since_days":68,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":19.0,"_pop_comment_count":32.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":71,"_pop_score":44.28,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/eliasdabbas/advertools/master/README.rst","_readme_localurl":"eliasdabbas~advertools~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/eliasdabbas/advertools/master/setup.py","https://raw.githubusercontent.com/eliasdabbas/advertools/master/pyproject.toml"],"_requirements_localurls":["eliasdabbas~advertools~setup.py","eliasdabbas~advertools~pyproject.toml"]},{"index":828,"category":"sim","githuburl":"https://github.com/farama-foundation/gymnasium","featured":null,"links":null,"description":null,"_repopath":"farama-foundation/gymnasium","_reponame":"Gymnasium","_stars":725,"_forks":87,"_watches":11,"_topics":[],"_language":"Python","_homepage":"https://gymnasium.farama.org","_description":"Gymnasium: A standard API for reinforcement learning and a diverse set of reference environments (formerly Gym)","_organization":"farama-foundation","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2022-09-08T00:00:00.000Z","_age_weeks":14,"_stars_per_week":49.75,"_pop_contributor_count":395,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.46,"_pop_updated_issues_count":208,"_pop_closed_issues_count":170,"_pop_created_since_days":3,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":20,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":208.0,"_pop_comment_count":322.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":4,"_pop_score":40.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/farama-foundation/gymnasium/master/README.md","_readme_localurl":"farama-foundation~gymnasium~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/farama-foundation/gymnasium/master/setup.py","https://raw.githubusercontent.com/farama-foundation/gymnasium/master/pyproject.toml"],"_requirements_localurls":["farama-foundation~gymnasium~setup.py","farama-foundation~gymnasium~pyproject.toml"]},{"index":291,"category":"pandas","githuburl":"https://github.com/stitchfix/hamilton","featured":null,"links":null,"description":null,"_repopath":"stitchfix/hamilton","_reponame":"hamilton","_stars":719,"_forks":36,"_watches":21,"_topics":["python","pandas","dag","data-science","data-engineering","numpy","software-engineering","etl-framework","etl-pipeline","etl","feature-engineering","featurization","dataframe","stitch-fix","data-platform","hamilton","hamiltonian","machine-learning"],"_language":"Python","_homepage":"https://hamilton-docs.gitbook.io/docs/","_description":"hamilton: A scalable general purpose micro-framework for defining dataflows. You can use it to build dataframes, numpy matrices, python objects, ML models, etc.","_organization":"stitchfix","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2020-05-26T00:00:00.000Z","_age_weeks":133,"_stars_per_week":5.37,"_pop_contributor_count":14,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["spothero","stitchfix"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.1,"_pop_updated_issues_count":83,"_pop_closed_issues_count":41,"_pop_created_since_days":31,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":83.0,"_pop_comment_count":122.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":4,"_pop_score":41.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/stitchfix/hamilton/master/README.md","_readme_localurl":"stitchfix~hamilton~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/stitchfix/hamilton/master/requirements.txt","https://raw.githubusercontent.com/stitchfix/hamilton/master/setup.py"],"_requirements_localurls":["stitchfix~hamilton~requirements.txt","stitchfix~hamilton~setup.py"]},{"index":621,"category":"testing","githuburl":"https://github.com/wolever/parameterized","featured":null,"links":null,"description":null,"_repopath":"wolever/parameterized","_reponame":"parameterized","_stars":713,"_forks":94,"_watches":18,"_topics":[],"_language":"Python","_homepage":"","_description":"Parameterized testing with any Python test framework","_organization":"wolever","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2021-01-09T00:00:00.000Z","_created_at":"2012-03-10T00:00:00.000Z","_age_weeks":562,"_stars_per_week":1.27,"_pop_contributor_count":24,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["sheertex"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":131,"_pop_updated_since_days":24,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":3.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":89,"_pop_score":30.44,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/wolever/parameterized/master/README.rst","_readme_localurl":"wolever~parameterized~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/wolever/parameterized/master/setup.py"],"_requirements_localurls":["wolever~parameterized~setup.py"]},{"index":559,"category":"jupyter","githuburl":"https://github.com/vizzuhq/ipyvizzu","featured":null,"links":null,"description":null,"_repopath":"vizzuhq/ipyvizzu","_reponame":"ipyvizzu","_stars":711,"_forks":58,"_watches":16,"_topics":["jupyter","jupyter-notebook","python","plotting","graphs","data-visualization","graphing","ipython","chart","charts","dataviz","animation","storytelling","charting","vizzu"],"_language":"Python","_homepage":"https://ipyvizzu.vizzuhq.com","_description":"ipyvizzu: Build animated charts in Jupyter Notebook and in many other environments with a simple Python syntax.","_organization":"vizzuhq","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2022-01-05T00:00:00.000Z","_age_weeks":49,"_stars_per_week":14.3,"_pop_contributor_count":10,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["oneidentity(balabit)","vizzuhq"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.17,"_pop_updated_issues_count":22,"_pop_closed_issues_count":13,"_pop_created_since_days":12,"_pop_updated_since_days":0,"_pop_recent_releases_count":18,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":22.0,"_pop_comment_count":16.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":11,"_pop_score":38.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/README.md","_readme_localurl":"vizzuhq~ipyvizzu~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/requirements.txt","https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/setup.py"],"_requirements_localurls":["vizzuhq~ipyvizzu~requirements.txt","vizzuhq~ipyvizzu~setup.py"]},{"index":358,"category":"data","githuburl":"https://github.com/hyperqueryhq/whale","featured":null,"links":null,"description":null,"_repopath":"hyperqueryhq/whale","_reponame":"whale","_stars":711,"_forks":40,"_watches":42,"_topics":["data-documentation","data-catalog","data-discovery"],"_language":"Python","_homepage":"https://rsyi.gitbook.io/whale","_description":"whale: \ud83d\udc33 The stupidly simple CLI workspace for your data warehouse.","_organization":"hyperqueryhq","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-13T00:00:00.000Z","_created_at":"2020-05-27T00:00:00.000Z","_age_weeks":133,"_stars_per_week":5.32,"_pop_contributor_count":17,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dataframe","nttcommunications","shopify"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.17,"_pop_updated_issues_count":6,"_pop_closed_issues_count":3,"_pop_created_since_days":31,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":6.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":29.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hyperqueryhq/whale/master/README.md","_readme_localurl":"hyperqueryhq~whale~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":419,"category":"util","githuburl":"https://github.com/sethmmorton/natsort","featured":null,"links":null,"description":null,"_repopath":"sethmmorton/natsort","_reponame":"natsort","_stars":709,"_forks":40,"_watches":14,"_topics":["python","natural-sort","sorting-interface","sorting","natsort"],"_language":"Python","_homepage":"https://pypi.org/project/natsort/","_description":"natsort: Simple yet flexible natural sorting in Python.","_organization":"sethmmorton","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-09-01T00:00:00.000Z","_created_at":"2012-05-03T00:00:00.000Z","_age_weeks":554,"_stars_per_week":1.28,"_pop_contributor_count":20,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["dapulse","nordsoftware","pioneervalleybooks","siasol"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":129,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":3.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":178,"_pop_score":41.81,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sethmmorton/natsort/master/README.rst","_readme_localurl":"sethmmorton~natsort~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sethmmorton/natsort/master/setup.py"],"_requirements_localurls":["sethmmorton~natsort~setup.py"]},{"index":23,"category":"math","githuburl":"https://github.com/fredrik-johansson/mpmath","featured":null,"links":null,"description":null,"_repopath":"fredrik-johansson/mpmath","_reponame":"mpmath","_stars":707,"_forks":148,"_watches":40,"_topics":["python","arbitrary-precision","multiprecision","floating-point","special-functions","numerical-integration","numerical-methods","plotting","complex-numbers","ordinary-differential-equations","numerical-optimization"],"_language":"Python","_homepage":"http://mpmath.org","_description":"mpmath: Python library for arbitrary-precision floating-point arithmetic","_organization":"fredrik-johansson","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-07T00:00:00.000Z","_created_at":"2011-12-07T00:00:00.000Z","_age_weeks":575,"_stars_per_week":1.23,"_pop_contributor_count":47,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["inria&institutdemath\u00e9matiquesdebordeaux","quansight"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.27,"_pop_updated_issues_count":9,"_pop_closed_issues_count":3,"_pop_created_since_days":134,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":9.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":75,"_pop_score":40.6,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/fredrik-johansson/mpmath/master/README.rst","_readme_localurl":"fredrik-johansson~mpmath~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/fredrik-johansson/mpmath/master/setup.py"],"_requirements_localurls":["fredrik-johansson~mpmath~setup.py"]},{"index":593,"category":"gis","githuburl":"https://github.com/matplotlib/basemap","featured":null,"links":null,"description":null,"_repopath":"matplotlib/basemap","_reponame":"basemap","_stars":703,"_forks":396,"_watches":60,"_topics":["gis","maps","plots"],"_language":"Python","_homepage":"","_description":"basemap: Plot on map projections (with coastlines and political boundaries) using matplotlib","_organization":"matplotlib","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2011-02-19T00:00:00.000Z","_age_weeks":617,"_stars_per_week":1.14,"_pop_contributor_count":69,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["eccc","germanaerospacecenter(dlr)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.77,"_pop_updated_issues_count":24,"_pop_closed_issues_count":19,"_pop_created_since_days":144,"_pop_updated_since_days":1,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":24.0,"_pop_comment_count":40.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":606,"_pop_score":53.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/matplotlib/basemap/master/README.md","_readme_localurl":"matplotlib~basemap~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":701,"category":"profiling","githuburl":"https://github.com/pythonspeed/filprofiler","featured":null,"links":null,"description":null,"_repopath":"pythonspeed/filprofiler","_reponame":"filprofiler","_stars":700,"_forks":21,"_watches":9,"_topics":["python","memory-profiler","memory-profiling","memory-leak","memory-leaks","memory-leak-detection","memory-leak-finder","memory","memory-"],"_language":"Rust","_homepage":"https://pythonspeed.com/products/filmemoryprofiler/","_description":"filprofiler: A Python memory profiler for data processing and scientific computing applications","_organization":"pythonspeed","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2020-06-18T00:00:00.000Z","_age_weeks":130,"_stars_per_week":5.36,"_pop_contributor_count":6,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["algolia","hyphenatedenterprises","whalesalad"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.08,"_pop_updated_issues_count":61,"_pop_closed_issues_count":46,"_pop_created_since_days":30,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":61.0,"_pop_comment_count":58.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":6,"_pop_score":39.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pythonspeed/filprofiler/master/README.md","_readme_localurl":"pythonspeed~filprofiler~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pythonspeed/filprofiler/master/setup.py","https://raw.githubusercontent.com/pythonspeed/filprofiler/master/pyproject.toml"],"_requirements_localurls":["pythonspeed~filprofiler~setup.py","pythonspeed~filprofiler~pyproject.toml"]},{"index":325,"category":"security","githuburl":"https://github.com/trailofbits/pip-audit","featured":null,"links":null,"description":null,"_repopath":"trailofbits/pip-audit","_reponame":"pip-audit","_stars":696,"_forks":44,"_watches":19,"_topics":["security","security-audit","python","pip","supply-chain"],"_language":"Python","_homepage":"https://pypi.org/project/pip-audit/","_description":"pip-audit: Audits Python environments and dependency trees for known vulnerabilities","_organization":"trailofbits","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2021-09-02T00:00:00.000Z","_age_weeks":67,"_stars_per_week":10.3,"_pop_contributor_count":18,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["digitalr00ts","google","trailofbits"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.63,"_pop_updated_issues_count":77,"_pop_closed_issues_count":64,"_pop_created_since_days":16,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":30,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":77.0,"_pop_comment_count":183.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":95,"_pop_score":49.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/trailofbits/pip-audit/master/README.md","_readme_localurl":"trailofbits~pip-audit~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/trailofbits/pip-audit/master/pyproject.toml"],"_requirements_localurls":["trailofbits~pip-audit~pyproject.toml"]},{"index":477,"category":"pandas","githuburl":"https://github.com/holoviz/hvplot","featured":null,"links":null,"description":null,"_repopath":"holoviz/hvplot","_reponame":"hvplot","_stars":688,"_forks":78,"_watches":24,"_topics":["holoviz","holoviews","plotting","datashader"],"_language":"Python","_homepage":"https://hvplot.holoviz.org","_description":"hvplot: A high-level plotting API for pandas, dask, xarray, and networkx built on HoloViews","_organization":"holoviz","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2018-03-19T00:00:00.000Z","_age_weeks":248,"_stars_per_week":2.77,"_pop_contributor_count":39,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","azavea"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.21,"_pop_updated_issues_count":269,"_pop_closed_issues_count":74,"_pop_created_since_days":58,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":22,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":269.0,"_pop_comment_count":239.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":10,"_pop_score":43.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/hvplot/master/README.md","_readme_localurl":"holoviz~hvplot~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/hvplot/master/setup.py","https://raw.githubusercontent.com/holoviz/hvplot/master/pyproject.toml"],"_requirements_localurls":["holoviz~hvplot~setup.py","holoviz~hvplot~pyproject.toml"]},{"index":360,"category":"ml-ops","githuburl":"https://github.com/tensorflow/data-validation","featured":null,"links":null,"description":null,"_repopath":"tensorflow/data-validation","_reponame":"data-validation","_stars":686,"_forks":144,"_watches":48,"_topics":[],"_language":"Python","_homepage":"","_description":"data-validation: Library for exploring and validating machine learning data","_organization":"tensorflow","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-07-02T00:00:00.000Z","_age_weeks":233,"_stars_per_week":2.94,"_pop_contributor_count":25,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.98,"_pop_updated_issues_count":19,"_pop_closed_issues_count":13,"_pop_created_since_days":54,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":19.0,"_pop_comment_count":26.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":572,"_pop_score":47.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/data-validation/master/README.md","_readme_localurl":"tensorflow~data-validation~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorflow/data-validation/master/setup.py","https://raw.githubusercontent.com/tensorflow/data-validation/master/pyproject.toml"],"_requirements_localurls":["tensorflow~data-validation~setup.py","tensorflow~data-validation~pyproject.toml"]},{"index":168,"category":"gis","githuburl":"https://github.com/openeventdata/mordecai","featured":null,"links":null,"description":null,"_repopath":"openeventdata/mordecai","_reponame":"mordecai","_stars":684,"_forks":94,"_watches":35,"_topics":["geoparsing","geonames","nlp","geocoding","spacy","toponym-resolution"],"_language":"Python","_homepage":"","_description":"mordecai: Full text geoparsing as a Python library","_organization":"openeventdata","_updated_at":"2022-12-08T00:00:00.000Z","_last_commit_date":"2021-02-01T00:00:00.000Z","_created_at":"2016-06-23T00:00:00.000Z","_age_weeks":338,"_stars_per_week":2.02,"_pop_contributor_count":6,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["github","maxar","msupoliticalscience","phillymedia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":79,"_pop_updated_since_days":23,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":4,"_pop_score":24.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openeventdata/mordecai/master/README.md","_readme_localurl":"openeventdata~mordecai~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/openeventdata/mordecai/master/requirements.txt","https://raw.githubusercontent.com/openeventdata/mordecai/master/setup.py"],"_requirements_localurls":["openeventdata~mordecai~requirements.txt","openeventdata~mordecai~setup.py"]},{"index":572,"category":"gis","githuburl":"https://github.com/developmentseed/landsat-util","featured":null,"links":null,"description":null,"_repopath":"developmentseed/landsat-util","_reponame":"landsat-util","_stars":681,"_forks":155,"_watches":125,"_topics":[],"_language":"Python","_homepage":null,"_description":"landsat-util: A utility to search, download and process Landsat 8 satellite imagery","_organization":"developmentseed","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2018-07-30T00:00:00.000Z","_created_at":"2014-08-01T00:00:00.000Z","_age_weeks":437,"_stars_per_week":1.56,"_pop_contributor_count":24,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cloud-gov(work)+personalprojects;","developmentseed","element84","ledgy"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":102,"_pop_updated_since_days":53,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":11,"_pop_score":24.79,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/landsat-util/master/README.rst","_readme_localurl":"developmentseed~landsat-util~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/developmentseed/landsat-util/master/requirements.txt","https://raw.githubusercontent.com/developmentseed/landsat-util/master/setup.py"],"_requirements_localurls":["developmentseed~landsat-util~requirements.txt","developmentseed~landsat-util~setup.py"]},{"index":393,"category":"perf","githuburl":"https://github.com/klen/py-frameworks-bench","featured":null,"links":null,"description":null,"_repopath":"klen/py-frameworks-bench","_reponame":"py-frameworks-bench","_stars":673,"_forks":78,"_watches":28,"_topics":["benchmark","python-frameworks"],"_language":"Python","_homepage":"https://klen.github.io/py-frameworks-bench/","_description":"py-frameworks-bench: Another benchmark for some python frameworks","_organization":"klen","_updated_at":"2022-12-11T00:00:00.000Z","_last_commit_date":"2022-03-14T00:00:00.000Z","_created_at":"2015-04-30T00:00:00.000Z","_age_weeks":398,"_stars_per_week":1.69,"_pop_contributor_count":10,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["get-post-technology","home"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":17,"_pop_closed_issues_count":10,"_pop_created_since_days":93,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":17.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":25.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/klen/py-frameworks-bench/master/README.md","_readme_localurl":"klen~py-frameworks-bench~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":164,"category":"nlp","githuburl":"https://github.com/explosion/spacy-stanza","featured":null,"links":null,"description":null,"_repopath":"explosion/spacy-stanza","_reponame":"spacy-stanza","_stars":662,"_forks":50,"_watches":25,"_topics":["nlp","natural-language-processing","machine-learning","data-science","spacy","spacy-pipeline","stanford-nlp","stanford-corenlp","stanford-machine-learning","corenlp","stanza"],"_language":"Python","_homepage":"","_description":"spacy-stanza: \ud83d\udca5 Use the latest Stanza (StanfordNLP) research models directly in spaCy","_organization":"explosion","_updated_at":"2022-12-09T00:00:00.000Z","_last_commit_date":"2022-05-27T00:00:00.000Z","_created_at":"2019-01-31T00:00:00.000Z","_age_weeks":202,"_stars_per_week":3.27,"_pop_contributor_count":7,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["founderexplosion","graphext","lt3kuleuven"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":47,"_pop_updated_since_days":7,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":18.28,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/spacy-stanza/master/README.md","_readme_localurl":"explosion~spacy-stanza~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/explosion/spacy-stanza/master/requirements.txt","https://raw.githubusercontent.com/explosion/spacy-stanza/master/setup.py"],"_requirements_localurls":["explosion~spacy-stanza~requirements.txt","explosion~spacy-stanza~setup.py"]},{"index":483,"category":"gis","githuburl":"https://github.com/sentinel-hub/sentinelhub-py","featured":null,"links":null,"description":null,"_repopath":"sentinel-hub/sentinelhub-py","_reponame":"sentinelhub-py","_stars":655,"_forks":213,"_watches":48,"_topics":["python-library","sentinel-hub","aws","ogc-services","satellite-imagery"],"_language":"Python","_homepage":"http://sentinelhub-py.readthedocs.io/en/latest/","_description":"sentinelhub-py: Download and process satellite imagery in Python using Sentinel Hub services.","_organization":"sentinel-hub","_updated_at":"2022-12-11T00:00:00.000Z","_last_commit_date":"2022-10-06T00:00:00.000Z","_created_at":"2017-05-17T00:00:00.000Z","_age_weeks":291,"_stars_per_week":2.25,"_pop_contributor_count":40,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["eoresearchteamsinergise","google","sinergise"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.83,"_pop_updated_issues_count":29,"_pop_closed_issues_count":27,"_pop_created_since_days":68,"_pop_updated_since_days":2,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":29.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":335,"_pop_score":49.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sentinel-hub/sentinelhub-py/master/README.md","_readme_localurl":"sentinel-hub~sentinelhub-py~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sentinel-hub/sentinelhub-py/master/requirements.txt","https://raw.githubusercontent.com/sentinel-hub/sentinelhub-py/master/setup.py","https://raw.githubusercontent.com/sentinel-hub/sentinelhub-py/master/pyproject.toml"],"_requirements_localurls":["sentinel-hub~sentinelhub-py~requirements.txt","sentinel-hub~sentinelhub-py~setup.py","sentinel-hub~sentinelhub-py~pyproject.toml"]},{"index":818,"category":"ml","githuburl":"https://github.com/automl/tabpfn","featured":null,"links":null,"description":null,"_repopath":"automl/tabpfn","_reponame":"TabPFN","_stars":654,"_forks":44,"_watches":15,"_topics":[],"_language":"Python","_homepage":"https://arxiv.org/abs/2207.01848","_description":"TabPFN: Official implementation of the TabPFN and the tabpfn package.","_organization":"automl","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2022-07-01T00:00:00.000Z","_age_weeks":24,"_stars_per_week":26.77,"_pop_contributor_count":6,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["automl.org"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.31,"_pop_updated_issues_count":23,"_pop_closed_issues_count":22,"_pop_created_since_days":6,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":23.0,"_pop_comment_count":45.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":24.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/automl/tabpfn/master/README.md","_readme_localurl":"automl~tabpfn~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/automl/tabpfn/master/requirements.txt","https://raw.githubusercontent.com/automl/tabpfn/master/setup.py","https://raw.githubusercontent.com/automl/tabpfn/master/pyproject.toml"],"_requirements_localurls":["automl~tabpfn~requirements.txt","automl~tabpfn~setup.py","automl~tabpfn~pyproject.toml"]},{"index":620,"category":"jupyter","githuburl":"https://github.com/nbqa-dev/nbqa","featured":null,"links":null,"description":null,"_repopath":"nbqa-dev/nbqa","_reponame":"nbQA","_stars":646,"_forks":36,"_watches":7,"_topics":["python","jupyter-notebook","pre-commit","codequality","lint","isort","black","flake8","doctest","pyupgrade","pylint","mypy","yapf","pre-commit-hook"],"_language":"Python","_homepage":"https://nbqa.readthedocs.io/en/latest/index.html","_description":"nbQA: Run isort, pyupgrade, mypy, pylint, flake8, and more on Jupyter Notebooks","_organization":"nbqa-dev","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2020-07-11T00:00:00.000Z","_age_weeks":127,"_stars_per_week":5.08,"_pop_contributor_count":22,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quansight"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.19,"_pop_updated_issues_count":36,"_pop_closed_issues_count":31,"_pop_created_since_days":30,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":33,"_pop_recent_releases_adjusted_count":33,"_pop_issue_count":36.0,"_pop_comment_count":56.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":674,"_pop_score":48.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nbqa-dev/nbqa/master/README.md","_readme_localurl":"nbqa-dev~nbqa~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nbqa-dev/nbqa/master/setup.py","https://raw.githubusercontent.com/nbqa-dev/nbqa/master/pyproject.toml"],"_requirements_localurls":["nbqa-dev~nbqa~setup.py","nbqa-dev~nbqa~pyproject.toml"]},{"index":629,"category":"gis","githuburl":"https://github.com/makepath/xarray-spatial","featured":null,"links":null,"description":null,"_repopath":"makepath/xarray-spatial","_reponame":"xarray-spatial","_stars":645,"_forks":73,"_watches":25,"_topics":["python","raster-analysis","spatial-analysis","numba","datashader","xarray"],"_language":"Python","_homepage":"https://xarray-spatial.org","_description":"xarray-spatial: Raster-based Spatial Analytics for Python","_organization":"makepath","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-06-22T00:00:00.000Z","_created_at":"2020-02-08T00:00:00.000Z","_age_weeks":149,"_stars_per_week":4.32,"_pop_contributor_count":28,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","makepath"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.52,"_pop_updated_issues_count":82,"_pop_closed_issues_count":14,"_pop_created_since_days":35,"_pop_updated_since_days":6,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":82.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.1,"_pop_dependents_count":12,"_pop_score":33.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/makepath/xarray-spatial/master/README.md","_readme_localurl":"makepath~xarray-spatial~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/makepath/xarray-spatial/master/requirements.txt","https://raw.githubusercontent.com/makepath/xarray-spatial/master/setup.py","https://raw.githubusercontent.com/makepath/xarray-spatial/master/pyproject.toml"],"_requirements_localurls":["makepath~xarray-spatial~requirements.txt","makepath~xarray-spatial~setup.py","makepath~xarray-spatial~pyproject.toml"]},{"index":882,"category":"time-series","githuburl":"https://github.com/winedarksea/autots","featured":null,"links":null,"description":null,"_repopath":"winedarksea/autots","_reponame":"AutoTS","_stars":643,"_forks":60,"_watches":13,"_topics":["time-series","machine-learning","automl","autots","forecasting","deep-learning","preprocessing","feature-engineering"],"_language":"Python","_homepage":"","_description":"AutoTS: Automated Time Series Forecasting","_organization":"winedarksea","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2019-11-26T00:00:00.000Z","_age_weeks":159,"_stars_per_week":4.02,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.35,"_pop_updated_issues_count":5,"_pop_closed_issues_count":4,"_pop_created_since_days":37,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":5.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":5,"_pop_score":28.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/winedarksea/autots/master/README.md","_readme_localurl":"winedarksea~autots~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/winedarksea/autots/master/setup.py"],"_requirements_localurls":["winedarksea~autots~setup.py"]},{"index":475,"category":"viz","githuburl":"https://github.com/holoviz/holoviz","featured":1.0,"links":null,"description":null,"_repopath":"holoviz/holoviz","_reponame":"holoviz","_stars":636,"_forks":114,"_watches":35,"_topics":["holoviz","holoviews","geoviews","datashader","panel","hvplot","colorcet"],"_language":"Python","_homepage":"https://holoviz.org/","_description":"holoviz: High-level tools to simplify visualization in Python.","_organization":"holoviz","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2017-09-22T00:00:00.000Z","_age_weeks":273,"_stars_per_week":2.33,"_pop_contributor_count":21,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","azavea"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.46,"_pop_updated_issues_count":18,"_pop_closed_issues_count":8,"_pop_created_since_days":64,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":18.0,"_pop_comment_count":54.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":2,"_pop_score":40.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/holoviz/master/README.md","_readme_localurl":"holoviz~holoviz~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/holoviz/master/setup.py","https://raw.githubusercontent.com/holoviz/holoviz/master/pyproject.toml"],"_requirements_localurls":["holoviz~holoviz~setup.py","holoviz~holoviz~pyproject.toml"]},{"index":741,"category":"data","githuburl":"https://github.com/koaning/human-learn","featured":null,"links":null,"description":null,"_repopath":"koaning/human-learn","_reponame":"human-learn","_stars":635,"_forks":51,"_watches":13,"_topics":["scikit-learn","machine-learning","benchmark"],"_language":"Jupyter Notebook","_homepage":"https://koaning.github.io/human-learn/","_description":"human-learn: Natural Intelligence is still a pretty good idea.","_organization":"koaning","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-10-05T00:00:00.000Z","_created_at":"2020-07-11T00:00:00.000Z","_age_weeks":127,"_stars_per_week":4.99,"_pop_contributor_count":5,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["explosion","floryn","nttdatabusinesssolutions"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":30,"_pop_updated_since_days":15,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":13.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/koaning/human-learn/master/README.md","_readme_localurl":"koaning~human-learn~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/koaning/human-learn/master/setup.py"],"_requirements_localurls":["koaning~human-learn~setup.py"]},{"index":344,"category":"data","githuburl":"https://github.com/scikit-hep/awkward-1.0","featured":null,"links":null,"description":null,"_repopath":"scikit-hep/awkward-1.0","_reponame":"awkward","_stars":632,"_forks":64,"_watches":17,"_topics":["json","numpy","data-analysis","jagged-array","ragged-array","columnar-format","pandas","numba","apache-arrow","cern-root","scikit-hep","python"],"_language":"Python","_homepage":"https://awkward-array.org","_description":"awkward: Manipulate JSON-like data with NumPy-like idioms.","_organization":"scikit-hep","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-08-14T00:00:00.000Z","_age_weeks":174,"_stars_per_week":3.62,"_pop_contributor_count":35,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["princeton,iris-hep,pyhep,scikit-hep","purdueuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.04,"_pop_updated_issues_count":362,"_pop_closed_issues_count":309,"_pop_created_since_days":41,"_pop_updated_since_days":0,"_pop_recent_releases_count":42,"_pop_recent_releases_estimated_tags":61,"_pop_recent_releases_adjusted_count":42,"_pop_issue_count":362.0,"_pop_comment_count":923.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":26,"_pop_score":53.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scikit-hep/awkward-1.0/master/README.md","_readme_localurl":"scikit-hep~awkward-1.0~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scikit-hep/awkward-1.0/master/pyproject.toml"],"_requirements_localurls":["scikit-hep~awkward-1.0~pyproject.toml"]},{"index":637,"category":"util","githuburl":"https://github.com/samuelcolvin/python-devtools","featured":null,"links":null,"description":null,"_repopath":"samuelcolvin/python-devtools","_reponame":"python-devtools","_stars":631,"_forks":31,"_watches":8,"_topics":["python-devtools","python","devtools"],"_language":"Python","_homepage":"https://python-devtools.helpmanual.io/","_description":"python-devtools: Dev tools for python","_organization":"samuelcolvin","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2017-08-20T00:00:00.000Z","_age_weeks":278,"_stars_per_week":2.27,"_pop_contributor_count":10,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["pydantic","pyupio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":10,"_pop_closed_issues_count":4,"_pop_created_since_days":65,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":10.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":85,"_pop_score":38.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/samuelcolvin/python-devtools/master/README.md","_readme_localurl":"samuelcolvin~python-devtools~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/samuelcolvin/python-devtools/master/requirements.txt","https://raw.githubusercontent.com/samuelcolvin/python-devtools/master/pyproject.toml"],"_requirements_localurls":["samuelcolvin~python-devtools~requirements.txt","samuelcolvin~python-devtools~pyproject.toml"]},{"index":640,"category":"data","githuburl":"https://github.com/dask/fastparquet","featured":null,"links":null,"description":null,"_repopath":"dask/fastparquet","_reponame":"fastparquet","_stars":624,"_forks":161,"_watches":18,"_topics":["hacktoberfest"],"_language":"Python","_homepage":null,"_description":"fastparquet: python implementation of the parquet columnar file format.","_organization":"dask","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2015-11-06T00:00:00.000Z","_age_weeks":371,"_stars_per_week":1.68,"_pop_contributor_count":86,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","coiled","confluentinc","steminc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.06,"_pop_updated_issues_count":31,"_pop_closed_issues_count":25,"_pop_created_since_days":87,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":31.0,"_pop_comment_count":104.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.4,"_pop_dependents_count":75,"_pop_score":54.34,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dask/fastparquet/master/README.rst","_readme_localurl":"dask~fastparquet~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dask/fastparquet/master/requirements.txt","https://raw.githubusercontent.com/dask/fastparquet/master/setup.py","https://raw.githubusercontent.com/dask/fastparquet/master/pyproject.toml"],"_requirements_localurls":["dask~fastparquet~requirements.txt","dask~fastparquet~setup.py","dask~fastparquet~pyproject.toml"]},{"index":397,"category":"web","githuburl":"https://github.com/klen/muffin","featured":null,"links":null,"description":null,"_repopath":"klen/muffin","_reponame":"muffin","_stars":621,"_forks":25,"_watches":31,"_topics":["python","asyncio","trio","asgi","webframework","muffin","curio"],"_language":"Python","_homepage":"","_description":"Muffin is a fast, simple and asyncronous web-framework for Python 3","_organization":"klen","_updated_at":"2022-10-28T00:00:00.000Z","_last_commit_date":"2022-08-12T00:00:00.000Z","_created_at":"2015-02-03T00:00:00.000Z","_age_weeks":410,"_stars_per_week":1.51,"_pop_contributor_count":13,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["faceapp","home"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":96,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":42,"_pop_recent_releases_adjusted_count":42,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":14,"_pop_score":30.93,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/klen/muffin/master/README.rst","_readme_localurl":"klen~muffin~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/klen/muffin/master/setup.py"],"_requirements_localurls":["klen~muffin~setup.py"]},{"index":849,"category":"util","githuburl":"https://github.com/fsspec/s3fs","featured":null,"links":null,"description":null,"_repopath":"fsspec/s3fs","_reponame":"s3fs","_stars":621,"_forks":208,"_watches":21,"_topics":["hacktoberfest"],"_language":"Python","_homepage":"http://s3fs.readthedocs.io/en/latest/","_description":"s3fs: S3 Filesystem ","_organization":"fsspec","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2016-03-16T00:00:00.000Z","_age_weeks":352,"_stars_per_week":1.76,"_pop_contributor_count":108,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","coiled","fal-ai","microsoft","voltrondata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.88,"_pop_updated_issues_count":30,"_pop_closed_issues_count":17,"_pop_created_since_days":82,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":30.0,"_pop_comment_count":77.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":58,"_pop_score":54.7,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/fsspec/s3fs/master/README.rst","_readme_localurl":"fsspec~s3fs~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/fsspec/s3fs/master/requirements.txt","https://raw.githubusercontent.com/fsspec/s3fs/master/setup.py"],"_requirements_localurls":["fsspec~s3fs~requirements.txt","fsspec~s3fs~setup.py"]},{"index":760,"category":"study","githuburl":"https://github.com/jackhidary/quantumcomputingbook","featured":null,"links":null,"description":null,"_repopath":"jackhidary/quantumcomputingbook","_reponame":"quantumcomputingbook","_stars":614,"_forks":187,"_watches":54,"_topics":["quantum","quantum-computing","cirq","qiskit","rigetti","quantum-processor","sycamore","quantum-supremacy","quantum-information","quantum-information-science","google-quantum"],"_language":"Jupyter Notebook","_homepage":"","_description":"quantumcomputingbook: Companion site for the textbook Quantum Computing: An Applied Approach","_organization":"jackhidary","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-10-14T00:00:00.000Z","_created_at":"2019-02-28T00:00:00.000Z","_age_weeks":198,"_stars_per_week":3.09,"_pop_contributor_count":8,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":46,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":6,"_pop_score":21.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jackhidary/quantumcomputingbook/master/README.md","_readme_localurl":"jackhidary~quantumcomputingbook~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":18,"category":"nlp","githuburl":"https://github.com/explosion/spacy-streamlit","featured":null,"links":null,"description":null,"_repopath":"explosion/spacy-streamlit","_reponame":"spacy-streamlit","_stars":613,"_forks":102,"_watches":18,"_topics":["spacy","nlp","natural-language-processing","visualizers","dependency-parsing","part-of-speech-tagging","named-entity-recognition","ner","streamlit","visualizer","text-classification","word-vectors","tokenization","machine-learning"],"_language":"Python","_homepage":"https://share.streamlit.io/ines/spacy-streamlit-demo/master/app.py","_description":"spacy-streamlit: \ud83d\udc51 spaCy building blocks and visualizers for Streamlit apps","_organization":"explosion","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-08-23T00:00:00.000Z","_created_at":"2020-06-23T00:00:00.000Z","_age_weeks":129,"_stars_per_week":4.72,"_pop_contributor_count":12,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["explosion","founderexplosion"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.56,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":30,"_pop_updated_since_days":4,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":23.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/spacy-streamlit/master/README.md","_readme_localurl":"explosion~spacy-streamlit~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/explosion/spacy-streamlit/master/requirements.txt","https://raw.githubusercontent.com/explosion/spacy-streamlit/master/setup.py"],"_requirements_localurls":["explosion~spacy-streamlit~requirements.txt","explosion~spacy-streamlit~setup.py"]},{"index":839,"category":"util","githuburl":"https://github.com/idanya/algo-trader","featured":null,"links":null,"description":null,"_repopath":"idanya/algo-trader","_reponame":"algo-trader","_stars":610,"_forks":57,"_watches":21,"_topics":["algorithmic-trading","backtesting","crypto-bot","python","technical-analysis","trading-bot","trading-strategies"],"_language":"Python","_homepage":"","_description":"algo-trader: Trading bot with support for realtime trading, backtesting, custom strategies and much more.","_organization":"idanya","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2021-09-14T00:00:00.000Z","_age_weeks":65,"_stars_per_week":9.26,"_pop_contributor_count":4,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["fireblocks","scott'sdevelopment"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.5,"_pop_updated_issues_count":21,"_pop_closed_issues_count":17,"_pop_created_since_days":15,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":21.0,"_pop_comment_count":45.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":26.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/idanya/algo-trader/master/README.md","_readme_localurl":"idanya~algo-trader~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/idanya/algo-trader/master/requirements.txt"],"_requirements_localurls":["idanya~algo-trader~requirements.txt"]},{"index":595,"category":"gis","githuburl":"https://github.com/uber/h3-py","featured":null,"links":null,"description":null,"_repopath":"uber/h3-py","_reponame":"h3-py","_stars":601,"_forks":113,"_watches":34,"_topics":["uber","python","hexagonal-architecture","h3","geospatial","geocoding","gis"],"_language":"Python","_homepage":"https://uber.github.io/h3-py","_description":"h3-py: Python bindings for H3, a hierarchical hexagonal geospatial indexing system","_organization":"uber","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2018-06-12T00:00:00.000Z","_age_weeks":235,"_stars_per_week":2.55,"_pop_contributor_count":16,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["alantech","softwareengineer,uber","unfoldedinc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":22,"_pop_closed_issues_count":14,"_pop_created_since_days":55,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":22.0,"_pop_comment_count":50.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":149,"_pop_score":44.47,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/uber/h3-py/master/readme.md","_readme_localurl":"uber~h3-py~readme.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/h3-py/master/setup.py","https://raw.githubusercontent.com/uber/h3-py/master/pyproject.toml"],"_requirements_localurls":["uber~h3-py~setup.py","uber~h3-py~pyproject.toml"]},{"index":680,"category":"util","githuburl":"https://github.com/lukasschwab/arxiv.py","featured":null,"links":null,"description":null,"_repopath":"lukasschwab/arxiv.py","_reponame":"arxiv.py","_stars":588,"_forks":76,"_watches":16,"_topics":["arxiv","arxiv-api","python-wrapper","pdf"],"_language":"Python","_homepage":"","_description":"arxiv.py: Python wrapper for the arXiv API","_organization":"lukasschwab","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-09-12T00:00:00.000Z","_created_at":"2015-11-25T00:00:00.000Z","_age_weeks":368,"_stars_per_week":1.59,"_pop_contributor_count":13,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":86,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":3.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":383,"_pop_score":32.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lukasschwab/arxiv.py/master/README.md","_readme_localurl":"lukasschwab~arxiv.py~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lukasschwab/arxiv.py/master/requirements.txt","https://raw.githubusercontent.com/lukasschwab/arxiv.py/master/setup.py"],"_requirements_localurls":["lukasschwab~arxiv.py~requirements.txt","lukasschwab~arxiv.py~setup.py"]},{"index":796,"category":"graph","githuburl":"https://github.com/westhealth/pyvis","featured":null,"links":null,"description":null,"_repopath":"westhealth/pyvis","_reponame":"pyvis","_stars":582,"_forks":109,"_watches":13,"_topics":["network-visualization","python","networkx"],"_language":"HTML","_homepage":"http://pyvis.readthedocs.io/en/latest/","_description":"pyvis: Python package for creating and visualizing interactive network graphs.","_organization":"westhealth","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2018-05-10T00:00:00.000Z","_age_weeks":240,"_stars_per_week":2.42,"_pop_contributor_count":31,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["westhealth","westhealthinstitute"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.58,"_pop_updated_issues_count":37,"_pop_closed_issues_count":12,"_pop_created_since_days":56,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":37.0,"_pop_comment_count":28.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":24,"_pop_score":38.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/westhealth/pyvis/master/README.md","_readme_localurl":"westhealth~pyvis~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/westhealth/pyvis/master/requirements.txt","https://raw.githubusercontent.com/westhealth/pyvis/master/setup.py"],"_requirements_localurls":["westhealth~pyvis~requirements.txt","westhealth~pyvis~setup.py"]},{"index":505,"category":"gis","githuburl":"https://github.com/scikit-mobility/scikit-mobility","featured":null,"links":null,"description":null,"_repopath":"scikit-mobility/scikit-mobility","_reponame":"scikit-mobility","_stars":573,"_forks":130,"_watches":29,"_topics":["data-science","data-analysis","human-mobility","complex-systems","network-science","statistics","scikit-mobility","mobility-analysis","risk-assessment","mobility-flows","synthetic-flows"],"_language":"Python","_homepage":"https://scikit-mobility.github.io/scikit-mobility/","_description":"scikit-mobility: mobility analysis in Python","_organization":"scikit-mobility","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-06-13T00:00:00.000Z","_created_at":"2019-04-30T00:00:00.000Z","_age_weeks":189,"_stars_per_week":3.02,"_pop_contributor_count":21,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["argonnenationallaboratory","isti-cnr"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.67,"_pop_updated_issues_count":10,"_pop_closed_issues_count":1,"_pop_created_since_days":44,"_pop_updated_since_days":6,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":10.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":20,"_pop_score":30.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scikit-mobility/scikit-mobility/master/README.md","_readme_localurl":"scikit-mobility~scikit-mobility~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scikit-mobility/scikit-mobility/master/setup.py","https://raw.githubusercontent.com/scikit-mobility/scikit-mobility/master/pyproject.toml"],"_requirements_localurls":["scikit-mobility~scikit-mobility~setup.py","scikit-mobility~scikit-mobility~pyproject.toml"]},{"index":117,"category":"nlp","githuburl":"https://github.com/iclrandd/blackstone","featured":null,"links":null,"description":null,"_repopath":"iclrandd/blackstone","_reponame":"Blackstone","_stars":573,"_forks":93,"_watches":37,"_topics":["law","caselaw","nlp","spacy-models","legaltech"],"_language":"Python","_homepage":"https://research.iclr.co.uk","_description":"Blackstone: :black_circle: A spaCy pipeline and model for NLP on unstructured legal text.","_organization":"iclrandd","_updated_at":"2022-11-27T00:00:00.000Z","_last_commit_date":"2021-01-31T00:00:00.000Z","_created_at":"2019-03-25T00:00:00.000Z","_age_weeks":195,"_stars_per_week":2.94,"_pop_contributor_count":8,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["theincorporatedcounciloflawreportingforenglandandwales"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":45,"_pop_updated_since_days":23,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":11.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/iclrandd/blackstone/master/README.md","_readme_localurl":"iclrandd~blackstone~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/iclrandd/blackstone/master/setup.py"],"_requirements_localurls":["iclrandd~blackstone~setup.py"]},{"index":831,"category":"typing","githuburl":"https://github.com/python-attrs/cattrs","featured":null,"links":null,"description":null,"_repopath":"python-attrs/cattrs","_reponame":"cattrs","_stars":570,"_forks":82,"_watches":15,"_topics":["attrs","deserialization","serialization"],"_language":"Python","_homepage":null,"_description":"cattrs: Complex custom class converters for attrs.","_organization":"python-attrs","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2016-08-28T00:00:00.000Z","_age_weeks":329,"_stars_per_week":1.73,"_pop_contributor_count":44,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","pocketzworld"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.77,"_pop_updated_issues_count":33,"_pop_closed_issues_count":18,"_pop_created_since_days":77,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":33.0,"_pop_comment_count":90.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":73,"_pop_score":49.46,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/python-attrs/cattrs/master/README.rst","_readme_localurl":"python-attrs~cattrs~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-attrs/cattrs/master/pyproject.toml"],"_requirements_localurls":["python-attrs~cattrs~pyproject.toml"]},{"index":752,"category":"diffusion","githuburl":"https://github.com/sharonzhou/long_stable_diffusion","featured":null,"links":null,"description":null,"_repopath":"sharonzhou/long_stable_diffusion","_reponame":"long_stable_diffusion","_stars":569,"_forks":44,"_watches":13,"_topics":[],"_language":"Python","_homepage":"","_description":"long_stable_diffusion: Long-form text-to-images generation, using a pipeline of deep generative models (GPT-3 and Stable Diffusion)","_organization":"sharonzhou","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-10-30T00:00:00.000Z","_created_at":"2022-09-04T00:00:00.000Z","_age_weeks":15,"_stars_per_week":37.58,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["stanford"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":3,"_pop_closed_issues_count":2,"_pop_created_since_days":4,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":11.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sharonzhou/long_stable_diffusion/master/README.md","_readme_localurl":"sharonzhou~long_stable_diffusion~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/sharonzhou/long_stable_diffusion/master/requirements.txt"],"_requirements_localurls":["sharonzhou~long_stable_diffusion~requirements.txt"]},{"index":808,"category":"web","githuburl":"https://github.com/s3rius/fastapi-template","featured":null,"links":null,"description":null,"_repopath":"s3rius/fastapi-template","_reponame":"FastAPI-template","_stars":569,"_forks":51,"_watches":11,"_topics":["fastapi","cookiecutter","cookiecutter-template","cookiecutter-python3","sqlalchemy-orm","asynchronous","ormar","tortoise-orm","aerich","alembic","python3","asyncio","graphql","strawberry-graphql","opentelemetry","prometheus","sentry","fastapi-template","fastapi-boilerplate"],"_language":"Python","_homepage":"","_description":"FastAPI-template: Feature rich robust FastAPI template.","_organization":"s3rius","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2020-10-05T00:00:00.000Z","_age_weeks":115,"_stars_per_week":4.95,"_pop_contributor_count":12,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["fyndiq","gazprom-media","infosec"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.06,"_pop_updated_issues_count":26,"_pop_closed_issues_count":21,"_pop_created_since_days":27,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":26.0,"_pop_comment_count":63.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":37.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/s3rius/fastapi-template/master/README.md","_readme_localurl":"s3rius~fastapi-template~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/s3rius/fastapi-template/master/pyproject.toml"],"_requirements_localurls":["s3rius~fastapi-template~pyproject.toml"]},{"index":690,"category":"util","githuburl":"https://github.com/pyfpdf/fpdf2","featured":null,"links":null,"description":null,"_repopath":"pyfpdf/fpdf2","_reponame":"fpdf2","_stars":568,"_forks":152,"_watches":16,"_topics":["pdf-generation","pdf","python","hacktoberfest","barcode","pdf-library","python3","library","svg","markdown"],"_language":"Python","_homepage":"https://pyfpdf.github.io/fpdf2/","_description":"fpdf2: Simple PDF generation for Python","_organization":"pyfpdf","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2017-03-15T00:00:00.000Z","_age_weeks":300,"_stars_per_week":1.89,"_pop_contributor_count":81,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lymaconsulting","onapsis","sncfconnect&techvoyages-sncf-technologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.46,"_pop_updated_issues_count":87,"_pop_closed_issues_count":69,"_pop_created_since_days":70,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":87.0,"_pop_comment_count":296.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.4,"_pop_dependents_count":0,"_pop_score":49.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyfpdf/fpdf2/master/README.md","_readme_localurl":"pyfpdf~fpdf2~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyfpdf/fpdf2/master/setup.py"],"_requirements_localurls":["pyfpdf~fpdf2~setup.py"]},{"index":889,"category":"gis","githuburl":"https://github.com/osgeo/grass","featured":null,"links":null,"description":null,"_repopath":"osgeo/grass","_reponame":"grass","_stars":562,"_forks":209,"_watches":47,"_topics":["osgeo","grass-gis","geospatial","geospatial-analysis","raster","vector","timeseries-analysis","earth-observation","gis","hacktoberfest","open-science","remote-sensing","science","spatial"],"_language":"C","_homepage":"https://grass.osgeo.org","_description":"GRASS GIS - free and open source Geographic Information System (GIS)","_organization":"osgeo","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2019-05-17T00:00:00.000Z","_age_weeks":187,"_stars_per_week":3.0,"_pop_contributor_count":93,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["czechtechnicaluniversityinprague","mundialis","ncsu"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.92,"_pop_updated_issues_count":198,"_pop_closed_issues_count":117,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":37,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":198.0,"_pop_comment_count":394.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":187,"_pop_score":58.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/osgeo/grass/master/README.md","_readme_localurl":"osgeo~grass~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/osgeo/grass/master/pyproject.toml"],"_requirements_localurls":["osgeo~grass~pyproject.toml"]},{"index":167,"category":"nlp","githuburl":"https://github.com/lexpredict/lexpredict-lexnlp","featured":null,"links":null,"description":null,"_repopath":"lexpredict/lexpredict-lexnlp","_reponame":"lexpredict-lexnlp","_stars":557,"_forks":153,"_watches":49,"_topics":["nlp","ml","legal","legaltech","linguistics","law","contracts","analytics","data"],"_language":"HTML","_homepage":null,"_description":"lexpredict-lexnlp: LexNLP by LexPredict","_organization":"lexpredict","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-08-10T00:00:00.000Z","_created_at":"2017-09-30T00:00:00.000Z","_age_weeks":272,"_stars_per_week":2.05,"_pop_contributor_count":8,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bommaritoconsulting"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":5,"_pop_closed_issues_count":0,"_pop_created_since_days":64,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":5.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":17,"_pop_score":23.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lexpredict/lexpredict-lexnlp/master/README.md","_readme_localurl":"lexpredict~lexpredict-lexnlp~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lexpredict/lexpredict-lexnlp/master/setup.py"],"_requirements_localurls":["lexpredict~lexpredict-lexnlp~setup.py"]},{"index":567,"category":"sim","githuburl":"https://github.com/gboeing/pynamical","featured":null,"links":null,"description":null,"_repopath":"gboeing/pynamical","_reponame":"pynamical","_stars":551,"_forks":108,"_watches":32,"_topics":["chaos","nonlinear","fractal","logistic","visualization","modeling","animation","math","physics","python","pandas","numba","numpy","matplotlib","ipynb","bifurcation-diagram","fractals","systems","phase-diagram","cobweb-plot"],"_language":"Python","_homepage":"https://geoffboeing.com/publications/nonlinear-chaos-fractals-prediction/","_description":"Pynamical is a Python package for modeling and visualizing discrete nonlinear dynamical systems, chaos, and fractals.","_organization":"gboeing","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-05-24T00:00:00.000Z","_created_at":"2014-09-28T00:00:00.000Z","_age_weeks":429,"_stars_per_week":1.28,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["universityofsoutherncalifornia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":100,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":12.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gboeing/pynamical/master/README.md","_readme_localurl":"gboeing~pynamical~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gboeing/pynamical/master/requirements.txt","https://raw.githubusercontent.com/gboeing/pynamical/master/setup.py"],"_requirements_localurls":["gboeing~pynamical~requirements.txt","gboeing~pynamical~setup.py"]},{"index":259,"category":"crypto","githuburl":"https://github.com/pmaji/crypto-whale-watching-app","featured":null,"links":null,"description":null,"_repopath":"pmaji/crypto-whale-watching-app","_reponame":"crypto-whale-watching-app","_stars":548,"_forks":132,"_watches":48,"_topics":["gdax","python","cryptocurrency","ethereum","litecoin","bitcoin","cryptocurrency-exchanges","python3","dash","ethereum-blockchain","bitcoin-api","bitcoin-price","cryptocurrency-price-ticker","cryptocurrency-prices","litecoin-price","ethereum-price","gdax-api","gdax-python","plotly","plotly-dash"],"_language":"Python","_homepage":"","_description":"crypto-whale-watching-app: Python Dash app that tracks whale activity in cryptocurrency markets.","_organization":"pmaji","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-08T00:00:00.000Z","_created_at":"2018-01-23T00:00:00.000Z","_age_weeks":255,"_stars_per_week":2.14,"_pop_contributor_count":8,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["capitalone"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":2,"_pop_closed_issues_count":2,"_pop_created_since_days":60,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":21.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pmaji/crypto-whale-watching-app/master/README.md","_readme_localurl":"pmaji~crypto-whale-watching-app~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/pmaji/crypto-whale-watching-app/master/requirements.txt"],"_requirements_localurls":["pmaji~crypto-whale-watching-app~requirements.txt"]},{"index":235,"category":"nlp","githuburl":"https://github.com/salesforce/codet5","featured":null,"links":null,"description":null,"_repopath":"salesforce/codet5","_reponame":"CodeT5","_stars":547,"_forks":105,"_watches":18,"_topics":["language-model","code-intelligence","programming-language","representation-learning","nlp"],"_language":"Python","_homepage":"https://arxiv.org/abs/2109.00859","_description":"Code for CodeT5: a new code-aware pre-trained encoder-decoder model.","_organization":"salesforce","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-07-08T00:00:00.000Z","_created_at":"2021-08-16T00:00:00.000Z","_age_weeks":70,"_stars_per_week":7.81,"_pop_contributor_count":3,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["salesforceresearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":10,"_pop_closed_issues_count":3,"_pop_created_since_days":16,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":10.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":13.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/codet5/master/README.md","_readme_localurl":"salesforce~codet5~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":874,"category":"util","githuburl":"https://github.com/ipython/ipykernel","featured":null,"links":null,"description":null,"_repopath":"ipython/ipykernel","_reponame":"ipykernel","_stars":529,"_forks":335,"_watches":33,"_topics":["ipython","ipython-kernel","jupyter","python","closember","jupyter-notebook","kernel"],"_language":"Python","_homepage":"https://ipython.readthedocs.io/en/stable/","_description":"ipykernel: IPython Kernel for Jupyter","_organization":"ipython","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":401,"_stars_per_week":1.32,"_pop_contributor_count":161,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazonwebservices","mongodb","quansight-labs","simularesearchlaboratory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.9,"_pop_updated_issues_count":77,"_pop_closed_issues_count":59,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":29,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":29,"_pop_issue_count":77.0,"_pop_comment_count":132.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":1683,"_pop_score":65.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ipython/ipykernel/master/README.md","_readme_localurl":"ipython~ipykernel~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ipython/ipykernel/master/pyproject.toml"],"_requirements_localurls":["ipython~ipykernel~pyproject.toml"]},{"index":160,"category":"nlp","githuburl":"https://github.com/nipunsadvilkar/pysbd","featured":null,"links":null,"description":null,"_repopath":"nipunsadvilkar/pysbd","_reponame":"pySBD","_stars":528,"_forks":63,"_watches":10,"_topics":["sentence-boundary-detection","python","segmentation","rule-based","sentence-tokenizer","sentence"],"_language":"Python","_homepage":"","_description":"pySBD: \ud83d\udc0d\ud83d\udcafpySBD (Python Sentence Boundary Disambiguation) is a rule-based sentence boundary detection that works out-of-the-box.","_organization":"nipunsadvilkar","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-02-11T00:00:00.000Z","_created_at":"2017-06-11T00:00:00.000Z","_age_weeks":288,"_stars_per_week":1.83,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["explosion","gerulatatechnologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":67,"_pop_updated_since_days":22,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":2.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":5,"_pop_score":23.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nipunsadvilkar/pysbd/master/README.md","_readme_localurl":"nipunsadvilkar~pysbd~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nipunsadvilkar/pysbd/master/setup.py"],"_requirements_localurls":["nipunsadvilkar~pysbd~setup.py"]},{"index":625,"category":"gis","githuburl":"https://github.com/scitools/iris","featured":null,"links":null,"description":null,"_repopath":"scitools/iris","_reponame":"iris","_stars":527,"_forks":259,"_watches":44,"_topics":["iris","python","netcdf","grib","visualisation","data-analysis","earth-science","meteorology","oceanography","spaceweather"],"_language":"Python","_homepage":"https://scitools-iris.readthedocs.io/en/latest/","_description":"iris: A powerful, format-agnostic, and community-driven Python package for analysing and visualising Earth science data","_organization":"scitools","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2012-08-06T00:00:00.000Z","_age_weeks":541,"_stars_per_week":0.97,"_pop_contributor_count":99,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["metoffice"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.63,"_pop_updated_issues_count":257,"_pop_closed_issues_count":160,"_pop_created_since_days":126,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":257.0,"_pop_comment_count":387.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":46,"_pop_score":53.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scitools/iris/master/README.md","_readme_localurl":"scitools~iris~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scitools/iris/master/setup.py","https://raw.githubusercontent.com/scitools/iris/master/pyproject.toml"],"_requirements_localurls":["scitools~iris~setup.py","scitools~iris~pyproject.toml"]},{"index":516,"category":"ml-dl","githuburl":"https://github.com/kakaobrain/rq-vae-transformer","featured":null,"links":null,"description":null,"_repopath":"kakaobrain/rq-vae-transformer","_reponame":"rq-vae-transformer","_stars":521,"_forks":60,"_watches":15,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"rq-vae-transformer: The official implementation of Autoregressive Image Generation using Residual Quantization (CVPR '22)","_organization":"kakaobrain","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-08-18T00:00:00.000Z","_created_at":"2022-03-03T00:00:00.000Z","_age_weeks":41,"_stars_per_week":12.53,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["kakaobrain"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":3,"_pop_closed_issues_count":2,"_pop_created_since_days":10,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":12.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kakaobrain/rq-vae-transformer/master/README.md","_readme_localurl":"kakaobrain~rq-vae-transformer~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/kakaobrain/rq-vae-transformer/master/requirements.txt"],"_requirements_localurls":["kakaobrain~rq-vae-transformer~requirements.txt"]},{"index":685,"category":"ml","githuburl":"https://github.com/nvidia/cuda-python","featured":null,"links":null,"description":null,"_repopath":"nvidia/cuda-python","_reponame":"cuda-python","_stars":520,"_forks":39,"_watches":22,"_topics":[],"_language":"Python","_homepage":"https://nvidia.github.io/cuda-python/","_description":"cuda-python: CUDA Python Low-level Bindings","_organization":"nvidia","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2021-06-28T00:00:00.000Z","_age_weeks":77,"_stars_per_week":6.75,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.23,"_pop_updated_issues_count":18,"_pop_closed_issues_count":14,"_pop_created_since_days":18,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":18.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":3,"_pop_score":28.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nvidia/cuda-python/master/README.md","_readme_localurl":"nvidia~cuda-python~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nvidia/cuda-python/master/requirements.txt","https://raw.githubusercontent.com/nvidia/cuda-python/master/setup.py"],"_requirements_localurls":["nvidia~cuda-python~requirements.txt","nvidia~cuda-python~setup.py"]},{"index":576,"category":"util","githuburl":"https://github.com/fsspec/filesystem_spec","featured":null,"links":null,"description":null,"_repopath":"fsspec/filesystem_spec","_reponame":"filesystem_spec","_stars":520,"_forks":226,"_watches":21,"_topics":[],"_language":"Python","_homepage":null,"_description":"filesystem_spec: A specification that python filesystems should adhere to.","_organization":"fsspec","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2018-04-23T00:00:00.000Z","_age_weeks":243,"_stars_per_week":2.14,"_pop_contributor_count":165,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["abcellerabiologics","anaconda","fal-ai","microsoft","nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.67,"_pop_updated_issues_count":118,"_pop_closed_issues_count":84,"_pop_created_since_days":57,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":118.0,"_pop_comment_count":314.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":209,"_pop_score":61.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fsspec/filesystem_spec/master/README.md","_readme_localurl":"fsspec~filesystem_spec~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/fsspec/filesystem_spec/master/setup.py","https://raw.githubusercontent.com/fsspec/filesystem_spec/master/pyproject.toml"],"_requirements_localurls":["fsspec~filesystem_spec~setup.py","fsspec~filesystem_spec~pyproject.toml"]},{"index":665,"category":"study","githuburl":"https://github.com/rasbt/stat453-deep-learning-ss20","featured":null,"links":null,"description":null,"_repopath":"rasbt/stat453-deep-learning-ss20","_reponame":"stat453-deep-learning-ss20","_stars":518,"_forks":148,"_watches":36,"_topics":[],"_language":"Jupyter Notebook","_homepage":"http://pages.stat.wisc.edu/~sraschka/teaching/stat453-ss2020/","_description":"stat453-deep-learning-ss20: STAT 453: Intro to Deep Learning @ UW-Madison (Spring 2020)","_organization":"rasbt","_updated_at":"2022-11-30T00:00:00.000Z","_last_commit_date":"2020-05-01T00:00:00.000Z","_created_at":"2020-01-20T00:00:00.000Z","_age_weeks":152,"_stars_per_week":3.41,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lightning-ai,universityofwisconsin-madison"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":35,"_pop_updated_since_days":32,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":6,"_pop_score":11.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/stat453-deep-learning-ss20/master/README.md","_readme_localurl":"rasbt~stat453-deep-learning-ss20~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":306,"category":"crypto","githuburl":"https://github.com/palkeo/panoramix","featured":null,"links":null,"description":null,"_repopath":"palkeo/panoramix","_reponame":"panoramix","_stars":516,"_forks":142,"_watches":31,"_topics":[],"_language":"Python","_homepage":"","_description":"panoramix: Ethereum decompiler","_organization":"palkeo","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2020-08-22T00:00:00.000Z","_created_at":"2020-02-17T00:00:00.000Z","_age_weeks":148,"_stars_per_week":3.49,"_pop_contributor_count":4,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ethereum","eveem.org"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":5,"_pop_closed_issues_count":2,"_pop_created_since_days":34,"_pop_updated_since_days":28,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":5.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":16.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/palkeo/panoramix/master/README.md","_readme_localurl":"palkeo~panoramix~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/palkeo/panoramix/master/setup.py"],"_requirements_localurls":["palkeo~panoramix~setup.py"]},{"index":525,"category":"gis","githuburl":"https://github.com/toblerity/rtree","featured":null,"links":null,"description":null,"_repopath":"toblerity/rtree","_reponame":"rtree","_stars":515,"_forks":123,"_watches":30,"_topics":[],"_language":"Python","_homepage":"https://rtree.readthedocs.io/en/latest/","_description":"Rtree: spatial index for Python GIS \u00b6","_organization":"toblerity","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2011-06-19T00:00:00.000Z","_age_weeks":600,"_stars_per_week":0.86,"_pop_contributor_count":39,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["hobu","planetlabs","universityofillinoisaturbana-champaign","universityofutah"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.75,"_pop_updated_issues_count":11,"_pop_closed_issues_count":10,"_pop_created_since_days":140,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":11.0,"_pop_comment_count":26.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":25,"_pop_score":47.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/toblerity/rtree/master/README.md","_readme_localurl":"toblerity~rtree~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/toblerity/rtree/master/setup.py","https://raw.githubusercontent.com/toblerity/rtree/master/pyproject.toml"],"_requirements_localurls":["toblerity~rtree~setup.py","toblerity~rtree~pyproject.toml"]},{"index":883,"category":"time-series","githuburl":"https://github.com/autoviml/auto_ts","featured":null,"links":null,"description":null,"_repopath":"autoviml/auto_ts","_reponame":"Auto_TS","_stars":514,"_forks":92,"_watches":16,"_topics":["time-series","time-series-analysis","auto-timeseries","automl","autosklearn","tpot","autokeras","python3","prophet","python","sklearn","arima","auto-arima","auto-sklearn"],"_language":"Jupyter Notebook","_homepage":"","_description":"Auto_TS: Automatically build ARIMA, SARIMAX, VAR, FB Prophet and XGBoost Models on Time Series data sets with a Single Line of Code. Now updated with Dask to handle millions of rows.","_organization":"autoviml","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-08-16T00:00:00.000Z","_created_at":"2020-02-15T00:00:00.000Z","_age_weeks":148,"_stars_per_week":3.47,"_pop_contributor_count":6,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["o9solutions"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.27,"_pop_updated_issues_count":8,"_pop_closed_issues_count":3,"_pop_created_since_days":35,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":8.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":26,"_pop_score":27.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/autoviml/auto_ts/master/README.md","_readme_localurl":"autoviml~auto_ts~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/autoviml/auto_ts/master/requirements.txt","https://raw.githubusercontent.com/autoviml/auto_ts/master/setup.py"],"_requirements_localurls":["autoviml~auto_ts~requirements.txt","autoviml~auto_ts~setup.py"]},{"index":589,"category":"ml-ops","githuburl":"https://github.com/kedro-org/kedro-viz","featured":null,"links":null,"description":null,"_repopath":"kedro-org/kedro-viz","_reponame":"kedro-viz","_stars":510,"_forks":84,"_watches":9,"_topics":["kedro","kedro-plugin","data-visualization","hacktoberfest","react","experiment-tracking","python"],"_language":"JavaScript","_homepage":"https://demo.kedro.org/","_description":"kedro-viz: Visualise your Kedro data and machine-learning pipelines and track your experiments. ","_organization":"kedro-org","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-05-09T00:00:00.000Z","_age_weeks":188,"_stars_per_week":2.7,"_pop_contributor_count":38,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["kedro-org,quantumblacklabs","medshr"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.83,"_pop_updated_issues_count":149,"_pop_closed_issues_count":116,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":149.0,"_pop_comment_count":204.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":2,"_pop_score":44.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kedro-org/kedro-viz/master/README.md","_readme_localurl":"kedro-org~kedro-viz~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":413,"category":"util","githuburl":"https://github.com/bastibe/python-soundfile","featured":null,"links":null,"description":null,"_repopath":"bastibe/python-soundfile","_reponame":"python-soundfile","_stars":507,"_forks":85,"_watches":17,"_topics":[],"_language":"Python","_homepage":"","_description":"python-soundfile: SoundFile is an audio library based on libsndfile, CFFI, and NumPy","_organization":"bastibe","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-09-27T00:00:00.000Z","_created_at":"2013-08-27T00:00:00.000Z","_age_weeks":485,"_stars_per_week":1.04,"_pop_contributor_count":28,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quantco","self"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":30,"_pop_closed_issues_count":13,"_pop_created_since_days":113,"_pop_updated_since_days":3,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":30.0,"_pop_comment_count":99.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.3,"_pop_dependents_count":0,"_pop_score":37.3,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/bastibe/python-soundfile/master/README.rst","_readme_localurl":"bastibe~python-soundfile~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bastibe/python-soundfile/master/setup.py"],"_requirements_localurls":["bastibe~python-soundfile~setup.py"]},{"index":359,"category":"ml-ops","githuburl":"https://github.com/google/ml-metadata","featured":null,"links":null,"description":null,"_repopath":"google/ml-metadata","_reponame":"ml-metadata","_stars":502,"_forks":114,"_watches":27,"_topics":[],"_language":"C++","_homepage":"https://www.tensorflow.org/tfx/guide/mlmd","_description":"ml-metadata: For recording and retrieving metadata associated with ML developer and data scientist workflows.","_organization":"google","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2019-01-15T00:00:00.000Z","_age_weeks":204,"_stars_per_week":2.45,"_pop_contributor_count":15,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.56,"_pop_updated_issues_count":4,"_pop_closed_issues_count":2,"_pop_created_since_days":48,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":4.0,"_pop_comment_count":28.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":7.0,"_pop_dependents_count":20,"_pop_score":37.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/ml-metadata/master/README.md","_readme_localurl":"google~ml-metadata~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/google/ml-metadata/master/setup.py","https://raw.githubusercontent.com/google/ml-metadata/master/pyproject.toml"],"_requirements_localurls":["google~ml-metadata~setup.py","google~ml-metadata~pyproject.toml"]},{"index":671,"category":"ml","githuburl":"https://github.com/apple/ml-ane-transformers","featured":null,"links":null,"description":null,"_repopath":"apple/ml-ane-transformers","_reponame":"ml-ane-transformers","_stars":494,"_forks":26,"_watches":26,"_topics":[],"_language":"Python","_homepage":"","_description":"ml-ane-transformers: Reference implementation of the Transformer architecture optimized for Apple Neural Engine (ANE)","_organization":"apple","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-08-09T00:00:00.000Z","_created_at":"2022-06-03T00:00:00.000Z","_age_weeks":28,"_stars_per_week":17.38,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":7,"_pop_updated_since_days":4,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":5.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apple/ml-ane-transformers/master/README.md","_readme_localurl":"apple~ml-ane-transformers~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/apple/ml-ane-transformers/master/requirements.txt","https://raw.githubusercontent.com/apple/ml-ane-transformers/master/setup.py"],"_requirements_localurls":["apple~ml-ane-transformers~requirements.txt","apple~ml-ane-transformers~setup.py"]},{"index":241,"category":"ml","githuburl":"https://github.com/microsoft/focal-transformer","featured":null,"links":null,"description":null,"_repopath":"microsoft/focal-transformer","_reponame":"Focal-Transformer","_stars":487,"_forks":57,"_watches":17,"_topics":[],"_language":"Python","_homepage":"","_description":"Focal-Transformer: [NeurIPS 2021 Spotlight] Official code for \"Focal Self-attention for Local-Global Interactions in Vision Transformers\"","_organization":"microsoft","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-03-27T00:00:00.000Z","_created_at":"2021-07-10T00:00:00.000Z","_age_weeks":75,"_stars_per_week":6.47,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":18,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":2,"_pop_score":12.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/focal-transformer/master/README.md","_readme_localurl":"microsoft~focal-transformer~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":673,"category":"perf","githuburl":"https://github.com/brandtbucher/specialist","featured":null,"links":null,"description":null,"_repopath":"brandtbucher/specialist","_reponame":"specialist","_stars":485,"_forks":9,"_watches":9,"_topics":[],"_language":"Python","_homepage":"","_description":"specialist: Visualize CPython 3.11's specializing, adaptive interpreter. :fire:","_organization":"brandtbucher","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2022-06-01T00:00:00.000Z","_age_weeks":28,"_stars_per_week":16.89,"_pop_contributor_count":2,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["christianclauss","microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":7,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":3.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.7,"_pop_dependents_count":0,"_pop_score":26.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/brandtbucher/specialist/master/README.md","_readme_localurl":"brandtbucher~specialist~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/brandtbucher/specialist/master/setup.py"],"_requirements_localurls":["brandtbucher~specialist~setup.py"]},{"index":797,"category":"ml-interpretability","githuburl":"https://github.com/selfexplainml/piml-toolbox","featured":null,"links":null,"description":null,"_repopath":"selfexplainml/piml-toolbox","_reponame":"PiML-Toolbox","_stars":485,"_forks":52,"_watches":14,"_topics":["interpretable-machine-learning","low-code","ml-workflow","model-diagnostics"],"_language":"Jupyter Notebook","_homepage":"https://selfexplainml.github.io/PiML-Toolbox","_description":"PiML-Toolbox: PiML (Python Interpretable Machine Learning) toolbox for model development and model validation","_organization":"selfexplainml","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2022-04-29T00:00:00.000Z","_age_weeks":33,"_stars_per_week":14.51,"_pop_contributor_count":6,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cityuniversityofhongkong"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.02,"_pop_updated_issues_count":16,"_pop_closed_issues_count":13,"_pop_created_since_days":8,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":16.0,"_pop_comment_count":24.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":5,"_pop_score":32.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/selfexplainml/piml-toolbox/master/README.md","_readme_localurl":"selfexplainml~piml-toolbox~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":216,"category":"ml-ops","githuburl":"https://github.com/nccr-itmo/fedot","featured":null,"links":null,"description":null,"_repopath":"nccr-itmo/fedot","_reponame":"FEDOT","_stars":481,"_forks":63,"_watches":9,"_topics":["automl","machine-learning","evolutionary-algorithms","genetic-programming","structural-learning","automated-machine-learning","hyperparameter-optimization","parameter-tuning","automation","multimodality","fedot"],"_language":"Python","_homepage":"https://fedot.readthedocs.io","_description":"FEDOT: Automated modeling and machine learning framework FEDOT","_organization":"nccr-itmo","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2020-01-13T00:00:00.000Z","_age_weeks":153,"_stars_per_week":3.14,"_pop_contributor_count":26,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["itmouniversity","mail.rugroup","wiredhut"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.02,"_pop_updated_issues_count":175,"_pop_closed_issues_count":137,"_pop_created_since_days":36,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":175.0,"_pop_comment_count":167.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":40.61,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/nccr-itmo/fedot/master/README.rst","_readme_localurl":"nccr-itmo~fedot~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nccr-itmo/fedot/master/requirements.txt","https://raw.githubusercontent.com/nccr-itmo/fedot/master/setup.py"],"_requirements_localurls":["nccr-itmo~fedot~requirements.txt","nccr-itmo~fedot~setup.py"]},{"index":794,"category":"gis","githuburl":"https://github.com/kvos/coastsat","featured":null,"links":null,"description":null,"_repopath":"kvos/coastsat","_reponame":"CoastSat","_stars":480,"_forks":195,"_watches":23,"_topics":["google-earth-engine","earth-engine","remote-sensing","satellite-images","coastal-engineering","shoreline-detection"],"_language":"Jupyter Notebook","_homepage":"http://coastsat.wrl.unsw.edu.au/","_description":"CoastSat: Global shoreline mapping tool from satellite imagery","_organization":"kvos","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2018-09-28T00:00:00.000Z","_age_weeks":220,"_stars_per_week":2.18,"_pop_contributor_count":14,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["sacramentostate","unswsydney","usaceerdc-fieldresearchfacility","waterresearchlaboratory","waterresearchlaboratory(unsw)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.4,"_pop_updated_issues_count":53,"_pop_closed_issues_count":36,"_pop_created_since_days":51,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":53.0,"_pop_comment_count":109.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":17,"_pop_score":45.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kvos/coastsat/master/README.md","_readme_localurl":"kvos~coastsat~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":47,"category":"data","githuburl":"https://github.com/macbre/sql-metadata","featured":1.0,"links":null,"description":null,"_repopath":"macbre/sql-metadata","_reponame":"sql-metadata","_stars":478,"_forks":84,"_watches":15,"_topics":["sql","parser","database","sql-parser","metadata","sqlparse","python-package","python3-library","hiveql","hive","mysql-query"],"_language":"Python","_homepage":"https://pypi.python.org/pypi/sql-metadata","_description":"sql-metadata: Uses tokenized query returned by python-sqlparse and generates query metadata","_organization":"macbre","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2017-06-06T00:00:00.000Z","_age_weeks":288,"_stars_per_week":1.65,"_pop_contributor_count":13,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["automattic","kaizentech"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.0,"_pop_updated_issues_count":21,"_pop_closed_issues_count":15,"_pop_created_since_days":67,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":21.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":27,"_pop_score":38.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/macbre/sql-metadata/master/README.md","_readme_localurl":"macbre~sql-metadata~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/macbre/sql-metadata/master/pyproject.toml"],"_requirements_localurls":["macbre~sql-metadata~pyproject.toml"]},{"index":487,"category":"gis","githuburl":"https://github.com/fatiando/verde","featured":null,"links":null,"description":null,"_repopath":"fatiando/verde","_reponame":"verde","_stars":467,"_forks":60,"_watches":21,"_topics":["geophysics","earth-science","geospatial","python","scipy","interpolation","python3","scipy-stack","fatiando-a-terra","geoscience"],"_language":"Python","_homepage":"https://www.fatiando.org/verde","_description":"verde: Processing and interpolating spatial data with a twist of machine learning","_organization":"fatiando","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2018-04-25T00:00:00.000Z","_age_weeks":242,"_stars_per_week":1.92,"_pop_contributor_count":13,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["fatiando","fatiandoubcgifcompgeolabgeolatinas","spacescienceandengineeringcenter(ssec)","universityofliverpool"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.56,"_pop_updated_issues_count":29,"_pop_closed_issues_count":26,"_pop_created_since_days":57,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":29.0,"_pop_comment_count":21.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":15,"_pop_score":38.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fatiando/verde/master/README.md","_readme_localurl":"fatiando~verde~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/fatiando/verde/master/pyproject.toml"],"_requirements_localurls":["fatiando~verde~pyproject.toml"]},{"index":211,"category":"time-series","githuburl":"https://github.com/firmai/atspy","featured":null,"links":null,"description":null,"_repopath":"firmai/atspy","_reponame":"atspy","_stars":464,"_forks":88,"_watches":21,"_topics":["time-series","time-series-analysis","automated","python","forecasting","forecasting-models","finance"],"_language":"Python","_homepage":"https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3580631","_description":"AtsPy: Automated Time Series Models in Python (by @firmai)","_organization":"firmai","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2021-12-18T00:00:00.000Z","_created_at":"2020-01-28T00:00:00.000Z","_age_weeks":150,"_stars_per_week":3.08,"_pop_contributor_count":5,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["alanturinginstitute,firmai","ddosify"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":35,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":12,"_pop_score":19.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/firmai/atspy/master/README.md","_readme_localurl":"firmai~atspy~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/firmai/atspy/master/requirements.txt","https://raw.githubusercontent.com/firmai/atspy/master/setup.py"],"_requirements_localurls":["firmai~atspy~requirements.txt","firmai~atspy~setup.py"]},{"index":329,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/ppuda","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/ppuda","_reponame":"ppuda","_stars":459,"_forks":61,"_watches":17,"_topics":[],"_language":"Python","_homepage":null,"_description":"ppuda: Code for Parameter Prediction for Unseen Deep Architectures (NeurIPS 2021)","_organization":"facebookresearch","_updated_at":"2022-12-10T00:00:00.000Z","_last_commit_date":"2022-07-26T00:00:00.000Z","_created_at":"2021-10-21T00:00:00.000Z","_age_weeks":60,"_stars_per_week":7.58,"_pop_contributor_count":3,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["samsung-saitailab,montreal"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":14,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":16.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/ppuda/master/README.md","_readme_localurl":"facebookresearch~ppuda~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/ppuda/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/ppuda/master/setup.py","https://raw.githubusercontent.com/facebookresearch/ppuda/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~ppuda~requirements.txt","facebookresearch~ppuda~setup.py","facebookresearch~ppuda~pyproject.toml"]},{"index":497,"category":"ml-dl","githuburl":"https://github.com/mcahny/deep-video-inpainting","featured":null,"links":null,"description":null,"_repopath":"mcahny/deep-video-inpainting","_reponame":"Deep-Video-Inpainting","_stars":448,"_forks":86,"_watches":13,"_topics":[],"_language":"Python","_homepage":"","_description":"Deep-Video-Inpainting: Official pytorch implementation for \"Deep Video Inpainting\" (CVPR 2019)","_organization":"mcahny","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2020-12-10T00:00:00.000Z","_created_at":"2019-05-22T00:00:00.000Z","_age_weeks":186,"_stars_per_week":2.4,"_pop_contributor_count":3,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["kentech"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":44,"_pop_updated_since_days":25,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":2,"_pop_score":12.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mcahny/deep-video-inpainting/master/README.md","_readme_localurl":"mcahny~deep-video-inpainting~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":437,"category":"pandas","githuburl":"https://github.com/polyaxon/datatile","featured":null,"links":null,"description":null,"_repopath":"polyaxon/datatile","_reponame":"datatile","_stars":447,"_forks":40,"_watches":13,"_topics":["pandas","pandas-summary","dataframes","data-analysis","data-science","spark","dask","plotly","statistics","matplotlib","data-profiling","data-visualization","data-summary","data-reporting","data-exploration","dataops","mlops","data-quality","data-quality-monitoring","data-quality-checks"],"_language":"Python","_homepage":"","_description":"datatile: A library for managing, validating, summarizing, and visualizing data","_organization":"polyaxon","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2016-03-25T00:00:00.000Z","_age_weeks":351,"_stars_per_week":1.27,"_pop_contributor_count":10,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["hospiq","sidhulabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":82,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":23.52,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/polyaxon/datatile/master/README.md","_readme_localurl":"polyaxon~datatile~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":375,"category":"viz","githuburl":"https://github.com/vhranger/nodevectors","featured":null,"links":null,"description":null,"_repopath":"vhranger/nodevectors","_reponame":"nodevectors","_stars":445,"_forks":52,"_watches":11,"_topics":[],"_language":"Python","_homepage":"","_description":"nodevectors: Fastest network node embeddings in the west","_organization":"vhranger","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2021-11-06T00:00:00.000Z","_created_at":"2019-07-25T00:00:00.000Z","_age_weeks":177,"_stars_per_week":2.51,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["harvardmedicalschool","sap"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":41,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":16.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vhranger/nodevectors/master/README.md","_readme_localurl":"vhranger~nodevectors~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/vhranger/nodevectors/master/requirements.txt","https://raw.githubusercontent.com/vhranger/nodevectors/master/setup.py"],"_requirements_localurls":["vhranger~nodevectors~requirements.txt","vhranger~nodevectors~setup.py"]},{"index":479,"category":"gis","githuburl":"https://github.com/holoviz/geoviews","featured":null,"links":null,"description":null,"_repopath":"holoviz/geoviews","_reponame":"geoviews","_stars":442,"_forks":67,"_watches":30,"_topics":["holoviz","geoviews","holoviews","geographic-visualizations","cartopy","plotting"],"_language":"Python","_homepage":"http://geoviews.org","_description":"geoviews: Simple, concise geographical visualization in Python","_organization":"holoviz","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-12-07T00:00:00.000Z","_created_at":"2016-04-19T00:00:00.000Z","_age_weeks":347,"_stars_per_week":1.27,"_pop_contributor_count":28,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.69,"_pop_updated_issues_count":19,"_pop_closed_issues_count":11,"_pop_created_since_days":81,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":19.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":10,"_pop_score":38.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/geoviews/master/README.md","_readme_localurl":"holoviz~geoviews~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/geoviews/master/setup.py","https://raw.githubusercontent.com/holoviz/geoviews/master/pyproject.toml"],"_requirements_localurls":["holoviz~geoviews~setup.py","holoviz~geoviews~pyproject.toml"]},{"index":872,"category":"pandas","githuburl":"https://github.com/eventual-inc/daft","featured":null,"links":null,"description":null,"_repopath":"eventual-inc/daft","_reponame":"Daft","_stars":437,"_forks":12,"_watches":6,"_topics":["image-processing","machine-learning","python","data-engineering","data-science","dataframe","deep-learning","distributed-computing"],"_language":"Python","_homepage":"","_description":"Daft: The Python DataFrame for Complex Data","_organization":"eventual-inc","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2022-04-25T00:00:00.000Z","_age_weeks":34,"_stars_per_week":12.85,"_pop_contributor_count":5,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["eventual-inc","freenome","lyft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.44,"_pop_updated_issues_count":199,"_pop_closed_issues_count":173,"_pop_created_since_days":8,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":27,"_pop_recent_releases_adjusted_count":27,"_pop_issue_count":199.0,"_pop_comment_count":41.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":7,"_pop_score":38.74,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/eventual-inc/daft/master/README.rst","_readme_localurl":"eventual-inc~daft~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/eventual-inc/daft/master/pyproject.toml"],"_requirements_localurls":["eventual-inc~daft~pyproject.toml"]},{"index":742,"category":"nlp","githuburl":"https://github.com/koaning/whatlies","featured":null,"links":null,"description":null,"_repopath":"koaning/whatlies","_reponame":"whatlies","_stars":436,"_forks":49,"_watches":13,"_topics":["nlp","embeddings","visualisations"],"_language":"Python","_homepage":"https://koaning.github.io/whatlies/","_description":"whatlies: Toolkit to help understand \"what lies\" in word embeddings. Also benchmarking! ","_organization":"koaning","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-07-28T00:00:00.000Z","_created_at":"2020-02-22T00:00:00.000Z","_age_weeks":147,"_stars_per_week":2.96,"_pop_contributor_count":13,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["explosion","kpmgnetherlands","motain","zalandose"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.27,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":34,"_pop_updated_since_days":5,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":26.78,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/koaning/whatlies/master/readme.md","_readme_localurl":"koaning~whatlies~readme.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/koaning/whatlies/master/setup.py"],"_requirements_localurls":["koaning~whatlies~setup.py"]},{"index":573,"category":"gis","githuburl":"https://github.com/developmentseed/label-maker","featured":null,"links":null,"description":null,"_repopath":"developmentseed/label-maker","_reponame":"label-maker","_stars":436,"_forks":113,"_watches":50,"_topics":["satellite-imagery","data-preparation","deep-learning","computer-vision","remote-sensing","keras"],"_language":"Python","_homepage":"http://devseed.com/label-maker/","_description":"label-maker: Data Preparation for Satellite Machine Learning","_organization":"developmentseed","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2020-11-19T00:00:00.000Z","_created_at":"2018-01-10T00:00:00.000Z","_age_weeks":257,"_stars_per_week":1.69,"_pop_contributor_count":15,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cloud-gov(work)+personalprojects;","developmentseed","planetlabs","regrow"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":60,"_pop_updated_since_days":25,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":9,"_pop_score":27.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/label-maker/master/README.md","_readme_localurl":"developmentseed~label-maker~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/developmentseed/label-maker/master/requirements.txt","https://raw.githubusercontent.com/developmentseed/label-maker/master/setup.py"],"_requirements_localurls":["developmentseed~label-maker~requirements.txt","developmentseed~label-maker~setup.py"]},{"index":582,"category":"gis","githuburl":"https://github.com/developmentseed/titiler","featured":null,"links":null,"description":null,"_repopath":"developmentseed/titiler","_reponame":"titiler","_stars":436,"_forks":99,"_watches":18,"_topics":["fastapi","cog","aws-cdk","aws-lambda","stac","cogeotiff","mosaicjson","raster","dynamic","server","rest","gdal","rasterio","tile","map-tile-server","map-tiles"],"_language":"Python","_homepage":"https://developmentseed.org/titiler/","_description":"titiler: Build your own Raster dynamic map tile services","_organization":"developmentseed","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2019-06-28T00:00:00.000Z","_age_weeks":181,"_stars_per_week":2.4,"_pop_contributor_count":28,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["developmentseed","ozminerals","satellogic","terradue"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.0,"_pop_updated_issues_count":31,"_pop_closed_issues_count":26,"_pop_created_since_days":42,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":31.0,"_pop_comment_count":39.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":13,"_pop_score":46.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/titiler/master/README.md","_readme_localurl":"developmentseed~titiler~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/developmentseed/titiler/master/setup.py"],"_requirements_localurls":["developmentseed~titiler~setup.py"]},{"index":837,"category":"gis","githuburl":"https://github.com/perrygeo/python-rasterstats","featured":null,"links":null,"description":null,"_repopath":"perrygeo/python-rasterstats","_reponame":"python-rasterstats","_stars":434,"_forks":108,"_watches":33,"_topics":[],"_language":"Python","_homepage":"","_description":"python-rasterstats: Summary statistics of geospatial raster datasets based on vector geometries.","_organization":"perrygeo","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-10-18T00:00:00.000Z","_created_at":"2013-09-18T00:00:00.000Z","_age_weeks":482,"_stars_per_week":0.9,"_pop_contributor_count":30,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aiddata","ouranos","satellogic","southernmethodistuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":9,"_pop_closed_issues_count":2,"_pop_created_since_days":113,"_pop_updated_since_days":2,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":9.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":50,"_pop_score":40.67,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/README.rst","_readme_localurl":"perrygeo~python-rasterstats~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/requirements.txt","https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/setup.py","https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/pyproject.toml"],"_requirements_localurls":["perrygeo~python-rasterstats~requirements.txt","perrygeo~python-rasterstats~setup.py","perrygeo~python-rasterstats~pyproject.toml"]},{"index":844,"category":"perf","githuburl":"https://github.com/joblib/loky","featured":null,"links":null,"description":null,"_repopath":"joblib/loky","_reponame":"loky","_stars":433,"_forks":41,"_watches":9,"_topics":["multiprocessing-library","python"],"_language":"Python","_homepage":"http://loky.readthedocs.io/en/stable/","_description":"loky: Robust and reusable Executor for joblib","_organization":"joblib","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-09-15T00:00:00.000Z","_created_at":"2015-12-25T00:00:00.000Z","_age_weeks":364,"_stars_per_week":1.19,"_pop_contributor_count":16,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["inria","inriasaclay-parietalteam","scikit-learninriafoundation","ucl"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.0,"_pop_updated_issues_count":6,"_pop_closed_issues_count":2,"_pop_created_since_days":85,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":6.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":59,"_pop_score":38.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/joblib/loky/master/README.md","_readme_localurl":"joblib~loky~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/joblib/loky/master/setup.py"],"_requirements_localurls":["joblib~loky~setup.py"]},{"index":863,"category":"ml-ops","githuburl":"https://github.com/astronomer/astronomer","featured":null,"links":null,"description":null,"_repopath":"astronomer/astronomer","_reponame":"astronomer","_stars":431,"_forks":78,"_watches":43,"_topics":["apache-airflow","kubernetes","docker","astronomer-platform"],"_language":"Python","_homepage":"https://www.astronomer.io","_description":"astronomer: Helm Charts for the Astronomer Platform, Apache Airflow as a Service on Kubernetes","_organization":"astronomer","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2018-01-15T00:00:00.000Z","_age_weeks":257,"_stars_per_week":1.68,"_pop_contributor_count":70,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["astronomer","cerebral"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.96,"_pop_updated_issues_count":113,"_pop_closed_issues_count":109,"_pop_created_since_days":60,"_pop_updated_since_days":0,"_pop_recent_releases_count":29,"_pop_recent_releases_estimated_tags":69,"_pop_recent_releases_adjusted_count":29,"_pop_issue_count":112.0,"_pop_comment_count":78.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":133,"_pop_score":54.6,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/astronomer/astronomer/master/README.md","_readme_localurl":"astronomer~astronomer~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":292,"category":"util","githuburl":"https://github.com/fastai/ghapi","featured":null,"links":null,"description":null,"_repopath":"fastai/ghapi","_reponame":"ghapi","_stars":421,"_forks":45,"_watches":8,"_topics":["github-api","github","nbdev","openapi","api-client"],"_language":"Jupyter Notebook","_homepage":"https://ghapi.fast.ai/","_description":"ghapi: A delightful and complete interface to GitHub's amazing API","_organization":"fastai","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-09-27T00:00:00.000Z","_created_at":"2020-11-21T00:00:00.000Z","_age_weeks":108,"_stars_per_week":3.89,"_pop_contributor_count":16,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["fastai","github","huggingface","streamlit"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.17,"_pop_updated_issues_count":10,"_pop_closed_issues_count":3,"_pop_created_since_days":25,"_pop_updated_since_days":3,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":10.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":21,"_pop_score":35.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fastai/ghapi/master/README.md","_readme_localurl":"fastai~ghapi~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/fastai/ghapi/master/setup.py"],"_requirements_localurls":["fastai~ghapi~setup.py"]},{"index":481,"category":"sim","githuburl":"https://github.com/udst/urbansim","featured":null,"links":null,"description":null,"_repopath":"udst/urbansim","_reponame":"urbansim","_stars":418,"_forks":124,"_watches":78,"_topics":[],"_language":"Python","_homepage":"https://udst.github.io/urbansim/","_description":"urbansim: Platform for building statistical models of cities and regions","_organization":"udst","_updated_at":"2022-12-08T00:00:00.000Z","_last_commit_date":"2020-05-11T00:00:00.000Z","_created_at":"2013-08-15T00:00:00.000Z","_age_weeks":487,"_stars_per_week":0.86,"_pop_contributor_count":20,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["applemontechnologies","google","populus-ai","populus-aimapcraftlabsoaklandanalytics","urbansim"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":114,"_pop_updated_since_days":32,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":40,"_pop_score":28.16,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/udst/urbansim/master/README.rst","_readme_localurl":"udst~urbansim~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/udst/urbansim/master/setup.py"],"_requirements_localurls":["udst~urbansim~setup.py"]},{"index":188,"category":"math","githuburl":"https://github.com/dit/dit","featured":null,"links":null,"description":null,"_repopath":"dit/dit","_reponame":"dit","_stars":417,"_forks":77,"_watches":24,"_topics":["python","information-theory"],"_language":"Python","_homepage":"http://docs.dit.io","_description":"dit: Python package for information theory.","_organization":"dit","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-07-25T00:00:00.000Z","_created_at":"2013-09-29T00:00:00.000Z","_age_weeks":481,"_stars_per_week":0.87,"_pop_contributor_count":20,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.92,"_pop_updated_issues_count":4,"_pop_closed_issues_count":0,"_pop_created_since_days":112,"_pop_updated_since_days":5,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":4.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":269,"_pop_score":36.88,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dit/dit/master/README.rst","_readme_localurl":"dit~dit~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dit/dit/master/requirements.txt","https://raw.githubusercontent.com/dit/dit/master/setup.py","https://raw.githubusercontent.com/dit/dit/master/pyproject.toml"],"_requirements_localurls":["dit~dit~requirements.txt","dit~dit~setup.py","dit~dit~pyproject.toml"]},{"index":486,"category":"gis","githuburl":"https://github.com/earthlab/earthpy","featured":null,"links":null,"description":null,"_repopath":"earthlab/earthpy","_reponame":"earthpy","_stars":412,"_forks":149,"_watches":22,"_topics":["spatial-data","raster","vector","python","education"],"_language":"Python","_homepage":"https://earthpy.readthedocs.io","_description":"earthpy: A package built to support working with spatial data using open source python","_organization":"earthlab","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2021-12-20T00:00:00.000Z","_created_at":"2018-02-20T00:00:00.000Z","_age_weeks":251,"_stars_per_week":1.64,"_pop_contributor_count":41,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["hydrosat","nvidia","pyupio","silviaterra"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":28,"_pop_closed_issues_count":21,"_pop_created_since_days":59,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":28.0,"_pop_comment_count":43.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":60,"_pop_score":41.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/earthlab/earthpy/master/README.md","_readme_localurl":"earthlab~earthpy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/earthlab/earthpy/master/setup.py","https://raw.githubusercontent.com/earthlab/earthpy/master/pyproject.toml"],"_requirements_localurls":["earthlab~earthpy~setup.py","earthlab~earthpy~pyproject.toml"]},{"index":705,"category":"ml-ops","githuburl":"https://github.com/bodywork-ml/bodywork-core","featured":null,"links":null,"description":null,"_repopath":"bodywork-ml/bodywork-core","_reponame":"bodywork-core","_stars":406,"_forks":18,"_watches":9,"_topics":["mlops","python","kubernetes","data-science","machine-learning","pipeline","serving","continuous-deployment","batch","devops","framework","cicd","orchestration"],"_language":"Python","_homepage":"https://bodywork.readthedocs.io/en/latest/","_description":"bodywork-core: ML pipeline orchestration and model deployments on Kubernetes, made really easy.","_organization":"bodywork-ml","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-07-04T00:00:00.000Z","_created_at":"2020-11-17T00:00:00.000Z","_age_weeks":108,"_stars_per_week":3.73,"_pop_contributor_count":4,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bodywork-mllloydsbankinggroup","bodyworkmachinelearning"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.73,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":25,"_pop_updated_since_days":6,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":29,"_pop_recent_releases_adjusted_count":29,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":8,"_pop_score":25.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bodywork-ml/bodywork-core/master/README.md","_readme_localurl":"bodywork-ml~bodywork-core~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bodywork-ml/bodywork-core/master/setup.py"],"_requirements_localurls":["bodywork-ml~bodywork-core~setup.py"]},{"index":472,"category":"nlp","githuburl":"https://github.com/google-research/byt5","featured":null,"links":null,"description":null,"_repopath":"google-research/byt5","_reponame":"byt5","_stars":405,"_forks":25,"_watches":11,"_topics":[],"_language":"Python","_homepage":null,"_description":"google-research/byt5","_organization":"google-research","_updated_at":"2022-12-11T00:00:00.000Z","_last_commit_date":"2022-03-02T00:00:00.000Z","_created_at":"2021-05-26T00:00:00.000Z","_age_weeks":81,"_stars_per_week":4.96,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":19,"_pop_updated_since_days":10,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":5.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google-research/byt5/master/README.md","_readme_localurl":"google-research~byt5~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":275,"category":"crypto","githuburl":"https://github.com/ethtx/ethtx","featured":null,"links":null,"description":null,"_repopath":"ethtx/ethtx","_reponame":"ethtx","_stars":397,"_forks":60,"_watches":16,"_topics":[],"_language":"Python","_homepage":"https://www.ethtx.info","_description":"ethtx: Python package with core transaction decoding functions.","_organization":"ethtx","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2021-06-28T00:00:00.000Z","_age_weeks":77,"_stars_per_week":5.16,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["py-world","tokenflowinsights"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.37,"_pop_updated_issues_count":23,"_pop_closed_issues_count":22,"_pop_created_since_days":18,"_pop_updated_since_days":1,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":23.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":28.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethtx/ethtx/master/README.md","_readme_localurl":"ethtx~ethtx~README.md","_requirements_filenames":["setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/ethtx/ethtx/master/setup.py","https://raw.githubusercontent.com/ethtx/ethtx/master/Pipfile"],"_requirements_localurls":["ethtx~ethtx~setup.py","ethtx~ethtx~Pipfile"]},{"index":577,"category":"jupyter","githuburl":"https://github.com/computationalmodelling/nbval","featured":null,"links":null,"description":null,"_repopath":"computationalmodelling/nbval","_reponame":"nbval","_stars":393,"_forks":50,"_watches":10,"_topics":["ipython-notebook","jupyter-notebook","python","testing","pytest-plugin","pytest"],"_language":"Python","_homepage":"","_description":"nbval: A py.test plugin to validate Jupyter notebooks","_organization":"computationalmodelling","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-09-17T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":401,"_stars_per_week":0.98,"_pop_contributor_count":31,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mpsd&universityofsouthampton"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.21,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":94,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":5.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":44,"_pop_score":33.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/computationalmodelling/nbval/master/README.md","_readme_localurl":"computationalmodelling~nbval~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/computationalmodelling/nbval/master/setup.py"],"_requirements_localurls":["computationalmodelling~nbval~setup.py"]},{"index":722,"category":"perf","githuburl":"https://github.com/noxdafox/pebble","featured":null,"links":null,"description":null,"_repopath":"noxdafox/pebble","_reponame":"pebble","_stars":389,"_forks":45,"_watches":10,"_topics":["threading","multiprocessing","python","pool","decorators","asyncio"],"_language":"Python","_homepage":"","_description":"pebble: Multi threading and processing eye-candy.","_organization":"noxdafox","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-15T00:00:00.000Z","_created_at":"2013-10-16T00:00:00.000Z","_age_weeks":478,"_stars_per_week":0.81,"_pop_contributor_count":14,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["getcujo"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.08,"_pop_updated_issues_count":11,"_pop_closed_issues_count":11,"_pop_created_since_days":112,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":11.0,"_pop_comment_count":35.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.2,"_pop_dependents_count":322,"_pop_score":44.78,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/noxdafox/pebble/master/README.rst","_readme_localurl":"noxdafox~pebble~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/noxdafox/pebble/master/setup.py"],"_requirements_localurls":["noxdafox~pebble~setup.py"]},{"index":528,"category":"nlp","githuburl":"https://github.com/hazyresearch/fonduer","featured":null,"links":null,"description":null,"_repopath":"hazyresearch/fonduer","_reponame":"fonduer","_stars":386,"_forks":79,"_watches":27,"_topics":["multimodality","machine-learning","knowledge-base-construction"],"_language":"Python","_homepage":"https://fonduer.readthedocs.io/","_description":"fonduer: A knowledge base construction engine for richly formatted data","_organization":"hazyresearch","_updated_at":"2022-12-05T00:00:00.000Z","_last_commit_date":"2021-06-23T00:00:00.000Z","_created_at":"2018-02-02T00:00:00.000Z","_age_weeks":254,"_stars_per_week":1.52,"_pop_contributor_count":14,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["https://snorkel.ai/","numbersstationai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":59,"_pop_updated_since_days":18,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":23,"_pop_score":24.86,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/hazyresearch/fonduer/master/README.rst","_readme_localurl":"hazyresearch~fonduer~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hazyresearch/fonduer/master/setup.py"],"_requirements_localurls":["hazyresearch~fonduer~setup.py"]},{"index":841,"category":"util","githuburl":"https://github.com/carlospuenteg/file-injector","featured":null,"links":null,"description":null,"_repopath":"carlospuenteg/file-injector","_reponame":"File-Injector","_stars":383,"_forks":17,"_watches":6,"_topics":["image","image-manipulation","image-processing","noise","numpy","photography","python","python3","file","files","extraction","injection","storage","steganography","file-injection","file-injector"],"_language":"Python","_homepage":"","_description":"File-Injector: File Injector is a script that allows you to store any file in an image using steganography","_organization":"carlospuenteg","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-18T00:00:00.000Z","_created_at":"2022-10-22T00:00:00.000Z","_age_weeks":8,"_stars_per_week":46.22,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.77,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":2,"_pop_updated_since_days":1,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":79,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":8.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/carlospuenteg/file-injector/master/README.md","_readme_localurl":"carlospuenteg~file-injector~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/carlospuenteg/file-injector/master/requirements.txt"],"_requirements_localurls":["carlospuenteg~file-injector~requirements.txt"]},{"index":254,"category":"ml","githuburl":"https://github.com/amzn/pecos","featured":null,"links":null,"description":null,"_repopath":"amzn/pecos","_reponame":"pecos","_stars":383,"_forks":84,"_watches":18,"_topics":["machine-learning-algorithms","extreme-multi-label-classification","extreme-multi-label-ranking","transformers","approximate-nearest-neighbor-search"],"_language":"Python","_homepage":"https://libpecos.org/","_description":"PECOS - Prediction for Enormous and Correlated Spaces","_organization":"amzn","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2020-08-12T00:00:00.000Z","_age_weeks":122,"_stars_per_week":3.12,"_pop_contributor_count":25,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon","amazonsearchandai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.15,"_pop_updated_issues_count":35,"_pop_closed_issues_count":34,"_pop_created_since_days":29,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":35.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":32.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/amzn/pecos/master/README.md","_readme_localurl":"amzn~pecos~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/amzn/pecos/master/setup.py"],"_requirements_localurls":["amzn~pecos~setup.py"]},{"index":12,"category":"nlp","githuburl":"https://github.com/dialogflow/dialogflow-python-client-v2","featured":null,"links":null,"description":null,"_repopath":"dialogflow/dialogflow-python-client-v2","_reponame":"python-dialogflow","_stars":379,"_forks":146,"_watches":53,"_topics":["python","machine-learning","dialogflow"],"_language":"Python","_homepage":"https://dialogflow.com/","_description":"python-dialogflow: Python client for Dialogflow: Design and integrate a conversational user interface into your applications and devices.","_organization":"dialogflow","_updated_at":"2022-12-09T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-10-24T00:00:00.000Z","_age_weeks":268,"_stars_per_week":1.41,"_pop_contributor_count":34,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["googleapis","googlecloud","mend"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.13,"_pop_updated_issues_count":31,"_pop_closed_issues_count":27,"_pop_created_since_days":63,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":31.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":49,"_pop_score":47.91,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dialogflow/dialogflow-python-client-v2/master/README.rst","_readme_localurl":"dialogflow~dialogflow-python-client-v2~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dialogflow/dialogflow-python-client-v2/master/setup.py"],"_requirements_localurls":["dialogflow~dialogflow-python-client-v2~setup.py"]},{"index":331,"category":"ml","githuburl":"https://github.com/jacopotagliabue/reclist","featured":null,"links":null,"description":null,"_repopath":"jacopotagliabue/reclist","_reponame":"reclist","_stars":370,"_forks":20,"_watches":8,"_topics":["recommender-system","machine-learning","qa-automation"],"_language":"Python","_homepage":"","_description":"reclist: Behavioral \"black-box\" testing for recommender systems","_organization":"jacopotagliabue","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-11-03T00:00:00.000Z","_created_at":"2021-11-08T00:00:00.000Z","_age_weeks":58,"_stars_per_week":6.38,"_pop_contributor_count":7,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["digitalgreenorg","stanforduniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.71,"_pop_updated_issues_count":6,"_pop_closed_issues_count":3,"_pop_created_since_days":14,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":6.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":10,"_pop_score":27.79,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jacopotagliabue/reclist/master/README.rst","_readme_localurl":"jacopotagliabue~reclist~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jacopotagliabue/reclist/master/setup.py"],"_requirements_localurls":["jacopotagliabue~reclist~setup.py"]},{"index":803,"category":"util","githuburl":"https://github.com/open-telemetry/opentelemetry-python-contrib","featured":null,"links":null,"description":null,"_repopath":"open-telemetry/opentelemetry-python-contrib","_reponame":"opentelemetry-python-contrib","_stars":369,"_forks":277,"_watches":14,"_topics":[],"_language":"Python","_homepage":"https://opentelemetry.io","_description":"opentelemetry-python-contrib: OpenTelemetry instrumentation for Python modules","_organization":"open-telemetry","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2019-11-08T00:00:00.000Z","_age_weeks":162,"_stars_per_week":2.27,"_pop_contributor_count":167,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lightstep","microsoftcorporation","signoz.io","splunk"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.38,"_pop_updated_issues_count":246,"_pop_closed_issues_count":164,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":246.0,"_pop_comment_count":335.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":35,"_pop_score":56.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-telemetry/opentelemetry-python-contrib/master/README.md","_readme_localurl":"open-telemetry~opentelemetry-python-contrib~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/open-telemetry/opentelemetry-python-contrib/master/pyproject.toml"],"_requirements_localurls":["open-telemetry~opentelemetry-python-contrib~pyproject.toml"]},{"index":492,"category":"gis","githuburl":"https://github.com/cogeotiff/rio-tiler","featured":null,"links":null,"description":null,"_repopath":"cogeotiff/rio-tiler","_reponame":"rio-tiler","_stars":369,"_forks":86,"_watches":65,"_topics":["satellite","cog","cogeotiff","maptile","raster-processing","mercator","tile","slippy-map","gdal","rasterio","raster"],"_language":"Python","_homepage":"https://cogeotiff.github.io/rio-tiler/","_description":"rio-tiler: User friendly Rasterio plugin to read raster datasets.","_organization":"cogeotiff","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2017-10-06T00:00:00.000Z","_age_weeks":271,"_stars_per_week":1.36,"_pop_contributor_count":21,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amskepler","angloamerican","developmentseed"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.19,"_pop_updated_issues_count":47,"_pop_closed_issues_count":46,"_pop_created_since_days":63,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":23,"_pop_recent_releases_adjusted_count":23,"_pop_issue_count":47.0,"_pop_comment_count":50.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":10,"_pop_score":45.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cogeotiff/rio-tiler/master/README.md","_readme_localurl":"cogeotiff~rio-tiler~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cogeotiff/rio-tiler/master/setup.py","https://raw.githubusercontent.com/cogeotiff/rio-tiler/master/pyproject.toml"],"_requirements_localurls":["cogeotiff~rio-tiler~setup.py","cogeotiff~rio-tiler~pyproject.toml"]},{"index":185,"category":"math","githuburl":"https://github.com/willianfuks/tfcausalimpact","featured":null,"links":null,"description":null,"_repopath":"willianfuks/tfcausalimpact","_reponame":"tfcausalimpact","_stars":366,"_forks":51,"_watches":10,"_topics":["causalimpact","tensorflow-probability","python","causal-inference"],"_language":"Python","_homepage":"","_description":"tfcausalimpact: Python Causal Impact Implementation Based on Google's R Package. Built using TensorFlow Probability.","_organization":"willianfuks","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-10-07T00:00:00.000Z","_created_at":"2020-08-17T00:00:00.000Z","_age_weeks":122,"_stars_per_week":3.0,"_pop_contributor_count":3,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["epfl"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":7,"_pop_closed_issues_count":3,"_pop_created_since_days":28,"_pop_updated_since_days":2,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":7.0,"_pop_comment_count":17.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":24.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/willianfuks/tfcausalimpact/master/README.md","_readme_localurl":"willianfuks~tfcausalimpact~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/willianfuks/tfcausalimpact/master/setup.py"],"_requirements_localurls":["willianfuks~tfcausalimpact~setup.py"]},{"index":561,"category":"gis","githuburl":"https://github.com/geopandas/contextily","featured":null,"links":null,"description":null,"_repopath":"geopandas/contextily","_reponame":"contextily","_stars":366,"_forks":66,"_watches":14,"_topics":["tiles","stamen","openstreetmap","python","tile","mapping","webtiles","geography","cartography","matplotlib","osm","stamen-maps"],"_language":"Jupyter Notebook","_homepage":"https://contextily.readthedocs.io/en/latest/","_description":"contextily: Context geo-tiles in Python","_organization":"geopandas","_updated_at":"2022-11-22T00:00:00.000Z","_last_commit_date":"2022-11-30T00:00:00.000Z","_created_at":"2016-09-08T00:00:00.000Z","_age_weeks":327,"_stars_per_week":1.12,"_pop_contributor_count":18,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["geogbristol","nordsoftware","ornl"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":7,"_pop_closed_issues_count":1,"_pop_created_since_days":76,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":7.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":3,"_pop_score":32.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/geopandas/contextily/master/README.md","_readme_localurl":"geopandas~contextily~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/geopandas/contextily/master/requirements.txt","https://raw.githubusercontent.com/geopandas/contextily/master/setup.py"],"_requirements_localurls":["geopandas~contextily~requirements.txt","geopandas~contextily~setup.py"]},{"index":522,"category":"gis","githuburl":"https://github.com/pygeos/pygeos","featured":null,"links":null,"description":null,"_repopath":"pygeos/pygeos","_reponame":"pygeos","_stars":361,"_forks":37,"_watches":16,"_topics":[],"_language":"Python","_homepage":"https://pygeos.readthedocs.io","_description":"pygeos: Wraps GEOS geometry functions in numpy ufuncs.","_organization":"pygeos","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2019-06-10T00:00:00.000Z","_age_weeks":184,"_stars_per_week":1.96,"_pop_contributor_count":13,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["adonmo(adonmo)","astutespruce","gnsscience","nelen&schuurmans"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":21,"_pop_closed_issues_count":21,"_pop_created_since_days":43,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":21.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":321,"_pop_score":43.6,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pygeos/pygeos/master/README.rst","_readme_localurl":"pygeos~pygeos~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pygeos/pygeos/master/setup.py","https://raw.githubusercontent.com/pygeos/pygeos/master/pyproject.toml"],"_requirements_localurls":["pygeos~pygeos~setup.py","pygeos~pygeos~pyproject.toml"]},{"index":49,"category":"util","githuburl":"https://github.com/mozillazg/pypy","featured":null,"links":null,"description":null,"_repopath":"mozillazg/pypy","_reponame":"pypy","_stars":358,"_forks":57,"_watches":11,"_topics":["pypy","github-mirror","unofficial","unofficial-mirror","read-only-repository"],"_language":"Python","_homepage":"https://foss.heptapod.net/pypy/pypy","_description":"pypy: The unofficial GitHub mirror of PyPy","_organization":"mozillazg","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2015-08-03T00:00:00.000Z","_age_weeks":385,"_stars_per_week":0.93,"_pop_contributor_count":374,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["pypy,baroquesoftware","quansightlabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":90,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":22,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":3,"_pop_score":45.88,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mozillazg/pypy/master/README.rst","_readme_localurl":"mozillazg~pypy~README.rst","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/mozillazg/pypy/master/requirements.txt"],"_requirements_localurls":["mozillazg~pypy~requirements.txt"]},{"index":496,"category":"ml","githuburl":"https://github.com/linkedin/fasttreeshap","featured":null,"links":null,"description":null,"_repopath":"linkedin/fasttreeshap","_reponame":"FastTreeSHAP","_stars":358,"_forks":22,"_watches":6,"_topics":["explainable-ai","interpretability","lightgbm","machine-learning","random-forest","shap","xgboost"],"_language":"Python","_homepage":"","_description":"FastTreeSHAP: Fast SHAP value computation for interpreting tree-based models","_organization":"linkedin","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2022-01-24T00:00:00.000Z","_age_weeks":47,"_stars_per_week":7.62,"_pop_contributor_count":3,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["linkedincorporation"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.23,"_pop_updated_issues_count":7,"_pop_closed_issues_count":2,"_pop_created_since_days":11,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":7.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":20.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/linkedin/fasttreeshap/master/README.md","_readme_localurl":"linkedin~fasttreeshap~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/linkedin/fasttreeshap/master/requirements.txt","https://raw.githubusercontent.com/linkedin/fasttreeshap/master/setup.py","https://raw.githubusercontent.com/linkedin/fasttreeshap/master/pyproject.toml"],"_requirements_localurls":["linkedin~fasttreeshap~requirements.txt","linkedin~fasttreeshap~setup.py","linkedin~fasttreeshap~pyproject.toml"]},{"index":499,"category":"ml-dl","githuburl":"https://github.com/researchmm/sttn","featured":null,"links":null,"description":null,"_repopath":"researchmm/sttn","_reponame":"STTN","_stars":355,"_forks":70,"_watches":20,"_topics":["video-inpainting","completing-videos","transformer","spatial-temporal"],"_language":"Jupyter Notebook","_homepage":"https://arxiv.org/abs/2007.10247","_description":"[ECCV'2020] STTN: Learning Joint Spatial-Temporal Transformations for Video Inpainting","_organization":"researchmm","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2021-07-26T00:00:00.000Z","_created_at":"2020-07-10T00:00:00.000Z","_age_weeks":127,"_stars_per_week":2.79,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":30,"_pop_updated_since_days":17,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":7.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/researchmm/sttn/master/README.md","_readme_localurl":"researchmm~sttn~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":519,"category":"gis","githuburl":"https://github.com/scikit-geometry/scikit-geometry","featured":null,"links":null,"description":null,"_repopath":"scikit-geometry/scikit-geometry","_reponame":"scikit-geometry","_stars":354,"_forks":49,"_watches":13,"_topics":["cgal","geometry","python","geometric-algorithms","wrapper"],"_language":"Jupyter Notebook","_homepage":"https://scikit-geometry.github.io/scikit-geometry","_description":"scikit-geometry: Scientific Python Geometric Algorithms Library","_organization":"scikit-geometry","_updated_at":"2022-11-28T00:00:00.000Z","_last_commit_date":"2022-10-14T00:00:00.000Z","_created_at":"2016-03-28T00:00:00.000Z","_age_weeks":351,"_stars_per_week":1.01,"_pop_contributor_count":15,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ambirobotics","leipziguniversity","prefix.devgmbh","resonance","westpac"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":6,"_pop_closed_issues_count":1,"_pop_created_since_days":82,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":6.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":4,"_pop_score":31.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scikit-geometry/scikit-geometry/master/README.md","_readme_localurl":"scikit-geometry~scikit-geometry~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/scikit-geometry/scikit-geometry/master/setup.py"],"_requirements_localurls":["scikit-geometry~scikit-geometry~setup.py"]},{"index":756,"category":"ml-dl","githuburl":"https://github.com/samuela/git-re-basin","featured":null,"links":null,"description":null,"_repopath":"samuela/git-re-basin","_reponame":"git-re-basin","_stars":349,"_forks":29,"_watches":4,"_topics":["deep-learning","deeplearning","jax","machine-learning","neural-networks"],"_language":"Python","_homepage":"https://arxiv.org/abs/2209.04836","_description":"git-re-basin: Code release for \"Git Re-Basin: Merging Models modulo Permutation Symmetries\"","_organization":"samuela","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-10-12T00:00:00.000Z","_created_at":"2022-09-13T00:00:00.000Z","_age_weeks":13,"_stars_per_week":25.19,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":8,"_pop_closed_issues_count":1,"_pop_created_since_days":3,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":8.0,"_pop_comment_count":52.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":6.5,"_pop_dependents_count":0,"_pop_score":13.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/samuela/git-re-basin/master/README.md","_readme_localurl":"samuela~git-re-basin~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":692,"category":"util","githuburl":"https://github.com/paperswithcode/axcell","featured":null,"links":null,"description":null,"_repopath":"paperswithcode/axcell","_reponame":"axcell","_stars":344,"_forks":51,"_watches":13,"_topics":[],"_language":"Python","_homepage":"","_description":"axcell: Tools for extracting tables and results from Machine Learning papers","_organization":"paperswithcode","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-06-23T00:00:00.000Z","_created_at":"2019-06-27T00:00:00.000Z","_age_weeks":181,"_stars_per_week":1.89,"_pop_contributor_count":7,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ukplab,tudarmstadt","xyzlab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":42,"_pop_updated_since_days":18,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":13.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/paperswithcode/axcell/master/README.md","_readme_localurl":"paperswithcode~axcell~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/paperswithcode/axcell/master/setup.py"],"_requirements_localurls":["paperswithcode~axcell~setup.py"]},{"index":586,"category":"gis","githuburl":"https://github.com/pysal/momepy","featured":null,"links":null,"description":null,"_repopath":"pysal/momepy","_reponame":"momepy","_stars":343,"_forks":46,"_watches":16,"_topics":["urban","morphology","morphological-analysis","morphometrics","urban-morphometrics","urban-street-networks"],"_language":"Python","_homepage":"https://docs.momepy.org","_description":"momepy: Urban Morphology Measuring Toolkit","_organization":"pysal","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-10-17T00:00:00.000Z","_created_at":"2018-03-30T00:00:00.000Z","_age_weeks":246,"_stars_per_week":1.39,"_pop_contributor_count":10,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ornl","udl-ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.1,"_pop_updated_issues_count":29,"_pop_closed_issues_count":19,"_pop_created_since_days":57,"_pop_updated_since_days":2,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":29.0,"_pop_comment_count":68.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":39,"_pop_score":39.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pysal/momepy/master/README.md","_readme_localurl":"pysal~momepy~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pysal/momepy/master/requirements.txt","https://raw.githubusercontent.com/pysal/momepy/master/setup.py","https://raw.githubusercontent.com/pysal/momepy/master/pyproject.toml"],"_requirements_localurls":["pysal~momepy~requirements.txt","pysal~momepy~setup.py","pysal~momepy~pyproject.toml"]},{"index":560,"category":"gis","githuburl":"https://github.com/corteva/rioxarray","featured":null,"links":null,"description":null,"_repopath":"corteva/rioxarray","_reponame":"rioxarray","_stars":342,"_forks":56,"_watches":12,"_topics":["gis","rasterio","xarray","geospatial","python","gdal","raster","netcdf","hacktoberfest"],"_language":"Python","_homepage":"https://corteva.github.io/rioxarray","_description":"rioxarray: geospatial xarray extension powered by rasterio","_organization":"corteva","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2019-04-16T00:00:00.000Z","_age_weeks":191,"_stars_per_week":1.78,"_pop_contributor_count":26,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["corteva","dtn","gnsscience","quantstack","smhi"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.5,"_pop_updated_issues_count":43,"_pop_closed_issues_count":21,"_pop_created_since_days":45,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":43.0,"_pop_comment_count":75.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":3,"_pop_score":45.93,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/corteva/rioxarray/master/README.rst","_readme_localurl":"corteva~rioxarray~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/corteva/rioxarray/master/setup.py","https://raw.githubusercontent.com/corteva/rioxarray/master/pyproject.toml"],"_requirements_localurls":["corteva~rioxarray~setup.py","corteva~rioxarray~pyproject.toml"]},{"index":786,"category":"util","githuburl":"https://github.com/gefyrahq/gefyra","featured":null,"links":null,"description":null,"_repopath":"gefyrahq/gefyra","_reponame":"gefyra","_stars":339,"_forks":22,"_watches":6,"_topics":["kubernetes","development","developer-tool","containers","coding","tunnel","docker","k8s"],"_language":"Python","_homepage":"https://gefyra.dev","_description":"gefyra: Blazingly-fast :rocket:, rock-solid, local application development :arrow_right: with Kubernetes.","_organization":"gefyrahq","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2021-11-18T00:00:00.000Z","_age_weeks":56,"_stars_per_week":5.99,"_pop_contributor_count":13,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["blueshoe","blueshoeunikubehq"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.1,"_pop_updated_issues_count":131,"_pop_closed_issues_count":114,"_pop_created_since_days":13,"_pop_updated_since_days":0,"_pop_recent_releases_count":44,"_pop_recent_releases_estimated_tags":47,"_pop_recent_releases_adjusted_count":44,"_pop_issue_count":131.0,"_pop_comment_count":200.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":3,"_pop_score":41.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gefyrahq/gefyra/master/README.md","_readme_localurl":"gefyrahq~gefyra~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":335,"category":"ml","githuburl":"https://github.com/mrdbourke/m1-machine-learning-test","featured":null,"links":null,"description":null,"_repopath":"mrdbourke/m1-machine-learning-test","_reponame":"m1-machine-learning-test","_stars":339,"_forks":101,"_watches":12,"_topics":["tensorflow","tensorflow-macos","metal","machine-learning"],"_language":"Jupyter Notebook","_homepage":"","_description":"m1-machine-learning-test: Code for testing various M1 Chip benchmarks with TensorFlow.","_organization":"mrdbourke","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-07-16T00:00:00.000Z","_created_at":"2021-11-14T00:00:00.000Z","_age_weeks":57,"_stars_per_week":5.93,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":13,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":12,"_pop_score":10.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mrdbourke/m1-machine-learning-test/master/README.md","_readme_localurl":"mrdbourke~m1-machine-learning-test~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":848,"category":"gis","githuburl":"https://github.com/mapbox/mercantile","featured":null,"links":null,"description":null,"_repopath":"mapbox/mercantile","_reponame":"mercantile","_stars":338,"_forks":62,"_watches":116,"_topics":["satellite","pxm","imagery"],"_language":"Python","_homepage":null,"_description":"mercantile: Spherical mercator tile and coordinate utilities","_organization":"mapbox","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2021-10-22T00:00:00.000Z","_created_at":"2014-02-12T00:00:00.000Z","_age_weeks":461,"_stars_per_week":0.73,"_pop_contributor_count":20,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["planetlabs","tudresden"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":108,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":3.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":111,"_pop_score":30.96,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mapbox/mercantile/master/README.rst","_readme_localurl":"mapbox~mercantile~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mapbox/mercantile/master/requirements.txt","https://raw.githubusercontent.com/mapbox/mercantile/master/setup.py"],"_requirements_localurls":["mapbox~mercantile~requirements.txt","mapbox~mercantile~setup.py"]},{"index":340,"category":"term","githuburl":"https://github.com/federicoceratto/dashing","featured":null,"links":null,"description":null,"_repopath":"federicoceratto/dashing","_reponame":"dashing","_stars":338,"_forks":30,"_watches":9,"_topics":["python","python3","terminal","dashboard","terminal-based","gauges","charts"],"_language":"Python","_homepage":"https://dashing.readthedocs.io/en/latest/","_description":"dashing: Terminal dashboards for Python","_organization":"federicoceratto","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2020-09-06T00:00:00.000Z","_created_at":"2017-06-03T00:00:00.000Z","_age_weeks":289,"_stars_per_week":1.17,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ooni/torproject/debian"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":67,"_pop_updated_since_days":28,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.0,"_readme_filename":"README.adoc","_readme_giturl":"https://raw.githubusercontent.com/federicoceratto/dashing/master/README.adoc","_readme_localurl":"federicoceratto~dashing~README.adoc","_requirements_filenames":["requirements.txt","setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/federicoceratto/dashing/master/requirements.txt","https://raw.githubusercontent.com/federicoceratto/dashing/master/setup.py","https://raw.githubusercontent.com/federicoceratto/dashing/master/Pipfile"],"_requirements_localurls":["federicoceratto~dashing~requirements.txt","federicoceratto~dashing~setup.py","federicoceratto~dashing~Pipfile"]},{"index":158,"category":"jupyter","githuburl":"https://github.com/nteract/testbook","featured":null,"links":null,"description":null,"_repopath":"nteract/testbook","_reponame":"testbook","_stars":336,"_forks":34,"_watches":15,"_topics":["jupyter-notebook","unit-testing","pytest","nteract","python","testbook"],"_language":"Python","_homepage":"https://testbook.readthedocs.io","_description":"testbook: \ud83e\uddea \ud83d\udcd7 Unit test your Jupyter Notebooks the right way","_organization":"nteract","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2020-02-26T00:00:00.000Z","_age_weeks":146,"_stars_per_week":2.29,"_pop_contributor_count":15,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["noteable-io","quantstack","seaspancorporation","willingconsulting"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":5,"_pop_closed_issues_count":2,"_pop_created_since_days":34,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":5.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":5,"_pop_score":33.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nteract/testbook/master/README.md","_readme_localurl":"nteract~testbook~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nteract/testbook/master/requirements.txt","https://raw.githubusercontent.com/nteract/testbook/master/setup.py","https://raw.githubusercontent.com/nteract/testbook/master/pyproject.toml"],"_requirements_localurls":["nteract~testbook~requirements.txt","nteract~testbook~setup.py","nteract~testbook~pyproject.toml"]},{"index":563,"category":"gis","githuburl":"https://github.com/geopandas/dask-geopandas","featured":null,"links":null,"description":null,"_repopath":"geopandas/dask-geopandas","_reponame":"dask-geopandas","_stars":336,"_forks":34,"_watches":23,"_topics":[],"_language":"Python","_homepage":"https://dask-geopandas.readthedocs.io/","_description":"dask-geopandas: Parallel GeoPandas with Dask","_organization":"geopandas","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-08-28T00:00:00.000Z","_created_at":"2020-02-13T00:00:00.000Z","_age_weeks":148,"_stars_per_week":2.26,"_pop_contributor_count":16,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["azavea","mr","sylveraio","udl-ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.1,"_pop_updated_issues_count":13,"_pop_closed_issues_count":3,"_pop_created_since_days":35,"_pop_updated_since_days":4,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":13.0,"_pop_comment_count":23.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":32.69,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/geopandas/dask-geopandas/master/README.rst","_readme_localurl":"geopandas~dask-geopandas~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/geopandas/dask-geopandas/master/setup.py","https://raw.githubusercontent.com/geopandas/dask-geopandas/master/pyproject.toml"],"_requirements_localurls":["geopandas~dask-geopandas~setup.py","geopandas~dask-geopandas~pyproject.toml"]},{"index":464,"category":"data","githuburl":"https://github.com/dmarx/psaw","featured":null,"links":null,"description":null,"_repopath":"dmarx/psaw","_reponame":"psaw","_stars":333,"_forks":46,"_watches":9,"_topics":[],"_language":"Python","_homepage":null,"_description":"psaw: Python Pushshift.io API Wrapper (for comment/submission search)","_organization":"dmarx","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-07-09T00:00:00.000Z","_created_at":"2018-04-15T00:00:00.000Z","_age_weeks":244,"_stars_per_week":1.36,"_pop_contributor_count":8,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["stability.ai,eleuther.ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":57,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":4,"_pop_score":18.47,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dmarx/psaw/master/README.rst","_readme_localurl":"dmarx~psaw~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dmarx/psaw/master/setup.py"],"_requirements_localurls":["dmarx~psaw~setup.py"]},{"index":684,"category":"util","githuburl":"https://github.com/sciunto-org/python-bibtexparser","featured":null,"links":null,"description":null,"_repopath":"sciunto-org/python-bibtexparser","_reponame":"python-bibtexparser","_stars":330,"_forks":117,"_watches":16,"_topics":["bibtex","bibtex-files","latex","python","hacktoberfest2022"],"_language":"Python","_homepage":"https://bibtexparser.readthedocs.io","_description":"python-bibtexparser: Bibtex parser for Python 3","_organization":"sciunto-org","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-10-20T00:00:00.000Z","_created_at":"2013-01-05T00:00:00.000Z","_age_weeks":519,"_stars_per_week":0.64,"_pop_contributor_count":45,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["paris-saclayuniversity","quicksign","ruhruniversitybochum","universit\u00e0dellasvizzeraitaliana(testingautomated-usi)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":41,"_pop_closed_issues_count":24,"_pop_created_since_days":121,"_pop_updated_since_days":2,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":41.0,"_pop_comment_count":37.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":35,"_pop_score":44.26,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sciunto-org/python-bibtexparser/master/README.rst","_readme_localurl":"sciunto-org~python-bibtexparser~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sciunto-org/python-bibtexparser/master/requirements.txt","https://raw.githubusercontent.com/sciunto-org/python-bibtexparser/master/setup.py"],"_requirements_localurls":["sciunto-org~python-bibtexparser~requirements.txt","sciunto-org~python-bibtexparser~setup.py"]},{"index":237,"category":"ml","githuburl":"https://github.com/salesforce/warp-drive","featured":null,"links":null,"description":null,"_repopath":"salesforce/warp-drive","_reponame":"warp-drive","_stars":329,"_forks":58,"_watches":12,"_topics":["reinforcement-learning","gpu","cuda","multiagent-reinforcement-learning","deep-learning","high-throughput","pytorch","numba"],"_language":"Python","_homepage":"","_description":"warp-drive: Extremely Fast End-to-End Deep Multi-Agent Reinforcement Learning Framework on a GPU","_organization":"salesforce","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2021-08-25T00:00:00.000Z","_age_weeks":68,"_stars_per_week":4.79,"_pop_contributor_count":6,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["salesforceresearch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.21,"_pop_updated_issues_count":14,"_pop_closed_issues_count":11,"_pop_created_since_days":16,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":14.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":15,"_pop_score":29.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/warp-drive/master/README.md","_readme_localurl":"salesforce~warp-drive~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/salesforce/warp-drive/master/requirements.txt","https://raw.githubusercontent.com/salesforce/warp-drive/master/setup.py"],"_requirements_localurls":["salesforce~warp-drive~requirements.txt","salesforce~warp-drive~setup.py"]},{"index":664,"category":"study","githuburl":"https://github.com/rasbt/stat451-machine-learning-fs20","featured":null,"links":null,"description":null,"_repopath":"rasbt/stat451-machine-learning-fs20","_reponame":"stat451-machine-learning-fs20","_stars":327,"_forks":176,"_watches":18,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"stat451-machine-learning-fs20: STAT 451: Intro to Machine Learning @ UW-Madison (Fall 2020)","_organization":"rasbt","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2020-12-03T00:00:00.000Z","_created_at":"2020-08-06T00:00:00.000Z","_age_weeks":123,"_stars_per_week":2.65,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lightning-ai,universityofwisconsin-madison"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":29,"_pop_updated_since_days":25,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":2,"_pop_score":7.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/stat451-machine-learning-fs20/master/README.md","_readme_localurl":"rasbt~stat451-machine-learning-fs20~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":747,"category":"study","githuburl":"https://github.com/bayesianmodelingandcomputationinpython/bookcode_edition1","featured":null,"links":null,"description":null,"_repopath":"bayesianmodelingandcomputationinpython/bookcode_edition1","_reponame":"BookCode_Edition1","_stars":326,"_forks":75,"_watches":13,"_topics":[],"_language":"Jupyter Notebook","_homepage":"https://www.bayesiancomputationbook.com","_description":"bayesianmodelingandcomputationinpython/bookcode_edition1","_organization":"bayesianmodelingandcomputationinpython","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-09-20T00:00:00.000Z","_created_at":"2021-08-17T00:00:00.000Z","_age_weeks":69,"_stars_per_week":4.67,"_pop_contributor_count":10,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","imasl-conicet"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.69,"_pop_updated_issues_count":8,"_pop_closed_issues_count":2,"_pop_created_since_days":16,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":8.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":22.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bayesianmodelingandcomputationinpython/bookcode_edition1/master/README.md","_readme_localurl":"bayesianmodelingandcomputationinpython~bookcode_edition1~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":364,"category":"ml-ops","githuburl":"https://github.com/kubeflow/fairing","featured":null,"links":null,"description":null,"_repopath":"kubeflow/fairing","_reponame":"fairing","_stars":325,"_forks":146,"_watches":40,"_topics":[],"_language":"Jsonnet","_homepage":"","_description":"fairing: Python SDK for building, training, and deploying ML models","_organization":"kubeflow","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2021-08-26T00:00:00.000Z","_created_at":"2018-09-03T00:00:00.000Z","_age_weeks":224,"_stars_per_week":1.45,"_pop_contributor_count":41,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","ibm"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":52,"_pop_updated_since_days":16,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":113,"_pop_score":31.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kubeflow/fairing/master/README.md","_readme_localurl":"kubeflow~fairing~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kubeflow/fairing/master/requirements.txt","https://raw.githubusercontent.com/kubeflow/fairing/master/setup.py"],"_requirements_localurls":["kubeflow~fairing~requirements.txt","kubeflow~fairing~setup.py"]},{"index":745,"category":"perf","githuburl":"https://github.com/blosc/python-blosc","featured":null,"links":null,"description":null,"_repopath":"blosc/python-blosc","_reponame":"python-blosc","_stars":322,"_forks":75,"_watches":12,"_topics":["python","wrapper","blosc","compression"],"_language":"Python","_homepage":"https://www.blosc.org/python-blosc/python-blosc.html","_description":"python-blosc: A Python wrapper for the extremely fast Blosc compression library ","_organization":"blosc","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2010-09-30T00:00:00.000Z","_age_weeks":637,"_stars_per_week":0.51,"_pop_contributor_count":43,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","cea","francescalted"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.92,"_pop_updated_issues_count":43,"_pop_closed_issues_count":41,"_pop_created_since_days":149,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":43.0,"_pop_comment_count":66.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":167,"_pop_score":49.64,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/blosc/python-blosc/master/README.rst","_readme_localurl":"blosc~python-blosc~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/blosc/python-blosc/master/requirements.txt","https://raw.githubusercontent.com/blosc/python-blosc/master/setup.py","https://raw.githubusercontent.com/blosc/python-blosc/master/pyproject.toml"],"_requirements_localurls":["blosc~python-blosc~requirements.txt","blosc~python-blosc~setup.py","blosc~python-blosc~pyproject.toml"]},{"index":719,"category":"gis","githuburl":"https://github.com/weecology/deepforest","featured":null,"links":null,"description":null,"_repopath":"weecology/deepforest","_reponame":"DeepForest","_stars":321,"_forks":122,"_watches":15,"_topics":[],"_language":"JavaScript","_homepage":"https://deepforest.readthedocs.io/","_description":"DeepForest: Python Package for Tree Crown Detection in Airborne RGB imagery","_organization":"weecology","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-02T00:00:00.000Z","_created_at":"2018-03-07T00:00:00.000Z","_age_weeks":249,"_stars_per_week":1.29,"_pop_contributor_count":11,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["rbccapitalmarkets","universityofflorida","weecology","weecology,univofflorida"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.71,"_pop_updated_issues_count":29,"_pop_closed_issues_count":14,"_pop_created_since_days":58,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":29.0,"_pop_comment_count":53.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":119,"_pop_score":45.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/weecology/deepforest/master/README.md","_readme_localurl":"weecology~deepforest~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/weecology/deepforest/master/setup.py"],"_requirements_localurls":["weecology~deepforest~setup.py"]},{"index":594,"category":"gis","githuburl":"https://github.com/geopython/owslib","featured":null,"links":null,"description":null,"_repopath":"geopython/owslib","_reponame":"OWSLib","_stars":315,"_forks":257,"_watches":31,"_topics":[],"_language":"Python","_homepage":"https://geopython.github.io/OWSLib","_description":"OWSLib is a Python package for client programming with Open Geospatial Consortium (OGC) web service (hence OWS) interface standards, and their related content models.","_organization":"geopython","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2012-01-13T00:00:00.000Z","_age_weeks":570,"_stars_per_week":0.55,"_pop_contributor_count":138,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["geopythonwmo-imopengeospatial","opensourcegeospatialfoundation","planetlabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.9,"_pop_updated_issues_count":20,"_pop_closed_issues_count":7,"_pop_created_since_days":133,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":20.0,"_pop_comment_count":28.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":308,"_pop_score":53.7,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/geopython/owslib/master/README.rst","_readme_localurl":"geopython~owslib~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/geopython/owslib/master/requirements.txt","https://raw.githubusercontent.com/geopython/owslib/master/setup.py"],"_requirements_localurls":["geopython~owslib~requirements.txt","geopython~owslib~setup.py"]},{"index":510,"category":"ml-dl","githuburl":"https://github.com/leondgarse/keras_cv_attention_models","featured":null,"links":null,"description":null,"_repopath":"leondgarse/keras_cv_attention_models","_reponame":"keras_cv_attention_models","_stars":313,"_forks":51,"_watches":16,"_topics":["tensorflow","visualizing","keras","attention","model","imagenet","coco","recognition","detection","anchor-free","tf","tf2"],"_language":"Python","_homepage":"","_description":"keras_cv_attention_models: Keras/Tensorflow models including beit,botnet,CMT,CoaT,CoAtNet,convnext,cotnet,davit,efficientdet,edgenext,efficientformer,efficientnet,fbnet,gcvit,ghostnetv2,gmlp,halonet,hornet,lcnet,levit,maxvit,mlp-mixer,mobilevit,nat,nfnets,regnet,resmlp,resnest,resnext,resnetd,swin,tinynet,uniformer,volo,wavemlp,yolor,yolov7,yolox","_organization":"leondgarse","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-04T00:00:00.000Z","_created_at":"2021-08-02T00:00:00.000Z","_age_weeks":72,"_stars_per_week":4.35,"_pop_contributor_count":4,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["koala-team","resmonicsag","wandb"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.21,"_pop_updated_issues_count":14,"_pop_closed_issues_count":13,"_pop_created_since_days":17,"_pop_updated_since_days":0,"_pop_recent_releases_count":19,"_pop_recent_releases_estimated_tags":68,"_pop_recent_releases_adjusted_count":19,"_pop_issue_count":14.0,"_pop_comment_count":35.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":0,"_pop_score":36.28,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/leondgarse/keras_cv_attention_models/master/README.md","_readme_localurl":"leondgarse~keras_cv_attention_models~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/leondgarse/keras_cv_attention_models/master/setup.py"],"_requirements_localurls":["leondgarse~keras_cv_attention_models~setup.py"]},{"index":473,"category":"ml-dl","githuburl":"https://github.com/nyandwi/modernconvnets","featured":null,"links":null,"description":null,"_repopath":"nyandwi/modernconvnets","_reponame":"ModernConvNets","_stars":304,"_forks":31,"_watches":7,"_topics":["convnets","deep-learning-algorithms","computer-vision","tensorflow","keras","convolutional-neural-networks","neural-networks","image-classification","cnns"],"_language":"Jupyter Notebook","_homepage":"","_description":"ModernConvNets: Revisions and implementations of modern Convolutional Neural Networks architectures in TensorFlow and Keras","_organization":"nyandwi","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-10-05T00:00:00.000Z","_created_at":"2022-02-10T00:00:00.000Z","_age_weeks":44,"_stars_per_week":6.82,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cargeniemellon"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":10,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.3,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nyandwi/modernconvnets/master/README.md","_readme_localurl":"nyandwi~modernconvnets~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":500,"category":"study","githuburl":"https://github.com/googlecloudplatform/practical-ml-vision-book","featured":null,"links":null,"description":null,"_repopath":"googlecloudplatform/practical-ml-vision-book","_reponame":"practical-ml-vision-book","_stars":304,"_forks":138,"_watches":18,"_topics":[],"_language":"Jupyter Notebook","_homepage":null,"_description":"googlecloudplatform/practical-ml-vision-book","_organization":"googlecloudplatform","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-21T00:00:00.000Z","_created_at":"2020-11-18T00:00:00.000Z","_age_weeks":108,"_stars_per_week":2.8,"_pop_contributor_count":6,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":25,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":9,"_pop_score":19.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/googlecloudplatform/practical-ml-vision-book/master/README.md","_readme_localurl":"googlecloudplatform~practical-ml-vision-book~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":430,"category":"jupyter","githuburl":"https://github.com/chaoleili/jupyterlab_tensorboard","featured":null,"links":null,"description":null,"_repopath":"chaoleili/jupyterlab_tensorboard","_reponame":"jupyterlab_tensorboard","_stars":295,"_forks":35,"_watches":11,"_topics":["jupyterlab-extension","tensorboard","jupyterlab"],"_language":"TypeScript","_homepage":"","_description":"jupyterlab_tensorboard: Tensorboard extension for jupyterlab.","_organization":"chaoleili","_updated_at":"2022-11-11T00:00:00.000Z","_last_commit_date":"2022-07-18T00:00:00.000Z","_created_at":"2018-08-14T00:00:00.000Z","_age_weeks":226,"_stars_per_week":1.3,"_pop_contributor_count":7,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["imec-idlab,departmentofinformationtechnology,ghentuniversity,belgium","researchscientistatnvidia","sundellopensourceconsultingab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":53,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":23.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/chaoleili/jupyterlab_tensorboard/master/README.md","_readme_localurl":"chaoleili~jupyterlab_tensorboard~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/chaoleili/jupyterlab_tensorboard/master/setup.py","https://raw.githubusercontent.com/chaoleili/jupyterlab_tensorboard/master/pyproject.toml"],"_requirements_localurls":["chaoleili~jupyterlab_tensorboard~setup.py","chaoleili~jupyterlab_tensorboard~pyproject.toml"]},{"index":788,"category":"study","githuburl":"https://github.com/mynameisfiber/high_performance_python_2e","featured":null,"links":null,"description":null,"_repopath":"mynameisfiber/high_performance_python_2e","_reponame":"high_performance_python_2e","_stars":291,"_forks":88,"_watches":6,"_topics":["python","high-performance","code-samples","oreilly","oreilly-books"],"_language":"Python","_homepage":"","_description":"high_performance_python_2e: Code for the book \"High Performance Python 2e\" by Micha Gorelick and Ian Ozsvald with OReilly ","_organization":"mynameisfiber","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2021-01-15T00:00:00.000Z","_created_at":"2020-04-12T00:00:00.000Z","_age_weeks":140,"_stars_per_week":2.08,"_pop_contributor_count":2,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["http://morconsulting.com/","occrp,the-markup"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":33,"_pop_updated_since_days":23,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.28,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mynameisfiber/high_performance_python_2e/master/README.md","_readme_localurl":"mynameisfiber~high_performance_python_2e~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":574,"category":"gis","githuburl":"https://github.com/developmentseed/geolambda","featured":null,"links":null,"description":null,"_repopath":"developmentseed/geolambda","_reponame":"geolambda","_stars":278,"_forks":84,"_watches":50,"_topics":[],"_language":"Dockerfile","_homepage":null,"_description":"geolambda: Create and deploy Geospatial AWS Lambda functions","_organization":"developmentseed","_updated_at":"2022-12-09T00:00:00.000Z","_last_commit_date":"2021-02-16T00:00:00.000Z","_created_at":"2017-05-02T00:00:00.000Z","_age_weeks":293,"_stars_per_week":0.95,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["developmentseed","element84"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":69,"_pop_updated_since_days":22,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":3,"_pop_score":17.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/geolambda/master/README.md","_readme_localurl":"developmentseed~geolambda~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":524,"category":"util","githuburl":"https://github.com/venth/aws-adfs","featured":null,"links":null,"description":null,"_repopath":"venth/aws-adfs","_reponame":"aws-adfs","_stars":277,"_forks":91,"_watches":11,"_topics":["aws","adfs","python","command-line","tools","multi-factor-authentication","duo-security"],"_language":"Python","_homepage":"","_description":"aws-adfs: Command line tool to ease aws cli authentication against ADFS (multi factor authentication with active directory)","_organization":"venth","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2016-06-25T00:00:00.000Z","_age_weeks":338,"_stars_per_week":0.82,"_pop_contributor_count":46,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["claranet","rancher"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.67,"_pop_updated_issues_count":47,"_pop_closed_issues_count":44,"_pop_created_since_days":79,"_pop_updated_since_days":0,"_pop_recent_releases_count":29,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":29,"_pop_issue_count":47.0,"_pop_comment_count":37.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":5,"_pop_score":45.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/venth/aws-adfs/master/README.md","_readme_localurl":"venth~aws-adfs~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/venth/aws-adfs/master/pyproject.toml"],"_requirements_localurls":["venth~aws-adfs~pyproject.toml"]},{"index":884,"category":"time-series","githuburl":"https://github.com/pastas/pastas","featured":null,"links":null,"description":null,"_repopath":"pastas/pastas","_reponame":"pastas","_stars":276,"_forks":54,"_watches":15,"_topics":["hydrology","groundwater","python","timeseries","analysis","pastas"],"_language":"Jupyter Notebook","_homepage":"http://pastas.readthedocs.io/","_description":"pastas: :spaghetti: Pastas is an open-source Python framework for the analysis of groundwater time series.","_organization":"pastas","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-08-02T00:00:00.000Z","_created_at":"2016-04-15T00:00:00.000Z","_age_weeks":348,"_stars_per_week":0.79,"_pop_contributor_count":17,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["artesia-water","artesiawater","karl-franzensuniversityofgraz","tudelft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.88,"_pop_updated_issues_count":12,"_pop_closed_issues_count":6,"_pop_created_since_days":81,"_pop_updated_since_days":5,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":12.0,"_pop_comment_count":30.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":6069,"_pop_score":50.62,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pastas/pastas/master/README.rst","_readme_localurl":"pastas~pastas~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pastas/pastas/master/setup.py"],"_requirements_localurls":["pastas~pastas~setup.py"]},{"index":727,"category":"web","githuburl":"https://github.com/rstudio/py-shiny","featured":null,"links":null,"description":null,"_repopath":"rstudio/py-shiny","_reponame":"py-shiny","_stars":275,"_forks":14,"_watches":18,"_topics":[],"_language":"JavaScript","_homepage":"https://shiny.rstudio.com/py/","_description":"py-shiny: Shiny for Python","_organization":"rstudio","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2021-07-27T00:00:00.000Z","_age_weeks":72,"_stars_per_week":3.77,"_pop_contributor_count":7,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["freelance","rstudio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.27,"_pop_updated_issues_count":54,"_pop_closed_issues_count":32,"_pop_created_since_days":17,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":54.0,"_pop_comment_count":57.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":2,"_pop_score":36.72,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rstudio/py-shiny/master/README.md","_readme_localurl":"rstudio~py-shiny~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rstudio/py-shiny/master/setup.py"],"_requirements_localurls":["rstudio~py-shiny~setup.py"]},{"index":827,"category":"gis","githuburl":"https://github.com/datasystemslab/geotorch","featured":null,"links":null,"description":null,"_repopath":"datasystemslab/geotorch","_reponame":"GeoTorch","_stars":272,"_forks":15,"_watches":8,"_topics":["classification-model","convlstm-pytorch","deep-learning","deep-neural-networks","deepsat","prediction-model","raster-data","satellite-images","segmentation-models","sequence-models","spatial-data-analysis","spatio-temporal-analysis","spatio-temporal-models","spatio-temporal-prediction","st-resnet","satellite-classification"],"_language":"Python","_homepage":"https://kanchanchy.github.io/geotorch/","_description":"GeoTorch: A Spatiotemporal Deep Learning Framework","_organization":"datasystemslab","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-11-27T00:00:00.000Z","_created_at":"2022-05-23T00:00:00.000Z","_age_weeks":30,"_stars_per_week":9.07,"_pop_contributor_count":4,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amberit","wherobots"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.96,"_pop_updated_issues_count":5,"_pop_closed_issues_count":3,"_pop_created_since_days":7,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":6.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":2,"_pop_score":23.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/datasystemslab/geotorch/master/README.md","_readme_localurl":"datasystemslab~geotorch~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/datasystemslab/geotorch/master/setup.py"],"_requirements_localurls":["datasystemslab~geotorch~setup.py"]},{"index":123,"category":"util","githuburl":"https://github.com/mgedmin/check-manifest","featured":null,"links":null,"description":null,"_repopath":"mgedmin/check-manifest","_reponame":"check-manifest","_stars":268,"_forks":37,"_watches":7,"_topics":[],"_language":"Python","_homepage":"https://pypi.org/p/check-manifest","_description":"check-manifest: Tool to check the completeness of MANIFEST.in for Python packages","_organization":"mgedmin","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-11T00:00:00.000Z","_created_at":"2013-03-05T00:00:00.000Z","_age_weeks":510,"_stars_per_week":0.52,"_pop_contributor_count":22,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nordsoftware","pioneervalleybooks","programmersofvilnius","zestsoftware"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":4,"_pop_closed_issues_count":4,"_pop_created_since_days":119,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":4.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":789,"_pop_score":51.42,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mgedmin/check-manifest/master/README.rst","_readme_localurl":"mgedmin~check-manifest~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mgedmin/check-manifest/master/setup.py"],"_requirements_localurls":["mgedmin~check-manifest~setup.py"]},{"index":852,"category":"web","githuburl":"https://github.com/conradbez/hstream","featured":null,"links":null,"description":null,"_repopath":"conradbez/hstream","_reponame":"hstream","_stars":264,"_forks":11,"_watches":6,"_topics":[],"_language":"Python","_homepage":null,"_description":"hstream: Hyper Stream","_organization":"conradbez","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-11-24T00:00:00.000Z","_created_at":"2022-11-03T00:00:00.000Z","_age_weeks":6,"_stars_per_week":40.17,"_pop_contributor_count":5,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["streamlit"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.79,"_pop_updated_issues_count":9,"_pop_closed_issues_count":9,"_pop_created_since_days":2,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":9.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":16.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/conradbez/hstream/master/README.md","_readme_localurl":"conradbez~hstream~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/conradbez/hstream/master/setup.py"],"_requirements_localurls":["conradbez~hstream~setup.py"]},{"index":210,"category":"util","githuburl":"https://github.com/tiangolo/poetry-version-plugin","featured":null,"links":null,"description":null,"_repopath":"tiangolo/poetry-version-plugin","_reponame":"poetry-version-plugin","_stars":263,"_forks":24,"_watches":5,"_topics":["python-poetry","packaging","python","python3","pypi","packaging-for-pypi"],"_language":"Python","_homepage":"","_description":"poetry-version-plugin: Poetry plugin for dynamically extracting the package version from a __version__ variable or a Git tag.","_organization":"tiangolo","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2021-05-28T00:00:00.000Z","_created_at":"2021-05-27T00:00:00.000Z","_age_weeks":81,"_stars_per_week":3.22,"_pop_contributor_count":3,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["belike"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":19,"_pop_updated_since_days":19,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":8.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/poetry-version-plugin/master/README.md","_readme_localurl":"tiangolo~poetry-version-plugin~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tiangolo/poetry-version-plugin/master/pyproject.toml"],"_requirements_localurls":["tiangolo~poetry-version-plugin~pyproject.toml"]},{"index":307,"category":"crypto","githuburl":"https://github.com/ethereum/eth-utils","featured":null,"links":null,"description":null,"_repopath":"ethereum/eth-utils","_reponame":"eth-utils","_stars":263,"_forks":140,"_watches":18,"_topics":["ethereum","python","utility-library"],"_language":"Python","_homepage":"https://eth-utils.readthedocs.io/en/latest/","_description":"eth-utils: Utility functions for working with ethereum related codebases.","_organization":"ethereum","_updated_at":"2022-12-03T00:00:00.000Z","_last_commit_date":"2022-11-17T00:00:00.000Z","_created_at":"2017-02-07T00:00:00.000Z","_age_weeks":305,"_stars_per_week":0.86,"_pop_contributor_count":31,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ethereum","ethereumfoundation"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":12,"_pop_closed_issues_count":4,"_pop_created_since_days":71,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":12.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":92,"_pop_score":43.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethereum/eth-utils/master/README.md","_readme_localurl":"ethereum~eth-utils~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ethereum/eth-utils/master/setup.py","https://raw.githubusercontent.com/ethereum/eth-utils/master/pyproject.toml"],"_requirements_localurls":["ethereum~eth-utils~setup.py","ethereum~eth-utils~pyproject.toml"]},{"index":342,"category":"term","githuburl":"https://github.com/rockhopper-technologies/enlighten","featured":null,"links":null,"description":null,"_repopath":"rockhopper-technologies/enlighten","_reponame":"enlighten","_stars":263,"_forks":19,"_watches":4,"_topics":["python"],"_language":"Python","_homepage":"https://python-enlighten.readthedocs.io","_description":"Enlighten Progress Bar for Python Console Apps","_organization":"rockhopper-technologies","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2017-09-22T00:00:00.000Z","_age_weeks":273,"_stars_per_week":0.96,"_pop_contributor_count":5,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["micaeljarniac"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.54,"_pop_updated_issues_count":4,"_pop_closed_issues_count":3,"_pop_created_since_days":64,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":4.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.8,"_pop_dependents_count":5,"_pop_score":33.22,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/rockhopper-technologies/enlighten/master/README.rst","_readme_localurl":"rockhopper-technologies~enlighten~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rockhopper-technologies/enlighten/master/requirements.txt","https://raw.githubusercontent.com/rockhopper-technologies/enlighten/master/setup.py"],"_requirements_localurls":["rockhopper-technologies~enlighten~requirements.txt","rockhopper-technologies~enlighten~setup.py"]},{"index":385,"category":"nlp","githuburl":"https://github.com/kootenpv/contractions","featured":null,"links":null,"description":null,"_repopath":"kootenpv/contractions","_reponame":"contractions","_stars":263,"_forks":35,"_watches":7,"_topics":[],"_language":"Python","_homepage":null,"_description":"contractions: Fixes contractions such as `you're` to you `are`","_organization":"kootenpv","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-15T00:00:00.000Z","_created_at":"2016-12-25T00:00:00.000Z","_age_weeks":312,"_stars_per_week":0.84,"_pop_contributor_count":14,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["japan","vankootenaisolutions/mgnr.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.23,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":73,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":16,"_pop_score":29.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kootenpv/contractions/master/README.md","_readme_localurl":"kootenpv~contractions~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kootenpv/contractions/master/requirements.txt","https://raw.githubusercontent.com/kootenpv/contractions/master/setup.py"],"_requirements_localurls":["kootenpv~contractions~requirements.txt","kootenpv~contractions~setup.py"]},{"index":508,"category":"data","githuburl":"https://github.com/facebookresearch/mephisto","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/mephisto","_reponame":"Mephisto","_stars":258,"_forks":57,"_watches":14,"_topics":[],"_language":"JavaScript","_homepage":"https://mephisto.ai/","_description":"Mephisto: A suite of tools for managing crowdsourcing tasks from the inception through to data packaging for research use. ","_organization":"facebookresearch","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2019-08-19T00:00:00.000Z","_age_weeks":174,"_stars_per_week":1.48,"_pop_contributor_count":33,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["spectatorpublishingcorrelation-one"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":16.15,"_pop_updated_issues_count":76,"_pop_closed_issues_count":64,"_pop_created_since_days":41,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":76.0,"_pop_comment_count":85.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":80,"_pop_score":47.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/mephisto/master/README.md","_readme_localurl":"facebookresearch~mephisto~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/mephisto/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~mephisto~pyproject.toml"]},{"index":303,"category":"util","githuburl":"https://github.com/airbnb/ottr","featured":null,"links":null,"description":null,"_repopath":"airbnb/ottr","_reponame":"ottr","_stars":257,"_forks":27,"_watches":8,"_topics":[],"_language":"Python","_homepage":"","_description":"ottr: Serverless Public Key Infrastructure Framework","_organization":"airbnb","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-01-04T00:00:00.000Z","_created_at":"2021-08-27T00:00:00.000Z","_age_weeks":68,"_stars_per_week":3.76,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["coinbase"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":16,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":7.13,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/airbnb/ottr/master/README.md","_readme_localurl":"airbnb~ottr~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/airbnb/ottr/master/requirements.txt"],"_requirements_localurls":["airbnb~ottr~requirements.txt"]},{"index":418,"category":"pandas","githuburl":"https://github.com/zsailer/pandas_flavor","featured":null,"links":null,"description":null,"_repopath":"zsailer/pandas_flavor","_reponame":"pandas_flavor","_stars":256,"_forks":17,"_watches":6,"_topics":["pandas"],"_language":"Python","_homepage":"https://zsailer.github.io/software/pandas-flavor/","_description":"pandas_flavor: The easy way to write your own flavor of Pandas","_organization":"zsailer","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-04-17T00:00:00.000Z","_created_at":"2018-01-25T00:00:00.000Z","_age_weeks":255,"_stars_per_week":1.0,"_pop_contributor_count":5,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["apple","bigabid"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.38,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":60,"_pop_updated_since_days":8,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":18.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zsailer/pandas_flavor/master/README.md","_readme_localurl":"zsailer~pandas_flavor~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/zsailer/pandas_flavor/master/setup.py","https://raw.githubusercontent.com/zsailer/pandas_flavor/master/pyproject.toml"],"_requirements_localurls":["zsailer~pandas_flavor~setup.py","zsailer~pandas_flavor~pyproject.toml"]},{"index":670,"category":"gis","githuburl":"https://github.com/cgal/cgal-swig-bindings","featured":null,"links":null,"description":null,"_repopath":"cgal/cgal-swig-bindings","_reponame":"cgal-swig-bindings","_stars":252,"_forks":78,"_watches":26,"_topics":[],"_language":"C++","_homepage":"","_description":"cgal-swig-bindings: CGAL bindings using SWIG","_organization":"cgal","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-10-19T00:00:00.000Z","_created_at":"2015-03-14T00:00:00.000Z","_age_weeks":405,"_stars_per_week":0.62,"_pop_contributor_count":21,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["geometryfactory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.4,"_pop_updated_issues_count":12,"_pop_closed_issues_count":7,"_pop_created_since_days":95,"_pop_updated_since_days":2,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":12.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":4,"_pop_score":33.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cgal/cgal-swig-bindings/master/README.md","_readme_localurl":"cgal~cgal-swig-bindings~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/cgal/cgal-swig-bindings/master/setup.py"],"_requirements_localurls":["cgal~cgal-swig-bindings~setup.py"]},{"index":693,"category":"data","githuburl":"https://github.com/paperswithcode/sota-extractor","featured":null,"links":null,"description":null,"_repopath":"paperswithcode/sota-extractor","_reponame":"sota-extractor","_stars":251,"_forks":27,"_watches":13,"_topics":[],"_language":"Python","_homepage":null,"_description":"sota-extractor: The SOTA extractor pipeline","_organization":"paperswithcode","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-03-09T00:00:00.000Z","_created_at":"2018-12-07T00:00:00.000Z","_age_weeks":210,"_stars_per_week":1.19,"_pop_contributor_count":8,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["https://alefnula.io","metaai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":49,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":21.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/README.md","_readme_localurl":"paperswithcode~sota-extractor~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/requirements.txt","https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/setup.py"],"_requirements_localurls":["paperswithcode~sota-extractor~requirements.txt","paperswithcode~sota-extractor~setup.py"]},{"index":587,"category":"ml","githuburl":"https://github.com/merantix-momentum/squirrel-core","featured":null,"links":null,"description":null,"_repopath":"merantix-momentum/squirrel-core","_reponame":"squirrel-core","_stars":249,"_forks":6,"_watches":14,"_topics":["python","ml","machine-learning","data-science","computer-vision","cv","nlp","natural-language-processing","ai","pytorch","tensorflow","jax","datasets","distributed","dataops","collaboration","deep-learning","data-mesh","data-ingestion","cloud-computing"],"_language":"Python","_homepage":"https://squirrel-core.readthedocs.io/","_description":"squirrel-core: A Python library that enables ML teams to share, load, and transform data in a collaborative, flexible, and efficient way :chestnut:","_organization":"merantix-momentum","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-11-17T00:00:00.000Z","_created_at":"2022-02-11T00:00:00.000Z","_age_weeks":44,"_stars_per_week":5.6,"_pop_contributor_count":12,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["idealointernetgmbh","merantix&pw-solutions","merantixlabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.87,"_pop_updated_issues_count":17,"_pop_closed_issues_count":14,"_pop_created_since_days":10,"_pop_updated_since_days":1,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":17.0,"_pop_comment_count":21.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":31.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/merantix-momentum/squirrel-core/master/README.md","_readme_localurl":"merantix-momentum~squirrel-core~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/merantix-momentum/squirrel-core/master/requirements.txt","https://raw.githubusercontent.com/merantix-momentum/squirrel-core/master/setup.py","https://raw.githubusercontent.com/merantix-momentum/squirrel-core/master/pyproject.toml"],"_requirements_localurls":["merantix-momentum~squirrel-core~requirements.txt","merantix-momentum~squirrel-core~setup.py","merantix-momentum~squirrel-core~pyproject.toml"]},{"index":374,"category":"data","githuburl":"https://github.com/ndrplz/google-drive-downloader","featured":null,"links":null,"description":null,"_repopath":"ndrplz/google-drive-downloader","_reponame":"google-drive-downloader","_stars":249,"_forks":63,"_watches":11,"_topics":[],"_language":"Python","_homepage":null,"_description":"google-drive-downloader: Minimal class to download shared files from Google Drive.","_organization":"ndrplz","_updated_at":"2022-11-15T00:00:00.000Z","_last_commit_date":"2019-02-09T00:00:00.000Z","_created_at":"2017-12-08T00:00:00.000Z","_age_weeks":262,"_stars_per_week":0.95,"_pop_contributor_count":4,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nomitri-perceptionaiformobile"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":61,"_pop_updated_since_days":47,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":10.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ndrplz/google-drive-downloader/master/README.md","_readme_localurl":"ndrplz~google-drive-downloader~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ndrplz/google-drive-downloader/master/setup.py"],"_requirements_localurls":["ndrplz~google-drive-downloader~setup.py"]},{"index":300,"category":"nlp","githuburl":"https://github.com/openai/grade-school-math","featured":null,"links":null,"description":null,"_repopath":"openai/grade-school-math","_reponame":"grade-school-math","_stars":248,"_forks":47,"_watches":7,"_topics":[],"_language":"Python","_homepage":null,"_description":"openai/grade-school-math","_organization":"openai","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2021-11-19T00:00:00.000Z","_created_at":"2021-10-20T00:00:00.000Z","_age_weeks":60,"_stars_per_week":4.08,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["openai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":14,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":2,"_pop_score":9.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/grade-school-math/master/README.md","_readme_localurl":"openai~grade-school-math~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/grade-school-math/master/setup.py"],"_requirements_localurls":["openai~grade-school-math~setup.py"]},{"index":248,"category":"util","githuburl":"https://github.com/rpgreen/apilogs","featured":null,"links":null,"description":null,"_repopath":"rpgreen/apilogs","_reponame":"apilogs","_stars":247,"_forks":19,"_watches":9,"_topics":["api","gateway","api-gateway","aws","cloudwatch-logs","logging","lambda","aws-lambda","aws-apigateway"],"_language":"Python","_homepage":"","_description":"apilogs: Easy logging and debugging for Amazon API Gateway and AWS Lambda Serverless APIs","_organization":"rpgreen","_updated_at":"2022-10-23T00:00:00.000Z","_last_commit_date":"2019-11-13T00:00:00.000Z","_created_at":"2016-09-07T00:00:00.000Z","_age_weeks":327,"_stars_per_week":0.75,"_pop_contributor_count":23,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["avira","engineeringstableauto"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":76,"_pop_updated_since_days":38,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":15.84,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/rpgreen/apilogs/master/README.rst","_readme_localurl":"rpgreen~apilogs~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rpgreen/apilogs/master/setup.py"],"_requirements_localurls":["rpgreen~apilogs~setup.py"]},{"index":714,"category":"ml-ops","githuburl":"https://github.com/unionai-oss/unionml","featured":null,"links":null,"description":null,"_repopath":"unionai-oss/unionml","_reponame":"unionml","_stars":246,"_forks":38,"_watches":4,"_topics":["machine-learning","mlops","hacktoberfest"],"_language":"Python","_homepage":"https://www.union.ai/unionml","_description":"UnionML: the easiest way to build and deploy machine learning microservices","_organization":"unionai-oss","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2021-11-17T00:00:00.000Z","_age_weeks":56,"_stars_per_week":4.34,"_pop_contributor_count":15,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["letsopen-source","unionai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.79,"_pop_updated_issues_count":76,"_pop_closed_issues_count":46,"_pop_created_since_days":13,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":76.0,"_pop_comment_count":127.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":2,"_pop_score":39.52,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/unionai-oss/unionml/master/README.md","_readme_localurl":"unionai-oss~unionml~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/unionai-oss/unionml/master/requirements.txt","https://raw.githubusercontent.com/unionai-oss/unionml/master/setup.py","https://raw.githubusercontent.com/unionai-oss/unionml/master/pyproject.toml"],"_requirements_localurls":["unionai-oss~unionml~requirements.txt","unionai-oss~unionml~setup.py","unionai-oss~unionml~pyproject.toml"]},{"index":480,"category":"pandas","githuburl":"https://github.com/holoviz/spatialpandas","featured":null,"links":null,"description":null,"_repopath":"holoviz/spatialpandas","_reponame":"spatialpandas","_stars":245,"_forks":21,"_watches":22,"_topics":["holoviz","spatialpandas","pandas","geopandas","geographic-data"],"_language":"Python","_homepage":"","_description":"spatialpandas: Pandas extension arrays for spatial/geometric operations","_organization":"holoviz","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2019-10-28T00:00:00.000Z","_age_weeks":164,"_stars_per_week":1.49,"_pop_contributor_count":9,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda","datum-tech","hextechnologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":8,"_pop_closed_issues_count":7,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":8.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":2,"_pop_score":30.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/spatialpandas/master/README.md","_readme_localurl":"holoviz~spatialpandas~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/spatialpandas/master/setup.py","https://raw.githubusercontent.com/holoviz/spatialpandas/master/pyproject.toml"],"_requirements_localurls":["holoviz~spatialpandas~setup.py","holoviz~spatialpandas~pyproject.toml"]},{"index":454,"category":"gis","githuburl":"https://github.com/openaddresses/pyesridump","featured":null,"links":null,"description":null,"_repopath":"openaddresses/pyesridump","_reponame":"pyesridump","_stars":243,"_forks":59,"_watches":16,"_topics":[],"_language":"Python","_homepage":null,"_description":"pyesridump: Scrapes an ESRI MapServer REST endpoint to spit out more generally-usable geodata.","_organization":"openaddresses","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-06-19T00:00:00.000Z","_created_at":"2013-12-06T00:00:00.000Z","_age_weeks":471,"_stars_per_week":0.52,"_pop_contributor_count":12,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["datamade","nlt","openaddressesdevelopmentseed"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.38,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":110,"_pop_updated_since_days":6,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":3.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":28.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openaddresses/pyesridump/master/README.md","_readme_localurl":"openaddresses~pyesridump~README.md","_requirements_filenames":["setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/openaddresses/pyesridump/master/setup.py","https://raw.githubusercontent.com/openaddresses/pyesridump/master/Pipfile"],"_requirements_localurls":["openaddresses~pyesridump~setup.py","openaddresses~pyesridump~Pipfile"]},{"index":276,"category":"crypto","githuburl":"https://github.com/ethtx/ethtx_ce","featured":null,"links":null,"description":null,"_repopath":"ethtx/ethtx_ce","_reponame":"ethtx_ce","_stars":239,"_forks":60,"_watches":13,"_topics":[],"_language":"Python","_homepage":"https://ethtx.info","_description":"ethtx_ce: Ethereum transaction decoder (community version).","_organization":"ethtx","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-05T00:00:00.000Z","_created_at":"2021-07-26T00:00:00.000Z","_age_weeks":73,"_stars_per_week":3.27,"_pop_contributor_count":7,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["py-world","tokenflowinsights"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.71,"_pop_updated_issues_count":9,"_pop_closed_issues_count":9,"_pop_created_since_days":17,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":9.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":25.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethtx/ethtx_ce/master/README.md","_readme_localurl":"ethtx~ethtx_ce~README.md","_requirements_filenames":["Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/ethtx/ethtx_ce/master/Pipfile"],"_requirements_localurls":["ethtx~ethtx_ce~Pipfile"]},{"index":864,"category":"ml-ops","githuburl":"https://github.com/astronomer/airflow-chart","featured":null,"links":null,"description":null,"_repopath":"astronomer/airflow-chart","_reponame":"airflow-chart","_stars":239,"_forks":87,"_watches":44,"_topics":["helm-chart","airflow","apache-airflow","kubernetes"],"_language":"Python","_homepage":null,"_description":"airflow-chart: A Helm chart to install Apache Airflow on Kubernetes","_organization":"astronomer","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2020-01-22T00:00:00.000Z","_age_weeks":151,"_stars_per_week":1.58,"_pop_contributor_count":48,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["astronomer","cerebral","mandolin-dev"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.58,"_pop_updated_issues_count":29,"_pop_closed_issues_count":29,"_pop_created_since_days":35,"_pop_updated_since_days":0,"_pop_recent_releases_count":18,"_pop_recent_releases_estimated_tags":29,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":29.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":14,"_pop_score":44.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/astronomer/airflow-chart/master/README.md","_readme_localurl":"astronomer~airflow-chart~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":277,"category":"data","githuburl":"https://github.com/airbnb/omniduct","featured":null,"links":null,"description":null,"_repopath":"airbnb/omniduct","_reponame":"omniduct","_stars":238,"_forks":47,"_watches":30,"_topics":[],"_language":"Python","_homepage":"","_description":"omniduct: A toolkit providing a uniform interface for connecting to and extracting data from a wide variety of (potentially remote) data stores (including HDFS, Hive, Presto, MySQL, etc).","_organization":"airbnb","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-05-09T00:00:00.000Z","_created_at":"2017-02-22T00:00:00.000Z","_age_weeks":303,"_stars_per_week":0.78,"_pop_contributor_count":12,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["airbnb","datascientistatnetflix"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":71,"_pop_updated_since_days":7,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":19.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/airbnb/omniduct/master/README.md","_readme_localurl":"airbnb~omniduct~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/airbnb/omniduct/master/setup.py"],"_requirements_localurls":["airbnb~omniduct~setup.py"]},{"index":588,"category":"data","githuburl":"https://github.com/tokern/data-lineage","featured":null,"links":null,"description":null,"_repopath":"tokern/data-lineage","_reponame":"data-lineage","_stars":235,"_forks":27,"_watches":8,"_topics":["data-lineage","data-governance","python","postgresql","jupyter"],"_language":"Python","_homepage":"https://tokern.io/data-lineage/","_description":"data-lineage: Generate and Visualize Data Lineage from query history","_organization":"tokern","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-05-02T00:00:00.000Z","_created_at":"2020-03-17T00:00:00.000Z","_age_weeks":143,"_stars_per_week":1.63,"_pop_contributor_count":4,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":8,"_pop_closed_issues_count":0,"_pop_created_since_days":34,"_pop_updated_since_days":8,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":8.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":14.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tokern/data-lineage/master/README.md","_readme_localurl":"tokern~data-lineage~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tokern/data-lineage/master/pyproject.toml"],"_requirements_localurls":["tokern~data-lineage~pyproject.toml"]},{"index":657,"category":"template","githuburl":"https://github.com/sqlalchemy/mako","featured":null,"links":null,"description":null,"_repopath":"sqlalchemy/mako","_reponame":"mako","_stars":234,"_forks":46,"_watches":10,"_topics":[],"_language":"Python","_homepage":"https://www.makotemplates.org","_description":"Mako Templates for Python","_organization":"sqlalchemy","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2018-11-26T00:00:00.000Z","_age_weeks":212,"_stars_per_week":1.1,"_pop_contributor_count":59,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["iter8ve","mozilla","redhat"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.67,"_pop_updated_issues_count":7,"_pop_closed_issues_count":7,"_pop_created_since_days":49,"_pop_updated_since_days":1,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":7.0,"_pop_comment_count":17.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":1216,"_pop_score":50.88,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sqlalchemy/mako/master/README.rst","_readme_localurl":"sqlalchemy~mako~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sqlalchemy/mako/master/setup.py","https://raw.githubusercontent.com/sqlalchemy/mako/master/pyproject.toml"],"_requirements_localurls":["sqlalchemy~mako~setup.py","sqlalchemy~mako~pyproject.toml"]},{"index":870,"category":"ml","githuburl":"https://github.com/infer-actively/pymdp","featured":null,"links":null,"description":null,"_repopath":"infer-actively/pymdp","_reponame":"pymdp","_stars":233,"_forks":36,"_watches":23,"_topics":[],"_language":"Python","_homepage":"","_description":"pymdp: A Python implementation of active inference for Markov Decision Processes","_organization":"infer-actively","_updated_at":"2022-12-10T00:00:00.000Z","_last_commit_date":"2022-12-08T00:00:00.000Z","_created_at":"2019-11-27T00:00:00.000Z","_age_weeks":159,"_stars_per_week":1.46,"_pop_contributor_count":12,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["thoughtmachine"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.54,"_pop_updated_issues_count":7,"_pop_closed_issues_count":6,"_pop_created_since_days":37,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":7.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":8,"_pop_score":34.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/infer-actively/pymdp/master/README.md","_readme_localurl":"infer-actively~pymdp~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/infer-actively/pymdp/master/requirements.txt","https://raw.githubusercontent.com/infer-actively/pymdp/master/setup.py"],"_requirements_localurls":["infer-actively~pymdp~requirements.txt","infer-actively~pymdp~setup.py"]},{"index":515,"category":"data","githuburl":"https://github.com/jovianml/opendatasets","featured":null,"links":null,"description":null,"_repopath":"jovianml/opendatasets","_reponame":"opendatasets","_stars":233,"_forks":109,"_watches":14,"_topics":["data-science","machine-learning","datasets","python"],"_language":"Python","_homepage":"","_description":"opendatasets: A Python library for downloading datasets from Kaggle, Google Drive, and other online sources.","_organization":"jovianml","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-01T00:00:00.000Z","_created_at":"2020-09-17T00:00:00.000Z","_age_weeks":117,"_stars_per_week":1.98,"_pop_contributor_count":3,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["jovian","jovianml"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":27,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":3,"_pop_score":18.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jovianml/opendatasets/master/README.md","_readme_localurl":"jovianml~opendatasets~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jovianml/opendatasets/master/requirements.txt","https://raw.githubusercontent.com/jovianml/opendatasets/master/setup.py"],"_requirements_localurls":["jovianml~opendatasets~requirements.txt","jovianml~opendatasets~setup.py"]},{"index":229,"category":"data","githuburl":"https://github.com/microsoft/genalog","featured":null,"links":null,"description":null,"_repopath":"microsoft/genalog","_reponame":"genalog","_stars":232,"_forks":23,"_watches":10,"_topics":["ner","ocr-recognition","python","text-alignment","data-generation","data-science","machine-learning","synthetic-data","synthetic-images","synthetic-data-generation"],"_language":"Jupyter Notebook","_homepage":"https://microsoft.github.io/genalog/","_description":"Genalog is an open source, cross-platform python package allowing generation of synthetic document images with custom degradations and text alignment capabilities.","_organization":"microsoft","_updated_at":"2022-12-11T00:00:00.000Z","_last_commit_date":"2022-09-13T00:00:00.000Z","_created_at":"2020-06-15T00:00:00.000Z","_age_weeks":131,"_stars_per_week":1.77,"_pop_contributor_count":5,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":31,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":16.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/genalog/master/README.md","_readme_localurl":"microsoft~genalog~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/genalog/master/requirements.txt","https://raw.githubusercontent.com/microsoft/genalog/master/setup.py"],"_requirements_localurls":["microsoft~genalog~requirements.txt","microsoft~genalog~setup.py"]},{"index":737,"category":"ml-ops","githuburl":"https://github.com/skops-dev/skops","featured":null,"links":null,"description":null,"_repopath":"skops-dev/skops","_reponame":"skops","_stars":227,"_forks":32,"_watches":7,"_topics":["huggingface","machine-learning","mlops","scikit-learn","hacktoberfest"],"_language":"Python","_homepage":"https://skops.readthedocs.io/en/stable/","_description":"skops is a Python library helping you share your scikit-learn based models and put them in production","_organization":"skops-dev","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2022-05-04T00:00:00.000Z","_age_weeks":32,"_stars_per_week":6.94,"_pop_contributor_count":9,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["huggingface","jsainsburyplc,sainsburys-tech"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.48,"_pop_updated_issues_count":138,"_pop_closed_issues_count":104,"_pop_created_since_days":8,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":138.0,"_pop_comment_count":530.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.8,"_pop_dependents_count":4,"_pop_score":38.3,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/skops-dev/skops/master/README.rst","_readme_localurl":"skops-dev~skops~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/skops-dev/skops/master/setup.py","https://raw.githubusercontent.com/skops-dev/skops/master/pyproject.toml"],"_requirements_localurls":["skops-dev~skops~setup.py","skops-dev~skops~pyproject.toml"]},{"index":83,"category":"ml","githuburl":"https://github.com/stan-dev/pystan","featured":null,"links":null,"description":null,"_repopath":"stan-dev/pystan","_reponame":"pystan","_stars":226,"_forks":45,"_watches":12,"_topics":[],"_language":"Python","_homepage":"","_description":"PyStan, a Python interface to Stan, a platform for statistical modeling. Documentation: https://pystan.readthedocs.io","_organization":"stan-dev","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-26T00:00:00.000Z","_created_at":"2017-09-17T00:00:00.000Z","_age_weeks":274,"_stars_per_week":0.82,"_pop_contributor_count":11,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["lumoanalytics"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":23,"_pop_closed_issues_count":16,"_pop_created_since_days":64,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":23.0,"_pop_comment_count":58.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":26,"_pop_score":37.72,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/stan-dev/pystan/master/README.rst","_readme_localurl":"stan-dev~pystan~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/stan-dev/pystan/master/pyproject.toml"],"_requirements_localurls":["stan-dev~pystan~pyproject.toml"]},{"index":274,"category":"data","githuburl":"https://github.com/amzn/ion-python","featured":null,"links":null,"description":null,"_repopath":"amzn/ion-python","_reponame":"ion-python","_stars":215,"_forks":49,"_watches":23,"_topics":[],"_language":"Python","_homepage":"http://amzn.github.io/ion-docs/","_description":"ion-python: A Python implementation of Amazon Ion.","_organization":"amzn","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2016-04-07T00:00:00.000Z","_age_weeks":349,"_stars_per_week":0.62,"_pop_contributor_count":25,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon","amzn"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.33,"_pop_updated_issues_count":13,"_pop_closed_issues_count":5,"_pop_created_since_days":82,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":13.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":16,"_pop_score":38.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/amzn/ion-python/master/README.md","_readme_localurl":"amzn~ion-python~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/amzn/ion-python/master/requirements.txt","https://raw.githubusercontent.com/amzn/ion-python/master/setup.py"],"_requirements_localurls":["amzn~ion-python~requirements.txt","amzn~ion-python~setup.py"]},{"index":491,"category":"gis","githuburl":"https://github.com/cogeotiff/rio-cogeo","featured":null,"links":null,"description":null,"_repopath":"cogeotiff/rio-cogeo","_reponame":"rio-cogeo","_stars":213,"_forks":30,"_watches":44,"_topics":["satellite","cog","geotiff","rasterio","cogeotiff"],"_language":"Python","_homepage":"https://cogeotiff.github.io/rio-cogeo/","_description":"rio-cogeo: Cloud Optimized GeoTIFF creation and validation plugin for rasterio","_organization":"cogeotiff","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-10-26T00:00:00.000Z","_created_at":"2018-03-09T00:00:00.000Z","_age_weeks":249,"_stars_per_week":0.85,"_pop_contributor_count":13,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["developmentseed","regrowag","uav4geo"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.63,"_pop_updated_issues_count":4,"_pop_closed_issues_count":3,"_pop_created_since_days":58,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":4.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":11,"_pop_score":37.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cogeotiff/rio-cogeo/master/README.md","_readme_localurl":"cogeotiff~rio-cogeo~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cogeotiff/rio-cogeo/master/pyproject.toml"],"_requirements_localurls":["cogeotiff~rio-cogeo~pyproject.toml"]},{"index":888,"category":"study","githuburl":"https://github.com/amaargiru/pyroad","featured":null,"links":null,"description":null,"_repopath":"amaargiru/pyroad","_reponame":"pyroad","_stars":205,"_forks":26,"_watches":5,"_topics":["python","roadmap","tutorial"],"_language":"Jupyter Notebook","_homepage":"","_description":"pyroad: Detailed Python developer roadmap","_organization":"amaargiru","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2022-11-03T00:00:00.000Z","_age_weeks":6,"_stars_per_week":31.2,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["oznadigitalsolutions"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.92,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":2,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":14.54,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/amaargiru/pyroad/master/readme.md","_readme_localurl":"amaargiru~pyroad~readme.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":249,"category":"sim","githuburl":"https://github.com/bilhim/trafficsimulator","featured":null,"links":null,"description":null,"_repopath":"bilhim/trafficsimulator","_reponame":"trafficSimulator","_stars":204,"_forks":77,"_watches":13,"_topics":[],"_language":"Python","_homepage":null,"_description":"bilhim/trafficsimulator","_organization":"bilhim","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2021-09-07T00:00:00.000Z","_created_at":"2021-09-05T00:00:00.000Z","_age_weeks":67,"_stars_per_week":3.04,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":16,"_pop_updated_since_days":16,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":4,"_pop_score":5.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bilhim/trafficsimulator/master/README.md","_readme_localurl":"bilhim~trafficsimulator~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/bilhim/trafficsimulator/master/requirements.txt"],"_requirements_localurls":["bilhim~trafficsimulator~requirements.txt"]},{"index":243,"category":"ml","githuburl":"https://github.com/carla-recourse/carla","featured":null,"links":null,"description":null,"_repopath":"carla-recourse/carla","_reponame":"CARLA","_stars":198,"_forks":42,"_watches":5,"_topics":["python","machine-learning","artificial-intelligence","explainable-ai","explainable-ml","explainability","counterfactual-explanations","counterfactuals","counterfactual","recourse","benchmark","benchmarking","tensorflow","tensorflow2","pytorch"],"_language":"Python","_homepage":"","_description":"CARLA: A Python Library to Benchmark Algorithmic Recourse and Counterfactual Explanation Algorithms","_organization":"carla-recourse","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-09-07T00:00:00.000Z","_created_at":"2020-12-09T00:00:00.000Z","_age_weeks":105,"_stars_per_week":1.87,"_pop_contributor_count":7,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bezerocarbon"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.81,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":25,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":15.23,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/carla-recourse/carla/master/README.md","_readme_localurl":"carla-recourse~carla~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/carla-recourse/carla/master/setup.py"],"_requirements_localurls":["carla-recourse~carla~setup.py"]},{"index":240,"category":"sim","githuburl":"https://github.com/nv-tlabs/gamegan_code","featured":null,"links":null,"description":null,"_repopath":"nv-tlabs/gamegan_code","_reponame":"GameGAN_code","_stars":198,"_forks":32,"_watches":9,"_topics":[],"_language":"Python","_homepage":null,"_description":"GameGAN_code: Learning to Simulate Dynamic Environments with GameGAN (CVPR 2020)","_organization":"nv-tlabs","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2021-11-11T00:00:00.000Z","_created_at":"2020-12-11T00:00:00.000Z","_age_weeks":105,"_stars_per_week":1.88,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":25,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":2,"_pop_score":6.52,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/nv-tlabs/gamegan_code/master/readme.md","_readme_localurl":"nv-tlabs~gamegan_code~readme.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/nv-tlabs/gamegan_code/master/requirements.txt"],"_requirements_localurls":["nv-tlabs~gamegan_code~requirements.txt"]},{"index":865,"category":"ml-ops","githuburl":"https://github.com/astronomer/astro-sdk","featured":null,"links":null,"description":null,"_repopath":"astronomer/astro-sdk","_reponame":"astro-sdk","_stars":197,"_forks":27,"_watches":13,"_topics":["python","sql","pandas","airflow","sqlite","bigquery","postgres","snowflake","gcs","s3","etl","elt","dags","workflows","data-analysis","data-science","apache-airflow"],"_language":"Python","_homepage":"https://docs.astronomer.io/learn/astro-python-sdk-etl","_description":"astro-sdk: Astro SDK allows rapid and clean development of {Extract, Load, Transform} workflows using Python and SQL, powered by Apache Airflow.","_organization":"astronomer","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2021-12-06T00:00:00.000Z","_age_weeks":54,"_stars_per_week":3.65,"_pop_contributor_count":32,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["astronomer","astronomerio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.54,"_pop_updated_issues_count":677,"_pop_closed_issues_count":489,"_pop_created_since_days":13,"_pop_updated_since_days":0,"_pop_recent_releases_count":42,"_pop_recent_releases_estimated_tags":49,"_pop_recent_releases_adjusted_count":42,"_pop_issue_count":677.0,"_pop_comment_count":784.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":112,"_pop_score":52.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/astronomer/astro-sdk/master/README.md","_readme_localurl":"astronomer~astro-sdk~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":836,"category":"gis","githuburl":"https://github.com/r-barnes/richdem","featured":null,"links":null,"description":null,"_repopath":"r-barnes/richdem","_reponame":"richdem","_stars":195,"_forks":57,"_watches":14,"_topics":["digital-elevation-model","geosciences","geospatial","hydrology","hydrologic-modeling","big-data"],"_language":"C++","_homepage":"","_description":"richdem: High-performance Terrain and Hydrology Analysis ","_organization":"r-barnes","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-11-18T00:00:00.000Z","_created_at":"2013-01-06T00:00:00.000Z","_age_weeks":519,"_stars_per_week":0.38,"_pop_contributor_count":4,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["universityofcolorado","universityofidaho"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.79,"_pop_updated_issues_count":9,"_pop_closed_issues_count":1,"_pop_created_since_days":121,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":9.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":84,"_pop_score":34.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/r-barnes/richdem/master/README.md","_readme_localurl":"r-barnes~richdem~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/r-barnes/richdem/master/requirements.txt"],"_requirements_localurls":["r-barnes~richdem~requirements.txt"]},{"index":733,"category":"ml","githuburl":"https://github.com/autonlab/auton-survival","featured":null,"links":null,"description":null,"_repopath":"autonlab/auton-survival","_reponame":"auton-survival","_stars":194,"_forks":48,"_watches":6,"_topics":["survival-analysis","reliability-analysis","python","data-science","deep-learning","machine-learning","time-to-event","counterfactual-inference","regression","causal-inference","graphical-models"],"_language":"Python","_homepage":"http://autonlab.github.io/auton-survival","_description":"auton-survival: Auton Survival - an open source package for Regression, Counterfactual Estimation, Evaluation and Phenotyping with Censored Time-to-Events ","_organization":"autonlab","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2022-11-05T00:00:00.000Z","_created_at":"2020-04-01T00:00:00.000Z","_age_weeks":141,"_stars_per_week":1.37,"_pop_contributor_count":10,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["carnegiemellonuniversity","universityofcambridge"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.85,"_pop_updated_issues_count":8,"_pop_closed_issues_count":5,"_pop_created_since_days":33,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":8.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.4,"_pop_dependents_count":12,"_pop_score":34.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/autonlab/auton-survival/master/README.md","_readme_localurl":"autonlab~auton-survival~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/autonlab/auton-survival/master/requirements.txt"],"_requirements_localurls":["autonlab~auton-survival~requirements.txt"]},{"index":859,"category":"jupyter","githuburl":"https://github.com/jupyter/nbformat","featured":null,"links":null,"description":null,"_repopath":"jupyter/nbformat","_reponame":"nbformat","_stars":193,"_forks":142,"_watches":26,"_topics":[],"_language":"Python","_homepage":"http://nbformat.readthedocs.io/","_description":"nbformat: Reference implementation of the Jupyter Notebook format","_organization":"jupyter","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":401,"_stars_per_week":0.48,"_pop_contributor_count":70,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mongodb","noteable-io","quansight-labs","simularesearchlaboratory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.35,"_pop_updated_issues_count":40,"_pop_closed_issues_count":30,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":40.0,"_pop_comment_count":40.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":1138,"_pop_score":57.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/nbformat/master/README.md","_readme_localurl":"jupyter~nbformat~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/nbformat/master/pyproject.toml"],"_requirements_localurls":["jupyter~nbformat~pyproject.toml"]},{"index":456,"category":"gis","githuburl":"https://github.com/graal-research/deepparse","featured":null,"links":null,"description":null,"_repopath":"graal-research/deepparse","_reponame":"deepparse","_stars":190,"_forks":23,"_watches":4,"_topics":["machine-learning","python","addresses-parsing"],"_language":"Python","_homepage":"https://deepparse.org/","_description":"Deepparse is a state-of-the-art library for parsing multinational street addresses using deep learning","_organization":"graal-research","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-01T00:00:00.000Z","_created_at":"2020-07-01T00:00:00.000Z","_age_weeks":128,"_stars_per_week":1.48,"_pop_contributor_count":6,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["baseline.qu\u00e9bec"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.54,"_pop_updated_issues_count":17,"_pop_closed_issues_count":15,"_pop_created_since_days":30,"_pop_updated_since_days":1,"_pop_recent_releases_count":20,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":20,"_pop_issue_count":17.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":34,"_pop_score":36.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/graal-research/deepparse/master/README.md","_readme_localurl":"graal-research~deepparse~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/graal-research/deepparse/master/requirements.txt","https://raw.githubusercontent.com/graal-research/deepparse/master/setup.py","https://raw.githubusercontent.com/graal-research/deepparse/master/pyproject.toml"],"_requirements_localurls":["graal-research~deepparse~requirements.txt","graal-research~deepparse~setup.py","graal-research~deepparse~pyproject.toml"]},{"index":337,"category":"util","githuburl":"https://github.com/mrabarnett/mrab-regex","featured":null,"links":null,"description":null,"_repopath":"mrabarnett/mrab-regex","_reponame":"mrab-regex","_stars":189,"_forks":24,"_watches":5,"_topics":[],"_language":"C","_homepage":null,"_description":"mrabarnett/mrab-regex","_organization":"mrabarnett","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-10-31T00:00:00.000Z","_created_at":"2020-11-02T00:00:00.000Z","_age_weeks":111,"_stars_per_week":1.7,"_pop_contributor_count":9,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["facebook","google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":7,"_pop_closed_issues_count":6,"_pop_created_since_days":26,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":7.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":2311,"_pop_score":42.54,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mrabarnett/mrab-regex/master/README.rst","_readme_localurl":"mrabarnett~mrab-regex~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mrabarnett/mrab-regex/master/setup.py"],"_requirements_localurls":["mrabarnett~mrab-regex~setup.py"]},{"index":446,"category":"gis","githuburl":"https://github.com/pysal/spopt","featured":null,"links":null,"description":null,"_repopath":"pysal/spopt","_reponame":"spopt","_stars":184,"_forks":32,"_watches":13,"_topics":["spatial-optimization","regionalization","facility-location","routing","transportation","spatial-analysis","location-allocation","location-modeling","resource-planning","python"],"_language":"Python","_homepage":"https://pysal.org/spopt/","_description":"spopt: Spatial Optimization","_organization":"pysal","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2019-03-01T00:00:00.000Z","_age_weeks":198,"_stars_per_week":0.93,"_pop_contributor_count":15,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["center-for-open-geographical-science","centerforopengeographicalscience","ornl"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.38,"_pop_updated_issues_count":75,"_pop_closed_issues_count":58,"_pop_created_since_days":46,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":75.0,"_pop_comment_count":73.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":104,"_pop_score":46.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pysal/spopt/master/README.md","_readme_localurl":"pysal~spopt~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pysal/spopt/master/requirements.txt","https://raw.githubusercontent.com/pysal/spopt/master/setup.py"],"_requirements_localurls":["pysal~spopt~requirements.txt","pysal~spopt~setup.py"]},{"index":207,"category":"util","githuburl":"https://github.com/aws/aws-lambda-python-runtime-interface-client","featured":null,"links":null,"description":null,"_repopath":"aws/aws-lambda-python-runtime-interface-client","_reponame":"aws-lambda-python-runtime-interface-client","_stars":181,"_forks":42,"_watches":13,"_topics":[],"_language":"Python","_homepage":null,"_description":"aws/aws-lambda-python-runtime-interface-client","_organization":"aws","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-08-16T00:00:00.000Z","_created_at":"2020-09-02T00:00:00.000Z","_age_weeks":119,"_stars_per_week":1.51,"_pop_contributor_count":21,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["356","amazonwebservices"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":7,"_pop_closed_issues_count":1,"_pop_created_since_days":28,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":7.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":2,"_pop_score":27.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aws/aws-lambda-python-runtime-interface-client/master/README.md","_readme_localurl":"aws~aws-lambda-python-runtime-interface-client~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aws/aws-lambda-python-runtime-interface-client/master/setup.py"],"_requirements_localurls":["aws~aws-lambda-python-runtime-interface-client~setup.py"]},{"index":467,"category":"math","githuburl":"https://github.com/lukaszahradnik/pyneuralogic","featured":null,"links":null,"description":null,"_repopath":"lukaszahradnik/pyneuralogic","_reponame":"PyNeuraLogic","_stars":181,"_forks":14,"_watches":5,"_topics":["machine-learning","deep-learning","graph-neural-networks","relational-learning","python","geometric-deep-learning","pytorch","logic-programming","differentiable-programming"],"_language":"Python","_homepage":"https://pyneuralogic.readthedocs.io/","_description":"PyNeuraLogic lets you use Python to create Differentiable Logic Programs","_organization":"lukaszahradnik","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2020-12-06T00:00:00.000Z","_age_weeks":106,"_stars_per_week":1.71,"_pop_contributor_count":3,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["adevinta","czechtechnicaluniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.31,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":25,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":26.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/README.md","_readme_localurl":"lukaszahradnik~pyneuralogic~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/requirements.txt","https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/setup.py","https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/pyproject.toml"],"_requirements_localurls":["lukaszahradnik~pyneuralogic~requirements.txt","lukaszahradnik~pyneuralogic~setup.py","lukaszahradnik~pyneuralogic~pyproject.toml"]},{"index":899,"category":"gis","githuburl":"https://github.com/kuanb/peartree","featured":null,"links":null,"description":null,"_repopath":"kuanb/peartree","_reponame":"peartree","_stars":181,"_forks":16,"_watches":13,"_topics":["network-analysis","transit","graphs","gtfs","spatial-analysis","gis","modeling"],"_language":"Python","_homepage":"","_description":"peartree: A library for converting transit data into a directed graph for sketch network analysis.","_organization":"kuanb","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2021-01-18T00:00:00.000Z","_created_at":"2017-11-12T00:00:00.000Z","_age_weeks":266,"_stars_per_week":0.68,"_pop_contributor_count":5,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["eradb","mapbox"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":62,"_pop_updated_since_days":23,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":15.66,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/kuanb/peartree/master/README.rst","_readme_localurl":"kuanb~peartree~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kuanb/peartree/master/requirements.txt","https://raw.githubusercontent.com/kuanb/peartree/master/setup.py"],"_requirements_localurls":["kuanb~peartree~requirements.txt","kuanb~peartree~setup.py"]},{"index":520,"category":"gis","githuburl":"https://github.com/lydorn/polygonization-by-frame-field-learning","featured":null,"links":null,"description":null,"_repopath":"lydorn/polygonization-by-frame-field-learning","_reponame":"Polygonization-by-Frame-Field-Learning","_stars":179,"_forks":51,"_watches":11,"_topics":["segmentation","polygonization","remote","sensing","frame","field"],"_language":"Python","_homepage":"","_description":"Polygonization-by-Frame-Field-Learning: This repository contains the code for our fast polygonal building extraction from overhead images pipeline.","_organization":"lydorn","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2020-05-26T00:00:00.000Z","_age_weeks":133,"_stars_per_week":1.34,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":31,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":5.5,"_pop_dependents_count":0,"_pop_score":19.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lydorn/polygonization-by-frame-field-learning/master/README.md","_readme_localurl":"lydorn~polygonization-by-frame-field-learning~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lydorn/polygonization-by-frame-field-learning/master/requirements.txt","https://raw.githubusercontent.com/lydorn/polygonization-by-frame-field-learning/master/setup.py"],"_requirements_localurls":["lydorn~polygonization-by-frame-field-learning~requirements.txt","lydorn~polygonization-by-frame-field-learning~setup.py"]},{"index":585,"category":"gis","githuburl":"https://github.com/spatialucr/geosnap","featured":null,"links":null,"description":null,"_repopath":"spatialucr/geosnap","_reponame":"geosnap","_stars":176,"_forks":28,"_watches":17,"_topics":[],"_language":"Python","_homepage":"https://spatialucr.github.io/geosnap-guide","_description":"geosnap: The Geospatial Neighborhood Analysis Package","_organization":"spatialucr","_updated_at":"2022-12-08T00:00:00.000Z","_last_commit_date":"2022-10-24T00:00:00.000Z","_created_at":"2018-09-19T00:00:00.000Z","_age_weeks":221,"_stars_per_week":0.79,"_pop_contributor_count":9,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["center-for-open-geographical-science","centerforopengeographicalscience","mansueto-institute","ornl","universityofnorthtexas"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.94,"_pop_updated_issues_count":4,"_pop_closed_issues_count":2,"_pop_created_since_days":52,"_pop_updated_since_days":2,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":4.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":16,"_pop_score":33.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/spatialucr/geosnap/master/README.md","_readme_localurl":"spatialucr~geosnap~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/spatialucr/geosnap/master/requirements.txt","https://raw.githubusercontent.com/spatialucr/geosnap/master/setup.py"],"_requirements_localurls":["spatialucr~geosnap~requirements.txt","spatialucr~geosnap~setup.py"]},{"index":731,"category":"gis","githuburl":"https://github.com/bowenc0221/boundary-iou-api","featured":null,"links":null,"description":null,"_repopath":"bowenc0221/boundary-iou-api","_reponame":"boundary-iou-api","_stars":175,"_forks":17,"_watches":8,"_topics":[],"_language":"Python","_homepage":"","_description":"boundary-iou-api: Boundary IoU API (Beta version)","_organization":"bowenc0221","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2021-04-05T00:00:00.000Z","_created_at":"2021-03-29T00:00:00.000Z","_age_weeks":90,"_stars_per_week":1.94,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":21,"_pop_updated_since_days":21,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":3.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bowenc0221/boundary-iou-api/master/README.md","_readme_localurl":"bowenc0221~boundary-iou-api~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bowenc0221/boundary-iou-api/master/setup.py"],"_requirements_localurls":["bowenc0221~boundary-iou-api~setup.py"]},{"index":266,"category":"nlp","githuburl":"https://github.com/allenai/s2orc-doc2json","featured":null,"links":null,"description":null,"_repopath":"allenai/s2orc-doc2json","_reponame":"s2orc-doc2json","_stars":174,"_forks":30,"_watches":6,"_topics":[],"_language":"Python","_homepage":"","_description":"s2orc-doc2json: Parsers for scientific papers (PDF2JSON, TEX2JSON, JATS2JSON)","_organization":"allenai","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2020-12-10T00:00:00.000Z","_age_weeks":105,"_stars_per_week":1.65,"_pop_contributor_count":9,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["allenai","castedo.com","kafkodersfrontiersin"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":6,"_pop_closed_issues_count":5,"_pop_created_since_days":25,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":6.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":25.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/README.md","_readme_localurl":"allenai~s2orc-doc2json~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/requirements.txt","https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/setup.py"],"_requirements_localurls":["allenai~s2orc-doc2json~requirements.txt","allenai~s2orc-doc2json~setup.py"]},{"index":33,"category":"gis","githuburl":"https://github.com/jasonrig/address-net","featured":null,"links":null,"description":null,"_repopath":"jasonrig/address-net","_reponame":"address-net","_stars":171,"_forks":71,"_watches":13,"_topics":["rnn","deep-learning","machine-learning","address-parser"],"_language":"Python","_homepage":null,"_description":"address-net: A package to structure Australian addresses","_organization":"jasonrig","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2020-09-09T00:00:00.000Z","_created_at":"2018-12-05T00:00:00.000Z","_age_weeks":210,"_stars_per_week":0.81,"_pop_contributor_count":2,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deceptiveai","monash-mercpay-baymax"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":49,"_pop_updated_since_days":28,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":0,"_pop_score":15.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jasonrig/address-net/master/README.md","_readme_localurl":"jasonrig~address-net~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jasonrig/address-net/master/setup.py"],"_requirements_localurls":["jasonrig~address-net~setup.py"]},{"index":461,"category":"nlp","githuburl":"https://github.com/yoadtew/zero-shot-image-to-text","featured":null,"links":null,"description":null,"_repopath":"yoadtew/zero-shot-image-to-text","_reponame":"zero-shot-image-to-text","_stars":165,"_forks":23,"_watches":7,"_topics":[],"_language":"Python","_homepage":"","_description":"zero-shot-image-to-text: Implementation of Zero-Shot Image-to-Text Generation for Visual-Semantic Arithmetic","_organization":"yoadtew","_updated_at":"2022-12-11T00:00:00.000Z","_last_commit_date":"2022-09-17T00:00:00.000Z","_created_at":"2021-11-26T00:00:00.000Z","_age_weeks":55,"_stars_per_week":2.98,"_pop_contributor_count":6,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":7,"_pop_closed_issues_count":2,"_pop_created_since_days":13,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":7.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.1,"_pop_dependents_count":0,"_pop_score":11.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/yoadtew/zero-shot-image-to-text/master/README.md","_readme_localurl":"yoadtew~zero-shot-image-to-text~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/yoadtew/zero-shot-image-to-text/master/requirements.txt","https://raw.githubusercontent.com/yoadtew/zero-shot-image-to-text/master/setup.py"],"_requirements_localurls":["yoadtew~zero-shot-image-to-text~requirements.txt","yoadtew~zero-shot-image-to-text~setup.py"]},{"index":415,"category":"ml-dl","githuburl":"https://github.com/rafiqhasan/auto-tensorflow","featured":null,"links":null,"description":null,"_repopath":"rafiqhasan/auto-tensorflow","_reponame":"auto-tensorflow","_stars":163,"_forks":33,"_watches":12,"_topics":["tensorflow","deeplearning","neural-networks","machinelearning","tfx","machine-learning","automl","auto-tensorflow","autotensorflow"],"_language":"Python","_homepage":"","_description":"auto-tensorflow: Build Low Code Automated Tensorflow explainable models in just 3 lines of code. Library created by: Hasan Rafiq - https://www.linkedin.com/in/sam04/","_organization":"rafiqhasan","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2021-07-05T00:00:00.000Z","_age_weeks":76,"_stars_per_week":2.14,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":18,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":14.66,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rafiqhasan/auto-tensorflow/master/README.md","_readme_localurl":"rafiqhasan~auto-tensorflow~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/rafiqhasan/auto-tensorflow/master/setup.py","https://raw.githubusercontent.com/rafiqhasan/auto-tensorflow/master/pyproject.toml"],"_requirements_localurls":["rafiqhasan~auto-tensorflow~setup.py","rafiqhasan~auto-tensorflow~pyproject.toml"]},{"index":819,"category":"time-series","githuburl":"https://github.com/salesforce/deeptime","featured":null,"links":null,"description":null,"_repopath":"salesforce/deeptime","_reponame":"DeepTime","_stars":161,"_forks":22,"_watches":5,"_topics":["deep-learning","forecasting","meta-learning","time-series","time-series-forecasting","time-series-regression","implicit-neural-representation"],"_language":"Python","_homepage":"","_description":"PyTorch code for DeepTime: Deep Time-Index Meta-Learning for Non-Stationary Time-Series Forecasting","_organization":"salesforce","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-03T00:00:00.000Z","_created_at":"2022-06-27T00:00:00.000Z","_age_weeks":25,"_stars_per_week":6.44,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.21,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":6,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":12.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/deeptime/master/README.md","_readme_localurl":"salesforce~deeptime~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/salesforce/deeptime/master/requirements.txt"],"_requirements_localurls":["salesforce~deeptime~requirements.txt"]},{"index":339,"category":"perf","githuburl":"https://github.com/tlkh/tf-metal-experiments","featured":null,"links":null,"description":null,"_repopath":"tlkh/tf-metal-experiments","_reponame":"tf-metal-experiments","_stars":160,"_forks":17,"_watches":9,"_topics":["gpu","deep-learning","tensorflow","m1","m1-max","benchmark","bert"],"_language":"Jupyter Notebook","_homepage":"","_description":"tf-metal-experiments: TensorFlow Metal Backend on Apple Silicon Experiments (just for fun)","_organization":"tlkh","_updated_at":"2022-11-30T00:00:00.000Z","_last_commit_date":"2021-11-15T00:00:00.000Z","_created_at":"2021-10-26T00:00:00.000Z","_age_weeks":59,"_stars_per_week":2.67,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["singaporeuniversityoftechnologyanddesign"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":14,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":7.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tlkh/tf-metal-experiments/master/README.md","_readme_localurl":"tlkh~tf-metal-experiments~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":890,"category":"graph","githuburl":"https://github.com/h4kor/graph-force","featured":null,"links":null,"description":null,"_repopath":"h4kor/graph-force","_reponame":"graph-force","_stars":159,"_forks":0,"_watches":9,"_topics":["force-directed-graphs","graph-algorithms","python","python3"],"_language":"Rust","_homepage":"https://pypi.org/project/graph-force/","_description":"graph-force: Python library for embedding large graphs in 2D space, using force-directed layouts.","_organization":"h4kor","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-11-28T00:00:00.000Z","_created_at":"2022-11-28T00:00:00.000Z","_age_weeks":3,"_stars_per_week":53.0,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.77,"_pop_updated_issues_count":4,"_pop_closed_issues_count":0,"_pop_created_since_days":1,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":5.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/h4kor/graph-force/master/README.md","_readme_localurl":"h4kor~graph-force~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/h4kor/graph-force/master/requirements.txt","https://raw.githubusercontent.com/h4kor/graph-force/master/pyproject.toml"],"_requirements_localurls":["h4kor~graph-force~requirements.txt","h4kor~graph-force~pyproject.toml"]},{"index":743,"category":"study","githuburl":"https://github.com/koaning/calm-notebooks","featured":null,"links":null,"description":null,"_repopath":"koaning/calm-notebooks","_reponame":"calm-notebooks","_stars":158,"_forks":135,"_watches":7,"_topics":[],"_language":"Jupyter Notebook","_homepage":"https://calmcode.io","_description":"calm-notebooks: notebooks that are used at calmcode.io","_organization":"koaning","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2021-10-21T00:00:00.000Z","_created_at":"2020-03-01T00:00:00.000Z","_age_weeks":146,"_stars_per_week":1.08,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["explosion"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":34,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":5,"_pop_score":10.61,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/koaning/calm-notebooks/master/readme.md","_readme_localurl":"koaning~calm-notebooks~readme.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":775,"category":"sim","githuburl":"https://github.com/activitysim/activitysim","featured":null,"links":null,"description":null,"_repopath":"activitysim/activitysim","_reponame":"activitysim","_stars":145,"_forks":86,"_watches":43,"_topics":["python","travel-modeling","data-science","bsd-3-clause","microsimulation","activitysim"],"_language":"Jupyter Notebook","_homepage":"https://activitysim.github.io","_description":"activitysim: An Open Platform for Activity-Based Travel Modeling","_organization":"activitysim","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-09-14T00:00:00.000Z","_created_at":"2014-06-18T00:00:00.000Z","_age_weeks":443,"_stars_per_week":0.33,"_pop_contributor_count":25,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cambridgesystematics|georgiatech","populus-ai","populus-aimapcraftlabsoaklandanalytics","ptvgroup","rsginc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.9,"_pop_updated_issues_count":43,"_pop_closed_issues_count":19,"_pop_created_since_days":104,"_pop_updated_since_days":3,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":43.0,"_pop_comment_count":68.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":28,"_pop_score":45.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/activitysim/activitysim/master/README.md","_readme_localurl":"activitysim~activitysim~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/activitysim/activitysim/master/setup.py","https://raw.githubusercontent.com/activitysim/activitysim/master/pyproject.toml"],"_requirements_localurls":["activitysim~activitysim~setup.py","activitysim~activitysim~pyproject.toml"]},{"index":606,"category":"util","githuburl":"https://github.com/pyscript/pyscript-cli","featured":null,"links":null,"description":null,"_repopath":"pyscript/pyscript-cli","_reponame":"pyscript-cli","_stars":142,"_forks":14,"_watches":12,"_topics":[],"_language":"Python","_homepage":null,"_description":"pyscript-cli: A CLI for PyScript","_organization":"pyscript","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2022-05-01T00:00:00.000Z","_age_weeks":33,"_stars_per_week":4.28,"_pop_contributor_count":7,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["anaconda"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.35,"_pop_updated_issues_count":5,"_pop_closed_issues_count":4,"_pop_created_since_days":8,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":5.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":24.94,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyscript/pyscript-cli/master/README.md","_readme_localurl":"pyscript~pyscript-cli~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyscript/pyscript-cli/master/pyproject.toml"],"_requirements_localurls":["pyscript~pyscript-cli~pyproject.toml"]},{"index":869,"category":"util","githuburl":"https://github.com/hugovk/pypistats","featured":null,"links":null,"description":null,"_repopath":"hugovk/pypistats","_reponame":"pypistats","_stars":138,"_forks":25,"_watches":4,"_topics":["python","python3","pypi","statistics","stats","api","cli","command-line","command-line-tool","downloads","hacktoberfest"],"_language":"Python","_homepage":"https://pypistats.org/api/","_description":"pypistats: Command-line interface to PyPI Stats API to get download stats for Python packages","_organization":"hugovk","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2018-09-22T00:00:00.000Z","_age_weeks":221,"_stars_per_week":0.62,"_pop_contributor_count":12,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nordsoftware"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.42,"_pop_updated_issues_count":14,"_pop_closed_issues_count":13,"_pop_created_since_days":52,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":14.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":8,"_pop_score":34.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hugovk/pypistats/master/README.md","_readme_localurl":"hugovk~pypistats~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/hugovk/pypistats/master/requirements.txt","https://raw.githubusercontent.com/hugovk/pypistats/master/pyproject.toml"],"_requirements_localurls":["hugovk~pypistats~requirements.txt","hugovk~pypistats~pyproject.toml"]},{"index":901,"category":"gis","githuburl":"https://github.com/amazon-science/earth-forecasting-transformer","featured":null,"links":null,"description":null,"_repopath":"amazon-science/earth-forecasting-transformer","_reponame":"earth-forecasting-transformer","_stars":137,"_forks":20,"_watches":7,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"earth-forecasting-transformer: Official implementation of Earthformer","_organization":"amazon-science","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2022-09-12T00:00:00.000Z","_age_weeks":14,"_stars_per_week":9.79,"_pop_contributor_count":5,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon","amazonai","amazonwebservices","hongkonguniversityofscienceandtechnology","universityoftennessee"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.71,"_pop_updated_issues_count":39,"_pop_closed_issues_count":38,"_pop_created_since_days":3,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":39.0,"_pop_comment_count":46.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":26.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/amazon-science/earth-forecasting-transformer/master/README.md","_readme_localurl":"amazon-science~earth-forecasting-transformer~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/amazon-science/earth-forecasting-transformer/master/setup.py"],"_requirements_localurls":["amazon-science~earth-forecasting-transformer~setup.py"]},{"index":231,"category":"template","githuburl":"https://github.com/crmne/cookiecutter-modern-datascience","featured":null,"links":null,"description":null,"_repopath":"crmne/cookiecutter-modern-datascience","_reponame":"cookiecutter-modern-datascience","_stars":136,"_forks":27,"_watches":3,"_topics":["cookiecutter","cookiecutter-template","cookiecutter-data-science","python","datascience"],"_language":"Python","_homepage":"","_description":"cookiecutter-modern-datascience: Start a data science project with modern tools","_organization":"crmne","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-06-10T00:00:00.000Z","_created_at":"2020-07-06T00:00:00.000Z","_age_weeks":128,"_stars_per_week":1.06,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["freshflowai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":4,"_pop_closed_issues_count":0,"_pop_created_since_days":30,"_pop_updated_since_days":6,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":12.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/crmne/cookiecutter-modern-datascience/master/README.md","_readme_localurl":"crmne~cookiecutter-modern-datascience~README.md","_requirements_filenames":["Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/crmne/cookiecutter-modern-datascience/master/Pipfile"],"_requirements_localurls":["crmne~cookiecutter-modern-datascience~Pipfile"]},{"index":826,"category":"diffusion","githuburl":"https://github.com/thereforegames/unprompted","featured":null,"links":null,"description":null,"_repopath":"thereforegames/unprompted","_reponame":"unprompted","_stars":134,"_forks":10,"_watches":4,"_topics":[],"_language":"Python","_homepage":null,"_description":"unprompted: Text generator written for Stable Diffusion workflows.","_organization":"thereforegames","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2022-10-31T00:00:00.000Z","_age_weeks":7,"_stars_per_week":19.14,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["awesomehamster"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.29,"_pop_updated_issues_count":22,"_pop_closed_issues_count":16,"_pop_created_since_days":2,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":22.0,"_pop_comment_count":74.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.4,"_pop_dependents_count":0,"_pop_score":20.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/thereforegames/unprompted/master/README.md","_readme_localurl":"thereforegames~unprompted~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":564,"category":"gis","githuburl":"https://github.com/geopandas/pyogrio","featured":null,"links":null,"description":null,"_repopath":"geopandas/pyogrio","_reponame":"pyogrio","_stars":134,"_forks":8,"_watches":8,"_topics":[],"_language":"Python","_homepage":"https://pyogrio.readthedocs.io","_description":"pyogrio: Vectorized vector I/O using OGR","_organization":"geopandas","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2020-03-27T00:00:00.000Z","_age_weeks":142,"_stars_per_week":0.94,"_pop_contributor_count":8,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["astutespruce","udl-ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.87,"_pop_updated_issues_count":43,"_pop_closed_issues_count":29,"_pop_created_since_days":33,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":43.0,"_pop_comment_count":84.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":5,"_pop_score":38.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/geopandas/pyogrio/master/README.md","_readme_localurl":"geopandas~pyogrio~README.md","_requirements_filenames":["setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/geopandas/pyogrio/master/setup.py","https://raw.githubusercontent.com/geopandas/pyogrio/master/pyproject.toml","https://raw.githubusercontent.com/geopandas/pyogrio/master/Pipfile"],"_requirements_localurls":["geopandas~pyogrio~setup.py","geopandas~pyogrio~pyproject.toml","geopandas~pyogrio~Pipfile"]},{"index":147,"category":"graph","githuburl":"https://github.com/guyallard/markov_clustering","featured":null,"links":null,"description":null,"_repopath":"guyallard/markov_clustering","_reponame":"markov_clustering","_stars":132,"_forks":33,"_watches":9,"_topics":["markov-clustering","clustering","python","networks"],"_language":"Python","_homepage":null,"_description":"markov_clustering: markov clustering in python","_organization":"guyallard","_updated_at":"2022-11-15T00:00:00.000Z","_last_commit_date":"2018-12-11T00:00:00.000Z","_created_at":"2017-09-27T00:00:00.000Z","_age_weeks":272,"_stars_per_week":0.48,"_pop_contributor_count":3,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":64,"_pop_updated_since_days":49,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":7.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/guyallard/markov_clustering/master/README.md","_readme_localurl":"guyallard~markov_clustering~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/guyallard/markov_clustering/master/requirements.txt","https://raw.githubusercontent.com/guyallard/markov_clustering/master/setup.py"],"_requirements_localurls":["guyallard~markov_clustering~requirements.txt","guyallard~markov_clustering~setup.py"]},{"index":774,"category":"sim","githuburl":"https://github.com/openfisca/openfisca-core","featured":null,"links":null,"description":null,"_repopath":"openfisca/openfisca-core","_reponame":"openfisca-core","_stars":131,"_forks":71,"_watches":24,"_topics":["legislation-as-code","rules-as-code","better-rules","microsimulation"],"_language":"Python","_homepage":"https://openfisca.org","_description":"openfisca-core: OpenFisca core engine. See other repositories for countries-specific code & data.","_organization":"openfisca","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2013-12-29T00:00:00.000Z","_age_weeks":468,"_stars_per_week":0.28,"_pop_contributor_count":58,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["codeworksfrance"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.31,"_pop_updated_issues_count":61,"_pop_closed_issues_count":35,"_pop_created_since_days":109,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":43,"_pop_recent_releases_adjusted_count":43,"_pop_issue_count":62.0,"_pop_comment_count":83.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":53,"_pop_score":50.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openfisca/openfisca-core/master/README.md","_readme_localurl":"openfisca~openfisca-core~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/openfisca/openfisca-core/master/setup.py"],"_requirements_localurls":["openfisca~openfisca-core~setup.py"]},{"index":785,"category":"util","githuburl":"https://github.com/brokenloop/jsontopydantic","featured":null,"links":null,"description":null,"_repopath":"brokenloop/jsontopydantic","_reponame":"jsontopydantic","_stars":128,"_forks":7,"_watches":3,"_topics":[],"_language":"TypeScript","_homepage":"https://jsontopydantic.com","_description":"jsontopydantic: Web tool for generating Pydantic models from JSON objects","_organization":"brokenloop","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2022-05-13T00:00:00.000Z","_created_at":"2020-11-28T00:00:00.000Z","_age_weeks":107,"_stars_per_week":1.19,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":25,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":6.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/brokenloop/jsontopydantic/master/README.md","_readme_localurl":"brokenloop~jsontopydantic~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":290,"category":"template","githuburl":"https://github.com/eugeneyan/python-collab-template","featured":null,"links":null,"description":null,"_repopath":"eugeneyan/python-collab-template","_reponame":"python-collab-template","_stars":125,"_forks":35,"_watches":4,"_topics":["python","unit-testing","linting","type-checking","github-actions","makefile","coverage","hacktoberfest"],"_language":"Python","_homepage":"https://eugeneyan.com/writing/setting-up-python-project-for-automation-and-collaboration/","_description":"python-collab-template: \ud83d\udee0 Python project template with unit tests, code coverage, linting, type checking, Makefile wrapper, and GitHub Actions.","_organization":"eugeneyan","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2022-07-02T00:00:00.000Z","_created_at":"2020-06-21T00:00:00.000Z","_age_weeks":130,"_stars_per_week":0.96,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amzn"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":30,"_pop_updated_since_days":6,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":10.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/eugeneyan/python-collab-template/master/README.md","_readme_localurl":"eugeneyan~python-collab-template~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":583,"category":"web","githuburl":"https://github.com/developmentseed/fastai-serving","featured":null,"links":null,"description":null,"_repopath":"developmentseed/fastai-serving","_reponame":"fastai-serving","_stars":121,"_forks":11,"_watches":8,"_topics":["machine-learning","python","deep-learning","pytorch","docker"],"_language":"Python","_homepage":"","_description":"fastai-serving: A Docker image for serving fast.ai models, mimicking the API of Tensorflow Serving","_organization":"developmentseed","_updated_at":"2022-04-08T00:00:00.000Z","_last_commit_date":"2020-02-10T00:00:00.000Z","_created_at":"2019-07-01T00:00:00.000Z","_age_weeks":181,"_stars_per_week":0.67,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cloud-gov(work)+personalprojects;"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":42,"_pop_updated_since_days":35,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":6.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/fastai-serving/master/README.md","_readme_localurl":"developmentseed~fastai-serving~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":305,"category":"util","githuburl":"https://github.com/xrudelis/pytrait","featured":null,"links":null,"description":null,"_repopath":"xrudelis/pytrait","_reponame":"pytrait","_stars":121,"_forks":3,"_watches":3,"_topics":[],"_language":"Python","_homepage":null,"_description":"pytrait: Traits for Python3","_organization":"xrudelis","_updated_at":"2022-11-15T00:00:00.000Z","_last_commit_date":"2021-11-27T00:00:00.000Z","_created_at":"2021-11-21T00:00:00.000Z","_age_weeks":56,"_stars_per_week":2.16,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":13,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":3.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/xrudelis/pytrait/master/README.md","_readme_localurl":"xrudelis~pytrait~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/xrudelis/pytrait/master/setup.py"],"_requirements_localurls":["xrudelis~pytrait~setup.py"]},{"index":555,"category":"ml","githuburl":"https://github.com/nicolas-chaulet/torch-points3d","featured":null,"links":null,"description":null,"_repopath":"nicolas-chaulet/torch-points3d","_reponame":"torch-points3d","_stars":118,"_forks":30,"_watches":0,"_topics":[],"_language":null,"_homepage":"https://torch-points3d.readthedocs.io/en/latest/","_description":"torch-points3d: Pytorch framework for doing deep learning on point clouds.","_organization":"nicolas-chaulet","_updated_at":"2022-12-12T00:00:00.000Z","_last_commit_date":"2021-12-10T00:00:00.000Z","_created_at":"2022-01-09T00:00:00.000Z","_age_weeks":49,"_stars_per_week":2.4,"_pop_contributor_count":29,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["canoapbc","grid.ai|pytorchlightning","universityoftexasatdallas"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":11,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":38,"_pop_score":27.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nicolas-chaulet/torch-points3d/master/README.md","_readme_localurl":"nicolas-chaulet~torch-points3d~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nicolas-chaulet/torch-points3d/master/requirements.txt","https://raw.githubusercontent.com/nicolas-chaulet/torch-points3d/master/pyproject.toml"],"_requirements_localurls":["nicolas-chaulet~torch-points3d~requirements.txt","nicolas-chaulet~torch-points3d~pyproject.toml"]},{"index":316,"category":"util","githuburl":"https://github.com/irmen/pyminiaudio","featured":null,"links":null,"description":null,"_repopath":"irmen/pyminiaudio","_reponame":"pyminiaudio","_stars":117,"_forks":13,"_watches":3,"_topics":[],"_language":"C","_homepage":"","_description":"pyminiaudio: python interface to the miniaudio audio playback, recording, decoding and conversion library","_organization":"irmen","_updated_at":"2022-11-22T00:00:00.000Z","_last_commit_date":"2022-11-15T00:00:00.000Z","_created_at":"2019-06-30T00:00:00.000Z","_age_weeks":181,"_stars_per_week":0.65,"_pop_contributor_count":4,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["closedlooplabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":4,"_pop_closed_issues_count":4,"_pop_created_since_days":42,"_pop_updated_since_days":1,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":4.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":8,"_pop_score":29.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/irmen/pyminiaudio/master/README.md","_readme_localurl":"irmen~pyminiaudio~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/irmen/pyminiaudio/master/setup.py"],"_requirements_localurls":["irmen~pyminiaudio~setup.py"]},{"index":571,"category":"gis","githuburl":"https://github.com/developmentseed/geojson-pydantic","featured":null,"links":null,"description":null,"_repopath":"developmentseed/geojson-pydantic","_reponame":"geojson-pydantic","_stars":113,"_forks":27,"_watches":11,"_topics":["geojson","pydantic","geojson-spec"],"_language":"Python","_homepage":null,"_description":"geojson-pydantic: Pydantic data models for the GeoJSON spec","_organization":"developmentseed","_updated_at":"2022-11-29T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2020-05-21T00:00:00.000Z","_age_weeks":134,"_stars_per_week":0.84,"_pop_contributor_count":19,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["bigbear.ai","cloud-gov(work)+personalprojects;","developmentseed"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.21,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":31,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":4.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":5,"_pop_score":35.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/geojson-pydantic/master/README.md","_readme_localurl":"developmentseed~geojson-pydantic~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/developmentseed/geojson-pydantic/master/pyproject.toml"],"_requirements_localurls":["developmentseed~geojson-pydantic~pyproject.toml"]},{"index":893,"category":"sim","githuburl":"https://github.com/crowdbotp/socialways","featured":null,"links":null,"description":null,"_repopath":"crowdbotp/socialways","_reponame":"socialways","_stars":110,"_forks":45,"_watches":9,"_topics":["trajectory-prediction","human-trajectory-prediction","gan","social-navigation","social-ways","pedestrian-trajectories","pedestrian","social-gan","social-robots","generative-adversarial-network","trajectory-forecasting","self-driving-car","prediction-model","info-gan","crowd-simulation"],"_language":"Python","_homepage":"","_description":"socialways: Social Ways: Learning Multi-Modal Distributions of Pedestrian Trajectories with GANs (CVPR 2019)","_organization":"crowdbotp","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2020-03-20T00:00:00.000Z","_created_at":"2019-04-23T00:00:00.000Z","_age_weeks":190,"_stars_per_week":0.58,"_pop_contributor_count":3,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cimat","inriaresearchcenter"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":44,"_pop_updated_since_days":33,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/crowdbotp/socialways/master/README.md","_readme_localurl":"crowdbotp~socialways~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":407,"category":"data","githuburl":"https://github.com/google/weather-tools","featured":null,"links":null,"description":null,"_repopath":"google/weather-tools","_reponame":"weather-tools","_stars":109,"_forks":23,"_watches":12,"_topics":["python","apache-beam","weather"],"_language":"Python","_homepage":"https://weather-tools.readthedocs.io/","_description":"weather-tools: Apache Beam pipelines to make weather data accessible and useful.","_organization":"google","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-13T00:00:00.000Z","_created_at":"2021-11-22T00:00:00.000Z","_age_weeks":56,"_stars_per_week":1.95,"_pop_contributor_count":25,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["infocuspinnovationspvt.ltd."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.19,"_pop_updated_issues_count":48,"_pop_closed_issues_count":25,"_pop_created_since_days":13,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":48.0,"_pop_comment_count":29.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":31.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/weather-tools/master/README.md","_readme_localurl":"google~weather-tools~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/weather-tools/master/setup.py"],"_requirements_localurls":["google~weather-tools~setup.py"]},{"index":466,"category":"nlp","githuburl":"https://github.com/infinitylogesh/mutate","featured":null,"links":null,"description":null,"_repopath":"infinitylogesh/mutate","_reponame":"mutate","_stars":105,"_forks":7,"_watches":3,"_topics":["nlp-library","text-generation","language-model","data-augmentation","data-labeling"],"_language":"Python","_homepage":"","_description":"mutate: A library to synthesize text datasets using Large Language Models (LLM)","_organization":"infinitylogesh","_updated_at":"2022-11-08T00:00:00.000Z","_last_commit_date":"2022-04-18T00:00:00.000Z","_created_at":"2021-12-29T00:00:00.000Z","_age_weeks":50,"_stars_per_week":2.07,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["argilla"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.27,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":12,"_pop_updated_since_days":8,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":7.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/infinitylogesh/mutate/master/README.md","_readme_localurl":"infinitylogesh~mutate~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/infinitylogesh/mutate/master/requirements.txt","https://raw.githubusercontent.com/infinitylogesh/mutate/master/setup.py"],"_requirements_localurls":["infinitylogesh~mutate~requirements.txt","infinitylogesh~mutate~setup.py"]},{"index":463,"category":"data","githuburl":"https://github.com/psycoguana/subredditmediadownloader","featured":null,"links":null,"description":null,"_repopath":"psycoguana/subredditmediadownloader","_reponame":"SubredditMediaDownloader","_stars":102,"_forks":7,"_watches":3,"_topics":[],"_language":"Python","_homepage":null,"_description":"SubredditMediaDownloader: Simple Python script to download images and videos from public subreddits without using Reddit's API \ud83d\ude0e","_organization":"psycoguana","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-20T00:00:00.000Z","_created_at":"2022-02-18T00:00:00.000Z","_age_weeks":43,"_stars_per_week":2.35,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.4,"_pop_updated_issues_count":7,"_pop_closed_issues_count":7,"_pop_created_since_days":10,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":7.0,"_pop_comment_count":21.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":16.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/psycoguana/subredditmediadownloader/master/README.md","_readme_localurl":"psycoguana~subredditmediadownloader~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/psycoguana/subredditmediadownloader/master/requirements.txt"],"_requirements_localurls":["psycoguana~subredditmediadownloader~requirements.txt"]},{"index":527,"category":"ml","githuburl":"https://github.com/hazyresearch/domino","featured":null,"links":null,"description":null,"_repopath":"hazyresearch/domino","_reponame":"domino","_stars":99,"_forks":14,"_watches":20,"_topics":[],"_language":"Python","_homepage":null,"_description":"hazyresearch/domino","_organization":"hazyresearch","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-08-02T00:00:00.000Z","_created_at":"2021-11-29T00:00:00.000Z","_age_weeks":55,"_stars_per_week":1.8,"_pop_contributor_count":6,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.19,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":13,"_pop_updated_since_days":5,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":4.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":6,"_pop_score":15.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hazyresearch/domino/master/README.md","_readme_localurl":"hazyresearch~domino~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hazyresearch/domino/master/setup.py"],"_requirements_localurls":["hazyresearch~domino~setup.py"]},{"index":847,"category":"gis","githuburl":"https://github.com/remotesensinglab/raster4ml","featured":null,"links":null,"description":null,"_repopath":"remotesensinglab/raster4ml","_reponame":"raster4ml","_stars":97,"_forks":12,"_watches":4,"_topics":["agriculture-research","data-science","geospatial-data","machine-learning","remote-sensing","vegetation","vegetation-index","python"],"_language":"Python","_homepage":"https://raster4ml.readthedocs.io","_description":"raster4ml: A geospatial raster processing library for machine learning","_organization":"remotesensinglab","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-11-01T00:00:00.000Z","_created_at":"2022-07-11T00:00:00.000Z","_age_weeks":23,"_stars_per_week":4.22,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["saintlouisuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.96,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":5,"_pop_updated_since_days":2,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/remotesensinglab/raster4ml/master/README.md","_readme_localurl":"remotesensinglab~raster4ml~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/remotesensinglab/raster4ml/master/requirements.txt","https://raw.githubusercontent.com/remotesensinglab/raster4ml/master/setup.py"],"_requirements_localurls":["remotesensinglab~raster4ml~requirements.txt","remotesensinglab~raster4ml~setup.py"]},{"index":533,"category":"gis","githuburl":"https://github.com/gdaosu/lod2buildingmodel","featured":null,"links":null,"description":null,"_repopath":"gdaosu/lod2buildingmodel","_reponame":"LOD2BuildingModel","_stars":96,"_forks":23,"_watches":9,"_topics":[],"_language":"Python","_homepage":"","_description":"LOD2BuildingModel: SAT2LoD2: Automated LoD-2 Model Reconstruction from Satellite-derived DSM and Orthophoto","_organization":"gdaosu","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-07-21T00:00:00.000Z","_created_at":"2021-08-30T00:00:00.000Z","_age_weeks":68,"_stars_per_week":1.41,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ohiostateuniversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.85,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":16,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":13.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gdaosu/lod2buildingmodel/master/README.md","_readme_localurl":"gdaosu~lod2buildingmodel~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":529,"category":"nlp","githuburl":"https://github.com/hazyresearch/fonduer-tutorials","featured":null,"links":null,"description":null,"_repopath":"hazyresearch/fonduer-tutorials","_reponame":"fonduer-tutorials","_stars":96,"_forks":23,"_watches":18,"_topics":[],"_language":"Jupyter Notebook","_homepage":"https://github.com/HazyResearch/fonduer","_description":"fonduer-tutorials: A collection of simple tutorials for using Fonduer","_organization":"hazyresearch","_updated_at":"2022-12-01T00:00:00.000Z","_last_commit_date":"2020-05-27T00:00:00.000Z","_created_at":"2018-03-23T00:00:00.000Z","_age_weeks":247,"_stars_per_week":0.39,"_pop_contributor_count":6,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["https://snorkel.ai/","numbersstationai","vodafone"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":58,"_pop_updated_since_days":31,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":16.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hazyresearch/fonduer-tutorials/master/README.md","_readme_localurl":"hazyresearch~fonduer-tutorials~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/hazyresearch/fonduer-tutorials/master/requirements.txt"],"_requirements_localurls":["hazyresearch~fonduer-tutorials~requirements.txt"]},{"index":457,"category":"nlp","githuburl":"https://github.com/coastalcph/lex-glue","featured":null,"links":null,"description":null,"_repopath":"coastalcph/lex-glue","_reponame":"lex-glue","_stars":95,"_forks":22,"_watches":6,"_topics":["legal","nlp","benchmark","legaltech","lawtech"],"_language":"Python","_homepage":"","_description":"lex-glue: LexGLUE: A Benchmark Dataset for Legal Language Understanding in English","_organization":"coastalcph","_updated_at":"2022-12-08T00:00:00.000Z","_last_commit_date":"2022-11-04T00:00:00.000Z","_created_at":"2021-09-27T00:00:00.000Z","_age_weeks":64,"_stars_per_week":1.48,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":4,"_pop_closed_issues_count":4,"_pop_created_since_days":15,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":8,"_pop_score":20.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/coastalcph/lex-glue/master/README.md","_readme_localurl":"coastalcph~lex-glue~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/coastalcph/lex-glue/master/requirements.txt"],"_requirements_localurls":["coastalcph~lex-glue~requirements.txt"]},{"index":781,"category":"gis","githuburl":"https://github.com/ghislainv/forestatrisk","featured":null,"links":null,"description":null,"_repopath":"ghislainv/forestatrisk","_reponame":"forestatrisk","_stars":95,"_forks":20,"_watches":4,"_topics":["python","land-use-change","spatial-modelling","spatial-analysis","forecasting","spatial-autocorrelation","tropical-forests","roads","protected-areas","biodiversity-scenario","ipbes","co2-emissions","ipcc","forest-cover-change","deforestation","deforestation-risk","redd"],"_language":"Python","_homepage":"https://ecology.ghislainv.fr/forestatrisk","_description":"forestatrisk: :package: :snake: Python package to model and forecast the risk of deforestation","_organization":"ghislainv","_updated_at":"2022-11-07T00:00:00.000Z","_last_commit_date":"2022-08-23T00:00:00.000Z","_created_at":"2016-12-01T00:00:00.000Z","_age_weeks":315,"_stars_per_week":0.3,"_pop_contributor_count":6,"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cirad","faoopenforis","lancasteruniversity","uiuc","weecology,univofflorida"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.56,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":74,"_pop_updated_since_days":4,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":22,"_pop_score":28.9,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/ghislainv/forestatrisk/master/README.rst","_readme_localurl":"ghislainv~forestatrisk~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ghislainv/forestatrisk/master/requirements.txt","https://raw.githubusercontent.com/ghislainv/forestatrisk/master/setup.py"],"_requirements_localurls":["ghislainv~forestatrisk~requirements.txt","ghislainv~forestatrisk~setup.py"]},{"index":558,"category":"gis","githuburl":"https://github.com/darribas/gds_env","featured":null,"links":null,"description":null,"_repopath":"darribas/gds_env","_reponame":"gds_env","_stars":93,"_forks":37,"_watches":10,"_topics":["geographic-data-science","docker","python","r","latex","jupyter-lab"],"_language":"Jupyter Notebook","_homepage":"https://darribas.org/gds_env","_description":"gds_env: A containerised platform for Geographic Data Science","_organization":"darribas","_updated_at":"2022-11-16T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2016-08-12T00:00:00.000Z","_age_weeks":331,"_stars_per_week":0.28,"_pop_contributor_count":8,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["actions","udl-ai","universityofliverpool"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.83,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":77,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":79,"_pop_score":35.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/darribas/gds_env/master/README.md","_readme_localurl":"darribas~gds_env~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":835,"category":"typing","githuburl":"https://github.com/jellezijlstra/autotyping","featured":null,"links":null,"description":null,"_repopath":"jellezijlstra/autotyping","_reponame":"autotyping","_stars":91,"_forks":8,"_watches":3,"_topics":[],"_language":"Python","_homepage":null,"_description":"jellezijlstra/autotyping","_organization":"jellezijlstra","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-18T00:00:00.000Z","_created_at":"2021-06-25T00:00:00.000Z","_age_weeks":77,"_stars_per_week":1.18,"_pop_contributor_count":6,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quora","sendcloud","softformance"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.25,"_pop_updated_issues_count":12,"_pop_closed_issues_count":7,"_pop_created_since_days":18,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":12.0,"_pop_comment_count":23.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":3,"_pop_score":31.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jellezijlstra/autotyping/master/README.md","_readme_localurl":"jellezijlstra~autotyping~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jellezijlstra/autotyping/master/setup.py","https://raw.githubusercontent.com/jellezijlstra/autotyping/master/pyproject.toml"],"_requirements_localurls":["jellezijlstra~autotyping~setup.py","jellezijlstra~autotyping~pyproject.toml"]},{"index":534,"category":"ml-dl","githuburl":"https://github.com/benedekrozemberczki/tigerlily","featured":null,"links":null,"description":null,"_repopath":"benedekrozemberczki/tigerlily","_reponame":"tigerlily","_stars":90,"_forks":10,"_watches":1,"_topics":["node","embedding","node-embedding","graph-embedding","ddi","drug-drug-interaction","gradient-boosting","graph","pharmaceuticals","network-science","biology","heterogeneous-graph","knowledge-graph","deep-learning","machine-learning","unsupervised-learning","tigergraph","graph-database","graph-machine-learning"],"_language":"Jupyter Notebook","_homepage":"","_description":"TigerLily: Finding drug interactions in silico with the Graph.","_organization":"benedekrozemberczki","_updated_at":"2022-09-11T00:00:00.000Z","_last_commit_date":"2022-12-17T00:00:00.000Z","_created_at":"2022-02-28T00:00:00.000Z","_age_weeks":42,"_stars_per_week":2.14,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["isomorphiclabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.98,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":10,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":14.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/benedekrozemberczki/tigerlily/master/README.md","_readme_localurl":"benedekrozemberczki~tigerlily~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/benedekrozemberczki/tigerlily/master/setup.py","https://raw.githubusercontent.com/benedekrozemberczki/tigerlily/master/pyproject.toml"],"_requirements_localurls":["benedekrozemberczki~tigerlily~setup.py","benedekrozemberczki~tigerlily~pyproject.toml"]},{"index":667,"category":"gis","githuburl":"https://github.com/zorzi-s/polyworldpretrainednetwork","featured":null,"links":null,"description":null,"_repopath":"zorzi-s/polyworldpretrainednetwork","_reponame":"PolyWorldPretrainedNetwork","_stars":90,"_forks":13,"_watches":7,"_topics":[],"_language":"Python","_homepage":null,"_description":"PolyWorldPretrainedNetwork: PolyWorld: Polygonal Building Extraction with Graph Neural Networks in Satellite Images","_organization":"zorzi-s","_updated_at":"2022-12-17T00:00:00.000Z","_last_commit_date":"2022-11-10T00:00:00.000Z","_created_at":"2022-03-23T00:00:00.000Z","_age_weeks":38,"_stars_per_week":2.32,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.4,"_pop_updated_issues_count":7,"_pop_closed_issues_count":2,"_pop_created_since_days":9,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":7.0,"_pop_comment_count":19.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":0,"_pop_score":14.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zorzi-s/polyworldpretrainednetwork/master/README.md","_readme_localurl":"zorzi-s~polyworldpretrainednetwork~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":744,"category":"ml-ops","githuburl":"https://github.com/aiqc/aiqc","featured":null,"links":null,"description":null,"_repopath":"aiqc/aiqc","_reponame":"AIQC","_stars":88,"_forks":19,"_watches":4,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"AIQC: End-to-end deep learning on your desktop or server.","_organization":"aiqc","_updated_at":"2022-11-21T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2020-12-02T00:00:00.000Z","_age_weeks":106,"_stars_per_week":0.82,"_pop_contributor_count":8,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aiqc","deuteronomyworks"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.5,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":25,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":2,"_pop_score":25.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aiqc/aiqc/master/README.md","_readme_localurl":"aiqc~aiqc~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aiqc/aiqc/master/requirements.txt","https://raw.githubusercontent.com/aiqc/aiqc/master/setup.py"],"_requirements_localurls":["aiqc~aiqc~requirements.txt","aiqc~aiqc~setup.py"]},{"index":485,"category":"gis","githuburl":"https://github.com/scisco/area","featured":null,"links":null,"description":null,"_repopath":"scisco/area","_reponame":"area","_stars":87,"_forks":19,"_watches":3,"_topics":[],"_language":"Python","_homepage":null,"_description":"area: Calculate the area inside of any GeoJSON geometry. This is a port of Mapbox's geojson-area for Python","_organization":"scisco","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2018-10-31T00:00:00.000Z","_created_at":"2015-11-25T00:00:00.000Z","_age_weeks":368,"_stars_per_week":0.24,"_pop_contributor_count":3,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":86,"_pop_updated_since_days":50,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":5.14,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/scisco/area/master/README.rst","_readme_localurl":"scisco~area~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/scisco/area/master/setup.py"],"_requirements_localurls":["scisco~area~setup.py"]},{"index":269,"category":"term","githuburl":"https://github.com/deeplook/sparklines","featured":null,"links":null,"description":null,"_repopath":"deeplook/sparklines","_reponame":"sparklines","_stars":83,"_forks":6,"_watches":3,"_topics":["python","command-line-tool","graphs","ascii","sparklines","sparkline-graphs"],"_language":"Python","_homepage":"","_description":"sparklines: Text-based sparkline command line mimicking those of Edward Tuft.","_organization":"deeplook","_updated_at":"2022-11-26T00:00:00.000Z","_last_commit_date":"2021-06-26T00:00:00.000Z","_created_at":"2016-05-17T00:00:00.000Z","_age_weeks":343,"_stars_per_week":0.24,"_pop_contributor_count":7,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["deepsourcelabs","investnext","quantifiedcode"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":80,"_pop_updated_since_days":18,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":16.1,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/deeplook/sparklines/master/README.rst","_readme_localurl":"deeplook~sparklines~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/deeplook/sparklines/master/setup.py"],"_requirements_localurls":["deeplook~sparklines~setup.py"]},{"index":746,"category":"data","githuburl":"https://github.com/ktrueda/parquet-tools","featured":null,"links":null,"description":null,"_repopath":"ktrueda/parquet-tools","_reponame":"parquet-tools","_stars":82,"_forks":10,"_watches":3,"_topics":["parquet","parquet-tools","cli"],"_language":"Python","_homepage":"","_description":"parquet-tools: easy install parquet-tools","_organization":"ktrueda","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-06-14T00:00:00.000Z","_created_at":"2020-05-02T00:00:00.000Z","_age_weeks":137,"_stars_per_week":0.6,"_pop_contributor_count":10,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["discogs","shopify"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":32,"_pop_updated_since_days":6,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":5,"_pop_score":21.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ktrueda/parquet-tools/master/README.md","_readme_localurl":"ktrueda~parquet-tools~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ktrueda/parquet-tools/master/pyproject.toml"],"_requirements_localurls":["ktrueda~parquet-tools~pyproject.toml"]},{"index":562,"category":"gis","githuburl":"https://github.com/geopandas/xyzservices","featured":null,"links":null,"description":null,"_repopath":"geopandas/xyzservices","_reponame":"xyzservices","_stars":81,"_forks":19,"_watches":11,"_topics":[],"_language":"Python","_homepage":"https://xyzservices.readthedocs.io/","_description":"xyzservices: Source of XYZ tiles providers","_organization":"geopandas","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2021-05-21T00:00:00.000Z","_age_weeks":82,"_stars_per_week":0.98,"_pop_contributor_count":17,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quantstack","udl-ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.13,"_pop_updated_issues_count":9,"_pop_closed_issues_count":6,"_pop_created_since_days":19,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":9.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":30.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/geopandas/xyzservices/master/README.md","_readme_localurl":"geopandas~xyzservices~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/geopandas/xyzservices/master/setup.py"],"_requirements_localurls":["geopandas~xyzservices~setup.py"]},{"index":668,"category":"gis","githuburl":"https://github.com/zorzi-s/projectregularization","featured":null,"links":null,"description":null,"_repopath":"zorzi-s/projectregularization","_reponame":"projectRegularization","_stars":80,"_forks":7,"_watches":2,"_topics":[],"_language":"Python","_homepage":null,"_description":"projectRegularization: Regularization of Building Boundaries using Adversarial and Regularized losses","_organization":"zorzi-s","_updated_at":"2022-11-10T00:00:00.000Z","_last_commit_date":"2021-09-17T00:00:00.000Z","_created_at":"2021-05-18T00:00:00.000Z","_age_weeks":82,"_stars_per_week":0.97,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":19,"_pop_updated_since_days":15,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":2.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zorzi-s/projectregularization/master/README.md","_readme_localurl":"zorzi-s~projectregularization~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":842,"category":"jupyter","githuburl":"https://github.com/cmudig/autoprofiler","featured":null,"links":null,"description":null,"_repopath":"cmudig/autoprofiler","_reponame":"AutoProfiler","_stars":79,"_forks":4,"_watches":1,"_topics":["jupyter","pandas","python"],"_language":"Svelte","_homepage":"","_description":"AutoProfiler: Automatically profile dataframes in the Jupyter sidebar","_organization":"cmudig","_updated_at":"2022-12-04T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2022-03-24T00:00:00.000Z","_age_weeks":38,"_stars_per_week":2.05,"_pop_contributor_count":2,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["cmu","cmu,apple"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.58,"_pop_updated_issues_count":94,"_pop_closed_issues_count":70,"_pop_created_since_days":9,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":94.0,"_pop_comment_count":41.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":24.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cmudig/autoprofiler/master/README.md","_readme_localurl":"cmudig~autoprofiler~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cmudig/autoprofiler/master/requirements.txt","https://raw.githubusercontent.com/cmudig/autoprofiler/master/setup.py","https://raw.githubusercontent.com/cmudig/autoprofiler/master/pyproject.toml"],"_requirements_localurls":["cmudig~autoprofiler~requirements.txt","cmudig~autoprofiler~setup.py","cmudig~autoprofiler~pyproject.toml"]},{"index":769,"category":"ml-dl","githuburl":"https://github.com/praw-dev/asyncpraw","featured":null,"links":null,"description":null,"_repopath":"praw-dev/asyncpraw","_reponame":"asyncpraw","_stars":79,"_forks":14,"_watches":3,"_topics":["python","api","oauth","reddit","reddit-api","async","asyncpraw","praw"],"_language":"Python","_homepage":"https://asyncpraw.readthedocs.io","_description":"asyncpraw: Async PRAW, an abbreviation for \"Asynchronous Python Reddit API Wrapper\", is a python package that allows for simple access to Reddit's API.","_organization":"praw-dev","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-12-09T00:00:00.000Z","_created_at":"2019-02-05T00:00:00.000Z","_age_weeks":201,"_stars_per_week":0.39,"_pop_contributor_count":226,"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["appfolio","billy","indeed","netflix"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.1,"_pop_updated_issues_count":29,"_pop_closed_issues_count":26,"_pop_created_since_days":47,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":29.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":14,"_pop_score":48.02,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/praw-dev/asyncpraw/master/README.rst","_readme_localurl":"praw-dev~asyncpraw~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/praw-dev/asyncpraw/master/setup.py","https://raw.githubusercontent.com/praw-dev/asyncpraw/master/pyproject.toml"],"_requirements_localurls":["praw-dev~asyncpraw~setup.py","praw-dev~asyncpraw~pyproject.toml"]},{"index":327,"category":"security","githuburl":"https://github.com/sonatype-nexus-community/jake","featured":null,"links":null,"description":null,"_repopath":"sonatype-nexus-community/jake","_reponame":"jake","_stars":75,"_forks":19,"_watches":8,"_topics":["python","vulnerabilities","vulnerability-scanners","ossindex","nexus-iq","sonatype-iq"],"_language":"Python","_homepage":"https://jake.readthedocs.io/","_description":"jake: Check your Python environments for vulnerable Open Source packages with OSS Index or Sonatype Nexus Lifecycle.","_organization":"sonatype-nexus-community","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-14T00:00:00.000Z","_created_at":"2019-10-10T00:00:00.000Z","_age_weeks":166,"_stars_per_week":0.45,"_pop_contributor_count":15,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["nginxinc","sonatype","sonatypecyclonedx"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.0,"_pop_updated_issues_count":5,"_pop_closed_issues_count":4,"_pop_created_since_days":39,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":41,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":5.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":30,"_pop_score":41.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sonatype-nexus-community/jake/master/README.md","_readme_localurl":"sonatype-nexus-community~jake~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sonatype-nexus-community/jake/master/pyproject.toml"],"_requirements_localurls":["sonatype-nexus-community~jake~pyproject.toml"]},{"index":851,"category":"profiling","githuburl":"https://github.com/kshitij12345/torchnnprofiler","featured":null,"links":null,"description":null,"_repopath":"kshitij12345/torchnnprofiler","_reponame":"torchnnprofiler","_stars":72,"_forks":2,"_watches":4,"_topics":[],"_language":"Python","_homepage":null,"_description":"torchnnprofiler: Context Manager to profile the forward and backward times of PyTorch's nn.Module","_organization":"kshitij12345","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-11-02T00:00:00.000Z","_created_at":"2022-10-22T00:00:00.000Z","_age_weeks":8,"_stars_per_week":8.69,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["quansight"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.96,"_pop_updated_issues_count":6,"_pop_closed_issues_count":3,"_pop_created_since_days":2,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":6.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":2,"_pop_score":11.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kshitij12345/torchnnprofiler/master/README.md","_readme_localurl":"kshitij12345~torchnnprofiler~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kshitij12345/torchnnprofiler/master/setup.py"],"_requirements_localurls":["kshitij12345~torchnnprofiler~setup.py"]},{"index":530,"category":"ml","githuburl":"https://github.com/brohrer/cottonwood","featured":null,"links":null,"description":null,"_repopath":"brohrer/cottonwood","_reponame":"cottonwood","_stars":72,"_forks":13,"_watches":14,"_topics":[],"_language":"Python","_homepage":"https://end-to-end-machine-learning.teachable.com/p/write-a-neural-network-framework/","_description":"cottonwood: A flexible neural network framework for running experiments and trying ideas.","_organization":"brohrer","_updated_at":"2022-09-23T00:00:00.000Z","_last_commit_date":"2020-02-02T00:00:00.000Z","_created_at":"2019-09-29T00:00:00.000Z","_age_weeks":168,"_stars_per_week":0.43,"_pop_contributor_count":3,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["azerbaijanpug","tum,imperialcollege,openmined"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":39,"_pop_updated_since_days":35,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":11,"_pop_score":16.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/brohrer/cottonwood/master/README.md","_readme_localurl":"brohrer~cottonwood~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/brohrer/cottonwood/master/setup.py"],"_requirements_localurls":["brohrer~cottonwood~setup.py"]},{"index":584,"category":"gis","githuburl":"https://github.com/developmentseed/cogeo-mosaic","featured":null,"links":null,"description":null,"_repopath":"developmentseed/cogeo-mosaic","_reponame":"cogeo-mosaic","_stars":70,"_forks":19,"_watches":8,"_topics":[],"_language":"Python","_homepage":"https://developmentseed.org/cogeo-mosaic/","_description":"cogeo-mosaic: Create and use COG mosaic based on mosaicJSON","_organization":"developmentseed","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-11-21T00:00:00.000Z","_created_at":"2019-05-14T00:00:00.000Z","_age_weeks":187,"_stars_per_week":0.37,"_pop_contributor_count":8,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["developmentseed","regrowag","satellogic"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":7,"_pop_closed_issues_count":6,"_pop_created_since_days":44,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":7.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":6,"_pop_score":34.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/cogeo-mosaic/master/README.md","_readme_localurl":"developmentseed~cogeo-mosaic~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/developmentseed/cogeo-mosaic/master/setup.py","https://raw.githubusercontent.com/developmentseed/cogeo-mosaic/master/pyproject.toml"],"_requirements_localurls":["developmentseed~cogeo-mosaic~setup.py","developmentseed~cogeo-mosaic~pyproject.toml"]},{"index":234,"category":"crypto","githuburl":"https://github.com/blockchainsllc/in3","featured":null,"links":null,"description":null,"_repopath":"blockchainsllc/in3","_reponame":"in3","_stars":65,"_forks":18,"_watches":12,"_topics":["blockchain","verify","crypto-economic","ethereum","ipfs"],"_language":"C","_homepage":"https://in3.readthedocs.io/en/develop/index.html","_description":"in3: The IN3 client (written in C).","_organization":"blockchainsllc","_updated_at":"2022-11-17T00:00:00.000Z","_last_commit_date":"2022-04-01T00:00:00.000Z","_created_at":"2019-09-17T00:00:00.000Z","_age_weeks":169,"_stars_per_week":0.38,"_pop_contributor_count":35,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["blockchains","sni"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.81,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":40,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":28,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":3,"_pop_score":33.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/blockchainsllc/in3/master/README.md","_readme_localurl":"blockchainsllc~in3~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":568,"category":"sim","githuburl":"https://github.com/gboeing/street-network-models","featured":null,"links":null,"description":null,"_repopath":"gboeing/street-network-models","_reponame":"street-network-models","_stars":64,"_forks":4,"_watches":2,"_topics":[],"_language":"Python","_homepage":"https://osf.io/f2dqc","_description":"street-network-models: Street network models and indicators for every urban area in the world","_organization":"gboeing","_updated_at":"2022-12-13T00:00:00.000Z","_last_commit_date":"2021-03-05T00:00:00.000Z","_created_at":"2020-04-13T00:00:00.000Z","_age_weeks":140,"_stars_per_week":0.46,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["universityofsoutherncalifornia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":33,"_pop_updated_since_days":22,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":2,"_pop_score":8.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gboeing/street-network-models/master/README.md","_readme_localurl":"gboeing~street-network-models~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":453,"category":"gis","githuburl":"https://github.com/googlecloudplatform/dataflow-geobeam","featured":null,"links":null,"description":null,"_repopath":"googlecloudplatform/dataflow-geobeam","_reponame":"dataflow-geobeam","_stars":61,"_forks":25,"_watches":9,"_topics":[],"_language":"Python","_homepage":null,"_description":"googlecloudplatform/dataflow-geobeam","_organization":"googlecloudplatform","_updated_at":"2022-11-08T00:00:00.000Z","_last_commit_date":"2022-11-29T00:00:00.000Z","_created_at":"2021-02-04T00:00:00.000Z","_age_weeks":97,"_stars_per_week":0.63,"_pop_contributor_count":5,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["calthorpeanalytics","carto","google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.79,"_pop_updated_issues_count":6,"_pop_closed_issues_count":3,"_pop_created_since_days":23,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":6.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":4,"_pop_score":28.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/googlecloudplatform/dataflow-geobeam/master/README.md","_readme_localurl":"googlecloudplatform~dataflow-geobeam~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/googlecloudplatform/dataflow-geobeam/master/setup.py"],"_requirements_localurls":["googlecloudplatform~dataflow-geobeam~setup.py"]},{"index":535,"category":"gis","githuburl":"https://github.com/cloudsen12/easystac","featured":null,"links":null,"description":null,"_repopath":"cloudsen12/easystac","_reponame":"easystac","_stars":57,"_forks":1,"_watches":3,"_topics":["stac","remote-sensing","gis","earth-observation","python","python3","spatio-temporal","spatio-temporal-data","planetary-computer","radiant"],"_language":"Python","_homepage":"https://easystac.readthedocs.io/","_description":"easystac: A Python package for simple STAC queries","_organization":"cloudsen12","_updated_at":"2022-11-26T00:00:00.000Z","_last_commit_date":"2022-08-07T00:00:00.000Z","_created_at":"2022-01-20T00:00:00.000Z","_age_weeks":47,"_stars_per_week":1.2,"_pop_contributor_count":3,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["emcdestudent","regrowag","rsc4earth|universityofleipzig"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.06,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":11,"_pop_updated_since_days":4,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":15.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cloudsen12/easystac/master/README.md","_readme_localurl":"cloudsen12~easystac~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/cloudsen12/easystac/master/setup.py"],"_requirements_localurls":["cloudsen12~easystac~setup.py"]},{"index":521,"category":"gis","githuburl":"https://github.com/lydorn/mapalignment","featured":null,"links":null,"description":null,"_repopath":"lydorn/mapalignment","_reponame":"mapalignment","_stars":55,"_forks":14,"_watches":4,"_topics":[],"_language":"Python","_homepage":"","_description":"mapalignment: Aligning and Updating Cadaster Maps with Remote Sensing Images","_organization":"lydorn","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2020-09-03T00:00:00.000Z","_created_at":"2018-09-05T00:00:00.000Z","_age_weeks":223,"_stars_per_week":0.25,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":52,"_pop_updated_since_days":28,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":4.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lydorn/mapalignment/master/README.md","_readme_localurl":"lydorn~mapalignment~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":854,"category":"util","githuburl":"https://github.com/backtick-se/cowait","featured":null,"links":null,"description":null,"_repopath":"backtick-se/cowait","_reponame":"cowait","_stars":55,"_forks":5,"_watches":8,"_topics":["python","task-scheduler","data-science","data-engineering","spark","dask","kubernetes","docker","workflow-engine"],"_language":"Python","_homepage":"https://cowait.io","_description":"cowait: Containerized distributed programming framework for Python","_organization":"backtick-se","_updated_at":"2022-11-16T00:00:00.000Z","_last_commit_date":"2022-09-22T00:00:00.000Z","_created_at":"2019-09-18T00:00:00.000Z","_age_weeks":169,"_stars_per_week":0.32,"_pop_contributor_count":10,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["backticktechnologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.33,"_pop_updated_issues_count":13,"_pop_closed_issues_count":2,"_pop_created_since_days":40,"_pop_updated_since_days":3,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":13.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":22.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/backtick-se/cowait/master/README.md","_readme_localurl":"backtick-se~cowait~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/backtick-se/cowait/master/requirements.txt","https://raw.githubusercontent.com/backtick-se/cowait/master/setup.py","https://raw.githubusercontent.com/backtick-se/cowait/master/pyproject.toml"],"_requirements_localurls":["backtick-se~cowait~requirements.txt","backtick-se~cowait~setup.py","backtick-se~cowait~pyproject.toml"]},{"index":816,"category":"util","githuburl":"https://github.com/aws-samples/sagemaker-ssh-helper","featured":null,"links":null,"description":null,"_repopath":"aws-samples/sagemaker-ssh-helper","_reponame":"sagemaker-ssh-helper","_stars":51,"_forks":7,"_watches":6,"_topics":["amazon-sagemaker","aws","aws-systems-manager","machine-learning","pycharm","sagemaker","sagemaker-studio","ssh","vscode"],"_language":"Python","_homepage":"","_description":"sagemaker-ssh-helper: A helper library to connect into Amazon SageMaker with AWS Systems Manager and SSH","_organization":"aws-samples","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-15T00:00:00.000Z","_created_at":"2022-10-14T00:00:00.000Z","_age_weeks":9,"_stars_per_week":5.41,"_pop_contributor_count":4,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["amazon","amazonwebservices(aws)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.5,"_pop_updated_issues_count":9,"_pop_closed_issues_count":5,"_pop_created_since_days":2,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":9.0,"_pop_comment_count":16.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":22.89,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aws-samples/sagemaker-ssh-helper/master/README.md","_readme_localurl":"aws-samples~sagemaker-ssh-helper~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aws-samples/sagemaker-ssh-helper/master/setup.py"],"_requirements_localurls":["aws-samples~sagemaker-ssh-helper~setup.py"]},{"index":326,"category":"security","githuburl":"https://github.com/snyk-labs/pysnyk","featured":null,"links":null,"description":null,"_repopath":"snyk-labs/pysnyk","_reponame":"pysnyk","_stars":50,"_forks":91,"_watches":10,"_topics":["snyk","python","api"],"_language":"Python","_homepage":"https://snyk.docs.apiary.io/","_description":"pysnyk: A Python client for the Snyk API.","_organization":"snyk-labs","_updated_at":"2022-11-04T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2019-02-03T00:00:00.000Z","_age_weeks":202,"_stars_per_week":0.25,"_pop_contributor_count":22,"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["gitpod-io","replicated.com","snyk"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":10,"_pop_closed_issues_count":1,"_pop_created_since_days":47,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":10.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":4,"_pop_score":35.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/snyk-labs/pysnyk/master/README.md","_readme_localurl":"snyk-labs~pysnyk~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/snyk-labs/pysnyk/master/pyproject.toml"],"_requirements_localurls":["snyk-labs~pysnyk~pyproject.toml"]},{"index":400,"category":"study","githuburl":"https://github.com/dylanhogg/crazy-awesome-python","featured":null,"links":null,"description":null,"_repopath":"dylanhogg/crazy-awesome-python","_reponame":"crazy-awesome-python","_stars":47,"_forks":8,"_watches":3,"_topics":["python","python-data","awesome-list","python-machine-learning","python-nlp","python-frameworks","python-library","data","machine-learning","natural-language-processing"],"_language":"HTML","_homepage":"https://www.awesomepython.org/","_description":"crazy-awesome-python: A curated list of awesome Python frameworks, with a bias towards data and machine learning","_organization":"dylanhogg","_updated_at":"2022-12-09T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2020-06-20T00:00:00.000Z","_age_weeks":130,"_stars_per_week":0.36,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.62,"_pop_updated_issues_count":6,"_pop_closed_issues_count":6,"_pop_created_since_days":30,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":6.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":17.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dylanhogg/crazy-awesome-python/master/README.md","_readme_localurl":"dylanhogg~crazy-awesome-python~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/dylanhogg/crazy-awesome-python/master/requirements.txt"],"_requirements_localurls":["dylanhogg~crazy-awesome-python~requirements.txt"]},{"index":401,"category":"crypto","githuburl":"https://github.com/dylanhogg/crazy-awesome-crypto","featured":null,"links":null,"description":null,"_repopath":"dylanhogg/crazy-awesome-crypto","_reponame":"crazy-awesome-crypto","_stars":43,"_forks":13,"_watches":4,"_topics":["crypto","cryptocurrency","blockchain","bitcoin","ethereum","awesome-list","data","data-analysis","github","awesome"],"_language":"Python","_homepage":"https://www.awesomecrypto.xyz/","_description":"crazy-awesome-crypto: A list of awesome crypto and blockchain projects","_organization":"dylanhogg","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-12-10T00:00:00.000Z","_created_at":"2021-09-27T00:00:00.000Z","_age_weeks":64,"_stars_per_week":0.67,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.63,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":15,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":11.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dylanhogg/crazy-awesome-crypto/master/README.md","_readme_localurl":"dylanhogg~crazy-awesome-crypto~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/dylanhogg/crazy-awesome-crypto/master/requirements.txt"],"_requirements_localurls":["dylanhogg~crazy-awesome-crypto~requirements.txt"]},{"index":202,"category":"crypto","githuburl":"https://github.com/nerolation/ethereum-datafarm","featured":null,"links":null,"description":null,"_repopath":"nerolation/ethereum-datafarm","_reponame":"ethereum-datafarm","_stars":37,"_forks":8,"_watches":1,"_topics":[],"_language":"Python","_homepage":null,"_description":"ethereum-datafarm: Scrap blockchain data from the public API of Etherscan.io","_organization":"nerolation","_updated_at":"2022-12-18T00:00:00.000Z","_last_commit_date":"2022-11-19T00:00:00.000Z","_created_at":"2021-03-13T00:00:00.000Z","_age_weeks":92,"_stars_per_week":0.4,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["viennauniversityofeconomicsandbusiness(wu)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.71,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":22,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":13.0,"_readme_filename":"Readme.md","_readme_giturl":"https://raw.githubusercontent.com/nerolation/ethereum-datafarm/master/Readme.md","_readme_localurl":"nerolation~ethereum-datafarm~Readme.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/nerolation/ethereum-datafarm/master/requirements.txt"],"_requirements_localurls":["nerolation~ethereum-datafarm~requirements.txt"]},{"index":776,"category":"sim","githuburl":"https://github.com/activitysim/populationsim","featured":null,"links":null,"description":null,"_repopath":"activitysim/populationsim","_reponame":"populationsim","_stars":37,"_forks":27,"_watches":11,"_topics":["python","data-science","population-synthesis","activitysim","bsd-3-clause","microsimulation"],"_language":"Jupyter Notebook","_homepage":"https://activitysim.github.io/populationsim","_description":"populationsim: An Open Platform for Population Synthesis","_organization":"activitysim","_updated_at":"2022-08-23T00:00:00.000Z","_last_commit_date":"2021-11-19T00:00:00.000Z","_created_at":"2017-02-14T00:00:00.000Z","_age_weeks":304,"_stars_per_week":0.12,"_pop_contributor_count":9,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ptvgroup","rsginc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":71,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":23.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/activitysim/populationsim/master/README.md","_readme_localurl":"activitysim~populationsim~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/activitysim/populationsim/master/setup.py"],"_requirements_localurls":["activitysim~populationsim~setup.py"]},{"index":821,"category":"pandas","githuburl":"https://github.com/ddelange/mapply","featured":null,"links":null,"description":null,"_repopath":"ddelange/mapply","_reponame":"mapply","_stars":35,"_forks":2,"_watches":3,"_topics":[],"_language":"Python","_homepage":"","_description":"mapply: Sensible multi-core apply function for Pandas","_organization":"ddelange","_updated_at":"2022-12-14T00:00:00.000Z","_last_commit_date":"2022-12-16T00:00:00.000Z","_created_at":"2020-10-26T00:00:00.000Z","_age_weeks":112,"_stars_per_week":0.31,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":7,"_pop_closed_issues_count":7,"_pop_created_since_days":26,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":7.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":21.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ddelange/mapply/master/README.md","_readme_localurl":"ddelange~mapply~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ddelange/mapply/master/setup.py"],"_requirements_localurls":["ddelange~mapply~setup.py"]},{"index":386,"category":"nlp","githuburl":"https://github.com/ferdinandzhong/punctuator","featured":null,"links":null,"description":null,"_repopath":"ferdinandzhong/punctuator","_reponame":"punctuator","_stars":35,"_forks":5,"_watches":1,"_topics":["bert","nlp","seq2seq","punctuation","deep-learning","pytorch","bert-ner","chinese-nlp"],"_language":"Python","_homepage":"","_description":"punctuator: A small seq2seq punctuator tool based on DistilBERT","_organization":"ferdinandzhong","_updated_at":"2022-10-19T00:00:00.000Z","_last_commit_date":"2022-09-28T00:00:00.000Z","_created_at":"2020-11-19T00:00:00.000Z","_age_weeks":108,"_stars_per_week":0.32,"_pop_contributor_count":4,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.17,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":25,"_pop_updated_since_days":3,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":2.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":6.5,"_pop_dependents_count":0,"_pop_score":21.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ferdinandzhong/punctuator/master/README.md","_readme_localurl":"ferdinandzhong~punctuator~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ferdinandzhong/punctuator/master/requirements.txt","https://raw.githubusercontent.com/ferdinandzhong/punctuator/master/setup.py"],"_requirements_localurls":["ferdinandzhong~punctuator~requirements.txt","ferdinandzhong~punctuator~setup.py"]},{"index":333,"category":"util","githuburl":"https://github.com/gondolav/pyfuncol","featured":null,"links":null,"description":null,"_repopath":"gondolav/pyfuncol","_reponame":"pyfuncol","_stars":32,"_forks":3,"_watches":3,"_topics":["functional","collections","python","parallel","python3","extension-functions"],"_language":"Python","_homepage":"https://pyfuncol.readthedocs.io/","_description":"pyfuncol: Functional collections extension functions for Python","_organization":"gondolav","_updated_at":"2022-11-16T00:00:00.000Z","_last_commit_date":"2022-11-16T00:00:00.000Z","_created_at":"2021-12-16T00:00:00.000Z","_age_weeks":52,"_stars_per_week":0.61,"_pop_contributor_count":4,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["epfl"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.98,"_pop_updated_issues_count":27,"_pop_closed_issues_count":20,"_pop_created_since_days":12,"_pop_updated_since_days":1,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":27.0,"_pop_comment_count":38.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":25.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gondolav/pyfuncol/master/README.md","_readme_localurl":"gondolav~pyfuncol~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gondolav/pyfuncol/master/requirements.txt","https://raw.githubusercontent.com/gondolav/pyfuncol/master/setup.py"],"_requirements_localurls":["gondolav~pyfuncol~requirements.txt","gondolav~pyfuncol~setup.py"]},{"index":711,"category":"gis","githuburl":"https://github.com/artelys/geonetworkx","featured":null,"links":null,"description":null,"_repopath":"artelys/geonetworkx","_reponame":"geonetworkx","_stars":30,"_forks":1,"_watches":7,"_topics":[],"_language":"Python","_homepage":null,"_description":"geonetworkx: Python tools for geographic graphs","_organization":"artelys","_updated_at":"2022-10-27T00:00:00.000Z","_last_commit_date":"2021-06-28T00:00:00.000Z","_created_at":"2019-10-24T00:00:00.000Z","_age_weeks":164,"_stars_per_week":0.18,"_pop_contributor_count":6,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["argonnenationallaboratory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":38,"_pop_updated_since_days":18,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":16.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/artelys/geonetworkx/master/README.md","_readme_localurl":"artelys~geonetworkx~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/artelys/geonetworkx/master/requirements.txt","https://raw.githubusercontent.com/artelys/geonetworkx/master/setup.py"],"_requirements_localurls":["artelys~geonetworkx~requirements.txt","artelys~geonetworkx~setup.py"]},{"index":502,"category":"gis","githuburl":"https://github.com/gregorhd/mapcompare","featured":null,"links":null,"description":null,"_repopath":"gregorhd/mapcompare","_reponame":"mapcompare","_stars":28,"_forks":0,"_watches":2,"_topics":["visualisation-libraries","sample-visualisation","comparison","data-visualisation","data-viz","urban-data-science","interactive-visualisations"],"_language":"Python","_homepage":"","_description":"mapcompare: Comparison of Python packages and libraries for visualising geospatial vector data: applications for Smarter Cities.","_organization":"gregorhd","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2022-12-03T00:00:00.000Z","_created_at":"2021-05-21T00:00:00.000Z","_age_weeks":82,"_stars_per_week":0.34,"_pop_contributor_count":1,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["gafag"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.17,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":19,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":14.89,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gregorhd/mapcompare/master/README.md","_readme_localurl":"gregorhd~mapcompare~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gregorhd/mapcompare/master/setup.py"],"_requirements_localurls":["gregorhd~mapcompare~setup.py"]},{"index":894,"category":"sim","githuburl":"https://github.com/crowddynamics/crowddynamics","featured":null,"links":null,"description":null,"_repopath":"crowddynamics/crowddynamics","_reponame":"crowddynamics","_stars":27,"_forks":9,"_watches":9,"_topics":["crowd-dynamics","multi-agent","continuous-time","crowd-simulation"],"_language":"Python","_homepage":"https://jaantollander.com/post/how-to-implement-continuous-time-multi-agent-crowd-simulation/","_description":"crowddynamics: Continuous-time multi-agent crowd simulation engine implemented in Python using Numba and Numpy for performance.","_organization":"crowddynamics","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2020-01-02T00:00:00.000Z","_created_at":"2016-03-22T00:00:00.000Z","_age_weeks":351,"_stars_per_week":0.08,"_pop_contributor_count":7,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["aaltouniversity","pyupio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":82,"_pop_updated_since_days":36,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":13.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/crowddynamics/crowddynamics/master/README.md","_readme_localurl":"crowddynamics~crowddynamics~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/crowddynamics/crowddynamics/master/requirements.txt","https://raw.githubusercontent.com/crowddynamics/crowddynamics/master/setup.py"],"_requirements_localurls":["crowddynamics~crowddynamics~requirements.txt","crowddynamics~crowddynamics~setup.py"]},{"index":688,"category":"ml-dl","githuburl":"https://github.com/jerryyli/valhalla-nmt","featured":null,"links":null,"description":null,"_repopath":"jerryyli/valhalla-nmt","_reponame":"valhalla-nmt","_stars":23,"_forks":3,"_watches":1,"_topics":["computer-vision","machine-translation","multimodal-learning","natural-language-processing"],"_language":"Python","_homepage":"","_description":"valhalla-nmt: Code repository for CVPR 2022 paper \"VALHALLA: Visual Hallucination for Machine Translation\"","_organization":"jerryyli","_updated_at":"2022-11-26T00:00:00.000Z","_last_commit_date":"2022-06-06T00:00:00.000Z","_created_at":"2022-03-22T00:00:00.000Z","_age_weeks":38,"_stars_per_week":0.59,"_pop_contributor_count":3,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mit-ibmwatsonailab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":9,"_pop_updated_since_days":6,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jerryyli/valhalla-nmt/master/README.md","_readme_localurl":"jerryyli~valhalla-nmt~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":37,"category":"math","githuburl":"https://github.com/jszymon/pacal","featured":null,"links":null,"description":null,"_repopath":"jszymon/pacal","_reponame":"pacal","_stars":21,"_forks":8,"_watches":6,"_topics":[],"_language":"Python","_homepage":null,"_description":"PaCAL - ProbAbilistic CALculator","_organization":"jszymon","_updated_at":"2022-11-02T00:00:00.000Z","_last_commit_date":"2022-11-02T00:00:00.000Z","_created_at":"2014-08-04T00:00:00.000Z","_age_weeks":437,"_stars_per_week":0.05,"_pop_contributor_count":8,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":102,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":5,"_pop_score":18.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jszymon/pacal/master/README.md","_readme_localurl":"jszymon~pacal~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jszymon/pacal/master/requirements.txt","https://raw.githubusercontent.com/jszymon/pacal/master/setup.py"],"_requirements_localurls":["jszymon~pacal~requirements.txt","jszymon~pacal~setup.py"]},{"index":840,"category":"data","githuburl":"https://github.com/codait/pardata","featured":null,"links":null,"description":null,"_repopath":"codait/pardata","_reponame":"pardata","_stars":18,"_forks":5,"_watches":11,"_topics":["dataset","python","machine-learning","artificial-intelligence","data-science"],"_language":"Python","_homepage":"https://pardata.readthedocs.io/en/latest/","_description":"codait/pardata","_organization":"codait","_updated_at":"2022-08-14T00:00:00.000Z","_last_commit_date":"2021-12-01T00:00:00.000Z","_created_at":"2020-11-17T00:00:00.000Z","_age_weeks":108,"_stars_per_week":0.17,"_pop_contributor_count":7,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["google","ibmcodait"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":7,"_pop_closed_issues_count":0,"_pop_created_since_days":25,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":7.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":16.56,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/codait/pardata/master/README.rst","_readme_localurl":"codait~pardata~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/codait/pardata/master/setup.py"],"_requirements_localurls":["codait~pardata~setup.py"]},{"index":578,"category":"term","githuburl":"https://github.com/matthewdeanmartin/terminaltables","featured":null,"links":null,"description":null,"_repopath":"matthewdeanmartin/terminaltables","_reponame":"terminaltables","_stars":17,"_forks":4,"_watches":0,"_topics":[],"_language":"Python","_homepage":"https://robpol86.github.io/terminaltables","_description":"terminaltables: Generate simple tables in terminals from a nested list of strings.","_organization":"matthewdeanmartin","_updated_at":"2022-11-15T00:00:00.000Z","_last_commit_date":"2022-01-30T00:00:00.000Z","_created_at":"2021-12-04T00:00:00.000Z","_age_weeks":54,"_stars_per_week":0.31,"_pop_contributor_count":10,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["adobe"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":13,"_pop_updated_since_days":11,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":31,"_pop_score":21.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/matthewdeanmartin/terminaltables/master/README.md","_readme_localurl":"matthewdeanmartin~terminaltables~README.md","_requirements_filenames":["pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/matthewdeanmartin/terminaltables/master/pyproject.toml","https://raw.githubusercontent.com/matthewdeanmartin/terminaltables/master/Pipfile"],"_requirements_localurls":["matthewdeanmartin~terminaltables~pyproject.toml","matthewdeanmartin~terminaltables~Pipfile"]},{"index":679,"category":"util","githuburl":"https://github.com/markhershey/arxiv-dl","featured":null,"links":null,"description":null,"_repopath":"markhershey/arxiv-dl","_reponame":"arxiv-dl","_stars":16,"_forks":4,"_watches":2,"_topics":["arxiv","paper","downloader","command-line-tool","paper-with-code","cvpr"],"_language":"Python","_homepage":"https://pypi.org/project/arxiv-dl/","_description":"arxiv-dl: Command-line ArXiv & CVF (CVPR, ICCV, WACV) Paper Downloader","_organization":"markhershey","_updated_at":"2022-12-02T00:00:00.000Z","_last_commit_date":"2022-12-06T00:00:00.000Z","_created_at":"2021-01-21T00:00:00.000Z","_age_weeks":99,"_stars_per_week":0.16,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":23,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":17.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/markhershey/arxiv-dl/master/README.md","_readme_localurl":"markhershey~arxiv-dl~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/markhershey/arxiv-dl/master/requirements.txt","https://raw.githubusercontent.com/markhershey/arxiv-dl/master/setup.py"],"_requirements_localurls":["markhershey~arxiv-dl~requirements.txt","markhershey~arxiv-dl~setup.py"]},{"index":669,"category":"gis","githuburl":"https://github.com/zorzi-s/maprepair","featured":null,"links":null,"description":null,"_repopath":"zorzi-s/maprepair","_reponame":"MapRepair","_stars":16,"_forks":4,"_watches":2,"_topics":[],"_language":"Python","_homepage":null,"_description":"MapRepair: Deep Cadastre Maps Alignment and Temporal Inconsistencies Fix in Satellite Images","_organization":"zorzi-s","_updated_at":"2022-12-06T00:00:00.000Z","_last_commit_date":"2021-05-17T00:00:00.000Z","_created_at":"2020-07-30T00:00:00.000Z","_age_weeks":124,"_stars_per_week":0.13,"_pop_contributor_count":1,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":29,"_pop_updated_since_days":19,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":2.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zorzi-s/maprepair/master/README.md","_readme_localurl":"zorzi-s~maprepair~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":892,"category":"util","githuburl":"https://github.com/pyodide/micropip","featured":null,"links":null,"description":null,"_repopath":"pyodide/micropip","_reponame":"micropip","_stars":10,"_forks":4,"_watches":5,"_topics":["package-installer","pyodide","python","webassembly"],"_language":"Python","_homepage":"https://micropip.pyodide.org","_description":"micropip: A lightweight Python package installer for Pyodide","_organization":"pyodide","_updated_at":"2022-12-15T00:00:00.000Z","_last_commit_date":"2022-12-12T00:00:00.000Z","_created_at":"2022-09-15T00:00:00.000Z","_age_weeks":13,"_stars_per_week":0.74,"_pop_contributor_count":6,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["mitmathdepartment"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.54,"_pop_updated_issues_count":37,"_pop_closed_issues_count":27,"_pop_created_since_days":3,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":37.0,"_pop_comment_count":70.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":3,"_pop_score":28.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyodide/micropip/master/README.md","_readme_localurl":"pyodide~micropip~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyodide/micropip/master/pyproject.toml"],"_requirements_localurls":["pyodide~micropip~pyproject.toml"]},{"index":702,"category":"data","githuburl":"https://github.com/harangju/wikinet","featured":null,"links":null,"description":null,"_repopath":"harangju/wikinet","_reponame":"wikinet","_stars":10,"_forks":5,"_watches":3,"_topics":[],"_language":"Jupyter Notebook","_homepage":"","_description":"wikinet: Python library for exploring networks of hyperlinked Wikipedia articles","_organization":"harangju","_updated_at":"2022-12-16T00:00:00.000Z","_last_commit_date":"2022-01-25T00:00:00.000Z","_created_at":"2019-08-05T00:00:00.000Z","_age_weeks":176,"_stars_per_week":0.06,"_pop_contributor_count":6,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":41,"_pop_updated_since_days":11,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":9,"_pop_score":12.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/harangju/wikinet/master/README.md","_readme_localurl":"harangju~wikinet~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/harangju/wikinet/master/setup.py","https://raw.githubusercontent.com/harangju/wikinet/master/pyproject.toml"],"_requirements_localurls":["harangju~wikinet~setup.py","harangju~wikinet~pyproject.toml"]},{"index":608,"category":"typing","githuburl":"https://github.com/tk0miya/docutils-stubs","featured":null,"links":null,"description":null,"_repopath":"tk0miya/docutils-stubs","_reponame":"docutils-stubs","_stars":7,"_forks":5,"_watches":6,"_topics":[],"_language":"Python","_homepage":null,"_description":"tk0miya/docutils-stubs","_organization":"tk0miya","_updated_at":"2022-01-02T00:00:00.000Z","_last_commit_date":"2022-01-02T00:00:00.000Z","_created_at":"2018-11-02T00:00:00.000Z","_age_weeks":215,"_stars_per_week":0.03,"_pop_contributor_count":6,"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["timeintermedia(timedia)","unist"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":50,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":8,"_pop_score":21.32,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/tk0miya/docutils-stubs/master/README.rst","_readme_localurl":"tk0miya~docutils-stubs~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tk0miya/docutils-stubs/master/setup.py"],"_requirements_localurls":["tk0miya~docutils-stubs~setup.py"]},{"index":180,"category":"sim","githuburl":"https://github.com/artemyk/dynpy","featured":null,"links":null,"description":null,"_repopath":"artemyk/dynpy","_reponame":"dynpy","_stars":5,"_forks":5,"_watches":3,"_topics":[],"_language":"Python","_homepage":null,"_description":"dynpy: Dynamical systems for Python","_organization":"artemyk","_updated_at":"2021-09-24T00:00:00.000Z","_last_commit_date":"2018-09-28T00:00:00.000Z","_created_at":"2014-09-12T00:00:00.000Z","_age_weeks":431,"_stars_per_week":0.01,"_pop_contributor_count":5,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":101,"_pop_updated_since_days":51,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":3,"_pop_score":9.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/artemyk/dynpy/master/README.md","_readme_localurl":"artemyk~dynpy~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/artemyk/dynpy/master/setup.py"],"_requirements_localurls":["artemyk~dynpy~setup.py"]},{"index":526,"category":"gis","githuburl":"https://github.com/lycantropos/wagyu","featured":null,"links":null,"description":null,"_repopath":"lycantropos/wagyu","_reponame":"wagyu","_stars":3,"_forks":2,"_watches":1,"_topics":[],"_language":"Python","_homepage":"https://github.com/mapbox/wagyu","_description":"wagyu: Python port of mapbox/wagyu library (with separate C++ binding)","_organization":"lycantropos","_updated_at":"2022-07-19T00:00:00.000Z","_last_commit_date":"2020-11-21T00:00:00.000Z","_created_at":"2020-06-30T00:00:00.000Z","_age_weeks":128,"_stars_per_week":0.02,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":30,"_pop_updated_since_days":25,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":5.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lycantropos/wagyu/master/README.md","_readme_localurl":"lycantropos~wagyu~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lycantropos/wagyu/master/requirements.txt","https://raw.githubusercontent.com/lycantropos/wagyu/master/setup.py"],"_requirements_localurls":["lycantropos~wagyu~requirements.txt","lycantropos~wagyu~setup.py"]},{"index":751,"category":"gis","githuburl":"https://github.com/edomel/boundaryvt","featured":null,"links":null,"description":null,"_repopath":"edomel/boundaryvt","_reponame":"BoundaryVT","_stars":2,"_forks":0,"_watches":2,"_topics":[],"_language":"Python","_homepage":null,"_description":"edomel/boundaryvt","_organization":"edomel","_updated_at":"2022-12-07T00:00:00.000Z","_last_commit_date":"2022-09-29T00:00:00.000Z","_created_at":"2022-07-29T00:00:00.000Z","_age_weeks":20,"_stars_per_week":0.1,"_pop_contributor_count":2,"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":["ethzurich"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":5,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":7.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/edomel/boundaryvt/master/README.md","_readme_localurl":"edomel~boundaryvt~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":420,"category":"template","githuburl":"https://github.com/dylanhogg/python-project-template","featured":null,"links":null,"description":null,"_repopath":"dylanhogg/python-project-template","_reponame":"python-project-template","_stars":1,"_forks":0,"_watches":2,"_topics":["python","template","jupyterlab","cookiecutter"],"_language":"Python","_homepage":"","_description":"python-project-template: A quick-start Python project template with helpful functionality and common libraries.","_organization":"dylanhogg","_updated_at":"2022-08-19T00:00:00.000Z","_last_commit_date":"2022-08-19T00:00:00.000Z","_created_at":"2020-02-12T00:00:00.000Z","_age_weeks":148,"_stars_per_week":0.01,"_pop_contributor_count":2,"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":5,"_pop_contributor_orgs":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":35,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dylanhogg/python-project-template/master/README.md","_readme_localurl":"dylanhogg~python-project-template~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/dylanhogg/python-project-template/master/requirements.txt"],"_requirements_localurls":["dylanhogg~python-project-template~requirements.txt"]}]} \ No newline at end of file +{"schema":{"fields":[{"name":"index","type":"integer"},{"name":"category","type":"string"},{"name":"githuburl","type":"string"},{"name":"featured","type":"number"},{"name":"links","type":"string"},{"name":"description","type":"number"},{"name":"_repopath","type":"string"},{"name":"_reponame","type":"string"},{"name":"_stars","type":"integer"},{"name":"_forks","type":"integer"},{"name":"_watches","type":"integer"},{"name":"_language","type":"string"},{"name":"_homepage","type":"string"},{"name":"_description","type":"string"},{"name":"_organization","type":"string"},{"name":"_updated_at","type":"string"},{"name":"_created_at","type":"string"},{"name":"_age_weeks","type":"integer"},{"name":"_stars_per_week","type":"number"},{"name":"_topics","type":"string"},{"name":"_last_commit_date","type":"string"},{"name":"_pop_contributor_count","type":"integer"},{"name":"_pop_contributor_logins","type":"string"},{"name":"_pop_contributor_orgs_len","type":"integer"},{"name":"_pop_contributor_orgs_max","type":"integer"},{"name":"_pop_contributor_orgs","type":"string"},{"name":"_pop_contributor_orgs_raw","type":"string"},{"name":"_pop_contributor_orgs_error","type":"string"},{"name":"_pop_commit_frequency","type":"number"},{"name":"_pop_updated_issues_count","type":"integer"},{"name":"_pop_closed_issues_count","type":"integer"},{"name":"_pop_created_since_days","type":"integer"},{"name":"_pop_updated_since_days","type":"integer"},{"name":"_pop_recent_releases_count","type":"integer"},{"name":"_pop_recent_releases_estimated_tags","type":"integer"},{"name":"_pop_recent_releases_adjusted_count","type":"integer"},{"name":"_pop_issue_count","type":"number"},{"name":"_pop_comment_count","type":"number"},{"name":"_pop_comment_count_lookback_days","type":"number"},{"name":"_pop_comment_frequency","type":"number"},{"name":"_pop_dependents_count","type":"integer"},{"name":"_pop_score","type":"number"},{"name":"_readme_filename","type":"string"},{"name":"_readme_giturl","type":"string"},{"name":"_readme_localurl","type":"string"},{"name":"_requirements_filenames","type":"string"},{"name":"_requirements_giturls","type":"string"},{"name":"_requirements_localurls","type":"string"}],"primaryKey":["index"],"pandas_version":"0.20.0"},"data":[{"index":89,"category":"ml-dl","githuburl":"https://github.com/tensorflow/tensorflow","featured":null,"links":null,"description":null,"_repopath":"tensorflow/tensorflow","_reponame":"tensorflow","_stars":171400,"_forks":87832,"_watches":7764,"_language":"C++","_homepage":"https://tensorflow.org","_description":"tensorflow: An Open Source Machine Learning Framework for Everyone","_organization":"tensorflow","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-11-07T00:00:00.000Z","_age_weeks":380,"_stars_per_week":450.38,"_topics":["tensorflow","machine-learning","python","deep-learning","deep-neural-networks","neural-network","ml","distributed"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":4275,"_pop_contributor_logins":["benoitsteiner","caisq@google","gunan@googletensorflow","hawkinsp@google","mihaimaruseac@google","mrry","roserg","tensorflower-gardener","vrv@carnegiemellonuniversity","yongtang"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["carnegiemellonuniversity","google","googletensorflow"],"_pop_contributor_orgs_raw":["@google @tensorflow ","Carnegie Mellon University","Google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":321.21,"_pop_updated_issues_count":2254,"_pop_closed_issues_count":1372,"_pop_created_since_days":89,"_pop_updated_since_days":0,"_pop_recent_releases_count":27,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":27,"_pop_issue_count":2255.0,"_pop_comment_count":6541.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":0,"_pop_score":72.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/tensorflow/master/README.md","_readme_localurl":"tensorflow~tensorflow~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":405,"category":"study","githuburl":"https://github.com/thealgorithms/python","featured":null,"links":null,"description":null,"_repopath":"thealgorithms/python","_reponame":"Python","_stars":153358,"_forks":39092,"_watches":5962,"_language":"Python","_homepage":"https://the-algorithms.com/","_description":"Python: All Algorithms implemented in Python","_organization":"thealgorithms","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-07-16T00:00:00.000Z","_age_weeks":344,"_stars_per_week":445.07,"_topics":["python","algorithm","algorithms-implemented","algorithm-competitions","algos","sorts","searches","sorting-algorithms","education","learn","practice","community-driven","interview","hacktoberfest"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":978,"_pop_contributor_logins":["AnupKumarPanwar@thealgorithmsgojek","MaximSmolskiy","SandersLin","cclauss@christianclauss","christianbender","daniel-s-ingram@torcrobotics","dhruvmanila","duyuanch@thealgorithms","dynamitechetan@fossasiagojekthealgorithms","harshildarji@universit\u00e4tpassau"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["christianclauss","fossasiagojekthealgorithms","thealgorithms","thealgorithmsgojek","torcrobotics","universit\u00e4tpassau"],"_pop_contributor_orgs_raw":["@TheAlgorithms","@TheAlgorithms @Gojek","@fossasia @gojek @thealgorithms","Christian Clauss","Torc Robotics","Universit\u00e4t Passau"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.52,"_pop_updated_issues_count":169,"_pop_closed_issues_count":110,"_pop_created_since_days":80,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":169.0,"_pop_comment_count":169.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":52.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/thealgorithms/python/master/README.md","_readme_localurl":"thealgorithms~python~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/thealgorithms/python/master/requirements.txt","https://raw.githubusercontent.com/thealgorithms/python/master/pyproject.toml"],"_requirements_localurls":["thealgorithms~python~requirements.txt","thealgorithms~python~pyproject.toml"]},{"index":112,"category":"nlp","githuburl":"https://github.com/huggingface/transformers","featured":null,"links":null,"description":null,"_repopath":"huggingface/transformers","_reponame":"transformers","_stars":81769,"_forks":18127,"_watches":899,"_language":"Python","_homepage":"https://huggingface.co/transformers","_description":"\ud83e\udd17 Transformers: State-of-the-art Machine Learning for Pytorch, TensorFlow, and JAX.","_organization":"huggingface","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-10-29T00:00:00.000Z","_age_weeks":225,"_stars_per_week":362.96,"_topics":["nlp","natural-language-processing","pytorch","language-model","tensorflow","bert","language-models","pytorch-transformers","nlp-library","transformer","model-hub","pretrained-models","jax","flax","seq2seq","speech-recognition","hacktoberfest","python","machine-learning","deep-learning"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":1746,"_pop_contributor_logins":["LysandreJik@huggingface","Narsil@huggingface","julien-c@huggingface","patil-suraj@huggingface","patrickvonplaten","sgugger","sshleifer@facebookresearch","stas00@stasosphereonline/huggingface","thomwolf@huggingface","ydshieh"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebookresearch","huggingface","stasosphereonline/huggingface"],"_pop_contributor_orgs_raw":["@facebookresearch","@huggingface ","Hugging Face","Huggingface","Stasosphere Online Inc. / HuggingFace Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":56.77,"_pop_updated_issues_count":1870,"_pop_closed_issues_count":1554,"_pop_created_since_days":53,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":27,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":1870.0,"_pop_comment_count":5676.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":65.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/transformers/master/README.md","_readme_localurl":"huggingface~transformers~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/transformers/master/setup.py","https://raw.githubusercontent.com/huggingface/transformers/master/pyproject.toml"],"_requirements_localurls":["huggingface~transformers~setup.py","huggingface~transformers~pyproject.toml"]},{"index":14,"category":"web","githuburl":"https://github.com/django/django","featured":null,"links":null,"description":null,"_repopath":"django/django","_reponame":"django","_stars":68891,"_forks":28667,"_watches":2266,"_language":"Python","_homepage":"https://www.djangoproject.com/","_description":"django: The Web framework for perfectionists with deadlines.","_organization":"django","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-04-28T00:00:00.000Z","_age_weeks":564,"_stars_per_week":122.02,"_topics":["python","django","web","framework","orm","templates","models","views","apps"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":2880,"_pop_contributor_logins":["aaugustin@qonto","adrianholovaty","charettes@zapier","claudep@2xlibre.nets\u00e0rl","felixxm@django","freakboy3742","jacobian@latacora","jezdez@anaconda","malcolmt","timgraham"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["2xlibre.nets\u00e0rl","anaconda","django","latacora","qonto","zapier"],"_pop_contributor_orgs_raw":["2xlibre.net S\u00e0rl","@anaconda","@django","@qonto","@zapier","Latacora"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":18.23,"_pop_updated_issues_count":339,"_pop_closed_issues_count":292,"_pop_created_since_days":132,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":34,"_pop_recent_releases_adjusted_count":34,"_pop_issue_count":339.0,"_pop_comment_count":723.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":66.98,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/django/django/master/README.rst","_readme_localurl":"django~django~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/django/django/master/setup.py","https://raw.githubusercontent.com/django/django/master/pyproject.toml"],"_requirements_localurls":["django~django~setup.py","django~django~pyproject.toml"]},{"index":76,"category":"ml-dl","githuburl":"https://github.com/pytorch/pytorch","featured":null,"links":null,"description":null,"_repopath":"pytorch/pytorch","_reponame":"pytorch","_stars":62941,"_forks":17471,"_watches":1637,"_language":"C++","_homepage":"https://pytorch.org","_description":"pytorch: Tensors and Dynamic neural networks in Python with strong GPU acceleration","_organization":"pytorch","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-08-13T00:00:00.000Z","_age_weeks":340,"_stars_per_week":184.81,"_topics":["neural-network","autograd","gpu","numpy","deep-learning","tensor","python","machine-learning"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":3855,"_pop_contributor_logins":["apaszke@google","ezyang","gchanan","jerryzh168@facebook","malfet","pytorchmergebot","soumith@facebookairesearch","suo","zdevito","zou3519"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook","facebookairesearch","google"],"_pop_contributor_orgs_raw":["@facebook","@google","Facebook AI Research"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":224.5,"_pop_updated_issues_count":7890,"_pop_closed_issues_count":5476,"_pop_created_since_days":79,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":110,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":7886.0,"_pop_comment_count":36088.0,"_pop_comment_count_lookback_days":22.0,"_pop_comment_frequency":4.6,"_pop_dependents_count":0,"_pop_score":71.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/pytorch/master/README.md","_readme_localurl":"pytorch~pytorch~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/pytorch/master/requirements.txt","https://raw.githubusercontent.com/pytorch/pytorch/master/setup.py","https://raw.githubusercontent.com/pytorch/pytorch/master/pyproject.toml"],"_requirements_localurls":["pytorch~pytorch~requirements.txt","pytorch~pytorch~setup.py","pytorch~pytorch~pyproject.toml"]},{"index":57,"category":"web","githuburl":"https://github.com/pallets/flask","featured":null,"links":null,"description":null,"_repopath":"pallets/flask","_reponame":"flask","_stars":61974,"_forks":15472,"_watches":2145,"_language":"Python","_homepage":"https://flask.palletsprojects.com","_description":"flask: The Python micro framework for building web applications.","_organization":"pallets","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2010-04-06T00:00:00.000Z","_age_weeks":672,"_stars_per_week":92.2,"_topics":["python","flask","wsgi","web-framework","werkzeug","jinja","pallets"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":808,"_pop_contributor_logins":["DasIch@zalandose","davidism","dependabot-preview[bot]","greyli","kennethreitz","keyan@stripe","mitsuhiko@sentry","pgjones","rduplain","untitaker@getsentry"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["getsentry","sentry","stripe","zalandose"],"_pop_contributor_orgs_raw":["@getsentry ","Sentry","Zalando SE","stripe"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.15,"_pop_updated_issues_count":126,"_pop_closed_issues_count":123,"_pop_created_since_days":157,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":126.0,"_pop_comment_count":130.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":54.49,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/flask/master/README.rst","_readme_localurl":"pallets~flask~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/flask/master/pyproject.toml"],"_requirements_localurls":["pallets~flask~pyproject.toml"]},{"index":189,"category":"util","githuburl":"https://github.com/home-assistant/core","featured":null,"links":null,"description":null,"_repopath":"home-assistant/core","_reponame":"core","_stars":58219,"_forks":22051,"_watches":1348,"_language":"Python","_homepage":"https://www.home-assistant.io","_description":"core: :house_with_garden: Open source home automation that puts local control and privacy first.","_organization":"home-assistant","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2013-09-17T00:00:00.000Z","_age_weeks":492,"_stars_per_week":118.3,"_topics":["python","home-automation","iot","internet-of-things","mqtt","raspberry-pi","asyncio","hacktoberfest"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":3559,"_pop_contributor_logins":["Kane610","bachya","balloob@home-assistant,nabucasa","bdraco","cdce8p","emontnemery","epenet","fabaff","frenck@home-assistanthassio-addons","pvizeli@nabucasa"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["home-assistant,nabucasa","home-assistanthassio-addons","nabucasa"],"_pop_contributor_orgs_raw":["@NabuCasa","@home-assistant @hassio-addons","@home-assistant, @nabucasa"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":233.4,"_pop_updated_issues_count":8972,"_pop_closed_issues_count":6338,"_pop_created_since_days":115,"_pop_updated_since_days":0,"_pop_recent_releases_count":181,"_pop_recent_releases_estimated_tags":113,"_pop_recent_releases_adjusted_count":181,"_pop_issue_count":8971.0,"_pop_comment_count":28860.0,"_pop_comment_count_lookback_days":22.0,"_pop_comment_frequency":3.2,"_pop_dependents_count":0,"_pop_score":74.08,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/home-assistant/core/master/README.rst","_readme_localurl":"home-assistant~core~README.rst","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/home-assistant/core/master/requirements.txt","https://raw.githubusercontent.com/home-assistant/core/master/pyproject.toml"],"_requirements_localurls":["home-assistant~core~requirements.txt","home-assistant~core~pyproject.toml"]},{"index":40,"category":"ml-dl","githuburl":"https://github.com/keras-team/keras","featured":null,"links":null,"description":null,"_repopath":"keras-team/keras","_reponame":"keras","_stars":57357,"_forks":19295,"_watches":1927,"_language":"Python","_homepage":"http://keras.io/","_description":"keras: Deep Learning for humans","_organization":"keras-team","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-03-28T00:00:00.000Z","_age_weeks":412,"_stars_per_week":139.02,"_topics":["deep-learning","tensorflow","neural-networks","machine-learning","data-science","python"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":1161,"_pop_contributor_logins":["chenmoneygithub","farizrahman4u","fchollet","gabrieldemarmiesse@preligens","haifeng-jin@keras-teamtensorflowgooglers","mattdangerw@google","ozabluda","qlzh727@google","taehoonlee@sktelecom","tensorflower-gardener"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","keras-teamtensorflowgooglers","preligens","sktelecom"],"_pop_contributor_orgs_raw":["@keras-team @tensorflow @googlers","Google","Preligens","SK Telecom"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":19.67,"_pop_updated_issues_count":463,"_pop_closed_issues_count":323,"_pop_created_since_days":96,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":463.0,"_pop_comment_count":1009.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":61.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/keras-team/keras/master/README.md","_readme_localurl":"keras-team~keras~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/keras-team/keras/master/requirements.txt"],"_requirements_localurls":["keras-team~keras~requirements.txt"]},{"index":135,"category":"web","githuburl":"https://github.com/tiangolo/fastapi","featured":1.0,"links":null,"description":null,"_repopath":"tiangolo/fastapi","_reponame":"fastapi","_stars":54734,"_forks":4530,"_watches":619,"_language":"Python","_homepage":"https://fastapi.tiangolo.com/","_description":"FastAPI framework, high performance, easy to learn, fast to code, ready for production","_organization":"tiangolo","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-12-08T00:00:00.000Z","_age_weeks":219,"_stars_per_week":249.28,"_topics":["python","json","swagger-ui","redoc","starlette","openapi","api","openapi3","framework","async","asyncio","uvicorn","python3","python-types","pydantic","json-schema","fastapi","swagger","rest","web"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":415,"_pop_contributor_logins":["Kludex@encode","dependabot[bot]","dmontagu@formlogic","euri10","github-actions[bot]","jaystone776","mariacamilagl","tiangolo","tokusumi","waynerv"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["encode","formlogic"],"_pop_contributor_orgs_raw":["@encode","Formlogic"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.67,"_pop_updated_issues_count":918,"_pop_closed_issues_count":491,"_pop_created_since_days":51,"_pop_updated_since_days":0,"_pop_recent_releases_count":27,"_pop_recent_releases_estimated_tags":35,"_pop_recent_releases_adjusted_count":27,"_pop_issue_count":918.0,"_pop_comment_count":1925.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":55.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/fastapi/master/README.md","_readme_localurl":"tiangolo~fastapi~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tiangolo/fastapi/master/pyproject.toml"],"_requirements_localurls":["tiangolo~fastapi~pyproject.toml"]},{"index":78,"category":"ml","githuburl":"https://github.com/scikit-learn/scikit-learn","featured":null,"links":null,"description":null,"_repopath":"scikit-learn/scikit-learn","_reponame":"scikit-learn","_stars":53008,"_forks":23961,"_watches":2159,"_language":"Python","_homepage":"https://scikit-learn.org","_description":"scikit-learn: machine learning in Python","_organization":"scikit-learn","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2010-08-17T00:00:00.000Z","_age_weeks":653,"_stars_per_week":81.16,"_topics":["machine-learning","python","statistics","data-science","data-analysis"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":2858,"_pop_contributor_logins":["agramfort@meta","amueller@microsoft","glouppe@uli\u00e8ge","jnothman@canva","larsmans","mblondel@googleresearch,brainteam","ogrisel@inria","pprett","thomasjpfan@quansight-labs","vene@uvalanguagetechnologylabltl-uva"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["canva","googleresearch,brainteam","inria","meta","microsoft","quansight-labs","uli\u00e8ge","uvalanguagetechnologylabltl-uva"],"_pop_contributor_orgs_raw":["@Quansight-Labs ","Canva","Google Research, Brain team","Inria","Meta","Microsoft","ULi\u00e8ge","UvA Language Technology Lab @ltl-uva"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":30.67,"_pop_updated_issues_count":965,"_pop_closed_issues_count":631,"_pop_created_since_days":152,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":965.0,"_pop_comment_count":2270.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":68.28,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/scikit-learn/scikit-learn/master/README.rst","_readme_localurl":"scikit-learn~scikit-learn~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scikit-learn/scikit-learn/master/setup.py","https://raw.githubusercontent.com/scikit-learn/scikit-learn/master/pyproject.toml"],"_requirements_localurls":["scikit-learn~scikit-learn~setup.py","scikit-learn~scikit-learn~pyproject.toml"]},{"index":399,"category":"util","githuburl":"https://github.com/python/cpython","featured":null,"links":null,"description":null,"_repopath":"python/cpython","_reponame":"cpython","_stars":50776,"_forks":25865,"_watches":1472,"_language":"Python","_homepage":"https://www.python.org/","_description":"cpython: The Python programming language","_organization":"python","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-02-10T00:00:00.000Z","_age_weeks":314,"_stars_per_week":161.34,"_topics":[],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":2374,"_pop_contributor_logins":["benjaminp","birkenfeld@fzj\u00fclich","freddrake@keepertech","gvanrossum@microsoft","jackjansen@centrumvoorwiskundeeninformatica","loewis","pitrou","rhettinger@mutableminds","serhiy-storchaka@neu.ro","vstinner@redhatofficial"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["centrumvoorwiskundeeninformatica","fzj\u00fclich","keepertech","microsoft","mutableminds","neu.ro","redhatofficial"],"_pop_contributor_orgs_raw":["@RedHatOfficial","@keepertech ","Centrum voor Wiskunde en Informatica","FZ J\u00fclich","Microsoft","Mutable Minds, Inc.","Neu.ro"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":66.17,"_pop_updated_issues_count":3850,"_pop_closed_issues_count":2536,"_pop_created_since_days":73,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":89,"_pop_recent_releases_adjusted_count":89,"_pop_issue_count":3845.0,"_pop_comment_count":8805.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":71.46,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/python/cpython/master/README.rst","_readme_localurl":"python~cpython~README.rst","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":177,"category":"web","githuburl":"https://github.com/psf/requests","featured":null,"links":null,"description":null,"_repopath":"psf/requests","_reponame":"requests","_stars":49080,"_forks":8971,"_watches":1354,"_language":"Python","_homepage":"https://requests.readthedocs.io/en/latest/","_description":"requests: A simple, yet elegant, HTTP library.","_organization":"psf","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2011-02-13T00:00:00.000Z","_age_weeks":627,"_stars_per_week":78.22,"_topics":["python","http","forhumans","requests","python-requests","client","humans","cookies"],"_last_commit_date":"2023-01-21T00:00:00.000Z","_pop_contributor_count":727,"_pop_contributor_logins":["BraulioVM","Lukasa@apple","daftshady@marsauto","dpursehouse","jerem@newlogic","jgorset@schibsted","kennethreitz","nateprewitt@amazonwebservices","sigmavirus24@tableau&salesforce","slingamn"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazonwebservices","apple","marsauto","newlogic","schibsted","tableau&salesforce"],"_pop_contributor_orgs_raw":["@marsauto ","@newlogic","@schibsted","@tableau & @salesforce","Amazon Web Services","Apple"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":91,"_pop_closed_issues_count":62,"_pop_created_since_days":146,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":91.0,"_pop_comment_count":135.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":50.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/psf/requests/master/README.md","_readme_localurl":"psf~requests~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/psf/requests/master/setup.py","https://raw.githubusercontent.com/psf/requests/master/pyproject.toml"],"_requirements_localurls":["psf~requests~setup.py","psf~requests~pyproject.toml"]},{"index":80,"category":"data","githuburl":"https://github.com/scrapy/scrapy","featured":null,"links":null,"description":null,"_repopath":"scrapy/scrapy","_reponame":"scrapy","_stars":46216,"_forks":9865,"_watches":1781,"_language":"Python","_homepage":"https://scrapy.org","_description":"Scrapy, a fast high-level web crawling & scraping framework for Python.","_organization":"scrapy","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2010-02-22T00:00:00.000Z","_age_weeks":678,"_stars_per_week":68.14,"_topics":["python","scraping","crawling","framework","crawler","hacktoberfest","web-scraping","web-scraping-python"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":587,"_pop_contributor_logins":["Gallaecio@scrapinghub","curita@scrapinghub","dangra@superfly","elacuesta","eliasdorneles","kmike@zytedata,scrapinghub","pablohoffman@zytedata(formerlyscrapinghub)","redapple","void","wRAR@zyte"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["scrapinghub","superfly","zyte","zytedata(formerlyscrapinghub)","zytedata,scrapinghub"],"_pop_contributor_orgs_raw":["@superfly ","@zytedata (formerly @scrapinghub)","@zytedata, @ScrapingHub","Scrapinghub","Zyte"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.21,"_pop_updated_issues_count":199,"_pop_closed_issues_count":140,"_pop_created_since_days":158,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":199.0,"_pop_comment_count":368.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":57.09,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/scrapy/scrapy/master/README.rst","_readme_localurl":"scrapy~scrapy~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/scrapy/scrapy/master/setup.py"],"_requirements_localurls":["scrapy~scrapy~setup.py"]},{"index":695,"category":"ml-dl","githuburl":"https://github.com/deepfakes/faceswap","featured":null,"links":null,"description":null,"_repopath":"deepfakes/faceswap","_reponame":"faceswap","_stars":43685,"_forks":12120,"_watches":1501,"_language":"Python","_homepage":"https://www.faceswap.dev","_description":"faceswap: Deepfakes Software For All","_organization":"deepfakes","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-12-19T00:00:00.000Z","_age_weeks":270,"_stars_per_week":161.71,"_topics":["faceswap","face-swap","deep-learning","deeplearning","deep-neural-networks","deepfakes","deepface","deep-face-swap","fakeapp","neural-networks","neural-nets","openfaceswap","myfakeapp","machine-learning"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":95,"_pop_contributor_logins":["Clorr","Ganonmaster@transip","andenixa","bryanlyon@arkavianinc","deepfakes","gdunstone","geewiz94","kilroythethird","kvrooman","torzdf"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["arkavianinc","transip"],"_pop_contributor_orgs_raw":["@transip","Arkavian Inc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.54,"_pop_updated_issues_count":21,"_pop_closed_issues_count":21,"_pop_created_since_days":63,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":21.0,"_pop_comment_count":16.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":39.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/deepfakes/faceswap/master/README.md","_readme_localurl":"deepfakes~faceswap~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/deepfakes/faceswap/master/setup.py"],"_requirements_localurls":["deepfakes~faceswap~setup.py"]},{"index":736,"category":"diffusion","githuburl":"https://github.com/compvis/stable-diffusion","featured":null,"links":null,"description":null,"_repopath":"compvis/stable-diffusion","_reponame":"stable-diffusion","_stars":42441,"_forks":6653,"_watches":406,"_language":"Jupyter Notebook","_homepage":"https://ommer-lab.com/research/latent-diffusion-models/","_description":"stable-diffusion: A latent text-to-image diffusion model","_organization":"compvis","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-08-10T00:00:00.000Z","_age_weeks":28,"_stars_per_week":1515.75,"_topics":[],"_last_commit_date":"2022-11-16T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["LuChengTHU","ablattmann","apolinario","cpacker@ucberkeley","owenvincent","patrickvonplaten","pesser@runwayml","rromb"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["runwayml","ucberkeley"],"_pop_contributor_orgs_raw":["@runwayml ","UC Berkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.33,"_pop_updated_issues_count":201,"_pop_closed_issues_count":38,"_pop_created_since_days":6,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":201.0,"_pop_comment_count":293.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":23.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/compvis/stable-diffusion/master/README.md","_readme_localurl":"compvis~stable-diffusion~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/compvis/stable-diffusion/master/setup.py"],"_requirements_localurls":["compvis~stable-diffusion~setup.py"]},{"index":179,"category":"term","githuburl":"https://github.com/willmcgugan/rich","featured":null,"links":null,"description":null,"_repopath":"willmcgugan/rich","_reponame":"rich","_stars":42127,"_forks":1496,"_watches":541,"_language":"Python","_homepage":"https://rich.readthedocs.io/en/latest/","_description":"Rich is a Python library for rich text and beautiful formatting in the terminal.","_organization":"willmcgugan","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-11-10T00:00:00.000Z","_age_weeks":171,"_stars_per_week":245.74,"_topics":["python","python3","python-library","terminal","terminal-color","markdown","tables","syntax-highlighting","ansi-colors","progress-bar-python","progress-bar","traceback","rich","tracebacks-rich","emoji","tui"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":207,"_pop_contributor_logins":["althonos@embl,zellerlab","amartya-dev@ohurutech","darrenburns","davep@davep.org","dependabot[bot]","evantkchong","hedyhli","olivierphi@lastmileict","toto6038@nationaltaiwannormaluniversity","willmcgugan@textualize"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["davep.org","embl,zellerlab","lastmileict","nationaltaiwannormaluniversity","ohurutech","textualize"],"_pop_contributor_orgs_raw":["@lastmileICT ","EMBL, @zellerlab","National Taiwan Normal University","Ohuru Tech","Textualize","davep.org"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.48,"_pop_updated_issues_count":189,"_pop_closed_issues_count":124,"_pop_created_since_days":40,"_pop_updated_since_days":0,"_pop_recent_releases_count":19,"_pop_recent_releases_estimated_tags":45,"_pop_recent_releases_adjusted_count":19,"_pop_issue_count":189.0,"_pop_comment_count":395.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":54.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/willmcgugan/rich/master/README.md","_readme_localurl":"willmcgugan~rich~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/willmcgugan/rich/master/setup.py","https://raw.githubusercontent.com/willmcgugan/rich/master/pyproject.toml"],"_requirements_localurls":["willmcgugan~rich~setup.py","willmcgugan~rich~pyproject.toml"]},{"index":262,"category":"web","githuburl":"https://github.com/sherlock-project/sherlock","featured":null,"links":null,"description":null,"_repopath":"sherlock-project/sherlock","_reponame":"sherlock","_stars":39212,"_forks":4648,"_watches":978,"_language":"Python","_homepage":"http://sherlock-project.github.io","_description":"sherlock: \ud83d\udd0e Hunt down social media accounts by username across social networks","_organization":"sherlock-project","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-12-24T00:00:00.000Z","_age_weeks":217,"_stars_per_week":180.46,"_topics":["osint","reconnaissance","linux","macos","cli","sherlock","python3","windows","redteam","tools","information-gathering","hacktoberfest","hacktoberfest2022","python"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":215,"_pop_contributor_logins":["Czechball","SethFalco@kodify","TheYahya@paackeng","aristosgi@athensuniversityofbuisnessandeconomics","cclauss@christianclauss","hoadlck","irazasyed@lukonet","ptalmeida","roopeshvs","sdushantha"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["athensuniversityofbuisnessandeconomics","christianclauss","kodify","lukonet","paackeng"],"_pop_contributor_orgs_raw":["@PaackEng","@kodify","@lukonet","Athens University Of Buisness And Economics","Christian Clauss"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.08,"_pop_updated_issues_count":167,"_pop_closed_issues_count":159,"_pop_created_since_days":51,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":167.0,"_pop_comment_count":151.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":45.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sherlock-project/sherlock/master/README.md","_readme_localurl":"sherlock-project~sherlock~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/sherlock-project/sherlock/master/requirements.txt"],"_requirements_localurls":["sherlock-project~sherlock~requirements.txt"]},{"index":432,"category":"study","githuburl":"https://github.com/jakevdp/pythondatasciencehandbook","featured":null,"links":null,"description":null,"_repopath":"jakevdp/pythondatasciencehandbook","_reponame":"PythonDataScienceHandbook","_stars":37544,"_forks":16546,"_watches":1771,"_language":"Jupyter Notebook","_homepage":"http://jakevdp.github.io/PythonDataScienceHandbook","_description":"PythonDataScienceHandbook: Python Data Science Handbook: full text in Jupyter Notebooks","_organization":"jakevdp","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-08-10T00:00:00.000Z","_age_weeks":341,"_stars_per_week":110.1,"_topics":["scikit-learn","numpy","python","jupyter-notebook","matplotlib","pandas"],"_last_commit_date":"2018-11-30T00:00:00.000Z","_pop_contributor_count":17,"_pop_contributor_logins":["aaronvanderlip","choldgraf@ucberkeley","fuglede@kvantify","habi@instituteofanatomy,unversityofbern,switzerland","henrystokeley","jackboot7@credijusto","jakevdp@google","namreg@softswiss","ncclementi@coiled","vfdev-5@quansight"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["coiled","credijusto","google","instituteofanatomy,unversityofbern,switzerland","kvantify","quansight","softswiss","ucberkeley"],"_pop_contributor_orgs_raw":["@Quansight","@coiled","@credijusto ","Google","Institute of Anatomy, Unversity of Bern, Switzerland","Kvantify","SoftSwiss","UC Berkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":10,"_pop_closed_issues_count":2,"_pop_created_since_days":80,"_pop_updated_since_days":51,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":10.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":24.52,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jakevdp/pythondatasciencehandbook/master/README.md","_readme_localurl":"jakevdp~pythondatasciencehandbook~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/jakevdp/pythondatasciencehandbook/master/requirements.txt"],"_requirements_localurls":["jakevdp~pythondatasciencehandbook~requirements.txt"]},{"index":694,"category":"ml-dl","githuburl":"https://github.com/iperov/deepfacelab","featured":null,"links":null,"description":null,"_repopath":"iperov/deepfacelab","_reponame":"DeepFaceLab","_stars":37460,"_forks":8390,"_watches":1056,"_language":"Python","_homepage":"","_description":"DeepFaceLab is the leading software for creating deepfakes.","_organization":"iperov","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-06-04T00:00:00.000Z","_age_weeks":246,"_stars_per_week":152.1,"_topics":["faceswap","face-swap","deep-learning","deeplearning","deep-neural-networks","deepfakes","deepface","deep-face-swap","fakeapp","neural-networks","neural-nets","deepfacelab","creating-deepfakes","arxiv","machine-learning"],"_last_commit_date":"2022-12-31T00:00:00.000Z","_pop_contributor_count":21,"_pop_contributor_logins":["Auroir","ChrisTopherTa54321","IMIYOU","MaksV79","NemirovD","TooMuchFun","andenixa","iperov","lbfs","sergeevii123"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":60,"_pop_closed_issues_count":16,"_pop_created_since_days":57,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":60.0,"_pop_comment_count":67.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":24.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/iperov/deepfacelab/master/README.md","_readme_localurl":"iperov~deepfacelab~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":59,"category":"pandas","githuburl":"https://github.com/pandas-dev/pandas","featured":1.0,"links":null,"description":null,"_repopath":"pandas-dev/pandas","_reponame":"pandas","_stars":36929,"_forks":15788,"_watches":1109,"_language":"Python","_homepage":"https://pandas.pydata.org","_description":"pandas: Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more","_organization":"pandas-dev","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2010-08-24T00:00:00.000Z","_age_weeks":652,"_stars_per_week":56.63,"_topics":["data-analysis","pandas","flexible","alignment","python","data-science"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":3235,"_pop_contributor_logins":["TomAugspurger@microsoft","cpcloud@voltrondata","gfyoung","jbrockmendel","jorisvandenbossche","jreback","mroeschke@rapidsai","phofl@d-finegmbh","simonjayhawkins","wesm@voltrondata"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["d-finegmbh","microsoft","rapidsai","voltrondata"],"_pop_contributor_orgs_raw":["@microsoft","@rapidsai ","@voltrondata","d-fine GmbH"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":48.52,"_pop_updated_issues_count":2484,"_pop_closed_issues_count":1788,"_pop_created_since_days":152,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":2481.0,"_pop_comment_count":5545.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":68.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pandas-dev/pandas/master/README.md","_readme_localurl":"pandas-dev~pandas~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pandas-dev/pandas/master/setup.py","https://raw.githubusercontent.com/pandas-dev/pandas/master/pyproject.toml"],"_requirements_localurls":["pandas-dev~pandas~setup.py","pandas-dev~pandas~pyproject.toml"]},{"index":838,"category":"diffusion","githuburl":"https://github.com/automatic1111/stable-diffusion-webui","featured":null,"links":null,"description":null,"_repopath":"automatic1111/stable-diffusion-webui","_reponame":"stable-diffusion-webui","_stars":36902,"_forks":6920,"_watches":364,"_language":"Python","_homepage":null,"_description":"stable-diffusion-webui: Stable Diffusion web UI","_organization":"automatic1111","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-08-22T00:00:00.000Z","_age_weeks":26,"_stars_per_week":1403.88,"_topics":[],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":352,"_pop_contributor_logins":["36DB","AUTOMATIC1111","C43H66N12O12S2","R-N","brkirch","d8ahazard","dfaker","dtlnor","mezotaken","yfszzx"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":55.06,"_pop_updated_issues_count":2991,"_pop_closed_issues_count":1776,"_pop_created_since_days":6,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":2991.0,"_pop_comment_count":9276.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.1,"_pop_dependents_count":0,"_pop_score":45.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/automatic1111/stable-diffusion-webui/master/README.md","_readme_localurl":"automatic1111~stable-diffusion-webui~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/automatic1111/stable-diffusion-webui/master/requirements.txt"],"_requirements_localurls":["automatic1111~stable-diffusion-webui~requirements.txt"]},{"index":64,"category":"util","githuburl":"https://github.com/psf/black","featured":null,"links":null,"description":null,"_repopath":"psf/black","_reponame":"black","_stars":31408,"_forks":2026,"_watches":229,"_language":"Python","_homepage":"https://black.readthedocs.io/en/stable/","_description":"black: The uncompromising Python code formatter","_organization":"psf","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-03-14T00:00:00.000Z","_age_weeks":258,"_stars_per_week":121.74,"_topics":["python","code","formatter","codeformatter","gofmt","yapf","autopep8","pre-commit-hook","hacktoberfest"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":360,"_pop_contributor_logins":["JelleZijlstra@quora","ambv@psf","cooperlees@clc","dependabot[bot]","felix-hilden","hugovk@nordsoftware","ichard26","isidentical@fal-ai","yilei","zsol@facebook"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["clc","facebook","fal-ai","nordsoftware","psf","quora"],"_pop_contributor_orgs_raw":["@facebook ","@fal-ai","@psf","@quora ","CLC","Nord Software"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.63,"_pop_updated_issues_count":309,"_pop_closed_issues_count":178,"_pop_created_since_days":60,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":309.0,"_pop_comment_count":589.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":54.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/psf/black/master/README.md","_readme_localurl":"psf~black~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/psf/black/master/pyproject.toml"],"_requirements_localurls":["psf~black~pyproject.toml"]},{"index":220,"category":"util","githuburl":"https://github.com/pyenv/pyenv","featured":null,"links":null,"description":null,"_repopath":"pyenv/pyenv","_reponame":"pyenv","_stars":30674,"_forks":2712,"_watches":384,"_language":"Roff","_homepage":"","_description":"pyenv: Simple Python version management","_organization":"pyenv","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-08-31T00:00:00.000Z","_age_weeks":546,"_stars_per_week":56.11,"_topics":["python","shell"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":410,"_pop_contributor_logins":["Samureus@meluria","anton-petrov","blueyed@freelancer,upforhire","cclauss@christianclauss","josh","joshfriend@squareup","mislav","native-api","sstephenson","yyuu@treasuredata"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["christianclauss","freelancer,upforhire","meluria","squareup","treasuredata"],"_pop_contributor_orgs_raw":["@squareup ","Christian Clauss","Freelancer, up for hire","Meluria","Treasure Data Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.0,"_pop_updated_issues_count":137,"_pop_closed_issues_count":124,"_pop_created_since_days":128,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":137.0,"_pop_comment_count":286.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":56.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyenv/pyenv/master/README.md","_readme_localurl":"pyenv~pyenv~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":55,"category":"sim","githuburl":"https://github.com/openai/gym","featured":null,"links":null,"description":null,"_repopath":"openai/gym","_reponame":"gym","_stars":30067,"_forks":8235,"_watches":1013,"_language":"Python","_homepage":"https://www.gymlibrary.dev","_description":"gym: A toolkit for developing and comparing reinforcement learning algorithms.","_organization":"openai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-04-27T00:00:00.000Z","_age_weeks":356,"_stars_per_week":84.46,"_topics":[],"_last_commit_date":"2023-01-30T00:00:00.000Z","_pop_contributor_count":384,"_pop_contributor_logins":["christopherhesse@openai","gdb","jietang","jkterry1","jonasschneider","joschu","pseudo-rnd-thoughts","pzhokhov","tlbtlbtlb@umbrellaresearch","zuoxingdong@navercorp"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["navercorp","openai","umbrellaresearch"],"_pop_contributor_orgs_raw":["NAVER Corp","OpenAI","Umbrella Research"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.52,"_pop_updated_issues_count":47,"_pop_closed_issues_count":27,"_pop_created_since_days":83,"_pop_updated_since_days":1,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":47.0,"_pop_comment_count":150.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.2,"_pop_dependents_count":0,"_pop_score":50.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/gym/master/README.md","_readme_localurl":"openai~gym~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/gym/master/requirements.txt","https://raw.githubusercontent.com/openai/gym/master/setup.py","https://raw.githubusercontent.com/openai/gym/master/pyproject.toml"],"_requirements_localurls":["openai~gym~requirements.txt","openai~gym~setup.py","openai~gym~pyproject.toml"]},{"index":963,"category":"security","githuburl":"https://github.com/certbot/certbot","featured":null,"links":null,"description":null,"_repopath":"certbot/certbot","_reponame":"certbot","_stars":29653,"_forks":3324,"_watches":763,"_language":"Python","_homepage":"","_description":"Certbot is EFF's tool to obtain certs from Let's Encrypt and (optionally) auto-enable HTTPS on your server. It can also act as a client for any other CA that uses the ACME protocol.","_organization":"certbot","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-11-12T00:00:00.000Z","_age_weeks":432,"_stars_per_week":68.64,"_topics":["acme","acme-client","certbot","certificate","letsencrypt","python"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":508,"_pop_contributor_logins":["SwartzCr","adferrand@amadeusitgroupefforgecomundo-eu","alexzorin","bmw@electronicfrontierfoundation","jdkasten@google","joohoi","jsha","kuba","ohemorange","pde@efforg"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amadeusitgroupefforgecomundo-eu","efforg","electronicfrontierfoundation","google"],"_pop_contributor_orgs_raw":["@AmadeusITGroup @EFForg @EcoMundo-EU","@EFForg ","Electronic Frontier Foundation","Google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.75,"_pop_updated_issues_count":181,"_pop_closed_issues_count":120,"_pop_created_since_days":101,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":181.0,"_pop_comment_count":281.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":55.23,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/certbot/certbot/master/README.rst","_readme_localurl":"certbot~certbot~README.rst","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":118,"category":"ml-ops","githuburl":"https://github.com/apache/airflow","featured":null,"links":null,"description":null,"_repopath":"apache/airflow","_reponame":"airflow","_stars":29215,"_forks":11960,"_watches":761,"_language":"Python","_homepage":"https://airflow.apache.org/","_description":"airflow: Apache Airflow - A platform to programmatically author, schedule, and monitor workflows","_organization":"apache","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-04-13T00:00:00.000Z","_age_weeks":410,"_stars_per_week":71.21,"_topics":["airflow","apache","apache-airflow","python","scheduler","workflow","hacktoberfest"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":2732,"_pop_contributor_logins":["ashb@astronomer.io","bolkedebruin","ephraimbuddy@astronomerio","jedcunningham@astronomer","jlowin@prefecthq","kaxil@astronomer","mik-laj@snowflakedb","mistercrunch@preset-io","potiuk@apachesoftwarefoundation","turbaszek@snowflakedb"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["apachesoftwarefoundation","astronomer","astronomer.io","astronomerio","prefecthq","preset-io","snowflakedb"],"_pop_contributor_orgs_raw":["@PrefectHQ ","@Snowflakedb","@astronomer","@astronomer ","Apache Software Foundation","Astronomer.io","Astronomerio","preset-io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":69.88,"_pop_updated_issues_count":2140,"_pop_closed_issues_count":1680,"_pop_created_since_days":96,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":352,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":2141.0,"_pop_comment_count":5002.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":71.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apache/airflow/master/README.md","_readme_localurl":"apache~airflow~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/apache/airflow/master/setup.py","https://raw.githubusercontent.com/apache/airflow/master/pyproject.toml"],"_requirements_localurls":["apache~airflow~setup.py","apache~airflow~pyproject.toml"]},{"index":592,"category":"util","githuburl":"https://github.com/mingrammer/diagrams","featured":null,"links":null,"description":null,"_repopath":"mingrammer/diagrams","_reponame":"diagrams","_stars":27871,"_forks":1711,"_watches":347,"_language":"Python","_homepage":"https://diagrams.mingrammer.com","_description":"diagrams: :art: Diagram as Code for prototyping cloud system architectures","_organization":"mingrammer","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-02-02T00:00:00.000Z","_age_weeks":159,"_stars_per_week":174.82,"_topics":["diagram","diagram-as-code","architecture","graphviz"],"_last_commit_date":"2023-01-13T00:00:00.000Z","_pop_contributor_count":127,"_pop_contributor_logins":["Slach@altinity","bdsoha@kloudkit","dependabot[bot]","gabriel-tessier@luxeys","guyzyl","hagaishapira@torqio","leandrodamascena@aws","mingrammer@daangn","nlamirault@swan","yu-iskw"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["altinity","aws","daangn","kloudkit","luxeys","swan","torqio"],"_pop_contributor_orgs_raw":["@aws","@daangn ","@torqio","Altinity","KloudKIT","Luxeys","Swan"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.25,"_pop_updated_issues_count":91,"_pop_closed_issues_count":40,"_pop_created_since_days":37,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":91.0,"_pop_comment_count":82.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":43.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mingrammer/diagrams/master/README.md","_readme_localurl":"mingrammer~diagrams~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mingrammer/diagrams/master/pyproject.toml"],"_requirements_localurls":["mingrammer~diagrams~pyproject.toml"]},{"index":257,"category":"crypto","githuburl":"https://github.com/ccxt/ccxt","featured":null,"links":null,"description":null,"_repopath":"ccxt/ccxt","_reponame":"ccxt","_stars":27328,"_forks":6698,"_watches":940,"_language":"JavaScript","_homepage":"","_description":"ccxt: A JavaScript / Python / PHP cryptocurrency trading API with support for more than 100 bitcoin/altcoin exchanges","_organization":"ccxt","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-05-14T00:00:00.000Z","_age_weeks":301,"_stars_per_week":90.66,"_topics":["altcoin","api","arbitrage","bitcoin","bot","cryptocurrency","crypto","e-commerce","ethereum","exchange","invest","library","strategy","trading","btc","eth","trade","merchant","market-data"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":723,"_pop_contributor_logins":["Dan-krm","carlosmiei","frosty00@ccxt","kroitor@ccxt","mkutny","ndubel","npomfret","samgermain@ccxt","sc0Vu","ttodua"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ccxt"],"_pop_contributor_orgs_raw":["@ccxt","CCXT"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":202.52,"_pop_updated_issues_count":1460,"_pop_closed_issues_count":1142,"_pop_created_since_days":70,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":89,"_pop_recent_releases_adjusted_count":89,"_pop_issue_count":1460.0,"_pop_comment_count":2188.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":60.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ccxt/ccxt/master/README.md","_readme_localurl":"ccxt~ccxt~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":245,"category":"ml","githuburl":"https://github.com/tencentarc/gfpgan","featured":null,"links":null,"description":null,"_repopath":"tencentarc/gfpgan","_reponame":"GFPGAN","_stars":26636,"_forks":4095,"_watches":393,"_language":"Python","_homepage":"","_description":"GFPGAN aims at developing Practical Algorithms for Real-world Face Restoration.","_organization":"tencentarc","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-03-19T00:00:00.000Z","_age_weeks":100,"_stars_per_week":264.47,"_topics":["pytorch","gan","deep-learning","super-resolution","face-restoration","image-restoration","gfpgan"],"_last_commit_date":"2022-09-16T00:00:00.000Z","_pop_contributor_count":11,"_pop_contributor_logins":["AK391@huggingface","Wscats@tencent","amckenna41","bramton","chenxwh","darbazali@gatewayict","mdanish-kh@xflowresearch","mostafavtp","tuhins","xinntao@tencent"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["gatewayict","huggingface","tencent","xflowresearch"],"_pop_contributor_orgs_raw":["@Tencent ","Gateway ICT","Huggingface","Tencent","xFlow Research Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":43,"_pop_closed_issues_count":10,"_pop_created_since_days":23,"_pop_updated_since_days":5,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":43.0,"_pop_comment_count":56.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":29.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tencentarc/gfpgan/master/README.md","_readme_localurl":"tencentarc~gfpgan~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tencentarc/gfpgan/master/requirements.txt","https://raw.githubusercontent.com/tencentarc/gfpgan/master/setup.py"],"_requirements_localurls":["tencentarc~gfpgan~requirements.txt","tencentarc~gfpgan~setup.py"]},{"index":677,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/detectron","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/detectron","_reponame":"Detectron","_stars":25535,"_forks":5488,"_watches":960,"_language":"Python","_homepage":"","_description":"Detectron: FAIR's research platform for object detection research, implementing popular algorithms like Mask R-CNN and RetinaNet.","_organization":"facebookresearch","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-10-05T00:00:00.000Z","_age_weeks":280,"_stars_per_week":90.92,"_topics":[],"_last_commit_date":"2021-03-27T00:00:00.000Z","_pop_contributor_count":40,"_pop_contributor_logins":["Juggernaut93","KaimingHe@facebook","ashwinb","bddppq","ir413@ucberkeley","newstzpz","rbgirshick@ucberkeley","seanbell@grokstyle","shenyunhang","smessmer"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook","grokstyle","ucberkeley"],"_pop_contributor_orgs_raw":["Facebook","GrokStyle Inc.","UC Berkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":12,"_pop_closed_issues_count":1,"_pop_created_since_days":66,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":12.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":30.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/detectron/master/README.md","_readme_localurl":"facebookresearch~detectron~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/detectron/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/detectron/master/setup.py"],"_requirements_localurls":["facebookresearch~detectron~requirements.txt","facebookresearch~detectron~setup.py"]},{"index":17,"category":"nlp","githuburl":"https://github.com/explosion/spacy","featured":null,"links":null,"description":null,"_repopath":"explosion/spacy","_reponame":"spaCy","_stars":25292,"_forks":4027,"_watches":547,"_language":"Python","_homepage":"https://spacy.io","_description":"spaCy: \ud83d\udcab Industrial-strength Natural Language Processing (NLP) in Python","_organization":"explosion","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-07-03T00:00:00.000Z","_age_weeks":450,"_stars_per_week":56.1,"_topics":["natural-language-processing","data-science","machine-learning","python","cython","nlp","artificial-intelligence","ai","spacy","nlp-library","neural-network","neural-networks","deep-learning","named-entity-recognition","entity-linking","text-classification","tokenization"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":715,"_pop_contributor_logins":["adrianeboyd","geovedi","github-actions[bot]","henningpeters","honnibal@founderexplosion","ines@founderexplosion","jimregan","polm@cotonoha","svlandeg@explosion&oxykodit","syllog1sm@founderexplosion"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cotonoha","explosion&oxykodit","founderexplosion"],"_pop_contributor_orgs_raw":["Cotonoha","Explosion & OxyKodit","Founder @explosion","Founder @explosion "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.62,"_pop_updated_issues_count":351,"_pop_closed_issues_count":304,"_pop_created_since_days":105,"_pop_updated_since_days":0,"_pop_recent_releases_count":19,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":19,"_pop_issue_count":351.0,"_pop_comment_count":579.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":57.66,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/spacy/master/README.md","_readme_localurl":"explosion~spacy~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/explosion/spacy/master/requirements.txt","https://raw.githubusercontent.com/explosion/spacy/master/setup.py","https://raw.githubusercontent.com/explosion/spacy/master/pyproject.toml"],"_requirements_localurls":["explosion~spacy~requirements.txt","explosion~spacy~setup.py","explosion~spacy~pyproject.toml"]},{"index":917,"category":"ml-ops","githuburl":"https://github.com/ray-project/ray","featured":null,"links":null,"description":null,"_repopath":"ray-project/ray","_reponame":"ray","_stars":24206,"_forks":4209,"_watches":441,"_language":"Python","_homepage":"https://ray.io","_description":"Ray is a unified framework for scaling AI and Python applications. Ray consists of a core distributed runtime and a toolkit of libraries (Ray AIR) for accelerating ML workloads.","_organization":"ray-project","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-10-25T00:00:00.000Z","_age_weeks":330,"_stars_per_week":73.32,"_topics":["ray","distributed","parallel","machine-learning","reinforcement-learning","deep-learning","python","rllib","hyperparameter-search","optimization","data-science","automl","hyperparameter-optimization","model-selection","java","serving","deployment","pytorch","tensorflow"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":818,"_pop_contributor_logins":["edoakes@universityofcalifornia,berkeley","ericl@anyscale","krfricke","pcmoritz@anyscale","richardliaw@anyscale","rkooo567@anyscale,softwareengineer","robertnishihara@anyscale","simon-mo","stephanie-wang","sven1977@anyscale.com"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anyscale","anyscale,softwareengineer","anyscale.com","universityofcalifornia,berkeley"],"_pop_contributor_orgs_raw":["@anyscale","Anyscale","Anyscale, Software Engineer","University of California, Berkeley","anyscale.com"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":86.58,"_pop_updated_issues_count":3479,"_pop_closed_issues_count":2185,"_pop_created_since_days":77,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":3481.0,"_pop_comment_count":5325.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":63.67,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/ray-project/ray/master/README.rst","_readme_localurl":"ray-project~ray~README.rst","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":501,"category":"ml","githuburl":"https://github.com/ageron/handson-ml2","featured":null,"links":null,"description":null,"_repopath":"ageron/handson-ml2","_reponame":"handson-ml2","_stars":24146,"_forks":11653,"_watches":631,"_language":"Jupyter Notebook","_homepage":null,"_description":"handson-ml2: A series of Jupyter notebooks that walk you through the fundamentals of Machine Learning and Deep Learning in Python using Scikit-Learn, Keras and TensorFlow 2.","_organization":"ageron","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-01-08T00:00:00.000Z","_age_weeks":215,"_stars_per_week":112.23,"_topics":[],"_last_commit_date":"2023-02-04T00:00:00.000Z","_pop_contributor_count":75,"_pop_contributor_logins":["ChrisQlasty","ageron","alexdombos","gsundeep-tech","ibeauregard","mbreemhaar@verifai","nbgraham","pizzaz93","rickiepark","ziembla"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["verifai"],"_pop_contributor_orgs_raw":["Verifai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":10,"_pop_closed_issues_count":5,"_pop_created_since_days":50,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":11.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":29.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ageron/handson-ml2/master/README.md","_readme_localurl":"ageron~handson-ml2~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/ageron/handson-ml2/master/requirements.txt"],"_requirements_localurls":["ageron~handson-ml2~requirements.txt"]},{"index":163,"category":"term","githuburl":"https://github.com/tqdm/tqdm","featured":1.0,"links":null,"description":null,"_repopath":"tqdm/tqdm","_reponame":"tqdm","_stars":24051,"_forks":1222,"_watches":208,"_language":"Python","_homepage":"https://tqdm.github.io","_description":"tqdm: A Fast, Extensible Progress Bar for Python and CLI","_organization":"tqdm","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-06-03T00:00:00.000Z","_age_weeks":403,"_stars_per_week":59.68,"_topics":["progressbar","progressmeter","progress-bar","meter","rate","console","terminal","time","progress","gui","python","parallel","cli","utilities","jupyter","discord","telegram","pandas","keras","closember"],"_last_commit_date":"2022-09-03T00:00:00.000Z","_pop_contributor_count":112,"_pop_contributor_logins":["altendky","casperdcl","hadim@valence","kmike@zytedata,scrapinghub","lrq3000@giga-consciousness-comasciencegroup-university&hospitalofli\u00e8ge","mbargull","nishnash54@flockfreight","noamraph","obiwanus","richardsheridan"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["flockfreight","giga-consciousness-comasciencegroup-university&hospitalofli\u00e8ge","valence","zytedata,scrapinghub"],"_pop_contributor_orgs_raw":["@zytedata, @ScrapingHub","Flock Freight","GIGA-Consciousness - Coma Science Group - University & Hospital of Li\u00e8ge","Valence"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":56,"_pop_closed_issues_count":9,"_pop_created_since_days":94,"_pop_updated_since_days":6,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":20,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":55.0,"_pop_comment_count":41.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":37.85,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/tqdm/tqdm/master/README.rst","_readme_localurl":"tqdm~tqdm~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tqdm/tqdm/master/setup.py","https://raw.githubusercontent.com/tqdm/tqdm/master/pyproject.toml"],"_requirements_localurls":["tqdm~tqdm~setup.py","tqdm~tqdm~pyproject.toml"]},{"index":26,"category":"term","githuburl":"https://github.com/google/python-fire","featured":null,"links":null,"description":null,"_repopath":"google/python-fire","_reponame":"python-fire","_stars":23949,"_forks":1364,"_watches":383,"_language":"Python","_homepage":"","_description":"python-fire: Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object.","_organization":"google","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-02-21T00:00:00.000Z","_age_weeks":313,"_stars_per_week":76.48,"_topics":["python","cli"],"_last_commit_date":"2023-02-13T00:00:00.000Z","_pop_contributor_count":59,"_pop_contributor_logins":["MichaelCG8","dbieber@googlebrain","hugovk@nordsoftware","jacobaustin123@google","jaredtrog","jgarst","joejoevictor@google","jtratner","rchen152","saurabhkpatel@syracuseuniversity"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","googlebrain","nordsoftware","syracuseuniversity"],"_pop_contributor_orgs_raw":["Google","Google Brain","Nord Software","Syracuse University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":54,"_pop_closed_issues_count":35,"_pop_created_since_days":73,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":54.0,"_pop_comment_count":77.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":40.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/python-fire/master/README.md","_readme_localurl":"google~python-fire~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/python-fire/master/requirements.txt","https://raw.githubusercontent.com/google/python-fire/master/setup.py"],"_requirements_localurls":["google~python-fire~requirements.txt","google~python-fire~setup.py"]},{"index":103,"category":"ml","githuburl":"https://github.com/dmlc/xgboost","featured":null,"links":null,"description":null,"_repopath":"dmlc/xgboost","_reponame":"xgboost","_stars":23781,"_forks":8545,"_watches":926,"_language":"C++","_homepage":"https://xgboost.ai/","_description":"xgboost: Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library, for Python, R, Java, Scala, C++ and more. Runs on single machine, Hadoop, Spark, Dask, Flink and DataFlow","_organization":"dmlc","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-02-06T00:00:00.000Z","_age_weeks":471,"_stars_per_week":50.4,"_topics":["gbdt","gbrt","gbm","distributed-systems","xgboost","machine-learning"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":593,"_pop_contributor_logins":["CodingCat@safegraph","RAMitchell@nvidia","hcho3@nvidia","hetong007@amazonai","khotilov@cerner","pommedeterresautee@els-rdlefebvresarrut","rongou@nvidia","terrytangyuan@akuity","tqchen@cmu,octoml","trivialfis@nvidia"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["akuity","amazonai","cerner","cmu,octoml","els-rdlefebvresarrut","nvidia","safegraph"],"_pop_contributor_orgs_raw":["@ELS-RD Lefebvre Sarrut","@NVIDIA","@akuity","Amazon AI","CMU, OctoML","Cerner","NVIDIA","Nvidia","SafeGraph"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.02,"_pop_updated_issues_count":418,"_pop_closed_issues_count":345,"_pop_created_since_days":110,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":418.0,"_pop_comment_count":626.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":59.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dmlc/xgboost/master/README.md","_readme_localurl":"dmlc~xgboost~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":646,"category":"util","githuburl":"https://github.com/python-poetry/poetry","featured":null,"links":null,"description":null,"_repopath":"python-poetry/poetry","_reponame":"poetry","_stars":23738,"_forks":1906,"_watches":184,"_language":"Python","_homepage":"https://python-poetry.org","_description":"poetry: Python packaging and dependency management made easy","_organization":"python-poetry","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-02-28T00:00:00.000Z","_age_weeks":260,"_stars_per_week":91.3,"_topics":["python","dependency-manager","package-manager","packaging","poetry"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":436,"_pop_contributor_logins":["Secrus","abn","branchvincent","dimbleby","finswimmer","mkniewallner@backmarket","neersighted@mirantis","pre-commit-ci[bot]","radoering","sdispater"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["backmarket","mirantis"],"_pop_contributor_orgs_raw":["@BackMarket ","@Mirantis"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.42,"_pop_updated_issues_count":658,"_pop_closed_issues_count":443,"_pop_created_since_days":61,"_pop_updated_since_days":1,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":659.0,"_pop_comment_count":1725.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":0,"_pop_score":53.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python-poetry/poetry/master/README.md","_readme_localurl":"python-poetry~poetry~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-poetry/poetry/master/pyproject.toml"],"_requirements_localurls":["python-poetry~poetry~pyproject.toml"]},{"index":678,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/detectron2","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/detectron2","_reponame":"detectron2","_stars":23636,"_forks":6452,"_watches":365,"_language":"Python","_homepage":"https://detectron2.readthedocs.io/en/latest/","_description":"Detectron2 is a platform for object detection, segmentation and other visual recognition tasks.","_organization":"facebookresearch","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-09-05T00:00:00.000Z","_age_weeks":180,"_stars_per_week":130.69,"_topics":[],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":234,"_pop_contributor_logins":["MarcSzafraniec","alexander-kirillov@facebookairesearch","bowenc0221","chenbohua3","lyttonhao","patricklabatut@facebook","ppwwyyxx","vkhalidov","wat3rBro","wenliangzhao2018"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook","facebookairesearch"],"_pop_contributor_orgs_raw":["Facebook","Facebook AI Research"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.75,"_pop_updated_issues_count":203,"_pop_closed_issues_count":153,"_pop_created_since_days":42,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":203.0,"_pop_comment_count":278.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":44.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/detectron2/master/README.md","_readme_localurl":"facebookresearch~detectron2~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/detectron2/master/setup.py"],"_requirements_localurls":["facebookresearch~detectron2~setup.py"]},{"index":289,"category":"ml-dl","githuburl":"https://github.com/rwightman/pytorch-image-models","featured":null,"links":null,"description":null,"_repopath":"rwightman/pytorch-image-models","_reponame":"pytorch-image-models","_stars":23631,"_forks":3909,"_watches":299,"_language":"Python","_homepage":"https://huggingface.co/docs/timm","_description":"pytorch-image-models: PyTorch image models, scripts, pretrained weights -- ResNet, ResNeXT, EfficientNet, EfficientNetV2, NFNet, Vision Transformer, MixNet, MobileNet-V3/V2, RegNet, DPN, CSPNet, and more","_organization":"rwightman","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-02-02T00:00:00.000Z","_age_weeks":211,"_stars_per_week":111.69,"_topics":["pytorch","imagenet-classifier","resnet","dual-path-networks","cnn-classification","pretrained-models","pretrained-weights","distributed-training","mobile-deep-learning","mobilenet-v2","mnasnet","mobilenetv3","efficientnet","augmix","randaugment","mixnet","efficientnet-training","vision-transformer-models","nfnets","normalization-free-training"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":93,"_pop_contributor_logins":["ChristophReich1996@technicaluniversityofdarmstadt","VRandme@independent","alexander-soare","amaarora@weights&biases","fffffgggg54","kaczmarj@stonybrookmedicine","michalwols","mrT23","nateraw@huggingface","rwightman"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["huggingface","independent","stonybrookmedicine","technicaluniversityofdarmstadt","weights&biases"],"_pop_contributor_orgs_raw":["@huggingface","Stony Brook Medicine","Technical University of Darmstadt","Weights & Biases","independent"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.12,"_pop_updated_issues_count":105,"_pop_closed_issues_count":78,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":105.0,"_pop_comment_count":180.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":49.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rwightman/pytorch-image-models/master/README.md","_readme_localurl":"rwightman~pytorch-image-models~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rwightman/pytorch-image-models/master/requirements.txt","https://raw.githubusercontent.com/rwightman/pytorch-image-models/master/setup.py"],"_requirements_localurls":["rwightman~pytorch-image-models~requirements.txt","rwightman~pytorch-image-models~setup.py"]},{"index":550,"category":"ml","githuburl":"https://github.com/open-mmlab/mmdetection","featured":null,"links":null,"description":null,"_repopath":"open-mmlab/mmdetection","_reponame":"mmdetection","_stars":23042,"_forks":8362,"_watches":361,"_language":"Python","_homepage":"https://mmdetection.readthedocs.io","_description":"mmdetection: OpenMMLab Detection Toolbox and Benchmark","_organization":"open-mmlab","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-08-22T00:00:00.000Z","_age_weeks":235,"_stars_per_week":98.05,"_topics":["object-detection","instance-segmentation","fast-rcnn","faster-rcnn","mask-rcnn","cascade-rcnn","ssd","retinanet","pytorch","panoptic-segmentation","rtmdet","semisupervised-learning","swin-transformer","transformer","vision-transformer","yolo","convnext","detr"],"_last_commit_date":"2023-02-01T00:00:00.000Z","_pop_contributor_count":390,"_pop_contributor_logins":["AronLin@open-mmlab","BIGWangYuDong","OceanPang@shanghaiailaboratory","RangiLyu@shanghaiartificialintelligencelaboratory","ZwwWayne@mmlab,ntu","hellock@open-mmlab","hhaAndroid@nuaa","jshilong@shanghaiailab","xvjiarui@ucsd","yhcao6@cuhk,mmlab"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cuhk,mmlab","mmlab,ntu","nuaa","open-mmlab","shanghaiailab","shanghaiailaboratory","shanghaiartificialintelligencelaboratory","ucsd"],"_pop_contributor_orgs_raw":["@open-mmlab","@open-mmlab ","CUHK, MMLab","MMLab, NTU","Shanghai AI Lab","Shanghai AI Laboratory","Shanghai Artificial Intelligence Laboratory","UCSD","nuaa"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.38,"_pop_updated_issues_count":639,"_pop_closed_issues_count":463,"_pop_created_since_days":55,"_pop_updated_since_days":1,"_pop_recent_releases_count":18,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":639.0,"_pop_comment_count":830.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":55.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-mmlab/mmdetection/master/README.md","_readme_localurl":"open-mmlab~mmdetection~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/open-mmlab/mmdetection/master/requirements.txt","https://raw.githubusercontent.com/open-mmlab/mmdetection/master/setup.py"],"_requirements_localurls":["open-mmlab~mmdetection~requirements.txt","open-mmlab~mmdetection~setup.py"]},{"index":86,"category":"viz","githuburl":"https://github.com/streamlit/streamlit","featured":null,"links":null,"description":null,"_repopath":"streamlit/streamlit","_reponame":"streamlit","_stars":22762,"_forks":2028,"_watches":284,"_language":"Python","_homepage":"https://streamlit.io","_description":"Streamlit \u2014 The fastest way to build data apps in Python","_organization":"streamlit","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-08-24T00:00:00.000Z","_age_weeks":182,"_stars_per_week":124.67,"_topics":["python","machine-learning","data-science","deep-learning","data-visualization","streamlit","data-analysis","developer-tools"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":166,"_pop_contributor_logins":["AnOctopus@streamlit","aaj-st","jrhone","kantuni","karriebear","kmcgrady","tconkling@independent","treuille@streamlit","tvst@streamlit","vdonato@streamlit"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["independent","streamlit"],"_pop_contributor_orgs_raw":["@streamlit","@streamlit ","Streamlit","independent"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.81,"_pop_updated_issues_count":649,"_pop_closed_issues_count":412,"_pop_created_since_days":43,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":341,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":650.0,"_pop_comment_count":923.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":51.23,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/streamlit/streamlit/master/README.md","_readme_localurl":"streamlit~streamlit~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":54,"category":"math","githuburl":"https://github.com/numpy/numpy","featured":1.0,"links":null,"description":null,"_repopath":"numpy/numpy","_reponame":"numpy","_stars":22742,"_forks":7766,"_watches":573,"_language":"Python","_homepage":"https://numpy.org","_description":"numpy: The fundamental package for scientific computing with Python.","_organization":"numpy","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2010-09-13T00:00:00.000Z","_age_weeks":649,"_stars_per_week":35.03,"_topics":["numpy","python"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":1584,"_pop_contributor_logins":["BvB93@vuamsterdam","charris@retired","cournape@mercarijp","eric-wieser@universityofcambridge","mattip@quansightlabs","pearu@quansight","pv","rgommers@quansight","seberg","teoliphant@quansight,openteams"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["mercarijp","quansight","quansight,openteams","quansightlabs","retired","universityofcambridge","vuamsterdam"],"_pop_contributor_orgs_raw":["Mercari JP","Quansight","Quansight Labs","Quansight, OpenTeams","Retired","University of Cambridge","VU Amsterdam"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":30.06,"_pop_updated_issues_count":1008,"_pop_closed_issues_count":759,"_pop_created_since_days":151,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":1008.0,"_pop_comment_count":2800.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":0,"_pop_score":68.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/numpy/numpy/master/README.md","_readme_localurl":"numpy~numpy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/numpy/numpy/master/setup.py","https://raw.githubusercontent.com/numpy/numpy/master/pyproject.toml"],"_requirements_localurls":["numpy~numpy~setup.py","numpy~numpy~pyproject.toml"]},{"index":689,"category":"ml-dl","githuburl":"https://github.com/matterport/mask_rcnn","featured":null,"links":null,"description":null,"_repopath":"matterport/mask_rcnn","_reponame":"Mask_RCNN","_stars":22685,"_forks":11254,"_watches":596,"_language":"Python","_homepage":null,"_description":"Mask_RCNN: Mask R-CNN for object detection and instance segmentation on Keras and TensorFlow","_organization":"matterport","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-10-19T00:00:00.000Z","_age_weeks":278,"_stars_per_week":81.35,"_topics":["mask-rcnn","tensorflow","object-detection","instance-segmentation","keras"],"_last_commit_date":"2019-03-31T00:00:00.000Z","_pop_contributor_count":47,"_pop_contributor_logins":["Borda@grid.ai|pytorchlightning","Cpruce","JNingWei@alibaba","akTwelve","gakarak@uiipnasb","keineahnung2345","maxfrei750@universityofduisburg-essen","philferriere@freelance","ps48@aws,opensearch-project","waleedka@apple"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["alibaba","apple","aws,opensearch-project","freelance","grid.ai|pytorchlightning","uiipnasb","universityofduisburg-essen"],"_pop_contributor_orgs_raw":["@aws, @opensearch-project ","Alibaba","Apple","Freelance","Grid.ai | PytorchLightning","UIIP NASB","University of Duisburg-Essen"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":69,"_pop_closed_issues_count":15,"_pop_created_since_days":65,"_pop_updated_since_days":48,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":69.0,"_pop_comment_count":82.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":31.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/matterport/mask_rcnn/master/README.md","_readme_localurl":"matterport~mask_rcnn~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/matterport/mask_rcnn/master/requirements.txt","https://raw.githubusercontent.com/matterport/mask_rcnn/master/setup.py"],"_requirements_localurls":["matterport~mask_rcnn~requirements.txt","matterport~mask_rcnn~setup.py"]},{"index":649,"category":"util","githuburl":"https://github.com/keon/algorithms","featured":null,"links":null,"description":null,"_repopath":"keon/algorithms","_reponame":"algorithms","_stars":22182,"_forks":4436,"_watches":641,"_language":"Python","_homepage":"","_description":"algorithms: Minimal examples of data structures and algorithms in Python","_organization":"keon","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-11-17T00:00:00.000Z","_age_weeks":326,"_stars_per_week":67.86,"_topics":["algorithm","python","competitive-programming","data-structure","algorithms","sort","search","tree","graph"],"_last_commit_date":"2022-11-12T00:00:00.000Z","_pop_contributor_count":193,"_pop_contributor_logins":["SaadBenn","ankit167@gojek","christianbender","geon0325@kaist","goswami-rahul@google","keon","nickolaswiebe","ofek@datadog","quang2705","yunshuipiao"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["datadog","gojek","google","kaist"],"_pop_contributor_orgs_raw":["@datadog","GoJek","Google","KAIST"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.25,"_pop_updated_issues_count":14,"_pop_closed_issues_count":7,"_pop_created_since_days":76,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":14.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.1,"_pop_dependents_count":0,"_pop_score":33.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/keon/algorithms/master/README.md","_readme_localurl":"keon~algorithms~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/keon/algorithms/master/setup.py"],"_requirements_localurls":["keon~algorithms~setup.py"]},{"index":183,"category":"ml","githuburl":"https://github.com/google/jax","featured":null,"links":null,"description":null,"_repopath":"google/jax","_reponame":"jax","_stars":21986,"_forks":2065,"_watches":309,"_language":"Python","_homepage":"http://jax.readthedocs.io/","_description":"jax: Composable transformations of Python+NumPy programs: differentiate, vectorize, JIT to GPU/TPU, and more","_organization":"google","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-10-25T00:00:00.000Z","_age_weeks":225,"_stars_per_week":97.34,"_topics":["jax"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":507,"_pop_contributor_logins":["apaszke@google","froystig@googleresearch,brainteam","gnecula@google","hawkinsp@google","jakevdp@google","mattjj@google","sharadmv@google","shoyer@google","skye","yashk2810@google"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","googleresearch,brainteam"],"_pop_contributor_orgs_raw":["@Google","@google","@google ","Google","google research, brain team"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":53.63,"_pop_updated_issues_count":1211,"_pop_closed_issues_count":918,"_pop_created_since_days":53,"_pop_updated_since_days":0,"_pop_recent_releases_count":39,"_pop_recent_releases_estimated_tags":38,"_pop_recent_releases_adjusted_count":39,"_pop_issue_count":1214.0,"_pop_comment_count":1238.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":57.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/jax/master/README.md","_readme_localurl":"google~jax~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/jax/master/setup.py"],"_requirements_localurls":["google~jax~setup.py"]},{"index":252,"category":"ml-dl","githuburl":"https://github.com/pytorchlightning/pytorch-lightning","featured":1.0,"links":null,"description":null,"_repopath":"pytorchlightning/pytorch-lightning","_reponame":"lightning","_stars":21623,"_forks":2751,"_watches":229,"_language":"Python","_homepage":"https://lightning.ai","_description":"lightning: Deep learning framework to train, deploy, and ship AI products Lightning fast.","_organization":"pytorchlightning","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-03-31T00:00:00.000Z","_age_weeks":203,"_stars_per_week":106.29,"_topics":["python","deep-learning","artificial-intelligence","ai","pytorch","data-science","machine-learning"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":831,"_pop_contributor_logins":["Borda@grid.ai|pytorchlightning","akihironitta@lightning-ai","ananthsub","awaelchli@lightningai","carmocca@lightning-ai","dependabot[bot]","kaushikb11@lightning-ai","rohitgr7@current:opentowork|previouslylightning-ai,episource","tchaton@lightning.ai|pytorchlightning","williamFalcon@lightningai"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["current:opentowork|previouslylightning-ai,episource","grid.ai|pytorchlightning","lightning-ai","lightning.ai|pytorchlightning","lightningai"],"_pop_contributor_orgs_raw":["@Lightning-AI","@Lightning-AI ","Current: Open to work | Previously @Lightning-AI, @EpisourceLLC","Grid.ai | PytorchLightning","Lightning AI","Lightning.ai | Pytorch Lightning"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":43.12,"_pop_updated_issues_count":1283,"_pop_closed_issues_count":995,"_pop_created_since_days":47,"_pop_updated_since_days":0,"_pop_recent_releases_count":42,"_pop_recent_releases_estimated_tags":46,"_pop_recent_releases_adjusted_count":42,"_pop_issue_count":1284.0,"_pop_comment_count":2015.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":62.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorchlightning/pytorch-lightning/master/README.md","_readme_localurl":"pytorchlightning~pytorch-lightning~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorchlightning/pytorch-lightning/master/requirements.txt","https://raw.githubusercontent.com/pytorchlightning/pytorch-lightning/master/setup.py","https://raw.githubusercontent.com/pytorchlightning/pytorch-lightning/master/pyproject.toml"],"_requirements_localurls":["pytorchlightning~pytorch-lightning~requirements.txt","pytorchlightning~pytorch-lightning~setup.py","pytorchlightning~pytorch-lightning~pyproject.toml"]},{"index":952,"category":"ml","githuburl":"https://github.com/lutzroeder/netron","featured":null,"links":null,"description":null,"_repopath":"lutzroeder/netron","_reponame":"netron","_stars":21366,"_forks":2399,"_watches":274,"_language":"JavaScript","_homepage":"https://netron.app","_description":"netron: Visualizer for neural network, deep learning, and machine learning models","_organization":"lutzroeder","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2010-12-26T00:00:00.000Z","_age_weeks":634,"_stars_per_week":33.68,"_topics":["neural-network","deep-learning","machine-learning","deeplearning","machinelearning","ai","ml","visualizer","onnx","keras","tensorflow","tensorflow-lite","coreml","caffe","caffe2","mxnet","pytorch","torch","paddle","darknet"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["lutzroeder@microsoft"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["microsoft"],"_pop_contributor_orgs_raw":["@microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":23.1,"_pop_updated_issues_count":90,"_pop_closed_issues_count":78,"_pop_created_since_days":148,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":90.0,"_pop_comment_count":88.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":34.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lutzroeder/netron/master/README.md","_readme_localurl":"lutzroeder~netron~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":90,"category":"web","githuburl":"https://github.com/tornadoweb/tornado","featured":1.0,"links":null,"description":null,"_repopath":"tornadoweb/tornado","_reponame":"tornado","_stars":20978,"_forks":5489,"_watches":1004,"_language":"Python","_homepage":"http://www.tornadoweb.org/","_description":"Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.","_organization":"tornadoweb","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2009-09-09T00:00:00.000Z","_age_weeks":702,"_stars_per_week":29.88,"_topics":["python","asynchronous"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":435,"_pop_contributor_logins":["ajdavis@mongodb","alekstorm@flexport","bdarnell","finiteloop","minrk@simularesearchlaboratory","mivade@ascendanalytics","pitrou","ploxiln@healthbyro","takluyver","wolever@sheertex"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ascendanalytics","flexport","healthbyro","mongodb","sheertex","simularesearchlaboratory"],"_pop_contributor_orgs_raw":["@HealthByRo ","@mongodb ","Ascend Analytics","Flexport, Inc.","Sheertex","Simula Research Laboratory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.79,"_pop_updated_issues_count":60,"_pop_closed_issues_count":41,"_pop_created_since_days":164,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":60.0,"_pop_comment_count":96.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":52.52,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/tornadoweb/tornado/master/README.rst","_readme_localurl":"tornadoweb~tornado~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tornadoweb/tornado/master/requirements.txt","https://raw.githubusercontent.com/tornadoweb/tornado/master/setup.py","https://raw.githubusercontent.com/tornadoweb/tornado/master/pyproject.toml"],"_requirements_localurls":["tornadoweb~tornado~requirements.txt","tornadoweb~tornado~setup.py","tornadoweb~tornado~pyproject.toml"]},{"index":8,"category":"perf","githuburl":"https://github.com/celery/celery","featured":null,"links":null,"description":null,"_repopath":"celery/celery","_reponame":"celery","_stars":20971,"_forks":4434,"_watches":475,"_language":"Python","_homepage":"https://docs.celeryq.dev","_description":"celery: Distributed Task Queue (development branch)","_organization":"celery","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2009-04-24T00:00:00.000Z","_age_weeks":721,"_stars_per_week":29.06,"_topics":["python","task-manager","task-scheduler","task-runner","queue-workers","queued-jobs","queue-tasks","amqp","redis","sqs","sqs-queue","python3","python-library","redis-queue"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":1263,"_pop_contributor_logins":["Nusnus@katz-consulting-group,celery","ask@robinhoodmarkets","auvipy@celerypsfapacheencode","ionelmc","maybe-sybr","mher","nvie@liveblocks","piotrmaslanka@smok.co","pre-commit-ci[bot]","thedrow"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["celerypsfapacheencode","katz-consulting-group,celery","liveblocks","robinhoodmarkets","smok.co"],"_pop_contributor_orgs_raw":["@Celery @PSF @apache @encode","@Katz-Consulting-Group, @celery","@liveblocks","@robinhoodmarkets ","smok.co"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.21,"_pop_updated_issues_count":385,"_pop_closed_issues_count":122,"_pop_created_since_days":168,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":385.0,"_pop_comment_count":465.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":57.89,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/celery/celery/master/README.rst","_readme_localurl":"celery~celery~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/celery/celery/master/setup.py","https://raw.githubusercontent.com/celery/celery/master/pyproject.toml"],"_requirements_localurls":["celery~celery~setup.py","celery~celery~pyproject.toml"]},{"index":75,"category":"nlp","githuburl":"https://github.com/pytorch/fairseq","featured":null,"links":null,"description":null,"_repopath":"pytorch/fairseq","_reponame":"fairseq","_stars":20949,"_forks":5235,"_watches":356,"_language":"Python","_homepage":null,"_description":"fairseq: Facebook AI Research Sequence-to-Sequence Toolkit written in Python.","_organization":"pytorch","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-08-29T00:00:00.000Z","_age_weeks":286,"_stars_per_week":73.21,"_topics":["python","pytorch","artificial-intelligence"],"_last_commit_date":"2023-02-09T00:00:00.000Z","_pop_contributor_count":413,"_pop_contributor_logins":["alexeib@characterai","cndn@facebook","dianaml0","edunov@facebookairesearch","kahne@facebookresearch","myleott","sravyapopuri388","sshleifer@facebookresearch","tangyuq@alexaai","theweiho"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["alexaai","characterai","facebook","facebookairesearch","facebookresearch"],"_pop_contributor_orgs_raw":["@facebook","@facebookresearch","Alexa AI","Character AI","Facebook AI Research"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.96,"_pop_updated_issues_count":204,"_pop_closed_issues_count":81,"_pop_created_since_days":67,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":204.0,"_pop_comment_count":188.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":50.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/fairseq/master/README.md","_readme_localurl":"pytorch~fairseq~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/fairseq/master/setup.py","https://raw.githubusercontent.com/pytorch/fairseq/master/pyproject.toml"],"_requirements_localurls":["pytorch~fairseq~setup.py","pytorch~fairseq~pyproject.toml"]},{"index":255,"category":"crypto","githuburl":"https://github.com/freqtrade/freqtrade","featured":null,"links":null,"description":null,"_repopath":"freqtrade/freqtrade","_reponame":"freqtrade","_stars":20799,"_forks":4462,"_watches":595,"_language":"Python","_homepage":"https://www.freqtrade.io","_description":"freqtrade: Free, open source crypto trading bot","_organization":"freqtrade","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-05-17T00:00:00.000Z","_age_weeks":301,"_stars_per_week":69.1,"_topics":["python","cryptocurrencies","trading-bot","telegram-bot","bitcoin","trade","cryptocurrency","algorithmic-trading","freqtrade"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":290,"_pop_contributor_logins":["dependabot-preview[bot]","dependabot[bot]","hroff-1902@freqtradecoredev;frizzleapps/whatsitwhatsit","mishaker","pyup-bot@pyupio","robcaulk@emergentmethods","samgermain@ccxt","shusso","vertti@polarsquad","xmatthias"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ccxt","emergentmethods","freqtradecoredev;frizzleapps/whatsitwhatsit","polarsquad","pyupio"],"_pop_contributor_orgs_raw":["@pyupio","CCXT","Emergent Methods","Freqtrade core dev; FrizzleApps/Whatsitwhatsit","Polar Squad"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":62.81,"_pop_updated_issues_count":468,"_pop_closed_issues_count":438,"_pop_created_since_days":70,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":469.0,"_pop_comment_count":1281.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":0,"_pop_score":61.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/freqtrade/freqtrade/master/README.md","_readme_localurl":"freqtrade~freqtrade~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/freqtrade/freqtrade/master/requirements.txt","https://raw.githubusercontent.com/freqtrade/freqtrade/master/setup.py","https://raw.githubusercontent.com/freqtrade/freqtrade/master/pyproject.toml"],"_requirements_localurls":["freqtrade~freqtrade~requirements.txt","freqtrade~freqtrade~setup.py","freqtrade~freqtrade~pyproject.toml"]},{"index":45,"category":"testing","githuburl":"https://github.com/locustio/locust","featured":1.0,"links":null,"description":null,"_repopath":"locustio/locust","_reponame":"locust","_stars":20705,"_forks":2636,"_watches":434,"_language":"Python","_homepage":"","_description":"locust: Scalable load testing tool written in Python","_organization":"locustio","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2011-02-17T00:00:00.000Z","_age_weeks":626,"_stars_per_week":33.03,"_topics":["locust","python","load-testing","performance-testing","http","benchmarking","load-generator"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":277,"_pop_contributor_logins":["HeyHugo@5m","Jahaja@embarkstudios","Trouv","ajt89","cgbystrom@epicgames/epicgames","cyberw@redshirtconsultingab","heyman@heylab","max-rocket-internet@deliveryhero","mbeacom@aws","mboutet"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["5m","aws","deliveryhero","embarkstudios","epicgames/epicgames","heylab","redshirtconsultingab"],"_pop_contributor_orgs_raw":["@5m ","@EmbarkStudios","@aws","Delivery Hero","Epic Games / @EpicGames","Heylab","Red Shirt Consulting AB"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.62,"_pop_updated_issues_count":62,"_pop_closed_issues_count":54,"_pop_created_since_days":146,"_pop_updated_since_days":0,"_pop_recent_releases_count":19,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":19,"_pop_issue_count":62.0,"_pop_comment_count":136.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":57.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/locustio/locust/master/README.md","_readme_localurl":"locustio~locust~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/locustio/locust/master/setup.py","https://raw.githubusercontent.com/locustio/locust/master/pyproject.toml"],"_requirements_localurls":["locustio~locust~setup.py","locustio~locust~pyproject.toml"]},{"index":273,"category":"ml","githuburl":"https://github.com/google/mediapipe","featured":null,"links":null,"description":null,"_repopath":"google/mediapipe","_reponame":"mediapipe","_stars":20578,"_forks":4291,"_watches":502,"_language":"C++","_homepage":"https://mediapipe.dev","_description":"mediapipe: Cross-platform, customizable ML solutions for live and streaming media.","_organization":"google","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-06-13T00:00:00.000Z","_age_weeks":192,"_stars_per_week":106.7,"_topics":["mediapipe","c-plus-plus","computer-vision","deep-learning","android","video-processing","audio-processing","mobile-development","machine-learning","inference","graph-framework","graph-based","calculator","framework","pipeline-framework","stream-processing","perception"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":28,"_pop_contributor_logins":["NikolayChirkov@googleinc","acozzette@google","camillol","khanhlvg@google","kinaryml","kuaashish","markmcd@google","priankakariatyml","schmidt-sebastian","ziyeqinghan@google"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","googleinc"],"_pop_contributor_orgs_raw":["@google ","Google","Google Inc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":19.75,"_pop_updated_issues_count":475,"_pop_closed_issues_count":319,"_pop_created_since_days":45,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":476.0,"_pop_comment_count":1542.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.2,"_pop_dependents_count":0,"_pop_score":46.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/mediapipe/master/README.md","_readme_localurl":"google~mediapipe~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/mediapipe/master/requirements.txt","https://raw.githubusercontent.com/google/mediapipe/master/setup.py"],"_requirements_localurls":["google~mediapipe~requirements.txt","google~mediapipe~setup.py"]},{"index":2,"category":"ml-dl","githuburl":"https://github.com/apache/incubator-mxnet","featured":null,"links":null,"description":null,"_repopath":"apache/incubator-mxnet","_reponame":"mxnet","_stars":20257,"_forks":6873,"_watches":1089,"_language":"C++","_homepage":"https://mxnet.apache.org","_description":"mxnet: Lightweight, Portable, Flexible Distributed/Mobile Deep Learning with Dynamic, Mutation-aware Dataflow Dep Scheduler; for Python, R, Julia, Scala, Go, Javascript and more","_organization":"apache","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-04-30T00:00:00.000Z","_age_weeks":407,"_stars_per_week":49.67,"_topics":["mxnet"],"_last_commit_date":"2023-01-26T00:00:00.000Z","_pop_contributor_count":981,"_pop_contributor_logins":["antinucleon@facebook","eric-haibin-lin@ex-awsai,bytedanceaml","leezu@amazonwebservices","mli@amazon","piiswrong@universityofwashington","pluskid@mit","szha@amazonai","tqchen@cmu,octoml","vchuravy@mit","yzhliu@amazonwebservices"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazon","amazonai","amazonwebservices","cmu,octoml","ex-awsai,bytedanceaml","facebook","mit","universityofwashington"],"_pop_contributor_orgs_raw":["@mit","Amazon","Amazon AI","Amazon Web Services","CMU, OctoML","Facebook","MIT","University of Washington","ex-AWS AI, Bytedance AML"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.94,"_pop_updated_issues_count":57,"_pop_closed_issues_count":23,"_pop_created_since_days":95,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":57.0,"_pop_comment_count":70.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":52.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apache/incubator-mxnet/master/README.md","_readme_localurl":"apache~incubator-mxnet~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":607,"category":"util","githuburl":"https://github.com/norvig/pytudes","featured":null,"links":null,"description":null,"_repopath":"norvig/pytudes","_reponame":"pytudes","_stars":20072,"_forks":2276,"_watches":738,"_language":"Jupyter Notebook","_homepage":"","_description":"pytudes: Python programs, usually short, of considerable difficulty, to perfect particular skills.","_organization":"norvig","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2017-03-01T00:00:00.000Z","_age_weeks":312,"_stars_per_week":64.33,"_topics":["python","python-3","programming","practice","demonstrate-skills"],"_last_commit_date":"2023-02-08T00:00:00.000Z","_pop_contributor_count":44,"_pop_contributor_logins":["Carreau@quansight-labs","Naereen","alexrkopp","ghurley","mco-gh@googlecloudplatform","norvig@google","pathcl","ramalho@thoughtworksthoughtworksinc","rmeertens","vladimirlojanica"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","googlecloudplatform","quansight-labs","thoughtworksthoughtworksinc"],"_pop_contributor_orgs_raw":["@GoogleCloudPlatform ","@Quansight-Labs","@thoughtworks @ThoughtWorksInc ","Google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.44,"_pop_updated_issues_count":4,"_pop_closed_issues_count":3,"_pop_created_since_days":73,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":33.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/norvig/pytudes/master/README.md","_readme_localurl":"norvig~pytudes~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/norvig/pytudes/master/requirements.txt"],"_requirements_localurls":["norvig~pytudes~requirements.txt"]},{"index":409,"category":"perf","githuburl":"https://github.com/google/flatbuffers","featured":null,"links":null,"description":null,"_repopath":"google/flatbuffers","_reponame":"flatbuffers","_stars":19937,"_forks":3021,"_watches":645,"_language":"C++","_homepage":"http://google.github.io/flatbuffers/","_description":"FlatBuffers: Memory Efficient Serialization Library","_organization":"google","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-05-19T00:00:00.000Z","_age_weeks":457,"_stars_per_week":43.6,"_topics":["flatbuffers","serialization","serialization-library","json-parser","marshalling","rpc","zero-copy","mmap","cross-platform","c-plus-plus","java","c-sharp","go","python","rust","javascript","typescript","grpc","c","protobuf"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":627,"_pop_contributor_logins":["CasperN","TGIshib","aardappel@voxraygames","bjornharrtell@septima","dbaileychess@google","krojew","paulovap@bookingcom","rw@cto","vaind","vglavnyy"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bookingcom","cto","google","septima","voxraygames"],"_pop_contributor_orgs_raw":["@Septima","@bookingcom","CTO","Google","VoxRay Games"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.1,"_pop_updated_issues_count":222,"_pop_closed_issues_count":153,"_pop_created_since_days":107,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":222.0,"_pop_comment_count":445.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":58.22,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/google/flatbuffers/master/readme.md","_readme_localurl":"google~flatbuffers~readme.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":350,"category":"ml-dl","githuburl":"https://github.com/paddlepaddle/paddle","featured":null,"links":null,"description":null,"_repopath":"paddlepaddle/paddle","_reponame":"Paddle","_stars":19617,"_forks":4910,"_watches":731,"_language":"C++","_homepage":"http://www.paddlepaddle.org/","_description":"Paddle: PArallel Distributed Deep LEarning: Machine Learning Framework from Industrial Practice \uff08\u300e\u98de\u6868\u300f\u6838\u5fc3\u6846\u67b6\uff0c\u6df1\u5ea6\u5b66\u4e60&\u673a\u5668\u5b66\u4e60\u9ad8\u6027\u80fd\u5355\u673a\u3001\u5206\u5e03\u5f0f\u8bad\u7ec3\u548c\u8de8\u5e73\u53f0\u90e8\u7f72\uff09","_organization":"paddlepaddle","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-08-15T00:00:00.000Z","_age_weeks":340,"_stars_per_week":57.65,"_topics":["paddlepaddle","deep-learning","scalability","machine-learning","neural-network","python","efficiency","distributed-training"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":923,"_pop_contributor_logins":["JiayiFeng","dzhwinter@baidu","gangliao@tiktok","jacquesqiao@baidubdg/idl/dltp","luotao1@paddlepaddle","qingqing01","reyoung@tencent","sneaxiy","tensor-tang","velconia@baiduaigroup"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["baidu","baiduaigroup","baidubdg/idl/dltp","paddlepaddle","tencent","tiktok"],"_pop_contributor_orgs_raw":["@PaddlePaddle ","Baidu","Baidu AI Group","Baidu BDG/IDL/DLTP","Tencent","TikTok"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":110.25,"_pop_updated_issues_count":4560,"_pop_closed_issues_count":3726,"_pop_created_since_days":79,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":4558.0,"_pop_comment_count":5534.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":65.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/paddlepaddle/paddle/master/README.md","_readme_localurl":"paddlepaddle~paddle~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":232,"category":"template","githuburl":"https://github.com/cookiecutter/cookiecutter","featured":null,"links":null,"description":null,"_repopath":"cookiecutter/cookiecutter","_reponame":"cookiecutter","_stars":18960,"_forks":1787,"_watches":231,"_language":"Python","_homepage":"https://pypi.org/project/cookiecutter/","_description":"cookiecutter: A cross-platform command-line utility that creates projects from cookiecutters (project templates), e.g. Python package projects, C projects.","_organization":"cookiecutter","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2013-07-14T00:00:00.000Z","_age_weeks":501,"_stars_per_week":37.81,"_topics":["python","cookiecutter"],"_last_commit_date":"2022-09-09T00:00:00.000Z","_pop_contributor_count":285,"_pop_contributor_logins":["audreyfeldroy@margaritahumanitarian","freakboy3742","hackebrot@mozilla","insspb","jensens@klein&partnerkgandbluedynamics","michaeljoseph","pfmoore","pydanny@octoenergy","simobasso@ovalmoney","ssbarnea@redhatansible"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["klein&partnerkgandbluedynamics","margaritahumanitarian","mozilla","octoenergy","ovalmoney","redhatansible"],"_pop_contributor_orgs_raw":["@OvalMoney ","@margaritahumanitarian","@mozilla","@octoenergy ","Klein & Partner KG and @bluedynamics ","Red Hat @ansible"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.0,"_pop_updated_issues_count":64,"_pop_closed_issues_count":10,"_pop_created_since_days":117,"_pop_updated_since_days":6,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":64.0,"_pop_comment_count":74.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":44.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cookiecutter/cookiecutter/master/README.md","_readme_localurl":"cookiecutter~cookiecutter~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cookiecutter/cookiecutter/master/setup.py","https://raw.githubusercontent.com/cookiecutter/cookiecutter/master/pyproject.toml"],"_requirements_localurls":["cookiecutter~cookiecutter~setup.py","cookiecutter~cookiecutter~pyproject.toml"]},{"index":789,"category":"study","githuburl":"https://github.com/wesm/pydata-book","featured":null,"links":null,"description":null,"_repopath":"wesm/pydata-book","_reponame":"pydata-book","_stars":18877,"_forks":13983,"_watches":1470,"_language":"Jupyter Notebook","_homepage":"","_description":"pydata-book: Materials and IPython notebooks for \"Python for Data Analysis\" by Wes McKinney, published by O'Reilly Media","_organization":"wesm","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-06-30T00:00:00.000Z","_age_weeks":555,"_stars_per_week":33.98,"_topics":[],"_last_commit_date":"2022-11-03T00:00:00.000Z","_pop_contributor_count":9,"_pop_contributor_logins":["ColdFire87","betatim@nvidia","crwilcox@googlecloud","kmather73","mbiesiad","rothwerx","thisizkp@vndly","wesm@voltrondata","y33-j3T@two-little-epochs"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["googlecloud","nvidia","two-little-epochs","vndly","voltrondata"],"_pop_contributor_orgs_raw":["@two-little-epochs ","@voltrondata","Google Cloud","Nvidia ","VNDLY"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":3,"_pop_closed_issues_count":3,"_pop_created_since_days":130,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":28.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/wesm/pydata-book/master/README.md","_readme_localurl":"wesm~pydata-book~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/wesm/pydata-book/master/requirements.txt"],"_requirements_localurls":["wesm~pydata-book~requirements.txt"]},{"index":186,"category":"ml","githuburl":"https://github.com/harisiqbal88/plotneuralnet","featured":null,"links":null,"description":null,"_repopath":"harisiqbal88/plotneuralnet","_reponame":"PlotNeuralNet","_stars":18856,"_forks":2577,"_watches":222,"_language":"TeX","_homepage":null,"_description":"PlotNeuralNet: Latex code for making neural networks diagrams","_organization":"harisiqbal88","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-07-24T00:00:00.000Z","_age_weeks":239,"_stars_per_week":78.85,"_topics":["latex","deep-neural-networks"],"_last_commit_date":"2020-11-06T00:00:00.000Z","_pop_contributor_count":13,"_pop_contributor_logins":["Alyetama","Brandon-HY-Lin","HarisIqbal88","StevenShi-23@nationaluniversityofsingapore","jackyko1991@universityofoxford","lukasliebel@tensoreye,technicaluniversityofmunich","mbrukman@google","pedrodiamel@cesarbr","weiji14@developmentseed","weslynn"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cesarbr","developmentseed","google","nationaluniversityofsingapore","tensoreye,technicaluniversityofmunich","universityofoxford"],"_pop_contributor_orgs_raw":["@CESARBR","@Google","@developmentseed","National University of Singapore","Tensoreye, Technical University of Munich","University of Oxford"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":6,"_pop_closed_issues_count":2,"_pop_created_since_days":56,"_pop_updated_since_days":28,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":6.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":22.32,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/harisiqbal88/plotneuralnet/master/README.md","_readme_localurl":"harisiqbal88~plotneuralnet~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":187,"category":"ml-interpretability","githuburl":"https://github.com/slundberg/shap","featured":null,"links":null,"description":null,"_repopath":"slundberg/shap","_reponame":"shap","_stars":18576,"_forks":2804,"_watches":262,"_language":"Jupyter Notebook","_homepage":"","_description":"shap: A game theoretic approach to explain the output of any machine learning model.","_organization":"slundberg","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-11-22T00:00:00.000Z","_age_weeks":326,"_stars_per_week":56.96,"_topics":["interpretability","machine-learning","deep-learning","gradient-boosting","shap","shapley","explainability"],"_last_commit_date":"2022-06-16T00:00:00.000Z","_pop_contributor_count":205,"_pop_contributor_logins":["QuentinAmbard","RAMitchell@nvidia","anusham1990","dependabot[bot]","floidgilbert","gabrieltseng@mila-iqia","imatiach-msft@microsoft","ryserrao","slundberg@microsoftresearch","vivekchettiar@microsoft"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["microsoft","microsoftresearch","mila-iqia","nvidia"],"_pop_contributor_orgs_raw":["@mila-iqia","Microsoft","Microsoft Research","Nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.88,"_pop_updated_issues_count":152,"_pop_closed_issues_count":22,"_pop_created_since_days":76,"_pop_updated_since_days":8,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":152.0,"_pop_comment_count":135.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":39.28,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/slundberg/shap/master/README.md","_readme_localurl":"slundberg~shap~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/slundberg/shap/master/requirements.txt","https://raw.githubusercontent.com/slundberg/shap/master/setup.py","https://raw.githubusercontent.com/slundberg/shap/master/pyproject.toml"],"_requirements_localurls":["slundberg~shap~requirements.txt","slundberg~shap~setup.py","slundberg~shap~pyproject.toml"]},{"index":763,"category":"ml-dl","githuburl":"https://github.com/xinntao/real-esrgan","featured":null,"links":null,"description":null,"_repopath":"xinntao/real-esrgan","_reponame":"Real-ESRGAN","_stars":18200,"_forks":1965,"_watches":185,"_language":"Python","_homepage":"","_description":"Real-ESRGAN aims at developing Practical Algorithms for General Image/Video Restoration.","_organization":"xinntao","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-07-19T00:00:00.000Z","_age_weeks":83,"_stars_per_week":218.52,"_topics":["esrgan","pytorch","real-esrgan","super-resolution","image-restoration","denoise","jpeg-compression","amine"],"_last_commit_date":"2022-09-20T00:00:00.000Z","_pop_contributor_count":11,"_pop_contributor_logins":["AK391@huggingface","Asiimoviet","Jared-02","NayamAmarshe@$shell","ToTheBeginning@tencent","cclauss@christianclauss","cobanov@refikanadolstudio","pratikgl@housinghq","rogachevai@vk|hse","xinntao@tencent"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["$shell","christianclauss","housinghq","huggingface","refikanadolstudio","tencent","vk|hse"],"_pop_contributor_orgs_raw":["$SHELL","@RefikAnadolStudio ","@housinghq","Christian Clauss","Huggingface","Tencent","VK | HSE"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":99,"_pop_closed_issues_count":13,"_pop_created_since_days":19,"_pop_updated_since_days":5,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":99.0,"_pop_comment_count":93.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":30.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/xinntao/real-esrgan/master/README.md","_readme_localurl":"xinntao~real-esrgan~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/xinntao/real-esrgan/master/requirements.txt","https://raw.githubusercontent.com/xinntao/real-esrgan/master/setup.py"],"_requirements_localurls":["xinntao~real-esrgan~requirements.txt","xinntao~real-esrgan~setup.py"]},{"index":61,"category":"viz","githuburl":"https://github.com/plotly/dash","featured":null,"links":null,"description":null,"_repopath":"plotly/dash","_reponame":"dash","_stars":18119,"_forks":1845,"_watches":410,"_language":"Python","_homepage":"https://plotly.com/dash","_description":"dash: Data Apps & Dashboards for Python. No JavaScript Required.","_organization":"plotly","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-04-10T00:00:00.000Z","_age_weeks":410,"_stars_per_week":44.12,"_topics":["dash","plotly","data-visualization","data-science","gui-framework","flask","react","python","finance","bioinformatics","technical-computing","charting","plotly-dash","web-app","productivity","modeling","r","rstats","jupyter","julia"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":132,"_pop_contributor_logins":["AnnMarieW@nostarchpress-thebookofdash","HammadTheOne","Marc-Andre-Rivet@plotly","T4rk1n","alexcjohnson","byronz","chriddyp@plotly","rmarren1","rpkyle","valentijnnieman"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["nostarchpress-thebookofdash","plotly"],"_pop_contributor_orgs_raw":["@plotly ","No Starch Press - The Book of Dash","Plotly"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.44,"_pop_updated_issues_count":156,"_pop_closed_issues_count":80,"_pop_created_since_days":96,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":156.0,"_pop_comment_count":180.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":48.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/plotly/dash/master/README.md","_readme_localurl":"plotly~dash~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/plotly/dash/master/setup.py"],"_requirements_localurls":["plotly~dash~setup.py"]},{"index":931,"category":"nlp","githuburl":"https://github.com/acheong08/chatgpt","featured":null,"links":null,"description":null,"_repopath":"acheong08/chatgpt","_reponame":"ChatGPT","_stars":18011,"_forks":2728,"_watches":198,"_language":"Python","_homepage":"","_description":"ChatGPT: Reverse engineered ChatGPT API","_organization":"acheong08","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-12-03T00:00:00.000Z","_age_weeks":11,"_stars_per_week":1556.51,"_topics":["chatgpt","cli","library","pypi-package","gptchat","revchatgpt"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":77,"_pop_contributor_logins":["DiamondDemon669","Harry-Jing","Jamminroot@deeplay.io","MonsterDruide1","PyRo1121@bankofamerica","acheong08","robbiebusinessacc","scottleibrand@netskope","skippyyy","snowmeow2"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bankofamerica","deeplay.io","netskope"],"_pop_contributor_orgs_raw":["Bank of America","Deeplay.io","Netskope, Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":16.37,"_pop_updated_issues_count":700,"_pop_closed_issues_count":695,"_pop_created_since_days":3,"_pop_updated_since_days":0,"_pop_recent_releases_count":141,"_pop_recent_releases_estimated_tags":604,"_pop_recent_releases_adjusted_count":141,"_pop_issue_count":700.0,"_pop_comment_count":3921.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":5.6,"_pop_dependents_count":0,"_pop_score":50.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/acheong08/chatgpt/master/README.md","_readme_localurl":"acheong08~chatgpt~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/acheong08/chatgpt/master/setup.py"],"_requirements_localurls":["acheong08~chatgpt~setup.py"]},{"index":228,"category":"term","githuburl":"https://github.com/willmcgugan/textual","featured":null,"links":null,"description":null,"_repopath":"willmcgugan/textual","_reponame":"textual","_stars":17792,"_forks":521,"_watches":158,"_language":"Python","_homepage":"https://textual.textualize.io/","_description":"Textual is a TUI (Text User Interface) framework for Python inspired by modern web development.","_organization":"willmcgugan","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-04-08T00:00:00.000Z","_age_weeks":97,"_stars_per_week":181.82,"_topics":["terminal","python","tui","rich","cli","framework"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":69,"_pop_contributor_logins":["aaronst@mandiant","darrenburns","davep@davep.org","driscollis","lllama@nccgroup","nitzan-shaked","olivierphi@lastmileict","overflowy","rodrigogiraoserrao","willmcgugan@textualize"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["davep.org","lastmileict","mandiant","nccgroup","textualize"],"_pop_contributor_orgs_raw":["@lastmileICT ","@mandiant","NCC Group","Textualize","davep.org"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":71.12,"_pop_updated_issues_count":588,"_pop_closed_issues_count":485,"_pop_created_since_days":23,"_pop_updated_since_days":0,"_pop_recent_releases_count":19,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":19,"_pop_issue_count":589.0,"_pop_comment_count":1138.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":54.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/willmcgugan/textual/master/README.md","_readme_localurl":"willmcgugan~textual~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/willmcgugan/textual/master/pyproject.toml"],"_requirements_localurls":["willmcgugan~textual~pyproject.toml"]},{"index":107,"category":"sim","githuburl":"https://github.com/atsushisakai/pythonrobotics","featured":null,"links":null,"description":null,"_repopath":"atsushisakai/pythonrobotics","_reponame":"PythonRobotics","_stars":17554,"_forks":5525,"_watches":505,"_language":"Python","_homepage":"https://atsushisakai.github.io/PythonRobotics/","_description":"PythonRobotics: Python sample codes for robotics algorithms.","_organization":"atsushisakai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-03-21T00:00:00.000Z","_age_weeks":361,"_stars_per_week":48.59,"_topics":["python","robotics","algorithm","path-planning","control","animation","localization","slam","cvxpy","ekf","autonomous-vehicles","autonomous-driving","mapping","autonomous-navigation","robot","hacktoberfest"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":107,"_pop_contributor_logins":["AtsushiSakai","Gjacquenot","araffin@dlr-rm","daniel-s-ingram@torcrobotics","dependabot[bot]","drewtu2","goktug97@idealworks","guilyx@tiiuae","karanchawla","takayuki5168@tier4"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["dlr-rm","idealworks","tier4","tiiuae","torcrobotics"],"_pop_contributor_orgs_raw":["@DLR-RM","@idealworks","@tier4","@tiiuae","Torc Robotics"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.04,"_pop_updated_issues_count":45,"_pop_closed_issues_count":43,"_pop_created_since_days":84,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":45.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":40.89,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/atsushisakai/pythonrobotics/master/README.md","_readme_localurl":"atsushisakai~pythonrobotics~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":349,"category":"ml","githuburl":"https://github.com/jina-ai/jina","featured":null,"links":null,"description":null,"_repopath":"jina-ai/jina","_reponame":"jina","_stars":17391,"_forks":2035,"_watches":192,"_language":"Python","_homepage":"https://docs.jina.ai","_description":"jina: \ud83d\udd2e Build multimodal AI services via cloud native technologies \u00b7 Neural Search \u00b7 Generative AI \u00b7 Cloud Native","_organization":"jina-ai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-02-13T00:00:00.000Z","_age_weeks":157,"_stars_per_week":110.17,"_topics":["neural-search","cloud-native","deep-learning","machine-learning","framework","vector-search-engine","grpc","kubernetes","microservices","semantic-search","multimodal","crossmodal","creative-ai","aiops","mlops","pipeline","workflow","airflow","fastapi","generative-ai"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":163,"_pop_contributor_logins":["JoanFM@jina-ai","alaeddine-13","alexcg1@jina-ai","bwanglzu@jina-ai","cristianmtr","deepankarm@jina-ai","hanxiao@jina-ai","jina-bot@jina-ai","maximilianwerk","nan-wang@jinaai"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["jina-ai","jinaai"],"_pop_contributor_orgs_raw":["@jina-ai","@jina-ai ","Jina AI"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":20.96,"_pop_updated_issues_count":310,"_pop_closed_issues_count":281,"_pop_created_since_days":37,"_pop_updated_since_days":0,"_pop_recent_releases_count":108,"_pop_recent_releases_estimated_tags":121,"_pop_recent_releases_adjusted_count":108,"_pop_issue_count":310.0,"_pop_comment_count":713.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":52.47,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jina-ai/jina/master/README.md","_readme_localurl":"jina-ai~jina~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jina-ai/jina/master/requirements.txt","https://raw.githubusercontent.com/jina-ai/jina/master/setup.py","https://raw.githubusercontent.com/jina-ai/jina/master/pyproject.toml"],"_requirements_localurls":["jina-ai~jina~requirements.txt","jina-ai~jina~setup.py","jina-ai~jina~pyproject.toml"]},{"index":6,"category":"viz","githuburl":"https://github.com/bokeh/bokeh","featured":null,"links":null,"description":null,"_repopath":"bokeh/bokeh","_reponame":"bokeh","_stars":17253,"_forks":4037,"_watches":448,"_language":"Python","_homepage":"https://bokeh.org","_description":"bokeh: Interactive Data Visualization in the browser, from Python","_organization":"bokeh","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-03-26T00:00:00.000Z","_age_weeks":569,"_stars_per_week":30.31,"_topics":["bokeh","python","interactive-plots","javascript","visualization","plotting","plots","data-visualisation","notebooks","jupyter","visualisation","numfocus"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":635,"_pop_contributor_logins":["Maggie-M@continuumanalytics","almarklein@independentsoftwareengineer","bryevdv@nvidia","canavandl","canavandl-test","damianavila","fpliger","havocp","mattpap","paddymul@independent"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["continuumanalytics","independent","independentsoftwareengineer","nvidia"],"_pop_contributor_orgs_raw":["Continuum Analytics, Inc.","Independent","Independent software engineer","Nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.38,"_pop_updated_issues_count":305,"_pop_closed_issues_count":177,"_pop_created_since_days":133,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":305.0,"_pop_comment_count":574.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":57.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bokeh/bokeh/master/README.md","_readme_localurl":"bokeh~bokeh~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/bokeh/bokeh/master/setup.py","https://raw.githubusercontent.com/bokeh/bokeh/master/pyproject.toml"],"_requirements_localurls":["bokeh~bokeh~setup.py","bokeh~bokeh~pyproject.toml"]},{"index":144,"category":"nlp","githuburl":"https://github.com/openai/gpt-2","featured":null,"links":null,"description":null,"_repopath":"openai/gpt-2","_reponame":"gpt-2","_stars":17116,"_forks":4330,"_watches":598,"_language":"Python","_homepage":"https://openai.com/blog/better-language-models/","_description":"gpt-2: Code for the paper \"Language Models are Unsupervised Multitask Learners\"","_organization":"openai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-02-11T00:00:00.000Z","_age_weeks":210,"_stars_per_week":81.39,"_topics":["paper"],"_last_commit_date":"2020-12-02T00:00:00.000Z","_pop_contributor_count":16,"_pop_contributor_logins":["ArmaanBhullar","GitHub30","WuTheFWasThat","albertwujj","christopherhesse@openai","imgntn","jackclarksf","madisonmay@indicodatasolutions","natemurthy","webproduktion01"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["indicodatasolutions","openai"],"_pop_contributor_orgs_raw":["@IndicoDataSolutions ","OpenAI"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":8,"_pop_closed_issues_count":2,"_pop_created_since_days":49,"_pop_updated_since_days":27,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":8.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":20.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/gpt-2/master/README.md","_readme_localurl":"openai~gpt-2~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/gpt-2/master/requirements.txt"],"_requirements_localurls":["openai~gpt-2~requirements.txt"]},{"index":31,"category":"data","githuburl":"https://github.com/jaidedai/easyocr","featured":null,"links":null,"description":null,"_repopath":"jaidedai/easyocr","_reponame":"EasyOCR","_stars":17067,"_forks":2464,"_watches":283,"_language":"Python","_homepage":"https://www.jaided.ai","_description":"EasyOCR: Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc.","_organization":"jaidedai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-03-14T00:00:00.000Z","_age_weeks":153,"_stars_per_week":111.13,"_topics":["ocr","deep-learning","crnn","pytorch","lstm","machine-learning","scene-text","scene-text-recognition","optical-character-recognition","cnn","data-mining","image-processing","python","easyocr","information-retrieval"],"_last_commit_date":"2023-01-06T00:00:00.000Z","_pop_contributor_count":114,"_pop_contributor_logins":["JaidedTeam@jaidedai","SamSamhuns@nyu,tii","arkya-art@delhitechnologicaluniversity(dtu'22)","dakotahorstman@duratechindustries","danielinux7","jpotter@enveritas","rkcosmos@jaidedai","ronaldaug","sardasumit","visutida"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["delhitechnologicaluniversity(dtu'22)","duratechindustries","enveritas","jaidedai","nyu,tii"],"_pop_contributor_orgs_raw":["@JaidedAI","Delhi Technological university (DTU'22)","DuraTech Industries","Enveritas","Jaided AI","NYU, TII"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.0,"_pop_updated_issues_count":104,"_pop_closed_issues_count":38,"_pop_created_since_days":36,"_pop_updated_since_days":2,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":104.0,"_pop_comment_count":123.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":41.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jaidedai/easyocr/master/README.md","_readme_localurl":"jaidedai~easyocr~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jaidedai/easyocr/master/requirements.txt","https://raw.githubusercontent.com/jaidedai/easyocr/master/setup.py"],"_requirements_localurls":["jaidedai~easyocr~requirements.txt","jaidedai~easyocr~setup.py"]},{"index":48,"category":"viz","githuburl":"https://github.com/matplotlib/matplotlib","featured":null,"links":null,"description":null,"_repopath":"matplotlib/matplotlib","_reponame":"matplotlib","_stars":16895,"_forks":6739,"_watches":592,"_language":"Python","_homepage":"https://matplotlib.org/stable/","_description":"matplotlib: plotting with Python","_organization":"matplotlib","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2011-02-19T00:00:00.000Z","_age_weeks":626,"_stars_per_week":26.96,"_topics":["matplotlib","data-visualization","data-science","python","qt","wx","gtk","plotting","tk","hacktoberfest"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":1473,"_pop_contributor_logins":["NelleV@timc","QuLogic","anntzer","dstansby@ucl","efiring@universityofhawaii","jdh2358","jklymak@universityofvictoria","mdboom@microsoft","tacaswell@brookhavennationallab","timhoffm"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["brookhavennationallab","microsoft","timc","ucl","universityofhawaii","universityofvictoria"],"_pop_contributor_orgs_raw":["Brookhaven National Lab","Microsoft","TIMC","UCL","University of Hawaii","University of Victoria"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":40.5,"_pop_updated_issues_count":1299,"_pop_closed_issues_count":800,"_pop_created_since_days":146,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":1298.0,"_pop_comment_count":2691.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":66.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/matplotlib/matplotlib/master/README.md","_readme_localurl":"matplotlib~matplotlib~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/matplotlib/matplotlib/master/setup.py","https://raw.githubusercontent.com/matplotlib/matplotlib/master/pyproject.toml"],"_requirements_localurls":["matplotlib~matplotlib~setup.py","matplotlib~matplotlib~pyproject.toml"]},{"index":30,"category":"web","githuburl":"https://github.com/huge-success/sanic","featured":null,"links":null,"description":null,"_repopath":"huge-success/sanic","_reponame":"sanic","_stars":16848,"_forks":1492,"_watches":413,"_language":"Python","_homepage":"https://sanic.dev","_description":"sanic: Accelerate your web app development | Build fast. Run fast.","_organization":"huge-success","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-05-26T00:00:00.000Z","_age_weeks":351,"_stars_per_week":47.88,"_topics":["python","framework","asyncio","api-server","web","web-server","web-framework","asgi","sanic"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":327,"_pop_contributor_logins":["38elements","Tronic","ahopkins@packetfabric","ashleysommer@csiro","channelcat","harshanarayana@ciscosystems","r0fls","seemethere@pytorch","sjsadowski@metameta","yunstanford@airbnb"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["airbnb","ciscosystems","csiro","metameta","packetfabric","pytorch"],"_pop_contributor_orgs_raw":["@Airbnb","@PacketFabric","@csiro ","@pytorch","Cisco Systems","Meta Meta LLC"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.33,"_pop_updated_issues_count":121,"_pop_closed_issues_count":81,"_pop_created_since_days":82,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":121.0,"_pop_comment_count":305.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":0,"_pop_score":54.55,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/huge-success/sanic/master/README.rst","_readme_localurl":"huge-success~sanic~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huge-success/sanic/master/setup.py","https://raw.githubusercontent.com/huge-success/sanic/master/pyproject.toml"],"_requirements_localurls":["huge-success~sanic~setup.py","huge-success~sanic~pyproject.toml"]},{"index":373,"category":"ml-dl","githuburl":"https://github.com/pyg-team/pytorch_geometric","featured":null,"links":null,"description":null,"_repopath":"pyg-team/pytorch_geometric","_reponame":"pytorch_geometric","_stars":16809,"_forks":3094,"_watches":250,"_language":"Python","_homepage":"https://pyg.org","_description":"pytorch_geometric: Graph Neural Network Library for PyTorch","_organization":"pyg-team","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-10-06T00:00:00.000Z","_age_weeks":280,"_stars_per_week":59.88,"_topics":["pytorch","geometric-deep-learning","graph-neural-networks","deep-learning","graph-convolutional-networks"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":380,"_pop_contributor_logins":["EdisonLeeeee@sunyat-senuniversity","Padarn@myteksi","dongkwan-kim@uilab-githubsparcs-kaist","ekagra-ranjan","janericlenssen@max-planckinstituteforinformatics,kumo.ai","lgray","lightaime@kaustivul","mananshah99@kumo-ai","rusty1s","wsad1"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["kaustivul","kumo-ai","max-planckinstituteforinformatics,kumo.ai","myteksi","sunyat-senuniversity","uilab-githubsparcs-kaist"],"_pop_contributor_orgs_raw":["@kumo-ai ","@myteksi","@uilab-github @sparcs-kaist ","KAUST IVUL","Max-Planck Institute for Informatics, Kumo.ai","Sun Yat-sen University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":20.0,"_pop_updated_issues_count":594,"_pop_closed_issues_count":503,"_pop_created_since_days":65,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":594.0,"_pop_comment_count":1001.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":56.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyg-team/pytorch_geometric/master/README.md","_readme_localurl":"pyg-team~pytorch_geometric~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyg-team/pytorch_geometric/master/setup.py","https://raw.githubusercontent.com/pyg-team/pytorch_geometric/master/pyproject.toml"],"_requirements_localurls":["pyg-team~pytorch_geometric~setup.py","pyg-team~pytorch_geometric~pyproject.toml"]},{"index":426,"category":"study","githuburl":"https://github.com/fchollet/deep-learning-with-python-notebooks","featured":null,"links":null,"description":null,"_repopath":"fchollet/deep-learning-with-python-notebooks","_reponame":"deep-learning-with-python-notebooks","_stars":16456,"_forks":8022,"_watches":641,"_language":"Jupyter Notebook","_homepage":"","_description":"deep-learning-with-python-notebooks: Jupyter notebooks for the code samples of the book \"Deep Learning with Python\"","_organization":"fchollet","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-09-05T00:00:00.000Z","_age_weeks":285,"_stars_per_week":57.71,"_topics":[],"_last_commit_date":"2023-02-13T00:00:00.000Z","_pop_contributor_count":9,"_pop_contributor_logins":["DerekChia","Kuz-man","bfaissal@moroccojug","fchollet","iamaziz","rama100","var-nan"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["moroccojug"],"_pop_contributor_orgs_raw":["MoroccoJUG"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":10,"_pop_closed_issues_count":5,"_pop_created_since_days":66,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":10.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":25.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fchollet/deep-learning-with-python-notebooks/master/README.md","_readme_localurl":"fchollet~deep-learning-with-python-notebooks~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":102,"category":"ml-ops","githuburl":"https://github.com/spotify/luigi","featured":null,"links":null,"description":null,"_repopath":"spotify/luigi","_reponame":"luigi","_stars":16333,"_forks":2356,"_watches":483,"_language":"Python","_homepage":null,"_description":"Luigi is a Python module that helps you build complex pipelines of batch jobs. It handles dependency resolution, workflow management, visualization etc. It also comes with Hadoop support built in. ","_organization":"spotify","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-09-20T00:00:00.000Z","_age_weeks":543,"_stars_per_week":30.03,"_topics":["python","luigi","orchestration-framework","scheduling","hadoop"],"_last_commit_date":"2023-02-09T00:00:00.000Z","_pop_contributor_count":597,"_pop_contributor_logins":["Tarrasch@google","daveFNbuck@houzz","dlstadther@q2ebanking","erikbern","freider@modallabs","gpoulin","honnix@spotify","themalkolm","ulzha","vitling"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","houzz","modallabs","q2ebanking","spotify"],"_pop_contributor_orgs_raw":["@spotify ","Google","Houzz","Modal Labs","Q2ebanking"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.73,"_pop_updated_issues_count":26,"_pop_closed_issues_count":14,"_pop_created_since_days":127,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":26.0,"_pop_comment_count":48.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":50.14,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/spotify/luigi/master/README.rst","_readme_localurl":"spotify~luigi~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/spotify/luigi/master/setup.py"],"_requirements_localurls":["spotify~luigi~setup.py"]},{"index":328,"category":"security","githuburl":"https://github.com/aquasecurity/trivy","featured":null,"links":null,"description":null,"_repopath":"aquasecurity/trivy","_reponame":"trivy","_stars":16289,"_forks":1582,"_watches":154,"_language":"Go","_homepage":"https://aquasecurity.github.io/trivy","_description":"trivy: Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more","_organization":"aquasecurity","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-04-11T00:00:00.000Z","_age_weeks":201,"_stars_per_week":80.7,"_topics":["security","security-tools","docker","containers","vulnerability-scanners","vulnerability-detection","vulnerability","golang","go","kubernetes","hacktoberfest","devsecops","misconfiguration","infrastructure-as-code","iac"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":283,"_pop_contributor_logins":["DmitriyLewen","afdesk","dependabot[bot]","josedonizetti","knqyf263","liamg@ghostsecurity","masahiro331","owenrumney@ghostsecurity","simar7","tomoyamachi@goodwithtech"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ghostsecurity","goodwithtech"],"_pop_contributor_orgs_raw":["@ghostsecurity","@ghostsecurity ","@goodwithtech "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.79,"_pop_updated_issues_count":609,"_pop_closed_issues_count":410,"_pop_created_since_days":47,"_pop_updated_since_days":0,"_pop_recent_releases_count":38,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":38,"_pop_issue_count":609.0,"_pop_comment_count":1227.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":54.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aquasecurity/trivy/master/README.md","_readme_localurl":"aquasecurity~trivy~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":834,"category":"util","githuburl":"https://github.com/micropython/micropython","featured":null,"links":null,"description":null,"_repopath":"micropython/micropython","_reponame":"micropython","_stars":15968,"_forks":6198,"_watches":733,"_language":"C","_homepage":"https://micropython.org","_description":"MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems","_organization":"micropython","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2013-12-20T00:00:00.000Z","_age_weeks":478,"_stars_per_week":33.36,"_topics":["micropython","python","embedded","microcontroller"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":555,"_pop_contributor_logins":["dhylands","dlech","dpgeorge","glennrub","iabdalkader@openmv","jimmo@micropython","pfalcon","pi-anl","robert-hh","stinos"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["micropython","openmv"],"_pop_contributor_orgs_raw":["@micropython","OpenMV"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":23.6,"_pop_updated_issues_count":441,"_pop_closed_issues_count":275,"_pop_created_since_days":112,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":441.0,"_pop_comment_count":1242.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":0,"_pop_score":54.89,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/micropython/micropython/master/README.md","_readme_localurl":"micropython~micropython~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":109,"category":"data","githuburl":"https://github.com/binux/pyspider","featured":null,"links":null,"description":null,"_repopath":"binux/pyspider","_reponame":"pyspider","_stars":15742,"_forks":3669,"_watches":905,"_language":"Python","_homepage":"http://docs.pyspider.org/","_description":"pyspider: A Powerful Spider(Web Crawler) System in Python.","_organization":"binux","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-02-21T00:00:00.000Z","_age_weeks":469,"_stars_per_week":33.51,"_topics":["python","crawler"],"_last_commit_date":"2020-08-02T00:00:00.000Z","_pop_contributor_count":62,"_pop_contributor_logins":["binux","eromoe","farmercode","ihipop","jtwaleson@easeebv","lushl9301@sun","machinewu","tiancheng91","tunstek","xyb"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["easeebv","sun"],"_pop_contributor_orgs_raw":["Easee BV","SUN"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":110,"_pop_updated_since_days":31,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":3.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":25.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/binux/pyspider/master/README.md","_readme_localurl":"binux~pyspider~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/binux/pyspider/master/requirements.txt","https://raw.githubusercontent.com/binux/pyspider/master/setup.py"],"_requirements_localurls":["binux~pyspider~requirements.txt","binux~pyspider~setup.py"]},{"index":873,"category":"util","githuburl":"https://github.com/ipython/ipython","featured":null,"links":null,"description":null,"_repopath":"ipython/ipython","_reponame":"ipython","_stars":15699,"_forks":4414,"_watches":769,"_language":"Python","_homepage":"https://ipython.readthedocs.org","_description":"ipython: Official repository for IPython itself. Other repos in the IPython organization contain things like the website, documentation builds, etc.","_organization":"ipython","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2010-05-10T00:00:00.000Z","_age_weeks":667,"_stars_per_week":23.53,"_topics":["ipython","jupyter","data-science","notebook","python","repl","closember","hacktoberfest"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":937,"_pop_contributor_logins":["Carreau@quansight-labs","bfroehle@google","ellisonbg@amazonwebservices","fperez@universityofcalifornia,berkeley.","ivanov","jasongrout@databricks","jdfreder@google","minrk@simularesearchlaboratory","takluyver","vivainio@basware"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazonwebservices","basware","databricks","google","quansight-labs","simularesearchlaboratory","universityofcalifornia,berkeley."],"_pop_contributor_orgs_raw":["@Quansight-Labs","@databricks","@google ","Amazon Web Services","Basware","Google","Simula Research Laboratory","University of California, Berkeley."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.71,"_pop_updated_issues_count":173,"_pop_closed_issues_count":96,"_pop_created_since_days":156,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":173.0,"_pop_comment_count":271.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":59.71,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/ipython/ipython/master/README.rst","_readme_localurl":"ipython~ipython~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ipython/ipython/master/setup.py","https://raw.githubusercontent.com/ipython/ipython/master/pyproject.toml"],"_requirements_localurls":["ipython~ipython~setup.py","ipython~ipython~pyproject.toml"]},{"index":176,"category":"debug","githuburl":"https://github.com/cool-rr/pysnooper","featured":1.0,"links":null,"description":null,"_repopath":"cool-rr/pysnooper","_reponame":"PySnooper","_stars":15686,"_forks":939,"_watches":235,"_language":"Python","_homepage":"","_description":"PySnooper: Never use print for debugging again","_organization":"cool-rr","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-04-18T00:00:00.000Z","_age_weeks":200,"_stars_per_week":78.1,"_topics":["python","debug","debugger","introspection","logging"],"_last_commit_date":"2023-01-03T00:00:00.000Z","_pop_contributor_count":27,"_pop_contributor_logins":["alexbers","alexmojaki","bittner@painless-software","cool-RR","czietz","frenzymadness@redhat","iory@japan","pikez","pohmelie@aratar.tech","zasdfgbnm@nvidia"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aratar.tech","japan","nvidia","painless-software","redhat"],"_pop_contributor_orgs_raw":["@painless-software ","Japan","NVIDIA","Red Hat","aratar.tech"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":5,"_pop_closed_issues_count":2,"_pop_created_since_days":47,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":5.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":34.32,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cool-rr/pysnooper/master/README.md","_readme_localurl":"cool-rr~pysnooper~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cool-rr/pysnooper/master/requirements.txt","https://raw.githubusercontent.com/cool-rr/pysnooper/master/pyproject.toml"],"_requirements_localurls":["cool-rr~pysnooper~requirements.txt","cool-rr~pysnooper~pyproject.toml"]},{"index":493,"category":"ml-dl","githuburl":"https://github.com/rasbt/deeplearning-models","featured":null,"links":null,"description":null,"_repopath":"rasbt/deeplearning-models","_reponame":"deeplearning-models","_stars":15610,"_forks":3846,"_watches":594,"_language":"Jupyter Notebook","_homepage":null,"_description":"deeplearning-models: A collection of various deep learning architectures, models, and tips","_organization":"rasbt","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-06-05T00:00:00.000Z","_age_weeks":194,"_stars_per_week":80.46,"_topics":[],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":11,"_pop_contributor_logins":["AdilZouitine@irtsaint-exup\u00e9ry","AlexZhou1995@alibaba-inc&nanjinguniversity","Vijayabhaskar96","imatiach-msft@microsoft","javierlorenzod","niklaskeerl","optixlab@intelcorp.","rasbt@lightning-ai,universityofwisconsin-madison"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["alibaba-inc&nanjinguniversity","intelcorp.","irtsaint-exup\u00e9ry","lightning-ai,universityofwisconsin-madison","microsoft"],"_pop_contributor_orgs_raw":["@Lightning-AI , University of Wisconsin-Madison","Alibaba-inc & Nanjing University","IRT Saint-Exup\u00e9ry","Intel Corp.","Microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.92,"_pop_updated_issues_count":3,"_pop_closed_issues_count":3,"_pop_created_since_days":45,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":30.32,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/deeplearning-models/master/README.md","_readme_localurl":"rasbt~deeplearning-models~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":41,"category":"util","githuburl":"https://github.com/kivy/kivy","featured":null,"links":null,"description":null,"_repopath":"kivy/kivy","_reponame":"kivy","_stars":15534,"_forks":2990,"_watches":620,"_language":"Python","_homepage":"https://kivy.org","_description":"kivy: Open source UI framework written in Python, running on Windows, Linux, macOS, Android and iOS","_organization":"kivy","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2010-11-03T00:00:00.000Z","_age_weeks":642,"_stars_per_week":24.2,"_topics":["python","ui","windows","ios","android","macos","linux","app","kivy"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":580,"_pop_contributor_logins":["KeyWeeUsr","Zen-CODE@zencode","akshayaurora@freelance","dessant","geojeff","inclement","kived@ijettech-dev","matham@cornelluniversity","tito@meltingrocks","tshirtman@imc.com"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cornelluniversity","freelance","ijettech-dev","imc.com","meltingrocks","zencode"],"_pop_contributor_orgs_raw":["@ijettech-dev","Cornell University","Freelance","Melting Rocks","ZenCODE","imc.com"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.73,"_pop_updated_issues_count":142,"_pop_closed_issues_count":81,"_pop_created_since_days":150,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":142.0,"_pop_comment_count":236.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":52.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kivy/kivy/master/README.md","_readme_localurl":"kivy~kivy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/kivy/kivy/master/setup.py","https://raw.githubusercontent.com/kivy/kivy/master/pyproject.toml"],"_requirements_localurls":["kivy~kivy~setup.py","kivy~kivy~pyproject.toml"]},{"index":19,"category":"time-series","githuburl":"https://github.com/facebook/prophet","featured":1.0,"links":null,"description":null,"_repopath":"facebook/prophet","_reponame":"prophet","_stars":15521,"_forks":4370,"_watches":422,"_language":"Python","_homepage":"https://facebook.github.io/prophet","_description":"prophet: Tool for producing high quality forecasts for time series data that has multiple seasonality with linear or non-linear growth.","_organization":"facebook","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-11-16T00:00:00.000Z","_age_weeks":327,"_stars_per_week":47.46,"_topics":["forecasting","r","python"],"_last_commit_date":"2023-01-31T00:00:00.000Z","_pop_contributor_count":163,"_pop_contributor_logins":["Igevorse","baogorek@spencerhealthsolutions","bletham","dependabot[bot]","joseangel-sc@pinterest","ryankarlos","seanjtaylor","seriousran@ncsoftaivisionlabgenerationteam","sss-ng","tcuongd@canva"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["canva","ncsoftaivisionlabgenerationteam","pinterest","spencerhealthsolutions"],"_pop_contributor_orgs_raw":["@Canva ","@NCSoft AI Vision Lab Generation Team","Pinterest","spencer Health Solutions, Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.04,"_pop_updated_issues_count":277,"_pop_closed_issues_count":148,"_pop_created_since_days":76,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":277.0,"_pop_comment_count":169.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":43.97,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebook/prophet/master/README.md","_readme_localurl":"facebook~prophet~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":604,"category":"web","githuburl":"https://github.com/pyscript/pyscript","featured":null,"links":null,"description":null,"_repopath":"pyscript/pyscript","_reponame":"pyscript","_stars":15466,"_forks":1160,"_watches":176,"_language":"Python","_homepage":"https://github.com/pyscript/pyscript/discussions","_description":"pyscript: Home Page: https://pyscript.net Examples: https://pyscript.net/examples","_organization":"pyscript","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-02-21T00:00:00.000Z","_age_weeks":52,"_stars_per_week":295.8,"_topics":["python","html","javascript","wasm"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":98,"_pop_contributor_logins":["FabioRosado@anaconda","JeffersGlass","antocuni","fpliger","madhur-tandon","philippjfr@anaconda","pre-commit-ci[bot]","pww217","tedpatrick@pyscriptanaconda","woxtu"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","pyscriptanaconda"],"_pop_contributor_orgs_raw":["@pyscript @anaconda","Anaconda","Anaconda Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.98,"_pop_updated_issues_count":272,"_pop_closed_issues_count":216,"_pop_created_since_days":12,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":272.0,"_pop_comment_count":435.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":43.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyscript/pyscript/master/README.md","_readme_localurl":"pyscript~pyscript~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":36,"category":"data","githuburl":"https://github.com/joke2k/faker","featured":null,"links":null,"description":null,"_repopath":"joke2k/faker","_reponame":"faker","_stars":15410,"_forks":1726,"_watches":221,"_language":"Python","_homepage":"https://faker.readthedocs.io","_description":"Faker is a Python package that generates fake data for you.","_organization":"joke2k","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-11-12T00:00:00.000Z","_age_weeks":536,"_stars_per_week":28.73,"_topics":["python","fake","testing","dataset","fake-data","test-data","test-data-generator"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":506,"_pop_contributor_logins":["Newman101","chrisvoncsefalvay@starschema","fcurella@minted","grantbachman@google","illia-v@sailoboats","jdufresne@pioneervalleybooks","joke2k@selfemployed","malefice","mdxs@mdxs","reverbc"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","mdxs","minted","pioneervalleybooks","sailoboats","selfemployed","starschema"],"_pop_contributor_orgs_raw":["@minted","@sailoboats","Google","MDXS","Pioneer Valley Books","Self Employed","Starschema"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.81,"_pop_updated_issues_count":70,"_pop_closed_issues_count":54,"_pop_created_since_days":125,"_pop_updated_since_days":0,"_pop_recent_releases_count":56,"_pop_recent_releases_estimated_tags":27,"_pop_recent_releases_adjusted_count":56,"_pop_issue_count":70.0,"_pop_comment_count":94.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":57.8,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/joke2k/faker/master/README.rst","_readme_localurl":"joke2k~faker~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/joke2k/faker/master/setup.py"],"_requirements_localurls":["joke2k~faker~setup.py"]},{"index":469,"category":"util","githuburl":"https://github.com/alievk/avatarify-python","featured":null,"links":null,"description":null,"_repopath":"alievk/avatarify-python","_reponame":"avatarify-python","_stars":15401,"_forks":2399,"_watches":301,"_language":"Python","_homepage":"","_description":"avatarify-python: Avatars for Zoom, Skype and other video-conferencing apps.","_organization":"alievk","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-04-06T00:00:00.000Z","_age_weeks":150,"_stars_per_week":102.48,"_topics":[],"_last_commit_date":"2022-11-11T00:00:00.000Z","_pop_contributor_count":23,"_pop_contributor_logins":["645775992","JohanAR","MartinDelille@lylomediagroup","alievk","christianll9@universityofhildesheim","giorgiop","iamphi","karfly@entrepreneur","mikaelhg","mynameisfiber@digital-witness-lab"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["digital-witness-lab","entrepreneur","lylomediagroup","universityofhildesheim"],"_pop_contributor_orgs_raw":["@digital-witness-lab ","Entrepreneur","Lylo Media Group","University of Hildesheim"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":65,"_pop_closed_issues_count":16,"_pop_created_since_days":35,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":65.0,"_pop_comment_count":245.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.8,"_pop_dependents_count":0,"_pop_score":34.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alievk/avatarify-python/master/README.md","_readme_localurl":"alievk~avatarify-python~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/alievk/avatarify-python/master/requirements.txt"],"_requirements_localurls":["alievk~avatarify-python~requirements.txt"]},{"index":137,"category":"nlp","githuburl":"https://github.com/huggingface/datasets","featured":null,"links":null,"description":null,"_repopath":"huggingface/datasets","_reponame":"datasets","_stars":15276,"_forks":2025,"_watches":262,"_language":"Python","_homepage":"https://huggingface.co/docs/datasets","_description":"datasets: \ud83e\udd17 The largest hub of ready-to-use datasets for ML models with fast, easy-to-use and efficient data manipulation tools","_organization":"huggingface","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-03-26T00:00:00.000Z","_age_weeks":151,"_stars_per_week":100.59,"_topics":["nlp","datasets","metrics","evaluation","pytorch","tensorflow","pandas","numpy","natural-language-processing","computer-vision","machine-learning","deep-learning","speech","hacktoberfest"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":493,"_pop_contributor_logins":["abhishekkrthakur@huggingface","albertvillanova@huggingfaceaiinnova","lewtun@huggingface","lhoestq@huggingface","mariosasko@huggingface","patrickvonplaten","sashavor@huggingface","stevhliu@huggingface","thomwolf@huggingface","yjernite@cims,nyu"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cims,nyu","huggingface","huggingfaceaiinnova"],"_pop_contributor_orgs_raw":["@huggingface","@huggingface ","@huggingface @Aiinnova","CIMS, NYU","Hugging Face","HuggingFace"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":17.19,"_pop_updated_issues_count":368,"_pop_closed_issues_count":265,"_pop_created_since_days":35,"_pop_updated_since_days":0,"_pop_recent_releases_count":20,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":20,"_pop_issue_count":368.0,"_pop_comment_count":1116.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":56.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/datasets/master/README.md","_readme_localurl":"huggingface~datasets~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/datasets/master/setup.py","https://raw.githubusercontent.com/huggingface/datasets/master/pyproject.toml"],"_requirements_localurls":["huggingface~datasets~setup.py","huggingface~datasets~pyproject.toml"]},{"index":74,"category":"typing","githuburl":"https://github.com/python/mypy","featured":null,"links":null,"description":null,"_repopath":"python/mypy","_reponame":"mypy","_stars":14873,"_forks":2450,"_watches":228,"_language":"Python","_homepage":"https://www.mypy-lang.org/","_description":"mypy: Optional static typing for Python","_organization":"python","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-12-07T00:00:00.000Z","_age_weeks":532,"_stars_per_week":27.92,"_topics":["python","types","typing","typechecker","linter"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":631,"_pop_contributor_logins":["JukkaL","Michael0x2a","ddfisher","gvanrossum@microsoft","hauntsaninja@openai","ilevkivskyi","ivuk","msullivan@edgedb","sobolevn","spkersten@philipshue"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["edgedb","microsoft","openai","philipshue"],"_pop_contributor_orgs_raw":["@OpenAI","EdgeDB","Microsoft","Philips Hue"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":16.92,"_pop_updated_issues_count":869,"_pop_closed_issues_count":495,"_pop_created_since_days":124,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":869.0,"_pop_comment_count":1600.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":59.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python/mypy/master/README.md","_readme_localurl":"python~mypy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python/mypy/master/setup.py","https://raw.githubusercontent.com/python/mypy/master/pyproject.toml"],"_requirements_localurls":["python~mypy~setup.py","python~mypy~pyproject.toml"]},{"index":868,"category":"ml-dl","githuburl":"https://github.com/hpcaitech/colossalai","featured":null,"links":null,"description":null,"_repopath":"hpcaitech/colossalai","_reponame":"ColossalAI","_stars":14661,"_forks":1530,"_watches":188,"_language":"Python","_homepage":"https://www.colossalai.org/","_description":"ColossalAI: Making big AI models cheaper, easier, and more scalable","_organization":"hpcaitech","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-10-28T00:00:00.000Z","_age_weeks":68,"_stars_per_week":212.92,"_topics":["deep-learning","hpc","large-scale","data-parallelism","pipeline-parallelism","model-parallelism","ai","big-model","distributed-computing","inference","heterogeneous-training"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":97,"_pop_contributor_logins":["1SAA@hpcaitech","Cypher30@fudanuniversity","FrankLeeeee","Wesley-Jzy","YuliangLiu0306","binmakeswell@nationaluniversityofsingapore","feifeibear","github-actions[bot]","oahzxl@nationaluniversityofsingapore","ver217@hpcaitech"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["fudanuniversity","hpcaitech","nationaluniversityofsingapore"],"_pop_contributor_orgs_raw":["@Fudan University","@hpcaitech","@hpcaitech ","National University of Singapore"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":36.31,"_pop_updated_issues_count":942,"_pop_closed_issues_count":802,"_pop_created_since_days":16,"_pop_updated_since_days":0,"_pop_recent_releases_count":24,"_pop_recent_releases_estimated_tags":20,"_pop_recent_releases_adjusted_count":24,"_pop_issue_count":943.0,"_pop_comment_count":842.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":50.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hpcaitech/colossalai/master/README.md","_readme_localurl":"hpcaitech~colossalai~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hpcaitech/colossalai/master/setup.py"],"_requirements_localurls":["hpcaitech~colossalai~setup.py"]},{"index":148,"category":"data","githuburl":"https://github.com/twintproject/twint","featured":null,"links":null,"description":null,"_repopath":"twintproject/twint","_reponame":"twint","_stars":14418,"_forks":2474,"_watches":312,"_language":"Python","_homepage":"","_description":"twint: An advanced Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API, allowing you to scrape a user's followers, following, Tweets and more while evading most API limitations.","_organization":"twintproject","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-06-10T00:00:00.000Z","_age_weeks":297,"_stars_per_week":48.45,"_topics":["osint","twitter","python","scrape","tweets","elasticsearch","kibana","scrape-followers","scrape-likes","scrape-following","twint","tweep"],"_last_commit_date":"2021-03-02T00:00:00.000Z","_pop_contributor_count":65,"_pop_contributor_logins":["Jamim@itechartgroup","Mehdzor@maximlevin","NoSuck","calebglawson@ololabs","fshabashev","haccer","himanshudabas","hpiedcoq","pielco11@none","yunusemrecatalcam@yechops"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["itechartgroup","maximlevin","none","ololabs","yechops"],"_pop_contributor_orgs_raw":["@NONE","@ololabs","Maxim Levin","YechOps","iTechArt Group"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":69,"_pop_updated_since_days":24,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":28.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/twintproject/twint/master/README.md","_readme_localurl":"twintproject~twint~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/twintproject/twint/master/requirements.txt","https://raw.githubusercontent.com/twintproject/twint/master/setup.py"],"_requirements_localurls":["twintproject~twint~requirements.txt","twintproject~twint~setup.py"]},{"index":718,"category":"perf","githuburl":"https://github.com/pola-rs/polars","featured":1.0,"links":null,"description":null,"_repopath":"pola-rs/polars","_reponame":"polars","_stars":14234,"_forks":712,"_watches":121,"_language":"Rust","_homepage":"https://pola.rs/","_description":"polars: Fast multi-threaded, hybrid-out-of-core DataFrame library in Rust | Python | Node.js","_organization":"pola-rs","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-05-13T00:00:00.000Z","_age_weeks":145,"_stars_per_week":98.17,"_topics":["dataframe-library","dataframe","dataframes","rust","arrow","python","out-of-core"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":173,"_pop_contributor_logins":["Dandandan@godatadriven","MarcoGorelli@quansight","alexander-beedie","ghuls@aertslab","ibENPC","matteosantama@universityofcalifornia,berkeley","ritchie46","stinodego","universalmind303","zundertj"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aertslab","godatadriven","quansight","universityofcalifornia,berkeley"],"_pop_contributor_orgs_raw":["@aertslab ","@godatadriven","Quansight","University of California, Berkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":42.81,"_pop_updated_issues_count":1628,"_pop_closed_issues_count":1331,"_pop_created_since_days":34,"_pop_updated_since_days":0,"_pop_recent_releases_count":44,"_pop_recent_releases_estimated_tags":128,"_pop_recent_releases_adjusted_count":44,"_pop_issue_count":1628.0,"_pop_comment_count":3211.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":57.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pola-rs/polars/master/README.md","_readme_localurl":"pola-rs~polars~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":175,"category":"util","githuburl":"https://github.com/delgan/loguru","featured":1.0,"links":null,"description":null,"_repopath":"delgan/loguru","_reponame":"loguru","_stars":14165,"_forks":585,"_watches":120,"_language":"Python","_homepage":"","_description":"loguru: Python logging made (stupidly) simple","_organization":"delgan","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-08-15T00:00:00.000Z","_age_weeks":288,"_stars_per_week":49.16,"_topics":["python","logging","logger","log"],"_last_commit_date":"2023-02-01T00:00:00.000Z","_pop_contributor_count":42,"_pop_contributor_logins":["AdrianDeAnda","AndrewYakimets","Delgan","benhowes","blueyed@freelancer,upforhire","dependabot[bot]","layday","mayanyax","nasyxx","ponponon"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["freelancer,upforhire"],"_pop_contributor_orgs_raw":["Freelancer, up for hire"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.06,"_pop_updated_issues_count":69,"_pop_closed_issues_count":51,"_pop_created_since_days":67,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":69.0,"_pop_comment_count":119.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":36.7,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/delgan/loguru/master/README.rst","_readme_localurl":"delgan~loguru~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/delgan/loguru/master/setup.py"],"_requirements_localurls":["delgan~loguru~setup.py"]},{"index":332,"category":"sim","githuburl":"https://github.com/unity-technologies/ml-agents","featured":null,"links":null,"description":null,"_repopath":"unity-technologies/ml-agents","_reponame":"ml-agents","_stars":14133,"_forks":3722,"_watches":549,"_language":"C#","_homepage":"https://unity.com/products/machine-learning-agents","_description":"ml-agents: The Unity Machine Learning Agents Toolkit (ML-Agents) is an open-source project that enables games and simulations to serve as environments for training intelligent agents using deep reinforcement learning and imitation learning.","_organization":"unity-technologies","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-09-08T00:00:00.000Z","_age_weeks":284,"_stars_per_week":49.64,"_topics":["reinforcement-learning","unity3d","deep-learning","unity","deep-reinforcement-learning","neural-networks","machine-learning"],"_last_commit_date":"2023-01-25T00:00:00.000Z","_pop_contributor_count":147,"_pop_contributor_logins":["andrewcoh","awjuliani","chriselion@ziplineinternational","dongruoping@unitytechnologies/carnegiemellonuniversity","ervteng","pderichai@google","shihzy@facebook","surfnerd","vincentpierre","xiaomaogy@unitytechnologies"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook","google","unitytechnologies","unitytechnologies/carnegiemellonuniversity","ziplineinternational"],"_pop_contributor_orgs_raw":["@google","Facebook","Unity Technologies","Unity Technologies/Carnegie Mellon University","Zipline International"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.13,"_pop_updated_issues_count":138,"_pop_closed_issues_count":78,"_pop_created_since_days":66,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":138.0,"_pop_comment_count":60.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":41.59,"_readme_filename":"","_readme_giturl":"","_readme_localurl":"","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":124,"category":"ml","githuburl":"https://github.com/onnx/onnx","featured":null,"links":null,"description":null,"_repopath":"onnx/onnx","_reponame":"onnx","_stars":14114,"_forks":3330,"_watches":428,"_language":"Python","_homepage":"https://onnx.ai/","_description":"onnx: Open standard for machine learning interoperability","_organization":"onnx","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-09-07T00:00:00.000Z","_age_weeks":284,"_stars_per_week":49.55,"_topics":["deep-learning","deep-neural-networks","neural-network","onnx","pytorch","mxnet","tensorflow","keras","scikit-learn","ml","machine-learning","dnn"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":269,"_pop_contributor_logins":["anderspapitto","askhade","bddppq","gramalingam@microsoftresearch","houseroad","jcwchen@microsoft","linkerzhang","prasanthpul@microsoft","smessmer","yuanbyu@microsoft"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["microsoft","microsoftresearch"],"_pop_contributor_orgs_raw":["@Microsoft","Microsoft","Microsoft Research"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.83,"_pop_updated_issues_count":356,"_pop_closed_issues_count":228,"_pop_created_since_days":66,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":356.0,"_pop_comment_count":440.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":47.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/onnx/onnx/master/README.md","_readme_localurl":"onnx~onnx~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/onnx/onnx/master/requirements.txt","https://raw.githubusercontent.com/onnx/onnx/master/setup.py","https://raw.githubusercontent.com/onnx/onnx/master/pyproject.toml"],"_requirements_localurls":["onnx~onnx~requirements.txt","onnx~onnx~setup.py","onnx~onnx~pyproject.toml"]},{"index":104,"category":"nlp","githuburl":"https://github.com/rare-technologies/gensim","featured":null,"links":null,"description":null,"_repopath":"rare-technologies/gensim","_reponame":"gensim","_stars":13972,"_forks":4322,"_watches":429,"_language":"Python","_homepage":"https://radimrehurek.com/gensim","_description":"gensim: Topic Modelling for Humans","_organization":"rare-technologies","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2011-02-10T00:00:00.000Z","_age_weeks":627,"_stars_per_week":22.25,"_topics":["gensim","topic-modeling","information-retrieval","machine-learning","natural-language-processing","nlp","data-science","python","data-mining","word2vec","word-embeddings","neural-network","document-similarity","word-similarity","fasttext"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":441,"_pop_contributor_logins":["Witiko@masarykuniversity","chinmayapancholi13","cscorley","gojomo@http://xavvy.com","jayantj@mixpanel","menshikh-iv@constructor.io,embedika","mpenkov@profoundnetworks","piskvorky@rare-technologies","sotte","tmylk"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["constructor.io,embedika","http://xavvy.com","masarykuniversity","mixpanel","profoundnetworks","rare-technologies"],"_pop_contributor_orgs_raw":["@ProfoundNetworks","@RARE-Technologies","@mixpanel","Constructor.io, Embedika","Masaryk University","http://xavvy.com"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.79,"_pop_updated_issues_count":68,"_pop_closed_issues_count":52,"_pop_created_since_days":146,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":68.0,"_pop_comment_count":149.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":52.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rare-technologies/gensim/master/README.md","_readme_localurl":"rare-technologies~gensim~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rare-technologies/gensim/master/setup.py"],"_requirements_localurls":["rare-technologies~gensim~setup.py"]},{"index":972,"category":"ml","githuburl":"https://github.com/openai/baselines","featured":null,"links":null,"description":null,"_repopath":"openai/baselines","_reponame":"baselines","_stars":13741,"_forks":4526,"_watches":613,"_language":"Python","_homepage":"","_description":"OpenAI Baselines: high-quality implementations of reinforcement learning algorithms","_organization":"openai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-05-24T00:00:00.000Z","_age_weeks":300,"_stars_per_week":45.8,"_topics":[],"_last_commit_date":"2020-01-31T00:00:00.000Z","_pop_contributor_count":115,"_pop_contributor_logins":["20chase","AurelianTactics","MatPoliquin","andrewliao11@universityoftoronto","christopherhesse@openai","joschu","pzhokhov","siemanko@openai","unixpickle","zuoxingdong@navercorp"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["navercorp","openai","universityoftoronto"],"_pop_contributor_orgs_raw":["NAVER Corp","OpenAI","University of Toronto"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":12,"_pop_closed_issues_count":4,"_pop_created_since_days":70,"_pop_updated_since_days":37,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":12.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":26.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/baselines/master/README.md","_readme_localurl":"openai~baselines~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/baselines/master/setup.py"],"_requirements_localurls":["openai~baselines~setup.py"]},{"index":119,"category":"ml-ops","githuburl":"https://github.com/mlflow/mlflow","featured":null,"links":null,"description":null,"_repopath":"mlflow/mlflow","_reponame":"mlflow","_stars":13685,"_forks":3201,"_watches":286,"_language":"Python","_homepage":"https://mlflow.org","_description":"mlflow: Open source platform for the machine learning lifecycle","_organization":"mlflow","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-06-05T00:00:00.000Z","_age_weeks":246,"_stars_per_week":55.6,"_topics":["machine-learning","ai","ml","mlflow","apache-spark","model-management"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":547,"_pop_contributor_logins":["BenWilson2@databricks","WeichenXu123@databricks","aarondav","dbczumar","harupy","mlflow-automation","mparkhe@databricks","smurching","sunishsheth2009@databricks.exlinkedin","tomasatdatabricks"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["databricks","databricks.exlinkedin"],"_pop_contributor_orgs_raw":["@databricks","@databricks ","@databricks. Ex LinkedIn","Databricks"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":23.5,"_pop_updated_issues_count":625,"_pop_closed_issues_count":440,"_pop_created_since_days":57,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":625.0,"_pop_comment_count":1531.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":56.77,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mlflow/mlflow/master/README.rst","_readme_localurl":"mlflow~mlflow~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mlflow/mlflow/master/setup.py","https://raw.githubusercontent.com/mlflow/mlflow/master/pyproject.toml"],"_requirements_localurls":["mlflow~mlflow~setup.py","mlflow~mlflow~pyproject.toml"]},{"index":674,"category":"ml-dl","githuburl":"https://github.com/borisdayma/dalle-mini","featured":null,"links":null,"description":null,"_repopath":"borisdayma/dalle-mini","_reponame":"dalle-mini","_stars":13681,"_forks":1055,"_watches":104,"_language":"Python","_homepage":"https://www.craiyon.com","_description":"dalle-mini: DALL\u00b7E Mini - Generate images from a text prompt","_organization":"borisdayma","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-07-03T00:00:00.000Z","_age_weeks":85,"_stars_per_week":159.88,"_topics":[],"_last_commit_date":"2023-02-10T00:00:00.000Z","_pop_contributor_count":27,"_pop_contributor_logins":["AetherUnbound@automattic","Gertie01","borisdayma","ghosh-r","khalidsaifullaah@universityofmaryland,collegepark","mallorbc@brillibits","patil-suraj@huggingface","patrickpiccini@linx|stone","pcuenca","tmabraham"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["automattic","brillibits","huggingface","linx|stone","universityofmaryland,collegepark"],"_pop_contributor_orgs_raw":["Automattic","Brillibits","Huggingface","Linx | Stone ","University of Maryland, College Park"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.42,"_pop_updated_issues_count":16,"_pop_closed_issues_count":5,"_pop_created_since_days":20,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":16.0,"_pop_comment_count":26.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":37.28,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/borisdayma/dalle-mini/master/README.md","_readme_localurl":"borisdayma~dalle-mini~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/borisdayma/dalle-mini/master/setup.py","https://raw.githubusercontent.com/borisdayma/dalle-mini/master/pyproject.toml"],"_requirements_localurls":["borisdayma~dalle-mini~setup.py","borisdayma~dalle-mini~pyproject.toml"]},{"index":56,"category":"term","githuburl":"https://github.com/pallets/click","featured":null,"links":null,"description":null,"_repopath":"pallets/click","_reponame":"click","_stars":13511,"_forks":1313,"_watches":180,"_language":"Python","_homepage":"https://click.palletsprojects.com","_description":"click: Python composable command line interface toolkit","_organization":"pallets","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-04-24T00:00:00.000Z","_age_weeks":460,"_stars_per_week":29.32,"_topics":["python","cli","click","pallets"],"_last_commit_date":"2023-02-07T00:00:00.000Z","_pop_contributor_count":337,"_pop_contributor_logins":["davidism","dependabot-preview[bot]","dependabot[bot]","iKevinY","jcrotts","julen","mitsuhiko@sentry","pre-commit-ci[bot]","sirosen","untitaker@getsentry"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["getsentry","sentry"],"_pop_contributor_orgs_raw":["@getsentry ","Sentry"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.1,"_pop_updated_issues_count":73,"_pop_closed_issues_count":47,"_pop_created_since_days":108,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":73.0,"_pop_comment_count":48.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":45.02,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/click/master/README.rst","_readme_localurl":"pallets~click~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/click/master/pyproject.toml"],"_requirements_localurls":["pallets~click~pyproject.toml"]},{"index":544,"category":"ml","githuburl":"https://github.com/aleju/imgaug","featured":null,"links":null,"description":null,"_repopath":"aleju/imgaug","_reponame":"imgaug","_stars":13310,"_forks":2358,"_watches":231,"_language":"Python","_homepage":"http://imgaug.readthedocs.io","_description":"imgaug: Image augmentation for machine learning experiments.","_organization":"aleju","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-07-10T00:00:00.000Z","_age_weeks":397,"_stars_per_week":33.47,"_topics":["image-augmentation","machine-learning","augmentation","deep-learning","images","affine-transformation","polygon","heatmap","segmentation-maps","keypoints","bounding-boxes","augment-images","crop","contrast"],"_last_commit_date":"2020-06-01T00:00:00.000Z","_pop_contributor_count":36,"_pop_contributor_logins":["Borda@grid.ai|pytorchlightning","Erotemic@kitware","SarthakYadav@idiap","adamwkraft","aleju","creinders","gaborvecsei","jgraving@maxplanckinstituteofanimalbehavior","stnk20","wkentaro@mujin"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["grid.ai|pytorchlightning","idiap","kitware","maxplanckinstituteofanimalbehavior","mujin"],"_pop_contributor_orgs_raw":["@Kitware","@mujin","Grid.ai | PytorchLightning","IDIAP","Max Planck Institute of Animal Behavior"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":11,"_pop_closed_issues_count":3,"_pop_created_since_days":93,"_pop_updated_since_days":33,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":11.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":28.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aleju/imgaug/master/README.md","_readme_localurl":"aleju~imgaug~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aleju/imgaug/master/requirements.txt","https://raw.githubusercontent.com/aleju/imgaug/master/setup.py"],"_requirements_localurls":["aleju~imgaug~requirements.txt","aleju~imgaug~setup.py"]},{"index":408,"category":"web","githuburl":"https://github.com/aio-libs/aiohttp","featured":null,"links":null,"description":null,"_repopath":"aio-libs/aiohttp","_reponame":"aiohttp","_stars":13285,"_forks":1866,"_watches":228,"_language":"Python","_homepage":"https://docs.aiohttp.org","_description":"aiohttp: Asynchronous HTTP client/server framework for asyncio and Python","_organization":"aio-libs","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2013-10-01T00:00:00.000Z","_age_weeks":490,"_stars_per_week":27.1,"_topics":["aiohttp","asyncio","python","http","http-server","http-client","async","hacktoberfest"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":665,"_pop_contributor_logins":["Dreamsorcerer","asvetlov@neu.ro","dependabot-preview[bot]","dependabot[bot]","fafhrd91@microsoft","kxepal","patchback[bot]","popravich@evo-company","pyup-bot@pyupio","webknjaz@ansiblecoreredhatofficial"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ansiblecoreredhatofficial","evo-company","microsoft","neu.ro","pyupio"],"_pop_contributor_orgs_raw":["@Ansible Core @ @RedHatOfficial","@evo-company","@pyupio","Microsoft","Neu.ro"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.0,"_pop_updated_issues_count":177,"_pop_closed_issues_count":101,"_pop_created_since_days":114,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":177.0,"_pop_comment_count":471.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":0,"_pop_score":56.73,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/aio-libs/aiohttp/master/README.rst","_readme_localurl":"aio-libs~aiohttp~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/aio-libs/aiohttp/master/setup.py","https://raw.githubusercontent.com/aio-libs/aiohttp/master/pyproject.toml"],"_requirements_localurls":["aio-libs~aiohttp~setup.py","aio-libs~aiohttp~pyproject.toml"]},{"index":956,"category":"ml","githuburl":"https://github.com/openai/openai-cookbook","featured":null,"links":null,"description":null,"_repopath":"openai/openai-cookbook","_reponame":"openai-cookbook","_stars":13284,"_forks":1661,"_watches":304,"_language":"Jupyter Notebook","_homepage":null,"_description":"openai-cookbook: Examples and guides for using the OpenAI API","_organization":"openai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-03-11T00:00:00.000Z","_age_weeks":49,"_stars_per_week":267.21,"_topics":[],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":38,"_pop_contributor_logins":["BorisPower","MikeHeaton","cmurtz-msft@microsoft","colin-jarvis","colin-openai","filipeabperes","isafulf","logankilpatrick@openaijulialang","shyamal-anadkat@openai","ted-at-openai@openai"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["microsoft","openai","openaijulialang"],"_pop_contributor_orgs_raw":["@OpenAI @JuliaLang","Microsoft","OpenAI"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.67,"_pop_updated_issues_count":121,"_pop_closed_issues_count":96,"_pop_created_since_days":12,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":121.0,"_pop_comment_count":193.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":35.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/openai-cookbook/master/README.md","_readme_localurl":"openai~openai-cookbook~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":942,"category":"nlp","githuburl":"https://github.com/karpathy/mingpt","featured":null,"links":null,"description":null,"_repopath":"karpathy/mingpt","_reponame":"minGPT","_stars":13102,"_forks":1477,"_watches":228,"_language":"Python","_homepage":null,"_description":"minGPT: A minimal PyTorch re-implementation of the OpenAI GPT (Generative Pretrained Transformer) training","_organization":"karpathy","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-08-17T00:00:00.000Z","_age_weeks":131,"_stars_per_week":99.8,"_topics":[],"_last_commit_date":"2023-01-08T00:00:00.000Z","_pop_contributor_count":15,"_pop_contributor_logins":["brchristian","ericjang","fpgaminer","karpathy","luigidisotto@aitechnologiessrl","michaellavelle@ml4jjvmtorch","mishig25@huggingface","nat@github","shivamtawari","t-vi@mathinfhttps://mathinf.eu/"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aitechnologiessrl","github","huggingface","mathinfhttps://mathinf.eu/","ml4jjvmtorch"],"_pop_contributor_orgs_raw":["@huggingface ","@ml4j @jvmtorch ","AI Technologies srl","GitHub","MathInf https://mathinf.eu/"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.96,"_pop_updated_issues_count":20,"_pop_closed_issues_count":4,"_pop_created_since_days":31,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":20.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":28.73,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/karpathy/mingpt/master/README.md","_readme_localurl":"karpathy~mingpt~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/karpathy/mingpt/master/setup.py"],"_requirements_localurls":["karpathy~mingpt~setup.py"]},{"index":554,"category":"ml-ops","githuburl":"https://github.com/horovod/horovod","featured":null,"links":null,"description":null,"_repopath":"horovod/horovod","_reponame":"horovod","_stars":13034,"_forks":2157,"_watches":331,"_language":"Python","_homepage":"http://horovod.ai","_description":"horovod: Distributed training framework for TensorFlow, Keras, PyTorch, and Apache MXNet.","_organization":"horovod","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-08-09T00:00:00.000Z","_age_weeks":289,"_stars_per_week":45.1,"_topics":["tensorflow","uber","machine-learning","machinelearning","mpi","baidu","deep-learning","deeplearning","keras","pytorch","mxnet","spark","ray"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":164,"_pop_contributor_logins":["EnricoMi","abditag2@uber","alsrgv@carbonrobotics","chongxiaoc@uber","irasit@uber","maxhgerlach@deeplse","nvcastet@nvidia","romerojosh@nvidia","tgaddair@uber","yuxihu@aws"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aws","carbonrobotics","deeplse","nvidia","uber"],"_pop_contributor_orgs_raw":["@AWS","@carbonrobotics","@uber ","DeepL SE","NVIDIA","Uber","Uber "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.06,"_pop_updated_issues_count":110,"_pop_closed_issues_count":75,"_pop_created_since_days":67,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":110.0,"_pop_comment_count":159.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":49.51,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/horovod/horovod/master/README.rst","_readme_localurl":"horovod~horovod~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/horovod/horovod/master/setup.py"],"_requirements_localurls":["horovod~horovod~setup.py"]},{"index":507,"category":"ml","githuburl":"https://github.com/tensorflow/tensor2tensor","featured":null,"links":null,"description":null,"_repopath":"tensorflow/tensor2tensor","_reponame":"tensor2tensor","_stars":13006,"_forks":3175,"_watches":459,"_language":"Python","_homepage":"","_description":"tensor2tensor: Library of deep learning models and datasets designed to make deep learning more accessible and accelerate ML research.","_organization":"tensorflow","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-06-15T00:00:00.000Z","_age_weeks":296,"_stars_per_week":43.81,"_topics":["machine-learning","machine-translation","deep-learning","reinforcement-learning","tpu"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":243,"_pop_contributor_logins":["MechCoder@googlebrain","afrozenator@google","blazejosinski","dustinvtran@googlebrain","koz4k@mimuw","lukaszkaiser@google","mbz@universityofillinoisaturbana\u2013champaign","nshazeer","urvashik","vthorsteinsson@mideind"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","googlebrain","mideind","mimuw","universityofillinoisaturbana\u2013champaign"],"_pop_contributor_orgs_raw":["@mideind ","Google","Google Brain","MIMUW","University of Illinois at Urbana\u2013Champaign"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.25,"_pop_updated_issues_count":6,"_pop_closed_issues_count":1,"_pop_created_since_days":69,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":6.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":43.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/tensor2tensor/master/README.md","_readme_localurl":"tensorflow~tensor2tensor~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorflow/tensor2tensor/master/setup.py"],"_requirements_localurls":["tensorflow~tensor2tensor~setup.py"]},{"index":62,"category":"viz","githuburl":"https://github.com/plotly/plotly.py","featured":null,"links":null,"description":null,"_repopath":"plotly/plotly.py","_reponame":"plotly.py","_stars":12956,"_forks":2301,"_watches":276,"_language":"Python","_homepage":"https://plotly.com/python/","_description":"plotly.py: The interactive graphing library for Python (includes Plotly Express) :sparkles:","_organization":"plotly","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2013-11-21T00:00:00.000Z","_age_weeks":482,"_stars_per_week":26.83,"_topics":["python","d3","plotly","plotlyjs","webgl","dashboard","visualization","graph-library","plotly-dash","jupyter-notebook","sparkles","regl","declarative","interactive"],"_last_commit_date":"2023-01-31T00:00:00.000Z","_pop_contributor_count":219,"_pop_contributor_logins":["Kully","LiamConnors","chriddyp@plotly","cldougl@plotly","emmanuelle","etpinard@r2-inc","jonmmease@hextechnologies","nicolaskruchten","theengineear@netflix","yankev"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["hextechnologies","netflix","plotly","r2-inc"],"_pop_contributor_orgs_raw":["@R2-inc","Hex Technologies","Netflix","Plotly"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.21,"_pop_updated_issues_count":235,"_pop_closed_issues_count":102,"_pop_created_since_days":113,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":235.0,"_pop_comment_count":316.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":52.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/plotly/plotly.py/master/README.md","_readme_localurl":"plotly~plotly.py~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/plotly/plotly.py/master/setup.py","https://raw.githubusercontent.com/plotly/plotly.py/master/pyproject.toml"],"_requirements_localurls":["plotly~plotly.py~setup.py","plotly~plotly.py~pyproject.toml"]},{"index":812,"category":"nlp","githuburl":"https://github.com/gunthercox/chatterbot","featured":null,"links":null,"description":null,"_repopath":"gunthercox/chatterbot","_reponame":"ChatterBot","_stars":12942,"_forks":4234,"_watches":551,"_language":"Python","_homepage":"https://chatterbot.readthedocs.io","_description":"ChatterBot is a machine learning, conversational dialog engine for creating chat bots","_organization":"gunthercox","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-09-28T00:00:00.000Z","_age_weeks":438,"_stars_per_week":29.52,"_topics":["chatterbot","machine-learning","chatbot","python","conversation","language","bot"],"_last_commit_date":"2021-06-01T00:00:00.000Z","_pop_contributor_count":103,"_pop_contributor_logins":["DarkmatterVale@amazonwebservices","JulianoEngineer@uplicativos","Martmists-GH@claritycafe","davizucon","gunthercox","lesleslie@wedgwoodwebworks","manoelrui","navyad","rafak360","rmdort@self"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazonwebservices","claritycafe","self","uplicativos","wedgwoodwebworks"],"_pop_contributor_orgs_raw":["@ClarityCafe","@self","Amazon Web Services","Uplicativos","Wedgwood Web Works"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":26,"_pop_closed_issues_count":5,"_pop_created_since_days":102,"_pop_updated_since_days":21,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":26.0,"_pop_comment_count":25.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":36.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gunthercox/chatterbot/master/README.md","_readme_localurl":"gunthercox~chatterbot~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gunthercox/chatterbot/master/requirements.txt","https://raw.githubusercontent.com/gunthercox/chatterbot/master/setup.py"],"_requirements_localurls":["gunthercox~chatterbot~requirements.txt","gunthercox~chatterbot~setup.py"]},{"index":346,"category":"viz","githuburl":"https://github.com/gradio-app/gradio","featured":null,"links":null,"description":null,"_repopath":"gradio-app/gradio","_reponame":"gradio","_stars":12879,"_forks":846,"_watches":102,"_language":"HTML","_homepage":"http://www.gradio.app","_description":"gradio: Create UIs for your machine learning model in Python in 3 minutes","_organization":"gradio-app","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-12-19T00:00:00.000Z","_age_weeks":218,"_stars_per_week":59.08,"_topics":["machine-learning","models","ui","ui-components","interface","python","data-science","data-visualization","deep-learning","data-analysis","gradio","gradio-interface","python-notebook","deploy"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":135,"_pop_contributor_logins":["AK391@huggingface","FarukOzderim@pennstate","abidlabs","aliabd","aliabid94","dawoodkhan82","freddyaboulton","ikaharudin","pngwn","testaliabid"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["huggingface","pennstate"],"_pop_contributor_orgs_raw":["Huggingface","Penn State"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":24.69,"_pop_updated_issues_count":756,"_pop_closed_issues_count":569,"_pop_created_since_days":51,"_pop_updated_since_days":0,"_pop_recent_releases_count":92,"_pop_recent_releases_estimated_tags":23,"_pop_recent_releases_adjusted_count":92,"_pop_issue_count":758.0,"_pop_comment_count":2128.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":0,"_pop_score":54.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gradio-app/gradio/master/README.md","_readme_localurl":"gradio-app~gradio~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/gradio-app/gradio/master/requirements.txt","https://raw.githubusercontent.com/gradio-app/gradio/master/pyproject.toml"],"_requirements_localurls":["gradio-app~gradio~requirements.txt","gradio-app~gradio~pyproject.toml"]},{"index":281,"category":"util","githuburl":"https://github.com/squidfunk/mkdocs-material","featured":null,"links":null,"description":null,"_repopath":"squidfunk/mkdocs-material","_reponame":"mkdocs-material","_stars":12836,"_forks":2816,"_watches":111,"_language":"TypeScript","_homepage":"https://squidfunk.github.io/mkdocs-material/","_description":"mkdocs-material: Documentation that simply works","_organization":"squidfunk","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-01-28T00:00:00.000Z","_age_weeks":368,"_stars_per_week":34.8,"_topics":["mkdocs","theme","documentation","material-design","template","static"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":192,"_pop_contributor_logins":["Stanzilla","XhmikosR","coliff@trimble-oss","dependabot-preview[bot]","dependabot-support","dependabot[bot]","facelessuser","greenkeeper[bot]","squidfunk@stylezen","timvink"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["stylezen","trimble-oss"],"_pop_contributor_orgs_raw":["@stylezen","@trimble-oss"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":16.73,"_pop_updated_issues_count":326,"_pop_closed_issues_count":306,"_pop_created_since_days":86,"_pop_updated_since_days":0,"_pop_recent_releases_count":61,"_pop_recent_releases_estimated_tags":44,"_pop_recent_releases_adjusted_count":61,"_pop_issue_count":327.0,"_pop_comment_count":847.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":0,"_pop_score":55.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/README.md","_readme_localurl":"squidfunk~mkdocs-material~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/requirements.txt","https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/setup.py","https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/pyproject.toml"],"_requirements_localurls":["squidfunk~mkdocs-material~requirements.txt","squidfunk~mkdocs-material~setup.py","squidfunk~mkdocs-material~pyproject.toml"]},{"index":39,"category":"jupyter","githuburl":"https://github.com/jupyterlab/jupyterlab","featured":null,"links":null,"description":null,"_repopath":"jupyterlab/jupyterlab","_reponame":"jupyterlab","_stars":12647,"_forks":2557,"_watches":312,"_language":"TypeScript","_homepage":"https://jupyterlab.readthedocs.io/","_description":"JupyterLab computational environment.","_organization":"jupyterlab","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-06-03T00:00:00.000Z","_age_weeks":350,"_stars_per_week":36.06,"_topics":["jupyterlab","jupyter"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":527,"_pop_contributor_logins":["afshin@jupyterquantstack","blink1073@mongodb","echarles@datalayer","ellisonbg@amazonwebservices","fcollonval@quantstack","ian-r-rose@coiled","jasongrout@databricks","jtpio@quantstack","saulshanabrook","telamonian@jpmorgan"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazonwebservices","coiled","databricks","datalayer","jpmorgan","jupyterquantstack","mongodb","quantstack"],"_pop_contributor_orgs_raw":["@Datalayer","@QuantStack","@coiled ","@databricks","@jupyter @quantstack","Amazon Web Services","JP Morgan","MongoDB"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":16.13,"_pop_updated_issues_count":1286,"_pop_closed_issues_count":932,"_pop_created_since_days":82,"_pop_updated_since_days":0,"_pop_recent_releases_count":50,"_pop_recent_releases_estimated_tags":5044,"_pop_recent_releases_adjusted_count":50,"_pop_issue_count":1287.0,"_pop_comment_count":2291.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":63.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyterlab/jupyterlab/master/README.md","_readme_localurl":"jupyterlab~jupyterlab~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyterlab/jupyterlab/master/setup.py","https://raw.githubusercontent.com/jupyterlab/jupyterlab/master/pyproject.toml"],"_requirements_localurls":["jupyterlab~jupyterlab~setup.py","jupyterlab~jupyterlab~pyproject.toml"]},{"index":314,"category":"util","githuburl":"https://github.com/samuelcolvin/pydantic","featured":null,"links":null,"description":null,"_repopath":"samuelcolvin/pydantic","_reponame":"pydantic","_stars":12551,"_forks":1161,"_watches":89,"_language":"Python","_homepage":"https://docs.pydantic.dev","_description":"pydantic: Data validation using Python type hints","_organization":"samuelcolvin","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-05-03T00:00:00.000Z","_age_weeks":303,"_stars_per_week":41.42,"_topics":["validation","parsing","json-schema","python37","python38","pydantic","python39","python","hints","python310","python311"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":349,"_pop_contributor_logins":["Bobronium@pheon","Gr1N@pandadoc","PrettyWood@toucantoco","dependabot-preview[bot]","dependabot[bot]","dmontagu@formlogic","hramezani@crate","pyup-bot@pyupio","samuelcolvin@pydantic","tiangolo"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["crate","formlogic","pandadoc","pheon","pydantic","pyupio","toucantoco"],"_pop_contributor_orgs_raw":["@PandaDoc","@ToucanToco","@crate ","@pydantic","@pyupio","Formlogic","Pheon"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.13,"_pop_updated_issues_count":395,"_pop_closed_issues_count":237,"_pop_created_since_days":71,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":395.0,"_pop_comment_count":951.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":57.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/samuelcolvin/pydantic/master/README.md","_readme_localurl":"samuelcolvin~pydantic~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/samuelcolvin/pydantic/master/pyproject.toml"],"_requirements_localurls":["samuelcolvin~pydantic~pyproject.toml"]},{"index":127,"category":"ml","githuburl":"https://github.com/microsoft/nni","featured":null,"links":null,"description":null,"_repopath":"microsoft/nni","_reponame":"nni","_stars":12525,"_forks":1749,"_watches":283,"_language":"Python","_homepage":"https://nni.readthedocs.io","_description":"nni: An open source AutoML toolkit for automate machine learning lifecycle, including feature engineering, neural architecture search, model compression and hyper-parameter tuning.","_organization":"microsoft","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-06-01T00:00:00.000Z","_age_weeks":246,"_stars_per_week":50.77,"_topics":["automl","deep-learning","neural-architecture-search","hyperparameter-optimization","distributed","bayesian-optimization","automated-machine-learning","machine-learning","machine-learning-algorithms","data-science","tensorflow","pytorch","neural-network","deep-neural-network","model-compression","feature-engineering","nas","python","hyperparameter-tuning","mlops"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":186,"_pop_contributor_logins":["J-shang","Lijiaoa","QuanluZhang","SparkSnail","chicm-ms","liuzhe-lz","lvybriage@inspur","squirrelsc@microsoft","suiguoxin@msra","ultmaster@microsoft"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["inspur","microsoft","msra"],"_pop_contributor_orgs_raw":["Inspur","MSRA","Microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.02,"_pop_updated_issues_count":188,"_pop_closed_issues_count":101,"_pop_created_since_days":58,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":188.0,"_pop_comment_count":240.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":48.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/nni/master/README.md","_readme_localurl":"microsoft~nni~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/nni/master/setup.py"],"_requirements_localurls":["microsoft~nni~setup.py"]},{"index":152,"category":"nlp","githuburl":"https://github.com/flairnlp/flair","featured":null,"links":null,"description":null,"_repopath":"flairnlp/flair","_reponame":"flair","_stars":12498,"_forks":1997,"_watches":202,"_language":"Python","_homepage":"","_description":"flair: A very simple framework for state-of-the-art Natural Language Processing (NLP)","_organization":"flairnlp","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-06-11T00:00:00.000Z","_age_weeks":245,"_stars_per_week":50.95,"_topics":["pytorch","nlp","named-entity-recognition","sequence-labeling","semantic-role-labeling","word-embeddings","natural-language-processing","machine-learning"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":240,"_pop_contributor_logins":["alanakbik","dobbersc@humboldt-universit\u00e4tzuberlin","helpmefindaname@researchindustrialsystemsengineering(rise)","leonweber@lmumunich","marcelmmm","pommedeterresautee@els-rdlefebvresarrut","stefan-it","tabergma@rasahq","whoisjones@humboldtuniversit\u00e4t","yosipk"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["els-rdlefebvresarrut","humboldt-universit\u00e4tzuberlin","humboldtuniversit\u00e4t","lmumunich","rasahq","researchindustrialsystemsengineering(rise)"],"_pop_contributor_orgs_raw":["@ELS-RD Lefebvre Sarrut","@RasaHQ ","Humboldt Universit\u00e4t","Humboldt-Universit\u00e4t zu Berlin","LMU Munich","Research Industrial Systems Engineering (RISE)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.46,"_pop_updated_issues_count":216,"_pop_closed_issues_count":164,"_pop_created_since_days":57,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":216.0,"_pop_comment_count":271.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":50.97,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/flairnlp/flair/master/README.md","_readme_localurl":"flairnlp~flair~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/flairnlp/flair/master/requirements.txt","https://raw.githubusercontent.com/flairnlp/flair/master/setup.py","https://raw.githubusercontent.com/flairnlp/flair/master/pyproject.toml","https://raw.githubusercontent.com/flairnlp/flair/master/Pipfile"],"_requirements_localurls":["flairnlp~flair~requirements.txt","flairnlp~flair~setup.py","flairnlp~flair~pyproject.toml","flairnlp~flair~Pipfile"]},{"index":52,"category":"graph","githuburl":"https://github.com/networkx/networkx","featured":null,"links":null,"description":null,"_repopath":"networkx/networkx","_reponame":"networkx","_stars":12242,"_forks":2844,"_watches":279,"_language":"Python","_homepage":"https://networkx.org","_description":"networkx: Network Analysis in Python","_organization":"networkx","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2010-09-06T00:00:00.000Z","_age_weeks":650,"_stars_per_week":18.83,"_topics":["python","complex-networks","graph-theory","graph-algorithms","graph-analysis","graph-generation","graph-visualization"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":641,"_pop_contributor_logins":["MridulS","chebee7i","dschult","hagberg","jarrodmillman@ucberkeley","jfinkels","jtorrents","loicseguin","rossbar@caltech","ysitu"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["caltech","ucberkeley"],"_pop_contributor_orgs_raw":["Caltech","UC Berkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.12,"_pop_updated_issues_count":384,"_pop_closed_issues_count":236,"_pop_created_since_days":152,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":384.0,"_pop_comment_count":508.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":55.43,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/networkx/networkx/master/README.rst","_readme_localurl":"networkx~networkx~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/networkx/networkx/master/setup.py"],"_requirements_localurls":["networkx~networkx~setup.py"]},{"index":575,"category":"perf","githuburl":"https://github.com/pybind/pybind11","featured":null,"links":null,"description":null,"_repopath":"pybind/pybind11","_reponame":"pybind11","_stars":12238,"_forks":1776,"_watches":246,"_language":"C++","_homepage":"https://pybind11.readthedocs.io/","_description":"pybind11: Seamless operability between C++11 and Python","_organization":"pybind","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-07-05T00:00:00.000Z","_age_weeks":398,"_stars_per_week":30.72,"_topics":["python","bindings"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":315,"_pop_contributor_logins":["Skylion007@facebookresearch","YannickJadoul@maxplanckinstituteforpsycholinguistics&vrijeuniversiteitbrussel","aldanor","dean0x7d@lumicks","dependabot[bot]","henryiii@princetonuniversity","jagerman","pre-commit-ci[bot]","rwgk@google","wjakob@epfl"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["epfl","facebookresearch","google","lumicks","maxplanckinstituteforpsycholinguistics&vrijeuniversiteitbrussel","princetonuniversity"],"_pop_contributor_orgs_raw":["@facebookresearch ","@lumicks ","EPFL","Google","Max Planck Institute for Psycholinguistics & Vrije Universiteit Brussel","Princeton University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.71,"_pop_updated_issues_count":168,"_pop_closed_issues_count":111,"_pop_created_since_days":93,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":168.0,"_pop_comment_count":387.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":54.63,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pybind/pybind11/master/README.rst","_readme_localurl":"pybind~pybind11~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pybind/pybind11/master/setup.py","https://raw.githubusercontent.com/pybind/pybind11/master/pyproject.toml"],"_requirements_localurls":["pybind~pybind11~setup.py","pybind~pybind11~pyproject.toml"]},{"index":425,"category":"ml-dl","githuburl":"https://github.com/albumentations-team/albumentations","featured":null,"links":null,"description":null,"_repopath":"albumentations-team/albumentations","_reponame":"albumentations","_stars":11585,"_forks":1472,"_watches":123,"_language":"Python","_homepage":"https://albumentations.ai","_description":"albumentations: Fast image augmentation library and an easy-to-use wrapper around other libraries. Documentation: https://albumentations.ai/docs/ Paper about the library: https://www.mdpi.com/2078-2489/11/2/125","_organization":"albumentations-team","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-06-06T00:00:00.000Z","_age_weeks":246,"_stars_per_week":47.09,"_topics":["image-augmentation","machine-learning","augmentation","deep-learning","detection","fast-augmentations","segmentation","image-segmentation","image-processing","image-classification","python","object-detection"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":126,"_pop_contributor_logins":["BloodAxe@deci-ai","Dipet","MichaelMonashev","albu","arsenyinfo","creafz","i-aki-y","ternaus@ternaus.com","vfdev-5@quansight","zakajd@eyeq"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["deci-ai","eyeq","quansight","ternaus.com"],"_pop_contributor_orgs_raw":["@Deci-AI ","@Quansight","EyeQ","Ternaus.com"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.42,"_pop_updated_issues_count":83,"_pop_closed_issues_count":38,"_pop_created_since_days":57,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":83.0,"_pop_comment_count":133.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":44.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/albumentations-team/albumentations/master/README.md","_readme_localurl":"albumentations-team~albumentations~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/albumentations-team/albumentations/master/setup.py"],"_requirements_localurls":["albumentations-team~albumentations~setup.py"]},{"index":105,"category":"nlp","githuburl":"https://github.com/nltk/nltk","featured":null,"links":null,"description":null,"_repopath":"nltk/nltk","_reponame":"nltk","_stars":11540,"_forks":2693,"_watches":469,"_language":"Python","_homepage":"https://www.nltk.org","_description":"NLTK Source","_organization":"nltk","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2009-09-07T00:00:00.000Z","_age_weeks":702,"_stars_per_week":16.43,"_topics":["nltk","python","nlp","natural-language-processing","machine-learning"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":438,"_pop_contributor_logins":["alvations","dhgarrette@googleresearch","dimazest","fievelk","heatherleaf@universityofgothenburg","iliakur@datadog","kmike@zytedata,scrapinghub","stevenbird","tomaarsen@argilla","wroberts@humboldtuniversit\u00e4tzuberlin"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["argilla","datadog","googleresearch","humboldtuniversit\u00e4tzuberlin","universityofgothenburg","zytedata,scrapinghub"],"_pop_contributor_orgs_raw":["@zytedata, @ScrapingHub","Argilla","Datadog","Google Research","Humboldt Universit\u00e4t zu Berlin","University of Gothenburg"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.37,"_pop_updated_issues_count":95,"_pop_closed_issues_count":73,"_pop_created_since_days":164,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":95.0,"_pop_comment_count":167.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":53.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nltk/nltk/master/README.md","_readme_localurl":"nltk~nltk~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nltk/nltk/master/setup.py"],"_requirements_localurls":["nltk~nltk~setup.py"]},{"index":242,"category":"ml","githuburl":"https://github.com/deepmind/deepmind-research","featured":null,"links":null,"description":null,"_repopath":"deepmind/deepmind-research","_reponame":"deepmind-research","_stars":11445,"_forks":2347,"_watches":329,"_language":"Jupyter Notebook","_homepage":"","_description":"deepmind-research: This repository contains implementations and illustrative code to accompany DeepMind publications","_organization":"deepmind","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-01-15T00:00:00.000Z","_age_weeks":214,"_stars_per_week":53.45,"_topics":[],"_last_commit_date":"2023-01-31T00:00:00.000Z","_pop_contributor_count":91,"_pop_contributor_logins":["Augustin-Zidek","alimuldal@deepmind","altche@deepmind","alvarosg@deepmind","derpson@deepmind","diegolascasas@deepmind","dpfau","jsspencer","wanglouis49","yilei"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["deepmind"],"_pop_contributor_orgs_raw":["@deepmind","DeepMind"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.67,"_pop_updated_issues_count":23,"_pop_closed_issues_count":3,"_pop_created_since_days":50,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":23.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":30.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/deepmind/deepmind-research/master/README.md","_readme_localurl":"deepmind~deepmind-research~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":114,"category":"nlp","githuburl":"https://github.com/allenai/allennlp","featured":null,"links":null,"description":null,"_repopath":"allenai/allennlp","_reponame":"allennlp","_stars":11404,"_forks":2241,"_watches":281,"_language":"Python","_homepage":"http://www.allennlp.org","_description":"allennlp: An open-source NLP research library, built on PyTorch.","_organization":"allenai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-05-15T00:00:00.000Z","_age_weeks":301,"_stars_per_week":37.85,"_topics":["pytorch","nlp","natural-language-processing","deep-learning","data-science","python"],"_last_commit_date":"2022-11-22T00:00:00.000Z","_pop_contributor_count":265,"_pop_contributor_logins":["DeNeutoy","brendan-ai2@ai2","bryant1410@michigannlp","dependabot[bot]","dirkgr","epwalsh","joelgrus","matt-gardner@microsoftsemanticmachines","nelson-liu@stanfordnlp","schmmd"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ai2","michigannlp","microsoftsemanticmachines","stanfordnlp"],"_pop_contributor_orgs_raw":["@MichiganNLP","@stanfordnlp","AI2","Microsoft Semantic Machines"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.12,"_pop_updated_issues_count":8,"_pop_closed_issues_count":6,"_pop_created_since_days":70,"_pop_updated_since_days":3,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":8.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":41.6,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/allenai/allennlp/master/README.md","_readme_localurl":"allenai~allennlp~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/allenai/allennlp/master/setup.py","https://raw.githubusercontent.com/allenai/allennlp/master/pyproject.toml"],"_requirements_localurls":["allenai~allennlp~setup.py","allenai~allennlp~pyproject.toml"]},{"index":120,"category":"ml-ops","githuburl":"https://github.com/prefecthq/prefect","featured":null,"links":null,"description":null,"_repopath":"prefecthq/prefect","_reponame":"prefect","_stars":11345,"_forks":1128,"_watches":154,"_language":"Python","_homepage":"https://prefect.io","_description":"prefect: The easiest way to coordinate your dataflow","_organization":"prefecthq","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-06-29T00:00:00.000Z","_age_weeks":242,"_stars_per_week":46.74,"_topics":["python","workflow","data-engineering","data-science","workflow-engine","prefect","infrastructure","ml-ops","data-ops","automation","orchestration","orion","data","observability","pipeline"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":128,"_pop_contributor_logins":["anticorrelator","cicdw@prefecthq","jlowin@prefecthq","madkinsz@prefect","peytonrunyan","pleek91","stackoverfloweth","tpdorsey@prefect.io","zangell44@prefect","znicholasbrown"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["prefect","prefect.io","prefecthq"],"_pop_contributor_orgs_raw":["@PrefectHQ ","Prefect","Prefect.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":106.08,"_pop_updated_issues_count":1372,"_pop_closed_issues_count":1022,"_pop_created_since_days":57,"_pop_updated_since_days":0,"_pop_recent_releases_count":55,"_pop_recent_releases_estimated_tags":36,"_pop_recent_releases_adjusted_count":55,"_pop_issue_count":1370.0,"_pop_comment_count":2479.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":58.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/prefecthq/prefect/master/README.md","_readme_localurl":"prefecthq~prefect~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/prefecthq/prefect/master/requirements.txt","https://raw.githubusercontent.com/prefecthq/prefect/master/setup.py","https://raw.githubusercontent.com/prefecthq/prefect/master/pyproject.toml"],"_requirements_localurls":["prefecthq~prefect~requirements.txt","prefecthq~prefect~setup.py","prefecthq~prefect~pyproject.toml"]},{"index":320,"category":"gui","githuburl":"https://github.com/pysimplegui/pysimplegui","featured":1.0,"links":null,"description":null,"_repopath":"pysimplegui/pysimplegui","_reponame":"PySimpleGUI","_stars":11261,"_forks":1674,"_watches":218,"_language":"Python","_homepage":"","_description":"PySimpleGUI: Launched in 2018. It's 2023 and PySimpleGUI is actively developed & supported. Create complex windows simply. Supports tkinter, Qt, WxPython, Remi (in browser). Create GUI applications trivially with a full set of widgets. Multi-Window applications are also simple. 3.4 to 3.11 supported. 325+ Demo programs & Cookbook for rapid start. Extensive docs","_organization":"pysimplegui","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-07-11T00:00:00.000Z","_age_weeks":241,"_stars_per_week":46.73,"_topics":["pysimplegui","gui-framework","python","tkinter","tkinter-python","tkinter-gui","wxpython","pyside2","qt","qt-gui","remi","gui","gui-window","gui-programming","datavisualization","games","beginner-friendly","systemtray","python-gui","user-interface"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":18,"_pop_contributor_logins":["AltoRetrato","Chr0nicT","JorjMcKie","MikeTheWatchGuy","PySimpleGUI@pysimplegui","cclauss@christianclauss","deajan@netperfect","jackyOO7","jason990420","mikeckennedy@talkpython"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["christianclauss","netperfect","pysimplegui","talkpython"],"_pop_contributor_orgs_raw":["Christian Clauss","NetPerfect","PySimpleGUI","Talk Python"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.0,"_pop_updated_issues_count":235,"_pop_closed_issues_count":204,"_pop_created_since_days":56,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":235.0,"_pop_comment_count":746.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.2,"_pop_dependents_count":0,"_pop_score":46.61,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/pysimplegui/pysimplegui/master/readme.md","_readme_localurl":"pysimplegui~pysimplegui~readme.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pysimplegui/pysimplegui/master/setup.py"],"_requirements_localurls":["pysimplegui~pysimplegui~setup.py"]},{"index":192,"category":"template","githuburl":"https://github.com/tiangolo/full-stack-fastapi-postgresql","featured":null,"links":null,"description":null,"_repopath":"tiangolo/full-stack-fastapi-postgresql","_reponame":"full-stack-fastapi-postgresql","_stars":11160,"_forks":2035,"_watches":182,"_language":"Python","_homepage":null,"_description":"full-stack-fastapi-postgresql: Full stack, modern web application generator. Using FastAPI, PostgreSQL as database, Docker, automatic HTTPS and more.","_organization":"tiangolo","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-02-23T00:00:00.000Z","_age_weeks":208,"_stars_per_week":53.51,"_topics":["python","python3","json","json-schema","docker","postgresql","frontend","backend","fastapi","traefik","letsencrypt","swagger","celery","jwt","vue","vuex","cookiecutter","openapi","openapi3","pgadmin"],"_last_commit_date":"2020-06-05T00:00:00.000Z","_pop_contributor_count":17,"_pop_contributor_logins":["RCheese@messagg","abhisheksms","airibarne@dribiadataresearch","ashears","br3ndonland@intelliatherapeutics","daniel-butler","dmontagu@formlogic","ebreton@cortexia","jcaguirre89","tiangolo"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cortexia","dribiadataresearch","formlogic","intelliatherapeutics","messagg"],"_pop_contributor_orgs_raw":["Cortexia","Dribia Data Research","Formlogic","Intellia Therapeutics","MessAgg"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":55,"_pop_closed_issues_count":19,"_pop_created_since_days":49,"_pop_updated_since_days":33,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":55.0,"_pop_comment_count":40.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":26.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/full-stack-fastapi-postgresql/master/README.md","_readme_localurl":"tiangolo~full-stack-fastapi-postgresql~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":1,"category":"data","githuburl":"https://github.com/apache/arrow","featured":null,"links":null,"description":null,"_repopath":"apache/arrow","_reponame":"arrow","_stars":11126,"_forks":2745,"_watches":343,"_language":"C++","_homepage":"https://arrow.apache.org/","_description":"arrow: Apache Arrow is a multi-language toolbox for accelerated data interchange and in-memory processing","_organization":"apache","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-02-17T00:00:00.000Z","_age_weeks":366,"_stars_per_week":30.4,"_topics":["arrow"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":1017,"_pop_contributor_logins":["andygrove@nvidia","bkietz@voltrondata","jorisvandenbossche","kou@clear-code","kszucs@voltron-data/ursa-computing","lidavidm","nealrichardson","pitrou","wesm@voltrondata","xhochy@quantco"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["clear-code","nvidia","quantco","voltron-data/ursa-computing","voltrondata"],"_pop_contributor_orgs_raw":["@Quantco ","@clear-code","@voltron-data / @ursa-computing","@voltrondata","@voltrondata ","NVIDIA"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":41.1,"_pop_updated_issues_count":12762,"_pop_closed_issues_count":11288,"_pop_created_since_days":85,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":12762.0,"_pop_comment_count":30000.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":66.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apache/arrow/master/README.md","_readme_localurl":"apache~arrow~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":190,"category":"ml-dl","githuburl":"https://github.com/dmlc/dgl","featured":null,"links":null,"description":null,"_repopath":"dmlc/dgl","_reponame":"dgl","_stars":11119,"_forks":2708,"_watches":174,"_language":"Python","_homepage":"http://dgl.ai","_description":"dgl: Python package built to ease deep learning on graph, on top of existing DL frameworks.","_organization":"dmlc","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-04-20T00:00:00.000Z","_age_weeks":252,"_stars_per_week":44.0,"_topics":["deep-learning","graph-neural-networks"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":249,"_pop_contributor_logins":["BarclayII@awsshanghai","Rhett-Ying","VoVAllen@tensorchord","aksnzhy","classicsong@amazon","frozenbugs@amazon","jermainewang@newyorkuniversity","mufeili@awsailabshanghai","yzh119@uwsampl","zheng-da@aws"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazon","aws","awsailabshanghai","awsshanghai","newyorkuniversity","tensorchord","uwsampl"],"_pop_contributor_orgs_raw":["@tensorchord ","@uwsampl ","AWS","AWS AI Lab Shanghai","AWS Shanghai","Amazon","New York University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.0,"_pop_updated_issues_count":600,"_pop_closed_issues_count":451,"_pop_created_since_days":59,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":600.0,"_pop_comment_count":2587.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.3,"_pop_dependents_count":0,"_pop_score":59.94,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dmlc/dgl/master/README.md","_readme_localurl":"dmlc~dgl~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dmlc/dgl/master/pyproject.toml"],"_requirements_localurls":["dmlc~dgl~pyproject.toml"]},{"index":122,"category":"data","githuburl":"https://github.com/iterative/dvc","featured":null,"links":null,"description":null,"_repopath":"iterative/dvc","_reponame":"dvc","_stars":11109,"_forks":1031,"_watches":135,"_language":"Python","_homepage":"https://dvc.org","_description":"dvc: \ud83e\udd89Data Version Control | Git for Data & Models | ML Experiments Management","_organization":"iterative","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-03-04T00:00:00.000Z","_age_weeks":311,"_stars_per_week":35.65,"_topics":["data-science","machine-learning","reproducibility","data-version-control","git","developer-tools","collaboration","ai","python","hacktoberfest"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":281,"_pop_contributor_logins":["Suor","casperdcl","daavoo@iterative","dependabot[bot]","dmpetrov@iterative.ai","efiop@iterative","karajan1001","pared","pmrowla","skshetry"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["iterative","iterative.ai"],"_pop_contributor_orgs_raw":["@iterative","@iterative ","iterative.ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":21.83,"_pop_updated_issues_count":680,"_pop_closed_issues_count":495,"_pop_created_since_days":73,"_pop_updated_since_days":0,"_pop_recent_releases_count":65,"_pop_recent_releases_estimated_tags":72,"_pop_recent_releases_adjusted_count":65,"_pop_issue_count":680.0,"_pop_comment_count":1563.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":56.6,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/iterative/dvc/master/README.rst","_readme_localurl":"iterative~dvc~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/iterative/dvc/master/pyproject.toml"],"_requirements_localurls":["iterative~dvc~pyproject.toml"]},{"index":759,"category":"diffusion","githuburl":"https://github.com/invoke-ai/invokeai","featured":null,"links":null,"description":null,"_repopath":"invoke-ai/invokeai","_reponame":"InvokeAI","_stars":11021,"_forks":1268,"_watches":127,"_language":"Jupyter Notebook","_homepage":"https://invoke-ai.github.io/InvokeAI/","_description":"InvokeAI is a leading creative engine for Stable Diffusion models, empowering professionals, artists, and enthusiasts to generate and create visual media using the latest AI-driven technologies. The solution offers an industry leading WebUI, supports terminal use through a CLI, and serves as the foundation for multiple commercial products.","_organization":"invoke-ai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-08-17T00:00:00.000Z","_age_weeks":27,"_stars_per_week":408.19,"_topics":["ai-art","artificial-intelligence","generative-art","image-generation","img2img","inpainting","latent-diffusion","linux","macos","outpainting","txt2img","windows","stable-diffusion"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":177,"_pop_contributor_logins":["Oceanswave@baristalabs","blessedcoolant","cmdr2","damian0815","ebr@brodsky.dev","keturn","lstein@ontarioinstituteforcancerresearch","mauwii@ares-consulting","psychedelicious","santisbon"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ares-consulting","baristalabs","brodsky.dev","ontarioinstituteforcancerresearch"],"_pop_contributor_orgs_raw":["@ARES-Consulting","@BaristaLabs ","Ontario Institute for Cancer Research","brodsky.dev"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":47.02,"_pop_updated_issues_count":1130,"_pop_closed_issues_count":713,"_pop_created_since_days":6,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":176,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":1130.0,"_pop_comment_count":3239.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":0,"_pop_score":53.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/invoke-ai/invokeai/master/README.md","_readme_localurl":"invoke-ai~invokeai~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/invoke-ai/invokeai/master/pyproject.toml"],"_requirements_localurls":["invoke-ai~invokeai~pyproject.toml"]},{"index":79,"category":"ml","githuburl":"https://github.com/scipy/scipy","featured":null,"links":null,"description":null,"_repopath":"scipy/scipy","_reponame":"scipy","_stars":10859,"_forks":4598,"_watches":344,"_language":"Python","_homepage":"https://scipy.org","_description":"SciPy library main repository","_organization":"scipy","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2011-03-09T00:00:00.000Z","_age_weeks":624,"_stars_per_week":17.4,"_topics":["python","scipy","algorithms","closember","scientific-computing"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":1425,"_pop_contributor_logins":["WarrenWeckesser","alexbrc","andyfaff","cournape@mercarijp","ev-br","mdhaber","pv","rgommers@quansight","teoliphant@quansight,openteams","tylerjereddy@lanl"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["lanl","mercarijp","quansight","quansight,openteams"],"_pop_contributor_orgs_raw":["LANL","Mercari JP","Quansight","Quansight, OpenTeams"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":29.85,"_pop_updated_issues_count":1113,"_pop_closed_issues_count":685,"_pop_created_since_days":146,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":1114.0,"_pop_comment_count":3048.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":0,"_pop_score":65.05,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/scipy/scipy/master/README.rst","_readme_localurl":"scipy~scipy~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scipy/scipy/master/setup.py","https://raw.githubusercontent.com/scipy/scipy/master/pyproject.toml"],"_requirements_localurls":["scipy~scipy~setup.py","scipy~scipy~pyproject.toml"]},{"index":218,"category":"ml","githuburl":"https://github.com/spotify/annoy","featured":null,"links":null,"description":null,"_repopath":"spotify/annoy","_reponame":"annoy","_stars":10785,"_forks":1072,"_watches":325,"_language":"C++","_homepage":null,"_description":"annoy: Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk","_organization":"spotify","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2013-04-01T00:00:00.000Z","_age_weeks":516,"_stars_per_week":20.89,"_topics":["c-plus-plus","python","nearest-neighbor-search","locality-sensitive-hashing","approximate-nearest-neighbor-search","golang","lua"],"_last_commit_date":"2022-10-27T00:00:00.000Z","_pop_contributor_count":82,"_pop_contributor_logins":["LTLA@genentech","ReneHollander@google","berkerpeksag","chdsbd","eddelbuettel","erikbern","novoselrok","psobot@spotify","starius","tjrileywisc"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["genentech","google","spotify"],"_pop_contributor_orgs_raw":["@Genentech","@spotify","Google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":15,"_pop_closed_issues_count":7,"_pop_created_since_days":120,"_pop_updated_since_days":4,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":15.0,"_pop_comment_count":34.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":36.67,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/spotify/annoy/master/README.rst","_readme_localurl":"spotify~annoy~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/spotify/annoy/master/setup.py"],"_requirements_localurls":["spotify~annoy~setup.py"]},{"index":11,"category":"perf","githuburl":"https://github.com/dask/dask","featured":null,"links":null,"description":null,"_repopath":"dask/dask","_reponame":"dask","_stars":10752,"_forks":1595,"_watches":215,"_language":"Python","_homepage":"https://dask.org","_description":"dask: Parallel computing with task scheduling","_organization":"dask","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-01-04T00:00:00.000Z","_age_weeks":424,"_stars_per_week":25.33,"_topics":["dask","python","pydata","numpy","pandas","scikit-learn","scipy"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":577,"_pop_contributor_logins":["TomAugspurger@microsoft","cowlicks","jakirkham","jcrist@voltrondata","jrbourbeau@coiled","jsignell@azavea","martindurant@anaconda","mrocklin@coiled","rjzamora@nvidia","sinhrks"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","azavea","coiled","microsoft","nvidia","voltrondata"],"_pop_contributor_orgs_raw":["@NVIDIA","@azavea","@coiled ","@microsoft","@voltrondata","Anaconda, inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.5,"_pop_updated_issues_count":377,"_pop_closed_issues_count":210,"_pop_created_since_days":99,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":32,"_pop_recent_releases_adjusted_count":32,"_pop_issue_count":377.0,"_pop_comment_count":785.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":61.05,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dask/dask/master/README.rst","_readme_localurl":"dask~dask~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dask/dask/master/setup.py"],"_requirements_localurls":["dask~dask~setup.py"]},{"index":780,"category":"diffusion","githuburl":"https://github.com/huggingface/diffusers","featured":null,"links":null,"description":null,"_repopath":"huggingface/diffusers","_reponame":"diffusers","_stars":10685,"_forks":2095,"_watches":117,"_language":"Python","_homepage":"https://huggingface.co/docs/diffusers","_description":"\ud83e\udd17 Diffusers: State-of-the-art diffusion models for image and audio generation in PyTorch","_organization":"huggingface","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-05-30T00:00:00.000Z","_age_weeks":38,"_stars_per_week":279.09,"_topics":["deep-learning","diffusion","image-generation","pytorch","score-based-generative-modeling","image2image","text2image","stable-diffusion","hacktoberfest"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":229,"_pop_contributor_logins":["anton-l@huggingface","daspartho","kashif","natolambert","patil-suraj@huggingface","patrickvonplaten","pcuenca","sayakpaul@huggingface","shirayu@megagonlabs","williamberman"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["huggingface","megagonlabs"],"_pop_contributor_orgs_raw":["@huggingface","@megagonlabs","Hugging Face","Huggingface"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":32.5,"_pop_updated_issues_count":1324,"_pop_closed_issues_count":1064,"_pop_created_since_days":9,"_pop_updated_since_days":0,"_pop_recent_releases_count":29,"_pop_recent_releases_estimated_tags":46,"_pop_recent_releases_adjusted_count":29,"_pop_issue_count":1324.0,"_pop_comment_count":4777.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.6,"_pop_dependents_count":0,"_pop_score":54.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/diffusers/master/README.md","_readme_localurl":"huggingface~diffusers~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/diffusers/master/setup.py","https://raw.githubusercontent.com/huggingface/diffusers/master/pyproject.toml"],"_requirements_localurls":["huggingface~diffusers~setup.py","huggingface~diffusers~pyproject.toml"]},{"index":857,"category":"viz","githuburl":"https://github.com/visgl/deck.gl","featured":null,"links":null,"description":null,"_repopath":"visgl/deck.gl","_reponame":"deck.gl","_stars":10616,"_forks":1930,"_watches":1721,"_language":"JavaScript","_homepage":"https://deck.gl","_description":"deck.gl: WebGL2 powered visualization framework","_organization":"visgl","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-12-15T00:00:00.000Z","_age_weeks":375,"_stars_per_week":28.3,"_topics":["webgl","data-visualization","javascript","visualization","python","geospatial-analysis","maps"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":216,"_pop_contributor_logins":["1chandu","Pessimistress","ajduberstein","alasarr@carto","felixpalmer","georgios-uber@uber","gnavvy@metaplatforms","heshan0131","ibgreen@foursquare","jianhuang01"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["carto","foursquare","metaplatforms","uber"],"_pop_contributor_orgs_raw":["Carto","Foursquare","Meta Platforms, Inc.","Uber"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.92,"_pop_updated_issues_count":196,"_pop_closed_issues_count":151,"_pop_created_since_days":88,"_pop_updated_since_days":0,"_pop_recent_releases_count":56,"_pop_recent_releases_estimated_tags":73,"_pop_recent_releases_adjusted_count":56,"_pop_issue_count":196.0,"_pop_comment_count":269.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":54.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/visgl/deck.gl/master/README.md","_readme_localurl":"visgl~deck.gl~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":72,"category":"util","githuburl":"https://github.com/python-pillow/pillow","featured":null,"links":null,"description":null,"_repopath":"python-pillow/pillow","_reponame":"Pillow","_stars":10535,"_forks":1983,"_watches":216,"_language":"Python","_homepage":"https://python-pillow.org","_description":"Pillow: Python Imaging Library (Fork)","_organization":"python-pillow","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-07-24T00:00:00.000Z","_age_weeks":552,"_stars_per_week":19.08,"_topics":["c","cross-platform","pil","pillow","python","python-3","image-processing","image"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":427,"_pop_contributor_logins":["DWesl","aclark4life@aclark.net","cgohlke","homm@uploadcare","hugovk@nordsoftware","jdufresne@pioneervalleybooks","mergify[bot]","nulano","radarhere","wiredfool"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aclark.net","nordsoftware","pioneervalleybooks","uploadcare"],"_pop_contributor_orgs_raw":["ACLARK.NET, LLC","Nord Software","Pioneer Valley Books","Uploadcare"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":18.71,"_pop_updated_issues_count":311,"_pop_closed_issues_count":246,"_pop_created_since_days":129,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":311.0,"_pop_comment_count":590.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":56.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python-pillow/pillow/master/README.md","_readme_localurl":"python-pillow~pillow~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/python-pillow/pillow/master/setup.py"],"_requirements_localurls":["python-pillow~pillow~setup.py"]},{"index":173,"category":"term","githuburl":"https://github.com/tiangolo/typer","featured":1.0,"links":null,"description":null,"_repopath":"tiangolo/typer","_reponame":"typer","_stars":10494,"_forks":424,"_watches":67,"_language":"Python","_homepage":"https://typer.tiangolo.com/","_description":"Typer, build great CLIs. Easy to code. Based on Python type hints.","_organization":"tiangolo","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-12-24T00:00:00.000Z","_age_weeks":165,"_stars_per_week":63.54,"_topics":["cli","click","python3","typehints","terminal","shell","python","typer"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":32,"_pop_contributor_logins":["IamCathal","briancohan@pbdtools","cgabard@papernest","dependabot[bot]","mariacamilagl","mrcartoonster@lofidynamics","pre-commit-ci[bot]","theMarix@blueyondergmbh","tiangolo","victorphoenix3@bloomberg"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bloomberg","blueyondergmbh","lofidynamics","papernest","pbdtools"],"_pop_contributor_orgs_raw":["@bloomberg","@papernest ","Blue Yonder GmbH","PBD Tools LLC","lofi dynamics LLC"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.83,"_pop_updated_issues_count":127,"_pop_closed_issues_count":35,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":127.0,"_pop_comment_count":194.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":42.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/typer/master/README.md","_readme_localurl":"tiangolo~typer~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tiangolo/typer/master/pyproject.toml"],"_requirements_localurls":["tiangolo~typer~pyproject.toml"]},{"index":110,"category":"ml-interpretability","githuburl":"https://github.com/marcotcr/lime","featured":null,"links":null,"description":null,"_repopath":"marcotcr/lime","_reponame":"lime","_stars":10436,"_forks":1704,"_watches":270,"_language":"JavaScript","_homepage":"","_description":"Lime: Explaining the predictions of any machine learning classifier","_organization":"marcotcr","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-03-15T00:00:00.000Z","_age_weeks":362,"_stars_per_week":28.82,"_topics":[],"_last_commit_date":"2021-07-29T00:00:00.000Z","_pop_contributor_count":62,"_pop_contributor_logins":["aikramer2@system1","desilinguist@educationaltestingservice","dhimmel@related-sciences","dyanni3","echo66","elacx","jamesmyatt@capgeminiengineering","marcotcr","nicolewhite","sokollip"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["capgeminiengineering","educationaltestingservice","related-sciences","system1"],"_pop_contributor_orgs_raw":["@related-sciences","Capgemini Engineering","Educational Testing Service","System1"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":16,"_pop_closed_issues_count":4,"_pop_created_since_days":84,"_pop_updated_since_days":19,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":16.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":30.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/marcotcr/lime/master/README.md","_readme_localurl":"marcotcr~lime~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/marcotcr/lime/master/setup.py"],"_requirements_localurls":["marcotcr~lime~setup.py"]},{"index":427,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/detr","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/detr","_reponame":"detr","_stars":10436,"_forks":1918,"_watches":149,"_language":"Python","_homepage":null,"_description":"detr: End-to-End Object Detection with Transformers","_organization":"facebookresearch","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-05-26T00:00:00.000Z","_age_weeks":143,"_stars_per_week":72.91,"_topics":[],"_last_commit_date":"2023-02-07T00:00:00.000Z","_pop_contributor_count":26,"_pop_contributor_logins":["AniKar@universityofbonn","DanielFennhagen","alexander-kirillov@facebookairesearch","dcyoung@scansemoffettdatadetectlabs","dmitryvinn@engineeringmanagerai/mlmeta","fatihbaltaci@ddosify","fmassa@facebookaireseach","lessw2020","szagoruyko@mtsai","zhiqwang@axera"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["axera","ddosify","engineeringmanagerai/mlmeta","facebookaireseach","facebookairesearch","mtsai","scansemoffettdatadetectlabs","universityofbonn"],"_pop_contributor_orgs_raw":["@ddosify","@scanse @MoffettData @detectlabs","Engineering Manager AI/ML@Meta","Facebook AI Reseach","Facebook AI Research","MTS AI","University of Bonn","axera"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":37,"_pop_closed_issues_count":11,"_pop_created_since_days":33,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":37.0,"_pop_comment_count":43.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":36.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/detr/master/README.md","_readme_localurl":"facebookresearch~detr~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/detr/master/requirements.txt"],"_requirements_localurls":["facebookresearch~detr~requirements.txt"]},{"index":50,"category":"viz","githuburl":"https://github.com/mwaskom/seaborn","featured":null,"links":null,"description":null,"_repopath":"mwaskom/seaborn","_reponame":"seaborn","_stars":10370,"_forks":1703,"_watches":253,"_language":"Python","_homepage":"https://seaborn.pydata.org","_description":"seaborn: Statistical data visualization in Python","_organization":"mwaskom","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-06-18T00:00:00.000Z","_age_weeks":557,"_stars_per_week":18.61,"_topics":["python","data-visualization","data-science","matplotlib","pandas"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":186,"_pop_contributor_logins":["JWarmenhoven","MaozGelbart","TomAugspurger@microsoft","dcgemperline","joelostblom@universityofbritishcolumbia","lukauskas","mwaskom","olgabot@bridgebioanalytics","phobson@coiled","yarikoptic@dartmouthcollege,debian,datalad,pymvpa,fail2ban"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bridgebioanalytics","coiled","dartmouthcollege,debian,datalad,pymvpa,fail2ban","microsoft","universityofbritishcolumbia"],"_pop_contributor_orgs_raw":["@BridgeBioAnalytics ","@coiled","@microsoft","Dartmouth College, @Debian, @DataLad, @PyMVPA, @fail2ban","University of British Columbia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.92,"_pop_updated_issues_count":139,"_pop_closed_issues_count":117,"_pop_created_since_days":130,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":139.0,"_pop_comment_count":281.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":53.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mwaskom/seaborn/master/README.md","_readme_localurl":"mwaskom~seaborn~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mwaskom/seaborn/master/pyproject.toml"],"_requirements_localurls":["mwaskom~seaborn~pyproject.toml"]},{"index":166,"category":"sim","githuburl":"https://github.com/bulletphysics/bullet3","featured":null,"links":null,"description":null,"_repopath":"bulletphysics/bullet3","_reponame":"bullet3","_stars":10260,"_forks":2659,"_watches":405,"_language":"C++","_homepage":"http://bulletphysics.org","_description":"bullet3: Bullet Physics SDK: real-time collision detection and multi-physics simulation for VR, games, visual effects, robotics, machine learning etc.","_organization":"bulletphysics","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2011-04-12T00:00:00.000Z","_age_weeks":619,"_stars_per_week":16.57,"_topics":["simulation","robotics","kinematics","virtual-reality","reinforcement-learning","computer-animation","game-development","simulator","pybullet"],"_last_commit_date":"2022-09-25T00:00:00.000Z","_pop_contributor_count":299,"_pop_contributor_logins":["BlGene","NiranthS","YunfeiBai","benelot@idsc.io","erwincoumans","fuchuyuan","jyc-n","lunkhound","nicolaichuk","xhan0619@ucla"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["idsc.io","ucla"],"_pop_contributor_orgs_raw":["IDSC.io","UCLA"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.87,"_pop_updated_issues_count":44,"_pop_closed_issues_count":12,"_pop_created_since_days":144,"_pop_updated_since_days":5,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":44.0,"_pop_comment_count":40.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":38.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bulletphysics/bullet3/master/README.md","_readme_localurl":"bulletphysics~bullet3~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bulletphysics/bullet3/master/setup.py"],"_requirements_localurls":["bulletphysics~bullet3~setup.py"]},{"index":60,"category":"pandas","githuburl":"https://github.com/pandas-profiling/pandas-profiling","featured":1.0,"links":null,"description":null,"_repopath":"pandas-profiling/pandas-profiling","_reponame":"ydata-profiling","_stars":10206,"_forks":1437,"_watches":150,"_language":"Python","_homepage":"https://ydata-profiling.ydata.ai","_description":"ydata-profiling: Create HTML profiling reports from pandas DataFrame objects","_organization":"pandas-profiling","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-01-09T00:00:00.000Z","_age_weeks":371,"_stars_per_week":27.47,"_topics":["pandas-profiling","pandas-dataframe","statistics","jupyter-notebook","exploration","data-science","python","pandas","machine-learning","deep-learning","exploratory-data-analysis","eda","data-quality","html-report","data-exploration","data-analysis","jupyter","big-data-analytics","data-profiling","hacktoberfest"],"_last_commit_date":"2023-01-30T00:00:00.000Z","_pop_contributor_count":108,"_pop_contributor_logins":["JosPolfliet@metamaze","alexbarros","aquemy@ydataai","dependabot-preview[bot]","dependabot[bot]","fabclmnt@ydataai","loopyme@cqu-ai","romainx","sbrugman","vascoalramos@ydataai"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cqu-ai","metamaze","ydataai"],"_pop_contributor_orgs_raw":["@CQU-AI ","@Metamaze","@ydataai","@ydataai "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.96,"_pop_updated_issues_count":142,"_pop_closed_issues_count":96,"_pop_created_since_days":87,"_pop_updated_since_days":1,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":142.0,"_pop_comment_count":167.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":46.13,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pandas-profiling/pandas-profiling/master/README.md","_readme_localurl":"pandas-profiling~pandas-profiling~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pandas-profiling/pandas-profiling/master/requirements.txt","https://raw.githubusercontent.com/pandas-profiling/pandas-profiling/master/setup.py"],"_requirements_localurls":["pandas-profiling~pandas-profiling~requirements.txt","pandas-profiling~pandas-profiling~setup.py"]},{"index":536,"category":"profiling","githuburl":"https://github.com/bloomberg/memray","featured":1.0,"links":null,"description":null,"_repopath":"bloomberg/memray","_reponame":"memray","_stars":10133,"_forks":279,"_watches":52,"_language":"Python","_homepage":"https://bloomberg.github.io/memray/","_description":"Memray is a memory profiler for Python","_organization":"bloomberg","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-04-08T00:00:00.000Z","_age_weeks":45,"_stars_per_week":221.66,"_topics":["memory","memory-leak","memory-leak-detection","memory-profiler","profiler","python","python3","hacktoberfest"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":22,"_pop_contributor_logins":["chaimhaas@bloomberg","dependabot[bot]","godlygeek","lkollar@bloomberg","matthiasdiener@researchscientistuiuc-pplillinois-ceesd","pablogsal@bloomberg","pradyunsg@bloombergpythoninfrastructure","q-posev@qubitpharmaceuticals","tal66","tonybaloney@microsoft"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bloomberg","bloombergpythoninfrastructure","microsoft","qubitpharmaceuticals","researchscientistuiuc-pplillinois-ceesd"],"_pop_contributor_orgs_raw":["@Bloomberg","@bloomberg","@bloomberg Python Infrastructure","Microsoft","Qubit Pharmaceuticals","Research Scientist @UIUC-PPL @illinois-ceesd"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.46,"_pop_updated_issues_count":68,"_pop_closed_issues_count":51,"_pop_created_since_days":11,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":68.0,"_pop_comment_count":85.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":40.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bloomberg/memray/master/README.md","_readme_localurl":"bloomberg~memray~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/bloomberg/memray/master/setup.py","https://raw.githubusercontent.com/bloomberg/memray/master/pyproject.toml"],"_requirements_localurls":["bloomberg~memray~setup.py","bloomberg~memray~pyproject.toml"]},{"index":805,"category":"web","githuburl":"https://github.com/encode/httpx","featured":null,"links":null,"description":null,"_repopath":"encode/httpx","_reponame":"httpx","_stars":10079,"_forks":666,"_watches":112,"_language":"Python","_homepage":"https://www.python-httpx.org/","_description":"httpx: A next generation HTTP client for Python. \ud83e\udd8b","_organization":"encode","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-04-04T00:00:00.000Z","_age_weeks":202,"_stars_per_week":49.69,"_topics":["python","http","trio","asyncio"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":186,"_pop_contributor_logins":["JayH5@yelp","Kludex@encode","adriangb","cdeler@amazon","dependabot[bot]","florimondmanca","j178","jcugat","sethmlarson@elastic","tomchristie@encodeoss"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazon","elastic","encode","encodeoss","yelp"],"_pop_contributor_orgs_raw":["@elastic","@encode","Amazon","Encode OSS","Yelp"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.04,"_pop_updated_issues_count":118,"_pop_closed_issues_count":95,"_pop_created_since_days":47,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":20,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":118.0,"_pop_comment_count":179.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":48.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/encode/httpx/master/README.md","_readme_localurl":"encode~httpx~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/encode/httpx/master/requirements.txt","https://raw.githubusercontent.com/encode/httpx/master/pyproject.toml"],"_requirements_localurls":["encode~httpx~requirements.txt","encode~httpx~pyproject.toml"]},{"index":87,"category":"math","githuburl":"https://github.com/sympy/sympy","featured":1.0,"links":null,"description":null,"_repopath":"sympy/sympy","_reponame":"sympy","_stars":10062,"_forks":3854,"_watches":285,"_language":"Python","_homepage":"https://sympy.org/","_description":"sympy: A computer algebra system written in pure Python","_organization":"sympy","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2010-04-30T00:00:00.000Z","_age_weeks":668,"_stars_per_week":15.05,"_topics":["python","math","computer-algebra","science","hacktoberfest"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":1200,"_pop_contributor_logins":["Upabjojr","asmeurer@quansight","certik@gsitechnology","jksuom","mattpap","oscarbenjamin","oscargus","skirpichev","smichr","sylee957"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["gsitechnology","quansight"],"_pop_contributor_orgs_raw":["@Quansight ","GSI Technology"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":41.6,"_pop_updated_issues_count":632,"_pop_closed_issues_count":354,"_pop_created_since_days":156,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":632.0,"_pop_comment_count":2771.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.4,"_pop_dependents_count":0,"_pop_score":62.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sympy/sympy/master/README.md","_readme_localurl":"sympy~sympy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sympy/sympy/master/setup.py","https://raw.githubusercontent.com/sympy/sympy/master/pyproject.toml"],"_requirements_localurls":["sympy~sympy~setup.py","sympy~sympy~pyproject.toml"]},{"index":645,"category":"util","githuburl":"https://github.com/pyinstaller/pyinstaller","featured":null,"links":null,"description":null,"_repopath":"pyinstaller/pyinstaller","_reponame":"pyinstaller","_stars":10045,"_forks":1861,"_watches":232,"_language":"Python","_homepage":"http://www.pyinstaller.org","_description":"pyinstaller: Freeze (package) Python programs into stand-alone executables","_organization":"pyinstaller","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2011-11-23T00:00:00.000Z","_age_weeks":587,"_stars_per_week":17.11,"_topics":["python","python-3","bundle","package","pyinstaller","python-to-exe","py2exe","py2app"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":446,"_pop_contributor_logins":["Legorooj","bjones1@mississippistateuniversity","bwoodsend","codewarrior0","htgoebel","matysek","naufraghi@develersrl","pyup-bot@pyupio","rasky@develers.r.l.","rokm"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["develers.r.l.","develersrl","mississippistateuniversity","pyupio"],"_pop_contributor_orgs_raw":["@develersrl","@pyupio","Develer S.r.l.","Mississippi State University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.08,"_pop_updated_issues_count":280,"_pop_closed_issues_count":249,"_pop_created_since_days":137,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":280.0,"_pop_comment_count":365.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":56.03,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyinstaller/pyinstaller/master/README.rst","_readme_localurl":"pyinstaller~pyinstaller~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyinstaller/pyinstaller/master/requirements.txt","https://raw.githubusercontent.com/pyinstaller/pyinstaller/master/setup.py","https://raw.githubusercontent.com/pyinstaller/pyinstaller/master/pyproject.toml"],"_requirements_localurls":["pyinstaller~pyinstaller~requirements.txt","pyinstaller~pyinstaller~setup.py","pyinstaller~pyinstaller~pyproject.toml"]},{"index":24,"category":"ml","githuburl":"https://github.com/google/dopamine","featured":null,"links":null,"description":null,"_repopath":"google/dopamine","_reponame":"dopamine","_stars":10018,"_forks":1339,"_watches":442,"_language":"Jupyter Notebook","_homepage":"https://github.com/google/dopamine","_description":"Dopamine is a research framework for fast prototyping of reinforcement learning algorithms. ","_organization":"google","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-07-26T00:00:00.000Z","_age_weeks":238,"_stars_per_week":41.94,"_topics":["rl","ml","ai","google","tensorflow"],"_last_commit_date":"2022-11-28T00:00:00.000Z","_pop_contributor_count":15,"_pop_contributor_logins":["agarwl@google","avassalotti@google","btaba","cwhsu-google@google","evcu@google","jingconan@storytell.ai","joshgreaves@google","psc-g@google","smoitra-g@googlebrain","tlwillke"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","googlebrain","storytell.ai"],"_pop_contributor_orgs_raw":["@google","@google ","Google","Google Brain","Google LLC","Storytell.ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":56,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":27.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/dopamine/master/README.md","_readme_localurl":"google~dopamine~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/dopamine/master/requirements.txt","https://raw.githubusercontent.com/google/dopamine/master/setup.py"],"_requirements_localurls":["google~dopamine~requirements.txt","google~dopamine~setup.py"]},{"index":71,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest","_reponame":"pytest","_stars":9827,"_forks":2254,"_watches":194,"_language":"Python","_homepage":"https://pytest.org","_description":"pytest: The pytest framework makes it easy to write small tests, yet scales to support complex functional testing","_organization":"pytest-dev","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-06-15T00:00:00.000Z","_age_weeks":401,"_stars_per_week":24.49,"_topics":["unit-testing","test","testing","python","hacktoberfest"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":854,"_pop_contributor_logins":["RonnyPfannschmidt@redhatinsights","The-Compiler@bruhinsoftware","asottile","benjaminp","bluetech","blueyed@freelancer,upforhire","dependabot[bot]","flub","hpk42@merlinux","nicoddemus@esss"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bruhinsoftware","esss","freelancer,upforhire","merlinux","redhatinsights"],"_pop_contributor_orgs_raw":["@RedHatInsights ","Bruhin Software","ESSS","Freelancer, up for hire","merlinux"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.25,"_pop_updated_issues_count":251,"_pop_closed_issues_count":167,"_pop_created_since_days":94,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":23,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":251.0,"_pop_comment_count":424.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":57.03,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest/master/README.rst","_readme_localurl":"pytest-dev~pytest~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest/master/setup.py","https://raw.githubusercontent.com/pytest-dev/pytest/master/pyproject.toml"],"_requirements_localurls":["pytest-dev~pytest~setup.py","pytest-dev~pytest~pyproject.toml"]},{"index":412,"category":"util","githuburl":"https://github.com/pre-commit/pre-commit","featured":null,"links":null,"description":null,"_repopath":"pre-commit/pre-commit","_reponame":"pre-commit","_stars":9809,"_forks":705,"_watches":90,"_language":"Python","_homepage":"https://pre-commit.com","_description":"pre-commit: A framework for managing and maintaining multi-language pre-commit hooks.","_organization":"pre-commit","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-03-13T00:00:00.000Z","_age_weeks":466,"_stars_per_week":21.01,"_topics":["git","pre-commit","python","linter","refactoring"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":147,"_pop_contributor_logins":["DanielChabrowski","asottile","chriskuehl@yelp","geieredgar","georgeyk","lorenzwalthert@ponte-energy-partners","pre-commit-ci[bot]","scop@upcloudltd","struys@twitter","tdeo@pennylane-hq"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["pennylane-hq","ponte-energy-partners","twitter","upcloudltd","yelp"],"_pop_contributor_orgs_raw":["@UpCloudLtd ","@Yelp","@pennylane-hq ","@ponte-energy-partners","Twitter"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.27,"_pop_updated_issues_count":192,"_pop_closed_issues_count":185,"_pop_created_since_days":109,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":20,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":192.0,"_pop_comment_count":333.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":52.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pre-commit/pre-commit/master/README.md","_readme_localurl":"pre-commit~pre-commit~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pre-commit/pre-commit/master/setup.py"],"_requirements_localurls":["pre-commit~pre-commit~setup.py"]},{"index":22,"category":"nlp","githuburl":"https://github.com/facebookresearch/parlai","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/parlai","_reponame":"ParlAI","_stars":9806,"_forks":1992,"_watches":289,"_language":"Python","_homepage":"https://parl.ai","_description":"ParlAI: A framework for training and evaluating AI models on a variety of openly available dialogue datasets.","_organization":"facebookresearch","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2017-04-24T00:00:00.000Z","_age_weeks":304,"_stars_per_week":32.23,"_topics":[],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":204,"_pop_contributor_logins":["EricMichaelSmith","JackUrb","alexholdenmiller@facebookresearch","emilydinan@facebookairesearch","jaseweston","klshuster","samhumeau@nabla","stephenroller","uralik","yf225"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebookairesearch","facebookresearch","nabla"],"_pop_contributor_orgs_raw":["@facebookresearch ","@nabla","Facebook AI Research"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.4,"_pop_updated_issues_count":107,"_pop_closed_issues_count":81,"_pop_created_since_days":71,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":107.0,"_pop_comment_count":161.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":47.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/parlai/master/README.md","_readme_localurl":"facebookresearch~parlai~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/parlai/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/parlai/master/setup.py","https://raw.githubusercontent.com/facebookresearch/parlai/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~parlai~requirements.txt","facebookresearch~parlai~setup.py","facebookresearch~parlai~pyproject.toml"]},{"index":38,"category":"jupyter","githuburl":"https://github.com/jupyter/notebook","featured":null,"links":null,"description":null,"_repopath":"jupyter/notebook","_reponame":"notebook","_stars":9789,"_forks":4013,"_watches":321,"_language":"Jupyter Notebook","_homepage":"https://jupyter-notebook.readthedocs.io/","_description":"notebook: Jupyter Interactive Notebook","_organization":"jupyter","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":410,"_stars_per_week":23.83,"_topics":["closember","jupyter","jupyter-notebook","notebook"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":623,"_pop_contributor_logins":["Carreau@quansight-labs","ellisonbg@amazonwebservices","fperez@universityofcalifornia,berkeley.","gnestor@hammiesshorts","ivanov","jasongrout@databricks","jdfreder@google","jtpio@quantstack","minrk@simularesearchlaboratory","takluyver"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazonwebservices","databricks","google","hammiesshorts","quansight-labs","quantstack","simularesearchlaboratory","universityofcalifornia,berkeley."],"_pop_contributor_orgs_raw":["@Quansight-Labs","@QuantStack","@databricks","@google ","Amazon Web Services","Hammies Shorts","Simula Research Laboratory","University of California, Berkeley."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.58,"_pop_updated_issues_count":153,"_pop_closed_issues_count":99,"_pop_created_since_days":96,"_pop_updated_since_days":0,"_pop_recent_releases_count":21,"_pop_recent_releases_estimated_tags":38,"_pop_recent_releases_adjusted_count":21,"_pop_issue_count":153.0,"_pop_comment_count":321.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":60.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/notebook/master/README.md","_readme_localurl":"jupyter~notebook~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/notebook/master/setup.py","https://raw.githubusercontent.com/jupyter/notebook/master/pyproject.toml"],"_requirements_localurls":["jupyter~notebook~setup.py","jupyter~notebook~pyproject.toml"]},{"index":653,"category":"profiling","githuburl":"https://github.com/benfred/py-spy","featured":null,"links":null,"description":null,"_repopath":"benfred/py-spy","_reponame":"py-spy","_stars":9748,"_forks":346,"_watches":111,"_language":"Rust","_homepage":"","_description":"py-spy: Sampling profiler for Python programs","_organization":"benfred","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-08-01T00:00:00.000Z","_age_weeks":238,"_stars_per_week":40.96,"_topics":["profiler","python","performance-analysis","profiling"],"_last_commit_date":"2022-12-09T00:00:00.000Z","_pop_contributor_count":31,"_pop_contributor_logins":["Jongy","adamchainz@django,djangolondon","akhramov","benfred@nvidia","dependabot[bot]","github-actions[bot]","jarus@sap","kxepal","marcstreeter","messense"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["django,djangolondon","nvidia","sap"],"_pop_contributor_orgs_raw":["@SAP ","@django, @djangolondon","@nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":31,"_pop_closed_issues_count":11,"_pop_created_since_days":56,"_pop_updated_since_days":2,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":31.0,"_pop_comment_count":25.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":33.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/benfred/py-spy/master/README.md","_readme_localurl":"benfred~py-spy~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/benfred/py-spy/master/pyproject.toml"],"_requirements_localurls":["benfred~py-spy~pyproject.toml"]},{"index":517,"category":"typing","githuburl":"https://github.com/microsoft/pyright","featured":null,"links":null,"description":null,"_repopath":"microsoft/pyright","_reponame":"pyright","_stars":9743,"_forks":810,"_watches":90,"_language":"Python","_homepage":"","_description":"pyright: Static type checker for Python","_organization":"microsoft","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-03-12T00:00:00.000Z","_age_weeks":206,"_stars_per_week":47.26,"_topics":[],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":86,"_pop_contributor_logins":["PylanceBot","bschnurr@microsoft","cdce8p","debonte@microsoft","dependabot[bot]","erictraut@microsoftcorp.","heejaechang@microsoft","jakebailey@microsoft","msfterictraut@microsoft","rchiodo@microsoft"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["microsoft","microsoftcorp."],"_pop_contributor_orgs_raw":["@Microsoft ","Microsoft","Microsoft Corp."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":21.23,"_pop_updated_issues_count":425,"_pop_closed_issues_count":410,"_pop_created_since_days":48,"_pop_updated_since_days":0,"_pop_recent_releases_count":71,"_pop_recent_releases_estimated_tags":95,"_pop_recent_releases_adjusted_count":71,"_pop_issue_count":425.0,"_pop_comment_count":1138.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":0,"_pop_score":52.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/pyright/master/README.md","_readme_localurl":"microsoft~pyright~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":315,"category":"gui","githuburl":"https://github.com/hoffstadt/dearpygui","featured":null,"links":null,"description":null,"_repopath":"hoffstadt/dearpygui","_reponame":"DearPyGui","_stars":9684,"_forks":510,"_watches":139,"_language":"C++","_homepage":"https://dearpygui.readthedocs.io/en/latest/","_description":"DearPyGui: Dear PyGui: A fast and powerful Graphical User Interface Toolkit for Python with minimal dependencies","_organization":"hoffstadt","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-05-28T00:00:00.000Z","_age_weeks":142,"_stars_per_week":67.79,"_topics":["cpp","python","imgui","toolkit","native","tools","gui","graphics","macos","linux","ui","python-gui","cross-platform","windows","dearpygui"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":56,"_pop_contributor_logins":["CodeCox","DataExplorerUser","JMatthysen@benoitpremiumthreading","Jah-On","Mstpyt","Pcothren@benoitpremiumthreading","hoffstadt@metecs","iFreilicht","liu-kan@wbg,cas","v-ein"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["benoitpremiumthreading","metecs","wbg,cas"],"_pop_contributor_orgs_raw":["Benoit Premium Threading","Metecs","WBG, CAS"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.56,"_pop_updated_issues_count":186,"_pop_closed_issues_count":134,"_pop_created_since_days":33,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":186.0,"_pop_comment_count":192.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":42.44,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hoffstadt/dearpygui/master/README.md","_readme_localurl":"hoffstadt~dearpygui~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hoffstadt/dearpygui/master/setup.py"],"_requirements_localurls":["hoffstadt~dearpygui~setup.py"]},{"index":225,"category":"util","githuburl":"https://github.com/pyodide/pyodide","featured":null,"links":null,"description":null,"_repopath":"pyodide/pyodide","_reponame":"pyodide","_stars":9631,"_forks":626,"_watches":126,"_language":"Python","_homepage":"https://pyodide.org/en/stable/","_description":"Pyodide is a Python distribution for the browser and Node.js based on WebAssembly","_organization":"pyodide","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-02-23T00:00:00.000Z","_age_weeks":260,"_stars_per_week":36.94,"_topics":["python","webassembly"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":164,"_pop_contributor_logins":["casatir@\u00e9ducationnationale","dalcde","henryiii@princetonuniversity","hoodmane@mitmathdepartment","mdboom@microsoft","msabramo@adobe","pre-commit-ci[bot]","rth","ryanking13","wlach@voltus"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["adobe","microsoft","mitmathdepartment","princetonuniversity","voltus","\u00e9ducationnationale"],"_pop_contributor_orgs_raw":["@adobe","MIT Math Department","Microsoft","Princeton University","Voltus, Inc.","\u00c9ducation Nationale"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.6,"_pop_updated_issues_count":345,"_pop_closed_issues_count":257,"_pop_created_since_days":61,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":345.0,"_pop_comment_count":622.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":55.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyodide/pyodide/master/README.md","_readme_localurl":"pyodide~pyodide~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyodide/pyodide/master/requirements.txt","https://raw.githubusercontent.com/pyodide/pyodide/master/pyproject.toml"],"_requirements_localurls":["pyodide~pyodide~requirements.txt","pyodide~pyodide~pyproject.toml"]},{"index":142,"category":"nlp","githuburl":"https://github.com/ukplab/sentence-transformers","featured":null,"links":null,"description":null,"_repopath":"ukplab/sentence-transformers","_reponame":"sentence-transformers","_stars":9457,"_forks":1858,"_watches":120,"_language":"Python","_homepage":"https://www.SBERT.net","_description":"sentence-transformers: Multilingual Sentence & Image Embeddings with BERT","_organization":"ukplab","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-07-24T00:00:00.000Z","_age_weeks":187,"_stars_per_week":50.57,"_topics":[],"_last_commit_date":"2023-01-26T00:00:00.000Z","_pop_contributor_count":107,"_pop_contributor_logins":["ArzelaAscoIi@developerdeepset-ai","NimaBoscarino@huggingface","PhilipMay@telekom","andrewkittredge@calcbench","cpcdoy","fros1y","kwang2049","nreimers@huggingface","osanseviero@huggingface","sidhantls"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["calcbench","developerdeepset-ai","huggingface","telekom"],"_pop_contributor_orgs_raw":["@telekom","Calcbench","Developer @deepset-ai","Hugging Face","Huggingface","huggingface"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.63,"_pop_updated_issues_count":134,"_pop_closed_issues_count":29,"_pop_created_since_days":44,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":134.0,"_pop_comment_count":141.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":40.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ukplab/sentence-transformers/master/README.md","_readme_localurl":"ukplab~sentence-transformers~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ukplab/sentence-transformers/master/requirements.txt","https://raw.githubusercontent.com/ukplab/sentence-transformers/master/setup.py"],"_requirements_localurls":["ukplab~sentence-transformers~requirements.txt","ukplab~sentence-transformers~setup.py"]},{"index":238,"category":"data","githuburl":"https://github.com/tiangolo/sqlmodel","featured":1.0,"links":null,"description":null,"_repopath":"tiangolo/sqlmodel","_reponame":"sqlmodel","_stars":9406,"_forks":405,"_watches":123,"_language":"Python","_homepage":"https://sqlmodel.tiangolo.com/","_description":"sqlmodel: SQL databases in Python, designed for simplicity, compatibility, and robustness.","_organization":"tiangolo","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-08-24T00:00:00.000Z","_age_weeks":78,"_stars_per_week":120.37,"_topics":["python","sql","sqlalchemy","pydantic","fastapi","json","json-schema"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":54,"_pop_contributor_logins":["Batalex","alucarddelta","aminalaee","andrewbolster@farsetlabswhitehatsec","byrman","chrisgoddard@pdi","chriswhite199","dependabot[bot]","jalvaradosegura","tiangolo"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["farsetlabswhitehatsec","pdi"],"_pop_contributor_orgs_raw":["@FarsetLabs @WhiteHatSec","PDI"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.94,"_pop_updated_issues_count":103,"_pop_closed_issues_count":27,"_pop_created_since_days":18,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":103.0,"_pop_comment_count":194.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":38.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/sqlmodel/master/README.md","_readme_localurl":"tiangolo~sqlmodel~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tiangolo/sqlmodel/master/pyproject.toml"],"_requirements_localurls":["tiangolo~sqlmodel~pyproject.toml"]},{"index":155,"category":"data","githuburl":"https://github.com/s0md3v/photon","featured":null,"links":null,"description":null,"_repopath":"s0md3v/photon","_reponame":"Photon","_stars":9406,"_forks":1377,"_watches":325,"_language":"Python","_homepage":"","_description":"Photon: Incredibly fast crawler designed for OSINT.","_organization":"s0md3v","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-03-30T00:00:00.000Z","_age_weeks":255,"_stars_per_week":36.78,"_topics":["crawler","spider","python","osint","information-gathering"],"_last_commit_date":"2022-12-20T00:00:00.000Z","_pop_contributor_count":21,"_pop_contributor_logins":["BBerastegui","alessaba","connorskees","fabaff","joeyliechty@bloomreach","neutrinoguy","oXis","s0md3v","sirfoga","snehm@na"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bloomreach","na"],"_pop_contributor_orgs_raw":["Bloomreach","NA"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":60,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":26.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/s0md3v/photon/master/README.md","_readme_localurl":"s0md3v~photon~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/s0md3v/photon/master/requirements.txt"],"_requirements_localurls":["s0md3v~photon~requirements.txt"]},{"index":655,"category":"util","githuburl":"https://github.com/magicstack/uvloop","featured":null,"links":null,"description":null,"_repopath":"magicstack/uvloop","_reponame":"uvloop","_stars":9186,"_forks":537,"_watches":226,"_language":"Cython","_homepage":"","_description":"uvloop: Ultra fast asyncio event loop.","_organization":"magicstack","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-11-08T00:00:00.000Z","_age_weeks":380,"_stars_per_week":24.15,"_topics":["asyncio","async-await","async","high-performance","libuv","python","python-3","event-loop","networking","async-python"],"_last_commit_date":"2023-01-15T00:00:00.000Z","_pop_contributor_count":56,"_pop_contributor_logins":["1st1@edgedb","Jackenmen","asvetlov@neu.ro","cclauss@christianclauss","claws","elprans@edgedb","fantix@edgedb","graingert","jensbjorgensen","jlaine"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["christianclauss","edgedb","neu.ro"],"_pop_contributor_orgs_raw":["@edgedb","Christian Clauss","EdgeDB Inc.","Neu.ro"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":12,"_pop_closed_issues_count":3,"_pop_created_since_days":89,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":12.0,"_pop_comment_count":21.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":36.44,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/magicstack/uvloop/master/README.rst","_readme_localurl":"magicstack~uvloop~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/magicstack/uvloop/master/setup.py"],"_requirements_localurls":["magicstack~uvloop~setup.py"]},{"index":371,"category":"viz","githuburl":"https://github.com/marceloprates/prettymaps","featured":null,"links":null,"description":null,"_repopath":"marceloprates/prettymaps","_reponame":"prettymaps","_stars":9068,"_forks":440,"_watches":74,"_language":"Jupyter Notebook","_homepage":"","_description":"prettymaps: A small set of Python functions to draw pretty maps from OpenStreetMap data. Based on osmnx, matplotlib and shapely libraries.","_organization":"marceloprates","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2021-03-05T00:00:00.000Z","_age_weeks":102,"_stars_per_week":88.28,"_topics":["matplotlib","jupyter-notebook","python","generative-art","cartography","maps","openstreetmap"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":15,"_pop_contributor_logins":["CharbelAD","G21-Goose","JonFreer","TheJokersThief","chrieke@up42","kinow@barcelonasupercomputingcenter","marceloprates","matthewfeickert@universityofwisconsin-madison","mfbehrens99","sacovo@studentfhnw"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["barcelonasupercomputingcenter","studentfhnw","universityofwisconsin-madison","up42"],"_pop_contributor_orgs_raw":["@up42","Barcelona Supercomputing Center","University of Wisconsin-Madison","student@FHNW"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.83,"_pop_updated_issues_count":9,"_pop_closed_issues_count":3,"_pop_created_since_days":24,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":9.0,"_pop_comment_count":17.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":32.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/marceloprates/prettymaps/master/README.md","_readme_localurl":"marceloprates~prettymaps~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/marceloprates/prettymaps/master/requirements.txt","https://raw.githubusercontent.com/marceloprates/prettymaps/master/setup.py"],"_requirements_localurls":["marceloprates~prettymaps~requirements.txt","marceloprates~prettymaps~setup.py"]},{"index":157,"category":"util","githuburl":"https://github.com/pallets/jinja","featured":null,"links":null,"description":null,"_repopath":"pallets/jinja","_reponame":"jinja","_stars":9065,"_forks":1539,"_watches":250,"_language":"Python","_homepage":"https://jinja.palletsprojects.com","_description":"jinja: A very fast and expressive template engine.","_organization":"pallets","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2010-10-17T00:00:00.000Z","_age_weeks":644,"_stars_per_week":14.07,"_topics":["python","template-engine","jinja","jinja2","templates","pallets"],"_last_commit_date":"2023-02-07T00:00:00.000Z","_pop_contributor_count":304,"_pop_contributor_logins":["ThiefMaster@cern/indico","amy-lei","birkenfeld@fzj\u00fclich","davidism","dependabot-preview[bot]","dependabot[bot]","mitsuhiko@sentry","pre-commit-ci[bot]","tux21b","untitaker@getsentry"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cern/indico","fzj\u00fclich","getsentry","sentry"],"_pop_contributor_orgs_raw":["@getsentry ","CERN / @indico ","FZ J\u00fclich","Sentry"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.29,"_pop_updated_issues_count":66,"_pop_closed_issues_count":51,"_pop_created_since_days":150,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":66.0,"_pop_comment_count":43.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":47.23,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/jinja/master/README.rst","_readme_localurl":"pallets~jinja~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/jinja/master/pyproject.toml"],"_requirements_localurls":["pallets~jinja~pyproject.toml"]},{"index":398,"category":"web","githuburl":"https://github.com/falconry/falcon","featured":null,"links":null,"description":null,"_repopath":"falconry/falcon","_reponame":"falcon","_stars":9018,"_forks":901,"_watches":267,"_language":"Python","_homepage":"https://falcon.readthedocs.io/en/stable/","_description":"falcon: The no-magic web data plane API and microservices framework for Python developers, with a focus on reliability, correctness, and performance at scale.","_organization":"falconry","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-12-06T00:00:00.000Z","_age_weeks":532,"_stars_per_week":16.92,"_topics":["python","framework","rest","microservices","web","api","http","wsgi","asgi","api-rest"],"_last_commit_date":"2023-01-18T00:00:00.000Z","_pop_contributor_count":196,"_pop_contributor_logins":["CaselIT","fxfitz@centurylink","jmvrbanac@liquidweb","kgriffs","lichray@broadcom","myusko","painterjd@.","santeyio","steven-upside","vytas7"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[".","broadcom","centurylink","liquidweb"],"_pop_contributor_orgs_raw":[".","@liquidweb","Broadcom Inc.","CenturyLink"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.06,"_pop_updated_issues_count":48,"_pop_closed_issues_count":19,"_pop_created_since_days":124,"_pop_updated_since_days":1,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":48.0,"_pop_comment_count":47.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":45.41,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/falconry/falcon/master/README.rst","_readme_localurl":"falconry~falcon~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/falconry/falcon/master/setup.py","https://raw.githubusercontent.com/falconry/falcon/master/pyproject.toml"],"_requirements_localurls":["falconry~falcon~setup.py","falconry~falcon~pyproject.toml"]},{"index":126,"category":"ml-dl","githuburl":"https://github.com/microsoft/deepspeed","featured":null,"links":null,"description":null,"_repopath":"microsoft/deepspeed","_reponame":"DeepSpeed","_stars":8958,"_forks":1077,"_watches":146,"_language":"Python","_homepage":"https://www.deepspeed.ai/","_description":"DeepSpeed is a deep learning optimization library that makes distributed training and inference easy, efficient, and effective.","_organization":"microsoft","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-01-23T00:00:00.000Z","_age_weeks":160,"_stars_per_week":55.69,"_topics":["deep-learning","pytorch","gpu","machine-learning","billion-parameters","data-parallelism","model-parallelism","inference","pipeline-parallelism","compression","mixture-of-experts","trillion-parameters","zero"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":159,"_pop_contributor_logins":["RezaYazdaniAminabadi@microsoft","ShadenSmith@microsoft","awan-10@microsoft","cli99@microsoft","conglongli@microsoft","jeffra@microsoft","mrwyattii","samyam","stas00@stasosphereonline/huggingface","tjruwase"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["microsoft","stasosphereonline/huggingface"],"_pop_contributor_orgs_raw":["@microsoft","@microsoft ","Microsoft","Stasosphere Online Inc. / HuggingFace Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.04,"_pop_updated_issues_count":449,"_pop_closed_issues_count":277,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":449.0,"_pop_comment_count":840.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":50.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/deepspeed/master/README.md","_readme_localurl":"microsoft~deepspeed~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/deepspeed/master/setup.py"],"_requirements_localurls":["microsoft~deepspeed~setup.py"]},{"index":523,"category":"ml-dl","githuburl":"https://github.com/lucidrains/dalle2-pytorch","featured":null,"links":null,"description":null,"_repopath":"lucidrains/dalle2-pytorch","_reponame":"DALLE2-pytorch","_stars":8951,"_forks":772,"_watches":123,"_language":"Python","_homepage":"","_description":"DALLE2-pytorch: Implementation of DALL-E 2, OpenAI's updated text-to-image synthesis neural network, in Pytorch","_organization":"lucidrains","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-04-07T00:00:00.000Z","_age_weeks":45,"_stars_per_week":195.19,"_topics":["artificial-intelligence","deep-learning","text-to-image"],"_last_commit_date":"2023-02-12T00:00:00.000Z","_pop_contributor_count":16,"_pop_contributor_logins":["Conight","JiaHeng-DLUT","Light-V","Veldrovive","kashif","krish240574","lucidrains","nousr","rom1504@google","zaaachos"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_raw":["@google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.23,"_pop_updated_issues_count":18,"_pop_closed_issues_count":5,"_pop_created_since_days":11,"_pop_updated_since_days":0,"_pop_recent_releases_count":334,"_pop_recent_releases_estimated_tags":376,"_pop_recent_releases_adjusted_count":334,"_pop_issue_count":17.0,"_pop_comment_count":19.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":33.89,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lucidrains/dalle2-pytorch/master/README.md","_readme_localurl":"lucidrains~dalle2-pytorch~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lucidrains/dalle2-pytorch/master/setup.py"],"_requirements_localurls":["lucidrains~dalle2-pytorch~setup.py"]},{"index":132,"category":"ml","githuburl":"https://github.com/epistasislab/tpot","featured":null,"links":null,"description":null,"_repopath":"epistasislab/tpot","_reponame":"tpot","_stars":8947,"_forks":1516,"_watches":294,"_language":"Python","_homepage":"http://epistasislab.github.io/tpot/","_description":"tpot: A Python Automated Machine Learning tool that optimizes machine learning pipelines using genetic programming.","_organization":"epistasislab","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-11-03T00:00:00.000Z","_age_weeks":381,"_stars_per_week":23.47,"_topics":["machine-learning","python","data-science","automl","automation","scikit-learn","hyperparameter-optimization","model-selection","parameter-tuning","automated-machine-learning","random-forest","gradient-boosting","feature-engineering","aiml","alzheimer","alzheimers","nia","u01ag066833","ag066833","adsp"],"_last_commit_date":"2022-07-29T00:00:00.000Z","_pop_contributor_count":112,"_pop_contributor_logins":["GJena","JDRomano2@universityofpennsylvania","PGijsbers@eindhovenuniversityoftechnology","TomAugspurger@microsoft","bartleyn@usc","beckernick@nvidia","pronojitsaha","rasbt@lightning-ai,universityofwisconsin-madison","rhiever","weixuanfu@children'shospitalofphiladelphia"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["children'shospitalofphiladelphia","eindhovenuniversityoftechnology","lightning-ai,universityofwisconsin-madison","microsoft","nvidia","universityofpennsylvania","usc"],"_pop_contributor_orgs_raw":["@Lightning-AI , University of Wisconsin-Madison","@NVIDIA","@microsoft","Children's Hospital of Philadelphia","Eindhoven University of Technology","USC","University of Pennsylvania"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.35,"_pop_updated_issues_count":17,"_pop_closed_issues_count":3,"_pop_created_since_days":89,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":17.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":38.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/epistasislab/tpot/master/README.md","_readme_localurl":"epistasislab~tpot~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/epistasislab/tpot/master/requirements.txt","https://raw.githubusercontent.com/epistasislab/tpot/master/setup.py"],"_requirements_localurls":["epistasislab~tpot~requirements.txt","epistasislab~tpot~setup.py"]},{"index":244,"category":"util","githuburl":"https://github.com/aws/serverless-application-model","featured":null,"links":null,"description":null,"_repopath":"aws/serverless-application-model","_reponame":"serverless-application-model","_stars":8923,"_forks":2295,"_watches":297,"_language":"Python","_homepage":"https://aws.amazon.com/serverless/sam","_description":"serverless-application-model: The AWS Serverless Application Model (AWS SAM) transform is a AWS CloudFormation macro that transforms SAM templates into CloudFormation templates.","_organization":"aws","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-10-10T00:00:00.000Z","_age_weeks":332,"_stars_per_week":26.85,"_topics":["serverless","aws","lambda","aws-sam","sam","sam-specification","serverless-applications","serverless-application-model"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":260,"_pop_contributor_logins":["GavinZZ@aws","aahung@aws","brettstack@amazonwebservices-serverlessapplications","hawflau@aws","hoffa@aws","jfuss@awslambda","keetonian@leland","mndeveci","praneetap@aws","sanathkr@rarecamp"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazonwebservices-serverlessapplications","aws","awslambda","leland","rarecamp"],"_pop_contributor_orgs_raw":["@AWS Lambda","@RareCamp","@aws","@aws ","AWS","Amazon Web Services - Serverless Applications","Leland"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.81,"_pop_updated_issues_count":470,"_pop_closed_issues_count":349,"_pop_created_since_days":78,"_pop_updated_since_days":0,"_pop_recent_releases_count":18,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":470.0,"_pop_comment_count":284.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":54.13,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aws/serverless-application-model/master/README.md","_readme_localurl":"aws~serverless-application-model~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/aws/serverless-application-model/master/setup.py","https://raw.githubusercontent.com/aws/serverless-application-model/master/pyproject.toml"],"_requirements_localurls":["aws~serverless-application-model~setup.py","aws~serverless-application-model~pyproject.toml"]},{"index":470,"category":"nlp","githuburl":"https://github.com/microsoft/unilm","featured":null,"links":null,"description":null,"_repopath":"microsoft/unilm","_reponame":"unilm","_stars":8880,"_forks":1535,"_watches":231,"_language":"Python","_homepage":"https://aka.ms/nlpagi","_description":"unilm: Large-scale Self-supervised Pre-training Across Tasks, Languages, and Modalities","_organization":"microsoft","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-07-23T00:00:00.000Z","_age_weeks":187,"_stars_per_week":47.45,"_topics":["nlp","language-understanding","language-generation","pre-trained-model","small-pre-trained-model","unilm","minilm","layoutlm","infoxlm","multimodal-pre-trained-model","layoutxlm","beit","document-ai","trocr","wavlm","beit-3","foundation-models","xlm-e","deepnet","document-foundation-model"],"_last_commit_date":"2023-02-10T00:00:00.000Z","_pop_contributor_count":55,"_pop_contributor_logins":["Dod-o","MarkWuNLP@microsoftresearch","addf400@harbininstituteoftechnology","donglixp@microsoftresearch","getao@microsoft","gitnlp","lockon-n","ranpox","shumingma@microsoftresearch","wolfshow"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["harbininstituteoftechnology","microsoft","microsoftresearch"],"_pop_contributor_orgs_raw":["Harbin Institute of Technology","Microsoft","Microsoft Research"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.06,"_pop_updated_issues_count":120,"_pop_closed_issues_count":52,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":121.0,"_pop_comment_count":154.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":41.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/unilm/master/README.md","_readme_localurl":"microsoft~unilm~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":961,"category":"util","githuburl":"https://github.com/charliermarsh/ruff","featured":null,"links":null,"description":null,"_repopath":"charliermarsh/ruff","_reponame":"ruff","_stars":8846,"_forks":278,"_watches":40,"_language":"Rust","_homepage":"https://beta.ruff.rs","_description":"ruff: An extremely fast Python linter, written in Rust.","_organization":"charliermarsh","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-08-09T00:00:00.000Z","_age_weeks":28,"_stars_per_week":314.32,"_topics":["linter","pep8","python","python3","rust","rustpython","static-analysis","static-code-analysis","style-guide","styleguide","ruff"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":128,"_pop_contributor_logins":["JonathanPlasse@drotek","akx@valohai","andersk@zulip","charliermarsh","colin99d","edgarrmondragon@meltano","harupy","not-my-profile","sbrugman","squiddy@momox"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["drotek","meltano","momox","valohai","zulip"],"_pop_contributor_orgs_raw":["@Meltano ","@valohai ","@zulip","Drotek","momox"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":49.71,"_pop_updated_issues_count":2307,"_pop_closed_issues_count":2097,"_pop_created_since_days":7,"_pop_updated_since_days":0,"_pop_recent_releases_count":230,"_pop_recent_releases_estimated_tags":402,"_pop_recent_releases_adjusted_count":230,"_pop_issue_count":2313.0,"_pop_comment_count":4979.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":55.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/charliermarsh/ruff/master/README.md","_readme_localurl":"charliermarsh~ruff~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/charliermarsh/ruff/master/pyproject.toml"],"_requirements_localurls":["charliermarsh~ruff~pyproject.toml"]},{"index":5,"category":"web","githuburl":"https://github.com/benoitc/gunicorn","featured":null,"links":null,"description":null,"_repopath":"benoitc/gunicorn","_reponame":"gunicorn","_stars":8788,"_forks":1628,"_watches":231,"_language":"Python","_homepage":"http://www.gunicorn.org","_description":"gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications.","_organization":"benoitc","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2009-11-30T00:00:00.000Z","_age_weeks":690,"_stars_per_week":12.73,"_topics":["http-server","http","python","wsgi-server","wsgi"],"_last_commit_date":"2023-01-26T00:00:00.000Z","_pop_contributor_count":383,"_pop_contributor_logins":["alq666@datadog","benoitc@enkimultimedia","berkerpeksag","collinanderson","davisp","hramezani@crate","javabrett@confluentinc","matrixise@mgx.io","sirkonst","tilgovi@nytimes"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["confluentinc","crate","datadog","enkimultimedia","mgx.io","nytimes"],"_pop_contributor_orgs_raw":["@DataDog ","@confluentinc","@crate ","@nytimes","Enki Multimedia","Mgx.IO"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.5,"_pop_updated_issues_count":99,"_pop_closed_issues_count":30,"_pop_created_since_days":161,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":99.0,"_pop_comment_count":126.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":49.54,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/benoitc/gunicorn/master/README.rst","_readme_localurl":"benoitc~gunicorn~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/benoitc/gunicorn/master/setup.py"],"_requirements_localurls":["benoitc~gunicorn~setup.py"]},{"index":92,"category":"ml-ops","githuburl":"https://github.com/uber/ludwig","featured":null,"links":null,"description":null,"_repopath":"uber/ludwig","_reponame":"ludwig","_stars":8766,"_forks":1030,"_watches":183,"_language":"Python","_homepage":"http://ludwig.ai","_description":"ludwig: Data-centric declarative deep learning framework","_organization":"uber","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-12-27T00:00:00.000Z","_age_weeks":216,"_stars_per_week":40.42,"_topics":["deep-learning","deeplearning","deep","learning","machine-learning","machinelearning","machine","natural-language-processing","natural-language","computer-vision","data-centric","data-science","python","pytorch","neural-network","ml","datascience"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":130,"_pop_contributor_logins":["arnavgarg1@predibase","connor-mccorm","dantreiman@predibase","geoffreyangus","jimthompson5802","jppgks@predibase","justinxzhao","msaisumanth@uber","tgaddair@uber","w4nderlust"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["predibase","uber"],"_pop_contributor_orgs_raw":["@Predibase","@uber ","Predibase","Uber"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":17.62,"_pop_updated_issues_count":370,"_pop_closed_issues_count":311,"_pop_created_since_days":51,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":371.0,"_pop_comment_count":524.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":50.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/uber/ludwig/master/README.md","_readme_localurl":"uber~ludwig~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/ludwig/master/requirements.txt","https://raw.githubusercontent.com/uber/ludwig/master/setup.py","https://raw.githubusercontent.com/uber/ludwig/master/pyproject.toml"],"_requirements_localurls":["uber~ludwig~requirements.txt","uber~ludwig~setup.py","uber~ludwig~pyproject.toml"]},{"index":134,"category":"ml-dl","githuburl":"https://github.com/keras-team/autokeras","featured":null,"links":null,"description":null,"_repopath":"keras-team/autokeras","_reponame":"autokeras","_stars":8743,"_forks":1392,"_watches":306,"_language":"Python","_homepage":"http://autokeras.com/","_description":"autokeras: AutoML library for deep learning","_organization":"keras-team","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-11-19T00:00:00.000Z","_age_weeks":274,"_stars_per_week":31.86,"_topics":["automl","neural-architecture-search","automated-machine-learning","python","deep-learning","machine-learning","autodl","tensorflow","keras"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":140,"_pop_contributor_logins":["abgese","boyuangong","dependabot[bot]","droidadroit@texasa&muniversity","gabrieldemarmiesse@preligens","haifeng-jin@keras-teamtensorflowgooglers","qingquansong","satyakesav@texasa&muniversity,collegestation","taobupt","tl-yang"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["keras-teamtensorflowgooglers","preligens","texasa&muniversity","texasa&muniversity,collegestation"],"_pop_contributor_orgs_raw":["@keras-team @tensorflow @googlers","Preligens","Texas A&M University","Texas A&M University, College Station"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.54,"_pop_updated_issues_count":59,"_pop_closed_issues_count":42,"_pop_created_since_days":64,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":59.0,"_pop_comment_count":56.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":44.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/keras-team/autokeras/master/README.md","_readme_localurl":"keras-team~autokeras~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/keras-team/autokeras/master/setup.py","https://raw.githubusercontent.com/keras-team/autokeras/master/pyproject.toml"],"_requirements_localurls":["keras-team~autokeras~setup.py","keras-team~autokeras~pyproject.toml"]},{"index":495,"category":"data","githuburl":"https://github.com/duckdb/duckdb","featured":1.0,"links":null,"description":null,"_repopath":"duckdb/duckdb","_reponame":"duckdb","_stars":8585,"_forks":801,"_watches":130,"_language":"C++","_homepage":"http://www.duckdb.org","_description":"DuckDB is an in-process SQL OLAP Database Management System","_organization":"duckdb","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-06-26T00:00:00.000Z","_age_weeks":243,"_stars_per_week":35.31,"_topics":["sql","database","olap","analytics","embedded-database"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":236,"_pop_contributor_logins":["Mause@duckdblabs","Mytherin@duckdblabs","Tishj","hannes@cwi","krlmlr@cynkra","lnkuiper@cwi","pdet@duckdblabs","samansmink@universityofamsterdam","taniabogatsch","tiagokepe"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cwi","cynkra","duckdblabs","universityofamsterdam"],"_pop_contributor_orgs_raw":["@cynkra ","@duckdblabs","CWI","DuckDB Labs","University of Amsterdam"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":143.83,"_pop_updated_issues_count":987,"_pop_closed_issues_count":814,"_pop_created_since_days":57,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":987.0,"_pop_comment_count":1819.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":59.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/duckdb/duckdb/master/README.md","_readme_localurl":"duckdb~duckdb~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":151,"category":"nlp","githuburl":"https://github.com/sloria/textblob","featured":null,"links":null,"description":null,"_repopath":"sloria/textblob","_reponame":"TextBlob","_stars":8440,"_forks":1112,"_watches":270,"_language":"Python","_homepage":"https://textblob.readthedocs.io/","_description":"TextBlob: Simple, Pythonic, text processing--Sentiment analysis, part-of-speech tagging, noun phrase extraction, translation, and more.","_organization":"sloria","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2013-06-30T00:00:00.000Z","_age_weeks":503,"_stars_per_week":16.77,"_topics":["nlp","nltk","pattern","python","python-3","python-2","natural-language-processing"],"_last_commit_date":"2021-10-22T00:00:00.000Z","_pop_contributor_count":36,"_pop_contributor_logins":["RomanYankovsky@urbaninfrastructure","danong@google","dependabot-preview[bot]","dependabot-support","evandempsey","jammmo","jeffakolb","jschnurr@google","pyup-bot@pyupio","sloria"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","pyupio","urbaninfrastructure"],"_pop_contributor_orgs_raw":["@pyupio","@urbaninfrastructure ","Google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":11,"_pop_closed_issues_count":3,"_pop_created_since_days":117,"_pop_updated_since_days":16,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":11.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":28.8,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sloria/textblob/master/README.rst","_readme_localurl":"sloria~textblob~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sloria/textblob/master/setup.py"],"_requirements_localurls":["sloria~textblob~setup.py"]},{"index":100,"category":"nlp","githuburl":"https://github.com/clips/pattern","featured":null,"links":null,"description":null,"_repopath":"clips/pattern","_reponame":"pattern","_stars":8419,"_forks":1595,"_watches":547,"_language":"Python","_homepage":"https://github.com/clips/pattern/wiki","_description":"pattern: Web mining module for Python, with tools for scraping, natural language processing, machine learning, network analysis and visualization.","_organization":"clips","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2011-05-03T00:00:00.000Z","_age_weeks":616,"_stars_per_week":13.66,"_topics":["python","machine-learning","natural-language-processing","web-mining","wordnet","sentiment-analysis","network-analysis"],"_last_commit_date":"2020-04-25T00:00:00.000Z","_pop_contributor_count":30,"_pop_contributor_logins":["Xsardas1000","fdb@nodebox","frederik-elwert@ruhr-universitybochum","jgrivolla@universitatpompeufabra","kkoch986@zentail","markus-beuckelmann","napsternxg@twitter-research","newworldorder","sloria","tom-de-smedt"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["nodebox","ruhr-universitybochum","twitter-research","universitatpompeufabra","zentail"],"_pop_contributor_orgs_raw":["@nodebox ","@twitter-research ","Ruhr-University Bochum","Universitat Pompeu Fabra","Zentail"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":144,"_pop_updated_since_days":34,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":5.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":27.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/clips/pattern/master/README.md","_readme_localurl":"clips~pattern~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/clips/pattern/master/setup.py"],"_requirements_localurls":["clips~pattern~setup.py"]},{"index":125,"category":"perf","githuburl":"https://github.com/modin-project/modin","featured":null,"links":null,"description":null,"_repopath":"modin-project/modin","_reponame":"modin","_stars":8392,"_forks":592,"_watches":108,"_language":"Python","_homepage":"http://modin.readthedocs.io","_description":"Modin: Scale your Pandas workflows by changing a single line of code","_organization":"modin-project","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-06-21T00:00:00.000Z","_age_weeks":243,"_stars_per_week":34.41,"_topics":["dataframe","pandas","distributed","datascience","modin","sql","python","analytics","data-science","hacktoberfest"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":110,"_pop_contributor_logins":["YarShev","amyskov","anmyachev","dchigarev","devin-petersohn@ponder","gshimansky@intelcorporation","mvashishtha@ponder.io","prutskov","vnlitvinov","williamma12"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["intelcorporation","ponder","ponder.io"],"_pop_contributor_orgs_raw":["Intel Corporation","Ponder","ponder.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.25,"_pop_updated_issues_count":559,"_pop_closed_issues_count":371,"_pop_created_since_days":57,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":559.0,"_pop_comment_count":572.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":49.97,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/modin-project/modin/master/README.md","_readme_localurl":"modin-project~modin~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/modin-project/modin/master/setup.py"],"_requirements_localurls":["modin-project~modin~setup.py"]},{"index":815,"category":"ml-dl","githuburl":"https://github.com/danielgatis/rembg","featured":null,"links":null,"description":null,"_repopath":"danielgatis/rembg","_reponame":"rembg","_stars":8368,"_forks":1050,"_watches":105,"_language":"Python","_homepage":"","_description":"Rembg is a tool to remove images background","_organization":"danielgatis","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-08-10T00:00:00.000Z","_age_weeks":132,"_stars_per_week":63.26,"_topics":["image-processing","background-removal","python"],"_last_commit_date":"2022-12-28T00:00:00.000Z","_pop_contributor_count":33,"_pop_contributor_logins":["0xflotus","MadMaxInfinity","carlogrisetti","cclauss@christianclauss","danielgatis","iory@japan","jangop@recommendy","jaric","rcrvano","samiede@leonardo-interactive"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["christianclauss","japan","leonardo-interactive","recommendy"],"_pop_contributor_orgs_raw":["@Leonardo-Interactive ","Christian Clauss","Japan","Recommendy"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.71,"_pop_updated_issues_count":75,"_pop_closed_issues_count":56,"_pop_created_since_days":31,"_pop_updated_since_days":2,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":75.0,"_pop_comment_count":152.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":40.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/danielgatis/rembg/master/README.md","_readme_localurl":"danielgatis~rembg~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/danielgatis/rembg/master/requirements.txt","https://raw.githubusercontent.com/danielgatis/rembg/master/setup.py","https://raw.githubusercontent.com/danielgatis/rembg/master/pyproject.toml"],"_requirements_localurls":["danielgatis~rembg~requirements.txt","danielgatis~rembg~setup.py","danielgatis~rembg~pyproject.toml"]},{"index":53,"category":"perf","githuburl":"https://github.com/numba/numba","featured":null,"links":null,"description":null,"_repopath":"numba/numba","_reponame":"numba","_stars":8287,"_forks":998,"_watches":208,"_language":"Python","_homepage":"http://numba.pydata.org/","_description":"numba: NumPy aware dynamic Python compiler using LLVM","_organization":"numba","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-03-08T00:00:00.000Z","_age_weeks":571,"_stars_per_week":14.49,"_topics":["python","numpy","llvm","compiler","cuda","parallel"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":330,"_pop_contributor_logins":["DrTodd13@intellabs","esc@anaconda","gmarkall@nvidia","guilhermeleobas","markflorisson@mlabs","pitrou","rjenc29","seibert","sklam","stuartarchibald"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","intellabs","mlabs","nvidia"],"_pop_contributor_orgs_raw":["@nvidia","Anaconda Inc.","Intel Labs","MLabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":27.08,"_pop_updated_issues_count":386,"_pop_closed_issues_count":213,"_pop_created_since_days":133,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":385.0,"_pop_comment_count":918.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":57.58,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/numba/numba/master/README.rst","_readme_localurl":"numba~numba~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/numba/numba/master/requirements.txt","https://raw.githubusercontent.com/numba/numba/master/setup.py"],"_requirements_localurls":["numba~numba~requirements.txt","numba~numba~setup.py"]},{"index":282,"category":"util","githuburl":"https://github.com/arrow-py/arrow","featured":null,"links":null,"description":null,"_repopath":"arrow-py/arrow","_reponame":"arrow","_stars":8227,"_forks":640,"_watches":134,"_language":"Python","_homepage":"https://arrow.readthedocs.io","_description":"arrow: \ud83c\udff9 Better dates & times for Python","_organization":"arrow-py","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-11-18T00:00:00.000Z","_age_weeks":535,"_stars_per_week":15.37,"_topics":["python","arrow","datetime","date","time","timestamp","timezones","hacktoberfest"],"_last_commit_date":"2022-11-15T00:00:00.000Z","_pop_contributor_count":268,"_pop_contributor_logins":["andrewelkins","anishnya@caen","chrishaines","crsmithdev","cyriaka90","jadchaar@amazon","krisfremen","ramonsaraiva@consumeraffairs","systemcatch","zcribe"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazon","caen","consumeraffairs"],"_pop_contributor_orgs_raw":["@CAEN","@ConsumerAffairs ","Amazon"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":8,"_pop_closed_issues_count":0,"_pop_created_since_days":125,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":8.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":38.77,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/arrow-py/arrow/master/README.rst","_readme_localurl":"arrow-py~arrow~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/arrow-py/arrow/master/setup.py"],"_requirements_localurls":["arrow-py~arrow~setup.py"]},{"index":84,"category":"ml","githuburl":"https://github.com/statsmodels/statsmodels","featured":null,"links":null,"description":null,"_repopath":"statsmodels/statsmodels","_reponame":"statsmodels","_stars":8206,"_forks":2660,"_watches":275,"_language":"Python","_homepage":"http://www.statsmodels.org/devel/","_description":"Statsmodels: statistical modeling and econometrics in Python","_organization":"statsmodels","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2011-06-12T00:00:00.000Z","_age_weeks":610,"_stars_per_week":13.44,"_topics":["python","statistics","econometrics","data-analysis","generalized-linear-models","timeseries-analysis","regression-models","count-model","data-science","forecasting","hypothesis-testing","prediction","robust-estimation"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":407,"_pop_contributor_logins":["ChadFulton","bashtage","j-grana6","jbrockmendel","josef-pkt","jseabold@hcahealthcare","kshedden","thequackdaddy","vincentarelbundock","wesm@voltrondata"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["hcahealthcare","voltrondata"],"_pop_contributor_orgs_raw":["@voltrondata","HCA Healthcare"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.79,"_pop_updated_issues_count":448,"_pop_closed_issues_count":181,"_pop_created_since_days":142,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":450.0,"_pop_comment_count":617.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":50.75,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/statsmodels/statsmodels/master/README.rst","_readme_localurl":"statsmodels~statsmodels~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/statsmodels/statsmodels/master/requirements.txt","https://raw.githubusercontent.com/statsmodels/statsmodels/master/setup.py","https://raw.githubusercontent.com/statsmodels/statsmodels/master/pyproject.toml"],"_requirements_localurls":["statsmodels~statsmodels~requirements.txt","statsmodels~statsmodels~setup.py","statsmodels~statsmodels~pyproject.toml"]},{"index":294,"category":"util","githuburl":"https://github.com/paramiko/paramiko","featured":null,"links":null,"description":null,"_repopath":"paramiko/paramiko","_reponame":"paramiko","_stars":8176,"_forks":1910,"_watches":319,"_language":"Python","_homepage":"http://paramiko.org","_description":"paramiko: The leading native Python SSHv2 protocol library.","_organization":"paramiko","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2009-02-02T00:00:00.000Z","_age_weeks":733,"_stars_per_week":11.15,"_topics":[],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":179,"_pop_contributor_logins":["alex","bitprophet@jumptrading","bz2","dorianpula@amberpenguinsoftware","jaraco@google","lndbrg","mwilliamson","offbyone","ploxiln@healthbyro","scottkmaxwell@codecobblers,inc"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amberpenguinsoftware","codecobblers,inc","google","healthbyro","jumptrading"],"_pop_contributor_orgs_raw":["@HealthByRo ","@jumptrading","Amber Penguin Software","Code Cobblers, Inc","Google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.42,"_pop_updated_issues_count":97,"_pop_closed_issues_count":35,"_pop_created_since_days":171,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":97.0,"_pop_comment_count":187.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":52.3,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/paramiko/paramiko/master/README.rst","_readme_localurl":"paramiko~paramiko~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/paramiko/paramiko/master/setup.py"],"_requirements_localurls":["paramiko~paramiko~setup.py"]},{"index":116,"category":"ml-ops","githuburl":"https://github.com/kedro-org/kedro","featured":null,"links":"From: https://github.com/quantumblacklabs/kedro","description":null,"_repopath":"kedro-org/kedro","_reponame":"kedro","_stars":8114,"_forks":764,"_watches":104,"_language":"Python","_homepage":"https://kedro.org","_description":"kedro: A Python framework for creating reproducible, maintainable and modular data science code.","_organization":"kedro-org","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-04-18T00:00:00.000Z","_age_weeks":200,"_stars_per_week":40.4,"_topics":["pipeline","kedro","hacktoberfest","mlops","experiment-tracking","python","machine-learning"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":185,"_pop_contributor_logins":["921kiyo","AntonyMilneQB","DmitriiDeriabinQB@quantumblack","andrii-ivaniuk","deepyaman@foundingmleclaypotai","idanov@quantumblack","limdauto","lorenabalan@softwareengineeratquantumblacklabs","merelcht@quantumblack","yetudada@quantumblack"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["foundingmleclaypotai","quantumblack","softwareengineeratquantumblacklabs"],"_pop_contributor_orgs_raw":["@quantumblack","@quantumblack ","Founding MLE @claypotai","QuantumBlack","Software Engineer at @quantumblacklabs "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.71,"_pop_updated_issues_count":421,"_pop_closed_issues_count":233,"_pop_created_since_days":47,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":420.0,"_pop_comment_count":464.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":49.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kedro-org/kedro/master/README.md","_readme_localurl":"kedro-org~kedro~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/kedro-org/kedro/master/setup.py","https://raw.githubusercontent.com/kedro-org/kedro/master/pyproject.toml"],"_requirements_localurls":["kedro-org~kedro~setup.py","kedro-org~kedro~pyproject.toml"]},{"index":773,"category":"ml-dl","githuburl":"https://github.com/sanster/lama-cleaner","featured":null,"links":null,"description":null,"_repopath":"sanster/lama-cleaner","_reponame":"lama-cleaner","_stars":8112,"_forks":717,"_watches":64,"_language":"Python","_homepage":"https://lama-cleaner-docs.vercel.app/","_description":"lama-cleaner: Image inpainting tool powered by SOTA AI Model. Remove any unwanted object, defect, people from your pictures or erase and replace(powered by stable diffusion) any thing on your pictures.","_organization":"sanster","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-11-15T00:00:00.000Z","_age_weeks":66,"_stars_per_week":122.38,"_topics":["inpainting","pytorch","lama","latent-diffusion","mat","zits","stable-diffusion"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":12,"_pop_contributor_logins":["BedirYilmaz@tiermobility","LinuxSuRen@opensource-f2f","Niek@nivademab.v.","Sanster","blessedcoolant","callmepantoine","davidbejarcaceres","eltociear@bandism","fiskbil","loretoparisi@musixmatchdev"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bandism","musixmatchdev","nivademab.v.","opensource-f2f","tiermobility"],"_pop_contributor_orgs_raw":["@Musixmatchdev ","@bandism ","@opensource-f2f","Nivadema B.V.","Tier Mobility"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.83,"_pop_updated_issues_count":88,"_pop_closed_issues_count":70,"_pop_created_since_days":15,"_pop_updated_since_days":0,"_pop_recent_releases_count":42,"_pop_recent_releases_estimated_tags":36,"_pop_recent_releases_adjusted_count":42,"_pop_issue_count":88.0,"_pop_comment_count":150.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":42.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sanster/lama-cleaner/master/README.md","_readme_localurl":"sanster~lama-cleaner~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sanster/lama-cleaner/master/requirements.txt","https://raw.githubusercontent.com/sanster/lama-cleaner/master/setup.py"],"_requirements_localurls":["sanster~lama-cleaner~requirements.txt","sanster~lama-cleaner~setup.py"]},{"index":706,"category":"sim","githuburl":"https://github.com/isl-org/open3d","featured":null,"links":null,"description":null,"_repopath":"isl-org/open3d","_reponame":"Open3D","_stars":8096,"_forks":1891,"_watches":173,"_language":"C++","_homepage":"http://www.open3d.org","_description":"Open3D: A Modern Library for 3D Data Processing","_organization":"isl-org","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-12-02T00:00:00.000Z","_age_weeks":324,"_stars_per_week":24.93,"_topics":["mesh-processing","computer-graphics","opengl","cpp","python","reconstruction","odometry","visualization","registration","machine-learning","3d","pointcloud","rendering","gui","3d-perception","gpu","arm","cuda","pytorch","tensorflow"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":183,"_pop_contributor_logins":["benjaminum","errissa","griegler","prewettg","qianyizh@formatechnologies","reyanshsolis@agv-iit-kgpacr-iitkgp","ssheorey@intelisl","syncle@postech","takanokage","yxlao@hku-cs"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["agv-iit-kgpacr-iitkgp","formatechnologies","hku-cs","intelisl","postech"],"_pop_contributor_orgs_raw":["@AGV-IIT-KGP @acr-iitkgp ","Forma Technologies","HKU-CS","Intel ISL","POSTECH"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.02,"_pop_updated_issues_count":352,"_pop_closed_issues_count":193,"_pop_created_since_days":76,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":352.0,"_pop_comment_count":496.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":49.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/isl-org/open3d/master/README.md","_readme_localurl":"isl-org~open3d~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":128,"category":"viz","githuburl":"https://github.com/altair-viz/altair","featured":null,"links":null,"description":null,"_repopath":"altair-viz/altair","_reponame":"altair","_stars":8056,"_forks":715,"_watches":147,"_language":"Python","_homepage":"https://altair-viz.github.io/","_description":"altair: Declarative statistical visualization library for Python","_organization":"altair-viz","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-09-19T00:00:00.000Z","_age_weeks":387,"_stars_per_week":20.79,"_topics":[],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":150,"_pop_contributor_logins":["ChristopherDavisUCI@ucirvine","afonit","binste","domoritz@cmu,apple","eitanlees","ellisonbg@amazonwebservices","jakevdp@google","joelostblom@universityofbritishcolumbia","mattijn","palewire@reuters"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazonwebservices","cmu,apple","google","reuters","ucirvine","universityofbritishcolumbia"],"_pop_contributor_orgs_raw":["Amazon Web Services","CMU, Apple","Google","Reuters","UC Irvine","University of British Columbia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.21,"_pop_updated_issues_count":269,"_pop_closed_issues_count":199,"_pop_created_since_days":90,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":270.0,"_pop_comment_count":768.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":0,"_pop_score":52.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/altair-viz/altair/master/README.md","_readme_localurl":"altair-viz~altair~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/altair-viz/altair/master/requirements.txt","https://raw.githubusercontent.com/altair-viz/altair/master/setup.py","https://raw.githubusercontent.com/altair-viz/altair/master/pyproject.toml"],"_requirements_localurls":["altair-viz~altair~requirements.txt","altair-viz~altair~setup.py","altair-viz~altair~pyproject.toml"]},{"index":758,"category":"diffusion","githuburl":"https://github.com/divamgupta/diffusionbee-stable-diffusion-ui","featured":null,"links":null,"description":null,"_repopath":"divamgupta/diffusionbee-stable-diffusion-ui","_reponame":"diffusionbee-stable-diffusion-ui","_stars":8018,"_forks":321,"_watches":77,"_language":"JavaScript","_homepage":"https://diffusionbee.com","_description":"diffusionbee-stable-diffusion-ui: Diffusion Bee is the easiest way to run Stable Diffusion locally on your M1 Mac. Comes with a one-click installer. No dependencies or technical knowledge needed.","_organization":"divamgupta","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-09-06T00:00:00.000Z","_age_weeks":24,"_stars_per_week":332.11,"_topics":["electron-app","macos","stable-diffusion"],"_last_commit_date":"2023-02-13T00:00:00.000Z","_pop_contributor_count":16,"_pop_contributor_logins":["AEtheve","CrudeDiatribe","EthanMcKanna","Iktwo","Itangalo","divamgupta","lachlanjc@watershed-climate","piotrski@noaignite","trebor","w3cdotorg"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["noaignite","watershed-climate"],"_pop_contributor_orgs_raw":["@watershed-climate","NoA Ignite"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.9,"_pop_updated_issues_count":96,"_pop_closed_issues_count":11,"_pop_created_since_days":6,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":30,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":96.0,"_pop_comment_count":207.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":35.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/divamgupta/diffusionbee-stable-diffusion-ui/master/README.md","_readme_localurl":"divamgupta~diffusionbee-stable-diffusion-ui~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":29,"category":"ml-ops","githuburl":"https://github.com/great-expectations/great_expectations","featured":null,"links":null,"description":null,"_repopath":"great-expectations/great_expectations","_reponame":"great_expectations","_stars":7998,"_forks":1233,"_watches":71,"_language":"Python","_homepage":"https://docs.greatexpectations.io/","_description":"great_expectations: Always know what to expect from your data.","_organization":"great-expectations","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-09-11T00:00:00.000Z","_age_weeks":284,"_stars_per_week":28.13,"_topics":["pipeline-tests","dataquality","datacleaning","datacleaner","data-science","data-profiling","pipeline","pipeline-testing","cleandata","dataunittest","data-unit-tests","eda","exploratory-data-analysis","exploratory-analysis","exploratorydataanalysis","data-quality","data-engineering","pipeline-debt","data-profilers","mlops"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":368,"_pop_contributor_logins":["Aylr","NathanFarmer@gxlabs","Shinnnyshinshin@superconductive","abegong@superconductive","alexsherstinsky","anthonyburdi@gxlabs","cdkini","eugmandel@superconductive","jcampbell","roblim"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["gxlabs","superconductive"],"_pop_contributor_orgs_raw":["GX Labs","Superconductive","Superconductive "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":40.6,"_pop_updated_issues_count":952,"_pop_closed_issues_count":841,"_pop_created_since_days":66,"_pop_updated_since_days":0,"_pop_recent_releases_count":55,"_pop_recent_releases_estimated_tags":41,"_pop_recent_releases_adjusted_count":55,"_pop_issue_count":953.0,"_pop_comment_count":1848.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":58.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/great-expectations/great_expectations/master/README.md","_readme_localurl":"great-expectations~great_expectations~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/great-expectations/great_expectations/master/requirements.txt","https://raw.githubusercontent.com/great-expectations/great_expectations/master/setup.py","https://raw.githubusercontent.com/great-expectations/great_expectations/master/pyproject.toml"],"_requirements_localurls":["great-expectations~great_expectations~requirements.txt","great-expectations~great_expectations~setup.py","great-expectations~great_expectations~pyproject.toml"]},{"index":394,"category":"web","githuburl":"https://github.com/encode/starlette","featured":null,"links":null,"description":null,"_repopath":"encode/starlette","_reponame":"starlette","_stars":7905,"_forks":715,"_watches":112,"_language":"Python","_homepage":"https://www.starlette.io/","_description":"starlette: The little ASGI framework that shines. \ud83c\udf1f","_organization":"encode","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-06-25T00:00:00.000Z","_age_weeks":243,"_stars_per_week":32.49,"_topics":["python","async","websockets","http"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":224,"_pop_contributor_logins":["JayH5@yelp","Kludex@encode","adriangb","aminalaee","blueyed@freelancer,upforhire","dependabot[bot]","florimondmanca","graingert","tiangolo","tomchristie@encodeoss"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["encode","encodeoss","freelancer,upforhire","yelp"],"_pop_contributor_orgs_raw":["@encode","Encode OSS","Freelancer, up for hire","Yelp"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.46,"_pop_updated_issues_count":113,"_pop_closed_issues_count":86,"_pop_created_since_days":57,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":27,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":113.0,"_pop_comment_count":245.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":51.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/encode/starlette/master/README.md","_readme_localurl":"encode~starlette~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/encode/starlette/master/requirements.txt","https://raw.githubusercontent.com/encode/starlette/master/pyproject.toml"],"_requirements_localurls":["encode~starlette~requirements.txt","encode~starlette~pyproject.toml"]},{"index":7,"category":"util","githuburl":"https://github.com/boto/boto3","featured":null,"links":null,"description":null,"_repopath":"boto/boto3","_reponame":"boto3","_stars":7900,"_forks":1721,"_watches":238,"_language":"Python","_homepage":"https://aws.amazon.com/sdk-for-python/","_description":"boto3: AWS SDK for Python","_organization":"boto","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2014-10-03T00:00:00.000Z","_age_weeks":437,"_stars_per_week":18.05,"_topics":["python","aws","cloud","cloud-management","aws-sdk"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":140,"_pop_contributor_logins":["JordonPhillips@amazonwebservices","aws-sdk-python-automation","awstools","danielgtaylor@istreamplanet","jamesls","joguSD","kyleknap@amazonwebservices","nateprewitt@amazonwebservices","rayluo@microsoft","shepazon@aws"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazonwebservices","aws","istreamplanet","microsoft"],"_pop_contributor_orgs_raw":["@AWS","Amazon Web Services","Microsoft","iStreamPlanet"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.04,"_pop_updated_issues_count":180,"_pop_closed_issues_count":140,"_pop_created_since_days":102,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":149,"_pop_recent_releases_adjusted_count":149,"_pop_issue_count":178.0,"_pop_comment_count":348.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":54.58,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/boto/boto3/master/README.rst","_readme_localurl":"boto~boto3~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/boto/boto3/master/requirements.txt","https://raw.githubusercontent.com/boto/boto3/master/setup.py","https://raw.githubusercontent.com/boto/boto3/master/pyproject.toml"],"_requirements_localurls":["boto~boto3~requirements.txt","boto~boto3~setup.py","boto~boto3~pyproject.toml"]},{"index":951,"category":"web","githuburl":"https://github.com/bottlepy/bottle","featured":null,"links":null,"description":null,"_repopath":"bottlepy/bottle","_reponame":"bottle","_stars":7900,"_forks":1444,"_watches":313,"_language":"Python","_homepage":"http://bottlepy.org/","_description":"bottle.py is a fast and simple micro-framework for python web-applications.","_organization":"bottlepy","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2009-06-30T00:00:00.000Z","_age_weeks":712,"_stars_per_week":11.09,"_topics":["python","wsgi","rest","web-framework","bottle"],"_last_commit_date":"2022-09-05T00:00:00.000Z","_pop_contributor_count":227,"_pop_contributor_logins":["defnull@gwdgg\u00f6ttingen","eric-wieser@universityofcambridge","fredj@camptocamp","hartwork","iurisilvio@buser","michael-k","myzhan@alibaba-inc","oz123@spectrocloud","sc68cal","sgala@redhat"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["alibaba-inc","buser","camptocamp","gwdgg\u00f6ttingen","redhat","spectrocloud","universityofcambridge"],"_pop_contributor_orgs_raw":["@camptocamp","Alibaba-inc","Buser","GWDG G\u00f6ttingen","Red Hat","Spectro Cloud","University of Cambridge"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":14,"_pop_closed_issues_count":6,"_pop_created_since_days":166,"_pop_updated_since_days":6,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":14.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":41.31,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/bottlepy/bottle/master/README.rst","_readme_localurl":"bottlepy~bottle~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bottlepy/bottle/master/setup.py"],"_requirements_localurls":["bottlepy~bottle~setup.py"]},{"index":367,"category":"ml","githuburl":"https://github.com/megvii-basedetection/yolox","featured":null,"links":null,"description":null,"_repopath":"megvii-basedetection/yolox","_reponame":"YOLOX","_stars":7875,"_forks":1903,"_watches":72,"_language":"Python","_homepage":"","_description":"YOLOX is a high-performance anchor-free YOLO, exceeding yolov3~v5 with MegEngine, ONNX, TensorRT, ncnn, and OpenVINO supported. Documentation: https://yolox.readthedocs.io/","_organization":"megvii-basedetection","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-07-17T00:00:00.000Z","_age_weeks":83,"_stars_per_week":94.23,"_topics":["yolox","yolov3","onnx","tensorrt","ncnn","openvino","pytorch","megengine","object-detection","yolo","deep-learning"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":69,"_pop_contributor_logins":["DefTruth@paddlepaddle","FateScript@megvii-basedetection","GOATmessi7","Joker316701882@megviibasedetection","ankandrew","developer0hye@markany","ianpundar@wuhanuniversity","manangoel99@wandb","wwqgtxx","yancie-yjr@hust"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["hust","markany","megvii-basedetection","megviibasedetection","paddlepaddle","wandb","wuhanuniversity"],"_pop_contributor_orgs_raw":["@Megvii-BaseDetection ","@PaddlePaddle","@wandb ","HUST","MarkAny","Megvii BaseDetection","Wuhan University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.79,"_pop_updated_issues_count":99,"_pop_closed_issues_count":51,"_pop_created_since_days":19,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":99.0,"_pop_comment_count":122.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":40.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/megvii-basedetection/yolox/master/README.md","_readme_localurl":"megvii-basedetection~yolox~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/megvii-basedetection/yolox/master/requirements.txt","https://raw.githubusercontent.com/megvii-basedetection/yolox/master/setup.py"],"_requirements_localurls":["megvii-basedetection~yolox~requirements.txt","megvii-basedetection~yolox~setup.py"]},{"index":970,"category":"study","githuburl":"https://github.com/openai/spinningup","featured":null,"links":null,"description":null,"_repopath":"openai/spinningup","_reponame":"spinningup","_stars":7852,"_forks":1838,"_watches":217,"_language":"Python","_homepage":"https://spinningup.openai.com/","_description":"spinningup: An educational resource to help anyone learn deep reinforcement learning.","_organization":"openai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-11-07T00:00:00.000Z","_age_weeks":224,"_stars_per_week":35.05,"_topics":[],"_last_commit_date":"2020-02-07T00:00:00.000Z","_pop_contributor_count":25,"_pop_contributor_logins":["albertwujj","allanbreyes","alok","bchess@openai","christopherhesse@openai","jachiam","maksay","marko-bast","mimoralea","rootulp@celestiaorg"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["celestiaorg","openai"],"_pop_contributor_orgs_raw":["@celestiaorg","@openai ","OpenAI"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":10,"_pop_closed_issues_count":4,"_pop_created_since_days":52,"_pop_updated_since_days":37,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":10.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":21.21,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/openai/spinningup/master/readme.md","_readme_localurl":"openai~spinningup~readme.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/spinningup/master/setup.py"],"_requirements_localurls":["openai~spinningup~setup.py"]},{"index":422,"category":"ml-dl","githuburl":"https://github.com/pyro-ppl/pyro","featured":null,"links":null,"description":null,"_repopath":"pyro-ppl/pyro","_reponame":"pyro","_stars":7795,"_forks":962,"_watches":201,"_language":"Python","_homepage":"http://pyro.ai","_description":"pyro: Deep universal probabilistic programming with Python and PyTorch","_organization":"pyro-ppl","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-06-16T00:00:00.000Z","_age_weeks":296,"_stars_per_week":26.27,"_topics":["python","pytorch","machine-learning","bayesian","probabilistic-programming","bayesian-inference","variational-inference","probabilistic-modeling","deep-learning"],"_last_commit_date":"2023-02-03T00:00:00.000Z","_pop_contributor_count":134,"_pop_contributor_logins":["eb8680","fehiepsi@google","fritzo@generatebiomedicines","jpchen@facebook","karalets","martinjankowiak","neerajprad@meta","null-a","ordabayevy@broadinstitute","stefanwebb"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["broadinstitute","facebook","generatebiomedicines","google","meta"],"_pop_contributor_orgs_raw":["@facebook","Broad Institute","Generate Biomedicines","Google","Meta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.37,"_pop_updated_issues_count":30,"_pop_closed_issues_count":23,"_pop_created_since_days":69,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":30.0,"_pop_comment_count":64.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":44.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyro-ppl/pyro/master/README.md","_readme_localurl":"pyro-ppl~pyro~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyro-ppl/pyro/master/setup.py"],"_requirements_localurls":["pyro-ppl~pyro~setup.py"]},{"index":615,"category":"testing","githuburl":"https://github.com/robotframework/robotframework","featured":null,"links":null,"description":null,"_repopath":"robotframework/robotframework","_reponame":"robotframework","_stars":7777,"_forks":2076,"_watches":474,"_language":"Python","_homepage":"http://robotframework.org","_description":"robotframework: Generic automation framework for acceptance testing and RPA","_organization":"robotframework","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-06-27T00:00:00.000Z","_age_weeks":451,"_stars_per_week":17.22,"_topics":["robotframework","testing","automation","testautomation","attd","bdd","rpa","python"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":174,"_pop_contributor_logins":["Tattoo","asyrjasalo","jrantanen@reaktor","jussimalinen@reaktor","khusa@reaktorinnovations","mikahanninen@robocorp","mkorpela@reaktor","pekkaklarck@eligaoy","spooning","yanne@reaktor"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["eligaoy","reaktor","reaktorinnovations","robocorp"],"_pop_contributor_orgs_raw":["@reaktor ","Eliga Oy","Reaktor","Reaktor Innovations","Robocorp"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.48,"_pop_updated_issues_count":172,"_pop_closed_issues_count":91,"_pop_created_since_days":105,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":172.0,"_pop_comment_count":294.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":53.21,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/robotframework/robotframework/master/README.rst","_readme_localurl":"robotframework~robotframework~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/robotframework/robotframework/master/setup.py"],"_requirements_localurls":["robotframework~robotframework~setup.py"]},{"index":440,"category":"ml-dl","githuburl":"https://github.com/kornia/kornia","featured":null,"links":null,"description":null,"_repopath":"kornia/kornia","_reponame":"kornia","_stars":7774,"_forks":781,"_watches":120,"_language":"Python","_homepage":"https://kornia.github.io/kornia/","_description":"kornia: Open Source Differentiable Computer Vision Library","_organization":"kornia","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-08-22T00:00:00.000Z","_age_weeks":235,"_stars_per_week":33.08,"_topics":["computer-vision","image-processing","machine-learning","pytorch","deep-learning","neural-network","python","artificial-intelligence"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":204,"_pop_contributor_logins":["HassanAlsamahi@brightskiesinc","ananyamukh6","dependabot[bot]","ducha-aiki@czechtechnicaluniversityinprague","dvd42","edgarriba@kornia.org","johnnv1","pre-commit-ci[bot]","priba@computervisioncenter","shijianjian@kaust"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["brightskiesinc","computervisioncenter","czechtechnicaluniversityinprague","kaust","kornia.org"],"_pop_contributor_orgs_raw":["Brightskies Inc","Computer Vision Center","Czech Technical University in Prague","KAUST","Kornia.org"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.23,"_pop_updated_issues_count":238,"_pop_closed_issues_count":189,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":238.0,"_pop_comment_count":340.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":51.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kornia/kornia/master/README.md","_readme_localurl":"kornia~kornia~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/kornia/kornia/master/setup.py","https://raw.githubusercontent.com/kornia/kornia/master/pyproject.toml"],"_requirements_localurls":["kornia~kornia~setup.py","kornia~kornia~pyproject.toml"]},{"index":95,"category":"perf","githuburl":"https://github.com/vaexio/vaex","featured":null,"links":null,"description":null,"_repopath":"vaexio/vaex","_reponame":"vaex","_stars":7770,"_forks":584,"_watches":141,"_language":"Python","_homepage":"https://vaex.io","_description":"vaex: Out-of-Core hybrid Apache Arrow/NumPy DataFrame for Python, ML, visualization and exploration of big tabular data at a billion rows per second \ud83d\ude80","_organization":"vaexio","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-09-27T00:00:00.000Z","_age_weeks":438,"_stars_per_week":17.72,"_topics":["dataframe","python","bigdata","tabular-data","visualization","memory-mapped-file","hdf5","machine-learning","machinelearning","data-science","pyarrow"],"_last_commit_date":"2022-12-08T00:00:00.000Z","_pop_contributor_count":72,"_pop_contributor_logins":["Ben-Epstein@rungalileo","JovanVeljanoski","NickCrews","byaminov","honno@quansight","kmcentush@cuberg","maartenbreddels@maartenbreddels","rieder@universit\u00e9degen\u00e8ve","saikiran2603@navigateconsulting","xdssio@xdss"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cuberg","maartenbreddels","navigateconsulting","quansight","rungalileo","universit\u00e9degen\u00e8ve","xdss"],"_pop_contributor_orgs_raw":["@Quansight","@maartenbreddels","@navigateconsulting ","@rungalileo","Cuberg","Universit\u00e9 de Gen\u00e8ve","XDSS"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.37,"_pop_updated_issues_count":88,"_pop_closed_issues_count":22,"_pop_created_since_days":102,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":43,"_pop_recent_releases_adjusted_count":43,"_pop_issue_count":88.0,"_pop_comment_count":143.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":48.44,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vaexio/vaex/master/README.md","_readme_localurl":"vaexio~vaex~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/vaexio/vaex/master/setup.py"],"_requirements_localurls":["vaexio~vaex~setup.py"]},{"index":10,"category":"util","githuburl":"https://github.com/cython/cython","featured":null,"links":null,"description":null,"_repopath":"cython/cython","_reponame":"cython","_stars":7686,"_forks":1363,"_watches":232,"_language":"Python","_homepage":"https://cython.org","_description":"cython: The most widely used Python to C compiler","_organization":"cython","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2010-11-21T00:00:00.000Z","_age_weeks":639,"_stars_per_week":12.02,"_topics":["python","cython","cpython","cpython-extensions","c","cpp","performance","big-data"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":490,"_pop_contributor_logins":["da-woods","dalcinl@ecrcatkaust","insertinterestingnamehere@utaustincsemprogram","jdemeyer@be-mobile","larsmans","markflorisson@mlabs","mattip@quansightlabs","robertwb","scoder","vitek"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["be-mobile","ecrcatkaust","mlabs","quansightlabs","utaustincsemprogram"],"_pop_contributor_orgs_raw":["@ecrc at KAUST ","Be-Mobile","MLabs","Quansight Labs","UT Austin CSEM Program"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.21,"_pop_updated_issues_count":194,"_pop_closed_issues_count":116,"_pop_created_since_days":149,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":195.0,"_pop_comment_count":399.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":56.52,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/cython/cython/master/README.rst","_readme_localurl":"cython~cython~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/cython/cython/master/setup.py"],"_requirements_localurls":["cython~cython~setup.py"]},{"index":547,"category":"ml","githuburl":"https://github.com/optuna/optuna","featured":null,"links":null,"description":null,"_repopath":"optuna/optuna","_reponame":"optuna","_stars":7600,"_forks":805,"_watches":123,"_language":"Python","_homepage":"https://optuna.org","_description":"optuna: A hyperparameter optimization framework","_organization":"optuna","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-02-21T00:00:00.000Z","_age_weeks":261,"_stars_per_week":29.12,"_topics":["python","machine-learning","parallel","distributed","hyperparameter-optimization","hacktoberfest"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":227,"_pop_contributor_logins":["HideakiImamura@preferrednetworks","c-bata","contramundum53","crcrpar@nvidia","g-votte","himkt","hvy@preferrednetworks","nzw0301@ibm","sile","toshihikoyanase@preferrednetworks"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ibm","nvidia","preferrednetworks"],"_pop_contributor_orgs_raw":["@ibm","NVIDIA","Preferred Networks","Preferred Networks, Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":43.5,"_pop_updated_issues_count":292,"_pop_closed_issues_count":231,"_pop_created_since_days":61,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":292.0,"_pop_comment_count":750.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":0,"_pop_score":56.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/optuna/optuna/master/README.md","_readme_localurl":"optuna~optuna~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/optuna/optuna/master/pyproject.toml"],"_requirements_localurls":["optuna~optuna~pyproject.toml"]},{"index":322,"category":"web","githuburl":"https://github.com/graphql-python/graphene","featured":null,"links":null,"description":null,"_repopath":"graphql-python/graphene","_reponame":"graphene","_stars":7583,"_forks":809,"_watches":145,"_language":"Python","_homepage":"http://graphene-python.org/","_description":"graphene: GraphQL framework for Python","_organization":"graphql-python","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-09-24T00:00:00.000Z","_age_weeks":386,"_stars_per_week":19.6,"_topics":["graphql","python","relay","framework","graphene"],"_last_commit_date":"2022-12-25T00:00:00.000Z","_pop_contributor_count":196,"_pop_contributor_logins":["Cito@ghga-de","Globegitter","adamcharnock","aryaniyaps","dan98765@checkr","ekampf@twingate","erikwrede","jkimbo","justinrmiller@zefr-inc","syrusakbary@wasmerio"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["checkr","ghga-de","twingate","wasmerio","zefr-inc"],"_pop_contributor_orgs_raw":["@Twingate ","@ZEFR-INC ","@ghga-de","@wasmerio ","Checkr"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.75,"_pop_updated_issues_count":36,"_pop_closed_issues_count":22,"_pop_created_since_days":90,"_pop_updated_since_days":2,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":36.0,"_pop_comment_count":69.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":44.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/graphql-python/graphene/master/README.md","_readme_localurl":"graphql-python~graphene~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/graphql-python/graphene/master/setup.py"],"_requirements_localurls":["graphql-python~graphene~setup.py"]},{"index":28,"category":"ml-dl","githuburl":"https://github.com/google/trax","featured":null,"links":null,"description":null,"_repopath":"google/trax","_reponame":"trax","_stars":7365,"_forks":765,"_watches":146,"_language":"Python","_homepage":"","_description":"Trax \u2014 Deep Learning with Clear Code and Speed","_organization":"google","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-10-05T00:00:00.000Z","_age_weeks":176,"_stars_per_week":41.71,"_topics":["jax","numpy","deep-learning","deep-reinforcement-learning","machine-learning","transformer","reinforcement-learning"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":78,"_pop_contributor_logins":["SauravMaheshkar@ml-gde","afrozenator@google","hawkinsp@google","henrykmichalewski","j2i2","koz4k@mimuw","sebastianjaszczur","syzymon@universityofwarsaw","trax-robot","wangpengmit@mitcsail"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","mimuw","mitcsail","ml-gde","universityofwarsaw"],"_pop_contributor_orgs_raw":["@ml-gde","Google","MIMUW","MIT CSAIL","University of Warsaw"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.4,"_pop_updated_issues_count":16,"_pop_closed_issues_count":6,"_pop_created_since_days":41,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":16.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":38.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/trax/master/README.md","_readme_localurl":"google~trax~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/trax/master/setup.py"],"_requirements_localurls":["google~trax~setup.py"]},{"index":650,"category":"profiling","githuburl":"https://github.com/plasma-umass/scalene","featured":1.0,"links":null,"description":null,"_repopath":"plasma-umass/scalene","_reponame":"scalene","_stars":7358,"_forks":247,"_watches":72,"_language":"JavaScript","_homepage":"","_description":"Scalene: a high-performance, high-precision CPU, GPU, and memory profiler for Python with AI-powered optimization proposals","_organization":"plasma-umass","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-12-17T00:00:00.000Z","_age_weeks":166,"_stars_per_week":44.29,"_topics":["python","profiling","performance-analysis","cpu-profiling","profiler","python-profilers","gpu-programming","scalene","profiles-memory","performance-cpu","cpu","memory-allocation","gpu","memory-consumption"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":37,"_pop_contributor_logins":["Birdi7","Insutanto","SnoopJ","cclauss@christianclauss","dependabot[bot]","emeryberger@universityofmassachusettsamherst","groutr@lynkertechnologies","jaltmayerpizzorno","johanvergeer@johanvergeer","sternj@umassamherst"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["christianclauss","johanvergeer","lynkertechnologies","umassamherst","universityofmassachusettsamherst"],"_pop_contributor_orgs_raw":["@johanvergeer","Christian Clauss","Lynker Technologies","UMass Amherst","University of Massachusetts Amherst"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.12,"_pop_updated_issues_count":83,"_pop_closed_issues_count":50,"_pop_created_since_days":39,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":83.0,"_pop_comment_count":138.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":47.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/plasma-umass/scalene/master/README.md","_readme_localurl":"plasma-umass~scalene~README.md","_requirements_filenames":["requirements.txt","setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/plasma-umass/scalene/master/requirements.txt","https://raw.githubusercontent.com/plasma-umass/scalene/master/setup.py","https://raw.githubusercontent.com/plasma-umass/scalene/master/Pipfile"],"_requirements_localurls":["plasma-umass~scalene~requirements.txt","plasma-umass~scalene~setup.py","plasma-umass~scalene~Pipfile"]},{"index":165,"category":"nlp","githuburl":"https://github.com/doccano/doccano","featured":null,"links":null,"description":null,"_repopath":"doccano/doccano","_reponame":"doccano","_stars":7356,"_forks":1488,"_watches":125,"_language":"Python","_homepage":"https://doccano.herokuapp.com","_description":"doccano: Open source annotation tool for machine learning practitioners.","_organization":"doccano","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-05-09T00:00:00.000Z","_age_weeks":250,"_stars_per_week":29.42,"_topics":["natural-language-processing","machine-learning","annotation-tool","python","datasets","dataset","data-labeling","text-annotation","nuxtjs","vue","vuejs","nuxt"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":100,"_pop_contributor_logins":["BrambleXu","Collinbrown95@statisticscanada","Hironsan","SwiftPredator@haustiergl\u00fcck.de(deprecated)","c-w@noom","cgill95@leibnizuniversit\u00e4thannover","dependabot[bot]","j-frei","kuraga","youichiro@classi"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["classi","haustiergl\u00fcck.de(deprecated)","leibnizuniversit\u00e4thannover","noom","statisticscanada"],"_pop_contributor_orgs_raw":["@noom ","Classi","Haustiergl\u00fcck.de (deprecated)","Leibniz Universit\u00e4t Hannover","Statistics Canada"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.71,"_pop_updated_issues_count":101,"_pop_closed_issues_count":50,"_pop_created_since_days":58,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":101.0,"_pop_comment_count":112.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":48.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/doccano/doccano/master/README.md","_readme_localurl":"doccano~doccano~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":70,"category":"ml","githuburl":"https://github.com/pymc-devs/pymc3","featured":null,"links":null,"description":null,"_repopath":"pymc-devs/pymc3","_reponame":"pymc","_stars":7329,"_forks":1746,"_watches":226,"_language":"Python","_homepage":"https://docs.pymc.io/","_description":"pymc: Bayesian Modeling in Python","_organization":"pymc-devs","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2009-05-05T00:00:00.000Z","_age_weeks":720,"_stars_per_week":10.18,"_topics":["python","statistical-analysis","bayesian-inference","mcmc","variational-inference","probabilistic-programming","pytensor"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":439,"_pop_contributor_logins":["ColCarroll@google","aloctavodia@imasl-conicet","apatil","brandonwillard","bwengals","ferrine@msueconomics/skoltechcs","jsalvatier","michaelosthege@forschungszentrumj\u00fclichgmbh","ricardoV94","twiecki@pymclabs"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["forschungszentrumj\u00fclichgmbh","google","imasl-conicet","msueconomics/skoltechcs","pymclabs"],"_pop_contributor_orgs_raw":["Forschungszentrum J\u00fclich GmbH","Google","IMASL-CONICET","MSU Economics / Skoltech CS","PyMC Labs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.73,"_pop_updated_issues_count":266,"_pop_closed_issues_count":177,"_pop_created_since_days":168,"_pop_updated_since_days":0,"_pop_recent_releases_count":23,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":23,"_pop_issue_count":266.0,"_pop_comment_count":651.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":60.47,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pymc-devs/pymc3/master/README.rst","_readme_localurl":"pymc-devs~pymc3~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pymc-devs/pymc3/master/requirements.txt","https://raw.githubusercontent.com/pymc-devs/pymc3/master/setup.py","https://raw.githubusercontent.com/pymc-devs/pymc3/master/pyproject.toml"],"_requirements_localurls":["pymc-devs~pymc3~requirements.txt","pymc-devs~pymc3~setup.py","pymc-devs~pymc3~pyproject.toml"]},{"index":455,"category":"ml-dl","githuburl":"https://github.com/tensorlayer/tensorlayer","featured":null,"links":null,"description":null,"_repopath":"tensorlayer/tensorlayer","_reponame":"TensorLayer","_stars":7143,"_forks":1617,"_watches":466,"_language":"Python","_homepage":"http://tensorlayerx.com","_description":"TensorLayer: Deep Learning and Reinforcement Learning Library for Scientists and Engineers ","_organization":"tensorlayer","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2016-06-07T00:00:00.000Z","_age_weeks":350,"_stars_per_week":20.4,"_topics":["tensorlayer","deep-learning","tensorflow","neural-network","reinforcement-learning","artificial-intelligence","gan","a3c","tensorflow-tutorials","dqn","object-detection","chatbot","python","tensorflow-tutorial","imagenet","google"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":132,"_pop_contributor_logins":["ChrisWu1997@columbiauniversity","DEKHTIARJonathan@nvidia","JingqingZ@imperialcollegelondon,pangaeadata","Laicheng0830@pengchenglab","lgarithm","luomai@universityofedinburgh","quantumiracle","wagamamaz","warshallrho@pekinguniversity","zsdonghao@pekinguniversity"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["columbiauniversity","imperialcollegelondon,pangaeadata","nvidia","pekinguniversity","pengchenglab","universityofedinburgh"],"_pop_contributor_orgs_raw":["@NVIDIA","Columbia University","Imperial College London, Pangaea Data","Peking University","Peng Cheng Lab","University of Edinburgh"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":82,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":38.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorlayer/tensorlayer/master/README.md","_readme_localurl":"tensorlayer~tensorlayer~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorlayer/tensorlayer/master/setup.py"],"_requirements_localurls":["tensorlayer~tensorlayer~setup.py"]},{"index":197,"category":"nlp","githuburl":"https://github.com/eleutherai/gpt-neo","featured":null,"links":null,"description":null,"_repopath":"eleutherai/gpt-neo","_reponame":"gpt-neo","_stars":7107,"_forks":697,"_watches":169,"_language":"Python","_homepage":"https://www.eleuther.ai","_description":"gpt-neo: An implementation of model parallel GPT-2 and GPT-3-style models using the mesh-tensorflow library.","_organization":"eleutherai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-07-05T00:00:00.000Z","_age_weeks":137,"_stars_per_week":51.71,"_topics":["language-model","transformers","gpt","gpt-2","gpt-3"],"_last_commit_date":"2022-02-25T00:00:00.000Z","_pop_contributor_count":29,"_pop_contributor_logins":["ClashLuke","ConnorJL","Mistobaan","StellaAthena@boozallenhamilton","anishthite@clarosai","kevinwatkins","leogao2","lucidrains","sdtblck","srulikbd"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["boozallenhamilton","clarosai"],"_pop_contributor_orgs_raw":["@ClarosAI","Booz Allen Hamilton"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":32,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":19.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/eleutherai/gpt-neo/master/README.md","_readme_localurl":"eleutherai~gpt-neo~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/eleutherai/gpt-neo/master/requirements.txt"],"_requirements_localurls":["eleutherai~gpt-neo~requirements.txt"]},{"index":753,"category":"study","githuburl":"https://github.com/karpathy/nn-zero-to-hero","featured":null,"links":null,"description":null,"_repopath":"karpathy/nn-zero-to-hero","_reponame":"nn-zero-to-hero","_stars":7085,"_forks":644,"_watches":232,"_language":"Jupyter Notebook","_homepage":null,"_description":"nn-zero-to-hero: Neural Networks: Zero to Hero","_organization":"karpathy","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-09-08T00:00:00.000Z","_age_weeks":23,"_stars_per_week":296.98,"_topics":[],"_last_commit_date":"2023-01-17T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["edvenson","karpathy"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":16,"_pop_closed_issues_count":3,"_pop_created_since_days":6,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":16.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":10.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/karpathy/nn-zero-to-hero/master/README.md","_readme_localurl":"karpathy~nn-zero-to-hero~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":846,"category":"time-series","githuburl":"https://github.com/blue-yonder/tsfresh","featured":null,"links":null,"description":null,"_repopath":"blue-yonder/tsfresh","_reponame":"tsfresh","_stars":7079,"_forks":1111,"_watches":160,"_language":"Jupyter Notebook","_homepage":"http://tsfresh.readthedocs.io","_description":"tsfresh: Automatic extraction of relevant features from time series:","_organization":"blue-yonder","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-10-26T00:00:00.000Z","_age_weeks":330,"_stars_per_week":21.45,"_topics":["data-science","feature-extraction","time-series"],"_last_commit_date":"2022-12-31T00:00:00.000Z","_pop_contributor_count":84,"_pop_contributor_logins":["CYHSM","MaxBenChrist","dbarbier","delyanr","earthgecko","jneuff","kempa-liehr@universityofauckland","nikhase","nils-braun","pnb@universityofillinoisurbana\u2013champaign"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["universityofauckland","universityofillinoisurbana\u2013champaign"],"_pop_contributor_orgs_raw":["University of Auckland","University of Illinois Urbana\u2013Champaign"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":23,"_pop_closed_issues_count":14,"_pop_created_since_days":77,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":23.0,"_pop_comment_count":42.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":38.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/blue-yonder/tsfresh/master/README.md","_readme_localurl":"blue-yonder~tsfresh~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":286,"category":"data","githuburl":"https://github.com/simonw/datasette","featured":1.0,"links":null,"description":null,"_repopath":"simonw/datasette","_reponame":"datasette","_stars":7078,"_forks":491,"_watches":100,"_language":"Python","_homepage":"https://datasette.io","_description":"datasette: An open source multi-tool for exploring and publishing data","_organization":"simonw","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-10-23T00:00:00.000Z","_age_weeks":278,"_stars_per_week":25.43,"_topics":["sqlite","python","datasets","json","docker","datasette","automatic-api","asgi","csv","datasette-io","sql"],"_last_commit_date":"2023-01-28T00:00:00.000Z","_pop_contributor_count":73,"_pop_contributor_logins":["abdusco@abdusco","bgrins@mozilla","dependabot-preview[bot]","dependabot[bot]","fgregg@datamade,partner","jacobian@latacora","rgieseke","rixx@pretalx.com","russss","simonw@datasette"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["abdusco","datamade,partner","datasette","latacora","mozilla","pretalx.com"],"_pop_contributor_orgs_raw":["@datamade, Partner","AbdusCo","Datasette","Latacora","Mozilla","pretalx.com"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.23,"_pop_updated_issues_count":160,"_pop_closed_issues_count":71,"_pop_created_since_days":65,"_pop_updated_since_days":1,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":160.0,"_pop_comment_count":441.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":0,"_pop_score":51.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/simonw/datasette/master/README.md","_readme_localurl":"simonw~datasette~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/simonw/datasette/master/setup.py"],"_requirements_localurls":["simonw~datasette~setup.py"]},{"index":171,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/pytorch3d","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/pytorch3d","_reponame":"pytorch3d","_stars":6982,"_forks":1067,"_watches":142,"_language":"Python","_homepage":"https://pytorch3d.org/","_description":"PyTorch3D is FAIR's library of reusable components for deep learning with 3D data","_organization":"facebookresearch","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-10-25T00:00:00.000Z","_age_weeks":173,"_stars_per_week":40.19,"_topics":[],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":113,"_pop_contributor_logins":["bottler","classner@epicgames","davidsonic@meta","davnov134@facebookairesearch","gkioxari@caltech","jcjohnson@universityofmichigan/fair","megluyagao","nikhilaravi","patricklabatut@facebook","shapovalov@facebookairesearch"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["caltech","epicgames","facebook","facebookairesearch","meta","universityofmichigan/fair"],"_pop_contributor_orgs_raw":["Caltech","Epic Games","Facebook","Facebook AI Research","Meta","University of Michigan / FAIR"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.85,"_pop_updated_issues_count":121,"_pop_closed_issues_count":57,"_pop_created_since_days":40,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":121.0,"_pop_comment_count":189.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":48.3,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/pytorch3d/master/README.md","_readme_localurl":"facebookresearch~pytorch3d~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/pytorch3d/master/setup.py"],"_requirements_localurls":["facebookresearch~pytorch3d~setup.py"]},{"index":150,"category":"ml","githuburl":"https://github.com/catboost/catboost","featured":null,"links":null,"description":null,"_repopath":"catboost/catboost","_reponame":"catboost","_stars":6952,"_forks":1088,"_watches":192,"_language":"C","_homepage":"https://catboost.ai","_description":"catboost: A fast, scalable, high performance Gradient Boosting on Decision Trees library, used for ranking, classification, regression and other machine learning tasks for Python, R, Java, C++. Supports computation on CPU and GPU.","_organization":"catboost","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-07-18T00:00:00.000Z","_age_weeks":292,"_stars_per_week":23.8,"_topics":["machine-learning","decision-trees","gradient-boosting","gbm","gbdt","python","r","kaggle","gpu-computing","catboost","tutorial","categorical-features","gpu","coreml","data-science","big-data","cuda","data-mining"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":1065,"_pop_contributor_logins":["Evgueni-Petrov-aka-espetrov","VestniK","andrey-khropov@yandexnv","arcadia-devtools","frazenshtein","georgthegreat","kizill@yandex","orivej","shadchin@yandex","smertnik3sh"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["yandex","yandexnv"],"_pop_contributor_orgs_raw":["@Yandex","Yandex","Yandex NV"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":453.54,"_pop_updated_issues_count":171,"_pop_closed_issues_count":62,"_pop_created_since_days":68,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":171.0,"_pop_comment_count":204.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":58.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/catboost/catboost/master/README.md","_readme_localurl":"catboost~catboost~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":382,"category":"ml-ops","githuburl":"https://github.com/deepset-ai/haystack","featured":null,"links":null,"description":null,"_repopath":"deepset-ai/haystack","_reponame":"haystack","_stars":6939,"_forks":1047,"_watches":97,"_language":"Python","_homepage":"https://haystack.deepset.ai","_description":"haystack: :mag: Haystack is an open source NLP framework to interact with your data using Transformer models and LLMs (GPT-3 and alike). Haystack offers production-ready tools to quickly build ChatGPT-like question answering, semantic search, text generation, and more.","_organization":"deepset-ai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-11-14T00:00:00.000Z","_age_weeks":170,"_stars_per_week":40.61,"_topics":["nlp","question-answering","bert","transfer-learning","language-model","pytorch","semantic-search","squad","elasticsearch","information-retrieval","summarization","transformers","natural-language-processing","machine-learning","ai","python","chatgpt","gpt-3","large-language-models","generative-ai"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":157,"_pop_contributor_logins":["Timoeller@deepset","ZanSara@deepset-ai","bogdankostic@deepset-ai","brandenchan","julian-risch@deepset","masci@deepset-ai","tanaysoni","tholor@deepset","tstadel","vblagoje"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["deepset","deepset-ai"],"_pop_contributor_orgs_raw":["@deepset-ai","@deepset-ai ","deepset"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.85,"_pop_updated_issues_count":738,"_pop_closed_issues_count":496,"_pop_created_since_days":40,"_pop_updated_since_days":0,"_pop_recent_releases_count":26,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":26,"_pop_issue_count":738.0,"_pop_comment_count":1032.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":51.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/deepset-ai/haystack/master/README.md","_readme_localurl":"deepset-ai~haystack~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/deepset-ai/haystack/master/pyproject.toml"],"_requirements_localurls":["deepset-ai~haystack~pyproject.toml"]},{"index":65,"category":"ml","githuburl":"https://github.com/pycaret/pycaret","featured":null,"links":null,"description":null,"_repopath":"pycaret/pycaret","_reponame":"pycaret","_stars":6914,"_forks":1574,"_watches":126,"_language":"Jupyter Notebook","_homepage":"https://www.pycaret.org","_description":"pycaret: An open-source, low-code machine learning library in Python","_organization":"pycaret","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-11-23T00:00:00.000Z","_age_weeks":169,"_stars_per_week":40.77,"_topics":["data-science","citizen-data-scientists","python","machine-learning","pycaret","ml","gpu","time-series","regression","classification","anomaly-detection","nlp","clustering"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":115,"_pop_contributor_logins":["TremaMiguel@konfio","Yard1@softwareengineeranyscale","andrinbuerli","batmanscode","daikikatsuragawa@japan","goodwanghan","moezali1@pycaret","ngupta23@o9solutions","timho102003","tvdboom"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["japan","konfio","o9solutions","pycaret","softwareengineeranyscale"],"_pop_contributor_orgs_raw":["Japan","Konfio","PyCaret","Software Engineer @ Anyscale","o9 Solutions Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":19.25,"_pop_updated_issues_count":314,"_pop_closed_issues_count":241,"_pop_created_since_days":40,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":314.0,"_pop_comment_count":338.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":49.94,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pycaret/pycaret/master/README.md","_readme_localurl":"pycaret~pycaret~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pycaret/pycaret/master/requirements.txt","https://raw.githubusercontent.com/pycaret/pycaret/master/setup.py"],"_requirements_localurls":["pycaret~pycaret~requirements.txt","pycaret~pycaret~setup.py"]},{"index":532,"category":"util","githuburl":"https://github.com/facebookresearch/hydra","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/hydra","_reponame":"hydra","_stars":6807,"_forks":556,"_watches":86,"_language":"Python","_homepage":"https://hydra.cc","_description":"Hydra is a framework for elegantly configuring complex applications","_organization":"facebookresearch","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-06-12T00:00:00.000Z","_age_weeks":193,"_stars_per_week":35.27,"_topics":[],"_last_commit_date":"2023-02-07T00:00:00.000Z","_pop_contributor_count":110,"_pop_contributor_logins":["3janeAI","Jasha10","dependabot[bot]","jan-matthis@google","jieru-hu","jrapin@facebookairesearch","odelalleau","omry@facebookairesearch","pixelb@facebook","shagunsodhani@facebook"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook","facebookairesearch","google"],"_pop_contributor_orgs_raw":["@facebook","Facebook AI Research","Google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.77,"_pop_updated_issues_count":123,"_pop_closed_issues_count":80,"_pop_created_since_days":45,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":123.0,"_pop_comment_count":168.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":44.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/hydra/master/README.md","_readme_localurl":"facebookresearch~hydra~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/hydra/master/setup.py","https://raw.githubusercontent.com/facebookresearch/hydra/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~hydra~setup.py","facebookresearch~hydra~pyproject.toml"]},{"index":82,"category":"data","githuburl":"https://github.com/sqlalchemy/sqlalchemy","featured":null,"links":null,"description":null,"_repopath":"sqlalchemy/sqlalchemy","_reponame":"sqlalchemy","_stars":6805,"_forks":1076,"_watches":92,"_language":"Python","_homepage":"https://www.sqlalchemy.org","_description":"sqlalchemy: The Database Toolkit for Python","_organization":"sqlalchemy","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-11-27T00:00:00.000Z","_age_weeks":221,"_stars_per_week":30.77,"_topics":["sqlalchemy","sql","python"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":603,"_pop_contributor_logins":["CaselIT","dianaclarke","empty","gdementen@federalplanningbureau","gordthompson@self-employed","jbellis@datastax","jek","lelit","pjenvey@mozilla","zzzeek@redhat"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["datastax","federalplanningbureau","mozilla","redhat","self-employed"],"_pop_contributor_orgs_raw":["DataStax","Federal Planning Bureau","Mozilla","Red Hat","self-employed"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.02,"_pop_updated_issues_count":365,"_pop_closed_issues_count":286,"_pop_created_since_days":52,"_pop_updated_since_days":0,"_pop_recent_releases_count":27,"_pop_recent_releases_estimated_tags":65,"_pop_recent_releases_adjusted_count":27,"_pop_issue_count":367.0,"_pop_comment_count":1200.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.3,"_pop_dependents_count":0,"_pop_score":61.0,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sqlalchemy/sqlalchemy/master/README.rst","_readme_localurl":"sqlalchemy~sqlalchemy~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sqlalchemy/sqlalchemy/master/setup.py","https://raw.githubusercontent.com/sqlalchemy/sqlalchemy/master/pyproject.toml"],"_requirements_localurls":["sqlalchemy~sqlalchemy~setup.py","sqlalchemy~sqlalchemy~pyproject.toml"]},{"index":131,"category":"ml","githuburl":"https://github.com/automl/auto-sklearn","featured":null,"links":null,"description":null,"_repopath":"automl/auto-sklearn","_reponame":"auto-sklearn","_stars":6746,"_forks":1214,"_watches":212,"_language":"Python","_homepage":"https://automl.github.io/auto-sklearn","_description":"auto-sklearn: Automated Machine Learning with scikit-learn","_organization":"automl","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-07-02T00:00:00.000Z","_age_weeks":398,"_stars_per_week":16.91,"_topics":["automl","scikit-learn","automated-machine-learning","hyperparameter-optimization","hyperparameter-tuning","hyperparameter-search","bayesian-optimization","metalearning","meta-learning","smac"],"_last_commit_date":"2022-12-07T00:00:00.000Z","_pop_contributor_count":88,"_pop_contributor_logins":["KEggensperger@universityoft\u00fcbingen","aaronkl@awsberlin","adomashnev","ahn1340@centerforarmyanalysisandsimulation","axsapronov","eddiebergman@automl.org","franchuterivera@universityoffreiburg","gui-miotto@uni-freiburg","mfeurer@albert-ludwigs-universit\u00e4tfreiburg","stokasto"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["albert-ludwigs-universit\u00e4tfreiburg","automl.org","awsberlin","centerforarmyanalysisandsimulation","uni-freiburg","universityoffreiburg","universityoft\u00fcbingen"],"_pop_contributor_orgs_raw":["AWS Berlin","Albert-Ludwigs-Universit\u00e4t Freiburg","Center for Army Analysis and Simulation","Uni-Freiburg","University of Freiburg","University of T\u00fcbingen","automl.org"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.02,"_pop_updated_issues_count":38,"_pop_closed_issues_count":19,"_pop_created_since_days":93,"_pop_updated_since_days":3,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":38.0,"_pop_comment_count":44.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":42.13,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/automl/auto-sklearn/master/README.md","_readme_localurl":"automl~auto-sklearn~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/automl/auto-sklearn/master/requirements.txt","https://raw.githubusercontent.com/automl/auto-sklearn/master/setup.py","https://raw.githubusercontent.com/automl/auto-sklearn/master/pyproject.toml"],"_requirements_localurls":["automl~auto-sklearn~requirements.txt","automl~auto-sklearn~setup.py","automl~auto-sklearn~pyproject.toml"]},{"index":389,"category":"data","githuburl":"https://github.com/yzhao062/pyod","featured":null,"links":null,"description":null,"_repopath":"yzhao062/pyod","_reponame":"pyod","_stars":6745,"_forks":1233,"_watches":151,"_language":"Python","_homepage":"http://pyod.readthedocs.io","_description":"pyod: A Comprehensive and Scalable Python Library for Outlier Detection (Anomaly Detection)","_organization":"yzhao062","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-10-03T00:00:00.000Z","_age_weeks":281,"_stars_per_week":23.99,"_topics":["outlier-detection","anomaly-detection","outlier-ensembles","outliers","anomaly","python","machine-learning","data-mining","unsupervised-learning","python2","python3","fraud-detection","autoencoder","neural-networks","deep-learning","data-science","data-analysis","novelty-detection","out-of-distribution-detection"],"_last_commit_date":"2022-12-16T00:00:00.000Z","_pop_contributor_count":46,"_pop_contributor_logins":["John-Almardeny","KulikDM","RoelBouman","ZainNasrullah@royalbankofcanada(rbc)","agoodge@nationaluniversityofsingapore","ingonader","mbongaerts@erasmusmedicalcentre","tam17aki","xhan97@universityofmacau","yzhao062@carnegiemellonuniversity"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["carnegiemellonuniversity","erasmusmedicalcentre","nationaluniversityofsingapore","royalbankofcanada(rbc)","universityofmacau"],"_pop_contributor_orgs_raw":["Carnegie Mellon University","Erasmus Medical Centre","National University of Singapore","Royal Bank of Canada (RBC)","University of Macau"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.6,"_pop_updated_issues_count":27,"_pop_closed_issues_count":6,"_pop_created_since_days":66,"_pop_updated_since_days":2,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":27.0,"_pop_comment_count":43.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":41.62,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/yzhao062/pyod/master/README.rst","_readme_localurl":"yzhao062~pyod~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/yzhao062/pyod/master/requirements.txt","https://raw.githubusercontent.com/yzhao062/pyod/master/setup.py"],"_requirements_localurls":["yzhao062~pyod~requirements.txt","yzhao062~pyod~setup.py"]},{"index":824,"category":"study","githuburl":"https://github.com/firmai/industry-machine-learning","featured":null,"links":null,"description":null,"_repopath":"firmai/industry-machine-learning","_reponame":"industry-machine-learning","_stars":6725,"_forks":1123,"_watches":392,"_language":"Jupyter Notebook","_homepage":"https://www.linkedin.com/company/firmai","_description":"industry-machine-learning: A curated list of applied machine learning and data science notebooks and libraries across different industries (by @firmai)","_organization":"firmai","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2019-05-03T00:00:00.000Z","_age_weeks":198,"_stars_per_week":33.84,"_topics":["machine-learning","jupyter-notebook","datascience","example","python","practical-machine-learning","data-science","firmai"],"_last_commit_date":"2021-12-18T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["Hefeweizen","RF-Nelson@spotify","blokhin@tilde-lab","firmai@alanturinginstitute,firmai","gaulinmp@universityofutah","skvrahul"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["alanturinginstitute,firmai","spotify","tilde-lab","universityofutah"],"_pop_contributor_orgs_raw":["@tilde-lab","Alan Turing Institute, FirmAI","Spotify","University of Utah"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":46,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":16.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/firmai/industry-machine-learning/master/README.md","_readme_localurl":"firmai~industry-machine-learning~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":716,"category":"util","githuburl":"https://github.com/jazzband/pip-tools","featured":null,"links":null,"description":null,"_repopath":"jazzband/pip-tools","_reponame":"pip-tools","_stars":6638,"_forks":564,"_watches":104,"_language":"Python","_homepage":"https://pip-tools.rtfd.io","_description":"pip-tools: A set of tools to keep your pinned Python dependencies fresh.","_organization":"jazzband","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-09-10T00:00:00.000Z","_age_weeks":545,"_stars_per_week":12.17,"_topics":["python","packaging","pip","pip-tools","pip-compile","setuptools","requirements","lockfile","hashes"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":182,"_pop_contributor_logins":["atugushev","blueyed@freelancer,upforhire","davidovich","hramezani@crate","jdufresne@pioneervalleybooks","nvie@liveblocks","pre-commit-ci[bot]","richafrank@quantopian","vphilippon@ubisoftinc","webknjaz@ansiblecoreredhatofficial"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ansiblecoreredhatofficial","crate","freelancer,upforhire","liveblocks","pioneervalleybooks","quantopian","ubisoftinc"],"_pop_contributor_orgs_raw":["@Ansible Core @ @RedHatOfficial","@Ubisoftinc","@crate ","@liveblocks","@quantopian","Freelancer, up for hire","Pioneer Valley Books"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.46,"_pop_updated_issues_count":117,"_pop_closed_issues_count":74,"_pop_created_since_days":127,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":117.0,"_pop_comment_count":192.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":53.24,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jazzband/pip-tools/master/README.rst","_readme_localurl":"jazzband~pip-tools~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jazzband/pip-tools/master/pyproject.toml"],"_requirements_localurls":["jazzband~pip-tools~pyproject.toml"]},{"index":215,"category":"debug","githuburl":"https://github.com/gruns/icecream","featured":null,"links":null,"description":null,"_repopath":"gruns/icecream","_reponame":"icecream","_stars":6603,"_forks":135,"_watches":50,"_language":"Python","_homepage":"","_description":"icecream: \ud83c\udf66 Never use print() to debug again.","_organization":"gruns","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-02-13T00:00:00.000Z","_age_weeks":262,"_stars_per_week":25.19,"_topics":["python","python3","library","inspects","debug","debugging","debugging-tool","print"],"_last_commit_date":"2022-12-04T00:00:00.000Z","_pop_contributor_count":21,"_pop_contributor_logins":["Akshay-Thakare@twilio","DominikRafacz@biogenies","HelinXu@pku-epic","alexmojaki","atusy@fixpoint","baopham","ehud-nym","gruns@https://arc.io,https://pep.dev","palfrey","ss18@kpn"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["biogenies","fixpoint","https://arc.io,https://pep.dev","kpn","pku-epic","twilio"],"_pop_contributor_orgs_raw":["@BioGenies ","@PKU-EPIC ","@Twilio","@kpn","Fixpoint INC.","https://arc.io, https://pep.dev"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.62,"_pop_updated_issues_count":9,"_pop_closed_issues_count":2,"_pop_created_since_days":61,"_pop_updated_since_days":3,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":9.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":32.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gruns/icecream/master/README.md","_readme_localurl":"gruns~icecream~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gruns/icecream/master/setup.py"],"_requirements_localurls":["gruns~icecream~setup.py"]},{"index":133,"category":"ml","githuburl":"https://github.com/hyperopt/hyperopt","featured":null,"links":null,"description":null,"_repopath":"hyperopt/hyperopt","_reponame":"hyperopt","_stars":6590,"_forks":1009,"_watches":126,"_language":"Python","_homepage":"http://hyperopt.github.io/hyperopt","_description":"hyperopt: Distributed Asynchronous Hyperparameter Optimization in Python","_organization":"hyperopt","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2011-09-06T00:00:00.000Z","_age_weeks":598,"_stars_per_week":11.02,"_topics":[],"_last_commit_date":"2021-11-29T00:00:00.000Z","_pop_contributor_count":93,"_pop_contributor_logins":["WeichenXu123@databricks","birbbit","cclauss@christianclauss","dwf","jaberg@kindred.ai","marctorsoc@globality","marload@contxts-io","maxpumperla","temporaer@microsoft","yamins81"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["christianclauss","contxts-io","databricks","globality","kindred.ai","microsoft"],"_pop_contributor_orgs_raw":["@Microsoft","@contxts-io ","@databricks","Christian Clauss","Globality","kindred.ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":23,"_pop_closed_issues_count":7,"_pop_created_since_days":140,"_pop_updated_since_days":15,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":23.0,"_pop_comment_count":17.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":34.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hyperopt/hyperopt/master/README.md","_readme_localurl":"hyperopt~hyperopt~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hyperopt/hyperopt/master/setup.py"],"_requirements_localurls":["hyperopt~hyperopt~setup.py"]},{"index":67,"category":"web","githuburl":"https://github.com/pyeve/eve","featured":null,"links":null,"description":null,"_repopath":"pyeve/eve","_reponame":"eve","_stars":6586,"_forks":753,"_watches":229,"_language":"Python","_homepage":"https://python-eve.org","_description":"eve: REST API framework designed for human beings","_organization":"pyeve","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2012-10-22T00:00:00.000Z","_age_weeks":539,"_stars_per_week":12.21,"_topics":["python","rest","flask","mongodb"],"_last_commit_date":"2022-11-10T00:00:00.000Z","_pop_contributor_count":211,"_pop_contributor_logins":["amagdas","arnauorriols@denoland","einarhuseby","girogiro","graffic@myself","joshvillbrandt","kynan@google","nckpark","nicolaiarocci@cir2000","petrjasek@sourcefabric"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cir2000","denoland","google","myself","sourcefabric"],"_pop_contributor_orgs_raw":["@denoland ","CIR 2000","Google","MySelf","Sourcefabric"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.73,"_pop_updated_issues_count":7,"_pop_closed_issues_count":3,"_pop_created_since_days":126,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":7.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":40.73,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyeve/eve/master/README.rst","_readme_localurl":"pyeve~eve~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyeve/eve/master/setup.py","https://raw.githubusercontent.com/pyeve/eve/master/pyproject.toml"],"_requirements_localurls":["pyeve~eve~setup.py","pyeve~eve~pyproject.toml"]},{"index":121,"category":"ml-ops","githuburl":"https://github.com/dagster-io/dagster","featured":null,"links":null,"description":null,"_repopath":"dagster-io/dagster","_reponame":"dagster","_stars":6584,"_forks":826,"_watches":92,"_language":"Python","_homepage":"https://dagster.io","_description":"dagster: An orchestration platform for the development, production, and observation of data assets.","_organization":"dagster-io","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-04-30T00:00:00.000Z","_age_weeks":251,"_stars_per_week":26.2,"_topics":["data-pipelines","dagster","workflow","data-science","workflow-automation","python","scheduler","data-orchestrator","etl","analytics","data-engineering","mlops","orchestration","data-integration","metadata"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":274,"_pop_contributor_logins":["alangenfeld@elementl","bengotow@foundry376","dpeng817@elementl","gibsondan","hellendag@elementl","mgasner","prha","schrockn@elementl","sryza@elementl","yuhan@elementl"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["elementl","foundry376"],"_pop_contributor_orgs_raw":["Elementl","Foundry376"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":64.4,"_pop_updated_issues_count":1933,"_pop_closed_issues_count":1484,"_pop_created_since_days":59,"_pop_updated_since_days":0,"_pop_recent_releases_count":61,"_pop_recent_releases_estimated_tags":135,"_pop_recent_releases_adjusted_count":61,"_pop_issue_count":1932.0,"_pop_comment_count":4145.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":59.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dagster-io/dagster/master/README.md","_readme_localurl":"dagster-io~dagster~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dagster-io/dagster/master/pyproject.toml"],"_requirements_localurls":["dagster-io~dagster~pyproject.toml"]},{"index":459,"category":"ml-ops","githuburl":"https://github.com/dbt-labs/dbt-core","featured":null,"links":null,"description":null,"_repopath":"dbt-labs/dbt-core","_reponame":"dbt-core","_stars":6555,"_forks":1158,"_watches":134,"_language":"Python","_homepage":"https://getdbt.com","_description":"dbt-core: dbt enables data analysts and engineers to transform their data using the same practices that software engineers use to build applications.","_organization":"dbt-labs","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-03-10T00:00:00.000Z","_age_weeks":362,"_stars_per_week":18.06,"_topics":["dbt-viewpoint","slack","pypa","data-modeling","business-intelligence","analytics","elt"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":266,"_pop_contributor_logins":["beckjake","cmcarthur@fishtownanalytics","drewbanin@dbt-labs","emmyoop@dbt-labs","gshank","iknox-fa@fishtownanalytics","jtcohen6@dbt-labs","kconvey@verilylifesciences","leahwicz","nathaniel-may@dbt-labs"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["dbt-labs","fishtownanalytics","verilylifesciences"],"_pop_contributor_orgs_raw":["@dbt-labs","@dbt-labs ","Fishtown Analytics","Verily Life Sciences"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.67,"_pop_updated_issues_count":1006,"_pop_closed_issues_count":676,"_pop_created_since_days":85,"_pop_updated_since_days":0,"_pop_recent_releases_count":47,"_pop_recent_releases_estimated_tags":22,"_pop_recent_releases_adjusted_count":47,"_pop_issue_count":1006.0,"_pop_comment_count":1572.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":56.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dbt-labs/dbt-core/master/README.md","_readme_localurl":"dbt-labs~dbt-core~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dbt-labs/dbt-core/master/requirements.txt","https://raw.githubusercontent.com/dbt-labs/dbt-core/master/setup.py"],"_requirements_localurls":["dbt-labs~dbt-core~requirements.txt","dbt-labs~dbt-core~setup.py"]},{"index":288,"category":"testing","githuburl":"https://github.com/hypothesisworks/hypothesis","featured":1.0,"links":null,"description":null,"_repopath":"hypothesisworks/hypothesis","_reponame":"hypothesis","_stars":6533,"_forks":549,"_watches":67,"_language":"Python","_homepage":"https://hypothesis.works","_description":"Hypothesis is a powerful, flexible, and easy to use library for property-based testing.","_organization":"hypothesisworks","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2013-03-10T00:00:00.000Z","_age_weeks":519,"_stars_per_week":12.58,"_topics":["python","testing","fuzzing","property-based-testing"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":302,"_pop_contributor_logins":["Cheukting@anaconda","DRMacIver","Zac-HD@anthropic","Zalathar","alexwlchan@weomecollection","amw-zero@vts","honno@quansight","pyup-bot@pyupio","rsokl","sobolevn"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","anthropic","pyupio","quansight","vts","weomecollection"],"_pop_contributor_orgs_raw":["@Quansight","@pyupio","@wellcomecollection ","Anaconda","Anthropic","VTS"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.88,"_pop_updated_issues_count":85,"_pop_closed_issues_count":60,"_pop_created_since_days":121,"_pop_updated_since_days":0,"_pop_recent_releases_count":101,"_pop_recent_releases_estimated_tags":134,"_pop_recent_releases_adjusted_count":101,"_pop_issue_count":85.0,"_pop_comment_count":159.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":58.12,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/hypothesisworks/hypothesis/master/README.rst","_readme_localurl":"hypothesisworks~hypothesis~README.rst","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":141,"category":"ml","githuburl":"https://github.com/featurelabs/featuretools","featured":1.0,"links":null,"description":null,"_repopath":"featurelabs/featuretools","_reponame":"featuretools","_stars":6518,"_forks":842,"_watches":158,"_language":"Python","_homepage":"https://www.featuretools.com","_description":"featuretools: An open source python library for automated feature engineering","_organization":"featurelabs","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-09-08T00:00:00.000Z","_age_weeks":284,"_stars_per_week":22.89,"_topics":["feature-engineering","machine-learning","data-science","automated-machine-learning","automl","python","scikit-learn","automated-feature-engineering"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":69,"_pop_contributor_logins":["Seth-Rothschild","frances-h","github-actions[bot]","gsheni@alteryx","kmax12","machineFL","rwedge","sbadithe","tamargrey@alteryxinnovationlabs","thehomebrewnerd"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["alteryx","alteryxinnovationlabs"],"_pop_contributor_orgs_raw":["@alteryx","Alteryx Innovation Labs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.04,"_pop_updated_issues_count":147,"_pop_closed_issues_count":117,"_pop_created_since_days":66,"_pop_updated_since_days":0,"_pop_recent_releases_count":25,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":25,"_pop_issue_count":147.0,"_pop_comment_count":101.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":45.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/featurelabs/featuretools/master/README.md","_readme_localurl":"featurelabs~featuretools~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/featurelabs/featuretools/master/pyproject.toml"],"_requirements_localurls":["featurelabs~featuretools~pyproject.toml"]},{"index":230,"category":"template","githuburl":"https://github.com/drivendata/cookiecutter-data-science","featured":1.0,"links":null,"description":null,"_repopath":"drivendata/cookiecutter-data-science","_reponame":"cookiecutter-data-science","_stars":6508,"_forks":2073,"_watches":113,"_language":"Python","_homepage":"http://drivendata.github.io/cookiecutter-data-science/","_description":"cookiecutter-data-science: A logical, reasonably standardized, but flexible project structure for doing and sharing data science work.","_organization":"drivendata","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-10-30T00:00:00.000Z","_age_weeks":381,"_stars_per_week":17.05,"_topics":["cookiecutter-data-science","cookiecutter","cookiecutter-template","data-science","machine-learning","ai"],"_last_commit_date":"2022-03-11T00:00:00.000Z","_pop_contributor_count":45,"_pop_contributor_logins":["Midnighter@unseenbio","adamkgoldfarb","andrewsanchez@ankihub","codyrioux@netflix","hwartig@contentful","isms","jbrambleDC@localfoodgroup","liudonghs@hellosoda","niloch","pjbull@drivendata"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ankihub","contentful","drivendata","hellosoda","localfoodgroup","netflix","unseenbio"],"_pop_contributor_orgs_raw":["@UnseenBio","@contentful","AnkiHub","DrivenData","Hello Soda","Local Food Group","Netflix"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":6,"_pop_closed_issues_count":1,"_pop_created_since_days":89,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":6.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":29.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/drivendata/cookiecutter-data-science/master/README.md","_readme_localurl":"drivendata~cookiecutter-data-science~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/drivendata/cookiecutter-data-science/master/requirements.txt"],"_requirements_localurls":["drivendata~cookiecutter-data-science~requirements.txt"]},{"index":153,"category":"util","githuburl":"https://github.com/marshmallow-code/marshmallow","featured":null,"links":null,"description":null,"_repopath":"marshmallow-code/marshmallow","_reponame":"marshmallow","_stars":6428,"_forks":620,"_watches":81,"_language":"Python","_homepage":"https://marshmallow.readthedocs.io/","_description":"marshmallow: A lightweight library for converting complex objects to and from simple Python datatypes.","_organization":"marshmallow-code","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2013-11-10T00:00:00.000Z","_age_weeks":484,"_stars_per_week":13.27,"_topics":["serialization","deserialization","validation","python","marshalling","python-3","serde","schema","hacktoberfest"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":204,"_pop_contributor_logins":["dependabot-preview[bot]","dependabot-support","dependabot[bot]","lafrech@nobatek","mgetka","pyup-bot@pyupio","sirosen","sloria","taion","zblz"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["nobatek","pyupio"],"_pop_contributor_orgs_raw":["@Nobatek","@pyupio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.92,"_pop_updated_issues_count":55,"_pop_closed_issues_count":41,"_pop_created_since_days":113,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":55.0,"_pop_comment_count":57.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":47.1,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/marshmallow-code/marshmallow/master/README.rst","_readme_localurl":"marshmallow-code~marshmallow~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/marshmallow-code/marshmallow/master/setup.py","https://raw.githubusercontent.com/marshmallow-code/marshmallow/master/pyproject.toml"],"_requirements_localurls":["marshmallow-code~marshmallow~setup.py","marshmallow-code~marshmallow~pyproject.toml"]},{"index":356,"category":"ml-ops","githuburl":"https://github.com/netflix/metaflow","featured":null,"links":null,"description":null,"_repopath":"netflix/metaflow","_reponame":"metaflow","_stars":6414,"_forks":610,"_watches":246,"_language":"Python","_homepage":"https://metaflow.org","_description":"metaflow: :rocket: Build and manage real-life data science projects with ease!","_organization":"netflix","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-09-17T00:00:00.000Z","_age_weeks":179,"_stars_per_week":35.8,"_topics":["machine-learning","data-science","productivity","model-management","ai","ml","ml-platform","ml-infrastructure","python","r","rstats","reproducible-research","r-package","mlops","datascience","cli","high-performance-computing","kubernetes"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":64,"_pop_contributor_logins":["akyrola@missingexponent","cclauss@christianclauss","dependabot[bot]","jackie-ob","jasonge27@netflix","mdneuzerling","oavdeev@outerbounds","romain-intel","savingoyal@outerbounds","valayDave"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["christianclauss","missingexponent","netflix","outerbounds"],"_pop_contributor_orgs_raw":["@Outerbounds","Christian Clauss","Missing Exponent","Netflix"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.94,"_pop_updated_issues_count":117,"_pop_closed_issues_count":74,"_pop_created_since_days":42,"_pop_updated_since_days":0,"_pop_recent_releases_count":31,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":31,"_pop_issue_count":117.0,"_pop_comment_count":171.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":47.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/netflix/metaflow/master/README.md","_readme_localurl":"netflix~metaflow~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/netflix/metaflow/master/setup.py"],"_requirements_localurls":["netflix~metaflow~setup.py"]},{"index":556,"category":"ml-dl","githuburl":"https://github.com/arogozhnikov/einops","featured":null,"links":null,"description":null,"_repopath":"arogozhnikov/einops","_reponame":"einops","_stars":6401,"_forks":288,"_watches":63,"_language":"Python","_homepage":"https://einops.rocks","_description":"einops: Deep learning operations reinvented (for pytorch, tensorflow, jax and others)","_organization":"arogozhnikov","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-09-22T00:00:00.000Z","_age_weeks":230,"_stars_per_week":27.76,"_topics":["deep-learning","pytorch","tensorflow","numpy","gluon","cupy","chainer","keras","tensor","jax"],"_last_commit_date":"2023-01-18T00:00:00.000Z","_pop_contributor_count":22,"_pop_contributor_logins":["EPronovost","Ldpe2G@sunyat-senuniversity","MilesCranmer@princetonuniversity","adam-r-kowalski@simspace","arogozhnikov@aperturescience","boeddeker@paderbornuniversity","cgarciae@quansight","danielhavir@apple","ollema","rentainhe@idea"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aperturescience","apple","idea","paderbornuniversity","princetonuniversity","quansight","simspace","sunyat-senuniversity"],"_pop_contributor_orgs_raw":["@apple","Aperture Science","IDEA","Paderborn University","Princeton University","Quansight","Sun Yat-sen University","simspace"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.71,"_pop_updated_issues_count":14,"_pop_closed_issues_count":7,"_pop_created_since_days":54,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":14.0,"_pop_comment_count":17.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":38.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/arogozhnikov/einops/master/README.md","_readme_localurl":"arogozhnikov~einops~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/arogozhnikov/einops/master/pyproject.toml"],"_requirements_localurls":["arogozhnikov~einops~pyproject.toml"]},{"index":602,"category":"testing","githuburl":"https://github.com/newsapps/beeswithmachineguns","featured":null,"links":null,"description":null,"_repopath":"newsapps/beeswithmachineguns","_reponame":"beeswithmachineguns","_stars":6288,"_forks":662,"_watches":227,"_language":"Python","_homepage":"http://apps.chicagotribune.com/","_description":"beeswithmachineguns: A utility for arming (creating) many bees (micro EC2 instances) to attack (load test) targets (web applications).","_organization":"newsapps","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2010-06-29T00:00:00.000Z","_age_weeks":660,"_stars_per_week":9.53,"_topics":[],"_last_commit_date":"2017-12-20T00:00:00.000Z","_pop_contributor_count":49,"_pop_contributor_logins":["Altonymous","R4wm@https://github.com/verizondigital/","abanna@ixsystems","cosmin@facebook","ddworken@google","deanmalmgren@datascopeanalytics","edwardmeshuris","nfarina@kuto","onyxfish@fivethirtyeight","richardtylee@br"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["br","datascopeanalytics","facebook","fivethirtyeight","google","https://github.com/verizondigital/","ixsystems","kuto"],"_pop_contributor_orgs_raw":["@br ","@facebook","@fivethirtyeight","@iXsystems ","Datascope Analytics","Google","Kuto","https://github.com/VerizonDigital/"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":154,"_pop_updated_since_days":63,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":24.11,"_readme_filename":"","_readme_giturl":"","_readme_localurl":"","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/newsapps/beeswithmachineguns/master/requirements.txt","https://raw.githubusercontent.com/newsapps/beeswithmachineguns/master/setup.py"],"_requirements_localurls":["newsapps~beeswithmachineguns~requirements.txt","newsapps~beeswithmachineguns~setup.py"]},{"index":800,"category":"web","githuburl":"https://github.com/pallets/werkzeug","featured":null,"links":null,"description":null,"_repopath":"pallets/werkzeug","_reponame":"werkzeug","_stars":6286,"_forks":1680,"_watches":227,"_language":"Python","_homepage":"https://werkzeug.palletsprojects.com","_description":"werkzeug: The comprehensive WSGI web application library.","_organization":"pallets","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2010-10-18T00:00:00.000Z","_age_weeks":644,"_stars_per_week":9.76,"_topics":["python","wsgi","werkzeug","http","pallets"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":468,"_pop_contributor_logins":["DasIch@zalandose","EnTeQuAk@mozilla","RonnyPfannschmidt@redhatinsights","birkenfeld@fzj\u00fclich","davidism","dependabot-preview[bot]","dependabot[bot]","mitsuhiko@sentry","pgjones","untitaker@getsentry"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["fzj\u00fclich","getsentry","mozilla","redhatinsights","sentry","zalandose"],"_pop_contributor_orgs_raw":["@RedHatInsights ","@getsentry ","FZ J\u00fclich","Mozilla","Sentry","Zalando SE"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.81,"_pop_updated_issues_count":82,"_pop_closed_issues_count":80,"_pop_created_since_days":150,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":82.0,"_pop_comment_count":61.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":52.63,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/werkzeug/master/README.rst","_readme_localurl":"pallets~werkzeug~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/werkzeug/master/pyproject.toml"],"_requirements_localurls":["pallets~werkzeug~pyproject.toml"]},{"index":20,"category":"typing","githuburl":"https://github.com/facebook/pyre-check","featured":null,"links":null,"description":null,"_repopath":"facebook/pyre-check","_reponame":"pyre-check","_stars":6240,"_forks":415,"_watches":112,"_language":"OCaml","_homepage":"https://pyre-check.org/","_description":"pyre-check: Performant type-checking for python.","_organization":"facebook","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2017-11-10T00:00:00.000Z","_age_weeks":275,"_stars_per_week":22.63,"_topics":["python","typechecker","type-check","static-analysis","ocaml","code-quality","abstract-interpretation","security","program-analysis","taint-analysis","control-flow-analysis"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":234,"_pop_contributor_logins":["MaggieMoss","arthaud@facebook","dkgi","fahndrich","grievejia@facebook","mrkmndz@facebook","pradeep90","shannonzhu","sinancepel","stroxler@metaplatforms"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook","metaplatforms"],"_pop_contributor_orgs_raw":["@facebook","@facebook ","Facebook Inc.","Meta Platforms"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":48.08,"_pop_updated_issues_count":23,"_pop_closed_issues_count":9,"_pop_created_since_days":64,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":23.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":46.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebook/pyre-check/master/README.md","_readme_localurl":"facebook~pyre-check~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebook/pyre-check/master/requirements.txt","https://raw.githubusercontent.com/facebook/pyre-check/master/pyproject.toml"],"_requirements_localurls":["facebook~pyre-check~requirements.txt","facebook~pyre-check~pyproject.toml"]},{"index":681,"category":"ml","githuburl":"https://github.com/hips/autograd","featured":null,"links":null,"description":null,"_repopath":"hips/autograd","_reponame":"autograd","_stars":6197,"_forks":848,"_watches":216,"_language":"Python","_homepage":"","_description":"autograd: Efficiently computes derivatives of numpy code.","_organization":"hips","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-11-24T00:00:00.000Z","_age_weeks":430,"_stars_per_week":14.4,"_topics":[],"_last_commit_date":"2022-09-29T00:00:00.000Z","_pop_contributor_count":52,"_pop_contributor_logins":["JasperSnoek","clemisch","dougalm@googlebrain","duvenaud@universityoftoronto","gcampanella@visa","j-towns@universityofamsterdam","kcarnold","mattjj@google","rainwoodman@loonr&d","yukoba"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","googlebrain","loonr&d","universityofamsterdam","universityoftoronto","visa"],"_pop_contributor_orgs_raw":["@visa","Google","Google Brain","Loon R&D","University of Amsterdam","University of Toronto"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":100,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":31.66,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hips/autograd/master/README.md","_readme_localurl":"hips~autograd~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hips/autograd/master/setup.py"],"_requirements_localurls":["hips~autograd~setup.py"]},{"index":410,"category":"web","githuburl":"https://github.com/encode/uvicorn","featured":null,"links":null,"description":null,"_repopath":"encode/uvicorn","_reponame":"uvicorn","_stars":6176,"_forks":547,"_watches":84,"_language":"Python","_homepage":"https://www.uvicorn.org/","_description":"uvicorn: An ASGI web server, for Python. \ud83e\udd84","_organization":"encode","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-05-31T00:00:00.000Z","_age_weeks":299,"_stars_per_week":20.66,"_topics":["python","asyncio","asgi","http","http-server"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":152,"_pop_contributor_logins":["Kludex@encode","almarklein@independentsoftwareengineer","dependabot[bot]","euri10","florimondmanca","graingert","johnthagen","maximilianhurl","simonw@datasette","tomchristie@encodeoss"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["datasette","encode","encodeoss","independentsoftwareengineer"],"_pop_contributor_orgs_raw":["@encode","Datasette","Encode OSS","Independent software engineer"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.42,"_pop_updated_issues_count":123,"_pop_closed_issues_count":96,"_pop_created_since_days":70,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":123.0,"_pop_comment_count":283.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":50.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/encode/uvicorn/master/README.md","_readme_localurl":"encode~uvicorn~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/encode/uvicorn/master/requirements.txt","https://raw.githubusercontent.com/encode/uvicorn/master/pyproject.toml"],"_requirements_localurls":["encode~uvicorn~requirements.txt","encode~uvicorn~pyproject.toml"]},{"index":879,"category":"time-series","githuburl":"https://github.com/sktime/sktime","featured":1.0,"links":null,"description":null,"_repopath":"sktime/sktime","_reponame":"sktime","_stars":6165,"_forks":1028,"_watches":108,"_language":"Python","_homepage":"https://www.sktime.net","_description":"sktime: A unified framework for machine learning with time series","_organization":"sktime","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-11-06T00:00:00.000Z","_age_weeks":224,"_stars_per_week":27.5,"_topics":["time-series","machine-learning","scikit-learn","time-series-classification","time-series-regression","forecasting","time-series-analysis","data-science","data-mining"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":235,"_pop_contributor_logins":["MatthewMiddlehurst@universityofeastanglia","TonyBagnall@universityofeastanglia","ViktorKaz","aiwalter@scikit-time","fkiraly@gfkse,ucl,sktime","goastler","jasonlines@universityofeastanglia(uea)","lmmentel","mloning@uclalan-turing-instituteesrc-cdrc","sajaysurya@universitycollegelondon"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["gfkse,ucl,sktime","scikit-time","uclalan-turing-instituteesrc-cdrc","universitycollegelondon","universityofeastanglia","universityofeastanglia(uea)"],"_pop_contributor_orgs_raw":["@GfKse, @UCL, @sktime","@UCL @alan-turing-institute @ESRC-CDRC ","@scikit-time","University College London","University of East Anglia","University of East Anglia (UEA)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":18.33,"_pop_updated_issues_count":530,"_pop_closed_issues_count":354,"_pop_created_since_days":52,"_pop_updated_since_days":0,"_pop_recent_releases_count":18,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":530.0,"_pop_comment_count":1521.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":0,"_pop_score":58.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sktime/sktime/master/README.md","_readme_localurl":"sktime~sktime~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sktime/sktime/master/pyproject.toml"],"_requirements_localurls":["sktime~sktime~pyproject.toml"]},{"index":682,"category":"diffusion","githuburl":"https://github.com/compvis/latent-diffusion","featured":null,"links":null,"description":null,"_repopath":"compvis/latent-diffusion","_reponame":"latent-diffusion","_stars":6148,"_forks":841,"_watches":76,"_language":"Jupyter Notebook","_homepage":null,"_description":"latent-diffusion: High-Resolution Image Synthesis with Latent Diffusion Models","_organization":"compvis","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-12-20T00:00:00.000Z","_age_weeks":61,"_stars_per_week":100.32,"_topics":[],"_last_commit_date":"2022-07-26T00:00:00.000Z","_pop_contributor_count":5,"_pop_contributor_logins":["AK391@huggingface","ablattmann","crowsonkb","pesser@runwayml","rromb"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["huggingface","runwayml"],"_pop_contributor_orgs_raw":["@runwayml ","Huggingface"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":70,"_pop_closed_issues_count":15,"_pop_created_since_days":14,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":70.0,"_pop_comment_count":101.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":21.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/compvis/latent-diffusion/master/README.md","_readme_localurl":"compvis~latent-diffusion~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/compvis/latent-diffusion/master/setup.py"],"_requirements_localurls":["compvis~latent-diffusion~setup.py"]},{"index":73,"category":"gis","githuburl":"https://github.com/python-visualization/folium","featured":null,"links":null,"description":null,"_repopath":"python-visualization/folium","_reponame":"folium","_stars":6095,"_forks":2167,"_watches":164,"_language":"Python","_homepage":"https://python-visualization.github.io/folium/","_description":"folium: Python Data. Leaflet.js Maps. ","_organization":"python-visualization","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2013-05-09T00:00:00.000Z","_age_weeks":510,"_stars_per_week":11.93,"_topics":["closember","data-science","data-visualization","javascript","maps","python"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":149,"_pop_contributor_logins":["BibMartin@datartibus","Conengmo","JamesGardiner@jgardinerconsultingltd.","birdage@neyasystems","fullonic","halfdanrump@nowcast","joshuacano","ocefpaf","themiurgo@spotify","wrobstory@stripe"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["datartibus","jgardinerconsultingltd.","neyasystems","nowcast","spotify","stripe"],"_pop_contributor_orgs_raw":["DatArtibus","J Gardiner Consulting Ltd.","Neya Systems LLC","Nowcast Inc.","Spotify","Stripe"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.9,"_pop_updated_issues_count":130,"_pop_closed_issues_count":109,"_pop_created_since_days":119,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":130.0,"_pop_comment_count":203.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":49.57,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/python-visualization/folium/master/README.rst","_readme_localurl":"python-visualization~folium~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-visualization/folium/master/requirements.txt","https://raw.githubusercontent.com/python-visualization/folium/master/setup.py","https://raw.githubusercontent.com/python-visualization/folium/master/pyproject.toml"],"_requirements_localurls":["python-visualization~folium~requirements.txt","python-visualization~folium~setup.py","python-visualization~folium~pyproject.toml"]},{"index":537,"category":"nlp","githuburl":"https://github.com/espnet/espnet","featured":null,"links":null,"description":null,"_repopath":"espnet/espnet","_reponame":"espnet","_stars":6089,"_forks":1844,"_watches":178,"_language":"Python","_homepage":"https://espnet.github.io/espnet/","_description":"espnet: End-to-End Speech Processing Toolkit","_organization":"espnet","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-12-13T00:00:00.000Z","_age_weeks":271,"_stars_per_week":22.47,"_topics":["deep-learning","end-to-end","chainer","pytorch","kaldi","speech-recognition","speech-synthesis","speech-translation","machine-translation","voice-conversion","speech-enhancement","speech-separation","singing-voice-synthesis","speaker-diarization","spoken-language-understanding"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":331,"_pop_contributor_logins":["Emrys365@shanghaijiaotonguniversity","Fhrozen@hitachir&d","ShigekiKarita","b-flo","ftshijt@carnegiemellonuniversity","hirofumi0810@fairatmetaai","kamo-naoyuki","kan-bayashi@nagoyauniversity","mergify[bot]","sw005320"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["carnegiemellonuniversity","fairatmetaai","hitachir&d","nagoyauniversity","shanghaijiaotonguniversity"],"_pop_contributor_orgs_raw":["Carnegie Mellon University","FAIR at Meta AI","Hitachi R&D","Nagoya University","Shanghai Jiao Tong University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":38.65,"_pop_updated_issues_count":247,"_pop_closed_issues_count":142,"_pop_created_since_days":63,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":247.0,"_pop_comment_count":653.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":0,"_pop_score":57.44,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/espnet/espnet/master/README.md","_readme_localurl":"espnet~espnet~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/espnet/espnet/master/setup.py"],"_requirements_localurls":["espnet~espnet~setup.py"]},{"index":44,"category":"ml","githuburl":"https://github.com/lmcinnes/umap","featured":null,"links":null,"description":null,"_repopath":"lmcinnes/umap","_reponame":"umap","_stars":6054,"_forks":700,"_watches":126,"_language":"Python","_homepage":null,"_description":"umap: Uniform Manifold Approximation and Projection","_organization":"lmcinnes","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-07-02T00:00:00.000Z","_age_weeks":294,"_stars_per_week":20.56,"_topics":["umap","dimensionality-reduction","visualization","machine-learning","topological-data-analysis"],"_last_commit_date":"2023-01-30T00:00:00.000Z","_pop_contributor_count":111,"_pop_contributor_logins":["adalmia96@microsoft","gclen","jlmelville","josephcourtney","leriomaggio@anaconda","lmcinnes@tutteinstituteformathematicsandcomputing","paxtonfitzpatrick@contextlabcosanlab","sleighsoft","timsainb@harvardmedicalschool","usul83@popsa-hq"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","contextlabcosanlab","harvardmedicalschool","microsoft","popsa-hq","tutteinstituteformathematicsandcomputing"],"_pop_contributor_orgs_raw":["@ContextLab @cosanlab","@anaconda ","@popsa-hq ","Harvard Medical School","Microsoft","Tutte Institute for Mathematics and Computing"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.06,"_pop_updated_issues_count":40,"_pop_closed_issues_count":16,"_pop_created_since_days":69,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":40.0,"_pop_comment_count":60.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":42.18,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/lmcinnes/umap/master/README.rst","_readme_localurl":"lmcinnes~umap~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lmcinnes/umap/master/requirements.txt","https://raw.githubusercontent.com/lmcinnes/umap/master/setup.py"],"_requirements_localurls":["lmcinnes~umap~requirements.txt","lmcinnes~umap~setup.py"]},{"index":599,"category":"gis","githuburl":"https://github.com/domlysz/blendergis","featured":null,"links":null,"description":null,"_repopath":"domlysz/blendergis","_reponame":"BlenderGIS","_stars":6037,"_forks":1125,"_watches":243,"_language":"Python","_homepage":"","_description":"BlenderGIS: Blender addons to make the bridge between Blender and geographic data","_organization":"domlysz","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-05-08T00:00:00.000Z","_age_weeks":458,"_stars_per_week":13.16,"_topics":["blender","addon","geospatial","gis","shapefile","delaunay-triangulation","raster","openstreetmap","python","dem","3dgis","map","geodata","georeferencing","importexport","3d","terrain-model","basemap","3d-map"],"_last_commit_date":"2022-05-31T00:00:00.000Z","_pop_contributor_count":15,"_pop_contributor_logins":["cclauss@christianclauss","domlysz","ericgrosso","kant","lfdebrux@alphagov","lobnico","mef@mango-information-systems","s-leger","stuarta0","wolfgangp"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["alphagov","christianclauss","mango-information-systems"],"_pop_contributor_orgs_raw":["@Mango-information-systems","@alphagov","Christian Clauss"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":26,"_pop_closed_issues_count":2,"_pop_created_since_days":107,"_pop_updated_since_days":9,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":26.0,"_pop_comment_count":67.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":0,"_pop_score":31.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/domlysz/blendergis/master/README.md","_readme_localurl":"domlysz~blendergis~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":313,"category":"util","githuburl":"https://github.com/pypa/pipx","featured":null,"links":null,"description":null,"_repopath":"pypa/pipx","_reponame":"pipx","_stars":6028,"_forks":276,"_watches":72,"_language":"Python","_homepage":"https://pypa.github.io/pipx/","_description":"pipx: Install and Run Python Applications in Isolated Environments","_organization":"pypa","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-10-06T00:00:00.000Z","_age_weeks":228,"_stars_per_week":26.37,"_topics":["pip","cli","pypi","venv","hacktoberfest","python"],"_last_commit_date":"2023-02-11T00:00:00.000Z","_pop_contributor_count":86,"_pop_contributor_logins":["backwardspy@binkhq","chrahunt","cs01","dependabot[bot]","gaborbernat@bloomberglp","itsayellow","meowmeowmeowcat","pfmoore","spazm@lemurlabs.dev","uranusjr@astronomer"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["astronomer","binkhq","bloomberglp","lemurlabs.dev"],"_pop_contributor_orgs_raw":["@astronomer","@binkhq ","Bloomberg LP","LemurLabs.dev"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.65,"_pop_updated_issues_count":59,"_pop_closed_issues_count":30,"_pop_created_since_days":53,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":59.0,"_pop_comment_count":78.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":40.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pypa/pipx/master/README.md","_readme_localurl":"pypa~pipx~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pypa/pipx/master/pyproject.toml"],"_requirements_localurls":["pypa~pipx~pyproject.toml"]},{"index":777,"category":"util","githuburl":"https://github.com/google/latexify_py","featured":null,"links":null,"description":null,"_repopath":"google/latexify_py","_reponame":"latexify_py","_stars":5989,"_forks":327,"_watches":52,"_language":"Python","_homepage":"","_description":"latexify_py: A library to generate LaTeX expression from Python code.","_organization":"google","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-07-25T00:00:00.000Z","_age_weeks":134,"_stars_per_week":44.5,"_topics":[],"_last_commit_date":"2023-01-14T00:00:00.000Z","_pop_contributor_count":24,"_pop_contributor_logins":["1MLightyears","ShigekiKarita","ZibingZhang","afrozchakure@citi","chunibyo-wly","erica-w-fu","jianan1104","odashi@inspired-co","ryosuketc@google","ryxcommar"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["citi","google","inspired-co"],"_pop_contributor_orgs_raw":["@Citi","@google","@inspired-co"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.71,"_pop_updated_issues_count":60,"_pop_closed_issues_count":48,"_pop_created_since_days":31,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":60.0,"_pop_comment_count":182.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":38.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/latexify_py/master/README.md","_readme_localurl":"google~latexify_py~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/google/latexify_py/master/pyproject.toml"],"_requirements_localurls":["google~latexify_py~pyproject.toml"]},{"index":783,"category":"diffusion","githuburl":"https://github.com/carson-katri/dream-textures","featured":null,"links":null,"description":null,"_repopath":"carson-katri/dream-textures","_reponame":"dream-textures","_stars":5872,"_forks":299,"_watches":92,"_language":"Python","_homepage":"","_description":"dream-textures: Stable Diffusion built-in to Blender","_organization":"carson-katri","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-09-08T00:00:00.000Z","_age_weeks":23,"_stars_per_week":246.13,"_topics":["ai","blender","blender-addon","image-generation","stable-diffusion"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":10,"_pop_contributor_logins":["Dekker3D","GottfriedHofmann@blenderdiplom","JasonHoku@jasonhoku","NullSenseStudio","blastframe@blastframe","carson-katri","eltociear@bandism","gregnr","playerla","timmyL17@adobe"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["adobe","bandism","blastframe","blenderdiplom","jasonhoku"],"_pop_contributor_orgs_raw":["@bandism ","Adobe","Blastframe","BlenderDiplom","JasonHoku"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.44,"_pop_updated_issues_count":191,"_pop_closed_issues_count":110,"_pop_created_since_days":6,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":20,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":191.0,"_pop_comment_count":485.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":0,"_pop_score":38.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/carson-katri/dream-textures/master/README.md","_readme_localurl":"carson-katri~dream-textures~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":345,"category":"jupyter","githuburl":"https://github.com/mwouts/jupytext","featured":null,"links":null,"description":null,"_repopath":"mwouts/jupytext","_reponame":"jupytext","_stars":5822,"_forks":376,"_watches":68,"_language":"Python","_homepage":"https://jupytext.readthedocs.io","_description":"jupytext: Jupyter Notebooks as Markdown Documents, Julia, Python or R scripts","_organization":"mwouts","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-06-15T00:00:00.000Z","_age_weeks":244,"_stars_per_week":23.79,"_topics":["jupyter-notebook","jupyterlab-extension","version-control","knitr","rstudio","markdown","rmarkdown","python","hydrogen","notebooks","jupyterlab"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":77,"_pop_contributor_logins":["Skylion007@facebookresearch","bzinberg","choldgraf@ucberkeley","chrisjsewell@imperialcollegelondon","dependabot[bot]","kiendang","martinRenou@quantstack","matthew-brett@londoninterdisciplinaryschool","matthewfeickert@universityofwisconsin-madison","mwouts"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebookresearch","imperialcollegelondon","londoninterdisciplinaryschool","quantstack","ucberkeley","universityofwisconsin-madison"],"_pop_contributor_orgs_raw":["@QuantStack","@facebookresearch ","Imperial College London","London Interdisciplinary School","UC Berkeley","University of Wisconsin-Madison"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.13,"_pop_updated_issues_count":44,"_pop_closed_issues_count":28,"_pop_created_since_days":57,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":44.0,"_pop_comment_count":117.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":0,"_pop_score":46.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mwouts/jupytext/master/README.md","_readme_localurl":"mwouts~jupytext~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mwouts/jupytext/master/requirements.txt","https://raw.githubusercontent.com/mwouts/jupytext/master/setup.py","https://raw.githubusercontent.com/mwouts/jupytext/master/pyproject.toml"],"_requirements_localurls":["mwouts~jupytext~requirements.txt","mwouts~jupytext~setup.py","mwouts~jupytext~pyproject.toml"]},{"index":69,"category":"util","githuburl":"https://github.com/pygithub/pygithub","featured":null,"links":null,"description":null,"_repopath":"pygithub/pygithub","_reponame":"PyGithub","_stars":5804,"_forks":1595,"_watches":113,"_language":"Python","_homepage":"https://pygithub.readthedocs.io/","_description":"PyGithub: Typed interactions with the GitHub API v3","_organization":"pygithub","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-02-25T00:00:00.000Z","_age_weeks":573,"_stars_per_week":10.12,"_topics":["pygithub","python","github","github-api"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":295,"_pop_contributor_logins":["akfish","allevin","enix223","jacquev6","jayfk","jzelinskie@authzed","martinqt","s-t-e-v-e-n-k@suse","sfdye@zendesk","thialfihar"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["authzed","suse","zendesk"],"_pop_contributor_orgs_raw":["@authzed","@zendesk ","SUSE"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.5,"_pop_updated_issues_count":115,"_pop_closed_issues_count":37,"_pop_created_since_days":134,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":115.0,"_pop_comment_count":202.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":47.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pygithub/pygithub/master/README.md","_readme_localurl":"pygithub~pygithub~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pygithub/pygithub/master/requirements.txt","https://raw.githubusercontent.com/pygithub/pygithub/master/setup.py"],"_requirements_localurls":["pygithub~pygithub~requirements.txt","pygithub~pygithub~setup.py"]},{"index":969,"category":"ml","githuburl":"https://github.com/thu-ml/tianshou","featured":null,"links":null,"description":null,"_repopath":"thu-ml/tianshou","_reponame":"tianshou","_stars":5768,"_forks":905,"_watches":83,"_language":"Python","_homepage":"https://tianshou.readthedocs.io","_description":"tianshou: An elegant PyTorch deep reinforcement learning library.","_organization":"thu-ml","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-04-16T00:00:00.000Z","_age_weeks":253,"_stars_per_week":22.77,"_topics":["pytorch","policy-gradient","dqn","double-dqn","a2c","ddpg","ppo","td3","sac","imitation-learning","mujoco","atari","bcq","library","rl","drl","benchmark","trpo","npg","cql"],"_last_commit_date":"2023-02-03T00:00:00.000Z","_pop_contributor_count":49,"_pop_contributor_logins":["ChenDRAG@tsinghuauniversity","Markus28","Mehooz@hedgefund","Trinkle23897@openai","danagi","duburcqa","gogoduan@tsinghuauniversity","nuance1979","rocknamx8","youkaichao"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["hedgefund","openai","tsinghuauniversity"],"_pop_contributor_orgs_raw":["@openai ","Hedge Fund","Tsinghua University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.21,"_pop_updated_issues_count":47,"_pop_closed_issues_count":29,"_pop_created_since_days":59,"_pop_updated_since_days":1,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":47.0,"_pop_comment_count":93.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":40.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/thu-ml/tianshou/master/README.md","_readme_localurl":"thu-ml~tianshou~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/thu-ml/tianshou/master/setup.py"],"_requirements_localurls":["thu-ml~tianshou~setup.py"]},{"index":68,"category":"gamedev","githuburl":"https://github.com/pygame/pygame","featured":1.0,"links":null,"description":null,"_repopath":"pygame/pygame","_reponame":"pygame","_stars":5740,"_forks":2520,"_watches":157,"_language":"C","_homepage":"https://www.pygame.org","_description":"pygame: \ud83d\udc0d\ud83c\udfae pygame (the library) is a Free and Open Source python programming language library for making multimedia applications like games built on top of the excellent SDL library. C, Python, Native, OpenGL.","_organization":"pygame","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-03-26T00:00:00.000Z","_age_weeks":308,"_stars_per_week":18.61,"_topics":["python","pygame","sdl2","sdl","game-development","gamedev","game-dev"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":274,"_pop_contributor_logins":["MyreMylar","PeterShinners","Starbuck5","ankith26","charlesej","dlon","illume","llindstrom","sublimator","takluyver"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.25,"_pop_updated_issues_count":283,"_pop_closed_issues_count":229,"_pop_created_since_days":72,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":283.0,"_pop_comment_count":495.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":43.91,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pygame/pygame/master/README.rst","_readme_localurl":"pygame~pygame~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pygame/pygame/master/setup.py"],"_requirements_localurls":["pygame~pygame~setup.py"]},{"index":730,"category":"ml","githuburl":"https://github.com/cleverhans-lab/cleverhans","featured":null,"links":null,"description":null,"_repopath":"cleverhans-lab/cleverhans","_reponame":"cleverhans","_stars":5707,"_forks":1378,"_watches":191,"_language":"Jupyter Notebook","_homepage":"","_description":"cleverhans: An adversarial example library for constructing attacks, building defenses, and benchmarking both","_organization":"cleverhans-lab","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-09-15T00:00:00.000Z","_age_weeks":335,"_stars_per_week":16.99,"_topics":["machine-learning","security","benchmarking"],"_last_commit_date":"2023-01-31T00:00:00.000Z","_pop_contributor_count":130,"_pop_contributor_logins":["AlexeyKurakin","WindQAQ@googlers","carlini","david-berthelot","fartashf@universityoftoronto","goodfeli","jonasguan","michaelshiyu","npapernot@universityoftoronto","steverab"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["googlers","universityoftoronto"],"_pop_contributor_orgs_raw":["@googlers ","University of Toronto"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":78,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":3.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":30.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cleverhans-lab/cleverhans/master/README.md","_readme_localurl":"cleverhans-lab~cleverhans~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/cleverhans-lab/cleverhans/master/setup.py"],"_requirements_localurls":["cleverhans-lab~cleverhans~setup.py"]},{"index":106,"category":"ml","githuburl":"https://github.com/nicolashug/surprise","featured":null,"links":null,"description":null,"_repopath":"nicolashug/surprise","_reponame":"Surprise","_stars":5696,"_forks":969,"_watches":147,"_language":"Python","_homepage":"http://surpriselib.com","_description":"Surprise: A Python scikit for building and analyzing recommender systems","_organization":"nicolashug","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2016-10-23T00:00:00.000Z","_age_weeks":330,"_stars_per_week":17.24,"_topics":["recommender","systems","recommendation","svd","matrix","factorization","machine-learning"],"_last_commit_date":"2023-01-27T00:00:00.000Z","_pop_contributor_count":45,"_pop_contributor_logins":["NicolasHug","PFGimenez@centralesupelec","ashtou","hengji-liu","janniks@hirosystems","kman0","lenatech","mahermalaeb","naturale0","timgates42@iress"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["centralesupelec","hirosystems","iress"],"_pop_contributor_orgs_raw":["@CentraleSupelec","@hirosystems","IRESS"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.54,"_pop_updated_issues_count":23,"_pop_closed_issues_count":9,"_pop_created_since_days":77,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":23.0,"_pop_comment_count":16.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":35.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nicolashug/surprise/master/README.md","_readme_localurl":"nicolashug~surprise~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nicolashug/surprise/master/requirements.txt","https://raw.githubusercontent.com/nicolashug/surprise/master/setup.py"],"_requirements_localurls":["nicolashug~surprise~requirements.txt","nicolashug~surprise~setup.py"]},{"index":643,"category":"util","githuburl":"https://github.com/theskumar/python-dotenv","featured":null,"links":null,"description":null,"_repopath":"theskumar/python-dotenv","_reponame":"python-dotenv","_stars":5689,"_forks":356,"_watches":33,"_language":"Python","_homepage":"https://saurabh-kumar.com/python-dotenv/","_description":"python-dotenv: Reads key-value pairs from a .env file and can set them as environment variables. It helps in developing applications following the 12-factor principles.","_organization":"theskumar","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-09-06T00:00:00.000Z","_age_weeks":441,"_stars_per_week":12.88,"_topics":["python","devops-tools","dotenv","12-factor-app","configuration","env","environment-variables"],"_last_commit_date":"2023-01-21T00:00:00.000Z","_pop_contributor_count":87,"_pop_contributor_logins":["altendky","bbc2","greyli","hugochinchilla@codiumteam","jacobian@latacora","pjona","smsearcy","theskumar@fueled","ulyssessouza@docker","venthur@debianflix-tech"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["codiumteam","debianflix-tech","docker","fueled","latacora"],"_pop_contributor_orgs_raw":["@Fueled","@debian @flix-tech ","@docker ","Codium Team","Latacora"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.77,"_pop_updated_issues_count":23,"_pop_closed_issues_count":13,"_pop_created_since_days":103,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":23.0,"_pop_comment_count":19.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":40.3,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/theskumar/python-dotenv/master/README.md","_readme_localurl":"theskumar~python-dotenv~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/theskumar/python-dotenv/master/requirements.txt","https://raw.githubusercontent.com/theskumar/python-dotenv/master/setup.py"],"_requirements_localurls":["theskumar~python-dotenv~requirements.txt","theskumar~python-dotenv~setup.py"]},{"index":723,"category":"ml","githuburl":"https://github.com/py-why/dowhy","featured":null,"links":null,"description":null,"_repopath":"py-why/dowhy","_reponame":"dowhy","_stars":5688,"_forks":816,"_watches":137,"_language":"Python","_homepage":"https://www.pywhy.org/dowhy","_description":"DoWhy is a Python library for causal inference that supports explicit modeling and testing of causal assumptions. DoWhy is based on a unified language for causal inference, combining causal graphical models and potential outcomes frameworks. ","_organization":"py-why","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-05-31T00:00:00.000Z","_age_weeks":246,"_stars_per_week":23.04,"_topics":["causal-inference","machine-learning","graphical-models","bayesian-networks","data-science","python3","causality","causal-models","treatment-effects","do-calculus","causal-machine-learning"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":71,"_pop_contributor_logins":["Arshiaarya","Tanmay-Kulkarni101","akelleh@barclaysib;columbia","allcontributors[bot]","amit-sharma","andresmor-ms","bloebp@amazon","darthtrevino@microsoft","kailashbuki","petergtz@amazonwebservices"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazon","amazonwebservices","barclaysib;columbia","microsoft"],"_pop_contributor_orgs_raw":["@Microsoft ","Amazon","Amazon Web Services","Barclays IB; Columbia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.23,"_pop_updated_issues_count":133,"_pop_closed_issues_count":89,"_pop_created_since_days":58,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":133.0,"_pop_comment_count":337.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":0,"_pop_score":47.76,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/py-why/dowhy/master/README.rst","_readme_localurl":"py-why~dowhy~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/py-why/dowhy/master/pyproject.toml"],"_requirements_localurls":["py-why~dowhy~pyproject.toml"]},{"index":910,"category":"perf","githuburl":"https://github.com/exaloop/codon","featured":null,"links":null,"description":null,"_repopath":"exaloop/codon","_reponame":"codon","_stars":5649,"_forks":187,"_watches":48,"_language":"C++","_homepage":"https://docs.exaloop.io/codon","_description":"codon: A high-performance, zero-overhead, extensible Python compiler using LLVM","_organization":"exaloop","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-09-27T00:00:00.000Z","_age_weeks":73,"_stars_per_week":77.08,"_topics":["python","compiler","llvm","high-performance","gpu-programming","parallel-programming"],"_last_commit_date":"2023-02-06T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["HarisSmajlovic@universityofvictoria","arshajii","inumanag@universityofvictoria","isnumanagic","learnforpractice","markhend","stephenberry"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["universityofvictoria"],"_pop_contributor_orgs_raw":["University of Victoria"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.73,"_pop_updated_issues_count":140,"_pop_closed_issues_count":100,"_pop_created_since_days":17,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":140.0,"_pop_comment_count":316.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":32.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/exaloop/codon/master/README.md","_readme_localurl":"exaloop~codon~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":193,"category":"util","githuburl":"https://github.com/pycqa/isort","featured":null,"links":null,"description":null,"_repopath":"pycqa/isort","_reponame":"isort","_stars":5623,"_forks":518,"_watches":46,"_language":"Python","_homepage":"https://pycqa.github.io/isort/","_description":"isort: A Python utility / library to sort imports.","_organization":"pycqa","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2013-09-02T00:00:00.000Z","_age_weeks":494,"_stars_per_week":11.38,"_topics":["auto-formatter","isort","sorting-imports","python-utility","cli","linter","cleaner","formatter","python","python3","hacktoberfest"],"_last_commit_date":"2023-02-26T00:00:00.000Z","_pop_contributor_count":280,"_pop_contributor_logins":["akonsta@opennms","anirudnits@google","blueyed@freelancer,upforhire","gofr","jdufresne@pioneervalleybooks","mkurnikov","orsinium@sendcloud","staticdev@swisscom","sztamas","timothycrosley@stripe"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["freelancer,upforhire","google","opennms","pioneervalleybooks","sendcloud","stripe","swisscom"],"_pop_contributor_orgs_raw":["@sendcloud","Freelancer, up for hire","Google","OpenNMS","Pioneer Valley Books","Stripe","Swisscom"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.31,"_pop_updated_issues_count":154,"_pop_closed_issues_count":121,"_pop_created_since_days":115,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":154.0,"_pop_comment_count":168.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":53.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pycqa/isort/master/README.md","_readme_localurl":"pycqa~isort~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pycqa/isort/master/pyproject.toml"],"_requirements_localurls":["pycqa~isort~pyproject.toml"]},{"index":538,"category":"nlp","githuburl":"https://github.com/nvidia/nemo","featured":null,"links":null,"description":null,"_repopath":"nvidia/nemo","_reponame":"NeMo","_stars":5618,"_forks":1388,"_watches":136,"_language":"Python","_homepage":"https://nvidia.github.io/NeMo/","_description":"NeMo: a toolkit for conversational AI","_organization":"nvidia","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-08-05T00:00:00.000Z","_age_weeks":185,"_stars_per_week":30.32,"_topics":["deep-learning","speech-recognition","nlp","nlp-machine-learning","neural-network","machine-translation","speech-synthesis","speech-to-text","text-to-speech","nmt","language-model","speaker-diarization","speaker-recognition","text-normalization","asr","tts"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":206,"_pop_contributor_logins":["VahidooX@nvidia","blisc","chiphuyen","ekmb@nyu,nvidia","ericharper","okuchaiev@nvidia","redoctopus@nvidia","titu1994@nvidia","tkornuta-nvidia@nvidia","yzhang123@nvidia"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["nvidia","nyu,nvidia"],"_pop_contributor_orgs_raw":["@NVIDIA","@nvidia","NVIDIA","NYU, NVIDIA"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":18.37,"_pop_updated_issues_count":671,"_pop_closed_issues_count":575,"_pop_created_since_days":43,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":671.0,"_pop_comment_count":988.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":51.94,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/nvidia/nemo/master/README.rst","_readme_localurl":"nvidia~nemo~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nvidia/nemo/master/setup.py","https://raw.githubusercontent.com/nvidia/nemo/master/pyproject.toml"],"_requirements_localurls":["nvidia~nemo~setup.py","nvidia~nemo~pyproject.toml"]},{"index":439,"category":"perf","githuburl":"https://github.com/mher/flower","featured":null,"links":null,"description":null,"_repopath":"mher/flower","_reponame":"flower","_stars":5566,"_forks":999,"_watches":143,"_language":"Python","_homepage":"https://flower.readthedocs.io","_description":"flower: Real-time monitor and web admin for Celery distributed task queue","_organization":"mher","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-07-08T00:00:00.000Z","_age_weeks":554,"_stars_per_week":10.04,"_topics":["celery","task-queue","monitoring","administration","workers","rabbitmq","redis","python","asynchronous"],"_last_commit_date":"2022-11-14T00:00:00.000Z","_pop_contributor_count":196,"_pop_contributor_logins":["Melevir@zipsale","Tomasz-Kluczkowski","adamgreig","ask@robinhoodmarkets","david-thorman@kloudless","igeorgievsky","jerzyk@trilab.pl","mher","pazur","tebeka@353solutions"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["353solutions","kloudless","robinhoodmarkets","trilab.pl","zipsale"],"_pop_contributor_orgs_raw":["353solutions","@robinhoodmarkets ","Kloudless Inc.","Zipsale","trilab.pl"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.27,"_pop_updated_issues_count":27,"_pop_closed_issues_count":4,"_pop_created_since_days":129,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":27.0,"_pop_comment_count":28.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":40.47,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mher/flower/master/README.rst","_readme_localurl":"mher~flower~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mher/flower/master/setup.py"],"_requirements_localurls":["mher~flower~setup.py"]},{"index":784,"category":"diffusion","githuburl":"https://github.com/xavierxiao/dreambooth-stable-diffusion","featured":null,"links":null,"description":null,"_repopath":"xavierxiao/dreambooth-stable-diffusion","_reponame":"Dreambooth-Stable-Diffusion","_stars":5515,"_forks":607,"_watches":80,"_language":"Jupyter Notebook","_homepage":"","_description":"Dreambooth-Stable-Diffusion: Implementation of Dreambooth (https://arxiv.org/abs/2208.12242) with Stable Diffusion","_organization":"xavierxiao","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-09-06T00:00:00.000Z","_age_weeks":24,"_stars_per_week":228.43,"_topics":["pytorch","pytorch-lightning","stable-diffusion","text-to-image"],"_last_commit_date":"2022-09-21T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["XavierXiao@universityofchicago"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["universityofchicago"],"_pop_contributor_orgs_raw":["University of Chicago"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":45,"_pop_closed_issues_count":2,"_pop_created_since_days":6,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":45.0,"_pop_comment_count":55.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":13.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/xavierxiao/dreambooth-stable-diffusion/master/README.md","_readme_localurl":"xavierxiao~dreambooth-stable-diffusion~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/xavierxiao/dreambooth-stable-diffusion/master/setup.py"],"_requirements_localurls":["xavierxiao~dreambooth-stable-diffusion~setup.py"]},{"index":161,"category":"ml","githuburl":"https://github.com/wandb/client","featured":null,"links":null,"description":null,"_repopath":"wandb/client","_reponame":"wandb","_stars":5483,"_forks":428,"_watches":44,"_language":"Python","_homepage":"https://wandb.ai","_description":"wandb: \ud83d\udd25 A tool for visualizing and tracking your machine learning experiments. This repo contains the CLI and Python API.","_organization":"wandb","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-03-24T00:00:00.000Z","_age_weeks":308,"_stars_per_week":17.76,"_topics":["machine-learning","experiment-track","deep-learning","keras","tensorflow","pytorch","hyperparameter-search","reinforcement-learning","mlops","data-science","collaboration","hyperparameter-optimization","reproducibility","hyperparameter-tuning","data-versioning","model-versioning","ml-platform"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":137,"_pop_contributor_logins":["KyleGoyette","adrianbg","adrnswanberg","dmitryduev","kptkin","lukas@weightsandbiases","raubitsj","shawnlewis","tssweeney","vanpelt@crowdflower.com"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["crowdflower.com","weightsandbiases"],"_pop_contributor_orgs_raw":["Weights and Biases","crowdflower.com"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.52,"_pop_updated_issues_count":830,"_pop_closed_issues_count":442,"_pop_created_since_days":72,"_pop_updated_since_days":0,"_pop_recent_releases_count":28,"_pop_recent_releases_estimated_tags":21,"_pop_recent_releases_adjusted_count":28,"_pop_issue_count":832.0,"_pop_comment_count":1626.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":53.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/wandb/client/master/README.md","_readme_localurl":"wandb~client~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/wandb/client/master/requirements.txt","https://raw.githubusercontent.com/wandb/client/master/setup.py","https://raw.githubusercontent.com/wandb/client/master/pyproject.toml"],"_requirements_localurls":["wandb~client~requirements.txt","wandb~client~setup.py","wandb~client~pyproject.toml"]},{"index":511,"category":"ml","githuburl":"https://github.com/google/automl","featured":null,"links":null,"description":null,"_repopath":"google/automl","_reponame":"automl","_stars":5477,"_forks":1409,"_watches":157,"_language":"Jupyter Notebook","_homepage":"","_description":"automl: Google Brain AutoML","_organization":"google","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-03-12T00:00:00.000Z","_age_weeks":153,"_stars_per_week":35.6,"_topics":["automl","efficientdet","object-detection","efficientnet","efficientnetv2"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":40,"_pop_contributor_logins":["Ely-S","LucasSloan@google","NikZak","Samjith888@detecttechnologies","fsx950223@amd","jcburnel","kartik4949","mingxingtan@google","mmaithani","wuhy08"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amd","detecttechnologies","google"],"_pop_contributor_orgs_raw":["@google","AMD","Detect Technologies","Google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.42,"_pop_updated_issues_count":10,"_pop_closed_issues_count":6,"_pop_created_since_days":36,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":10.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":32.47,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/automl/master/README.md","_readme_localurl":"google~automl~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":896,"category":"diffusion","githuburl":"https://github.com/apple/ml-stable-diffusion","featured":null,"links":null,"description":null,"_repopath":"apple/ml-stable-diffusion","_reponame":"ml-stable-diffusion","_stars":5472,"_forks":253,"_watches":71,"_language":"Python","_homepage":"","_description":"ml-stable-diffusion: Stable Diffusion with Core ML on Apple Silicon","_organization":"apple","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-11-16T00:00:00.000Z","_age_weeks":14,"_stars_per_week":390.86,"_topics":[],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":15,"_pop_contributor_logins":["JustinMeans@outtakes\u2022voosey","Wanaldino","atiorh","cclauss@christianclauss","godly-devotion","kasima","littleowl","liuliu","nathantannar4","pcuenca"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["christianclauss","outtakes\u2022voosey"],"_pop_contributor_orgs_raw":["Christian Clauss","Outtakes \u2022 Voosey"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.5,"_pop_updated_issues_count":132,"_pop_closed_issues_count":47,"_pop_created_since_days":3,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":132.0,"_pop_comment_count":399.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":31.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/README.md","_readme_localurl":"apple~ml-stable-diffusion~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/requirements.txt","https://raw.githubusercontent.com/apple/ml-stable-diffusion/master/setup.py"],"_requirements_localurls":["apple~ml-stable-diffusion~requirements.txt","apple~ml-stable-diffusion~setup.py"]},{"index":579,"category":"ml","githuburl":"https://github.com/probml/pyprobml","featured":null,"links":null,"description":null,"_repopath":"probml/pyprobml","_reponame":"pyprobml","_stars":5446,"_forks":1303,"_watches":178,"_language":"Jupyter Notebook","_homepage":"","_description":"pyprobml: Python code for \"Probabilistic Machine learning\" book by Kevin Murphy","_organization":"probml","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-08-17T00:00:00.000Z","_age_weeks":340,"_stars_per_week":16.02,"_topics":["jupyter-notebooks","machine-learning","colab","pml","probabilistic-programming","jax","tensorflow","pytorch","pymc3","numpyro","flax","pyro","blackjax"],"_last_commit_date":"2023-01-20T00:00:00.000Z","_pop_contributor_count":67,"_pop_contributor_logins":["Drishttii","Duane321@lyft","Neoanarika@collaborative,learning,andadaptiverobots(clear)","ashishpapanai","gerdm@queenmaryuniversityoflondon","karalleyna","karm-patel@indianinstituteofscience(iisc)","mjsML@nvidia","murphyk@google","patel-zeel@iitgandhinagar"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["collaborative,learning,andadaptiverobots(clear)","google","iitgandhinagar","indianinstituteofscience(iisc)","lyft","nvidia","queenmaryuniversityoflondon"],"_pop_contributor_orgs_raw":["@NVIDIA ","Collaborative, Learning, and Adaptive Robots (CLEAR)","Google","IIT Gandhinagar","Indian Institute of Science (IISc)","Lyft","Queen Mary University of London"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.54,"_pop_updated_issues_count":8,"_pop_closed_issues_count":6,"_pop_created_since_days":79,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":8.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":43.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/probml/pyprobml/master/README.md","_readme_localurl":"probml~pyprobml~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/probml/pyprobml/master/requirements.txt","https://raw.githubusercontent.com/probml/pyprobml/master/pyproject.toml"],"_requirements_localurls":["probml~pyprobml~requirements.txt","probml~pyprobml~pyproject.toml"]},{"index":880,"category":"time-series","githuburl":"https://github.com/unit8co/darts","featured":null,"links":null,"description":null,"_repopath":"unit8co/darts","_reponame":"darts","_stars":5405,"_forks":597,"_watches":42,"_language":"Python","_homepage":"https://unit8co.github.io/darts/","_description":"darts: A python library for user-friendly forecasting and anomaly detection on time series.","_organization":"unit8co","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-09-13T00:00:00.000Z","_age_weeks":231,"_stars_per_week":23.31,"_topics":["python","time-series","forecasting","machine-learning","deep-learning","anomaly-detection","data-science"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":79,"_pop_contributor_logins":["LeoTafti","TheMP@unit8co","dennisbader","endrjuskr@unit8sa","gdevos010@episci","hrzn@unit8co","inverniz","madtoinou","pennfranc","tomasvanpottelbergh"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["episci","unit8co","unit8sa"],"_pop_contributor_orgs_raw":["@unit8co ","EpiSci","Unit8 SA"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.25,"_pop_updated_issues_count":340,"_pop_closed_issues_count":210,"_pop_created_since_days":54,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":340.0,"_pop_comment_count":572.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":47.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/unit8co/darts/master/README.md","_readme_localurl":"unit8co~darts~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/unit8co/darts/master/setup.py","https://raw.githubusercontent.com/unit8co/darts/master/pyproject.toml"],"_requirements_localurls":["unit8co~darts~setup.py","unit8co~darts~pyproject.toml"]},{"index":932,"category":"nlp","githuburl":"https://github.com/lucidrains/palm-rlhf-pytorch","featured":null,"links":null,"description":null,"_repopath":"lucidrains/palm-rlhf-pytorch","_reponame":"PaLM-rlhf-pytorch","_stars":5372,"_forks":405,"_watches":109,"_language":"Python","_homepage":"","_description":"PaLM-rlhf-pytorch: Implementation of RLHF (Reinforcement Learning with Human Feedback) on top of the PaLM architecture. Basically ChatGPT but with PaLM","_organization":"lucidrains","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-12-09T00:00:00.000Z","_age_weeks":10,"_stars_per_week":501.39,"_topics":["artificial-intelligence","attention-mechanisms","deep-learning","reinforcement-learning","transformers","human-feedback"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["ell-hol@orange","eltociear@bandism","hypnopump","lucidrains"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bandism","orange"],"_pop_contributor_orgs_raw":["@bandism ","Orange"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.83,"_pop_updated_issues_count":29,"_pop_closed_issues_count":20,"_pop_created_since_days":2,"_pop_updated_since_days":0,"_pop_recent_releases_count":59,"_pop_recent_releases_estimated_tags":359,"_pop_recent_releases_adjusted_count":59,"_pop_issue_count":29.0,"_pop_comment_count":94.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.2,"_pop_dependents_count":0,"_pop_score":30.73,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lucidrains/palm-rlhf-pytorch/master/README.md","_readme_localurl":"lucidrains~palm-rlhf-pytorch~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lucidrains/palm-rlhf-pytorch/master/setup.py"],"_requirements_localurls":["lucidrains~palm-rlhf-pytorch~setup.py"]},{"index":971,"category":"ml","githuburl":"https://github.com/keras-rl/keras-rl","featured":null,"links":null,"description":null,"_repopath":"keras-rl/keras-rl","_reponame":"keras-rl","_stars":5372,"_forks":1360,"_watches":211,"_language":"Python","_homepage":"http://keras-rl.readthedocs.io/","_description":"keras-rl: Deep Reinforcement Learning for Keras.","_organization":"keras-rl","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2016-07-02T00:00:00.000Z","_age_weeks":346,"_stars_per_week":15.5,"_topics":["keras","tensorflow","theano","reinforcement-learning","neural-networks","machine-learning"],"_last_commit_date":"2019-11-11T00:00:00.000Z","_pop_contributor_count":41,"_pop_contributor_logins":["RaphaelMeudec","RyanHope","aliostad","bstriner","jorahn@42digital","kashif","matthiasplappert","raj-rohan","raopku","rmst"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["42digital"],"_pop_contributor_orgs_raw":["@42DIGITAL "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":2,"_pop_created_since_days":81,"_pop_updated_since_days":40,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":19.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/keras-rl/keras-rl/master/README.md","_readme_localurl":"keras-rl~keras-rl~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/keras-rl/keras-rl/master/setup.py"],"_requirements_localurls":["keras-rl~keras-rl~setup.py"]},{"index":632,"category":"util","githuburl":"https://github.com/pyca/cryptography","featured":null,"links":null,"description":null,"_repopath":"pyca/cryptography","_reponame":"cryptography","_stars":5364,"_forks":1133,"_watches":120,"_language":"Python","_homepage":"https://cryptography.io","_description":"cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.","_organization":"pyca","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2013-08-07T00:00:00.000Z","_age_weeks":498,"_stars_per_week":10.77,"_topics":["python","cryptography"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":281,"_pop_contributor_logins":["Ayrx","alex","dependabot[bot]","dreid","dstufft@datadog","lvh@latacora","muattiyah","public@purple-dot","pyca-boringbot[bot]","reaperhulk"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["datadog","latacora","purple-dot"],"_pop_contributor_orgs_raw":["@DataDog","@Latacora","@purple-dot "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":19.96,"_pop_updated_issues_count":638,"_pop_closed_issues_count":611,"_pop_created_since_days":116,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":638.0,"_pop_comment_count":490.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":55.07,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyca/cryptography/master/README.rst","_readme_localurl":"pyca~cryptography~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyca/cryptography/master/setup.py","https://raw.githubusercontent.com/pyca/cryptography/master/pyproject.toml"],"_requirements_localurls":["pyca~cryptography~setup.py","pyca~cryptography~pyproject.toml"]},{"index":96,"category":"data","githuburl":"https://github.com/vi3k6i5/flashtext","featured":null,"links":null,"description":null,"_repopath":"vi3k6i5/flashtext","_reponame":"flashtext","_stars":5352,"_forks":597,"_watches":139,"_language":"Python","_homepage":null,"_description":"flashtext: Extract Keywords from sentence or Replace keywords in sentences.","_organization":"vi3k6i5","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2017-08-15T00:00:00.000Z","_age_weeks":288,"_stars_per_week":18.57,"_topics":["search-in-text","keyword-extraction","nlp","word2vec","data-extraction"],"_last_commit_date":"2020-05-03T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["delirious-lettuce","remiadon","rompom","slotlocker2","vi3k6i5@meta"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["meta"],"_pop_contributor_orgs_raw":["Meta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":67,"_pop_updated_since_days":34,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":12.85,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/vi3k6i5/flashtext/master/README.rst","_readme_localurl":"vi3k6i5~flashtext~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/vi3k6i5/flashtext/master/setup.py"],"_requirements_localurls":["vi3k6i5~flashtext~setup.py"]},{"index":214,"category":"nlp","githuburl":"https://github.com/speechbrain/speechbrain","featured":null,"links":null,"description":null,"_repopath":"speechbrain/speechbrain","_reponame":"speechbrain","_stars":5345,"_forks":1013,"_watches":115,"_language":"Python","_homepage":"http://speechbrain.github.io","_description":"speechbrain: A PyTorch-based Speech Toolkit","_organization":"speechbrain","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-04-28T00:00:00.000Z","_age_weeks":147,"_stars_per_week":36.33,"_topics":["speech-recognition","speech-toolkit","speaker-recognition","speech-to-text","speech-enhancement","speech-separation","audio","audio-processing","speech-processing","speechrecognition","asr","voice-recognition","spoken-language-understanding","speaker-diarization","speaker-verification","pytorch","huggingface","transformers","language-model","deep-learning"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":196,"_pop_contributor_logins":["30stomercury@ilcc,universityofedinburgh","Gastron","JianyuanZhong","TParcollet@samsung","flexthink","mravanelli@universityofmontreal","nauman-daw@mit","popcornell@marchepolytechnicuniversity","pplantinga@jpmorganchase","ycemsubakan"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ilcc,universityofedinburgh","jpmorganchase","marchepolytechnicuniversity","mit","samsung","universityofmontreal"],"_pop_contributor_orgs_raw":["@jpmorganchase","ILCC, University of Edinburgh","MIT","Marche Polytechnic University","Samsung","University of Montreal"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":18.54,"_pop_updated_issues_count":151,"_pop_closed_issues_count":82,"_pop_created_since_days":34,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":151.0,"_pop_comment_count":377.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":0,"_pop_score":51.72,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/speechbrain/speechbrain/master/README.md","_readme_localurl":"speechbrain~speechbrain~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/speechbrain/speechbrain/master/requirements.txt","https://raw.githubusercontent.com/speechbrain/speechbrain/master/setup.py","https://raw.githubusercontent.com/speechbrain/speechbrain/master/pyproject.toml"],"_requirements_localurls":["speechbrain~speechbrain~requirements.txt","speechbrain~speechbrain~setup.py","speechbrain~speechbrain~pyproject.toml"]},{"index":471,"category":"util","githuburl":"https://github.com/parthjadhav/tkinter-designer","featured":null,"links":null,"description":null,"_repopath":"parthjadhav/tkinter-designer","_reponame":"Tkinter-Designer","_stars":5343,"_forks":507,"_watches":57,"_language":"Python","_homepage":"","_description":"Tkinter-Designer: An easy and fast way to create a Python GUI \ud83d\udc0d","_organization":"parthjadhav","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-05-18T00:00:00.000Z","_age_weeks":92,"_stars_per_week":57.99,"_topics":["tkinter","tkinter-gui","tkinter-python","tkinter-graphic-interface","python3","tkinter-widgets","gui-application","python-script","drag-and-drop","easy","easy-to-use","fast","gui","tkinter-designer","figma","python","automatic","collaborate","learn","hacktoberfest"],"_last_commit_date":"2023-02-05T00:00:00.000Z","_pop_contributor_count":35,"_pop_contributor_logins":["ParthJadhav@xd2sketch","TanmayBansode","greenmagenta","jrobchin@microsoftazure","jvendegna","mehmet-mert","neilbaldwin","piccoloser","ralphg6@bancodobrasil","saur0x"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bancodobrasil","microsoftazure","xd2sketch"],"_pop_contributor_orgs_raw":["@XD2Sketch ","@bancodobrasil","Microsoft Azure"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.94,"_pop_updated_issues_count":19,"_pop_closed_issues_count":7,"_pop_created_since_days":21,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":19.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":30.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/parthjadhav/tkinter-designer/master/README.md","_readme_localurl":"parthjadhav~tkinter-designer~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/parthjadhav/tkinter-designer/master/requirements.txt","https://raw.githubusercontent.com/parthjadhav/tkinter-designer/master/pyproject.toml"],"_requirements_localurls":["parthjadhav~tkinter-designer~requirements.txt","parthjadhav~tkinter-designer~pyproject.toml"]},{"index":3,"category":"ml","githuburl":"https://github.com/awslabs/autogluon","featured":null,"links":null,"description":null,"_repopath":"awslabs/autogluon","_reponame":"autogluon","_stars":5343,"_forks":698,"_watches":93,"_language":"Python","_homepage":"https://auto.gluon.ai/","_description":"AutoGluon: AutoML for Image, Text, Time Series, and Tabular Data","_organization":"awslabs","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2019-07-29T00:00:00.000Z","_age_weeks":186,"_stars_per_week":28.68,"_topics":["automl","machine-learning","data-science","deep-learning","ensemble-learning","image-classification","computer-vision","natural-language-processing","structured-data","object-detection","gluon","transfer-learning","pytorch","automated-machine-learning","scikit-learn","autogluon","tabular-data","hyperparameter-optimization","time-series","forecasting"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":100,"_pop_contributor_logins":["FANGAreNotGnu@amazonwebservices","Innixma@amazonai","canerturkmen@awsawslabs","gradientsky@amazonai","jwmueller@cleanlab","shchur","sxjscience@amazonwebservices","yinweisu@amazon","zhanghang1989","zhiqiangdon@awsai"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazon","amazonai","amazonwebservices","awsai","awsawslabs","cleanlab"],"_pop_contributor_orgs_raw":["@aws @awslabs","AWS AI","Amazon","Amazon AI","Amazon Web Services","Cleanlab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.88,"_pop_updated_issues_count":685,"_pop_closed_issues_count":541,"_pop_created_since_days":43,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":683.0,"_pop_comment_count":1322.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":54.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/awslabs/autogluon/master/README.md","_readme_localurl":"awslabs~autogluon~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/awslabs/autogluon/master/pyproject.toml"],"_requirements_localurls":["awslabs~autogluon~pyproject.toml"]},{"index":283,"category":"util","githuburl":"https://github.com/sdispater/pendulum","featured":null,"links":null,"description":null,"_repopath":"sdispater/pendulum","_reponame":"pendulum","_stars":5336,"_forks":319,"_watches":64,"_language":"Python","_homepage":"https://pendulum.eustace.io","_description":"pendulum: Python datetimes made easy","_organization":"sdispater","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2016-06-27T00:00:00.000Z","_age_weeks":347,"_stars_per_week":15.36,"_topics":["python","datetime","date","time","python3","timezones"],"_last_commit_date":"2022-12-23T00:00:00.000Z","_pop_contributor_count":87,"_pop_contributor_logins":["NickFabry","Secrus","altendky","bryanforbes@sitepen","erosennin","guyzmo","maedox","pre-commit-ci[bot]","redlickigrzegorz@stxnext","sdispater"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["sitepen","stxnext"],"_pop_contributor_orgs_raw":["@stxnext","SitePen, Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.73,"_pop_updated_issues_count":22,"_pop_closed_issues_count":4,"_pop_created_since_days":81,"_pop_updated_since_days":2,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":22.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":33.04,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sdispater/pendulum/master/README.rst","_readme_localurl":"sdispater~pendulum~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sdispater/pendulum/master/pyproject.toml"],"_requirements_localurls":["sdispater~pendulum~pyproject.toml"]},{"index":909,"category":"web","githuburl":"https://github.com/pynecone-io/pynecone","featured":null,"links":null,"description":null,"_repopath":"pynecone-io/pynecone","_reponame":"pynecone","_stars":5300,"_forks":183,"_watches":54,"_language":"Python","_homepage":"https://pynecone.io","_description":"pynecone: \ud83d\udd78 Web apps in pure Python \ud83d\udc0d","_organization":"pynecone-io","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-10-25T00:00:00.000Z","_age_weeks":17,"_stars_per_week":309.17,"_topics":["fullstack","python","webdev","framework","web","python-library","python3","open-source","infrastructure"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":30,"_pop_contributor_logins":["Alek99@pynecone","ElijahAhianyo","FHU-yezi","HellAmbro@rutershok","Lendemor","PeterYusuke","advo-kat","picklelo@pynecone","qu3vipon@asleep-ai","r0b2g1t@deutschetelekomag"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["asleep-ai","deutschetelekomag","pynecone","rutershok"],"_pop_contributor_orgs_raw":["@Rutershok","@asleep-ai","Deutsche Telekom AG","Pynecone","Pynecone "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.02,"_pop_updated_issues_count":488,"_pop_closed_issues_count":381,"_pop_created_since_days":4,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":33,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":488.0,"_pop_comment_count":771.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":40.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pynecone-io/pynecone/master/README.md","_readme_localurl":"pynecone-io~pynecone~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pynecone-io/pynecone/master/pyproject.toml"],"_requirements_localurls":["pynecone-io~pynecone~pyproject.toml"]},{"index":223,"category":"nlp","githuburl":"https://github.com/kingoflolz/mesh-transformer-jax","featured":1.0,"links":null,"description":null,"_repopath":"kingoflolz/mesh-transformer-jax","_reponame":"mesh-transformer-jax","_stars":5296,"_forks":757,"_watches":92,"_language":"Python","_homepage":"","_description":"mesh-transformer-jax: Model parallel transformers in JAX and Haiku","_organization":"kingoflolz","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-03-13T00:00:00.000Z","_age_weeks":101,"_stars_per_week":52.14,"_topics":[],"_last_commit_date":"2023-01-12T00:00:00.000Z","_pop_contributor_count":23,"_pop_contributor_logins":["AeroScripts","CurtisASmith","StellaAthena@boozallenhamilton","ablacklama@cardsagainsthumanity","cclauss@christianclauss","djoldman","kingoflolz","leogao2","narphorium","nostalgebraist"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["boozallenhamilton","cardsagainsthumanity","christianclauss"],"_pop_contributor_orgs_raw":["@cardsagainsthumanity","Booz Allen Hamilton","Christian Clauss"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":19,"_pop_closed_issues_count":4,"_pop_created_since_days":24,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":19.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":28.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/README.md","_readme_localurl":"kingoflolz~mesh-transformer-jax~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/requirements.txt","https://raw.githubusercontent.com/kingoflolz/mesh-transformer-jax/master/setup.py"],"_requirements_localurls":["kingoflolz~mesh-transformer-jax~requirements.txt","kingoflolz~mesh-transformer-jax~setup.py"]},{"index":603,"category":"ml","githuburl":"https://github.com/cleanlab/cleanlab","featured":null,"links":null,"description":null,"_repopath":"cleanlab/cleanlab","_reponame":"cleanlab","_stars":5286,"_forks":447,"_watches":67,"_language":"Python","_homepage":"https://cleanlab.ai","_description":"cleanlab: The standard data-centric AI package for data quality and machine learning with messy, real-world data and labels.","_organization":"cleanlab","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-05-11T00:00:00.000Z","_age_weeks":249,"_stars_per_week":21.17,"_topics":["weak-supervision","robust-machine-learning","data-cleaning","classification","data-quality","data-science","exploratory-data-analysis","label-errors","noisy-labels","data-centric-ai","machine-learning","out-of-distribution-detection","outlier-detection","data-validation","active-learning","crowdsourcing","image-tagging","data-labeling","entity-recognition","annotations"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":29,"_pop_contributor_logins":["JohnsonKuan","aditya1503@home","anishathalye@mitcsail","calebchiam@stanforduniversity","cgnorthcutt@cleanlab|mit","elisno","huiwengoh","jwmueller@cleanlab","ulya-tkch@cleanlab","weijinglok"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cleanlab","cleanlab|mit","home","mitcsail","stanforduniversity"],"_pop_contributor_orgs_raw":["@Cleanlab | MIT","@cleanlab ","Cleanlab","Home","MIT CSAIL","Stanford University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.02,"_pop_updated_issues_count":136,"_pop_closed_issues_count":94,"_pop_created_since_days":58,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":136.0,"_pop_comment_count":184.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":45.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cleanlab/cleanlab/master/README.md","_readme_localurl":"cleanlab~cleanlab~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cleanlab/cleanlab/master/setup.py","https://raw.githubusercontent.com/cleanlab/cleanlab/master/pyproject.toml"],"_requirements_localurls":["cleanlab~cleanlab~setup.py","cleanlab~cleanlab~pyproject.toml"]},{"index":278,"category":"data","githuburl":"https://github.com/airbnb/knowledge-repo","featured":null,"links":null,"description":null,"_repopath":"airbnb/knowledge-repo","_reponame":"knowledge-repo","_stars":5281,"_forks":706,"_watches":176,"_language":"Python","_homepage":"","_description":"knowledge-repo: A next-generation curated knowledge sharing platform for data scientists and other technical professions.","_organization":"airbnb","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2016-08-17T00:00:00.000Z","_age_weeks":340,"_stars_per_week":15.53,"_topics":["data","data-science","knowledge","data-analysis"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":72,"_pop_contributor_logins":["JJJ000","NiharikaRay","bulam","csharplus@airbnb","danfrankj","dorianbrown@dorianbrownanalytics","earthmancash2@eppo","matthewwardrop@datascientistatnetflix","mengting1010","naoyak@airbnb"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["airbnb","datascientistatnetflix","dorianbrownanalytics","eppo"],"_pop_contributor_orgs_raw":["@airbnb","Airbnb","Data Scientist at @Netflix","Dorian Brown Analytics","Eppo"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.25,"_pop_updated_issues_count":75,"_pop_closed_issues_count":67,"_pop_created_since_days":79,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":75.0,"_pop_comment_count":16.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":43.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/airbnb/knowledge-repo/master/README.md","_readme_localurl":"airbnb~knowledge-repo~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/airbnb/knowledge-repo/master/requirements.txt","https://raw.githubusercontent.com/airbnb/knowledge-repo/master/setup.py"],"_requirements_localurls":["airbnb~knowledge-repo~requirements.txt","airbnb~knowledge-repo~setup.py"]},{"index":434,"category":"util","githuburl":"https://github.com/scikit-image/scikit-image","featured":null,"links":null,"description":null,"_repopath":"scikit-image/scikit-image","_reponame":"scikit-image","_stars":5246,"_forks":2102,"_watches":185,"_language":"Python","_homepage":"https://scikit-image.org","_description":"scikit-image: Image processing in Python","_organization":"scikit-image","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2011-07-07T00:00:00.000Z","_age_weeks":606,"_stars_per_week":8.64,"_topics":["image-processing","python","computer-vision","hacktoberfest","closember"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":591,"_pop_contributor_logins":["JDWarner","ahojnnes@microsoft","blink1073@mongodb","emmanuelle","grlee77@nvidia","hmaarrfk@californiainstituteoftechnology","jni@biomedicinediscoveryinstitute,monashuniversity","soupault@mipt-oulu,oulu-imeds","stefanv@universityofcalifornia,berkeley","vighneshbirodkar@google"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["biomedicinediscoveryinstitute,monashuniversity","californiainstituteoftechnology","google","microsoft","mipt-oulu,oulu-imeds","mongodb","nvidia","universityofcalifornia,berkeley"],"_pop_contributor_orgs_raw":["@MIPT-Oulu, @Oulu-IMEDS ","Biomedicine Discovery Institute, Monash University","California Institute of Technology","Google","Microsoft","MongoDB","NVIDIA","University of California, Berkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.75,"_pop_updated_issues_count":431,"_pop_closed_issues_count":171,"_pop_created_since_days":142,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":431.0,"_pop_comment_count":558.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":58.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scikit-image/scikit-image/master/README.md","_readme_localurl":"scikit-image~scikit-image~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scikit-image/scikit-image/master/requirements.txt","https://raw.githubusercontent.com/scikit-image/scikit-image/master/pyproject.toml"],"_requirements_localurls":["scikit-image~scikit-image~requirements.txt","scikit-image~scikit-image~pyproject.toml"]},{"index":552,"category":"ml","githuburl":"https://github.com/open-mmlab/mmsegmentation","featured":null,"links":null,"description":null,"_repopath":"open-mmlab/mmsegmentation","_reponame":"mmsegmentation","_stars":5231,"_forks":1934,"_watches":52,"_language":"Python","_homepage":"https://mmsegmentation.readthedocs.io/en/latest/","_description":"mmsegmentation: OpenMMLab Semantic Segmentation Toolbox and Benchmark.","_organization":"open-mmlab","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-06-14T00:00:00.000Z","_age_weeks":140,"_stars_per_week":37.25,"_topics":["semantic-segmentation","pytorch","pspnet","deeplabv3","transformer","swin-transformer","realtime-segmentation","vessel-segmentation","retinal-vessel-segmentation","image-segmentation","medical-image-segmentation"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":135,"_pop_contributor_logins":["Junjun2016","MengzhangLI@shanghaiailaboratory","MeowZheng@openmmlab","RockeyCoss","linfangjian01@alibaba","sennnnn@xxx","sshuair","xiexinch@openmmlab","xvjiarui@ucsd","yamengxi"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["alibaba","openmmlab","shanghaiailaboratory","ucsd","xxx"],"_pop_contributor_orgs_raw":["Alibaba","OpenMMLab","Shanghai AI Laboratory","UCSD","xxx"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.65,"_pop_updated_issues_count":433,"_pop_closed_issues_count":266,"_pop_created_since_days":33,"_pop_updated_since_days":0,"_pop_recent_releases_count":18,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":433.0,"_pop_comment_count":639.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":50.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-mmlab/mmsegmentation/master/README.md","_readme_localurl":"open-mmlab~mmsegmentation~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/open-mmlab/mmsegmentation/master/requirements.txt","https://raw.githubusercontent.com/open-mmlab/mmsegmentation/master/setup.py"],"_requirements_localurls":["open-mmlab~mmsegmentation~requirements.txt","open-mmlab~mmsegmentation~setup.py"]},{"index":352,"category":"ml-ops","githuburl":"https://github.com/activeloopai/hub","featured":null,"links":null,"description":null,"_repopath":"activeloopai/hub","_reponame":"deeplake","_stars":5225,"_forks":418,"_watches":65,"_language":"Python","_homepage":"https://activeloop.ai","_description":"deeplake: Data Lake for Deep Learning. Build, manage, query, version, & visualize datasets. Stream data real-time to PyTorch/TensorFlow. https://activeloop.ai ","_organization":"activeloopai","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2019-08-09T00:00:00.000Z","_age_weeks":184,"_stars_per_week":28.29,"_topics":["datasets","deep-learning","machine-learning","data-science","pytorch","tensorflow","data-version-control","python","ai","ml","mlops","computer-vision","cv","data-processing","image-processing","data-centric","jupyter-notebook","datalake","lakehouse"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":107,"_pop_contributor_logins":["AbhinavTuli@activeloop","FayazRahman","benchislett","davidbuniat@activeloopai","edogrigqv2","farizrahman4u","imshashank@self","kristinagrig06","nollied","thisiseshan@northeasternuniversity"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["activeloop","activeloopai","northeasternuniversity","self"],"_pop_contributor_orgs_raw":["@activeloopai","Activeloop","Northeastern University","Self"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":24.62,"_pop_updated_issues_count":196,"_pop_closed_issues_count":164,"_pop_created_since_days":43,"_pop_updated_since_days":0,"_pop_recent_releases_count":59,"_pop_recent_releases_estimated_tags":34,"_pop_recent_releases_adjusted_count":59,"_pop_issue_count":196.0,"_pop_comment_count":191.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":51.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/activeloopai/hub/master/README.md","_readme_localurl":"activeloopai~hub~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/activeloopai/hub/master/requirements.txt","https://raw.githubusercontent.com/activeloopai/hub/master/setup.py"],"_requirements_localurls":["activeloopai~hub~requirements.txt","activeloopai~hub~setup.py"]},{"index":81,"category":"util","githuburl":"https://github.com/sphinx-doc/sphinx","featured":null,"links":null,"description":null,"_repopath":"sphinx-doc/sphinx","_reponame":"sphinx","_stars":5218,"_forks":1863,"_watches":142,"_language":"Python","_homepage":"https://www.sphinx-doc.org/","_description":"sphinx: The Sphinx documentation generator","_organization":"sphinx-doc","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-01-02T00:00:00.000Z","_age_weeks":424,"_stars_per_week":12.29,"_topics":["python","documentation","documentation-tool","sphinx","markdown","restructuredtext"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":770,"_pop_contributor_logins":["AA-Turner","TimKam@signaviosphinx-docsphinx-contrib","birkenfeld@fzj\u00fclich","jakobandersen","jfbu","keewis","lehmannro","shimizukawa@beproud","stephenfin@redhat","tk0miya@timeintermedia(timedia)"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["beproud","fzj\u00fclich","redhat","signaviosphinx-docsphinx-contrib","timeintermedia(timedia)"],"_pop_contributor_orgs_raw":["@signavio @sphinx-doc @sphinx-contrib ","BeProud","FZ J\u00fclich","Red Hat","Time Intermedia (@timedia)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.46,"_pop_updated_issues_count":381,"_pop_closed_issues_count":147,"_pop_created_since_days":99,"_pop_updated_since_days":0,"_pop_recent_releases_count":20,"_pop_recent_releases_estimated_tags":31,"_pop_recent_releases_adjusted_count":20,"_pop_issue_count":381.0,"_pop_comment_count":439.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":59.34,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sphinx-doc/sphinx/master/README.rst","_readme_localurl":"sphinx-doc~sphinx~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sphinx-doc/sphinx/master/pyproject.toml"],"_requirements_localurls":["sphinx-doc~sphinx~pyproject.toml"]},{"index":686,"category":"util","githuburl":"https://github.com/py-pdf/pypdf2","featured":null,"links":null,"description":null,"_repopath":"py-pdf/pypdf2","_reponame":"pypdf","_stars":5218,"_forks":1165,"_watches":143,"_language":"Python","_homepage":"https://pypdf.readthedocs.io/en/latest/","_description":"pypdf: A pure-python PDF library capable of splitting, merging, cropping, and transforming the pages of PDF files","_organization":"py-pdf","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-01-06T00:00:00.000Z","_age_weeks":580,"_stars_per_week":8.99,"_topics":["pypdf2","pdf","python","pdf-parser","pdf-parsing","pdf-manipulation","pdf-documents","help-wanted"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":168,"_pop_contributor_logins":["MartinThoma","MasterOdin@popsql","jamma313","knowah","mozbugbox","mstamy2","mtd91429","pubpub-zz","switham","sylvainpelissier"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["popsql"],"_pop_contributor_orgs_raw":["@popsql"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.58,"_pop_updated_issues_count":239,"_pop_closed_issues_count":183,"_pop_created_since_days":135,"_pop_updated_since_days":0,"_pop_recent_releases_count":54,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":54,"_pop_issue_count":239.0,"_pop_comment_count":759.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.2,"_pop_dependents_count":0,"_pop_score":53.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/py-pdf/pypdf2/master/README.md","_readme_localurl":"py-pdf~pypdf2~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/py-pdf/pypdf2/master/pyproject.toml"],"_requirements_localurls":["py-pdf~pypdf2~pyproject.toml"]},{"index":404,"category":"perf","githuburl":"https://github.com/python-trio/trio","featured":null,"links":null,"description":null,"_repopath":"python-trio/trio","_reponame":"trio","_stars":5167,"_forks":294,"_watches":88,"_language":"Python","_homepage":"https://trio.readthedocs.io","_description":"Trio \u2013 a friendly Python library for async concurrency and I/O","_organization":"python-trio","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2017-01-16T00:00:00.000Z","_age_weeks":318,"_stars_per_week":16.23,"_topics":["python","async","async-await","networking","io","trio","structured-concurrency"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":140,"_pop_contributor_logins":["A5rocks","Fuyukai","agronholm@nextdaysolutionsoy","buhman@verizonmedia","dependabot-preview[bot]","dependabot-support","dependabot[bot]","njsmith","oremanj@hudsonrivertrading","pquentin@elastic"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["elastic","hudsonrivertrading","nextdaysolutionsoy","verizonmedia"],"_pop_contributor_orgs_raw":["@elastic","@verizonmedia","Hudson River Trading","NextDay Solutions Oy"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.96,"_pop_updated_issues_count":119,"_pop_closed_issues_count":95,"_pop_created_since_days":74,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":119.0,"_pop_comment_count":270.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":49.86,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/python-trio/trio/master/README.rst","_readme_localurl":"python-trio~trio~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-trio/trio/master/setup.py","https://raw.githubusercontent.com/python-trio/trio/master/pyproject.toml"],"_requirements_localurls":["python-trio~trio~setup.py","python-trio~trio~pyproject.toml"]},{"index":301,"category":"data","githuburl":"https://github.com/kaggle/kaggle-api","featured":null,"links":null,"description":null,"_repopath":"kaggle/kaggle-api","_reponame":"kaggle-api","_stars":5166,"_forks":983,"_watches":194,"_language":"Python","_homepage":"","_description":"kaggle-api: Official Kaggle API","_organization":"kaggle","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-01-25T00:00:00.000Z","_age_weeks":264,"_stars_per_week":19.5,"_topics":[],"_last_commit_date":"2021-03-15T00:00:00.000Z","_pop_contributor_count":36,"_pop_contributor_logins":["Conengmo","chrisgorgo@google","danieljanes@adapgmbh","dpmcna","filipefilardi","philippegr","pizzaz93","rysteboe","vsoch","washcycle@aspen-insights"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["adapgmbh","aspen-insights","google"],"_pop_contributor_orgs_raw":["@aspen-insights ","Adap GmbH","Google LLC"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":21,"_pop_closed_issues_count":5,"_pop_created_since_days":62,"_pop_updated_since_days":24,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":21.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":25.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kaggle/kaggle-api/master/README.md","_readme_localurl":"kaggle~kaggle-api~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kaggle/kaggle-api/master/setup.py"],"_requirements_localurls":["kaggle~kaggle-api~setup.py"]},{"index":546,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/mmf","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/mmf","_reponame":"mmf","_stars":5146,"_forks":909,"_watches":117,"_language":"Python","_homepage":"https://mmf.sh/","_description":"mmf: A modular framework for vision & language multimodal research from Facebook AI Research (FAIR)","_organization":"facebookresearch","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-06-27T00:00:00.000Z","_age_weeks":243,"_stars_per_week":21.18,"_topics":["pytorch","vqa","pretrained-models","multimodal","deep-learning","captioning","dialog","textvqa","hateful-memes","multi-tasking"],"_last_commit_date":"2023-02-02T00:00:00.000Z","_pop_contributor_count":109,"_pop_contributor_logins":["Ryan-Qiyu-Jiang@uwstudent","YuJiang01@facebook","apsdehal@researchhuggingface,contributorjquery,pastfacebookresearch","dependabot[bot]","jknoxville@facebook","meetps","ronghanghu@metaai","suzyahyah","vedanuj","ytsheng"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook","metaai","researchhuggingface,contributorjquery,pastfacebookresearch","uwstudent"],"_pop_contributor_orgs_raw":["@Facebook","Facebook","Meta AI","Research @huggingface, Contributor @jquery, Past @facebookresearch ","UW student"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.87,"_pop_updated_issues_count":98,"_pop_closed_issues_count":84,"_pop_created_since_days":57,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":98.0,"_pop_comment_count":90.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":40.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/mmf/master/README.md","_readme_localurl":"facebookresearch~mmf~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/mmf/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/mmf/master/setup.py","https://raw.githubusercontent.com/facebookresearch/mmf/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~mmf~requirements.txt","facebookresearch~mmf~setup.py","facebookresearch~mmf~pyproject.toml"]},{"index":652,"category":"profiling","githuburl":"https://github.com/joerick/pyinstrument","featured":null,"links":null,"description":null,"_repopath":"joerick/pyinstrument","_reponame":"pyinstrument","_stars":5127,"_forks":220,"_watches":55,"_language":"Python","_homepage":"https://pyinstrument.readthedocs.io/","_description":"pyinstrument: \ud83d\udeb4\u00a0Call stack profiler for Python. Shows you why your code is slow!","_organization":"joerick","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-03-13T00:00:00.000Z","_age_weeks":466,"_stars_per_week":10.98,"_topics":["python","django","profiler","performance","profile","async"],"_last_commit_date":"2022-12-27T00:00:00.000Z","_pop_contributor_count":47,"_pop_contributor_logins":["asmeurer@quansight","cclauss@christianclauss","codelol","dependabot[bot]","goxberry@datadog,formerlyllnl","iddan@flycode-org","jnsquire","joerick@nordprojects","telamonian@jpmorgan","tonybaloney@microsoft"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["christianclauss","datadog,formerlyllnl","flycode-org","jpmorgan","microsoft","nordprojects","quansight"],"_pop_contributor_orgs_raw":["@DataDog, formerly @LLNL ","@Quansight ","@flycode-org","Christian Clauss","JP Morgan","Microsoft","Nord Projects"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.92,"_pop_updated_issues_count":11,"_pop_closed_issues_count":5,"_pop_created_since_days":109,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":11.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":40.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/joerick/pyinstrument/master/README.md","_readme_localurl":"joerick~pyinstrument~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/joerick/pyinstrument/master/setup.py","https://raw.githubusercontent.com/joerick/pyinstrument/master/pyproject.toml"],"_requirements_localurls":["joerick~pyinstrument~setup.py","joerick~pyinstrument~pyproject.toml"]},{"index":279,"category":"jupyter","githuburl":"https://github.com/nteract/papermill","featured":null,"links":null,"description":null,"_repopath":"nteract/papermill","_reponame":"papermill","_stars":5120,"_forks":386,"_watches":91,"_language":"Python","_homepage":"http://papermill.readthedocs.io/en/latest/","_description":"papermill: \ud83d\udcda Parameterize, execute, and analyze notebooks","_organization":"nteract","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-07-06T00:00:00.000Z","_age_weeks":293,"_stars_per_week":17.42,"_topics":["jupyter","notebooks","notebook-generator","nteract","publishing","pipeline","notebook","python","r","julia","scala"],"_last_commit_date":"2022-10-18T00:00:00.000Z","_pop_contributor_count":108,"_pop_contributor_logins":["MSeal@noteable-io","VincentBLortie","betatim@nvidia","ewmassey","gogasca@google","janfreyberg@google","mpacer@netflix","rgbkrk@noteable-io","vizhur@microsoft","willingc@willingconsulting"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","microsoft","netflix","noteable-io","nvidia","willingconsulting"],"_pop_contributor_orgs_raw":["@Noteable-io","@google ","@noteable-io","Google","Microsoft","Netflix","Nvidia ","Willing Consulting"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.58,"_pop_updated_issues_count":15,"_pop_closed_issues_count":1,"_pop_created_since_days":69,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":15.0,"_pop_comment_count":23.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":40.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nteract/papermill/master/README.md","_readme_localurl":"nteract~papermill~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nteract/papermill/master/requirements.txt","https://raw.githubusercontent.com/nteract/papermill/master/setup.py","https://raw.githubusercontent.com/nteract/papermill/master/pyproject.toml"],"_requirements_localurls":["nteract~papermill~requirements.txt","nteract~papermill~setup.py","nteract~papermill~pyproject.toml"]},{"index":605,"category":"jupyter","githuburl":"https://github.com/connorferster/handcalcs","featured":null,"links":null,"description":null,"_repopath":"connorferster/handcalcs","_reponame":"handcalcs","_stars":5115,"_forks":398,"_watches":78,"_language":"CSS","_homepage":null,"_description":"handcalcs: Python library for converting Python calculations into rendered latex.","_organization":"connorferster","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-02-19T00:00:00.000Z","_age_weeks":157,"_stars_per_week":32.58,"_topics":[],"_last_commit_date":"2022-12-27T00:00:00.000Z","_pop_contributor_count":11,"_pop_contributor_logins":["anishLearnsToCode@wedosarl","cclauss@christianclauss","connorferster@rjc-development","daradib@applemontechnologies","eriknw","gxyd","icaroscherma","michaellisitsa@clearcalcs","omouraenko","shawnbrown"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["applemontechnologies","christianclauss","clearcalcs","rjc-development","wedosarl"],"_pop_contributor_orgs_raw":["@rjc-development ","Applemon Technologies","Christian Clauss","ClearCalcs","WEDO Sarl"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.08,"_pop_updated_issues_count":18,"_pop_closed_issues_count":6,"_pop_created_since_days":37,"_pop_updated_since_days":2,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":18.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":30.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/connorferster/handcalcs/master/README.md","_readme_localurl":"connorferster~handcalcs~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/connorferster/handcalcs/master/requirements.txt","https://raw.githubusercontent.com/connorferster/handcalcs/master/pyproject.toml"],"_requirements_localurls":["connorferster~handcalcs~requirements.txt","connorferster~handcalcs~pyproject.toml"]},{"index":15,"category":"ml-dl","githuburl":"https://github.com/skorch-dev/skorch","featured":null,"links":null,"description":null,"_repopath":"skorch-dev/skorch","_reponame":"skorch","_stars":5041,"_forks":336,"_watches":82,"_language":"Jupyter Notebook","_homepage":"","_description":"skorch: A scikit-learn compatible neural network library that wraps PyTorch","_organization":"skorch-dev","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2017-07-18T00:00:00.000Z","_age_weeks":292,"_stars_per_week":17.26,"_topics":["scikit-learn","pytorch","machine-learning","hacktoberfest"],"_last_commit_date":"2023-02-13T00:00:00.000Z","_pop_contributor_count":54,"_pop_contributor_logins":["BenjaminBossan","adelevie@casetext","asberk","benjamin-work@ottogroupbi","dnouri","ottonemo@ottogroupbi","stsievert","taketwo@aeolusrobotics","thomasjpfan@quansight-labs","timokau"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aeolusrobotics","casetext","ottogroupbi","quansight-labs"],"_pop_contributor_orgs_raw":["@Quansight-Labs ","@casetext ","Aeolus Robotics, Inc.","Otto Group BI"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.08,"_pop_updated_issues_count":21,"_pop_closed_issues_count":12,"_pop_created_since_days":68,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":21.0,"_pop_comment_count":69.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.3,"_pop_dependents_count":0,"_pop_score":42.66,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/skorch-dev/skorch/master/README.rst","_readme_localurl":"skorch-dev~skorch~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/skorch-dev/skorch/master/requirements.txt","https://raw.githubusercontent.com/skorch-dev/skorch/master/setup.py"],"_requirements_localurls":["skorch-dev~skorch~requirements.txt","skorch-dev~skorch~setup.py"]},{"index":953,"category":"security","githuburl":"https://github.com/stamparm/maltrail","featured":null,"links":null,"description":null,"_repopath":"stamparm/maltrail","_reponame":"maltrail","_stars":4978,"_forks":932,"_watches":216,"_language":"Python","_homepage":"","_description":"maltrail: Malicious traffic detection system","_organization":"stamparm","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2014-12-04T00:00:00.000Z","_age_weeks":428,"_stars_per_week":11.61,"_topics":["security","malware","intrusion-detection","sensor","python","network-monitoring","attack-detection"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":40,"_pop_contributor_logins":["D9ping","MikhailKasimov","PeterDaveHello@dnscryptnodejsmaintainerscampus-expertstransmission-remote-gui","arons@logobjectag","dyussekeyev@nazarbayevuniversity","jtkristoff","laciKE","stamparm","t3chn0m4g3@deutschetelekomsecuritygmbh","wesinator"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["deutschetelekomsecuritygmbh","dnscryptnodejsmaintainerscampus-expertstransmission-remote-gui","logobjectag","nazarbayevuniversity"],"_pop_contributor_orgs_raw":["@DNSCrypt @nodejs @maintainers @campus-experts @transmission-remote-gui","Deutsche Telekom Security GmbH","LogObject AG","Nazarbayev University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":249.54,"_pop_updated_issues_count":15,"_pop_closed_issues_count":10,"_pop_created_since_days":100,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":15.0,"_pop_comment_count":42.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":0,"_pop_score":52.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/stamparm/maltrail/master/README.md","_readme_localurl":"stamparm~maltrail~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/stamparm/maltrail/master/requirements.txt"],"_requirements_localurls":["stamparm~maltrail~requirements.txt"]},{"index":181,"category":"security","githuburl":"https://github.com/pycqa/bandit","featured":null,"links":null,"description":null,"_repopath":"pycqa/bandit","_reponame":"bandit","_stars":4968,"_forks":505,"_watches":66,"_language":"Python","_homepage":"https://bandit.readthedocs.io","_description":"Bandit is a tool designed to find common security issues in Python code.","_organization":"pycqa","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-04-26T00:00:00.000Z","_age_weeks":251,"_stars_per_week":19.73,"_topics":["linter","bandit","security-tools","security-scanner","security","static-code-analysis","python"],"_last_commit_date":"2023-02-11T00:00:00.000Z","_pop_contributor_count":161,"_pop_contributor_logins":["brantlk@ibm","chair6","cjschaef@ibm","ehooo","ericwb@securesauce","lukehinds@redhat,inc","pwnetrationguru@ubertechnologies","sigmavirus24@tableau&salesforce","stannum-l@pwc","viraptor"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ibm","pwc","redhat,inc","securesauce","tableau&salesforce","ubertechnologies"],"_pop_contributor_orgs_raw":["@IBM ","@tableau & @salesforce","IBM","PwC","Red Hat, Inc","Secure Sauce","UBER Technologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.37,"_pop_updated_issues_count":31,"_pop_closed_issues_count":12,"_pop_created_since_days":59,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":31.0,"_pop_comment_count":24.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":43.73,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pycqa/bandit/master/README.rst","_readme_localurl":"pycqa~bandit~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pycqa/bandit/master/requirements.txt","https://raw.githubusercontent.com/pycqa/bandit/master/setup.py"],"_requirements_localurls":["pycqa~bandit~requirements.txt","pycqa~bandit~setup.py"]},{"index":380,"category":"data","githuburl":"https://github.com/alirezamika/autoscraper","featured":null,"links":null,"description":null,"_repopath":"alirezamika/autoscraper","_reponame":"autoscraper","_stars":4946,"_forks":520,"_watches":125,"_language":"Python","_homepage":"","_description":"autoscraper: A Smart, Automatic, Fast and Lightweight Web Scraper for Python","_organization":"alirezamika","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-08-31T00:00:00.000Z","_age_weeks":129,"_stars_per_week":38.26,"_topics":["scraping","scraper","scrape","webscraping","crawler","web-scraping","ai","artificial-intelligence","python","webautomation","automation","machine-learning"],"_last_commit_date":"2022-07-17T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["Narasimha1997@cognitifai","PickNickChock","alirezamika","cthulhu-irl","gsakkis","jasonleonhard@http://stackoverflow.com/users/1783588/jasonleonhard","maxbachmann"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cognitifai","http://stackoverflow.com/users/1783588/jasonleonhard"],"_pop_contributor_orgs_raw":["cognitifai","http://stackoverflow.com/users/1783588/jasonleonhard"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":6,"_pop_closed_issues_count":5,"_pop_created_since_days":30,"_pop_updated_since_days":7,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":6.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":22.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alirezamika/autoscraper/master/README.md","_readme_localurl":"alirezamika~autoscraper~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/alirezamika/autoscraper/master/setup.py"],"_requirements_localurls":["alirezamika~autoscraper~setup.py"]},{"index":687,"category":"util","githuburl":"https://github.com/bndr/pipreqs","featured":null,"links":null,"description":null,"_repopath":"bndr/pipreqs","_reponame":"pipreqs","_stars":4888,"_forks":331,"_watches":58,"_language":"Python","_homepage":"","_description":"pipreqs - Generate pip requirements.txt file based on imports of any project. Looking for maintainers to move this project forward.","_organization":"bndr","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-04-22T00:00:00.000Z","_age_weeks":409,"_stars_per_week":11.95,"_topics":[],"_last_commit_date":"2023-01-14T00:00:00.000Z","_pop_contributor_count":53,"_pop_contributor_logins":["AlexPHorta@buey","KaySackey@9cloud","Ohcanep","alan-barzilay","bndr","hdformat","jonafato","littmus","mapattacker","raxod502@plaid"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["9cloud","buey","plaid"],"_pop_contributor_orgs_raw":["9Cloud LLC","@plaid","Buey"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":34,"_pop_closed_issues_count":8,"_pop_created_since_days":95,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":34.0,"_pop_comment_count":22.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":35.83,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/bndr/pipreqs/master/README.rst","_readme_localurl":"bndr~pipreqs~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bndr/pipreqs/master/requirements.txt","https://raw.githubusercontent.com/bndr/pipreqs/master/setup.py"],"_requirements_localurls":["bndr~pipreqs~requirements.txt","bndr~pipreqs~setup.py"]},{"index":169,"category":"nlp","githuburl":"https://github.com/minimaxir/textgenrnn","featured":null,"links":null,"description":null,"_repopath":"minimaxir/textgenrnn","_reponame":"textgenrnn","_stars":4866,"_forks":750,"_watches":138,"_language":"Python","_homepage":"","_description":"textgenrnn: Easily train your own text-generating neural network of any size and complexity on any text dataset with a few lines of code.","_organization":"minimaxir","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-08-07T00:00:00.000Z","_age_weeks":289,"_stars_per_week":16.82,"_topics":["keras","deep-learning","text-generation","tensorflow","python"],"_last_commit_date":"2020-07-14T00:00:00.000Z","_pop_contributor_count":19,"_pop_contributor_logins":["EdwardBetts","IrekRybark@sivantos","akx@valohai","bafonso","danielgrijalva","dkavraal","fahadh4ilyas","minimaxir@buzzfeed","netr","torokati44"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["buzzfeed","sivantos","valohai"],"_pop_contributor_orgs_raw":["@buzzfeed ","@valohai ","Sivantos, Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":67,"_pop_updated_since_days":32,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":3.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":22.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/minimaxir/textgenrnn/master/README.md","_readme_localurl":"minimaxir~textgenrnn~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/minimaxir/textgenrnn/master/requirements.txt","https://raw.githubusercontent.com/minimaxir/textgenrnn/master/setup.py"],"_requirements_localurls":["minimaxir~textgenrnn~requirements.txt","minimaxir~textgenrnn~setup.py"]},{"index":569,"category":"ml","githuburl":"https://github.com/mdbloice/augmentor","featured":null,"links":null,"description":null,"_repopath":"mdbloice/augmentor","_reponame":"Augmentor","_stars":4858,"_forks":857,"_watches":123,"_language":"Python","_homepage":"https://augmentor.readthedocs.io/en/stable","_description":"Augmentor: Image augmentation library in Python for machine learning.","_organization":"mdbloice","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2016-03-01T00:00:00.000Z","_age_weeks":364,"_stars_per_week":13.34,"_topics":["augmentation","machine-learning","deep-learning","neural-networks"],"_last_commit_date":"2023-01-24T00:00:00.000Z","_pop_contributor_count":23,"_pop_contributor_logins":["CarkusL","Evizero","YananJian","eddiesmo@connectedpapers","juneoh","kmader","lradacher","mdbloice@medicaluniversitygraz","puhoshville","s-ai-kia@lsbg,hamburg"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["connectedpapers","lsbg,hamburg","medicaluniversitygraz"],"_pop_contributor_orgs_raw":["@ConnectedPapers ","LSBG, Hamburg","Medical University Graz"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":5,"_pop_closed_issues_count":2,"_pop_created_since_days":85,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":5.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":31.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mdbloice/augmentor/master/README.md","_readme_localurl":"mdbloice~augmentor~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mdbloice/augmentor/master/requirements.txt","https://raw.githubusercontent.com/mdbloice/augmentor/master/setup.py"],"_requirements_localurls":["mdbloice~augmentor~requirements.txt","mdbloice~augmentor~setup.py"]},{"index":513,"category":"util","githuburl":"https://github.com/agronholm/apscheduler","featured":null,"links":null,"description":null,"_repopath":"agronholm/apscheduler","_reponame":"apscheduler","_stars":4851,"_forks":617,"_watches":122,"_language":"Python","_homepage":"","_description":"apscheduler: Task scheduling library for Python","_organization":"agronholm","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-03-27T00:00:00.000Z","_age_weeks":360,"_stars_per_week":13.46,"_topics":[],"_last_commit_date":"2023-02-07T00:00:00.000Z","_pop_contributor_count":38,"_pop_contributor_logins":["AntonKorobkov","adamkalis","agronholm@nextdaysolutionsoy","bjmc","c-oreills","eendebakpt","jvillar@wetaca","linuxdynasty","nikolas@columbiauniversity","pre-commit-ci[bot]"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["columbiauniversity","nextdaysolutionsoy","wetaca"],"_pop_contributor_orgs_raw":["Columbia University","NextDay Solutions Oy","Wetaca"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.63,"_pop_updated_issues_count":25,"_pop_closed_issues_count":15,"_pop_created_since_days":84,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":25.0,"_pop_comment_count":33.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":41.64,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/agronholm/apscheduler/master/README.rst","_readme_localurl":"agronholm~apscheduler~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/agronholm/apscheduler/master/pyproject.toml"],"_requirements_localurls":["agronholm~apscheduler~pyproject.toml"]},{"index":661,"category":"study","githuburl":"https://github.com/udacity/deep-learning-v2-pytorch","featured":null,"links":null,"description":null,"_repopath":"udacity/deep-learning-v2-pytorch","_reponame":"deep-learning-v2-pytorch","_stars":4848,"_forks":5211,"_watches":174,"_language":"Jupyter Notebook","_homepage":null,"_description":"deep-learning-v2-pytorch: Projects and exercises for the latest Deep Learning ND program https://www.udacity.com/course/deep-learning-nanodegree--nd101","_organization":"udacity","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-09-04T00:00:00.000Z","_age_weeks":233,"_stars_per_week":20.79,"_topics":["deep-learning","neural-network","convolutional-networks","pytorch","recurrent-networks","style-transfer","sentiment-analysis"],"_last_commit_date":"2022-12-24T00:00:00.000Z","_pop_contributor_count":98,"_pop_contributor_logins":["HanzTantiangco@universityofsheffield","NadimKawwa","SudKul@udacity","abhiojha8@udacity","cezannec","festusdrakon","jchernus@lumafield","mcleonard@bardeen","ronny-udacity","rrrrrr8@flow"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bardeen","flow","lumafield","udacity","universityofsheffield"],"_pop_contributor_orgs_raw":["@lumafield ","Bardeen","Udacity","University of Sheffield","flow"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":54,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":30.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/udacity/deep-learning-v2-pytorch/master/README.md","_readme_localurl":"udacity~deep-learning-v2-pytorch~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/udacity/deep-learning-v2-pytorch/master/requirements.txt"],"_requirements_localurls":["udacity~deep-learning-v2-pytorch~requirements.txt"]},{"index":642,"category":"util","githuburl":"https://github.com/pycqa/pycodestyle","featured":null,"links":null,"description":null,"_repopath":"pycqa/pycodestyle","_reponame":"pycodestyle","_stars":4775,"_forks":694,"_watches":120,"_language":"Python","_homepage":"https://pycodestyle.pycqa.org","_description":"pycodestyle: Simple Python style checker in one Python file","_organization":"pycqa","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2009-10-02T00:00:00.000Z","_age_weeks":698,"_stars_per_week":6.83,"_topics":["python","pep8","styleguide","style-guide","linter-plugin","linter-flake8","flake8-plugin"],"_last_commit_date":"2022-12-13T00:00:00.000Z","_pop_contributor_count":131,"_pop_contributor_logins":["IanLee1521@llnl","asottile","cdce8p","florentx","gward","jcrocholl","jdufresne@pioneervalleybooks","pre-commit-ci[bot]","reinout@nens","sigmavirus24@tableau&salesforce"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["llnl","nens","pioneervalleybooks","tableau&salesforce"],"_pop_contributor_orgs_raw":["@LLNL","@nens ","@tableau & @salesforce","Pioneer Valley Books"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.73,"_pop_updated_issues_count":16,"_pop_closed_issues_count":13,"_pop_created_since_days":163,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":16.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":40.79,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pycqa/pycodestyle/master/README.rst","_readme_localurl":"pycqa~pycodestyle~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pycqa/pycodestyle/master/setup.py"],"_requirements_localurls":["pycqa~pycodestyle~setup.py"]},{"index":265,"category":"util","githuburl":"https://github.com/pytransitions/transitions","featured":null,"links":null,"description":null,"_repopath":"pytransitions/transitions","_reponame":"transitions","_stars":4761,"_forks":511,"_watches":91,"_language":"Python","_homepage":"","_description":"transitions: A lightweight, object-oriented finite state machine implementation in Python with many extensions","_organization":"pytransitions","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2014-10-12T00:00:00.000Z","_age_weeks":436,"_stars_per_week":10.91,"_topics":["python","state-machine","nested-states","hierarchical-state-machine","state-diagram"],"_last_commit_date":"2023-01-06T00:00:00.000Z","_pop_contributor_count":75,"_pop_contributor_logins":["Synss@tribe29gmbh","TheMysteriousX","aleneum@caretechowl,fhbielefeld","ankostis@jrc-stu","artofhuman","ollamh","svdgraaf@teamookla/downdetector","thedrow","tyarkoni@twitter","wtgee"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["caretechowl,fhbielefeld","jrc-stu","teamookla/downdetector","tribe29gmbh","twitter"],"_pop_contributor_orgs_raw":["@JRC-STU ","@teamookla / Downdetector","@tribe29 GmbH","CareTech OWL, FH Bielefeld","Twitter"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.62,"_pop_updated_issues_count":8,"_pop_closed_issues_count":3,"_pop_created_since_days":102,"_pop_updated_since_days":2,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":8.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":38.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytransitions/transitions/master/README.md","_readme_localurl":"pytransitions~transitions~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pytransitions/transitions/master/requirements.txt","https://raw.githubusercontent.com/pytransitions/transitions/master/setup.py"],"_requirements_localurls":["pytransitions~transitions~requirements.txt","pytransitions~transitions~setup.py"]},{"index":551,"category":"ml","githuburl":"https://github.com/open-mmlab/mmcv","featured":null,"links":null,"description":null,"_repopath":"open-mmlab/mmcv","_reponame":"mmcv","_stars":4699,"_forks":1394,"_watches":84,"_language":"Python","_homepage":"https://mmcv.readthedocs.io/en/latest/","_description":"mmcv: OpenMMLab Computer Vision Foundation","_organization":"open-mmlab","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-08-22T00:00:00.000Z","_age_weeks":235,"_stars_per_week":20.0,"_topics":[],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":249,"_pop_contributor_logins":["MeowZheng@openmmlab","ZwwWayne@mmlab,ntu","dreamerlin@shanghaiailab","grimoire","hellock@open-mmlab","jshilong@shanghaiailab","teamwong111","xvjiarui@ucsd","yhcao6@cuhk,mmlab","zhouzaida"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cuhk,mmlab","mmlab,ntu","open-mmlab","openmmlab","shanghaiailab","ucsd"],"_pop_contributor_orgs_raw":["@open-mmlab ","CUHK, MMLab","MMLab, NTU","OpenMMLab","Shanghai AI Lab","UCSD"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.54,"_pop_updated_issues_count":208,"_pop_closed_issues_count":145,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":23,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":208.0,"_pop_comment_count":260.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":53.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-mmlab/mmcv/master/README.md","_readme_localurl":"open-mmlab~mmcv~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/open-mmlab/mmcv/master/requirements.txt","https://raw.githubusercontent.com/open-mmlab/mmcv/master/setup.py"],"_requirements_localurls":["open-mmlab~mmcv~requirements.txt","open-mmlab~mmcv~setup.py"]},{"index":213,"category":"data","githuburl":"https://github.com/facebookresearch/augly","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/augly","_reponame":"AugLy","_stars":4668,"_forks":274,"_watches":62,"_language":"Python","_homepage":"https://ai.facebook.com/blog/augly-a-new-data-augmentation-library-to-help-build-more-robust-ai-models/","_description":"AugLy: A data augmentations library for audio, image, text, and video.","_organization":"facebookresearch","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-06-09T00:00:00.000Z","_age_weeks":89,"_stars_per_week":52.45,"_topics":[],"_last_commit_date":"2022-12-05T00:00:00.000Z","_pop_contributor_count":26,"_pop_contributor_logins":["Adib234","AghilesAzzoug@cr\u00e9ditagricolesa","Cloud9c","amyreese@omnilib","cclauss@christianclauss","iAdityaEmpire","jbitton@facebookresearch","mayaliliya","membriux@intuit","zpapakipos"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["christianclauss","cr\u00e9ditagricolesa","facebookresearch","intuit","omnilib"],"_pop_contributor_orgs_raw":["@facebookresearch","@intuit","@omnilib ","Christian Clauss","Cr\u00e9dit Agricole SA"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.9,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":21,"_pop_updated_since_days":3,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":25.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/augly/master/README.md","_readme_localurl":"facebookresearch~augly~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/augly/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/augly/master/setup.py"],"_requirements_localurls":["facebookresearch~augly~requirements.txt","facebookresearch~augly~setup.py"]},{"index":830,"category":"typing","githuburl":"https://github.com/python-attrs/attrs","featured":1.0,"links":null,"description":null,"_repopath":"python-attrs/attrs","_reponame":"attrs","_stars":4643,"_forks":333,"_watches":57,"_language":"Python","_homepage":"https://www.attrs.org/","_description":"attrs: Python Classes Without Boilerplate","_organization":"python-attrs","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-01-27T00:00:00.000Z","_age_weeks":421,"_stars_per_week":11.02,"_topics":["python","boilerplate","classes","oop","attributes"],"_last_commit_date":"2023-02-12T00:00:00.000Z","_pop_contributor_count":139,"_pop_contributor_logins":["Tinche@pocketzworld","altendky","cournape@mercarijp","euresti","hynek@variomediaag","pre-commit-ci[bot]","radix","sscherfke","wbolster","webknjaz@ansiblecoreredhatofficial"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ansiblecoreredhatofficial","mercarijp","pocketzworld","variomediaag"],"_pop_contributor_orgs_raw":["@Ansible Core @ @RedHatOfficial","@pocketzworld ","Mercari JP","Variomedia AG"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.25,"_pop_updated_issues_count":68,"_pop_closed_issues_count":48,"_pop_created_since_days":98,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":68.0,"_pop_comment_count":207.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":49.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python-attrs/attrs/master/README.md","_readme_localurl":"python-attrs~attrs~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-attrs/attrs/master/pyproject.toml"],"_requirements_localurls":["python-attrs~attrs~pyproject.toml"]},{"index":97,"category":"jupyter","githuburl":"https://github.com/voila-dashboards/voila","featured":null,"links":null,"description":null,"_repopath":"voila-dashboards/voila","_reponame":"voila","_stars":4572,"_forks":457,"_watches":78,"_language":"Python","_homepage":"https://voila.readthedocs.io","_description":"voila: Voil\u00e0 turns Jupyter notebooks into standalone web applications","_organization":"voila-dashboards","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-08-21T00:00:00.000Z","_age_weeks":235,"_stars_per_week":19.44,"_topics":["jupyter","jupyter-notebook","jupyterlab-extension","dashboarding"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":64,"_pop_contributor_logins":["SylvainCorlay@quantstack","davidbrochart@quantstack","dependabot[bot]","github-actions[bot]","jtpio@quantstack","maartenbreddels@maartenbreddels","martinRenou@quantstack","mkcor","timkpaine@point72","trungleduc@quantstack"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["maartenbreddels","point72","quantstack"],"_pop_contributor_orgs_raw":["@Point72","@QuantStack","@maartenbreddels","QuantStack"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.9,"_pop_updated_issues_count":39,"_pop_closed_issues_count":21,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":29,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":39.0,"_pop_comment_count":105.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":0,"_pop_score":45.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/voila-dashboards/voila/master/README.md","_readme_localurl":"voila-dashboards~voila~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/voila-dashboards/voila/master/setup.py","https://raw.githubusercontent.com/voila-dashboards/voila/master/pyproject.toml"],"_requirements_localurls":["voila-dashboards~voila~setup.py","voila-dashboards~voila~pyproject.toml"]},{"index":247,"category":"util","githuburl":"https://github.com/jorgebastida/awslogs","featured":null,"links":null,"description":null,"_repopath":"jorgebastida/awslogs","_reponame":"awslogs","_stars":4556,"_forks":328,"_watches":59,"_language":"Python","_homepage":null,"_description":"awslogs: AWS CloudWatch logs for Humans\u2122","_organization":"jorgebastida","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2015-01-21T00:00:00.000Z","_age_weeks":422,"_stars_per_week":10.8,"_topics":[],"_last_commit_date":"2020-07-10T00:00:00.000Z","_pop_contributor_count":39,"_pop_contributor_logins":["WhyNotHugo","blueyed@freelancer,upforhire","carlnordenfelt@bynordenfelt","galenhuntington","graingert","jorgebastida@infiniteforksl","juhani-hietikko@reaktor","rwolfson","sj26@buildkite","vlcinsky"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["buildkite","bynordenfelt","freelancer,upforhire","infiniteforksl","reaktor"],"_pop_contributor_orgs_raw":["@Buildkite","Freelancer, up for hire","Infinite Fork SL","Reaktor","by nordenfelt"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":9,"_pop_closed_issues_count":1,"_pop_created_since_days":98,"_pop_updated_since_days":32,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":9.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":27.71,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jorgebastida/awslogs/master/README.rst","_readme_localurl":"jorgebastida~awslogs~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jorgebastida/awslogs/master/setup.py"],"_requirements_localurls":["jorgebastida~awslogs~setup.py"]},{"index":312,"category":"util","githuburl":"https://github.com/indygreg/pyoxidizer","featured":null,"links":null,"description":null,"_repopath":"indygreg/pyoxidizer","_reponame":"PyOxidizer","_stars":4539,"_forks":196,"_watches":60,"_language":"Rust","_homepage":"","_description":"PyOxidizer: A modern Python application packaging and distribution tool","_organization":"indygreg","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-12-18T00:00:00.000Z","_age_weeks":218,"_stars_per_week":20.81,"_topics":[],"_last_commit_date":"2023-01-21T00:00:00.000Z","_pop_contributor_count":53,"_pop_contributor_logins":["Tipuch","dae","durin42","dvc94ch","indygreg","jayvdb@franklin-ai","ralpha","ryancinsight@insightec","stuhood@toolchainlabs","wkschwartz@isaadvisers"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["franklin-ai","insightec","isaadvisers","toolchainlabs"],"_pop_contributor_orgs_raw":["@franklin-ai","@isaadvisers ","Insightec ","Toolchain Labs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":26.0,"_pop_updated_issues_count":51,"_pop_closed_issues_count":14,"_pop_created_since_days":51,"_pop_updated_since_days":1,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":88,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":51.0,"_pop_comment_count":59.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":45.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/indygreg/pyoxidizer/master/README.md","_readme_localurl":"indygreg~pyoxidizer~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/indygreg/pyoxidizer/master/setup.py"],"_requirements_localurls":["indygreg~pyoxidizer~setup.py"]},{"index":66,"category":"util","githuburl":"https://github.com/pycqa/pylint","featured":null,"links":null,"description":null,"_repopath":"pycqa/pylint","_reponame":"pylint","_stars":4515,"_forks":973,"_watches":75,"_language":"Python","_homepage":"http://pylint.pycqa.org","_description":"pylint: It's not just a linter that annoys you!","_organization":"pycqa","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2015-12-09T00:00:00.000Z","_age_weeks":376,"_stars_per_week":12.01,"_topics":["static-analysis","linter","static-code-analysis","code-quality","pep8","closember","hacktoberfest"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":514,"_pop_contributor_logins":["DanielNoord@channable","DudeNr33@siemensmobilitygmbh","PCManticore","Pierre-Sassoulas","cdce8p","dependabot[bot]","godfryd@graphcore","hippo91","jacobtylerwalls@element84","mbyrnepr2"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["channable","element84","graphcore","siemensmobilitygmbh"],"_pop_contributor_orgs_raw":["@channable","Element 84","Graphcore","Siemens Mobility GmbH"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":37.73,"_pop_updated_issues_count":718,"_pop_closed_issues_count":469,"_pop_created_since_days":88,"_pop_updated_since_days":0,"_pop_recent_releases_count":34,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":34,"_pop_issue_count":718.0,"_pop_comment_count":2198.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.1,"_pop_dependents_count":0,"_pop_score":63.05,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pycqa/pylint/master/README.rst","_readme_localurl":"pycqa~pylint~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pycqa/pylint/master/pyproject.toml"],"_requirements_localurls":["pycqa~pylint~pyproject.toml"]},{"index":570,"category":"util","githuburl":"https://github.com/jd/tenacity","featured":1.0,"links":null,"description":null,"_repopath":"jd/tenacity","_reponame":"tenacity","_stars":4487,"_forks":222,"_watches":44,"_language":"Python","_homepage":"http://tenacity.readthedocs.io","_description":"tenacity: Retrying library for Python","_organization":"jd","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-08-11T00:00:00.000Z","_age_weeks":340,"_stars_per_week":13.16,"_topics":["python","failure","retry","retry-library","hacktoberfest"],"_last_commit_date":"2023-02-09T00:00:00.000Z","_pop_contributor_count":77,"_pop_contributor_logins":["asqui","bersace@dalibo","harlowja@waymo","immerrr","jd@mergifyio","mergify[bot]","mezgerj","penguinolog","rholder","sileht@mergifyio"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["dalibo","mergifyio","waymo"],"_pop_contributor_orgs_raw":["@Dalibo","@Mergifyio","Waymo"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.38,"_pop_updated_issues_count":37,"_pop_closed_issues_count":25,"_pop_created_since_days":80,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":37.0,"_pop_comment_count":54.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":42.93,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jd/tenacity/master/README.rst","_readme_localurl":"jd~tenacity~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jd/tenacity/master/setup.py","https://raw.githubusercontent.com/jd/tenacity/master/pyproject.toml"],"_requirements_localurls":["jd~tenacity~setup.py","jd~tenacity~pyproject.toml"]},{"index":196,"category":"viz","githuburl":"https://github.com/lux-org/lux","featured":null,"links":null,"description":null,"_repopath":"lux-org/lux","_reponame":"lux","_stars":4435,"_forks":344,"_watches":86,"_language":"Python","_homepage":"","_description":"lux: Automatically visualize your pandas dataframe via a single print! \ud83d\udcca \ud83d\udca1","_organization":"lux-org","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-01-08T00:00:00.000Z","_age_weeks":163,"_stars_per_week":27.21,"_topics":["visualization-tools","jupyter","python","data-science","exploratory-data-analysis","visualization","pandas"],"_last_commit_date":"2022-05-21T00:00:00.000Z","_pop_contributor_count":20,"_pop_contributor_logins":["19thyneb","caitlynachen","cgarciae@quansight","dorisjlee@ponder-org","jaywoo123","jinimukh@year","jrdzha","micahtyong@ucberkeley","thyneb19","westernguy2"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ponder-org","quansight","ucberkeley","year"],"_pop_contributor_orgs_raw":["@ponder-org","Quansight","UC Berkeley","Year"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":6,"_pop_closed_issues_count":0,"_pop_created_since_days":38,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":6.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":27.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lux-org/lux/master/README.md","_readme_localurl":"lux-org~lux~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/lux-org/lux/master/requirements.txt","https://raw.githubusercontent.com/lux-org/lux/master/setup.py","https://raw.githubusercontent.com/lux-org/lux/master/pyproject.toml"],"_requirements_localurls":["lux-org~lux~requirements.txt","lux-org~lux~setup.py","lux-org~lux~pyproject.toml"]},{"index":206,"category":"ml","githuburl":"https://github.com/lucidrains/deep-daze","featured":null,"links":null,"description":null,"_repopath":"lucidrains/deep-daze","_reponame":"deep-daze","_stars":4385,"_forks":330,"_watches":75,"_language":"Python","_homepage":"","_description":"deep-daze: Simple command line tool for text to image generation using OpenAI's CLIP and Siren (Implicit neural representation network). Technique was originally created by https://twitter.com/advadnoun","_organization":"lucidrains","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2021-01-17T00:00:00.000Z","_age_weeks":109,"_stars_per_week":40.07,"_topics":["artificial-intelligence","deep-learning","transformers","siren","implicit-neural-representation","text-to-image","multi-modality"],"_last_commit_date":"2022-03-13T00:00:00.000Z","_pop_contributor_count":14,"_pop_contributor_logins":["Fliens","Incog5","NotNANtoN@adalab","RaymondTerry","akx@valohai","dginev@kwarc","donno2048","lorcalhost@bitpolito","lucidrains","russelldc@midjourney"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["adalab","bitpolito","kwarc","midjourney","valohai"],"_pop_contributor_orgs_raw":["@BITPoliTO","@KWARC ","@midjourney","@valohai ","Adalab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":26,"_pop_updated_since_days":12,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":31,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":19.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lucidrains/deep-daze/master/README.md","_readme_localurl":"lucidrains~deep-daze~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lucidrains/deep-daze/master/setup.py"],"_requirements_localurls":["lucidrains~deep-daze~setup.py"]},{"index":764,"category":"ml-dl","githuburl":"https://github.com/xpixelgroup/basicsr","featured":null,"links":null,"description":null,"_repopath":"xpixelgroup/basicsr","_reponame":"BasicSR","_stars":4374,"_forks":891,"_watches":90,"_language":"Python","_homepage":"https://basicsr.readthedocs.io/en/latest/","_description":"BasicSR: Open Source Image and Video Restoration Toolbox for Super-resolution, Denoise, Deblurring, etc. Currently, it includes EDSR, RCAN, SRResNet, SRGAN, ESRGAN, EDVR, BasicVSR, SwinIR, ECBSR, etc. Also support StyleGAN2, DFDNet.","_organization":"xpixelgroup","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-04-19T00:00:00.000Z","_age_weeks":252,"_stars_per_week":17.3,"_topics":["basicsr","esrgan","edsr","rcan","edvr","srresnet","srgan","super-resolution","restoration","pytorch","stylegan2","dfdnet","basicvsr","swinir","ecbsr"],"_last_commit_date":"2023-02-02T00:00:00.000Z","_pop_contributor_count":19,"_pop_contributor_logins":["Cugtyt@msft","JeremyIV","LiangbinXie@um&siat","Lotayou@videocodinglaboratory,pekinguniversity","My-Zhu@sigs,tsinghuauniversity","henrymai","ljzycmd","wwhio","xinntao@tencent","zestloveheart@whut"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["msft","sigs,tsinghuauniversity","tencent","um&siat","videocodinglaboratory,pekinguniversity","whut"],"_pop_contributor_orgs_raw":["MSFT","SIGS, Tsinghua University","Tencent","UM & SIAT","Video Coding Laboratory, Peking University","WHUT"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.02,"_pop_updated_issues_count":23,"_pop_closed_issues_count":4,"_pop_created_since_days":59,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":23.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":34.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/xpixelgroup/basicsr/master/README.md","_readme_localurl":"xpixelgroup~basicsr~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/xpixelgroup/basicsr/master/requirements.txt","https://raw.githubusercontent.com/xpixelgroup/basicsr/master/setup.py"],"_requirements_localurls":["xpixelgroup~basicsr~requirements.txt","xpixelgroup~basicsr~setup.py"]},{"index":927,"category":"util","githuburl":"https://github.com/openai/point-e","featured":null,"links":null,"description":null,"_repopath":"openai/point-e","_reponame":"point-e","_stars":4359,"_forks":432,"_watches":159,"_language":"Python","_homepage":null,"_description":"point-e: Point cloud diffusion for 3D model synthesis","_organization":"openai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-12-06T00:00:00.000Z","_age_weeks":11,"_stars_per_week":391.19,"_topics":[],"_last_commit_date":"2022-12-20T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["heewooj","unixpickle"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":73,"_pop_closed_issues_count":24,"_pop_created_since_days":3,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":73.0,"_pop_comment_count":144.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":13.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/point-e/master/README.md","_readme_localurl":"openai~point-e~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/point-e/master/setup.py"],"_requirements_localurls":["openai~point-e~setup.py"]},{"index":21,"category":"nlp","githuburl":"https://github.com/facebookresearch/drqa","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/drqa","_reponame":"DrQA","_stars":4350,"_forks":906,"_watches":165,"_language":"Python","_homepage":null,"_description":"DrQA: Reading Wikipedia to Answer Open-Domain Questions","_organization":"facebookresearch","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2017-07-07T00:00:00.000Z","_age_weeks":293,"_stars_per_week":14.81,"_topics":[],"_last_commit_date":"2021-05-18T00:00:00.000Z","_pop_contributor_count":12,"_pop_contributor_logins":["ajfisch@mitnlp","dfenglei@hewlett-packardenterprise","hpasapp@asappinc","jaseweston","lbaligand","ousou@iprally","pemazare","rashoodkhan@yellowmessenger","stephenroller","sundeep"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["asappinc","hewlett-packardenterprise","iprally","mitnlp","yellowmessenger"],"_pop_contributor_orgs_raw":["@ASAPPinc ","@iprally ","@mitnlp ","Hewlett-Packard Enterprise ","Yellow Messenger"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":68,"_pop_updated_since_days":21,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":22.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/drqa/master/README.md","_readme_localurl":"facebookresearch~drqa~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/drqa/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/drqa/master/setup.py"],"_requirements_localurls":["facebookresearch~drqa~requirements.txt","facebookresearch~drqa~setup.py"]},{"index":101,"category":"ml","githuburl":"https://github.com/rasbt/mlxtend","featured":null,"links":null,"description":null,"_repopath":"rasbt/mlxtend","_reponame":"mlxtend","_stars":4271,"_forks":804,"_watches":118,"_language":"Python","_homepage":"http://rasbt.github.io/mlxtend/","_description":"mlxtend: A library of extension and helper modules for Python's data analysis and machine learning libraries.","_organization":"rasbt","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-08-14T00:00:00.000Z","_age_weeks":444,"_stars_per_week":9.6,"_topics":["python","machine-learning","data-science","data-mining","association-rules","supervised-learning","unsupervised-learning"],"_last_commit_date":"2023-01-31T00:00:00.000Z","_pop_contributor_count":92,"_pop_contributor_logins":["JJLWHarrison","Maitreyee1","NimaSarajpoor","jaksmid@blindspotsolutions","jrbourbeau@coiled","kota7","labdmitriy","rasbt@lightning-ai,universityofwisconsin-madison","reiinakano@openai","zdgriffith@ssec"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["blindspotsolutions","coiled","lightning-ai,universityofwisconsin-madison","openai","ssec"],"_pop_contributor_orgs_raw":["@Lightning-AI , University of Wisconsin-Madison","@coiled ","@openai","@ssec","Blindspot Solutions"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.52,"_pop_updated_issues_count":17,"_pop_closed_issues_count":14,"_pop_created_since_days":104,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":17.0,"_pop_comment_count":36.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":44.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/mlxtend/master/README.md","_readme_localurl":"rasbt~mlxtend~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rasbt/mlxtend/master/requirements.txt","https://raw.githubusercontent.com/rasbt/mlxtend/master/setup.py"],"_requirements_localurls":["rasbt~mlxtend~requirements.txt","rasbt~mlxtend~setup.py"]},{"index":717,"category":"data","githuburl":"https://github.com/jazzband/tablib","featured":null,"links":null,"description":null,"_repopath":"jazzband/tablib","_reponame":"tablib","_stars":4226,"_forks":571,"_watches":142,"_language":"Python","_homepage":"https://tablib.readthedocs.io/","_description":"tablib: Python Module for Tabular Datasets in XLS, CSV, JSON, YAML, &c.","_organization":"jazzband","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2011-03-28T00:00:00.000Z","_age_weeks":621,"_stars_per_week":6.8,"_topics":[],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":120,"_pop_contributor_logins":["claudep@2xlibre.nets\u00e0rl","durden@http://www.lukelee.me","hugovk@nordsoftware","iurisilvio@buser","jdufresne@pioneervalleybooks","kennethreitz","lbeltrame","rogersmark@guildeducation","timofurrer@gitlabhq","xdanielsb"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["2xlibre.nets\u00e0rl","buser","gitlabhq","guildeducation","http://www.lukelee.me","nordsoftware","pioneervalleybooks"],"_pop_contributor_orgs_raw":["2xlibre.net S\u00e0rl","@gitlabhq","Buser","Guild Education","Nord Software","Pioneer Valley Books","http://www.lukelee.me"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.33,"_pop_updated_issues_count":17,"_pop_closed_issues_count":14,"_pop_created_since_days":145,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":17.0,"_pop_comment_count":44.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":0,"_pop_score":46.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jazzband/tablib/master/README.md","_readme_localurl":"jazzband~tablib~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jazzband/tablib/master/setup.py","https://raw.githubusercontent.com/jazzband/tablib/master/pyproject.toml"],"_requirements_localurls":["jazzband~tablib~setup.py","jazzband~tablib~pyproject.toml"]},{"index":370,"category":"time-series","githuburl":"https://github.com/facebookresearch/kats","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/kats","_reponame":"Kats","_stars":4221,"_forks":449,"_watches":72,"_language":"Python","_homepage":"","_description":"Kats, a kit to analyze time series data, a lightweight, easy-to-use, generalizable, and extendable framework to perform time series analysis, from understanding the key statistics and characteristics, detecting change points and anomalies, to forecasting future trends. ","_organization":"facebookresearch","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-02-25T00:00:00.000Z","_age_weeks":103,"_stars_per_week":40.64,"_topics":[],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":126,"_pop_contributor_logins":["MariusGuerard","ahmetburhanfb","facebook-github-bot@facebook","iamxiaodong@facebook","michaelbrundage@meta","ourownstory@stanforduniversity","peiyizhang@meta","rohanfb","uthakore@facebook","yangbk560@facebooklnc."],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook","facebooklnc.","meta","stanforduniversity"],"_pop_contributor_orgs_raw":["@facebook","Facebook","Facebook lnc.","Meta","Stanford University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.54,"_pop_updated_issues_count":37,"_pop_closed_issues_count":21,"_pop_created_since_days":24,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":37.0,"_pop_comment_count":28.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":40.13,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/kats/master/README.md","_readme_localurl":"facebookresearch~kats~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/kats/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/kats/master/setup.py"],"_requirements_localurls":["facebookresearch~kats~requirements.txt","facebookresearch~kats~setup.py"]},{"index":542,"category":"util","githuburl":"https://github.com/mamba-org/mamba","featured":null,"links":null,"description":null,"_repopath":"mamba-org/mamba","_reponame":"mamba","_stars":4220,"_forks":244,"_watches":44,"_language":"C++","_homepage":"https://mamba.readthedocs.io","_description":"mamba: The Fast Cross-Platform Package Manager","_organization":"mamba-org","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-03-05T00:00:00.000Z","_age_weeks":207,"_stars_per_week":20.37,"_topics":[],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":109,"_pop_contributor_logins":["AntoinePrv@quantstack","Hind-M","JohanMabille@quantstack","Klaim","adriendelsalle@quantstack","davidbrochart@quantstack","isuruf@universityofillinois","jonashaag@quantco","marimeireles@anaconda","wolfv@prefix.devgmbh"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","prefix.devgmbh","quantco","quantstack","universityofillinois"],"_pop_contributor_orgs_raw":["@QuantStack","@Quantco","@anaconda","QuantStack","University of Illinois","prefix.dev GmbH"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.85,"_pop_updated_issues_count":276,"_pop_closed_issues_count":158,"_pop_created_since_days":48,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":52,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":277.0,"_pop_comment_count":756.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":0,"_pop_score":53.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mamba-org/mamba/master/README.md","_readme_localurl":"mamba-org~mamba~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mamba-org/mamba/master/pyproject.toml"],"_requirements_localurls":["mamba-org~mamba~pyproject.toml"]},{"index":734,"category":"ml-dl","githuburl":"https://github.com/pytorch/ignite","featured":1.0,"links":null,"description":null,"_repopath":"pytorch/ignite","_reponame":"ignite","_stars":4206,"_forks":579,"_watches":59,"_language":"Python","_homepage":"https://pytorch-ignite.ai","_description":"ignite: High-level library to help with training and evaluating neural networks in PyTorch flexibly and transparently.","_organization":"pytorch","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-11-23T00:00:00.000Z","_age_weeks":273,"_stars_per_week":15.36,"_topics":["pytorch","neural-network","python","machine-learning","deep-learning","metrics","hacktoberfest","closember"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":187,"_pop_contributor_logins":["Ishan-Kumar2@sdsdatasciencegroupdsgiitr","KickItLikeShika@cision","Moh-Yakoub","alykhantejani@sharechat","anmolsjoshi","puhuk","sadra-barikbin@pytorch-ignite","sdesrozis@pytorch-ignitemichelin","trsvchn@bimsbbioinfopytorch-ignite","vfdev-5@quansight"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bimsbbioinfopytorch-ignite","cision","pytorch-ignite","pytorch-ignitemichelin","quansight","sdsdatasciencegroupdsgiitr","sharechat"],"_pop_contributor_orgs_raw":["@BIMSBbioinfo @pytorch-ignite","@Quansight","@ShareChat","@cision","@pytorch-ignite","@pytorch-ignite @michelin","SDS Data Science Group @dsgiitr "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.58,"_pop_updated_issues_count":115,"_pop_closed_issues_count":96,"_pop_created_since_days":64,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":115.0,"_pop_comment_count":181.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":50.47,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/ignite/master/README.md","_readme_localurl":"pytorch~ignite~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/ignite/master/setup.py","https://raw.githubusercontent.com/pytorch/ignite/master/pyproject.toml"],"_requirements_localurls":["pytorch~ignite~setup.py","pytorch~ignite~pyproject.toml"]},{"index":293,"category":"util","githuburl":"https://github.com/pytoolz/toolz","featured":null,"links":null,"description":null,"_repopath":"pytoolz/toolz","_reponame":"toolz","_stars":4167,"_forks":249,"_watches":82,"_language":"Python","_homepage":"http://toolz.readthedocs.org/","_description":"toolz: A functional standard library for Python.","_organization":"pytoolz","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2013-09-13T00:00:00.000Z","_age_weeks":492,"_stars_per_week":8.46,"_topics":[],"_last_commit_date":"2022-11-03T00:00:00.000Z","_pop_contributor_count":74,"_pop_contributor_logins":["bartvm@google","cpcloud@voltrondata","eriknw","groutr@lynkertechnologies","hugovk@nordsoftware","llllllllll@formerlyquantopian","medecau","mrocklin@coiled","obmarg@redbadger","tacaswell@brookhavennationallab"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["brookhavennationallab","coiled","formerlyquantopian","google","lynkertechnologies","nordsoftware","redbadger","voltrondata"],"_pop_contributor_orgs_raw":["@coiled ","@google","@voltrondata","Brookhaven National Lab","Lynker Technologies","Nord Software","Red Badger","formerly @quantopian"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.25,"_pop_updated_issues_count":18,"_pop_closed_issues_count":7,"_pop_created_since_days":115,"_pop_updated_since_days":4,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":18.0,"_pop_comment_count":32.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":39.88,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytoolz/toolz/master/README.rst","_readme_localurl":"pytoolz~toolz~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pytoolz/toolz/master/setup.py"],"_requirements_localurls":["pytoolz~toolz~setup.py"]},{"index":27,"category":"typing","githuburl":"https://github.com/google/pytype","featured":null,"links":null,"description":null,"_repopath":"google/pytype","_reponame":"pytype","_stars":4120,"_forks":263,"_watches":56,"_language":"Python","_homepage":"https://google.github.io/pytype","_description":"pytype: A static type analyzer for Python code","_organization":"google","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-03-18T00:00:00.000Z","_age_weeks":414,"_stars_per_week":9.95,"_topics":["python","typing","typechecker","linter","types","static-analysis","static-code-analysis"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":87,"_pop_contributor_logins":["Solumin","alvarocaceres","bsolomon1124","dbaum","martindemello@google","matthiaskramm","pludemann@google","rchen152","rpalaguachi","sivachandra@googledart-langflutter"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","googledart-langflutter"],"_pop_contributor_orgs_raw":["@google @dart-lang @flutter ","Google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.63,"_pop_updated_issues_count":63,"_pop_closed_issues_count":53,"_pop_created_since_days":97,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":21,"_pop_recent_releases_adjusted_count":21,"_pop_issue_count":63.0,"_pop_comment_count":53.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":46.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/pytype/master/README.md","_readme_localurl":"google~pytype~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/google/pytype/master/requirements.txt","https://raw.githubusercontent.com/google/pytype/master/setup.py","https://raw.githubusercontent.com/google/pytype/master/pyproject.toml"],"_requirements_localurls":["google~pytype~requirements.txt","google~pytype~setup.py","google~pytype~pyproject.toml"]},{"index":362,"category":"ml-ops","githuburl":"https://github.com/allegroai/clearml","featured":null,"links":null,"description":null,"_repopath":"allegroai/clearml","_reponame":"clearml","_stars":4115,"_forks":556,"_watches":85,"_language":"Python","_homepage":"https://clear.ml/docs","_description":"ClearML - Auto-Magical CI/CD to streamline your ML workflow. Experiment Manager, MLOps and Data-Management","_organization":"allegroai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-06-10T00:00:00.000Z","_age_weeks":193,"_stars_per_week":21.29,"_topics":["version-control","experiment-manager","version","control","experiment","deeplearning","deep-learning","machine-learning","machinelearning","ai","trains","trainsai","clearml","k8s","devops","mlops"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":71,"_pop_contributor_logins":["H4dr1en","Rizwan-Hasan@techlearnersincallegroai","allegroai-git@allegroai","danmalowany-allegro@allegro.ai","erezalg","eugen-ajechiloae-clearml","jalexand3r","jkhenning","pollfly","thepycoder"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["allegro.ai","allegroai","techlearnersincallegroai"],"_pop_contributor_orgs_raw":["@TechLearnersInc @allegroai","AllegroAI","allegro.ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.44,"_pop_updated_issues_count":135,"_pop_closed_issues_count":51,"_pop_created_since_days":45,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":36,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":135.0,"_pop_comment_count":306.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":46.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/allegroai/clearml/master/README.md","_readme_localurl":"allegroai~clearml~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/allegroai/clearml/master/requirements.txt","https://raw.githubusercontent.com/allegroai/clearml/master/setup.py"],"_requirements_localurls":["allegroai~clearml~requirements.txt","allegroai~clearml~setup.py"]},{"index":754,"category":"study","githuburl":"https://github.com/karpathy/micrograd","featured":null,"links":null,"description":null,"_repopath":"karpathy/micrograd","_reponame":"micrograd","_stars":4113,"_forks":440,"_watches":90,"_language":"Jupyter Notebook","_homepage":"","_description":"micrograd: A tiny scalar-valued autograd engine and a neural net library on top of it with PyTorch-like API","_organization":"karpathy","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-04-13T00:00:00.000Z","_age_weeks":149,"_stars_per_week":27.55,"_topics":[],"_last_commit_date":"2020-04-18T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["bpesquet@enscognitique","karpathy"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["enscognitique"],"_pop_contributor_orgs_raw":["ENS Cognitique"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":8,"_pop_closed_issues_count":3,"_pop_created_since_days":35,"_pop_updated_since_days":35,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":8.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":11.85,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/karpathy/micrograd/master/README.md","_readme_localurl":"karpathy~micrograd~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/karpathy/micrograd/master/setup.py"],"_requirements_localurls":["karpathy~micrograd~setup.py"]},{"index":227,"category":"ml","githuburl":"https://github.com/online-ml/river","featured":1.0,"links":null,"description":null,"_repopath":"online-ml/river","_reponame":"river","_stars":4087,"_forks":458,"_watches":83,"_language":"Python","_homepage":"https://riverml.xyz","_description":"river: \ud83c\udf0a Online machine learning in Python","_organization":"online-ml","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2019-01-24T00:00:00.000Z","_age_weeks":212,"_stars_per_week":19.2,"_topics":["incremental-learning","machine-learning","python","online-learning","online-statistics","data-science","streaming","online-machine-learning","streaming-data","concept-drift","real-time-processing","stream-processing"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":94,"_pop_contributor_logins":["AdilZouitine@irtsaint-exup\u00e9ry","Darkmyter","MaxHalford@carbonfact","garawalid@sfr","gbolmier@volvo-cars","guimatsumoto","jacobmontiel@universityofwaikato","krifiMedAmine","raphaelsty@manomano","smastelini@phdcandidateatuniversityofs\u00e3opaulo"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["carbonfact","irtsaint-exup\u00e9ry","manomano","phdcandidateatuniversityofs\u00e3opaulo","sfr","universityofwaikato","volvo-cars"],"_pop_contributor_orgs_raw":["@carbonfact","@volvo-cars","IRT Saint-Exup\u00e9ry","ManoMano","PhD candidate at University of S\u00e3o Paulo","SFR","University of Waikato"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.58,"_pop_updated_issues_count":68,"_pop_closed_issues_count":58,"_pop_created_since_days":50,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":68.0,"_pop_comment_count":182.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":0,"_pop_score":50.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/online-ml/river/master/README.md","_readme_localurl":"online-ml~river~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/online-ml/river/master/setup.py","https://raw.githubusercontent.com/online-ml/river/master/pyproject.toml"],"_requirements_localurls":["online-ml~river~setup.py","online-ml~river~pyproject.toml"]},{"index":549,"category":"ml","githuburl":"https://github.com/open-mmlab/mmediting","featured":null,"links":null,"description":null,"_repopath":"open-mmlab/mmediting","_reponame":"mmediting","_stars":4069,"_forks":728,"_watches":86,"_language":"Python","_homepage":"https://mmediting.readthedocs.io/en/latest/","_description":"mmediting: OpenMMLab Image and Video Restoration, Editing and Generation Toolbox","_organization":"open-mmlab","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-08-23T00:00:00.000Z","_age_weeks":182,"_stars_per_week":22.27,"_topics":["super-resolution","inpainting","matting","image-generation","generative-adversarial-network","pytorch","deep-learning","video-interpolation","video-frame-interpolation","video-super-resolution","computer-vision","image-editing","image-processing","image-synthesis"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":66,"_pop_contributor_logins":["EndlessSora@nanyangtechnologicaluniversity","Yshuo-Li","ckkelvinchan@googleresearch","hejm37@universityofalberta","hellock@open-mmlab","innerlee@cuhk","nbei","wangruohui","wwhio","zengyh1900@openmmlab"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cuhk","googleresearch","nanyangtechnologicaluniversity","open-mmlab","openmmlab","universityofalberta"],"_pop_contributor_orgs_raw":["@open-mmlab ","CUHK","Google Research","Nanyang Technological University","OpenMMLab","University of Alberta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.83,"_pop_updated_issues_count":238,"_pop_closed_issues_count":197,"_pop_created_since_days":43,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":238.0,"_pop_comment_count":252.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":47.89,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-mmlab/mmediting/master/README.md","_readme_localurl":"open-mmlab~mmediting~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/open-mmlab/mmediting/master/requirements.txt","https://raw.githubusercontent.com/open-mmlab/mmediting/master/setup.py"],"_requirements_localurls":["open-mmlab~mmediting~requirements.txt","open-mmlab~mmediting~setup.py"]},{"index":343,"category":"web","githuburl":"https://github.com/vitalik/django-ninja","featured":null,"links":null,"description":null,"_repopath":"vitalik/django-ninja","_reponame":"django-ninja","_stars":4068,"_forks":259,"_watches":60,"_language":"Python","_homepage":"https://django-ninja.rest-framework.com","_description":"django-ninja: \ud83d\udca8 Fast, Async-ready, Openapi, type hints based framework for building APIs","_organization":"vitalik","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-05-19T00:00:00.000Z","_age_weeks":144,"_stars_per_week":28.22,"_topics":["python","django","rest-api","openapi","pydantic","swagger","swagger-ui","django-ninja"],"_last_commit_date":"2023-02-10T00:00:00.000Z","_pop_contributor_count":77,"_pop_contributor_logins":["OtherBarry@spiralblue","SmileyChris","areski@star2billing//dialerai","baseplate-admin","fojetin","hiaselhans","jairhenrique@grupoboticario","stephenrauch","vitalik","wimolivier"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["grupoboticario","spiralblue","star2billing//dialerai"],"_pop_contributor_orgs_raw":["@grupoboticario ","@spiralblue ","Star2Billing // DialerAI"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.94,"_pop_updated_issues_count":112,"_pop_closed_issues_count":65,"_pop_created_since_days":34,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":112.0,"_pop_comment_count":241.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":43.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vitalik/django-ninja/master/README.md","_readme_localurl":"vitalik~django-ninja~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/vitalik/django-ninja/master/setup.py","https://raw.githubusercontent.com/vitalik/django-ninja/master/pyproject.toml"],"_requirements_localurls":["vitalik~django-ninja~setup.py","vitalik~django-ninja~pyproject.toml"]},{"index":565,"category":"gis","githuburl":"https://github.com/gboeing/osmnx","featured":null,"links":null,"description":null,"_repopath":"gboeing/osmnx","_reponame":"osmnx","_stars":4053,"_forks":744,"_watches":121,"_language":"Python","_homepage":"https://geoffboeing.com/publications/osmnx-complex-street-networks/","_description":"OSMnx: Python for street networks. Retrieve, model, analyze, and visualize street networks and other spatial data from OpenStreetMap.","_organization":"gboeing","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-07-24T00:00:00.000Z","_age_weeks":343,"_stars_per_week":11.8,"_topics":["openstreetmap","gis","street-networks","overpass-api","networkx","spatial-analysis","geospatial","urban-planning","transportation","geography","osmnx","networks","spatial-data","urban","osm","spatial","python","transport","mapping","routing"],"_last_commit_date":"2023-01-27T00:00:00.000Z","_pop_contributor_count":74,"_pop_contributor_logins":["AtelierLibre","HTenkanen@aaltouniversity","RunOrVeith","d-wasserman@alta","eumiro","gboeing@universityofsoutherncalifornia","migurski","mxndrwgrdnr","pmartincalvo","samuelduchesne@mitsustainabledesignlabelementa-engineering"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aaltouniversity","alta","mitsustainabledesignlabelementa-engineering","universityofsoutherncalifornia"],"_pop_contributor_orgs_raw":["@MITSustainableDesignLab @Elementa-Engineering","Aalto University","Alta","University of Southern California"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.27,"_pop_updated_issues_count":51,"_pop_closed_issues_count":43,"_pop_created_since_days":80,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":51.0,"_pop_comment_count":96.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":45.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gboeing/osmnx/master/README.md","_readme_localurl":"gboeing~osmnx~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gboeing/osmnx/master/requirements.txt","https://raw.githubusercontent.com/gboeing/osmnx/master/setup.py"],"_requirements_localurls":["gboeing~osmnx~requirements.txt","gboeing~osmnx~setup.py"]},{"index":258,"category":"crypto","githuburl":"https://github.com/ethereum/web3.py","featured":1.0,"links":null,"description":null,"_repopath":"ethereum/web3.py","_reponame":"web3.py","_stars":4039,"_forks":1309,"_watches":117,"_language":"Python","_homepage":"http://web3py.readthedocs.io","_description":"web3.py: A python interface for interacting with the Ethereum blockchain and ecosystem.","_organization":"ethereum","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-04-14T00:00:00.000Z","_age_weeks":357,"_stars_per_week":11.29,"_topics":[],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":219,"_pop_contributor_logins":["carver@ethereumfoundation","djrtwo@ctrl^t","dylanjw","fselmo@ethereum","kclowes","njgheorghita@ethereum","pipermerriam@ethereumfoundation","tmckenzie51","voith@cryptexfinance","wolovim"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cryptexfinance","ctrl^t","ethereum","ethereumfoundation"],"_pop_contributor_orgs_raw":["@cryptexfinance","@ethereum","@ethereum ","Ctrl^T","Ethereum Foundation"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.94,"_pop_updated_issues_count":153,"_pop_closed_issues_count":113,"_pop_created_since_days":83,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":28,"_pop_issue_count":153.0,"_pop_comment_count":151.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":52.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethereum/web3.py/master/README.md","_readme_localurl":"ethereum~web3.py~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ethereum/web3.py/master/setup.py","https://raw.githubusercontent.com/ethereum/web3.py/master/pyproject.toml"],"_requirements_localurls":["ethereum~web3.py~setup.py","ethereum~web3.py~pyproject.toml"]},{"index":184,"category":"ml-dl","githuburl":"https://github.com/google/flax","featured":null,"links":null,"description":null,"_repopath":"google/flax","_reponame":"flax","_stars":4033,"_forks":475,"_watches":77,"_language":"Python","_homepage":"https://flax.readthedocs.io","_description":"Flax is a neural network library for JAX that is designed for flexibility.","_organization":"google","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-01-10T00:00:00.000Z","_age_weeks":162,"_stars_per_week":24.79,"_topics":["jax"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":187,"_pop_contributor_logins":["8bitmp3@tensorflow,jax,flax","IvyZX@google","andsteing@google","avital@google","cgarciae@quansight","jheek","levskaya","marcvanzee@google","mohitreddy1996@fennel-ai","wrzadkow@istaustria"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["fennel-ai","google","istaustria","quansight","tensorflow,jax,flax"],"_pop_contributor_orgs_raw":["@fennel-ai","@google","Google","IST Austria","Quansight","tensorflow, jax, flax"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.0,"_pop_updated_issues_count":287,"_pop_closed_issues_count":201,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":287.0,"_pop_comment_count":458.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":52.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/flax/master/README.md","_readme_localurl":"google~flax~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/flax/master/setup.py"],"_requirements_localurls":["google~flax~setup.py"]},{"index":376,"category":"util","githuburl":"https://github.com/spotify/pedalboard","featured":null,"links":null,"description":null,"_repopath":"spotify/pedalboard","_reponame":"pedalboard","_stars":3992,"_forks":166,"_watches":50,"_language":"C++","_homepage":"","_description":"pedalboard: \ud83c\udf9b \ud83d\udd0a A Python library for working with audio.","_organization":"spotify","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2021-07-06T00:00:00.000Z","_age_weeks":85,"_stars_per_week":46.89,"_topics":["vst3","vst3-host","python","juce","tensorflow","audio-unit","pybind11","audio-processing","audio-production","audio-research","audio"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":25,"_pop_contributor_logins":["AK391@huggingface","andrerics","astagi@italiateamdigitale","brettcannon@microsoft","christinesutcliffe","drubinstein@spotify","emilio1234","paulm12@myr","psobot@spotify","rm-star@b3ta"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["b3ta","huggingface","italiateamdigitale","microsoft","myr","spotify"],"_pop_contributor_orgs_raw":["@b3ta","@italia @teamdigitale","@microsoft ","@spotify","Huggingface","MYR"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.69,"_pop_updated_issues_count":44,"_pop_closed_issues_count":33,"_pop_created_since_days":20,"_pop_updated_since_days":0,"_pop_recent_releases_count":25,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":25,"_pop_issue_count":44.0,"_pop_comment_count":41.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":42.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/spotify/pedalboard/master/README.md","_readme_localurl":"spotify~pedalboard~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/spotify/pedalboard/master/requirements.txt","https://raw.githubusercontent.com/spotify/pedalboard/master/setup.py","https://raw.githubusercontent.com/spotify/pedalboard/master/pyproject.toml"],"_requirements_localurls":["spotify~pedalboard~requirements.txt","spotify~pedalboard~setup.py","spotify~pedalboard~pyproject.toml"]},{"index":355,"category":"ml-ops","githuburl":"https://github.com/feast-dev/feast","featured":null,"links":null,"description":null,"_repopath":"feast-dev/feast","_reponame":"feast","_stars":3979,"_forks":744,"_watches":74,"_language":"Python","_homepage":"https://feast.dev","_description":"feast: Feature Store for Machine Learning","_organization":"feast-dev","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-12-10T00:00:00.000Z","_age_weeks":219,"_stars_per_week":18.15,"_topics":["machine-learning","features","ml","big-data","feature-store","python","mlops","data-engineering","data-science","data-quality"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":189,"_pop_contributor_logins":["achals@tectonai","adchia@tecton","davidheryanto","felixwang9817","jklegar","kevjumba","pyalex@tecton-ai","terryyylim@gojek","woop@tecton","zhilingc@gojekindonesia"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["gojek","gojekindonesia","tecton","tecton-ai","tectonai"],"_pop_contributor_orgs_raw":["@gojekindonesia ","@tecton-ai","Gojek","Tecton","Tecton AI"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.67,"_pop_updated_issues_count":260,"_pop_closed_issues_count":174,"_pop_created_since_days":51,"_pop_updated_since_days":0,"_pop_recent_releases_count":30,"_pop_recent_releases_estimated_tags":30,"_pop_recent_releases_adjusted_count":30,"_pop_issue_count":260.0,"_pop_comment_count":408.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":54.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/feast-dev/feast/master/README.md","_readme_localurl":"feast-dev~feast~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/feast-dev/feast/master/setup.py","https://raw.githubusercontent.com/feast-dev/feast/master/pyproject.toml"],"_requirements_localurls":["feast-dev~feast~setup.py","feast-dev~feast~pyproject.toml"]},{"index":13,"category":"ml","githuburl":"https://github.com/districtdatalabs/yellowbrick","featured":null,"links":null,"description":null,"_repopath":"districtdatalabs/yellowbrick","_reponame":"yellowbrick","_stars":3913,"_forks":543,"_watches":101,"_language":"Python","_homepage":"http://www.scikit-yb.org/","_description":"yellowbrick: Visual analysis and diagnostic tools to facilitate machine learning model selection.","_organization":"districtdatalabs","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2016-05-18T00:00:00.000Z","_age_weeks":353,"_stars_per_week":11.08,"_topics":["machine-learning","visual-analysis","model-selection","visualization","scikit-learn","visualizer","matplotlib","python","estimator","anaconda"],"_last_commit_date":"2023-01-13T00:00:00.000Z","_pop_contributor_count":111,"_pop_contributor_logins":["Kautumn06","bbengfort@rotationalio","jkeung","lwgray","mgarod","naresh-bachwani","ndanielsen","pdamodaran","ralle123","rebeccabilbro@rotationallabs"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["rotationalio","rotationallabs"],"_pop_contributor_orgs_raw":["@rotationalio ","Rotational Labs, LLC"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":11,"_pop_closed_issues_count":6,"_pop_created_since_days":82,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":11.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":36.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/districtdatalabs/yellowbrick/master/README.md","_readme_localurl":"districtdatalabs~yellowbrick~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/districtdatalabs/yellowbrick/master/requirements.txt","https://raw.githubusercontent.com/districtdatalabs/yellowbrick/master/setup.py"],"_requirements_localurls":["districtdatalabs~yellowbrick~requirements.txt","districtdatalabs~yellowbrick~setup.py"]},{"index":43,"category":"data","githuburl":"https://github.com/lk-geimfari/mimesis","featured":null,"links":null,"description":null,"_repopath":"lk-geimfari/mimesis","_reponame":"mimesis","_stars":3902,"_forks":309,"_watches":64,"_language":"Python","_homepage":"https://mimesis.name","_description":"Mimesis is a high-performance fake data generator for Python, which provides data for a variety of purposes in a variety of languages. ","_organization":"lk-geimfari","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2016-09-09T00:00:00.000Z","_age_weeks":336,"_stars_per_week":11.59,"_topics":["mimesis","fake","data","generator","fixtures","dummy","json","schema","testing","python","json-generator","faker","mock","synthetic-data","datascience","api-mock"],"_last_commit_date":"2023-01-27T00:00:00.000Z","_pop_contributor_count":113,"_pop_contributor_logins":["dependabot-preview[bot]","dependabot[bot]","eumiro","hoefling@ionos-cloud","lk-geimfari@roskomsvoboda","ngnpope@infogrid","sinecode@extendi","sobolevn","valerievich","wikkiewikkie@42software"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["42software","extendi","infogrid","ionos-cloud","roskomsvoboda"],"_pop_contributor_orgs_raw":["42 Software LLC","@ionos-cloud ","@roskomsvoboda","Extendi","Infogrid"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.75,"_pop_updated_issues_count":25,"_pop_closed_issues_count":14,"_pop_created_since_days":79,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":25.0,"_pop_comment_count":25.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":45.86,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/lk-geimfari/mimesis/master/README.rst","_readme_localurl":"lk-geimfari~mimesis~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/lk-geimfari/mimesis/master/pyproject.toml"],"_requirements_localurls":["lk-geimfari~mimesis~pyproject.toml"]},{"index":199,"category":"viz","githuburl":"https://github.com/man-group/dtale","featured":null,"links":null,"description":null,"_repopath":"man-group/dtale","_reponame":"dtale","_stars":3876,"_forks":329,"_watches":68,"_language":"TypeScript","_homepage":"http://alphatechadmin.pythonanywhere.com","_description":"dtale: Visualizer for pandas data structures","_organization":"man-group","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-07-15T00:00:00.000Z","_age_weeks":188,"_stars_per_week":20.59,"_topics":["python27","python3","react","flask","pandas","ipython","jupyter-notebook","react-virtualized","data-analysis","data-visualization","visualization","plotly-dash","data-science","xarray"],"_last_commit_date":"2023-02-07T00:00:00.000Z","_pop_contributor_count":29,"_pop_contributor_logins":["AnthraX1","appznoix","ariffrahimin@asiadigitalengineering","aschonfeld","cdeil@heidelbergcement","colin-jensen","dependabot[bot]","jasonkholden","matrach","phillipdupuis"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["asiadigitalengineering","heidelbergcement"],"_pop_contributor_orgs_raw":["Asia Digital Engineering","HeidelbergCement"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.87,"_pop_updated_issues_count":36,"_pop_closed_issues_count":28,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":40,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":36.0,"_pop_comment_count":76.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":40.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/man-group/dtale/master/README.md","_readme_localurl":"man-group~dtale~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/man-group/dtale/master/requirements.txt","https://raw.githubusercontent.com/man-group/dtale/master/setup.py"],"_requirements_localurls":["man-group~dtale~requirements.txt","man-group~dtale~setup.py"]},{"index":309,"category":"crypto","githuburl":"https://github.com/crytic/slither","featured":null,"links":null,"description":null,"_repopath":"crytic/slither","_reponame":"slither","_stars":3819,"_forks":694,"_watches":61,"_language":"Python","_homepage":"https://blog.trailofbits.com/2018/10/19/slither-a-solidity-static-analysis-framework/","_description":"slither: Static Analyzer for Solidity","_organization":"crytic","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-09-05T00:00:00.000Z","_age_weeks":233,"_stars_per_week":16.39,"_topics":["solidity","ethereum","static-analysis"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":101,"_pop_contributor_logins":["0xalpharush@trailofbits","Xenomega@trailofbits","elopez@trailofbits","ggrieco-tob@trailofbits","htadashi","montyly","rajeevgopalakrishna","rmi7","samczsun","smonicas"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["trailofbits"],"_pop_contributor_orgs_raw":["@trailofbits","@trailofbits "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.94,"_pop_updated_issues_count":298,"_pop_closed_issues_count":172,"_pop_created_since_days":54,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":298.0,"_pop_comment_count":316.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":43.44,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/crytic/slither/master/README.md","_readme_localurl":"crytic~slither~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/crytic/slither/master/setup.py","https://raw.githubusercontent.com/crytic/slither/master/pyproject.toml"],"_requirements_localurls":["crytic~slither~setup.py","crytic~slither~pyproject.toml"]},{"index":790,"category":"diffusion","githuburl":"https://github.com/ashawkey/stable-dreamfusion","featured":null,"links":null,"description":null,"_repopath":"ashawkey/stable-dreamfusion","_reponame":"stable-dreamfusion","_stars":3817,"_forks":332,"_watches":83,"_language":"Python","_homepage":"","_description":"stable-dreamfusion: A pytorch implementation of text-to-3D dreamfusion, powered by stable diffusion.","_organization":"ashawkey","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-10-06T00:00:00.000Z","_age_weeks":19,"_stars_per_week":192.22,"_topics":["text-to-3d","gui","nerf","stable-diffusion","dreamfusion"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["abesmon@ctcmedia","ashawkey@pekinguniversity","elliottzheng","flobotics@floboticsrobotics","jogloran","johnrobinsn","nside"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ctcmedia","floboticsrobotics","pekinguniversity"],"_pop_contributor_orgs_raw":["CTC Media","Flobotics Robotics","Peking University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.46,"_pop_updated_issues_count":79,"_pop_closed_issues_count":36,"_pop_created_since_days":5,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":79.0,"_pop_comment_count":186.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":29.51,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/ashawkey/stable-dreamfusion/master/readme.md","_readme_localurl":"ashawkey~stable-dreamfusion~readme.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/ashawkey/stable-dreamfusion/master/requirements.txt"],"_requirements_localurls":["ashawkey~stable-dreamfusion~requirements.txt"]},{"index":388,"category":"nlp","githuburl":"https://github.com/makcedward/nlpaug","featured":null,"links":null,"description":null,"_repopath":"makcedward/nlpaug","_reponame":"nlpaug","_stars":3810,"_forks":429,"_watches":39,"_language":"Jupyter Notebook","_homepage":"https://makcedward.github.io/","_description":"nlpaug: Data augmentation for NLP ","_organization":"makcedward","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-03-21T00:00:00.000Z","_age_weeks":204,"_stars_per_week":18.6,"_topics":["nlp","augmentation","machine-learning","artificial-intelligence","data-science","natural-language-processing","adversarial-attacks","adversarial-example","ai","ml"],"_last_commit_date":"2022-07-07T00:00:00.000Z","_pop_contributor_count":33,"_pop_contributor_logins":["DrMatters","JohnGiorgi@universityoftoronto","Logigo","amitness","avostryakov","baskrahmer","bdalal@cresta","chiragjn@truefoundry","makcedward@toyotaconnected","ricardopieper@clevertech"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["clevertech","cresta","toyotaconnected","truefoundry","universityoftoronto"],"_pop_contributor_orgs_raw":["@cresta ","@truefoundry ","Clevertech","Toyota Connected","University of Toronto"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":16,"_pop_closed_issues_count":1,"_pop_created_since_days":48,"_pop_updated_since_days":8,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":16.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":27.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/makcedward/nlpaug/master/README.md","_readme_localurl":"makcedward~nlpaug~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/makcedward/nlpaug/master/requirements.txt","https://raw.githubusercontent.com/makcedward/nlpaug/master/setup.py"],"_requirements_localurls":["makcedward~nlpaug~requirements.txt","makcedward~nlpaug~setup.py"]},{"index":91,"category":"ml","githuburl":"https://github.com/uber/causalml","featured":null,"links":null,"description":null,"_repopath":"uber/causalml","_reponame":"causalml","_stars":3800,"_forks":608,"_watches":78,"_language":"Python","_homepage":"","_description":"causalml: Uplift modeling and causal inference with machine learning algorithms","_organization":"uber","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2019-07-09T00:00:00.000Z","_age_weeks":189,"_stars_per_week":20.09,"_topics":["incubation","machine-learning","causal-inference","uplift-modeling"],"_last_commit_date":"2023-02-03T00:00:00.000Z","_pop_contributor_count":49,"_pop_contributor_logins":["huigangchen","jeongyoonlee@uber","manojbalaji1@datascientist","paullo0106@uber","peterfoley","ppstacy","t-tte@toyotaresearchinstitute","yluogit","yungmsh@spotify","zhenyuz0500@tencent"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["datascientist","spotify","tencent","toyotaresearchinstitute","uber"],"_pop_contributor_orgs_raw":["Data Scientist","Spotify","Tencent","Toyota Research Institute","Uber"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.85,"_pop_updated_issues_count":24,"_pop_closed_issues_count":8,"_pop_created_since_days":44,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":24.0,"_pop_comment_count":38.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":38.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/uber/causalml/master/README.md","_readme_localurl":"uber~causalml~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/causalml/master/requirements.txt","https://raw.githubusercontent.com/uber/causalml/master/setup.py","https://raw.githubusercontent.com/uber/causalml/master/pyproject.toml"],"_requirements_localurls":["uber~causalml~requirements.txt","uber~causalml~setup.py","uber~causalml~pyproject.toml"]},{"index":280,"category":"nlp","githuburl":"https://github.com/maartengr/bertopic","featured":null,"links":null,"description":null,"_repopath":"maartengr/bertopic","_reponame":"BERTopic","_stars":3798,"_forks":487,"_watches":45,"_language":"Python","_homepage":"https://maartengr.github.io/BERTopic/","_description":"BERTopic: Leveraging BERT and c-TF-IDF to create easily interpretable topics. ","_organization":"maartengr","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-09-22T00:00:00.000Z","_age_weeks":126,"_stars_per_week":30.11,"_topics":["bert","transformers","topic-modeling","sentence-embeddings","nlp","machine-learning","topic","ldavis","topic-modelling","topic-models"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":19,"_pop_contributor_logins":["FelSiq@icmc,universityofs\u00e3opaulo","MaartenGr@iknl","anubhabdaserrr@textifyai(t3xtifyai)","domenicrosati@scitedotai","dwhdai@ada","leloykun@expedock","nreimers@huggingface","proselotis@mustanganalytics","rafaelvalero","xwwwwww@tsinghuauniversity"],"_pop_contributor_orgs_len":9,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ada","expedock","huggingface","icmc,universityofs\u00e3opaulo","iknl","mustanganalytics","scitedotai","textifyai(t3xtifyai)","tsinghuauniversity"],"_pop_contributor_orgs_raw":["@scitedotai ","Ada","Expedock","Huggingface","ICMC, University of S\u00e3o Paulo","IKNL","Mustang Analytics","Textify AI (@T3xtifyai)","Tsinghua University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.56,"_pop_updated_issues_count":239,"_pop_closed_issues_count":149,"_pop_created_since_days":29,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":239.0,"_pop_comment_count":606.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":0,"_pop_score":44.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/maartengr/bertopic/master/README.md","_readme_localurl":"maartengr~bertopic~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/maartengr/bertopic/master/setup.py"],"_requirements_localurls":["maartengr~bertopic~setup.py"]},{"index":822,"category":"ml","githuburl":"https://github.com/project-monai/monai","featured":null,"links":null,"description":null,"_repopath":"project-monai/monai","_reponame":"MONAI","_stars":3790,"_forks":728,"_watches":88,"_language":"Python","_homepage":"https://monai.io/","_description":"MONAI: AI Toolkit for Healthcare Imaging","_organization":"project-monai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-10-11T00:00:00.000Z","_age_weeks":175,"_stars_per_week":21.57,"_topics":["healthcare-imaging","deep-learning","medical-image-computing","medical-image-processing","pytorch","python3","monai"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":138,"_pop_contributor_logins":["Can-Zhao@nvidia","KumoLiu@nvidia","Nic-Ma@nvidia","drbeh@nvidia","ericspod@king'scollegelondon","hjmjohnson@theuniversityofiowa","myron@nvidia","rijobro@king'scollegelondon","wyli@nvidia","yiheng-wang-nv"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["king'scollegelondon","nvidia","theuniversityofiowa"],"_pop_contributor_orgs_raw":["@NVIDIA","King's College London","NVIDIA","Nvidia","The University of Iowa"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.27,"_pop_updated_issues_count":477,"_pop_closed_issues_count":367,"_pop_created_since_days":41,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":21,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":478.0,"_pop_comment_count":911.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":50.3,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/project-monai/monai/master/README.md","_readme_localurl":"project-monai~monai~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/project-monai/monai/master/requirements.txt","https://raw.githubusercontent.com/project-monai/monai/master/setup.py","https://raw.githubusercontent.com/project-monai/monai/master/pyproject.toml"],"_requirements_localurls":["project-monai~monai~requirements.txt","project-monai~monai~setup.py","project-monai~monai~pyproject.toml"]},{"index":357,"category":"data","githuburl":"https://github.com/amundsen-io/amundsen","featured":null,"links":null,"description":null,"_repopath":"amundsen-io/amundsen","_reponame":"amundsen","_stars":3780,"_forks":907,"_watches":246,"_language":"Python","_homepage":"https://www.amundsen.io/amundsen/","_description":"Amundsen is a metadata driven application for improving the productivity of data analysts, data scientists and engineers when interacting with data.","_organization":"amundsen-io","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2019-05-14T00:00:00.000Z","_age_weeks":197,"_stars_per_week":19.17,"_topics":["amundsen","metadata","data-catalog","data-discovery","linuxfoundation"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":217,"_pop_contributor_logins":["Golodhros@lyft","allisonsuarez","dependabot-preview[bot]","dorianj","feng-tao@databricksamundsen-ioapache","jinhyukchang@lyft","jornh","mgorsk1","ttannis@lyft","verdan"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["databricksamundsen-ioapache","lyft"],"_pop_contributor_orgs_raw":["@databricks @amundsen-io @apache ","@lyft","Lyft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.31,"_pop_updated_issues_count":282,"_pop_closed_issues_count":265,"_pop_created_since_days":46,"_pop_updated_since_days":0,"_pop_recent_releases_count":39,"_pop_recent_releases_estimated_tags":32,"_pop_recent_releases_adjusted_count":39,"_pop_issue_count":283.0,"_pop_comment_count":162.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":47.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/amundsen-io/amundsen/master/README.md","_readme_localurl":"amundsen-io~amundsen~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/amundsen-io/amundsen/master/requirements.txt"],"_requirements_localurls":["amundsen-io~amundsen~requirements.txt"]},{"index":855,"category":"profiling","githuburl":"https://github.com/pythonprofilers/memory_profiler","featured":null,"links":null,"description":null,"_repopath":"pythonprofilers/memory_profiler","_reponame":"memory_profiler","_stars":3768,"_forks":366,"_watches":76,"_language":"Python","_homepage":"http://pypi.python.org/pypi/memory_profiler","_description":"memory_profiler: Monitor Memory usage of Python code","_organization":"pythonprofilers","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2011-10-14T00:00:00.000Z","_age_weeks":592,"_stars_per_week":6.36,"_topics":[],"_last_commit_date":"2022-12-06T00:00:00.000Z","_pop_contributor_count":101,"_pop_contributor_logins":["Afoucaul@cardiologs","altendky","astrojuanlu@kedro-org","bbengfort@rotationalio","cclauss@christianclauss","d-ryzhikov","demiurg906@jetbrains","fabianp@google","mgbckr@universityofrostock","pgervais"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cardiologs","christianclauss","google","jetbrains","kedro-org","rotationalio","universityofrostock"],"_pop_contributor_orgs_raw":["@JetBrains","@google","@kedro-org","@rotationalio ","Cardiologs","Christian Clauss","University of Rostock"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.63,"_pop_updated_issues_count":7,"_pop_closed_issues_count":4,"_pop_created_since_days":138,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":7.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":41.81,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pythonprofilers/memory_profiler/master/README.rst","_readme_localurl":"pythonprofilers~memory_profiler~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pythonprofilers/memory_profiler/master/setup.py","https://raw.githubusercontent.com/pythonprofilers/memory_profiler/master/pyproject.toml"],"_requirements_localurls":["pythonprofilers~memory_profiler~setup.py","pythonprofilers~memory_profiler~pyproject.toml"]},{"index":778,"category":"study","githuburl":"https://github.com/nielsrogge/transformers-tutorials","featured":null,"links":null,"description":null,"_repopath":"nielsrogge/transformers-tutorials","_reponame":"Transformers-Tutorials","_stars":3760,"_forks":589,"_watches":84,"_language":"Jupyter Notebook","_homepage":"","_description":"Transformers-Tutorials: This repository contains demos I made with the Transformers library by HuggingFace.","_organization":"nielsrogge","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-08-31T00:00:00.000Z","_age_weeks":129,"_stars_per_week":29.08,"_topics":["transformers","pytorch","bert","vision-transformer","layoutlm","gpt-2"],"_last_commit_date":"2023-02-09T00:00:00.000Z","_pop_contributor_count":5,"_pop_contributor_logins":["FrancescoSaverioZuppichini@roboflow","NielsRogge@huggingface","grahamannett"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["huggingface","roboflow"],"_pop_contributor_orgs_raw":["HuggingFace","roboflow"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.71,"_pop_updated_issues_count":57,"_pop_closed_issues_count":11,"_pop_created_since_days":30,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":58.0,"_pop_comment_count":94.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":29.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nielsrogge/transformers-tutorials/master/README.md","_readme_localurl":"nielsrogge~transformers-tutorials~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":354,"category":"ml-interpretability","githuburl":"https://github.com/pytorch/captum","featured":null,"links":null,"description":null,"_repopath":"pytorch/captum","_reponame":"captum","_stars":3751,"_forks":402,"_watches":213,"_language":"Python","_homepage":"https://captum.ai","_description":"captum: Model interpretability and understanding for PyTorch","_organization":"pytorch","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-08-27T00:00:00.000Z","_age_weeks":182,"_stars_per_week":20.59,"_topics":["interpretability","interpretable-ai","interpretable-ml","feature-importance","feature-attribution"],"_last_commit_date":"2023-02-03T00:00:00.000Z","_pop_contributor_count":98,"_pop_contributor_logins":["99warriors","J0Nreynolds","NarineK","ProGamerGov","aobo-y@facebook","bilalsal@viennauniversityoftechnology","edward-io","miguelmartin75@meta","orionr@facebook","vivekmig"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook","meta","viennauniversityoftechnology"],"_pop_contributor_orgs_raw":["@facebook","@facebook ","Meta","Vienna University of Technology"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.0,"_pop_updated_issues_count":57,"_pop_closed_issues_count":33,"_pop_created_since_days":42,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":57.0,"_pop_comment_count":155.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":0,"_pop_score":41.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/captum/master/README.md","_readme_localurl":"pytorch~captum~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/captum/master/setup.py","https://raw.githubusercontent.com/pytorch/captum/master/pyproject.toml"],"_requirements_localurls":["pytorch~captum~setup.py","pytorch~captum~pyproject.toml"]},{"index":793,"category":"ml-ops","githuburl":"https://github.com/orchest/orchest","featured":null,"links":null,"description":null,"_repopath":"orchest/orchest","_reponame":"orchest","_stars":3731,"_forks":221,"_watches":39,"_language":"Python","_homepage":"https://orchest.io","_description":"orchest: Build data pipelines, the easy way \ud83d\udee0\ufe0f","_organization":"orchest","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-05-21T00:00:00.000Z","_age_weeks":143,"_stars_per_week":25.94,"_topics":["data-science","machine-learning","pipelines","ide","jupyter","cloud","self-hosted","jupyterlab","notebooks","docker","python","data-pipelines","orchest","deployment","kubernetes","airflow","dag","etl","etl-pipeline"],"_last_commit_date":"2023-01-20T00:00:00.000Z","_pop_contributor_count":31,"_pop_contributor_logins":["astrojuanlu@kedro-org","dependabot[bot]","fruttasecca@orchest","iannbing@orchest.io","joe-bell@bigattic","mausworks@orchest","ncspost","nhaghighat@orchestmangrovesdb","ricklamers@orchest","yannickperrenet@orchest"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bigattic","kedro-org","orchest","orchest.io","orchestmangrovesdb"],"_pop_contributor_orgs_raw":["@Orchest","@bigattic","@kedro-org","@orchest","@orchest ","@orchest @mangrovesdb","Orchest.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":75.04,"_pop_updated_issues_count":82,"_pop_closed_issues_count":65,"_pop_created_since_days":34,"_pop_updated_since_days":1,"_pop_recent_releases_count":96,"_pop_recent_releases_estimated_tags":72,"_pop_recent_releases_adjusted_count":96,"_pop_issue_count":82.0,"_pop_comment_count":79.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":47.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/orchest/orchest/master/README.md","_readme_localurl":"orchest~orchest~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/orchest/orchest/master/pyproject.toml"],"_requirements_localurls":["orchest~orchest~pyproject.toml"]},{"index":58,"category":"gamedev","githuburl":"https://github.com/panda3d/panda3d","featured":null,"links":null,"description":null,"_repopath":"panda3d/panda3d","_reponame":"panda3d","_stars":3724,"_forks":754,"_watches":195,"_language":"C++","_homepage":"https://www.panda3d.org/","_description":"panda3d: Powerful, mature open-source cross-platform game engine for Python and C++, developed by Disney and CMU","_organization":"panda3d","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2013-09-30T00:00:00.000Z","_age_weeks":490,"_stars_per_week":7.6,"_topics":["game-engine","open-source","panda3d","cross-platform","python","panda3d-game-engine","game-development","opengl","multi-platform","gamedev","c-plus-plus"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":160,"_pop_contributor_logins":["CFSworks","Moguri","darrenr555","drwrose","gyedo","jyelon","nthparameter","rdb","shochet@codespark,homer","zpavlov"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["codespark,homer"],"_pop_contributor_orgs_raw":["codeSpark, Homer"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.33,"_pop_updated_issues_count":157,"_pop_closed_issues_count":81,"_pop_created_since_days":114,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":157.0,"_pop_comment_count":217.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":45.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/panda3d/panda3d/master/README.md","_readme_localurl":"panda3d~panda3d~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":200,"category":"ml","githuburl":"https://github.com/huggingface/accelerate","featured":null,"links":null,"description":null,"_repopath":"huggingface/accelerate","_reponame":"accelerate","_stars":3705,"_forks":335,"_watches":69,"_language":"Python","_homepage":"https://huggingface.co/docs/accelerate","_description":"accelerate: \ud83d\ude80 A simple way to train and use PyTorch models with multi-GPU, TPU, mixed-precision","_organization":"huggingface","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-10-30T00:00:00.000Z","_age_weeks":120,"_stars_per_week":30.69,"_topics":[],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":92,"_pop_contributor_logins":["Chris-hughes10@microsoft","muellerzr@huggingface","pacman100@huggingface","patrickvonplaten","philschmid@huggingface","ryanrussell","sgugger","sywangyi@intel","thomwolf@huggingface","younesbelkada@ensparissaclay"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ensparissaclay","huggingface","intel","microsoft"],"_pop_contributor_orgs_raw":["@HuggingFace","@huggingface","@huggingface ","ENS Paris Saclay","Hugging Face","Intel","Microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.81,"_pop_updated_issues_count":269,"_pop_closed_issues_count":219,"_pop_created_since_days":28,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":269.0,"_pop_comment_count":718.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":0,"_pop_score":50.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/accelerate/master/README.md","_readme_localurl":"huggingface~accelerate~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/accelerate/master/setup.py","https://raw.githubusercontent.com/huggingface/accelerate/master/pyproject.toml"],"_requirements_localurls":["huggingface~accelerate~setup.py","huggingface~accelerate~pyproject.toml"]},{"index":209,"category":"web","githuburl":"https://github.com/pywebio/pywebio","featured":null,"links":null,"description":null,"_repopath":"pywebio/pywebio","_reponame":"PyWebIO","_stars":3694,"_forks":331,"_watches":52,"_language":"Python","_homepage":"https://pywebio.readthedocs.io","_description":"PyWebIO: Write interactive web app in script way.","_organization":"pywebio","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-02-29T00:00:00.000Z","_age_weeks":155,"_stars_per_week":23.74,"_topics":["pywebio"],"_last_commit_date":"2023-02-06T00:00:00.000Z","_pop_contributor_count":17,"_pop_contributor_logins":["Priler@howdy-ho","brumar@evidenceb","cclauss@christianclauss","dependabot[bot]","dmesquita","donno2048","mawoka-myblock","muxueqz","pikhosh","wang0618"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["christianclauss","evidenceb","howdy-ho"],"_pop_contributor_orgs_raw":["@Howdy-Ho ","Christian Clauss","EvidenceB"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.67,"_pop_updated_issues_count":33,"_pop_closed_issues_count":11,"_pop_created_since_days":36,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":33.0,"_pop_comment_count":40.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":36.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pywebio/pywebio/master/README.md","_readme_localurl":"pywebio~pywebio~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pywebio/pywebio/master/requirements.txt","https://raw.githubusercontent.com/pywebio/pywebio/master/setup.py"],"_requirements_localurls":["pywebio~pywebio~requirements.txt","pywebio~pywebio~setup.py"]},{"index":762,"category":"sim","githuburl":"https://github.com/quantumlib/cirq","featured":null,"links":null,"description":null,"_repopath":"quantumlib/cirq","_reponame":"Cirq","_stars":3659,"_forks":828,"_watches":177,"_language":"Python","_homepage":"","_description":"Cirq: A python framework for creating, editing, and invoking Noisy Intermediate Scale Quantum (NISQ) circuits.","_organization":"quantumlib","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-12-14T00:00:00.000Z","_age_weeks":270,"_stars_per_week":13.51,"_topics":["quantum-circuits","nisq","quantum-algorithms","quantum-computing","cirq"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":184,"_pop_contributor_logins":["95-martin-orion","MichaelBroughton","Strilanc@google","balopat@dukeuniversity","dabacon","daxfohl","dstrain115@google","maffoo@google","tanujkhattar@google","viathor"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["dukeuniversity","google"],"_pop_contributor_orgs_raw":["Duke University","Google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.0,"_pop_updated_issues_count":92,"_pop_closed_issues_count":49,"_pop_created_since_days":63,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":92.0,"_pop_comment_count":102.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":46.69,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/quantumlib/cirq/master/README.rst","_readme_localurl":"quantumlib~cirq~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/quantumlib/cirq/master/setup.py","https://raw.githubusercontent.com/quantumlib/cirq/master/pyproject.toml"],"_requirements_localurls":["quantumlib~cirq~setup.py","quantumlib~cirq~pyproject.toml"]},{"index":423,"category":"util","githuburl":"https://github.com/tebelorg/rpa-python","featured":null,"links":null,"description":null,"_repopath":"tebelorg/rpa-python","_reponame":"RPA-Python","_stars":3653,"_forks":537,"_watches":99,"_language":"Python","_homepage":"","_description":"RPA-Python: Python package for doing RPA","_organization":"tebelorg","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-03-30T00:00:00.000Z","_age_weeks":203,"_stars_per_week":17.94,"_topics":["rpa","python","opencv","tesseract","tagui","sikuli","cross-platform"],"_last_commit_date":"2022-09-07T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["fi-do@universityofappliedtrialanderror","kensoh","pradishb"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["universityofappliedtrialanderror"],"_pop_contributor_orgs_raw":["University of applied trial and error"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.1,"_pop_updated_issues_count":22,"_pop_closed_issues_count":18,"_pop_created_since_days":47,"_pop_updated_since_days":6,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":22.0,"_pop_comment_count":42.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":24.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tebelorg/rpa-python/master/README.md","_readme_localurl":"tebelorg~rpa-python~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tebelorg/rpa-python/master/setup.py"],"_requirements_localurls":["tebelorg~rpa-python~setup.py"]},{"index":757,"category":"util","githuburl":"https://github.com/pypa/hatch","featured":null,"links":null,"description":null,"_repopath":"pypa/hatch","_reponame":"hatch","_stars":3653,"_forks":179,"_watches":46,"_language":"Python","_homepage":"https://hatch.pypa.io/latest/","_description":"hatch: Modern, extensible Python project management","_organization":"pypa","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-05-31T00:00:00.000Z","_age_weeks":299,"_stars_per_week":12.22,"_topics":["python","cli","virtualenv","packaging","versioning","build","plugin"],"_last_commit_date":"2023-02-09T00:00:00.000Z","_pop_contributor_count":26,"_pop_contributor_logins":["RobertRosca@europeanxfel","blink1073@mongodb","cclauss@christianclauss","dependabot[bot]","ischaojie@douban","maresb@m\u00b2hycongmbh","matthewfeickert@universityofwisconsin-madison","musicinmybrain","ofek@datadog","olgarithms@bloomberg"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bloomberg","christianclauss","datadog","douban","europeanxfel","mongodb","m\u00b2hycongmbh","universityofwisconsin-madison"],"_pop_contributor_orgs_raw":["@datadog","Bloomberg","Christian Clauss","Douban","European XFEL","MongoDB","University of Wisconsin-Madison","m\u00b2hycon GmbH"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.12,"_pop_updated_issues_count":144,"_pop_closed_issues_count":83,"_pop_created_since_days":70,"_pop_updated_since_days":0,"_pop_recent_releases_count":56,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":56,"_pop_issue_count":144.0,"_pop_comment_count":338.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":51.73,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pypa/hatch/master/README.md","_readme_localurl":"pypa~hatch~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pypa/hatch/master/pyproject.toml"],"_requirements_localurls":["pypa~hatch~pyproject.toml"]},{"index":770,"category":"data","githuburl":"https://github.com/gristlabs/grist-core","featured":null,"links":null,"description":null,"_repopath":"gristlabs/grist-core","_reponame":"grist-core","_stars":3651,"_forks":169,"_watches":41,"_language":"TypeScript","_homepage":"https://support.getgrist.com/self-managed/","_description":"grist-core: Grist is the evolution of spreadsheets.","_organization":"gristlabs","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-05-22T00:00:00.000Z","_age_weeks":143,"_stars_per_week":25.4,"_topics":["awesome","database","spreadsheet"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":38,"_pop_contributor_logins":["CamilleLegeron","LouisDelbosc","alexmojaki","arnaudpeich@didask","berhalak","cpind","dsagal","georgegevoian@gristlabs","paulfitz@gristlabs","yohanboniface@enix"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["didask","enix","gristlabs"],"_pop_contributor_orgs_raw":["@Didask","@gristlabs ","Enix","Grist Labs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.08,"_pop_updated_issues_count":98,"_pop_closed_issues_count":45,"_pop_created_since_days":34,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":98.0,"_pop_comment_count":214.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":45.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gristlabs/grist-core/master/README.md","_readme_localurl":"gristlabs~grist-core~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":442,"category":"gis","githuburl":"https://github.com/osgeo/gdal","featured":null,"links":null,"description":null,"_repopath":"osgeo/gdal","_reponame":"gdal","_stars":3607,"_forks":2008,"_watches":163,"_language":"C++","_homepage":"https://gdal.org","_description":"GDAL is an open source MIT licensed translator library for raster and vector geospatial data formats.","_organization":"osgeo","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-10-09T00:00:00.000Z","_age_weeks":541,"_stars_per_week":6.67,"_topics":["raster","geospatial-data","vector","remote-sensing"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":511,"_pop_contributor_logins":["etiennesky@bsc","hobu@hobu","landam@czechtechnicaluniversityinprague","mloskot@cadcorp","nyalldawson@northroad","rouault@spatialys","schwehr@google","strezen","szekerest","warmerdam"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bsc","cadcorp","czechtechnicaluniversityinprague","google","hobu","northroad","spatialys"],"_pop_contributor_orgs_raw":["@Cadcorp","BSC","Czech Technical University in Prague","Google","Hobu, Inc.","North Road","Spatialys"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":46.85,"_pop_updated_issues_count":566,"_pop_closed_issues_count":526,"_pop_created_since_days":126,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":565.0,"_pop_comment_count":707.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":62.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/osgeo/gdal/master/README.md","_readme_localurl":"osgeo~gdal~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":616,"category":"testing","githuburl":"https://github.com/spulec/freezegun","featured":null,"links":null,"description":null,"_repopath":"spulec/freezegun","_reponame":"freezegun","_stars":3581,"_forks":245,"_watches":32,"_language":"Python","_homepage":null,"_description":"freezegun: Let your Python tests travel through time","_organization":"spulec","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-12-11T00:00:00.000Z","_age_weeks":532,"_stars_per_week":6.73,"_topics":[],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":109,"_pop_contributor_logins":["CrazyPython","boxed@dryft-technologies","hugovk@nordsoftware","jdufresne@pioneervalleybooks","kylegibson","micromoses","ojii@henngek.k.","pganssle@google","rinslow@dapulse","spulec@yipitdata"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["dapulse","dryft-technologies","google","henngek.k.","nordsoftware","pioneervalleybooks","yipitdata"],"_pop_contributor_orgs_raw":["@DaPulse ","@Dryft-Technologies ","@Google","HENNGE K.K.","Nord Software","Pioneer Valley Books","YipitData"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.56,"_pop_updated_issues_count":26,"_pop_closed_issues_count":11,"_pop_created_since_days":124,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":26.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":45.15,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/spulec/freezegun/master/README.rst","_readme_localurl":"spulec~freezegun~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/spulec/freezegun/master/requirements.txt","https://raw.githubusercontent.com/spulec/freezegun/master/setup.py","https://raw.githubusercontent.com/spulec/freezegun/master/pyproject.toml"],"_requirements_localurls":["spulec~freezegun~requirements.txt","spulec~freezegun~setup.py","spulec~freezegun~pyproject.toml"]},{"index":287,"category":"gis","githuburl":"https://github.com/geopandas/geopandas","featured":1.0,"links":null,"description":null,"_repopath":"geopandas/geopandas","_reponame":"geopandas","_stars":3554,"_forks":790,"_watches":106,"_language":"Python","_homepage":"http://geopandas.org/","_description":"geopandas: Python tools for geographic data","_organization":"geopandas","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2013-06-27T00:00:00.000Z","_age_weeks":503,"_stars_per_week":7.05,"_topics":[],"_last_commit_date":"2023-02-11T00:00:00.000Z","_pop_contributor_count":189,"_pop_contributor_logins":["IamJeffG@conservationmetrics","adriangb","jdmcbr","jorisvandenbossche","jtratner","jwass","kjordahl@planetlabs","m-richards","martinfleis","snowman2@corteva"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["conservationmetrics","corteva","planetlabs"],"_pop_contributor_orgs_raw":["@ConservationMetrics ","@corteva ","Planet Labs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.9,"_pop_updated_issues_count":219,"_pop_closed_issues_count":143,"_pop_created_since_days":118,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":219.0,"_pop_comment_count":344.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":49.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/geopandas/geopandas/master/README.md","_readme_localurl":"geopandas~geopandas~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/geopandas/geopandas/master/setup.py","https://raw.githubusercontent.com/geopandas/geopandas/master/pyproject.toml"],"_requirements_localurls":["geopandas~geopandas~setup.py","geopandas~geopandas~pyproject.toml"]},{"index":782,"category":"diffusion","githuburl":"https://github.com/jina-ai/discoart","featured":null,"links":null,"description":null,"_repopath":"jina-ai/discoart","_reponame":"discoart","_stars":3538,"_forks":217,"_watches":33,"_language":"Python","_homepage":"","_description":"discoart: \ud83e\udea9 Create Disco Diffusion artworks in one line","_organization":"jina-ai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-06-30T00:00:00.000Z","_age_weeks":33,"_stars_per_week":104.5,"_topics":["creative-ai","disco-diffusion","cross-modal","dalle","generative-art","multimodal","diffusion","prompts","midjourney","imgen","discodiffusion","creative-art","clip-guided-diffusion","latent-diffusion","stable-diffusion"],"_last_commit_date":"2022-08-17T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["Hugo-Dz","Nick17t@jinaai","hanxiao@jina-ai","jina-bot@jina-ai","nan-wang@jinaai","thegenerativegeneration"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["jina-ai","jinaai"],"_pop_contributor_orgs_raw":["@jina-ai","Jina AI"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.21,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":8,"_pop_updated_since_days":6,"_pop_recent_releases_count":110,"_pop_recent_releases_estimated_tags":181,"_pop_recent_releases_adjusted_count":110,"_pop_issue_count":3.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":24.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jina-ai/discoart/master/README.md","_readme_localurl":"jina-ai~discoart~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jina-ai/discoart/master/setup.py"],"_requirements_localurls":["jina-ai~discoart~setup.py"]},{"index":866,"category":"ml-ops","githuburl":"https://github.com/mage-ai/mage-ai","featured":1.0,"links":null,"description":null,"_repopath":"mage-ai/mage-ai","_reponame":"mage-ai","_stars":3487,"_forks":270,"_watches":45,"_language":"Python","_homepage":"https://www.mage.ai/","_description":"mage-ai: \ud83e\uddd9 The modern replacement for Airflow. Build, run, and manage data pipelines for integrating and transforming data.","_organization":"mage-ai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-05-16T00:00:00.000Z","_age_weeks":40,"_stars_per_week":86.56,"_topics":["machine-learning","artificial-intelligence","data","data-engineering","data-science","python","elt","etl","pipelines","data-pipelines","orchestration","data-integration","sql","spark","dbt","pipeline","reverse-etl","transformation"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":22,"_pop_contributor_logins":["ci-mage","csharplus@airbnb","dy46","jlondonobo@humanlivingdata","johnson-mage","nathaniel-mage","shrey-mage","skunichetty","tommydangerous@mage","wangxiaoyou1993"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["airbnb","humanlivingdata","mage"],"_pop_contributor_orgs_raw":["Airbnb","Human Living Data","Mage"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":47.5,"_pop_updated_issues_count":585,"_pop_closed_issues_count":546,"_pop_created_since_days":9,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":585.0,"_pop_comment_count":160.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":40.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mage-ai/mage-ai/master/README.md","_readme_localurl":"mage-ai~mage-ai~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mage-ai/mage-ai/master/requirements.txt","https://raw.githubusercontent.com/mage-ai/mage-ai/master/setup.py","https://raw.githubusercontent.com/mage-ai/mage-ai/master/pyproject.toml"],"_requirements_localurls":["mage-ai~mage-ai~requirements.txt","mage-ai~mage-ai~setup.py","mage-ai~mage-ai~pyproject.toml"]},{"index":368,"category":"nlp","githuburl":"https://github.com/layout-parser/layout-parser","featured":null,"links":null,"description":null,"_repopath":"layout-parser/layout-parser","_reponame":"layout-parser","_stars":3471,"_forks":345,"_watches":59,"_language":"Python","_homepage":"https://layout-parser.github.io/","_description":"layout-parser: A Unified Toolkit for Deep Learning Based Document Image Analysis","_organization":"layout-parser","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-06-10T00:00:00.000Z","_age_weeks":141,"_stars_per_week":24.62,"_topics":["layout-analysis","deep-learning","object-detection","ocr","layout-parser","detectron2","document-layout-analysis","computer-vision","document-image-processing","layout-detection"],"_last_commit_date":"2022-08-06T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["Jim-Salmons@factminers","RosenZhang","an1018","dumbPy","edisongustavo@amazon","k-for-code","lolipopshock@clinicalmlallenai","yusanshi@ustc"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazon","clinicalmlallenai","factminers","ustc"],"_pop_contributor_orgs_raw":["@clinicalml @allenai ","Amazon","FactMiners","USTC"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.21,"_pop_updated_issues_count":15,"_pop_closed_issues_count":2,"_pop_created_since_days":33,"_pop_updated_since_days":7,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":15.0,"_pop_comment_count":16.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":25.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/layout-parser/layout-parser/master/README.md","_readme_localurl":"layout-parser~layout-parser~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/layout-parser/layout-parser/master/setup.py"],"_requirements_localurls":["layout-parser~layout-parser~setup.py"]},{"index":140,"category":"nlp","githuburl":"https://github.com/neuml/txtai","featured":null,"links":null,"description":null,"_repopath":"neuml/txtai","_reponame":"txtai","_stars":3455,"_forks":293,"_watches":61,"_language":"Python","_homepage":"https://neuml.github.io/txtai","_description":"txtai: \ud83d\udca1 Build AI-powered semantic search applications ","_organization":"neuml","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-08-09T00:00:00.000Z","_age_weeks":132,"_stars_per_week":26.09,"_topics":["python","search","machine-learning","nlp","deep-learning","document-search","audio-search","image-search","video-search","semantic-search","similarity-search","neural-search","contextual-search","vector-search","machine-learning-workflows","machine-learning-pipelines","microservice","api","cloud-native","txtai"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":10,"_pop_contributor_logins":["0206pdh","0xflotus","adin786@bigtincan","csheargm","csnelsonchu@superinsight.ai","davidmezzetti@neuml","hi019","hsm207@rasahq","lipusz@liferay"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bigtincan","liferay","neuml","rasahq","superinsight.ai"],"_pop_contributor_orgs_raw":["@RasaHQ ","@neuml ","Bigtincan","Liferay Inc.","Superinsight.ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.19,"_pop_updated_issues_count":60,"_pop_closed_issues_count":49,"_pop_created_since_days":31,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":60.0,"_pop_comment_count":112.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":41.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/neuml/txtai/master/README.md","_readme_localurl":"neuml~txtai~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/neuml/txtai/master/setup.py","https://raw.githubusercontent.com/neuml/txtai/master/pyproject.toml"],"_requirements_localurls":["neuml~txtai~setup.py","neuml~txtai~pyproject.toml"]},{"index":462,"category":"util","githuburl":"https://github.com/rspeer/python-ftfy","featured":null,"links":null,"description":null,"_repopath":"rspeer/python-ftfy","_reponame":"python-ftfy","_stars":3441,"_forks":116,"_watches":75,"_language":"Python","_homepage":"http://ftfy.readthedocs.org","_description":"python-ftfy: Fixes mojibake and other glitches in Unicode text, after the fact.","_organization":"rspeer","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-08-24T00:00:00.000Z","_age_weeks":547,"_stars_per_week":6.28,"_topics":[],"_last_commit_date":"2022-10-25T00:00:00.000Z","_pop_contributor_count":18,"_pop_contributor_logins":["airhorns","alin-luminoso","jacopofar@flix-tech","jaredly@khanacademy","jwilk","lumitim@luminoso","moss@luminoso","rmax@paige.ai","rspeer@elementalcognition","slibs63"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["elementalcognition","flix-tech","khanacademy","luminoso","paige.ai"],"_pop_contributor_orgs_raw":["@flix-tech ","Elemental Cognition","Khan Academy","Luminoso","Paige.AI"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":128,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":4.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":32.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rspeer/python-ftfy/master/README.md","_readme_localurl":"rspeer~python-ftfy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/rspeer/python-ftfy/master/setup.py","https://raw.githubusercontent.com/rspeer/python-ftfy/master/pyproject.toml"],"_requirements_localurls":["rspeer~python-ftfy~setup.py","rspeer~python-ftfy~pyproject.toml"]},{"index":833,"category":"util","githuburl":"https://github.com/adafruit/circuitpython","featured":null,"links":null,"description":null,"_repopath":"adafruit/circuitpython","_reponame":"circuitpython","_stars":3405,"_forks":914,"_watches":128,"_language":"C","_homepage":"https://circuitpython.org","_description":"CircuitPython - a Python implementation for teaching coding with microcontrollers","_organization":"adafruit","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-08-20T00:00:00.000Z","_age_weeks":339,"_stars_per_week":10.03,"_topics":["circuitpython","micropython","python","embedded","microcontroller","education","beginner","cpython","python3","hacktoberfest"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":891,"_pop_contributor_logins":["MicroDev1@microdevsystems","danicampora@embeddedconsultingbv","dhalbert","dpgeorge","glennrub","hierophect@adafruit","jepler@unpythonicnetworks","pfalcon","tannewt@chickadee-tech","weblate@weblateorg"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["adafruit","chickadee-tech","embeddedconsultingbv","microdevsystems","unpythonicnetworks","weblateorg"],"_pop_contributor_orgs_raw":["@WeblateOrg ","@chickadee-tech ","Adafruit","Embedded Consulting BV","MicroDev Systems","Unpythonic Networks "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":34.56,"_pop_updated_issues_count":529,"_pop_closed_issues_count":347,"_pop_created_since_days":79,"_pop_updated_since_days":0,"_pop_recent_releases_count":29,"_pop_recent_releases_estimated_tags":38,"_pop_recent_releases_adjusted_count":29,"_pop_issue_count":530.0,"_pop_comment_count":1225.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":64.47,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/adafruit/circuitpython/master/README.rst","_readme_localurl":"adafruit~circuitpython~README.rst","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":321,"category":"gui","githuburl":"https://github.com/r0x0r/pywebview","featured":null,"links":null,"description":null,"_repopath":"r0x0r/pywebview","_reponame":"pywebview","_stars":3373,"_forks":441,"_watches":58,"_language":"Python","_homepage":"https://pywebview.flowrl.com","_description":"pywebview: Build GUI for your Python program with JavaScript, HTML, and CSS","_organization":"r0x0r","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-11-20T00:00:00.000Z","_age_weeks":430,"_stars_per_week":7.83,"_topics":["python","webkit","gtk","linux","windows","gui","osx","cocoa","html","javascript","qt","cef"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":102,"_pop_contributor_logins":["AlexCovizzi","AstraLuma","Fizzadar@beeper","ODtian","dependabot[bot]","javad94","r0x0r","sardination","sbbosco","shivaprsd"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["beeper"],"_pop_contributor_orgs_raw":["@Beeper "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.6,"_pop_updated_issues_count":87,"_pop_closed_issues_count":68,"_pop_created_since_days":100,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":87.0,"_pop_comment_count":213.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":44.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/r0x0r/pywebview/master/README.md","_readme_localurl":"r0x0r~pywebview~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/r0x0r/pywebview/master/requirements.txt","https://raw.githubusercontent.com/r0x0r/pywebview/master/setup.py"],"_requirements_localurls":["r0x0r~pywebview~requirements.txt","r0x0r~pywebview~setup.py"]},{"index":895,"category":"time-series","githuburl":"https://github.com/awslabs/gluonts","featured":null,"links":null,"description":null,"_repopath":"awslabs/gluonts","_reponame":"gluonts","_stars":3358,"_forks":675,"_watches":71,"_language":"Python","_homepage":"https://ts.gluon.ai","_description":"gluonts: Probabilistic time series modeling in Python","_organization":"awslabs","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2019-05-15T00:00:00.000Z","_age_weeks":197,"_stars_per_week":17.05,"_topics":["time-series","deep-learning","forecasting","neural-networks","machine-learning","time-series-prediction","time-series-forecasting","mxnet","pytorch","aws","sagemaker","timeseries","artificial-intelligence","data-science"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":101,"_pop_contributor_logins":["AaronSpieler","arangatang","benidis@amazonai","dcmaddix@amazonwebservices","jaheba@awslabs","jgasthaus@meta","kashif","lostella@awsawsawslabs","rshyamsundar@amazon","vafl@amazon"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazon","amazonai","amazonwebservices","awsawsawslabs","awslabs","meta"],"_pop_contributor_orgs_raw":["@awslabs","AWS @aws @awslabs","Amazon","Amazon AI","Amazon Web Services","Meta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.06,"_pop_updated_issues_count":247,"_pop_closed_issues_count":189,"_pop_created_since_days":46,"_pop_updated_since_days":0,"_pop_recent_releases_count":40,"_pop_recent_releases_estimated_tags":22,"_pop_recent_releases_adjusted_count":40,"_pop_issue_count":247.0,"_pop_comment_count":271.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":51.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/awslabs/gluonts/master/README.md","_readme_localurl":"awslabs~gluonts~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/awslabs/gluonts/master/setup.py","https://raw.githubusercontent.com/awslabs/gluonts/master/pyproject.toml"],"_requirements_localurls":["awslabs~gluonts~setup.py","awslabs~gluonts~pyproject.toml"]},{"index":897,"category":"viz","githuburl":"https://github.com/has2k1/plotnine","featured":null,"links":null,"description":null,"_repopath":"has2k1/plotnine","_reponame":"plotnine","_stars":3355,"_forks":193,"_watches":68,"_language":"Python","_homepage":"https://plotnine.readthedocs.io/en/stable/","_description":"plotnine: A grammar of graphics for Python","_organization":"has2k1","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2017-04-24T00:00:00.000Z","_age_weeks":304,"_stars_per_week":11.03,"_topics":["plotting","grammar","graphics","python","data-analysis"],"_last_commit_date":"2023-02-01T00:00:00.000Z","_pop_contributor_count":99,"_pop_contributor_logins":["TyberiusPrime","arnfred","dan-blanchard@coiled","funnell@mskcc","gdowding","glamp","has2k1","hernamesbarbara","jankatins@kreuzwerker","matthias-k"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["coiled","kreuzwerker","mskcc"],"_pop_contributor_orgs_raw":["@coiled ","@kreuzwerker","MSKCC"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.98,"_pop_updated_issues_count":26,"_pop_closed_issues_count":8,"_pop_created_since_days":71,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":26.0,"_pop_comment_count":34.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":40.47,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/has2k1/plotnine/master/README.md","_readme_localurl":"has2k1~plotnine~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/has2k1/plotnine/master/setup.py","https://raw.githubusercontent.com/has2k1/plotnine/master/pyproject.toml"],"_requirements_localurls":["has2k1~plotnine~setup.py","has2k1~plotnine~pyproject.toml"]},{"index":421,"category":"ml","githuburl":"https://github.com/facebookresearch/reagent","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/reagent","_reponame":"ReAgent","_stars":3347,"_forks":506,"_watches":150,"_language":"Python","_homepage":"https://reagent.ai","_description":"ReAgent: A platform for Reasoning systems (Reinforcement Learning, Contextual Bandits, etc.)","_organization":"facebookresearch","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-07-27T00:00:00.000Z","_age_weeks":290,"_stars_per_week":11.51,"_topics":[],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":151,"_pop_contributor_logins":["YitaoLiang","alexnikulkov","badrinarayan@facebook","czxttkl","econti@banditml","gji1@facebookai","igfox","kaiwenw@cornell","kittipatv","sfujim@mcgilluniversity"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["banditml","cornell","facebook","facebookai","mcgilluniversity"],"_pop_contributor_orgs_raw":["@banditml ","Cornell","Facebook","Facebook AI","McGill University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.0,"_pop_updated_issues_count":17,"_pop_closed_issues_count":12,"_pop_created_since_days":68,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":17.0,"_pop_comment_count":38.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":43.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/reagent/master/README.md","_readme_localurl":"facebookresearch~reagent~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/reagent/master/setup.py","https://raw.githubusercontent.com/facebookresearch/reagent/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~reagent~setup.py","facebookresearch~reagent~pyproject.toml"]},{"index":4,"category":"pandas","githuburl":"https://github.com/aws/aws-sdk-pandas","featured":1.0,"links":null,"description":null,"_repopath":"aws/aws-sdk-pandas","_reponame":"aws-sdk-pandas","_stars":3334,"_forks":579,"_watches":60,"_language":"Python","_homepage":"https://aws-sdk-pandas.readthedocs.io","_description":"aws-sdk-pandas: pandas on AWS - Easy integration with Athena, Glue, Redshift, Timestream, Neptune, OpenSearch, QuickSight, Chime, CloudWatchLogs, DynamoDB, EMR, SecretManager, PostgreSQL, MySQL, SQLServer and S3 (Parquet, CSV, JSON and EXCEL).","_organization":"aws","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-02-26T00:00:00.000Z","_age_weeks":208,"_stars_per_week":16.02,"_topics":["python","aws","pandas","apache-arrow","apache-parquet","data-engineering","etl","data-science","redshift","athena","lambda","aws-lambda","aws-glue","emr","amazon-athena","glue-catalog","mysql","amazon-sagemaker-notebook"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":124,"_pop_contributor_logins":["LeonLuttenberger@amazonwebservices","bryanyang0528@taiwansparkusergroup","cnfait@aws","dependabot[bot]","igorborgest@vtex","jaidisido@aws","kukushking","luigift","malachi-constant@amazonwebservices","maxispeicher@twaice"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazonwebservices","aws","taiwansparkusergroup","twaice","vtex"],"_pop_contributor_orgs_raw":["@TWAICE ","@TaiwanSparkUserGroup ","@aws","@vtex","AWS","Amazon Web Services"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.38,"_pop_updated_issues_count":366,"_pop_closed_issues_count":330,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":366.0,"_pop_comment_count":1265.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.5,"_pop_dependents_count":0,"_pop_score":54.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aws/aws-sdk-pandas/master/README.md","_readme_localurl":"aws~aws-sdk-pandas~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/aws/aws-sdk-pandas/master/pyproject.toml"],"_requirements_localurls":["aws~aws-sdk-pandas~pyproject.toml"]},{"index":99,"category":"ml","githuburl":"https://github.com/skvark/opencv-python","featured":null,"links":null,"description":null,"_repopath":"skvark/opencv-python","_reponame":"opencv-python","_stars":3282,"_forks":638,"_watches":83,"_language":"Shell","_homepage":"https://pypi.org/project/opencv-python/","_description":"opencv-python: Automated CI toolchain to produce precompiled opencv-python, opencv-python-headless, opencv-contrib-python and opencv-contrib-python-headless packages.","_organization":"skvark","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-04-08T00:00:00.000Z","_age_weeks":358,"_stars_per_week":9.15,"_topics":["opencv","python","wheel","python-3","opencv-python","opencv-contrib-python","precompiled","pypi","manylinux"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":43,"_pop_contributor_logins":["abhiTronix@autodidact\u2022researcher\u2022open-sourcerer","asenyaev","asmorkalov@xperience.ai","c-martinez@nlesc","cclauss@christianclauss","johnthagen","native-api","sergregory","skvark@softlandia-ltd","vallentin"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["autodidact\u2022researcher\u2022open-sourcerer","christianclauss","nlesc","softlandia-ltd","xperience.ai"],"_pop_contributor_orgs_raw":["@NLeSC ","@Softlandia-Ltd","Autodidact \u2022 Researcher \u2022 Open-sourcerer","Christian Clauss","Xperience.AI"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.98,"_pop_updated_issues_count":71,"_pop_closed_issues_count":46,"_pop_created_since_days":84,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":71.0,"_pop_comment_count":177.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":0,"_pop_score":45.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/skvark/opencv-python/master/README.md","_readme_localurl":"skvark~opencv-python~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/skvark/opencv-python/master/setup.py","https://raw.githubusercontent.com/skvark/opencv-python/master/pyproject.toml"],"_requirements_localurls":["skvark~opencv-python~setup.py","skvark~opencv-python~pyproject.toml"]},{"index":663,"category":"util","githuburl":"https://github.com/zeromq/pyzmq","featured":null,"links":null,"description":null,"_repopath":"zeromq/pyzmq","_reponame":"pyzmq","_stars":3271,"_forks":615,"_watches":102,"_language":"Python","_homepage":"http://zguide.zeromq.org/py:all","_description":"PyZMQ: Python bindings for zeromq","_organization":"zeromq","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2010-07-21T00:00:00.000Z","_age_weeks":657,"_stars_per_week":4.98,"_topics":["cython","python","zeromq"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":188,"_pop_contributor_logins":["asteven","bluca@microsoft","claws","ellisonbg@amazonwebservices","fperez@universityofcalifornia,berkeley.","guidog","iblislin@chinamedicaluniversityhospital","minrk@simularesearchlaboratory","pre-commit-ci[bot]","sakurai-youhei"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazonwebservices","chinamedicaluniversityhospital","microsoft","simularesearchlaboratory","universityofcalifornia,berkeley."],"_pop_contributor_orgs_raw":["@microsoft","Amazon Web Services","China Medical University Hospital","Simula Research Laboratory","University of California, Berkeley."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.6,"_pop_updated_issues_count":36,"_pop_closed_issues_count":27,"_pop_created_since_days":153,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":36.0,"_pop_comment_count":49.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":49.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zeromq/pyzmq/master/README.md","_readme_localurl":"zeromq~pyzmq~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/zeromq/pyzmq/master/setup.py","https://raw.githubusercontent.com/zeromq/pyzmq/master/pyproject.toml"],"_requirements_localurls":["zeromq~pyzmq~setup.py","zeromq~pyzmq~pyproject.toml"]},{"index":361,"category":"ml-ops","githuburl":"https://github.com/polyaxon/polyaxon","featured":null,"links":null,"description":null,"_repopath":"polyaxon/polyaxon","_reponame":"polyaxon","_stars":3255,"_forks":320,"_watches":78,"_language":null,"_homepage":"https://polyaxon.com","_description":"polyaxon: MLOps Tools For Managing & Orchestrating The Machine Learning LifeCycle","_organization":"polyaxon","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2016-12-26T00:00:00.000Z","_age_weeks":321,"_stars_per_week":10.13,"_topics":["deep-learning","machine-learning","artificial-intelligence","data-science","reinforcement-learning","kubernetes","tensorflow","pytorch","keras","mxnet","caffe","ml","k8s","jupyter","notebook","jupyterlab","pipelines","workflow","mlops","hyperparameter-optimization"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":98,"_pop_contributor_logins":["DXist","dependabot[bot]","gzcf","javidgon","lgeiger@plumerailarq","mmourafiq","polyaxon-ci","polyaxon-team","vfdev-5@quansight","wbuchwalter@microsoftresearch"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["microsoftresearch","plumerailarq","quansight"],"_pop_contributor_orgs_raw":["@Quansight","@plumerai @larq ","Microsoft Research"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.9,"_pop_updated_issues_count":11,"_pop_closed_issues_count":1,"_pop_created_since_days":75,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":24,"_pop_issue_count":11.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":42.2,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/polyaxon/polyaxon/master/README.md","_readme_localurl":"polyaxon~polyaxon~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":93,"category":"web","githuburl":"https://github.com/unbit/uwsgi","featured":null,"links":null,"description":null,"_repopath":"unbit/uwsgi","_reponame":"uwsgi","_stars":3254,"_forks":671,"_watches":114,"_language":"C","_homepage":"http://projects.unbit.it/uwsgi","_description":"uWSGI application server container","_organization":"unbit","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2011-10-09T00:00:00.000Z","_age_weeks":593,"_stars_per_week":5.48,"_topics":[],"_last_commit_date":"2023-01-10T00:00:00.000Z","_pop_contributor_count":352,"_pop_contributor_logins":["Darvame","Shir0kamii@numberly","aldur","awelzel","funkybob@codealchemy","prymitive","rdeioris@blitter","robygior@20tabsrl","unbit@unbit","xrmx@menodizero.it"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["20tabsrl","blitter","codealchemy","menodizero.it","numberly","unbit"],"_pop_contributor_orgs_raw":["20tab Srl","Blitter","Code Alchemy","Unbit","menodizero.it","numberly"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.46,"_pop_updated_issues_count":30,"_pop_closed_issues_count":10,"_pop_created_since_days":138,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":30.0,"_pop_comment_count":37.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":48.27,"_readme_filename":"","_readme_giturl":"","_readme_localurl":"","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/unbit/uwsgi/master/setup.py"],"_requirements_localurls":["unbit~uwsgi~setup.py"]},{"index":804,"category":"util","githuburl":"https://github.com/miguelgrinberg/python-socketio","featured":null,"links":null,"description":null,"_repopath":"miguelgrinberg/python-socketio","_reponame":"python-socketio","_stars":3237,"_forks":522,"_watches":62,"_language":"Python","_homepage":"","_description":"python-socketio: Python Socket.IO server and client","_organization":"miguelgrinberg","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-07-15T00:00:00.000Z","_age_weeks":397,"_stars_per_week":8.15,"_topics":["socket-io","socketio","socketio-server","websocket","long-polling","low-latency","web-server","python","asyncio","eventlet","gevent"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":61,"_pop_contributor_logins":["Molkree","VincentM@untienots","aaqibb13@graphicweave","andreyrusanov","dependabot[bot]","etseidler","greyli","kurlov@redhat","miguelgrinberg","tsangwpx"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["graphicweave","redhat","untienots"],"_pop_contributor_orgs_raw":["@Untienots","@graphicweave","Red Hat"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.15,"_pop_updated_issues_count":26,"_pop_closed_issues_count":21,"_pop_created_since_days":93,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":26.0,"_pop_comment_count":35.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":43.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/miguelgrinberg/python-socketio/master/README.md","_readme_localurl":"miguelgrinberg~python-socketio~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/miguelgrinberg/python-socketio/master/setup.py","https://raw.githubusercontent.com/miguelgrinberg/python-socketio/master/pyproject.toml"],"_requirements_localurls":["miguelgrinberg~python-socketio~setup.py","miguelgrinberg~python-socketio~pyproject.toml"]},{"index":208,"category":"crypto","githuburl":"https://github.com/cyberpunkmetalhead/binance-volatility-trading-bot","featured":null,"links":null,"description":null,"_repopath":"cyberpunkmetalhead/binance-volatility-trading-bot","_reponame":"Binance-volatility-trading-bot","_stars":3237,"_forks":761,"_watches":146,"_language":"Python","_homepage":null,"_description":"Binance-volatility-trading-bot: This is a fully functioning Binance trading bot that measures the volatility of every coin on Binance and places trades with the highest gaining coins If you like this project consider donating though the Brave browser to allow me to continuously improve the script.","_organization":"cyberpunkmetalhead","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2021-05-08T00:00:00.000Z","_age_weeks":93,"_stars_per_week":34.59,"_topics":[],"_last_commit_date":"2021-06-10T00:00:00.000Z","_pop_contributor_count":19,"_pop_contributor_logins":["CyberPunkMetalHead","Davidobot@mazette!","FreshLondon@freshlondon","ShogunMan","Tarantinooo","amitman3","bcsingh50","datapush3r@splunk","getsec","singer-yang@kaust"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["freshlondon","kaust","mazette!","splunk"],"_pop_contributor_orgs_raw":["@splunk","FreshLondon","KAUST","mazette!"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":22,"_pop_updated_since_days":21,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":17.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cyberpunkmetalhead/binance-volatility-trading-bot/master/README.md","_readme_localurl":"cyberpunkmetalhead~binance-volatility-trading-bot~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/cyberpunkmetalhead/binance-volatility-trading-bot/master/requirements.txt"],"_requirements_localurls":["cyberpunkmetalhead~binance-volatility-trading-bot~requirements.txt"]},{"index":557,"category":"jupyter","githuburl":"https://github.com/executablebooks/jupyter-book","featured":null,"links":null,"description":null,"_repopath":"executablebooks/jupyter-book","_reponame":"jupyter-book","_stars":3236,"_forks":607,"_watches":60,"_language":"Python","_homepage":"http://jupyterbook.org","_description":"jupyter-book: Create beautiful, publication-quality books and documents from computational content.","_organization":"executablebooks","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-06-14T00:00:00.000Z","_age_weeks":244,"_stars_per_week":13.22,"_topics":["jupyter","sphinx-doc","documentation-generator"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":120,"_pop_contributor_logins":["AakashGfude","SamLau95@data-8ds-100","choldgraf@ucberkeley","chrisjsewell@imperialcollegelondon","dependabot[bot]","emdupre@stanforduniversity","joergbrech","martinagvilas@ernststr\u00fcngmannandmax-planck-institute","mmcky","najuzilu@georgetownuniversity"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["data-8ds-100","ernststr\u00fcngmannandmax-planck-institute","georgetownuniversity","imperialcollegelondon","stanforduniversity","ucberkeley"],"_pop_contributor_orgs_raw":["@data-8 @DS-100","Ernst Str\u00fcngmann and Max-Planck-Institute","Georgetown University","Imperial College London","Stanford University","UC Berkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.38,"_pop_updated_issues_count":86,"_pop_closed_issues_count":34,"_pop_created_since_days":57,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":86.0,"_pop_comment_count":157.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":47.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/executablebooks/jupyter-book/master/README.md","_readme_localurl":"executablebooks~jupyter-book~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/executablebooks/jupyter-book/master/pyproject.toml"],"_requirements_localurls":["executablebooks~jupyter-book~pyproject.toml"]},{"index":319,"category":"gui","githuburl":"https://github.com/dddomodossola/remi","featured":null,"links":null,"description":null,"_repopath":"dddomodossola/remi","_reponame":"remi","_stars":3229,"_forks":395,"_watches":120,"_language":"Python","_homepage":"","_description":"remi: Python REMote Interface library. Platform independent. In about 100 Kbytes, perfect for your diet.","_organization":"dddomodossola","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-03-20T00:00:00.000Z","_age_weeks":465,"_stars_per_week":6.93,"_topics":["python","gui-library","remi","platform-independent","ui","gui"],"_last_commit_date":"2023-02-01T00:00:00.000Z","_pop_contributor_count":56,"_pop_contributor_logins":["Bethany-1","Eothred@europeanspallationsourceeric","Ksengine@moonharelabs","PURPORC","awesomebytes","cyberpro4","dddomodossola@imtssrl","mcondarelli","nzjrs","smurfix@norisnetworkag"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["europeanspallationsourceeric","imtssrl","moonharelabs","norisnetworkag"],"_pop_contributor_orgs_raw":["@ImtsSrl ","@moonharelabs","European Spallation Source ERIC","noris network AG"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":6,"_pop_closed_issues_count":1,"_pop_created_since_days":109,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":6.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":38.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dddomodossola/remi/master/README.md","_readme_localurl":"dddomodossola~remi~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dddomodossola/remi/master/setup.py"],"_requirements_localurls":["dddomodossola~remi~setup.py"]},{"index":518,"category":"util","githuburl":"https://github.com/spack/spack","featured":null,"links":null,"description":null,"_repopath":"spack/spack","_reponame":"spack","_stars":3207,"_forks":1833,"_watches":104,"_language":"Python","_homepage":"https://spack.io","_description":"spack: A flexible package manager that supports multiple versions, configurations, platforms, and compilers.","_organization":"spack","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2014-01-08T00:00:00.000Z","_age_weeks":476,"_stars_per_week":6.74,"_topics":["python","spack","package-manager","hpc","build-tools","radiuss","scientific-computing","macos","linux"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":1354,"_pop_contributor_logins":["adamjstewart@universityofillinoisaturbana-champaign","alalazo@np-complete","becker33@llnl","darmac@(huawei)hisilicontechnologiesco.,limited.","davydden","glennpj","haampie","iarspider","michaelkuhn","tgamblin@llnl"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["(huawei)hisilicontechnologiesco.,limited.","llnl","np-complete","universityofillinoisaturbana-champaign"],"_pop_contributor_orgs_raw":["(Huawei) HiSilicon Technologies CO.,LIMITED.","@LLNL","@LLNL ","University of Illinois at Urbana-Champaign","np-complete"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":85.79,"_pop_updated_issues_count":2026,"_pop_closed_issues_count":1443,"_pop_created_since_days":111,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":2026.0,"_pop_comment_count":4724.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":65.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/spack/spack/master/README.md","_readme_localurl":"spack~spack~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/spack/spack/master/pyproject.toml"],"_requirements_localurls":["spack~spack~pyproject.toml"]},{"index":966,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/pytorch-biggraph","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/pytorch-biggraph","_reponame":"PyTorch-BigGraph","_stars":3188,"_forks":437,"_watches":93,"_language":"Python","_homepage":"https://torchbiggraph.readthedocs.io/","_description":"PyTorch-BigGraph: Generate embeddings from large-scale graph-structured data.","_organization":"facebookresearch","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-10-01T00:00:00.000Z","_age_weeks":229,"_stars_per_week":13.9,"_topics":[],"_last_commit_date":"2022-12-08T00:00:00.000Z","_pop_contributor_count":29,"_pop_contributor_logins":["StanislavGlebik","adamlerer","amyreese@omnilib","chandlerzuo@https://github.com/facebook","dmitryvinn@engineeringmanagerai/mlmeta","ezyang","indonoso","lw@facebook","rkindi@meta","simonepri@universityofcambridge,sapienzauniversityofrome"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["engineeringmanagerai/mlmeta","facebook","https://github.com/facebook","meta","omnilib","universityofcambridge,sapienzauniversityofrome"],"_pop_contributor_orgs_raw":["@facebook","@https://github.com/facebook","@omnilib ","Engineering Manager AI/ML@Meta","Meta","University of Cambridge, Sapienza University of Rome"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":4,"_pop_closed_issues_count":0,"_pop_created_since_days":53,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":4.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":30.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/pytorch-biggraph/master/README.md","_readme_localurl":"facebookresearch~pytorch-biggraph~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/pytorch-biggraph/master/setup.py"],"_requirements_localurls":["facebookresearch~pytorch-biggraph~setup.py"]},{"index":182,"category":"testing","githuburl":"https://github.com/tox-dev/tox","featured":null,"links":null,"description":null,"_repopath":"tox-dev/tox","_reponame":"tox","_stars":3186,"_forks":462,"_watches":41,"_language":"Python","_homepage":"https://tox.wiki","_description":"tox: Command line driven CI frontend and development task automation tool.","_organization":"tox-dev","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-09-17T00:00:00.000Z","_age_weeks":335,"_stars_per_week":9.49,"_topics":["testing","python","virtualenv","continuous-integration","cli","automation","venv","travis","appveyor","gitlab","circleci","azure-pipelines","hacktoberfest","actions","pep-621"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":40,"_pop_contributor_logins":["eumiro","gaborbernat@bloomberglp","gnikonorov","hexagonrecursion","jugmac00@canonical","kurtmckee","masenf@delltechnologies","q0w","ssbarnea@redhatansible","stephenfin@redhat"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bloomberglp","canonical","delltechnologies","redhat","redhatansible"],"_pop_contributor_orgs_raw":["@canonical","Bloomberg LP","Dell Technologies","Red Hat","Red Hat @ansible"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.48,"_pop_updated_issues_count":421,"_pop_closed_issues_count":376,"_pop_created_since_days":78,"_pop_updated_since_days":0,"_pop_recent_releases_count":54,"_pop_recent_releases_estimated_tags":29,"_pop_recent_releases_adjusted_count":54,"_pop_issue_count":421.0,"_pop_comment_count":971.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":51.89,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tox-dev/tox/master/README.md","_readme_localurl":"tox-dev~tox~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tox-dev/tox/master/setup.py","https://raw.githubusercontent.com/tox-dev/tox/master/pyproject.toml"],"_requirements_localurls":["tox-dev~tox~setup.py","tox-dev~tox~pyproject.toml"]},{"index":443,"category":"gis","githuburl":"https://github.com/shapely/shapely","featured":1.0,"links":null,"description":null,"_repopath":"shapely/shapely","_reponame":"shapely","_stars":3175,"_forks":513,"_watches":85,"_language":"Python","_homepage":"https://shapely.readthedocs.io/en/stable/","_description":"shapely: Manipulation and analysis of geometric objects","_organization":"shapely","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2011-12-31T00:00:00.000Z","_age_weeks":581,"_stars_per_week":5.46,"_topics":[],"_last_commit_date":"2023-02-13T00:00:00.000Z","_pop_contributor_count":144,"_pop_contributor_logins":["aronbierbaum","brendan-ward@astutespruce","caspervdw@nelen&schuurmans","jorisvandenbossche","jwass","mwtoews@gnsscience","olt@omniscale","sgillies@planetlabs","snorfalorpagus","tomplex@faradayio"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["astutespruce","faradayio","gnsscience","nelen&schuurmans","omniscale","planetlabs"],"_pop_contributor_orgs_raw":["@faradayio","@planetlabs","Astute Spruce, LLC","GNS Science","Nelen & Schuurmans","Omniscale"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.44,"_pop_updated_issues_count":193,"_pop_closed_issues_count":122,"_pop_created_since_days":136,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":193.0,"_pop_comment_count":635.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.3,"_pop_dependents_count":0,"_pop_score":55.46,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/shapely/shapely/master/README.rst","_readme_localurl":"shapely~shapely~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/shapely/shapely/master/setup.py","https://raw.githubusercontent.com/shapely/shapely/master/pyproject.toml"],"_requirements_localurls":["shapely~shapely~setup.py","shapely~shapely~pyproject.toml"]},{"index":348,"category":"ml-ops","githuburl":"https://github.com/evidentlyai/evidently","featured":null,"links":null,"description":null,"_repopath":"evidentlyai/evidently","_reponame":"evidently","_stars":3172,"_forks":341,"_watches":35,"_language":"Python","_homepage":"","_description":"evidently: Evaluate and monitor ML models from validation to production. Join our Discord: https://discord.com/invite/xZjKRaNp8b","_organization":"evidentlyai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-11-25T00:00:00.000Z","_age_weeks":117,"_stars_per_week":27.11,"_topics":["data-drift","jupyter-notebook","pandas-dataframe","machine-learning","model-monitoring","html-report","production-machine-learning","machine-learning-operations","mlops","data-science","hacktoberfest"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":35,"_pop_contributor_logins":["0lgaF","AntonisCSt","Liraim","SangamSwadiK","Tapot@intento,evidentlyai","burkovae","elenasamuylova@evidentlyai","emeli-dral","inderpreetsingh01","strickvl@zenml"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["evidentlyai","intento,evidentlyai","zenml"],"_pop_contributor_orgs_raw":["Evidently AI","Intento, Evidently AI","ZenML"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.87,"_pop_updated_issues_count":78,"_pop_closed_issues_count":64,"_pop_created_since_days":27,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":20,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":78.0,"_pop_comment_count":77.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":44.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/evidentlyai/evidently/master/README.md","_readme_localurl":"evidentlyai~evidently~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/evidentlyai/evidently/master/requirements.txt","https://raw.githubusercontent.com/evidentlyai/evidently/master/setup.py"],"_requirements_localurls":["evidentlyai~evidently~requirements.txt","evidentlyai~evidently~setup.py"]},{"index":250,"category":"web","githuburl":"https://github.com/websocket-client/websocket-client","featured":null,"links":null,"description":null,"_repopath":"websocket-client/websocket-client","_reponame":"websocket-client","_stars":3166,"_forks":730,"_watches":90,"_language":"Python","_homepage":"https://github.com/websocket-client/websocket-client","_description":"websocket-client: WebSocket client for Python","_organization":"websocket-client","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2010-12-28T00:00:00.000Z","_age_weeks":634,"_stars_per_week":4.99,"_topics":["websocket","websockets","websocket-client","websockets-client","python","rfc-6455"],"_last_commit_date":"2023-02-05T00:00:00.000Z","_pop_contributor_count":207,"_pop_contributor_logins":["Mottl","allanlewis@piclo","bubbleboy14","ekeydar","engn33r@yacademy","hugovk@nordsoftware","liris","louisliu","mjhanninen","ralphbean@redhat,inc"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["nordsoftware","piclo","redhat,inc","yacademy"],"_pop_contributor_orgs_raw":["@piclo","Nord Software","Red Hat, Inc","yAcademy"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.75,"_pop_updated_issues_count":34,"_pop_closed_issues_count":28,"_pop_created_since_days":148,"_pop_updated_since_days":1,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":34.0,"_pop_comment_count":57.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":46.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/websocket-client/websocket-client/master/README.md","_readme_localurl":"websocket-client~websocket-client~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/websocket-client/websocket-client/master/setup.py"],"_requirements_localurls":["websocket-client~websocket-client~setup.py"]},{"index":384,"category":"nlp","githuburl":"https://github.com/minimaxir/gpt-2-simple","featured":null,"links":null,"description":null,"_repopath":"minimaxir/gpt-2-simple","_reponame":"gpt-2-simple","_stars":3162,"_forks":650,"_watches":74,"_language":"Python","_homepage":"","_description":"gpt-2-simple: Python package to easily retrain OpenAI's GPT-2 text-generating model on new texts","_organization":"minimaxir","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-04-13T00:00:00.000Z","_age_weeks":201,"_stars_per_week":15.69,"_topics":["text-generation","tensorflow","openai","textgenrnn"],"_last_commit_date":"2022-05-22T00:00:00.000Z","_pop_contributor_count":21,"_pop_contributor_logins":["biranchi2018","carlos-aguayo@appian","charliekmorris","chrisrytting@byuperception,cognition,andcontrollab","duhaime@universityofnotredame","erjanmx","gte620v","k0a1a@cosmicberlin","minimaxir@buzzfeed","woctezuma"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["appian","buzzfeed","byuperception,cognition,andcontrollab","cosmicberlin","universityofnotredame"],"_pop_contributor_orgs_raw":["@CosmicBerlin ","@appian","@buzzfeed ","BYU Perception, Cognition, and Control Lab","University of Notre Dame"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":9,"_pop_closed_issues_count":1,"_pop_created_since_days":47,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":9.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":28.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/minimaxir/gpt-2-simple/master/README.md","_readme_localurl":"minimaxir~gpt-2-simple~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/minimaxir/gpt-2-simple/master/requirements.txt","https://raw.githubusercontent.com/minimaxir/gpt-2-simple/master/setup.py"],"_requirements_localurls":["minimaxir~gpt-2-simple~requirements.txt","minimaxir~gpt-2-simple~setup.py"]},{"index":35,"category":"data","githuburl":"https://github.com/jmcnamara/xlsxwriter","featured":null,"links":null,"description":null,"_repopath":"jmcnamara/xlsxwriter","_reponame":"XlsxWriter","_stars":3158,"_forks":592,"_watches":122,"_language":"Python","_homepage":"https://xlsxwriter.readthedocs.io","_description":"XlsxWriter: A Python module for creating Excel XLSX files.","_organization":"jmcnamara","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2013-01-04T00:00:00.000Z","_age_weeks":528,"_stars_per_week":5.97,"_topics":["python","xlsx-files","libxlsxwriter","pandas","charts","spreadsheet","xlsx","xlsxwriter"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":47,"_pop_contributor_logins":["danielquinn","dieterv77","eddiechapman","hugovk@nordsoftware","jkyeung","jmcnamara","jonasdiemer","jvrsantacruz","krysros","percious@crunch.io"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["crunch.io","nordsoftware"],"_pop_contributor_orgs_raw":["Crunch.io","Nord Software"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.1,"_pop_updated_issues_count":42,"_pop_closed_issues_count":34,"_pop_created_since_days":123,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":42.0,"_pop_comment_count":102.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":44.31,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jmcnamara/xlsxwriter/master/README.rst","_readme_localurl":"jmcnamara~xlsxwriter~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jmcnamara/xlsxwriter/master/setup.py"],"_requirements_localurls":["jmcnamara~xlsxwriter~setup.py"]},{"index":381,"category":"ml-ops","githuburl":"https://github.com/aimhubio/aim","featured":null,"links":null,"description":null,"_repopath":"aimhubio/aim","_reponame":"aim","_stars":3157,"_forks":196,"_watches":37,"_language":"TypeScript","_homepage":"https://aimstack.io","_description":"Aim \ud83d\udcab \u2014 easy-to-use and performant open-source ML experiment tracker.","_organization":"aimhubio","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-05-31T00:00:00.000Z","_age_weeks":194,"_stars_per_week":16.21,"_topics":["python","ai","data-science","data-visualization","experiment-tracking","machine-learning","metadata","metadata-tracking","ml","mlflow","mlops","pytorch","tensorboard","tensorflow","visualization"],"_last_commit_date":"2023-02-09T00:00:00.000Z","_pop_contributor_count":52,"_pop_contributor_logins":["KaroMourad@aim","SGevorg@aimhubio","VkoHov@aimhub","alberttorosyan","arsengit@aimstack","devfox-se","gorarakelyan@aimstack","mihran113@aimhubio","roubkar@aimhubio","rubenaprikyan@aimhub"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aim","aimhub","aimhubio","aimstack"],"_pop_contributor_orgs_raw":["@aimhubio","@aimhubio ","Aim","AimHub","AimStack","Aimhub"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.23,"_pop_updated_issues_count":240,"_pop_closed_issues_count":154,"_pop_created_since_days":45,"_pop_updated_since_days":0,"_pop_recent_releases_count":41,"_pop_recent_releases_estimated_tags":41,"_pop_recent_releases_adjusted_count":41,"_pop_issue_count":240.0,"_pop_comment_count":330.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":49.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aimhubio/aim/master/README.md","_readme_localurl":"aimhubio~aim~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/aimhubio/aim/master/requirements.txt","https://raw.githubusercontent.com/aimhubio/aim/master/setup.py","https://raw.githubusercontent.com/aimhubio/aim/master/pyproject.toml"],"_requirements_localurls":["aimhubio~aim~requirements.txt","aimhubio~aim~setup.py","aimhubio~aim~pyproject.toml"]},{"index":0,"category":"data","githuburl":"https://github.com/andialbrecht/sqlparse","featured":null,"links":null,"description":null,"_repopath":"andialbrecht/sqlparse","_reponame":"sqlparse","_stars":3153,"_forks":623,"_watches":94,"_language":"Python","_homepage":"","_description":"sqlparse: A non-validating SQL parser module for Python","_organization":"andialbrecht","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-04-18T00:00:00.000Z","_age_weeks":566,"_stars_per_week":5.57,"_topics":[],"_last_commit_date":"2023-01-05T00:00:00.000Z","_pop_contributor_count":102,"_pop_contributor_logins":["adamgreenhall","andialbrecht","darikg","dbczumar","jdufresne@pioneervalleybooks","mrmasterplan@delegate.dk","phdru","piranna@mafalda-sfu","sjoerdjob","vmuriart"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["delegate.dk","mafalda-sfu","pioneervalleybooks"],"_pop_contributor_orgs_raw":["@Mafalda-SFU","Delegate.dk","Pioneer Valley Books"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.71,"_pop_updated_issues_count":35,"_pop_closed_issues_count":11,"_pop_created_since_days":132,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":35.0,"_pop_comment_count":58.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":40.47,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/andialbrecht/sqlparse/master/README.rst","_readme_localurl":"andialbrecht~sqlparse~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/andialbrecht/sqlparse/master/pyproject.toml"],"_requirements_localurls":["andialbrecht~sqlparse~pyproject.toml"]},{"index":905,"category":"util","githuburl":"https://github.com/pypi/warehouse","featured":null,"links":null,"description":null,"_repopath":"pypi/warehouse","_reponame":"warehouse","_stars":3146,"_forks":910,"_watches":103,"_language":"Python","_homepage":"https://pypi.org","_description":"warehouse: The Python Package Index","_organization":"pypi","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2013-03-30T00:00:00.000Z","_age_weeks":516,"_stars_per_week":6.09,"_topics":[],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":332,"_pop_contributor_logins":["brainwane@changesetconsulting","dependabot[bot]","di@google","dstufft@datadog","ewdurbin@psf","miketheman","nlhkabu","pyup-bot@pyupio","weblate@weblateorg","woodruffw@trailofbits"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["changesetconsulting","datadog","google","psf","pyupio","trailofbits","weblateorg"],"_pop_contributor_orgs_raw":["@DataDog","@WeblateOrg ","@google","@psf","@pyupio","@trailofbits ","Changeset Consulting"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.96,"_pop_updated_issues_count":585,"_pop_closed_issues_count":451,"_pop_created_since_days":120,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":584.0,"_pop_comment_count":692.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":53.9,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pypi/warehouse/master/README.rst","_readme_localurl":"pypi~warehouse~README.rst","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pypi/warehouse/master/requirements.txt","https://raw.githubusercontent.com/pypi/warehouse/master/pyproject.toml"],"_requirements_localurls":["pypi~warehouse~requirements.txt","pypi~warehouse~pyproject.toml"]},{"index":610,"category":"testing","githuburl":"https://github.com/seleniumbase/seleniumbase","featured":null,"links":null,"description":null,"_repopath":"seleniumbase/seleniumbase","_reponame":"SeleniumBase","_stars":3128,"_forks":756,"_watches":121,"_language":"Python","_homepage":"https://seleniumbase.io","_description":"SeleniumBase: A Python browser automation framework for creating reliable end-to-end tests.","_organization":"seleniumbase","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-03-04T00:00:00.000Z","_age_weeks":468,"_stars_per_week":6.68,"_topics":["python","selenium","webdriver","selenium-python","e2e-testing","seleniumbase","pytest-plugin","web-automation","pytest","behave","chrome","webkit","chromedriver","firefox","test","python3"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":35,"_pop_contributor_logins":["TaylorMcGinnis","aklajnert@akamaitechnologies","alexrudd2@numat","dimaspivak@streamsets","johnhiggs","mdmintz@https://www.iboss.com/","piotrkochan","rogererens","stevemachacz@nausetconsulting","surevs"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["akamaitechnologies","https://www.iboss.com/","nausetconsulting","numat","streamsets"],"_pop_contributor_orgs_raw":["@numat ","@streamsets ","Akamai Technologies","Nauset Consulting","https://www.iboss.com/"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":25.67,"_pop_updated_issues_count":156,"_pop_closed_issues_count":155,"_pop_created_since_days":109,"_pop_updated_since_days":0,"_pop_recent_releases_count":148,"_pop_recent_releases_estimated_tags":87,"_pop_recent_releases_adjusted_count":148,"_pop_issue_count":156.0,"_pop_comment_count":233.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":52.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/seleniumbase/seleniumbase/master/README.md","_readme_localurl":"seleniumbase~seleniumbase~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/seleniumbase/seleniumbase/master/requirements.txt","https://raw.githubusercontent.com/seleniumbase/seleniumbase/master/setup.py"],"_requirements_localurls":["seleniumbase~seleniumbase~requirements.txt","seleniumbase~seleniumbase~setup.py"]},{"index":260,"category":"util","githuburl":"https://github.com/python-markdown/markdown","featured":null,"links":null,"description":null,"_repopath":"python-markdown/markdown","_reponame":"markdown","_stars":3125,"_forks":810,"_watches":75,"_language":"Python","_homepage":"https://python-markdown.github.io/","_description":"markdown: A Python implementation of John Gruber\u2019s Markdown with Extension support.","_organization":"python-markdown","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2010-05-29T00:00:00.000Z","_age_weeks":664,"_stars_per_week":4.7,"_topics":["python-markdown","markdown","markdown-parser","markdown-to-html","python","python3"],"_last_commit_date":"2023-01-09T00:00:00.000Z","_pop_contributor_count":165,"_pop_contributor_logins":["artynusov","davidchambers","facelessuser","lahwaacz","lama7","mdirolf","mitya57@theinterfacefinancialgroup","slig","waylan","yuri@rangle.io"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["rangle.io","theinterfacefinancialgroup"],"_pop_contributor_orgs_raw":["The Interface Financial Group","rangle.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.62,"_pop_updated_issues_count":18,"_pop_closed_issues_count":15,"_pop_created_since_days":155,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":18.0,"_pop_comment_count":38.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":42.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python-markdown/markdown/master/README.md","_readme_localurl":"python-markdown~markdown~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-markdown/markdown/master/setup.py","https://raw.githubusercontent.com/python-markdown/markdown/master/pyproject.toml"],"_requirements_localurls":["python-markdown~markdown~setup.py","python-markdown~markdown~pyproject.toml"]},{"index":832,"category":"pandas","githuburl":"https://github.com/blaze/blaze","featured":null,"links":null,"description":null,"_repopath":"blaze/blaze","_reponame":"blaze","_stars":3123,"_forks":387,"_watches":199,"_language":"Python","_homepage":"blaze.pydata.org","_description":"blaze: NumPy and Pandas interface to Big Data","_organization":"blaze","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2012-10-26T00:00:00.000Z","_age_weeks":538,"_stars_per_week":5.8,"_topics":[],"_last_commit_date":"2019-08-15T00:00:00.000Z","_pop_contributor_count":65,"_pop_contributor_logins":["aterrel@numfocus","brittainhard","cpcloud@voltrondata","kwmsmith","llllllllll@formerlyquantopian","markflorisson@mlabs","mrocklin@coiled","mwiebe@awsthinkbox","sdiehl","teoliphant@quansight,openteams"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["awsthinkbox","coiled","formerlyquantopian","mlabs","numfocus","quansight,openteams","voltrondata"],"_pop_contributor_orgs_raw":["@coiled ","@voltrondata","AWS Thinkbox","MLabs","NumFOCUS","Quansight, OpenTeams","formerly @quantopian"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":126,"_pop_updated_since_days":43,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":28.69,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/blaze/blaze/master/README.rst","_readme_localurl":"blaze~blaze~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/blaze/blaze/master/setup.py"],"_requirements_localurls":["blaze~blaze~setup.py"]},{"index":715,"category":"ml-ops","githuburl":"https://github.com/flyteorg/flyte","featured":null,"links":null,"description":null,"_repopath":"flyteorg/flyte","_reponame":"flyte","_stars":3112,"_forks":326,"_watches":267,"_language":"Python","_homepage":"https://flyte.org","_description":"flyte: Kubernetes-native workflow automation platform for complex, mission-critical data and ML processes at scale. It has been battle-tested at Lyft, Spotify, Freenome, and others and is truly open-source.","_organization":"flyteorg","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-10-21T00:00:00.000Z","_age_weeks":174,"_stars_per_week":17.86,"_topics":["flyte","machine-learning","golang","scale","workflow","data-science","data-analysis","data","kubernetes-operator","kubernetes","orchestration-engine","mlops","dataops","grpc","python","battle-tested","production","production-grade","declarative","hacktoberfest"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":114,"_pop_contributor_logins":["EngHabu@flyteorg","SandraGH5@union.ai","SmritiSatyanV","cosmicBboy@unionai","evalsocket@unionai","flyte-bot","jeevb@freenome","katrogan@unionai","kumare3@unionai","wild-endeavor"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["flyteorg","freenome","union.ai","unionai"],"_pop_contributor_orgs_raw":["@flyteorg ","@unionai","@unionai ","Freenome","Union.ai","unionai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.0,"_pop_updated_issues_count":377,"_pop_closed_issues_count":155,"_pop_created_since_days":41,"_pop_updated_since_days":0,"_pop_recent_releases_count":28,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":28,"_pop_issue_count":377.0,"_pop_comment_count":320.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":49.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/flyteorg/flyte/master/README.md","_readme_localurl":"flyteorg~flyte~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/flyteorg/flyte/master/requirements.txt"],"_requirements_localurls":["flyteorg~flyte~requirements.txt"]},{"index":336,"category":"ml","githuburl":"https://github.com/apple/coremltools","featured":null,"links":null,"description":null,"_repopath":"apple/coremltools","_reponame":"coremltools","_stars":3111,"_forks":488,"_watches":113,"_language":"Python","_homepage":"https://coremltools.readme.io","_description":"coremltools: Core ML tools contain supporting tools for Core ML model conversion, editing, and validation.","_organization":"apple","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-06-30T00:00:00.000Z","_age_weeks":294,"_stars_per_week":10.56,"_topics":["coremltools","tensorflow","pytorch","coreml","machine-learning","model-converter","model-conversion"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":145,"_pop_contributor_logins":["1duo","TobyRoseman@apple","aseemw","bhushan23@stealthmode","fukatani","gustavla","jakesabathia2","slin07@apple","srikris@apple","tonybove-apple@expertsupport-apple"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["apple","expertsupport-apple","stealthmode"],"_pop_contributor_orgs_raw":["@apple","Apple","Expert Support - Apple","Stealth Mode"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.08,"_pop_updated_issues_count":143,"_pop_closed_issues_count":80,"_pop_created_since_days":69,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":143.0,"_pop_comment_count":317.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":47.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apple/coremltools/master/README.md","_readme_localurl":"apple~coremltools~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/apple/coremltools/master/setup.py"],"_requirements_localurls":["apple~coremltools~setup.py"]},{"index":363,"category":"ml-ops","githuburl":"https://github.com/kubeflow/pipelines","featured":null,"links":null,"description":null,"_repopath":"kubeflow/pipelines","_reponame":"pipelines","_stars":3107,"_forks":1382,"_watches":102,"_language":"Python","_homepage":"https://www.kubeflow.org/docs/components/pipelines/","_description":"pipelines: Machine Learning Pipelines for Kubeflow","_organization":"kubeflow","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-05-12T00:00:00.000Z","_age_weeks":249,"_stars_per_week":12.45,"_topics":["kubeflow-pipelines","mlops","kubeflow","machine-learning","kubernetes","pipeline","data-science"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":359,"_pop_contributor_logins":["Ark-kun@google","Bobgy@google","IronPan@google","SinaChavoshi@google","chensun@google","connor-mccarthy@google","gaoning777@google","hongye-sun","rileyjbauer","zijianjoy"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_raw":["@Google","@google","Google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.94,"_pop_updated_issues_count":724,"_pop_closed_issues_count":341,"_pop_created_since_days":58,"_pop_updated_since_days":0,"_pop_recent_releases_count":32,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":32,"_pop_issue_count":723.0,"_pop_comment_count":1455.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":53.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kubeflow/pipelines/master/README.md","_readme_localurl":"kubeflow~pipelines~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/kubeflow/pipelines/master/requirements.txt"],"_requirements_localurls":["kubeflow~pipelines~requirements.txt"]},{"index":221,"category":"jupyter","githuburl":"https://github.com/jupyterlite/jupyterlite","featured":null,"links":null,"description":null,"_repopath":"jupyterlite/jupyterlite","_reponame":"jupyterlite","_stars":3088,"_forks":194,"_watches":43,"_language":"Python","_homepage":"https://jupyterlite.rtfd.io/en/latest/try/lab","_description":"jupyterlite: Wasm powered Jupyter running in the browser \ud83d\udca1","_organization":"jupyterlite","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-03-27T00:00:00.000Z","_age_weeks":99,"_stars_per_week":31.01,"_topics":["jupyter","jupyterlab","jupyterlab-extension","lite","webassembly","wasm","pyodide"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":44,"_pop_contributor_logins":["agoose77","bollwyvl","dependabot[bot]","dsblank@comet-ml","github-actions[bot]","joemarshall","jtpio@quantstack","madhur-tandon","martinRenou@quantstack","psychemedia@theopenuniversity"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["comet-ml","quantstack","theopenuniversity"],"_pop_contributor_orgs_raw":["@QuantStack","@comet-ml ","The Open University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.98,"_pop_updated_issues_count":135,"_pop_closed_issues_count":71,"_pop_created_since_days":23,"_pop_updated_since_days":0,"_pop_recent_releases_count":19,"_pop_recent_releases_estimated_tags":459,"_pop_recent_releases_adjusted_count":19,"_pop_issue_count":135.0,"_pop_comment_count":370.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":0,"_pop_score":46.85,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyterlite/jupyterlite/master/README.md","_readme_localurl":"jupyterlite~jupyterlite~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyterlite/jupyterlite/master/pyproject.toml"],"_requirements_localurls":["jupyterlite~jupyterlite~pyproject.toml"]},{"index":138,"category":"ml-interpretability","githuburl":"https://github.com/pair-code/lit","featured":1.0,"links":null,"description":null,"_repopath":"pair-code/lit","_reponame":"lit","_stars":3081,"_forks":327,"_watches":70,"_language":"TypeScript","_homepage":"https://pair-code.github.io/lit","_description":"lit: The Learning Interpretability Tool: Interactively analyze ML models to understand their behavior in an extensible and framework agnostic interface.","_organization":"pair-code","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-07-28T00:00:00.000Z","_age_weeks":134,"_stars_per_week":22.97,"_topics":["machine-learning","natural-language-processing","visualization"],"_last_commit_date":"2022-12-02T00:00:00.000Z","_pop_contributor_count":27,"_pop_contributor_logins":["EmilyReif","RyanMullins@google","ankurtaly","aryan1107","cjqian@deepmind","eberts-google","ellenjiang7","iftenney@google","jameswex@google","tolga-b@google"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["deepmind","google"],"_pop_contributor_orgs_raw":["@deepmind","@google ","Google","Google, Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.21,"_pop_updated_issues_count":88,"_pop_closed_issues_count":75,"_pop_created_since_days":31,"_pop_updated_since_days":3,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":88.0,"_pop_comment_count":17.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":31.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pair-code/lit/master/README.md","_readme_localurl":"pair-code~lit~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":42,"category":"nlp","githuburl":"https://github.com/life4/textdistance","featured":null,"links":null,"description":null,"_repopath":"life4/textdistance","_reponame":"textdistance","_stars":3059,"_forks":242,"_watches":61,"_language":"Python","_homepage":"","_description":"textdistance: Compute distance between sequences. 30+ algorithms, pure python implementation, common interface, optional external libs usage.","_organization":"life4","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-05-05T00:00:00.000Z","_age_weeks":302,"_stars_per_week":10.11,"_topics":["distance","algorithm","python","textdistance","hamming-distance","levenshtein-distance","damerau-levenshtein","damerau-levenshtein-distance","algorithms","distance-calculation","jellyfish","diff","levenshtein"],"_last_commit_date":"2022-09-18T00:00:00.000Z","_pop_contributor_count":13,"_pop_contributor_logins":["ArchangeGabriel@archlinux","Inokenty90","Reindert94","davebulaval@baseline.qu\u00e9bec","eliadl","juliangilbey@universityofcambridge","kinow@barcelonasupercomputingcenter","maxbachmann","orsinium@sendcloud","wynksaiddestroy"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["archlinux","barcelonasupercomputingcenter","baseline.qu\u00e9bec","sendcloud","universityofcambridge"],"_pop_contributor_orgs_raw":["@ArchLinux","@sendcloud","Barcelona Supercomputing Center","Baseline.qu\u00e9bec","University of Cambridge"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.79,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":71,"_pop_updated_since_days":5,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":25.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/life4/textdistance/master/README.md","_readme_localurl":"life4~textdistance~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/life4/textdistance/master/setup.py","https://raw.githubusercontent.com/life4/textdistance/master/pyproject.toml"],"_requirements_localurls":["life4~textdistance~setup.py","life4~textdistance~pyproject.toml"]},{"index":698,"category":"util","githuburl":"https://github.com/joblib/joblib","featured":null,"links":null,"description":null,"_repopath":"joblib/joblib","_reponame":"joblib","_stars":3056,"_forks":366,"_watches":63,"_language":"Python","_homepage":"http://joblib.readthedocs.org","_description":"joblib: Computing with Python functions.","_organization":"joblib","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2010-05-07T00:00:00.000Z","_age_weeks":667,"_stars_per_week":4.58,"_topics":["python","parallel-computing","caching","multiprocessing","threading","memoization"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":117,"_pop_contributor_logins":["GaelVaroquaux","aabadie@inria","esc@anaconda","lesteve","ogrisel@inria","pberkes@nagra,kudelski","pgervais","pierreglaser@ucl","tomMoral@inriasaclay-parietalteam","yarikoptic@dartmouthcollege,debian,datalad,pymvpa,fail2ban"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","dartmouthcollege,debian,datalad,pymvpa,fail2ban","inria","inriasaclay-parietalteam","nagra,kudelski","ucl"],"_pop_contributor_orgs_raw":["Anaconda Inc.","Dartmouth College, @Debian, @DataLad, @PyMVPA, @fail2ban","INRIA Saclay - Parietal team","Inria","Nagra, Kudelski","UCL"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.85,"_pop_updated_issues_count":64,"_pop_closed_issues_count":36,"_pop_created_since_days":156,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":64.0,"_pop_comment_count":102.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":48.44,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/joblib/joblib/master/README.rst","_readme_localurl":"joblib~joblib~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/joblib/joblib/master/setup.py","https://raw.githubusercontent.com/joblib/joblib/master/pyproject.toml"],"_requirements_localurls":["joblib~joblib~setup.py","joblib~joblib~pyproject.toml"]},{"index":285,"category":"crypto","githuburl":"https://github.com/ethereum/consensus-specs","featured":null,"links":null,"description":null,"_repopath":"ethereum/consensus-specs","_reponame":"consensus-specs","_stars":3054,"_forks":782,"_watches":244,"_language":"Python","_homepage":"","_description":"consensus-specs: Ethereum Proof-of-Stake Consensus Specifications","_organization":"ethereum","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-09-20T00:00:00.000Z","_age_weeks":230,"_stars_per_week":13.23,"_topics":[],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":135,"_pop_contributor_logins":["CarlBeek@ethereum","JustinDrake","dankrad","djrtwo@ctrl^t","hwwhww","mkalinin","protolambda@oplabs","ralexstokes","terencechain","vbuterin"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ctrl^t","ethereum","oplabs"],"_pop_contributor_orgs_raw":["@ethereum","Ctrl^T","OP Labs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.0,"_pop_updated_issues_count":187,"_pop_closed_issues_count":147,"_pop_created_since_days":54,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":187.0,"_pop_comment_count":266.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":49.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethereum/consensus-specs/master/README.md","_readme_localurl":"ethereum~consensus-specs~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ethereum/consensus-specs/master/setup.py"],"_requirements_localurls":["ethereum~consensus-specs~setup.py"]},{"index":765,"category":"diffusion","githuburl":"https://github.com/lkwq007/stablediffusion-infinity","featured":null,"links":null,"description":null,"_repopath":"lkwq007/stablediffusion-infinity","_reponame":"stablediffusion-infinity","_stars":3021,"_forks":238,"_watches":32,"_language":"Python","_homepage":"","_description":"stablediffusion-infinity: Outpainting with Stable Diffusion on an infinite canvas","_organization":"lkwq007","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-09-02T00:00:00.000Z","_age_weeks":24,"_stars_per_week":122.24,"_topics":["outpainting","stablediffusion"],"_last_commit_date":"2023-01-24T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["LEBMD","adripo","donlinglok","ipsin","lkwq007@cuhk","mspiegel@thoughtdealership","tpsjr7"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cuhk","thoughtdealership"],"_pop_contributor_orgs_raw":["CUHK","Thought Dealership"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.56,"_pop_updated_issues_count":46,"_pop_closed_issues_count":19,"_pop_created_since_days":6,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":46.0,"_pop_comment_count":72.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":29.38,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/lkwq007/stablediffusion-infinity/master/readme.md","_readme_localurl":"lkwq007~stablediffusion-infinity~readme.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":390,"category":"diffusion","githuburl":"https://github.com/openai/glide-text2im","featured":null,"links":null,"description":null,"_repopath":"openai/glide-text2im","_reponame":"glide-text2im","_stars":3019,"_forks":431,"_watches":123,"_language":"Python","_homepage":"","_description":"glide-text2im: GLIDE: a diffusion-based text-conditional image synthesis model","_organization":"openai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-12-10T00:00:00.000Z","_age_weeks":62,"_stars_per_week":48.14,"_topics":[],"_last_commit_date":"2022-03-21T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["kcosta42","lochiego@texasa&mcenterforappliedtechnology","prafullasd","unixpickle"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["texasa&mcenterforappliedtechnology"],"_pop_contributor_orgs_raw":["Texas A&M Center for Applied Technology"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":15,"_pop_updated_since_days":11,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":8.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/glide-text2im/master/README.md","_readme_localurl":"openai~glide-text2im~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/glide-text2im/master/setup.py"],"_requirements_localurls":["openai~glide-text2im~setup.py"]},{"index":139,"category":"viz","githuburl":"https://github.com/vispy/vispy","featured":null,"links":null,"description":null,"_repopath":"vispy/vispy","_reponame":"vispy","_stars":3017,"_forks":606,"_watches":119,"_language":"Python","_homepage":"http://vispy.org","_description":"vispy: Main repository for Vispy","_organization":"vispy","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2013-03-21T00:00:00.000Z","_age_weeks":517,"_stars_per_week":5.83,"_topics":["hacktoberfest","python","opengl","visualization","closember"],"_last_commit_date":"2023-01-23T00:00:00.000Z","_pop_contributor_count":183,"_pop_contributor_logins":["adamlwgriffiths@twistedpairdevelopment","almarklein@independentsoftwareengineer","asnt","bollu@universityofedinburgh","brisvag@gutsche-lab","campagnola","djhoese@spacescienceandengineeringcenter(ssec)","larsoner@universityofwashington","rossant@int-brain-labcortex-lab","rougier@inria"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["gutsche-lab","independentsoftwareengineer","inria","int-brain-labcortex-lab","spacescienceandengineeringcenter(ssec)","twistedpairdevelopment","universityofedinburgh","universityofwashington"],"_pop_contributor_orgs_raw":["@INRIA ","@gutsche-lab ","@int-brain-lab @cortex-lab ","Independent software engineer","Space Science and Engineering Center (@ssec)","Twisted Pair Development","University of Edinburgh","University of Washington"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.4,"_pop_updated_issues_count":37,"_pop_closed_issues_count":21,"_pop_created_since_days":121,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":37.0,"_pop_comment_count":155.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.2,"_pop_dependents_count":0,"_pop_score":52.29,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/vispy/vispy/master/README.rst","_readme_localurl":"vispy~vispy~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/vispy/vispy/master/setup.py","https://raw.githubusercontent.com/vispy/vispy/master/pyproject.toml"],"_requirements_localurls":["vispy~vispy~setup.py","vispy~vispy~pyproject.toml"]},{"index":272,"category":"data","githuburl":"https://github.com/praw-dev/praw","featured":null,"links":null,"description":null,"_repopath":"praw-dev/praw","_reponame":"praw","_stars":3003,"_forks":448,"_watches":72,"_language":"Python","_homepage":"http://praw.readthedocs.io/","_description":"PRAW, an acronym for \"Python Reddit API Wrapper\", is a python package that allows for simple access to Reddit's API.","_organization":"praw-dev","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2010-08-19T00:00:00.000Z","_age_weeks":652,"_stars_per_week":4.6,"_topics":["python","reddit","api","oauth","praw","reddit-api"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":220,"_pop_contributor_logins":["13steinj","Damgaard@billy","LilSpazJoekp@indeed","PythonCoderAS","bboe@netflix","jarhill0@appfolio","leviroth","nmtake","tmelz","voussoir"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["appfolio","billy","indeed","netflix"],"_pop_contributor_orgs_raw":["@appfolio","@netflix","Billy","Indeed, Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.38,"_pop_updated_issues_count":36,"_pop_closed_issues_count":30,"_pop_created_since_days":152,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":36.0,"_pop_comment_count":51.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":46.59,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/praw-dev/praw/master/README.rst","_readme_localurl":"praw-dev~praw~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/praw-dev/praw/master/setup.py","https://raw.githubusercontent.com/praw-dev/praw/master/pyproject.toml"],"_requirements_localurls":["praw-dev~praw~setup.py","praw-dev~praw~pyproject.toml"]},{"index":156,"category":"profiling","githuburl":"https://github.com/gaogaotiantian/viztracer","featured":null,"links":null,"description":null,"_repopath":"gaogaotiantian/viztracer","_reponame":"viztracer","_stars":3002,"_forks":290,"_watches":40,"_language":"Python","_homepage":"https://viztracer.readthedocs.io/","_description":"VizTracer is a low-overhead logging/debugging/profiling tool that can trace and visualize your python code execution.","_organization":"gaogaotiantian","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-08-05T00:00:00.000Z","_age_weeks":133,"_stars_per_week":22.57,"_topics":["tracer","python3","debugging","profiling","visualization","flamegraph","python","logging"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":17,"_pop_contributor_logins":["DancingSnow0517","PeterStolz@bitahoy","colesbury@facebookairesearch","comzyh","gaogaotiantian@microsoft","imba-tjd","kianmeng","maartenbreddels@maartenbreddels","ogrisel@inria","tanloong"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bitahoy","facebookairesearch","inria","maartenbreddels","microsoft"],"_pop_contributor_orgs_raw":["@bitahoy ","@maartenbreddels","Facebook AI Research","Inria","Microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.06,"_pop_updated_issues_count":20,"_pop_closed_issues_count":14,"_pop_created_since_days":31,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":30,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":20.0,"_pop_comment_count":41.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":38.85,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gaogaotiantian/viztracer/master/README.md","_readme_localurl":"gaogaotiantian~viztracer~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gaogaotiantian/viztracer/master/setup.py"],"_requirements_localurls":["gaogaotiantian~viztracer~setup.py"]},{"index":703,"category":"util","githuburl":"https://github.com/openai/openai-python","featured":null,"links":null,"description":null,"_repopath":"openai/openai-python","_reponame":"openai-python","_stars":2991,"_forks":613,"_watches":88,"_language":"Python","_homepage":"","_description":"openai-python: The OpenAI Python library provides convenient access to the OpenAI API from applications written in the Python language.","_organization":"openai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-10-25T00:00:00.000Z","_age_weeks":121,"_stars_per_week":24.63,"_topics":["openai","python"],"_last_commit_date":"2023-02-07T00:00:00.000Z","_pop_contributor_count":43,"_pop_contributor_logins":["BorisPower","borisdayma","cmurtz-msft@microsoft","ddeville@openai","hallacy@openai","lilianweng","logankilpatrick@openaijulialang","mpokrass","rachellim@openai","sorinsuciu-msft@microsoft"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["microsoft","openai","openaijulialang"],"_pop_contributor_orgs_raw":["@OpenAI @JuliaLang","@openai","@openai ","Microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.31,"_pop_updated_issues_count":92,"_pop_closed_issues_count":75,"_pop_created_since_days":28,"_pop_updated_since_days":0,"_pop_recent_releases_count":18,"_pop_recent_releases_estimated_tags":21,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":93.0,"_pop_comment_count":167.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":42.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/openai-python/master/README.md","_readme_localurl":"openai~openai-python~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/openai-python/master/setup.py","https://raw.githubusercontent.com/openai/openai-python/master/pyproject.toml"],"_requirements_localurls":["openai~openai-python~setup.py","openai~openai-python~pyproject.toml"]},{"index":729,"category":"ml-dl","githuburl":"https://github.com/mosaicml/composer","featured":null,"links":null,"description":null,"_repopath":"mosaicml/composer","_reponame":"composer","_stars":2986,"_forks":193,"_watches":27,"_language":"Python","_homepage":"http://docs.mosaicml.com","_description":"composer: Train neural networks up to 7x faster","_organization":"mosaicml","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-10-12T00:00:00.000Z","_age_weeks":71,"_stars_per_week":41.97,"_topics":["deep-learning","pytorch","neural-networks","ml-systems","ml-efficiency","ml-training","machine-learning","neural-network"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":60,"_pop_contributor_logins":["abhi-mosaic@mosaicml","bandish-shah","dakinggg","dependabot[bot]","dskhudia","eracah@mosaicml","hanlint@mosaicml","moinnadeem","mvpatel2000@stanford'22","ravi-mosaicml"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["mosaicml","stanford'22"],"_pop_contributor_orgs_raw":["MosaicML","Stanford '22"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":23.0,"_pop_updated_issues_count":265,"_pop_closed_issues_count":244,"_pop_created_since_days":17,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":21,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":265.0,"_pop_comment_count":228.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":44.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mosaicml/composer/master/README.md","_readme_localurl":"mosaicml~composer~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/mosaicml/composer/master/setup.py","https://raw.githubusercontent.com/mosaicml/composer/master/pyproject.toml"],"_requirements_localurls":["mosaicml~composer~setup.py","mosaicml~composer~pyproject.toml"]},{"index":623,"category":"util","githuburl":"https://github.com/suor/funcy","featured":null,"links":null,"description":null,"_repopath":"suor/funcy","_reponame":"funcy","_stars":2971,"_forks":134,"_watches":73,"_language":"Python","_homepage":"","_description":"funcy: A fancy and practical functional tools","_organization":"suor","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2012-10-13T00:00:00.000Z","_age_weeks":540,"_stars_per_week":5.5,"_topics":["functional-programming","utilities","python"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":31,"_pop_contributor_logins":["AndrewWalker","Suor","browniebroke@festicket","despawnerer","eprykhodko","lukmdo","rocco66","taleinat","timgates42@iress","volker48@obsidian-security"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["festicket","iress","obsidian-security"],"_pop_contributor_orgs_raw":["@obsidian-security ","Festicket","IRESS"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":4,"_pop_closed_issues_count":3,"_pop_created_since_days":126,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":4.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":37.73,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/suor/funcy/master/README.rst","_readme_localurl":"suor~funcy~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/suor/funcy/master/setup.py"],"_requirements_localurls":["suor~funcy~setup.py"]},{"index":811,"category":"ml-ops","githuburl":"https://github.com/ploomber/ploomber","featured":null,"links":null,"description":null,"_repopath":"ploomber/ploomber","_reponame":"ploomber","_stars":2967,"_forks":203,"_watches":26,"_language":"Python","_homepage":"https://ploomber.io","_description":"ploomber: The fastest \u26a1\ufe0f way to build data pipelines. Develop iteratively, deploy anywhere. \u2601\ufe0f","_organization":"ploomber","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-01-20T00:00:00.000Z","_age_weeks":161,"_stars_per_week":18.4,"_topics":["workflow","machine-learning","data-science","data-engineering","mlops","papermill","jupyter","jupyter-notebooks","pipelines","vscode","pycharm","notebooks"],"_last_commit_date":"2023-01-31T00:00:00.000Z","_pop_contributor_count":72,"_pop_contributor_logins":["94rain","Wxl19980214","dependabot[bot]","e1ha","edublancas@ploomber","fferegrino","grnnja","idomic","neelasha23","yafimvo"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ploomber"],"_pop_contributor_orgs_raw":["Ploomber"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.35,"_pop_updated_issues_count":41,"_pop_closed_issues_count":33,"_pop_created_since_days":38,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":35,"_pop_recent_releases_adjusted_count":35,"_pop_issue_count":41.0,"_pop_comment_count":56.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":41.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ploomber/ploomber/master/README.md","_readme_localurl":"ploomber~ploomber~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ploomber/ploomber/master/setup.py","https://raw.githubusercontent.com/ploomber/ploomber/master/pyproject.toml"],"_requirements_localurls":["ploomber~ploomber~setup.py","ploomber~ploomber~pyproject.toml"]},{"index":270,"category":"web","githuburl":"https://github.com/strawberry-graphql/strawberry","featured":null,"links":null,"description":null,"_repopath":"strawberry-graphql/strawberry","_reponame":"strawberry","_stars":2966,"_forks":372,"_watches":40,"_language":"Python","_homepage":"https://strawberry.rocks","_description":"strawberry: A GraphQL library for Python that leverages type annotations \ud83c\udf53","_organization":"strawberry-graphql","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-12-21T00:00:00.000Z","_age_weeks":217,"_stars_per_week":13.62,"_topics":["graphql","graphql-server","python","starlette","asyncio","mypy","django","graphql-library","asgi","graphql-schema","strawberry","hacktoberfest"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":181,"_pop_contributor_logins":["BryceBeagle@robinhood","DoctorJohn","botberry@strawberry-graphql","dependabot-preview[bot]","dependabot[bot]","estyxx@madedotcom","jkimbo","marcoacierno","patrick91@apollographql","pre-commit-ci[bot]"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["apollographql","madedotcom","robinhood","strawberry-graphql"],"_pop_contributor_orgs_raw":["@apollographql ","@madedotcom","@strawberry-graphql","Robinhood"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.08,"_pop_updated_issues_count":330,"_pop_closed_issues_count":195,"_pop_created_since_days":51,"_pop_updated_since_days":0,"_pop_recent_releases_count":172,"_pop_recent_releases_estimated_tags":124,"_pop_recent_releases_adjusted_count":172,"_pop_issue_count":330.0,"_pop_comment_count":666.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":54.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/README.md","_readme_localurl":"strawberry-graphql~strawberry~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/setup.py","https://raw.githubusercontent.com/strawberry-graphql/strawberry/master/pyproject.toml"],"_requirements_localurls":["strawberry-graphql~strawberry~setup.py","strawberry-graphql~strawberry~pyproject.toml"]},{"index":366,"category":"ml","githuburl":"https://github.com/facebookresearch/vissl","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/vissl","_reponame":"vissl","_stars":2956,"_forks":309,"_watches":52,"_language":"Jupyter Notebook","_homepage":"https://vissl.ai","_description":"VISSL is FAIR's library of extensible, modular and scalable components for SOTA Self-Supervised Learning with images.","_organization":"facebookresearch","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2020-04-09T00:00:00.000Z","_age_weeks":149,"_stars_per_week":19.73,"_topics":[],"_last_commit_date":"2022-12-28T00:00:00.000Z","_pop_contributor_count":34,"_pop_contributor_logins":["QuentinDuval","akainth015","amyreese@omnilib","bottler","growlix@mosaicml","iseessel@meta","jingli9111@openai","mannatsingh@facebook","min-xu-ai","prigoyal@google"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook","google","meta","mosaicml","omnilib","openai"],"_pop_contributor_orgs_raw":["@omnilib ","Facebook","Google","Meta","MosaicML","OpenAI"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.02,"_pop_updated_issues_count":12,"_pop_closed_issues_count":2,"_pop_created_since_days":35,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":12.0,"_pop_comment_count":22.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":34.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/vissl/master/README.md","_readme_localurl":"facebookresearch~vissl~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/vissl/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/vissl/master/setup.py"],"_requirements_localurls":["facebookresearch~vissl~requirements.txt","facebookresearch~vissl~setup.py"]},{"index":77,"category":"jupyter","githuburl":"https://github.com/quantopian/qgrid","featured":null,"links":null,"description":null,"_repopath":"quantopian/qgrid","_reponame":"qgrid","_stars":2946,"_forks":419,"_watches":89,"_language":"Python","_homepage":"","_description":"qgrid: An interactive grid for sorting, filtering, and editing DataFrames in Jupyter notebooks","_organization":"quantopian","_updated_at":"2023-02-16T00:00:00.000Z","_created_at":"2014-09-30T00:00:00.000Z","_age_weeks":438,"_stars_per_week":6.72,"_topics":[],"_last_commit_date":"2020-04-07T00:00:00.000Z","_pop_contributor_count":30,"_pop_contributor_logins":["TimShawver","andyfaff","blink1073@mongodb","consideRatio@sundellopensourceconsultingab","fhgd","greenberga","hottwaj","itcarroll","snth","ssanderson"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["mongodb","sundellopensourceconsultingab"],"_pop_contributor_orgs_raw":["MongoDB","Sundell Open Source Consulting AB"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":7,"_pop_closed_issues_count":0,"_pop_created_since_days":102,"_pop_updated_since_days":35,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":7.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":22.79,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/quantopian/qgrid/master/README.rst","_readme_localurl":"quantopian~qgrid~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/quantopian/qgrid/master/requirements.txt","https://raw.githubusercontent.com/quantopian/qgrid/master/setup.py"],"_requirements_localurls":["quantopian~qgrid~requirements.txt","quantopian~qgrid~setup.py"]},{"index":792,"category":"ml-dl","githuburl":"https://github.com/facebookincubator/aitemplate","featured":null,"links":null,"description":null,"_repopath":"facebookincubator/aitemplate","_reponame":"AITemplate","_stars":2944,"_forks":232,"_watches":79,"_language":"Python","_homepage":"","_description":"AITemplate is a Python framework which renders neural network into high performance CUDA/HIP C++ code. Specialized for FP16 TensorCore (NVIDIA GPU) and MatrixCore (AMD GPU) inference.","_organization":"facebookincubator","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-07-15T00:00:00.000Z","_age_weeks":31,"_stars_per_week":92.83,"_topics":[],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":45,"_pop_contributor_logins":["antinucleon@facebook","chenyang78@meta","frank-wei","hl475","ipiszy@facebook","muchulee8","qxy11","tenpercent","terrychenism","tissue3@cornelluniversity"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cornelluniversity","facebook","meta"],"_pop_contributor_orgs_raw":["Cornell University","Facebook","Meta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.08,"_pop_updated_issues_count":218,"_pop_closed_issues_count":169,"_pop_created_since_days":7,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":218.0,"_pop_comment_count":673.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.1,"_pop_dependents_count":0,"_pop_score":40.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookincubator/aitemplate/master/README.md","_readme_localurl":"facebookincubator~aitemplate~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":624,"category":"util","githuburl":"https://github.com/more-itertools/more-itertools","featured":null,"links":null,"description":null,"_repopath":"more-itertools/more-itertools","_reponame":"more-itertools","_stars":2943,"_forks":235,"_watches":36,"_language":"Python","_homepage":"https://more-itertools.rtfd.io","_description":"more-itertools: More routines for operating on iterables, beyond itertools","_organization":"more-itertools","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-04-26T00:00:00.000Z","_age_weeks":564,"_stars_per_week":5.21,"_topics":[],"_last_commit_date":"2023-01-26T00:00:00.000Z","_pop_contributor_count":96,"_pop_contributor_logins":["MarcinKonowalczyk@universityofoxford","N8Brooks","bbayles@wurlinc","diazona","erikrose@mozillagoogle","ilai-deutel@google","jaraco@google","jferard","michael-celani","nanouasyn"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","mozillagoogle","universityofoxford","wurlinc"],"_pop_contributor_orgs_raw":["@google","@mozilla @google","@wurlinc ","Google","University of Oxford"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.46,"_pop_updated_issues_count":28,"_pop_closed_issues_count":13,"_pop_created_since_days":132,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":28.0,"_pop_comment_count":49.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":44.82,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/more-itertools/more-itertools/master/README.rst","_readme_localurl":"more-itertools~more-itertools~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/more-itertools/more-itertools/master/setup.py","https://raw.githubusercontent.com/more-itertools/more-itertools/master/pyproject.toml"],"_requirements_localurls":["more-itertools~more-itertools~setup.py","more-itertools~more-itertools~pyproject.toml"]},{"index":704,"category":"data","githuburl":"https://github.com/pyeve/cerberus","featured":null,"links":null,"description":null,"_repopath":"pyeve/cerberus","_reponame":"cerberus","_stars":2938,"_forks":230,"_watches":48,"_language":"Python","_homepage":"http://python-cerberus.org","_description":"cerberus: Lightweight, extensible data validation library for Python","_organization":"pyeve","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-10-10T00:00:00.000Z","_age_weeks":541,"_stars_per_week":5.43,"_topics":["python","data-validation"],"_last_commit_date":"2021-05-05T00:00:00.000Z","_pop_contributor_count":63,"_pop_contributor_logins":["CD3@forthaysstateuniversity(fhsu)","baubie@qreserve","calve","crunk1","dkellner","funkyfuture","girogiro","hvdklauw@zupr-io","martijnvermaat","nicolaiarocci@cir2000"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cir2000","forthaysstateuniversity(fhsu)","qreserve","zupr-io"],"_pop_contributor_orgs_raw":["@zupr-io ","CIR 2000","Fort Hays State University (FHSU)","QReserve Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":7,"_pop_closed_issues_count":2,"_pop_created_since_days":126,"_pop_updated_since_days":22,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":7.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":30.76,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyeve/cerberus/master/README.rst","_readme_localurl":"pyeve~cerberus~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyeve/cerberus/master/setup.py","https://raw.githubusercontent.com/pyeve/cerberus/master/pyproject.toml"],"_requirements_localurls":["pyeve~cerberus~setup.py","pyeve~cerberus~pyproject.toml"]},{"index":476,"category":"gis","githuburl":"https://github.com/holoviz/datashader","featured":1.0,"links":null,"description":null,"_repopath":"holoviz/datashader","_reponame":"datashader","_stars":2925,"_forks":362,"_watches":95,"_language":"Python","_homepage":"http://datashader.org","_description":"datashader: Quickly and accurately render even the largest data.","_organization":"holoviz","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-12-23T00:00:00.000Z","_age_weeks":374,"_stars_per_week":7.82,"_topics":["holoviz","datashader","data-visualizations","rasterization"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":52,"_pop_contributor_logins":["ceball","gbrener","ianthomas23@anaconda","jbcrail","jbednar@anaconda","jcrist@voltrondata","jonmmease@hextechnologies","jsignell@azavea","maximlt@anaconda","philippjfr@anaconda"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","azavea","hextechnologies","voltrondata"],"_pop_contributor_orgs_raw":["@azavea","@voltrondata","Anaconda","Anaconda Inc.","Anaconda, Inc.","Hex Technologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.88,"_pop_updated_issues_count":47,"_pop_closed_issues_count":32,"_pop_created_since_days":87,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":47.0,"_pop_comment_count":62.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":43.47,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/datashader/master/README.md","_readme_localurl":"holoviz~datashader~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/datashader/master/setup.py","https://raw.githubusercontent.com/holoviz/datashader/master/pyproject.toml"],"_requirements_localurls":["holoviz~datashader~setup.py","holoviz~datashader~pyproject.toml"]},{"index":937,"category":"ml-dl","githuburl":"https://github.com/williamyang1991/vtoonify","featured":null,"links":null,"description":null,"_repopath":"williamyang1991/vtoonify","_reponame":"VToonify","_stars":2921,"_forks":356,"_watches":61,"_language":"Jupyter Notebook","_homepage":"","_description":"[SIGGRAPH Asia 2022] VToonify: Controllable High-Resolution Portrait Video Style Transfer","_organization":"williamyang1991","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-09-09T00:00:00.000Z","_age_weeks":23,"_stars_per_week":123.17,"_topics":["face","siggraph-asia","style-transfer","stylegan2","toonify","video-style-transfer"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["AK391@huggingface","EndlessSora@nanyangtechnologicaluniversity","neeksor","williamyang1991@ntu"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["huggingface","nanyangtechnologicaluniversity","ntu"],"_pop_contributor_orgs_raw":["Huggingface","NTU","Nanyang Technological University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.21,"_pop_updated_issues_count":22,"_pop_closed_issues_count":7,"_pop_created_since_days":6,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":22.0,"_pop_comment_count":48.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":27.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/williamyang1991/vtoonify/master/README.md","_readme_localurl":"williamyang1991~vtoonify~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":660,"category":"ml","githuburl":"https://github.com/pytorch/glow","featured":null,"links":null,"description":null,"_repopath":"pytorch/glow","_reponame":"glow","_stars":2915,"_forks":663,"_watches":155,"_language":"C++","_homepage":null,"_description":"glow: Compiler for Neural Network hardware accelerators","_organization":"pytorch","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-09-29T00:00:00.000Z","_age_weeks":281,"_stars_per_week":10.35,"_topics":[],"_last_commit_date":"2023-02-02T00:00:00.000Z","_pop_contributor_count":333,"_pop_contributor_logins":["artemrakhov-glow","bertmaher","gcatron","jackm321@facebook","jfix71","nadavrot","nickgg","opti-mix","qcolombet","yinghai@facebook"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook"],"_pop_contributor_orgs_raw":["@facebook ","Facebook"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.73,"_pop_updated_issues_count":28,"_pop_closed_issues_count":5,"_pop_created_since_days":66,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":28.0,"_pop_comment_count":43.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":37.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/glow/master/README.md","_readme_localurl":"pytorch~glow~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":761,"category":"sim","githuburl":"https://github.com/qiskit/qiskit","featured":null,"links":null,"description":null,"_repopath":"qiskit/qiskit","_reponame":"qiskit","_stars":2896,"_forks":775,"_watches":97,"_language":"OpenQASM","_homepage":"https://qiskit.org","_description":"Qiskit is an open-source SDK for working with quantum computers at the level of circuits, algorithms, and application modules.","_organization":"qiskit","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2018-12-12T00:00:00.000Z","_age_weeks":219,"_stars_per_week":13.22,"_topics":["qiskit","quantum-computing","quantum-programming-language","documentation"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":158,"_pop_contributor_logins":["SooluThomas@ibm","delapuente@ibmquantum","derivation@ibm","diego-plan9@ibmresearch","hushaohan@jpmorganchase&co.","jakelishman@ibm","jaygambetta@ibm","mtreinish","nonhermitian@ibm","qiskit-bot"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ibm","ibmquantum","ibmresearch","jpmorganchase&co."],"_pop_contributor_orgs_raw":["@IBM","@IBM ","@IBMQuantum","@IBMResearch ","IBM","JPMorgan Chase & Co."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.6,"_pop_updated_issues_count":55,"_pop_closed_issues_count":30,"_pop_created_since_days":51,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":21,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":57.0,"_pop_comment_count":41.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":45.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/qiskit/qiskit/master/README.md","_readme_localurl":"qiskit~qiskit~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/qiskit/qiskit/master/setup.py"],"_requirements_localurls":["qiskit~qiskit~setup.py"]},{"index":709,"category":"pandas","githuburl":"https://github.com/nalepae/pandarallel","featured":1.0,"links":null,"description":null,"_repopath":"nalepae/pandarallel","_reponame":"pandarallel","_stars":2896,"_forks":175,"_watches":26,"_language":"Python","_homepage":"https://nalepae.github.io/pandarallel","_description":"pandarallel: A simple and efficient tool to parallelize Pandas operations on all available\u00a0CPUs","_organization":"nalepae","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-03-10T00:00:00.000Z","_age_weeks":206,"_stars_per_week":14.03,"_topics":["pandas","python","parallel"],"_last_commit_date":"2023-02-12T00:00:00.000Z","_pop_contributor_count":25,"_pop_contributor_logins":["alvail","apahl@mpiofmolecularphysiology(dortmund)","bra-fsn","dice89@outsmart.aigmbh","jorenham@boatboatboat","masguit42@intema.ai","nalepae@https://www.kiln.fi/","till-m@swissdatasciencecenter","tobiasedwards","vaaaaanquish@caddi"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["boatboatboat","caddi","https://www.kiln.fi/","intema.ai","mpiofmolecularphysiology(dortmund)","outsmart.aigmbh","swissdatasciencecenter"],"_pop_contributor_orgs_raw":["@SwissDataScienceCenter","BoatBoatBoat","CADDi inc.","INTEMA.AI","MPI of Molecular Physiology (Dortmund)","https://www.kiln.fi/","outsmart.ai GmbH"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.96,"_pop_updated_issues_count":32,"_pop_closed_issues_count":21,"_pop_created_since_days":48,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":32.0,"_pop_comment_count":61.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":42.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nalepae/pandarallel/master/README.md","_readme_localurl":"nalepae~pandarallel~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nalepae/pandarallel/master/setup.py"],"_requirements_localurls":["nalepae~pandarallel~setup.py"]},{"index":488,"category":"util","githuburl":"https://github.com/pydata/xarray","featured":null,"links":null,"description":null,"_repopath":"pydata/xarray","_reponame":"xarray","_stars":2875,"_forks":878,"_watches":106,"_language":"Python","_homepage":"https://xarray.dev","_description":"xarray: N-D labeled arrays and datasets in Python","_organization":"pydata","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2013-09-30T00:00:00.000Z","_age_weeks":490,"_stars_per_week":5.86,"_topics":["python","netcdf","numpy","pandas","xarray","dask"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":411,"_pop_contributor_logins":["Illviljan","clarkfitzg@mathandstatsdepartment","dcherian@ncar","fmaussion@universityofinnsbruck","fujiisoup","keewis","mathause@iacethzurich","max-sixty","shoyer@google","spencerkclark@allenai/noaa-gfdl"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["allenai/noaa-gfdl","google","iacethzurich","mathandstatsdepartment","ncar","universityofinnsbruck"],"_pop_contributor_orgs_raw":["@NCAR","@allenai / @NOAA-GFDL","@google ","IAC @ ETH Zurich","Math and Stats Department","University of Innsbruck"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.63,"_pop_updated_issues_count":314,"_pop_closed_issues_count":156,"_pop_created_since_days":114,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":314.0,"_pop_comment_count":666.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":58.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pydata/xarray/master/README.md","_readme_localurl":"pydata~xarray~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pydata/xarray/master/requirements.txt","https://raw.githubusercontent.com/pydata/xarray/master/setup.py","https://raw.githubusercontent.com/pydata/xarray/master/pyproject.toml"],"_requirements_localurls":["pydata~xarray~requirements.txt","pydata~xarray~setup.py","pydata~xarray~pyproject.toml"]},{"index":261,"category":"time-series","githuburl":"https://github.com/salesforce/merlion","featured":null,"links":null,"description":null,"_repopath":"salesforce/merlion","_reponame":"Merlion","_stars":2875,"_forks":248,"_watches":46,"_language":"Python","_homepage":"","_description":"Merlion: A Machine Learning Framework for Time Series Intelligence","_organization":"salesforce","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2021-07-28T00:00:00.000Z","_age_weeks":82,"_stars_per_week":35.06,"_topics":["time-series","anomaly-detection","forecasting","machine-learning","benchmarking","automl","ensemble-learning"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":14,"_pop_contributor_logins":["Emerald01@salesforceresearch","Shreyanand@redhat","aadyotb@salesforce","chenghaoliu89","cnll0075","isenilov@twilio","jonwiggins@chartbeatillinoishackny","paulkass","rafaelleinio@wandercom","uchiiii"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["chartbeatillinoishackny","redhat","salesforce","salesforceresearch","twilio","wandercom"],"_pop_contributor_orgs_raw":["@Chartbeat @Illinois @hackny","@Salesforce","@wandercom","Red Hat Inc.","Salesforce Research","Twilio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.77,"_pop_updated_issues_count":15,"_pop_closed_issues_count":12,"_pop_created_since_days":19,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":15.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":36.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/merlion/master/README.md","_readme_localurl":"salesforce~merlion~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/salesforce/merlion/master/setup.py"],"_requirements_localurls":["salesforce~merlion~setup.py"]},{"index":787,"category":"study","githuburl":"https://github.com/cosmicpython/book","featured":null,"links":null,"description":null,"_repopath":"cosmicpython/book","_reponame":"book","_stars":2865,"_forks":486,"_watches":94,"_language":"Python","_homepage":"https://www.cosmicpython.com","_description":"book: A Book about Pythonic Application Architecture Patterns for Managing Complexity. Cosmos is the Opposite of Chaos you see. O'R. wouldn't actually let us call it \"Cosmic Python\" tho.","_organization":"cosmicpython","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2019-02-05T00:00:00.000Z","_age_weeks":211,"_stars_per_week":13.57,"_topics":[],"_last_commit_date":"2023-02-06T00:00:00.000Z","_pop_contributor_count":44,"_pop_contributor_logins":["adrienbrunet","bobthemighty@carbon-re","daniel-butler","gaiachik@madedotcom","hjwp","katherinetozer","luanchang","nadamsoreilly@o'reillymedia","susanmade","xtaje"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["carbon-re","madedotcom","o'reillymedia"],"_pop_contributor_orgs_raw":["@carbon-re ","@madedotcom ","O'Reilly Media"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":27.69,"_readme_filename":"Readme.md","_readme_giturl":"https://raw.githubusercontent.com/cosmicpython/book/master/Readme.md","_readme_localurl":"cosmicpython~book~Readme.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/cosmicpython/book/master/requirements.txt"],"_requirements_localurls":["cosmicpython~book~requirements.txt"]},{"index":154,"category":"pandas","githuburl":"https://github.com/adamerose/pandasgui","featured":null,"links":null,"description":null,"_repopath":"adamerose/pandasgui","_reponame":"PandasGUI","_stars":2839,"_forks":195,"_watches":55,"_language":"Python","_homepage":"","_description":"PandasGUI: A GUI for Pandas DataFrames","_organization":"adamerose","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-06-12T00:00:00.000Z","_age_weeks":193,"_stars_per_week":14.71,"_topics":["pandas","dataframe","gui","viewer"],"_last_commit_date":"2022-03-16T00:00:00.000Z","_pop_contributor_count":13,"_pop_contributor_logins":["John-Ted","Marco-Ray","SayonB","adamerose","fdion@dionresearch","guilecardoso","jmartens","mswastik","slabko"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["dionresearch"],"_pop_contributor_orgs_raw":["Dion Research LLC"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":8,"_pop_closed_issues_count":3,"_pop_created_since_days":45,"_pop_updated_since_days":11,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":8.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":24.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/adamerose/pandasgui/master/README.md","_readme_localurl":"adamerose~pandasgui~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/adamerose/pandasgui/master/requirements.txt","https://raw.githubusercontent.com/adamerose/pandasgui/master/setup.py"],"_requirements_localurls":["adamerose~pandasgui~requirements.txt","adamerose~pandasgui~setup.py"]},{"index":170,"category":"ml","githuburl":"https://github.com/ourownstory/neural_prophet","featured":null,"links":null,"description":null,"_repopath":"ourownstory/neural_prophet","_reponame":"neural_prophet","_stars":2793,"_forks":384,"_watches":50,"_language":"Python","_homepage":"https://neuralprophet.com","_description":"neural_prophet: NeuralProphet: A simple forecasting package","_organization":"ourownstory","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-05-04T00:00:00.000Z","_age_weeks":146,"_stars_per_week":19.09,"_topics":["forecasting","time-series","machine-learning","fbprophet","prophet","forecast","artificial-intelligence","prediction","trend","seasonality","autoregression","pytorch","timeseries","forecasting-algorithm","forecasting-model","neuralprophet","neural","neural-network","python","deep-learning"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":36,"_pop_contributor_logins":["HansikaPH","Kevin-Chen0","LeonieFreisinger","MateusGheorghe@stanforduniversity","alfonsogarciadecorral","bhausleitner","judussoari","karl-richter@technicaluniversityofmunich","noxan","ourownstory@stanforduniversity"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["stanforduniversity","technicaluniversityofmunich"],"_pop_contributor_orgs_raw":["Stanford University","Technical University of Munich"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.92,"_pop_updated_issues_count":245,"_pop_closed_issues_count":157,"_pop_created_since_days":34,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":245.0,"_pop_comment_count":354.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":42.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ourownstory/neural_prophet/master/README.md","_readme_localurl":"ourownstory~neural_prophet~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ourownstory/neural_prophet/master/setup.py","https://raw.githubusercontent.com/ourownstory/neural_prophet/master/pyproject.toml"],"_requirements_localurls":["ourownstory~neural_prophet~setup.py","ourownstory~neural_prophet~pyproject.toml"]},{"index":203,"category":"viz","githuburl":"https://github.com/ml-tooling/opyrator","featured":null,"links":null,"description":null,"_repopath":"ml-tooling/opyrator","_reponame":"opyrator","_stars":2791,"_forks":137,"_watches":48,"_language":"Python","_homepage":"https://opyrator-playground.mltooling.org","_description":"opyrator: \ud83e\ude84 Turns your machine learning code into microservices with web API, interactive GUI, and more.","_organization":"ml-tooling","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2021-04-06T00:00:00.000Z","_age_weeks":98,"_stars_per_week":28.44,"_topics":["fastapi","streamlit","pydantic","python","microservices","serverless","faas","functions","python-functions","machine-learning","deployment","type-hints"],"_last_commit_date":"2021-05-06T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["JopaXd","LukasMasuch","adriangb","raethlein"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":9,"_pop_closed_issues_count":4,"_pop_created_since_days":23,"_pop_updated_since_days":22,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":9.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":12.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ml-tooling/opyrator/master/README.md","_readme_localurl":"ml-tooling~opyrator~README.md","_requirements_filenames":["setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/ml-tooling/opyrator/master/setup.py","https://raw.githubusercontent.com/ml-tooling/opyrator/master/pyproject.toml","https://raw.githubusercontent.com/ml-tooling/opyrator/master/Pipfile"],"_requirements_localurls":["ml-tooling~opyrator~setup.py","ml-tooling~opyrator~pyproject.toml","ml-tooling~opyrator~Pipfile"]},{"index":641,"category":"testing","githuburl":"https://github.com/behave/behave","featured":null,"links":null,"description":null,"_repopath":"behave/behave","_reponame":"behave","_stars":2769,"_forks":608,"_watches":119,"_language":"Python","_homepage":"","_description":"behave: BDD, Python style.","_organization":"behave","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2011-10-25T00:00:00.000Z","_age_weeks":591,"_stars_per_week":4.68,"_topics":[],"_last_commit_date":"2022-12-19T00:00:00.000Z","_pop_contributor_count":86,"_pop_contributor_logins":["Katherinesun@smartsgroupmarketsurveillance,nasdaqomx","berdroid","bittner@painless-software","florentx","jeamland","jenisys","johbo@bo-techgmbh&co.kg","msabramo@adobe","r1chardj0n3s","vrutkovs@redhat"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["adobe","bo-techgmbh&co.kg","painless-software","redhat","smartsgroupmarketsurveillance,nasdaqomx"],"_pop_contributor_orgs_raw":["@adobe","@painless-software ","Red Hat","SMARTS Group Market Surveillance, NASDAQ OMX","bo-tech GmbH & Co. KG"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.83,"_pop_updated_issues_count":19,"_pop_closed_issues_count":11,"_pop_created_since_days":138,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":19.0,"_pop_comment_count":33.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":36.52,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/behave/behave/master/README.rst","_readme_localurl":"behave~behave~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/behave/behave/master/setup.py"],"_requirements_localurls":["behave~behave~setup.py"]},{"index":34,"category":"nlp","githuburl":"https://github.com/jbesomi/texthero","featured":null,"links":null,"description":null,"_repopath":"jbesomi/texthero","_reponame":"texthero","_stars":2714,"_forks":230,"_watches":43,"_language":"Python","_homepage":"https://texthero.org","_description":"texthero: Text preprocessing, representation and visualization from zero to hero.","_organization":"jbesomi","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2020-04-06T00:00:00.000Z","_age_weeks":150,"_stars_per_week":18.06,"_topics":["text-preprocessing","text-representation","text-visualization","nlp","word-embeddings","machine-learning","text-mining","nlp-pipeline","text-clustering","texthero"],"_last_commit_date":"2022-10-28T00:00:00.000Z","_pop_contributor_count":20,"_pop_contributor_logins":["ParthGandhi","Peritract@sigmalabs","cedricconol","henrifroese@imctrading","ishanarora04","jbesomi","mk2510@aaltouniversity","selimelawwa@incorta","sleeper","vidyap-xgboost@fiolabs-internal"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aaltouniversity","fiolabs-internal","imctrading","incorta","sigmalabs"],"_pop_contributor_orgs_raw":["@Incorta ","@fiolabs-internal ","Aalto University","IMC Trading","Sigma Labs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":35,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":4.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":28.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jbesomi/texthero/master/README.md","_readme_localurl":"jbesomi~texthero~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jbesomi/texthero/master/setup.py"],"_requirements_localurls":["jbesomi~texthero~setup.py"]},{"index":915,"category":"util","githuburl":"https://github.com/ets-labs/python-dependency-injector","featured":1.0,"links":null,"description":null,"_repopath":"ets-labs/python-dependency-injector","_reponame":"python-dependency-injector","_stars":2685,"_forks":200,"_watches":45,"_language":"Python","_homepage":"https://python-dependency-injector.ets-labs.org/","_description":"python-dependency-injector: Dependency injection framework for Python","_organization":"ets-labs","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-01-04T00:00:00.000Z","_age_weeks":424,"_stars_per_week":6.33,"_topics":["python","dependency-injection","ioc","ioc-container","factory","singleton","design-patterns","dependency-injection-container","dependency-injection-framework","flask","aiohttp","asyncio","python3","python-3","python-2","flask-application","flask-restful","threadlocal"],"_last_commit_date":"2022-12-19T00:00:00.000Z","_pop_contributor_count":29,"_pop_contributor_logins":["ebr@brodsky.dev","kinow@barcelonasupercomputingcenter","kootoopas@nuclearmode","metaperl","piperubio@silocydataspa","rda-dev","rmk135@ets-labspythontechnicalleader","sonthonaxrk","withshubh@tooljet","xotonic@lux-core"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["barcelonasupercomputingcenter","brodsky.dev","ets-labspythontechnicalleader","lux-core","nuclearmode","silocydataspa","tooljet"],"_pop_contributor_orgs_raw":["@LUX-Core ","@ToolJet","@ets-labs Python Technical Leader","@nuclearmode","Barcelona Supercomputing Center","SilocyData SPA","brodsky.dev"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.67,"_pop_updated_issues_count":40,"_pop_closed_issues_count":16,"_pop_created_since_days":99,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":40,"_pop_recent_releases_adjusted_count":40,"_pop_issue_count":40.0,"_pop_comment_count":37.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":42.2,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/ets-labs/python-dependency-injector/master/README.rst","_readme_localurl":"ets-labs~python-dependency-injector~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ets-labs/python-dependency-injector/master/requirements.txt","https://raw.githubusercontent.com/ets-labs/python-dependency-injector/master/setup.py"],"_requirements_localurls":["ets-labs~python-dependency-injector~requirements.txt","ets-labs~python-dependency-injector~setup.py"]},{"index":130,"category":"ml-dl","githuburl":"https://github.com/explosion/thinc","featured":null,"links":null,"description":null,"_repopath":"explosion/thinc","_reponame":"thinc","_stars":2669,"_forks":270,"_watches":82,"_language":"Python","_homepage":"https://thinc.ai","_description":"thinc: \ud83d\udd2e A refreshing functional take on deep learning, compatible with your favorite libraries","_organization":"explosion","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-10-16T00:00:00.000Z","_age_weeks":435,"_stars_per_week":6.12,"_topics":["machine-learning","deep-learning","artificial-intelligence","ai","python","nlp","natural-language-processing","spacy","machine-learning-library","type-checking","functional-programming","pytorch","tensorflow","mxnet","jax"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":61,"_pop_contributor_logins":["adrianeboyd","danieldk@explosion","henningpeters","honnibal@founderexplosion","ines@founderexplosion","justindujardin@dujardinconsulting,mathy","shadeMe","svlandeg@explosion&oxykodit","syllog1sm@founderexplosion","tiangolo"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["dujardinconsulting,mathy","explosion","explosion&oxykodit","founderexplosion"],"_pop_contributor_orgs_raw":["@explosion ","DuJardin Consulting, @mathy","Explosion & OxyKodit","Founder @explosion","Founder @explosion "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.23,"_pop_updated_issues_count":56,"_pop_closed_issues_count":48,"_pop_created_since_days":102,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":56.0,"_pop_comment_count":36.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":45.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/thinc/master/README.md","_readme_localurl":"explosion~thinc~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/explosion/thinc/master/requirements.txt","https://raw.githubusercontent.com/explosion/thinc/master/setup.py","https://raw.githubusercontent.com/explosion/thinc/master/pyproject.toml"],"_requirements_localurls":["explosion~thinc~requirements.txt","explosion~thinc~setup.py","explosion~thinc~pyproject.toml"]},{"index":111,"category":"ml","githuburl":"https://github.com/teamhg-memex/eli5","featured":null,"links":null,"description":null,"_repopath":"teamhg-memex/eli5","_reponame":"eli5","_stars":2647,"_forks":326,"_watches":70,"_language":"Jupyter Notebook","_homepage":"http://eli5.readthedocs.io","_description":"eli5: A library for debugging/inspecting machine learning classifiers and explaining their predictions","_organization":"teamhg-memex","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2016-09-15T00:00:00.000Z","_age_weeks":335,"_stars_per_week":7.88,"_topics":["scikit-learn","machine-learning","xgboost","lightgbm","crfsuite","inspection","explanation","nlp","data-science","python"],"_last_commit_date":"2020-01-22T00:00:00.000Z","_pop_contributor_count":14,"_pop_contributor_logins":["AshwinB-hat","ivanprado@www.ivanprado.es","jnothman@canva","kmike@zytedata,scrapinghub","krkd","lopuhin@zyte","mehaase@infosecandaimitre","rg2410@gardeassetmanagement","teabolt","zzz4zzz"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["canva","gardeassetmanagement","infosecandaimitre","www.ivanprado.es","zyte","zytedata,scrapinghub"],"_pop_contributor_orgs_raw":["@zytedata, @ScrapingHub","Canva","Garde Asset Management","Infosec and AI @MITRE","Zyte","www.ivanprado.es"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":78,"_pop_updated_since_days":38,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":24.11,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/teamhg-memex/eli5/master/README.rst","_readme_localurl":"teamhg-memex~eli5~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/teamhg-memex/eli5/master/requirements.txt","https://raw.githubusercontent.com/teamhg-memex/eli5/master/setup.py"],"_requirements_localurls":["teamhg-memex~eli5~requirements.txt","teamhg-memex~eli5~setup.py"]},{"index":113,"category":"nlp","githuburl":"https://github.com/huggingface/neuralcoref","featured":null,"links":null,"description":null,"_repopath":"huggingface/neuralcoref","_reponame":"neuralcoref","_stars":2647,"_forks":461,"_watches":97,"_language":"C","_homepage":"https://huggingface.co/coref/","_description":"neuralcoref: \u2728Fast Coreference Resolution in spaCy with Neural Networks","_organization":"huggingface","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2017-07-03T00:00:00.000Z","_age_weeks":294,"_stars_per_week":8.99,"_topics":["python","machine-learning","coreference","spacy","coreference-resolution","spacy-extension","spacy-pipeline","nlp","neural-networks","pytorch"],"_last_commit_date":"2021-06-22T00:00:00.000Z","_pop_contributor_count":21,"_pop_contributor_logins":["Abhijit-2592@mlgoogle","Elizabeth2507","bgamari@welltypedllp","cbiehl","janithwanni@universityofsrijayewardenepura","julien-c@huggingface","ravenscroftj@filamentai","shepdl","svlandeg@explosion&oxykodit","thomwolf@huggingface"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["explosion&oxykodit","filamentai","huggingface","mlgoogle","universityofsrijayewardenepura","welltypedllp"],"_pop_contributor_orgs_raw":["@FilamentAI ","@huggingface ","Explosion & OxyKodit","ML @Google","University of Sri Jayewardenepura","Well Typed LLP"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":5,"_pop_closed_issues_count":2,"_pop_created_since_days":69,"_pop_updated_since_days":20,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":5.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":26.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/neuralcoref/master/README.md","_readme_localurl":"huggingface~neuralcoref~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/neuralcoref/master/requirements.txt","https://raw.githubusercontent.com/huggingface/neuralcoref/master/setup.py"],"_requirements_localurls":["huggingface~neuralcoref~requirements.txt","huggingface~neuralcoref~setup.py"]},{"index":428,"category":"util","githuburl":"https://github.com/pycqa/flake8","featured":null,"links":null,"description":null,"_repopath":"pycqa/flake8","_reponame":"flake8","_stars":2645,"_forks":272,"_watches":34,"_language":"Python","_homepage":"https://flake8.pycqa.org","_description":"flake8 is a python tool that glues together pycodestyle, pyflakes, mccabe, and third-party plugins to check the style and quality of some python code.","_organization":"pycqa","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-09-13T00:00:00.000Z","_age_weeks":440,"_stars_per_week":6.0,"_topics":["python","python3","static-analysis","static-code-analysis","linter","linter-flake8","stylelint","styleguide","style-guide","flake8","pep8","complexity-analysis"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":172,"_pop_contributor_logins":["asottile","carljm@instagram","ericvw@bloomberg","florentx","jdufresne@pioneervalleybooks","pre-commit-ci[bot]","scop@upcloudltd","sigmavirus24@tableau&salesforce","tarekziade@elastic","xZise"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bloomberg","elastic","instagram","pioneervalleybooks","tableau&salesforce","upcloudltd"],"_pop_contributor_orgs_raw":["@UpCloudLtd ","@bloomberg ","@elastic ","@tableau & @salesforce","Instagram","Pioneer Valley Books"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.73,"_pop_updated_issues_count":65,"_pop_closed_issues_count":61,"_pop_created_since_days":103,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":65.0,"_pop_comment_count":110.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":51.12,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pycqa/flake8/master/README.rst","_readme_localurl":"pycqa~flake8~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pycqa/flake8/master/setup.py"],"_requirements_localurls":["pycqa~flake8~setup.py"]},{"index":801,"category":"data","githuburl":"https://github.com/pallets/itsdangerous","featured":null,"links":null,"description":null,"_repopath":"pallets/itsdangerous","_reponame":"itsdangerous","_stars":2632,"_forks":215,"_watches":57,"_language":"Python","_homepage":"https://itsdangerous.palletsprojects.com","_description":"itsdangerous: Safely pass trusted data to untrusted environments and back.","_organization":"pallets","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2011-06-24T00:00:00.000Z","_age_weeks":608,"_stars_per_week":4.32,"_topics":["python","security","hmac","serialization","itsdangerous","pallets"],"_last_commit_date":"2023-02-07T00:00:00.000Z","_pop_contributor_count":42,"_pop_contributor_logins":["ThomasWaldmann","alanhamlett@wakatime","davidism","dependabot-preview[bot]","dependabot[bot]","ft-arnout@fireteam","lepture@hsiaoming","mitsuhiko@sentry","pre-commit-ci[bot]","untitaker@getsentry"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["fireteam","getsentry","hsiaoming","sentry","wakatime"],"_pop_contributor_orgs_raw":["@getsentry ","@hsiaoming ","@wakatime","Fireteam","Sentry"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.77,"_pop_updated_issues_count":16,"_pop_closed_issues_count":16,"_pop_created_since_days":142,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":16.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.1,"_pop_dependents_count":0,"_pop_score":38.2,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/itsdangerous/master/README.rst","_readme_localurl":"pallets~itsdangerous~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/itsdangerous/master/pyproject.toml"],"_requirements_localurls":["pallets~itsdangerous~pyproject.toml"]},{"index":886,"category":"study","githuburl":"https://github.com/huggingface/deep-rl-class","featured":null,"links":null,"description":null,"_repopath":"huggingface/deep-rl-class","_reponame":"deep-rl-class","_stars":2627,"_forks":348,"_watches":86,"_language":"Jupyter Notebook","_homepage":"","_description":"deep-rl-class: This repo contains the syllabus of the Hugging Face Deep Reinforcement Learning Course.","_organization":"huggingface","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-04-21T00:00:00.000Z","_age_weeks":43,"_stars_per_week":59.9,"_topics":["deep-reinforcement-learning","reinforcement-learning","reinforcement-learning-excercises","deep-learning"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":44,"_pop_contributor_logins":["Artachtron","Mike-Wazowsk1","SuperSecureHuman","avoroshilov","dario248","diskshima","imflash217","osanseviero@huggingface","simoninithomas@huggingface","theicfire"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["huggingface"],"_pop_contributor_orgs_raw":["@huggingface","Hugging Face"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.75,"_pop_updated_issues_count":138,"_pop_closed_issues_count":104,"_pop_created_since_days":10,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":138.0,"_pop_comment_count":240.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":34.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/deep-rl-class/master/README.md","_readme_localurl":"huggingface~deep-rl-class~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":539,"category":"nlp","githuburl":"https://github.com/huawei-noah/pretrained-language-model","featured":null,"links":null,"description":null,"_repopath":"huawei-noah/pretrained-language-model","_reponame":"Pretrained-Language-Model","_stars":2626,"_forks":562,"_watches":52,"_language":"Python","_homepage":"","_description":"Pretrained-Language-Model: Pretrained language model and its related optimization techniques developed by Huawei Noah's Ark Lab.","_organization":"huawei-noah","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-12-02T00:00:00.000Z","_age_weeks":168,"_stars_per_week":15.6,"_topics":["knowledge-distillation","model-compression","quantization","pretrained-models","large-scale-distributed"],"_last_commit_date":"2022-12-25T00:00:00.000Z","_pop_contributor_count":20,"_pop_contributor_logins":["ItachiUchihaVictor","MiFei","ghaddarAbs","itsucks","jacobrxz@huawei-noah","jingmu123","jxfeb","mengxj08@nationaluniversityofsingapore","zbravo","zwjyyc@pekingunversity"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["huawei-noah","nationaluniversityofsingapore","pekingunversity"],"_pop_contributor_orgs_raw":["@huawei-noah ","National University of Singapore","Peking unversity"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":18,"_pop_closed_issues_count":4,"_pop_created_since_days":39,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":18.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":28.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huawei-noah/pretrained-language-model/master/README.md","_readme_localurl":"huawei-noah~pretrained-language-model~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":85,"category":"graph","githuburl":"https://github.com/stellargraph/stellargraph","featured":null,"links":null,"description":null,"_repopath":"stellargraph/stellargraph","_reponame":"stellargraph","_stars":2625,"_forks":401,"_watches":62,"_language":"Python","_homepage":"https://stellargraph.readthedocs.io/","_description":"StellarGraph - Machine Learning on Graphs","_organization":"stellargraph","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-04-13T00:00:00.000Z","_age_weeks":253,"_stars_per_week":10.35,"_topics":["graphs","machine-learning","machine-learning-algorithms","graph-convolutional-networks","networkx","geometric-deep-learning","saliency-map","interpretability","heterogeneous-networks","graph-neural-networks","graph-analysis","graph-machine-learning","gcn","link-prediction","stellargraph-library","graph-data","python","deep-learning","data-science"],"_last_commit_date":"2021-10-29T00:00:00.000Z","_pop_contributor_count":36,"_pop_contributor_logins":["PantelisElinas","adocherty@exoflare","daokunzhang@monashuniversity","habiba-h","huonw@xoflare","kieranricardo","kjun9","sktzwhj","timpitman@exoflare","youph@data61"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["data61","exoflare","monashuniversity","xoflare"],"_pop_contributor_orgs_raw":["@data61 ","@xoflare ","ExoFlare","Monash University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":20,"_pop_closed_issues_count":3,"_pop_created_since_days":59,"_pop_updated_since_days":16,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":20.0,"_pop_comment_count":16.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":29.72,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/stellargraph/stellargraph/master/README.md","_readme_localurl":"stellargraph~stellargraph~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/stellargraph/stellargraph/master/requirements.txt","https://raw.githubusercontent.com/stellargraph/stellargraph/master/setup.py"],"_requirements_localurls":["stellargraph~stellargraph~requirements.txt","stellargraph~stellargraph~setup.py"]},{"index":748,"category":"study","githuburl":"https://github.com/zhanymkanov/fastapi-best-practices","featured":null,"links":null,"description":null,"_repopath":"zhanymkanov/fastapi-best-practices","_reponame":"fastapi-best-practices","_stars":2619,"_forks":189,"_watches":51,"_language":null,"_homepage":"","_description":"fastapi-best-practices: FastAPI Best Practices and Conventions we used @ hi.peerlink.me","_organization":"zhanymkanov","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-08-09T00:00:00.000Z","_age_weeks":28,"_stars_per_week":93.06,"_topics":["fastapi","best-practices"],"_last_commit_date":"2023-01-09T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["anton-shum","nbanic","paulovitorweb","zhanymkanov@viaprotocol"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["viaprotocol"],"_pop_contributor_orgs_raw":["@viaprotocol"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.87,"_pop_updated_issues_count":11,"_pop_closed_issues_count":6,"_pop_created_since_days":7,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":11.0,"_pop_comment_count":19.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":19.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zhanymkanov/fastapi-best-practices/master/README.md","_readme_localurl":"zhanymkanov~fastapi-best-practices~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":611,"category":"debug","githuburl":"https://github.com/inducer/pudb","featured":null,"links":null,"description":null,"_repopath":"inducer/pudb","_reponame":"pudb","_stars":2594,"_forks":217,"_watches":47,"_language":"Python","_homepage":"https://documen.tician.de/pudb/","_description":"pudb: Full-screen console debugger for Python","_organization":"inducer","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2011-05-13T00:00:00.000Z","_age_weeks":614,"_stars_per_week":4.22,"_topics":["python","debugger","pytest","pytest-plugin","pdb","ipython","bpython","urwid","debug"],"_last_commit_date":"2023-01-10T00:00:00.000Z","_pop_contributor_count":91,"_pop_contributor_logins":["asmeurer@quansight","bulletmark","epmoyer","inducer@scientificcomputing,csuiuc","jstriebel@scalableminds","mvanderkamp","nmichaud","swarmer","wronglink","xywei@uiuc"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["quansight","scalableminds","scientificcomputing,csuiuc","uiuc"],"_pop_contributor_orgs_raw":["@Quansight ","@scalableminds","Scientific Computing, CS@UIUC","UIUC"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.75,"_pop_updated_issues_count":16,"_pop_closed_issues_count":9,"_pop_created_since_days":143,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":16.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":40.26,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/inducer/pudb/master/README.rst","_readme_localurl":"inducer~pudb~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/inducer/pudb/master/setup.py"],"_requirements_localurls":["inducer~pudb~setup.py"]},{"index":369,"category":"nlp","githuburl":"https://github.com/bytedance/lightseq","featured":null,"links":null,"description":null,"_repopath":"bytedance/lightseq","_reponame":"lightseq","_stars":2591,"_forks":296,"_watches":53,"_language":"C++","_homepage":"","_description":"LightSeq: A High Performance Library for Sequence Processing and Generation","_organization":"bytedance","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-12-06T00:00:00.000Z","_age_weeks":167,"_stars_per_week":15.45,"_topics":["inference","transformer","beam-search","bert","cuda","sampling","diverse-decoding","multilingual-nmt","training","bart","gpt","accelerate"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":16,"_pop_contributor_logins":["Anychnn","HandH1998@beihanguniversity","Taka152@bytedance","aachong","godweiyang@bytedanceantnlp","hexisyztem@bytedance,ailab","lileicc@ucsb","neopro12@bytedanceailab","xingyaoww@universityofillinoisaturbana-champaign","zjersey@bytedancethinklab-sjtu"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["beihanguniversity","bytedance","bytedance,ailab","bytedanceailab","bytedanceantnlp","bytedancethinklab-sjtu","ucsb","universityofillinoisaturbana-champaign"],"_pop_contributor_orgs_raw":["@ByteDance @AntNLP","@bytedance @Thinklab-SJTU","Beihang University","ByteDance Inc.","Bytedance AI Lab","Bytedance, AI Lab","UCSB","University of Illinois at Urbana-Champaign"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.31,"_pop_updated_issues_count":52,"_pop_closed_issues_count":30,"_pop_created_since_days":39,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":52.0,"_pop_comment_count":55.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":39.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bytedance/lightseq/master/README.md","_readme_localurl":"bytedance~lightseq~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bytedance/lightseq/master/setup.py"],"_requirements_localurls":["bytedance~lightseq~setup.py"]},{"index":431,"category":"viz","githuburl":"https://github.com/holoviz/panel","featured":null,"links":null,"description":null,"_repopath":"holoviz/panel","_reponame":"panel","_stars":2586,"_forks":320,"_watches":48,"_language":"Python","_homepage":"https://panel.holoviz.org","_description":"panel: A high-level app and dashboarding solution for Python","_organization":"holoviz","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-08-23T00:00:00.000Z","_age_weeks":234,"_stars_per_week":11.01,"_topics":["holoviz","panel","dashboards","control-panels","gui","dataapp","dataviz","bokeh","datascience","holoviews","hvplot","jupyter","matplotlib","plotly"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":115,"_pop_contributor_logins":["Hoxbro","MarcSkovMadsen@data,modelsandanalytics","ceball","dependabot[bot]","jbednar@anaconda","jlstevens","jsignell@azavea","maximlt@anaconda","philippjfr@anaconda","xavArtley@cea"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","azavea","cea","data,modelsandanalytics"],"_pop_contributor_orgs_raw":["@azavea","Anaconda","Anaconda Inc.","Anaconda, Inc.","Data, models and analytics","cea"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":13.92,"_pop_updated_issues_count":549,"_pop_closed_issues_count":284,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":100,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":549.0,"_pop_comment_count":691.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":51.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/panel/master/README.md","_readme_localurl":"holoviz~panel~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/panel/master/setup.py","https://raw.githubusercontent.com/holoviz/panel/master/pyproject.toml"],"_requirements_localurls":["holoviz~panel~setup.py","holoviz~panel~pyproject.toml"]},{"index":433,"category":"pandas","githuburl":"https://github.com/pydata/pandas-datareader","featured":null,"links":null,"description":null,"_repopath":"pydata/pandas-datareader","_reponame":"pandas-datareader","_stars":2582,"_forks":633,"_watches":138,"_language":"Python","_homepage":"https://pydata.github.io/pandas-datareader/stable/index.html","_description":"pandas-datareader: Extract data from a wide range of Internet sources into a pandas DataFrame.","_organization":"pydata","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2015-01-15T00:00:00.000Z","_age_weeks":422,"_stars_per_week":6.11,"_topics":["html","data-analysis","data","dataset","stock-data","finance","financial-data","python","pydata","pandas","econdb","fama-french","economic-data","fred"],"_last_commit_date":"2022-03-16T00:00:00.000Z","_pop_contributor_count":85,"_pop_contributor_logins":["addisonlynch","bashtage","davidastephens","femtotrader","gfyoung","gliptak","hayd","simongarisch","sinhrks","suminb@navercloud"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["navercloud"],"_pop_contributor_orgs_raw":["NAVER Cloud"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":18,"_pop_closed_issues_count":5,"_pop_created_since_days":99,"_pop_updated_since_days":11,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":18.0,"_pop_comment_count":166.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":9.2,"_pop_dependents_count":0,"_pop_score":36.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pydata/pandas-datareader/master/README.md","_readme_localurl":"pydata~pandas-datareader~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pydata/pandas-datareader/master/requirements.txt","https://raw.githubusercontent.com/pydata/pandas-datareader/master/setup.py"],"_requirements_localurls":["pydata~pandas-datareader~requirements.txt","pydata~pandas-datareader~setup.py"]},{"index":675,"category":"ml-dl","githuburl":"https://github.com/saharmor/dalle-playground","featured":null,"links":null,"description":null,"_repopath":"saharmor/dalle-playground","_reponame":"dalle-playground","_stars":2571,"_forks":563,"_watches":29,"_language":"JavaScript","_homepage":"","_description":"dalle-playground: A playground to generate images from any text prompt using Stable Diffusion (past: using DALL-E Mini)","_organization":"saharmor","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-09-13T00:00:00.000Z","_age_weeks":75,"_stars_per_week":34.15,"_topics":["dall-e","openai","gan","text-to-image","transformers","artificial","artificial-intelligence","machine-learning","dalle","dalle-mini","stable-diffusion"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":10,"_pop_contributor_logins":["TheGoddessInari","VeXHarbinger@highfalootintechnologycorp.","kamalkraj@saamaresearch","katlyn","randyau@bitly","saharmor"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bitly","highfalootintechnologycorp.","saamaresearch"],"_pop_contributor_orgs_raw":["@saamaresearch ","Bitly","High Falootin Technology Corp."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.21,"_pop_updated_issues_count":9,"_pop_closed_issues_count":3,"_pop_created_since_days":18,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":9.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":27.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/saharmor/dalle-playground/master/README.md","_readme_localurl":"saharmor~dalle-playground~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":268,"category":"jupyter","githuburl":"https://github.com/jupyterlab/jupyterlab-desktop","featured":null,"links":null,"description":null,"_repopath":"jupyterlab/jupyterlab-desktop","_reponame":"jupyterlab-desktop","_stars":2568,"_forks":232,"_watches":42,"_language":"TypeScript","_homepage":"","_description":"jupyterlab-desktop: JupyterLab desktop application, based on Electron.","_organization":"jupyterlab","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-05-04T00:00:00.000Z","_age_weeks":302,"_stars_per_week":8.48,"_topics":["jupyterlab","jupyter","jupyter-notebook"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":34,"_pop_contributor_logins":["cameronoelsen@google","ddavidebor@fermiumlabssrl(fermiumlabs)","declanvk","dependabot[bot]","ellisonbg@amazonwebservices","jupyterlab-bot","krassowski@universityofoxford|quansight","lucbouchard1","mbektas@netflix","nproctor"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazonwebservices","fermiumlabssrl(fermiumlabs)","google","netflix","universityofoxford|quansight"],"_pop_contributor_orgs_raw":["@google","@netflix","Amazon Web Services","Fermium LABS srl ( @fermiumlabs )","University of Oxford | Quansight"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.4,"_pop_updated_issues_count":102,"_pop_closed_issues_count":65,"_pop_created_since_days":71,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":102.0,"_pop_comment_count":179.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":47.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyterlab/jupyterlab-desktop/master/README.md","_readme_localurl":"jupyterlab~jupyterlab-desktop~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":159,"category":"data","githuburl":"https://github.com/goldsmith/wikipedia","featured":null,"links":null,"description":null,"_repopath":"goldsmith/wikipedia","_reponame":"Wikipedia","_stars":2563,"_forks":519,"_watches":82,"_language":"Python","_homepage":"https://wikipedia.readthedocs.org/","_description":"Wikipedia: A Pythonic wrapper for the Wikipedia API","_organization":"goldsmith","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2013-08-20T00:00:00.000Z","_age_weeks":496,"_stars_per_week":5.17,"_topics":[],"_last_commit_date":"2020-10-09T00:00:00.000Z","_pop_contributor_count":23,"_pop_contributor_logins":["RazerM","arcolife","fusiongyro@nationalradioastronomyobservatory","goldsmith@localkitchens","imkevinxu","infothrill","javierprovecho","jongoodnow@vistaprint","kazuar","sachavakili"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["localkitchens","nationalradioastronomyobservatory","vistaprint"],"_pop_contributor_orgs_raw":["Local Kitchens","National Radio Astronomy Observatory","Vistaprint"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":7,"_pop_closed_issues_count":1,"_pop_created_since_days":116,"_pop_updated_since_days":29,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":7.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":23.98,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/goldsmith/wikipedia/master/README.rst","_readme_localurl":"goldsmith~wikipedia~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/goldsmith/wikipedia/master/requirements.txt","https://raw.githubusercontent.com/goldsmith/wikipedia/master/setup.py"],"_requirements_localurls":["goldsmith~wikipedia~requirements.txt","goldsmith~wikipedia~setup.py"]},{"index":600,"category":"gis","githuburl":"https://github.com/giswqs/geemap","featured":null,"links":null,"description":null,"_repopath":"giswqs/geemap","_reponame":"geemap","_stars":2546,"_forks":929,"_watches":98,"_language":"Python","_homepage":"https://geemap.org","_description":"geemap: A Python package for interactive mapping with Google Earth Engine, ipyleaflet, and ipywidgets.","_organization":"giswqs","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-03-08T00:00:00.000Z","_age_weeks":154,"_stars_per_week":16.49,"_topics":["google-earth-engine","gis","remote-sensing","image-processing","python","jupyter-notebook","ipyleaflet","mapping","earth-engine","ipywidgets","folium","jupyter","colab","geospatial","landsat","dataviz","data-science","streamlit","streamlit-webapp","earthengine"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":36,"_pop_contributor_logins":["12rambau@faoopenforis","3r3n-n","ErikSeras","KMarkert@google","cclauss@christianclauss","csaybar@emcdestudent","giswqs@universityoftennessee","karelvancamp","ppoon23","slowy07@google"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["christianclauss","emcdestudent","faoopenforis","google","universityoftennessee"],"_pop_contributor_orgs_raw":["@google","Christian Clauss","EMCDE Student","FAO @openforis","University of Tennessee"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.33,"_pop_updated_issues_count":55,"_pop_closed_issues_count":53,"_pop_created_since_days":36,"_pop_updated_since_days":0,"_pop_recent_releases_count":54,"_pop_recent_releases_estimated_tags":47,"_pop_recent_releases_adjusted_count":54,"_pop_issue_count":55.0,"_pop_comment_count":80.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":46.54,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/giswqs/geemap/master/README.rst","_readme_localurl":"giswqs~geemap~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/giswqs/geemap/master/requirements.txt","https://raw.githubusercontent.com/giswqs/geemap/master/setup.py"],"_requirements_localurls":["giswqs~geemap~requirements.txt","giswqs~geemap~setup.py"]},{"index":94,"category":"term","githuburl":"https://github.com/urwid/urwid","featured":null,"links":null,"description":null,"_repopath":"urwid/urwid","_reponame":"urwid","_stars":2538,"_forks":310,"_watches":62,"_language":"Python","_homepage":"urwid.org","_description":"urwid: Console user interface library for Python (official repo)","_organization":"urwid","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2010-02-25T00:00:00.000Z","_age_weeks":677,"_stars_per_week":3.74,"_topics":[],"_last_commit_date":"2022-07-12T00:00:00.000Z","_pop_contributor_count":116,"_pop_contributor_logins":["and3rson@newfirepartners,mediwareinc,holmusk,unitio-org,urwid","aszlig","eevee","mgiusti","pazz","tonycpsu","tu500","ulidtko","wackywendell","wardi"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["newfirepartners,mediwareinc,holmusk,unitio-org,urwid"],"_pop_contributor_orgs_raw":["@NewfirePartners, @mediwareinc, @Holmusk, @unitio-org, @urwid"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":10,"_pop_closed_issues_count":2,"_pop_created_since_days":158,"_pop_updated_since_days":19,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":10.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":28.01,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/urwid/urwid/master/README.rst","_readme_localurl":"urwid~urwid~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/urwid/urwid/master/setup.py"],"_requirements_localurls":["urwid~urwid~setup.py"]},{"index":98,"category":"data","githuburl":"https://github.com/zoomeranalytics/xlwings","featured":null,"links":null,"description":null,"_repopath":"zoomeranalytics/xlwings","_reponame":"xlwings","_stars":2525,"_forks":452,"_watches":119,"_language":"Python","_homepage":"https://www.xlwings.org","_description":"xlwings is a Python library that makes it easy to call Python from Excel and vice versa. It works with Excel on Windows and macOS as well as with Google Sheets and Excel on the web. ","_organization":"zoomeranalytics","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2014-03-17T00:00:00.000Z","_age_weeks":466,"_stars_per_week":5.42,"_topics":["python","excel","reporting","automation","googlesheets","google-sheets"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":57,"_pop_contributor_logins":["Colin-b","arkottke","efreeway","ericremoreynolds","fzumstein@xlwings","kgrudzin","knmaki","sdementen","y2kbugger","yuyueugene84@kyosei.ai"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["kyosei.ai","xlwings"],"_pop_contributor_orgs_raw":["Kyosei.ai","xlwings"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.13,"_pop_updated_issues_count":122,"_pop_closed_issues_count":97,"_pop_created_since_days":109,"_pop_updated_since_days":0,"_pop_recent_releases_count":28,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":28,"_pop_issue_count":122.0,"_pop_comment_count":197.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":47.35,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/zoomeranalytics/xlwings/master/README.rst","_readme_localurl":"zoomeranalytics~xlwings~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/zoomeranalytics/xlwings/master/setup.py","https://raw.githubusercontent.com/zoomeranalytics/xlwings/master/pyproject.toml"],"_requirements_localurls":["zoomeranalytics~xlwings~setup.py","zoomeranalytics~xlwings~pyproject.toml"]},{"index":553,"category":"ml-dl","githuburl":"https://github.com/pytorch/botorch","featured":null,"links":null,"description":null,"_repopath":"pytorch/botorch","_reponame":"botorch","_stars":2524,"_forks":304,"_watches":50,"_language":"Jupyter Notebook","_homepage":"https://botorch.org/","_description":"botorch: Bayesian optimization in PyTorch","_organization":"pytorch","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-07-30T00:00:00.000Z","_age_weeks":238,"_stars_per_week":10.59,"_topics":[],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":86,"_pop_contributor_logins":["Balandat@meta","ItsMrLin","SebastianAment@meta","danielrjiang@facebook","dependabot[bot]","dme65@facebook","esantorella@meta","saitcakmak@meta","sdaulton@meta","wjmaddox"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook","meta"],"_pop_contributor_orgs_raw":["@Facebook","@Meta","Facebook","Meta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.79,"_pop_updated_issues_count":203,"_pop_closed_issues_count":159,"_pop_created_since_days":56,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":203.0,"_pop_comment_count":825.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.1,"_pop_dependents_count":0,"_pop_score":49.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/botorch/master/README.md","_readme_localurl":"pytorch~botorch~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/botorch/master/requirements.txt","https://raw.githubusercontent.com/pytorch/botorch/master/setup.py","https://raw.githubusercontent.com/pytorch/botorch/master/pyproject.toml"],"_requirements_localurls":["pytorch~botorch~requirements.txt","pytorch~botorch~setup.py","pytorch~botorch~pyproject.toml"]},{"index":845,"category":"time-series","githuburl":"https://github.com/tdameritrade/stumpy","featured":null,"links":null,"description":null,"_repopath":"tdameritrade/stumpy","_reponame":"stumpy","_stars":2523,"_forks":247,"_watches":53,"_language":"Python","_homepage":"https://stumpy.readthedocs.io/en/latest/","_description":"STUMPY is a powerful and scalable Python library for modern time series analysis","_organization":"tdameritrade","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2019-05-03T00:00:00.000Z","_age_weeks":198,"_stars_per_week":12.7,"_topics":["data-science","time-series-analysis","dask","numba","python","anomaly-detection","pattern-matching","pydata","matrix-profile","motif-discovery","time-series-segmentation","time-series-data-mining"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":32,"_pop_contributor_logins":["0xflotus","Attol8","NimaSarajpoor","SaVoAMP","alvii147","bdice@nvidia","bfattori-TDA@tdameritrade","cuichenli@dashbase/appdynamics/cisco","mihailescum","seanlaw"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["dashbase/appdynamics/cisco","nvidia","tdameritrade"],"_pop_contributor_orgs_raw":["@NVIDIA","@TDAmeritrade","@dashbase / @AppDynamics / @Cisco"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.4,"_pop_updated_issues_count":54,"_pop_closed_issues_count":35,"_pop_created_since_days":46,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":54.0,"_pop_comment_count":172.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.2,"_pop_dependents_count":0,"_pop_score":41.72,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/tdameritrade/stumpy/master/README.rst","_readme_localurl":"tdameritrade~stumpy~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tdameritrade/stumpy/master/requirements.txt","https://raw.githubusercontent.com/tdameritrade/stumpy/master/setup.py"],"_requirements_localurls":["tdameritrade~stumpy~requirements.txt","tdameritrade~stumpy~setup.py"]},{"index":809,"category":"web","githuburl":"https://github.com/fastapi-users/fastapi-users","featured":null,"links":null,"description":null,"_repopath":"fastapi-users/fastapi-users","_reponame":"fastapi-users","_stars":2493,"_forks":247,"_watches":34,"_language":"Python","_homepage":"https://fastapi-users.github.io/fastapi-users/","_description":"fastapi-users: Ready-to-use and customizable users management for FastAPI","_organization":"fastapi-users","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-10-05T00:00:00.000Z","_age_weeks":176,"_stars_per_week":14.12,"_topics":["python","starlette","fastapi","async","asyncio","users","fastapi-users"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":54,"_pop_contributor_logins":["Hazedd","allcontributors[bot]","bkis@dh-cologne","davidbrochart@quantstack","dependabot-preview[bot]","frankie567@beemydesk","matyasrichter@fitctuinprague","nullhack","rnd42@intelepeer","yezz123@yezz."],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["beemydesk","dh-cologne","fitctuinprague","intelepeer","quantstack","yezz."],"_pop_contributor_orgs_raw":["@BeeMyDesk","@DH-Cologne","@QuantStack","FIT CTU in Prague","IntelePeer","Yezz LLC."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.33,"_pop_updated_issues_count":10,"_pop_closed_issues_count":10,"_pop_created_since_days":41,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":10.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":44.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fastapi-users/fastapi-users/master/README.md","_readme_localurl":"fastapi-users~fastapi-users~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/fastapi-users/fastapi-users/master/pyproject.toml"],"_requirements_localurls":["fastapi-users~fastapi-users~pyproject.toml"]},{"index":708,"category":"ml","githuburl":"https://github.com/mljar/mljar-supervised","featured":null,"links":null,"description":null,"_repopath":"mljar/mljar-supervised","_reponame":"mljar-supervised","_stars":2469,"_forks":323,"_watches":43,"_language":"Python","_homepage":"https://mljar.com","_description":"mljar-supervised: Python package for AutoML on Tabular Data with Feature Engineering, Hyper-Parameters Tuning, Explanations and Automatic Documentation","_organization":"mljar","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-11-05T00:00:00.000Z","_age_weeks":224,"_stars_per_week":11.01,"_topics":["automl","machine-learning","automatic-machine-learning","mljar","data-science","scikit-learn","hyperparameter-optimization","feature-engineering","xgboost","random-forest","neural-network","lightgbm","catboost","ensemble","tuning-algorithm","models-tuning","hyper-parameters","decision-tree","shap","automated-machine-learning"],"_last_commit_date":"2022-12-30T00:00:00.000Z","_pop_contributor_count":20,"_pop_contributor_logins":["DanielR59","SuryaThiru","abtheo@otterclamfinance","aplonska@mljar","diogosilva30","neilmehta31@bitspilanihyderabadcampus","partrita@biomega","pplonski@mljar","shahules786","uditswaroopa@blockframenft"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["biomega","bitspilanihyderabadcampus","blockframenft","mljar","otterclamfinance"],"_pop_contributor_orgs_raw":["@mljar","BITS Pilani Hyderabad Campus","Biomega","OtterClam Finance","blockframenft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.4,"_pop_updated_issues_count":26,"_pop_closed_issues_count":13,"_pop_created_since_days":52,"_pop_updated_since_days":2,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":26.0,"_pop_comment_count":62.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":36.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mljar/mljar-supervised/master/README.md","_readme_localurl":"mljar~mljar-supervised~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mljar/mljar-supervised/master/requirements.txt","https://raw.githubusercontent.com/mljar/mljar-supervised/master/setup.py"],"_requirements_localurls":["mljar~mljar-supervised~requirements.txt","mljar~mljar-supervised~setup.py"]},{"index":907,"category":"ml","githuburl":"https://github.com/rucaibox/recbole","featured":null,"links":null,"description":null,"_repopath":"rucaibox/recbole","_reponame":"RecBole","_stars":2464,"_forks":450,"_watches":40,"_language":"Python","_homepage":"https://recbole.io/","_description":"RecBole: A unified, comprehensive and efficient recommendation library","_organization":"rucaibox","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-06-11T00:00:00.000Z","_age_weeks":140,"_stars_per_week":17.49,"_topics":["recommender-systems","collaborative-filtering","knowledge-graph","ctr-prediction","deep-learning","pytorch","graph-neural-networks","sequential-recommendation","recommendations","recommendation-system","recommender"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":59,"_pop_contributor_logins":["2017pxy@renminuniversityofchina","ShanleiMu@renminuniversityofchina","Sherry-XLL@renminuniversityofchina","Wicknight","chenyushuo","chenyuwuxin","guijiql@bupt","hyp1231@renminuniversityofchina","linzihan-backforward@renminuniversityofchina","tsotfsk@bupt"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bupt","renminuniversityofchina"],"_pop_contributor_orgs_raw":["BUPT","Renmin University of China"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.67,"_pop_updated_issues_count":537,"_pop_closed_issues_count":492,"_pop_created_since_days":33,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":537.0,"_pop_comment_count":236.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":41.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rucaibox/recbole/master/README.md","_readme_localurl":"rucaibox~recbole~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rucaibox/recbole/master/requirements.txt","https://raw.githubusercontent.com/rucaibox/recbole/master/setup.py"],"_requirements_localurls":["rucaibox~recbole~requirements.txt","rucaibox~recbole~setup.py"]},{"index":735,"category":"data","githuburl":"https://github.com/ibis-project/ibis","featured":1.0,"links":null,"description":null,"_repopath":"ibis-project/ibis","_reponame":"ibis","_stars":2453,"_forks":391,"_watches":75,"_language":"Python","_homepage":"https://ibis-project.org","_description":"ibis: Expressive analytics in Python at any scale.","_organization":"ibis-project","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-04-17T00:00:00.000Z","_age_weeks":409,"_stars_per_week":5.99,"_topics":["python","impala","pandas","database","clickhouse","postgresql","sqlite","mysql","datafusion","sql","pyspark","dask","duckdb","bigquery","pyarrow","mssql","polars","snowflake","trino"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":126,"_pop_contributor_logins":["cpcloud@voltrondata","datapythonista","gforsyth@voltrondata","ibis-squawk-bot[bot]","jcrist@voltrondata","krzysztof-kwitt","kszucs@voltron-data/ursa-computing","renovate[bot]","wesm@voltrondata","xmnlab@xmnlab"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["voltron-data/ursa-computing","voltrondata","xmnlab"],"_pop_contributor_orgs_raw":["@voltron-data / @ursa-computing","@voltrondata","Voltron Data","xmnlab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":50.37,"_pop_updated_issues_count":778,"_pop_closed_issues_count":706,"_pop_created_since_days":96,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":778.0,"_pop_comment_count":1515.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":55.47,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ibis-project/ibis/master/README.md","_readme_localurl":"ibis-project~ibis~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ibis-project/ibis/master/requirements.txt","https://raw.githubusercontent.com/ibis-project/ibis/master/pyproject.toml"],"_requirements_localurls":["ibis-project~ibis~requirements.txt","ibis-project~ibis~pyproject.toml"]},{"index":814,"category":"data","githuburl":"https://github.com/deepchecks/deepchecks","featured":null,"links":null,"description":null,"_repopath":"deepchecks/deepchecks","_reponame":"deepchecks","_stars":2436,"_forks":173,"_watches":12,"_language":"Python","_homepage":"https://docs.deepchecks.com","_description":"Deepchecks - Tests for Continuous Validation of ML Models & Data. Deepchecks is a Python package for comprehensively validating your machine learning models and data with minimal effort.","_organization":"deepchecks","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-10-11T00:00:00.000Z","_age_weeks":71,"_stars_per_week":34.17,"_topics":["machine-learning","ml","model-validation","data-validation","mlops","data-science","python","jupyter-notebook","model-monitoring","data-drift","html-report","deep-learning","pytorch","pandas-dataframe"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":40,"_pop_contributor_logins":["ItayGabbay","JKL98ISR","Nadav-Barak","TheSolY","benisraeldan","matanper","nirhutnik@deepchecks","noamzbr@deepchecks","shir22","yromanyshyn@starnavi"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["deepchecks","starnavi"],"_pop_contributor_orgs_raw":["@deepchecks ","Deepchecks","starnavi"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.52,"_pop_updated_issues_count":361,"_pop_closed_issues_count":143,"_pop_created_since_days":17,"_pop_updated_since_days":0,"_pop_recent_releases_count":21,"_pop_recent_releases_estimated_tags":36,"_pop_recent_releases_adjusted_count":21,"_pop_issue_count":361.0,"_pop_comment_count":136.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":41.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/deepchecks/deepchecks/master/README.md","_readme_localurl":"deepchecks~deepchecks~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/deepchecks/deepchecks/master/setup.py"],"_requirements_localurls":["deepchecks~deepchecks~setup.py"]},{"index":944,"category":"ml","githuburl":"https://github.com/thudm/cogvideo","featured":null,"links":null,"description":null,"_repopath":"thudm/cogvideo","_reponame":"CogVideo","_stars":2435,"_forks":224,"_watches":90,"_language":"Python","_homepage":"","_description":"Text-to-video generation. The repo for ICLR2023 paper \"CogVideo: Large-scale Pretraining for Text-to-Video Generation via Transformers\"","_organization":"thudm","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-05-29T00:00:00.000Z","_age_weeks":38,"_stars_per_week":63.36,"_topics":[],"_last_commit_date":"2022-11-17T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["AK391@huggingface","mallorbc@brillibits","wenyihong"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["brillibits","huggingface"],"_pop_contributor_orgs_raw":["Brillibits","Huggingface"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.38,"_pop_updated_issues_count":9,"_pop_closed_issues_count":4,"_pop_created_since_days":9,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":9.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":19.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/thudm/cogvideo/master/README.md","_readme_localurl":"thudm~cogvideo~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/thudm/cogvideo/master/requirements.txt"],"_requirements_localurls":["thudm~cogvideo~requirements.txt"]},{"index":136,"category":"nlp","githuburl":"https://github.com/ddangelov/top2vec","featured":null,"links":null,"description":null,"_repopath":"ddangelov/top2vec","_reponame":"Top2Vec","_stars":2428,"_forks":336,"_watches":38,"_language":"Python","_homepage":"","_description":"Top2Vec learns jointly embedded topic, document and word vectors.","_organization":"ddangelov","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-03-20T00:00:00.000Z","_age_weeks":152,"_stars_per_week":15.9,"_topics":["topic-modeling","word-embeddings","document-embedding","topic-vector","topic-search","text-search","text-semantic-similarity","topic-modelling","semantic-search","bert","top2vec","sentence-transformers","sentence-encoder","pre-trained-language-models"],"_last_commit_date":"2023-01-26T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["ddangelov","gclen"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.21,"_pop_updated_issues_count":24,"_pop_closed_issues_count":11,"_pop_created_since_days":36,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":24.0,"_pop_comment_count":26.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":19.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ddangelov/top2vec/master/README.md","_readme_localurl":"ddangelov~top2vec~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ddangelov/top2vec/master/requirements.txt","https://raw.githubusercontent.com/ddangelov/top2vec/master/setup.py"],"_requirements_localurls":["ddangelov~top2vec~requirements.txt","ddangelov~top2vec~setup.py"]},{"index":172,"category":"viz","githuburl":"https://github.com/facebookresearch/hiplot","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/hiplot","_reponame":"hiplot","_stars":2420,"_forks":123,"_watches":29,"_language":"TypeScript","_homepage":"https://facebookresearch.github.io/hiplot/","_description":"HiPlot makes understanding high dimensional data easy","_organization":"facebookresearch","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2019-11-08T00:00:00.000Z","_age_weeks":171,"_stars_per_week":14.09,"_topics":[],"_last_commit_date":"2022-12-05T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["GoldenCorgi","LiewYouSheng","callistachang","danthe3rd","dependabot[bot]","dmitryvinn@engineeringmanagerai/mlmeta","louismartin","nzw0301@ibm"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["engineeringmanagerai/mlmeta","ibm"],"_pop_contributor_orgs_raw":["@ibm","Engineering Manager AI/ML@Meta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":6,"_pop_closed_issues_count":2,"_pop_created_since_days":40,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":6.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":28.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/hiplot/master/README.md","_readme_localurl":"facebookresearch~hiplot~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/hiplot/master/setup.py"],"_requirements_localurls":["facebookresearch~hiplot~setup.py"]},{"index":51,"category":"testing","githuburl":"https://github.com/nedbat/coveragepy","featured":null,"links":null,"description":null,"_repopath":"nedbat/coveragepy","_reponame":"coveragepy","_stars":2391,"_forks":342,"_watches":28,"_language":"Python","_homepage":"https://coverage.readthedocs.io","_description":"coveragepy: The code coverage tool for Python","_organization":"nedbat","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-06-23T00:00:00.000Z","_age_weeks":243,"_stars_per_week":9.82,"_topics":[],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":145,"_pop_contributor_logins":["AndrewHoos","blueyed@freelancer,upforhire","brettcannon@microsoft","dependabot[bot]","dstanek","ionelmc","jdufresne@pioneervalleybooks","msabramo@adobe","nedbat","strichter@shoobx"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["adobe","freelancer,upforhire","microsoft","pioneervalleybooks","shoobx"],"_pop_contributor_orgs_raw":["@adobe","@microsoft ","Freelancer, up for hire","Pioneer Valley Books","Shoobx, Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.69,"_pop_updated_issues_count":116,"_pop_closed_issues_count":64,"_pop_created_since_days":57,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":116.0,"_pop_comment_count":294.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":0,"_pop_score":53.2,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/nedbat/coveragepy/master/README.rst","_readme_localurl":"nedbat~coveragepy~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nedbat/coveragepy/master/setup.py","https://raw.githubusercontent.com/nedbat/coveragepy/master/pyproject.toml"],"_requirements_localurls":["nedbat~coveragepy~setup.py","nedbat~coveragepy~pyproject.toml"]},{"index":174,"category":"util","githuburl":"https://github.com/liiight/notifiers","featured":null,"links":null,"description":null,"_repopath":"liiight/notifiers","_reponame":"notifiers","_stars":2387,"_forks":92,"_watches":33,"_language":"Python","_homepage":"http://notifiers.readthedocs.io/","_description":"notifiers: The easy way to send notifications","_organization":"liiight","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-06-01T00:00:00.000Z","_age_weeks":298,"_stars_per_week":7.99,"_topics":["python","notifications","notifier","notification-service","python3","pypi"],"_last_commit_date":"2022-07-14T00:00:00.000Z","_pop_contributor_count":19,"_pop_contributor_logins":["Conight","JonShedden","alonm-totango@totango","darora-zipline","delirious-lettuce","dependabot-preview[bot]","dependabot[bot]","liiight","pre-commit-ci[bot]","pyup-bot@pyupio"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["pyupio","totango"],"_pop_contributor_orgs_raw":["@pyupio","@totango "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":70,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":4.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":25.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/liiight/notifiers/master/README.md","_readme_localurl":"liiight~notifiers~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/liiight/notifiers/master/pyproject.toml"],"_requirements_localurls":["liiight~notifiers~pyproject.toml"]},{"index":296,"category":"sim","githuburl":"https://github.com/openai/mujoco-py","featured":null,"links":null,"description":null,"_repopath":"openai/mujoco-py","_reponame":"mujoco-py","_stars":2383,"_forks":740,"_watches":166,"_language":"Cython","_homepage":"","_description":"mujoco-py: MuJoCo is a physics engine for detailed, efficient rigid body simulations with contacts. mujoco-py allows using MuJoCo from Python 3.","_organization":"openai","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2016-04-24T00:00:00.000Z","_age_weeks":356,"_stars_per_week":6.69,"_topics":[],"_last_commit_date":"2022-11-17T00:00:00.000Z","_pop_contributor_count":33,"_pop_contributor_logins":["MillionIntegrals@millionintegrals","aray-openai@openai","bayesian","gdb","jonasschneider","machinaut@openai","roboticsdashboard","tlbtlbtlb@umbrellaresearch","welinder@openai","wojzaremba"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["millionintegrals","openai","umbrellaresearch"],"_pop_contributor_orgs_raw":["@openai","Million Integrals","Umbrella Research"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":27,"_pop_closed_issues_count":2,"_pop_created_since_days":83,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":27.0,"_pop_comment_count":23.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":31.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/mujoco-py/master/README.md","_readme_localurl":"openai~mujoco-py~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/mujoco-py/master/requirements.txt","https://raw.githubusercontent.com/openai/mujoco-py/master/setup.py","https://raw.githubusercontent.com/openai/mujoco-py/master/pyproject.toml"],"_requirements_localurls":["openai~mujoco-py~requirements.txt","openai~mujoco-py~setup.py","openai~mujoco-py~pyproject.toml"]},{"index":129,"category":"viz","githuburl":"https://github.com/holoviz/holoviews","featured":null,"links":null,"description":null,"_repopath":"holoviz/holoviews","_reponame":"holoviews","_stars":2378,"_forks":370,"_watches":61,"_language":"Python","_homepage":"https://holoviews.org","_description":"holoviews: With Holoviews, your data visualizes itself.","_organization":"holoviz","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2014-05-07T00:00:00.000Z","_age_weeks":459,"_stars_per_week":5.18,"_topics":["holoviz","holoviews","plotting"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":131,"_pop_contributor_logins":["Hoxbro","ahuang11@prefect!","basnijholt@microsoft","ceball","jbednar@anaconda","jlstevens","jonmmease@hextechnologies","maximlt@anaconda","philippjfr@anaconda","poplarShift@apn"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","apn","hextechnologies","microsoft","prefect!"],"_pop_contributor_orgs_raw":["@Microsoft","APN","Anaconda","Anaconda Inc.","Anaconda, Inc.","Hex Technologies","Prefect!"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.12,"_pop_updated_issues_count":182,"_pop_closed_issues_count":85,"_pop_created_since_days":107,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":41,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":182.0,"_pop_comment_count":278.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":50.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/holoviews/master/README.md","_readme_localurl":"holoviz~holoviews~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/holoviews/master/setup.py","https://raw.githubusercontent.com/holoviz/holoviews/master/pyproject.toml"],"_requirements_localurls":["holoviz~holoviews~setup.py","holoviz~holoviews~pyproject.toml"]},{"index":696,"category":"ml-dl","githuburl":"https://github.com/deepmind/dm-haiku","featured":null,"links":null,"description":null,"_repopath":"deepmind/dm-haiku","_reponame":"dm-haiku","_stars":2374,"_forks":200,"_watches":39,"_language":"Python","_homepage":"https://dm-haiku.readthedocs.io","_description":"dm-haiku: JAX-based neural network library","_organization":"deepmind","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-02-18T00:00:00.000Z","_age_weeks":157,"_stars_per_week":15.11,"_topics":["machine-learning","neural-networks","jax","deep-learning","deep-neural-networks"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":69,"_pop_contributor_logins":["8bitmp3@tensorflow,jax,flax","CreativeEntropy@googledeepmind","LenaMartens","aslanides@deepmind","chris-chris","hamzamerzic@googledeepmind","inoryy@deepmind","joaogui1","tomhennigan@deepmind","trevorcai@openai"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["deepmind","googledeepmind","openai","tensorflow,jax,flax"],"_pop_contributor_orgs_raw":["@DeepMind","@deepmind","@openai","Google DeepMind","tensorflow, jax, flax"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.54,"_pop_updated_issues_count":42,"_pop_closed_issues_count":33,"_pop_created_since_days":37,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":42.0,"_pop_comment_count":26.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":40.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/deepmind/dm-haiku/master/README.md","_readme_localurl":"deepmind~dm-haiku~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/deepmind/dm-haiku/master/requirements.txt","https://raw.githubusercontent.com/deepmind/dm-haiku/master/setup.py"],"_requirements_localurls":["deepmind~dm-haiku~requirements.txt","deepmind~dm-haiku~setup.py"]},{"index":145,"category":"ml","githuburl":"https://github.com/nmslib/hnswlib","featured":null,"links":null,"description":null,"_repopath":"nmslib/hnswlib","_reponame":"hnswlib","_stars":2363,"_forks":433,"_watches":62,"_language":"C++","_homepage":"https://github.com/nmslib/hnswlib","_description":"hnswlib: Header-only C++/python library for fast approximate nearest neighbors","_organization":"nmslib","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-07-06T00:00:00.000Z","_age_weeks":293,"_stars_per_week":8.04,"_topics":[],"_last_commit_date":"2023-02-05T00:00:00.000Z","_pop_contributor_count":65,"_pop_contributor_logins":["dbespalov","dyashuni@josh","groodt","jlmelville","kishorenc","marekhanus","orrorcol","piem@aubio","slice4e@intel","yurymalkov@twittercortex"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aubio","intel","josh","twittercortex"],"_pop_contributor_orgs_raw":["@aubio","Intel","Josh","Twitter Cortex"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.81,"_pop_updated_issues_count":23,"_pop_closed_issues_count":13,"_pop_created_since_days":69,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":23.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":36.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nmslib/hnswlib/master/README.md","_readme_localurl":"nmslib~hnswlib~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nmslib/hnswlib/master/setup.py","https://raw.githubusercontent.com/nmslib/hnswlib/master/pyproject.toml"],"_requirements_localurls":["nmslib~hnswlib~setup.py","nmslib~hnswlib~pyproject.toml"]},{"index":858,"category":"jupyter","githuburl":"https://github.com/jupyter/nbdime","featured":null,"links":null,"description":null,"_repopath":"jupyter/nbdime","_reponame":"nbdime","_stars":2362,"_forks":155,"_watches":43,"_language":"Python","_homepage":"http://nbdime.readthedocs.io","_description":"nbdime: Tools for diffing and merging of Jupyter notebooks.","_organization":"jupyter","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2015-11-16T00:00:00.000Z","_age_weeks":379,"_stars_per_week":6.23,"_topics":["jupyterlab-extension","jupyter","jupyter-notebook","diff","diffing","merge","git","hg","mercurial","mergetool","merge-driver","vcs","version-control"],"_last_commit_date":"2023-01-15T00:00:00.000Z","_pop_contributor_count":43,"_pop_contributor_logins":["ajbozarth@ibmcodait","baldwint@cascadedatalabs","fcollonval@quantstack","gahjelle@realpython","itamarst","krassowski@universityofoxford|quansight","minrk@simularesearchlaboratory","singingwolfboy","vidartf","willingc@willingconsulting"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cascadedatalabs","ibmcodait","quantstack","realpython","simularesearchlaboratory","universityofoxford|quansight","willingconsulting"],"_pop_contributor_orgs_raw":["@QuantStack","@realpython ","Cascade Data Labs","IBM CODAIT","Simula Research Laboratory","University of Oxford | Quansight","Willing Consulting"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":23,"_pop_closed_issues_count":8,"_pop_created_since_days":88,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":23.0,"_pop_comment_count":21.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":40.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/nbdime/master/README.md","_readme_localurl":"jupyter~nbdime~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/nbdime/master/setup.py","https://raw.githubusercontent.com/jupyter/nbdime/master/pyproject.toml"],"_requirements_localurls":["jupyter~nbdime~setup.py","jupyter~nbdime~pyproject.toml"]},{"index":691,"category":"ml-dl","githuburl":"https://github.com/nerdyrodent/vqgan-clip","featured":null,"links":null,"description":null,"_repopath":"nerdyrodent/vqgan-clip","_reponame":"VQGAN-CLIP","_stars":2358,"_forks":408,"_watches":53,"_language":"Python","_homepage":"","_description":"VQGAN-CLIP: Just playing with getting VQGAN+CLIP running locally, rather than having to use colab.","_organization":"nerdyrodent","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-07-02T00:00:00.000Z","_age_weeks":85,"_stars_per_week":27.51,"_topics":["text2image","text-to-image"],"_last_commit_date":"2022-10-02T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["DrJKL","caladri@az\u00e9otropecanada","microraptor","nerdyrodent","smn57","thehappydinoa@censys"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["az\u00e9otropecanada","censys"],"_pop_contributor_orgs_raw":["@censys ","Az\u00e9otrope Canada Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":6,"_pop_closed_issues_count":3,"_pop_created_since_days":20,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":6.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":18.89,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nerdyrodent/vqgan-clip/master/README.md","_readme_localurl":"nerdyrodent~vqgan-clip~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/nerdyrodent/vqgan-clip/master/requirements.txt"],"_requirements_localurls":["nerdyrodent~vqgan-clip~requirements.txt"]},{"index":875,"category":"perf","githuburl":"https://github.com/ipython/ipyparallel","featured":null,"links":null,"description":null,"_repopath":"ipython/ipyparallel","_reponame":"ipyparallel","_stars":2356,"_forks":962,"_watches":120,"_language":"Jupyter Notebook","_homepage":"https://ipyparallel.readthedocs.io/","_description":"ipyparallel: IPython Parallel: Interactive Parallel Computing in Python","_organization":"ipython","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":410,"_stars_per_week":5.73,"_topics":["parallel","jupyter","python"],"_last_commit_date":"2023-02-08T00:00:00.000Z","_pop_contributor_count":112,"_pop_contributor_logins":["Carreau@quansight-labs","blink1073@mongodb","ellisonbg@amazonwebservices","fperez@universityofcalifornia,berkeley.","ivanov","minrk@simularesearchlaboratory","pre-commit-ci[bot]","sahil1105","takluyver","tomoboy@ardoq"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazonwebservices","ardoq","mongodb","quansight-labs","simularesearchlaboratory","universityofcalifornia,berkeley."],"_pop_contributor_orgs_raw":["@Quansight-Labs","@ardoq ","Amazon Web Services","MongoDB","Simula Research Laboratory","University of California, Berkeley."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.04,"_pop_updated_issues_count":5,"_pop_closed_issues_count":5,"_pop_created_since_days":96,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":5.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":41.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ipython/ipyparallel/master/README.md","_readme_localurl":"ipython~ipyparallel~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ipython/ipyparallel/master/pyproject.toml"],"_requirements_localurls":["ipython~ipyparallel~pyproject.toml"]},{"index":755,"category":"ml","githuburl":"https://github.com/marqo-ai/marqo","featured":null,"links":null,"description":null,"_repopath":"marqo-ai/marqo","_reponame":"marqo","_stars":2340,"_forks":90,"_watches":26,"_language":"Python","_homepage":"https://www.marqo.ai/","_description":"marqo: Tensor search for humans.","_organization":"marqo-ai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-08-01T00:00:00.000Z","_age_weeks":29,"_stars_per_week":79.9,"_topics":["deep-learning","information-retrieval","machinelearning","vector-search","tensor-search","clip","multi-modal","search-engine","transformers","vision-language","machine-learning","semantic-search","visual-search","natural-language-processing","hnsw","knn","hacktoberfest","chatgpt","gpt","large-language-models"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":21,"_pop_contributor_logins":["Jeadie@marqo-ai","MichalLuck","VitusAcabado@marqo.ai","aryanagarwal9","danyilq","jn2clark","pandu-k","tomhamer@marqo-ai","vicilliar","wanliAlex"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["marqo-ai","marqo.ai"],"_pop_contributor_orgs_raw":["@marqo-ai","@marqo-ai ","@marqo.ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":12.75,"_pop_updated_issues_count":179,"_pop_closed_issues_count":121,"_pop_created_since_days":7,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":179.0,"_pop_comment_count":217.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":37.85,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/marqo-ai/marqo/master/README.md","_readme_localurl":"marqo-ai~marqo~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/marqo-ai/marqo/master/requirements.txt","https://raw.githubusercontent.com/marqo-ai/marqo/master/setup.py","https://raw.githubusercontent.com/marqo-ai/marqo/master/pyproject.toml"],"_requirements_localurls":["marqo-ai~marqo~requirements.txt","marqo-ai~marqo~setup.py","marqo-ai~marqo~pyproject.toml"]},{"index":246,"category":"util","githuburl":"https://github.com/pyston/pyston","featured":null,"links":null,"description":null,"_repopath":"pyston/pyston","_reponame":"pyston","_stars":2325,"_forks":84,"_watches":33,"_language":"Python","_homepage":"https://www.pyston.org/","_description":"pyston: A faster and highly-compatible implementation of the Python programming language.","_organization":"pyston","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-03-01T00:00:00.000Z","_age_weeks":103,"_stars_per_week":22.51,"_topics":[],"_last_commit_date":"2022-11-23T00:00:00.000Z","_pop_contributor_count":1035,"_pop_contributor_logins":["benjaminp","birkenfeld@fzj\u00fclich","freddrake@keepertech","gvanrossum@microsoft","jackjansen@centrumvoorwiskundeeninformatica","loewis","pitrou","rhettinger@mutableminds","serhiy-storchaka@neu.ro","vstinner@redhatofficial"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["centrumvoorwiskundeeninformatica","fzj\u00fclich","keepertech","microsoft","mutableminds","neu.ro","redhatofficial"],"_pop_contributor_orgs_raw":["@RedHatOfficial","@keepertech ","Centrum voor Wiskunde en Informatica","FZ J\u00fclich","Microsoft","Mutable Minds, Inc.","Neu.ro"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.23,"_pop_updated_issues_count":23,"_pop_closed_issues_count":9,"_pop_created_since_days":24,"_pop_updated_since_days":3,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":239,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":21.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":46.13,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyston/pyston/master/README.rst","_readme_localurl":"pyston~pyston~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyston/pyston/master/setup.py"],"_requirements_localurls":["pyston~pyston~setup.py"]},{"index":947,"category":"nlp","githuburl":"https://github.com/microsoft/biogpt","featured":null,"links":null,"description":null,"_repopath":"microsoft/biogpt","_reponame":"BioGPT","_stars":2305,"_forks":196,"_watches":45,"_language":"Python","_homepage":null,"_description":"microsoft/biogpt","_organization":"microsoft","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-08-15T00:00:00.000Z","_age_weeks":27,"_stars_per_week":84.48,"_topics":[],"_last_commit_date":"2023-02-13T00:00:00.000Z","_pop_contributor_count":9,"_pop_contributor_logins":["AH-Merii@silencetherapeutics","bbennett80","cybersaksham","eltociear@bandism","katielink@huggingface","kurt-biorender","microsoftopensource@microsoft","renqianluo@microsoft","yuta519"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bandism","huggingface","microsoft","silencetherapeutics"],"_pop_contributor_orgs_raw":["@bandism ","@huggingface ","Microsoft","Silence Therapeutics"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.62,"_pop_updated_issues_count":56,"_pop_closed_issues_count":26,"_pop_created_since_days":6,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":56.0,"_pop_comment_count":93.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":29.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/biogpt/master/README.md","_readme_localurl":"microsoft~biogpt~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/biogpt/master/requirements.txt"],"_requirements_localurls":["microsoft~biogpt~requirements.txt"]},{"index":724,"category":"util","githuburl":"https://github.com/ashleve/lightning-hydra-template","featured":null,"links":null,"description":null,"_repopath":"ashleve/lightning-hydra-template","_reponame":"lightning-hydra-template","_stars":2285,"_forks":389,"_watches":20,"_language":"Python","_homepage":"","_description":"lightning-hydra-template: PyTorch Lightning + Hydra. A very user-friendly template for rapid and reproducible ML experimentation with best practices. \u26a1\ud83d\udd25\u26a1","_organization":"ashleve","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-11-04T00:00:00.000Z","_age_weeks":120,"_stars_per_week":19.04,"_topics":["pytorch-lightning","wandb","project-structure","config","deep-learning","hydra","template","pytorch","reproducibility","best-practices","neptune","mlflow","tensorboard","comet","mlops"],"_last_commit_date":"2023-02-11T00:00:00.000Z","_pop_contributor_count":27,"_pop_contributor_logins":["Adizx12","CharlesGaydon","amorehead@universityofmissouri","ashleve","atong01@mila;udem","dependabot[bot]","elisim","eungbean@diml,yonseiuniv.","nils-werner","yipliu@hunanuniversity"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["diml,yonseiuniv.","hunanuniversity","mila;udem","universityofmissouri"],"_pop_contributor_orgs_raw":["DIML, Yonsei Univ.","Hunan University","Mila; UdeM","University of Missouri"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.88,"_pop_updated_issues_count":88,"_pop_closed_issues_count":71,"_pop_created_since_days":28,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":88.0,"_pop_comment_count":99.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":39.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/README.md","_readme_localurl":"ashleve~lightning-hydra-template~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/requirements.txt","https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/setup.py","https://raw.githubusercontent.com/ashleve/lightning-hydra-template/master/pyproject.toml"],"_requirements_localurls":["ashleve~lightning-hydra-template~requirements.txt","ashleve~lightning-hydra-template~setup.py","ashleve~lightning-hydra-template~pyproject.toml"]},{"index":308,"category":"util","githuburl":"https://github.com/legrandin/pycryptodome","featured":null,"links":null,"description":null,"_repopath":"legrandin/pycryptodome","_reponame":"pycryptodome","_stars":2268,"_forks":417,"_watches":59,"_language":"C","_homepage":"https://www.pycryptodome.org","_description":"pycryptodome: A self-contained cryptographic library for Python","_organization":"legrandin","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-05-02T00:00:00.000Z","_age_weeks":459,"_stars_per_week":4.93,"_topics":["cryptography","security","python"],"_last_commit_date":"2023-01-28T00:00:00.000Z","_pop_contributor_count":134,"_pop_contributor_logins":["Legrandin","akuchling","dlitz","hugovk@nordsoftware","mchlnix@none","mitchellrj","roughconsensusandrunningcode","sebastinas@aitaustrianinstituteoftechnology","stefanor@freexian,debian,ubuntu","thorsteneb@cisco"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aitaustrianinstituteoftechnology","cisco","freexian,debian,ubuntu","none","nordsoftware"],"_pop_contributor_orgs_raw":["AIT Austrian Institute of Technology","Cisco","Freexian, Debian, Ubuntu","None","Nord Software"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.27,"_pop_updated_issues_count":94,"_pop_closed_issues_count":76,"_pop_created_since_days":107,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":94.0,"_pop_comment_count":120.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":46.7,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/legrandin/pycryptodome/master/README.rst","_readme_localurl":"legrandin~pycryptodome~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/legrandin/pycryptodome/master/setup.py"],"_requirements_localurls":["legrandin~pycryptodome~setup.py"]},{"index":253,"category":"ml","githuburl":"https://github.com/microsoft/flaml","featured":null,"links":null,"description":null,"_repopath":"microsoft/flaml","_reponame":"FLAML","_stars":2265,"_forks":348,"_watches":40,"_language":"Jupyter Notebook","_homepage":"https://microsoft.github.io/FLAML/","_description":"FLAML: A fast library for AutoML and tuning. Join our Discord: https://discord.gg/Cppx2vSPVP.","_organization":"microsoft","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-08-20T00:00:00.000Z","_age_weeks":130,"_stars_per_week":17.31,"_topics":["automl","hyperparam","automated-machine-learning","machine-learning","data-science","python","jupyter-notebook","hyperparameter-optimization","random-forest","scikit-learn","deep-learning","natural-language-processing","natural-language-generation","timeseries-forecasting","classification","regression","tuning","finetuning","tabular-data"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":61,"_pop_contributor_logins":["Anonymous-submission-repo","dependabot[bot]","gianpd","int-chaos","jingdong00","liususan091219@stevensinstituteoftechnology","qingyun-wu@pennsylvaniastateuniversity","royninja@alletec","skzhang1","sonichi@microsoft"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["alletec","microsoft","pennsylvaniastateuniversity","stevensinstituteoftechnology"],"_pop_contributor_orgs_raw":["Alletec","Microsoft","Pennsylvania State University","Stevens Institute of Technology"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.79,"_pop_updated_issues_count":121,"_pop_closed_issues_count":70,"_pop_created_since_days":30,"_pop_updated_since_days":0,"_pop_recent_releases_count":19,"_pop_recent_releases_estimated_tags":21,"_pop_recent_releases_adjusted_count":19,"_pop_issue_count":121.0,"_pop_comment_count":187.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":46.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/flaml/master/README.md","_readme_localurl":"microsoft~flaml~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/flaml/master/setup.py"],"_requirements_localurls":["microsoft~flaml~setup.py"]},{"index":878,"category":"time-series","githuburl":"https://github.com/nixtla/statsforecast","featured":null,"links":null,"description":null,"_repopath":"nixtla/statsforecast","_reponame":"statsforecast","_stars":2233,"_forks":138,"_watches":18,"_language":"Python","_homepage":"https://nixtla.github.io/statsforecast/","_description":"statsforecast: Lightning \u26a1\ufe0f fast forecasting with statistical and econometric models.","_organization":"nixtla","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-11-24T00:00:00.000Z","_age_weeks":65,"_stars_per_week":34.35,"_topics":["time-series","statistics","forecasting","arima","econometrics","machine-learning","python","exponential-smoothing","ets","baselines","predictions","naive","seasonal-naive","fbprophet","prophet","neuralprophet","mstl","theta","automl","data-science"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":18,"_pop_contributor_logins":["FedericoGarza@nixtla","JeroenPeterBos","MMenchero","allcontributors[bot]","cchallu","goodwanghan","jmoralez@nubank","kdgutier","mergenthaler@nixtla","sugatoray@universityofwisconsin-milwaukee"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["nixtla","nubank","universityofwisconsin-milwaukee"],"_pop_contributor_orgs_raw":["@Nixtla","@nubank","Nixtla","University of Wisconsin - Milwaukee"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.83,"_pop_updated_issues_count":98,"_pop_closed_issues_count":76,"_pop_created_since_days":15,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":20,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":98.0,"_pop_comment_count":108.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":41.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nixtla/statsforecast/master/README.md","_readme_localurl":"nixtla~statsforecast~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nixtla/statsforecast/master/setup.py"],"_requirements_localurls":["nixtla~statsforecast~setup.py"]},{"index":458,"category":"ml-dl","githuburl":"https://github.com/nebuly-ai/nebullvm","featured":null,"links":null,"description":null,"_repopath":"nebuly-ai/nebullvm","_reponame":"nebullvm","_stars":2232,"_forks":126,"_watches":26,"_language":"Python","_homepage":"https://www.nebuly.com/","_description":"nebullvm: Plug and play modules to optimize the performances of your AI systems \ud83d\ude80","_organization":"nebuly-ai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-02-12T00:00:00.000Z","_age_weeks":53,"_stars_per_week":41.66,"_topics":["deep-learning","pytorch","onnx","machine-learning","tensorflow","tvm","openvino","tensorrt","huggingface","compiler","computing","inference","neural-network","pypi","quantization","edge-computing","gpu","optimization","transformers"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":23,"_pop_contributor_logins":["ZecchinLeonardo","arianGh1@kharazmiuniversity","aurimgg","cyclotomicextension","diegofiori@nebuly|epfl","eltociear@bandism","emilecourthoud@nebuly|ethzurich","francis-oss@nebuly-ai|mit","nebuly-ai@nebuly-ai","valeriosofi@nebuly"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bandism","kharazmiuniversity","nebuly","nebuly-ai","nebuly-ai|mit","nebuly|epfl","nebuly|ethzurich"],"_pop_contributor_orgs_raw":["@bandism ","@nebuly-ai","@nebuly-ai | MIT","Kharazmi University","Nebuly","Nebuly | EPFL","Nebuly | ETH Zurich"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.73,"_pop_updated_issues_count":88,"_pop_closed_issues_count":56,"_pop_created_since_days":12,"_pop_updated_since_days":0,"_pop_recent_releases_count":21,"_pop_recent_releases_estimated_tags":21,"_pop_recent_releases_adjusted_count":21,"_pop_issue_count":88.0,"_pop_comment_count":91.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":42.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nebuly-ai/nebullvm/master/README.md","_readme_localurl":"nebuly-ai~nebullvm~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nebuly-ai/nebullvm/master/requirements.txt","https://raw.githubusercontent.com/nebuly-ai/nebullvm/master/setup.py"],"_requirements_localurls":["nebuly-ai~nebullvm~requirements.txt","nebuly-ai~nebullvm~setup.py"]},{"index":965,"category":"ml-dl","githuburl":"https://github.com/danielegrattarola/spektral","featured":null,"links":null,"description":null,"_repopath":"danielegrattarola/spektral","_reponame":"spektral","_stars":2231,"_forks":333,"_watches":43,"_language":"Python","_homepage":"https://graphneural.network","_description":"spektral: Graph Neural Networks with Keras and Tensorflow 2.","_organization":"danielegrattarola","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2019-01-17T00:00:00.000Z","_age_weeks":213,"_stars_per_week":10.43,"_topics":["graph-neural-networks","keras","python","tensorflow","tensorflow2","graph-deep-learning","deep-learning"],"_last_commit_date":"2023-02-11T00:00:00.000Z","_pop_contributor_count":26,"_pop_contributor_logins":["AlexandrMelnic","FilippoMB@uitthearcticuniversityofnorway","JackMaguire@universityofnorthcarolinaatchapelhill","LeviBorodenko","cclauss@christianclauss","cgarciae@quansight","danielegrattarola","djpetti","jackd@universityofmelbourne","kmader"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["christianclauss","quansight","uitthearcticuniversityofnorway","universityofmelbourne","universityofnorthcarolinaatchapelhill"],"_pop_contributor_orgs_raw":["Christian Clauss","Quansight","UiT the Arctic University of Norway","University of Melbourne","University of North Carolina at Chapel Hill"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.29,"_pop_updated_issues_count":16,"_pop_closed_issues_count":6,"_pop_created_since_days":50,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":16.0,"_pop_comment_count":43.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":0,"_pop_score":39.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/danielegrattarola/spektral/master/README.md","_readme_localurl":"danielegrattarola~spektral~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/danielegrattarola/spektral/master/setup.py","https://raw.githubusercontent.com/danielegrattarola/spektral/master/pyproject.toml"],"_requirements_localurls":["danielegrattarola~spektral~setup.py","danielegrattarola~spektral~pyproject.toml"]},{"index":540,"category":"nlp","githuburl":"https://github.com/salesforce/codegen","featured":null,"links":null,"description":null,"_repopath":"salesforce/codegen","_reponame":"CodeGen","_stars":2223,"_forks":169,"_watches":43,"_language":"Python","_homepage":"","_description":"CodeGen is an open-source model for program synthesis. Trained on TPU-v4. Competitive with OpenAI Codex.","_organization":"salesforce","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-03-28T00:00:00.000Z","_age_weeks":47,"_stars_per_week":47.01,"_topics":["programsynthesis","generativemodel","codex","languagemodel","llm","tpu-acceleration"],"_last_commit_date":"2022-12-01T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["LowinLi","bpucla","enijkamp","jimjag","jsoref@garnercorp","rooa","vlomshakov"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["garnercorp"],"_pop_contributor_orgs_raw":["@GarnerCorp "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.83,"_pop_updated_issues_count":14,"_pop_closed_issues_count":5,"_pop_created_since_days":11,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":14.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":20.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/codegen/master/README.md","_readme_localurl":"salesforce~codegen~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/salesforce/codegen/master/requirements.txt"],"_requirements_localurls":["salesforce~codegen~requirements.txt"]},{"index":710,"category":"pandas","githuburl":"https://github.com/jmcarpenter2/swifter","featured":null,"links":null,"description":null,"_repopath":"jmcarpenter2/swifter","_reponame":"swifter","_stars":2216,"_forks":99,"_watches":29,"_language":"Python","_homepage":"","_description":"swifter: A package which efficiently applies any function to a pandas dataframe or series in the fastest available manner","_organization":"jmcarpenter2","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-04-07T00:00:00.000Z","_age_weeks":254,"_stars_per_week":8.7,"_topics":["pandas","pandas-dataframe","parallel-computing","parallelization","dask","modin"],"_last_commit_date":"2022-08-16T00:00:00.000Z","_pop_contributor_count":17,"_pop_contributor_logins":["CrafterKolyan","MichaelKarpe@next-gate-tech","apurvis","def-mycroft","devin-petersohn@ponder","dhendo@freshrelevance","jmcarpenter2@manifoldai","openafox","tcbegley@facebook","toddrme2178"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook","freshrelevance","manifoldai","next-gate-tech","ponder"],"_pop_contributor_orgs_raw":["@facebook","@manifoldai ","@next-gate-tech","Fresh Relevance","Ponder"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.38,"_pop_updated_issues_count":6,"_pop_closed_issues_count":2,"_pop_created_since_days":59,"_pop_updated_since_days":6,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":6.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":33.2,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jmcarpenter2/swifter/master/README.md","_readme_localurl":"jmcarpenter2~swifter~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jmcarpenter2/swifter/master/requirements.txt","https://raw.githubusercontent.com/jmcarpenter2/swifter/master/setup.py"],"_requirements_localurls":["jmcarpenter2~swifter~requirements.txt","jmcarpenter2~swifter~setup.py"]},{"index":807,"category":"web","githuburl":"https://github.com/flipkart-incubator/astra","featured":null,"links":null,"description":null,"_repopath":"flipkart-incubator/astra","_reponame":"Astra","_stars":2177,"_forks":360,"_watches":85,"_language":"Python","_homepage":"","_description":"Astra: Automated Security Testing For REST API's","_organization":"flipkart-incubator","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-01-10T00:00:00.000Z","_age_weeks":267,"_stars_per_week":8.15,"_topics":["security","restapiautomation","python","owasp","penetration-testing-framework","postman-collection","ci-cd","sdlc","penetration-testing","security-automation"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":12,"_pop_contributor_logins":["Anemone95@aarhusuni","ankurbhargava87f","disenchant","gajjar8055","harsh-groverfk","mohangcsm@myntradesignspvtltd","prajal","royingantaginting@gdp-admin","sagarpo"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aarhusuni","gdp-admin","myntradesignspvtltd"],"_pop_contributor_orgs_raw":["@GDP-ADMIN ","AarhusUni","Myntra Designs Pvt Ltd"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":6,"_pop_closed_issues_count":0,"_pop_created_since_days":62,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":6.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":27.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/flipkart-incubator/astra/master/README.md","_readme_localurl":"flipkart-incubator~astra~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/flipkart-incubator/astra/master/requirements.txt"],"_requirements_localurls":["flipkart-incubator~astra~requirements.txt"]},{"index":617,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-testinfra","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-testinfra","_reponame":"pytest-testinfra","_stars":2159,"_forks":321,"_watches":82,"_language":"Python","_homepage":"https://testinfra.readthedocs.io","_description":"pytest-testinfra: Testinfra test your infrastructures","_organization":"pytest-dev","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2015-03-15T00:00:00.000Z","_age_weeks":414,"_stars_per_week":5.21,"_topics":["python","testing","infrastructure-as-code","devops","tdd","nagios","docker","tdd-utilities","testing-tools","devops-tools","infrastructure-testing","saltstack","chef","puppet","ansible","kubernetes","pytest-plugin"],"_last_commit_date":"2023-01-11T00:00:00.000Z","_pop_contributor_count":123,"_pop_contributor_logins":["BenoitKnecht","atombrella","dcermak@suse","gtmanfred@autodesk","ianw","jesselang@spscommerce","philpep@lowatt","randombenj","romainx","ssbarnea@redhatansible"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["autodesk","lowatt","redhatansible","spscommerce","suse"],"_pop_contributor_orgs_raw":["@SPSCommerce","@lowatt","Autodesk","Red Hat @ansible","SUSE"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.5,"_pop_updated_issues_count":38,"_pop_closed_issues_count":20,"_pop_created_since_days":97,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":38.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":41.57,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-testinfra/master/README.rst","_readme_localurl":"pytest-dev~pytest-testinfra~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-testinfra/master/setup.py","https://raw.githubusercontent.com/pytest-dev/pytest-testinfra/master/pyproject.toml"],"_requirements_localurls":["pytest-dev~pytest-testinfra~setup.py","pytest-dev~pytest-testinfra~pyproject.toml"]},{"index":871,"category":"profiling","githuburl":"https://github.com/reloadware/reloadium","featured":1.0,"links":null,"description":null,"_repopath":"reloadware/reloadium","_reponame":"reloadium","_stars":2159,"_forks":38,"_watches":24,"_language":"Python","_homepage":"https://reloadium.io","_description":"reloadium: Advanced Hot Reloading & Profiling for Python","_organization":"reloadware","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-01-15T00:00:00.000Z","_age_weeks":57,"_stars_per_week":37.5,"_topics":["hot-reload","hot-reloading","python","python3","edit-and-continue","django","flask","pandas"],"_last_commit_date":"2023-01-27T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["dkrystki@reloadware","siilats@bytelogics"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bytelogics","reloadware"],"_pop_contributor_orgs_raw":["Reloadware","bytelogics"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.71,"_pop_updated_issues_count":35,"_pop_closed_issues_count":26,"_pop_created_since_days":13,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":35.0,"_pop_comment_count":85.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":27.25,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/reloadware/reloadium/master/README.rst","_readme_localurl":"reloadware~reloadium~README.rst","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":867,"category":"util","githuburl":"https://github.com/dosisod/refurb","featured":1.0,"links":null,"description":null,"_repopath":"dosisod/refurb","_reponame":"refurb","_stars":2138,"_forks":41,"_watches":15,"_language":"Python","_homepage":"","_description":"refurb: A tool for refurbishing and modernizing Python codebases","_organization":"dosisod","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2022-07-27T00:00:00.000Z","_age_weeks":30,"_stars_per_week":71.27,"_topics":["cli","mypy","python","python310","testing","gplv3","hacktoberfest"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":10,"_pop_contributor_logins":["EFord36","bbkgh@hamravesh","doomedraven","dosisod","jairhenrique@grupoboticario","jdevera@hotjar","michaeloliverx@resgroup","trag1c","yilei"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["grupoboticario","hamravesh","hotjar","resgroup"],"_pop_contributor_orgs_raw":["@grupoboticario ","@hamravesh ","@resgroup","Hotjar"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.1,"_pop_updated_issues_count":86,"_pop_closed_issues_count":77,"_pop_created_since_days":7,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":35,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":86.0,"_pop_comment_count":41.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":35.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dosisod/refurb/master/README.md","_readme_localurl":"dosisod~refurb~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dosisod/refurb/master/pyproject.toml"],"_requirements_localurls":["dosisod~refurb~pyproject.toml"]},{"index":548,"category":"ml","githuburl":"https://github.com/lightly-ai/lightly","featured":null,"links":null,"description":null,"_repopath":"lightly-ai/lightly","_reponame":"lightly","_stars":2135,"_forks":178,"_watches":24,"_language":"Python","_homepage":"https://docs.lightly.ai/self-supervised-learning/","_description":"lightly: A python library for self-supervised learning on images.","_organization":"lightly-ai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-10-13T00:00:00.000Z","_age_weeks":123,"_stars_per_week":17.34,"_topics":["deep-learning","self-supervised-learning","machine-learning","computer-vision","pytorch","embeddings","contrastive-learning","active-learning"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":24,"_pop_contributor_logins":["IgorSusmelj@lightly","MalteEbner@lightly","Ra1Nik","busycalibrating","guarin","ibro45@aimharvard-mgb","japrescott","michal-lightly","philippmwirth","shaundaley39"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aimharvard-mgb","lightly"],"_pop_contributor_orgs_raw":["AIM @ Harvard-MGB","Lightly"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.48,"_pop_updated_issues_count":136,"_pop_closed_issues_count":124,"_pop_created_since_days":29,"_pop_updated_since_days":0,"_pop_recent_releases_count":40,"_pop_recent_releases_estimated_tags":34,"_pop_recent_releases_adjusted_count":40,"_pop_issue_count":136.0,"_pop_comment_count":154.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":41.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lightly-ai/lightly/master/README.md","_readme_localurl":"lightly-ai~lightly~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lightly-ai/lightly/master/setup.py"],"_requirements_localurls":["lightly-ai~lightly~setup.py"]},{"index":503,"category":"gis","githuburl":"https://github.com/google/earthengine-api","featured":null,"links":null,"description":null,"_repopath":"google/earthengine-api","_reponame":"earthengine-api","_stars":2131,"_forks":916,"_watches":208,"_language":"JavaScript","_homepage":"","_description":"earthengine-api: Python and JavaScript bindings for calling the Earth Engine API.","_organization":"google","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2015-04-22T00:00:00.000Z","_age_weeks":409,"_stars_per_week":5.21,"_topics":[],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":36,"_pop_contributor_logins":["anonymousandrew@google","bengalin","eengle","inazarenko","kpreid","max99x","mdhancher@google","michaelfdewitt@google","simonff@google","tylere@google"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_raw":["@Google","@google ","Google","Google, Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":5,"_pop_closed_issues_count":2,"_pop_created_since_days":95,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":32,"_pop_recent_releases_adjusted_count":32,"_pop_issue_count":5.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":33.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/earthengine-api/master/README.md","_readme_localurl":"google~earthengine-api~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":198,"category":"ml","githuburl":"https://github.com/maif/shapash","featured":null,"links":null,"description":null,"_repopath":"maif/shapash","_reponame":"shapash","_stars":2119,"_forks":259,"_watches":39,"_language":"Jupyter Notebook","_homepage":"https://maif.github.io/shapash/","_description":"shapash: \ud83d\udd05 Shapash makes Machine Learning models transparent and understandable by everyone","_organization":"maif","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-04-29T00:00:00.000Z","_age_weeks":147,"_stars_per_week":14.41,"_topics":["python","machine-learning","explainability","explainable-ml","transparency","ethical-artificial-intelligence","shap","lime","interpretability"],"_last_commit_date":"2023-02-06T00:00:00.000Z","_pop_contributor_count":35,"_pop_contributor_logins":["FlorineGreciet","Francesco-Marini","GAP01","MaxGdr@helsing","SebastienBidault","ThibaudReal","ThomasBouche","guillaume-vignal@maif","mathisbarthere","yg79@maif"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["helsing","maif"],"_pop_contributor_orgs_raw":["Helsing","MAIF","Maif"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.6,"_pop_updated_issues_count":28,"_pop_closed_issues_count":14,"_pop_created_since_days":34,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":28.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":36.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/maif/shapash/master/README.md","_readme_localurl":"maif~shapash~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/maif/shapash/master/setup.py"],"_requirements_localurls":["maif~shapash~setup.py"]},{"index":813,"category":"data","githuburl":"https://github.com/datafold/data-diff","featured":null,"links":null,"description":null,"_repopath":"datafold/data-diff","_reponame":"data-diff","_stars":2118,"_forks":101,"_watches":16,"_language":"Python","_homepage":"https://www.datafold.com/blog/open-source-data-diff","_description":"data-diff: Efficiently diff data in or across relational databases","_organization":"datafold","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-03-07T00:00:00.000Z","_age_weeks":50,"_stars_per_week":42.12,"_topics":["database","mysql","postgresql","snowflake","rdbms","trino","data-engineering","data-quality","data-science","data-quality-monitoring","databricks-sql","dataengineering","dataquality","oracle-database","postgres","sql","dbt","python"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":27,"_pop_contributor_logins":["cfernhout","danthelion@brooklyn-data","dlawin","erezsh","glebmezh@datafold","jardayn","kylemcnair","leoebfolsom","pik94@datafold","sirupsen@webscaleinc"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["brooklyn-data","datafold","webscaleinc"],"_pop_contributor_orgs_raw":["@brooklyn-data","@datafold ","Datafold","Webscale Inc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.17,"_pop_updated_issues_count":104,"_pop_closed_issues_count":61,"_pop_created_since_days":12,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":104.0,"_pop_comment_count":142.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":41.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/datafold/data-diff/master/README.md","_readme_localurl":"datafold~data-diff~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/datafold/data-diff/master/pyproject.toml"],"_requirements_localurls":["datafold~data-diff~pyproject.toml"]},{"index":222,"category":"data","githuburl":"https://github.com/pynamodb/pynamodb","featured":1.0,"links":null,"description":null,"_repopath":"pynamodb/pynamodb","_reponame":"PynamoDB","_stars":2115,"_forks":414,"_watches":41,"_language":"Python","_homepage":"http://pynamodb.readthedocs.io","_description":"PynamoDB: A pythonic interface to Amazon's DynamoDB","_organization":"pynamodb","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2014-01-20T00:00:00.000Z","_age_weeks":474,"_stars_per_week":4.46,"_topics":["python","dynamodb","aws"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":102,"_pop_contributor_logins":["anandswaminathan@lyft","betamoo","danielhochman@lyft","garrettheel","hallie@lyft","ikonst@lyft","jlafon@openeyescientificsoftware","jmphilli","jpinner-lyft","scode"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["lyft","openeyescientificsoftware"],"_pop_contributor_orgs_raw":["@lyft","@lyft ","Lyft","Lyft, Inc.","OpenEye Scientific Software"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.81,"_pop_updated_issues_count":67,"_pop_closed_issues_count":47,"_pop_created_since_days":111,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":67.0,"_pop_comment_count":94.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":44.52,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pynamodb/pynamodb/master/README.rst","_readme_localurl":"pynamodb~pynamodb~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pynamodb/pynamodb/master/setup.py"],"_requirements_localurls":["pynamodb~pynamodb~setup.py"]},{"index":749,"category":"diffusion","githuburl":"https://github.com/nateraw/stable-diffusion-videos","featured":null,"links":null,"description":null,"_repopath":"nateraw/stable-diffusion-videos","_reponame":"stable-diffusion-videos","_stars":2111,"_forks":205,"_watches":26,"_language":"Python","_homepage":"","_description":"stable-diffusion-videos: Create \ud83d\udd25 videos with Stable Diffusion by exploring the latent space and morphing between text prompts","_organization":"nateraw","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-09-06T00:00:00.000Z","_age_weeks":24,"_stars_per_week":87.44,"_topics":["ai-art","huggingface","huggingface-diffusers","machine-learning","stable-diffusion"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":14,"_pop_contributor_logins":["0x1355","Atomic-Germ@exitgardenrecords","Niravprajapati1@student","charlielito","codefaux","danielpatrickhug@earth","nateraw@huggingface","philgzl","seriousran@ncsoftaivisionlabgenerationteam","thehappydinoa@censys"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["censys","earth","exitgardenrecords","huggingface","ncsoftaivisionlabgenerationteam","student"],"_pop_contributor_orgs_raw":["@NCSoft AI Vision Lab Generation Team","@censys ","@huggingface","Earth","Exit Garden Records","Student "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.0,"_pop_updated_issues_count":46,"_pop_closed_issues_count":30,"_pop_created_since_days":6,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":34,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":46.0,"_pop_comment_count":139.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":40.23,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/README.md","_readme_localurl":"nateraw~stable-diffusion-videos~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/requirements.txt","https://raw.githubusercontent.com/nateraw/stable-diffusion-videos/master/setup.py"],"_requirements_localurls":["nateraw~stable-diffusion-videos~requirements.txt","nateraw~stable-diffusion-videos~setup.py"]},{"index":411,"category":"util","githuburl":"https://github.com/yaml/pyyaml","featured":null,"links":null,"description":null,"_repopath":"yaml/pyyaml","_reponame":"pyyaml","_stars":2089,"_forks":435,"_watches":49,"_language":"Python","_homepage":"","_description":"pyyaml: Canonical source repository for PyYAML","_organization":"yaml","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2011-11-03T00:00:00.000Z","_age_weeks":589,"_stars_per_week":3.54,"_topics":["python","yaml"],"_last_commit_date":"2022-09-13T00:00:00.000Z","_pop_contributor_count":40,"_pop_contributor_logins":["Thom1729","alex","cclauss@christianclauss","dstufft@datadog","ingydotnet@newfolddigital/bluehost","jdufresne@pioneervalleybooks","nitzmahone@ansible","perlpunk@suse","peterkmurphy","xitology"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ansible","christianclauss","datadog","newfolddigital/bluehost","pioneervalleybooks","suse"],"_pop_contributor_orgs_raw":["@DataDog","@SUSE","@ansible","Christian Clauss","Newfold Digital / Bluehost","Pioneer Valley Books"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":43,"_pop_closed_issues_count":20,"_pop_created_since_days":138,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":43.0,"_pop_comment_count":55.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":38.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/yaml/pyyaml/master/README.md","_readme_localurl":"yaml~pyyaml~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/yaml/pyyaml/master/setup.py","https://raw.githubusercontent.com/yaml/pyyaml/master/pyproject.toml"],"_requirements_localurls":["yaml~pyyaml~setup.py","yaml~pyyaml~pyproject.toml"]},{"index":860,"category":"jupyter","githuburl":"https://github.com/jupyter/nbviewer","featured":null,"links":null,"description":null,"_repopath":"jupyter/nbviewer","_reponame":"nbviewer","_stars":2059,"_forks":537,"_watches":93,"_language":"Python","_homepage":"https://nbviewer.jupyter.org","_description":"nbviewer: nbconvert as a web service: Render Jupyter Notebooks as static web pages","_organization":"jupyter","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-08-05T00:00:00.000Z","_age_weeks":550,"_stars_per_week":3.74,"_topics":["jupyter","jupyter-notebook","nbconvert"],"_last_commit_date":"2023-01-27T00:00:00.000Z","_pop_contributor_count":95,"_pop_contributor_logins":["Carreau@quansight-labs","bollwyvl","ellisonbg@amazonwebservices","krinsman","minrk@simularesearchlaboratory","mrterry@nextdoor","parente@wearethorn","pelson","pre-commit-ci[bot]","rgbkrk@noteable-io"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazonwebservices","nextdoor","noteable-io","quansight-labs","simularesearchlaboratory","wearethorn"],"_pop_contributor_orgs_raw":["@Noteable-io","@Quansight-Labs","@wearethorn ","Amazon Web Services","Nextdoor","Simula Research Laboratory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.25,"_pop_updated_issues_count":18,"_pop_closed_issues_count":10,"_pop_created_since_days":128,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":18.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":40.44,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/nbviewer/master/README.md","_readme_localurl":"jupyter~nbviewer~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/nbviewer/master/requirements.txt","https://raw.githubusercontent.com/jupyter/nbviewer/master/setup.py"],"_requirements_localurls":["jupyter~nbviewer~requirements.txt","jupyter~nbviewer~setup.py"]},{"index":881,"category":"time-series","githuburl":"https://github.com/rjt1990/pyflux","featured":null,"links":null,"description":null,"_repopath":"rjt1990/pyflux","_reponame":"pyflux","_stars":2010,"_forks":235,"_watches":70,"_language":"Python","_homepage":null,"_description":"pyflux: Open source time series library for Python","_organization":"rjt1990","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2016-02-16T00:00:00.000Z","_age_weeks":366,"_stars_per_week":5.49,"_topics":["statistics","time-series"],"_last_commit_date":"2018-12-16T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["RJT1990","TerryJey","ThomasHoppe","gitter-badger@gitter","juanpabloaj","tmak@pinseekerinc"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["gitter","pinseekerinc"],"_pop_contributor_orgs_raw":["Gitter","PinSeeker Inc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":85,"_pop_updated_since_days":51,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":15.47,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rjt1990/pyflux/master/README.md","_readme_localurl":"rjt1990~pyflux~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rjt1990/pyflux/master/requirements.txt","https://raw.githubusercontent.com/rjt1990/pyflux/master/setup.py"],"_requirements_localurls":["rjt1990~pyflux~requirements.txt","rjt1990~pyflux~setup.py"]},{"index":452,"category":"pandas","githuburl":"https://github.com/pandera-dev/pandera","featured":1.0,"links":null,"description":null,"_repopath":"pandera-dev/pandera","_reponame":"pandera","_stars":1978,"_forks":162,"_watches":13,"_language":"Python","_homepage":"https://www.union.ai/pandera","_description":"pandera: A light-weight, flexible, and expressive statistical data testing library","_organization":"pandera-dev","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-11-01T00:00:00.000Z","_age_weeks":224,"_stars_per_week":8.8,"_topics":["pandas","validation","schema","dataframes","testing","pandas-validation","pandas-dataframe","data-validation","data-cleaning","data-check","testing-tools","assertions","data-assertions","data-verification","dataframe-schema","hypothesis-testing","pandas-validator","data-processing"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":79,"_pop_contributor_logins":["NickCrews","a-recknagel@auxmoney","cosmicBboy@unionai","cristianmatache@imperialcollegelondon","ferhah","gordonhart","mastersplinter@bcggamma","ralbertazzi@bendingspoons","smackesey@elementl","the-matt-morris@rsg"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["auxmoney","bcggamma","bendingspoons","elementl","imperialcollegelondon","rsg","unionai"],"_pop_contributor_orgs_raw":["@unionai","BCG Gamma","Bending Spoons","Elementl","Imperial College London","RSG, Inc.","auxmoney"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.21,"_pop_updated_issues_count":66,"_pop_closed_issues_count":21,"_pop_created_since_days":52,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":66.0,"_pop_comment_count":150.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":49.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pandera-dev/pandera/master/README.md","_readme_localurl":"pandera-dev~pandera~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pandera-dev/pandera/master/setup.py","https://raw.githubusercontent.com/pandera-dev/pandera/master/pyproject.toml"],"_requirements_localurls":["pandera-dev~pandera~setup.py","pandera-dev~pandera~pyproject.toml"]},{"index":506,"category":"ml-ops","githuburl":"https://github.com/adap/flower","featured":null,"links":null,"description":null,"_repopath":"adap/flower","_reponame":"flower","_stars":1961,"_forks":439,"_watches":22,"_language":"Python","_homepage":"https://flower.dev","_description":"Flower: A Friendly Federated Learning Framework","_organization":"adap","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-02-17T00:00:00.000Z","_age_weeks":157,"_stars_per_week":12.47,"_topics":["flower","federated-learning","federated-learning-framework","pytorch-federated-learning","tensorflow-federated-learning","keras-federated-learning","federated-analytics","fleet-learning","fleet-intelligence","deep-learning","machine-learning","pytorch","scikit-learn","tensorflow"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":54,"_pop_contributor_logins":["CanTuerk","adam-narozniak@epfl","akhilmathurs","charlesbvll@epfl","danieljanes@adapgmbh","jafermarq","mariaboerner1987","pedropgusmao","sisco0","tanertopal@adapgmbh"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["adapgmbh","epfl"],"_pop_contributor_orgs_raw":["Adap GmbH","EPFL"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.85,"_pop_updated_issues_count":199,"_pop_closed_issues_count":166,"_pop_created_since_days":37,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":199.0,"_pop_comment_count":65.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":40.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/adap/flower/master/README.md","_readme_localurl":"adap~flower~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/adap/flower/master/pyproject.toml"],"_requirements_localurls":["adap~flower~pyproject.toml"]},{"index":323,"category":"gui","githuburl":"https://github.com/wxwidgets/phoenix","featured":null,"links":null,"description":null,"_repopath":"wxwidgets/phoenix","_reponame":"Phoenix","_stars":1946,"_forks":494,"_watches":104,"_language":"Python","_homepage":"http://wxpython.org/","_description":"Phoenix: wxPython's Project Phoenix. A new implementation of wxPython, better, stronger, faster than he was before.","_organization":"wxwidgets","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-07-17T00:00:00.000Z","_age_weeks":553,"_stars_per_week":3.52,"_topics":["python","cross-platform","gui-framework","gui-toolkit","gui","windows","macosx","linux","awesome","wxwidgets","wxpython"],"_last_commit_date":"2023-02-13T00:00:00.000Z","_pop_contributor_count":123,"_pop_contributor_logins":["GadgetSteve","Metallicow@self;independant","RobinD42","cbeytas","dougthor42@prounlimited(contractorforgooglequantumai)","infinity77","kollivier@kosoftworks","mesalu","swt2c","wernerfb"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["kosoftworks","prounlimited(contractorforgooglequantumai)","self;independant"],"_pop_contributor_orgs_raw":["KOSoftworks LLC","PRO Unlimited (contractor for Google Quantum AI)","self; Independant"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.35,"_pop_updated_issues_count":76,"_pop_closed_issues_count":38,"_pop_created_since_days":129,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":76.0,"_pop_comment_count":143.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":45.67,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/wxwidgets/phoenix/master/README.rst","_readme_localurl":"wxwidgets~phoenix~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/wxwidgets/phoenix/master/requirements.txt","https://raw.githubusercontent.com/wxwidgets/phoenix/master/setup.py"],"_requirements_localurls":["wxwidgets~phoenix~requirements.txt","wxwidgets~phoenix~setup.py"]},{"index":590,"category":"util","githuburl":"https://github.com/hgrecco/pint","featured":null,"links":null,"description":null,"_repopath":"hgrecco/pint","_reponame":"pint","_stars":1944,"_forks":415,"_watches":40,"_language":"Python","_homepage":"http://pint.readthedocs.org/","_description":"pint: Operate and manipulate physical quantities in Python","_organization":"hgrecco","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2012-07-13T00:00:00.000Z","_age_weeks":553,"_stars_per_week":3.51,"_topics":["python","science","units"],"_last_commit_date":"2023-02-13T00:00:00.000Z","_pop_contributor_count":182,"_pop_contributor_logins":["5igno@imec","andrewgsavage","bors[bot]","clarkgwillison","crusaderky","dalito@leibniz-institutf\u00fcrkatalysee.v.(likat)","hgrecco","jthielen@coloradostateuniversity","jules-ch","keewis"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["coloradostateuniversity","imec","leibniz-institutf\u00fcrkatalysee.v.(likat)"],"_pop_contributor_orgs_raw":["Colorado State University","Leibniz-Institut f\u00fcr Katalyse e.V. (LIKAT)","imec"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.98,"_pop_updated_issues_count":80,"_pop_closed_issues_count":35,"_pop_created_since_days":129,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":80.0,"_pop_comment_count":115.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":47.41,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/hgrecco/pint/master/README.rst","_readme_localurl":"hgrecco~pint~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/hgrecco/pint/master/setup.py","https://raw.githubusercontent.com/hgrecco/pint/master/pyproject.toml"],"_requirements_localurls":["hgrecco~pint~setup.py","hgrecco~pint~pyproject.toml"]},{"index":353,"category":"ml-interpretability","githuburl":"https://github.com/seldonio/alibi","featured":null,"links":null,"description":null,"_repopath":"seldonio/alibi","_reponame":"alibi","_stars":1935,"_forks":220,"_watches":42,"_language":"Python","_homepage":"https://docs.seldon.io/projects/alibi/en/stable/","_description":"alibi: Algorithms for explaining machine learning models","_organization":"seldonio","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-02-26T00:00:00.000Z","_age_weeks":208,"_stars_per_week":9.3,"_topics":["machine-learning","explanations","interpretability","counterfactual","xai"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":18,"_pop_contributor_logins":["MarcoGorelli@quansight","RobertSamoilescu","adriangonz@seldonio","alexcoca@universityofcambridge","arnaudvl","ascillitoe@datascienceseldonio","dependabot[bot]","gipster","jklaise","mauicv"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["datascienceseldonio","quansight","seldonio","universityofcambridge"],"_pop_contributor_orgs_raw":["@SeldonIO ","Data Science @SeldonIO","Quansight","University of Cambridge"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.69,"_pop_updated_issues_count":64,"_pop_closed_issues_count":46,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":64.0,"_pop_comment_count":108.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":40.89,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/seldonio/alibi/master/README.md","_readme_localurl":"seldonio~alibi~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/seldonio/alibi/master/setup.py"],"_requirements_localurls":["seldonio~alibi~setup.py"]},{"index":233,"category":"crypto","githuburl":"https://github.com/ethereum/py-evm","featured":null,"links":null,"description":null,"_repopath":"ethereum/py-evm","_reponame":"py-evm","_stars":1927,"_forks":578,"_watches":98,"_language":"Python","_homepage":"https://py-evm.readthedocs.io/en/latest/","_description":"py-evm: A Python implementation of the Ethereum Virtual Machine","_organization":"ethereum","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-12-27T00:00:00.000Z","_age_weeks":321,"_stars_per_week":6.0,"_topics":["evm","ethereum","python","ethereum-virtual-machine"],"_last_commit_date":"2022-12-16T00:00:00.000Z","_pop_contributor_count":80,"_pop_contributor_logins":["NIC619","carver@ethereumfoundation","cburgdorf","fselmo@ethereum","gsalgado","hwwhww","jannikluhn","mhchia","pipermerriam@ethereumfoundation","veox"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ethereum","ethereumfoundation"],"_pop_contributor_orgs_raw":["@ethereum","Ethereum Foundation"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.58,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":75,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":4.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":32.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethereum/py-evm/master/README.md","_readme_localurl":"ethereum~py-evm~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ethereum/py-evm/master/setup.py","https://raw.githubusercontent.com/ethereum/py-evm/master/pyproject.toml"],"_requirements_localurls":["ethereum~py-evm~setup.py","ethereum~py-evm~pyproject.toml"]},{"index":441,"category":"gis","githuburl":"https://github.com/rasterio/rasterio","featured":1.0,"links":null,"description":null,"_repopath":"rasterio/rasterio","_reponame":"rasterio","_stars":1882,"_forks":507,"_watches":152,"_language":"Python","_homepage":"https://rasterio.readthedocs.io/","_description":"Rasterio reads and writes geospatial raster datasets","_organization":"rasterio","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2013-11-04T00:00:00.000Z","_age_weeks":485,"_stars_per_week":3.88,"_topics":["python","gis","raster","gdal","cli","cython","mapbox-satellite-oss"],"_last_commit_date":"2023-02-13T00:00:00.000Z","_pop_contributor_count":142,"_pop_contributor_logins":["ColinTalbert","brendan-ward@astutespruce","geowurster","groutr@lynkertechnologies","j08lue@developmentseed","jdmcbr","perrygeo","sgillies@planetlabs","snowman2@corteva","vincentsarago@developmentseed"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["astutespruce","corteva","developmentseed","lynkertechnologies","planetlabs"],"_pop_contributor_orgs_raw":["@corteva ","@developmentseed ","@planetlabs","Astute Spruce, LLC","Development Seed","Lynker Technologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.77,"_pop_updated_issues_count":184,"_pop_closed_issues_count":116,"_pop_created_since_days":113,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":184.0,"_pop_comment_count":323.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":52.48,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/rasterio/rasterio/master/README.rst","_readme_localurl":"rasterio~rasterio~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/rasterio/rasterio/master/requirements.txt","https://raw.githubusercontent.com/rasterio/rasterio/master/setup.py","https://raw.githubusercontent.com/rasterio/rasterio/master/pyproject.toml"],"_requirements_localurls":["rasterio~rasterio~requirements.txt","rasterio~rasterio~setup.py","rasterio~rasterio~pyproject.toml"]},{"index":829,"category":"study","githuburl":"https://github.com/huggingface/diffusion-models-class","featured":null,"links":null,"description":null,"_repopath":"huggingface/diffusion-models-class","_reponame":"diffusion-models-class","_stars":1877,"_forks":167,"_watches":72,"_language":"Jupyter Notebook","_homepage":null,"_description":"diffusion-models-class: Materials for the Hugging Face Diffusion Models Course","_organization":"huggingface","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-10-13T00:00:00.000Z","_age_weeks":18,"_stars_per_week":99.54,"_topics":[],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":17,"_pop_contributor_logins":["RELNO@cityscopemitmedialab","Yorko@relx","darcula1993","dbtreasure","dhakalnirajan@drcfsorg","eltociear@bandism","jmelsbach@universityofcologne","johnowhitaker","lewtun@huggingface","xl0"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bandism","cityscopemitmedialab","drcfsorg","huggingface","relx","universityofcologne"],"_pop_contributor_orgs_raw":["@CityScope @mitmedialab ","@bandism ","@drcfsorg","@huggingface","RELX","University of Cologne"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.88,"_pop_updated_issues_count":55,"_pop_closed_issues_count":47,"_pop_created_since_days":4,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":55.0,"_pop_comment_count":69.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":32.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/diffusion-models-class/master/README.md","_readme_localurl":"huggingface~diffusion-models-class~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":856,"category":"profiling","githuburl":"https://github.com/jiffyclub/snakeviz","featured":null,"links":null,"description":null,"_repopath":"jiffyclub/snakeviz","_reponame":"snakeviz","_stars":1876,"_forks":129,"_watches":23,"_language":"Python","_homepage":"https://jiffyclub.github.io/snakeviz/","_description":"snakeviz: An in-browser Python profile viewer","_organization":"jiffyclub","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-06-26T00:00:00.000Z","_age_weeks":556,"_stars_per_week":3.37,"_topics":[],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":24,"_pop_contributor_logins":["andyljones@anthropic","bmerry","dannysepler@propelinc","embray","jiffyclub@populus-ai","matthewfeickert@universityofwisconsin-madison","nschloe@mondaytech","takluyver","thomasjm@codedownio","yjmade@nvidia"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anthropic","codedownio","mondaytech","nvidia","populus-ai","propelinc","universityofwisconsin-madison"],"_pop_contributor_orgs_raw":["@codedownio ","@populus-ai ","@propelinc","Anthropic","Monday Tech","NVIDIA","University of Wisconsin-Madison"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":7,"_pop_closed_issues_count":2,"_pop_created_since_days":130,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":7.0,"_pop_comment_count":16.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":40.21,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jiffyclub/snakeviz/master/README.rst","_readme_localurl":"jiffyclub~snakeviz~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jiffyclub/snakeviz/master/setup.py"],"_requirements_localurls":["jiffyclub~snakeviz~setup.py"]},{"index":713,"category":"gis","githuburl":"https://github.com/mcordts/cityscapesscripts","featured":null,"links":null,"description":null,"_repopath":"mcordts/cityscapesscripts","_reponame":"cityscapesScripts","_stars":1869,"_forks":574,"_watches":45,"_language":"Python","_homepage":null,"_description":"cityscapesScripts: README and scripts for the Cityscapes Dataset","_organization":"mcordts","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2016-02-20T00:00:00.000Z","_age_weeks":365,"_stars_per_week":5.11,"_topics":[],"_last_commit_date":"2022-10-22T00:00:00.000Z","_pop_contributor_count":17,"_pop_contributor_logins":["Bhomik","MarvinTeichmann@universityofcambridge","adityassrana","alexander-kirillov@facebookairesearch","jmtatsch","lucasb-eyer@googlebrainz\u00fcrich","luofan18","mcordts@daimlerag","ncgaehle","nicolasj92"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["daimlerag","facebookairesearch","googlebrainz\u00fcrich","universityofcambridge"],"_pop_contributor_orgs_raw":["@google Brain Z\u00fcrich","Daimler AG","Facebook AI Research","University of Cambridge"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":13,"_pop_closed_issues_count":6,"_pop_created_since_days":85,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":13.0,"_pop_comment_count":19.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":29.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mcordts/cityscapesscripts/master/README.md","_readme_localurl":"mcordts~cityscapesscripts~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mcordts/cityscapesscripts/master/setup.py"],"_requirements_localurls":["mcordts~cityscapesscripts~setup.py"]},{"index":823,"category":"data","githuburl":"https://github.com/uqfoundation/dill","featured":1.0,"links":null,"description":null,"_repopath":"uqfoundation/dill","_reponame":"dill","_stars":1859,"_forks":155,"_watches":22,"_language":"Python","_homepage":"http://dill.rtfd.io","_description":"dill: serialize all of python","_organization":"uqfoundation","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2013-06-28T00:00:00.000Z","_age_weeks":503,"_stars_per_week":3.69,"_topics":[],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":40,"_pop_contributor_logins":["Peque","anivegesana","hugovk@nordsoftware","jasonmyers@klaviyo","kernc","leogama@amphybio-universityofs\u00e3opaulo,medicalschool","matsjoyce","mindw","mmckerns@uqfoundation","sekikn@nttdata"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amphybio-universityofs\u00e3opaulo,medicalschool","klaviyo","nordsoftware","nttdata","uqfoundation"],"_pop_contributor_orgs_raw":["@amphybio - University of S\u00e3o Paulo, Medical School","@uqfoundation ","Klaviyo","NTT DATA","Nord Software"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.96,"_pop_updated_issues_count":26,"_pop_closed_issues_count":13,"_pop_created_since_days":118,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":26.0,"_pop_comment_count":43.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":43.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/uqfoundation/dill/master/README.md","_readme_localurl":"uqfoundation~dill~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/uqfoundation/dill/master/setup.py","https://raw.githubusercontent.com/uqfoundation/dill/master/pyproject.toml"],"_requirements_localurls":["uqfoundation~dill~setup.py","uqfoundation~dill~pyproject.toml"]},{"index":581,"category":"ml-dl","githuburl":"https://github.com/alpa-projects/alpa","featured":null,"links":null,"description":null,"_repopath":"alpa-projects/alpa","_reponame":"alpa","_stars":1858,"_forks":225,"_watches":31,"_language":"Python","_homepage":"https://alpa.ai","_description":"alpa: Training and serving large-scale neural networks","_organization":"alpa-projects","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-02-22T00:00:00.000Z","_age_weeks":104,"_stars_per_week":17.82,"_topics":["deep-learning","machine-learning","compiler","distributed-training","high-performance-computing","alpa","jax","distributed-computing","llm","auto-parallelization"],"_last_commit_date":"2023-02-13T00:00:00.000Z","_pop_contributor_count":35,"_pop_contributor_logins":["JiahaoYao@universityofcalifornia,berkeley","PKUFlyingPig@pekinguniversity","ZYHowell@carnegiemellonuniversity","comaniac@amazonwebservices(aws)","ddxxdd-code","jiaodong@anyscale","merrymercy@ucberkeley","yf225","zhisbug","zhuohan123@ucberkeley"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazonwebservices(aws)","anyscale","carnegiemellonuniversity","pekinguniversity","ucberkeley","universityofcalifornia,berkeley"],"_pop_contributor_orgs_raw":["Amazon Web Services (@aws)","Anyscale","Carnegie Mellon University","Peking University","UC Berkeley","University of California, Berkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.4,"_pop_updated_issues_count":130,"_pop_closed_issues_count":98,"_pop_created_since_days":24,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":128.0,"_pop_comment_count":195.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":45.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alpa-projects/alpa/master/README.md","_readme_localurl":"alpa-projects~alpa~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/alpa-projects/alpa/master/setup.py"],"_requirements_localurls":["alpa-projects~alpa~setup.py"]},{"index":201,"category":"util","githuburl":"https://github.com/camelot-dev/camelot","featured":null,"links":null,"description":null,"_repopath":"camelot-dev/camelot","_reponame":"camelot","_stars":1835,"_forks":338,"_watches":46,"_language":"Python","_homepage":"https://camelot-py.readthedocs.io","_description":"camelot: A Python library to extract tabular data from PDFs","_organization":"camelot-dev","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-07-01T00:00:00.000Z","_age_weeks":190,"_stars_per_week":9.64,"_topics":[],"_last_commit_date":"2023-02-07T00:00:00.000Z","_pop_contributor_count":39,"_pop_contributor_logins":["KOLANICH@kolanich","MartinThoma","anakin87@01s","davidkong0987","dimitern@http://develated.com/","pravarag","tksumanth1994","vaibhavmule@polymerize","vinayak-mehta","yatintaluja@atlanhq"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["01s","atlanhq","http://develated.com/","kolanich","polymerize"],"_pop_contributor_orgs_raw":["01S","@Polymerize ","@atlanhq ","KOLANICH inc.","http://develated.com/"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":26,"_pop_closed_issues_count":5,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":26.0,"_pop_comment_count":47.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":40.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/camelot-dev/camelot/master/README.md","_readme_localurl":"camelot-dev~camelot~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/camelot-dev/camelot/master/setup.py"],"_requirements_localurls":["camelot-dev~camelot~setup.py"]},{"index":115,"category":"perf","githuburl":"https://github.com/h5py/h5py","featured":null,"links":null,"description":null,"_repopath":"h5py/h5py","_reponame":"h5py","_stars":1828,"_forks":490,"_watches":55,"_language":"Python","_homepage":"http://www.h5py.org","_description":"h5py: HDF5 for Python -- The h5py package is a Pythonic interface to the HDF5 binary data format.","_organization":"h5py","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2012-09-21T00:00:00.000Z","_age_weeks":543,"_stars_per_week":3.36,"_topics":[],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":191,"_pop_contributor_logins":["ajelenak@thehdfgroup","andrewcollette@enthought","aragilar@departmentofphysicsandastronomy,macquarieuniversity","ddale@cornelluniversity","dota17","kif@esrf","scopatz","t20100@esrf","tacaswell@brookhavennationallab","takluyver"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["brookhavennationallab","cornelluniversity","departmentofphysicsandastronomy,macquarieuniversity","enthought","esrf","thehdfgroup"],"_pop_contributor_orgs_raw":["Brookhaven National Lab","Cornell University","Department of Physics and Astronomy, Macquarie University","ESRF","Enthought","The HDF Group"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.08,"_pop_updated_issues_count":110,"_pop_closed_issues_count":83,"_pop_created_since_days":127,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":110.0,"_pop_comment_count":340.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.1,"_pop_dependents_count":0,"_pop_score":52.86,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/h5py/h5py/master/README.rst","_readme_localurl":"h5py~h5py~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/h5py/h5py/master/setup.py","https://raw.githubusercontent.com/h5py/h5py/master/pyproject.toml"],"_requirements_localurls":["h5py~h5py~setup.py","h5py~h5py~pyproject.toml"]},{"index":46,"category":"jupyter","githuburl":"https://github.com/maartenbreddels/ipyvolume","featured":null,"links":null,"description":null,"_repopath":"maartenbreddels/ipyvolume","_reponame":"ipyvolume","_stars":1824,"_forks":235,"_watches":52,"_language":"TypeScript","_homepage":"","_description":"ipyvolume: 3d plotting for Python in the Jupyter notebook based on IPython widgets using WebGL","_organization":"maartenbreddels","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2016-12-21T00:00:00.000Z","_age_weeks":322,"_stars_per_week":5.66,"_topics":["ipython-widget","jupyter","jupyter-notebook","python","visualisation","volume-rendering","virtual-reality","plotting","dataviz","scientific-visualization","webgl","threejs","rendering-3d-volumes","quiver"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":45,"_pop_contributor_logins":["GenevieveBuckley@monashuniversity","OlehKSS","agoose77","chrisjsewell@imperialcollegelondon","cvisl@surf","glyg@france-bio-imaging-data","jeammimi","jtpio@quantstack","maartenbreddels@maartenbreddels","mgeier"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["france-bio-imaging-data","imperialcollegelondon","maartenbreddels","monashuniversity","quantstack","surf"],"_pop_contributor_orgs_raw":["@France-Bio-Imaging-Data ","@QuantStack","@maartenbreddels","Imperial College London","Monash University","SURF"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.27,"_pop_updated_issues_count":17,"_pop_closed_issues_count":8,"_pop_created_since_days":75,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":17.0,"_pop_comment_count":25.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":42.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/maartenbreddels/ipyvolume/master/README.md","_readme_localurl":"maartenbreddels~ipyvolume~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/maartenbreddels/ipyvolume/master/setup.py","https://raw.githubusercontent.com/maartenbreddels/ipyvolume/master/pyproject.toml"],"_requirements_localurls":["maartenbreddels~ipyvolume~setup.py","maartenbreddels~ipyvolume~pyproject.toml"]},{"index":295,"category":"util","githuburl":"https://github.com/pyfilesystem/pyfilesystem2","featured":null,"links":null,"description":null,"_repopath":"pyfilesystem/pyfilesystem2","_reponame":"pyfilesystem2","_stars":1819,"_forks":173,"_watches":45,"_language":"Python","_homepage":"https://www.pyfilesystem.org","_description":"pyfilesystem2: Python's Filesystem abstraction layer","_organization":"pyfilesystem","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2016-10-14T00:00:00.000Z","_age_weeks":331,"_stars_per_week":5.48,"_topics":["filesystem","pyfilesystem","pyfilesystem2","python","ftp","tar","zip","filesystem-library"],"_last_commit_date":"2022-10-18T00:00:00.000Z","_pop_contributor_count":47,"_pop_contributor_logins":["althonos@embl,zellerlab","dargueta","eelkevdbos@vandenbossoftwaredevelopment","geoffjukes","lurch@raspberrypi","muffl0n","odgalvin","tfeldmann@mercatronicsgmbh","willmcgugan@textualize","zmej-serow@kodland.org"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["embl,zellerlab","kodland.org","mercatronicsgmbh","raspberrypi","textualize","vandenbossoftwaredevelopment"],"_pop_contributor_orgs_raw":["@raspberrypi ","EMBL, @zellerlab","Textualize","Van den Bos Software Development","kodland.org","mercatronics GmbH"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.44,"_pop_updated_issues_count":12,"_pop_closed_issues_count":2,"_pop_created_since_days":77,"_pop_updated_since_days":4,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":12.0,"_pop_comment_count":26.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":37.2,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyfilesystem/pyfilesystem2/master/README.md","_readme_localurl":"pyfilesystem~pyfilesystem2~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyfilesystem/pyfilesystem2/master/setup.py"],"_requirements_localurls":["pyfilesystem~pyfilesystem2~setup.py"]},{"index":648,"category":"util","githuburl":"https://github.com/grahamdumpleton/wrapt","featured":null,"links":null,"description":null,"_repopath":"grahamdumpleton/wrapt","_reponame":"wrapt","_stars":1817,"_forks":209,"_watches":45,"_language":"Python","_homepage":"","_description":"wrapt: A Python module for decorators, wrappers and monkey patching.","_organization":"grahamdumpleton","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2013-05-29T00:00:00.000Z","_age_weeks":508,"_stars_per_week":3.58,"_topics":[],"_last_commit_date":"2023-01-12T00:00:00.000Z","_pop_contributor_count":27,"_pop_contributor_logins":["GrahamDumpleton","a-feld","agriffis@scampersand","althonos@embl,zellerlab","eire1130","hugovk@nordsoftware","jouve","thorwhalen@analogdevices","varunagrawal@georgiatech","yarikoptic@dartmouthcollege,debian,datalad,pymvpa,fail2ban"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["analogdevices","dartmouthcollege,debian,datalad,pymvpa,fail2ban","embl,zellerlab","georgiatech","nordsoftware","scampersand"],"_pop_contributor_orgs_raw":["@scampersand","Analog Devices","Dartmouth College, @Debian, @DataLad, @PyMVPA, @fail2ban","EMBL, @zellerlab","Georgia Tech","Nord Software"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.02,"_pop_updated_issues_count":17,"_pop_closed_issues_count":9,"_pop_created_since_days":118,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":17.0,"_pop_comment_count":39.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":41.82,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/grahamdumpleton/wrapt/master/README.rst","_readme_localurl":"grahamdumpleton~wrapt~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/grahamdumpleton/wrapt/master/setup.py"],"_requirements_localurls":["grahamdumpleton~wrapt~setup.py"]},{"index":63,"category":"sim","githuburl":"https://github.com/projectmesa/mesa","featured":null,"links":null,"description":null,"_repopath":"projectmesa/mesa","_reponame":"mesa","_stars":1813,"_forks":758,"_watches":89,"_language":"Python","_homepage":"","_description":"Mesa is an agent-based modeling framework in Python","_organization":"projectmesa","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2014-09-19T00:00:00.000Z","_age_weeks":439,"_stars_per_week":4.12,"_topics":["mesa","agent-based-modeling","agent-based-simulation","simulation-framework","simulation","simulation-environment","complex-systems","complexity-analysis","modeling-agents","spatial-models","gis"],"_last_commit_date":"2023-02-10T00:00:00.000Z","_pop_contributor_count":121,"_pop_contributor_logins":["Corvince","EwoutH","TaylorMutch@unitytechnologies","Tortar@metro-polis","cauemello","djmitche@google","dmasad","jackiekazil","rht","tpike3"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","metro-polis","unitytechnologies"],"_pop_contributor_orgs_raw":["Google","Metro-Polis ","Unity Technologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.58,"_pop_updated_issues_count":70,"_pop_closed_issues_count":42,"_pop_created_since_days":103,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":70.0,"_pop_comment_count":190.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":0,"_pop_score":45.3,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/projectmesa/mesa/master/README.rst","_readme_localurl":"projectmesa~mesa~README.rst","_requirements_filenames":["setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/projectmesa/mesa/master/setup.py","https://raw.githubusercontent.com/projectmesa/mesa/master/pyproject.toml","https://raw.githubusercontent.com/projectmesa/mesa/master/Pipfile"],"_requirements_localurls":["projectmesa~mesa~setup.py","projectmesa~mesa~pyproject.toml","projectmesa~mesa~Pipfile"]},{"index":310,"category":"data","githuburl":"https://github.com/graphistry/pygraphistry","featured":null,"links":null,"description":null,"_repopath":"graphistry/pygraphistry","_reponame":"pygraphistry","_stars":1805,"_forks":187,"_watches":47,"_language":"Python","_homepage":"","_description":"PyGraphistry is a Python library to quickly load, shape, embed, and explore big graphs with the GPU-accelerated Graphistry visual graph analyzer","_organization":"graphistry","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-06-02T00:00:00.000Z","_age_weeks":403,"_stars_per_week":4.48,"_topics":["graph","visualization","gpu","graphistry","python","rapids","cugraph","networkx","neo4j","tigergraph","pandas","csv","webgl","splunk","cudf","jupyter","igraph","network-analysis","network-visualization","graph-visualization"],"_last_commit_date":"2022-12-23T00:00:00.000Z","_pop_contributor_count":31,"_pop_contributor_logins":["DataBoyTX","cwharris@nvidia","juliaxdmon","lmeyerov@graphistry","lsb","pradkrish","silkspace@graphistrystayopen,pythian,tehama,cybermedicine,beatsmusic,quid,idlegames","szhorvat","thibaudh","trxcllnt@nvidia,inc"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["graphistry","graphistrystayopen,pythian,tehama,cybermedicine,beatsmusic,quid,idlegames","nvidia","nvidia,inc"],"_pop_contributor_orgs_raw":["@graphistry @stayopen, @pythian, @tehama, @cybermedicine, @beatsMusic, @quid, @idlegames","Graphistry","NVIDIA, Inc","Nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.48,"_pop_updated_issues_count":34,"_pop_closed_issues_count":13,"_pop_created_since_days":94,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":22,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":34.0,"_pop_comment_count":32.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":40.09,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/graphistry/pygraphistry/master/README.md","_readme_localurl":"graphistry~pygraphistry~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/graphistry/pygraphistry/master/setup.py"],"_requirements_localurls":["graphistry~pygraphistry~setup.py"]},{"index":964,"category":"gis","githuburl":"https://github.com/azavea/raster-vision","featured":null,"links":null,"description":null,"_repopath":"azavea/raster-vision","_reponame":"raster-vision","_stars":1797,"_forks":350,"_watches":83,"_language":"Python","_homepage":"https://docs.rastervision.io","_description":"raster-vision: An open source library and framework for deep learning on satellite and aerial imagery.","_organization":"azavea","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2017-02-02T00:00:00.000Z","_age_weeks":315,"_stars_per_week":5.69,"_topics":["deep-learning","computer-vision","remote-sensing","geospatial","object-detection","semantic-segmentation","classification","machine-learning","pytorch"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":30,"_pop_contributor_logins":["AdeelH@azavea","citerana","dependabot[bot]","jamesmcclain","jmorrison1847@umbra","jpolchlo","lewfish@azavea","lmbak@eyetelligence","lossyrob@microsoft","simonkassel@azavea"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["azavea","eyetelligence","microsoft","umbra"],"_pop_contributor_orgs_raw":["@azavea ","@microsoft","Azavea","Eyetelligence","Umbra"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.29,"_pop_updated_issues_count":154,"_pop_closed_issues_count":124,"_pop_created_since_days":74,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":154.0,"_pop_comment_count":129.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":43.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/azavea/raster-vision/master/README.md","_readme_localurl":"azavea~raster-vision~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/azavea/raster-vision/master/requirements.txt","https://raw.githubusercontent.com/azavea/raster-vision/master/setup.py"],"_requirements_localurls":["azavea~raster-vision~requirements.txt","azavea~raster-vision~setup.py"]},{"index":601,"category":"gis","githuburl":"https://github.com/plant99/felicette","featured":null,"links":null,"description":null,"_repopath":"plant99/felicette","_reponame":"felicette","_stars":1793,"_forks":85,"_watches":39,"_language":"Python","_homepage":"","_description":"felicette: Satellite imagery for dummies.","_organization":"plant99","_updated_at":"2023-02-14T00:00:00.000Z","_created_at":"2020-07-12T00:00:00.000Z","_age_weeks":136,"_stars_per_week":13.14,"_topics":["geospatial-data","gis","geospatial-visualization","geospatial","python","python3","geoinformatics","earth-observation","earth-science","satellite-imagery","satellite-images","satellite-data"],"_last_commit_date":"2021-09-08T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["AlexanderDavid@clemsonuniversity","dependabot[bot]","epogrebnyak@financeandeconomicsdepartment,mgimo-odintsovo","mmatongo@tempulsenoirlinuxmulindisourcehaus","plant99"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["clemsonuniversity","financeandeconomicsdepartment,mgimo-odintsovo","tempulsenoirlinuxmulindisourcehaus"],"_pop_contributor_orgs_raw":["@tempulse @noirlinux @mulindi @sourcehaus","Clemson University","Finance and Economics Department, MGIMO-Odintsovo"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":32,"_pop_updated_since_days":18,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":15.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/plant99/felicette/master/README.md","_readme_localurl":"plant99~felicette~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/plant99/felicette/master/requirements.txt","https://raw.githubusercontent.com/plant99/felicette/master/setup.py"],"_requirements_localurls":["plant99~felicette~requirements.txt","plant99~felicette~setup.py"]},{"index":32,"category":"nlp","githuburl":"https://github.com/jamesturk/jellyfish","featured":null,"links":null,"description":null,"_repopath":"jamesturk/jellyfish","_reponame":"jellyfish","_stars":1788,"_forks":153,"_watches":42,"_language":"Python","_homepage":"https://jamesturk.github.io/jellyfish/","_description":"jellyfish: \ud83e\udebc a python library for doing approximate and phonetic matching of strings.","_organization":"jamesturk","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2010-07-09T00:00:00.000Z","_age_weeks":658,"_stars_per_week":2.71,"_topics":["python","levenshtein","soundex","hamming","metaphone","jaro-winkler","fuzzy-search","hacktoberfest"],"_last_commit_date":"2023-02-03T00:00:00.000Z","_pop_contributor_count":28,"_pop_contributor_logins":["DimitriPapadopoulos@cea","J535D165@utrechtuniversity","PeterScott@cue","dependabot[bot]","diego-plan9@ibmresearch","dparrol","jamesturk@universityofchicago","mikejs@sunlightlabs","nchammas","ofek@datadog"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cea","cue","datadog","ibmresearch","sunlightlabs","universityofchicago","utrechtuniversity"],"_pop_contributor_orgs_raw":["@IBMResearch ","@datadog","CEA","Cue","Sunlight Labs","University of Chicago","Utrecht University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.35,"_pop_updated_issues_count":4,"_pop_closed_issues_count":4,"_pop_created_since_days":154,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":4.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":35.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jamesturk/jellyfish/master/README.md","_readme_localurl":"jamesturk~jellyfish~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jamesturk/jellyfish/master/setup.py"],"_requirements_localurls":["jamesturk~jellyfish~setup.py"]},{"index":843,"category":"ml","githuburl":"https://github.com/aws/sagemaker-python-sdk","featured":null,"links":null,"description":null,"_repopath":"aws/sagemaker-python-sdk","_reponame":"sagemaker-python-sdk","_stars":1777,"_forks":936,"_watches":135,"_language":"Python","_homepage":"https://sagemaker.readthedocs.io/","_description":"sagemaker-python-sdk: A library for training and deploying machine learning models on Amazon SageMaker","_organization":"aws","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2017-11-14T00:00:00.000Z","_age_weeks":275,"_stars_per_week":6.46,"_topics":["aws","mxnet","tensorflow","machine-learning","python","pytorch","sagemaker","huggingface"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":333,"_pop_contributor_logins":["ChoiByungWook@amazon.com","ajaykarpur","chuyang-deng","icywang86rui","knakad","laurenyu","metrizable@google","mvsusp","nadiaya@amazon.com","yangaws"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazon.com","google"],"_pop_contributor_orgs_raw":["Amazon.com","Google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.79,"_pop_updated_issues_count":316,"_pop_closed_issues_count":180,"_pop_created_since_days":64,"_pop_updated_since_days":0,"_pop_recent_releases_count":76,"_pop_recent_releases_estimated_tags":92,"_pop_recent_releases_adjusted_count":76,"_pop_issue_count":317.0,"_pop_comment_count":3351.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":10.6,"_pop_dependents_count":0,"_pop_score":59.58,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/aws/sagemaker-python-sdk/master/README.rst","_readme_localurl":"aws~sagemaker-python-sdk~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aws/sagemaker-python-sdk/master/setup.py"],"_requirements_localurls":["aws~sagemaker-python-sdk~setup.py"]},{"index":732,"category":"study","githuburl":"https://github.com/amanchadha/coursera-deep-learning-specialization","featured":null,"links":null,"description":null,"_repopath":"amanchadha/coursera-deep-learning-specialization","_reponame":"coursera-deep-learning-specialization","_stars":1771,"_forks":1542,"_watches":17,"_language":"Jupyter Notebook","_homepage":"","_description":"coursera-deep-learning-specialization: Notes, programming assignments and quizzes from all courses within the Coursera Deep Learning specialization offered by deeplearning.ai: (i) Neural Networks and Deep Learning; (ii) Improving Deep Neural Networks: Hyperparameter tuning, Regularization and Optimization; (iii) Structuring Machine Learning Projects; (iv) Convolutional Neural Networks; (v) Sequence Models","_organization":"amanchadha","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-06-24T00:00:00.000Z","_age_weeks":139,"_stars_per_week":12.74,"_topics":["deep-learning","coursera","coursera-assignment","coursera-specialization","coursera-machine-learning","andrew-ng","andrew-ng-course","convolutional-neural-networks","cnns","recurrent-neural-networks","rnns","convolutional-neural-network","recurrent-neural-network","hyperparameter-optimization","hyperparameter-tuning","neural-network","neural-networks","neural-machine-translation","neural-style-transfer","regularization"],"_last_commit_date":"2022-02-07T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["BHUVAN-RJ","Ehsanahmadi1400@readytocollaborateonaiprojects","amanchadha@amazon/stanforduniversity","lengocloi1805","zen7vik"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazon/stanforduniversity","readytocollaborateonaiprojects"],"_pop_contributor_orgs_raw":["Amazon Inc. / Stanford University","Ready to collaborate on AI projects"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":32,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":12.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/amanchadha/coursera-deep-learning-specialization/master/README.md","_readme_localurl":"amanchadha~coursera-deep-learning-specialization~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":297,"category":"util","githuburl":"https://github.com/pyparsing/pyparsing","featured":null,"links":null,"description":null,"_repopath":"pyparsing/pyparsing","_reponame":"pyparsing","_stars":1765,"_forks":240,"_watches":23,"_language":"Python","_homepage":"","_description":"pyparsing: Python library for creating PEG parsers","_organization":"pyparsing","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-05-14T00:00:00.000Z","_age_weeks":301,"_stars_per_week":5.86,"_topics":["python","python2","python3","python-2","python-3","parser-combinators","parsing-expression-grammar","parsing","parsing-library","text-processing","peg-parsers"],"_last_commit_date":"2023-02-12T00:00:00.000Z","_pop_contributor_count":53,"_pop_contributor_logins":["cngkaygusuz@google","djpohly","hugovk@nordsoftware","jdufresne@pioneervalleybooks","mattcarmody","maxfischer2781","mcepl@suse","multimeric","ptmcg","sirosen"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","nordsoftware","pioneervalleybooks","suse"],"_pop_contributor_orgs_raw":["Google","Nord Software","Pioneer Valley Books","SUSE"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.56,"_pop_updated_issues_count":17,"_pop_closed_issues_count":7,"_pop_created_since_days":70,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":17.0,"_pop_comment_count":25.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":40.82,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyparsing/pyparsing/master/README.rst","_readme_localurl":"pyparsing~pyparsing~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyparsing/pyparsing/master/pyproject.toml"],"_requirements_localurls":["pyparsing~pyparsing~pyproject.toml"]},{"index":543,"category":"data","githuburl":"https://github.com/sqlalchemy/alembic","featured":null,"links":null,"description":null,"_repopath":"sqlalchemy/alembic","_reponame":"alembic","_stars":1760,"_forks":175,"_watches":19,"_language":"Python","_homepage":"","_description":"alembic: A database migrations tool for SQLAlchemy.","_organization":"sqlalchemy","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-11-27T00:00:00.000Z","_age_weeks":221,"_stars_per_week":7.96,"_topics":["sqlalchemy","sql","python"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":158,"_pop_contributor_logins":["AKamyshnikova@mirantis","BryceLohr","CaselIT","bbinet@helioslite","dahlia@planetarium","dtheodor","exhuma","gordthompson@self-employed","marcinkuzminski@rhodecode","zzzeek@redhat"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["helioslite","mirantis","planetarium","redhat","rhodecode","self-employed"],"_pop_contributor_orgs_raw":["@Mirantis","@planetarium ","HeliosLite","Red Hat","RhodeCode Inc.","self-employed"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.5,"_pop_updated_issues_count":42,"_pop_closed_issues_count":27,"_pop_created_since_days":52,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":42.0,"_pop_comment_count":111.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":0,"_pop_score":49.11,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sqlalchemy/alembic/master/README.rst","_readme_localurl":"sqlalchemy~alembic~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sqlalchemy/alembic/master/setup.py","https://raw.githubusercontent.com/sqlalchemy/alembic/master/pyproject.toml"],"_requirements_localurls":["sqlalchemy~alembic~setup.py","sqlalchemy~alembic~pyproject.toml"]},{"index":9,"category":"ml","githuburl":"https://github.com/contextlab/hypertools","featured":null,"links":null,"description":null,"_repopath":"contextlab/hypertools","_reponame":"hypertools","_stars":1760,"_forks":160,"_watches":60,"_language":"Python","_homepage":"http://hypertools.readthedocs.io/en/latest/","_description":"hypertools: A Python toolbox for gaining geometric insights into high-dimensional data","_organization":"contextlab","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2016-09-27T00:00:00.000Z","_age_weeks":334,"_stars_per_week":5.27,"_topics":["data-visualization","high-dimensional-data","python","topic-modeling","text-vectorization","data-wrangling","visualization","time-series"],"_last_commit_date":"2022-02-12T00:00:00.000Z","_pop_contributor_count":21,"_pop_contributor_logins":["KirstensGitHub","alysivji","andrewheusser@akiliinteractive","chaseWilliams@together","jeremymanning@dartmouthcollege","joefink2896","lmcinnes@tutteinstituteformathematicsandcomputing","paxtonfitzpatrick@contextlabcosanlab","rarredon","swaroopgj@vicariousai"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["akiliinteractive","contextlabcosanlab","dartmouthcollege","together","tutteinstituteformathematicsandcomputing","vicariousai"],"_pop_contributor_orgs_raw":["@ContextLab @cosanlab","Akili Interactive","Dartmouth College","Together","Tutte Institute for Mathematics and Computing","Vicarious AI"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":78,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":25.47,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/contextlab/hypertools/master/readme.md","_readme_localurl":"contextlab~hypertools~readme.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/contextlab/hypertools/master/requirements.txt","https://raw.githubusercontent.com/contextlab/hypertools/master/setup.py"],"_requirements_localurls":["contextlab~hypertools~requirements.txt","contextlab~hypertools~setup.py"]},{"index":25,"category":"util","githuburl":"https://github.com/google/gin-config","featured":null,"links":null,"description":null,"_repopath":"google/gin-config","_reponame":"gin-config","_stars":1755,"_forks":110,"_watches":24,"_language":"Python","_homepage":"","_description":"gin-config: Gin provides a lightweight configuration framework for Python","_organization":"google","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-06-27T00:00:00.000Z","_age_weeks":243,"_stars_per_week":7.22,"_topics":["python","configuration-management","tensorflow","tensorflow-experiments"],"_last_commit_date":"2022-12-05T00:00:00.000Z","_pop_contributor_count":23,"_pop_contributor_logins":["Conchylicultor@google","adarob@google","cghawthorne","dhr","ericjang","gmrukwa@netguru","jaingaurav@google","kbanoop@google","sguada@google","yilei"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","netguru"],"_pop_contributor_orgs_raw":["@google","Google","Netguru"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":57,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":5.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":23.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/gin-config/master/README.md","_readme_localurl":"google~gin-config~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/gin-config/master/setup.py"],"_requirements_localurls":["google~gin-config~setup.py"]},{"index":806,"category":"web","githuburl":"https://github.com/python-restx/flask-restx","featured":null,"links":null,"description":null,"_repopath":"python-restx/flask-restx","_reponame":"flask-restx","_stars":1752,"_forks":293,"_watches":70,"_language":"Python","_homepage":"https://flask-restx.readthedocs.io/en/latest/","_description":"flask-restx: Fork of Flask-RESTPlus: Fully featured framework for fast, easy and documented API development with Flask","_organization":"python-restx","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-01-09T00:00:00.000Z","_age_weeks":162,"_stars_per_week":10.76,"_topics":["python","api","swagger","flask","rest","json","restful","restplus","restx"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":140,"_pop_contributor_logins":["SteadBytes","arajkumar@timescale","avilaton","awiddersheim","calvin620707@kloudless","frol@q-bit","j5awry@canonical","noirbizarre@apihackers","plowman@parkade","ziirish"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["apihackers","canonical","kloudless","parkade","q-bit","timescale"],"_pop_contributor_orgs_raw":["@Timescale","@apihackers ","@kloudless","Canonical","Parkade","Q-bit"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.73,"_pop_updated_issues_count":49,"_pop_closed_issues_count":19,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":49.0,"_pop_comment_count":79.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":44.44,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/python-restx/flask-restx/master/README.rst","_readme_localurl":"python-restx~flask-restx~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/python-restx/flask-restx/master/setup.py"],"_requirements_localurls":["python-restx~flask-restx~setup.py"]},{"index":825,"category":"study","githuburl":"https://github.com/alirezadir/machine-learning-interview-enlightener","featured":null,"links":null,"description":null,"_repopath":"alirezadir/machine-learning-interview-enlightener","_reponame":"machine-learning-interviews","_stars":1745,"_forks":352,"_watches":49,"_language":"Jupyter Notebook","_homepage":"","_description":"machine-learning-interviews: This repo is meant to serve as a guide for Machine Learning/AI technical interviews. ","_organization":"alirezadir","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-01-31T00:00:00.000Z","_age_weeks":107,"_stars_per_week":16.24,"_topics":["machine-learning","machine-learning-algorithms","ai","deep-learning","system-design","scalable-applications","interview","interview-preparation","interview-practice","interviews"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["Anirudh257","alirezadir@meta","aroraayush@sdeliveramp","erjanmx","jthaller@bnl-ml-group","mehdizade"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bnl-ml-group","meta","sdeliveramp"],"_pop_contributor_orgs_raw":["@BNL-ML-Group","Meta","SDE @ Liveramp"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":25,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":21.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alirezadir/machine-learning-interview-enlightener/master/README.md","_readme_localurl":"alirezadir~machine-learning-interview-enlightener~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":302,"category":"template","githuburl":"https://github.com/pyscaffold/pyscaffold","featured":null,"links":null,"description":null,"_repopath":"pyscaffold/pyscaffold","_reponame":"pyscaffold","_stars":1723,"_forks":173,"_watches":40,"_language":"Python","_homepage":"https://pyscaffold.org","_description":"pyscaffold: \ud83d\udee0 Python project template generator with batteries included","_organization":"pyscaffold","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2014-04-02T00:00:00.000Z","_age_weeks":464,"_stars_per_week":3.71,"_topics":["python","release-automation","git","distribution","package-creation","template-project","project-template","package"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":56,"_pop_contributor_logins":["CarliJoy","FlorianWilhelm@inovex","HolgerPeters","QuLogic","abravalheri@universityofbristol","cpaulik@vandersat","jayvdb@franklin-ai","pre-commit-ci[bot]","smartsammler@karlsruheinstituteoftechnology","willu47@kth"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["franklin-ai","inovex","karlsruheinstituteoftechnology","kth","universityofbristol","vandersat"],"_pop_contributor_orgs_raw":["@franklin-ai","@inovex","@vandersat ","KTH","Karlsruhe Institute of Technology","University of Bristol"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.83,"_pop_updated_issues_count":29,"_pop_closed_issues_count":27,"_pop_created_since_days":108,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":22,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":29.0,"_pop_comment_count":44.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":46.97,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyscaffold/pyscaffold/master/README.rst","_readme_localurl":"pyscaffold~pyscaffold~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyscaffold/pyscaffold/master/setup.py","https://raw.githubusercontent.com/pyscaffold/pyscaffold/master/pyproject.toml"],"_requirements_localurls":["pyscaffold~pyscaffold~setup.py","pyscaffold~pyscaffold~pyproject.toml"]},{"index":767,"category":"study","githuburl":"https://github.com/fluentpython/example-code-2e","featured":null,"links":null,"description":null,"_repopath":"fluentpython/example-code-2e","_reponame":"example-code-2e","_stars":1718,"_forks":517,"_watches":53,"_language":"Python","_homepage":"https://amzn.to/3J48u2J","_description":"example-code-2e: Example code for Fluent Python, 2nd edition (O'Reilly 2022) ","_organization":"fluentpython","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-03-21T00:00:00.000Z","_age_weeks":204,"_stars_per_week":8.39,"_topics":["python","python3","concurrency","iterators","metaprogramming","special-methods"],"_last_commit_date":"2022-04-24T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["Akay7","ScottMcCormack","anancds@huawei","dependabot[bot]","eumiro","kbaikov","ramalho@thoughtworksthoughtworksinc"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["huawei","thoughtworksthoughtworksinc"],"_pop_contributor_orgs_raw":["@thoughtworks @ThoughtWorksInc ","huawei"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":6,"_pop_closed_issues_count":0,"_pop_created_since_days":48,"_pop_updated_since_days":10,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":6.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":17.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fluentpython/example-code-2e/master/README.md","_readme_localurl":"fluentpython~example-code-2e~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":365,"category":"ml","githuburl":"https://github.com/rentruewang/koila","featured":null,"links":null,"description":null,"_repopath":"rentruewang/koila","_reponame":"koila","_stars":1715,"_forks":63,"_watches":11,"_language":"Python","_homepage":"https://rentruewang.github.io/koila","_description":"koila: Prevent PyTorch's `CUDA error: out of memory` in just 1 line of code.","_organization":"rentruewang","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-11-17T00:00:00.000Z","_age_weeks":66,"_stars_per_week":25.98,"_topics":["pytorch","lazy-evaluation","out-of-memory","python","machine-learning","deep-learning","memory-management","gradient-accumulation","neural-network"],"_last_commit_date":"2023-02-07T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["dependabot[bot]","github-actions[bot]","ousou@iprally","rentruewang@collegeofcomputing,georgiatech"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["collegeofcomputing,georgiatech","iprally"],"_pop_contributor_orgs_raw":["@iprally ","College of Computing, Georgia Tech"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.5,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":15,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":20.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rentruewang/koila/master/README.md","_readme_localurl":"rentruewang~koila~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/rentruewang/koila/master/pyproject.toml"],"_requirements_localurls":["rentruewang~koila~pyproject.toml"]},{"index":699,"category":"util","githuburl":"https://github.com/grantjenks/python-diskcache","featured":null,"links":null,"description":null,"_repopath":"grantjenks/python-diskcache","_reponame":"python-diskcache","_stars":1702,"_forks":105,"_watches":19,"_language":"Python","_homepage":"http://www.grantjenks.com/docs/diskcache/","_description":"python-diskcache: Python disk-backed cache (Django-compatible). Faster than Redis and Memcached. Pure-Python.","_organization":"grantjenks","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-02-03T00:00:00.000Z","_age_weeks":368,"_stars_per_week":4.62,"_topics":["python","cache","persistence","key-value-store","filesystem"],"_last_commit_date":"2022-02-20T00:00:00.000Z","_pop_contributor_count":24,"_pop_contributor_logins":["AbhinavOmprakash","Cologler","elistevens@zoox","grantjenks","i404788","jugmac00@canonical","maxking","raratiru","rkubik","tamirOK"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["canonical","zoox"],"_pop_contributor_orgs_raw":["@canonical","Zoox"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":10,"_pop_closed_issues_count":6,"_pop_created_since_days":86,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":10.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":31.19,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/grantjenks/python-diskcache/master/README.rst","_readme_localurl":"grantjenks~python-diskcache~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/grantjenks/python-diskcache/master/requirements.txt","https://raw.githubusercontent.com/grantjenks/python-diskcache/master/setup.py"],"_requirements_localurls":["grantjenks~python-diskcache~requirements.txt","grantjenks~python-diskcache~setup.py"]},{"index":416,"category":"ml","githuburl":"https://github.com/bmabey/pyldavis","featured":null,"links":null,"description":null,"_repopath":"bmabey/pyldavis","_reponame":"pyLDAvis","_stars":1686,"_forks":349,"_watches":57,"_language":"Jupyter Notebook","_homepage":"","_description":"pyLDAvis: Python library for interactive topic model visualization. Port of the R LDAvis package.","_organization":"bmabey","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":410,"_stars_per_week":4.1,"_topics":[],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":39,"_pop_contributor_logins":["OliRafa","betolink","bmabey","cemoody@gumtap","cpsievert@rstudio","janrygl@rndr.janrygl","mattilyra@zalandose","msusol@google","paul-english","yxtay"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","gumtap","rndr.janrygl","rstudio","zalandose"],"_pop_contributor_orgs_raw":["@gumtap ","@rstudio","Google","RNDr. Jan Rygl","Zalando SE"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":37,"_pop_closed_issues_count":33,"_pop_created_since_days":96,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":37.0,"_pop_comment_count":32.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":39.55,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/bmabey/pyldavis/master/README.rst","_readme_localurl":"bmabey~pyldavis~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/bmabey/pyldavis/master/requirements.txt","https://raw.githubusercontent.com/bmabey/pyldavis/master/setup.py","https://raw.githubusercontent.com/bmabey/pyldavis/master/pyproject.toml","https://raw.githubusercontent.com/bmabey/pyldavis/master/Pipfile"],"_requirements_localurls":["bmabey~pyldavis~requirements.txt","bmabey~pyldavis~setup.py","bmabey~pyldavis~pyproject.toml","bmabey~pyldavis~Pipfile"]},{"index":383,"category":"nlp","githuburl":"https://github.com/minimaxir/aitextgen","featured":null,"links":null,"description":null,"_repopath":"minimaxir/aitextgen","_reponame":"aitextgen","_stars":1679,"_forks":194,"_watches":36,"_language":"Python","_homepage":"https://docs.aitextgen.io","_description":"aitextgen: A robust Python tool for text-based AI training and generation using GPT-2.","_organization":"minimaxir","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-12-29T00:00:00.000Z","_age_weeks":164,"_stars_per_week":10.21,"_topics":[],"_last_commit_date":"2022-08-09T00:00:00.000Z","_pop_contributor_count":9,"_pop_contributor_logins":["BPCZ","cdpierse@quantcopy","cuuupid","kaushikb11@lightning-ai","leetfin@arisiainc","minimaxir@buzzfeed","reducibly","tientr"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["arisiainc","buzzfeed","lightning-ai","quantcopy"],"_pop_contributor_orgs_raw":["@ArisiaInc","@Lightning-AI","@buzzfeed ","@quantcopy"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":16,"_pop_closed_issues_count":3,"_pop_created_since_days":38,"_pop_updated_since_days":7,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":16.0,"_pop_comment_count":19.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":25.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/minimaxir/aitextgen/master/README.md","_readme_localurl":"minimaxir~aitextgen~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/minimaxir/aitextgen/master/requirements.txt","https://raw.githubusercontent.com/minimaxir/aitextgen/master/setup.py"],"_requirements_localurls":["minimaxir~aitextgen~requirements.txt","minimaxir~aitextgen~setup.py"]},{"index":217,"category":"ml","githuburl":"https://github.com/linkedin/greykite","featured":1.0,"links":null,"description":null,"_repopath":"linkedin/greykite","_reponame":"greykite","_stars":1672,"_forks":92,"_watches":37,"_language":"Python","_homepage":"","_description":"greykite: A flexible, intuitive and fast forecasting library","_organization":"linkedin","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2021-04-27T00:00:00.000Z","_age_weeks":95,"_stars_per_week":17.57,"_topics":[],"_last_commit_date":"2022-08-31T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["KaixuYang@linkedin","Reza1317","al-bert","dromare@pepsico","martinmenchon@bayer","njusu@linkedin"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bayer","linkedin","pepsico"],"_pop_contributor_orgs_raw":["Bayer","LinkedIn","PepsiCo"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":9,"_pop_closed_issues_count":3,"_pop_created_since_days":22,"_pop_updated_since_days":6,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":9.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":24.37,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/linkedin/greykite/master/README.rst","_readme_localurl":"linkedin~greykite~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/linkedin/greykite/master/setup.py"],"_requirements_localurls":["linkedin~greykite~setup.py"]},{"index":795,"category":"web","githuburl":"https://github.com/starlite-api/starlite","featured":null,"links":null,"description":null,"_repopath":"starlite-api/starlite","_reponame":"starlite","_stars":1669,"_forks":166,"_watches":27,"_language":"Python","_homepage":"https://starliteproject.dev","_description":"starlite: Light, Flexible and Extensible ASGI API framework | Effortlessly Build Performant APIs","_organization":"starlite-api","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2021-12-06T00:00:00.000Z","_age_weeks":63,"_stars_per_week":26.37,"_topics":["python","api","rest","pydantic","asgi","openapi","redoc","starlite","starlite-api","swagger","starlite-framework"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":89,"_pop_contributor_logins":["Goldziher@safehousetechnologies","allcontributors[bot]","ashwinvin","cofin","dkress59@alexhealthcaregmbh","jtraub","peterschutt","provinzkraut","seladb","yudjinn@vestrasoftware"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["alexhealthcaregmbh","safehousetechnologies","vestrasoftware"],"_pop_contributor_orgs_raw":["SafeHouse Technologies","Vestra Software, LLC","alex healthcare GmbH"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":17.92,"_pop_updated_issues_count":385,"_pop_closed_issues_count":356,"_pop_created_since_days":15,"_pop_updated_since_days":0,"_pop_recent_releases_count":102,"_pop_recent_releases_estimated_tags":109,"_pop_recent_releases_adjusted_count":102,"_pop_issue_count":385.0,"_pop_comment_count":786.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":49.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/starlite-api/starlite/master/README.md","_readme_localurl":"starlite-api~starlite~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/starlite-api/starlite/master/pyproject.toml"],"_requirements_localurls":["starlite-api~starlite~pyproject.toml"]},{"index":256,"category":"crypto","githuburl":"https://github.com/bmoscon/cryptofeed","featured":null,"links":null,"description":null,"_repopath":"bmoscon/cryptofeed","_reponame":"cryptofeed","_stars":1669,"_forks":539,"_watches":75,"_language":"Python","_homepage":"","_description":"cryptofeed: Cryptocurrency Exchange Websocket Data Feed Handler","_organization":"bmoscon","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-12-16T00:00:00.000Z","_age_weeks":270,"_stars_per_week":6.17,"_topics":["python","trading","market-data","cryptocurrency","bitcoin","exchange","websockets","coinbase","binance","influxdb","asyncio","websocket","ftx-exchange","trading-platform","ethereum","cryptocurrencies","btc","crypto","coinbase-api"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":105,"_pop_contributor_logins":["Dynamikey","MarechJ","PandaXcentric","abashinfection","bmoscon","dependabot[bot]","evil-maid","olibre","peedrr","vdbelt"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.23,"_pop_updated_issues_count":20,"_pop_closed_issues_count":12,"_pop_created_since_days":63,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":20.0,"_pop_comment_count":17.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":34.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bmoscon/cryptofeed/master/README.md","_readme_localurl":"bmoscon~cryptofeed~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/bmoscon/cryptofeed/master/requirements.txt","https://raw.githubusercontent.com/bmoscon/cryptofeed/master/setup.py","https://raw.githubusercontent.com/bmoscon/cryptofeed/master/pyproject.toml"],"_requirements_localurls":["bmoscon~cryptofeed~requirements.txt","bmoscon~cryptofeed~setup.py","bmoscon~cryptofeed~pyproject.toml"]},{"index":195,"category":"sim","githuburl":"https://github.com/pettingzoo-team/pettingzoo","featured":null,"links":null,"description":null,"_repopath":"pettingzoo-team/pettingzoo","_reponame":"PettingZoo","_stars":1667,"_forks":266,"_watches":19,"_language":"Python","_homepage":"https://pettingzoo.farama.org","_description":"PettingZoo: A standard API for multi-agent reinforcement learning environments, with popular reference environments and related utilities","_organization":"pettingzoo-team","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-01-20T00:00:00.000Z","_age_weeks":161,"_stars_per_week":10.34,"_topics":[],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":81,"_pop_contributor_logins":["AnanthHari","Kyle-Sang","MarioJayakumar@morganstanley","RyanNavillus","WillDudley","benblack769","jjshoots","jkterry1","lssr","rodrigodelazcano"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["morganstanley"],"_pop_contributor_orgs_raw":["Morgan Stanley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.71,"_pop_updated_issues_count":27,"_pop_closed_issues_count":12,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":27.0,"_pop_comment_count":24.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":39.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pettingzoo-team/pettingzoo/master/README.md","_readme_localurl":"pettingzoo-team~pettingzoo~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pettingzoo-team/pettingzoo/master/setup.py","https://raw.githubusercontent.com/pettingzoo-team/pettingzoo/master/pyproject.toml"],"_requirements_localurls":["pettingzoo-team~pettingzoo~setup.py","pettingzoo-team~pettingzoo~pyproject.toml"]},{"index":424,"category":"debug","githuburl":"https://github.com/gotcha/ipdb","featured":null,"links":null,"description":null,"_repopath":"gotcha/ipdb","_reponame":"ipdb","_stars":1664,"_forks":146,"_watches":27,"_language":"Python","_homepage":"","_description":"ipdb: Integration of IPython pdb","_organization":"gotcha","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2011-01-15T00:00:00.000Z","_age_weeks":631,"_stars_per_week":2.63,"_topics":["python","ipython","debugger"],"_last_commit_date":"2022-12-13T00:00:00.000Z","_pop_contributor_count":54,"_pop_contributor_logins":["MrMino@nokia","PiDelport","Psycojoker","alanbernstein@pilosa","alexandrebarbaruiva@let'sdelivery","andreagrandi@laterpay","dimasad@universidadefederaldeminasgerais","gnebehay@locatee","gotcha@bubblenet","takluyver"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bubblenet","laterpay","let'sdelivery","locatee","nokia","pilosa","universidadefederaldeminasgerais"],"_pop_contributor_orgs_raw":["@laterpay","@pilosa ","BubbleNet","Let's Delivery","Locatee","Nokia","Universidade Federal de Minas Gerais"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.25,"_pop_updated_issues_count":24,"_pop_closed_issues_count":15,"_pop_created_since_days":147,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":24.0,"_pop_comment_count":39.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":41.39,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/gotcha/ipdb/master/README.rst","_readme_localurl":"gotcha~ipdb~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/gotcha/ipdb/master/setup.py","https://raw.githubusercontent.com/gotcha/ipdb/master/pyproject.toml"],"_requirements_localurls":["gotcha~ipdb~setup.py","gotcha~ipdb~pyproject.toml"]},{"index":922,"category":"profiling","githuburl":"https://github.com/pyutils/line_profiler","featured":null,"links":null,"description":null,"_repopath":"pyutils/line_profiler","_reponame":"line_profiler","_stars":1655,"_forks":96,"_watches":16,"_language":"Cython","_homepage":null,"_description":"line_profiler: Line-by-line profiling for Python","_organization":"pyutils","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-12-10T00:00:00.000Z","_age_weeks":167,"_stars_per_week":9.9,"_topics":[],"_last_commit_date":"2022-12-09T00:00:00.000Z","_pop_contributor_count":38,"_pop_contributor_logins":["Erotemic@kitware","Hanaasagi","Nodd@onera","Theelx","artemisart","caethan","dependabot[bot]","kmike@zytedata,scrapinghub","mforbes@washingtonstateuniversity","rkern@enthought"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["enthought","kitware","onera","washingtonstateuniversity","zytedata,scrapinghub"],"_pop_contributor_orgs_raw":["@Kitware","@enthought ","@zytedata, @ScrapingHub","ONERA","Washington State University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.48,"_pop_updated_issues_count":16,"_pop_closed_issues_count":6,"_pop_created_since_days":39,"_pop_updated_since_days":2,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":16.0,"_pop_comment_count":43.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":0,"_pop_score":38.86,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyutils/line_profiler/master/README.rst","_readme_localurl":"pyutils~line_profiler~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyutils/line_profiler/master/requirements.txt","https://raw.githubusercontent.com/pyutils/line_profiler/master/setup.py","https://raw.githubusercontent.com/pyutils/line_profiler/master/pyproject.toml"],"_requirements_localurls":["pyutils~line_profiler~requirements.txt","pyutils~line_profiler~setup.py","pyutils~line_profiler~pyproject.toml"]},{"index":330,"category":"nlp","githuburl":"https://github.com/franck-dernoncourt/neuroner","featured":null,"links":null,"description":null,"_repopath":"franck-dernoncourt/neuroner","_reponame":"NeuroNER","_stars":1645,"_forks":485,"_watches":84,"_language":"Python","_homepage":"http://neuroner.com","_description":"NeuroNER: Named-entity recognition using neural networks. Easy-to-use and state-of-the-art results.","_organization":"franck-dernoncourt","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2017-03-07T00:00:00.000Z","_age_weeks":311,"_stars_per_week":5.29,"_topics":["nlp","machine-learning","neural-networks","named-entity-recognition","deep-learning","tensorflow"],"_last_commit_date":"2019-10-02T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["Franck-Dernoncourt","Gregory-Howard","JohnGiorgi@universityoftoronto","jennyjylee","toltoxgh","tompollard@mit"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["mit","universityoftoronto"],"_pop_contributor_orgs_raw":["MIT","University of Toronto"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":73,"_pop_updated_since_days":41,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":16.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/README.md","_readme_localurl":"franck-dernoncourt~neuroner~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/requirements.txt","https://raw.githubusercontent.com/franck-dernoncourt/neuroner/master/setup.py"],"_requirements_localurls":["franck-dernoncourt~neuroner~requirements.txt","franck-dernoncourt~neuroner~setup.py"]},{"index":436,"category":"nlp","githuburl":"https://github.com/recognai/rubrix","featured":null,"links":null,"description":null,"_repopath":"recognai/rubrix","_reponame":"argilla","_stars":1639,"_forks":150,"_watches":19,"_language":"Python","_homepage":"https://docs.argilla.io","_description":"argilla: \u2728 Open-source tool for data-centric NLP. Argilla helps domain experts and data teams to build better NLP datasets in less time.","_organization":"recognai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-04-28T00:00:00.000Z","_age_weeks":95,"_stars_per_week":17.25,"_topics":["python","data-science","human-in-the-loop","natural-language-processing","mlops","artificial-intelligence","knowledge-graph","developer-tools","text-labeling","annotation-tool","nlp","machine-learning","active-learning","weak-supervision","weakly-supervised-learning","spacy","text-classification","dataops","text-annotation","hacktoberfest"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":39,"_pop_contributor_logins":["davidberenstein1957@argilla-io","dcfidalgo@maxplanckcomputing&datafacility","dependabot[bot]","dvsrepo@argilla.io","frascuchon@recognai","ignacioct@aarhusuniversity,vestas","keithCuniah@argilla.io","leireropl","leiyre","tomaarsen@argilla"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aarhusuniversity,vestas","argilla","argilla-io","argilla.io","maxplanckcomputing&datafacility","recognai"],"_pop_contributor_orgs_raw":["@argilla-io ","Aarhus University, Vestas","Argilla","Argilla.io","Max Planck Computing & Data Facility","Recognai","argilla.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":10.23,"_pop_updated_issues_count":533,"_pop_closed_issues_count":343,"_pop_created_since_days":22,"_pop_updated_since_days":0,"_pop_recent_releases_count":22,"_pop_recent_releases_estimated_tags":49,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":533.0,"_pop_comment_count":575.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":48.66,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/recognai/rubrix/master/README.md","_readme_localurl":"recognai~rubrix~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/recognai/rubrix/master/setup.py","https://raw.githubusercontent.com/recognai/rubrix/master/pyproject.toml"],"_requirements_localurls":["recognai~rubrix~setup.py","recognai~rubrix~pyproject.toml"]},{"index":768,"category":"ml-dl","githuburl":"https://github.com/fepegar/torchio","featured":null,"links":null,"description":null,"_repopath":"fepegar/torchio","_reponame":"torchio","_stars":1636,"_forks":202,"_watches":17,"_language":"Python","_homepage":"http://www.torchio.org","_description":"torchio: Medical imaging toolkit for deep learning","_organization":"fepegar","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-11-26T00:00:00.000Z","_age_weeks":169,"_stars_per_week":9.67,"_topics":["pytorch","medical-image-computing","deep-learning","data-augmentation","medical-images","machine-learning","python","medical-image-processing","medical-image-analysis","medical-imaging-datasets","medical-imaging-with-deep-learning","augmentation"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":41,"_pop_contributor_logins":["GFabien","JulianKlug","allcontributors[bot]","dmus","dvolgyes","efirdc","fepegar@microsoftuclkcl-bmeis","justusschock@lightning-ai","mattwarkentin@universityofcalgary","pre-commit-ci[bot]"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["lightning-ai","microsoftuclkcl-bmeis","universityofcalgary"],"_pop_contributor_orgs_raw":["@Lightning-AI","@microsoft @UCL @KCL-BMEIS","University of Calgary"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.44,"_pop_updated_issues_count":34,"_pop_closed_issues_count":21,"_pop_created_since_days":39,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":79,"_pop_recent_releases_adjusted_count":79,"_pop_issue_count":34.0,"_pop_comment_count":56.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":42.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fepegar/torchio/master/README.md","_readme_localurl":"fepegar~torchio~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/fepegar/torchio/master/pyproject.toml"],"_requirements_localurls":["fepegar~torchio~pyproject.toml"]},{"index":779,"category":"nlp","githuburl":"https://github.com/deepset-ai/farm","featured":null,"links":null,"description":null,"_repopath":"deepset-ai/farm","_reponame":"FARM","_stars":1627,"_forks":233,"_watches":54,"_language":"Python","_homepage":"https://farm.deepset.ai","_description":"FARM: :house_with_garden: Fast & easy transfer learning for NLP. Harvesting language models for the industry. Focus on Question Answering.","_organization":"deepset-ai","_updated_at":"2023-02-16T00:00:00.000Z","_created_at":"2019-07-17T00:00:00.000Z","_age_weeks":188,"_stars_per_week":8.65,"_topics":["language-models","bert","nlp","deep-learning","transfer-learning","pytorch","nlp-library","nlp-framework","xlnet-pytorch","ner","question-answering","pretrained-models","roberta","germanbert"],"_last_commit_date":"2022-08-31T00:00:00.000Z","_pop_contributor_count":37,"_pop_contributor_logins":["PhilipMay@telekom","Timoeller@deepset","bogdankostic@deepset-ai","brandenchan","ftesser","johann-petrak@sheffieldnlp,gatenlp,ofai","julian-risch@deepset","kolk","tanaysoni","tholor@deepset"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["deepset","deepset-ai","sheffieldnlp,gatenlp,ofai","telekom"],"_pop_contributor_orgs_raw":["@deepset-ai","@sheffieldnlp, @GateNLP, @OFAI","@telekom","deepset"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":5,"_pop_closed_issues_count":3,"_pop_created_since_days":44,"_pop_updated_since_days":6,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":5.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":31.83,"_readme_filename":"readme.rst","_readme_giturl":"https://raw.githubusercontent.com/deepset-ai/farm/master/readme.rst","_readme_localurl":"deepset-ai~farm~readme.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/deepset-ai/farm/master/requirements.txt","https://raw.githubusercontent.com/deepset-ai/farm/master/setup.py"],"_requirements_localurls":["deepset-ai~farm~requirements.txt","deepset-ai~farm~setup.py"]},{"index":799,"category":"web","githuburl":"https://github.com/pallets/quart","featured":null,"links":null,"description":null,"_repopath":"pallets/quart","_reponame":"quart","_stars":1618,"_forks":99,"_watches":25,"_language":"Python","_homepage":"https://quart.palletsprojects.com","_description":"quart: An async Python micro framework for building web applications. ","_organization":"pallets","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-11-10T00:00:00.000Z","_age_weeks":275,"_stars_per_week":5.87,"_topics":["asyncio","python","http-server","asgi","quart"],"_last_commit_date":"2023-02-12T00:00:00.000Z","_pop_contributor_count":84,"_pop_contributor_logins":["andrewshadura@collabora","arminweigl","arusahni@materializeinc","briancappello","laggardkernel@none","pgjones","potomak","pszpetkowski@pkobp","sanderfoobar","wwwjfy@grab"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["collabora","grab","materializeinc","none","pkobp"],"_pop_contributor_orgs_raw":["@Grab","@MaterializeInc ","Collabora","None","PKO BP"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.0,"_pop_updated_issues_count":15,"_pop_closed_issues_count":11,"_pop_created_since_days":64,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":15.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":43.81,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pallets/quart/master/README.rst","_readme_localurl":"pallets~quart~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pallets/quart/master/pyproject.toml"],"_requirements_localurls":["pallets~quart~pyproject.toml"]},{"index":683,"category":"util","githuburl":"https://github.com/spotify/basic-pitch","featured":null,"links":null,"description":null,"_repopath":"spotify/basic-pitch","_reponame":"basic-pitch","_stars":1618,"_forks":91,"_watches":31,"_language":"Python","_homepage":"https://basicpitch.io","_description":"basic-pitch: A lightweight yet powerful audio-to-MIDI converter with pitch bend detection","_organization":"spotify","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-05-03T00:00:00.000Z","_age_weeks":42,"_stars_per_week":38.39,"_topics":["lightweight","machine-learning","midi","music","pitch-detection","polyphonic","transcription","audio","python","typescript"],"_last_commit_date":"2023-02-10T00:00:00.000Z","_pop_contributor_count":11,"_pop_contributor_logins":["cclauss@christianclauss","dohertyguirand","drubinstein@spotify","gudgud96@bandlab","johngao2@spotify","jvbalen","michaelhball@merantix","perploug@spotify","rabitt"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bandlab","christianclauss","merantix","spotify"],"_pop_contributor_orgs_raw":["@bandlab","@merantix ","@spotify","Christian Clauss","Spotify"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.79,"_pop_updated_issues_count":21,"_pop_closed_issues_count":9,"_pop_created_since_days":10,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":21.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":26.47,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/spotify/basic-pitch/master/README.md","_readme_localurl":"spotify~basic-pitch~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/spotify/basic-pitch/master/setup.py"],"_requirements_localurls":["spotify~basic-pitch~setup.py"]},{"index":509,"category":"ml","githuburl":"https://github.com/tensorflow/addons","featured":null,"links":null,"description":null,"_repopath":"tensorflow/addons","_reponame":"addons","_stars":1611,"_forks":600,"_watches":58,"_language":"Python","_homepage":"","_description":"addons: Useful extra functionality for TensorFlow 2.x maintained by SIG-addons","_organization":"tensorflow","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-11-26T00:00:00.000Z","_age_weeks":221,"_stars_per_week":7.28,"_topics":["machine-learning","deep-learning","tensorflow","neural-network","tensorflow-addons","python"],"_last_commit_date":"2022-12-14T00:00:00.000Z","_pop_contributor_count":200,"_pop_contributor_logins":["Squadrick@thoughtspot","WindQAQ@googlers","autoih","bhack","facaiy","fsx950223@amd","gabrieldemarmiesse@preligens","guillaumekln@systran","qlzh727@google","seanpmorgan@aws"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amd","aws","google","googlers","preligens","systran","thoughtspot"],"_pop_contributor_orgs_raw":["@Aws","@SYSTRAN","@googlers ","@thoughtspot","AMD","Google","Preligens"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.9,"_pop_updated_issues_count":42,"_pop_closed_issues_count":18,"_pop_created_since_days":52,"_pop_updated_since_days":2,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":42.0,"_pop_comment_count":70.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":44.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/addons/master/README.md","_readme_localurl":"tensorflow~addons~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorflow/addons/master/requirements.txt","https://raw.githubusercontent.com/tensorflow/addons/master/setup.py","https://raw.githubusercontent.com/tensorflow/addons/master/pyproject.toml"],"_requirements_localurls":["tensorflow~addons~requirements.txt","tensorflow~addons~setup.py","tensorflow~addons~pyproject.toml"]},{"index":205,"category":"debug","githuburl":"https://github.com/alexmojaki/heartrate","featured":null,"links":null,"description":null,"_repopath":"alexmojaki/heartrate","_reponame":"heartrate","_stars":1610,"_forks":123,"_watches":33,"_language":"Python","_homepage":null,"_description":"heartrate: Simple real time visualisation of the execution of a Python program.","_organization":"alexmojaki","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-04-24T00:00:00.000Z","_age_weeks":200,"_stars_per_week":8.05,"_topics":["python","visualization","debugger"],"_last_commit_date":"2021-11-13T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["alexmojaki","lvelvee"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":47,"_pop_updated_since_days":16,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":6.85,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alexmojaki/heartrate/master/README.md","_readme_localurl":"alexmojaki~heartrate~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/alexmojaki/heartrate/master/setup.py"],"_requirements_localurls":["alexmojaki~heartrate~setup.py"]},{"index":377,"category":"ml-interpretability","githuburl":"https://github.com/jalammar/ecco","featured":null,"links":null,"description":null,"_repopath":"jalammar/ecco","_reponame":"ecco","_stars":1605,"_forks":116,"_watches":21,"_language":"Jupyter Notebook","_homepage":"https://ecco.readthedocs.io","_description":"ecco: Explain, analyze, and visualize NLP language models. Ecco creates interactive visualizations directly in Jupyter notebooks explaining the behavior of Transformer-based language models (like GPT2, BERT, RoBERTA, T5, and T0).","_organization":"jalammar","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-11-07T00:00:00.000Z","_age_weeks":119,"_stars_per_week":13.42,"_topics":["nlp","visualization","explorables","natural-language-processing","pytorch","language-models"],"_last_commit_date":"2022-01-18T00:00:00.000Z","_pop_contributor_count":10,"_pop_contributor_logins":["Haziqa-coder","JoaoLages@outsystems","SSamDav@outsystems","chiragjn@truefoundry","jalammar@cohere-ai","joaonadkarni","nostalgebraist","sugatoray@universityofwisconsin-milwaukee","thomas-chong@hkust"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cohere-ai","hkust","outsystems","truefoundry","universityofwisconsin-milwaukee"],"_pop_contributor_orgs_raw":["@cohere-ai ","@truefoundry ","HKUST","OutSystems","Outsystems","University of Wisconsin - Milwaukee"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":28,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":3.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":24.09,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jalammar/ecco/master/README.rst","_readme_localurl":"jalammar~ecco~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jalammar/ecco/master/requirements.txt","https://raw.githubusercontent.com/jalammar/ecco/master/setup.py"],"_requirements_localurls":["jalammar~ecco~requirements.txt","jalammar~ecco~setup.py"]},{"index":597,"category":"time-series","githuburl":"https://github.com/uber/orbit","featured":null,"links":null,"description":null,"_repopath":"uber/orbit","_reponame":"orbit","_stars":1602,"_forks":120,"_watches":33,"_language":"Python","_homepage":"https://orbit-ml.readthedocs.io/en/stable/","_description":"orbit: A Python package for Bayesian forecasting with object-oriented design and probabilistic models under the hood.","_organization":"uber","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-01-07T00:00:00.000Z","_age_weeks":163,"_stars_per_week":9.82,"_topics":["python","forecasting","bayesian","exponential-smoothing","pyro","stan","pystan","probabilistic-programming","probabilistic","forecast","orbit","time-series","regression","arima","changepoint","bayesian-methods","bayesian-statistics","machine-learning","regression-models","pytorch"],"_last_commit_date":"2023-01-29T00:00:00.000Z","_pop_contributor_count":18,"_pop_contributor_logins":["Ariel77","FreeRealEstate221@uber","GavinSteiningerUber","edwinnglabs@uber","pochoi@ucdavis","ppstacy","steveyang90","szmark001@google","vincewu51@uber","wangzhishi"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","uber","ucdavis"],"_pop_contributor_orgs_raw":["@Google","UC Davis","Uber"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.56,"_pop_updated_issues_count":20,"_pop_closed_issues_count":12,"_pop_created_since_days":38,"_pop_updated_since_days":1,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":20.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":34.13,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/uber/orbit/master/README.md","_readme_localurl":"uber~orbit~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/orbit/master/requirements.txt","https://raw.githubusercontent.com/uber/orbit/master/setup.py","https://raw.githubusercontent.com/uber/orbit/master/pyproject.toml"],"_requirements_localurls":["uber~orbit~requirements.txt","uber~orbit~setup.py","uber~orbit~pyproject.toml"]},{"index":263,"category":"sim","githuburl":"https://github.com/quantecon/quantecon.py","featured":null,"links":null,"description":null,"_repopath":"quantecon/quantecon.py","_reponame":"QuantEcon.py","_stars":1600,"_forks":2141,"_watches":148,"_language":"Python","_homepage":"https://quantecon.org/quantecon-py/","_description":"QuantEcon.py: A community based Python library for quantitative economics","_organization":"quantecon","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2013-03-22T00:00:00.000Z","_age_weeks":517,"_stars_per_week":3.09,"_topics":[],"_last_commit_date":"2023-01-29T00:00:00.000Z","_pop_contributor_count":40,"_pop_contributor_logins":["QBatista@mit","Smit-create","cc7768@umaprotocol","davidrpugh@kingabdullahuniversityofscienceandtechnology","jstac@australiannationaluniversity","mmcky","oyamad@universityoftokyo","rht","sglyon@valorumdata","shizejin"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["australiannationaluniversity","kingabdullahuniversityofscienceandtechnology","mit","umaprotocol","universityoftokyo","valorumdata"],"_pop_contributor_orgs_raw":["@UMAprotocol","Australian National University","King Abdullah University of Science and Technology","MIT","University of Tokyo","Valorum Data"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.94,"_pop_updated_issues_count":58,"_pop_closed_issues_count":40,"_pop_created_since_days":121,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":58.0,"_pop_comment_count":183.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.2,"_pop_dependents_count":0,"_pop_score":45.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/quantecon/quantecon.py/master/README.md","_readme_localurl":"quantecon~quantecon.py~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/quantecon/quantecon.py/master/pyproject.toml"],"_requirements_localurls":["quantecon~quantecon.py~pyproject.toml"]},{"index":876,"category":"study","githuburl":"https://github.com/rasbt/machine-learning-book","featured":null,"links":null,"description":null,"_repopath":"rasbt/machine-learning-book","_reponame":"machine-learning-book","_stars":1594,"_forks":599,"_watches":30,"_language":"Jupyter Notebook","_homepage":"https://sebastianraschka.com/books/#machine-learning-with-pytorch-and-scikit-learn","_description":"machine-learning-book: Code Repository for Machine Learning with PyTorch and Scikit-Learn","_organization":"rasbt","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-12-19T00:00:00.000Z","_age_weeks":61,"_stars_per_week":25.95,"_topics":["machine-learning","scikit-learn","deep-learning","neural-networks","pytorch"],"_last_commit_date":"2023-02-02T00:00:00.000Z","_pop_contributor_count":11,"_pop_contributor_logins":["SalMireles","asrjy@zodhya-git","capac","ericgarza70","haydenliu","mbrukman@google","naiborhujosua","paw-lu","rasbt@lightning-ai,universityofwisconsin-madison","rnckp"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","lightning-ai,universityofwisconsin-madison","zodhya-git"],"_pop_contributor_orgs_raw":["@Google","@Lightning-AI , University of Wisconsin-Madison","@zodhya-git "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.73,"_pop_updated_issues_count":16,"_pop_closed_issues_count":7,"_pop_created_since_days":14,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":16.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":27.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/machine-learning-book/master/README.md","_readme_localurl":"rasbt~machine-learning-book~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":299,"category":"util","githuburl":"https://github.com/julienpalard/pipe","featured":null,"links":null,"description":null,"_repopath":"julienpalard/pipe","_reponame":"Pipe","_stars":1594,"_forks":103,"_watches":27,"_language":"Python","_homepage":"","_description":"Pipe: A Python library to use infix notation in Python","_organization":"julienpalard","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2010-04-08T00:00:00.000Z","_age_weeks":671,"_stars_per_week":2.37,"_topics":[],"_last_commit_date":"2022-11-16T00:00:00.000Z","_pop_contributor_count":25,"_pop_contributor_logins":["Abdur-rahmaanJ@compileralchemy","Amper@victoriametrics","Briaoeuidhtns","JulienPalard","brentp@universityofutah","dalexander","j450h1@microsoft","jerabaul29","nykh@sumologic","righthandabacus"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["compileralchemy","microsoft","sumologic","universityofutah","victoriametrics"],"_pop_contributor_orgs_raw":["@VictoriaMetrics","@compileralchemy ","Microsoft","Sumo Logic","University of Utah"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":157,"_pop_updated_since_days":3,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":4.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":31.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/julienpalard/pipe/master/README.md","_readme_localurl":"julienpalard~pipe~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/julienpalard/pipe/master/pyproject.toml"],"_requirements_localurls":["julienpalard~pipe~pyproject.toml"]},{"index":596,"category":"data","githuburl":"https://github.com/uber/petastorm","featured":null,"links":null,"description":null,"_repopath":"uber/petastorm","_reponame":"petastorm","_stars":1582,"_forks":267,"_watches":43,"_language":"Python","_homepage":"","_description":"Petastorm library enables single machine or distributed training and evaluation of deep learning models from datasets in Apache Parquet format. It supports ML frameworks such as Tensorflow, Pytorch, and PySpark and can be used from pure Python code.","_organization":"uber","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-06-15T00:00:00.000Z","_age_weeks":244,"_stars_per_week":6.46,"_topics":["tensorflow","pytorch","deep-learning","machine-learning","sysml","pyspark","pyarrow","parquet","parquet-files"],"_last_commit_date":"2023-02-03T00:00:00.000Z","_pop_contributor_count":48,"_pop_contributor_logins":["Ivan-Dimitrov","WeichenXu123@databricks","abditag2@uber","chongxiaoc@uber","liangz1@databricks","megaserg","praateekmahajan@iterable","rgruener@netflix","selitvin","tgaddair@uber"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["databricks","iterable","netflix","uber"],"_pop_contributor_orgs_raw":["@Iterable ","@Netflix","@databricks","@databricks ","@uber ","Uber","Uber "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.4,"_pop_updated_issues_count":18,"_pop_closed_issues_count":4,"_pop_created_since_days":57,"_pop_updated_since_days":1,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":18.0,"_pop_comment_count":24.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":38.44,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/uber/petastorm/master/README.rst","_readme_localurl":"uber~petastorm~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/petastorm/master/setup.py"],"_requirements_localurls":["uber~petastorm~setup.py"]},{"index":378,"category":"ml-interpretability","githuburl":"https://github.com/oegedijk/explainerdashboard","featured":null,"links":null,"description":null,"_repopath":"oegedijk/explainerdashboard","_reponame":"explainerdashboard","_stars":1578,"_forks":208,"_watches":18,"_language":"Python","_homepage":"http://explainerdashboard.readthedocs.io","_description":"explainerdashboard: Quickly build Explainable AI dashboards that show the inner workings of so-called \"blackbox\" machine learning models.","_organization":"oegedijk","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2019-10-30T00:00:00.000Z","_age_weeks":173,"_stars_per_week":9.12,"_topics":["dash","shap-values","dashboard","model-predictions","data-scientists","explainer","interactive-dashboards","permutation-importances","shap","plotly","inner-workings","interactive-plots","xai-library","xai"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":19,"_pop_contributor_logins":["Simon-Free","absynthe@amazonwebservices","achimgaedke","brandonserna@u.s.geologicalsurvey","mekomlusa","oegedijk@thoughtworks","oegesam","rajgupt@optum","raybellwaves@dtn","yanhong-zhao-ef@educationfirst"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazonwebservices","dtn","educationfirst","optum","thoughtworks","u.s.geologicalsurvey"],"_pop_contributor_orgs_raw":["Amazon Web Services","DTN","Education First","Optum","ThoughtWorks","U.S. Geological Survey"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.6,"_pop_updated_issues_count":32,"_pop_closed_issues_count":28,"_pop_created_since_days":40,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":23,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":32.0,"_pop_comment_count":93.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":0,"_pop_score":42.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/oegedijk/explainerdashboard/master/README.md","_readme_localurl":"oegedijk~explainerdashboard~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/oegedijk/explainerdashboard/master/requirements.txt","https://raw.githubusercontent.com/oegedijk/explainerdashboard/master/setup.py"],"_requirements_localurls":["oegedijk~explainerdashboard~requirements.txt","oegedijk~explainerdashboard~setup.py"]},{"index":900,"category":"ml","githuburl":"https://github.com/shankarpandala/lazypredict","featured":null,"links":null,"description":null,"_repopath":"shankarpandala/lazypredict","_reponame":"lazypredict","_stars":1573,"_forks":190,"_watches":22,"_language":"Python","_homepage":"","_description":"lazypredict: Lazy Predict help build a lot of basic models without much code and helps understand which models works better without any parameter tuning","_organization":"shankarpandala","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-11-16T00:00:00.000Z","_age_weeks":170,"_stars_per_week":9.22,"_topics":["machine-learning","automl","regression","classification"],"_last_commit_date":"2022-09-28T00:00:00.000Z","_pop_contributor_count":18,"_pop_contributor_logins":["Ankur-singh@zoop.one","Arritmic@universityofoulu","brendalf@wildlife-studios","dataprofessor@streamlit","dependabot[bot]","felipesassi","pyup-bot@pyupio","shankarpandala@appliedmaterials","shyamcody","vidyap-xgboost@fiolabs-internal"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["appliedmaterials","fiolabs-internal","pyupio","streamlit","universityofoulu","wildlife-studios","zoop.one"],"_pop_contributor_orgs_raw":["@fiolabs-internal ","@pyupio","@wildlife-studios","Applied Materials","Streamlit Inc.","University of Oulu","zoop.one"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":38,"_pop_closed_issues_count":3,"_pop_created_since_days":40,"_pop_updated_since_days":5,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":38.0,"_pop_comment_count":24.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":30.57,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/shankarpandala/lazypredict/master/README.rst","_readme_localurl":"shankarpandala~lazypredict~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/shankarpandala/lazypredict/master/requirements.txt","https://raw.githubusercontent.com/shankarpandala/lazypredict/master/setup.py"],"_requirements_localurls":["shankarpandala~lazypredict~requirements.txt","shankarpandala~lazypredict~setup.py"]},{"index":143,"category":"nlp","githuburl":"https://github.com/plasticityai/magnitude","featured":null,"links":null,"description":null,"_repopath":"plasticityai/magnitude","_reponame":"magnitude","_stars":1559,"_forks":113,"_watches":37,"_language":"Python","_homepage":null,"_description":"magnitude: A fast, efficient universal vector embedding utility package.","_organization":"plasticityai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-02-24T00:00:00.000Z","_age_weeks":260,"_stars_per_week":5.98,"_topics":["python","natural-language-processing","nlp","machine-learning","vectors","embeddings","word2vec","fasttext","glove","gensim","fast","memory-efficient","machine-learning-library","word-embeddings"],"_last_commit_date":"2020-07-17T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["AjayP13","alexsands","jweese","plasticity-admin@plasticityai"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["plasticityai"],"_pop_contributor_orgs_raw":["@plasticityai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":61,"_pop_updated_since_days":32,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":28,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":15.28,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/plasticityai/magnitude/master/README.md","_readme_localurl":"plasticityai~magnitude~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/plasticityai/magnitude/master/requirements.txt","https://raw.githubusercontent.com/plasticityai/magnitude/master/setup.py"],"_requirements_localurls":["plasticityai~magnitude~requirements.txt","plasticityai~magnitude~setup.py"]},{"index":662,"category":"util","githuburl":"https://github.com/numba/llvmlite","featured":null,"links":null,"description":null,"_repopath":"numba/llvmlite","_reponame":"llvmlite","_stars":1557,"_forks":297,"_watches":53,"_language":"Python","_homepage":"http://llvmlite.pydata.org/","_description":"llvmlite: A lightweight LLVM python binding for writing JIT compilers","_organization":"numba","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2014-08-07T00:00:00.000Z","_age_weeks":445,"_stars_per_week":3.49,"_topics":[],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":81,"_pop_contributor_logins":["apmasell","esc@anaconda","franzhaas","gmarkall@nvidia","john-tornblom","pitrou","seibert","sklam","stuartarchibald","whitequark"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","nvidia"],"_pop_contributor_orgs_raw":["@nvidia","Anaconda Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.5,"_pop_updated_issues_count":33,"_pop_closed_issues_count":13,"_pop_created_since_days":104,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":33.0,"_pop_comment_count":103.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.1,"_pop_dependents_count":0,"_pop_score":45.5,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/numba/llvmlite/master/README.rst","_readme_localurl":"numba~llvmlite~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/numba/llvmlite/master/setup.py"],"_requirements_localurls":["numba~llvmlite~setup.py"]},{"index":311,"category":"util","githuburl":"https://github.com/linkedin/shiv","featured":null,"links":null,"description":null,"_repopath":"linkedin/shiv","_reponame":"shiv","_stars":1552,"_forks":84,"_watches":26,"_language":"Python","_homepage":"","_description":"shiv is a command line utility for building fully self contained Python zipapps as outlined in PEP 441, but with all their dependencies included.","_organization":"linkedin","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-03-13T00:00:00.000Z","_age_weeks":258,"_stars_per_week":6.01,"_topics":[],"_last_commit_date":"2022-11-04T00:00:00.000Z","_pop_contributor_count":39,"_pop_contributor_logins":["ChrisCarini@linkedin","anthrotype","bzzzzzz@linkedin","dsully@linkedin","ipmb@lincolnloop","jhermann@mam-dev","lorencarvalho@linkedin","pfmoore","timgates42@iress","warsaw@linkedin"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["iress","lincolnloop","linkedin","mam-dev"],"_pop_contributor_orgs_raw":["@LinkedIn","@linkedin","@mam-dev ","IRESS","Lincoln Loop","LinkedIn"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":5,"_pop_closed_issues_count":3,"_pop_created_since_days":60,"_pop_updated_since_days":4,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":5.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":31.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/linkedin/shiv/master/README.md","_readme_localurl":"linkedin~shiv~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/linkedin/shiv/master/pyproject.toml"],"_requirements_localurls":["linkedin~shiv~pyproject.toml"]},{"index":635,"category":"debug","githuburl":"https://github.com/alexmojaki/birdseye","featured":null,"links":null,"description":null,"_repopath":"alexmojaki/birdseye","_reponame":"birdseye","_stars":1539,"_forks":77,"_watches":43,"_language":"JavaScript","_homepage":"https://birdseye.readthedocs.io","_description":"birdseye: Graphical Python debugger which lets you easily view the values of all evaluated expressions","_organization":"alexmojaki","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2017-07-22T00:00:00.000Z","_age_weeks":291,"_stars_per_week":5.28,"_topics":["python-debugger","python","debugger","debugging","birdseye","ast"],"_last_commit_date":"2022-05-18T00:00:00.000Z","_pop_contributor_count":10,"_pop_contributor_logins":["MichaelCurrin@actcommodities","aivarannamaa@cybernetica","alexmojaki","bugosiphionah","houluy@beijinguniversityofpostsandtelecomms.","skeledrew@skelevilletechnologysolutions","spamegg1"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["actcommodities","beijinguniversityofpostsandtelecomms.","cybernetica","skelevilletechnologysolutions"],"_pop_contributor_orgs_raw":["ACT Commodities","Beijing University of Posts and Telecomms.","Cybernetica","Skeleville Technology Solutions"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":68,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":25.67,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/alexmojaki/birdseye/master/README.rst","_readme_localurl":"alexmojaki~birdseye~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/alexmojaki/birdseye/master/setup.py","https://raw.githubusercontent.com/alexmojaki/birdseye/master/pyproject.toml"],"_requirements_localurls":["alexmojaki~birdseye~setup.py","alexmojaki~birdseye~pyproject.toml"]},{"index":224,"category":"sim","githuburl":"https://github.com/google/brax","featured":null,"links":null,"description":null,"_repopath":"google/brax","_reponame":"brax","_stars":1537,"_forks":159,"_watches":37,"_language":"Jupyter Notebook","_homepage":"","_description":"brax: Massively parallel rigidbody physics simulation on accelerator hardware.","_organization":"google","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2021-06-02T00:00:00.000Z","_age_weeks":90,"_stars_per_week":17.08,"_topics":["jax","reinforcement-learning","robotics","physics-simulation"],"_last_commit_date":"2023-02-09T00:00:00.000Z","_pop_contributor_count":27,"_pop_contributor_logins":["7thStringofZhef","cdfreeman-google@google","cemlyn007@instadeep","danielsuo@princetonuniversity","erikfrey","lebrice","namheegordonkim","sgillen","traversaro@italianinstituteoftechnology","vwxyzjn@drexeluniversity"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["drexeluniversity","google","instadeep","italianinstituteoftechnology","princetonuniversity"],"_pop_contributor_orgs_raw":["Drexel University","Google","InstaDeep","Italian Institute of Technology","Princeton University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":48,"_pop_closed_issues_count":31,"_pop_created_since_days":21,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":48.0,"_pop_comment_count":72.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":39.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/brax/master/README.md","_readme_localurl":"google~brax~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/brax/master/setup.py"],"_requirements_localurls":["google~brax~setup.py"]},{"index":612,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-mock","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-mock","_reponame":"pytest-mock","_stars":1525,"_forks":121,"_watches":33,"_language":"Python","_homepage":"https://pytest-mock.readthedocs.io/en/latest/","_description":"pytest-mock: Thin-wrapper around the mock package for easier use with pytest","_organization":"pytest-dev","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-07-17T00:00:00.000Z","_age_weeks":448,"_stars_per_week":3.4,"_topics":["pytest","mock","hacktoberfest"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":64,"_pop_contributor_logins":["The-Compiler@bruhinsoftware","blueyed@freelancer,upforhire","fogo","graingert","hugovk@nordsoftware","inderpreet99@wayfair","jurko-gospodnetic@pkesistemi","nicoddemus@esss","pre-commit-ci[bot]","tirkarthi@visa"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bruhinsoftware","esss","freelancer,upforhire","nordsoftware","pkesistemi","visa","wayfair"],"_pop_contributor_orgs_raw":["Bruhin Software","ESSS","Freelancer, up for hire","Nord Software","PKE sistemi","Visa Inc.","Wayfair"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.96,"_pop_updated_issues_count":15,"_pop_closed_issues_count":13,"_pop_created_since_days":105,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":15.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":43.25,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-mock/master/README.rst","_readme_localurl":"pytest-dev~pytest-mock~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-mock/master/setup.py"],"_requirements_localurls":["pytest-dev~pytest-mock~setup.py"]},{"index":591,"category":"template","githuburl":"https://github.com/buuntu/fastapi-react","featured":null,"links":null,"description":null,"_repopath":"buuntu/fastapi-react","_reponame":"fastapi-react","_stars":1510,"_forks":260,"_watches":36,"_language":"Python","_homepage":"","_description":"fastapi-react: \ud83d\ude80 Cookiecutter Template for FastAPI + React Projects. Using PostgreSQL, SQLAlchemy, and Docker","_organization":"buuntu","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-03-21T00:00:00.000Z","_age_weeks":152,"_stars_per_week":9.9,"_topics":["fastapi","postgres","cookiecutter","react","react-admin","nginx","boilerplate","full-stack","typescript","sqlalchemy","jwt","oauth2","docker"],"_last_commit_date":"2022-02-18T00:00:00.000Z","_pop_contributor_count":13,"_pop_contributor_logins":["Buuntu@facebook","F1r3Hydr4nt","JasonHoku@jasonhoku","RobbertH","adamnieto@pfizer","arihantsurana@nearmap","cdeil@heidelbergcement","dependabot-preview[bot]","dependabot[bot]","ilyakam"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook","heidelbergcement","jasonhoku","nearmap","pfizer"],"_pop_contributor_orgs_raw":["@facebook","@nearmap ","@pfizer","HeidelbergCement","JasonHoku"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":4,"_pop_closed_issues_count":2,"_pop_created_since_days":36,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":4.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":23.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/buuntu/fastapi-react/master/README.md","_readme_localurl":"buuntu~fastapi-react~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":438,"category":"gis","githuburl":"https://github.com/giswqs/leafmap","featured":null,"links":null,"description":null,"_repopath":"giswqs/leafmap","_reponame":"leafmap","_stars":1500,"_forks":183,"_watches":45,"_language":"Python","_homepage":"https://leafmap.org","_description":"leafmap: A Python package for interactive mapping and geospatial analysis with minimal coding in a Jupyter environment","_organization":"giswqs","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2021-03-10T00:00:00.000Z","_age_weeks":102,"_stars_per_week":14.71,"_topics":["ipyleaflet","folium","mapping","python","geopython","jupyter-notebook","jupyter","gis","dataviz","data-science","whiteboxtools","geospatial","geospatial-analysis","leafmap","streamlit","streamlit-webapp","plotly","pydeck","keplergl"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":20,"_pop_contributor_logins":["ajstewartlang@universityofmanchester","amorfinv","darrenwiens","giswqs@universityoftennessee","jbednar@anaconda","junjiez","rowheat02@naxa","sackh","sdruskat@germanaerospacecenter(dlr)","sugatoray@universityofwisconsin-milwaukee"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","germanaerospacecenter(dlr)","naxa","universityofmanchester","universityoftennessee","universityofwisconsin-milwaukee"],"_pop_contributor_orgs_raw":["Anaconda, Inc.","German Aerospace Center (DLR)","NAXA","University of Manchester","University of Tennessee","University of Wisconsin - Milwaukee"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.35,"_pop_updated_issues_count":49,"_pop_closed_issues_count":42,"_pop_created_since_days":24,"_pop_updated_since_days":0,"_pop_recent_releases_count":39,"_pop_recent_releases_estimated_tags":35,"_pop_recent_releases_adjusted_count":39,"_pop_issue_count":49.0,"_pop_comment_count":50.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":42.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/giswqs/leafmap/master/README.md","_readme_localurl":"giswqs~leafmap~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/giswqs/leafmap/master/requirements.txt","https://raw.githubusercontent.com/giswqs/leafmap/master/setup.py"],"_requirements_localurls":["giswqs~leafmap~requirements.txt","giswqs~leafmap~setup.py"]},{"index":531,"category":"ml-dl","githuburl":"https://github.com/neuralmagic/sparseml","featured":null,"links":null,"description":null,"_repopath":"neuralmagic/sparseml","_reponame":"sparseml","_stars":1499,"_forks":113,"_watches":39,"_language":"Python","_homepage":"","_description":"sparseml: Libraries for applying sparsification recipes to neural networks with a few lines of code, enabling faster and smaller models","_organization":"neuralmagic","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2020-12-11T00:00:00.000Z","_age_weeks":114,"_stars_per_week":13.07,"_topics":["pytorch","keras","model-sparsification","sparsification-recipes","tensorflow","smaller-models","deep-learning-library","deep-learning-algorithms","deep-learning-models","automl","pruning-algorithms","sparsity","sparsification","recipe-driven-approaches","pruning","computer-vision-algorithms","object-detection","image-classification","nlp","onnx"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":40,"_pop_contributor_logins":["KSGulin@neuralmagic","bfineran@neuralmagic","corey-nm","dbogunowicz","eldarkurtic","jeanniefinks@neuralmagic","kevinaer@neuralmagic","markurtz@neuralmagic","natuan","rahul-tuli@neuralmagic"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["neuralmagic"],"_pop_contributor_orgs_raw":["@neuralmagic","@neuralmagic ","Neural Magic"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.54,"_pop_updated_issues_count":243,"_pop_closed_issues_count":222,"_pop_created_since_days":27,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":243.0,"_pop_comment_count":95.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":39.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/neuralmagic/sparseml/master/README.md","_readme_localurl":"neuralmagic~sparseml~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/neuralmagic/sparseml/master/setup.py","https://raw.githubusercontent.com/neuralmagic/sparseml/master/pyproject.toml"],"_requirements_localurls":["neuralmagic~sparseml~setup.py","neuralmagic~sparseml~pyproject.toml"]},{"index":828,"category":"sim","githuburl":"https://github.com/farama-foundation/gymnasium","featured":null,"links":null,"description":null,"_repopath":"farama-foundation/gymnasium","_reponame":"Gymnasium","_stars":1495,"_forks":169,"_watches":18,"_language":"Python","_homepage":"https://gymnasium.farama.org","_description":"Gymnasium: A standard API for single-agent reinforcement learning environments, with popular reference environments and related utilities (formerly Gym)","_organization":"farama-foundation","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-09-08T00:00:00.000Z","_age_weeks":23,"_stars_per_week":62.66,"_topics":[],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":410,"_pop_contributor_logins":["RedTachyon","gdb","jietang","jkterry1","jonasschneider","joschu","pseudo-rnd-thoughts","pzhokhov","tlbtlbtlb@umbrellaresearch","zuoxingdong@navercorp"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["navercorp","umbrellaresearch"],"_pop_contributor_orgs_raw":["NAVER Corp","Umbrella Research"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.63,"_pop_updated_issues_count":221,"_pop_closed_issues_count":185,"_pop_created_since_days":6,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":221.0,"_pop_comment_count":334.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":45.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/farama-foundation/gymnasium/master/README.md","_readme_localurl":"farama-foundation~gymnasium~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/farama-foundation/gymnasium/master/setup.py","https://raw.githubusercontent.com/farama-foundation/gymnasium/master/pyproject.toml"],"_requirements_localurls":["farama-foundation~gymnasium~setup.py","farama-foundation~gymnasium~pyproject.toml"]},{"index":498,"category":"ml-dl","githuburl":"https://github.com/vt-vl-lab/fgvc","featured":null,"links":null,"description":null,"_repopath":"vt-vl-lab/fgvc","_reponame":"FGVC","_stars":1482,"_forks":244,"_watches":68,"_language":"Python","_homepage":null,"_description":"FGVC: [ECCV 2020] Flow-edge Guided Video Completion ","_organization":"vt-vl-lab","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2020-09-09T00:00:00.000Z","_age_weeks":128,"_stars_per_week":11.58,"_topics":[],"_last_commit_date":"2021-12-14T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["Korbpw","gaochen315@meta","jbhuang0604@virginiatech"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["meta","virginiatech"],"_pop_contributor_orgs_raw":["Meta","Virginia Tech"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":30,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":11.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vt-vl-lab/fgvc/master/README.md","_readme_localurl":"vt-vl-lab~fgvc~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":372,"category":"gis","githuburl":"https://github.com/microsoft/torchgeo","featured":null,"links":null,"description":null,"_repopath":"microsoft/torchgeo","_reponame":"torchgeo","_stars":1462,"_forks":171,"_watches":39,"_language":"Python","_homepage":"https://torchgeo.rtfd.io","_description":"TorchGeo: datasets, samplers, transforms, and pre-trained models for geospatial data","_organization":"microsoft","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-05-21T00:00:00.000Z","_age_weeks":91,"_stars_per_week":15.94,"_topics":["pytorch","torchvision","datasets","models","transforms","remote-sensing","deep-learning","earth-observation"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":34,"_pop_contributor_logins":["MATRIX4284","RitwikGupta@ucberkeley","adamjstewart@universityofillinoisaturbana-champaign","ashnair1","calebrob6@microsoft","dependabot[bot]","iejMac@stabilityai","isaaccorley@dronebase","nilsleh","remtav@nrcan"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["dronebase","microsoft","nrcan","stabilityai","ucberkeley","universityofillinoisaturbana-champaign"],"_pop_contributor_orgs_raw":["@NRCan ","DroneBase","Microsoft","StabilityAI","UC Berkeley","University of Illinois at Urbana-Champaign"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.77,"_pop_updated_issues_count":298,"_pop_closed_issues_count":244,"_pop_created_since_days":21,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":298.0,"_pop_comment_count":467.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":45.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/torchgeo/master/README.md","_readme_localurl":"microsoft~torchgeo~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/torchgeo/master/pyproject.toml"],"_requirements_localurls":["microsoft~torchgeo~pyproject.toml"]},{"index":324,"category":"security","githuburl":"https://github.com/pyupio/safety","featured":null,"links":null,"description":null,"_repopath":"pyupio/safety","_reponame":"safety","_stars":1460,"_forks":124,"_watches":31,"_language":"Python","_homepage":"https://pyup.io/safety/","_description":"Safety checks Python dependencies for known security vulnerabilities and suggests the proper remediations for vulnerabilities detected.","_organization":"pyupio","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-10-19T00:00:00.000Z","_age_weeks":331,"_stars_per_week":4.41,"_topics":["python","security","security-vulnerability","travis","vulnerability-scanners","vulnerability-detection"],"_last_commit_date":"2022-12-08T00:00:00.000Z","_pop_contributor_count":40,"_pop_contributor_logins":["Jwomers@pyupio","cb22@roomsh","chowmean@practoolacabslearnstepsletusdevops","jayfk","lesleycla@pyupio","mgedmin@programmersofvilnius","nicholasks@syncsketch","pyup-bot@pyupio","rafaelpivato","yeisonvargasf@pyupio"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["practoolacabslearnstepsletusdevops","programmersofvilnius","pyupio","roomsh","syncsketch"],"_pop_contributor_orgs_raw":["@practo @olacabs @learnsteps @letusdevops","@pyupio","@pyupio ","@roomsh ","Programmers of Vilnius","SyncSketch"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.06,"_pop_updated_issues_count":41,"_pop_closed_issues_count":30,"_pop_created_since_days":77,"_pop_updated_since_days":2,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":41.0,"_pop_comment_count":39.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":41.28,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyupio/safety/master/README.md","_readme_localurl":"pyupio~safety~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyupio/safety/master/pyproject.toml"],"_requirements_localurls":["pyupio~safety~pyproject.toml"]},{"index":298,"category":"crypto","githuburl":"https://github.com/blankly-finance/blankly","featured":null,"links":null,"description":null,"_repopath":"blankly-finance/blankly","_reponame":"blankly","_stars":1458,"_forks":192,"_watches":29,"_language":"Python","_homepage":"https://package.blankly.finance","_description":"blankly: \ud83d\ude80 \ud83d\udcb8 Easily build, backtest and deploy your algo in just a few lines of code. Trade stocks, cryptos, and forex across exchanges w/ one package.","_organization":"blankly-finance","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-03-09T00:00:00.000Z","_age_weeks":102,"_stars_per_week":14.27,"_topics":["cryptocurrency","bot-framework","investment","bots","bot","coinbase","binance","blankly","stocks","platform","framework","trading","trading-bot","trading-strategies","python","crypto","algotrading"],"_last_commit_date":"2023-02-02T00:00:00.000Z","_pop_contributor_count":16,"_pop_contributor_logins":["AlgoQ@algoq","Aryan34","AydinGokce","EmersonDove@student","arun-annamalai@amazonwebservices","bfan1256","jkalish14","jordibeen@develeopardscheck-mobility","mehta-avi","qmatias@open-shade"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["algoq","amazonwebservices","develeopardscheck-mobility","open-shade","student"],"_pop_contributor_orgs_raw":["@Develeopards @check-mobility ","@open-shade ","AlgoQ","Amazon Web Services","Student"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.21,"_pop_updated_issues_count":16,"_pop_closed_issues_count":5,"_pop_created_since_days":24,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":16.0,"_pop_comment_count":36.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":37.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/blankly-finance/blankly/master/README.md","_readme_localurl":"blankly-finance~blankly~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/blankly-finance/blankly/master/setup.py"],"_requirements_localurls":["blankly-finance~blankly~setup.py"]},{"index":977,"category":"ml","githuburl":"https://github.com/lucidrains/musiclm-pytorch","featured":1.0,"links":null,"description":null,"_repopath":"lucidrains/musiclm-pytorch","_reponame":"musiclm-pytorch","_stars":1458,"_forks":91,"_watches":71,"_language":"Python","_homepage":"","_description":"musiclm-pytorch: Implementation of MusicLM, Google's new SOTA model for music generation using attention networks, in Pytorch","_organization":"lucidrains","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2023-01-27T00:00:00.000Z","_age_weeks":3,"_stars_per_week":392.54,"_topics":["artificial-intelligence","attention-mechanisms","deep-learning","music-synthesis","transformers"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["lucidrains"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.06,"_pop_updated_issues_count":22,"_pop_closed_issues_count":20,"_pop_created_since_days":1,"_pop_updated_since_days":0,"_pop_recent_releases_count":25,"_pop_recent_releases_estimated_tags":304,"_pop_recent_releases_adjusted_count":25,"_pop_issue_count":22.0,"_pop_comment_count":110.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":5.0,"_pop_dependents_count":0,"_pop_score":22.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lucidrains/musiclm-pytorch/master/README.md","_readme_localurl":"lucidrains~musiclm-pytorch~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lucidrains/musiclm-pytorch/master/setup.py"],"_requirements_localurls":["lucidrains~musiclm-pytorch~setup.py"]},{"index":861,"category":"jupyter","githuburl":"https://github.com/jupyter/nbconvert","featured":null,"links":null,"description":null,"_repopath":"jupyter/nbconvert","_reponame":"nbconvert","_stars":1446,"_forks":512,"_watches":51,"_language":"Python","_homepage":"https://nbconvert.readthedocs.io/","_description":"nbconvert: Jupyter Notebook Conversion","_organization":"jupyter","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":410,"_stars_per_week":3.52,"_topics":[],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":256,"_pop_contributor_logins":["Carreau@quansight-labs","MSeal@noteable-io","SylvainCorlay@quantstack","blink1073@mongodb","damianavila","jdfreder@google","jhamrick","minrk@simularesearchlaboratory","mpacer@netflix","takluyver"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","mongodb","netflix","noteable-io","quansight-labs","quantstack","simularesearchlaboratory"],"_pop_contributor_orgs_raw":["@Quansight-Labs","@google ","@noteable-io","MongoDB","Netflix","QuantStack","Simula Research Laboratory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.0,"_pop_updated_issues_count":69,"_pop_closed_issues_count":28,"_pop_created_since_days":96,"_pop_updated_since_days":0,"_pop_recent_releases_count":21,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":21,"_pop_issue_count":69.0,"_pop_comment_count":85.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":53.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/nbconvert/master/README.md","_readme_localurl":"jupyter~nbconvert~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/nbconvert/master/pyproject.toml"],"_requirements_localurls":["jupyter~nbconvert~pyproject.toml"]},{"index":949,"category":"nlp","githuburl":"https://github.com/alibaba/easynlp","featured":null,"links":null,"description":null,"_repopath":"alibaba/easynlp","_reponame":"EasyNLP","_stars":1442,"_forks":178,"_watches":31,"_language":"Python","_homepage":"","_description":"EasyNLP: A Comprehensive and Easy-to-use NLP Toolkit","_organization":"alibaba","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-04-06T00:00:00.000Z","_age_weeks":46,"_stars_per_week":31.35,"_topics":["transformers","bert","nlp","pretrained-models","deep-learning","pytorch","fewshot-learning","knowledge-distillation","knowledge-pretraining","text-image-retrieval","text-to-image-synthesis","machine-learning","text-classification","transfer-learning"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":33,"_pop_contributor_logins":["Chen9154","LZYSaltedFish","Longpai@cqu","chywang","deplay","lwmlyy@shanghaiuniversityoffinanceandeconomics","minghui@alibabagroup","ttliu-kiwi@daseecnu","wjn1996@http://www.wjn1996.cn","zhuxiangru"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["alibabagroup","cqu","daseecnu","http://www.wjn1996.cn","shanghaiuniversityoffinanceandeconomics"],"_pop_contributor_orgs_raw":["Alibaba Group","CQU","Dase@Ecnu","Shanghai University of Finance and Economics","http://www.wjn1996.cn"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.25,"_pop_updated_issues_count":52,"_pop_closed_issues_count":40,"_pop_created_since_days":11,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":52.0,"_pop_comment_count":41.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":37.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alibaba/easynlp/master/README.md","_readme_localurl":"alibaba~easynlp~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/alibaba/easynlp/master/requirements.txt","https://raw.githubusercontent.com/alibaba/easynlp/master/setup.py"],"_requirements_localurls":["alibaba~easynlp~requirements.txt","alibaba~easynlp~setup.py"]},{"index":638,"category":"perf","githuburl":"https://github.com/dask/distributed","featured":null,"links":null,"description":null,"_repopath":"dask/distributed","_reponame":"distributed","_stars":1440,"_forks":674,"_watches":58,"_language":"Python","_homepage":"https://distributed.dask.org","_description":"distributed: A distributed task scheduler for Dask","_organization":"dask","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2015-09-13T00:00:00.000Z","_age_weeks":388,"_stars_per_week":3.71,"_topics":["pydata","dask","distributed-computing","python","hacktoberfest"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":306,"_pop_contributor_logins":["crusaderky","fjetter@coiled","gjoseph92@coiled","graingert","hendrikmakait@coiled","jacobtomlinson@nvidia","jakirkham","jrbourbeau@coiled","mrocklin@coiled","pitrou"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["coiled","nvidia"],"_pop_contributor_orgs_raw":["@coiled","@coiled ","@nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.63,"_pop_updated_issues_count":297,"_pop_closed_issues_count":171,"_pop_created_since_days":91,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":26,"_pop_issue_count":297.0,"_pop_comment_count":809.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":0,"_pop_score":55.91,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dask/distributed/master/README.rst","_readme_localurl":"dask~distributed~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dask/distributed/master/requirements.txt","https://raw.githubusercontent.com/dask/distributed/master/setup.py"],"_requirements_localurls":["dask~distributed~requirements.txt","dask~distributed~setup.py"]},{"index":429,"category":"jupyter","githuburl":"https://github.com/jupyter-lsp/jupyterlab-lsp","featured":null,"links":null,"description":null,"_repopath":"jupyter-lsp/jupyterlab-lsp","_reponame":"jupyterlab-lsp","_stars":1428,"_forks":118,"_watches":17,"_language":"TypeScript","_homepage":"","_description":"jupyterlab-lsp: Coding assistance for JupyterLab (code navigation + hover suggestions + linters + autocompletion + rename) using Language Server Protocol","_organization":"jupyter-lsp","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-08-17T00:00:00.000Z","_age_weeks":183,"_stars_per_week":7.78,"_topics":["jupyterlab","jupyterlab-extension","language-server-protocol","jupyter-lab","lsp","linter","jupyter","jupyter-notebook","notebook","notebook-jupyter","ipython","autocompletion","julia-language","r"],"_last_commit_date":"2023-01-02T00:00:00.000Z","_pop_contributor_count":46,"_pop_contributor_logins":["Carreau@quansight-labs","JessicaBarh","bollwyvl","dependabot[bot]","fcollonval@quantstack","jtpio@quantstack","karlaspuldaro@ibm-codait","krassowski@universityofoxford|quansight","martinRenou@quantstack","trajamsmith@google"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","ibm-codait","quansight-labs","quantstack","universityofoxford|quansight"],"_pop_contributor_orgs_raw":["@Quansight-Labs","@QuantStack","Google","IBM - CODAIT","University of Oxford | Quansight"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.19,"_pop_updated_issues_count":46,"_pop_closed_issues_count":23,"_pop_created_since_days":43,"_pop_updated_since_days":2,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":46.0,"_pop_comment_count":77.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":39.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter-lsp/jupyterlab-lsp/master/README.md","_readme_localurl":"jupyter-lsp~jupyterlab-lsp~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":108,"category":"util","githuburl":"https://github.com/nficano/python-lambda","featured":null,"links":null,"description":null,"_repopath":"nficano/python-lambda","_reponame":"python-lambda","_stars":1427,"_forks":228,"_watches":32,"_language":"Python","_homepage":"","_description":"python-lambda: A toolkit for developing and deploying serverless Python code in AWS Lambda. ","_organization":"nficano","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-02-26T00:00:00.000Z","_age_weeks":364,"_stars_per_week":3.91,"_topics":["python","aws","aws-lambda","microservices","serverless"],"_last_commit_date":"2022-06-03T00:00:00.000Z","_pop_contributor_count":48,"_pop_contributor_logins":["asaolabs","dependabot-preview[bot]","gmyers-amfam@amfamlabs","jmeekhof@charliehealth","loide","mwbenowitz","nficano","rishabh-bhargava@stanforduniversity","slapula","soapergem@gemovationlabs"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amfamlabs","charliehealth","gemovationlabs","stanforduniversity"],"_pop_contributor_orgs_raw":["@AmFamLabs ","Charlie Health","Gemovation Labs, LLC","Stanford University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":85,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":3.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":28.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nficano/python-lambda/master/README.md","_readme_localurl":"nficano~python-lambda~README.md","_requirements_filenames":["setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/nficano/python-lambda/master/setup.py","https://raw.githubusercontent.com/nficano/python-lambda/master/Pipfile"],"_requirements_localurls":["nficano~python-lambda~setup.py","nficano~python-lambda~Pipfile"]},{"index":721,"category":"util","githuburl":"https://github.com/omry/omegaconf","featured":null,"links":null,"description":null,"_repopath":"omry/omegaconf","_reponame":"omegaconf","_stars":1405,"_forks":74,"_watches":16,"_language":"Python","_homepage":"","_description":"omegaconf: Flexible Python configuration system. The last one you will ever need.","_organization":"omry","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-09-03T00:00:00.000Z","_age_weeks":233,"_stars_per_week":6.02,"_topics":["python","yaml","yaml-configuration","configuration-files","configuration-loader","python-types","schema-validator"],"_last_commit_date":"2022-12-20T00:00:00.000Z","_pop_contributor_count":28,"_pop_contributor_logins":["Jasha10","anthonytec2@upenn","jgehring@facebookairesearch","kfollesdal","maresb@m\u00b2hycongmbh","odelalleau","omry@facebookairesearch","pereman2@ibmceph","pixelb@facebook","sugatoray@universityofwisconsin-milwaukee"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook","facebookairesearch","ibmceph","m\u00b2hycongmbh","universityofwisconsin-milwaukee","upenn"],"_pop_contributor_orgs_raw":["@facebook","@ibm @ceph","@upenn","Facebook AI Research","University of Wisconsin - Milwaukee","m\u00b2hycon GmbH"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.06,"_pop_updated_issues_count":34,"_pop_closed_issues_count":18,"_pop_created_since_days":54,"_pop_updated_since_days":2,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":34.0,"_pop_comment_count":75.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":40.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/omry/omegaconf/master/README.md","_readme_localurl":"omry~omegaconf~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/omry/omegaconf/master/setup.py","https://raw.githubusercontent.com/omry/omegaconf/master/pyproject.toml"],"_requirements_localurls":["omry~omegaconf~setup.py","omry~omegaconf~pyproject.toml"]},{"index":317,"category":"gamedev","githuburl":"https://github.com/pyglet/pyglet","featured":null,"links":null,"description":null,"_repopath":"pyglet/pyglet","_reponame":"pyglet","_stars":1402,"_forks":252,"_watches":32,"_language":"Python","_homepage":"http://pyglet.org","_description":"pyglet is a cross-platform windowing and multimedia library for Python, for developing games and other visually rich applications.","_organization":"pyglet","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2019-06-09T00:00:00.000Z","_age_weeks":193,"_stars_per_week":7.25,"_topics":["pyglet","python","opengl","gamedev","scientific-visualization"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":143,"_pop_contributor_logins":["aholkner","andy-5","benmoran56","caffeinepills","dangillet","einarf@zetta.io","phillip-nguyen","reidrac@itv","silvester747@tomtom-international","techtonik"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["itv","tomtom-international","zetta.io"],"_pop_contributor_orgs_raw":["@ITV ","@tomtom-international","Zetta.IO"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.92,"_pop_updated_issues_count":79,"_pop_closed_issues_count":54,"_pop_created_since_days":45,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":79.0,"_pop_comment_count":193.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":48.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyglet/pyglet/master/README.md","_readme_localurl":"pyglet~pyglet~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyglet/pyglet/master/setup.py"],"_requirements_localurls":["pyglet~pyglet~setup.py"]},{"index":149,"category":"data","githuburl":"https://github.com/simple-salesforce/simple-salesforce","featured":null,"links":null,"description":null,"_repopath":"simple-salesforce/simple-salesforce","_reponame":"simple-salesforce","_stars":1397,"_forks":614,"_watches":89,"_language":"Python","_homepage":null,"_description":"simple-salesforce: A very simple Salesforce.com REST API client for Python","_organization":"simple-salesforce","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2013-01-17T00:00:00.000Z","_age_weeks":526,"_stars_per_week":2.65,"_topics":["salesforce","api","api-client","python"],"_last_commit_date":"2023-01-18T00:00:00.000Z","_pop_contributor_count":75,"_pop_contributor_logins":["andscoop","demianbrecht@salesforce","fr-anthony","hello-josh","jasonschroeder-sfdc@salesforce","jon-wobken","llazzaro@:+1:","nickcatal","scottpersinger@tatari","shawalli"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[":+1:","salesforce","tatari"],"_pop_contributor_orgs_raw":[":+1: ","@salesforce","@salesforce ","Tatari"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.23,"_pop_updated_issues_count":54,"_pop_closed_issues_count":30,"_pop_created_since_days":123,"_pop_updated_since_days":1,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":54.0,"_pop_comment_count":37.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":39.77,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/simple-salesforce/simple-salesforce/master/README.rst","_readme_localurl":"simple-salesforce~simple-salesforce~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/simple-salesforce/simple-salesforce/master/setup.py"],"_requirements_localurls":["simple-salesforce~simple-salesforce~setup.py"]},{"index":318,"category":"gamedev","githuburl":"https://github.com/pythonarcade/arcade","featured":1.0,"links":null,"description":null,"_repopath":"pythonarcade/arcade","_reponame":"arcade","_stars":1395,"_forks":263,"_watches":56,"_language":"Python","_homepage":"http://arcade.academy","_description":"arcade: Easy to use Python library for creating 2D arcade games.","_organization":"pythonarcade","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2016-01-04T00:00:00.000Z","_age_weeks":372,"_stars_per_week":3.75,"_topics":["python3","python","arcade-framework","arcade-api","arcade-learning-environment","opengl","educational-technology","educational-resources"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":137,"_pop_contributor_logins":["Cleptomania","SirGnip","chpurdy","dangillet","einarf@zetta.io","eruvanos@vw-dilab","janscas","pauleveritt@jetbrains","pushfoo@freelance,opentofull-time","pvcraven@optimizely"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["freelance,opentofull-time","jetbrains","optimizely","vw-dilab","zetta.io"],"_pop_contributor_orgs_raw":["@vw-dilab ","Freelance, open to full-time","JetBrains","Optimizely","Zetta.IO"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.06,"_pop_updated_issues_count":213,"_pop_closed_issues_count":173,"_pop_created_since_days":87,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":213.0,"_pop_comment_count":246.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":53.98,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pythonarcade/arcade/master/README.rst","_readme_localurl":"pythonarcade~arcade~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pythonarcade/arcade/master/requirements.txt","https://raw.githubusercontent.com/pythonarcade/arcade/master/setup.py"],"_requirements_localurls":["pythonarcade~arcade~requirements.txt","pythonarcade~arcade~setup.py"]},{"index":613,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-cov","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-cov","_reponame":"pytest-cov","_stars":1391,"_forks":191,"_watches":34,"_language":"Python","_homepage":"","_description":"pytest-cov: Coverage plugin for pytest.","_organization":"pytest-dev","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2014-04-17T00:00:00.000Z","_age_weeks":461,"_stars_per_week":3.01,"_topics":["pytest","python"],"_last_commit_date":"2022-12-03T00:00:00.000Z","_pop_contributor_count":81,"_pop_contributor_logins":["blueyed@freelancer,upforhire","davidszotten","graingert","hugovk@nordsoftware","ionelmc","nedbat","nicoddemus@esss","pre-commit-ci[bot]","schlamar","wolph"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["esss","freelancer,upforhire","nordsoftware"],"_pop_contributor_orgs_raw":["ESSS","Freelancer, up for hire","Nord Software"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.62,"_pop_updated_issues_count":32,"_pop_closed_issues_count":13,"_pop_created_since_days":108,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":32.0,"_pop_comment_count":78.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":40.53,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-cov/master/README.rst","_readme_localurl":"pytest-dev~pytest-cov~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-cov/master/setup.py"],"_requirements_localurls":["pytest-dev~pytest-cov~setup.py"]},{"index":284,"category":"data","githuburl":"https://github.com/sdispater/orator","featured":null,"links":null,"description":null,"_repopath":"sdispater/orator","_reponame":"orator","_stars":1385,"_forks":164,"_watches":46,"_language":"Python","_homepage":"https://orator-orm.com","_description":"orator: The Orator ORM provides a simple yet beautiful ActiveRecord implementation.","_organization":"sdispater","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-05-24T00:00:00.000Z","_age_weeks":404,"_stars_per_week":3.42,"_topics":["python","orm","database"],"_last_commit_date":"2022-03-13T00:00:00.000Z","_pop_contributor_count":32,"_pop_contributor_logins":["ArthurYdalgo","BrandonShar@ezcater","cselmer","denislins","ihumanable","jiahut","josephmancuso@masoniteframework","scorphus@gitlab","sdispater","vaibhavmule@polymerize"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ezcater","gitlab","masoniteframework","polymerize"],"_pop_contributor_orgs_raw":["@GitLab","@MasoniteFramework ","@Polymerize ","ezCater"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":94,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":27.42,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sdispater/orator/master/README.rst","_readme_localurl":"sdispater~orator~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sdispater/orator/master/pyproject.toml"],"_requirements_localurls":["sdispater~orator~pyproject.toml"]},{"index":267,"category":"nlp","githuburl":"https://github.com/arxiv-vanity/arxiv-vanity","featured":null,"links":null,"description":null,"_repopath":"arxiv-vanity/arxiv-vanity","_reponame":"arxiv-vanity","_stars":1384,"_forks":89,"_watches":22,"_language":"Python","_homepage":"https://www.arxiv-vanity.com","_description":"arxiv-vanity: Renders papers from arXiv as responsive web pages so you don't have to squint at a PDF.","_organization":"arxiv-vanity","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2017-08-12T00:00:00.000Z","_age_weeks":288,"_stars_per_week":4.8,"_topics":["latex","academic-publishing","science","arxiv"],"_last_commit_date":"2022-01-18T00:00:00.000Z","_pop_contributor_count":9,"_pop_contributor_logins":["ImgBotApp@imgbot","bfirsh@replicate","dependabot-preview[bot]","dependabot-support","dependabot[bot]","jai-deepsource@deepsourcelabs","jkukul","ryota-mo"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["deepsourcelabs","imgbot","replicate"],"_pop_contributor_orgs_raw":["@deepsourcelabs ","@replicate","Imgbot"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":20,"_pop_closed_issues_count":8,"_pop_created_since_days":67,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":20.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":22.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/arxiv-vanity/arxiv-vanity/master/README.md","_readme_localurl":"arxiv-vanity~arxiv-vanity~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/arxiv-vanity/arxiv-vanity/master/requirements.txt"],"_requirements_localurls":["arxiv-vanity~arxiv-vanity~requirements.txt"]},{"index":766,"category":"diffusion","githuburl":"https://github.com/divamgupta/stable-diffusion-tensorflow","featured":null,"links":null,"description":null,"_repopath":"divamgupta/stable-diffusion-tensorflow","_reponame":"stable-diffusion-tensorflow","_stars":1371,"_forks":192,"_watches":22,"_language":"Python","_homepage":"","_description":"stable-diffusion-tensorflow: Stable Diffusion in TensorFlow / Keras","_organization":"divamgupta","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-09-15T00:00:00.000Z","_age_weeks":22,"_stars_per_week":59.98,"_topics":[],"_last_commit_date":"2022-11-22T00:00:00.000Z","_pop_contributor_count":13,"_pop_contributor_logins":["AK391@huggingface","Lime-Cakes","PabloRosales","ShaunXZ","adietrichs","alexgann","costiash","divamgupta","fchollet","virtualramblas"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["huggingface"],"_pop_contributor_orgs_raw":["Huggingface"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.79,"_pop_updated_issues_count":11,"_pop_closed_issues_count":1,"_pop_created_since_days":5,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":11.0,"_pop_comment_count":21.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":20.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/divamgupta/stable-diffusion-tensorflow/master/README.md","_readme_localurl":"divamgupta~stable-diffusion-tensorflow~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/divamgupta/stable-diffusion-tensorflow/master/requirements.txt","https://raw.githubusercontent.com/divamgupta/stable-diffusion-tensorflow/master/setup.py"],"_requirements_localurls":["divamgupta~stable-diffusion-tensorflow~requirements.txt","divamgupta~stable-diffusion-tensorflow~setup.py"]},{"index":478,"category":"ml-dl","githuburl":"https://github.com/tensorflow/mesh","featured":null,"links":null,"description":null,"_repopath":"tensorflow/mesh","_reponame":"mesh","_stars":1370,"_forks":240,"_watches":47,"_language":"Python","_homepage":"","_description":"Mesh TensorFlow: Model Parallelism Made Easier","_organization":"tensorflow","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-09-20T00:00:00.000Z","_age_weeks":230,"_stars_per_week":5.93,"_topics":[],"_last_commit_date":"2023-01-25T00:00:00.000Z","_pop_contributor_count":49,"_pop_contributor_logins":["adarob@google","craffel@uncandhuggingface","dustinvtran@googlebrain","hwchung27","katelee168","mmatena","nfiedel@google","nshazeer","sharannarang","toponado-zz@google"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","googlebrain","uncandhuggingface"],"_pop_contributor_orgs_raw":["@Google","@google","Google","Google Brain","UNC and Hugging Face"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":54,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":27.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/mesh/master/README.md","_readme_localurl":"tensorflow~mesh~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorflow/mesh/master/setup.py"],"_requirements_localurls":["tensorflow~mesh~setup.py"]},{"index":659,"category":"ml","githuburl":"https://github.com/tensorly/tensorly","featured":null,"links":null,"description":null,"_repopath":"tensorly/tensorly","_reponame":"tensorly","_stars":1367,"_forks":267,"_watches":46,"_language":"Python","_homepage":"http://tensorly.org","_description":"TensorLy: Tensor Learning in Python.","_organization":"tensorly","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-10-21T00:00:00.000Z","_age_weeks":330,"_stars_per_week":4.13,"_topics":["machine-learning","tensor","decomposition","tensor-algebra","tensorly","tensor-learning","python","tensor-methods","pytorch","mxnet","jax","tensorflow","cupy","numpy","tensor-decomposition","tensor-factorization","tensor-regression","regression"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":59,"_pop_contributor_logins":["JeanKossaifi@nvidiaai","MarieRoald@simulametropolitan","aarmey@universityofcalifornia,losangeles","asmeurer@quansight","caglayantuna@inria","cyrillustan","merajhashemi","scopatz","taylorpatti","yngvem@bouvet"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bouvet","inria","nvidiaai","quansight","simulametropolitan","universityofcalifornia,losangeles"],"_pop_contributor_orgs_raw":["@Quansight ","Bouvet","INRIA","NVIDIA AI","Simula Metropolitan","University of California, Los Angeles"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.31,"_pop_updated_issues_count":50,"_pop_closed_issues_count":33,"_pop_created_since_days":77,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":50.0,"_pop_comment_count":104.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":45.87,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/tensorly/tensorly/master/README.rst","_readme_localurl":"tensorly~tensorly~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorly/tensorly/master/requirements.txt","https://raw.githubusercontent.com/tensorly/tensorly/master/setup.py"],"_requirements_localurls":["tensorly~tensorly~requirements.txt","tensorly~tensorly~setup.py"]},{"index":460,"category":"nlp","githuburl":"https://github.com/google-research/language","featured":null,"links":null,"description":null,"_repopath":"google-research/language","_reponame":"language","_stars":1363,"_forks":318,"_watches":64,"_language":"Python","_homepage":"https://ai.google/research/teams/language/","_description":"language: Shared repository for open-sourced projects from the Google AI Language team.","_organization":"google-research","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-10-16T00:00:00.000Z","_age_weeks":227,"_stars_per_week":6.0,"_topics":["natural-language-processing","machine-learning","research"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":10,"_pop_contributor_logins":["Harmon758","bdhingra","calberti","dhgarrette@googleresearch","djweiss@google","jhclark-google@google","kentonl@universityofwashington","manzilz","oja","slavpetrov"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","googleresearch","universityofwashington"],"_pop_contributor_orgs_raw":["Google","Google Research","University of Washington"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":53,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":5.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":25.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google-research/language/master/README.md","_readme_localurl":"google-research~language~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google-research/language/master/setup.py"],"_requirements_localurls":["google-research~language~setup.py"]},{"index":676,"category":"gis","githuburl":"https://github.com/apache/incubator-sedona","featured":null,"links":null,"description":null,"_repopath":"apache/incubator-sedona","_reponame":"sedona","_stars":1359,"_forks":558,"_watches":105,"_language":"Java","_homepage":"http://sedona.apache.org/","_description":"sedona: A cluster computing framework for processing large-scale geospatial data","_organization":"apache","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2015-04-24T00:00:00.000Z","_age_weeks":408,"_stars_per_week":3.33,"_topics":["cluster-computing","spatial-sql","geospatial","spatial-analysis","spatial-query","scala","java","python"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":93,"_pop_contributor_logins":["Imbruced","Kontinuation@wherobots","jiayuasu@wherobots","jinxuan@bloomberg","kanchanchy","mbasmanova","netanel246@upstreamsecurity","sekikn@nttdata","umartin","zongsizhang@grab"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bloomberg","grab","nttdata","upstreamsecurity","wherobots"],"_pop_contributor_orgs_raw":["Bloomberg","Grab","NTT DATA","Upstream Security ","Wherobots Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.27,"_pop_updated_issues_count":180,"_pop_closed_issues_count":176,"_pop_created_since_days":95,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":180.0,"_pop_comment_count":97.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":47.13,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apache/incubator-sedona/master/README.md","_readme_localurl":"apache~incubator-sedona~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":898,"category":"ml-ops","githuburl":"https://github.com/hi-primus/optimus","featured":null,"links":null,"description":null,"_repopath":"hi-primus/optimus","_reponame":"optimus","_stars":1338,"_forks":224,"_watches":42,"_language":"Python","_homepage":"https://hi-optimus.com","_description":"optimus: :truck: Agile Data Preparation Workflows made\u00a0easy with Pandas, Dask, cuDF, Dask-cuDF, Vaex and PySpark","_organization":"hi-primus","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2017-07-13T00:00:00.000Z","_age_weeks":292,"_stars_per_week":4.57,"_topics":["spark","pyspark","data-wrangling","bigdata","big-data-cleaning","data-science","data-cleansing","data-cleaner","data-transformation","machine-learning","data-profiling","data-extraction","data-exploration","data-analysis","data-preparation","cudf","dask","dask-cudf","data-cleaning"],"_last_commit_date":"2022-10-17T00:00:00.000Z","_pop_contributor_count":24,"_pop_contributor_logins":["FavioVazquez@life","Jarrioja@boitas","MrPowers","argenisleon@bumblebee","arpit1997@socialcopsdeviiitvatlanhq","dependabot[bot]","eschizoid","joseangelhernao","luis11011@bumblebee","pyup-bot@pyupio"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["boitas","bumblebee","life","pyupio","socialcopsdeviiitvatlanhq"],"_pop_contributor_orgs_raw":["@boitas","@pyupio","@socialcopsdev @iiitv @atlanhq","Bumblebee","Life"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.13,"_pop_updated_issues_count":11,"_pop_closed_issues_count":6,"_pop_created_since_days":68,"_pop_updated_since_days":4,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":23,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":11.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":35.3,"_readme_filename":"","_readme_giturl":"","_readme_localurl":"","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":338,"category":"perf","githuburl":"https://github.com/tlkh/asitop","featured":null,"links":null,"description":null,"_repopath":"tlkh/asitop","_reponame":"asitop","_stars":1334,"_forks":79,"_watches":19,"_language":"Python","_homepage":"https://tlkh.github.io/asitop/","_description":"asitop: Perf monitoring CLI tool for Apple Silicon","_organization":"tlkh","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-10-27T00:00:00.000Z","_age_weeks":69,"_stars_per_week":19.33,"_topics":["cpu","gpu","cli","macos","m1","apple-silicon"],"_last_commit_date":"2023-01-24T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["Lunar-ZZ","TienTim","ardacoskunses","iiSeymour@oxfordnanoporetechnologies","mend-bolt-for-github[bot]","paul-nameless","tlkh@singaporeuniversityoftechnologyanddesign"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["oxfordnanoporetechnologies","singaporeuniversityoftechnologyanddesign"],"_pop_contributor_orgs_raw":["Oxford Nanopore Technologies","Singapore University of Technology and Design"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":13,"_pop_closed_issues_count":2,"_pop_created_since_days":16,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":13.0,"_pop_comment_count":25.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":24.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tlkh/asitop/master/README.md","_readme_localurl":"tlkh~asitop~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tlkh/asitop/master/setup.py"],"_requirements_localurls":["tlkh~asitop~setup.py"]},{"index":450,"category":"gis","githuburl":"https://github.com/jupyter-widgets/ipyleaflet","featured":null,"links":null,"description":null,"_repopath":"jupyter-widgets/ipyleaflet","_reponame":"ipyleaflet","_stars":1331,"_forks":350,"_watches":61,"_language":"JavaScript","_homepage":"https://ipyleaflet.readthedocs.io","_description":"ipyleaflet: A Jupyter - Leaflet.js bridge","_organization":"jupyter-widgets","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2014-05-07T00:00:00.000Z","_age_weeks":459,"_stars_per_week":2.9,"_topics":["jupyterlab-extension","leaflet","visualization","jupyter"],"_last_commit_date":"2023-02-10T00:00:00.000Z","_pop_contributor_count":82,"_pop_contributor_logins":["HaudinFlorence@quantstack","SylvainCorlay@quantstack","VasavanThiru","davidbrochart@quantstack","dependabot[bot]","ellisonbg@amazonwebservices","fitoprincipe@ldc","jasongrout@databricks","martinRenou@quantstack","sackh"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazonwebservices","databricks","ldc","quantstack"],"_pop_contributor_orgs_raw":["@QuantStack","@databricks","Amazon Web Services","LDC","QuantStack"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.87,"_pop_updated_issues_count":34,"_pop_closed_issues_count":6,"_pop_created_since_days":107,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":34.0,"_pop_comment_count":43.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":43.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter-widgets/ipyleaflet/master/README.md","_readme_localurl":"jupyter-widgets~ipyleaflet~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter-widgets/ipyleaflet/master/setup.py","https://raw.githubusercontent.com/jupyter-widgets/ipyleaflet/master/pyproject.toml"],"_requirements_localurls":["jupyter-widgets~ipyleaflet~setup.py","jupyter-widgets~ipyleaflet~pyproject.toml"]},{"index":877,"category":"time-series","githuburl":"https://github.com/alkaline-ml/pmdarima","featured":null,"links":null,"description":null,"_repopath":"alkaline-ml/pmdarima","_reponame":"pmdarima","_stars":1324,"_forks":220,"_watches":36,"_language":"Python","_homepage":"https://www.alkaline-ml.com/pmdarima","_description":"pmdarima: A statistical library designed to fill the void in Python's time series analysis capabilities, including the equivalent of R's auto.arima function.","_organization":"alkaline-ml","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2017-03-30T00:00:00.000Z","_age_weeks":307,"_stars_per_week":4.3,"_topics":["arima","time-series","forecasting","forecasting-models","python","econometrics","pmdarima","machine-learning","sarimax"],"_last_commit_date":"2022-12-20T00:00:00.000Z","_pop_contributor_count":22,"_pop_contributor_logins":["aaronreidsmith@sevcosecurity","anne-decusatis","charlesdrotar@microsoft","chivalry@chivalrysoftware","christopher-siewert","felix-hilden","garyForeman","ryanrussell","telamonian@jpmorgan","tgsmith61591@toyota-connected"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["chivalrysoftware","jpmorgan","microsoft","sevcosecurity","toyota-connected"],"_pop_contributor_orgs_raw":["@toyota-connected ","Chivalry Software","JP Morgan","Microsoft","Sevco Security"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.4,"_pop_updated_issues_count":14,"_pop_closed_issues_count":6,"_pop_created_since_days":72,"_pop_updated_since_days":2,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":14.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":34.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alkaline-ml/pmdarima/master/README.md","_readme_localurl":"alkaline-ml~pmdarima~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/alkaline-ml/pmdarima/master/requirements.txt","https://raw.githubusercontent.com/alkaline-ml/pmdarima/master/setup.py"],"_requirements_localurls":["alkaline-ml~pmdarima~requirements.txt","alkaline-ml~pmdarima~setup.py"]},{"index":465,"category":"ml-dl","githuburl":"https://github.com/pytorch/torchrec","featured":null,"links":null,"description":null,"_repopath":"pytorch/torchrec","_reponame":"torchrec","_stars":1321,"_forks":226,"_watches":26,"_language":"Python","_homepage":"","_description":"torchrec: Pytorch domain library for recommendation systems","_organization":"pytorch","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-07-12T00:00:00.000Z","_age_weeks":84,"_stars_per_week":15.67,"_topics":["pytorch","gpu","deep-learning","cuda","recommender-system","recommendation-system","sharding"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":140,"_pop_contributor_logins":["RenfeiChen-FB","YLGH","YazhiGao@facebookai","colin2328@pytorch","facebook-github-bot@facebook","joshuadeng","s4ayub","samiwilf","xing-liu@facebookai","zyan0@meta"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook","facebookai","meta","pytorch"],"_pop_contributor_orgs_raw":["@facebook","@pytorch ","Facebook AI","Meta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.08,"_pop_updated_issues_count":244,"_pop_closed_issues_count":191,"_pop_created_since_days":20,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":231.0,"_pop_comment_count":565.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":49.15,"_readme_filename":"","_readme_giturl":"","_readme_localurl":"","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/torchrec/master/requirements.txt","https://raw.githubusercontent.com/pytorch/torchrec/master/setup.py","https://raw.githubusercontent.com/pytorch/torchrec/master/pyproject.toml"],"_requirements_localurls":["pytorch~torchrec~requirements.txt","pytorch~torchrec~setup.py","pytorch~torchrec~pyproject.toml"]},{"index":941,"category":"data","githuburl":"https://github.com/datastax/python-driver","featured":null,"links":null,"description":null,"_repopath":"datastax/python-driver","_reponame":"python-driver","_stars":1318,"_forks":510,"_watches":81,"_language":"Python","_homepage":"","_description":"python-driver: DataStax Python Driver for Apache Cassandra","_organization":"datastax","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2013-07-08T00:00:00.000Z","_age_weeks":502,"_stars_per_week":2.62,"_topics":[],"_last_commit_date":"2023-01-24T00:00:00.000Z","_pop_contributor_count":187,"_pop_contributor_logins":["GregBestland","TheRealFalcon@canonical","aboudreault@kovarogroup","aholmberg","bdeggleston@apple","beltran@google","joaquincasares@audiusproject","mambocab@rapid7","rustyrazorblade@apple","thobbs@anticlassicstudios"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anticlassicstudios","apple","audiusproject","canonical","google","kovarogroup","rapid7"],"_pop_contributor_orgs_raw":["@AudiusProject","Anticlassic Studios, LLC","Apple","Canonical","Google LLC","Kovaro Group","Rapid7"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.25,"_pop_updated_issues_count":8,"_pop_closed_issues_count":4,"_pop_created_since_days":117,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":8.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":45.84,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/datastax/python-driver/master/README.rst","_readme_localurl":"datastax~python-driver~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/datastax/python-driver/master/requirements.txt","https://raw.githubusercontent.com/datastax/python-driver/master/setup.py"],"_requirements_localurls":["datastax~python-driver~requirements.txt","datastax~python-driver~setup.py"]},{"index":885,"category":"time-series","githuburl":"https://github.com/aistream-peelout/flow-forecast","featured":null,"links":null,"description":null,"_repopath":"aistream-peelout/flow-forecast","_reponame":"flow-forecast","_stars":1317,"_forks":224,"_watches":21,"_language":"Python","_homepage":"https://flow-forecast.atlassian.net/wiki/spaces/FF/overview","_description":"flow-forecast: Deep learning PyTorch library for time series forecasting, classification, and anomaly detection (originally for flood forecasting).","_organization":"aistream-peelout","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2019-08-15T00:00:00.000Z","_age_weeks":183,"_stars_per_week":7.16,"_topics":["deep-learning","pytorch","time-series-forecasting","time-series","transfer-learning","deep-neural-networks","transformer","forecasting","lstm","time-series-regression","state-of-the-art-models","anomaly-detection","time-series-analysis","hacktoberfest"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":14,"_pop_contributor_logins":["97harsh","MaggieWYZW@bumbleinc","Pranjalya@deepsync-technologies","codeananda","dependabot-preview[bot]","dependabot[bot]","isaacmg","kritim13","michaelwang1994","wwymak"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bumbleinc","deepsync-technologies"],"_pop_contributor_orgs_raw":["@deepsync-technologies","Bumble Inc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.42,"_pop_updated_issues_count":28,"_pop_closed_issues_count":21,"_pop_created_since_days":43,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":28.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":35.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/README.md","_readme_localurl":"aistream-peelout~flow-forecast~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/requirements.txt","https://raw.githubusercontent.com/aistream-peelout/flow-forecast/master/setup.py"],"_requirements_localurls":["aistream-peelout~flow-forecast~requirements.txt","aistream-peelout~flow-forecast~setup.py"]},{"index":391,"category":"data","githuburl":"https://github.com/mchong6/jojogan","featured":null,"links":null,"description":null,"_repopath":"mchong6/jojogan","_reponame":"JoJoGAN","_stars":1300,"_forks":193,"_watches":25,"_language":"Jupyter Notebook","_homepage":"","_description":"Official PyTorch repo for JoJoGAN: One Shot Face Stylization","_organization":"mchong6","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2021-12-17T00:00:00.000Z","_age_weeks":61,"_stars_per_week":21.06,"_topics":["image-translation","gans","anime"],"_last_commit_date":"2022-02-05T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["AK391@huggingface","mchong6","vganapati"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["huggingface"],"_pop_contributor_orgs_raw":["Huggingface"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":6,"_pop_closed_issues_count":1,"_pop_created_since_days":14,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":6.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":10.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mchong6/jojogan/master/README.md","_readme_localurl":"mchong6~jojogan~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":514,"category":"data","githuburl":"https://github.com/agronholm/sqlacodegen","featured":null,"links":null,"description":null,"_repopath":"agronholm/sqlacodegen","_reponame":"sqlacodegen","_stars":1293,"_forks":200,"_watches":21,"_language":"Python","_homepage":"","_description":"sqlacodegen: Automatic model code generator for SQLAlchemy","_organization":"agronholm","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2016-12-28T00:00:00.000Z","_age_weeks":321,"_stars_per_week":4.03,"_topics":[],"_last_commit_date":"2022-11-23T00:00:00.000Z","_pop_contributor_count":16,"_pop_contributor_logins":["KhirilovA","agronholm@nextdaysolutionsoy","andrewcarretta","d10n","danohu","dhirschfeld","laurentS","leonarduschen","mzpqnxow@mzpqnxow","pre-commit-ci[bot]"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["mzpqnxow","nextdaysolutionsoy"],"_pop_contributor_orgs_raw":["MZPQNXOW, LLC","NextDay Solutions Oy"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.69,"_pop_updated_issues_count":16,"_pop_closed_issues_count":3,"_pop_created_since_days":75,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":16.0,"_pop_comment_count":55.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.4,"_pop_dependents_count":0,"_pop_score":33.01,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/agronholm/sqlacodegen/master/README.rst","_readme_localurl":"agronholm~sqlacodegen~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/agronholm/sqlacodegen/master/pyproject.toml"],"_requirements_localurls":["agronholm~sqlacodegen~pyproject.toml"]},{"index":435,"category":"data","githuburl":"https://github.com/sdv-dev/sdv","featured":null,"links":null,"description":null,"_repopath":"sdv-dev/sdv","_reponame":"SDV","_stars":1288,"_forks":206,"_watches":40,"_language":"Python","_homepage":"https://sdv.dev/SDV","_description":"SDV: Synthetic Data Generation for tabular, relational and time series data.","_organization":"sdv-dev","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-05-11T00:00:00.000Z","_age_weeks":249,"_stars_per_week":5.16,"_topics":["synthetic-data","machine-learning","relational-datasets","multi-table","time-series","synthetic-data-generation","sdv","data-generation","generative-adversarial-network","gan","gans","deep-learning","generative-ai","generative-model"],"_last_commit_date":"2023-01-24T00:00:00.000Z","_pop_contributor_count":41,"_pop_contributor_logins":["JDTheRipperPC","ManuelAlvarezC@precognit","amontanez24","csala@pythiac","fealho@datacebo","katxiao","kveerama@mit","npatki@datacebo","pvk-developer@sdv-dev","xamm@h&mgroup"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["datacebo","h&mgroup","mit","precognit","pythiac","sdv-dev"],"_pop_contributor_orgs_raw":["@datacebo","@precognit ","@pythiac ","@sdv-dev ","DataCebo","H&M Group","MIT"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.83,"_pop_updated_issues_count":189,"_pop_closed_issues_count":159,"_pop_created_since_days":58,"_pop_updated_since_days":1,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":189.0,"_pop_comment_count":198.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":44.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sdv-dev/sdv/master/README.md","_readme_localurl":"sdv-dev~sdv~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sdv-dev/sdv/master/requirements.txt","https://raw.githubusercontent.com/sdv-dev/sdv/master/setup.py"],"_requirements_localurls":["sdv-dev~sdv~requirements.txt","sdv-dev~sdv~setup.py"]},{"index":474,"category":"nlp","githuburl":"https://github.com/neuralmagic/deepsparse","featured":null,"links":null,"description":null,"_repopath":"neuralmagic/deepsparse","_reponame":"deepsparse","_stars":1273,"_forks":80,"_watches":40,"_language":"Python","_homepage":"","_description":"deepsparse: Inference runtime offering GPU-class performance on CPUs and APIs to integrate ML into your application","_organization":"neuralmagic","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-12-14T00:00:00.000Z","_age_weeks":114,"_stars_per_week":11.14,"_topics":["ml","machinelearning","pytorch","tensorflow","onnx","deepsparse-engine","sparsified-models","sparsification-recipe","inference","computer-vision","object-detection","pruning","quantization","pretrained-models","nlp","auto-ml","cpus","yolov3","sparsification","cpu-inference-api"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":31,"_pop_contributor_logins":["InquestGeronimo@neuralmagic","bfineran@neuralmagic","corey-nm","dbogunowicz","dhuangnm@neuralmagic","jeanniefinks@neuralmagic","kylesayrs","markurtz@neuralmagic","mgoin@neuralmagic","rahul-tuli@neuralmagic"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["neuralmagic"],"_pop_contributor_orgs_raw":["@neuralmagic","Neural Magic"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.31,"_pop_updated_issues_count":152,"_pop_closed_issues_count":139,"_pop_created_since_days":27,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":152.0,"_pop_comment_count":85.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":38.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/neuralmagic/deepsparse/master/README.md","_readme_localurl":"neuralmagic~deepsparse~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/neuralmagic/deepsparse/master/setup.py","https://raw.githubusercontent.com/neuralmagic/deepsparse/master/pyproject.toml"],"_requirements_localurls":["neuralmagic~deepsparse~setup.py","neuralmagic~deepsparse~pyproject.toml"]},{"index":178,"category":"nlp","githuburl":"https://github.com/explosion/spacy-models","featured":null,"links":null,"description":null,"_repopath":"explosion/spacy-models","_reponame":"spacy-models","_stars":1253,"_forks":282,"_watches":50,"_language":"Python","_homepage":"https://spacy.io","_description":"spacy-models: \ud83d\udcab Models for the spaCy Natural Language Processing (NLP) library","_organization":"explosion","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-03-14T00:00:00.000Z","_age_weeks":310,"_stars_per_week":4.04,"_topics":["spacy","nlp","natural-language-processing","machine-learning","models","machine-learning-models","statistical-models","spacy-models"],"_last_commit_date":"2023-01-23T00:00:00.000Z","_pop_contributor_count":14,"_pop_contributor_logins":["BreakBB@codecentric","adrianeboyd","davidefiocco@frontiersin","explosion-bot@explosion","honnibal@founderexplosion","ines@founderexplosion","kuk@alexanderkukushkindatasciencelaboratory","manojkumarvohra","maziyarpanahi@iscpifjohnsnowlabs","polm@cotonoha"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["alexanderkukushkindatasciencelaboratory","codecentric","cotonoha","explosion","founderexplosion","frontiersin","iscpifjohnsnowlabs"],"_pop_contributor_orgs_raw":["@ISCPIF @JohnSnowLabs","@codecentric","@explosion","@frontiersin","Alexander Kukushkin Data Science Laboratory","Cotonoha","Founder @explosion "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.1,"_pop_updated_issues_count":8,"_pop_closed_issues_count":8,"_pop_created_since_days":72,"_pop_updated_since_days":1,"_pop_recent_releases_count":246,"_pop_recent_releases_estimated_tags":138,"_pop_recent_releases_adjusted_count":246,"_pop_issue_count":8.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":38.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/spacy-models/master/README.md","_readme_localurl":"explosion~spacy-models~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":264,"category":"data","githuburl":"https://github.com/collerek/ormar","featured":null,"links":null,"description":null,"_repopath":"collerek/ormar","_reponame":"ormar","_stars":1249,"_forks":63,"_watches":16,"_language":"Python","_homepage":"https://collerek.github.io/ormar/","_description":"ormar: python async orm with fastapi in mind and pydantic validation","_organization":"collerek","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-08-02T00:00:00.000Z","_age_weeks":133,"_stars_per_week":9.36,"_topics":["orm","sqlalchemy","async-orm","python-orm","fastapi","pydantic","alembic","databases"],"_last_commit_date":"2023-01-29T00:00:00.000Z","_pop_contributor_count":30,"_pop_contributor_logins":["Abdeldjalil-H","EspenAlbert@wheel-me","ProgrammerPlus1998@\u91d1\u8272\u8d22\u7ecf","SepehrBazyar@gpsir","collerek@kaizentech","dependabot[bot]","johnthagen","mojixcoder@snapp-cab","ponytailer@leyantech","s3rius"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["gpsir","kaizentech","leyantech","snapp-cab","wheel-me","\u91d1\u8272\u8d22\u7ecf"],"_pop_contributor_orgs_raw":["@snapp-cab","@wheel-me ","GPSIR","KaizenTech","leyantech","\u91d1\u8272\u8d22\u7ecf"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.88,"_pop_updated_issues_count":75,"_pop_closed_issues_count":51,"_pop_created_since_days":31,"_pop_updated_since_days":1,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":30,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":75.0,"_pop_comment_count":77.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":41.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/collerek/ormar/master/README.md","_readme_localurl":"collerek~ormar~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/collerek/ormar/master/pyproject.toml"],"_requirements_localurls":["collerek~ormar~pyproject.toml"]},{"index":414,"category":"nlp","githuburl":"https://github.com/chrismattmann/tika-python","featured":null,"links":null,"description":null,"_repopath":"chrismattmann/tika-python","_reponame":"tika-python","_stars":1240,"_forks":224,"_watches":38,"_language":"Python","_homepage":"","_description":"Tika-Python is a Python binding to the Apache Tika\u2122 REST services allowing Tika to be called natively in the Python community.","_organization":"chrismattmann","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2014-06-26T00:00:00.000Z","_age_weeks":451,"_stars_per_week":2.74,"_topics":["tika-server","python","tika-python","tika-server-jar","parser-interface","parse","translation-interface","usc","text-extraction","mime","buffer","memex","text-recognition","detection","recognition","nlp","nlp-machine-learning","nlp-library","covid-19","extraction"],"_last_commit_date":"2023-01-22T00:00:00.000Z","_pop_contributor_count":68,"_pop_contributor_logins":["ACSC-CyberLab","Pehat","carantunes@cern","chrismattmann@nasa","dongnizh","igormp","jjelosua@elevenpaths","kdurril","matthewdavislee","yashtanna93@amzn"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amzn","cern","elevenpaths","nasa"],"_pop_contributor_orgs_raw":["@amzn","@cern","Elevenpaths","NASA"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.25,"_pop_updated_issues_count":92,"_pop_closed_issues_count":88,"_pop_created_since_days":105,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":92.0,"_pop_comment_count":75.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":40.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/chrismattmann/tika-python/master/README.md","_readme_localurl":"chrismattmann~tika-python~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/chrismattmann/tika-python/master/requirements.txt","https://raw.githubusercontent.com/chrismattmann/tika-python/master/setup.py"],"_requirements_localurls":["chrismattmann~tika-python~requirements.txt","chrismattmann~tika-python~setup.py"]},{"index":194,"category":"web","githuburl":"https://github.com/jordaneremieff/mangum","featured":null,"links":null,"description":null,"_repopath":"jordaneremieff/mangum","_reponame":"mangum","_stars":1216,"_forks":79,"_watches":16,"_language":"Python","_homepage":"https://mangum.io/","_description":"mangum: AWS Lambda support for ASGI applications","_organization":"jordaneremieff","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-01-14T00:00:00.000Z","_age_weeks":214,"_stars_per_week":5.67,"_topics":["asgi","aws","lambda","serverless","python","asyncio","api-gateway","starlette","fastapi","quart","django","sanic","aws-lambda","python3"],"_last_commit_date":"2022-11-27T00:00:00.000Z","_pop_contributor_count":29,"_pop_contributor_logins":["SKalt@resurety","allan-simon@rosaly","aminalaee","emcpow2","jordaneremieff","koxudaxi@tractabletractableai","lsorber","nathanglover@thewaltdisneycompany","simonw@datasette","zachmullen@kitware"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["datasette","kitware","resurety","rosaly","thewaltdisneycompany","tractabletractableai"],"_pop_contributor_orgs_raw":["@Kitware ","@REsurety","@Rosaly","Datasette","The Walt Disney Company","Tractable @tractableai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.35,"_pop_updated_issues_count":12,"_pop_closed_issues_count":7,"_pop_created_since_days":50,"_pop_updated_since_days":3,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":12.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":35.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jordaneremieff/mangum/master/README.md","_readme_localurl":"jordaneremieff~mangum~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jordaneremieff/mangum/master/requirements.txt","https://raw.githubusercontent.com/jordaneremieff/mangum/master/setup.py"],"_requirements_localurls":["jordaneremieff~mangum~requirements.txt","jordaneremieff~mangum~setup.py"]},{"index":566,"category":"gis","githuburl":"https://github.com/gboeing/osmnx-examples","featured":null,"links":null,"description":null,"_repopath":"gboeing/osmnx-examples","_reponame":"osmnx-examples","_stars":1215,"_forks":449,"_watches":54,"_language":"Jupyter Notebook","_homepage":"https://github.com/gboeing/osmnx","_description":"osmnx-examples: Usage examples, demos, and tutorials for OSMnx.","_organization":"gboeing","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2017-07-22T00:00:00.000Z","_age_weeks":291,"_stars_per_week":4.17,"_topics":["street-networks","binder","jupyter-notebook","notebooks","urban-planning","city","cities","openstreetmap","network-analysis","transport","transportation","accessibility","urban-data-science","urban-analytics","public-transport","python","transit","urban-design"],"_last_commit_date":"2023-01-01T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["gboeing@universityofsoutherncalifornia"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["universityofsoutherncalifornia"],"_pop_contributor_orgs_raw":["University of Southern California"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":4,"_pop_closed_issues_count":4,"_pop_created_since_days":68,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":4.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":20.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gboeing/osmnx-examples/master/README.md","_readme_localurl":"gboeing~osmnx-examples~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":720,"category":"math","githuburl":"https://github.com/facebookresearch/theseus","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/theseus","_reponame":"theseus","_stars":1214,"_forks":82,"_watches":28,"_language":"Python","_homepage":"","_description":"theseus: A library for differentiable nonlinear optimization","_organization":"facebookresearch","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2021-11-18T00:00:00.000Z","_age_weeks":65,"_stars_per_week":18.43,"_topics":["differentiable-optimization","robotics","embodied-ai","nonlinear-least-squares","pytorch","deep-learning","computer-vision","gauss-newton","levenberg-marquardt","implicit-differentiation","bilevel-optimization"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":19,"_pop_contributor_logins":["bamos@metaai(fair)","brentyi","cpaxton","exhaustin","fantaosha","jeffin07","joeaortiz","luisenp@facebookairesearchfacebookresearch","maurimo","mhmukadam@metaai"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebookairesearchfacebookresearch","metaai","metaai(fair)"],"_pop_contributor_orgs_raw":["Facebook AI Research @facebookresearch ","Meta AI","Meta AI (FAIR)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.15,"_pop_updated_issues_count":102,"_pop_closed_issues_count":76,"_pop_created_since_days":15,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":103.0,"_pop_comment_count":48.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":35.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/theseus/master/README.md","_readme_localurl":"facebookresearch~theseus~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/theseus/master/setup.py"],"_requirements_localurls":["facebookresearch~theseus~setup.py"]},{"index":916,"category":"math","githuburl":"https://github.com/google-research/torchsde","featured":null,"links":null,"description":null,"_repopath":"google-research/torchsde","_reponame":"torchsde","_stars":1213,"_forks":144,"_watches":33,"_language":"Python","_homepage":"","_description":"torchsde: Differentiable SDE solvers with GPU support and efficient sensitivity analysis. ","_organization":"google-research","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-07-06T00:00:00.000Z","_age_weeks":137,"_stars_per_week":8.84,"_topics":["deep-learning","deep-neural-networks","pytorch","dynamical-systems","differential-equations","stochastic-processes","stochastic-differential-equations","stochastic-volatility-models","neural-differential-equations"],"_last_commit_date":"2021-07-26T00:00:00.000Z","_pop_contributor_count":5,"_pop_contributor_logins":["dhirschfeld","lxuechen","mtsokol@bcg-gamma","patrick-kidger@googlex","ucalyptus"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bcg-gamma","googlex"],"_pop_contributor_orgs_raw":["@BCG-Gamma","Google X"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":6,"_pop_closed_issues_count":2,"_pop_created_since_days":32,"_pop_updated_since_days":19,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":6.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":17.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google-research/torchsde/master/README.md","_readme_localurl":"google-research~torchsde~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/google-research/torchsde/master/setup.py","https://raw.githubusercontent.com/google-research/torchsde/master/pyproject.toml"],"_requirements_localurls":["google-research~torchsde~setup.py","google-research~torchsde~pyproject.toml"]},{"index":162,"category":"nlp","githuburl":"https://github.com/explosion/spacy-transformers","featured":null,"links":null,"description":null,"_repopath":"explosion/spacy-transformers","_reponame":"spacy-transformers","_stars":1209,"_forks":155,"_watches":30,"_language":"Python","_homepage":"https://spacy.io/usage/embeddings-transformers","_description":"spacy-transformers: \ud83d\udef8 Use pretrained transformers like BERT, XLNet and GPT-2 in spaCy","_organization":"explosion","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-07-26T00:00:00.000Z","_age_weeks":186,"_stars_per_week":6.48,"_topics":["spacy","spacy-pipeline","spacy-extension","nlp","natural-language-processing","natural-language-understanding","pytorch","bert","google","pytorch-model","openai","language-model","machine-learning","huggingface","transfer-learning","xlnet","gpt-2"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":20,"_pop_contributor_logins":["KennethEnevoldsen@centerforhumanitiescomputingaarhus","adrianeboyd","bryant1410@michigannlp","danieldk@explosion","honnibal@founderexplosion","ines@founderexplosion","ryndaniels","shadeMe","svlandeg@explosion&oxykodit","tamuhey@indeedeng"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["centerforhumanitiescomputingaarhus","explosion","explosion&oxykodit","founderexplosion","indeedeng","michigannlp"],"_pop_contributor_orgs_raw":["@MichiganNLP","@explosion ","@indeedeng","Center for Humanities Computing Aarhus","Explosion & OxyKodit","Founder @explosion "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.81,"_pop_updated_issues_count":21,"_pop_closed_issues_count":19,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":21.0,"_pop_comment_count":21.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":39.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/spacy-transformers/master/README.md","_readme_localurl":"explosion~spacy-transformers~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/explosion/spacy-transformers/master/requirements.txt","https://raw.githubusercontent.com/explosion/spacy-transformers/master/setup.py","https://raw.githubusercontent.com/explosion/spacy-transformers/master/pyproject.toml"],"_requirements_localurls":["explosion~spacy-transformers~requirements.txt","explosion~spacy-transformers~setup.py","explosion~spacy-transformers~pyproject.toml"]},{"index":304,"category":"nlp","githuburl":"https://github.com/featureform/embeddinghub","featured":null,"links":null,"description":null,"_repopath":"featureform/embeddinghub","_reponame":"featureform","_stars":1205,"_forks":46,"_watches":13,"_language":"Go","_homepage":"https://www.featureform.com","_description":"featureform: The Virtual Feature Store. Turn your existing data infrastructure into a feature store.","_organization":"featureform","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-10-16T00:00:00.000Z","_age_weeks":122,"_stars_per_week":9.82,"_topics":["machine-learning","data-science","vector-database","embeddings-similarity","embeddings","hacktoberfest","feature-store","mlops","data-quality","feature-engineering","ml","python"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":20,"_pop_contributor_logins":["RiddhiBagadiaa","Sami1309","ahmadnazeri","antony-eng","ksshiraja","saadhvi27","sdreyer","shabbyjoon","simba-git@featureform","steffitan23"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["featureform"],"_pop_contributor_orgs_raw":["Featureform"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":45.13,"_pop_updated_issues_count":97,"_pop_closed_issues_count":84,"_pop_created_since_days":29,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":97.0,"_pop_comment_count":84.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":40.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/featureform/embeddinghub/master/README.md","_readme_localurl":"featureform~embeddinghub~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/featureform/embeddinghub/master/requirements.txt"],"_requirements_localurls":["featureform~embeddinghub~requirements.txt"]},{"index":451,"category":"util","githuburl":"https://github.com/imageio/imageio","featured":null,"links":null,"description":null,"_repopath":"imageio/imageio","_reponame":"imageio","_stars":1201,"_forks":244,"_watches":32,"_language":"Python","_homepage":"https://imageio.readthedocs.io","_description":"imageio: Python library for reading and writing image data","_organization":"imageio","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2013-05-04T00:00:00.000Z","_age_weeks":511,"_stars_per_week":2.35,"_topics":["python","imageio","animated-gif","video","webcam-capture","scientific-formats","dicom"],"_last_commit_date":"2023-02-13T00:00:00.000Z","_pop_contributor_count":96,"_pop_contributor_logins":["FirefoxMetzger@usr-lab","actions-user@actions","almarklein@independentsoftwareengineer","anntzer","blink1073@mongodb","dennisvang","hmaarrfk@californiainstituteoftechnology","jni@biomedicinediscoveryinstitute,monashuniversity","kuchi","paulmueller@gucklab"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["actions","biomedicinediscoveryinstitute,monashuniversity","californiainstituteoftechnology","gucklab","independentsoftwareengineer","mongodb","usr-lab"],"_pop_contributor_orgs_raw":["@GuckLab ","@actions","@usr-lab ","Biomedicine Discovery Institute, Monash University","California Institute of Technology","Independent software engineer","MongoDB"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.13,"_pop_updated_issues_count":46,"_pop_closed_issues_count":25,"_pop_created_since_days":119,"_pop_updated_since_days":0,"_pop_recent_releases_count":23,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":23,"_pop_issue_count":46.0,"_pop_comment_count":134.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":0,"_pop_score":52.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/imageio/imageio/master/README.md","_readme_localurl":"imageio~imageio~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/imageio/imageio/master/setup.py"],"_requirements_localurls":["imageio~imageio~setup.py"]},{"index":636,"category":"util","githuburl":"https://github.com/pygments/pygments","featured":null,"links":null,"description":null,"_repopath":"pygments/pygments","_reponame":"pygments","_stars":1201,"_forks":504,"_watches":32,"_language":"Python","_homepage":"http://pygments.org/","_description":"Pygments is a generic syntax highlighter written in Python","_organization":"pygments","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2019-08-31T00:00:00.000Z","_age_weeks":181,"_stars_per_week":6.61,"_topics":["python","syntax-highlighting"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":763,"_pop_contributor_logins":["Anteru@amd","EricFromCanada","birkenfeld@fzj\u00fclich","blu-base","hoelzro","jaingaurav@google","jeanas","jrnold","roskakori","thatch"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amd","fzj\u00fclich","google"],"_pop_contributor_orgs_raw":["AMD","FZ J\u00fclich","Google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.46,"_pop_updated_issues_count":171,"_pop_closed_issues_count":101,"_pop_created_since_days":42,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":171.0,"_pop_comment_count":181.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":49.92,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pygments/pygments/master/README.rst","_readme_localurl":"pygments~pygments~README.rst","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pygments/pygments/master/requirements.txt","https://raw.githubusercontent.com/pygments/pygments/master/pyproject.toml"],"_requirements_localurls":["pygments~pygments~requirements.txt","pygments~pygments~pyproject.toml"]},{"index":725,"category":"typing","githuburl":"https://github.com/patrick-kidger/torchtyping","featured":null,"links":null,"description":null,"_repopath":"patrick-kidger/torchtyping","_reponame":"torchtyping","_stars":1201,"_forks":28,"_watches":14,"_language":"Python","_homepage":"","_description":"torchtyping: Type annotations and dynamic checking for a tensor's shape, dtype, names, etc.","_organization":"patrick-kidger","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2021-03-28T00:00:00.000Z","_age_weeks":99,"_stars_per_week":12.08,"_topics":["tensors","named-tensors","shape","pytorch","typing","python-typing"],"_last_commit_date":"2023-01-20T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["AdilZouitine@irtsaint-exup\u00e9ry","anivegesana","gkorepanov@avatarify","olliethomas@universityofsussexairesearchgroup","patrick-kidger@googlex","teichert"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["avatarify","googlex","irtsaint-exup\u00e9ry","universityofsussexairesearchgroup"],"_pop_contributor_orgs_raw":["Avatarify","Google X","IRT Saint-Exup\u00e9ry","University of Sussex AI Research Group"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":6,"_pop_closed_issues_count":3,"_pop_created_since_days":23,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":6.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":26.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/patrick-kidger/torchtyping/master/README.md","_readme_localurl":"patrick-kidger~torchtyping~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/patrick-kidger/torchtyping/master/setup.py","https://raw.githubusercontent.com/patrick-kidger/torchtyping/master/pyproject.toml"],"_requirements_localurls":["patrick-kidger~torchtyping~setup.py","patrick-kidger~torchtyping~pyproject.toml"]},{"index":802,"category":"util","githuburl":"https://github.com/open-telemetry/opentelemetry-python","featured":null,"links":null,"description":null,"_repopath":"open-telemetry/opentelemetry-python","_reponame":"opentelemetry-python","_stars":1189,"_forks":429,"_watches":35,"_language":"Python","_homepage":"https://opentelemetry.io","_description":"opentelemetry-python: OpenTelemetry Python API and SDK ","_organization":"open-telemetry","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-05-07T00:00:00.000Z","_age_weeks":198,"_stars_per_week":6.0,"_topics":["python","opentelemetry","tracecontext","correlationcontext","distributed-tracing","logging","metrics","sdk"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":184,"_pop_contributor_logins":["Oberon00@dynatrace","aabmass@google","c24t@google","codeboten@lightstep","lzchen@microsoftcorporation","mauriciovasquezbernal@microsoft(kinvolk)","ocelotl","owais@splunk","srikanthccv@signoz.io","toumorokoshi@google"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["dynatrace","google","lightstep","microsoft(kinvolk)","microsoftcorporation","signoz.io","splunk"],"_pop_contributor_orgs_raw":["@Dynatrace ","@google","@google ","@microsoft (@kinvolk)","@splunk","Google","Lightstep","Microsoft Corporation","signoz.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.88,"_pop_updated_issues_count":209,"_pop_closed_issues_count":121,"_pop_created_since_days":46,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":209.0,"_pop_comment_count":360.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":52.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-telemetry/opentelemetry-python/master/README.md","_readme_localurl":"open-telemetry~opentelemetry-python~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/open-telemetry/opentelemetry-python/master/pyproject.toml"],"_requirements_localurls":["open-telemetry~opentelemetry-python~pyproject.toml"]},{"index":647,"category":"data","githuburl":"https://github.com/pytables/pytables","featured":null,"links":null,"description":null,"_repopath":"pytables/pytables","_reponame":"PyTables","_stars":1187,"_forks":240,"_watches":59,"_language":"Python","_homepage":"http://www.pytables.org","_description":"PyTables: A Python package to manage extremely large amounts of data","_organization":"pytables","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2011-06-03T00:00:00.000Z","_age_weeks":611,"_stars_per_week":1.94,"_topics":[],"_last_commit_date":"2023-02-09T00:00:00.000Z","_pop_contributor_count":111,"_pop_contributor_logins":["FrancescAlted@francescalted","andreabedini@tweag","avalentino","eumiro","joshayers","keszybz@redhat","matham@cornelluniversity","oscargm98","scopatz","tomkooij@coornhertgymnasium"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["coornhertgymnasium","cornelluniversity","francescalted","redhat","tweag"],"_pop_contributor_orgs_raw":["@FrancescAlted","@tweag ","Coornhert Gymnasium","Cornell University","Red Hat"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.52,"_pop_updated_issues_count":39,"_pop_closed_issues_count":29,"_pop_created_since_days":143,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":39.0,"_pop_comment_count":117.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":48.8,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytables/pytables/master/README.rst","_readme_localurl":"pytables~pytables~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytables/pytables/master/requirements.txt","https://raw.githubusercontent.com/pytables/pytables/master/setup.py","https://raw.githubusercontent.com/pytables/pytables/master/pyproject.toml"],"_requirements_localurls":["pytables~pytables~requirements.txt","pytables~pytables~setup.py","pytables~pytables~pyproject.toml"]},{"index":403,"category":"perf","githuburl":"https://github.com/agronholm/anyio","featured":null,"links":null,"description":null,"_repopath":"agronholm/anyio","_reponame":"anyio","_stars":1183,"_forks":101,"_watches":26,"_language":"Python","_homepage":"","_description":"anyio: High level asynchronous concurrency and networking framework that works on top of either trio or asyncio","_organization":"agronholm","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-08-19T00:00:00.000Z","_age_weeks":235,"_stars_per_week":5.02,"_topics":["async-await","trio","asyncio","curio"],"_last_commit_date":"2023-02-13T00:00:00.000Z","_pop_contributor_count":38,"_pop_contributor_logins":["agronholm@nextdaysolutionsoy","belm0","daa","danielhasan1","graingert","gschaffner@andrewjayichlabucsb","jhominal","pre-commit-ci[bot]","smurfix@norisnetworkag","uSpike"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["andrewjayichlabucsb","nextdaysolutionsoy","norisnetworkag"],"_pop_contributor_orgs_raw":["Andrew Jayich Lab @ UCSB","NextDay Solutions Oy","noris network AG"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.02,"_pop_updated_issues_count":31,"_pop_closed_issues_count":12,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":30.0,"_pop_comment_count":45.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":41.01,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/agronholm/anyio/master/README.rst","_readme_localurl":"agronholm~anyio~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/agronholm/anyio/master/pyproject.toml"],"_requirements_localurls":["agronholm~anyio~pyproject.toml"]},{"index":489,"category":"gis","githuburl":"https://github.com/scitools/cartopy","featured":null,"links":null,"description":null,"_repopath":"scitools/cartopy","_reponame":"cartopy","_stars":1178,"_forks":337,"_watches":55,"_language":"Python","_homepage":"https://scitools.org.uk/cartopy/docs/latest","_description":"Cartopy - a cartographic python library with matplotlib support","_organization":"scitools","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-08-03T00:00:00.000Z","_age_weeks":550,"_stars_per_week":2.14,"_topics":["cartopy","matplotlib","python","geometry","maps","spatial","projections"],"_last_commit_date":"2023-02-02T00:00:00.000Z","_pop_contributor_count":118,"_pop_contributor_logins":["QuLogic","ajdawson","bjlittle@metoffice","dopplershift@ucar/unidata","esc24","greglucas@lasp/lasp/swxtrec","pelson","rhattersley@metoffice","scmc72","stefraynaud@shom"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["lasp/lasp/swxtrec","metoffice","shom","ucar/unidata"],"_pop_contributor_orgs_raw":["@MetOffice ","LASP / @lasp / @SWxTREC","Met Office","Shom","UCAR/@Unidata"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.17,"_pop_updated_issues_count":48,"_pop_closed_issues_count":28,"_pop_created_since_days":128,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":48.0,"_pop_comment_count":109.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":46.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scitools/cartopy/master/README.md","_readme_localurl":"scitools~cartopy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scitools/cartopy/master/setup.py","https://raw.githubusercontent.com/scitools/cartopy/master/pyproject.toml"],"_requirements_localurls":["scitools~cartopy~setup.py","scitools~cartopy~pyproject.toml"]},{"index":494,"category":"ml-dl","githuburl":"https://github.com/hysts/pytorch_image_classification","featured":null,"links":null,"description":null,"_repopath":"hysts/pytorch_image_classification","_reponame":"pytorch_image_classification","_stars":1170,"_forks":289,"_watches":27,"_language":"Python","_homepage":"","_description":"pytorch_image_classification: PyTorch implementation of image classification models for CIFAR-10/CIFAR-100/MNIST/FashionMNIST/Kuzushiji-MNIST/ImageNet","_organization":"hysts","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-12-09T00:00:00.000Z","_age_weeks":271,"_stars_per_week":4.31,"_topics":["pytorch","computer-vision","cifar10","fashion-mnist","imagenet"],"_last_commit_date":"2021-12-12T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["hysts"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":63,"_pop_updated_since_days":15,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":5.32,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hysts/pytorch_image_classification/master/README.md","_readme_localurl":"hysts~pytorch_image_classification~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/hysts/pytorch_image_classification/master/requirements.txt"],"_requirements_localurls":["hysts~pytorch_image_classification~requirements.txt"]},{"index":396,"category":"web","githuburl":"https://github.com/neoteroi/blacksheep","featured":null,"links":null,"description":null,"_repopath":"neoteroi/blacksheep","_reponame":"BlackSheep","_stars":1166,"_forks":52,"_watches":23,"_language":"Python","_homepage":"https://www.neoteroi.dev/blacksheep/","_description":"BlackSheep: Fast ASGI web framework for Python","_organization":"neoteroi","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-11-22T00:00:00.000Z","_age_weeks":221,"_stars_per_week":5.26,"_topics":["asyncio","server","http","asgi","blacksheep","python","web","framework","http-server"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":10,"_pop_contributor_logins":["Klavionik","RobertoPrevato","YassineElbouchaibi","antipooh","dependabot[bot]","gitter-badger@gitter","jack-fireworkhq@loopsocial","myusko","q0w","skivis"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["gitter","loopsocial"],"_pop_contributor_orgs_raw":["@loopsocial","Gitter"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.62,"_pop_updated_issues_count":24,"_pop_closed_issues_count":19,"_pop_created_since_days":52,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":24.0,"_pop_comment_count":40.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":35.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/neoteroi/blacksheep/master/README.md","_readme_localurl":"neoteroi~blacksheep~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/neoteroi/blacksheep/master/requirements.txt","https://raw.githubusercontent.com/neoteroi/blacksheep/master/setup.py"],"_requirements_localurls":["neoteroi~blacksheep~requirements.txt","neoteroi~blacksheep~setup.py"]},{"index":862,"category":"jupyter","githuburl":"https://github.com/jupyter/nbgrader","featured":null,"links":null,"description":null,"_repopath":"jupyter/nbgrader","_reponame":"nbgrader","_stars":1163,"_forks":318,"_watches":42,"_language":"Python","_homepage":"https://nbgrader.readthedocs.io/","_description":"nbgrader: A system for assigning and grading notebooks","_organization":"jupyter","_updated_at":"2023-02-14T00:00:00.000Z","_created_at":"2014-09-13T00:00:00.000Z","_age_weeks":440,"_stars_per_week":2.64,"_topics":["nbgrader","jupyter","jupyter-notebook","jupyterhub","teaching","grading"],"_last_commit_date":"2023-01-06T00:00:00.000Z","_pop_contributor_count":98,"_pop_contributor_logins":["BertR","Carreau@quansight-labs","Lawrence37","brichet@quantstack","danielmaitre","jhamrick","lgpage","rkdarst@aaltouniversity","sigurdurb","willingc@willingconsulting"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aaltouniversity","quansight-labs","quantstack","willingconsulting"],"_pop_contributor_orgs_raw":["@Quansight-Labs","@quantstack","Aalto University","Willing Consulting"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.92,"_pop_updated_issues_count":67,"_pop_closed_issues_count":18,"_pop_created_since_days":103,"_pop_updated_since_days":2,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":67.0,"_pop_comment_count":97.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":44.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/nbgrader/master/README.md","_readme_localurl":"jupyter~nbgrader~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/nbgrader/master/requirements.txt","https://raw.githubusercontent.com/jupyter/nbgrader/master/setup.py","https://raw.githubusercontent.com/jupyter/nbgrader/master/pyproject.toml"],"_requirements_localurls":["jupyter~nbgrader~requirements.txt","jupyter~nbgrader~setup.py","jupyter~nbgrader~pyproject.toml"]},{"index":16,"category":"perf","githuburl":"https://github.com/eventlet/eventlet","featured":null,"links":null,"description":null,"_repopath":"eventlet/eventlet","_reponame":"eventlet","_stars":1154,"_forks":298,"_watches":63,"_language":"Python","_homepage":"https://eventlet.net","_description":"eventlet: Concurrent networking library for Python","_organization":"eventlet","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2012-12-11T00:00:00.000Z","_age_weeks":532,"_stars_per_week":2.17,"_topics":["python","concurrency","network","c10k","greenlet","production-ready"],"_last_commit_date":"2023-02-02T00:00:00.000Z","_pop_contributor_count":183,"_pop_contributor_logins":["denik","edwardgeorge@apm\u00f8ller\u2014m\u00e6rsk","geoffsalmon","hisbreathliness","jstasiak","rdw","tavisrudd@http://twitter.com/tavisrudd/","temoto","tipabu","whichlinden"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["apm\u00f8ller\u2014m\u00e6rsk","http://twitter.com/tavisrudd/"],"_pop_contributor_orgs_raw":["AP M\u00f8ller \u2014 M\u00e6rsk","http://twitter.com/tavisrudd/"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.27,"_pop_updated_issues_count":40,"_pop_closed_issues_count":21,"_pop_created_since_days":124,"_pop_updated_since_days":37,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":40.0,"_pop_comment_count":66.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":35.0,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/eventlet/eventlet/master/README.rst","_readme_localurl":"eventlet~eventlet~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/eventlet/eventlet/master/setup.py"],"_requirements_localurls":["eventlet~eventlet~setup.py"]},{"index":666,"category":"ml","githuburl":"https://github.com/huggingface/evaluate","featured":null,"links":null,"description":null,"_repopath":"huggingface/evaluate","_reponame":"evaluate","_stars":1149,"_forks":115,"_watches":42,"_language":"Python","_homepage":"https://huggingface.co/docs/evaluate","_description":"\ud83e\udd17 Evaluate: A library for easily evaluating machine learning models and datasets.","_organization":"huggingface","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-03-30T00:00:00.000Z","_age_weeks":47,"_stars_per_week":24.45,"_topics":["evaluation","machine-learning"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":115,"_pop_contributor_logins":["BramVanroy@lt3kuleuven","albertvillanova@huggingfaceaiinnova","lewtun@huggingface","lhoestq@huggingface","lvwerra@huggingface","mariosasko@huggingface","mathemakitten","patrickvonplaten","sashavor@huggingface","thomwolf@huggingface"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["huggingface","huggingfaceaiinnova","lt3kuleuven"],"_pop_contributor_orgs_raw":["@huggingface","@huggingface ","@huggingface @Aiinnova","@lt3 @kuleuven","Hugging Face","HuggingFace"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.79,"_pop_updated_issues_count":87,"_pop_closed_issues_count":43,"_pop_created_since_days":11,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":87.0,"_pop_comment_count":177.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":44.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/evaluate/master/README.md","_readme_localurl":"huggingface~evaluate~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/evaluate/master/setup.py"],"_requirements_localurls":["huggingface~evaluate~setup.py"]},{"index":817,"category":"ml-dl","githuburl":"https://github.com/calculatedcontent/weightwatcher","featured":null,"links":null,"description":null,"_repopath":"calculatedcontent/weightwatcher","_reponame":"WeightWatcher","_stars":1145,"_forks":100,"_watches":30,"_language":"Python","_homepage":null,"_description":"WeightWatcher: The WeightWatcher tool for predicting the accuracy of Deep Neural Networks","_organization":"calculatedcontent","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2018-11-28T00:00:00.000Z","_age_weeks":221,"_stars_per_week":5.18,"_topics":[],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["Burhan-Q","RichardScottOZ@ozminerals","cdhinrichs","charlesmartin14@calculationconsulting","pachevalier@etalab","reserena"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["calculationconsulting","etalab","ozminerals"],"_pop_contributor_orgs_raw":["Calculation Consulting","Etalab","OZ Minerals"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.96,"_pop_updated_issues_count":63,"_pop_closed_issues_count":31,"_pop_created_since_days":52,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":63.0,"_pop_comment_count":89.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":36.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/calculatedcontent/weightwatcher/master/README.md","_readme_localurl":"calculatedcontent~weightwatcher~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/calculatedcontent/weightwatcher/master/setup.py"],"_requirements_localurls":["calculatedcontent~weightwatcher~setup.py"]},{"index":903,"category":"util","githuburl":"https://github.com/ossf/criticality_score","featured":null,"links":null,"description":null,"_repopath":"ossf/criticality_score","_reponame":"criticality_score","_stars":1141,"_forks":87,"_watches":30,"_language":"Go","_homepage":null,"_description":"criticality_score: Gives criticality score for an open source project","_organization":"ossf","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2020-11-17T00:00:00.000Z","_age_weeks":118,"_stars_per_week":9.66,"_topics":[],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":19,"_pop_contributor_logins":["Yikun","azeemshaikh38","calebbrown","coni2k@forcrowd","dependabot[bot]","inferno-chromium@google","lehors@ibm","nathannaveen","nuthanmunaiah@rochesterinstituteoftechnology","oliverchang@google"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["forcrowd","google","ibm","rochesterinstituteoftechnology"],"_pop_contributor_orgs_raw":["@Google","@forCrowd","@google ","IBM","Rochester Institute of Technology"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.38,"_pop_updated_issues_count":91,"_pop_closed_issues_count":61,"_pop_created_since_days":28,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":90.0,"_pop_comment_count":64.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":36.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ossf/criticality_score/master/README.md","_readme_localurl":"ossf~criticality_score~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ossf/criticality_score/master/setup.py"],"_requirements_localurls":["ossf~criticality_score~setup.py"]},{"index":545,"category":"ml","githuburl":"https://github.com/borealisai/advertorch","featured":null,"links":null,"description":null,"_repopath":"borealisai/advertorch","_reponame":"advertorch","_stars":1136,"_forks":180,"_watches":27,"_language":"Jupyter Notebook","_homepage":null,"_description":"advertorch: A Toolbox for Adversarial Robustness Research","_organization":"borealisai","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-11-29T00:00:00.000Z","_age_weeks":220,"_stars_per_week":5.14,"_topics":["pytorch","adversarial-examples","adversarial-example","adversarial-perturbations","adversarial-attacks","adversarial-machine-learning","adversarial-learning","robustness","toolbox","security","machine-learning","benchmarking"],"_last_commit_date":"2022-05-29T00:00:00.000Z","_pop_contributor_count":21,"_pop_contributor_logins":["CaesarQ@wohin","LaurentMnr95","ashutoshbsathe","benfei","feinsteinben","fra31","gwding@ecopiaai","msalihs","tarokiritani@exawizards","tracyjin"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ecopiaai","exawizards","wohin"],"_pop_contributor_orgs_raw":["Ecopia AI","Exawizards","Wohin Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":51,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":19.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/borealisai/advertorch/master/README.md","_readme_localurl":"borealisai~advertorch~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/borealisai/advertorch/master/setup.py"],"_requirements_localurls":["borealisai~advertorch~setup.py"]},{"index":904,"category":"crypto","githuburl":"https://github.com/ofek/bit","featured":null,"links":null,"description":null,"_repopath":"ofek/bit","_reponame":"bit","_stars":1128,"_forks":188,"_watches":48,"_language":"Python","_homepage":"https://ofek.dev/bit/","_description":"Bitcoin made easy.","_organization":"ofek","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2016-11-12T00:00:00.000Z","_age_weeks":327,"_stars_per_week":3.44,"_topics":["bitcoin","python","libraries","cryptocurrencies","payments"],"_last_commit_date":"2023-02-11T00:00:00.000Z","_pop_contributor_count":15,"_pop_contributor_logins":["ChristianOConnor","EazyServer","GauthamramRavichandran","NateNate60","Qxe5","bjarnemagnussen","mgaitan","ofek@datadog","pedr0-fr","philsippl"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["datadog"],"_pop_contributor_orgs_raw":["@datadog"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":8,"_pop_closed_issues_count":2,"_pop_created_since_days":76,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":8.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":25.45,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/ofek/bit/master/README.rst","_readme_localurl":"ofek~bit~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ofek/bit/master/setup.py","https://raw.githubusercontent.com/ofek/bit/master/pyproject.toml"],"_requirements_localurls":["ofek~bit~setup.py","ofek~bit~pyproject.toml"]},{"index":618,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-bdd","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-bdd","_reponame":"pytest-bdd","_stars":1124,"_forks":187,"_watches":53,"_language":"Python","_homepage":"https://pytest-bdd.readthedocs.io/en/latest/","_description":"pytest-bdd: BDD library for the py.test runner","_organization":"pytest-dev","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2013-03-29T00:00:00.000Z","_age_weeks":516,"_stars_per_week":2.18,"_topics":[],"_last_commit_date":"2023-02-06T00:00:00.000Z","_pop_contributor_count":53,"_pop_contributor_logins":["The-Compiler@bruhinsoftware","amakhnach","asottile","bubenkoff","drothlis@stb-tester","olegpidsadnyi@fareharbor","pre-commit-ci[bot]","sambarluc@pix4d","sliwinski-milosz","youtux"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bruhinsoftware","fareharbor","pix4d","stb-tester"],"_pop_contributor_orgs_raw":["@FareHarbor","@stb-tester","Bruhin Software","Pix4D"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.87,"_pop_updated_issues_count":22,"_pop_closed_issues_count":14,"_pop_created_since_days":121,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":22.0,"_pop_comment_count":23.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":42.31,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-bdd/master/README.rst","_readme_localurl":"pytest-dev~pytest-bdd~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-bdd/master/pyproject.toml"],"_requirements_localurls":["pytest-dev~pytest-bdd~pyproject.toml"]},{"index":448,"category":"gis","githuburl":"https://github.com/pysal/pysal","featured":1.0,"links":null,"description":null,"_repopath":"pysal/pysal","_reponame":"pysal","_stars":1112,"_forks":290,"_watches":81,"_language":"Jupyter Notebook","_homepage":"http://pysal.org/pysal","_description":"PySAL: Python Spatial Analysis Library Meta-Package","_organization":"pysal","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2013-02-19T00:00:00.000Z","_age_weeks":522,"_stars_per_week":2.13,"_topics":[],"_last_commit_date":"2023-01-28T00:00:00.000Z","_pop_contributor_count":77,"_pop_contributor_logins":["TaylorOshan@geoda/asu","darribas","dfolch@northernarizonauniversity","jlaura@usgsastrogeology","ljwolf@geogbristol","mhwang4","nmalizia@telluslabs","pastephens","schmidtc","sjsrey@centerforopengeographicalscience"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["centerforopengeographicalscience","geoda/asu","geogbristol","northernarizonauniversity","telluslabs","usgsastrogeology"],"_pop_contributor_orgs_raw":["@geogbristol ","@telluslabs ","Center for Open Geographical Science","Geoda/ASU","Northern Arizona University","USGS Astrogeology"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.23,"_pop_updated_issues_count":5,"_pop_closed_issues_count":5,"_pop_created_since_days":122,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":5.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":40.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pysal/pysal/master/README.md","_readme_localurl":"pysal~pysal~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pysal/pysal/master/requirements.txt","https://raw.githubusercontent.com/pysal/pysal/master/setup.py"],"_requirements_localurls":["pysal~pysal~requirements.txt","pysal~pysal~setup.py"]},{"index":928,"category":"util","githuburl":"https://github.com/p0dalirius/coercer","featured":null,"links":null,"description":null,"_repopath":"p0dalirius/coercer","_reponame":"Coercer","_stars":1109,"_forks":120,"_watches":18,"_language":"Python","_homepage":"https://podalirius.net/","_description":"Coercer: A python script to automatically coerce a Windows server to authenticate on an arbitrary machine through 12 methods.","_organization":"p0dalirius","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-06-30T00:00:00.000Z","_age_weeks":33,"_stars_per_week":32.76,"_topics":["authentication","automatic","call","coerce","privilege-escalation","rpc","ntlm","fuzzing"],"_last_commit_date":"2023-01-18T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["exploide","jenaye@orange-cyberdefenseinshallhackcmepw","p0dalirius@podalirius","shoxxdj"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["orange-cyberdefenseinshallhackcmepw","podalirius"],"_pop_contributor_orgs_raw":["@Orange-Cyberdefense @Inshallhack @CMEPW","Podalirius"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.5,"_pop_updated_issues_count":36,"_pop_closed_issues_count":29,"_pop_created_since_days":8,"_pop_updated_since_days":1,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":36.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":25.47,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/p0dalirius/coercer/master/README.md","_readme_localurl":"p0dalirius~coercer~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/p0dalirius/coercer/master/requirements.txt","https://raw.githubusercontent.com/p0dalirius/coercer/master/setup.py","https://raw.githubusercontent.com/p0dalirius/coercer/master/pyproject.toml"],"_requirements_localurls":["p0dalirius~coercer~requirements.txt","p0dalirius~coercer~setup.py","p0dalirius~coercer~pyproject.toml"]},{"index":651,"category":"profiling","githuburl":"https://github.com/p403n1x87/austin","featured":null,"links":null,"description":null,"_repopath":"p403n1x87/austin","_reponame":"austin","_stars":1109,"_forks":37,"_watches":14,"_language":"C","_homepage":"","_description":"austin: Python frame stack sampler for CPython","_organization":"p403n1x87","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-09-20T00:00:00.000Z","_age_weeks":230,"_stars_per_week":4.8,"_topics":["python","profiling","performance","debugging-tools"],"_last_commit_date":"2022-10-28T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["Mortal@madalgo","P403n1x87@datadog","hatboysam@habosaapps","ivoanjo@datadog","mitchblank","tonybaloney@microsoft","xmatthias"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["datadog","habosaapps","madalgo","microsoft"],"_pop_contributor_orgs_raw":["@DataDog","@Datadog","Habosa Apps","MADALGO","Microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.71,"_pop_updated_issues_count":14,"_pop_closed_issues_count":10,"_pop_created_since_days":54,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":14.0,"_pop_comment_count":28.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":35.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/p403n1x87/austin/master/README.md","_readme_localurl":"p403n1x87~austin~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":417,"category":"pandas","githuburl":"https://github.com/pyjanitor-devs/pyjanitor","featured":1.0,"links":null,"description":null,"_repopath":"pyjanitor-devs/pyjanitor","_reponame":"pyjanitor","_stars":1108,"_forks":159,"_watches":21,"_language":"Python","_homepage":"https://pyjanitor-devs.github.io/pyjanitor","_description":"pyjanitor: Clean APIs for data cleaning. Python implementation of R package Janitor","_organization":"pyjanitor-devs","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-03-04T00:00:00.000Z","_age_weeks":259,"_stars_per_week":4.27,"_topics":["pandas","dataframe","data","cleaning-data","data-engineering","pydata","hacktoberfest"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":106,"_pop_contributor_logins":["Zeroto521","dave-frazzetto","dsouzadaniel@pqdev","ericmjl","hectormz@amdi","jk3587","samukweku@datajanitor","szuckerman","thatlittleboy","zbarry@springdiscovery"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amdi","datajanitor","pqdev","springdiscovery"],"_pop_contributor_orgs_raw":["@pqdev","AMDI","Data Janitor","Spring Discovery"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.27,"_pop_updated_issues_count":56,"_pop_closed_issues_count":33,"_pop_created_since_days":60,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":56.0,"_pop_comment_count":121.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":45.03,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/README.rst","_readme_localurl":"pyjanitor-devs~pyjanitor~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/requirements.txt","https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/setup.py","https://raw.githubusercontent.com/pyjanitor-devs/pyjanitor/master/pyproject.toml"],"_requirements_localurls":["pyjanitor-devs~pyjanitor~requirements.txt","pyjanitor-devs~pyjanitor~setup.py","pyjanitor-devs~pyjanitor~pyproject.toml"]},{"index":798,"category":"data","githuburl":"https://github.com/jsonpickle/jsonpickle","featured":null,"links":null,"description":null,"_repopath":"jsonpickle/jsonpickle","_reponame":"jsonpickle","_stars":1102,"_forks":153,"_watches":31,"_language":"Python","_homepage":"https://jsonpickle.github.io","_description":"jsonpickle: Python library for serializing any arbitrary object graph into JSON. It can take almost any Python object and turn the object into JSON. Additionally, it can reconstitute the object back into Python.","_organization":"jsonpickle","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2009-12-10T00:00:00.000Z","_age_weeks":688,"_stars_per_week":1.6,"_topics":["json","python","serialization","pickle","deserialization","objectstorage","bsd-3-clause"],"_last_commit_date":"2022-12-29T00:00:00.000Z","_pop_contributor_count":69,"_pop_contributor_logins":["EelcoHoogendoorn@3dhubs","Theelx","aldanor","davvid@waltdisneyanimationstudios","hugovk@nordsoftware","jaraco@google","johnpaulett@equium-io","marcintustin","meatballhat@rstudio","parsons-kyle-89"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["3dhubs","equium-io","google","nordsoftware","rstudio","waltdisneyanimationstudios"],"_pop_contributor_orgs_raw":["3dhubs","@equium-io","@rstudio","Google","Nord Software","Walt Disney Animation Studios"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.08,"_pop_updated_issues_count":26,"_pop_closed_issues_count":23,"_pop_created_since_days":161,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":26.0,"_pop_comment_count":44.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":43.43,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jsonpickle/jsonpickle/master/README.rst","_readme_localurl":"jsonpickle~jsonpickle~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jsonpickle/jsonpickle/master/setup.py","https://raw.githubusercontent.com/jsonpickle/jsonpickle/master/pyproject.toml"],"_requirements_localurls":["jsonpickle~jsonpickle~setup.py","jsonpickle~jsonpickle~pyproject.toml"]},{"index":512,"category":"typing","githuburl":"https://github.com/agronholm/typeguard","featured":null,"links":null,"description":null,"_repopath":"agronholm/typeguard","_reponame":"typeguard","_stars":1101,"_forks":83,"_watches":16,"_language":"Python","_homepage":null,"_description":"typeguard: Run-time type checker for Python","_organization":"agronholm","_updated_at":"2023-02-13T00:00:00.000Z","_created_at":"2015-12-27T00:00:00.000Z","_age_weeks":373,"_stars_per_week":2.95,"_topics":[],"_last_commit_date":"2023-02-12T00:00:00.000Z","_pop_contributor_count":25,"_pop_contributor_logins":["EPronovost","agronholm@nextdaysolutionsoy","andyljones@anthropic","cjolowicz@cloudflare","pre-commit-ci[bot]","prescod@salesforce.org","reinhrst","rfrowe@indeed","supersergiy","wbolster"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anthropic","cloudflare","indeed","nextdaysolutionsoy","salesforce.org"],"_pop_contributor_orgs_raw":["@cloudflare","Anthropic","Indeed","NextDay Solutions Oy","Salesforce.org"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.67,"_pop_updated_issues_count":54,"_pop_closed_issues_count":44,"_pop_created_since_days":87,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":54.0,"_pop_comment_count":188.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.5,"_pop_dependents_count":0,"_pop_score":45.7,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/agronholm/typeguard/master/README.rst","_readme_localurl":"agronholm~typeguard~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/agronholm/typeguard/master/pyproject.toml"],"_requirements_localurls":["agronholm~typeguard~pyproject.toml"]},{"index":619,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-asyncio","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-asyncio","_reponame":"pytest-asyncio","_stars":1099,"_forks":118,"_watches":34,"_language":"Python","_homepage":"https://pytest-asyncio.readthedocs.io","_description":"pytest-asyncio: Asyncio support for pytest","_organization":"pytest-dev","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2015-04-11T00:00:00.000Z","_age_weeks":410,"_stars_per_week":2.68,"_topics":[],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":41,"_pop_contributor_logins":["Tadaboody","Tinche@pocketzworld","agronholm@nextdaysolutionsoy","alblasco","asvetlov@neu.ro","dependabot[bot]","nicoddemus@esss","sashgorokhov@epam","seifertm","simonfagerholm"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["epam","esss","neu.ro","nextdaysolutionsoy","pocketzworld"],"_pop_contributor_orgs_raw":["@epam","@pocketzworld ","ESSS","Neu.ro","NextDay Solutions Oy"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.73,"_pop_updated_issues_count":64,"_pop_closed_issues_count":54,"_pop_created_since_days":96,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":64.0,"_pop_comment_count":51.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":44.44,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/master/README.rst","_readme_localurl":"pytest-dev~pytest-asyncio~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/master/pyproject.toml"],"_requirements_localurls":["pytest-dev~pytest-asyncio~pyproject.toml"]},{"index":726,"category":"perf","githuburl":"https://github.com/omyyyy/pycom","featured":null,"links":null,"description":null,"_repopath":"omyyyy/pycom","_reponame":"pycom","_stars":1099,"_forks":21,"_watches":17,"_language":"C++","_homepage":"","_description":"pycom: A Python compiler, down to native code, using C++","_organization":"omyyyy","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2022-07-16T00:00:00.000Z","_age_weeks":31,"_stars_per_week":34.81,"_topics":[],"_last_commit_date":"2022-08-31T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["BeeMoe5","Omyyyy","ikkebr@universityofcalgary","marcelpetrick@marcelpetrick.it","phodge-clipchamp"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["marcelpetrick.it","universityofcalgary"],"_pop_contributor_orgs_raw":["University of Calgary","marcelpetrick.it"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.71,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":7,"_pop_updated_since_days":6,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":14.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/omyyyy/pycom/master/README.md","_readme_localurl":"omyyyy~pycom~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/omyyyy/pycom/master/requirements.txt","https://raw.githubusercontent.com/omyyyy/pycom/master/setup.py"],"_requirements_localurls":["omyyyy~pycom~requirements.txt","omyyyy~pycom~setup.py"]},{"index":239,"category":"data","githuburl":"https://github.com/simonw/sqlite-utils","featured":null,"links":null,"description":null,"_repopath":"simonw/sqlite-utils","_reponame":"sqlite-utils","_stars":1097,"_forks":84,"_watches":18,"_language":"Python","_homepage":"https://sqlite-utils.datasette.io","_description":"sqlite-utils: Python CLI utility and library for manipulating SQLite databases","_organization":"simonw","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2018-07-14T00:00:00.000Z","_age_weeks":240,"_stars_per_week":4.56,"_topics":["sqlite","python","datasette","sqlite-database","click","cli","datasette-io","datasette-tool"],"_last_commit_date":"2022-12-10T00:00:00.000Z","_pop_contributor_count":27,"_pop_contributor_logins":["adamwolf","amjith","davidleejy@nationaluniversityofsingapore","dbready","eyeseast@usatodaynetwork","meatcar","mfa@axsemantics","simonw@datasette","simonwiles@stanforduniversity","tsibley"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["axsemantics","datasette","nationaluniversityofsingapore","stanforduniversity","usatodaynetwork"],"_pop_contributor_orgs_raw":["@axsemantics ","Datasette","National University of Singapore","Stanford University","USA TODAY Network"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.52,"_pop_updated_issues_count":21,"_pop_closed_issues_count":4,"_pop_created_since_days":56,"_pop_updated_since_days":2,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":25,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":21.0,"_pop_comment_count":30.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":38.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/simonw/sqlite-utils/master/README.md","_readme_localurl":"simonw~sqlite-utils~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/simonw/sqlite-utils/master/setup.py"],"_requirements_localurls":["simonw~sqlite-utils~setup.py"]},{"index":609,"category":"testing","githuburl":"https://github.com/pytest-dev/pytest-xdist","featured":null,"links":null,"description":null,"_repopath":"pytest-dev/pytest-xdist","_reponame":"pytest-xdist","_stars":1095,"_forks":192,"_watches":47,"_language":"Python","_homepage":"https://pytest-xdist.readthedocs.io","_description":"pytest-xdist: pytest plugin for distributed testing and loop-on-failures testing modes. ","_organization":"pytest-dev","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-09-01T00:00:00.000Z","_age_weeks":390,"_stars_per_week":2.81,"_topics":["hacktoberfest","pytest","pytest-plugin"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":89,"_pop_contributor_logins":["RonnyPfannschmidt@redhatinsights","bluetech","blueyed@freelancer,upforhire","bubenkoff","flub","hpk42@merlinux","hugovk@nordsoftware","nicoddemus@esss","pre-commit-ci[bot]","wronglink"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["esss","freelancer,upforhire","merlinux","nordsoftware","redhatinsights"],"_pop_contributor_orgs_raw":["@RedHatInsights ","ESSS","Freelancer, up for hire","Nord Software","merlinux"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.25,"_pop_updated_issues_count":49,"_pop_closed_issues_count":32,"_pop_created_since_days":91,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":49.0,"_pop_comment_count":136.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":0,"_pop_score":48.4,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytest-dev/pytest-xdist/master/README.rst","_readme_localurl":"pytest-dev~pytest-xdist~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytest-dev/pytest-xdist/master/pyproject.toml"],"_requirements_localurls":["pytest-dev~pytest-xdist~pyproject.toml"]},{"index":771,"category":"data","githuburl":"https://github.com/google/tensorstore","featured":null,"links":null,"description":null,"_repopath":"google/tensorstore","_reponame":"tensorstore","_stars":1095,"_forks":79,"_watches":32,"_language":"C++","_homepage":"https://google.github.io/tensorstore/","_description":"tensorstore: Library for reading and writing large multi-dimensional arrays.","_organization":"google","_updated_at":"2023-02-16T00:00:00.000Z","_created_at":"2020-03-30T00:00:00.000Z","_age_weeks":151,"_stars_per_week":7.24,"_topics":[],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":10,"_pop_contributor_logins":["QrczakMK@google","ckennelly","cpgaffney1","cushon","hectorgon","jbms","laramiel","mkruskal-google@protocolbuffers","yilei"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","protocolbuffers"],"_pop_contributor_orgs_raw":["@google","@protocolbuffers"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.73,"_pop_updated_issues_count":24,"_pop_closed_issues_count":13,"_pop_created_since_days":35,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":24.0,"_pop_comment_count":125.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":5.2,"_pop_dependents_count":0,"_pop_score":40.27,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/tensorstore/master/README.md","_readme_localurl":"google~tensorstore~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/google/tensorstore/master/setup.py","https://raw.githubusercontent.com/google/tensorstore/master/pyproject.toml"],"_requirements_localurls":["google~tensorstore~setup.py","google~tensorstore~pyproject.toml"]},{"index":772,"category":"nlp","githuburl":"https://github.com/huggingface/setfit","featured":null,"links":null,"description":null,"_repopath":"huggingface/setfit","_reponame":"setfit","_stars":1091,"_forks":112,"_watches":16,"_language":"Python","_homepage":"","_description":"setfit: Efficient few-shot learning with Sentence Transformers","_organization":"huggingface","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-06-30T00:00:00.000Z","_age_weeks":33,"_stars_per_week":32.22,"_topics":["few-shot-learning","nlp","sentence-transformers"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":35,"_pop_contributor_logins":["LuketheDukeBates","PhilipMay@telekom","blakechi","danielkorat@nervanasystems","eunseojo","fgbelidji@huggingface","lewtun@huggingface","mpangrazzi@wonderflow-bv","pdhall99","tomaarsen@argilla"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["argilla","huggingface","nervanasystems","telekom","wonderflow-bv"],"_pop_contributor_orgs_raw":["@NervanaSystems ","@huggingface","@telekom","@wonderflow-bv ","Argilla","Hugging Face"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.02,"_pop_updated_issues_count":173,"_pop_closed_issues_count":107,"_pop_created_since_days":8,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":173.0,"_pop_comment_count":436.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":0,"_pop_score":43.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/setfit/master/README.md","_readme_localurl":"huggingface~setfit~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/setfit/master/setup.py"],"_requirements_localurls":["huggingface~setfit~setup.py"]},{"index":656,"category":"web","githuburl":"https://github.com/magicstack/httptools","featured":null,"links":null,"description":null,"_repopath":"magicstack/httptools","_reponame":"httptools","_stars":1089,"_forks":71,"_watches":40,"_language":"Python","_homepage":"","_description":"httptools: Fast HTTP parser","_organization":"magicstack","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2016-04-25T00:00:00.000Z","_age_weeks":356,"_stars_per_week":3.06,"_topics":[],"_last_commit_date":"2022-09-13T00:00:00.000Z","_pop_contributor_count":13,"_pop_contributor_logins":["1st1@edgedb","SethMichaelLarson","b0g3r@semrush","belm0","elprans@edgedb","fantix@edgedb","samuelcolvin@pydantic","trollfot","yohanboniface@enix","youknowone@youknowone.org"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["edgedb","enix","pydantic","semrush","youknowone.org"],"_pop_contributor_orgs_raw":["@edgedb","@pydantic","@semrush","EdgeDB Inc.","Enix","youknowone.org"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":83,"_pop_updated_since_days":5,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":24.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/magicstack/httptools/master/README.md","_readme_localurl":"magicstack~httptools~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/magicstack/httptools/master/setup.py"],"_requirements_localurls":["magicstack~httptools~setup.py"]},{"index":627,"category":"data","githuburl":"https://github.com/zarr-developers/zarr-python","featured":null,"links":null,"description":null,"_repopath":"zarr-developers/zarr-python","_reponame":"zarr-python","_stars":1088,"_forks":218,"_watches":44,"_language":"Python","_homepage":"http://zarr.readthedocs.io/","_description":"zarr-python: An implementation of chunked, compressed, N-dimensional arrays for Python.","_organization":"zarr-developers","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-12-15T00:00:00.000Z","_age_weeks":375,"_stars_per_week":2.9,"_topics":["hacktoberfest","zarr","ndimensional-arrays","compressed","python"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":83,"_pop_contributor_logins":["Carreau@quansight-labs","DimitriPapadopoulos@cea","alimanfoo@weomesangerinstitute","andrewfulton9@quansight","dependabot[bot]","grlee77@nvidia","jakirkham","joshmoore@openmicroscopy","jrbourbeau@coiled","mzjp2@mavensecurities"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cea","coiled","mavensecurities","nvidia","openmicroscopy","quansight","quansight-labs","weomesangerinstitute"],"_pop_contributor_orgs_raw":["@Quansight-Labs","@coiled ","@openmicroscopy","CEA","Maven Securities","NVIDIA","Quansight","Wellcome Sanger Institute"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.67,"_pop_updated_issues_count":123,"_pop_closed_issues_count":70,"_pop_created_since_days":88,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":124.0,"_pop_comment_count":324.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.6,"_pop_dependents_count":0,"_pop_score":53.52,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zarr-developers/zarr-python/master/README.md","_readme_localurl":"zarr-developers~zarr-python~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/zarr-developers/zarr-python/master/pyproject.toml"],"_requirements_localurls":["zarr-developers~zarr-python~pyproject.toml"]},{"index":626,"category":"viz","githuburl":"https://github.com/enthought/mayavi","featured":null,"links":null,"description":null,"_repopath":"enthought/mayavi","_reponame":"mayavi","_stars":1084,"_forks":266,"_watches":96,"_language":"Python","_homepage":"http://docs.enthought.com/mayavi/mayavi/","_description":"mayavi: 3D visualization of scientific data in Python","_organization":"enthought","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2011-01-24T00:00:00.000Z","_age_weeks":630,"_stars_per_week":1.72,"_topics":[],"_last_commit_date":"2022-10-18T00:00:00.000Z","_pop_contributor_count":93,"_pop_contributor_logins":["GaelVaroquaux","amalss18@carnegiemellonuniversity","dmsurti","itziakos@enthought","kitchoi","larsoner@universityofwashington","prabhuramachandran@iitbombay","rahulporuri@enthought","stefanoborini@astrazenecauk","tkoyama010@ark-info-sys"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ark-info-sys","astrazenecauk","carnegiemellonuniversity","enthought","iitbombay","universityofwashington"],"_pop_contributor_orgs_raw":["@ark-info-sys","@enthought ","AstraZeneca UK","Carnegie Mellon University","IIT Bombay","University of Washington"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.96,"_pop_updated_issues_count":28,"_pop_closed_issues_count":5,"_pop_created_since_days":147,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":28.0,"_pop_comment_count":37.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":40.63,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/enthought/mayavi/master/README.rst","_readme_localurl":"enthought~mayavi~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/enthought/mayavi/master/setup.py","https://raw.githubusercontent.com/enthought/mayavi/master/pyproject.toml"],"_requirements_localurls":["enthought~mayavi~setup.py","enthought~mayavi~pyproject.toml"]},{"index":654,"category":"profiling","githuburl":"https://github.com/sumerc/yappi","featured":null,"links":null,"description":null,"_repopath":"sumerc/yappi","_reponame":"yappi","_stars":1074,"_forks":58,"_watches":13,"_language":"Python","_homepage":"","_description":"yappi: Yet Another Python Profiler, but this time multithreading, asyncio and gevent aware.","_organization":"sumerc","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2009-10-07T00:00:00.000Z","_age_weeks":698,"_stars_per_week":1.54,"_topics":["profilers","multi-threaded-applications","coroutine","asynchronous","python","asyncio","performance","profile","asgi","cpu","thread","gevent","greenlet","multithreading"],"_last_commit_date":"2022-11-25T00:00:00.000Z","_pop_contributor_count":28,"_pop_contributor_logins":["Suhail-MOHD@nutanix","ajdavis@mongodb","alioguzhan@telostat","dependabot[bot]","devxpy@dara.network","frohoff","gaborbernat@bloomberglp","nirs@ibm","orivej","sumerc"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bloomberglp","dara.network","ibm","mongodb","nutanix","telostat"],"_pop_contributor_orgs_raw":["@mongodb ","@telostat","Bloomberg LP","IBM","Nutanix","dara.network"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.65,"_pop_updated_issues_count":9,"_pop_closed_issues_count":5,"_pop_created_since_days":163,"_pop_updated_since_days":3,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":9.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":35.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sumerc/yappi/master/README.md","_readme_localurl":"sumerc~yappi~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sumerc/yappi/master/setup.py","https://raw.githubusercontent.com/sumerc/yappi/master/pyproject.toml"],"_requirements_localurls":["sumerc~yappi~setup.py","sumerc~yappi~pyproject.toml"]},{"index":580,"category":"util","githuburl":"https://github.com/lidatong/dataclasses-json","featured":null,"links":null,"description":null,"_repopath":"lidatong/dataclasses-json","_reponame":"dataclasses-json","_stars":1072,"_forks":119,"_watches":10,"_language":"Python","_homepage":"","_description":"dataclasses-json: Easily serialize Data Classes to and from JSON","_organization":"lidatong","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-04-21T00:00:00.000Z","_age_weeks":252,"_stars_per_week":4.24,"_topics":["dataclasses","json","python"],"_last_commit_date":"2022-08-14T00:00:00.000Z","_pop_contributor_count":46,"_pop_contributor_logins":["FaraSeer@yadro","Glandos","HappyTreeBeard","RunOrVeith","USSX-Hares","askogvold@microsoft","fabaff","lidatong","r-richmond","rakanalh"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["microsoft","yadro"],"_pop_contributor_orgs_raw":["@yadro","Microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":23,"_pop_closed_issues_count":1,"_pop_created_since_days":59,"_pop_updated_since_days":6,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":23.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":27.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lidatong/dataclasses-json/master/README.md","_readme_localurl":"lidatong~dataclasses-json~README.md","_requirements_filenames":["setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/lidatong/dataclasses-json/master/setup.py","https://raw.githubusercontent.com/lidatong/dataclasses-json/master/pyproject.toml","https://raw.githubusercontent.com/lidatong/dataclasses-json/master/Pipfile"],"_requirements_localurls":["lidatong~dataclasses-json~setup.py","lidatong~dataclasses-json~pyproject.toml","lidatong~dataclasses-json~Pipfile"]},{"index":191,"category":"ml","githuburl":"https://github.com/awslabs/dgl-ke","featured":null,"links":null,"description":null,"_repopath":"awslabs/dgl-ke","_reponame":"dgl-ke","_stars":1068,"_forks":182,"_watches":23,"_language":"Python","_homepage":"https://dglke.dgl.ai/doc/","_description":"dgl-ke: High performance, easy-to-use, and scalable package for learning large-scale knowledge graph embeddings.","_organization":"awslabs","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-03-03T00:00:00.000Z","_age_weeks":155,"_stars_per_week":6.88,"_topics":["machine-learning","knowledge-graph","knowledge-graphs-embeddings","graph-learning","dgl"],"_last_commit_date":"2022-11-18T00:00:00.000Z","_pop_contributor_count":25,"_pop_contributor_logins":["VoVAllen@tensorchord","aksnzhy","amazon-auto@amazon","classicsong@amazon","daikikatsuragawa@japan","menjarleev","ryantd@kwai","sublimotion","zby123","zheng-da@aws"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazon","aws","japan","kwai","tensorchord"],"_pop_contributor_orgs_raw":["@kwai","@tensorchord ","AWS","Amazon","Japan"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":7,"_pop_closed_issues_count":2,"_pop_created_since_days":36,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":7.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":29.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/awslabs/dgl-ke/master/README.md","_readme_localurl":"awslabs~dgl-ke~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":212,"category":"data","githuburl":"https://github.com/sfu-db/connector-x","featured":1.0,"links":null,"description":null,"_repopath":"sfu-db/connector-x","_reponame":"connector-x","_stars":1063,"_forks":77,"_watches":24,"_language":"Rust","_homepage":"https://sfu-db.github.io/connector-x/intro.html","_description":"connector-x: Fastest library to load data from DB to DataFrames in Rust and Python","_organization":"sfu-db","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-01-13T00:00:00.000Z","_age_weeks":110,"_stars_per_week":9.66,"_topics":["rust","python","database","sql","dataframe"],"_last_commit_date":"2023-02-10T00:00:00.000Z","_pop_contributor_count":30,"_pop_contributor_logins":["Wukkkinz-0725","Yizhou150","alswang18","auyer@estrategiaeducacional","dovahcrow@sfu-db","gruuya@splitgraph","jinzew","lBilali","wangxiaoying@sfu-db","wseaton@redhatofficial"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["estrategiaeducacional","redhatofficial","sfu-db","splitgraph"],"_pop_contributor_orgs_raw":["@RedHatOfficial","@sfu-db ","Estrategia Educacional","Splitgraph"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.58,"_pop_updated_issues_count":57,"_pop_closed_issues_count":12,"_pop_created_since_days":26,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":57.0,"_pop_comment_count":85.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":40.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sfu-db/connector-x/master/README.md","_readme_localurl":"sfu-db~connector-x~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":449,"category":"gis","githuburl":"https://github.com/residentmario/geoplot","featured":1.0,"links":null,"description":null,"_repopath":"residentmario/geoplot","_reponame":"geoplot","_stars":1050,"_forks":91,"_watches":35,"_language":"Python","_homepage":"https://residentmario.github.io/geoplot/index.html","_description":"geoplot: High-level geospatial data visualization library for Python.","_organization":"residentmario","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2016-06-29T00:00:00.000Z","_age_weeks":347,"_stars_per_week":3.03,"_topics":["geospatial-visualization","geospatial-data","matplotlib","geopandas","spatial-analysis"],"_last_commit_date":"2022-03-18T00:00:00.000Z","_pop_contributor_count":5,"_pop_contributor_logins":["QuLogic","ResidentMario","akarve@quiltdata","lmmarsano","martinfleis"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["quiltdata"],"_pop_contributor_orgs_raw":["@QuiltData"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.21,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":81,"_pop_updated_since_days":11,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":3.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":16.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/residentmario/geoplot/master/README.md","_readme_localurl":"residentmario~geoplot~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/residentmario/geoplot/master/setup.py"],"_requirements_localurls":["residentmario~geoplot~setup.py"]},{"index":447,"category":"ml","githuburl":"https://github.com/csinva/imodels","featured":null,"links":null,"description":null,"_repopath":"csinva/imodels","_reponame":"imodels","_stars":1045,"_forks":97,"_watches":24,"_language":"Jupyter Notebook","_homepage":"https://csinva.io/imodels","_description":"imodels: Interpretable ML package \ud83d\udd0d for concise, transparent, and accurate predictive modeling (sklearn-compatible).","_organization":"csinva","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-07-04T00:00:00.000Z","_age_weeks":189,"_stars_per_week":5.5,"_topics":["interpretability","machine-learning","data-science","artificial-intelligence","ml","ai","statistics","scikit-learn","python","optimal-classification-tree","rulefit","imodels","rule-learning","supervised-learning","explainable-ml","explainable-ai","rules","bayesian-rule-list"],"_last_commit_date":"2023-02-12T00:00:00.000Z","_pop_contributor_count":15,"_pop_contributor_logins":["OmerRonen","aagarwal1996","bachsh@authomize","csinva@seniorresearcher","keyan3@berkeleyairesearchlab","mepland","sms1097","thewchan","tiffanymtang@universityofcalifornia,berkeley","yanshuotan"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["authomize","berkeleyairesearchlab","seniorresearcher","universityofcalifornia,berkeley"],"_pop_contributor_orgs_raw":["@authomize ","Berkeley AI Research Lab","Senior researcher","University of California, Berkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.81,"_pop_updated_issues_count":26,"_pop_closed_issues_count":20,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":26.0,"_pop_comment_count":55.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":40.63,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/csinva/imodels/master/readme.md","_readme_localurl":"csinva~imodels~readme.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/csinva/imodels/master/setup.py"],"_requirements_localurls":["csinva~imodels~setup.py"]},{"index":644,"category":"util","githuburl":"https://github.com/metachris/logzero","featured":null,"links":null,"description":null,"_repopath":"metachris/logzero","_reponame":"logzero","_stars":1030,"_forks":69,"_watches":26,"_language":"Python","_homepage":"https://logzero.readthedocs.io","_description":"logzero: Robust and effective logging for Python 2 and 3.","_organization":"metachris","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2017-06-12T00:00:00.000Z","_age_weeks":297,"_stars_per_week":3.46,"_topics":["python","logging","logzero","logfiles"],"_last_commit_date":"2021-03-17T00:00:00.000Z","_pop_contributor_count":12,"_pop_contributor_logins":["SitiSchu@mojurasu","carlodri","christianscott@canva","davidhuser@baosystems","delirious-lettuce","dmartin35","lumbric","metachris@flashbots","pyup-bot@pyupio","sebix@instituteforcommongoodtechnology"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["baosystems","canva","flashbots","instituteforcommongoodtechnology","mojurasu","pyupio"],"_pop_contributor_orgs_raw":["@Canva","@Mojurasu ","@baosystems","@pyupio","Flashbots","Institute for Common Good Technology"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":5,"_pop_closed_issues_count":3,"_pop_created_since_days":69,"_pop_updated_since_days":24,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":5.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":25.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/metachris/logzero/master/README.md","_readme_localurl":"metachris~logzero~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/metachris/logzero/master/setup.py"],"_requirements_localurls":["metachris~logzero~setup.py"]},{"index":444,"category":"gis","githuburl":"https://github.com/toblerity/fiona","featured":null,"links":null,"description":null,"_repopath":"toblerity/fiona","_reponame":"Fiona","_stars":1017,"_forks":196,"_watches":48,"_language":"Python","_homepage":"https://fiona.readthedocs.io/","_description":"Fiona reads and writes geographic data files","_organization":"toblerity","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2011-12-31T00:00:00.000Z","_age_weeks":581,"_stars_per_week":1.75,"_topics":["python","gis","vector","gdal","ogr","cli","cython"],"_last_commit_date":"2023-02-10T00:00:00.000Z","_pop_contributor_count":66,"_pop_contributor_logins":["QuLogic","geowurster","lordi","micahcochran","mwtoews@gnsscience","perrygeo","rbuffat","sgillies@planetlabs","snorfalorpagus","snowman2@corteva"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["corteva","gnsscience","planetlabs"],"_pop_contributor_orgs_raw":["@corteva ","@planetlabs","GNS Science"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.56,"_pop_updated_issues_count":110,"_pop_closed_issues_count":89,"_pop_created_since_days":136,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":110.0,"_pop_comment_count":126.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":45.21,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/toblerity/fiona/master/README.rst","_readme_localurl":"toblerity~fiona~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/toblerity/fiona/master/requirements.txt","https://raw.githubusercontent.com/toblerity/fiona/master/setup.py","https://raw.githubusercontent.com/toblerity/fiona/master/pyproject.toml"],"_requirements_localurls":["toblerity~fiona~requirements.txt","toblerity~fiona~setup.py","toblerity~fiona~pyproject.toml"]},{"index":950,"category":"web","githuburl":"https://github.com/awtkns/fastapi-crudrouter","featured":null,"links":null,"description":null,"_repopath":"awtkns/fastapi-crudrouter","_reponame":"fastapi-crudrouter","_stars":1017,"_forks":121,"_watches":12,"_language":"Python","_homepage":"https://fastapi-crudrouter.awtkns.com","_description":"fastapi-crudrouter: A dynamic FastAPI router that automatically creates CRUD routes for your models","_organization":"awtkns","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-12-19T00:00:00.000Z","_age_weeks":113,"_stars_per_week":8.95,"_topics":["fastapi","code-generation","crud","api","swagger-ui","redoc","fastapi-crudrouter","crud-routes","rest","web","python","python3","sql","framework","async","asyncio","openapi-route","openapi"],"_last_commit_date":"2023-01-28T00:00:00.000Z","_pop_contributor_count":21,"_pop_contributor_logins":["DorskFR","agallant","andreipopovici","andrewthetechie","awtkns@article","collerek@kaizentech","dclimber","jm-moreau@anjuna","sondrelg@otovosnok","turalpb"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anjuna","article","kaizentech","otovosnok"],"_pop_contributor_orgs_raw":["@otovo @snok","Anjuna","Article","KaizenTech"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.75,"_pop_updated_issues_count":19,"_pop_closed_issues_count":7,"_pop_created_since_days":26,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":19.0,"_pop_comment_count":21.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":31.66,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/awtkns/fastapi-crudrouter/master/README.md","_readme_localurl":"awtkns~fastapi-crudrouter~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/awtkns/fastapi-crudrouter/master/requirements.txt","https://raw.githubusercontent.com/awtkns/fastapi-crudrouter/master/setup.py"],"_requirements_localurls":["awtkns~fastapi-crudrouter~requirements.txt","awtkns~fastapi-crudrouter~setup.py"]},{"index":707,"category":"util","githuburl":"https://github.com/brandon-rhodes/python-patterns","featured":null,"links":null,"description":null,"_repopath":"brandon-rhodes/python-patterns","_reponame":"python-patterns","_stars":1015,"_forks":93,"_watches":254,"_language":"Python","_homepage":null,"_description":"python-patterns: Source code behind the python-patterns.guide site by Brandon Rhodes","_organization":"brandon-rhodes","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-01-31T00:00:00.000Z","_age_weeks":264,"_stars_per_week":3.84,"_topics":[],"_last_commit_date":"2021-01-05T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["ReblochonMasque","brandon-rhodes","donkirkby@bccentreforexcellenceinhiv/aids","ethmcc"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bccentreforexcellenceinhiv/aids"],"_pop_contributor_orgs_raw":["BC Centre for Excellence in HIV/AIDS"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":62,"_pop_updated_since_days":26,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/brandon-rhodes/python-patterns/master/README.md","_readme_localurl":"brandon-rhodes~python-patterns~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/brandon-rhodes/python-patterns/master/requirements.txt"],"_requirements_localurls":["brandon-rhodes~python-patterns~requirements.txt"]},{"index":406,"category":"perf","githuburl":"https://github.com/pympler/pympler","featured":null,"links":null,"description":null,"_repopath":"pympler/pympler","_reponame":"pympler","_stars":1009,"_forks":82,"_watches":10,"_language":"Python","_homepage":null,"_description":"pympler: Development tool to measure, monitor and analyze the memory behavior of Python objects in a running Python application.","_organization":"pympler","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-10-04T00:00:00.000Z","_age_weeks":541,"_stars_per_week":1.86,"_topics":[],"_last_commit_date":"2022-07-24T00:00:00.000Z","_pop_contributor_count":29,"_pop_contributor_logins":["Pankrat@ableton","benjyw@toolchain","cjwatson","deemoowoor@finceptiv","dsuch@zatosource","gbtami","jwilk","mrJean1","thedrow","tirkarthi@visa"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ableton","finceptiv","toolchain","visa","zatosource"],"_pop_contributor_orgs_raw":["@finceptiv ","@zatosource","Ableton","Toolchain","Visa Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":126,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":4.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":31.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pympler/pympler/master/README.md","_readme_localurl":"pympler~pympler~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pympler/pympler/master/setup.py","https://raw.githubusercontent.com/pympler/pympler/master/pyproject.toml"],"_requirements_localurls":["pympler~pympler~setup.py","pympler~pympler~pyproject.toml"]},{"index":728,"category":"gis","githuburl":"https://github.com/geospatialpython/pyshp","featured":null,"links":null,"description":null,"_repopath":"geospatialpython/pyshp","_reponame":"pyshp","_stars":1006,"_forks":260,"_watches":64,"_language":"Python","_homepage":null,"_description":"pyshp: This library reads and writes ESRI Shapefiles in pure Python.","_organization":"geospatialpython","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2014-03-04T00:00:00.000Z","_age_weeks":468,"_stars_per_week":2.15,"_topics":[],"_last_commit_date":"2023-02-02T00:00:00.000Z","_pop_contributor_count":42,"_pop_contributor_logins":["GeospatialPython@geospatialpython.com","ignamv","jmoujaes","karimbahgat","megies","micahcochran","mwtoews@gnsscience","pemn@valesa","riggsd@nationalparkservice","sebastic"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["geospatialpython.com","gnsscience","nationalparkservice","valesa"],"_pop_contributor_orgs_raw":["@nationalparkservice ","GNS Science","GeospatialPython.com","Vale SA"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":4,"_pop_closed_issues_count":0,"_pop_created_since_days":109,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":4.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":35.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/geospatialpython/pyshp/master/README.md","_readme_localurl":"geospatialpython~pyshp~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/geospatialpython/pyshp/master/setup.py","https://raw.githubusercontent.com/geospatialpython/pyshp/master/pyproject.toml"],"_requirements_localurls":["geospatialpython~pyshp~setup.py","geospatialpython~pyshp~pyproject.toml"]},{"index":598,"category":"data","githuburl":"https://github.com/uber/fiber","featured":null,"links":null,"description":null,"_repopath":"uber/fiber","_reponame":"fiber","_stars":1002,"_forks":113,"_watches":22,"_language":"Python","_homepage":"https://uber.github.io/fiber/","_description":"fiber: Distributed Computing for AI Made Simple","_organization":"uber","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2020-01-07T00:00:00.000Z","_age_weeks":163,"_stars_per_week":6.14,"_topics":["python","distributed-computing","multiprocessing","sandbox","machine-learning"],"_last_commit_date":"2021-03-15T00:00:00.000Z","_pop_contributor_count":5,"_pop_contributor_logins":["agrimrules@litesgroup","calio","danilopeixoto@delltechnologies","jimjag","rongou@nvidia"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["delltechnologies","litesgroup","nvidia"],"_pop_contributor_orgs_raw":["@LitesGroup ","@NVIDIA","Dell Technologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":38,"_pop_updated_since_days":24,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":3.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":17.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/uber/fiber/master/README.md","_readme_localurl":"uber~fiber~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/fiber/master/requirements.txt","https://raw.githubusercontent.com/uber/fiber/master/setup.py"],"_requirements_localurls":["uber~fiber~requirements.txt","uber~fiber~setup.py"]},{"index":614,"category":"testing","githuburl":"https://github.com/teemu/pytest-sugar","featured":null,"links":null,"description":null,"_repopath":"teemu/pytest-sugar","_reponame":"pytest-sugar","_stars":997,"_forks":68,"_watches":17,"_language":"Python","_homepage":"","_description":"pytest-sugar: a plugin for py.test that changes the default look and feel of py.test (e.g. progressbar, show tests that fail instantly)","_organization":"teemu","_updated_at":"2023-02-16T00:00:00.000Z","_created_at":"2013-06-25T00:00:00.000Z","_age_weeks":504,"_stars_per_week":1.98,"_topics":["pytest","pytest-sugar","python","testing","pytest-plugin"],"_last_commit_date":"2022-12-11T00:00:00.000Z","_pop_contributor_count":45,"_pop_contributor_logins":["GuillaumeFavelier@inria","Teemu@wolt","blueyed@freelancer,upforhire","emlove@homechef","graingert","jpvanhal@falcony-io","justinmayer","msabramo@adobe","or","thedrow"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["adobe","falcony-io","freelancer,upforhire","homechef","inria","wolt"],"_pop_contributor_orgs_raw":["@adobe","@falcony-io","@homechef","Freelancer, up for hire","INRIA","Wolt"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.81,"_pop_updated_issues_count":8,"_pop_closed_issues_count":4,"_pop_created_since_days":118,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":8.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":38.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/teemu/pytest-sugar/master/README.md","_readme_localurl":"teemu~pytest-sugar~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/teemu/pytest-sugar/master/setup.py"],"_requirements_localurls":["teemu~pytest-sugar~setup.py"]},{"index":739,"category":"pandas","githuburl":"https://github.com/machow/siuba","featured":null,"links":null,"description":null,"_repopath":"machow/siuba","_reponame":"siuba","_stars":995,"_forks":42,"_watches":21,"_language":"Python","_homepage":"https://siuba.org","_description":"siuba: Python library for using dplyr like syntax with pandas and SQL","_organization":"machow","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2019-02-09T00:00:00.000Z","_age_weeks":210,"_stars_per_week":4.73,"_topics":["data-analysis","python","pandas","sql","dplyr"],"_last_commit_date":"2022-11-16T00:00:00.000Z","_pop_contributor_count":10,"_pop_contributor_logins":["bakera81","breichholf","dependabot[bot]","isabelizimm@rstudio","ismayc@flatiron-school","kianmeng","kirillseva","machow@rstudio","sethvargo@google","tmastny"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["flatiron-school","google","rstudio"],"_pop_contributor_orgs_raw":["@Google","@flatiron-school","@rstudio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.79,"_pop_updated_issues_count":12,"_pop_closed_issues_count":2,"_pop_created_since_days":49,"_pop_updated_since_days":3,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":12.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":32.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/machow/siuba/master/README.md","_readme_localurl":"machow~siuba~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/machow/siuba/master/requirements.txt","https://raw.githubusercontent.com/machow/siuba/master/setup.py"],"_requirements_localurls":["machow~siuba~requirements.txt","machow~siuba~setup.py"]},{"index":740,"category":"ml","githuburl":"https://github.com/koaning/scikit-lego","featured":null,"links":null,"description":null,"_repopath":"koaning/scikit-lego","_reponame":"scikit-lego","_stars":974,"_forks":101,"_watches":19,"_language":"Python","_homepage":"https://scikit-lego.netlify.app","_description":"scikit-lego: Extra blocks for scikit-learn pipelines.","_organization":"koaning","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2019-01-21T00:00:00.000Z","_age_weeks":213,"_stars_per_week":4.57,"_topics":["scikit-learn","machine-learning","common-sense"],"_last_commit_date":"2022-12-21T00:00:00.000Z","_pop_contributor_count":56,"_pop_contributor_logins":["Garve","MBrouns@xcceleratedpydataamsterdam","Pverheijen@hollandstartup","arthurpaulino@yatimainc","daimonie","koaning@explosion","ktiamur","maxibor@maxplanckinstituteforevolutionaryanthropology","pim-hoeven","stephanecollot@m-gate"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["explosion","hollandstartup","m-gate","maxplanckinstituteforevolutionaryanthropology","xcceleratedpydataamsterdam","yatimainc"],"_pop_contributor_orgs_raw":["@Xccelerated @PyDataAmsterdam ","@explosion","Holland Startup","M-GaTE","Max Planck institute for Evolutionary Anthropology","Yatima Inc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.5,"_pop_updated_issues_count":8,"_pop_closed_issues_count":4,"_pop_created_since_days":50,"_pop_updated_since_days":2,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":8.0,"_pop_comment_count":32.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.0,"_pop_dependents_count":0,"_pop_score":41.01,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/koaning/scikit-lego/master/readme.md","_readme_localurl":"koaning~scikit-lego~readme.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/koaning/scikit-lego/master/setup.py"],"_requirements_localurls":["koaning~scikit-lego~setup.py"]},{"index":631,"category":"util","githuburl":"https://github.com/pyca/bcrypt","featured":null,"links":null,"description":null,"_repopath":"pyca/bcrypt","_reponame":"bcrypt","_stars":972,"_forks":135,"_watches":28,"_language":"Python","_homepage":"","_description":"bcrypt: Modern(-ish) password hashing for your software and your servers","_organization":"pyca","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2013-05-11T00:00:00.000Z","_age_weeks":510,"_stars_per_week":1.9,"_topics":["python"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":31,"_pop_contributor_logins":["alex","bsoyka","chris-erickson","dependabot[bot]","dstufft@datadog","jazzyb","jdufresne@pioneervalleybooks","odidev@puresoftware","reaperhulk","webknjaz@ansiblecoreredhatofficial"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ansiblecoreredhatofficial","datadog","pioneervalleybooks","puresoftware"],"_pop_contributor_orgs_raw":["@Ansible Core @ @RedHatOfficial","@DataDog","Pioneer Valley Books","Puresoftware"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.31,"_pop_updated_issues_count":56,"_pop_closed_issues_count":56,"_pop_created_since_days":119,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":56.0,"_pop_comment_count":21.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":40.68,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyca/bcrypt/master/README.rst","_readme_localurl":"pyca~bcrypt~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyca/bcrypt/master/requirements.txt","https://raw.githubusercontent.com/pyca/bcrypt/master/setup.py","https://raw.githubusercontent.com/pyca/bcrypt/master/pyproject.toml"],"_requirements_localurls":["pyca~bcrypt~requirements.txt","pyca~bcrypt~setup.py","pyca~bcrypt~pyproject.toml"]},{"index":482,"category":"gis","githuburl":"https://github.com/sentinel-hub/eo-learn","featured":null,"links":null,"description":null,"_repopath":"sentinel-hub/eo-learn","_reponame":"eo-learn","_stars":971,"_forks":280,"_watches":48,"_language":"Python","_homepage":null,"_description":"eo-learn: Earth observation processing framework for machine learning in Python","_organization":"sentinel-hub","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-05-31T00:00:00.000Z","_age_weeks":246,"_stars_per_week":3.93,"_topics":["machine-learning","eo-data","eo-research","python-package"],"_last_commit_date":"2023-01-24T00:00:00.000Z","_pop_contributor_count":50,"_pop_contributor_logins":["AleksMat@google","andrejburja","batic@sinergise","devisperessutti@sinergisesentinel-hub","iovsn","lojzezust","mlubej@eoresearchteamsinergise","tomislijepcevic","wouellette@https://soilwatch.eu","zigaLuksic@sinergise"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["eoresearchteamsinergise","google","https://soilwatch.eu","sinergise","sinergisesentinel-hub"],"_pop_contributor_orgs_raw":["@sinergise ","@sinergise @sentinel-hub ","EO Research Team @ Sinergise","Google","Sinergise","https://soilwatch.eu"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.96,"_pop_updated_issues_count":70,"_pop_closed_issues_count":61,"_pop_created_since_days":58,"_pop_updated_since_days":1,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":70.0,"_pop_comment_count":60.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":43.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sentinel-hub/eo-learn/master/README.md","_readme_localurl":"sentinel-hub~eo-learn~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sentinel-hub/eo-learn/master/setup.py","https://raw.githubusercontent.com/sentinel-hub/eo-learn/master/pyproject.toml"],"_requirements_localurls":["sentinel-hub~eo-learn~setup.py","sentinel-hub~eo-learn~pyproject.toml"]},{"index":379,"category":"ml-interpretability","githuburl":"https://github.com/cdpierse/transformers-interpret","featured":null,"links":null,"description":null,"_repopath":"cdpierse/transformers-interpret","_reponame":"transformers-interpret","_stars":966,"_forks":85,"_watches":17,"_language":"Jupyter Notebook","_homepage":"","_description":"transformers-interpret: Model explainability that works seamlessly with \ud83e\udd17 transformers. Explain your transformers model in just 2 lines of code. ","_organization":"cdpierse","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-05-27T00:00:00.000Z","_age_weeks":143,"_stars_per_week":6.76,"_topics":["nlp","machine-learning","natural-language-processing","explainable-ai","transformers","model-explainability","transformers-model","captum","deep-learning","neural-network","interpretability","computer-vision"],"_last_commit_date":"2023-01-14T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["Voyz","cdpierse@quantcopy","cwenner@mavenoid;omnimodular","dependabot[bot]","lalitpagaria@oraikatechnologies","pabvald@dfki/universit\u00e4tdessaarlandes","rinapch@exhuman-ai"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["dfki/universit\u00e4tdessaarlandes","exhuman-ai","mavenoid;omnimodular","oraikatechnologies","quantcopy"],"_pop_contributor_orgs_raw":["@exhuman-ai ","@quantcopy","DFKI / Universit\u00e4t des Saarlandes","Mavenoid; OmniModular","Oraika Technologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.85,"_pop_updated_issues_count":10,"_pop_closed_issues_count":1,"_pop_created_since_days":33,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":10.0,"_pop_comment_count":16.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":31.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/README.md","_readme_localurl":"cdpierse~transformers-interpret~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/requirements.txt","https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/setup.py","https://raw.githubusercontent.com/cdpierse/transformers-interpret/master/pyproject.toml"],"_requirements_localurls":["cdpierse~transformers-interpret~requirements.txt","cdpierse~transformers-interpret~setup.py","cdpierse~transformers-interpret~pyproject.toml"]},{"index":271,"category":"crypto","githuburl":"https://github.com/man-c/pycoingecko","featured":null,"links":null,"description":null,"_repopath":"man-c/pycoingecko","_reponame":"pycoingecko","_stars":962,"_forks":257,"_watches":33,"_language":"Python","_homepage":"","_description":"pycoingecko: Python wrapper for the CoinGecko API","_organization":"man-c","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2018-08-24T00:00:00.000Z","_age_weeks":234,"_stars_per_week":4.1,"_topics":["python3","api-wrapper","api","wrapper","cryptocurrency","crypto","coingecko","python","nft","nfts"],"_last_commit_date":"2022-10-26T00:00:00.000Z","_pop_contributor_count":14,"_pop_contributor_logins":["EmperorMew@snowcone","gkrasulya","glints","hmallen","man-c","mfiro","nejcb1","scrambldchannel","trevisanj","tsifrer"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["snowcone"],"_pop_contributor_orgs_raw":["Snowcone "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":3,"_pop_closed_issues_count":2,"_pop_created_since_days":55,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":3.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":24.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/man-c/pycoingecko/master/README.md","_readme_localurl":"man-c~pycoingecko~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/man-c/pycoingecko/master/setup.py"],"_requirements_localurls":["man-c~pycoingecko~setup.py"]},{"index":980,"category":"ml","githuburl":"https://github.com/google/vizier","featured":null,"links":null,"description":null,"_repopath":"google/vizier","_reponame":"vizier","_stars":949,"_forks":44,"_watches":20,"_language":"Python","_homepage":"https://oss-vizier.readthedocs.io","_description":"vizier: Python-based research interface for blackbox and hyperparameter optimization, based on the internal Google Vizier Service.","_organization":"google","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-02-16T00:00:00.000Z","_age_weeks":53,"_stars_per_week":17.91,"_topics":["vizier","hyperparameter-optimization","tuning","tuning-parameters","blackbox-optimization","hyperparameter-tuning","bayesian-optimization","evolutionary-algorithms","distributed-systems","distributed-computing","grpc","open-source","google","algorithm","deep-learning","machine-learning","optimization"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":15,"_pop_contributor_logins":["Ark-kun@google","SetarehAr@northeasternuniversity","belenkil","chansoo-google","daiyip","emilyfertig","qiuyiz@google","rchen152","sagipe","xingyousong@googlebrain"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","googlebrain","northeasternuniversity"],"_pop_contributor_orgs_raw":["@google","Google","Google Brain","Northeastern University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.88,"_pop_updated_issues_count":187,"_pop_closed_issues_count":173,"_pop_created_since_days":12,"_pop_updated_since_days":0,"_pop_recent_releases_count":19,"_pop_recent_releases_estimated_tags":20,"_pop_recent_releases_adjusted_count":19,"_pop_issue_count":187.0,"_pop_comment_count":42.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":37.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/vizier/master/README.md","_readme_localurl":"google~vizier~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/vizier/master/requirements.txt","https://raw.githubusercontent.com/google/vizier/master/setup.py"],"_requirements_localurls":["google~vizier~requirements.txt","google~vizier~setup.py"]},{"index":820,"category":"viz","githuburl":"https://github.com/facultyai/dash-bootstrap-components","featured":null,"links":null,"description":null,"_repopath":"facultyai/dash-bootstrap-components","_reponame":"dash-bootstrap-components","_stars":949,"_forks":202,"_watches":21,"_language":"JavaScript","_homepage":"https://dash-bootstrap-components.opensource.faculty.ai/","_description":"dash-bootstrap-components: Bootstrap components for Plotly Dash","_organization":"facultyai","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2018-09-21T00:00:00.000Z","_age_weeks":230,"_stars_per_week":4.11,"_topics":["bootstrap","plotly-dash","python","dashboards","r","julia"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":29,"_pop_contributor_logins":["AnnMarieW@nostarchpress-thebookofdash","acroz@facultyai","ann-marie-ward","dependabot[bot]","glsdown","pbugnion@facultyai","romainmartinez@universit\u00e9demontr\u00e9al","shwinnn","srstevenson","tcbegley@facebook"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook","facultyai","nostarchpress-thebookofdash","universit\u00e9demontr\u00e9al"],"_pop_contributor_orgs_raw":["@facebook","@facultyai","@facultyai ","No Starch Press - The Book of Dash","Universit\u00e9 de Montr\u00e9al"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.52,"_pop_updated_issues_count":56,"_pop_closed_issues_count":52,"_pop_created_since_days":54,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":33,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":56.0,"_pop_comment_count":33.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":41.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facultyai/dash-bootstrap-components/master/README.md","_readme_localurl":"facultyai~dash-bootstrap-components~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facultyai/dash-bootstrap-components/master/setup.py","https://raw.githubusercontent.com/facultyai/dash-bootstrap-components/master/pyproject.toml"],"_requirements_localurls":["facultyai~dash-bootstrap-components~setup.py","facultyai~dash-bootstrap-components~pyproject.toml"]},{"index":236,"category":"sim","githuburl":"https://github.com/salesforce/ai-economist","featured":1.0,"links":null,"description":null,"_repopath":"salesforce/ai-economist","_reponame":"ai-economist","_stars":945,"_forks":194,"_watches":46,"_language":"Python","_homepage":"https://www.einstein.ai/the-ai-economist","_description":"ai-economist: Foundation is a flexible, modular, and composable framework to model socio-economic behaviors and dynamics with both agents and governments. This framework can be used in conjunction with reinforcement learning to learn optimal economic policies,\u00a0as done by the AI Economist (https://www.einstein.ai/the-ai-economist).","_organization":"salesforce","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-07-02T00:00:00.000Z","_age_weeks":137,"_stars_per_week":6.85,"_topics":["ai","ml","multi-agent","multi-agent-reinforcement-learning","deep-reinforcement-learning","reinforcement-learning-environments","simulation-framework","python-3","economics"],"_last_commit_date":"2022-05-09T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["NoSoyTuMadre@capgemini&threescoopstransport","alextrott16","dependabot[bot]","sunil-s@salesforceresearch","svc-scm","tljstewart@apple"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["apple","capgemini&threescoopstransport","salesforceresearch"],"_pop_contributor_orgs_raw":["Apple Inc.","Capgemini & Three Scoops Transport, LLC","Salesforce Research"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":32,"_pop_updated_since_days":10,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":16.52,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/ai-economist/master/README.md","_readme_localurl":"salesforce~ai-economist~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/salesforce/ai-economist/master/requirements.txt","https://raw.githubusercontent.com/salesforce/ai-economist/master/setup.py"],"_requirements_localurls":["salesforce~ai-economist~requirements.txt","salesforce~ai-economist~setup.py"]},{"index":402,"category":"perf","githuburl":"https://github.com/tiangolo/asyncer","featured":null,"links":null,"description":null,"_repopath":"tiangolo/asyncer","_reponame":"asyncer","_stars":945,"_forks":38,"_watches":15,"_language":"Python","_homepage":"https://asyncer.tiangolo.com/","_description":"Asyncer, async and await, focused on developer experience.","_organization":"tiangolo","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-01-04T00:00:00.000Z","_age_weeks":59,"_stars_per_week":15.98,"_topics":["python","async","asyncio","trio","anyio"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":10,"_pop_contributor_logins":["JonasKs@snok,intility","Kludex@encode","dependabot[bot]","michaeloliverx@resgroup","pre-commit-ci[bot]","sanders41@ethyca","tiangolo","vrslev","windson"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["encode","ethyca","resgroup","snok,intility"],"_pop_contributor_orgs_raw":["@encode","@ethyca","@resgroup","@snok, @intility"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.19,"_pop_updated_issues_count":14,"_pop_closed_issues_count":8,"_pop_created_since_days":14,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":14.0,"_pop_comment_count":24.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":31.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/asyncer/master/README.md","_readme_localurl":"tiangolo~asyncer~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tiangolo/asyncer/master/pyproject.toml"],"_requirements_localurls":["tiangolo~asyncer~pyproject.toml"]},{"index":633,"category":"util","githuburl":"https://github.com/pyca/pynacl","featured":null,"links":null,"description":null,"_repopath":"pyca/pynacl","_reponame":"pynacl","_stars":944,"_forks":219,"_watches":27,"_language":"C","_homepage":"https://pynacl.readthedocs.io/","_description":"pynacl: Python binding to the Networking and Cryptography (NaCl) library","_organization":"pyca","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2013-02-22T00:00:00.000Z","_age_weeks":521,"_stars_per_week":1.81,"_topics":["cryptography","libsodium","nacl","python"],"_last_commit_date":"2023-01-19T00:00:00.000Z","_pop_contributor_count":64,"_pop_contributor_logins":["Ayrx","DMRobertson@vector-im","JackWink","alex","davidfischer","dependabot[bot]","dstufft@datadog","lmctv","reaperhulk","warner"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["datadog","vector-im"],"_pop_contributor_orgs_raw":["@DataDog","@vector-im"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":13,"_pop_closed_issues_count":10,"_pop_created_since_days":122,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":13.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":35.46,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pyca/pynacl/master/README.rst","_readme_localurl":"pyca~pynacl~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyca/pynacl/master/setup.py","https://raw.githubusercontent.com/pyca/pynacl/master/pyproject.toml"],"_requirements_localurls":["pyca~pynacl~setup.py","pyca~pynacl~pyproject.toml"]},{"index":962,"category":"util","githuburl":"https://github.com/fabiocaccamo/python-benedict","featured":null,"links":null,"description":null,"_repopath":"fabiocaccamo/python-benedict","_reponame":"python-benedict","_stars":940,"_forks":41,"_watches":12,"_language":"Python","_homepage":"","_description":"python-benedict: :blue_book: dict subclass with keylist/keypath support, built-in I/O operations (base64, csv, ini, json, pickle, plist, query-string, toml, xls, xml, yaml), s3 support and many utilities.","_organization":"fabiocaccamo","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-05-17T00:00:00.000Z","_age_weeks":196,"_stars_per_week":4.78,"_topics":["python","dict","dictionary","keypath","base64","csv","json","pickle","plist","query-string","toml","xml","yaml","encode","decode","filter","flatten","subset","traverse","xls"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":5,"_pop_contributor_logins":["dependabot[bot]","fabiocaccamo@blackfoundry","github-actions[bot]","neutrinoceros@institutdeplan\u00e9tologieetd'astrophysiquedegrenoble(ipag)","pre-commit-ci[bot]"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["blackfoundry","institutdeplan\u00e9tologieetd'astrophysiquedegrenoble(ipag)"],"_pop_contributor_orgs_raw":["Black Foundry","Institut de Plan\u00e9tologie et d'Astrophysique de Grenoble (IPAG)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.88,"_pop_updated_issues_count":111,"_pop_closed_issues_count":107,"_pop_created_since_days":46,"_pop_updated_since_days":0,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":111.0,"_pop_comment_count":110.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":36.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fabiocaccamo/python-benedict/master/README.md","_readme_localurl":"fabiocaccamo~python-benedict~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/fabiocaccamo/python-benedict/master/requirements.txt","https://raw.githubusercontent.com/fabiocaccamo/python-benedict/master/setup.py","https://raw.githubusercontent.com/fabiocaccamo/python-benedict/master/pyproject.toml"],"_requirements_localurls":["fabiocaccamo~python-benedict~requirements.txt","fabiocaccamo~python-benedict~setup.py","fabiocaccamo~python-benedict~pyproject.toml"]},{"index":541,"category":"util","githuburl":"https://github.com/pdoc3/pdoc","featured":null,"links":null,"description":null,"_repopath":"pdoc3/pdoc","_reponame":"pdoc","_stars":937,"_forks":137,"_watches":9,"_language":"Python","_homepage":"https://pdoc3.github.io/pdoc/","_description":"pdoc: :snake: :arrow_right: :scroll: Auto-generate API documentation for Python projects","_organization":"pdoc3","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-01-02T00:00:00.000Z","_age_weeks":216,"_stars_per_week":4.34,"_topics":["documentation","generator","documentation-generator","documentation-tool","documentation-dumper","api-documentation","python","python3","docs","docs-generator","docstrings","docstring","docstring-documentation","pdoc","hacktoberfest"],"_last_commit_date":"2022-12-21T00:00:00.000Z","_pop_contributor_count":58,"_pop_contributor_logins":["BurntSushi@salesforce","Hibou57","aomader","cortesi","dhimmel@related-sciences","jvantuyl","kchmck","kernc","knadh@zerodha","mhils"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["related-sciences","salesforce","zerodha"],"_pop_contributor_orgs_raw":["@related-sciences","@salesforce","Zerodha"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":9,"_pop_closed_issues_count":3,"_pop_created_since_days":50,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":9.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":34.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pdoc3/pdoc/master/README.md","_readme_localurl":"pdoc3~pdoc~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pdoc3/pdoc/master/setup.py"],"_requirements_localurls":["pdoc3~pdoc~setup.py"]},{"index":935,"category":"nlp","githuburl":"https://github.com/jonasgeiping/cramming","featured":null,"links":null,"description":null,"_repopath":"jonasgeiping/cramming","_reponame":"cramming","_stars":935,"_forks":60,"_watches":18,"_language":"Python","_homepage":"","_description":"Cramming the training of a (BERT-type) language model into limited compute.","_organization":"jonasgeiping","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-12-29T00:00:00.000Z","_age_weeks":7,"_stars_per_week":119.0,"_topics":["english-language","language-model","machine-learning"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["JonasGeiping@computerscienceatumd","ss18@kpn","w32zhong"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["computerscienceatumd","kpn"],"_pop_contributor_orgs_raw":["@kpn","Computer Science at UMD"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.5,"_pop_updated_issues_count":12,"_pop_closed_issues_count":10,"_pop_created_since_days":2,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":12.0,"_pop_comment_count":33.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":0,"_pop_score":21.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jonasgeiping/cramming/master/README.md","_readme_localurl":"jonasgeiping~cramming~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jonasgeiping/cramming/master/pyproject.toml"],"_requirements_localurls":["jonasgeiping~cramming~pyproject.toml"]},{"index":504,"category":"gis","githuburl":"https://github.com/anitagraser/movingpandas","featured":null,"links":null,"description":null,"_repopath":"anitagraser/movingpandas","_reponame":"movingpandas","_stars":928,"_forks":168,"_watches":38,"_language":"Python","_homepage":"http://movingpandas.org","_description":"movingpandas: Implementation of Trajectory classes and functions built on top of GeoPandas","_organization":"anitagraser","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2018-12-16T00:00:00.000Z","_age_weeks":218,"_stars_per_week":4.25,"_topics":["geopandas","trajectory","movement-data","trajectory-analysis","python","spatial-data-analysis"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":30,"_pop_contributor_logins":["JaviBecerra@panoimagen","Robinlovelace@universityofleeds","anitagraser","astrojuanlu@kedro-org","boiko","giorgostheo","gprichter","parnelandr","raybellwaves@dtn","sglvladi@universityofliverpool"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["dtn","kedro-org","panoimagen","universityofleeds","universityofliverpool"],"_pop_contributor_orgs_raw":["@PANOimagen ","@kedro-org","DTN","University of Leeds","University of Liverpool"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.13,"_pop_updated_issues_count":35,"_pop_closed_issues_count":23,"_pop_created_since_days":51,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":35.0,"_pop_comment_count":49.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":41.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/anitagraser/movingpandas/master/README.md","_readme_localurl":"anitagraser~movingpandas~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/anitagraser/movingpandas/master/setup.py"],"_requirements_localurls":["anitagraser~movingpandas~setup.py"]},{"index":468,"category":"ml","githuburl":"https://github.com/huggingface/optimum","featured":null,"links":null,"description":null,"_repopath":"huggingface/optimum","_reponame":"optimum","_stars":925,"_forks":133,"_watches":41,"_language":"Python","_homepage":"https://huggingface.co/docs/optimum/","_description":"optimum: \ud83c\udfce\ufe0f Accelerate training and inference of \ud83e\udd17 Transformers with easy to use hardware optimization tools","_organization":"huggingface","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2021-07-20T00:00:00.000Z","_age_weeks":83,"_stars_per_week":11.13,"_topics":["onnx","pytorch","inference","training","intel","graphcore","onnxruntime","transformers","quantization","habana","optimization"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":52,"_pop_contributor_logins":["JingyaHuang@huggingface","echarlaix@huggingface","fxmarty@huggingface","lewtun@huggingface","madlag","mfuntowicz@huggingface","mht-sharma","michaelbenayoun@huggingface","regisss","younesbelkada@ensparissaclay"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ensparissaclay","huggingface"],"_pop_contributor_orgs_raw":["@huggingface","@huggingface ","ENS Paris Saclay","Hugging Face"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.19,"_pop_updated_issues_count":340,"_pop_closed_issues_count":262,"_pop_created_since_days":19,"_pop_updated_since_days":0,"_pop_recent_releases_count":18,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":342.0,"_pop_comment_count":947.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":0,"_pop_score":46.28,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/huggingface/optimum/master/README.md","_readme_localurl":"huggingface~optimum~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/huggingface/optimum/master/setup.py","https://raw.githubusercontent.com/huggingface/optimum/master/pyproject.toml"],"_requirements_localurls":["huggingface~optimum~setup.py","huggingface~optimum~pyproject.toml"]},{"index":251,"category":"ml-dl","githuburl":"https://github.com/tensorflow/similarity","featured":null,"links":null,"description":null,"_repopath":"tensorflow/similarity","_reponame":"similarity","_stars":923,"_forks":90,"_watches":31,"_language":"Python","_homepage":"","_description":"similarity: TensorFlow Similarity is a python package focused on making similarity learning quick and easy.","_organization":"tensorflow","_updated_at":"2023-02-16T00:00:00.000Z","_created_at":"2020-06-15T00:00:00.000Z","_age_weeks":140,"_stars_per_week":6.58,"_topics":["similarity-learning","metric-learning","similarity-search","nearest-neighbor-search","nearest-neighbors","deep-learning","tensorflow","contrastive-learning","machine-learning","unsupervised-learning","clustering","python","simclr","simclr2","barlow-twins","simsiam","cosine-similarity","knn"],"_last_commit_date":"2023-01-16T00:00:00.000Z","_pop_contributor_count":23,"_pop_contributor_logins":["DominikSchmidtqq@google","abhisharsinha@indianinstituteoftechnologyhyderabad","adammichaelwood@google","dependabot[bot]","ebursztein@google","hanneshapke@digits","jamlong@google","owenvallis@google","shun-lin@google","yonigottesman"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["digits","google","indianinstituteoftechnologyhyderabad"],"_pop_contributor_orgs_raw":["@digits ","@google","@google ","Google","Indian Institute of Technology Hyderabad"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.71,"_pop_updated_issues_count":17,"_pop_closed_issues_count":10,"_pop_created_since_days":33,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":17.0,"_pop_comment_count":33.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":32.85,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/similarity/master/README.md","_readme_localurl":"tensorflow~similarity~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorflow/similarity/master/setup.py","https://raw.githubusercontent.com/tensorflow/similarity/master/pyproject.toml"],"_requirements_localurls":["tensorflow~similarity~setup.py","tensorflow~similarity~pyproject.toml"]},{"index":387,"category":"nlp","githuburl":"https://github.com/shivam5992/textstat","featured":null,"links":null,"description":null,"_repopath":"shivam5992/textstat","_reponame":"textstat","_stars":919,"_forks":148,"_watches":17,"_language":"Python","_homepage":"https://textstat.org","_description":"textstat: :memo: python package to calculate readability statistics of a text object - paragraphs, sentences, articles.","_organization":"shivam5992","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2014-06-18T00:00:00.000Z","_age_weeks":453,"_stars_per_week":2.03,"_topics":["python","textstat","readability","flesch-kincaid-grade","smog","flesch-reading-ease"],"_last_commit_date":"2022-07-08T00:00:00.000Z","_pop_contributor_count":46,"_pop_contributor_logins":["GuillemGSubies","LKirst","MKaras93","alonsoC1s","alxwrd@tessian","cclauss@christianclauss","hugovk@nordsoftware","lukaschoebel","massvoice","shivam5992"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["christianclauss","nordsoftware","tessian"],"_pop_contributor_orgs_raw":["@Tessian","Christian Clauss","Nord Software"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":106,"_pop_updated_since_days":8,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":30.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/shivam5992/textstat/master/README.md","_readme_localurl":"shivam5992~textstat~README.md","_requirements_filenames":["requirements.txt","setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/shivam5992/textstat/master/requirements.txt","https://raw.githubusercontent.com/shivam5992/textstat/master/setup.py","https://raw.githubusercontent.com/shivam5992/textstat/master/Pipfile"],"_requirements_localurls":["shivam5992~textstat~requirements.txt","shivam5992~textstat~setup.py","shivam5992~textstat~Pipfile"]},{"index":750,"category":"data","githuburl":"https://github.com/pytorch/data","featured":null,"links":null,"description":null,"_repopath":"pytorch/data","_reponame":"data","_stars":916,"_forks":111,"_watches":26,"_language":"Python","_homepage":"","_description":"data: A PyTorch repo for data loading and utilities to be shared by the PyTorch domain libraries.","_organization":"pytorch","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2021-05-12T00:00:00.000Z","_age_weeks":93,"_stars_per_week":9.85,"_topics":[],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":66,"_pop_contributor_logins":["DanilBaibak","NivekT","VitalyFedyunin","dahsh","ejguan@facebook","gaikwadabhishek","msaroufim@pytorch","ninginthecloud@universityofwashington/facebook","pmeier@quansight","ydaiming"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook","pytorch","quansight","universityofwashington/facebook"],"_pop_contributor_orgs_raw":["@PyTorch","@Quansight ","@facebook","University of Washington/ Facebook"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.37,"_pop_updated_issues_count":183,"_pop_closed_issues_count":134,"_pop_created_since_days":22,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":183.0,"_pop_comment_count":505.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":0,"_pop_score":46.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pytorch/data/master/README.md","_readme_localurl":"pytorch~data~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytorch/data/master/requirements.txt","https://raw.githubusercontent.com/pytorch/data/master/setup.py","https://raw.githubusercontent.com/pytorch/data/master/pyproject.toml"],"_requirements_localurls":["pytorch~data~requirements.txt","pytorch~data~setup.py","pytorch~data~pyproject.toml"]},{"index":219,"category":"template","githuburl":"https://github.com/tezromach/python-package-template","featured":1.0,"links":null,"description":null,"_repopath":"tezromach/python-package-template","_reponame":"python-package-template","_stars":914,"_forks":92,"_watches":6,"_language":"Python","_homepage":"","_description":"python-package-template: \ud83d\ude80 Your next Python package needs a bleeding-edge project structure.","_organization":"tezromach","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-04-15T00:00:00.000Z","_age_weeks":149,"_stars_per_week":6.13,"_topics":["python","cookiecutter","best-practices","semantic-versions","python-packages","codestyle","formatters","makefile","poetry","template"],"_last_commit_date":"2022-05-18T00:00:00.000Z","_pop_contributor_count":13,"_pop_contributor_logins":["ChenghaoMou@docusign","Dectinc@evision","N720720","TezRomacH","abassel","dependabot-preview[bot]","dependabot[bot]","hexfaker","pksol","volemont"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["docusign","evision"],"_pop_contributor_orgs_raw":["Docusign","eVision"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":108,"_pop_closed_issues_count":75,"_pop_created_since_days":35,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":108.0,"_pop_comment_count":77.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":28.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tezromach/python-package-template/master/README.md","_readme_localurl":"tezromach~python-package-template~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tezromach/python-package-template/master/pyproject.toml"],"_requirements_localurls":["tezromach~python-package-template~pyproject.toml"]},{"index":88,"category":"testing","githuburl":"https://github.com/taverntesting/tavern","featured":null,"links":null,"description":null,"_repopath":"taverntesting/tavern","_reponame":"tavern","_stars":909,"_forks":182,"_watches":28,"_language":"Python","_homepage":"https://taverntesting.github.io/","_description":"tavern: A command-line tool and Python library and Pytest plugin for automated testing of RESTful APIs, with a simple, concise and flexible YAML-based syntax","_organization":"taverntesting","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2017-11-01T00:00:00.000Z","_age_weeks":277,"_stars_per_week":3.28,"_topics":["python","pytest","testing","test-automation","mqtt","http"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":57,"_pop_contributor_logins":["Birne94@zalando","WhileLoop@opensourceart","benhowes","bitdivision","cetanu@atlassian","dependabot[bot]","imkaka@yellowmessengerprev-vogolabs","mbfr@forgerock","michaelboulton","tommilligan@reinfer,acquiredbyuipath"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["atlassian","forgerock","opensourceart","reinfer,acquiredbyuipath","yellowmessengerprev-vogolabs","zalando"],"_pop_contributor_orgs_raw":["@Atlassian","@OpenSourceArt","@Zalando","@reinfer, acquired by @UiPath","@yellowmessenger Prev - @vogolabs","Forgerock"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.63,"_pop_updated_issues_count":46,"_pop_closed_issues_count":38,"_pop_created_since_days":65,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":37,"_pop_recent_releases_adjusted_count":37,"_pop_issue_count":46.0,"_pop_comment_count":41.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":46.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/taverntesting/tavern/master/README.md","_readme_localurl":"taverntesting~tavern~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/taverntesting/tavern/master/requirements.txt","https://raw.githubusercontent.com/taverntesting/tavern/master/pyproject.toml"],"_requirements_localurls":["taverntesting~tavern~requirements.txt","taverntesting~tavern~pyproject.toml"]},{"index":622,"category":"util","githuburl":"https://github.com/pytoolz/cytoolz","featured":null,"links":null,"description":null,"_repopath":"pytoolz/cytoolz","_reponame":"cytoolz","_stars":906,"_forks":67,"_watches":23,"_language":"Python","_homepage":"","_description":"cytoolz: Cython implementation of Toolz: High performance functional utilities","_organization":"pytoolz","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-04-04T00:00:00.000Z","_age_weeks":463,"_stars_per_week":1.95,"_topics":[],"_last_commit_date":"2022-12-19T00:00:00.000Z","_pop_contributor_count":20,"_pop_contributor_logins":["cpcloud@voltrondata","dependabot[bot]","eriknw","groutr@lynkertechnologies","hmaarrfk@californiainstituteoftechnology","jcrist@voltrondata","larsmans","llllllllll@formerlyquantopian","mrocklin@coiled","pitrou"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["californiainstituteoftechnology","coiled","formerlyquantopian","lynkertechnologies","voltrondata"],"_pop_contributor_orgs_raw":["@coiled ","@voltrondata","California Institute of Technology","Lynker Technologies","formerly @quantopian"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.56,"_pop_updated_issues_count":9,"_pop_closed_issues_count":7,"_pop_created_since_days":108,"_pop_updated_since_days":2,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":9.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":35.1,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytoolz/cytoolz/master/README.rst","_readme_localurl":"pytoolz~cytoolz~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytoolz/cytoolz/master/setup.py","https://raw.githubusercontent.com/pytoolz/cytoolz/master/pyproject.toml"],"_requirements_localurls":["pytoolz~cytoolz~setup.py","pytoolz~cytoolz~pyproject.toml"]},{"index":891,"category":"util","githuburl":"https://github.com/xl0/lovely-tensors","featured":null,"links":null,"description":null,"_repopath":"xl0/lovely-tensors","_reponame":"lovely-tensors","_stars":905,"_forks":14,"_watches":8,"_language":"Jupyter Notebook","_homepage":"https://xl0.github.io/lovely-tensors","_description":"lovely-tensors: Tensors, ready for human consumption","_organization":"xl0","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-10-07T00:00:00.000Z","_age_weeks":19,"_stars_per_week":45.91,"_topics":["deep-learning","library","pytorch","statistics","visualization"],"_last_commit_date":"2023-01-27T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["xl0"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.88,"_pop_updated_issues_count":12,"_pop_closed_issues_count":11,"_pop_created_since_days":5,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":41,"_pop_recent_releases_adjusted_count":41,"_pop_issue_count":12.0,"_pop_comment_count":70.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":5.8,"_pop_dependents_count":0,"_pop_score":23.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/xl0/lovely-tensors/master/README.md","_readme_localurl":"xl0~lovely-tensors~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/xl0/lovely-tensors/master/setup.py"],"_requirements_localurls":["xl0~lovely-tensors~setup.py"]},{"index":672,"category":"perf","githuburl":"https://github.com/markshannon/faster-cpython","featured":null,"links":null,"description":null,"_repopath":"markshannon/faster-cpython","_reponame":"faster-cpython","_stars":899,"_forks":21,"_watches":83,"_language":null,"_homepage":null,"_description":"faster-cpython: How to make CPython faster.","_organization":"markshannon","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-10-19T00:00:00.000Z","_age_weeks":122,"_stars_per_week":7.35,"_topics":[],"_last_commit_date":"2020-10-28T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["brettcannon@microsoft","ericvsmith","markshannon","yasoob@colgateuniversity"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["colgateuniversity","microsoft"],"_pop_contributor_orgs_raw":["@microsoft ","Colgate University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":28,"_pop_updated_since_days":28,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/markshannon/faster-cpython/master/README.md","_readme_localurl":"markshannon~faster-cpython~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":204,"category":"debug","githuburl":"https://github.com/alexmojaki/snoop","featured":null,"links":null,"description":null,"_repopath":"alexmojaki/snoop","_reponame":"snoop","_stars":899,"_forks":31,"_watches":17,"_language":"Python","_homepage":"","_description":"snoop: A powerful set of Python debugging tools, based on PySnooper","_organization":"alexmojaki","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2019-05-13T00:00:00.000Z","_age_weeks":197,"_stars_per_week":4.56,"_topics":["python","debugging","debugger","debugging-tools","logging"],"_last_commit_date":"2022-12-22T00:00:00.000Z","_pop_contributor_count":22,"_pop_contributor_logins":["alexbers","alexmojaki","bittner@painless-software","cool-RR","czietz","danr@pharmbio","gpshead@google","marksmayo@teremtech","pohmelie@aratar.tech","volpatto@esss"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aratar.tech","esss","google","painless-software","pharmbio","teremtech"],"_pop_contributor_orgs_raw":["@ESSS","@TeremTech ","@painless-software ","@pharmbio ","Google","aratar.tech"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.17,"_pop_updated_issues_count":11,"_pop_closed_issues_count":3,"_pop_created_since_days":46,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":11.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":33.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/alexmojaki/snoop/master/README.md","_readme_localurl":"alexmojaki~snoop~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/alexmojaki/snoop/master/setup.py","https://raw.githubusercontent.com/alexmojaki/snoop/master/pyproject.toml"],"_requirements_localurls":["alexmojaki~snoop~setup.py","alexmojaki~snoop~pyproject.toml"]},{"index":630,"category":"gis","githuburl":"https://github.com/pytroll/satpy","featured":null,"links":null,"description":null,"_repopath":"pytroll/satpy","_reponame":"satpy","_stars":896,"_forks":260,"_watches":31,"_language":"Python","_homepage":"http://satpy.readthedocs.org/en/latest/","_description":"satpy: Python package for earth-observing satellite data processing","_organization":"pytroll","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2016-02-09T00:00:00.000Z","_age_weeks":367,"_stars_per_week":2.44,"_topics":["python","satellite","weather","hacktoberfest","dask","xarray","closember"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":135,"_pop_contributor_logins":["adybbroe@smhi","ameraner@eumetsat","djhoese@spacescienceandengineeringcenter(ssec)","gerritholl@deutscherwetterdienst","joleenf@cooperativeinstituteformeteorologicalsatellitestudies/spacescienceandengineeringcenter","mraspaud@smhi","pnuu","sfinkens@dwd","simonrp84@nationalcentreforearthobservation","strandgren"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cooperativeinstituteformeteorologicalsatellitestudies/spacescienceandengineeringcenter","deutscherwetterdienst","dwd","eumetsat","nationalcentreforearthobservation","smhi","spacescienceandengineeringcenter(ssec)"],"_pop_contributor_orgs_raw":["Cooperative Institute for Meteorological Satellite Studies/Space Science and Engineering Center","DWD","Deutscher Wetterdienst","EUMETSAT","National Centre for Earth Observation","SMHI","Space Science and Engineering Center (@ssec)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":22.65,"_pop_updated_issues_count":160,"_pop_closed_issues_count":117,"_pop_created_since_days":86,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":160.0,"_pop_comment_count":646.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.0,"_pop_dependents_count":0,"_pop_score":57.46,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pytroll/satpy/master/README.rst","_readme_localurl":"pytroll~satpy~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pytroll/satpy/master/setup.py","https://raw.githubusercontent.com/pytroll/satpy/master/pyproject.toml"],"_requirements_localurls":["pytroll~satpy~setup.py","pytroll~satpy~pyproject.toml"]},{"index":700,"category":"perf","githuburl":"https://github.com/intel/scikit-learn-intelex","featured":null,"links":null,"description":null,"_repopath":"intel/scikit-learn-intelex","_reponame":"scikit-learn-intelex","_stars":892,"_forks":145,"_watches":26,"_language":"Python","_homepage":"https://intel.github.io/scikit-learn-intelex/","_description":"scikit-learn-intelex: Intel(R) Extension for Scikit-learn is a seamless way to speed up your Scikit-learn application","_organization":"intel","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-08-07T00:00:00.000Z","_age_weeks":237,"_stars_per_week":3.76,"_topics":["oneapi","scikit-learn","machine-learning-algorithms","data-analysis","machine-learning","python","swrepo","ai-machine-learning","big-data","analytics","ai-training","ai-inference","gpu","intel"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":66,"_pop_contributor_logins":["Alexander-Makaryev","Alexsandruss@intel","OnlyDeniko","Pahandrovich","PetrovKP@intel","fschlimb@intel","napetrov@intel","oleksandr-pavlyk@intelcorporation","owerbat","renovate[bot]"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["intel","intelcorporation"],"_pop_contributor_orgs_raw":["@intel","@intel ","Intel","Intel Corporation"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.87,"_pop_updated_issues_count":204,"_pop_closed_issues_count":172,"_pop_created_since_days":55,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":204.0,"_pop_comment_count":224.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":41.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/intel/scikit-learn-intelex/master/README.md","_readme_localurl":"intel~scikit-learn-intelex~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/intel/scikit-learn-intelex/master/setup.py"],"_requirements_localurls":["intel~scikit-learn-intelex~setup.py"]},{"index":291,"category":"pandas","githuburl":"https://github.com/stitchfix/hamilton","featured":null,"links":null,"description":null,"_repopath":"stitchfix/hamilton","_reponame":"hamilton","_stars":890,"_forks":44,"_watches":19,"_language":"Python","_homepage":"https://hamilton-docs.gitbook.io/docs/","_description":"hamilton: A scalable general purpose micro-framework for defining dataflows. You can use it to build dataframes, numpy matrices, python objects, ML models, etc. Embed Hamilton anywhere python runs, e.g. spark, airflow, jupyter, fastapi, python scripts, etc.","_organization":"stitchfix","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-05-26T00:00:00.000Z","_age_weeks":143,"_stars_per_week":6.22,"_topics":["python","pandas","dag","data-science","data-engineering","numpy","software-engineering","etl-framework","etl-pipeline","etl","feature-engineering","featurization","dataframe","stitch-fix","data-platform","hamilton","hamiltonian","machine-learning"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":19,"_pop_contributor_logins":["bovem@redhat","chmp","datarshreya","elijahbenizzy@stitchfix","frenchfrywpepper","ivirshup@helmholtzmunich","jameslamb@spothero","rinsoft-sf@stitchfix","shellyjang","skrawcz"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["helmholtzmunich","redhat","spothero","stitchfix"],"_pop_contributor_orgs_raw":["@spothero","Helmholtz Munich","Red Hat","Stitch Fix"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.12,"_pop_updated_issues_count":99,"_pop_closed_issues_count":76,"_pop_created_since_days":33,"_pop_updated_since_days":0,"_pop_recent_releases_count":16,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":16,"_pop_issue_count":99.0,"_pop_comment_count":177.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":43.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/stitchfix/hamilton/master/README.md","_readme_localurl":"stitchfix~hamilton~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/stitchfix/hamilton/master/requirements.txt","https://raw.githubusercontent.com/stitchfix/hamilton/master/setup.py"],"_requirements_localurls":["stitchfix~hamilton~requirements.txt","stitchfix~hamilton~setup.py"]},{"index":341,"category":"term","githuburl":"https://github.com/jquast/blessed","featured":null,"links":null,"description":null,"_repopath":"jquast/blessed","_reponame":"blessed","_stars":889,"_forks":67,"_watches":23,"_language":"Python","_homepage":"http://pypi.python.org/pypi/blessed","_description":"Blessed is an easy, practical library for making python terminal apps","_organization":"jquast","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2014-03-01T00:00:00.000Z","_age_weeks":468,"_stars_per_week":1.9,"_topics":["terminal","curses","cli"],"_last_commit_date":"2023-02-04T00:00:00.000Z","_pop_contributor_count":25,"_pop_contributor_logins":["avylove","croepha","dlax@dalibo","erikrose@mozillagoogle","fishermans-friend","jquast","jwezel","msabramo@adobe","thomasballinger","vitek"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["adobe","dalibo","mozillagoogle"],"_pop_contributor_orgs_raw":["@adobe","@dalibo","@mozilla @google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.23,"_pop_updated_issues_count":11,"_pop_closed_issues_count":9,"_pop_created_since_days":109,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":11.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":34.58,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jquast/blessed/master/README.rst","_readme_localurl":"jquast~blessed~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jquast/blessed/master/requirements.txt","https://raw.githubusercontent.com/jquast/blessed/master/setup.py"],"_requirements_localurls":["jquast~blessed~requirements.txt","jquast~blessed~setup.py"]},{"index":392,"category":"pandas","githuburl":"https://github.com/tkrabel/bamboolib","featured":null,"links":null,"description":null,"_repopath":"tkrabel/bamboolib","_reponame":"bamboolib","_stars":876,"_forks":95,"_watches":31,"_language":"Jupyter Notebook","_homepage":"https://bamboolib.com","_description":"bamboolib - a GUI for pandas DataFrames","_organization":"tkrabel","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2019-05-29T00:00:00.000Z","_age_weeks":195,"_stars_per_week":4.49,"_topics":["pandas","pandas-dataframes","jupyter-notebook","jupyterlab","python"],"_last_commit_date":"2022-09-27T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["FlorianWetschoreck@bamboolib","fwetdb@databricks","susmitpy","tkrabel@8080labs"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["8080labs","bamboolib","databricks"],"_pop_contributor_orgs_raw":["@8080labs","@databricks ","bamboolib"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":45,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":16.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tkrabel/bamboolib/master/README.md","_readme_localurl":"tkrabel~bamboolib~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":697,"category":"data","githuburl":"https://github.com/scholarly-python-package/scholarly","featured":null,"links":null,"description":null,"_repopath":"scholarly-python-package/scholarly","_reponame":"scholarly","_stars":870,"_forks":255,"_watches":24,"_language":"Python","_homepage":"https://scholarly.readthedocs.io/","_description":"scholarly: Retrieve author and publication information from Google Scholar in a friendly, Pythonic way without having to worry about CAPTCHAs!","_organization":"scholarly-python-package","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2014-12-02T00:00:00.000Z","_age_weeks":429,"_stars_per_week":2.03,"_topics":["scholar","googlescholar","scholarly-articles","scholarly-communications","python3","python-3","python","citation-network","citation-analysis","citations","citation-index","publication-data"],"_last_commit_date":"2023-01-16T00:00:00.000Z","_pop_contributor_count":42,"_pop_contributor_logins":["1ucian0","OrganicIrradiation","TomBrien@cardiffuniversity","arunkannawadi@princetonuniversity","bielsnohr@ukaea","ipeirotis@newyorkuniversity","programize-admin","silvavn@universityofalberta","stefanct","waynehuu"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cardiffuniversity","newyorkuniversity","princetonuniversity","ukaea","universityofalberta"],"_pop_contributor_orgs_raw":[" New York University","@ukaea","Cardiff University","Princeton University","University of Alberta"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.88,"_pop_updated_issues_count":33,"_pop_closed_issues_count":28,"_pop_created_since_days":100,"_pop_updated_since_days":1,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":33.0,"_pop_comment_count":68.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":45.32,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/README.md","_readme_localurl":"scholarly-python-package~scholarly~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/requirements.txt","https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/setup.py","https://raw.githubusercontent.com/scholarly-python-package/scholarly/master/pyproject.toml"],"_requirements_localurls":["scholarly-python-package~scholarly~requirements.txt","scholarly-python-package~scholarly~setup.py","scholarly-python-package~scholarly~pyproject.toml"]},{"index":712,"category":"ml","githuburl":"https://github.com/google-research/deeplab2","featured":null,"links":null,"description":null,"_repopath":"google-research/deeplab2","_reponame":"deeplab2","_stars":868,"_forks":146,"_watches":22,"_language":"Python","_homepage":"","_description":"DeepLab2 is a TensorFlow library for deep labeling, aiming to provide a unified and state-of-the-art TensorFlow codebase for dense pixel labeling tasks.","_organization":"google-research","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2021-05-12T00:00:00.000Z","_age_weeks":93,"_stars_per_week":9.33,"_topics":[],"_last_commit_date":"2023-01-17T00:00:00.000Z","_pop_contributor_count":12,"_pop_contributor_logins":["ClaireXie","YknZhu@google","aquariusjay","csrhddlam@johnshopkinsuniversity","davidblom603@shell","joe-siyuan-qiao@johnshopkinsuniversity","markweberdev","meijieru@johnshopkinsuniversityccvl","yuanliangzhe","yucornetto@johnshopkinsuniversity"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","johnshopkinsuniversity","johnshopkinsuniversityccvl","shell"],"_pop_contributor_orgs_raw":["Google","Johns Hopkins University","Johns Hopkins University @ccvl","Shell"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.79,"_pop_updated_issues_count":10,"_pop_closed_issues_count":4,"_pop_created_since_days":22,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":10.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":28.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google-research/deeplab2/master/README.md","_readme_localurl":"google-research~deeplab2~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":628,"category":"data","githuburl":"https://github.com/intake/intake","featured":null,"links":null,"description":null,"_repopath":"intake/intake","_reponame":"intake","_stars":868,"_forks":125,"_watches":41,"_language":"Python","_homepage":"https://intake.readthedocs.io/","_description":"Intake is a lightweight package for finding, investigating, loading and disseminating data.","_organization":"intake","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2017-08-14T00:00:00.000Z","_age_weeks":288,"_stars_per_week":3.01,"_topics":["python","data-access","data-catalog"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":79,"_pop_contributor_logins":["CJ-Wright","bryevdv@nvidia","danielballan@brookhavennationallab","gwbischof@nsls-ii","ian-r-rose@coiled","jbcrail","jsignell@azavea","martindurant@anaconda","philippjfr@anaconda","seibert"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","azavea","brookhavennationallab","coiled","nsls-ii","nvidia"],"_pop_contributor_orgs_raw":["@NSLS-II ","@azavea","@coiled ","Anaconda Inc.","Anaconda, inc.","Brookhaven National Lab","Nvidia"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.85,"_pop_updated_issues_count":15,"_pop_closed_issues_count":12,"_pop_created_since_days":67,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":15.0,"_pop_comment_count":42.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":0,"_pop_score":46.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/intake/intake/master/README.md","_readme_localurl":"intake~intake~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/intake/intake/master/requirements.txt","https://raw.githubusercontent.com/intake/intake/master/setup.py"],"_requirements_localurls":["intake~intake~requirements.txt","intake~intake~setup.py"]},{"index":347,"category":"nlp","githuburl":"https://github.com/norskregnesentral/skweak","featured":null,"links":null,"description":null,"_repopath":"norskregnesentral/skweak","_reponame":"skweak","_stars":863,"_forks":69,"_watches":27,"_language":"Python","_homepage":"","_description":"skweak: A software toolkit for weak supervision applied to NLP tasks","_organization":"norskregnesentral","_updated_at":"2023-02-13T00:00:00.000Z","_created_at":"2021-03-16T00:00:00.000Z","_age_weeks":101,"_stars_per_week":8.53,"_topics":["weak-supervision","nlp-machine-learning","distant-supervision","nlp-library","spacy","python","data-science","training-data","natural-language-processing"],"_last_commit_date":"2022-11-08T00:00:00.000Z","_pop_contributor_count":11,"_pop_contributor_logins":["aliaksah@universityofoslo","jerbarnes@universityofthebasquecountryupv/ehu","lidiexy-palinode@palinode","marioangst@universityofzurich,digitalsocietyinitiative","plison@norwegiancomputingcentre","ruanchaves","udayankumar"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["norwegiancomputingcentre","palinode","universityofoslo","universityofthebasquecountryupv/ehu","universityofzurich,digitalsocietyinitiative"],"_pop_contributor_orgs_raw":["Norwegian Computing Centre","Palinode","University of Oslo","University of Zurich, Digital Society Initiative","University of the Basque Country UPV/EHU"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.35,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":24,"_pop_updated_since_days":4,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":22.59,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/norskregnesentral/skweak/master/README.md","_readme_localurl":"norskregnesentral~skweak~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/norskregnesentral/skweak/master/requirements.txt","https://raw.githubusercontent.com/norskregnesentral/skweak/master/setup.py"],"_requirements_localurls":["norskregnesentral~skweak~requirements.txt","norskregnesentral~skweak~setup.py"]},{"index":351,"category":"ml","githuburl":"https://github.com/jina-ai/finetuner","featured":null,"links":null,"description":null,"_repopath":"jina-ai/finetuner","_reponame":"finetuner","_stars":857,"_forks":48,"_watches":24,"_language":"Python","_homepage":"https://finetuner.jina.ai","_description":"finetuner: :dart: Task-oriented finetuning for better embeddings on neural search","_organization":"jina-ai","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-08-11T00:00:00.000Z","_age_weeks":80,"_stars_per_week":10.71,"_topics":["fine-tuning","pretrained-models","few-shot-learning","negative-sampling","metric-learning","siamese-network","triplet-loss","transfer-learning","jina","neural-search","finetuning","similarity-learning"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":32,"_pop_contributor_logins":["LMMilliken","azayz@jinaai","bwanglzu@jina-ai","gmastrapas@jinaai","guenthermi@jinaai","hanxiao@jina-ai","jina-bot@jina-ai","jupyterjazz@jina-ai","nomagick@jina-ai","scott-martens@jina-ai"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["jina-ai","jinaai"],"_pop_contributor_orgs_raw":["@jina-ai","@jina-ai ","Jina AI"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.23,"_pop_updated_issues_count":68,"_pop_closed_issues_count":62,"_pop_created_since_days":19,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":21,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":68.0,"_pop_comment_count":159.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":40.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jina-ai/finetuner/master/README.md","_readme_localurl":"jina-ai~finetuner~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jina-ai/finetuner/master/setup.py","https://raw.githubusercontent.com/jina-ai/finetuner/master/pyproject.toml"],"_requirements_localurls":["jina-ai~finetuner~setup.py","jina-ai~finetuner~pyproject.toml"]},{"index":445,"category":"gis","githuburl":"https://github.com/pyproj4/pyproj","featured":null,"links":null,"description":null,"_repopath":"pyproj4/pyproj","_reponame":"pyproj","_stars":856,"_forks":190,"_watches":30,"_language":"Python","_homepage":"https://pyproj4.github.io/pyproj","_description":"pyproj: Python interface to PROJ (cartographic projections and coordinate transformations library)","_organization":"pyproj4","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2014-12-29T00:00:00.000Z","_age_weeks":425,"_stars_per_week":2.01,"_topics":["geospatial","python","coordinate-systems","coordinate-transformation","cartographic-projection","geodesic","hacktoberfest"],"_last_commit_date":"2023-01-20T00:00:00.000Z","_pop_contributor_count":58,"_pop_contributor_logins":["cjmayo","dependabot[bot]","greglucas@lasp/lasp/swxtrec","idanmiara@viatransportation","jdkloe@knmi","jorisvandenbossche","jswhit","micahcochran","paultcochrane","snowman2@corteva"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["corteva","knmi","lasp/lasp/swxtrec","viatransportation"],"_pop_contributor_orgs_raw":["@corteva ","KNMI","LASP / @lasp / @SWxTREC","Via Transportation"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.0,"_pop_updated_issues_count":63,"_pop_closed_issues_count":52,"_pop_created_since_days":99,"_pop_updated_since_days":1,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":63.0,"_pop_comment_count":135.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":45.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyproj4/pyproj/master/README.md","_readme_localurl":"pyproj4~pyproj~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyproj4/pyproj/master/setup.py","https://raw.githubusercontent.com/pyproj4/pyproj/master/pyproject.toml"],"_requirements_localurls":["pyproj4~pyproj~setup.py","pyproj4~pyproj~pyproject.toml"]},{"index":484,"category":"gis","githuburl":"https://github.com/sentinelsat/sentinelsat","featured":null,"links":null,"description":null,"_repopath":"sentinelsat/sentinelsat","_reponame":"sentinelsat","_stars":847,"_forks":229,"_watches":59,"_language":"Python","_homepage":"https://sentinelsat.readthedocs.io","_description":"sentinelsat: Search and download Copernicus Sentinel satellite images","_organization":"sentinelsat","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2015-05-22T00:00:00.000Z","_age_weeks":404,"_stars_per_week":2.09,"_topics":["sentinel","copernicus","esa","remote-sensing","satellite-imagery","geographic-data","open-data","hacktoberfest"],"_last_commit_date":"2022-11-03T00:00:00.000Z","_pop_contributor_count":42,"_pop_contributor_logins":["avalentino","gbaier","j08lue@developmentseed","kr-stn","lucadelu@fondazioneedmundmach","sdf94","thomasyoung-audet@deloitte","valgur@milremrobotics","viktorbahr","willemarcel@developmentseed"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["deloitte","developmentseed","fondazioneedmundmach","milremrobotics"],"_pop_contributor_orgs_raw":["@developmentseed ","Deloitte","Development Seed","Fondazione Edmund Mach","Milrem Robotics"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":8,"_pop_closed_issues_count":2,"_pop_created_since_days":94,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":8.0,"_pop_comment_count":23.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":0,"_pop_score":36.24,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/README.rst","_readme_localurl":"sentinelsat~sentinelsat~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/requirements.txt","https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/setup.py","https://raw.githubusercontent.com/sentinelsat/sentinelsat/master/pyproject.toml"],"_requirements_localurls":["sentinelsat~sentinelsat~requirements.txt","sentinelsat~sentinelsat~setup.py","sentinelsat~sentinelsat~pyproject.toml"]},{"index":887,"category":"sim","githuburl":"https://github.com/pyscf/pyscf","featured":null,"links":null,"description":null,"_repopath":"pyscf/pyscf","_reponame":"pyscf","_stars":846,"_forks":454,"_watches":76,"_language":"Python","_homepage":"","_description":"pyscf: Python module for quantum chemistry","_organization":"pyscf","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-05-02T00:00:00.000Z","_age_weeks":459,"_stars_per_week":1.84,"_topics":[],"_last_commit_date":"2023-02-07T00:00:00.000Z","_pop_contributor_count":141,"_pop_contributor_logins":["Samragni-93@theohiostateuniversity","fishjojo","jdmcclain47","kovalp@simuneatomisticss.l.","obackhouse@king'scollege,london","pulkin","ssh2","sunqm","tberkel@columbiauniversityandflatironinstitute","xwang862"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["columbiauniversityandflatironinstitute","king'scollege,london","simuneatomisticss.l.","theohiostateuniversity"],"_pop_contributor_orgs_raw":["Columbia University and Flatiron Institute","King's College, London","Simune Atomistics S.L.","The Ohio State University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.35,"_pop_updated_issues_count":122,"_pop_closed_issues_count":69,"_pop_created_since_days":107,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":122.0,"_pop_comment_count":222.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":47.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyscf/pyscf/master/README.md","_readme_localurl":"pyscf~pyscf~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyscf/pyscf/master/setup.py"],"_requirements_localurls":["pyscf~pyscf~setup.py"]},{"index":639,"category":"ml","githuburl":"https://github.com/dask/dask-ml","featured":null,"links":null,"description":null,"_repopath":"dask/dask-ml","_reponame":"dask-ml","_stars":838,"_forks":237,"_watches":41,"_language":"Python","_homepage":"http://ml.dask.org","_description":"dask-ml: Scalable Machine Learning with Dask","_organization":"dask","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-06-15T00:00:00.000Z","_age_weeks":296,"_stars_per_week":2.82,"_topics":["hacktoberfest"],"_last_commit_date":"2023-02-10T00:00:00.000Z","_pop_contributor_count":77,"_pop_contributor_logins":["TomAugspurger@microsoft","abduhbm","jameslamb@spothero","jcrist@voltrondata","jrbourbeau@coiled","mmccarty@nvidia","mrocklin@coiled","raybellwaves@dtn","stsievert","thomasjpfan@quansight-labs"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["coiled","dtn","microsoft","nvidia","quansight-labs","spothero","voltrondata"],"_pop_contributor_orgs_raw":["@Quansight-Labs ","@coiled ","@microsoft","@spothero","@voltrondata","DTN","NVIDIA"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.25,"_pop_updated_issues_count":20,"_pop_closed_issues_count":7,"_pop_created_since_days":69,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":20.0,"_pop_comment_count":29.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":41.53,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dask/dask-ml/master/README.rst","_readme_localurl":"dask~dask-ml~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dask/dask-ml/master/setup.py"],"_requirements_localurls":["dask~dask-ml~setup.py"]},{"index":395,"category":"web","githuburl":"https://github.com/emmett-framework/emmett","featured":null,"links":null,"description":null,"_repopath":"emmett-framework/emmett","_reponame":"emmett","_stars":827,"_forks":62,"_watches":31,"_language":"Python","_homepage":"","_description":"emmett: The web framework for inventors","_organization":"emmett-framework","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2014-10-20T00:00:00.000Z","_age_weeks":435,"_stars_per_week":1.9,"_topics":["python","web-framework","asgi","asyncio","emmett"],"_last_commit_date":"2023-01-30T00:00:00.000Z","_pop_contributor_count":22,"_pop_contributor_logins":["GiantCrocodile","Leon0824","bronte2k7","cassiobotaro","gi0baro","ianonavy","lethargilistic@lawstudent","mijdavis2@praxiskit","vanadium23@ostrovok.ru","waghanza@cashbee-team"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cashbee-team","lawstudent","ostrovok.ru","praxiskit"],"_pop_contributor_orgs_raw":["@cashbee-team","@praxiskit ","Law Student","Ostrovok.ru"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.9,"_pop_updated_issues_count":5,"_pop_closed_issues_count":5,"_pop_created_since_days":102,"_pop_updated_since_days":1,"_pop_recent_releases_count":11,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":5.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":36.72,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/emmett-framework/emmett/master/README.md","_readme_localurl":"emmett-framework~emmett~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/emmett-framework/emmett/master/pyproject.toml"],"_requirements_localurls":["emmett-framework~emmett~pyproject.toml"]},{"index":926,"category":"study","githuburl":"https://github.com/roboflow/notebooks","featured":null,"links":null,"description":null,"_repopath":"roboflow/notebooks","_reponame":"notebooks","_stars":805,"_forks":125,"_watches":22,"_language":"Jupyter Notebook","_homepage":"https://roboflow.com/models","_description":"notebooks: Set of Jupyter Notebooks linked to Roboflow blog posts and used in our YouTube videos.","_organization":"roboflow","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-11-18T00:00:00.000Z","_age_weeks":13,"_stars_per_week":58.7,"_topics":["computer-vision","deep-learning","deep-neural-networks","image-classification","image-segmentation","object-detection","yolov5","yolov6","yolov7","pytorch","tutorial","amazon-sagemaker-lab","kaggle","yolov8","google-colab","machine-learning"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":9,"_pop_contributor_logins":["FrancescoSaverioZuppichini@roboflow","Jacobsolawetz@roboflow.com","SkalskiP@roboflow","capjamesg@roboflow","hansent","mmcquade11","partheee@spritle"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["roboflow","roboflow.com","spritle"],"_pop_contributor_orgs_raw":["@Roboflow","@roboflow","Spritle","roboflow","roboflow.com"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.52,"_pop_updated_issues_count":52,"_pop_closed_issues_count":48,"_pop_created_since_days":3,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":52.0,"_pop_comment_count":157.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":31.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/roboflow/notebooks/master/README.md","_readme_localurl":"roboflow~notebooks~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":850,"category":"util","githuburl":"https://github.com/wolph/python-progressbar","featured":null,"links":null,"description":null,"_repopath":"wolph/python-progressbar","_reponame":"python-progressbar","_stars":804,"_forks":95,"_watches":22,"_language":"Python","_homepage":"http://progressbar-2.readthedocs.org/en/latest/","_description":"python-progressbar: Progressbar 2 - A progress bar for Python 2 and Python 3 - \"pip install progressbar2\"","_organization":"wolph","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-02-20T00:00:00.000Z","_age_weeks":574,"_stars_per_week":1.4,"_topics":["python","progressbar","progress-bar","rate","eta","percentage","console","terminal","time","progress","bar","cli","gui","library"],"_last_commit_date":"2023-02-02T00:00:00.000Z","_pop_contributor_count":42,"_pop_contributor_logins":["NiltonVolpato@google","Zannick","joe-antognini@whisper","matthewwardrop@datascientistatnetflix","paulo-raca","ritze","stuertz@cslab","takluyver","terencehonles","wolph"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cslab","datascientistatnetflix","google","whisper"],"_pop_contributor_orgs_raw":["@cslab","Data Scientist at @Netflix","Google","Whisper"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.1,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":134,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":5.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":37.52,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/wolph/python-progressbar/master/README.rst","_readme_localurl":"wolph~python-progressbar~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/wolph/python-progressbar/master/setup.py"],"_requirements_localurls":["wolph~python-progressbar~setup.py"]},{"index":738,"category":"perf","githuburl":"https://github.com/zerointensity/pointers.py","featured":null,"links":null,"description":null,"_repopath":"zerointensity/pointers.py","_reponame":"pointers.py","_stars":802,"_forks":11,"_watches":4,"_language":"Python","_homepage":"https://pointers.zintensity.dev/","_description":"pointers.py: Bringing the hell of pointers to Python.","_organization":"zerointensity","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-03-09T00:00:00.000Z","_age_weeks":50,"_stars_per_week":16.04,"_topics":["python","pointers","python-pointers"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["2231puppy","5HT2","UltraStudioLTD","ZeroIntensity","bswck","joshua-auchincloss@royalbankofcanada","shenanigansd","shenjackyuanjie@china"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["china","royalbankofcanada"],"_pop_contributor_orgs_raw":["China","Royal Bank of Canada"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.48,"_pop_updated_issues_count":4,"_pop_closed_issues_count":3,"_pop_created_since_days":12,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":4.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.8,"_pop_dependents_count":0,"_pop_score":31.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zerointensity/pointers.py/master/README.md","_readme_localurl":"zerointensity~pointers.py~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/zerointensity/pointers.py/master/requirements.txt","https://raw.githubusercontent.com/zerointensity/pointers.py/master/setup.py","https://raw.githubusercontent.com/zerointensity/pointers.py/master/pyproject.toml"],"_requirements_localurls":["zerointensity~pointers.py~requirements.txt","zerointensity~pointers.py~setup.py","zerointensity~pointers.py~pyproject.toml"]},{"index":490,"category":"viz","githuburl":"https://github.com/luispedro/mahotas","featured":null,"links":null,"description":null,"_repopath":"luispedro/mahotas","_reponame":"mahotas","_stars":795,"_forks":151,"_watches":48,"_language":"Python","_homepage":"https://mahotas.rtfd.io","_description":"mahotas: Computer Vision in Python","_organization":"luispedro","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2010-01-31T00:00:00.000Z","_age_weeks":681,"_stars_per_week":1.17,"_topics":["computer-vision","numpy","python","c-plus-plus","python-2","python-3"],"_last_commit_date":"2022-11-14T00:00:00.000Z","_pop_contributor_count":32,"_pop_contributor_logins":["cgohlke","jakirkham","langner@google","lstolcman","luispedro@fudanuniversity","meawoppl@theexclosure","michaelaye@lasp","mindw","stefanv@universityofcalifornia,berkeley","wang1211"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["fudanuniversity","google","lasp","theexclosure","universityofcalifornia,berkeley"],"_pop_contributor_orgs_raw":["Fudan University","Google","LASP","The Exclosure","University of California, Berkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":159,"_pop_updated_since_days":3,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":5.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":34.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/luispedro/mahotas/master/README.md","_readme_localurl":"luispedro~mahotas~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/luispedro/mahotas/master/requirements.txt","https://raw.githubusercontent.com/luispedro/mahotas/master/setup.py"],"_requirements_localurls":["luispedro~mahotas~requirements.txt","luispedro~mahotas~setup.py"]},{"index":226,"category":"sim","githuburl":"https://github.com/facebookresearch/droidlet","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/droidlet","_reponame":"fairo","_stars":792,"_forks":79,"_watches":38,"_language":"Jupyter Notebook","_homepage":"","_description":"fairo: A modular embodied agent architecture and platform for building embodied agents","_organization":"facebookresearch","_updated_at":"2023-01-20T00:00:00.000Z","_created_at":"2020-11-02T00:00:00.000Z","_age_weeks":120,"_stars_per_week":6.58,"_topics":[],"_last_commit_date":"2023-02-01T00:00:00.000Z","_pop_contributor_count":43,"_pop_contributor_logins":["1heart","Rebecca-Qian","anuragprat1k","aszlam","exhaustin","kavyasrinet@facebookairesearch","lshamis","snyxan@facebookairesearch","soumith@facebookairesearch","zephirefaith@facebookresearch"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebookairesearch","facebookresearch"],"_pop_contributor_orgs_raw":["@facebookresearch ","Facebook AI Research"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.12,"_pop_updated_issues_count":23,"_pop_closed_issues_count":9,"_pop_created_since_days":28,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":23.0,"_pop_comment_count":31.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":33.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/droidlet/master/README.md","_readme_localurl":"facebookresearch~droidlet~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/droidlet/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/droidlet/master/setup.py","https://raw.githubusercontent.com/facebookresearch/droidlet/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~droidlet~requirements.txt","facebookresearch~droidlet~setup.py","facebookresearch~droidlet~pyproject.toml"]},{"index":908,"category":"viz","githuburl":"https://github.com/datapane/datapane","featured":null,"links":null,"description":null,"_repopath":"datapane/datapane","_reponame":"datapane","_stars":782,"_forks":64,"_watches":16,"_language":"Python","_homepage":"https://datapane.com","_description":"Datapane is the easiest way to create data science reports from Python.","_organization":"datapane","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-04-23T00:00:00.000Z","_age_weeks":147,"_stars_per_week":5.29,"_topics":["dashboard","reporting","data-visualization","python","hacktoberfest"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":11,"_pop_contributor_logins":["Buroni@datapane","antdking@datapane","datapane-ci-bot","dependabot[bot]","lanthias@datapane","mallok-s","mands@datapane","radiac","shahinrostami@datasciencelabpolyra","spookylukey"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["datapane","datasciencelabpolyra"],"_pop_contributor_orgs_raw":["@Datapane","@datapane","@datapane ","Data Science Lab @ Polyra","datapane"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.56,"_pop_updated_issues_count":11,"_pop_closed_issues_count":6,"_pop_created_since_days":34,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":18,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":11.0,"_pop_comment_count":21.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":37.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/datapane/datapane/master/README.md","_readme_localurl":"datapane~datapane~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":810,"category":"data","githuburl":"https://github.com/neo4j/neo4j-python-driver","featured":null,"links":null,"description":null,"_repopath":"neo4j/neo4j-python-driver","_reponame":"neo4j-python-driver","_stars":771,"_forks":171,"_watches":98,"_language":"Python","_homepage":"https://neo4j.com/docs/api/python-driver/current/","_description":"neo4j-python-driver: Neo4j Bolt driver for Python","_organization":"neo4j","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-05-05T00:00:00.000Z","_age_weeks":407,"_stars_per_week":1.89,"_topics":["python","graph-database","driver","neo4j","database-driver","protocol","cypher","query-language","python3","binary-protocol"],"_last_commit_date":"2023-02-09T00:00:00.000Z","_pop_contributor_count":41,"_pop_contributor_logins":["2hdddg","RagnarW","jakewins@tibber","martin-neotech@neo4j","nigelsmall","pontusmelke@neotechnology","robsdedude","srbaker","technige@elastic","zhenlineo"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["elastic","neo4j","neotechnology","tibber"],"_pop_contributor_orgs_raw":["@tibber ","Elastic","Neo Technology","Neo4j"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.77,"_pop_updated_issues_count":42,"_pop_closed_issues_count":38,"_pop_created_since_days":95,"_pop_updated_since_days":0,"_pop_recent_releases_count":18,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":42.0,"_pop_comment_count":30.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":44.31,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/neo4j/neo4j-python-driver/master/README.rst","_readme_localurl":"neo4j~neo4j-python-driver~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/neo4j/neo4j-python-driver/master/requirements.txt","https://raw.githubusercontent.com/neo4j/neo4j-python-driver/master/setup.py","https://raw.githubusercontent.com/neo4j/neo4j-python-driver/master/pyproject.toml"],"_requirements_localurls":["neo4j~neo4j-python-driver~requirements.txt","neo4j~neo4j-python-driver~setup.py","neo4j~neo4j-python-driver~pyproject.toml"]},{"index":853,"category":"data","githuburl":"https://github.com/eliasdabbas/advertools","featured":null,"links":null,"description":null,"_repopath":"eliasdabbas/advertools","_reponame":"advertools","_stars":770,"_forks":163,"_watches":34,"_language":"Python","_homepage":"https://advertools.readthedocs.io","_description":"advertools - online marketing productivity and analysis tools","_organization":"eliasdabbas","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2017-05-14T00:00:00.000Z","_age_weeks":301,"_stars_per_week":2.55,"_topics":["marketing","advertising","adwords","python","digital-marketing","online-marketing","keywords","search-engine-marketing","twitter-api","search-engine-optimization","seo","serp","social-media","youtube","robots-txt","scrapy","seo-crawler","log-analysis","google-ads","logfile-parser"],"_last_commit_date":"2022-12-13T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["amrrs","dreadedhamish","eliasdabbas@themediasupermarket","lgtm-migrator@github","pyup-bot@pyupio"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["github","pyupio","themediasupermarket"],"_pop_contributor_orgs_raw":["@github","@pyupio","The Media Supermarket"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.33,"_pop_updated_issues_count":20,"_pop_closed_issues_count":17,"_pop_created_since_days":70,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":20.0,"_pop_comment_count":38.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":33.84,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/eliasdabbas/advertools/master/README.rst","_readme_localurl":"eliasdabbas~advertools~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/eliasdabbas/advertools/master/setup.py","https://raw.githubusercontent.com/eliasdabbas/advertools/master/pyproject.toml"],"_requirements_localurls":["eliasdabbas~advertools~setup.py","eliasdabbas~advertools~pyproject.toml"]},{"index":658,"category":"util","githuburl":"https://github.com/rasbt/watermark","featured":null,"links":null,"description":null,"_repopath":"rasbt/watermark","_reponame":"watermark","_stars":765,"_forks":82,"_watches":13,"_language":"Python","_homepage":null,"_description":"watermark: An IPython magic extension for printing date and time stamps, version numbers, and hardware information","_organization":"rasbt","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2014-07-30T00:00:00.000Z","_age_weeks":447,"_stars_per_week":1.71,"_topics":["python","magic-extension","jupyter","ipython"],"_last_commit_date":"2022-09-13T00:00:00.000Z","_pop_contributor_count":17,"_pop_contributor_logins":["GreatBahram","Hugovdberg@brabantwater","askras","e9t@upstageai,hkust","iamaziz","jGaboardi@ornl","jamesmyatt@capgeminiengineering","pjbull@drivendata","proinsias@hospiq","rasbt@lightning-ai,universityofwisconsin-madison"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["brabantwater","capgeminiengineering","drivendata","hospiq","lightning-ai,universityofwisconsin-madison","ornl","upstageai,hkust"],"_pop_contributor_orgs_raw":["@Lightning-AI , University of Wisconsin-Madison","@UpstageAI, @hkust","@hospiq ","Brabant Water","Capgemini Engineering","DrivenData","ORNL"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":104,"_pop_updated_since_days":5,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":26.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/watermark/master/README.md","_readme_localurl":"rasbt~watermark~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rasbt/watermark/master/setup.py"],"_requirements_localurls":["rasbt~watermark~setup.py"]},{"index":146,"category":"util","githuburl":"https://github.com/zenodo/zenodo","featured":null,"links":null,"description":null,"_repopath":"zenodo/zenodo","_reponame":"zenodo","_stars":762,"_forks":228,"_watches":40,"_language":"Python","_homepage":"https://zenodo.org","_description":"zenodo: Research. Shared.","_organization":"zenodo","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2013-02-11T00:00:00.000Z","_age_weeks":523,"_stars_per_week":1.46,"_topics":["zenodo","invenio","python","research-data-repository","research-data-management","flask","digital-library","open-science","open-access","scientific-publications","library-management","elasticsearch","postgresql","inveniosoftware"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":67,"_pop_contributor_logins":["ChiaraBi","Glignos@skribble","JavierDelgadoFernandez","SamiHiltunen","frankois@ibekso","jainaman224@codingninjas","kaplun@protonmail","lnielsen@cern","mitsosf","slint@cern"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cern","codingninjas","ibekso","protonmail","skribble"],"_pop_contributor_orgs_raw":["@ProtonMail ","CERN","Coding Ninjas","Ibekso","Skribble"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.46,"_pop_updated_issues_count":409,"_pop_closed_issues_count":61,"_pop_created_since_days":122,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":41,"_pop_recent_releases_adjusted_count":41,"_pop_issue_count":409.0,"_pop_comment_count":58.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.1,"_pop_dependents_count":0,"_pop_score":47.04,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/zenodo/zenodo/master/README.rst","_readme_localurl":"zenodo~zenodo~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/zenodo/zenodo/master/requirements.txt","https://raw.githubusercontent.com/zenodo/zenodo/master/setup.py"],"_requirements_localurls":["zenodo~zenodo~requirements.txt","zenodo~zenodo~setup.py"]},{"index":559,"category":"jupyter","githuburl":"https://github.com/vizzuhq/ipyvizzu","featured":null,"links":null,"description":null,"_repopath":"vizzuhq/ipyvizzu","_reponame":"ipyvizzu","_stars":759,"_forks":59,"_watches":16,"_language":"Python","_homepage":"https://ipyvizzu.vizzuhq.com","_description":"ipyvizzu: Build animated charts in Jupyter Notebook and similar environments with a simple Python syntax.","_organization":"vizzuhq","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2022-01-05T00:00:00.000Z","_age_weeks":59,"_stars_per_week":12.86,"_topics":["jupyter","jupyter-notebook","python","plotting","graphs","data-visualization","graphing","ipython","chart","charts","dataviz","animation","storytelling","charting","vizzu"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":10,"_pop_contributor_logins":["KleinK0910@vizzu","ParkerKain","ShruAgarwal","csaladenes@denesdata","m1lk4","nyirog@oneidentity(balabit)","petervidos@vizzuhq","simzer@vizzuhq","sugatoray@universityofwisconsin-milwaukee","veghdev"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["denesdata","oneidentity(balabit)","universityofwisconsin-milwaukee","vizzu","vizzuhq"],"_pop_contributor_orgs_raw":["@VizzuHQ","@denesdata ","@vizzuhq","One Identity (BalaBit)","University of Wisconsin - Milwaukee","Vizzu"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.62,"_pop_updated_issues_count":19,"_pop_closed_issues_count":11,"_pop_created_since_days":14,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":19.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":36.47,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/README.md","_readme_localurl":"vizzuhq~ipyvizzu~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/requirements.txt","https://raw.githubusercontent.com/vizzuhq/ipyvizzu/master/setup.py"],"_requirements_localurls":["vizzuhq~ipyvizzu~requirements.txt","vizzuhq~ipyvizzu~setup.py"]},{"index":334,"category":"util","githuburl":"https://github.com/clarete/forbiddenfruit","featured":null,"links":null,"description":null,"_repopath":"clarete/forbiddenfruit","_reponame":"forbiddenfruit","_stars":757,"_forks":49,"_watches":28,"_language":"Python","_homepage":"https://clarete.li/forbiddenfruit/","_description":"forbiddenfruit: Patch built-in python objects","_organization":"clarete","_updated_at":"2023-02-08T00:00:00.000Z","_created_at":"2013-04-03T00:00:00.000Z","_age_weeks":516,"_stars_per_week":1.47,"_topics":["python","monkey-patching"],"_last_commit_date":"2022-03-12T00:00:00.000Z","_pop_contributor_count":15,"_pop_contributor_logins":["Cologler","Jongy","Julian","adamchainz@django,djangolondon","bitdeli-chef@bitdeli","clarete","lukasgraf@4teamworkag","pschanely","smola@datadog","timgates42@iress"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["4teamworkag","bitdeli","datadog","django,djangolondon","iress"],"_pop_contributor_orgs_raw":["4teamwork AG","@datadog","@django, @djangolondon","Bitdeli","IRESS"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":120,"_pop_updated_since_days":16,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":22.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/clarete/forbiddenfruit/master/README.md","_readme_localurl":"clarete~forbiddenfruit~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/clarete/forbiddenfruit/master/setup.py"],"_requirements_localurls":["clarete~forbiddenfruit~setup.py"]},{"index":791,"category":"sim","githuburl":"https://github.com/viblo/pymunk","featured":1.0,"links":null,"description":null,"_repopath":"viblo/pymunk","_reponame":"pymunk","_stars":754,"_forks":178,"_watches":22,"_language":"Python","_homepage":"http://www.pymunk.org","_description":"Pymunk is a easy-to-use pythonic 2d physics library that can be used whenever you need 2d rigid body physics from Python","_organization":"viblo","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2013-10-02T00:00:00.000Z","_age_weeks":490,"_stars_per_week":1.54,"_topics":["python","physics-2d","library","pygame","pyglet","physics-engine","physics-simulation","python-library"],"_last_commit_date":"2023-01-29T00:00:00.000Z","_pop_contributor_count":17,"_pop_contributor_logins":["Berserker66@skamrahlitsolutions","Norberg","anthemion","cclauss@christianclauss","illume","mikhail@google","msis@blksail","oprypin@google","viblo","zman97211"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["blksail","christianclauss","google","skamrahlitsolutions"],"_pop_contributor_orgs_raw":["@google","@google ","Christian Clauss","Skamrahl IT Solutions","blkSAIL"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.35,"_pop_updated_issues_count":9,"_pop_closed_issues_count":6,"_pop_created_since_days":114,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":9.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":36.22,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/viblo/pymunk/master/README.rst","_readme_localurl":"viblo~pymunk~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/viblo/pymunk/master/setup.py","https://raw.githubusercontent.com/viblo/pymunk/master/pyproject.toml"],"_requirements_localurls":["viblo~pymunk~setup.py","viblo~pymunk~pyproject.toml"]},{"index":976,"category":"sim","githuburl":"https://github.com/a-r-j/graphein","featured":null,"links":null,"description":null,"_repopath":"a-r-j/graphein","_reponame":"graphein","_stars":751,"_forks":95,"_watches":16,"_language":"Jupyter Notebook","_homepage":"https://graphein.ai/","_description":"graphein: Protein Graph Library","_organization":"a-r-j","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-08-28T00:00:00.000Z","_age_weeks":182,"_stars_per_week":4.13,"_topics":["protein","protein-structure","deep-learning","pytorch","graph-neural-networks","dgl","computational-biology","bioinformatics","structural-biology","protein-data-bank","protein-design","geometric-deep-learning","pytorch-geometric","python","interactomics","interactome","rna","ppi-networks","gene-regulatory-networks","drug-discovery"],"_last_commit_date":"2023-02-13T00:00:00.000Z","_pop_contributor_count":21,"_pop_contributor_logins":["Seanny123@proteinqure","a-r-j@universityofcambridge","anton-bushuiev","cch1999@univeristyofcambridge","dependabot-preview[bot]","ericmjl","kamurani@rewiredbio","kexinhuang12345","pre-commit-ci[bot]","rvinas"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["proteinqure","rewiredbio","univeristyofcambridge","universityofcambridge"],"_pop_contributor_orgs_raw":["@rewiredbio","ProteinQure","Univeristy of Cambridge","University of Cambridge"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.48,"_pop_updated_issues_count":43,"_pop_closed_issues_count":30,"_pop_created_since_days":42,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":43.0,"_pop_comment_count":106.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":0,"_pop_score":41.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/a-r-j/graphein/master/README.md","_readme_localurl":"a-r-j~graphein~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/a-r-j/graphein/master/setup.py","https://raw.githubusercontent.com/a-r-j/graphein/master/pyproject.toml"],"_requirements_localurls":["a-r-j~graphein~setup.py","a-r-j~graphein~pyproject.toml"]},{"index":325,"category":"security","githuburl":"https://github.com/trailofbits/pip-audit","featured":null,"links":null,"description":null,"_repopath":"trailofbits/pip-audit","_reponame":"pip-audit","_stars":751,"_forks":48,"_watches":20,"_language":"Python","_homepage":"https://pypi.org/project/pip-audit/","_description":"pip-audit: Audits Python environments and dependency trees for known vulnerabilities","_organization":"trailofbits","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2021-09-02T00:00:00.000Z","_age_weeks":76,"_stars_per_week":9.77,"_topics":["security","security-audit","python","pip","supply-chain"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":20,"_pop_contributor_logins":["Elkasitu@redhat","JeffreyVdb","ameily","cooperlees@clc","dependabot[bot]","di@google","redbmk@anthem-ai","tetsuo-cpp@trailofbits","woodruffw@trailofbits","xsc27@digitalr00ts"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anthem-ai","clc","digitalr00ts","google","redhat","trailofbits"],"_pop_contributor_orgs_raw":["@anthem-ai","@google","@trailofbits","@trailofbits ","CLC","Red Hat","digitalr00ts"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.19,"_pop_updated_issues_count":119,"_pop_closed_issues_count":101,"_pop_created_since_days":18,"_pop_updated_since_days":0,"_pop_recent_releases_count":25,"_pop_recent_releases_estimated_tags":30,"_pop_recent_releases_adjusted_count":25,"_pop_issue_count":119.0,"_pop_comment_count":238.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":44.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/trailofbits/pip-audit/master/README.md","_readme_localurl":"trailofbits~pip-audit~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/trailofbits/pip-audit/master/pyproject.toml"],"_requirements_localurls":["trailofbits~pip-audit~pyproject.toml"]},{"index":975,"category":"gis","githuburl":"https://github.com/microsoft/globalmlbuildingfootprints","featured":null,"links":null,"description":null,"_repopath":"microsoft/globalmlbuildingfootprints","_reponame":"GlobalMLBuildingFootprints","_stars":747,"_forks":92,"_watches":31,"_language":"Python","_homepage":null,"_description":"GlobalMLBuildingFootprints: Worldwide building footprints derived from satellite imagery ","_organization":"microsoft","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-04-22T00:00:00.000Z","_age_weeks":43,"_stars_per_week":17.09,"_topics":[],"_last_commit_date":"2022-11-16T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["andwoi","dakotabenjamin@hotosm","microsoft-github-operations[bot]","microsoftopensource@microsoft"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["hotosm","microsoft"],"_pop_contributor_orgs_raw":["@hotosm ","Microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.46,"_pop_updated_issues_count":7,"_pop_closed_issues_count":1,"_pop_created_since_days":10,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":6.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":16.6,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/globalmlbuildingfootprints/master/README.md","_readme_localurl":"microsoft~globalmlbuildingfootprints~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":634,"category":"profiling","githuburl":"https://github.com/csurfer/pyheat","featured":null,"links":null,"description":null,"_repopath":"csurfer/pyheat","_reponame":"pyheat","_stars":741,"_forks":40,"_watches":13,"_language":"Python","_homepage":"","_description":"pyheat: pprofile + matplotlib = Python program profiled as an awesome heatmap!","_organization":"csurfer","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2017-02-04T00:00:00.000Z","_age_weeks":315,"_stars_per_week":2.35,"_topics":["profiling","python","heatmap","matplotlib"],"_last_commit_date":"2021-09-18T00:00:00.000Z","_pop_contributor_count":5,"_pop_contributor_logins":["AaronRobson@citrix","csurfer@lyft","hinnefe2"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["citrix","lyft"],"_pop_contributor_orgs_raw":["@Citrix","Lyft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":74,"_pop_updated_since_days":17,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":13.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/csurfer/pyheat/master/README.md","_readme_localurl":"csurfer~pyheat~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/csurfer/pyheat/master/requirements.txt","https://raw.githubusercontent.com/csurfer/pyheat/master/setup.py"],"_requirements_localurls":["csurfer~pyheat~requirements.txt","csurfer~pyheat~setup.py"]},{"index":419,"category":"util","githuburl":"https://github.com/sethmmorton/natsort","featured":null,"links":null,"description":null,"_repopath":"sethmmorton/natsort","_reponame":"natsort","_stars":733,"_forks":42,"_watches":15,"_language":"Python","_homepage":"https://pypi.org/project/natsort/","_description":"natsort: Simple yet flexible natural sorting in Python.","_organization":"sethmmorton","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2012-05-03T00:00:00.000Z","_age_weeks":563,"_stars_per_week":1.3,"_topics":["python","natural-sort","sorting-interface","sorting","natsort"],"_last_commit_date":"2023-01-11T00:00:00.000Z","_pop_contributor_count":21,"_pop_contributor_logins":["Gilthans@siasol","MinchinWeb","SethMMorton","cpburnz","hugovk@nordsoftware","jdufresne@pioneervalleybooks","kuraga","madphysicist","rinslow@dapulse","swt2c"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["dapulse","nordsoftware","pioneervalleybooks","siasol"],"_pop_contributor_orgs_raw":["@DaPulse ","Nord Software","Pioneer Valley Books","Siasol"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.23,"_pop_updated_issues_count":3,"_pop_closed_issues_count":2,"_pop_created_since_days":132,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":3.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.3,"_pop_dependents_count":0,"_pop_score":38.84,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sethmmorton/natsort/master/README.rst","_readme_localurl":"sethmmorton~natsort~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sethmmorton/natsort/master/setup.py"],"_requirements_localurls":["sethmmorton~natsort~setup.py"]},{"index":23,"category":"math","githuburl":"https://github.com/fredrik-johansson/mpmath","featured":null,"links":null,"description":null,"_repopath":"fredrik-johansson/mpmath","_reponame":"mpmath","_stars":729,"_forks":152,"_watches":40,"_language":"Python","_homepage":"http://mpmath.org","_description":"mpmath: Python library for arbitrary-precision floating-point arithmetic","_organization":"fredrik-johansson","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2011-12-07T00:00:00.000Z","_age_weeks":585,"_stars_per_week":1.25,"_topics":["python","arbitrary-precision","multiprecision","floating-point","special-functions","numerical-integration","numerical-methods","plotting","complex-numbers","ordinary-differential-equations","numerical-optimization"],"_last_commit_date":"2023-01-10T00:00:00.000Z","_pop_contributor_count":47,"_pop_contributor_logins":["ariasdereyna","asmeurer@quansight","casevh","certik@gsitechnology","fredrik-johansson@inria&institutdemath\u00e9matiquesdebordeaux","klkuhlm","paulmasson","skirpichev","vks","warnerjon12"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["gsitechnology","inria&institutdemath\u00e9matiquesdebordeaux","quansight"],"_pop_contributor_orgs_raw":["@Quansight ","GSI Technology","INRIA & Institut de Math\u00e9matiques de Bordeaux"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.23,"_pop_updated_issues_count":12,"_pop_closed_issues_count":5,"_pop_created_since_days":136,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":12.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":35.1,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/fredrik-johansson/mpmath/master/README.rst","_readme_localurl":"fredrik-johansson~mpmath~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/fredrik-johansson/mpmath/master/setup.py"],"_requirements_localurls":["fredrik-johansson~mpmath~setup.py"]},{"index":701,"category":"profiling","githuburl":"https://github.com/pythonspeed/filprofiler","featured":null,"links":null,"description":null,"_repopath":"pythonspeed/filprofiler","_reponame":"filprofiler","_stars":722,"_forks":21,"_watches":9,"_language":"Rust","_homepage":"https://pythonspeed.com/products/filmemoryprofiler/","_description":"filprofiler: A Python memory profiler for data processing and scientific computing applications","_organization":"pythonspeed","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-06-18T00:00:00.000Z","_age_weeks":139,"_stars_per_week":5.16,"_topics":["python","memory-profiler","memory-profiling","memory-leak","memory-leaks","memory-leak-detection","memory-leak-finder","memory","memory-"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["PLNech@algolia","bast@uit-noneicnordic","dependabot[bot]","itamarst","pythonspeed@hyphenatedenterprises","whalesalad@whalesalad"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["algolia","hyphenatedenterprises","uit-noneicnordic","whalesalad"],"_pop_contributor_orgs_raw":["@uit-no @neicnordic","Algolia","Hyphenated Enterprises LLC","WHALESALAD"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.33,"_pop_updated_issues_count":36,"_pop_closed_issues_count":25,"_pop_created_since_days":33,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":23,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":36.0,"_pop_comment_count":24.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":36.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pythonspeed/filprofiler/master/README.md","_readme_localurl":"pythonspeed~filprofiler~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pythonspeed/filprofiler/master/setup.py","https://raw.githubusercontent.com/pythonspeed/filprofiler/master/pyproject.toml"],"_requirements_localurls":["pythonspeed~filprofiler~setup.py","pythonspeed~filprofiler~pyproject.toml"]},{"index":621,"category":"testing","githuburl":"https://github.com/wolever/parameterized","featured":null,"links":null,"description":null,"_repopath":"wolever/parameterized","_reponame":"parameterized","_stars":720,"_forks":96,"_watches":18,"_language":"Python","_homepage":"","_description":"Parameterized testing with any Python test framework","_organization":"wolever","_updated_at":"2023-02-14T00:00:00.000Z","_created_at":"2012-03-10T00:00:00.000Z","_age_weeks":571,"_stars_per_week":1.26,"_topics":[],"_last_commit_date":"2021-01-09T00:00:00.000Z","_pop_contributor_count":24,"_pop_contributor_logins":["AlexRiina@klaviyo","charlsagente","curtissiemens@zillow.com","danielbradburn@crunchr","duncan-webb","ntflc","shazow","smspillaz","ukinau","wolever@sheertex"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["crunchr","klaviyo","sheertex","zillow.com"],"_pop_contributor_orgs_raw":["@crunchr ","@klaviyo","Sheertex","Zillow.com"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":9,"_pop_closed_issues_count":0,"_pop_created_since_days":133,"_pop_updated_since_days":26,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":9.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":25.79,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/wolever/parameterized/master/README.rst","_readme_localurl":"wolever~parameterized~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/wolever/parameterized/master/setup.py"],"_requirements_localurls":["wolever~parameterized~setup.py"]},{"index":358,"category":"data","githuburl":"https://github.com/hyperqueryhq/whale","featured":null,"links":null,"description":null,"_repopath":"hyperqueryhq/whale","_reponame":"whale","_stars":719,"_forks":38,"_watches":41,"_language":"Python","_homepage":"https://rsyi.gitbook.io/whale","_description":"whale: \ud83d\udc33 The stupidly simple CLI workspace for your data warehouse.","_organization":"hyperqueryhq","_updated_at":"2023-02-01T00:00:00.000Z","_created_at":"2020-05-27T00:00:00.000Z","_age_weeks":143,"_stars_per_week":5.03,"_topics":["data-documentation","data-catalog","data-discovery"],"_last_commit_date":"2022-10-13T00:00:00.000Z","_pop_contributor_count":17,"_pop_contributor_logins":["bachng2017@nttcommunications","biomunky","cantzakas@vmware","dependabot[bot]","jhh3000@dataframehq","jwodder","manuelzander","peterthesling@shopify","rsyi@dataframe","yosupmoon@harvarduniversity"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["dataframe","dataframehq","harvarduniversity","nttcommunications","shopify","vmware"],"_pop_contributor_orgs_raw":["@dataframehq","@vmware","Dataframe","Harvard University","NTT Communications","Shopify"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":5,"_pop_closed_issues_count":2,"_pop_created_since_days":33,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":5.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":29.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hyperqueryhq/whale/master/README.md","_readme_localurl":"hyperqueryhq~whale~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":477,"category":"pandas","githuburl":"https://github.com/holoviz/hvplot","featured":null,"links":null,"description":null,"_repopath":"holoviz/hvplot","_reponame":"hvplot","_stars":716,"_forks":80,"_watches":23,"_language":"Python","_homepage":"https://hvplot.holoviz.org","_description":"hvplot: A high-level plotting API for pandas, dask, xarray, and networkx built on HoloViews","_organization":"holoviz","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-03-19T00:00:00.000Z","_age_weeks":257,"_stars_per_week":2.78,"_topics":["holoviz","holoviews","plotting","datashader"],"_last_commit_date":"2023-02-10T00:00:00.000Z","_pop_contributor_count":39,"_pop_contributor_logins":["Hoxbro","MarcSkovMadsen@data,modelsandanalytics","MridulS","ahuang11@prefect!","ceball","jbednar@anaconda","jlstevens","jsignell@azavea","maximlt@anaconda","philippjfr@anaconda"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","azavea","data,modelsandanalytics","prefect!"],"_pop_contributor_orgs_raw":["@azavea","Anaconda","Anaconda Inc.","Anaconda, Inc.","Data, models and analytics","Prefect!"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.04,"_pop_updated_issues_count":139,"_pop_closed_issues_count":23,"_pop_created_since_days":60,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":22,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":139.0,"_pop_comment_count":98.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":40.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/hvplot/master/README.md","_readme_localurl":"holoviz~hvplot~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/hvplot/master/setup.py","https://raw.githubusercontent.com/holoviz/hvplot/master/pyproject.toml"],"_requirements_localurls":["holoviz~hvplot~setup.py","holoviz~hvplot~pyproject.toml"]},{"index":593,"category":"gis","githuburl":"https://github.com/matplotlib/basemap","featured":null,"links":null,"description":null,"_repopath":"matplotlib/basemap","_reponame":"basemap","_stars":710,"_forks":395,"_watches":60,"_language":"Python","_homepage":"","_description":"basemap: Plot on map projections (with coastlines and political boundaries) using matplotlib","_organization":"matplotlib","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2011-02-19T00:00:00.000Z","_age_weeks":626,"_stars_per_week":1.13,"_topics":["gis","maps","plots"],"_last_commit_date":"2022-11-29T00:00:00.000Z","_pop_contributor_count":69,"_pop_contributor_logins":["DWesl","WeatherGod@atmosphericandenvironmentalresearch","efiring@universityofhawaii","guziy@eccc","j08lue@developmentseed","joferkington@planetlabs","jswhit","micahcochran","molinav@germanaerospacecenter(dlr)","ocefpaf"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["atmosphericandenvironmentalresearch","developmentseed","eccc","germanaerospacecenter(dlr)","planetlabs","universityofhawaii"],"_pop_contributor_orgs_raw":["@planetlabs ","Atmospheric and Environmental Research, Inc.","Development Seed","ECCC","German Aerospace Center (DLR)","University of Hawaii"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.12,"_pop_updated_issues_count":5,"_pop_closed_issues_count":3,"_pop_created_since_days":146,"_pop_updated_since_days":3,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":5.0,"_pop_comment_count":21.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.2,"_pop_dependents_count":0,"_pop_score":43.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/matplotlib/basemap/master/README.md","_readme_localurl":"matplotlib~basemap~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":360,"category":"ml-ops","githuburl":"https://github.com/tensorflow/data-validation","featured":null,"links":null,"description":null,"_repopath":"tensorflow/data-validation","_reponame":"data-validation","_stars":699,"_forks":149,"_watches":49,"_language":"Python","_homepage":"","_description":"data-validation: Library for exploring and validating machine learning data","_organization":"tensorflow","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-07-02T00:00:00.000Z","_age_weeks":242,"_stars_per_week":2.89,"_topics":[],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":25,"_pop_contributor_logins":["abdel91","brills","caveness","etiennedaspe","npoly","paulgc@google","santosh-d3vpl3x","terrytangyuan@akuity","tfx-copybara","zwestrick"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["akuity","google"],"_pop_contributor_orgs_raw":["@akuity","@google "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.5,"_pop_updated_issues_count":10,"_pop_closed_issues_count":7,"_pop_created_since_days":56,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":10.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":36.9,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tensorflow/data-validation/master/README.md","_readme_localurl":"tensorflow~data-validation~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tensorflow/data-validation/master/setup.py","https://raw.githubusercontent.com/tensorflow/data-validation/master/pyproject.toml"],"_requirements_localurls":["tensorflow~data-validation~setup.py","tensorflow~data-validation~pyproject.toml"]},{"index":168,"category":"gis","githuburl":"https://github.com/openeventdata/mordecai","featured":null,"links":null,"description":null,"_repopath":"openeventdata/mordecai","_reponame":"mordecai","_stars":693,"_forks":93,"_watches":36,"_language":"Python","_homepage":"","_description":"mordecai: Full text geoparsing as a Python library","_organization":"openeventdata","_updated_at":"2023-02-05T00:00:00.000Z","_created_at":"2016-06-23T00:00:00.000Z","_age_weeks":347,"_stars_per_week":1.99,"_topics":["geoparsing","geonames","nlp","geocoding","spacy","toponym-resolution"],"_last_commit_date":"2021-02-01T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["ahalterman@msupoliticalscience","arfon@github","chilland@maxar","johnb30","riordan@phillymedia"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["github","maxar","msupoliticalscience","phillymedia"],"_pop_contributor_orgs_raw":["@github","@phillymedia ","MSU Political Science","Maxar"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":81,"_pop_updated_since_days":25,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":3.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":21.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openeventdata/mordecai/master/README.md","_readme_localurl":"openeventdata~mordecai~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/openeventdata/mordecai/master/requirements.txt","https://raw.githubusercontent.com/openeventdata/mordecai/master/setup.py"],"_requirements_localurls":["openeventdata~mordecai~requirements.txt","openeventdata~mordecai~setup.py"]},{"index":818,"category":"ml","githuburl":"https://github.com/automl/tabpfn","featured":null,"links":null,"description":null,"_repopath":"automl/tabpfn","_reponame":"TabPFN","_stars":692,"_forks":49,"_watches":16,"_language":"Python","_homepage":"https://arxiv.org/abs/2207.01848","_description":"TabPFN: Official implementation of the TabPFN and the tabpfn package.","_organization":"automl","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-07-01T00:00:00.000Z","_age_weeks":33,"_stars_per_week":20.53,"_topics":[],"_last_commit_date":"2023-02-05T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["David-Schnurr","SamuelGabriel","eddiebergman@automl.org","frank-hutter@universityoffreiburg","noahho","tabpfn-anonym"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["automl.org","universityoffreiburg"],"_pop_contributor_orgs_raw":["University of Freiburg ","automl.org"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.35,"_pop_updated_issues_count":12,"_pop_closed_issues_count":11,"_pop_created_since_days":8,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":12.0,"_pop_comment_count":37.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.1,"_pop_dependents_count":0,"_pop_score":25.99,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/automl/tabpfn/master/README.md","_readme_localurl":"automl~tabpfn~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/automl/tabpfn/master/requirements.txt","https://raw.githubusercontent.com/automl/tabpfn/master/setup.py","https://raw.githubusercontent.com/automl/tabpfn/master/pyproject.toml"],"_requirements_localurls":["automl~tabpfn~requirements.txt","automl~tabpfn~setup.py","automl~tabpfn~pyproject.toml"]},{"index":620,"category":"jupyter","githuburl":"https://github.com/nbqa-dev/nbqa","featured":null,"links":null,"description":null,"_repopath":"nbqa-dev/nbqa","_reponame":"nbQA","_stars":692,"_forks":35,"_watches":7,"_language":"Python","_homepage":"https://nbqa.readthedocs.io/en/latest/index.html","_description":"nbQA: Run isort, pyupgrade, mypy, pylint, flake8, and more on Jupyter Notebooks","_organization":"nbqa-dev","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2020-07-11T00:00:00.000Z","_age_weeks":136,"_stars_per_week":5.07,"_topics":["python","jupyter-notebook","pre-commit","codequality","lint","isort","black","flake8","doctest","pyupgrade","pylint","mypy","yapf","pre-commit-hook"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":23,"_pop_contributor_logins":["MarcoGorelli@quansight","allcontributors[bot]","bdice@nvidia","caioariede@tesorio","girip11","janosh@cambridgeuniversity","neomatrix369@seniorsoftware,data,mlengnr(self-employed)","pre-commit-ci[bot]","s-weigand","tovrstra@ghentuniversity"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cambridgeuniversity","ghentuniversity","nvidia","quansight","seniorsoftware,data,mlengnr(self-employed)","tesorio"],"_pop_contributor_orgs_raw":["@NVIDIA","@Tesorio","Cambridge University","Ghent University","Quansight","Senior Software, Data, ML Engnr (Self-employed)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.27,"_pop_updated_issues_count":28,"_pop_closed_issues_count":26,"_pop_created_since_days":32,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":32,"_pop_recent_releases_adjusted_count":32,"_pop_issue_count":28.0,"_pop_comment_count":48.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":43.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nbqa-dev/nbqa/master/README.md","_readme_localurl":"nbqa-dev~nbqa~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nbqa-dev/nbqa/master/setup.py","https://raw.githubusercontent.com/nbqa-dev/nbqa/master/pyproject.toml"],"_requirements_localurls":["nbqa-dev~nbqa~setup.py","nbqa-dev~nbqa~pyproject.toml"]},{"index":572,"category":"gis","githuburl":"https://github.com/developmentseed/landsat-util","featured":null,"links":null,"description":null,"_repopath":"developmentseed/landsat-util","_reponame":"landsat-util","_stars":684,"_forks":155,"_watches":127,"_language":"Python","_homepage":null,"_description":"landsat-util: A utility to search, download and process Landsat 8 satellite imagery","_organization":"developmentseed","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2014-08-01T00:00:00.000Z","_age_weeks":446,"_stars_per_week":1.53,"_topics":[],"_last_commit_date":"2018-07-30T00:00:00.000Z","_pop_contributor_count":24,"_pop_contributor_logins":["angevineMiller@ucsdschoolofmedicine","astrojuanlu@kedro-org","drewbo@cloud-gov(work)+personalprojects;","julesair@ledgy","kamicut@developmentseed","lpinner","matthewhanson@element84","mileswwatkins","njwilson23@fortyninemaps","scisco"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cloud-gov(work)+personalprojects;","developmentseed","element84","fortyninemaps","kedro-org","ledgy","ucsdschoolofmedicine"],"_pop_contributor_orgs_raw":["@Ledgy ","@cloud-gov (work) + personal projects; ","@developmentseed ","@element84","@fortyninemaps","@kedro-org","UCSD School of Medicine"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":104,"_pop_updated_since_days":56,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":22.55,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/landsat-util/master/README.rst","_readme_localurl":"developmentseed~landsat-util~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/developmentseed/landsat-util/master/requirements.txt","https://raw.githubusercontent.com/developmentseed/landsat-util/master/setup.py"],"_requirements_localurls":["developmentseed~landsat-util~requirements.txt","developmentseed~landsat-util~setup.py"]},{"index":393,"category":"perf","githuburl":"https://github.com/klen/py-frameworks-bench","featured":null,"links":null,"description":null,"_repopath":"klen/py-frameworks-bench","_reponame":"py-frameworks-bench","_stars":682,"_forks":81,"_watches":27,"_language":"Python","_homepage":"https://klen.github.io/py-frameworks-bench/","_description":"py-frameworks-bench: Another benchmark for some python frameworks","_organization":"klen","_updated_at":"2023-01-21T00:00:00.000Z","_created_at":"2015-04-30T00:00:00.000Z","_age_weeks":407,"_stars_per_week":1.67,"_topics":["benchmark","python-frameworks"],"_last_commit_date":"2022-03-14T00:00:00.000Z","_pop_contributor_count":10,"_pop_contributor_logins":["Kludex@encode","abersheeran@get-post-technology","alkorgun","dependabot[bot]","gi0baro","github-actions[bot]","hawkowl@redhat","iurisilvio@buser","klen@home"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["buser","encode","get-post-technology","home","redhat"],"_pop_contributor_orgs_raw":["@encode","@get-post-technology","Buser","Red Hat","home"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":16,"_pop_closed_issues_count":9,"_pop_created_since_days":95,"_pop_updated_since_days":11,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":16.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":28.72,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/klen/py-frameworks-bench/master/README.md","_readme_localurl":"klen~py-frameworks-bench~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":882,"category":"time-series","githuburl":"https://github.com/winedarksea/autots","featured":null,"links":null,"description":null,"_repopath":"winedarksea/autots","_reponame":"AutoTS","_stars":678,"_forks":65,"_watches":14,"_language":"Python","_homepage":"","_description":"AutoTS: Automated Time Series Forecasting","_organization":"winedarksea","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-11-26T00:00:00.000Z","_age_weeks":169,"_stars_per_week":4.01,"_topics":["time-series","machine-learning","automl","autots","forecasting","deep-learning","preprocessing","feature-engineering"],"_last_commit_date":"2023-02-02T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["winedarksea"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.23,"_pop_updated_issues_count":13,"_pop_closed_issues_count":13,"_pop_created_since_days":39,"_pop_updated_since_days":1,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":13.0,"_pop_comment_count":30.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":24.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/winedarksea/autots/master/README.md","_readme_localurl":"winedarksea~autots~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/winedarksea/autots/master/setup.py"],"_requirements_localurls":["winedarksea~autots~setup.py"]},{"index":741,"category":"data","githuburl":"https://github.com/koaning/human-learn","featured":null,"links":null,"description":null,"_repopath":"koaning/human-learn","_reponame":"human-learn","_stars":677,"_forks":54,"_watches":13,"_language":"Jupyter Notebook","_homepage":"https://koaning.github.io/human-learn/","_description":"human-learn: Natural Intelligence is still a pretty good idea.","_organization":"koaning","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-07-11T00:00:00.000Z","_age_weeks":136,"_stars_per_week":4.96,"_topics":["scikit-learn","machine-learning","benchmark"],"_last_commit_date":"2021-10-05T00:00:00.000Z","_pop_contributor_count":5,"_pop_contributor_logins":["kayhoogland@floryn","koaning@explosion","nthomsencph@nttdatabusinesssolutions","ogabrielluiz","synapticarbors"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["explosion","floryn","nttdatabusinesssolutions"],"_pop_contributor_orgs_raw":["@explosion","Floryn","NTT Data Business Solutions"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":32,"_pop_updated_since_days":17,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":5.0,"_pop_dependents_count":0,"_pop_score":21.6,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/koaning/human-learn/master/README.md","_readme_localurl":"koaning~human-learn~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/koaning/human-learn/master/setup.py"],"_requirements_localurls":["koaning~human-learn~setup.py"]},{"index":483,"category":"gis","githuburl":"https://github.com/sentinel-hub/sentinelhub-py","featured":null,"links":null,"description":null,"_repopath":"sentinel-hub/sentinelhub-py","_reponame":"sentinelhub-py","_stars":674,"_forks":218,"_watches":47,"_language":"Python","_homepage":"http://sentinelhub-py.readthedocs.io/en/latest/","_description":"sentinelhub-py: Download and process satellite imagery in Python using Sentinel Hub services.","_organization":"sentinel-hub","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2017-05-17T00:00:00.000Z","_age_weeks":301,"_stars_per_week":2.24,"_topics":["python-library","sentinel-hub","aws","ogc-services","satellite-imagery"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":44,"_pop_contributor_logins":["AleksMat@google","andrejburja","batic@sinergise","blazs","devisperessutti@sinergisesentinel-hub","iovsn","jgersak","mlubej@eoresearchteamsinergise","rmocnik@sinergise","zigaLuksic@sinergise"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["eoresearchteamsinergise","google","sinergise","sinergisesentinel-hub"],"_pop_contributor_orgs_raw":["@Sinergise","@sinergise ","@sinergise @sentinel-hub ","EO Research Team @ Sinergise","Google","Sinergise"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.67,"_pop_updated_issues_count":65,"_pop_closed_issues_count":64,"_pop_created_since_days":70,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":65.0,"_pop_comment_count":37.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":44.3,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sentinel-hub/sentinelhub-py/master/README.md","_readme_localurl":"sentinel-hub~sentinelhub-py~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sentinel-hub/sentinelhub-py/master/requirements.txt","https://raw.githubusercontent.com/sentinel-hub/sentinelhub-py/master/setup.py","https://raw.githubusercontent.com/sentinel-hub/sentinelhub-py/master/pyproject.toml"],"_requirements_localurls":["sentinel-hub~sentinelhub-py~requirements.txt","sentinel-hub~sentinelhub-py~setup.py","sentinel-hub~sentinelhub-py~pyproject.toml"]},{"index":629,"category":"gis","githuburl":"https://github.com/makepath/xarray-spatial","featured":null,"links":null,"description":null,"_repopath":"makepath/xarray-spatial","_reponame":"xarray-spatial","_stars":672,"_forks":76,"_watches":24,"_language":"Python","_homepage":"https://xarray-spatial.org","_description":"xarray-spatial: Raster-based Spatial Analytics for Python","_organization":"makepath","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-02-08T00:00:00.000Z","_age_weeks":158,"_stars_per_week":4.24,"_topics":["python","raster-analysis","spatial-analysis","numba","datashader","xarray"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":28,"_pop_contributor_logins":["SapirLastimoza-Dooley@esri","a7az0th@software-supreme","brendancol@makepath","calexat-123","chase-dwelle","giancastro@makepath","ianthomas23@anaconda","kristinepetrosyan","marcozimmermannpm","thuydotm@makepath"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","esri","makepath","software-supreme"],"_pop_contributor_orgs_raw":["@makepath","@makepath ","Anaconda, Inc.","Esri","Software-Supreme"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.02,"_pop_updated_issues_count":107,"_pop_closed_issues_count":41,"_pop_created_since_days":37,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":107.0,"_pop_comment_count":40.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":37.04,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/makepath/xarray-spatial/master/README.md","_readme_localurl":"makepath~xarray-spatial~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/makepath/xarray-spatial/master/requirements.txt","https://raw.githubusercontent.com/makepath/xarray-spatial/master/setup.py","https://raw.githubusercontent.com/makepath/xarray-spatial/master/pyproject.toml"],"_requirements_localurls":["makepath~xarray-spatial~requirements.txt","makepath~xarray-spatial~setup.py","makepath~xarray-spatial~pyproject.toml"]},{"index":164,"category":"nlp","githuburl":"https://github.com/explosion/spacy-stanza","featured":null,"links":null,"description":null,"_repopath":"explosion/spacy-stanza","_reponame":"spacy-stanza","_stars":672,"_forks":50,"_watches":26,"_language":"Python","_homepage":"","_description":"spacy-stanza: \ud83d\udca5 Use the latest Stanza (StanfordNLP) research models directly in spaCy","_organization":"explosion","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2019-01-31T00:00:00.000Z","_age_weeks":211,"_stars_per_week":3.17,"_topics":["nlp","natural-language-processing","machine-learning","data-science","spacy","spacy-pipeline","stanford-nlp","stanford-corenlp","stanford-machine-learning","corenlp","stanza"],"_last_commit_date":"2022-05-27T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["BramVanroy@lt3kuleuven","SergeyShk@anna.money","adrianeboyd","buhrmann@graphext","honnibal@founderexplosion","ines@founderexplosion","yuhaozhang@stanforduniversity"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anna.money","founderexplosion","graphext","lt3kuleuven","stanforduniversity"],"_pop_contributor_orgs_raw":["@graphext ","@lt3 @kuleuven","ANNA.MONEY","Founder @explosion ","Stanford University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":49,"_pop_updated_since_days":9,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":4.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":24.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/spacy-stanza/master/README.md","_readme_localurl":"explosion~spacy-stanza~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/explosion/spacy-stanza/master/requirements.txt","https://raw.githubusercontent.com/explosion/spacy-stanza/master/setup.py"],"_requirements_localurls":["explosion~spacy-stanza~requirements.txt","explosion~spacy-stanza~setup.py"]},{"index":938,"category":"web","githuburl":"https://github.com/koxudaxi/fastapi-code-generator","featured":null,"links":null,"description":null,"_repopath":"koxudaxi/fastapi-code-generator","_reponame":"fastapi-code-generator","_stars":662,"_forks":76,"_watches":14,"_language":"Python","_homepage":null,"_description":"fastapi-code-generator: This code generator creates FastAPI app from an openapi file.","_organization":"koxudaxi","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2020-06-14T00:00:00.000Z","_age_weeks":140,"_stars_per_week":4.71,"_topics":["fastapi","openapi","generator","python","pydantic"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":18,"_pop_contributor_logins":["allen-munsch","baophamtd","david-westreicher","dependabot-preview[bot]","dependabot[bot]","ioggstream@teamdigitale","koxudaxi@tractabletractableai","n0nvme","rominf@aiven","ytoml"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aiven","teamdigitale","tractabletractableai"],"_pop_contributor_orgs_raw":["@teamdigitale","Aiven","Tractable @tractableai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.65,"_pop_updated_issues_count":33,"_pop_closed_issues_count":22,"_pop_created_since_days":33,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":33.0,"_pop_comment_count":42.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":35.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/koxudaxi/fastapi-code-generator/master/README.md","_readme_localurl":"koxudaxi~fastapi-code-generator~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/koxudaxi/fastapi-code-generator/master/pyproject.toml"],"_requirements_localurls":["koxudaxi~fastapi-code-generator~pyproject.toml"]},{"index":475,"category":"viz","githuburl":"https://github.com/holoviz/holoviz","featured":1.0,"links":null,"description":null,"_repopath":"holoviz/holoviz","_reponame":"holoviz","_stars":659,"_forks":116,"_watches":35,"_language":"Python","_homepage":"https://holoviz.org/","_description":"holoviz: High-level tools to simplify visualization in Python.","_organization":"holoviz","_updated_at":"2023-02-16T00:00:00.000Z","_created_at":"2017-09-22T00:00:00.000Z","_age_weeks":282,"_stars_per_week":2.33,"_topics":["holoviz","holoviews","geoviews","datashader","panel","hvplot","colorcet"],"_last_commit_date":"2023-01-30T00:00:00.000Z","_pop_contributor_count":21,"_pop_contributor_logins":["Hoxbro","ceball","droumis","jbednar@anaconda","jlstevens","jsignell@azavea","kebowen730","maximlt@anaconda","philippjfr@anaconda","ppwadhwa"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","azavea"],"_pop_contributor_orgs_raw":["@azavea","Anaconda","Anaconda Inc.","Anaconda, Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.71,"_pop_updated_issues_count":20,"_pop_closed_issues_count":16,"_pop_created_since_days":66,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":20.0,"_pop_comment_count":39.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":36.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/holoviz/master/README.md","_readme_localurl":"holoviz~holoviz~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/holoviz/master/setup.py","https://raw.githubusercontent.com/holoviz/holoviz/master/pyproject.toml"],"_requirements_localurls":["holoviz~holoviz~setup.py","holoviz~holoviz~pyproject.toml"]},{"index":808,"category":"web","githuburl":"https://github.com/s3rius/fastapi-template","featured":null,"links":null,"description":null,"_repopath":"s3rius/fastapi-template","_reponame":"FastAPI-template","_stars":659,"_forks":69,"_watches":12,"_language":"Python","_homepage":"","_description":"FastAPI-template: Feature rich robust FastAPI template.","_organization":"s3rius","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2020-10-05T00:00:00.000Z","_age_weeks":124,"_stars_per_week":5.3,"_topics":["fastapi","cookiecutter","cookiecutter-template","cookiecutter-python3","sqlalchemy-orm","asynchronous","ormar","tortoise-orm","aerich","alembic","python3","asyncio","graphql","strawberry-graphql","opentelemetry","prometheus","sentry","fastapi-template","fastapi-boilerplate"],"_last_commit_date":"2023-02-05T00:00:00.000Z","_pop_contributor_count":13,"_pop_contributor_logins":["Bensebabillal","WP-LKL","am1ru1@infosec","anton-petrov","chandr-andr@iponweb","codeleta","gpkc@fyndiq","haluk@universityofnebraska-lincoln","s3rius","sorasful"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["fyndiq","infosec","iponweb","universityofnebraska-lincoln"],"_pop_contributor_orgs_raw":["@fyndiq","IPONWEB ","InfoSec","University of Nebraska-Lincoln"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.08,"_pop_updated_issues_count":17,"_pop_closed_issues_count":14,"_pop_created_since_days":29,"_pop_updated_since_days":1,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":17.0,"_pop_comment_count":36.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":36.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/s3rius/fastapi-template/master/README.md","_readme_localurl":"s3rius~fastapi-template~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/s3rius/fastapi-template/master/pyproject.toml"],"_requirements_localurls":["s3rius~fastapi-template~pyproject.toml"]},{"index":637,"category":"util","githuburl":"https://github.com/samuelcolvin/python-devtools","featured":null,"links":null,"description":null,"_repopath":"samuelcolvin/python-devtools","_reponame":"python-devtools","_stars":654,"_forks":33,"_watches":8,"_language":"Python","_homepage":"https://python-devtools.helpmanual.io/","_description":"python-devtools: Dev tools for python","_organization":"samuelcolvin","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2017-08-20T00:00:00.000Z","_age_weeks":287,"_stars_per_week":2.28,"_topics":["python-devtools","python","devtools"],"_last_commit_date":"2023-02-06T00:00:00.000Z","_pop_contributor_count":11,"_pop_contributor_logins":["0xsirsaif","AlwxSin@pik.pro","Cielquan","alexmojaki","aliereno","dependabot[bot]","pyup-bot@pyupio","samuelcolvin@pydantic","staticf0x","the-vty"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["pik.pro","pydantic","pyupio"],"_pop_contributor_orgs_raw":["@pik.pro","@pydantic","@pyupio"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":12,"_pop_closed_issues_count":5,"_pop_created_since_days":67,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":12.0,"_pop_comment_count":23.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":33.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/samuelcolvin/python-devtools/master/README.md","_readme_localurl":"samuelcolvin~python-devtools~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/samuelcolvin/python-devtools/master/requirements.txt","https://raw.githubusercontent.com/samuelcolvin/python-devtools/master/pyproject.toml"],"_requirements_localurls":["samuelcolvin~python-devtools~requirements.txt","samuelcolvin~python-devtools~pyproject.toml"]},{"index":344,"category":"data","githuburl":"https://github.com/scikit-hep/awkward-1.0","featured":null,"links":null,"description":null,"_repopath":"scikit-hep/awkward-1.0","_reponame":"awkward","_stars":648,"_forks":68,"_watches":17,"_language":"Python","_homepage":"https://awkward-array.org","_description":"awkward: Manipulate JSON-like data with NumPy-like idioms.","_organization":"scikit-hep","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2019-08-14T00:00:00.000Z","_age_weeks":184,"_stars_per_week":3.52,"_topics":["json","numpy","data-analysis","jagged-array","ragged-array","columnar-format","pandas","numba","apache-arrow","cern-root","scikit-hep","python"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":36,"_pop_contributor_logins":["agoose77","allcontributors[bot]","dependabot[bot]","henryiii@princetonuniversity","ianna","ioanaif","jpivarski@princeton,iris-hep,pyhep,scikit-hep","pre-commit-ci[bot]","reikdas@purdueuniversity","swishdiff@microsoft"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["microsoft","princeton,iris-hep,pyhep,scikit-hep","princetonuniversity","purdueuniversity"],"_pop_contributor_orgs_raw":["@microsoft","Princeton University","Princeton, IRIS-HEP, PyHEP, Scikit-HEP","Purdue University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.38,"_pop_updated_issues_count":374,"_pop_closed_issues_count":324,"_pop_created_since_days":43,"_pop_updated_since_days":0,"_pop_recent_releases_count":45,"_pop_recent_releases_estimated_tags":62,"_pop_recent_releases_adjusted_count":45,"_pop_issue_count":374.0,"_pop_comment_count":809.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":50.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scikit-hep/awkward-1.0/master/README.md","_readme_localurl":"scikit-hep~awkward-1.0~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scikit-hep/awkward-1.0/master/pyproject.toml"],"_requirements_localurls":["scikit-hep~awkward-1.0~pyproject.toml"]},{"index":849,"category":"util","githuburl":"https://github.com/fsspec/s3fs","featured":null,"links":null,"description":null,"_repopath":"fsspec/s3fs","_reponame":"s3fs","_stars":644,"_forks":216,"_watches":22,"_language":"Python","_homepage":"http://s3fs.readthedocs.io/en/latest/","_description":"s3fs: S3 Filesystem ","_organization":"fsspec","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2016-03-16T00:00:00.000Z","_age_weeks":362,"_stars_per_week":1.78,"_topics":["hacktoberfest"],"_last_commit_date":"2023-02-13T00:00:00.000Z","_pop_contributor_count":113,"_pop_contributor_logins":["TomAugspurger@microsoft","fhoering@criteo","gsakkis","isidentical@fal-ai","jrbourbeau@coiled","koverholt@google","mariusvniekerk@voltrondata","martindurant@anaconda","mrocklin@coiled","raybellwaves@dtn"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","coiled","criteo","dtn","fal-ai","google","microsoft","voltrondata"],"_pop_contributor_orgs_raw":["@coiled ","@criteo ","@fal-ai","@microsoft","@voltrondata","Anaconda, inc.","DTN","Google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.87,"_pop_updated_issues_count":46,"_pop_closed_issues_count":26,"_pop_created_since_days":84,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":46.0,"_pop_comment_count":124.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.7,"_pop_dependents_count":0,"_pop_score":50.24,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/fsspec/s3fs/master/README.rst","_readme_localurl":"fsspec~s3fs~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/fsspec/s3fs/master/requirements.txt","https://raw.githubusercontent.com/fsspec/s3fs/master/setup.py"],"_requirements_localurls":["fsspec~s3fs~requirements.txt","fsspec~s3fs~setup.py"]},{"index":235,"category":"nlp","githuburl":"https://github.com/salesforce/codet5","featured":null,"links":null,"description":null,"_repopath":"salesforce/codet5","_reponame":"CodeT5","_stars":642,"_forks":121,"_watches":19,"_language":"Python","_homepage":"https://arxiv.org/abs/2109.00859","_description":"Code for CodeT5: a new code-aware pre-trained encoder-decoder model.","_organization":"salesforce","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2021-08-16T00:00:00.000Z","_age_weeks":79,"_stars_per_week":8.1,"_topics":["language-model","code-intelligence","programming-language","representation-learning","nlp"],"_last_commit_date":"2022-07-08T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["svc-scm","yuewang-cuhk@salesforceresearch"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["salesforceresearch"],"_pop_contributor_orgs_raw":["Salesforce Research"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":21,"_pop_closed_issues_count":14,"_pop_created_since_days":18,"_pop_updated_since_days":8,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":21.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":15.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/codet5/master/README.md","_readme_localurl":"salesforce~codet5~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":640,"category":"data","githuburl":"https://github.com/dask/fastparquet","featured":null,"links":null,"description":null,"_repopath":"dask/fastparquet","_reponame":"fastparquet","_stars":639,"_forks":164,"_watches":18,"_language":"Python","_homepage":null,"_description":"fastparquet: python implementation of the parquet columnar file format.","_organization":"dask","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2015-11-06T00:00:00.000Z","_age_weeks":380,"_stars_per_week":1.68,"_topics":["hacktoberfest"],"_last_commit_date":"2023-02-09T00:00:00.000Z","_pop_contributor_count":86,"_pop_contributor_logins":["TomAugspurger@microsoft","dscottcs@steminc","indera","jaguarx","jcrobak@confluentinc","jonathanunderwood","martindurant@anaconda","mrocklin@coiled","pitrou","yohplala"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","coiled","confluentinc","microsoft","steminc"],"_pop_contributor_orgs_raw":["@coiled ","@confluentinc ","@microsoft","Anaconda, inc.","Stem Inc"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.08,"_pop_updated_issues_count":37,"_pop_closed_issues_count":36,"_pop_created_since_days":89,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":37.0,"_pop_comment_count":82.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":46.83,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dask/fastparquet/master/README.rst","_readme_localurl":"dask~fastparquet~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dask/fastparquet/master/requirements.txt","https://raw.githubusercontent.com/dask/fastparquet/master/setup.py","https://raw.githubusercontent.com/dask/fastparquet/master/pyproject.toml"],"_requirements_localurls":["dask~fastparquet~requirements.txt","dask~fastparquet~setup.py","dask~fastparquet~pyproject.toml"]},{"index":760,"category":"study","githuburl":"https://github.com/jackhidary/quantumcomputingbook","featured":null,"links":null,"description":null,"_repopath":"jackhidary/quantumcomputingbook","_reponame":"quantumcomputingbook","_stars":633,"_forks":188,"_watches":55,"_language":"Jupyter Notebook","_homepage":"","_description":"quantumcomputingbook: Companion site for the textbook Quantum Computing: An Applied Approach","_organization":"jackhidary","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2019-02-28T00:00:00.000Z","_age_weeks":207,"_stars_per_week":3.05,"_topics":["quantum","quantum-computing","cirq","qiskit","rigetti","quantum-processor","sycamore","quantum-supremacy","quantum-information","quantum-information-science","google-quantum"],"_last_commit_date":"2021-10-14T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["JackHidary","dlyongemallo@google","jaeyoo@google","joetricot","kikejimenez","rmlarose"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_raw":["Google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":48,"_pop_updated_since_days":16,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":16.25,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jackhidary/quantumcomputingbook/master/README.md","_readme_localurl":"jackhidary~quantumcomputingbook~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":18,"category":"nlp","githuburl":"https://github.com/explosion/spacy-streamlit","featured":null,"links":null,"description":null,"_repopath":"explosion/spacy-streamlit","_reponame":"spacy-streamlit","_stars":631,"_forks":102,"_watches":18,"_language":"Python","_homepage":"https://share.streamlit.io/ines/spacy-streamlit-demo/master/app.py","_description":"spacy-streamlit: \ud83d\udc51 spaCy building blocks and visualizers for Streamlit apps","_organization":"explosion","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-06-23T00:00:00.000Z","_age_weeks":139,"_stars_per_week":4.53,"_topics":["spacy","nlp","natural-language-processing","visualizers","dependency-parsing","part-of-speech-tagging","named-entity-recognition","ner","streamlit","visualizer","text-classification","word-vectors","tokenization","machine-learning"],"_last_commit_date":"2022-08-23T00:00:00.000Z","_pop_contributor_count":12,"_pop_contributor_logins":["Jcharis@jcharistech","Jette16","adrianeboyd","callistachang","discdiver","ines@founderexplosion","narayanacharya6","pmbaumgartner@explosion","svlandeg@explosion&oxykodit","tvst@streamlit"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["explosion","explosion&oxykodit","founderexplosion","jcharistech","streamlit"],"_pop_contributor_orgs_raw":["@explosion","Explosion & OxyKodit","Founder @explosion ","JCharisTech","Streamlit"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.25,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":32,"_pop_updated_since_days":6,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":25.72,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/explosion/spacy-streamlit/master/README.md","_readme_localurl":"explosion~spacy-streamlit~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/explosion/spacy-streamlit/master/requirements.txt","https://raw.githubusercontent.com/explosion/spacy-streamlit/master/setup.py"],"_requirements_localurls":["explosion~spacy-streamlit~requirements.txt","explosion~spacy-streamlit~setup.py"]},{"index":839,"category":"util","githuburl":"https://github.com/idanya/algo-trader","featured":null,"links":null,"description":null,"_repopath":"idanya/algo-trader","_reponame":"algo-trader","_stars":631,"_forks":67,"_watches":22,"_language":"Python","_homepage":"","_description":"algo-trader: Trading bot with support for realtime trading, backtesting, custom strategies and much more.","_organization":"idanya","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2021-09-14T00:00:00.000Z","_age_weeks":75,"_stars_per_week":8.4,"_topics":["algorithmic-trading","backtesting","crypto-bot","python","technical-analysis","trading-bot","trading-strategies"],"_last_commit_date":"2023-01-20T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["ChrisAnstey","idanya@fireblocks","scottsdevelopment@scott'sdevelopment"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["fireblocks","scott'sdevelopment"],"_pop_contributor_orgs_raw":["Fireblocks","Scott's Development"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":13,"_pop_closed_issues_count":11,"_pop_created_since_days":18,"_pop_updated_since_days":1,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":13.0,"_pop_comment_count":16.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":26.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/idanya/algo-trader/master/README.md","_readme_localurl":"idanya~algo-trader~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/idanya/algo-trader/master/requirements.txt","https://raw.githubusercontent.com/idanya/algo-trader/master/pyproject.toml"],"_requirements_localurls":["idanya~algo-trader~requirements.txt","idanya~algo-trader~pyproject.toml"]},{"index":397,"category":"web","githuburl":"https://github.com/klen/muffin","featured":null,"links":null,"description":null,"_repopath":"klen/muffin","_reponame":"muffin","_stars":625,"_forks":25,"_watches":31,"_language":"Python","_homepage":"","_description":"Muffin is a fast, simple and asyncronous web-framework for Python 3","_organization":"klen","_updated_at":"2023-02-02T00:00:00.000Z","_created_at":"2015-02-03T00:00:00.000Z","_age_weeks":420,"_stars_per_week":1.49,"_topics":["python","asyncio","trio","asgi","webframework","muffin","curio"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":13,"_pop_contributor_logins":["DanielBacci@nubank","Krukov","MarSoft","abnerpc@loadsmart","dependabot[bot]","drgarcia1986","dveselov","ei-grad@faceapp","klen@home","msabramo@adobe"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["adobe","faceapp","home","loadsmart","nubank"],"_pop_contributor_orgs_raw":["@adobe","@loadsmart","FaceApp","Nubank","home"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":98,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":42,"_pop_recent_releases_adjusted_count":42,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":33.95,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/klen/muffin/master/README.rst","_readme_localurl":"klen~muffin~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/klen/muffin/master/setup.py"],"_requirements_localurls":["klen~muffin~setup.py"]},{"index":595,"category":"gis","githuburl":"https://github.com/uber/h3-py","featured":null,"links":null,"description":null,"_repopath":"uber/h3-py","_reponame":"h3-py","_stars":625,"_forks":116,"_watches":36,"_language":"Python","_homepage":"https://uber.github.io/h3-py","_description":"h3-py: Python bindings for H3, a hierarchical hexagonal geospatial indexing system","_organization":"uber","_updated_at":"2023-02-16T00:00:00.000Z","_created_at":"2018-06-12T00:00:00.000Z","_age_weeks":245,"_stars_per_week":2.55,"_topics":["uber","python","hexagonal-architecture","h3","geospatial","geocoding","gis"],"_last_commit_date":"2022-11-24T00:00:00.000Z","_pop_contributor_count":16,"_pop_contributor_logins":["TengHu@softwareengineer,uber","ajfriend","dfellis@alantech","henryiii@princetonuniversity","isaacbrodsky@unfoldedinc","karentycoon","kylebarron","nastasi-oq@g.e.m.foundation","nrabinowitz","wwchen"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["alantech","g.e.m.foundation","princetonuniversity","softwareengineer,uber","unfoldedinc"],"_pop_contributor_orgs_raw":["@UnfoldedInc ","@alantech","G.E.M. Foundation","Princeton University","Software Engineer, Uber"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.46,"_pop_updated_issues_count":21,"_pop_closed_issues_count":8,"_pop_created_since_days":57,"_pop_updated_since_days":3,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":21.0,"_pop_comment_count":32.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":34.23,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/uber/h3-py/master/readme.md","_readme_localurl":"uber~h3-py~readme.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/uber/h3-py/master/setup.py","https://raw.githubusercontent.com/uber/h3-py/master/pyproject.toml"],"_requirements_localurls":["uber~h3-py~setup.py","uber~h3-py~pyproject.toml"]},{"index":690,"category":"util","githuburl":"https://github.com/pyfpdf/fpdf2","featured":null,"links":null,"description":null,"_repopath":"pyfpdf/fpdf2","_reponame":"fpdf2","_stars":615,"_forks":163,"_watches":17,"_language":"Python","_homepage":"https://pyfpdf.github.io/fpdf2/","_description":"fpdf2: Simple PDF generation for Python","_organization":"pyfpdf","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-03-15T00:00:00.000Z","_age_weeks":310,"_stars_per_week":1.98,"_topics":["pdf-generation","pdf","python","hacktoberfest","barcode","pdf-library","python3","library","svg","markdown"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":87,"_pop_contributor_logins":["Lucas-C@sncfconnect&techvoyages-sncf-technologies","RedShy","RomanKharin","alexanderankin@lymaconsulting","allcontributors[bot]","andersonhc","eumiro","fbernhart","gmischler","reingart@onapsis"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["lymaconsulting","onapsis","sncfconnect&techvoyages-sncf-technologies"],"_pop_contributor_orgs_raw":["@Onapsis","Lyma Consulting","SNCF Connect & Tech @voyages-sncf-technologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.06,"_pop_updated_issues_count":109,"_pop_closed_issues_count":81,"_pop_created_since_days":72,"_pop_updated_since_days":0,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":109.0,"_pop_comment_count":257.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":48.62,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyfpdf/fpdf2/master/README.md","_readme_localurl":"pyfpdf~fpdf2~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pyfpdf/fpdf2/master/setup.py"],"_requirements_localurls":["pyfpdf~fpdf2~setup.py"]},{"index":680,"category":"util","githuburl":"https://github.com/lukasschwab/arxiv.py","featured":null,"links":null,"description":null,"_repopath":"lukasschwab/arxiv.py","_reponame":"arxiv.py","_stars":608,"_forks":81,"_watches":16,"_language":"Python","_homepage":"","_description":"arxiv.py: Python wrapper for the arXiv API","_organization":"lukasschwab","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-11-25T00:00:00.000Z","_age_weeks":378,"_stars_per_week":1.61,"_topics":["arxiv","arxiv-api","python-wrapper","pdf"],"_last_commit_date":"2023-02-01T00:00:00.000Z","_pop_contributor_count":14,"_pop_contributor_logins":["Japoneris","Miguel-ASM@bbkbootcamp(code4jobs)","arkel23@nycupcs","jacquerie@aws","lukasschwab","mdamien","mhils","msoelch","natfarleydev","windisch"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aws","bbkbootcamp(code4jobs)","nycupcs"],"_pop_contributor_orgs_raw":["@aws","BBK Bootcamp (Code 4 Jobs)","NYCU PCS"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":8,"_pop_closed_issues_count":8,"_pop_created_since_days":88,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":8.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":29.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lukasschwab/arxiv.py/master/README.md","_readme_localurl":"lukasschwab~arxiv.py~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lukasschwab/arxiv.py/master/requirements.txt","https://raw.githubusercontent.com/lukasschwab/arxiv.py/master/setup.py"],"_requirements_localurls":["lukasschwab~arxiv.py~requirements.txt","lukasschwab~arxiv.py~setup.py"]},{"index":796,"category":"graph","githuburl":"https://github.com/westhealth/pyvis","featured":null,"links":null,"description":null,"_repopath":"westhealth/pyvis","_reponame":"pyvis","_stars":607,"_forks":115,"_watches":15,"_language":"HTML","_homepage":"http://pyvis.readthedocs.io/en/latest/","_description":"pyvis: Python package for creating and visualizing interactive network graphs.","_organization":"westhealth","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2018-05-10T00:00:00.000Z","_age_weeks":249,"_stars_per_week":2.43,"_topics":["network-visualization","python","networkx"],"_last_commit_date":"2023-02-10T00:00:00.000Z","_pop_contributor_count":32,"_pop_contributor_logins":["BerserkerGaruk","Darkproduct","Nanoseb","WilsonHChung","aalok-sathe@mitbrain&cognitivesciences","boludo00","jhunpingco@westhealthinstitute","js-konda@westhealth","nocluebutalotofit","olive004@universityofoxford"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["mitbrain&cognitivesciences","universityofoxford","westhealth","westhealthinstitute"],"_pop_contributor_orgs_raw":["@MIT Brain & Cognitive Sciences","University of Oxford","West Health Institute ","WestHealth"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.69,"_pop_updated_issues_count":32,"_pop_closed_issues_count":3,"_pop_created_since_days":58,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":32.0,"_pop_comment_count":25.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":36.79,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/westhealth/pyvis/master/README.md","_readme_localurl":"westhealth~pyvis~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/westhealth/pyvis/master/requirements.txt","https://raw.githubusercontent.com/westhealth/pyvis/master/setup.py"],"_requirements_localurls":["westhealth~pyvis~requirements.txt","westhealth~pyvis~setup.py"]},{"index":982,"category":"ml","githuburl":"https://github.com/googlecloudplatform/vertex-ai-samples","featured":null,"links":null,"description":null,"_repopath":"googlecloudplatform/vertex-ai-samples","_reponame":"vertex-ai-samples","_stars":604,"_forks":407,"_watches":37,"_language":"Jupyter Notebook","_homepage":"https://cloud.google.com/vertex-ai","_description":"vertex-ai-samples: Sample code and notebooks for Vertex AI, the end-to-end machine learning platform on Google Cloud","_organization":"googlecloudplatform","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2021-05-27T00:00:00.000Z","_age_weeks":90,"_stars_per_week":6.65,"_topics":["samples","gcp","google-cloud-platform","vertex-ai","notebook","python","ai","ml","data-science","mlops"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":98,"_pop_contributor_logins":["andrewferlitsch","inardini@googlecloud","ivanmkc@google","krishr2d2@springml-code","kweinmeister@google","morgandu@google","renovate-bot@mend","soheilazangeneh@google","sudarshan-SpringML","udaypunna@springml"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","googlecloud","mend","springml","springml-code"],"_pop_contributor_orgs_raw":["@google ","@mend","@springml-code ","Google","Google Cloud ","SpringML"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":23.08,"_pop_updated_issues_count":279,"_pop_closed_issues_count":235,"_pop_created_since_days":21,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":275.0,"_pop_comment_count":473.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":46.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/googlecloudplatform/vertex-ai-samples/master/README.md","_readme_localurl":"googlecloudplatform~vertex-ai-samples~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":831,"category":"typing","githuburl":"https://github.com/python-attrs/cattrs","featured":null,"links":null,"description":null,"_repopath":"python-attrs/cattrs","_reponame":"cattrs","_stars":597,"_forks":87,"_watches":16,"_language":"Python","_homepage":null,"_description":"cattrs: Complex custom class converters for attrs.","_organization":"python-attrs","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2016-08-28T00:00:00.000Z","_age_weeks":338,"_stars_per_week":1.76,"_topics":["attrs","deserialization","serialization"],"_last_commit_date":"2023-02-05T00:00:00.000Z","_pop_contributor_count":45,"_pop_contributor_logins":["MicaelJarniac@micaeljarniac","Tinche@pocketzworld","adetokunbo","bibajz","bluetech","dswistowski","jap","joeldodge79@looker","raabf@siemensag","toumorokoshi@google"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","looker","micaeljarniac","pocketzworld","siemensag"],"_pop_contributor_orgs_raw":["@google","@pocketzworld ","Looker","Micael Jarniac","Siemens AG"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.13,"_pop_updated_issues_count":21,"_pop_closed_issues_count":15,"_pop_created_since_days":79,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":21.0,"_pop_comment_count":49.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":44.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/python-attrs/cattrs/master/README.md","_readme_localurl":"python-attrs~cattrs~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-attrs/cattrs/master/pyproject.toml"],"_requirements_localurls":["python-attrs~cattrs~pyproject.toml"]},{"index":958,"category":"web","githuburl":"https://github.com/long2ice/fastapi-cache","featured":null,"links":null,"description":null,"_repopath":"long2ice/fastapi-cache","_reponame":"fastapi-cache","_stars":596,"_forks":88,"_watches":9,"_language":"Python","_homepage":"https://github.com/long2ice/fastapi-cache","_description":"fastapi-cache is a tool to cache fastapi response and function result, with backends support redis and memcached.","_organization":"long2ice","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-08-25T00:00:00.000Z","_age_weeks":130,"_stars_per_week":4.58,"_topics":["cache","fastapi","redis","memcached"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":24,"_pop_contributor_logins":["DevLucca@redventures","Mrreadiness","cpbotha","dveleztx@tamusa-acm","geo-mathijs","hackjammer","long2ice","schmocker@axpogridag","squaresmile","vvanglro"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["axpogridag","redventures","tamusa-acm"],"_pop_contributor_orgs_raw":["@RedVentures ","@TAMUSA-ACM","Axpo Grid AG"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.02,"_pop_updated_issues_count":30,"_pop_closed_issues_count":21,"_pop_created_since_days":30,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":30.0,"_pop_comment_count":50.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":36.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/long2ice/fastapi-cache/master/README.md","_readme_localurl":"long2ice~fastapi-cache~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/long2ice/fastapi-cache/master/pyproject.toml"],"_requirements_localurls":["long2ice~fastapi-cache~pyproject.toml"]},{"index":505,"category":"gis","githuburl":"https://github.com/scikit-mobility/scikit-mobility","featured":null,"links":null,"description":null,"_repopath":"scikit-mobility/scikit-mobility","_reponame":"scikit-mobility","_stars":593,"_forks":137,"_watches":28,"_language":"Python","_homepage":"https://scikit-mobility.github.io/scikit-mobility/","_description":"scikit-mobility: mobility analysis in Python","_organization":"scikit-mobility","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2019-04-30T00:00:00.000Z","_age_weeks":199,"_stars_per_week":2.98,"_topics":["data-science","data-analysis","human-mobility","complex-systems","network-science","statistics","scikit-mobility","mobility-analysis","risk-assessment","mobility-flows","synthetic-flows"],"_last_commit_date":"2023-01-20T00:00:00.000Z","_pop_contributor_count":23,"_pop_contributor_logins":["FilippoSimini@argonnenationallaboratory","GiulianoCornacchia","gbarlacchi","jonpappalord@isti-cnr","lcandeago","miccferr","michelegirolami@isti-cnr","pareyesv@barcelonasupercomputingcenter,bsc","pellungrobe","sebxwolf"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["argonnenationallaboratory","barcelonasupercomputingcenter,bsc","isti-cnr"],"_pop_contributor_orgs_raw":["Argonne National Laboratory","Barcelona Supercomputing Center, BSC","ISTI-CNR"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.1,"_pop_updated_issues_count":50,"_pop_closed_issues_count":36,"_pop_created_since_days":46,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":50.0,"_pop_comment_count":32.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":33.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scikit-mobility/scikit-mobility/master/README.md","_readme_localurl":"scikit-mobility~scikit-mobility~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scikit-mobility/scikit-mobility/master/setup.py","https://raw.githubusercontent.com/scikit-mobility/scikit-mobility/master/pyproject.toml"],"_requirements_localurls":["scikit-mobility~scikit-mobility~setup.py","scikit-mobility~scikit-mobility~pyproject.toml"]},{"index":889,"category":"gis","githuburl":"https://github.com/osgeo/grass","featured":null,"links":null,"description":null,"_repopath":"osgeo/grass","_reponame":"grass","_stars":590,"_forks":218,"_watches":43,"_language":"C","_homepage":"https://grass.osgeo.org","_description":"GRASS GIS - free and open source Geographic Information System (GIS)","_organization":"osgeo","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-05-17T00:00:00.000Z","_age_weeks":196,"_stars_per_week":3.0,"_topics":["osgeo","grass-gis","geospatial","geospatial-analysis","raster","vector","timeseries-analysis","earth-observation","gis","hacktoberfest","open-science","remote-sensing","science","spatial"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":96,"_pop_contributor_logins":["HamishB","HuidaeCho@newmexicostateuniversity","glynnc","huhabla","landam@czechtechnicaluniversityinprague","lucadelu@fondazioneedmundmach","metzm","neteler@mundialis","petrasovaa@ncsu","wenzeslaus@northcarolinastateuniversity"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["czechtechnicaluniversityinprague","fondazioneedmundmach","mundialis","ncsu","newmexicostateuniversity","northcarolinastateuniversity"],"_pop_contributor_orgs_raw":["@mundialis ","Czech Technical University in Prague","Fondazione Edmund Mach","NCSU","New Mexico State University","North Carolina State University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.02,"_pop_updated_issues_count":416,"_pop_closed_issues_count":196,"_pop_created_since_days":46,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":36,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":416.0,"_pop_comment_count":628.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":51.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/osgeo/grass/master/README.md","_readme_localurl":"osgeo~grass~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/osgeo/grass/master/pyproject.toml"],"_requirements_localurls":["osgeo~grass~pyproject.toml"]},{"index":117,"category":"nlp","githuburl":"https://github.com/iclrandd/blackstone","featured":null,"links":null,"description":null,"_repopath":"iclrandd/blackstone","_reponame":"Blackstone","_stars":585,"_forks":93,"_watches":37,"_language":"Python","_homepage":"https://research.iclr.co.uk","_description":"Blackstone: :black_circle: A spaCy pipeline and model for NLP on unstructured legal text.","_organization":"iclrandd","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-03-25T00:00:00.000Z","_age_weeks":204,"_stars_per_week":2.86,"_topics":["law","caselaw","nlp","spacy-models","legaltech"],"_last_commit_date":"2021-01-31T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["DeNeutoy","ICLRandD@theincorporatedcounciloflawreportingforenglandandwales","danielhoadley","hueyy","richardbatstone"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["theincorporatedcounciloflawreportingforenglandandwales"],"_pop_contributor_orgs_raw":["The Incorporated Council of Law Reporting for England and Wales"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":48,"_pop_updated_since_days":25,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":11.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/iclrandd/blackstone/master/README.md","_readme_localurl":"iclrandd~blackstone~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/iclrandd/blackstone/master/setup.py"],"_requirements_localurls":["iclrandd~blackstone~setup.py"]},{"index":957,"category":"ml","githuburl":"https://github.com/facebookresearch/balance","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/balance","_reponame":"balance","_stars":584,"_forks":27,"_watches":5,"_language":"Python","_homepage":"https://import-balance.org","_description":"balance: The balance python package offers a simple workflow and methods for dealing with biased data samples when looking to infer from them to some target population of interest.","_organization":"facebookresearch","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-11-15T00:00:00.000Z","_age_weeks":14,"_stars_per_week":41.29,"_topics":[],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":11,"_pop_contributor_logins":["SarigT","antonk52","facebook-github-bot@facebook","jknoxville@facebook","talgalili@telavivuniversity","zbraiterman"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook","telavivuniversity"],"_pop_contributor_orgs_raw":["@facebook","Facebook","Tel Aviv University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.88,"_pop_updated_issues_count":22,"_pop_closed_issues_count":18,"_pop_created_since_days":3,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":20,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":22.0,"_pop_comment_count":89.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.0,"_pop_dependents_count":0,"_pop_score":31.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/balance/master/README.md","_readme_localurl":"facebookresearch~balance~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/balance/master/setup.py"],"_requirements_localurls":["facebookresearch~balance~setup.py"]},{"index":752,"category":"diffusion","githuburl":"https://github.com/sharonzhou/long_stable_diffusion","featured":null,"links":null,"description":null,"_repopath":"sharonzhou/long_stable_diffusion","_reponame":"long_stable_diffusion","_stars":583,"_forks":48,"_watches":14,"_language":"Python","_homepage":"","_description":"long_stable_diffusion: Long-form text-to-images generation, using a pipeline of deep generative models (GPT-3 and Stable Diffusion)","_organization":"sharonzhou","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2022-09-04T00:00:00.000Z","_age_weeks":24,"_stars_per_week":23.87,"_topics":[],"_last_commit_date":"2022-10-30T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["andreykurenkov@stanford","sharonzhou"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["stanford"],"_pop_contributor_orgs_raw":["Stanford"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":6,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":7.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sharonzhou/long_stable_diffusion/master/README.md","_readme_localurl":"sharonzhou~long_stable_diffusion~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/sharonzhou/long_stable_diffusion/master/requirements.txt"],"_requirements_localurls":["sharonzhou~long_stable_diffusion~requirements.txt"]},{"index":671,"category":"ml","githuburl":"https://github.com/apple/ml-ane-transformers","featured":null,"links":null,"description":null,"_repopath":"apple/ml-ane-transformers","_reponame":"ml-ane-transformers","_stars":581,"_forks":30,"_watches":33,"_language":"Python","_homepage":"","_description":"ml-ane-transformers: Reference implementation of the Transformer architecture optimized for Apple Neural Engine (ANE)","_organization":"apple","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-06-03T00:00:00.000Z","_age_weeks":37,"_stars_per_week":15.41,"_topics":[],"_last_commit_date":"2022-08-09T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["atiorh"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":9,"_pop_updated_since_days":7,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":5.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/apple/ml-ane-transformers/master/README.md","_readme_localurl":"apple~ml-ane-transformers~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/apple/ml-ane-transformers/master/requirements.txt","https://raw.githubusercontent.com/apple/ml-ane-transformers/master/setup.py"],"_requirements_localurls":["apple~ml-ane-transformers~requirements.txt","apple~ml-ane-transformers~setup.py"]},{"index":167,"category":"nlp","githuburl":"https://github.com/lexpredict/lexpredict-lexnlp","featured":null,"links":null,"description":null,"_repopath":"lexpredict/lexpredict-lexnlp","_reponame":"lexpredict-lexnlp","_stars":581,"_forks":157,"_watches":50,"_language":"HTML","_homepage":null,"_description":"lexpredict-lexnlp: LexNLP by LexPredict","_organization":"lexpredict","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-09-30T00:00:00.000Z","_age_weeks":281,"_stars_per_week":2.06,"_topics":["nlp","ml","legal","legaltech","linguistics","law","contracts","analytics","data"],"_last_commit_date":"2022-08-10T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["AndreyCorelli","kpmarsh","mjbommar","mviktorov","pchestek","reddalexx","warrenagin"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":66,"_pop_updated_since_days":6,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":5.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":15.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lexpredict/lexpredict-lexnlp/master/README.md","_readme_localurl":"lexpredict~lexpredict-lexnlp~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lexpredict/lexpredict-lexnlp/master/setup.py"],"_requirements_localurls":["lexpredict~lexpredict-lexnlp~setup.py"]},{"index":906,"category":"data","githuburl":"https://github.com/googleapis/python-bigquery","featured":null,"links":null,"description":null,"_repopath":"googleapis/python-bigquery","_reponame":"python-bigquery","_stars":568,"_forks":229,"_watches":57,"_language":"Python","_homepage":null,"_description":"googleapis/python-bigquery","_organization":"googleapis","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2019-12-10T00:00:00.000Z","_age_weeks":167,"_stars_per_week":3.4,"_topics":[],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":122,"_pop_contributor_logins":["HemangChothani","alixhami","dhermes@co-founderhardfinhq","gcf-owl-bot[bot]","jba@google","plamut@independentcontractor","release-please[bot]","renovate-bot@mend","tseaver@agendalessconsulting","tswast@google"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["agendalessconsulting","co-founderhardfinhq","google","independentcontractor","mend"],"_pop_contributor_orgs_raw":["@mend","Agendaless Consulting, Inc.","Co-founder @hardfinhq","Google","Independent contractor"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.52,"_pop_updated_issues_count":132,"_pop_closed_issues_count":75,"_pop_created_since_days":39,"_pop_updated_since_days":0,"_pop_recent_releases_count":21,"_pop_recent_releases_estimated_tags":38,"_pop_recent_releases_adjusted_count":21,"_pop_issue_count":132.0,"_pop_comment_count":132.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":48.53,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/googleapis/python-bigquery/master/README.rst","_readme_localurl":"googleapis~python-bigquery~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/googleapis/python-bigquery/master/setup.py"],"_requirements_localurls":["googleapis~python-bigquery~setup.py"]},{"index":160,"category":"nlp","githuburl":"https://github.com/nipunsadvilkar/pysbd","featured":null,"links":null,"description":null,"_repopath":"nipunsadvilkar/pysbd","_reponame":"pySBD","_stars":567,"_forks":65,"_watches":10,"_language":"Python","_homepage":"","_description":"pySBD: \ud83d\udc0d\ud83d\udcafpySBD (Python Sentence Boundary Disambiguation) is a rule-based sentence boundary detection that works out-of-the-box.","_organization":"nipunsadvilkar","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2017-06-11T00:00:00.000Z","_age_weeks":297,"_stars_per_week":1.91,"_topics":["sentence-boundary-detection","python","segmentation","rule-based","sentence-tokenizer","sentence"],"_last_commit_date":"2021-02-11T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["matthen","misotrnka@gerulatatechnologies","nipunsadvilkar@explosion","spate141"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["explosion","gerulatatechnologies"],"_pop_contributor_orgs_raw":["@explosion","Gerulata Technologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":69,"_pop_updated_since_days":25,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":3.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":20.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nipunsadvilkar/pysbd/master/README.md","_readme_localurl":"nipunsadvilkar~pysbd~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nipunsadvilkar/pysbd/master/setup.py"],"_requirements_localurls":["nipunsadvilkar~pysbd~setup.py"]},{"index":567,"category":"sim","githuburl":"https://github.com/gboeing/pynamical","featured":null,"links":null,"description":null,"_repopath":"gboeing/pynamical","_reponame":"pynamical","_stars":566,"_forks":109,"_watches":31,"_language":"Python","_homepage":"https://geoffboeing.com/publications/nonlinear-chaos-fractals-prediction/","_description":"Pynamical is a Python package for modeling and visualizing discrete nonlinear dynamical systems, chaos, and fractals.","_organization":"gboeing","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2014-09-28T00:00:00.000Z","_age_weeks":438,"_stars_per_week":1.29,"_topics":["chaos","nonlinear","fractal","logistic","visualization","modeling","animation","math","physics","python","pandas","numba","numpy","matplotlib","ipynb","bifurcation-diagram","fractals","systems","phase-diagram","cobweb-plot"],"_last_commit_date":"2022-05-24T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["gboeing@universityofsoutherncalifornia"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["universityofsoutherncalifornia"],"_pop_contributor_orgs_raw":["University of Southern California"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":102,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":12.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gboeing/pynamical/master/README.md","_readme_localurl":"gboeing~pynamical~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gboeing/pynamical/master/requirements.txt","https://raw.githubusercontent.com/gboeing/pynamical/master/setup.py"],"_requirements_localurls":["gboeing~pynamical~requirements.txt","gboeing~pynamical~setup.py"]},{"index":306,"category":"crypto","githuburl":"https://github.com/palkeo/panoramix","featured":null,"links":null,"description":null,"_repopath":"palkeo/panoramix","_reponame":"panoramix","_stars":559,"_forks":154,"_watches":31,"_language":"Python","_homepage":"","_description":"panoramix: Ethereum decompiler","_organization":"palkeo","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-02-17T00:00:00.000Z","_age_weeks":157,"_stars_per_week":3.55,"_topics":[],"_last_commit_date":"2020-08-22T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["cleanunicorn@ethereum","kolinko@eveem.org"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ethereum","eveem.org"],"_pop_contributor_orgs_raw":["Ethereum","Eveem.org"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":7,"_pop_closed_issues_count":1,"_pop_created_since_days":37,"_pop_updated_since_days":30,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":7.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":15.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/palkeo/panoramix/master/README.md","_readme_localurl":"palkeo~panoramix~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/palkeo/panoramix/master/setup.py"],"_requirements_localurls":["palkeo~panoramix~setup.py"]},{"index":259,"category":"crypto","githuburl":"https://github.com/pmaji/crypto-whale-watching-app","featured":null,"links":null,"description":null,"_repopath":"pmaji/crypto-whale-watching-app","_reponame":"crypto-whale-watching-app","_stars":555,"_forks":134,"_watches":48,"_language":"Python","_homepage":"","_description":"crypto-whale-watching-app: Python Dash app that tracks whale activity in cryptocurrency markets.","_organization":"pmaji","_updated_at":"2023-02-08T00:00:00.000Z","_created_at":"2018-01-23T00:00:00.000Z","_age_weeks":265,"_stars_per_week":2.09,"_topics":["gdax","python","cryptocurrency","ethereum","litecoin","bitcoin","cryptocurrency-exchanges","python3","dash","ethereum-blockchain","bitcoin-api","bitcoin-price","cryptocurrency-price-ticker","cryptocurrency-prices","litecoin-price","ethereum-price","gdax-api","gdax-python","plotly","plotly-dash"],"_last_commit_date":"2022-12-08T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["CrackLord","dependabot[bot]","mifunetoshiro","pmaji@capitalone","stainedhat","theimo1221"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["capitalone"],"_pop_contributor_orgs_raw":["Capital One"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":2,"_pop_closed_issues_count":2,"_pop_created_since_days":62,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":18.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pmaji/crypto-whale-watching-app/master/README.md","_readme_localurl":"pmaji~crypto-whale-watching-app~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/pmaji/crypto-whale-watching-app/master/requirements.txt"],"_requirements_localurls":["pmaji~crypto-whale-watching-app~requirements.txt"]},{"index":576,"category":"util","githuburl":"https://github.com/fsspec/filesystem_spec","featured":null,"links":null,"description":null,"_repopath":"fsspec/filesystem_spec","_reponame":"filesystem_spec","_stars":548,"_forks":236,"_watches":22,"_language":"Python","_homepage":null,"_description":"filesystem_spec: A specification that python filesystems should adhere to.","_organization":"fsspec","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-04-23T00:00:00.000Z","_age_weeks":252,"_stars_per_week":2.17,"_topics":[],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":170,"_pop_contributor_logins":["TomAugspurger@microsoft","asford@abcellerabiologics","efiop@iterative","ianthomas23@anaconda","isidentical@fal-ai","juliospain","martindurant@anaconda","rjzamora@nvidia","sodre@zeroae","xyb"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["abcellerabiologics","anaconda","fal-ai","iterative","microsoft","nvidia","zeroae"],"_pop_contributor_orgs_raw":["@NVIDIA","@fal-ai","@iterative","@microsoft","AbCellera Biologics","Anaconda, Inc.","Anaconda, inc.","ZeroAE LLC"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.88,"_pop_updated_issues_count":98,"_pop_closed_issues_count":67,"_pop_created_since_days":59,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":98.0,"_pop_comment_count":199.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":52.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fsspec/filesystem_spec/master/README.md","_readme_localurl":"fsspec~filesystem_spec~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/fsspec/filesystem_spec/master/setup.py","https://raw.githubusercontent.com/fsspec/filesystem_spec/master/pyproject.toml"],"_requirements_localurls":["fsspec~filesystem_spec~setup.py","fsspec~filesystem_spec~pyproject.toml"]},{"index":685,"category":"ml","githuburl":"https://github.com/nvidia/cuda-python","featured":null,"links":null,"description":null,"_repopath":"nvidia/cuda-python","_reponame":"cuda-python","_stars":543,"_forks":42,"_watches":22,"_language":"Python","_homepage":"https://nvidia.github.io/cuda-python/","_description":"cuda-python: CUDA Python Low-level Bindings","_organization":"nvidia","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-06-28T00:00:00.000Z","_age_weeks":86,"_stars_per_week":6.29,"_topics":[],"_last_commit_date":"2022-12-09T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["mmccarty@nvidia","vzhurba01"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["nvidia"],"_pop_contributor_orgs_raw":["NVIDIA"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":12,"_pop_closed_issues_count":9,"_pop_created_since_days":20,"_pop_updated_since_days":2,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":12.0,"_pop_comment_count":24.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":23.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nvidia/cuda-python/master/README.md","_readme_localurl":"nvidia~cuda-python~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nvidia/cuda-python/master/requirements.txt","https://raw.githubusercontent.com/nvidia/cuda-python/master/setup.py"],"_requirements_localurls":["nvidia~cuda-python~requirements.txt","nvidia~cuda-python~setup.py"]},{"index":883,"category":"time-series","githuburl":"https://github.com/autoviml/auto_ts","featured":null,"links":null,"description":null,"_repopath":"autoviml/auto_ts","_reponame":"Auto_TS","_stars":540,"_forks":95,"_watches":17,"_language":"Jupyter Notebook","_homepage":"","_description":"Auto_TS: Automatically build ARIMA, SARIMAX, VAR, FB Prophet and XGBoost Models on Time Series data sets with a Single Line of Code. Now updated with Dask to handle millions of rows.","_organization":"autoviml","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-02-15T00:00:00.000Z","_age_weeks":157,"_stars_per_week":3.43,"_topics":["time-series","time-series-analysis","auto-timeseries","automl","autosklearn","tpot","autokeras","python3","prophet","python","sklearn","arima","auto-arima","auto-sklearn"],"_last_commit_date":"2022-08-16T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["AutoViML","JimmyBroomfield","Kevin-Chen0","ngupta23@o9solutions","rsesha"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["o9solutions"],"_pop_contributor_orgs_raw":["o9 Solutions Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":3,"_pop_closed_issues_count":2,"_pop_created_since_days":37,"_pop_updated_since_days":6,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":3.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":19.61,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/autoviml/auto_ts/master/README.md","_readme_localurl":"autoviml~auto_ts~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/autoviml/auto_ts/master/requirements.txt","https://raw.githubusercontent.com/autoviml/auto_ts/master/setup.py"],"_requirements_localurls":["autoviml~auto_ts~requirements.txt","autoviml~auto_ts~setup.py"]},{"index":625,"category":"gis","githuburl":"https://github.com/scitools/iris","featured":null,"links":null,"description":null,"_repopath":"scitools/iris","_reponame":"iris","_stars":536,"_forks":264,"_watches":45,"_language":"Python","_homepage":"https://scitools-iris.readthedocs.io/en/latest/","_description":"iris: A powerful, format-agnostic, and community-driven Python package for analysing and visualising Earth science data","_organization":"scitools","_updated_at":"2023-02-16T00:00:00.000Z","_created_at":"2012-08-06T00:00:00.000Z","_age_weeks":550,"_stars_per_week":0.97,"_topics":["iris","python","netcdf","grib","visualisation","data-analysis","earth-science","meteorology","oceanography","spaceweather"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":100,"_pop_contributor_logins":["DPeterK@informatics-lab","QuLogic","ajdawson","bblay","bjlittle@metoffice","esc24","lbdreyer","pelson","pp-mo@metoffice","rhattersley@metoffice"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["informatics-lab","metoffice"],"_pop_contributor_orgs_raw":["@MetOffice ","@informatics-lab ","Met Office","MetOffice"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.58,"_pop_updated_issues_count":174,"_pop_closed_issues_count":98,"_pop_created_since_days":128,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":174.0,"_pop_comment_count":237.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":47.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scitools/iris/master/README.md","_readme_localurl":"scitools~iris~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/scitools/iris/master/setup.py","https://raw.githubusercontent.com/scitools/iris/master/pyproject.toml"],"_requirements_localurls":["scitools~iris~setup.py","scitools~iris~pyproject.toml"]},{"index":874,"category":"util","githuburl":"https://github.com/ipython/ipykernel","featured":null,"links":null,"description":null,"_repopath":"ipython/ipykernel","_reponame":"ipykernel","_stars":535,"_forks":336,"_watches":34,"_language":"Python","_homepage":"https://ipython.readthedocs.io/en/stable/","_description":"ipykernel: IPython Kernel for Jupyter","_organization":"ipython","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":410,"_stars_per_week":1.3,"_topics":["ipython","ipython-kernel","jupyter","python","closember","jupyter-notebook","kernel"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":165,"_pop_contributor_logins":["Carreau@quansight-labs","SylvainCorlay@quantstack","blink1073@mongodb","echarles@datalayer","ellisonbg@amazonwebservices","fperez@universityofcalifornia,berkeley.","github-actions[bot]","minrk@simularesearchlaboratory","pre-commit-ci[bot]","takluyver"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazonwebservices","datalayer","mongodb","quansight-labs","quantstack","simularesearchlaboratory","universityofcalifornia,berkeley."],"_pop_contributor_orgs_raw":["@Datalayer","@Quansight-Labs","Amazon Web Services","MongoDB","QuantStack","Simula Research Laboratory","University of California, Berkeley."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.37,"_pop_updated_issues_count":92,"_pop_closed_issues_count":61,"_pop_created_since_days":96,"_pop_updated_since_days":0,"_pop_recent_releases_count":32,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":32,"_pop_issue_count":92.0,"_pop_comment_count":225.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.4,"_pop_dependents_count":0,"_pop_score":55.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ipython/ipykernel/master/README.md","_readme_localurl":"ipython~ipykernel~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ipython/ipykernel/master/pyproject.toml"],"_requirements_localurls":["ipython~ipykernel~pyproject.toml"]},{"index":516,"category":"ml-dl","githuburl":"https://github.com/kakaobrain/rq-vae-transformer","featured":null,"links":null,"description":null,"_repopath":"kakaobrain/rq-vae-transformer","_reponame":"rq-vae-transformer","_stars":535,"_forks":61,"_watches":15,"_language":"Jupyter Notebook","_homepage":"","_description":"rq-vae-transformer: The official implementation of Autoregressive Image Generation using Residual Quantization (CVPR '22)","_organization":"kakaobrain","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-03-03T00:00:00.000Z","_age_weeks":50,"_stars_per_week":10.52,"_topics":[],"_last_commit_date":"2022-08-18T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["LeeDoYup@kakaobrain"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["kakaobrain"],"_pop_contributor_orgs_raw":["Kakao Brain"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":12,"_pop_updated_since_days":6,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":11.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kakaobrain/rq-vae-transformer/master/README.md","_readme_localurl":"kakaobrain~rq-vae-transformer~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/kakaobrain/rq-vae-transformer/master/requirements.txt"],"_requirements_localurls":["kakaobrain~rq-vae-transformer~requirements.txt"]},{"index":525,"category":"gis","githuburl":"https://github.com/toblerity/rtree","featured":null,"links":null,"description":null,"_repopath":"toblerity/rtree","_reponame":"rtree","_stars":527,"_forks":123,"_watches":30,"_language":"Python","_homepage":"https://rtree.readthedocs.io/en/latest/","_description":"Rtree: spatial index for Python GIS \u00b6","_organization":"toblerity","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2011-06-19T00:00:00.000Z","_age_weeks":609,"_stars_per_week":0.86,"_topics":[],"_last_commit_date":"2023-01-23T00:00:00.000Z","_pop_contributor_count":39,"_pop_contributor_logins":["EwoutH","KennethAdamMiller","adamjstewart@universityofillinoisaturbana-champaign","brentp@universityofutah","dependabot[bot]","dokai@facebook","hobu@hobu","mwtoews@gnsscience","sgillies@planetlabs","sr-murthy"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook","gnsscience","hobu","planetlabs","universityofillinoisaturbana-champaign","universityofutah"],"_pop_contributor_orgs_raw":["@planetlabs","Facebook","GNS Science","Hobu, Inc.","University of Illinois at Urbana-Champaign","University of Utah"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.35,"_pop_updated_issues_count":6,"_pop_closed_issues_count":5,"_pop_created_since_days":142,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":6.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":37.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/toblerity/rtree/master/README.md","_readme_localurl":"toblerity~rtree~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/toblerity/rtree/master/setup.py","https://raw.githubusercontent.com/toblerity/rtree/master/pyproject.toml"],"_requirements_localurls":["toblerity~rtree~setup.py","toblerity~rtree~pyproject.toml"]},{"index":589,"category":"ml-ops","githuburl":"https://github.com/kedro-org/kedro-viz","featured":null,"links":null,"description":null,"_repopath":"kedro-org/kedro-viz","_reponame":"kedro-viz","_stars":522,"_forks":87,"_watches":11,"_language":"JavaScript","_homepage":"https://demo.kedro.org/","_description":"kedro-viz: Visualise your Kedro data and machine-learning pipelines and track your experiments. ","_organization":"kedro-org","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2019-05-09T00:00:00.000Z","_age_weeks":197,"_stars_per_week":2.64,"_topics":["kedro","kedro-plugin","data-visualization","hacktoberfest","react","experiment-tracking","python"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":38,"_pop_contributor_logins":["921kiyo","AntonyMilneQB","bru5","dependabot[bot]","limdauto","rashidakanchwala","richardwestenra@medshr","snyk-bot@snyk","studioswong","tynandebold@kedro-org,quantumblacklabs"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["kedro-org,quantumblacklabs","medshr","snyk"],"_pop_contributor_orgs_raw":["@Snyk","@kedro-org, @quantumblacklabs","MedShr"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.06,"_pop_updated_issues_count":136,"_pop_closed_issues_count":98,"_pop_created_since_days":46,"_pop_updated_since_days":0,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":136.0,"_pop_comment_count":141.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":43.35,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kedro-org/kedro-viz/master/README.md","_readme_localurl":"kedro-org~kedro-viz~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":665,"category":"study","githuburl":"https://github.com/rasbt/stat453-deep-learning-ss20","featured":null,"links":null,"description":null,"_repopath":"rasbt/stat453-deep-learning-ss20","_reponame":"stat453-deep-learning-ss20","_stars":521,"_forks":154,"_watches":36,"_language":"Jupyter Notebook","_homepage":"http://pages.stat.wisc.edu/~sraschka/teaching/stat453-ss2020/","_description":"stat453-deep-learning-ss20: STAT 453: Intro to Deep Learning @ UW-Madison (Spring 2020)","_organization":"rasbt","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2020-01-20T00:00:00.000Z","_age_weeks":161,"_stars_per_week":3.23,"_topics":[],"_last_commit_date":"2020-05-01T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["rasbt@lightning-ai,universityofwisconsin-madison"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["lightning-ai,universityofwisconsin-madison"],"_pop_contributor_orgs_raw":["@Lightning-AI , University of Wisconsin-Madison"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":38,"_pop_updated_since_days":34,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":5.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/stat453-deep-learning-ss20/master/README.md","_readme_localurl":"rasbt~stat453-deep-learning-ss20~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":359,"category":"ml-ops","githuburl":"https://github.com/google/ml-metadata","featured":null,"links":null,"description":null,"_repopath":"google/ml-metadata","_reponame":"ml-metadata","_stars":519,"_forks":118,"_watches":29,"_language":"C++","_homepage":"https://www.tensorflow.org/tfx/guide/mlmd","_description":"ml-metadata: For recording and retrieving metadata associated with ML developer and data scientist workflows.","_organization":"google","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2019-01-15T00:00:00.000Z","_age_weeks":214,"_stars_per_week":2.42,"_topics":[],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":15,"_pop_contributor_logins":["BrianSong","CandiedCode","StefanoFioravanzo@arrikto","atn832","daikeshi@spotify","hughmiao","mzinkevi","npoly","yupbank@shopify","zijianjoy"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["arrikto","shopify","spotify"],"_pop_contributor_orgs_raw":["@Shopify ","Arrikto","Spotify"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.56,"_pop_updated_issues_count":6,"_pop_closed_issues_count":3,"_pop_created_since_days":50,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":6.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":34.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/ml-metadata/master/README.md","_readme_localurl":"google~ml-metadata~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/google/ml-metadata/master/setup.py","https://raw.githubusercontent.com/google/ml-metadata/master/pyproject.toml"],"_requirements_localurls":["google~ml-metadata~setup.py","google~ml-metadata~pyproject.toml"]},{"index":413,"category":"util","githuburl":"https://github.com/bastibe/python-soundfile","featured":null,"links":null,"description":null,"_repopath":"bastibe/python-soundfile","_reponame":"python-soundfile","_stars":518,"_forks":87,"_watches":17,"_language":"Python","_homepage":"","_description":"python-soundfile: SoundFile is an audio library based on libsndfile, CFFI, and NumPy","_organization":"bastibe","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2013-08-27T00:00:00.000Z","_age_weeks":495,"_stars_per_week":1.05,"_topics":[],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":29,"_pop_contributor_logins":["Jajcus","bastibe","davidblewett","gesellkammer","jonashaag@quantco","mgeier","peircej@universityofnottingham","tgarc@self","tillahoffmann@harvardt.h.chanschoolofpublichealth","upsuper@canva"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["canva","harvardt.h.chanschoolofpublichealth","quantco","self","universityofnottingham"],"_pop_contributor_orgs_raw":["@Canva ","@Quantco","Harvard T.H. Chan School of Public Health","University of Nottingham","self"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.48,"_pop_updated_issues_count":20,"_pop_closed_issues_count":14,"_pop_created_since_days":116,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":20.0,"_pop_comment_count":73.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.6,"_pop_dependents_count":0,"_pop_score":44.7,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/bastibe/python-soundfile/master/README.rst","_readme_localurl":"bastibe~python-soundfile~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bastibe/python-soundfile/master/setup.py"],"_requirements_localurls":["bastibe~python-soundfile~setup.py"]},{"index":797,"category":"ml-interpretability","githuburl":"https://github.com/selfexplainml/piml-toolbox","featured":null,"links":null,"description":null,"_repopath":"selfexplainml/piml-toolbox","_reponame":"PiML-Toolbox","_stars":513,"_forks":61,"_watches":14,"_language":"Jupyter Notebook","_homepage":"https://selfexplainml.github.io/PiML-Toolbox","_description":"PiML-Toolbox: PiML (Python Interpretable Machine Learning) toolbox for model development and model validation","_organization":"selfexplainml","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-04-29T00:00:00.000Z","_age_weeks":42,"_stars_per_week":12.01,"_topics":["interpretable-machine-learning","low-code","ml-workflow","model-diagnostics"],"_last_commit_date":"2023-02-09T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["CnBDM-Su@cityuniversityofhongkong","Eveyz","ZebinYang","ajzhanghk","parulnith@h2oai","simoncos"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cityuniversityofhongkong","h2oai"],"_pop_contributor_orgs_raw":["@h2oai","City University of HongKong"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.29,"_pop_updated_issues_count":9,"_pop_closed_issues_count":8,"_pop_created_since_days":10,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":19,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":9.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":33.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/selfexplainml/piml-toolbox/master/README.md","_readme_localurl":"selfexplainml~piml-toolbox~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":673,"category":"perf","githuburl":"https://github.com/brandtbucher/specialist","featured":null,"links":null,"description":null,"_repopath":"brandtbucher/specialist","_reponame":"specialist","_stars":511,"_forks":9,"_watches":10,"_language":"Python","_homepage":"","_description":"specialist: Visualize CPython 3.11's specializing, adaptive interpreter. :fire:","_organization":"brandtbucher","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-06-01T00:00:00.000Z","_age_weeks":38,"_stars_per_week":13.45,"_topics":[],"_last_commit_date":"2022-12-15T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["brandtbucher@microsoft","cclauss@christianclauss"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["christianclauss","microsoft"],"_pop_contributor_orgs_raw":["@microsoft","Christian Clauss"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":9,"_pop_updated_since_days":2,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":2.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":23.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/brandtbucher/specialist/master/README.md","_readme_localurl":"brandtbucher~specialist~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/brandtbucher/specialist/master/setup.py"],"_requirements_localurls":["brandtbucher~specialist~setup.py"]},{"index":47,"category":"data","githuburl":"https://github.com/macbre/sql-metadata","featured":1.0,"links":null,"description":null,"_repopath":"macbre/sql-metadata","_reponame":"sql-metadata","_stars":506,"_forks":86,"_watches":15,"_language":"Python","_homepage":"https://pypi.python.org/pypi/sql-metadata","_description":"sql-metadata: Uses tokenized query returned by python-sqlparse and generates query metadata","_organization":"macbre","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-06-06T00:00:00.000Z","_age_weeks":298,"_stars_per_week":1.7,"_topics":["sql","parser","database","sql-parser","metadata","sqlparse","python-package","python3-library","hiveql","hive","mysql-query"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":13,"_pop_contributor_logins":["Governa","Jedi18","aborecki","christopherpickering@atlas-bi","collerek@kaizentech","dependabot[bot]","dylanhogg@infocruncher","glentakahashi","macbre@automattic","vakhmenin"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["atlas-bi","automattic","infocruncher","kaizentech"],"_pop_contributor_orgs_raw":["@atlas-bi","@automattic","Infocruncher","KaizenTech"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.92,"_pop_updated_issues_count":22,"_pop_closed_issues_count":8,"_pop_created_since_days":70,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":22.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":34.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/macbre/sql-metadata/master/README.md","_readme_localurl":"macbre~sql-metadata~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/macbre/sql-metadata/master/pyproject.toml"],"_requirements_localurls":["macbre~sql-metadata~pyproject.toml"]},{"index":794,"category":"gis","githuburl":"https://github.com/kvos/coastsat","featured":null,"links":null,"description":null,"_repopath":"kvos/coastsat","_reponame":"CoastSat","_stars":501,"_forks":205,"_watches":23,"_language":"Jupyter Notebook","_homepage":"http://coastsat.wrl.unsw.edu.au/","_description":"CoastSat: Global shoreline mapping tool from satellite imagery","_organization":"kvos","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2018-09-28T00:00:00.000Z","_age_weeks":229,"_stars_per_week":2.18,"_topics":["google-earth-engine","earth-engine","remote-sensing","satellite-images","coastal-engineering","shoreline-detection"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":14,"_pop_contributor_logins":["2320sharon@sacramentostate","KristenSplinter@unswsydney","SBFRF@usaceerdc-fieldresearchfacility","borgstad","chrisleaman@waterresearchlaboratory(unsw)","hcastrol","ianlturner","kant","kvos@waterresearchlaboratory"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["sacramentostate","unswsydney","usaceerdc-fieldresearchfacility","waterresearchlaboratory","waterresearchlaboratory(unsw)"],"_pop_contributor_orgs_raw":["Sacramento State","UNSW Sydney","USACE ERDC - Field Research Facility ","Water Research Laboratory","Water Research Laboratory (UNSW)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.44,"_pop_updated_issues_count":26,"_pop_closed_issues_count":20,"_pop_created_since_days":54,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":26.0,"_pop_comment_count":46.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":39.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kvos/coastsat/master/README.md","_readme_localurl":"kvos~coastsat~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":216,"category":"ml-ops","githuburl":"https://github.com/nccr-itmo/fedot","featured":null,"links":null,"description":null,"_repopath":"nccr-itmo/fedot","_reponame":"FEDOT","_stars":497,"_forks":68,"_watches":10,"_language":"Python","_homepage":"https://fedot.readthedocs.io","_description":"FEDOT: Automated modeling and machine learning framework FEDOT","_organization":"nccr-itmo","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-01-13T00:00:00.000Z","_age_weeks":162,"_stars_per_week":3.06,"_topics":["automl","machine-learning","evolutionary-algorithms","genetic-programming","structural-learning","automated-machine-learning","hyperparameter-optimization","parameter-tuning","automation","multimodality","fedot"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":27,"_pop_contributor_logins":["BarabanovaIrina","Dreamlone@wiredhut","J3FALL","MorrisNein","YamLyubov","YanaPolonskaya@mail.rugroup","gkirgizov@itmo-nss-team","maypink@itmo-nss-team","nicl-nno@itmouniversity","valer1435"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["itmo-nss-team","itmouniversity","mail.rugroup","wiredhut"],"_pop_contributor_orgs_raw":["@ITMO-NSS-team","ITMO University","Mail.Ru Group","Wiredhut"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.81,"_pop_updated_issues_count":101,"_pop_closed_issues_count":74,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":101.0,"_pop_comment_count":99.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":40.68,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/nccr-itmo/fedot/master/README.rst","_readme_localurl":"nccr-itmo~fedot~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/nccr-itmo/fedot/master/requirements.txt","https://raw.githubusercontent.com/nccr-itmo/fedot/master/setup.py"],"_requirements_localurls":["nccr-itmo~fedot~requirements.txt","nccr-itmo~fedot~setup.py"]},{"index":241,"category":"ml","githuburl":"https://github.com/microsoft/focal-transformer","featured":null,"links":null,"description":null,"_repopath":"microsoft/focal-transformer","_reponame":"Focal-Transformer","_stars":492,"_forks":58,"_watches":17,"_language":"Python","_homepage":"","_description":"Focal-Transformer: [NeurIPS 2021 Spotlight] Official code for \"Focal Self-attention for Local-Global Interactions in Vision Transformers\"","_organization":"microsoft","_updated_at":"2023-02-06T00:00:00.000Z","_created_at":"2021-07-10T00:00:00.000Z","_age_weeks":84,"_stars_per_week":5.82,"_topics":[],"_last_commit_date":"2022-03-27T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["jwyang@microsoft"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["microsoft"],"_pop_contributor_orgs_raw":["Microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":20,"_pop_updated_since_days":11,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":7.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/focal-transformer/master/README.md","_readme_localurl":"microsoft~focal-transformer~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":582,"category":"gis","githuburl":"https://github.com/developmentseed/titiler","featured":null,"links":null,"description":null,"_repopath":"developmentseed/titiler","_reponame":"titiler","_stars":479,"_forks":103,"_watches":18,"_language":"Python","_homepage":"https://developmentseed.org/titiler/","_description":"titiler: Build your own Raster dynamic map tile services","_organization":"developmentseed","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2019-06-28T00:00:00.000Z","_age_weeks":190,"_stars_per_week":2.51,"_topics":["fastapi","cog","aws-cdk","aws-lambda","stac","cogeotiff","mosaicjson","raster","dynamic","server","rest","gdal","rasterio","tile","map-tile-server","map-tiles"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":32,"_pop_contributor_logins":["FischerLGLN@lgln-landesamtf\u00fcrgeoinformationundlandesvermessungniedersachsen","RichardScottOZ@ozminerals","abarciauskas-bgse@developmentseed","drnextgis@satellogic","emmanuelmathot@terradue","fredliporace@amskepler","geospatial-jeff@regrowag","kylebarron","samn@upstream-tech","vincentsarago@developmentseed"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amskepler","developmentseed","lgln-landesamtf\u00fcrgeoinformationundlandesvermessungniedersachsen","ozminerals","regrowag","satellogic","terradue","upstream-tech"],"_pop_contributor_orgs_raw":["@Terradue","@Upstream-Tech ","@developmentseed ","@regrowag","@satellogic","AMS Kepler","Development Seed","LGLN - Landesamt f\u00fcr Geoinformation und Landesvermessung Niedersachsen","OZ Minerals"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.0,"_pop_updated_issues_count":36,"_pop_closed_issues_count":30,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":36.0,"_pop_comment_count":36.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":44.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/titiler/master/README.md","_readme_localurl":"developmentseed~titiler~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/developmentseed/titiler/master/setup.py","https://raw.githubusercontent.com/developmentseed/titiler/master/pyproject.toml"],"_requirements_localurls":["developmentseed~titiler~setup.py","developmentseed~titiler~pyproject.toml"]},{"index":487,"category":"gis","githuburl":"https://github.com/fatiando/verde","featured":null,"links":null,"description":null,"_repopath":"fatiando/verde","_reponame":"verde","_stars":473,"_forks":59,"_watches":21,"_language":"Python","_homepage":"https://www.fatiando.org/verde","_description":"verde: Processing and interpolating spatial data with a twist of machine learning","_organization":"fatiando","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2018-04-25T00:00:00.000Z","_age_weeks":252,"_stars_per_week":1.88,"_topics":["geophysics","earth-science","geospatial","python","scipy","interpolation","python3","scipy-stack","fatiando-a-terra","geoscience"],"_last_commit_date":"2022-12-09T00:00:00.000Z","_pop_contributor_count":13,"_pop_contributor_logins":["Esteban82@institutodegeocienciasb\u00e1sicas,aplicadasyambientalesdebuenosaires-igeba(universityofbuenosaires-conicet)","Goto15","JamesSample@nivanorge","arfon@github","dcslagel@codefarm","djhoese@spacescienceandengineeringcenter(ssec)","fatiando-bot@fatiando","jessepisel","leouieda@universityofliverpool","santisoler@fatiandoubcgifcompgeolabgeolatinas"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["codefarm","fatiando","fatiandoubcgifcompgeolabgeolatinas","github","institutodegeocienciasb\u00e1sicas,aplicadasyambientalesdebuenosaires-igeba(universityofbuenosaires-conicet)","nivanorge","spacescienceandengineeringcenter(ssec)","universityofliverpool"],"_pop_contributor_orgs_raw":["@NIVANorge","@fatiando","@fatiando @ubcgif @compgeolab @GeoLatinas","@github","Code Farm LLC","Instituto de Geociencias B\u00e1sicas, Aplicadas y Ambientales de Buenos Aires - IGEBA (University of Buenos Aires-CONICET)","Space Science and Engineering Center (@ssec)","University of Liverpool"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.54,"_pop_updated_issues_count":6,"_pop_closed_issues_count":3,"_pop_created_since_days":59,"_pop_updated_since_days":2,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":6.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":32.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fatiando/verde/master/README.md","_readme_localurl":"fatiando~verde~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/fatiando/verde/master/pyproject.toml"],"_requirements_localurls":["fatiando~verde~pyproject.toml"]},{"index":211,"category":"time-series","githuburl":"https://github.com/firmai/atspy","featured":null,"links":null,"description":null,"_repopath":"firmai/atspy","_reponame":"atspy","_stars":471,"_forks":88,"_watches":20,"_language":"Python","_homepage":"https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3580631","_description":"AtsPy: Automated Time Series Models in Python (by @firmai)","_organization":"firmai","_updated_at":"2023-02-07T00:00:00.000Z","_created_at":"2020-01-28T00:00:00.000Z","_age_weeks":160,"_stars_per_week":2.94,"_topics":["time-series","time-series-analysis","automated","python","forecasting","forecasting-models","finance"],"_last_commit_date":"2021-12-18T00:00:00.000Z","_pop_contributor_count":5,"_pop_contributor_logins":["0xflotus","Finance-781","dependabot[bot]","fatihbaltaci@ddosify","firmai@alanturinginstitute,firmai"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["alanturinginstitute,firmai","ddosify"],"_pop_contributor_orgs_raw":["@ddosify","Alan Turing Institute, FirmAI"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":37,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":13.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/firmai/atspy/master/README.md","_readme_localurl":"firmai~atspy~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/firmai/atspy/master/requirements.txt","https://raw.githubusercontent.com/firmai/atspy/master/setup.py"],"_requirements_localurls":["firmai~atspy~requirements.txt","firmai~atspy~setup.py"]},{"index":329,"category":"ml-dl","githuburl":"https://github.com/facebookresearch/ppuda","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/ppuda","_reponame":"ppuda","_stars":466,"_forks":60,"_watches":19,"_language":"Python","_homepage":null,"_description":"ppuda: Code for Parameter Prediction for Unseen Deep Architectures (NeurIPS 2021)","_organization":"facebookresearch","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2021-10-21T00:00:00.000Z","_age_weeks":69,"_stars_per_week":6.67,"_topics":[],"_last_commit_date":"2022-07-26T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["GeraldCSC","bknyaz@samsung-saitailab,montreal","michaldrozdzal"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["samsung-saitailab,montreal"],"_pop_contributor_orgs_raw":["Samsung - SAIT AI Lab, Montreal"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":16,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/ppuda/master/README.md","_readme_localurl":"facebookresearch~ppuda~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/ppuda/master/requirements.txt","https://raw.githubusercontent.com/facebookresearch/ppuda/master/setup.py","https://raw.githubusercontent.com/facebookresearch/ppuda/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~ppuda~requirements.txt","facebookresearch~ppuda~setup.py","facebookresearch~ppuda~pyproject.toml"]},{"index":914,"category":"ml","githuburl":"https://github.com/cvxgrp/pymde","featured":null,"links":null,"description":null,"_repopath":"cvxgrp/pymde","_reponame":"pymde","_stars":465,"_forks":26,"_watches":9,"_language":"Python","_homepage":"https://pymde.org","_description":"pymde: Minimum-distortion embedding with PyTorch","_organization":"cvxgrp","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2020-11-29T00:00:00.000Z","_age_weeks":116,"_stars_per_week":3.99,"_topics":["embedding","visualization","feature-vectors","machine-learning","dimensionality-reduction","graph-embedding","pytorch","cuda","gpu"],"_last_commit_date":"2022-11-20T00:00:00.000Z","_pop_contributor_count":10,"_pop_contributor_logins":["BastianZim@arche-finanz","adamgayoso@ucberkeley","adswa@psychoinformatics-de","akshayka@cvxgrpcvxpy","angeris","frederikschubert@leibnizuniversit\u00e4thannover","kashif","kruus@neclabsamerica","rajarshi","theresekoch@utsouthwesternmedicalcenter"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["arche-finanz","cvxgrpcvxpy","leibnizuniversit\u00e4thannover","neclabsamerica","psychoinformatics-de","ucberkeley","utsouthwesternmedicalcenter"],"_pop_contributor_orgs_raw":[" @psychoinformatics-de","@arche-finanz","@cvxgrp @cvxpy","Leibniz Universit\u00e4t Hannover","NEC Labs America","UC Berkeley","UT Southwestern Medical Center"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.25,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":27,"_pop_updated_since_days":3,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":4.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":0,"_pop_score":31.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cvxgrp/pymde/master/README.md","_readme_localurl":"cvxgrp~pymde~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cvxgrp/pymde/master/requirements.txt","https://raw.githubusercontent.com/cvxgrp/pymde/master/setup.py","https://raw.githubusercontent.com/cvxgrp/pymde/master/pyproject.toml"],"_requirements_localurls":["cvxgrp~pymde~requirements.txt","cvxgrp~pymde~setup.py","cvxgrp~pymde~pyproject.toml"]},{"index":497,"category":"ml-dl","githuburl":"https://github.com/mcahny/deep-video-inpainting","featured":null,"links":null,"description":null,"_repopath":"mcahny/deep-video-inpainting","_reponame":"Deep-Video-Inpainting","_stars":463,"_forks":87,"_watches":14,"_language":"Python","_homepage":"","_description":"Deep-Video-Inpainting: Official pytorch implementation for \"Deep Video Inpainting\" (CVPR 2019)","_organization":"mcahny","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2019-05-22T00:00:00.000Z","_age_weeks":196,"_stars_per_week":2.36,"_topics":[],"_last_commit_date":"2020-12-10T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["SeokjuLee@kentech","mcahny"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["kentech"],"_pop_contributor_orgs_raw":["KENTECH"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":46,"_pop_updated_since_days":27,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.26,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mcahny/deep-video-inpainting/master/README.md","_readme_localurl":"mcahny~deep-video-inpainting~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":872,"category":"pandas","githuburl":"https://github.com/eventual-inc/daft","featured":null,"links":null,"description":null,"_repopath":"eventual-inc/daft","_reponame":"Daft","_stars":463,"_forks":17,"_watches":6,"_language":"Python","_homepage":"","_description":"Daft: The Python DataFrame for Complex Data","_organization":"eventual-inc","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-04-25T00:00:00.000Z","_age_weeks":43,"_stars_per_week":10.7,"_topics":["image-processing","machine-learning","python","data-engineering","data-science","dataframe","deep-learning","distributed-computing"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["Asrst@dataamazon","dependabot[bot]","jaychia@lyft","jeevb@freenome","samster25@eventual-inc","xcharleslin"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["dataamazon","eventual-inc","freenome","lyft"],"_pop_contributor_orgs_raw":["@Eventual-Inc ","@lyft","Data @ Amazon","Freenome"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.98,"_pop_updated_issues_count":266,"_pop_closed_issues_count":227,"_pop_created_since_days":10,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":28,"_pop_recent_releases_adjusted_count":28,"_pop_issue_count":265.0,"_pop_comment_count":139.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":38.73,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/eventual-inc/daft/master/README.rst","_readme_localurl":"eventual-inc~daft~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/eventual-inc/daft/master/pyproject.toml"],"_requirements_localurls":["eventual-inc~daft~pyproject.toml"]},{"index":437,"category":"pandas","githuburl":"https://github.com/polyaxon/datatile","featured":null,"links":null,"description":null,"_repopath":"polyaxon/datatile","_reponame":"traceml","_stars":460,"_forks":40,"_watches":13,"_language":"Python","_homepage":"","_description":"traceml: Engine for ML/Data tracking, visualization, explainability, drift detection, and dashboards for Polyaxon.","_organization":"polyaxon","_updated_at":"2023-02-11T00:00:00.000Z","_created_at":"2016-03-25T00:00:00.000Z","_age_weeks":360,"_stars_per_week":1.28,"_topics":["pandas","pandas-summary","dataframes","data-science","spark","dask","plotly","statistics","matplotlib","data-profiling","data-visualization","data-exploration","dataops","mlops","data-quality","data-quality-checks","explainable-ai","pytorch","tensorflow","tracking"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":98,"_pop_contributor_logins":["DXist","dependabot[bot]","gzcf","javidgon","lgeiger@plumerailarq","mmourafiq","polyaxon-ci","polyaxon-team","vfdev-5@quansight","wbuchwalter@microsoftresearch"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["microsoftresearch","plumerailarq","quansight"],"_pop_contributor_orgs_raw":["@Quansight","@plumerai @larq ","Microsoft Research"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.98,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":84,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":33.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/polyaxon/datatile/master/README.md","_readme_localurl":"polyaxon~datatile~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":479,"category":"gis","githuburl":"https://github.com/holoviz/geoviews","featured":null,"links":null,"description":null,"_repopath":"holoviz/geoviews","_reponame":"geoviews","_stars":458,"_forks":68,"_watches":28,"_language":"Python","_homepage":"http://geoviews.org","_description":"geoviews: Simple, concise geographical visualization in Python","_organization":"holoviz","_updated_at":"2023-02-14T00:00:00.000Z","_created_at":"2016-04-19T00:00:00.000Z","_age_weeks":357,"_stars_per_week":1.28,"_topics":["holoviz","geoviews","holoviews","geographic-visualizations","cartopy","plotting"],"_last_commit_date":"2023-01-17T00:00:00.000Z","_pop_contributor_count":28,"_pop_contributor_logins":["Hoxbro","ahuang11@prefect!","bjlittle@metoffice","ceball","jbednar@anaconda","jlstevens","jsignell@azavea","marqh","maximlt@anaconda","philippjfr@anaconda"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","azavea","metoffice","prefect!"],"_pop_contributor_orgs_raw":["@azavea","Anaconda","Anaconda Inc.","Anaconda, Inc.","Met Office","Prefect!"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.73,"_pop_updated_issues_count":82,"_pop_closed_issues_count":19,"_pop_created_since_days":83,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":82.0,"_pop_comment_count":23.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":35.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/geoviews/master/README.md","_readme_localurl":"holoviz~geoviews~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/geoviews/master/setup.py","https://raw.githubusercontent.com/holoviz/geoviews/master/pyproject.toml"],"_requirements_localurls":["holoviz~geoviews~setup.py","holoviz~geoviews~pyproject.toml"]},{"index":375,"category":"viz","githuburl":"https://github.com/vhranger/nodevectors","featured":null,"links":null,"description":null,"_repopath":"vhranger/nodevectors","_reponame":"nodevectors","_stars":453,"_forks":53,"_watches":11,"_language":"Python","_homepage":"","_description":"nodevectors: Fastest network node embeddings in the west","_organization":"vhranger","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2019-07-25T00:00:00.000Z","_age_weeks":186,"_stars_per_week":2.42,"_topics":[],"_last_commit_date":"2021-11-06T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["VHRanger","cthoyt@harvardmedicalschool","kannankumar@sap","ldorigo"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["harvardmedicalschool","sap"],"_pop_contributor_orgs_raw":["Harvard Medical School","SAP"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":5,"_pop_closed_issues_count":2,"_pop_created_since_days":44,"_pop_updated_since_days":16,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":5.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":20.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vhranger/nodevectors/master/README.md","_readme_localurl":"vhranger~nodevectors~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/vhranger/nodevectors/master/requirements.txt","https://raw.githubusercontent.com/vhranger/nodevectors/master/setup.py"],"_requirements_localurls":["vhranger~nodevectors~requirements.txt","vhranger~nodevectors~setup.py"]},{"index":742,"category":"nlp","githuburl":"https://github.com/koaning/whatlies","featured":null,"links":null,"description":null,"_repopath":"koaning/whatlies","_reponame":"whatlies","_stars":451,"_forks":50,"_watches":13,"_language":"Python","_homepage":"https://koaning.github.io/whatlies/","_description":"whatlies: Toolkit to help understand \"what lies\" in word embeddings. Also benchmarking! ","_organization":"koaning","_updated_at":"2023-02-11T00:00:00.000Z","_created_at":"2020-02-22T00:00:00.000Z","_age_weeks":156,"_stars_per_week":2.88,"_topics":["nlp","embeddings","visualisations"],"_last_commit_date":"2023-02-06T00:00:00.000Z","_pop_contributor_count":13,"_pop_contributor_logins":["Arsilla@kpmgnetherlands","Ayushsunny@inviiiwardrobedoor","Raghibshams456","RensDimmendaal","itsabdelrahman@trivago","koaning@explosion","louisguitton@motain","mkaze","timvink","tttthomasssss@zalandose"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["explosion","inviiiwardrobedoor","kpmgnetherlands","motain","trivago","zalandose"],"_pop_contributor_orgs_raw":["@INVIII @wardrobedoor","@explosion","@motain ","KPMG Netherlands","Zalando SE","trivago"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":36,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":32.74,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/koaning/whatlies/master/readme.md","_readme_localurl":"koaning~whatlies~readme.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/koaning/whatlies/master/setup.py"],"_requirements_localurls":["koaning~whatlies~setup.py"]},{"index":837,"category":"gis","githuburl":"https://github.com/perrygeo/python-rasterstats","featured":null,"links":null,"description":null,"_repopath":"perrygeo/python-rasterstats","_reponame":"python-rasterstats","_stars":444,"_forks":109,"_watches":33,"_language":"Python","_homepage":"","_description":"python-rasterstats: Summary statistics of geospatial raster datasets based on vector geometries.","_organization":"perrygeo","_updated_at":"2023-02-13T00:00:00.000Z","_created_at":"2013-09-18T00:00:00.000Z","_age_weeks":492,"_stars_per_week":0.9,"_topics":[],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":30,"_pop_contributor_logins":["Zeitsperre@ouranos","brendancol@makepath","drnextgis@satellogic","hawkaa@duneanalytics","mwtoews@gnsscience","ozak@southernmethodistuniversity","perrygeo","sdtaylor","sgoodm@aiddata","theroggy"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aiddata","duneanalytics","gnsscience","makepath","ouranos","satellogic","southernmethodistuniversity"],"_pop_contributor_orgs_raw":["@aiddata","@duneanalytics","@makepath ","@satellogic","GNS Science","Ouranos","Southern Methodist University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.38,"_pop_updated_issues_count":29,"_pop_closed_issues_count":21,"_pop_created_since_days":115,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":29.0,"_pop_comment_count":32.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":41.49,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/README.rst","_readme_localurl":"perrygeo~python-rasterstats~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/setup.py","https://raw.githubusercontent.com/perrygeo/python-rasterstats/master/pyproject.toml"],"_requirements_localurls":["perrygeo~python-rasterstats~setup.py","perrygeo~python-rasterstats~pyproject.toml"]},{"index":573,"category":"gis","githuburl":"https://github.com/developmentseed/label-maker","featured":null,"links":null,"description":null,"_repopath":"developmentseed/label-maker","_reponame":"label-maker","_stars":443,"_forks":112,"_watches":52,"_language":"Python","_homepage":"http://devseed.com/label-maker/","_description":"label-maker: Data Preparation for Satellite Machine Learning","_organization":"developmentseed","_updated_at":"2023-01-20T00:00:00.000Z","_created_at":"2018-01-10T00:00:00.000Z","_age_weeks":267,"_stars_per_week":1.66,"_topics":["satellite-imagery","data-preparation","deep-learning","computer-vision","remote-sensing","keras"],"_last_commit_date":"2020-11-19T00:00:00.000Z","_pop_contributor_count":15,"_pop_contributor_logins":["Geoyi@regrow","PallawiSinghal@heretechnologies","achyutjoshi","drewbo@cloud-gov(work)+personalprojects;","giswqs@universityoftennessee","jreiberkyle@planetlabs","martham93@developmentseed","palacima","vincentsarago@developmentseed","wronk"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cloud-gov(work)+personalprojects;","developmentseed","heretechnologies","planetlabs","regrow","universityoftennessee"],"_pop_contributor_orgs_raw":["@cloud-gov (work) + personal projects; ","@developmentseed ","@planetlabs ","Development Seed","Here Technologies ","Regrow","University of Tennessee"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":62,"_pop_updated_since_days":27,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":21.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/label-maker/master/README.md","_readme_localurl":"developmentseed~label-maker~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/developmentseed/label-maker/master/requirements.txt","https://raw.githubusercontent.com/developmentseed/label-maker/master/setup.py"],"_requirements_localurls":["developmentseed~label-maker~requirements.txt","developmentseed~label-maker~setup.py"]},{"index":844,"category":"perf","githuburl":"https://github.com/joblib/loky","featured":null,"links":null,"description":null,"_repopath":"joblib/loky","_reponame":"loky","_stars":442,"_forks":43,"_watches":10,"_language":"Python","_homepage":"http://loky.readthedocs.io/en/stable/","_description":"loky: Robust and reusable Executor for joblib","_organization":"joblib","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2015-12-25T00:00:00.000Z","_age_weeks":373,"_stars_per_week":1.18,"_topics":["multiprocessing-library","python"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":17,"_pop_contributor_logins":["aabadie@inria","albertcthomas","basnijholt@microsoft","glemaitre@scikit-learninriafoundation","haim0n@private","jeremiedbb","ogrisel@inria","pierreglaser@ucl","rth","tomMoral@inriasaclay-parietalteam"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["inria","inriasaclay-parietalteam","microsoft","private","scikit-learninriafoundation","ucl"],"_pop_contributor_orgs_raw":["@Microsoft","INRIA Saclay - Parietal team","Inria","Private","Scikit-learn @ Inria foundation","UCL"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.35,"_pop_updated_issues_count":15,"_pop_closed_issues_count":9,"_pop_created_since_days":87,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":15.0,"_pop_comment_count":24.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":39.78,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/joblib/loky/master/README.md","_readme_localurl":"joblib~loky~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/joblib/loky/master/setup.py","https://raw.githubusercontent.com/joblib/loky/master/pyproject.toml"],"_requirements_localurls":["joblib~loky~setup.py","joblib~loky~pyproject.toml"]},{"index":913,"category":"util","githuburl":"https://github.com/methexis-inc/terminal-copilot","featured":null,"links":null,"description":null,"_repopath":"methexis-inc/terminal-copilot","_reponame":"terminal-copilot","_stars":439,"_forks":23,"_watches":6,"_language":"Python","_homepage":"","_description":"terminal-copilot: A smart terminal assistant that helps you find the right command.","_organization":"methexis-inc","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-12-11T00:00:00.000Z","_age_weeks":10,"_stars_per_week":42.1,"_topics":[],"_last_commit_date":"2023-01-25T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["2mawi2","EdwardTheLegend","JoelKronander","cedarbaum","instance-id@instance.id","kafischer@stanforduniversity","rebelzion","rmax@paige.ai"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["instance.id","paige.ai","stanforduniversity"],"_pop_contributor_orgs_raw":["Paige.AI","Stanford University","instance.id"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.42,"_pop_updated_issues_count":39,"_pop_closed_issues_count":25,"_pop_created_since_days":2,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":39.0,"_pop_comment_count":71.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":25.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/methexis-inc/terminal-copilot/master/README.md","_readme_localurl":"methexis-inc~terminal-copilot~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/methexis-inc/terminal-copilot/master/requirements.txt","https://raw.githubusercontent.com/methexis-inc/terminal-copilot/master/setup.py"],"_requirements_localurls":["methexis-inc~terminal-copilot~requirements.txt","methexis-inc~terminal-copilot~setup.py"]},{"index":292,"category":"util","githuburl":"https://github.com/fastai/ghapi","featured":null,"links":null,"description":null,"_repopath":"fastai/ghapi","_reponame":"ghapi","_stars":437,"_forks":45,"_watches":8,"_language":"Jupyter Notebook","_homepage":"https://ghapi.fast.ai/","_description":"ghapi: A delightful and complete interface to GitHub's amazing API","_organization":"fastai","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2020-11-21T00:00:00.000Z","_age_weeks":117,"_stars_per_week":3.72,"_topics":["github-api","github","nbdev","openapi","api-client"],"_last_commit_date":"2022-09-27T00:00:00.000Z","_pop_contributor_count":16,"_pop_contributor_logins":["danpalmer@google","dependabot[bot]","hamelsmu@github","hwine","jph00@fastai","jrieke@streamlit","lfdebrux@alphagov","mszhanyi@microsoft","muellerzr@huggingface","rshk"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["alphagov","fastai","github","google","huggingface","microsoft","streamlit"],"_pop_contributor_orgs_raw":["@Google","@HuggingFace","@alphagov","@fastai ","@github ","@streamlit","Microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.08,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":27,"_pop_updated_since_days":5,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":2.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":31.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/fastai/ghapi/master/README.md","_readme_localurl":"fastai~ghapi~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/fastai/ghapi/master/setup.py"],"_requirements_localurls":["fastai~ghapi~setup.py"]},{"index":863,"category":"ml-ops","githuburl":"https://github.com/astronomer/astronomer","featured":null,"links":null,"description":null,"_repopath":"astronomer/astronomer","_reponame":"astronomer","_stars":437,"_forks":80,"_watches":44,"_language":"Python","_homepage":"https://www.astronomer.io","_description":"astronomer: Helm Charts for the Astronomer Platform, Apache Airflow as a Service on Kubernetes","_organization":"astronomer","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2018-01-15T00:00:00.000Z","_age_weeks":266,"_stars_per_week":1.64,"_topics":["apache-airflow","kubernetes","docker","astronomer-platform"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":71,"_pop_contributor_logins":["andriisoldatenko","andscoop","bote795","cwurtz","danielhoherd@astronomer","jpweber@astronomer(formerlyheptiovmware)","pgvishnuram@astronomer","schnie@astronomer","sjmiller609@coredb","tedmiston@mandolin-dev"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["astronomer","astronomer(formerlyheptiovmware)","coredb","mandolin-dev"],"_pop_contributor_orgs_raw":["@astronomer","@astronomer ","@astronomer (formerly @heptio @vmware)","@mandolin-dev","Astronomer","CoreDB"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":8.94,"_pop_updated_issues_count":77,"_pop_closed_issues_count":74,"_pop_created_since_days":62,"_pop_updated_since_days":0,"_pop_recent_releases_count":28,"_pop_recent_releases_estimated_tags":68,"_pop_recent_releases_adjusted_count":28,"_pop_issue_count":77.0,"_pop_comment_count":55.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":47.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/astronomer/astronomer/master/README.md","_readme_localurl":"astronomer~astronomer~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":188,"category":"math","githuburl":"https://github.com/dit/dit","featured":null,"links":null,"description":null,"_repopath":"dit/dit","_reponame":"dit","_stars":429,"_forks":78,"_watches":24,"_language":"Python","_homepage":"http://docs.dit.io","_description":"dit: Python package for information theory.","_organization":"dit","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2013-09-29T00:00:00.000Z","_age_weeks":490,"_stars_per_week":0.87,"_topics":["python","information-theory"],"_last_commit_date":"2022-07-25T00:00:00.000Z","_pop_contributor_count":20,"_pop_contributor_logins":["Autoplectic","Ejjaffe","agrif","artemyk","chebee7i","feeds@phdstudentepfl","marcharper@google","robince","stsievert","volpatto@esss"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["esss","google","phdstudentepfl"],"_pop_contributor_orgs_raw":["@ESSS","Google","PhD student @ EPFL"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":114,"_pop_updated_since_days":7,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":29.65,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dit/dit/master/README.rst","_readme_localurl":"dit~dit~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dit/dit/master/requirements.txt","https://raw.githubusercontent.com/dit/dit/master/setup.py","https://raw.githubusercontent.com/dit/dit/master/pyproject.toml"],"_requirements_localurls":["dit~dit~requirements.txt","dit~dit~setup.py","dit~dit~pyproject.toml"]},{"index":481,"category":"sim","githuburl":"https://github.com/udst/urbansim","featured":null,"links":null,"description":null,"_repopath":"udst/urbansim","_reponame":"urbansim","_stars":423,"_forks":125,"_watches":78,"_language":"Python","_homepage":"https://udst.github.io/urbansim/","_description":"urbansim: Platform for building statistical models of cities and regions","_organization":"udst","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2013-08-15T00:00:00.000Z","_age_weeks":496,"_stars_per_week":0.85,"_topics":[],"_last_commit_date":"2020-05-11T00:00:00.000Z","_pop_contributor_count":20,"_pop_contributor_logins":["Eh2406@amazon","bridwell","daradib@applemontechnologies","fscottfoti@populus-aimapcraftlabsoaklandanalytics","gonzalobenegas","janowicz","jiffyclub@populus-ai","pksohn@google","smmaurer@urbansim","waddell"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazon","applemontechnologies","google","populus-ai","populus-aimapcraftlabsoaklandanalytics","urbansim"],"_pop_contributor_orgs_raw":["@Amazon ","@populus-ai ","@populus-ai @mapcraftlabs @oaklandanalytics ","Applemon Technologies","Google","UrbanSim Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":116,"_pop_updated_since_days":34,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":22.63,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/udst/urbansim/master/README.rst","_readme_localurl":"udst~urbansim~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/udst/urbansim/master/setup.py"],"_requirements_localurls":["udst~urbansim~setup.py"]},{"index":486,"category":"gis","githuburl":"https://github.com/earthlab/earthpy","featured":null,"links":null,"description":null,"_repopath":"earthlab/earthpy","_reponame":"earthpy","_stars":421,"_forks":151,"_watches":21,"_language":"Python","_homepage":"https://earthpy.readthedocs.io","_description":"earthpy: A package built to support working with spatial data using open source python","_organization":"earthlab","_updated_at":"2023-02-16T00:00:00.000Z","_created_at":"2018-02-20T00:00:00.000Z","_age_weeks":261,"_stars_per_week":1.61,"_topics":["spatial-data","raster","vector","python","education"],"_last_commit_date":"2021-12-20T00:00:00.000Z","_pop_contributor_count":43,"_pop_contributor_logins":["PowerChell@radiantearth","annaspiers","arfon@github","betatim@nvidia","mbjoseph@silviaterra","mgraber@nycplanning","nkorinek","pyup-bot@pyupio","sgillies@planetlabs","windnage@nationalsnowandicedatacenteratcu,boulder"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["github","nationalsnowandicedatacenteratcu,boulder","nvidia","nycplanning","planetlabs","pyupio","radiantearth","silviaterra"],"_pop_contributor_orgs_raw":["@NYCPlanning","@SilviaTerra","@github","@planetlabs","@pyupio","@radiantearth ","National Snow and Ice Data Center at CU, Boulder","Nvidia "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":57,"_pop_closed_issues_count":49,"_pop_created_since_days":61,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":58.0,"_pop_comment_count":100.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":38.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/earthlab/earthpy/master/README.md","_readme_localurl":"earthlab~earthpy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/earthlab/earthpy/master/setup.py","https://raw.githubusercontent.com/earthlab/earthpy/master/pyproject.toml"],"_requirements_localurls":["earthlab~earthpy~setup.py","earthlab~earthpy~pyproject.toml"]},{"index":472,"category":"nlp","githuburl":"https://github.com/google-research/byt5","featured":null,"links":null,"description":null,"_repopath":"google-research/byt5","_reponame":"byt5","_stars":413,"_forks":25,"_watches":11,"_language":"Python","_homepage":null,"_description":"google-research/byt5","_organization":"google-research","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2021-05-26T00:00:00.000Z","_age_weeks":91,"_stars_per_week":4.54,"_topics":[],"_last_commit_date":"2022-03-02T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["lintingxue","nconstant-google"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":21,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":4.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google-research/byt5/master/README.md","_readme_localurl":"google-research~byt5~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":705,"category":"ml-ops","githuburl":"https://github.com/bodywork-ml/bodywork-core","featured":null,"links":null,"description":null,"_repopath":"bodywork-ml/bodywork-core","_reponame":"bodywork-core","_stars":413,"_forks":18,"_watches":9,"_language":"Python","_homepage":"https://bodywork.readthedocs.io/en/latest/","_description":"bodywork-core: ML pipeline orchestration and model deployments on Kubernetes, made really easy.","_organization":"bodywork-ml","_updated_at":"2023-02-01T00:00:00.000Z","_created_at":"2020-11-17T00:00:00.000Z","_age_weeks":118,"_stars_per_week":3.5,"_topics":["mlops","python","kubernetes","data-science","machine-learning","pipeline","serving","continuous-deployment","batch","devops","framework","cicd","orchestration"],"_last_commit_date":"2022-07-04T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["AlexIoannides@bodywork-mllloydsbankinggroup","Marios85@bodyworkmachinelearning"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bodywork-mllloydsbankinggroup","bodyworkmachinelearning"],"_pop_contributor_orgs_raw":["@bodywork-ml @lloydsbankinggroup","Bodywork Machine Learning"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.35,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":28,"_pop_updated_since_days":8,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":26,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":20.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bodywork-ml/bodywork-core/master/README.md","_readme_localurl":"bodywork-ml~bodywork-core~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bodywork-ml/bodywork-core/master/setup.py"],"_requirements_localurls":["bodywork-ml~bodywork-core~setup.py"]},{"index":786,"category":"util","githuburl":"https://github.com/gefyrahq/gefyra","featured":null,"links":null,"description":null,"_repopath":"gefyrahq/gefyra","_reponame":"gefyra","_stars":410,"_forks":23,"_watches":7,"_language":"Python","_homepage":"https://gefyra.dev","_description":"gefyra: Blazingly-fast :rocket:, rock-solid, local application development :arrow_right: with Kubernetes.","_organization":"gefyrahq","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2021-11-18T00:00:00.000Z","_age_weeks":65,"_stars_per_week":6.23,"_topics":["kubernetes","development","developer-tool","containers","coding","tunnel","docker","k8s"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":13,"_pop_contributor_logins":["LittleFox94@anexia,anexia-it","Schille@blueshoe","SteinRobert@blueshoe","buschNT","cappuc","dependabot[bot]","georgkrause","kianmeng","tschale@blueshoeunikubehq","vvvityaaa"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anexia,anexia-it","blueshoe","blueshoeunikubehq"],"_pop_contributor_orgs_raw":["@Blueshoe ","@Blueshoe @unikubehq ","@anexia, @anexia-it","Blueshoe"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.23,"_pop_updated_issues_count":80,"_pop_closed_issues_count":68,"_pop_created_since_days":15,"_pop_updated_since_days":0,"_pop_recent_releases_count":41,"_pop_recent_releases_estimated_tags":42,"_pop_recent_releases_adjusted_count":41,"_pop_issue_count":80.0,"_pop_comment_count":139.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":40.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gefyrahq/gefyra/master/README.md","_readme_localurl":"gefyrahq~gefyra~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":275,"category":"crypto","githuburl":"https://github.com/ethtx/ethtx","featured":null,"links":null,"description":null,"_repopath":"ethtx/ethtx","_reponame":"ethtx","_stars":406,"_forks":62,"_watches":16,"_language":"Python","_homepage":"https://www.ethtx.info","_description":"ethtx: Python package with core transaction decoding functions.","_organization":"ethtx","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2021-06-28T00:00:00.000Z","_age_weeks":86,"_stars_per_week":4.71,"_topics":[],"_last_commit_date":"2022-12-01T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["dudzicz@tokenflowinsights","kchojn@py-world","piotr-rudnik","rmaganza@tokenflowinsights","tmierzwa@tokenflowinsights","wolololol"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["py-world","tokenflowinsights"],"_pop_contributor_orgs_raw":["@TokenFlowInsights ","Py-World","Token Flow Insights"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.08,"_pop_updated_issues_count":12,"_pop_closed_issues_count":11,"_pop_created_since_days":20,"_pop_updated_since_days":3,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":22,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":12.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":26.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethtx/ethtx/master/README.md","_readme_localurl":"ethtx~ethtx~README.md","_requirements_filenames":["setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/ethtx/ethtx/master/setup.py","https://raw.githubusercontent.com/ethtx/ethtx/master/Pipfile"],"_requirements_localurls":["ethtx~ethtx~setup.py","ethtx~ethtx~Pipfile"]},{"index":722,"category":"perf","githuburl":"https://github.com/noxdafox/pebble","featured":null,"links":null,"description":null,"_repopath":"noxdafox/pebble","_reponame":"pebble","_stars":405,"_forks":46,"_watches":10,"_language":"Python","_homepage":"","_description":"pebble: Multi threading and processing eye-candy.","_organization":"noxdafox","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2013-10-16T00:00:00.000Z","_age_weeks":488,"_stars_per_week":0.83,"_topics":["threading","multiprocessing","python","pool","decorators","asyncio"],"_last_commit_date":"2022-11-15T00:00:00.000Z","_pop_contributor_count":14,"_pop_contributor_logins":["Gistbatch@technicaluniversityofmunich","alanjds","ampolloreno@universityofcoloradoboulder","art049@codspeedhq","cbrnr@universityofgraz","marxin","noxdafox@getcujo","sam-harding","villind","wimglenn"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["codspeedhq","getcujo","technicaluniversityofmunich","universityofcoloradoboulder","universityofgraz"],"_pop_contributor_orgs_raw":["@CodSpeedHQ ","@getCUJO","Technical University of Munich","University of Colorado Boulder","University of Graz"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.98,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":114,"_pop_updated_since_days":3,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":2.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":31.5,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/noxdafox/pebble/master/README.rst","_readme_localurl":"noxdafox~pebble~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/noxdafox/pebble/master/setup.py"],"_requirements_localurls":["noxdafox~pebble~setup.py"]},{"index":803,"category":"util","githuburl":"https://github.com/open-telemetry/opentelemetry-python-contrib","featured":null,"links":null,"description":null,"_repopath":"open-telemetry/opentelemetry-python-contrib","_reponame":"opentelemetry-python-contrib","_stars":404,"_forks":314,"_watches":15,"_language":"Python","_homepage":"https://opentelemetry.io","_description":"opentelemetry-python-contrib: OpenTelemetry instrumentation for Python modules","_organization":"open-telemetry","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2019-11-08T00:00:00.000Z","_age_weeks":171,"_stars_per_week":2.35,"_topics":[],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":182,"_pop_contributor_logins":["NathanielRN","codeboten@lightstep","lzchen@microsoftcorporation","mariojonke","mauriciovasquezbernal@microsoft(kinvolk)","nemoshlag@epsagon","ocelotl","ofek@datadog","owais@splunk","srikanthccv@signoz.io"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["datadog","epsagon","lightstep","microsoft(kinvolk)","microsoftcorporation","signoz.io","splunk"],"_pop_contributor_orgs_raw":["@datadog","@microsoft (@kinvolk)","@splunk","Epsagon","Lightstep","Microsoft Corporation","signoz.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.08,"_pop_updated_issues_count":300,"_pop_closed_issues_count":171,"_pop_created_since_days":40,"_pop_updated_since_days":0,"_pop_recent_releases_count":10,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":299.0,"_pop_comment_count":363.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":52.16,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/open-telemetry/opentelemetry-python-contrib/master/README.md","_readme_localurl":"open-telemetry~opentelemetry-python-contrib~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/open-telemetry/opentelemetry-python-contrib/master/pyproject.toml"],"_requirements_localurls":["open-telemetry~opentelemetry-python-contrib~pyproject.toml"]},{"index":254,"category":"ml","githuburl":"https://github.com/amzn/pecos","featured":null,"links":null,"description":null,"_repopath":"amzn/pecos","_reponame":"pecos","_stars":401,"_forks":87,"_watches":21,"_language":"Python","_homepage":"https://libpecos.org/","_description":"PECOS - Prediction for Enormous and Correlated Spaces","_organization":"amzn","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-08-12T00:00:00.000Z","_age_weeks":132,"_stars_per_week":3.04,"_topics":["machine-learning-algorithms","extreme-multi-label-classification","extreme-multi-label-ranking","transformers","approximate-nearest-neighbor-search"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":25,"_pop_contributor_logins":["OctoberChang@amazon","Patrick-H-Chen","bhl00@sfhacksdubhacks","dependabot[bot]","hallogameboy@amazonsearchandai","jiong-zhang","nishant4995","rofuyu","weiliw-amz","yaushian"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazon","amazonsearchandai","sfhacksdubhacks"],"_pop_contributor_orgs_raw":["@sfhacks @dubhacks","Amazon","Amazon Search and AI"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.12,"_pop_updated_issues_count":44,"_pop_closed_issues_count":42,"_pop_created_since_days":31,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":44.0,"_pop_comment_count":21.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":34.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/amzn/pecos/master/README.md","_readme_localurl":"amzn~pecos~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/amzn/pecos/master/setup.py"],"_requirements_localurls":["amzn~pecos~setup.py"]},{"index":577,"category":"jupyter","githuburl":"https://github.com/computationalmodelling/nbval","featured":null,"links":null,"description":null,"_repopath":"computationalmodelling/nbval","_reponame":"nbval","_stars":395,"_forks":51,"_watches":10,"_language":"Python","_homepage":"","_description":"nbval: A py.test plugin to validate Jupyter notebooks","_organization":"computationalmodelling","_updated_at":"2023-02-01T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":410,"_stars_per_week":0.96,"_topics":["ipython-notebook","jupyter-notebook","python","testing","pytest-plugin","pytest"],"_last_commit_date":"2023-01-11T00:00:00.000Z","_pop_contributor_count":33,"_pop_contributor_logins":["bsipocz@caltech/ipac","ceball","fangohr@mpsd&universityofsouthampton","gliptak","kanderso-nrel@nationalrenewableenergylaboratory","maxalbert","minrk@simularesearchlaboratory","takluyver","vidartf","wence-"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["caltech/ipac","mpsd&universityofsouthampton","nationalrenewableenergylaboratory","simularesearchlaboratory"],"_pop_contributor_orgs_raw":["Caltech/IPAC","MPSD & University of Southampton","National Renewable Energy Laboratory","Simula Research Laboratory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.25,"_pop_updated_issues_count":9,"_pop_closed_issues_count":7,"_pop_created_since_days":96,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":9.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":35.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/computationalmodelling/nbval/master/README.md","_readme_localurl":"computationalmodelling~nbval~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/computationalmodelling/nbval/master/setup.py"],"_requirements_localurls":["computationalmodelling~nbval~setup.py"]},{"index":841,"category":"util","githuburl":"https://github.com/carlospuenteg/file-injector","featured":null,"links":null,"description":null,"_repopath":"carlospuenteg/file-injector","_reponame":"File-Injector","_stars":395,"_forks":19,"_watches":7,"_language":"Python","_homepage":"","_description":"File-Injector: File Injector is a script that allows you to store any file in an image using steganography","_organization":"carlospuenteg","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2022-10-22T00:00:00.000Z","_age_weeks":17,"_stars_per_week":22.48,"_topics":["image","image-manipulation","image-processing","noise","numpy","photography","python","python3","file","files","extraction","injection","storage","steganography","file-injection","file-injector"],"_last_commit_date":"2022-11-18T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["carlospuenteg"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.77,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":4,"_pop_updated_since_days":3,"_pop_recent_releases_count":13,"_pop_recent_releases_estimated_tags":40,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":11.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/carlospuenteg/file-injector/master/README.md","_readme_localurl":"carlospuenteg~file-injector~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/carlospuenteg/file-injector/master/requirements.txt"],"_requirements_localurls":["carlospuenteg~file-injector~requirements.txt"]},{"index":528,"category":"nlp","githuburl":"https://github.com/hazyresearch/fonduer","featured":null,"links":null,"description":null,"_repopath":"hazyresearch/fonduer","_reponame":"fonduer","_stars":390,"_forks":79,"_watches":27,"_language":"Python","_homepage":"https://fonduer.readthedocs.io/","_description":"fonduer: A knowledge base construction engine for richly formatted data","_organization":"hazyresearch","_updated_at":"2023-01-27T00:00:00.000Z","_created_at":"2018-02-02T00:00:00.000Z","_age_weeks":263,"_stars_per_week":1.48,"_topics":["multimodality","machine-learning","knowledge-base-construction"],"_last_commit_date":"2021-06-23T00:00:00.000Z","_pop_contributor_count":14,"_pop_contributor_logins":["HiromuHota@https://snorkel.ai/","KenSugimoto@hitachiamerica,ltd.","YasushiMiyata","annelhote@mesr","bhancock8@snorkel-ai","j-rausch","lukehsiao@numbersstationai","payalbajaj","senwu","wajdikhattel@think-it-labs"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["hitachiamerica,ltd.","https://snorkel.ai/","mesr","numbersstationai","snorkel-ai","think-it-labs"],"_pop_contributor_orgs_raw":["@NumbersStationAI ","@Think-iT-Labs","@snorkel-ai ","Hitachi America, Ltd.","MESR","https://snorkel.ai/"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":62,"_pop_updated_since_days":20,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":23.2,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/hazyresearch/fonduer/master/README.rst","_readme_localurl":"hazyresearch~fonduer~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hazyresearch/fonduer/master/setup.py"],"_requirements_localurls":["hazyresearch~fonduer~setup.py"]},{"index":185,"category":"math","githuburl":"https://github.com/willianfuks/tfcausalimpact","featured":null,"links":null,"description":null,"_repopath":"willianfuks/tfcausalimpact","_reponame":"tfcausalimpact","_stars":389,"_forks":53,"_watches":10,"_language":"Python","_homepage":"","_description":"tfcausalimpact: Python Causal Impact Implementation Based on Google's R Package. Built using TensorFlow Probability.","_organization":"willianfuks","_updated_at":"2023-02-16T00:00:00.000Z","_created_at":"2020-08-17T00:00:00.000Z","_age_weeks":131,"_stars_per_week":2.96,"_topics":["causalimpact","tensorflow-probability","python","causal-inference"],"_last_commit_date":"2022-12-20T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["WillianFuks","glentakahashi","kjappelbaum@epfl"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["epfl"],"_pop_contributor_orgs_raw":["EPFL"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.21,"_pop_updated_issues_count":6,"_pop_closed_issues_count":5,"_pop_created_since_days":31,"_pop_updated_since_days":2,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":6.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":0,"_pop_score":25.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/willianfuks/tfcausalimpact/master/README.md","_readme_localurl":"willianfuks~tfcausalimpact~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/willianfuks/tfcausalimpact/master/setup.py"],"_requirements_localurls":["willianfuks~tfcausalimpact~setup.py"]},{"index":561,"category":"gis","githuburl":"https://github.com/geopandas/contextily","featured":null,"links":null,"description":null,"_repopath":"geopandas/contextily","_reponame":"contextily","_stars":386,"_forks":67,"_watches":14,"_language":"Jupyter Notebook","_homepage":"https://contextily.readthedocs.io/en/latest/","_description":"contextily: Context geo-tiles in Python","_organization":"geopandas","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2016-09-08T00:00:00.000Z","_age_weeks":336,"_stars_per_week":1.15,"_topics":["tiles","stamen","openstreetmap","python","tile","mapping","webtiles","geography","cartography","matplotlib","osm","stamen-maps"],"_last_commit_date":"2023-02-06T00:00:00.000Z","_pop_contributor_count":20,"_pop_contributor_logins":["EwoutH","choldgraf@ucberkeley","darribas","dependabot[bot]","hugovk@nordsoftware","jGaboardi@ornl","jorisvandenbossche","ljwolf@geogbristol","martinfleis","ocefpaf"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["geogbristol","nordsoftware","ornl","ucberkeley"],"_pop_contributor_orgs_raw":["@geogbristol ","Nord Software","ORNL","UC Berkeley"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":14,"_pop_closed_issues_count":11,"_pop_created_since_days":79,"_pop_updated_since_days":0,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":14.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":34.84,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/geopandas/contextily/master/README.md","_readme_localurl":"geopandas~contextily~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/geopandas/contextily/master/requirements.txt","https://raw.githubusercontent.com/geopandas/contextily/master/setup.py"],"_requirements_localurls":["geopandas~contextily~requirements.txt","geopandas~contextily~setup.py"]},{"index":929,"category":"util","githuburl":"https://github.com/heuer/segno","featured":null,"links":null,"description":null,"_repopath":"heuer/segno","_reponame":"segno","_stars":385,"_forks":42,"_watches":11,"_language":"Python","_homepage":"https://pypi.org/project/segno/","_description":"segno: Python QR Code and Micro QR Code encoder","_organization":"heuer","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2016-08-04T00:00:00.000Z","_age_weeks":341,"_stars_per_week":1.13,"_topics":["qrcode","barcode","micro-qrcode","matrix-barcode","qr-code","segno","python","qr-generator","iso-18004","structured-append","python-qrcode","micro-qr-code"],"_last_commit_date":"2022-12-10T00:00:00.000Z","_pop_contributor_count":9,"_pop_contributor_logins":["DerBiasto","barbashovtd","bitcoinhodler","christian-oudard","eduardomazolini@intera","heuer","jayaddison","neycyanshi","stefanoborini@astrazenecauk"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["astrazenecauk","intera"],"_pop_contributor_orgs_raw":["AstraZeneca UK","Intera"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.81,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":80,"_pop_updated_since_days":2,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":3.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":27.05,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/heuer/segno/master/README.rst","_readme_localurl":"heuer~segno~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/heuer/segno/master/setup.py","https://raw.githubusercontent.com/heuer/segno/master/pyproject.toml"],"_requirements_localurls":["heuer~segno~setup.py","heuer~segno~pyproject.toml"]},{"index":12,"category":"nlp","githuburl":"https://github.com/dialogflow/dialogflow-python-client-v2","featured":null,"links":null,"description":null,"_repopath":"dialogflow/dialogflow-python-client-v2","_reponame":"python-dialogflow","_stars":385,"_forks":145,"_watches":53,"_language":"Python","_homepage":"https://dialogflow.com/","_description":"python-dialogflow: Python client for Dialogflow: Design and integrate a conversational user interface into your applications and devices.","_organization":"dialogflow","_updated_at":"2023-02-05T00:00:00.000Z","_created_at":"2017-10-24T00:00:00.000Z","_age_weeks":278,"_stars_per_week":1.38,"_topics":["python","machine-learning","dialogflow"],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":34,"_pop_contributor_logins":["busunkim96@googleapis","crwilcox@googlecloud","dandhlee@googlecloudplatform","galz10@google","gcf-owl-bot[bot]","lukesneeringer@highsignalsystems","parthea@google","release-please[bot]","renovate-bot@mend","yoshi-automation@googleapis"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","googleapis","googlecloud","googlecloudplatform","highsignalsystems","mend"],"_pop_contributor_orgs_raw":["@GoogleCloudPlatform","@googleapis","@mend","Google","Google ","Google Cloud","High Signal Systems"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.12,"_pop_updated_issues_count":29,"_pop_closed_issues_count":28,"_pop_created_since_days":65,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":29.0,"_pop_comment_count":31.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.1,"_pop_dependents_count":0,"_pop_score":44.36,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dialogflow/dialogflow-python-client-v2/master/README.rst","_readme_localurl":"dialogflow~dialogflow-python-client-v2~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dialogflow/dialogflow-python-client-v2/master/setup.py"],"_requirements_localurls":["dialogflow~dialogflow-python-client-v2~setup.py"]},{"index":496,"category":"ml","githuburl":"https://github.com/linkedin/fasttreeshap","featured":null,"links":null,"description":null,"_repopath":"linkedin/fasttreeshap","_reponame":"FastTreeSHAP","_stars":384,"_forks":23,"_watches":7,"_language":"Python","_homepage":"","_description":"FastTreeSHAP: Fast SHAP value computation for interpreting tree-based models","_organization":"linkedin","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-01-24T00:00:00.000Z","_age_weeks":56,"_stars_per_week":6.82,"_topics":["explainable-ai","interpretability","lightgbm","machine-learning","random-forest","shap","xgboost"],"_last_commit_date":"2022-11-29T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["jlyang1990@linkedincorporation"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["linkedincorporation"],"_pop_contributor_orgs_raw":["LinkedIn Corporation"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":6,"_pop_closed_issues_count":3,"_pop_created_since_days":13,"_pop_updated_since_days":3,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":6.0,"_pop_comment_count":15.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":0,"_pop_score":20.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/linkedin/fasttreeshap/master/README.md","_readme_localurl":"linkedin~fasttreeshap~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/linkedin/fasttreeshap/master/requirements.txt","https://raw.githubusercontent.com/linkedin/fasttreeshap/master/setup.py","https://raw.githubusercontent.com/linkedin/fasttreeshap/master/pyproject.toml"],"_requirements_localurls":["linkedin~fasttreeshap~requirements.txt","linkedin~fasttreeshap~setup.py","linkedin~fasttreeshap~pyproject.toml"]},{"index":331,"category":"ml","githuburl":"https://github.com/jacopotagliabue/reclist","featured":null,"links":null,"description":null,"_repopath":"jacopotagliabue/reclist","_reponame":"reclist","_stars":384,"_forks":21,"_watches":9,"_language":"Python","_homepage":"","_description":"reclist: Behavioral \"black-box\" testing for recommender systems","_organization":"jacopotagliabue","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2021-11-08T00:00:00.000Z","_age_weeks":67,"_stars_per_week":5.71,"_topics":["recommender-system","machine-learning","qa-automation"],"_last_commit_date":"2023-01-26T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["briankosw","jacopotagliabue","nsbits","patrickjohncyh","vinid@stanforduniversity"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["stanforduniversity"],"_pop_contributor_orgs_raw":["Stanford University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.65,"_pop_updated_issues_count":11,"_pop_closed_issues_count":3,"_pop_created_since_days":16,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":11.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":22.55,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/jacopotagliabue/reclist/master/README.rst","_readme_localurl":"jacopotagliabue~reclist~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jacopotagliabue/reclist/master/setup.py"],"_requirements_localurls":["jacopotagliabue~reclist~setup.py"]},{"index":492,"category":"gis","githuburl":"https://github.com/cogeotiff/rio-tiler","featured":null,"links":null,"description":null,"_repopath":"cogeotiff/rio-tiler","_reponame":"rio-tiler","_stars":379,"_forks":88,"_watches":66,"_language":"Python","_homepage":"https://cogeotiff.github.io/rio-tiler/","_description":"rio-tiler: User friendly Rasterio plugin to read raster datasets.","_organization":"cogeotiff","_updated_at":"2023-02-10T00:00:00.000Z","_created_at":"2017-10-06T00:00:00.000Z","_age_weeks":280,"_stars_per_week":1.35,"_topics":["satellite","cog","cogeotiff","maptile","raster-processing","mercator","tile","slippy-map","gdal","rasterio","raster"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":21,"_pop_contributor_logins":["DanSchoppe","benjaminleighton@csiro","chrieke@up42","emmanuelmathot@terradue","fredliporace@amskepler","kant","kylebarron","samsammurphy@ecmwf","sgillies@planetlabs","vincentsarago@developmentseed"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amskepler","csiro","developmentseed","ecmwf","planetlabs","terradue","up42"],"_pop_contributor_orgs_raw":["@Terradue","@developmentseed ","@planetlabs","@up42","AMS Kepler","CSIRO","ECMWF"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.13,"_pop_updated_issues_count":19,"_pop_closed_issues_count":16,"_pop_created_since_days":65,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":23,"_pop_recent_releases_adjusted_count":23,"_pop_issue_count":19.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":41.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cogeotiff/rio-tiler/master/README.md","_readme_localurl":"cogeotiff~rio-tiler~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cogeotiff/rio-tiler/master/setup.py","https://raw.githubusercontent.com/cogeotiff/rio-tiler/master/pyproject.toml"],"_requirements_localurls":["cogeotiff~rio-tiler~setup.py","cogeotiff~rio-tiler~pyproject.toml"]},{"index":747,"category":"study","githuburl":"https://github.com/bayesianmodelingandcomputationinpython/bookcode_edition1","featured":null,"links":null,"description":null,"_repopath":"bayesianmodelingandcomputationinpython/bookcode_edition1","_reponame":"BookCode_Edition1","_stars":378,"_forks":93,"_watches":17,"_language":"Jupyter Notebook","_homepage":"https://www.bayesiancomputationbook.com","_description":"bayesianmodelingandcomputationinpython/bookcode_edition1","_organization":"bayesianmodelingandcomputationinpython","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2021-08-17T00:00:00.000Z","_age_weeks":79,"_stars_per_week":4.78,"_topics":[],"_last_commit_date":"2023-01-09T00:00:00.000Z","_pop_contributor_count":10,"_pop_contributor_logins":["OriolAbril","aloctavodia@imasl-conicet","canyon289","dependabot[bot]","erocarrera","ikarosilva@philips","jmshea@universityofflorida","junpenglao@google","paw-lu"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","imasl-conicet","philips","universityofflorida"],"_pop_contributor_orgs_raw":["@google ","IMASL-CONICET","Philips","University of Florida"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":8,"_pop_closed_issues_count":3,"_pop_created_since_days":18,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":8.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":25.73,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bayesianmodelingandcomputationinpython/bookcode_edition1/master/README.md","_readme_localurl":"bayesianmodelingandcomputationinpython~bookcode_edition1~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":756,"category":"ml-dl","githuburl":"https://github.com/samuela/git-re-basin","featured":null,"links":null,"description":null,"_repopath":"samuela/git-re-basin","_reponame":"git-re-basin","_stars":372,"_forks":32,"_watches":5,"_language":"Python","_homepage":"https://arxiv.org/abs/2209.04836","_description":"git-re-basin: Code release for \"Git Re-Basin: Merging Models modulo Permutation Symmetries\"","_organization":"samuela","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-09-13T00:00:00.000Z","_age_weeks":23,"_stars_per_week":16.07,"_topics":["deep-learning","deeplearning","jax","machine-learning","neural-networks"],"_last_commit_date":"2023-01-09T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["samuela"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.46,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":5,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":5.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":11.63,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/samuela/git-re-basin/master/README.md","_readme_localurl":"samuela~git-re-basin~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":335,"category":"ml","githuburl":"https://github.com/mrdbourke/m1-machine-learning-test","featured":null,"links":null,"description":null,"_repopath":"mrdbourke/m1-machine-learning-test","_reponame":"m1-machine-learning-test","_stars":371,"_forks":120,"_watches":12,"_language":"Jupyter Notebook","_homepage":"","_description":"m1-machine-learning-test: Code for testing various M1 Chip benchmarks with TensorFlow.","_organization":"mrdbourke","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-11-14T00:00:00.000Z","_age_weeks":66,"_stars_per_week":5.58,"_topics":["tensorflow","tensorflow-macos","metal","machine-learning"],"_last_commit_date":"2022-07-16T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["KittyBorgX","mrdbourke"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":15,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":4.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mrdbourke/m1-machine-learning-test/master/README.md","_readme_localurl":"mrdbourke~m1-machine-learning-test~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":49,"category":"util","githuburl":"https://github.com/mozillazg/pypy","featured":null,"links":null,"description":null,"_repopath":"mozillazg/pypy","_reponame":"pypy","_stars":367,"_forks":59,"_watches":11,"_language":"Python","_homepage":"https://foss.heptapod.net/pypy/pypy","_description":"pypy: The unofficial GitHub mirror of PyPy","_organization":"mozillazg","_updated_at":"2023-02-14T00:00:00.000Z","_created_at":"2015-08-03T00:00:00.000Z","_age_weeks":394,"_stars_per_week":0.93,"_topics":["pypy","github-mirror","unofficial","unofficial-mirror","read-only-repository","readonly"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":374,"_pop_contributor_logins":["alex","amauryfa","antocuni","bdkearns","cfbolz","fijal@pypy,baroquesoftware","mattip@quansightlabs","mwhudson@canonicalltd","pedronis","rlamy"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["canonicalltd","pypy,baroquesoftware","quansightlabs"],"_pop_contributor_orgs_raw":["@CanonicalLtd","PyPy, baroquesoftware","Quansight Labs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":11.08,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":92,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":22,"_pop_recent_releases_adjusted_count":22,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":44.61,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mozillazg/pypy/master/README.rst","_readme_localurl":"mozillazg~pypy~README.rst","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/mozillazg/pypy/master/requirements.txt"],"_requirements_localurls":["mozillazg~pypy~requirements.txt"]},{"index":560,"category":"gis","githuburl":"https://github.com/corteva/rioxarray","featured":null,"links":null,"description":null,"_repopath":"corteva/rioxarray","_reponame":"rioxarray","_stars":364,"_forks":61,"_watches":14,"_language":"Python","_homepage":"https://corteva.github.io/rioxarray","_description":"rioxarray: geospatial xarray extension powered by rasterio","_organization":"corteva","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2019-04-16T00:00:00.000Z","_age_weeks":201,"_stars_per_week":1.81,"_topics":["gis","rasterio","xarray","geospatial","python","gdal","raster","netcdf","hacktoberfest"],"_last_commit_date":"2023-02-07T00:00:00.000Z","_pop_contributor_count":29,"_pop_contributor_logins":["RichardScottOZ@ozminerals","alexamici@bopen","cheginit@universityofhouston","davidbrochart@quantstack","mraspaud@smhi","mwtoews@gnsscience","raybellwaves@dtn","remi-braun@icube-sertit","scottyhq@universityofwashington,uwescience","snowman2@corteva"],"_pop_contributor_orgs_len":10,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bopen","corteva","dtn","gnsscience","icube-sertit","ozminerals","quantstack","smhi","universityofhouston","universityofwashington,uwescience"],"_pop_contributor_orgs_raw":["@QuantStack","@bopen","@corteva ","DTN","GNS Science","ICube-SERTIT","OZ Minerals","SMHI","University of Houston","University of Washington, @uwescience"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.27,"_pop_updated_issues_count":29,"_pop_closed_issues_count":19,"_pop_created_since_days":47,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":16,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":29.0,"_pop_comment_count":58.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":46.59,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/corteva/rioxarray/master/README.rst","_readme_localurl":"corteva~rioxarray~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/corteva/rioxarray/master/setup.py","https://raw.githubusercontent.com/corteva/rioxarray/master/pyproject.toml"],"_requirements_localurls":["corteva~rioxarray~setup.py","corteva~rioxarray~pyproject.toml"]},{"index":586,"category":"gis","githuburl":"https://github.com/pysal/momepy","featured":null,"links":null,"description":null,"_repopath":"pysal/momepy","_reponame":"momepy","_stars":364,"_forks":47,"_watches":16,"_language":"Python","_homepage":"https://docs.momepy.org","_description":"momepy: Urban Morphology Measuring Toolkit","_organization":"pysal","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2018-03-30T00:00:00.000Z","_age_weeks":255,"_stars_per_week":1.42,"_topics":["urban","morphology","morphological-analysis","morphometrics","urban-morphometrics","urban-street-networks"],"_last_commit_date":"2023-01-09T00:00:00.000Z","_pop_contributor_count":10,"_pop_contributor_logins":["AleFeli","PratyushTripathy","Thaulino","amorfinv","gregmaya","jGaboardi@ornl","kopytjuk","martinfleis","matthew-law","phuismann@gas-undw\u00e4rme-institutessen"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["gas-undw\u00e4rme-institutessen","ornl"],"_pop_contributor_orgs_raw":["Gas- und W\u00e4rme-Institut Essen","ORNL"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.98,"_pop_updated_issues_count":26,"_pop_closed_issues_count":11,"_pop_created_since_days":60,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":26.0,"_pop_comment_count":64.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":0,"_pop_score":32.83,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pysal/momepy/master/README.md","_readme_localurl":"pysal~momepy~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pysal/momepy/master/requirements.txt","https://raw.githubusercontent.com/pysal/momepy/master/setup.py","https://raw.githubusercontent.com/pysal/momepy/master/pyproject.toml"],"_requirements_localurls":["pysal~momepy~requirements.txt","pysal~momepy~setup.py","pysal~momepy~pyproject.toml"]},{"index":522,"category":"gis","githuburl":"https://github.com/pygeos/pygeos","featured":null,"links":null,"description":null,"_repopath":"pygeos/pygeos","_reponame":"pygeos","_stars":361,"_forks":40,"_watches":16,"_language":"Python","_homepage":"https://pygeos.readthedocs.io","_description":"pygeos: Wraps GEOS geometry functions in numpy ufuncs.","_organization":"pygeos","_updated_at":"2023-02-14T00:00:00.000Z","_created_at":"2019-06-10T00:00:00.000Z","_age_weeks":193,"_stars_per_week":1.87,"_topics":[],"_last_commit_date":"2022-12-14T00:00:00.000Z","_pop_contributor_count":13,"_pop_contributor_logins":["0phoff@eavise,kuleuven","brendan-ward@astutespruce","caspervdw@nelen&schuurmans","chaitan94@adonmo(adonmo)","jamesmyatt@capgeminiengineering","jorisvandenbossche","martinfleis","martinlackner@tuwien","mwtoews@gnsscience","snowman2@corteva"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["adonmo(adonmo)","astutespruce","capgeminiengineering","corteva","eavise,kuleuven","gnsscience","nelen&schuurmans","tuwien"],"_pop_contributor_orgs_raw":["@corteva ","Adonmo (@adonmo)","Astute Spruce, LLC","Capgemini Engineering","EAVISE, KU Leuven","GNS Science","Nelen & Schuurmans","TU Wien"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":19,"_pop_closed_issues_count":18,"_pop_created_since_days":45,"_pop_updated_since_days":2,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":19.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":33.12,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pygeos/pygeos/master/README.rst","_readme_localurl":"pygeos~pygeos~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pygeos/pygeos/master/setup.py","https://raw.githubusercontent.com/pygeos/pygeos/master/pyproject.toml"],"_requirements_localurls":["pygeos~pygeos~setup.py","pygeos~pygeos~pyproject.toml"]},{"index":519,"category":"gis","githuburl":"https://github.com/scikit-geometry/scikit-geometry","featured":null,"links":null,"description":null,"_repopath":"scikit-geometry/scikit-geometry","_reponame":"scikit-geometry","_stars":360,"_forks":50,"_watches":14,"_language":"Jupyter Notebook","_homepage":"https://scikit-geometry.github.io/scikit-geometry","_description":"scikit-geometry: Scientific Python Geometric Algorithms Library","_organization":"scikit-geometry","_updated_at":"2023-01-20T00:00:00.000Z","_created_at":"2016-03-28T00:00:00.000Z","_age_weeks":360,"_stars_per_week":1.0,"_topics":["cgal","geometry","python","geometric-algorithms","wrapper"],"_last_commit_date":"2022-10-14T00:00:00.000Z","_pop_contributor_count":15,"_pop_contributor_logins":["JingMatrix","anjiro@universityofcopenhagen","eboix","jskrzypek@resonance","mjd3@ambirobotics","mozzsa","poke1024@leipziguniversity","sanatladkat","timsavage@westpac","wolfv@prefix.devgmbh"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ambirobotics","leipziguniversity","prefix.devgmbh","resonance","universityofcopenhagen","westpac"],"_pop_contributor_orgs_raw":["@resonance ","Ambi Robotics","Leipzig University","University of Copenhagen","Westpac","prefix.dev GmbH"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":4,"_pop_closed_issues_count":0,"_pop_created_since_days":84,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":26.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/scikit-geometry/scikit-geometry/master/README.md","_readme_localurl":"scikit-geometry~scikit-geometry~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/scikit-geometry/scikit-geometry/master/setup.py"],"_requirements_localurls":["scikit-geometry~scikit-geometry~setup.py"]},{"index":499,"category":"ml-dl","githuburl":"https://github.com/researchmm/sttn","featured":null,"links":null,"description":null,"_repopath":"researchmm/sttn","_reponame":"STTN","_stars":360,"_forks":72,"_watches":20,"_language":"Jupyter Notebook","_homepage":"https://arxiv.org/abs/2007.10247","_description":"[ECCV'2020] STTN: Learning Joint Spatial-Temporal Transformations for Video Inpainting","_organization":"researchmm","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-07-10T00:00:00.000Z","_age_weeks":136,"_stars_per_week":2.63,"_topics":["video-inpainting","completing-videos","transformer","spatial-temporal"],"_last_commit_date":"2021-07-26T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["zengyh1900@openmmlab"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["openmmlab"],"_pop_contributor_orgs_raw":["OpenMMLab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":32,"_pop_updated_since_days":19,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":7.66,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/researchmm/sttn/master/README.md","_readme_localurl":"researchmm~sttn~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":563,"category":"gis","githuburl":"https://github.com/geopandas/dask-geopandas","featured":null,"links":null,"description":null,"_repopath":"geopandas/dask-geopandas","_reponame":"dask-geopandas","_stars":357,"_forks":35,"_watches":23,"_language":"Python","_homepage":"https://dask-geopandas.readthedocs.io/","_description":"dask-geopandas: Parallel GeoPandas with Dask","_organization":"geopandas","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2020-02-13T00:00:00.000Z","_age_weeks":157,"_stars_per_week":2.26,"_topics":[],"_last_commit_date":"2023-01-23T00:00:00.000Z","_pop_contributor_count":17,"_pop_contributor_logins":["DahnJ@sylveraio","TomAugspurger@microsoft","fbunt","gadomski@element84","jorisvandenbossche","jsignell@azavea","martinfleis","raybellwaves@dtn","slumnitz@europeanspaceagency,esrin","tastatham@mr"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["azavea","dtn","element84","europeanspaceagency,esrin","microsoft","mr","sylveraio"],"_pop_contributor_orgs_raw":["@Element84","@SylveraIO","@azavea","@microsoft","DTN","European Space Agency, ESRIN","Mr"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":19,"_pop_closed_issues_count":10,"_pop_created_since_days":37,"_pop_updated_since_days":1,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":19.0,"_pop_comment_count":30.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":37.52,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/geopandas/dask-geopandas/master/README.rst","_readme_localurl":"geopandas~dask-geopandas~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/geopandas/dask-geopandas/master/setup.py","https://raw.githubusercontent.com/geopandas/dask-geopandas/master/pyproject.toml"],"_requirements_localurls":["geopandas~dask-geopandas~setup.py","geopandas~dask-geopandas~pyproject.toml"]},{"index":902,"category":"util","githuburl":"https://github.com/ofek/pypinfo","featured":null,"links":null,"description":null,"_repopath":"ofek/pypinfo","_reponame":"pypinfo","_stars":356,"_forks":31,"_watches":14,"_language":"Python","_homepage":null,"_description":"pypinfo: Easily view PyPI download statistics via Google's BigQuery.","_organization":"ofek","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2017-05-13T00:00:00.000Z","_age_weeks":301,"_stars_per_week":1.18,"_topics":["python","bigquery","pypi","statistics"],"_last_commit_date":"2022-11-30T00:00:00.000Z","_pop_contributor_count":9,"_pop_contributor_logins":["JulienPalard","bskinn@openteams","hugovk@nordsoftware","jdufresne@pioneervalleybooks","jwilk","mayeut","ofek@datadog","rahiel@kabisa","tswast@google"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["datadog","google","kabisa","nordsoftware","openteams","pioneervalleybooks"],"_pop_contributor_orgs_raw":["@datadog","@kabisa","Google","Nord Software","OpenTeams","Pioneer Valley Books"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":70,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":1.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.0,"_pop_dependents_count":0,"_pop_score":34.34,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/ofek/pypinfo/master/README.rst","_readme_localurl":"ofek~pypinfo~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ofek/pypinfo/master/pyproject.toml"],"_requirements_localurls":["ofek~pypinfo~pyproject.toml"]},{"index":510,"category":"ml-dl","githuburl":"https://github.com/leondgarse/keras_cv_attention_models","featured":null,"links":null,"description":null,"_repopath":"leondgarse/keras_cv_attention_models","_reponame":"keras_cv_attention_models","_stars":355,"_forks":57,"_watches":17,"_language":"Python","_homepage":"","_description":"keras_cv_attention_models: Keras beit,botnet,CMT,CoaT,CoAtNet,convnext,cotnet,davit,efficientdet,edgenext,efficientformer,efficientnet,fbnet,flexivit,gcvit,ghostnet,gmlp,gpvit,halonet,hornet,iformer,lcnet,levit,maxvit,mlp-mixer,mobilevit,nat,nfnets,pvt,regnet,resmlp,resnest,resnext,resnetd,swin,tinynet,uniformer,volo,wavemlp,yolor,yolov7,yolox","_organization":"leondgarse","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-08-02T00:00:00.000Z","_age_weeks":81,"_stars_per_week":4.37,"_topics":["tensorflow","visualizing","keras","attention","model","imagenet","coco","recognition","detection","anchor-free","tf","tf2"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["AminHP@koala-team","awsaf49@wandb","dcleres@resmonicsag","leondgarse"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["koala-team","resmonicsag","wandb"],"_pop_contributor_orgs_raw":["@koala-team","@wandb","Resmonics AG"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.31,"_pop_updated_issues_count":9,"_pop_closed_issues_count":7,"_pop_created_since_days":19,"_pop_updated_since_days":0,"_pop_recent_releases_count":21,"_pop_recent_releases_estimated_tags":67,"_pop_recent_releases_adjusted_count":21,"_pop_issue_count":9.0,"_pop_comment_count":31.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.4,"_pop_dependents_count":0,"_pop_score":36.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/leondgarse/keras_cv_attention_models/master/README.md","_readme_localurl":"leondgarse~keras_cv_attention_models~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/leondgarse/keras_cv_attention_models/master/setup.py"],"_requirements_localurls":["leondgarse~keras_cv_attention_models~setup.py"]},{"index":237,"category":"ml","githuburl":"https://github.com/salesforce/warp-drive","featured":null,"links":null,"description":null,"_repopath":"salesforce/warp-drive","_reponame":"warp-drive","_stars":349,"_forks":64,"_watches":13,"_language":"Python","_homepage":"","_description":"warp-drive: Extremely Fast End-to-End Deep Multi-Agent Reinforcement Learning Framework on a GPU (JMLR 2022)","_organization":"salesforce","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2021-08-25T00:00:00.000Z","_age_weeks":78,"_stars_per_week":4.47,"_topics":["reinforcement-learning","gpu","cuda","multiagent-reinforcement-learning","deep-learning","high-throughput","pytorch","numba"],"_last_commit_date":"2023-01-17T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["Emerald01@salesforceresearch","blchu","sunil-s@salesforceresearch","svc-scm"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["salesforceresearch"],"_pop_contributor_orgs_raw":["Salesforce Research"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.29,"_pop_updated_issues_count":13,"_pop_closed_issues_count":13,"_pop_created_since_days":18,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":13.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":25.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/warp-drive/master/README.md","_readme_localurl":"salesforce~warp-drive~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/salesforce/warp-drive/master/requirements.txt","https://raw.githubusercontent.com/salesforce/warp-drive/master/setup.py"],"_requirements_localurls":["salesforce~warp-drive~requirements.txt","salesforce~warp-drive~setup.py"]},{"index":978,"category":"ml","githuburl":"https://github.com/tanelp/tiny-diffusion","featured":null,"links":null,"description":null,"_repopath":"tanelp/tiny-diffusion","_reponame":"tiny-diffusion","_stars":348,"_forks":21,"_watches":6,"_language":"Jupyter Notebook","_homepage":"","_description":"tiny-diffusion: A minimal PyTorch implementation of probabilistic diffusion models for 2D datasets.","_organization":"tanelp","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2023-01-13T00:00:00.000Z","_age_weeks":5,"_stars_per_week":60.9,"_topics":[],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["tanelp"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":1,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":4.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tanelp/tiny-diffusion/master/README.md","_readme_localurl":"tanelp~tiny-diffusion~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":692,"category":"util","githuburl":"https://github.com/paperswithcode/axcell","featured":null,"links":null,"description":null,"_repopath":"paperswithcode/axcell","_reponame":"axcell","_stars":348,"_forks":55,"_watches":13,"_language":"Python","_homepage":"","_description":"axcell: Tools for extracting tables and results from Machine Learning papers","_organization":"paperswithcode","_updated_at":"2023-02-10T00:00:00.000Z","_created_at":"2019-06-27T00:00:00.000Z","_age_weeks":190,"_stars_per_week":1.82,"_topics":[],"_last_commit_date":"2021-06-23T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["PiotrCzapla","RJT1990","VXenomac@xyzlab","mkardas","rstojnic","timbmg@ukplab,tudarmstadt"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ukplab,tudarmstadt","xyzlab"],"_pop_contributor_orgs_raw":["@xyzlab ","UKP Lab, TU Darmstadt"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":44,"_pop_updated_since_days":20,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":13.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/paperswithcode/axcell/master/README.md","_readme_localurl":"paperswithcode~axcell~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/paperswithcode/axcell/master/setup.py"],"_requirements_localurls":["paperswithcode~axcell~setup.py"]},{"index":340,"category":"term","githuburl":"https://github.com/federicoceratto/dashing","featured":null,"links":null,"description":null,"_repopath":"federicoceratto/dashing","_reponame":"dashing","_stars":346,"_forks":30,"_watches":9,"_language":"Python","_homepage":"https://dashing.readthedocs.io/en/latest/","_description":"dashing: Terminal dashboards for Python","_organization":"federicoceratto","_updated_at":"2023-02-10T00:00:00.000Z","_created_at":"2017-06-03T00:00:00.000Z","_age_weeks":298,"_stars_per_week":1.16,"_topics":["python","python3","terminal","dashboard","terminal-based","gauges","charts"],"_last_commit_date":"2020-09-06T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["Aareon","FedericoCeratto@ooni/torproject/debian"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ooni/torproject/debian"],"_pop_contributor_orgs_raw":["OONI / Tor Project / Debian"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":70,"_pop_updated_since_days":30,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":8.47,"_readme_filename":"README.adoc","_readme_giturl":"https://raw.githubusercontent.com/federicoceratto/dashing/master/README.adoc","_readme_localurl":"federicoceratto~dashing~README.adoc","_requirements_filenames":["requirements.txt","setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/federicoceratto/dashing/master/requirements.txt","https://raw.githubusercontent.com/federicoceratto/dashing/master/setup.py","https://raw.githubusercontent.com/federicoceratto/dashing/master/Pipfile"],"_requirements_localurls":["federicoceratto~dashing~requirements.txt","federicoceratto~dashing~setup.py","federicoceratto~dashing~Pipfile"]},{"index":848,"category":"gis","githuburl":"https://github.com/mapbox/mercantile","featured":null,"links":null,"description":null,"_repopath":"mapbox/mercantile","_reponame":"mercantile","_stars":346,"_forks":60,"_watches":117,"_language":"Python","_homepage":null,"_description":"mercantile: Spherical mercator tile and coordinate utilities","_organization":"mapbox","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2014-02-12T00:00:00.000Z","_age_weeks":471,"_stars_per_week":0.73,"_topics":["satellite","pxm","imagery"],"_last_commit_date":"2021-10-22T00:00:00.000Z","_pop_contributor_count":20,"_pop_contributor_logins":["brendan-ward@astutespruce","daniel-j-h@robofarmio","dnomadb","fxjung@tudresden","kapadia@planetlabs","perrygeo","pratikyadav@mapbox","samsammurphy@ecmwf","sgillies@planetlabs","youngpm"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["astutespruce","ecmwf","mapbox","planetlabs","robofarmio","tudresden"],"_pop_contributor_orgs_raw":["@planetlabs","@planetlabs ","@robofarmio ","Astute Spruce, LLC","ECMWF","Mapbox","TU Dresden"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":110,"_pop_updated_since_days":16,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":25.43,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mapbox/mercantile/master/README.rst","_readme_localurl":"mapbox~mercantile~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mapbox/mercantile/master/requirements.txt","https://raw.githubusercontent.com/mapbox/mercantile/master/setup.py"],"_requirements_localurls":["mapbox~mercantile~requirements.txt","mapbox~mercantile~setup.py"]},{"index":158,"category":"jupyter","githuburl":"https://github.com/nteract/testbook","featured":null,"links":null,"description":null,"_repopath":"nteract/testbook","_reponame":"testbook","_stars":345,"_forks":38,"_watches":15,"_language":"Python","_homepage":"https://testbook.readthedocs.io","_description":"testbook: \ud83e\uddea \ud83d\udcd7 Unit test your Jupyter Notebooks the right way","_organization":"nteract","_updated_at":"2023-02-06T00:00:00.000Z","_created_at":"2020-02-26T00:00:00.000Z","_age_weeks":156,"_stars_per_week":2.21,"_topics":["jupyter-notebook","unit-testing","pytest","nteract","python","testbook"],"_last_commit_date":"2022-11-29T00:00:00.000Z","_pop_contributor_count":15,"_pop_contributor_logins":["MSeal@noteable-io","alonme","bensenberner@doordash","dav009","fcollonval@quantstack","lfunderburk@seaspancorporation","nastra@tabular-io","rohitsanj@noteable-io","ronnie-llamado","willingc@willingconsulting"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["doordash","noteable-io","quantstack","seaspancorporation","tabular-io","willingconsulting"],"_pop_contributor_orgs_raw":["@QuantStack","@noteable-io","@tabular-io","DoorDash","Seaspan Corporation","Willing Consulting"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":11,"_pop_closed_issues_count":2,"_pop_created_since_days":36,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":11.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":30.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nteract/testbook/master/README.md","_readme_localurl":"nteract~testbook~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nteract/testbook/master/requirements.txt","https://raw.githubusercontent.com/nteract/testbook/master/setup.py","https://raw.githubusercontent.com/nteract/testbook/master/pyproject.toml"],"_requirements_localurls":["nteract~testbook~requirements.txt","nteract~testbook~setup.py","nteract~testbook~pyproject.toml"]},{"index":684,"category":"util","githuburl":"https://github.com/sciunto-org/python-bibtexparser","featured":null,"links":null,"description":null,"_repopath":"sciunto-org/python-bibtexparser","_reponame":"python-bibtexparser","_stars":344,"_forks":118,"_watches":16,"_language":"Python","_homepage":"https://bibtexparser.readthedocs.io","_description":"python-bibtexparser: Bibtex parser for Python 3","_organization":"sciunto-org","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2013-01-05T00:00:00.000Z","_age_weeks":528,"_stars_per_week":0.65,"_topics":["bibtex","bibtex-files","latex","python","hacktoberfest2022"],"_last_commit_date":"2023-01-03T00:00:00.000Z","_pop_contributor_count":45,"_pop_contributor_logins":["MiWeiss@universit\u00e0dellasvizzeraitaliana(testingautomated-usi)","Phyks","bcbnz","cao@ruhruniversitybochum","drakeguan@kkstream","flopraden@quicksign","grochmal","michaelfruth@universityofpassau","omangin","sciunto@paris-saclayuniversity"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["kkstream","paris-saclayuniversity","quicksign","ruhruniversitybochum","universityofpassau","universit\u00e0dellasvizzeraitaliana(testingautomated-usi)"],"_pop_contributor_orgs_raw":["KKStream","Paris-Saclay University","QuickSign","Ruhr University Bochum","University of Passau","Universit\u00e0 della Svizzera Italiana (@testingautomated-usi)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.65,"_pop_updated_issues_count":12,"_pop_closed_issues_count":9,"_pop_created_since_days":123,"_pop_updated_since_days":2,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":12.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":37.86,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sciunto-org/python-bibtexparser/master/README.rst","_readme_localurl":"sciunto-org~python-bibtexparser~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/sciunto-org/python-bibtexparser/master/requirements.txt","https://raw.githubusercontent.com/sciunto-org/python-bibtexparser/master/setup.py"],"_requirements_localurls":["sciunto-org~python-bibtexparser~requirements.txt","sciunto-org~python-bibtexparser~setup.py"]},{"index":464,"category":"data","githuburl":"https://github.com/dmarx/psaw","featured":null,"links":null,"description":null,"_repopath":"dmarx/psaw","_reponame":"psaw","_stars":341,"_forks":54,"_watches":9,"_language":"Python","_homepage":null,"_description":"psaw: Python Pushshift.io API Wrapper (for comment/submission search)","_organization":"dmarx","_updated_at":"2023-01-30T00:00:00.000Z","_created_at":"2018-04-15T00:00:00.000Z","_age_weeks":253,"_stars_per_week":1.35,"_topics":[],"_last_commit_date":"2022-07-09T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["Jabb0","arlenk","dmarx@stability.ai,eleuther.ai","lolamathematician","melaniewalsh","mental32@iworkoncompilersandstuff.","robhawkins","wassname@i'mjustaguywholikestomachinelearn"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["i'mjustaguywholikestomachinelearn","iworkoncompilersandstuff.","stability.ai,eleuther.ai"],"_pop_contributor_orgs_raw":["I work on compilers and stuff.","I'm just a guy who likes to machine learn","Stability.ai, Eleuther.ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":59,"_pop_updated_since_days":8,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":5.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":23.36,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/dmarx/psaw/master/README.rst","_readme_localurl":"dmarx~psaw~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/dmarx/psaw/master/setup.py"],"_requirements_localurls":["dmarx~psaw~setup.py"]},{"index":664,"category":"study","githuburl":"https://github.com/rasbt/stat451-machine-learning-fs20","featured":null,"links":null,"description":null,"_repopath":"rasbt/stat451-machine-learning-fs20","_reponame":"stat451-machine-learning-fs20","_stars":339,"_forks":179,"_watches":18,"_language":"Jupyter Notebook","_homepage":null,"_description":"stat451-machine-learning-fs20: STAT 451: Intro to Machine Learning @ UW-Madison (Fall 2020)","_organization":"rasbt","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2020-08-06T00:00:00.000Z","_age_weeks":132,"_stars_per_week":2.55,"_topics":[],"_last_commit_date":"2020-12-03T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["rasbt@lightning-ai,universityofwisconsin-madison"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["lightning-ai,universityofwisconsin-madison"],"_pop_contributor_orgs_raw":["@Lightning-AI , University of Wisconsin-Madison"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":31,"_pop_updated_since_days":27,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":5.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rasbt/stat451-machine-learning-fs20/master/README.md","_readme_localurl":"rasbt~stat451-machine-learning-fs20~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":719,"category":"gis","githuburl":"https://github.com/weecology/deepforest","featured":null,"links":null,"description":null,"_repopath":"weecology/deepforest","_reponame":"DeepForest","_stars":336,"_forks":132,"_watches":15,"_language":"JavaScript","_homepage":"https://deepforest.readthedocs.io/","_description":"DeepForest: Python Package for Tree Crown Detection in Airborne RGB imagery","_organization":"weecology","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2018-03-07T00:00:00.000Z","_age_weeks":259,"_stars_per_week":1.3,"_topics":[],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":11,"_pop_contributor_logins":["ElliotSalisbury","PolarNick239@agisoft-","bw4sz@weecology","cbudac-fwig","davidnyberg","dingyif@rbccapitalmarkets","dwaipayan05","ethanwhite@weecology,univofflorida","henrykironde@universityofflorida"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["agisoft-","rbccapitalmarkets","universityofflorida","weecology","weecology,univofflorida"],"_pop_contributor_orgs_raw":["@agisoft-llc ","@weecology ","@weecology, Univ of Florida ","RBC Capital Markets","University of Florida"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.4,"_pop_updated_issues_count":26,"_pop_closed_issues_count":7,"_pop_created_since_days":60,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":13,"_pop_issue_count":26.0,"_pop_comment_count":52.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":39.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/weecology/deepforest/master/README.md","_readme_localurl":"weecology~deepforest~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/weecology/deepforest/master/setup.py"],"_requirements_localurls":["weecology~deepforest~setup.py"]},{"index":943,"category":"sim","githuburl":"https://github.com/crflynn/stochastic","featured":null,"links":null,"description":null,"_repopath":"crflynn/stochastic","_reponame":"stochastic","_stars":331,"_forks":64,"_watches":15,"_language":"Python","_homepage":"http://stochastic.readthedocs.io/en/stable/","_description":"stochastic: Generate realizations of stochastic processes in python.","_organization":"crflynn","_updated_at":"2023-02-13T00:00:00.000Z","_created_at":"2017-02-17T00:00:00.000Z","_age_weeks":313,"_stars_per_week":1.06,"_topics":["stochastic-processes","stochastic","stochastic-differential-equations","probability","stochastic-volatility-models","stochastic-simulation-algorithm"],"_last_commit_date":"2022-07-12T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["Anna-Strakovskaia","Gabinou","JJJerome","MichaelHogervorst","anntzer","crflynn","firefly-cpp"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":73,"_pop_updated_since_days":7,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":13.3,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/crflynn/stochastic/master/README.rst","_readme_localurl":"crflynn~stochastic~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/crflynn/stochastic/master/pyproject.toml"],"_requirements_localurls":["crflynn~stochastic~pyproject.toml"]},{"index":745,"category":"perf","githuburl":"https://github.com/blosc/python-blosc","featured":null,"links":null,"description":null,"_repopath":"blosc/python-blosc","_reponame":"python-blosc","_stars":329,"_forks":75,"_watches":14,"_language":"Python","_homepage":"https://www.blosc.org/python-blosc/python-blosc.html","_description":"python-blosc: A Python wrapper for the extremely fast Blosc compression library ","_organization":"blosc","_updated_at":"2023-02-07T00:00:00.000Z","_created_at":"2010-09-30T00:00:00.000Z","_age_weeks":646,"_stars_per_week":0.51,"_topics":["python","wrapper","blosc","compression"],"_last_commit_date":"2023-01-11T00:00:00.000Z","_pop_contributor_count":43,"_pop_contributor_logins":["DimitriPapadopoulos@cea","FrancescAlted@francescalted","esc@anaconda","hmaarrfk@californiainstituteoftechnology","keszybz@redhat","lgarrison@scientificcomputingcore,flatironinstitute","oscargm98","robbmcleod@hitachihigh-techcanada","sdvillal","thewtex@kitware"],"_pop_contributor_orgs_len":8,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","californiainstituteoftechnology","cea","francescalted","hitachihigh-techcanada","kitware","redhat","scientificcomputingcore,flatironinstitute"],"_pop_contributor_orgs_raw":["@FrancescAlted","@Kitware","Anaconda Inc.","CEA","California Institute of Technology","Hitachi High-tech Canada Inc.","Red Hat","Scientific Computing Core, Flatiron Institute"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.96,"_pop_updated_issues_count":25,"_pop_closed_issues_count":23,"_pop_created_since_days":151,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":25.0,"_pop_comment_count":26.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":41.07,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/blosc/python-blosc/master/README.rst","_readme_localurl":"blosc~python-blosc~README.rst","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/blosc/python-blosc/master/requirements.txt","https://raw.githubusercontent.com/blosc/python-blosc/master/setup.py","https://raw.githubusercontent.com/blosc/python-blosc/master/pyproject.toml"],"_requirements_localurls":["blosc~python-blosc~requirements.txt","blosc~python-blosc~setup.py","blosc~python-blosc~pyproject.toml"]},{"index":727,"category":"web","githuburl":"https://github.com/rstudio/py-shiny","featured":null,"links":null,"description":null,"_repopath":"rstudio/py-shiny","_reponame":"py-shiny","_stars":328,"_forks":20,"_watches":22,"_language":"JavaScript","_homepage":"https://shiny.rstudio.com/py/","_description":"py-shiny: Shiny for Python","_organization":"rstudio","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2021-07-27T00:00:00.000Z","_age_weeks":82,"_stars_per_week":3.99,"_topics":[],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["cclauss@christianclauss","cpsievert@rstudio","fpgmaas@freelance","gregswinehart","jcheng5@rstudio","jonmoore","schloerke@rstudio","wch@posit-pbc"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["christianclauss","freelance","posit-pbc","rstudio"],"_pop_contributor_orgs_raw":["@posit-pbc","@rstudio","@rstudio ","Christian Clauss","Freelance"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":9.02,"_pop_updated_issues_count":30,"_pop_closed_issues_count":11,"_pop_created_since_days":19,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":30.0,"_pop_comment_count":22.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":35.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rstudio/py-shiny/master/README.md","_readme_localurl":"rstudio~py-shiny~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rstudio/py-shiny/master/setup.py"],"_requirements_localurls":["rstudio~py-shiny~setup.py"]},{"index":364,"category":"ml-ops","githuburl":"https://github.com/kubeflow/fairing","featured":null,"links":null,"description":null,"_repopath":"kubeflow/fairing","_reponame":"fairing","_stars":326,"_forks":146,"_watches":39,"_language":"Jsonnet","_homepage":"","_description":"fairing: Python SDK for building, training, and deploying ML models","_organization":"kubeflow","_updated_at":"2023-02-14T00:00:00.000Z","_created_at":"2018-09-03T00:00:00.000Z","_age_weeks":233,"_stars_per_week":1.4,"_topics":[],"_last_commit_date":"2021-08-26T00:00:00.000Z","_pop_contributor_count":41,"_pop_contributor_logins":["Jeffwan@bytedance","abhi-g@google","hamedhsn@playstation","jinchihe@ibm","jlewi","karthikv2k@google","r2d4","rpasricha","wbuchwalter@microsoftresearch","xauthulei@ibm"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bytedance","google","ibm","microsoftresearch","playstation"],"_pop_contributor_orgs_raw":["@google ","Bytedance","Google","IBM","Microsoft Research","Playstation"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":54,"_pop_updated_since_days":18,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":22.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kubeflow/fairing/master/README.md","_readme_localurl":"kubeflow~fairing~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kubeflow/fairing/master/requirements.txt","https://raw.githubusercontent.com/kubeflow/fairing/master/setup.py"],"_requirements_localurls":["kubeflow~fairing~requirements.txt","kubeflow~fairing~setup.py"]},{"index":500,"category":"study","githuburl":"https://github.com/googlecloudplatform/practical-ml-vision-book","featured":null,"links":null,"description":null,"_repopath":"googlecloudplatform/practical-ml-vision-book","_reponame":"practical-ml-vision-book","_stars":325,"_forks":147,"_watches":19,"_language":"Jupyter Notebook","_homepage":null,"_description":"googlecloudplatform/practical-ml-vision-book","_organization":"googlecloudplatform","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2020-11-18T00:00:00.000Z","_age_weeks":118,"_stars_per_week":2.75,"_topics":[],"_last_commit_date":"2022-11-21T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["enakai00","lakshmanok","martin-gorner@google","ryangillard"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_raw":["Google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":28,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":17.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/googlecloudplatform/practical-ml-vision-book/master/README.md","_readme_localurl":"googlecloudplatform~practical-ml-vision-book~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":960,"category":"nlp","githuburl":"https://github.com/cqcl/lambeq","featured":null,"links":null,"description":null,"_repopath":"cqcl/lambeq","_reponame":"lambeq","_stars":323,"_forks":70,"_watches":25,"_language":"Python","_homepage":"https://cqcl.github.io/lambeq","_description":"lambeq: A high-level Python library for Quantum Natural Language Processing","_organization":"cqcl","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2021-10-10T00:00:00.000Z","_age_weeks":71,"_stars_per_week":4.52,"_topics":[],"_last_commit_date":"2023-01-09T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["KentaroAOKI","Thommy257","dimkart","ianyfan","kinianlo","y-richie-y"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":6,"_pop_closed_issues_count":3,"_pop_created_since_days":17,"_pop_updated_since_days":1,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":6.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":22.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cqcl/lambeq/master/README.md","_readme_localurl":"cqcl~lambeq~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cqcl/lambeq/master/pyproject.toml"],"_requirements_localurls":["cqcl~lambeq~pyproject.toml"]},{"index":594,"category":"gis","githuburl":"https://github.com/geopython/owslib","featured":null,"links":null,"description":null,"_repopath":"geopython/owslib","_reponame":"OWSLib","_stars":320,"_forks":261,"_watches":30,"_language":"Python","_homepage":"https://geopython.github.io/OWSLib","_description":"OWSLib is a Python package for client programming with Open Geospatial Consortium (OGC) web service (hence OWS) interface standards, and their related content models.","_organization":"geopython","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2012-01-13T00:00:00.000Z","_age_weeks":579,"_stars_per_week":0.55,"_topics":[],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":140,"_pop_contributor_logins":["JuergenWeichand","bradh","cehbrecht","daf","huard@ouranos","jachym@opengeolabs,maptiler","kalxas@opensourcegeospatialfoundation","kwilcox@axiom-data-science","sgillies@planetlabs","tomkralidis@geopythonwmo-imopengeospatial"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["axiom-data-science","geopythonwmo-imopengeospatial","opengeolabs,maptiler","opensourcegeospatialfoundation","ouranos","planetlabs"],"_pop_contributor_orgs_raw":["@OpenGeoLabs , @maptiler ","@axiom-data-science ","@geopython @wmo-im @opengeospatial","@planetlabs","Open Source Geospatial Foundation","Ouranos"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.1,"_pop_updated_issues_count":27,"_pop_closed_issues_count":14,"_pop_created_since_days":135,"_pop_updated_since_days":0,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":27.0,"_pop_comment_count":39.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":47.01,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/geopython/owslib/master/README.rst","_readme_localurl":"geopython~owslib~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/geopython/owslib/master/requirements.txt","https://raw.githubusercontent.com/geopython/owslib/master/setup.py"],"_requirements_localurls":["geopython~owslib~requirements.txt","geopython~owslib~setup.py"]},{"index":967,"category":"ml-dl","githuburl":"https://github.com/suanrong/sdne","featured":null,"links":null,"description":null,"_repopath":"suanrong/sdne","_reponame":"SDNE","_stars":310,"_forks":124,"_watches":10,"_language":"Python","_homepage":"http://www.kdd.org/kdd2016/subtopic/view/structural-deep-network-embedding","_description":"SDNE: This is a implementation of SDNE (Structural Deep Network embedding)","_organization":"suanrong","_updated_at":"2023-01-04T00:00:00.000Z","_created_at":"2016-11-30T00:00:00.000Z","_age_weeks":325,"_stars_per_week":0.95,"_topics":[],"_last_commit_date":"2021-09-10T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["suanrong@tsinghuauniversity"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["tsinghuauniversity"],"_pop_contributor_orgs_raw":["Tsinghua University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":76,"_pop_updated_since_days":18,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":12.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/suanrong/sdne/master/README.md","_readme_localurl":"suanrong~sdne~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":788,"category":"study","githuburl":"https://github.com/mynameisfiber/high_performance_python_2e","featured":null,"links":null,"description":null,"_repopath":"mynameisfiber/high_performance_python_2e","_reponame":"high_performance_python_2e","_stars":306,"_forks":98,"_watches":6,"_language":"Python","_homepage":"","_description":"high_performance_python_2e: Code for the book \"High Performance Python 2e\" by Micha Gorelick and Ian Ozsvald with OReilly ","_organization":"mynameisfiber","_updated_at":"2023-02-16T00:00:00.000Z","_created_at":"2020-04-12T00:00:00.000Z","_age_weeks":149,"_stars_per_week":2.05,"_topics":["python","high-performance","code-samples","oreilly","oreilly-books"],"_last_commit_date":"2023-01-18T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["ianozsvald@http://morconsulting.com/","mynameisfiber@digital-witness-lab"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["digital-witness-lab","http://morconsulting.com/"],"_pop_contributor_orgs_raw":["@digital-witness-lab ","http://morconsulting.com/"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":35,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":15.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/mynameisfiber/high_performance_python_2e/master/README.md","_readme_localurl":"mynameisfiber~high_performance_python_2e~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":827,"category":"gis","githuburl":"https://github.com/datasystemslab/geotorch","featured":null,"links":null,"description":null,"_repopath":"datasystemslab/geotorch","_reponame":"GeoTorchAI","_stars":306,"_forks":21,"_watches":9,"_language":"Python","_homepage":"https://kanchanchy.github.io/geotorchai/","_description":"GeoTorchAI: A Spatiotemporal Deep Learning Framework (https://dl.acm.org/doi/abs/10.1145/3557915.3561036)","_organization":"datasystemslab","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2022-05-23T00:00:00.000Z","_age_weeks":39,"_stars_per_week":7.79,"_topics":["classification-model","convlstm-pytorch","deep-learning","deep-neural-networks","deepsat","prediction-model","raster-data","satellite-images","segmentation-models","sequence-models","spatial-data-analysis","spatio-temporal-analysis","spatio-temporal-models","spatio-temporal-prediction","st-resnet","satellite-classification"],"_last_commit_date":"2023-02-05T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["Sarwat@wherobots","kanchan-chy@amberit","kanchanchy"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amberit","wherobots"],"_pop_contributor_orgs_raw":["Amber IT","Wherobots Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.6,"_pop_updated_issues_count":21,"_pop_closed_issues_count":12,"_pop_created_since_days":9,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":21.0,"_pop_comment_count":25.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":24.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/datasystemslab/geotorch/master/README.md","_readme_localurl":"datasystemslab~geotorch~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/datasystemslab/geotorch/master/setup.py"],"_requirements_localurls":["datasystemslab~geotorch~setup.py"]},{"index":473,"category":"ml-dl","githuburl":"https://github.com/nyandwi/modernconvnets","featured":null,"links":null,"description":null,"_repopath":"nyandwi/modernconvnets","_reponame":"ModernConvNets","_stars":306,"_forks":32,"_watches":7,"_language":"Jupyter Notebook","_homepage":"","_description":"ModernConvNets: Revisions and implementations of modern Convolutional Neural Networks architectures in TensorFlow and Keras","_organization":"nyandwi","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2022-02-10T00:00:00.000Z","_age_weeks":53,"_stars_per_week":5.68,"_topics":["convnets","deep-learning-algorithms","computer-vision","tensorflow","keras","convolutional-neural-networks","neural-networks","image-classification","cnns"],"_last_commit_date":"2022-10-05T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["Nyandwi@cargeniemellon"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cargeniemellon"],"_pop_contributor_orgs_raw":["Cargenie Mellon"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":13,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":8.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nyandwi/modernconvnets/master/README.md","_readme_localurl":"nyandwi~modernconvnets~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":930,"category":"ml","githuburl":"https://github.com/google-research/maxvit","featured":null,"links":null,"description":null,"_repopath":"google-research/maxvit","_reponame":"maxvit","_stars":306,"_forks":19,"_watches":6,"_language":"Jupyter Notebook","_homepage":"","_description":"[ECCV 2022] Official repository for \"MaxViT: Multi-Axis Vision Transformer\". SOTA foundation models for classification, detection, segmentation, image quality, and generative modeling...","_organization":"google-research","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-07-07T00:00:00.000Z","_age_weeks":32,"_stars_per_week":9.31,"_topics":["architecture","classification","cnn","computer-vision","image","image-processing","mlp","object-detection","transformer","transformer-architecture","vision-transformer","segmentation","resnet"],"_last_commit_date":"2022-10-23T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["Yinxiaoli@columbiauniversity"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["columbiauniversity"],"_pop_contributor_orgs_raw":["Columbia University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":6,"_pop_closed_issues_count":4,"_pop_created_since_days":8,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":6.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":11.81,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google-research/maxvit/master/README.md","_readme_localurl":"google-research~maxvit~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google-research/maxvit/master/requirements.txt","https://raw.githubusercontent.com/google-research/maxvit/master/setup.py"],"_requirements_localurls":["google-research~maxvit~requirements.txt","google-research~maxvit~setup.py"]},{"index":430,"category":"jupyter","githuburl":"https://github.com/chaoleili/jupyterlab_tensorboard","featured":null,"links":null,"description":null,"_repopath":"chaoleili/jupyterlab_tensorboard","_reponame":"jupyterlab_tensorboard","_stars":298,"_forks":36,"_watches":11,"_language":"TypeScript","_homepage":"","_description":"jupyterlab_tensorboard: Tensorboard extension for jupyterlab.","_organization":"chaoleili","_updated_at":"2023-01-30T00:00:00.000Z","_created_at":"2018-08-14T00:00:00.000Z","_age_weeks":236,"_stars_per_week":1.26,"_topics":["jupyterlab-extension","tensorboard","jupyterlab"],"_last_commit_date":"2022-07-18T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["Queuecumber@researchscientistnvidia","carmark","chaoleili","consideRatio@sundellopensourceconsultingab","dependabot[bot]","twalcari@imec-idlab,departmentofinformationtechnology,ghentuniversity,belgium","wexder"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["imec-idlab,departmentofinformationtechnology,ghentuniversity,belgium","researchscientistnvidia","sundellopensourceconsultingab"],"_pop_contributor_orgs_raw":["Research Scientist @NVIDIA","Sundell Open Source Consulting AB","imec - IDLab, Department of Information Technology, Ghent University, Belgium"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":55,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":17.32,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/chaoleili/jupyterlab_tensorboard/master/README.md","_readme_localurl":"chaoleili~jupyterlab_tensorboard~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/chaoleili/jupyterlab_tensorboard/master/setup.py","https://raw.githubusercontent.com/chaoleili/jupyterlab_tensorboard/master/pyproject.toml"],"_requirements_localurls":["chaoleili~jupyterlab_tensorboard~setup.py","chaoleili~jupyterlab_tensorboard~pyproject.toml"]},{"index":939,"category":"web","githuburl":"https://github.com/dmontagu/fastapi_client","featured":null,"links":null,"description":null,"_repopath":"dmontagu/fastapi_client","_reponame":"fastapi_client","_stars":294,"_forks":39,"_watches":8,"_language":"Python","_homepage":null,"_description":"fastapi_client: FastAPI client generator","_organization":"dmontagu","_updated_at":"2023-02-16T00:00:00.000Z","_created_at":"2019-08-03T00:00:00.000Z","_age_weeks":185,"_stars_per_week":1.58,"_topics":[],"_last_commit_date":"2021-02-11T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["ChristopheLallement","Toumetis","b0g3r@semrush","daveholladay","dmontagu@formlogic","fj-sanchez"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["formlogic","semrush"],"_pop_contributor_orgs_raw":["@semrush","Formlogic"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":43,"_pop_updated_since_days":25,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":12.75,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dmontagu/fastapi_client/master/README.md","_readme_localurl":"dmontagu~fastapi_client~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/dmontagu/fastapi_client/master/pyproject.toml"],"_requirements_localurls":["dmontagu~fastapi_client~pyproject.toml"]},{"index":300,"category":"nlp","githuburl":"https://github.com/openai/grade-school-math","featured":null,"links":null,"description":null,"_repopath":"openai/grade-school-math","_reponame":"grade-school-math","_stars":293,"_forks":62,"_watches":9,"_language":"Python","_homepage":null,"_description":"openai/grade-school-math","_organization":"openai","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2021-10-20T00:00:00.000Z","_age_weeks":70,"_stars_per_week":4.19,"_topics":[],"_last_commit_date":"2021-11-19T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["kcobbe","vineetsk10@openai"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["openai"],"_pop_contributor_orgs_raw":["OpenAI"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":16,"_pop_updated_since_days":15,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":7.06,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openai/grade-school-math/master/README.md","_readme_localurl":"openai~grade-school-math~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/openai/grade-school-math/master/setup.py"],"_requirements_localurls":["openai~grade-school-math~setup.py"]},{"index":884,"category":"time-series","githuburl":"https://github.com/pastas/pastas","featured":null,"links":null,"description":null,"_repopath":"pastas/pastas","_reponame":"pastas","_stars":291,"_forks":53,"_watches":18,"_language":"Python","_homepage":"https://pastas.readthedocs.io","_description":"pastas: :spaghetti: Pastas is an open-source Python framework for the analysis of groundwater time series.","_organization":"pastas","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2016-04-15T00:00:00.000Z","_age_weeks":357,"_stars_per_week":0.81,"_topics":["hydrology","groundwater","python","timeseries","analysis","pastas"],"_last_commit_date":"2023-02-07T00:00:00.000Z","_pop_contributor_count":17,"_pop_contributor_logins":["EitvanderMeulen@amo","Hugovdberg@brabantwater","OnnoEbbens","dbrakenhoff@artesiawater","dcslagel@codefarm","martinvonk","mbakker7@tudelft","raoulcollenteur@karl-franzensuniversityofgraz","rubencalje@artesia-water","saklop"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amo","artesia-water","artesiawater","brabantwater","codefarm","karl-franzensuniversityofgraz","tudelft"],"_pop_contributor_orgs_raw":["AMO","Artesia Water","Artesia-water","Brabant Water","Code Farm LLC","Karl-Franzens University of Graz","TU Delft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.73,"_pop_updated_issues_count":158,"_pop_closed_issues_count":115,"_pop_created_since_days":83,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":158.0,"_pop_comment_count":298.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":47.04,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/pastas/pastas/master/README.rst","_readme_localurl":"pastas~pastas~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pastas/pastas/master/pyproject.toml"],"_requirements_localurls":["pastas~pastas~pyproject.toml"]},{"index":946,"category":"web","githuburl":"https://github.com/aeternalis-ingenium/fastapi-backend-template","featured":null,"links":null,"description":null,"_repopath":"aeternalis-ingenium/fastapi-backend-template","_reponame":"FastAPI-Backend-Template","_stars":288,"_forks":48,"_watches":9,"_language":"Python","_homepage":"","_description":"FastAPI-Backend-Template: A backend project template with FastAPI, PostgreSQL with asynchronous SQLAlchemy 2.0, Alembic for asynchronous database migration, and Docker.","_organization":"aeternalis-ingenium","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-12-05T00:00:00.000Z","_age_weeks":11,"_stars_per_week":25.52,"_topics":["asynchronous","docker","docker-compose","fastapi","postgresql","python","sqlalchemy","codecov","githubactions","jwt","pre-commit","alembic","asyncpg","coverage","pytest"],"_last_commit_date":"2023-02-05T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["Aeternalis-Ingenium@j.a.r.v.i.s.","cclauss@christianclauss","kumaravelabinbev","pre-commit-ci[bot]"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["christianclauss","j.a.r.v.i.s."],"_pop_contributor_orgs_raw":["Christian Clauss","J. A. R.V. I. S."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.19,"_pop_updated_issues_count":13,"_pop_closed_issues_count":12,"_pop_created_since_days":3,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":13.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":17.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aeternalis-ingenium/fastapi-backend-template/master/README.md","_readme_localurl":"aeternalis-ingenium~fastapi-backend-template~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":574,"category":"gis","githuburl":"https://github.com/developmentseed/geolambda","featured":null,"links":null,"description":null,"_repopath":"developmentseed/geolambda","_reponame":"geolambda","_stars":281,"_forks":85,"_watches":49,"_language":"Dockerfile","_homepage":null,"_description":"geolambda: Create and deploy Geospatial AWS Lambda functions","_organization":"developmentseed","_updated_at":"2023-01-24T00:00:00.000Z","_created_at":"2017-05-02T00:00:00.000Z","_age_weeks":303,"_stars_per_week":0.93,"_topics":[],"_last_commit_date":"2021-02-16T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["bluetyson","kylebarron","matthewhanson@element84","robertd","seilerman@jupiter","vincentsarago@developmentseed"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["developmentseed","element84","jupiter"],"_pop_contributor_orgs_raw":["@developmentseed ","@element84","Jupiter"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":71,"_pop_updated_since_days":24,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":16.77,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/geolambda/master/README.md","_readme_localurl":"developmentseed~geolambda~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":524,"category":"util","githuburl":"https://github.com/venth/aws-adfs","featured":null,"links":null,"description":null,"_repopath":"venth/aws-adfs","_reponame":"aws-adfs","_stars":280,"_forks":92,"_watches":11,"_language":"Python","_homepage":"","_description":"aws-adfs: Command line tool to ease aws cli authentication against ADFS (multi factor authentication with active directory)","_organization":"venth","_updated_at":"2023-01-31T00:00:00.000Z","_created_at":"2016-06-25T00:00:00.000Z","_age_weeks":347,"_stars_per_week":0.81,"_topics":["aws","adfs","python","command-line","tools","multi-factor-authentication","duo-security"],"_last_commit_date":"2022-12-14T00:00:00.000Z","_pop_contributor_count":46,"_pop_contributor_logins":["KyleJamesWalker@zefr","b0rken","bghinkle","brandond@rancher","dependabot[bot]","mikereinhold","pdecat@claranet","pvbouwel","trav-c","venth"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["claranet","rancher","zefr"],"_pop_contributor_orgs_raw":["@claranet","@rancher","ZEFR"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.04,"_pop_updated_issues_count":14,"_pop_closed_issues_count":5,"_pop_created_since_days":81,"_pop_updated_since_days":2,"_pop_recent_releases_count":20,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":20,"_pop_issue_count":14.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":37.98,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/venth/aws-adfs/master/README.md","_readme_localurl":"venth~aws-adfs~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/venth/aws-adfs/master/pyproject.toml"],"_requirements_localurls":["venth~aws-adfs~pyproject.toml"]},{"index":342,"category":"term","githuburl":"https://github.com/rockhopper-technologies/enlighten","featured":null,"links":null,"description":null,"_repopath":"rockhopper-technologies/enlighten","_reponame":"enlighten","_stars":275,"_forks":19,"_watches":4,"_language":"Python","_homepage":"https://python-enlighten.readthedocs.io","_description":"Enlighten Progress Bar for Python Console Apps","_organization":"rockhopper-technologies","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2017-09-22T00:00:00.000Z","_age_weeks":282,"_stars_per_week":0.97,"_topics":["python"],"_last_commit_date":"2023-02-04T00:00:00.000Z","_pop_contributor_count":5,"_pop_contributor_logins":["MicaelJarniac@micaeljarniac","avylove","bunjiboys","sourcery-ai[bot]"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["micaeljarniac"],"_pop_contributor_orgs_raw":["Micael Jarniac"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.73,"_pop_updated_issues_count":3,"_pop_closed_issues_count":2,"_pop_created_since_days":66,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":3.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":25.62,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/rockhopper-technologies/enlighten/master/README.rst","_readme_localurl":"rockhopper-technologies~enlighten~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rockhopper-technologies/enlighten/master/requirements.txt","https://raw.githubusercontent.com/rockhopper-technologies/enlighten/master/setup.py"],"_requirements_localurls":["rockhopper-technologies~enlighten~requirements.txt","rockhopper-technologies~enlighten~setup.py"]},{"index":123,"category":"util","githuburl":"https://github.com/mgedmin/check-manifest","featured":null,"links":null,"description":null,"_repopath":"mgedmin/check-manifest","_reponame":"check-manifest","_stars":274,"_forks":37,"_watches":7,"_language":"Python","_homepage":"https://pypi.org/p/check-manifest","_description":"check-manifest: Tool to check the completeness of MANIFEST.in for Python packages","_organization":"mgedmin","_updated_at":"2023-02-06T00:00:00.000Z","_created_at":"2013-03-05T00:00:00.000Z","_age_weeks":520,"_stars_per_week":0.53,"_topics":[],"_last_commit_date":"2022-12-11T00:00:00.000Z","_pop_contributor_count":22,"_pop_contributor_logins":["GhostofGoes","brechtm@opqode","hugovk@nordsoftware","jdufresne@pioneervalleybooks","jwilk","mauritsvanrees@zestsoftware","mgedmin@programmersofvilnius","myint","phijor","tobiasraabe@quantilope"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["nordsoftware","opqode","pioneervalleybooks","programmersofvilnius","quantilope","zestsoftware"],"_pop_contributor_orgs_raw":["@opqode ","@quantilope","@zestsoftware ","Nord Software","Pioneer Valley Books","Programmers of Vilnius"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.58,"_pop_updated_issues_count":2,"_pop_closed_issues_count":2,"_pop_created_since_days":121,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":2.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":37.71,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mgedmin/check-manifest/master/README.rst","_readme_localurl":"mgedmin~check-manifest~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mgedmin/check-manifest/master/setup.py"],"_requirements_localurls":["mgedmin~check-manifest~setup.py"]},{"index":210,"category":"util","githuburl":"https://github.com/tiangolo/poetry-version-plugin","featured":null,"links":null,"description":null,"_repopath":"tiangolo/poetry-version-plugin","_reponame":"poetry-version-plugin","_stars":274,"_forks":24,"_watches":5,"_language":"Python","_homepage":"","_description":"poetry-version-plugin: Poetry plugin for dynamically extracting the package version from a __version__ variable or a Git tag.","_organization":"tiangolo","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2021-05-27T00:00:00.000Z","_age_weeks":90,"_stars_per_week":3.02,"_topics":["python-poetry","packaging","python","python3","pypi","packaging-for-pypi"],"_last_commit_date":"2021-05-28T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["Gl0deanR@belike","tiangolo"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["belike"],"_pop_contributor_orgs_raw":["beLIKE"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":21,"_pop_updated_since_days":21,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":8.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tiangolo/poetry-version-plugin/master/README.md","_readme_localurl":"tiangolo~poetry-version-plugin~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tiangolo/poetry-version-plugin/master/pyproject.toml"],"_requirements_localurls":["tiangolo~poetry-version-plugin~pyproject.toml"]},{"index":385,"category":"nlp","githuburl":"https://github.com/kootenpv/contractions","featured":null,"links":null,"description":null,"_repopath":"kootenpv/contractions","_reponame":"contractions","_stars":272,"_forks":35,"_watches":7,"_language":"Python","_homepage":"","_description":"contractions: Fixes contractions such as `you're` to `you are`","_organization":"kootenpv","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2016-12-25T00:00:00.000Z","_age_weeks":321,"_stars_per_week":0.85,"_topics":[],"_last_commit_date":"2022-11-15T00:00:00.000Z","_pop_contributor_count":14,"_pop_contributor_logins":["Kev-Y-Huang","Wan-Yifei","christian-storm@independentresearch","daikikatsuragawa@japan","harshasomisetty","kootenpv@vankootenaisolutions/ex-mgnr","maximkir-fl","misha345a","nickumia","sajal2692@unscramblinc"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["independentresearch","japan","unscramblinc","vankootenaisolutions/ex-mgnr"],"_pop_contributor_orgs_raw":["Independent Research","Japan","Unscrambl Inc","Van Kooten AI Solutions / ex-mgnr"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":75,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":26.66,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kootenpv/contractions/master/README.md","_readme_localurl":"kootenpv~contractions~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kootenpv/contractions/master/requirements.txt","https://raw.githubusercontent.com/kootenpv/contractions/master/setup.py"],"_requirements_localurls":["kootenpv~contractions~requirements.txt","kootenpv~contractions~setup.py"]},{"index":418,"category":"pandas","githuburl":"https://github.com/zsailer/pandas_flavor","featured":null,"links":null,"description":null,"_repopath":"zsailer/pandas_flavor","_reponame":"pandas_flavor","_stars":272,"_forks":17,"_watches":11,"_language":"Python","_homepage":"https://zsailer.github.io/software/pandas-flavor/","_description":"pandas_flavor: The easy way to write your own flavor of Pandas","_organization":"zsailer","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2018-01-25T00:00:00.000Z","_age_weeks":264,"_stars_per_week":1.03,"_topics":["pandas"],"_last_commit_date":"2023-02-03T00:00:00.000Z","_pop_contributor_count":9,"_pop_contributor_logins":["Zsailer@apple","asmirnov69","ericmjl","eyaltrabelsi@bigabid","haimjether","musicinmybrain","partev","pre-commit-ci[bot]","toddrme2178"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["apple","bigabid"],"_pop_contributor_orgs_raw":["Apple","Bigabid"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.06,"_pop_updated_issues_count":6,"_pop_closed_issues_count":3,"_pop_created_since_days":62,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":6.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":28.33,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zsailer/pandas_flavor/master/README.md","_readme_localurl":"zsailer~pandas_flavor~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/zsailer/pandas_flavor/master/setup.py","https://raw.githubusercontent.com/zsailer/pandas_flavor/master/pyproject.toml"],"_requirements_localurls":["zsailer~pandas_flavor~setup.py","zsailer~pandas_flavor~pyproject.toml"]},{"index":307,"category":"crypto","githuburl":"https://github.com/ethereum/eth-utils","featured":null,"links":null,"description":null,"_repopath":"ethereum/eth-utils","_reponame":"eth-utils","_stars":270,"_forks":141,"_watches":18,"_language":"Python","_homepage":"https://eth-utils.readthedocs.io/en/latest/","_description":"eth-utils: Utility functions for working with ethereum related codebases.","_organization":"ethereum","_updated_at":"2023-02-13T00:00:00.000Z","_created_at":"2017-02-07T00:00:00.000Z","_age_weeks":315,"_stars_per_week":0.86,"_topics":["ethereum","python","utility-library"],"_last_commit_date":"2022-11-17T00:00:00.000Z","_pop_contributor_count":31,"_pop_contributor_logins":["Alegzander","Christofon","carver@ethereumfoundation","cburgdorf","davesque","gsalgado","kclowes","njgheorghita@ethereum","pipermerriam@ethereumfoundation","reiven"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ethereum","ethereumfoundation"],"_pop_contributor_orgs_raw":["@ethereum ","Ethereum Foundation"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.31,"_pop_updated_issues_count":4,"_pop_closed_issues_count":2,"_pop_created_since_days":74,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":10,"_pop_issue_count":4.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":29.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethereum/eth-utils/master/README.md","_readme_localurl":"ethereum~eth-utils~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ethereum/eth-utils/master/setup.py","https://raw.githubusercontent.com/ethereum/eth-utils/master/pyproject.toml"],"_requirements_localurls":["ethereum~eth-utils~setup.py","ethereum~eth-utils~pyproject.toml"]},{"index":852,"category":"web","githuburl":"https://github.com/conradbez/hstream","featured":null,"links":null,"description":null,"_repopath":"conradbez/hstream","_reponame":"hstream","_stars":267,"_forks":11,"_watches":6,"_language":"Python","_homepage":null,"_description":"hstream: Hyper Stream","_organization":"conradbez","_updated_at":"2023-01-29T00:00:00.000Z","_created_at":"2022-11-03T00:00:00.000Z","_age_weeks":15,"_stars_per_week":16.84,"_topics":[],"_last_commit_date":"2023-02-10T00:00:00.000Z","_pop_contributor_count":5,"_pop_contributor_logins":["blackary@streamlit","charliec443","collingreen","conradbez","thewchan"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["streamlit"],"_pop_contributor_orgs_raw":["Streamlit"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.81,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":4,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":13.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/conradbez/hstream/master/README.md","_readme_localurl":"conradbez~hstream~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/conradbez/hstream/master/setup.py"],"_requirements_localurls":["conradbez~hstream~setup.py"]},{"index":714,"category":"ml-ops","githuburl":"https://github.com/unionai-oss/unionml","featured":null,"links":null,"description":null,"_repopath":"unionai-oss/unionml","_reponame":"unionml","_stars":263,"_forks":38,"_watches":4,"_language":"Python","_homepage":"https://www.union.ai/unionml","_description":"UnionML: the easiest way to build and deploy machine learning microservices","_organization":"unionai-oss","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2021-11-17T00:00:00.000Z","_age_weeks":66,"_stars_per_week":3.98,"_topics":["machine-learning","mlops","hacktoberfest"],"_last_commit_date":"2022-12-21T00:00:00.000Z","_pop_contributor_count":15,"_pop_contributor_logins":["MrKrishnaAgarwal@letsopen-source","Smartmind12","SmritiSatyanV","bilal-aamer","cosmicBboy@unionai","eapolinario","evalsocket@unionai","jonwiggins@chartbeatillinoishackny","sugatoray@universityofwisconsin-milwaukee","zevisert@revelasystems"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["chartbeatillinoishackny","letsopen-source","revelasystems","unionai","universityofwisconsin-milwaukee"],"_pop_contributor_orgs_raw":["@Chartbeat @Illinois @hackny","@LetsOpen-Source","@unionai","Revela Systems","University of Wisconsin - Milwaukee","unionai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.5,"_pop_updated_issues_count":23,"_pop_closed_issues_count":4,"_pop_created_since_days":15,"_pop_updated_since_days":2,"_pop_recent_releases_count":18,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":23.0,"_pop_comment_count":10.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":33.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/unionai-oss/unionml/master/README.md","_readme_localurl":"unionai-oss~unionml~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/unionai-oss/unionml/master/requirements.txt","https://raw.githubusercontent.com/unionai-oss/unionml/master/setup.py","https://raw.githubusercontent.com/unionai-oss/unionml/master/pyproject.toml"],"_requirements_localurls":["unionai-oss~unionml~requirements.txt","unionai-oss~unionml~setup.py","unionai-oss~unionml~pyproject.toml"]},{"index":508,"category":"data","githuburl":"https://github.com/facebookresearch/mephisto","featured":null,"links":null,"description":null,"_repopath":"facebookresearch/mephisto","_reponame":"Mephisto","_stars":263,"_forks":59,"_watches":15,"_language":"JavaScript","_homepage":"https://mephisto.ai/","_description":"Mephisto: A suite of tools for managing crowdsourcing tasks from the inception through to data packaging for research use. ","_organization":"facebookresearch","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2019-08-19T00:00:00.000Z","_age_weeks":183,"_stars_per_week":1.43,"_topics":[],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":36,"_pop_contributor_logins":["EricMichaelSmith","Etesam913@spectatorpublishingcorrelation-one","JackUrb","bottler","dependabot[bot]","jxmsML@facebookresearch","mojtaba-komeili@facebookresearch","pringshia","salelkafrawy","sghmk12@federato"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebookresearch","federato","spectatorpublishingcorrelation-one"],"_pop_contributor_orgs_raw":["@facebookresearch ","@spectatorpublishing @correlation-one ","Federato"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.0,"_pop_updated_issues_count":81,"_pop_closed_issues_count":71,"_pop_created_since_days":43,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":81.0,"_pop_comment_count":68.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":42.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/facebookresearch/mephisto/master/README.md","_readme_localurl":"facebookresearch~mephisto~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/facebookresearch/mephisto/master/pyproject.toml"],"_requirements_localurls":["facebookresearch~mephisto~pyproject.toml"]},{"index":670,"category":"gis","githuburl":"https://github.com/cgal/cgal-swig-bindings","featured":null,"links":null,"description":null,"_repopath":"cgal/cgal-swig-bindings","_reponame":"cgal-swig-bindings","_stars":261,"_forks":80,"_watches":26,"_language":"C++","_homepage":"","_description":"cgal-swig-bindings: CGAL bindings using SWIG","_organization":"cgal","_updated_at":"2023-02-09T00:00:00.000Z","_created_at":"2015-03-14T00:00:00.000Z","_age_weeks":414,"_stars_per_week":0.63,"_topics":[],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":21,"_pop_contributor_logins":["WillieMaddox","afabri@geometryfactory","dependabot[bot]","lrineau@geometryfactory","maxGimeno","sgiraudot","sloriot@geometryfactory","snoyer","thopiekar","xantares"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["geometryfactory"],"_pop_contributor_orgs_raw":["GeometryFactory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.44,"_pop_updated_issues_count":6,"_pop_closed_issues_count":4,"_pop_created_since_days":97,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":6.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":34.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cgal/cgal-swig-bindings/master/README.md","_readme_localurl":"cgal~cgal-swig-bindings~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/cgal/cgal-swig-bindings/master/setup.py"],"_requirements_localurls":["cgal~cgal-swig-bindings~setup.py"]},{"index":737,"category":"ml-ops","githuburl":"https://github.com/skops-dev/skops","featured":null,"links":null,"description":null,"_repopath":"skops-dev/skops","_reponame":"skops","_stars":260,"_forks":42,"_watches":7,"_language":"Python","_homepage":"https://skops.readthedocs.io/en/stable/","_description":"skops is a Python library helping you share your scikit-learn based models and put them in production","_organization":"skops-dev","_updated_at":"2023-02-16T00:00:00.000Z","_created_at":"2022-05-04T00:00:00.000Z","_age_weeks":42,"_stars_per_week":6.19,"_topics":["huggingface","machine-learning","mlops","scikit-learn","hacktoberfest"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":13,"_pop_contributor_logins":["BenjaminBossan","E-Aho@bumble-tech","EdAbati","adrinjalali@huggingface","anferico@pischool,translated","ayyucedemirbas","dependabot[bot]","eltociear@bandism","merveenoyan@huggingface","omar-araboghli@tib"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bandism","bumble-tech","huggingface","pischool,translated","tib"],"_pop_contributor_orgs_raw":["@PiSchool, @Translated","@bandism ","@bumble-tech","@huggingface ","TIB"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.98,"_pop_updated_issues_count":117,"_pop_closed_issues_count":81,"_pop_created_since_days":10,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":117.0,"_pop_comment_count":377.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.2,"_pop_dependents_count":0,"_pop_score":40.22,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/skops-dev/skops/master/README.rst","_readme_localurl":"skops-dev~skops~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/skops-dev/skops/master/setup.py","https://raw.githubusercontent.com/skops-dev/skops/master/pyproject.toml"],"_requirements_localurls":["skops-dev~skops~setup.py","skops-dev~skops~pyproject.toml"]},{"index":303,"category":"util","githuburl":"https://github.com/airbnb/ottr","featured":null,"links":null,"description":null,"_repopath":"airbnb/ottr","_reponame":"ottr","_stars":259,"_forks":28,"_watches":8,"_language":"Python","_homepage":"","_description":"ottr: Serverless Public Key Infrastructure Framework","_organization":"airbnb","_updated_at":"2023-01-08T00:00:00.000Z","_created_at":"2021-08-27T00:00:00.000Z","_age_weeks":77,"_stars_per_week":3.33,"_topics":[],"_last_commit_date":"2022-01-04T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["yangkenneth@coinbase"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["coinbase"],"_pop_contributor_orgs_raw":["@coinbase"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":18,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":7.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/airbnb/ottr/master/README.md","_readme_localurl":"airbnb~ottr~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/airbnb/ottr/master/requirements.txt"],"_requirements_localurls":["airbnb~ottr~requirements.txt"]},{"index":454,"category":"gis","githuburl":"https://github.com/openaddresses/pyesridump","featured":null,"links":null,"description":null,"_repopath":"openaddresses/pyesridump","_reponame":"pyesridump","_stars":258,"_forks":60,"_watches":16,"_language":"Python","_homepage":null,"_description":"pyesridump: Scrapes an ESRI MapServer REST endpoint to spit out more generally-usable geodata.","_organization":"openaddresses","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2013-12-06T00:00:00.000Z","_age_weeks":480,"_stars_per_week":0.54,"_topics":[],"_last_commit_date":"2023-02-01T00:00:00.000Z","_pop_contributor_count":12,"_pop_contributor_logins":["ahmednoureldeen@cartologic","albarrentine","andrewharvey@alantgeo","candrsn@nlt","dionysio@bringg","fgregg@datamade,partner","hancush@datamade","iandees","ingalls@openaddressesdevelopmentseed","ramSeraph"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["alantgeo","bringg","cartologic","datamade","datamade,partner","nlt","openaddressesdevelopmentseed"],"_pop_contributor_orgs_raw":["@bringg","@cartologic","@datamade","@datamade, Partner","@openaddresses @developmentseed","Alantgeo","NLT"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.4,"_pop_updated_issues_count":4,"_pop_closed_issues_count":0,"_pop_created_since_days":112,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":4.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":33.32,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openaddresses/pyesridump/master/README.md","_readme_localurl":"openaddresses~pyesridump~README.md","_requirements_filenames":["setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/openaddresses/pyesridump/master/setup.py","https://raw.githubusercontent.com/openaddresses/pyesridump/master/Pipfile"],"_requirements_localurls":["openaddresses~pyesridump~setup.py","openaddresses~pyesridump~Pipfile"]},{"index":826,"category":"diffusion","githuburl":"https://github.com/thereforegames/unprompted","featured":null,"links":null,"description":null,"_repopath":"thereforegames/unprompted","_reponame":"unprompted","_stars":258,"_forks":30,"_watches":10,"_language":"Python","_homepage":null,"_description":"unprompted: Text generator written for Stable Diffusion workflows.","_organization":"thereforegames","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-10-31T00:00:00.000Z","_age_weeks":16,"_stars_per_week":15.84,"_topics":[],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["MaikoTan@awesomehamster","ThereforeGames","WeberSamuel","kylechallis"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["awesomehamster"],"_pop_contributor_orgs_raw":["@AwesomeHamster"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.42,"_pop_updated_issues_count":48,"_pop_closed_issues_count":28,"_pop_created_since_days":4,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":48.0,"_pop_comment_count":137.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.9,"_pop_dependents_count":0,"_pop_score":24.68,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/thereforegames/unprompted/master/README.md","_readme_localurl":"thereforegames~unprompted~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/thereforegames/unprompted/master/requirements.txt"],"_requirements_localurls":["thereforegames~unprompted~requirements.txt"]},{"index":480,"category":"pandas","githuburl":"https://github.com/holoviz/spatialpandas","featured":null,"links":null,"description":null,"_repopath":"holoviz/spatialpandas","_reponame":"spatialpandas","_stars":255,"_forks":22,"_watches":22,"_language":"Python","_homepage":"","_description":"spatialpandas: Pandas extension arrays for spatial/geometric operations","_organization":"holoviz","_updated_at":"2023-02-13T00:00:00.000Z","_created_at":"2019-10-28T00:00:00.000Z","_age_weeks":173,"_stars_per_week":1.47,"_topics":["holoviz","spatialpandas","pandas","geopandas","geographic-data"],"_last_commit_date":"2023-01-09T00:00:00.000Z","_pop_contributor_count":9,"_pop_contributor_logins":["Hoxbro","brl0@datum-tech","iameskild@quansight","ianthomas23@anaconda","jbednar@anaconda","jonmmease@hextechnologies","jrbourbeau@coiled","maximlt@anaconda","philippjfr@anaconda"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","coiled","datum-tech","hextechnologies","quansight"],"_pop_contributor_orgs_raw":["@Datum-Tech ","@coiled ","@quansight","Anaconda","Anaconda Inc.","Anaconda, Inc.","Hex Technologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.35,"_pop_updated_issues_count":11,"_pop_closed_issues_count":7,"_pop_created_since_days":40,"_pop_updated_since_days":1,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":11.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":30.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/holoviz/spatialpandas/master/README.md","_readme_localurl":"holoviz~spatialpandas~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/holoviz/spatialpandas/master/setup.py","https://raw.githubusercontent.com/holoviz/spatialpandas/master/pyproject.toml"],"_requirements_localurls":["holoviz~spatialpandas~setup.py","holoviz~spatialpandas~pyproject.toml"]},{"index":587,"category":"ml","githuburl":"https://github.com/merantix-momentum/squirrel-core","featured":null,"links":null,"description":null,"_repopath":"merantix-momentum/squirrel-core","_reponame":"squirrel-core","_stars":254,"_forks":6,"_watches":13,"_language":"Python","_homepage":"https://squirrel-core.readthedocs.io/","_description":"squirrel-core: A Python library that enables ML teams to share, load, and transform data in a collaborative, flexible, and efficient way :chestnut:","_organization":"merantix-momentum","_updated_at":"2023-02-16T00:00:00.000Z","_created_at":"2022-02-11T00:00:00.000Z","_age_weeks":53,"_stars_per_week":4.73,"_topics":["python","ml","machine-learning","data-science","computer-vision","cv","nlp","natural-language-processing","ai","pytorch","tensorflow","jax","datasets","distributed","dataops","collaboration","deep-learning","data-mesh","data-ingestion","cloud-computing"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":12,"_pop_contributor_logins":["AdemFr","AlirezaSohofi@merantixlabs","AlpAribal","MaxSchambach@merantixmomentum","ThomasWollmann@merantix&pw-solutions","TiansuYu@idealointernetgmbh","axkoenig@merantixmomentum","kai-tub","pzdkn@merantix-momentum","winfried-ripken"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["idealointernetgmbh","merantix&pw-solutions","merantix-momentum","merantixlabs","merantixmomentum"],"_pop_contributor_orgs_raw":["@merantix-momentum ","Idealo Internet GmbH","Merantix & PW-Solutions","Merantix Labs","Merantix Momentum"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.0,"_pop_updated_issues_count":14,"_pop_closed_issues_count":10,"_pop_created_since_days":12,"_pop_updated_since_days":0,"_pop_recent_releases_count":14,"_pop_recent_releases_estimated_tags":14,"_pop_recent_releases_adjusted_count":14,"_pop_issue_count":14.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":34.89,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/merantix-momentum/squirrel-core/master/README.md","_readme_localurl":"merantix-momentum~squirrel-core~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/merantix-momentum/squirrel-core/master/requirements.txt","https://raw.githubusercontent.com/merantix-momentum/squirrel-core/master/setup.py","https://raw.githubusercontent.com/merantix-momentum/squirrel-core/master/pyproject.toml"],"_requirements_localurls":["merantix-momentum~squirrel-core~requirements.txt","merantix-momentum~squirrel-core~setup.py","merantix-momentum~squirrel-core~pyproject.toml"]},{"index":693,"category":"data","githuburl":"https://github.com/paperswithcode/sota-extractor","featured":null,"links":null,"description":null,"_repopath":"paperswithcode/sota-extractor","_reponame":"sota-extractor","_stars":252,"_forks":28,"_watches":13,"_language":"Python","_homepage":null,"_description":"sota-extractor: The SOTA extractor pipeline","_organization":"paperswithcode","_updated_at":"2022-12-26T00:00:00.000Z","_created_at":"2018-12-07T00:00:00.000Z","_age_weeks":219,"_stars_per_week":1.15,"_topics":[],"_last_commit_date":"2022-03-09T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["RJT1990","alefnula@https://alefnula.io","gcucurull","mkardas","omarsar@dair.ai","rstojnic","thatch","zeke@replicate"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["dair.ai","https://alefnula.io","replicate"],"_pop_contributor_orgs_raw":["@replicate ","DAIR.AI","https://alefnula.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":51,"_pop_updated_since_days":12,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":19.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/README.md","_readme_localurl":"paperswithcode~sota-extractor~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/requirements.txt","https://raw.githubusercontent.com/paperswithcode/sota-extractor/master/setup.py"],"_requirements_localurls":["paperswithcode~sota-extractor~requirements.txt","paperswithcode~sota-extractor~setup.py"]},{"index":374,"category":"data","githuburl":"https://github.com/ndrplz/google-drive-downloader","featured":null,"links":null,"description":null,"_repopath":"ndrplz/google-drive-downloader","_reponame":"google-drive-downloader","_stars":252,"_forks":62,"_watches":11,"_language":"Python","_homepage":null,"_description":"google-drive-downloader: Minimal class to download shared files from Google Drive.","_organization":"ndrplz","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-12-08T00:00:00.000Z","_age_weeks":271,"_stars_per_week":0.93,"_topics":[],"_last_commit_date":"2019-02-09T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["DavideA","TheZoc","kant","ndrplz@nomitri-perceptionaiformobile"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["nomitri-perceptionaiformobile"],"_pop_contributor_orgs_raw":["Nomitri - Perception AI for Mobile"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":63,"_pop_updated_since_days":49,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":5.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":13.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ndrplz/google-drive-downloader/master/README.md","_readme_localurl":"ndrplz~google-drive-downloader~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ndrplz/google-drive-downloader/master/setup.py"],"_requirements_localurls":["ndrplz~google-drive-downloader~setup.py"]},{"index":248,"category":"util","githuburl":"https://github.com/rpgreen/apilogs","featured":null,"links":null,"description":null,"_repopath":"rpgreen/apilogs","_reponame":"apilogs","_stars":249,"_forks":19,"_watches":9,"_language":"Python","_homepage":"","_description":"apilogs: Easy logging and debugging for Amazon API Gateway and AWS Lambda Serverless APIs","_organization":"rpgreen","_updated_at":"2023-02-10T00:00:00.000Z","_created_at":"2016-09-07T00:00:00.000Z","_age_weeks":337,"_stars_per_week":0.74,"_topics":["api","gateway","api-gateway","aws","cloudwatch-logs","logging","lambda","aws-lambda","aws-apigateway"],"_last_commit_date":"2019-11-13T00:00:00.000Z","_pop_contributor_count":23,"_pop_contributor_logins":["adamchainz@django,djangolondon","agonzalezro@auth0","alanc10n","angelabad","graingert","nathanleiby@engineeringstableauto","obestwalter@avira","philipn@encycla","rpgreen","vlcinsky"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["auth0","avira","django,djangolondon","encycla","engineeringstableauto"],"_pop_contributor_orgs_raw":["@Auth0","@Avira","@django, @djangolondon","Encycla","Engineering @ Stable Auto"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":79,"_pop_updated_since_days":40,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":19.21,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/rpgreen/apilogs/master/README.rst","_readme_localurl":"rpgreen~apilogs~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/rpgreen/apilogs/master/setup.py"],"_requirements_localurls":["rpgreen~apilogs~setup.py"]},{"index":515,"category":"data","githuburl":"https://github.com/jovianml/opendatasets","featured":null,"links":null,"description":null,"_repopath":"jovianml/opendatasets","_reponame":"opendatasets","_stars":248,"_forks":123,"_watches":13,"_language":"Python","_homepage":"","_description":"opendatasets: A Python library for downloading datasets from Kaggle, Google Drive, and other online sources.","_organization":"jovianml","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-09-17T00:00:00.000Z","_age_weeks":126,"_stars_per_week":1.95,"_topics":["data-science","machine-learning","datasets","python"],"_last_commit_date":"2022-11-01T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["BirajCoder@jovian","aakashns@jovianml"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["jovian","jovianml"],"_pop_contributor_orgs_raw":["@JovianML","Jovian"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":3,"_pop_closed_issues_count":0,"_pop_created_since_days":30,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":15.97,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jovianml/opendatasets/master/README.md","_readme_localurl":"jovianml~opendatasets~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jovianml/opendatasets/master/requirements.txt","https://raw.githubusercontent.com/jovianml/opendatasets/master/setup.py"],"_requirements_localurls":["jovianml~opendatasets~requirements.txt","jovianml~opendatasets~setup.py"]},{"index":888,"category":"study","githuburl":"https://github.com/amaargiru/pyroad","featured":null,"links":null,"description":null,"_repopath":"amaargiru/pyroad","_reponame":"pyroad","_stars":248,"_forks":27,"_watches":6,"_language":"Jupyter Notebook","_homepage":"","_description":"pyroad: Detailed Python developer roadmap","_organization":"amaargiru","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2022-11-03T00:00:00.000Z","_age_weeks":15,"_stars_per_week":15.64,"_topics":["python","roadmap","tutorial"],"_last_commit_date":"2023-01-04T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["amaargiru@oznadigitalsolutions"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["oznadigitalsolutions"],"_pop_contributor_orgs_raw":["OZNA Digital Solutions"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.04,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":4,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":13.2,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/amaargiru/pyroad/master/readme.md","_readme_localurl":"amaargiru~pyroad~readme.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":864,"category":"ml-ops","githuburl":"https://github.com/astronomer/airflow-chart","featured":null,"links":null,"description":null,"_repopath":"astronomer/airflow-chart","_reponame":"airflow-chart","_stars":244,"_forks":87,"_watches":44,"_language":"Python","_homepage":null,"_description":"airflow-chart: A Helm chart to install Apache Airflow on Kubernetes","_organization":"astronomer","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-01-22T00:00:00.000Z","_age_weeks":161,"_stars_per_week":1.52,"_topics":["helm-chart","airflow","apache-airflow","kubernetes"],"_last_commit_date":"2023-02-10T00:00:00.000Z","_pop_contributor_count":48,"_pop_contributor_logins":["andriisoldatenko","andscoop","cwurtz","danielhoherd@astronomer","ianstanton@coredb","kaxil@astronomer","pgvishnuram@astronomer","schnie@astronomer","sjmiller609@coredb","tedmiston@mandolin-dev"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["astronomer","coredb","mandolin-dev"],"_pop_contributor_orgs_raw":["@astronomer","@astronomer ","@mandolin-dev","Astronomer","CoreDB"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.85,"_pop_updated_issues_count":33,"_pop_closed_issues_count":30,"_pop_created_since_days":38,"_pop_updated_since_days":0,"_pop_recent_releases_count":17,"_pop_recent_releases_estimated_tags":29,"_pop_recent_releases_adjusted_count":17,"_pop_issue_count":33.0,"_pop_comment_count":24.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":40.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/astronomer/airflow-chart/master/README.md","_readme_localurl":"astronomer~airflow-chart~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":870,"category":"ml","githuburl":"https://github.com/infer-actively/pymdp","featured":null,"links":null,"description":null,"_repopath":"infer-actively/pymdp","_reponame":"pymdp","_stars":244,"_forks":37,"_watches":24,"_language":"Python","_homepage":"","_description":"pymdp: A Python implementation of active inference for Markov Decision Processes","_organization":"infer-actively","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2019-11-27T00:00:00.000Z","_age_weeks":169,"_stars_per_week":1.44,"_topics":[],"_last_commit_date":"2022-12-08T00:00:00.000Z","_pop_contributor_count":12,"_pop_contributor_logins":["Arun-Niranjan@bud","BerenMillidge","alec-tschantz","conorheins","dependabot[bot]","mahault","pitmonticone@universityofturin"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bud","universityofturin"],"_pop_contributor_orgs_raw":["Bud","University of Turin"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.31,"_pop_updated_issues_count":5,"_pop_closed_issues_count":4,"_pop_created_since_days":39,"_pop_updated_since_days":2,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":5.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":27.07,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/infer-actively/pymdp/master/README.md","_readme_localurl":"infer-actively~pymdp~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/infer-actively/pymdp/master/requirements.txt","https://raw.githubusercontent.com/infer-actively/pymdp/master/setup.py"],"_requirements_localurls":["infer-actively~pymdp~requirements.txt","infer-actively~pymdp~setup.py"]},{"index":277,"category":"data","githuburl":"https://github.com/airbnb/omniduct","featured":null,"links":null,"description":null,"_repopath":"airbnb/omniduct","_reponame":"omniduct","_stars":243,"_forks":47,"_watches":31,"_language":"Python","_homepage":"","_description":"omniduct: A toolkit providing a uniform interface for connecting to and extracting data from a wide variety of (potentially remote) data stores (including HDFS, Hive, Presto, MySQL, etc).","_organization":"airbnb","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2017-02-22T00:00:00.000Z","_age_weeks":313,"_stars_per_week":0.78,"_topics":[],"_last_commit_date":"2022-05-09T00:00:00.000Z","_pop_contributor_count":12,"_pop_contributor_logins":["danfrankj","delirious-lettuce","foxyblue","gloutsch","gthomas-slack@slack","harsham4026","kination@line","ljharb@tc39","matthewwardrop@datascientistatnetflix","naoyak@airbnb"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["airbnb","datascientistatnetflix","line","slack","tc39"],"_pop_contributor_orgs_raw":["@airbnb","@line","@tc39","Data Scientist at @Netflix","Slack"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":73,"_pop_updated_since_days":10,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":25.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/airbnb/omniduct/master/README.md","_readme_localurl":"airbnb~omniduct~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/airbnb/omniduct/master/setup.py"],"_requirements_localurls":["airbnb~omniduct~setup.py"]},{"index":657,"category":"template","githuburl":"https://github.com/sqlalchemy/mako","featured":null,"links":null,"description":null,"_repopath":"sqlalchemy/mako","_reponame":"mako","_stars":243,"_forks":46,"_watches":11,"_language":"Python","_homepage":"https://www.makotemplates.org","_description":"Mako Templates for Python","_organization":"sqlalchemy","_updated_at":"2023-02-09T00:00:00.000Z","_created_at":"2018-11-26T00:00:00.000Z","_age_weeks":221,"_stars_per_week":1.1,"_topics":[],"_last_commit_date":"2023-01-03T00:00:00.000Z","_pop_contributor_count":59,"_pop_contributor_logins":["CaselIT","bbangert@mozilla,nabucasa","bourke@iter8ve","donkopotamus","mindw","olduvaihand@google,inc","pjenvey@mozilla","vincent-ferotin","wichert@simplonb.v.","zzzeek@redhat"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google,inc","iter8ve","mozilla","mozilla,nabucasa","redhat","simplonb.v."],"_pop_contributor_orgs_raw":["@mozilla, @NabuCasa","Google, Inc","Mozilla","Red Hat","Simplon B.V.","iter8ve"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.54,"_pop_updated_issues_count":6,"_pop_closed_issues_count":4,"_pop_created_since_days":52,"_pop_updated_since_days":2,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":6.0,"_pop_comment_count":18.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":40.17,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/sqlalchemy/mako/master/README.rst","_readme_localurl":"sqlalchemy~mako~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sqlalchemy/mako/master/setup.py","https://raw.githubusercontent.com/sqlalchemy/mako/master/pyproject.toml"],"_requirements_localurls":["sqlalchemy~mako~setup.py","sqlalchemy~mako~pyproject.toml"]},{"index":229,"category":"data","githuburl":"https://github.com/microsoft/genalog","featured":null,"links":null,"description":null,"_repopath":"microsoft/genalog","_reponame":"genalog","_stars":243,"_forks":24,"_watches":10,"_language":"Jupyter Notebook","_homepage":"https://microsoft.github.io/genalog/","_description":"Genalog is an open source, cross-platform python package allowing generation of synthetic document images with custom degradations and text alignment capabilities.","_organization":"microsoft","_updated_at":"2023-02-13T00:00:00.000Z","_created_at":"2020-06-15T00:00:00.000Z","_age_weeks":140,"_stars_per_week":1.73,"_topics":["ner","ocr-recognition","python","text-alignment","data-generation","data-science","machine-learning","synthetic-data","synthetic-images","synthetic-data-generation"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":5,"_pop_contributor_logins":["dbanda@microsoft","jgc128","laserprec","microsoft-github-operations[bot]","microsoftopensource@microsoft"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["microsoft"],"_pop_contributor_orgs_raw":["Microsoft"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":33,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":20.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/microsoft/genalog/master/README.md","_readme_localurl":"microsoft~genalog~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/microsoft/genalog/master/requirements.txt","https://raw.githubusercontent.com/microsoft/genalog/master/setup.py"],"_requirements_localurls":["microsoft~genalog~requirements.txt","microsoft~genalog~setup.py"]},{"index":276,"category":"crypto","githuburl":"https://github.com/ethtx/ethtx_ce","featured":null,"links":null,"description":null,"_repopath":"ethtx/ethtx_ce","_reponame":"ethtx_ce","_stars":241,"_forks":60,"_watches":13,"_language":"Python","_homepage":"https://ethtx.info","_description":"ethtx_ce: Ethereum transaction decoder (community version).","_organization":"ethtx","_updated_at":"2023-02-12T00:00:00.000Z","_created_at":"2021-07-26T00:00:00.000Z","_age_weeks":82,"_stars_per_week":2.93,"_topics":[],"_last_commit_date":"2022-12-22T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["dudzicz@tokenflowinsights","feld","kchojn@py-world","piotr-rudnik","tmierzwa@tokenflowinsights","wolololol","zdumitru"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["py-world","tokenflowinsights"],"_pop_contributor_orgs_raw":["Py-World","Token Flow Insights"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.6,"_pop_updated_issues_count":9,"_pop_closed_issues_count":8,"_pop_created_since_days":19,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":9.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":20.47,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ethtx/ethtx_ce/master/README.md","_readme_localurl":"ethtx~ethtx_ce~README.md","_requirements_filenames":["Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/ethtx/ethtx_ce/master/Pipfile"],"_requirements_localurls":["ethtx~ethtx_ce~Pipfile"]},{"index":588,"category":"data","githuburl":"https://github.com/tokern/data-lineage","featured":null,"links":null,"description":null,"_repopath":"tokern/data-lineage","_reponame":"data-lineage","_stars":241,"_forks":28,"_watches":8,"_language":"Python","_homepage":"https://tokern.io/data-lineage/","_description":"data-lineage: Generate and Visualize Data Lineage from query history","_organization":"tokern","_updated_at":"2023-02-04T00:00:00.000Z","_created_at":"2020-03-17T00:00:00.000Z","_age_weeks":153,"_stars_per_week":1.57,"_topics":["data-lineage","data-governance","python","postgresql","jupyter"],"_last_commit_date":"2022-05-02T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["dependabot[bot]","dorianj","vrajat"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":6,"_pop_closed_issues_count":1,"_pop_created_since_days":36,"_pop_updated_since_days":10,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":6.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":14.19,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tokern/data-lineage/master/README.md","_readme_localurl":"tokern~data-lineage~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/tokern/data-lineage/master/pyproject.toml"],"_requirements_localurls":["tokern~data-lineage~pyproject.toml"]},{"index":83,"category":"ml","githuburl":"https://github.com/stan-dev/pystan","featured":null,"links":null,"description":null,"_repopath":"stan-dev/pystan","_reponame":"pystan","_stars":240,"_forks":46,"_watches":13,"_language":"Python","_homepage":"","_description":"PyStan, a Python interface to Stan, a platform for statistical modeling. Documentation: https://pystan.readthedocs.io","_organization":"stan-dev","_updated_at":"2023-02-16T00:00:00.000Z","_created_at":"2017-09-17T00:00:00.000Z","_age_weeks":283,"_stars_per_week":0.85,"_topics":[],"_last_commit_date":"2022-11-26T00:00:00.000Z","_pop_contributor_count":11,"_pop_contributor_logins":["MichaelClerx@universityofnottingham","ahartikainen@lumoanalytics","amas0","asottile","jburroni","jgabry@columbiauniversitystan-dev","mjcarter95","riddell-stan","smoh"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["columbiauniversitystan-dev","lumoanalytics","universityofnottingham"],"_pop_contributor_orgs_raw":["@lumoanalytics ","Columbia University @stan-dev","University of Nottingham"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.35,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":66,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":5.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":27.11,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/stan-dev/pystan/master/README.rst","_readme_localurl":"stan-dev~pystan~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/stan-dev/pystan/master/pyproject.toml"],"_requirements_localurls":["stan-dev~pystan~pyproject.toml"]},{"index":923,"category":"gis","githuburl":"https://github.com/giswqs/aws-open-data-geo","featured":null,"links":null,"description":null,"_repopath":"giswqs/aws-open-data-geo","_reponame":"aws-open-data-geo","_stars":234,"_forks":6,"_watches":9,"_language":"Python","_homepage":"","_description":"aws-open-data-geo: A list of open geospatial datasets on AWS","_organization":"giswqs","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-12-18T00:00:00.000Z","_age_weeks":9,"_stars_per_week":24.82,"_topics":["aws","environment","geospatial","mapping","open-data","satellite-imagery","sustainability"],"_last_commit_date":"2023-02-18T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["actions-user@actions","giswqs@universityoftennessee"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["actions","universityoftennessee"],"_pop_contributor_orgs_raw":["@actions","University of Tennessee"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.75,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":2,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.0,"_pop_dependents_count":0,"_pop_score":19.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/giswqs/aws-open-data-geo/master/README.md","_readme_localurl":"giswqs~aws-open-data-geo~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/giswqs/aws-open-data-geo/master/requirements.txt"],"_requirements_localurls":["giswqs~aws-open-data-geo~requirements.txt"]},{"index":865,"category":"ml-ops","githuburl":"https://github.com/astronomer/astro-sdk","featured":null,"links":null,"description":null,"_repopath":"astronomer/astro-sdk","_reponame":"astro-sdk","_stars":230,"_forks":31,"_watches":14,"_language":"Python","_homepage":"https://astro-sdk-python.rtfd.io/","_description":"astro-sdk: Astro SDK allows rapid and clean development of {Extract, Load, Transform} workflows using Python and SQL, powered by Apache Airflow.","_organization":"astronomer","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2021-12-06T00:00:00.000Z","_age_weeks":63,"_stars_per_week":3.63,"_topics":["python","sql","pandas","airflow","sqlite","bigquery","postgres","snowflake","gcs","s3","etl","elt","dags","workflows","data-analysis","data-science","apache-airflow"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":32,"_pop_contributor_logins":["dimberman@astronomerio","feluelle@astronomer","kaxil@astronomer","pankajastro@astronomer","pankajkoti@astronomer","pre-commit-ci[bot]","rajaths010494","sunank200@astronomer","tatiana@astronomer","utkarsharma2@astronomer"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["astronomer","astronomerio"],"_pop_contributor_orgs_raw":["@astronomer","@astronomer ","@astronomerio","Astronomer"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":15.13,"_pop_updated_issues_count":628,"_pop_closed_issues_count":492,"_pop_created_since_days":15,"_pop_updated_since_days":0,"_pop_recent_releases_count":41,"_pop_recent_releases_estimated_tags":54,"_pop_recent_releases_adjusted_count":41,"_pop_issue_count":628.0,"_pop_comment_count":770.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":44.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/astronomer/astro-sdk/master/README.md","_readme_localurl":"astronomer~astro-sdk~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":933,"category":"nlp","githuburl":"https://github.com/lucidrains/medical-chatgpt","featured":null,"links":null,"description":null,"_repopath":"lucidrains/medical-chatgpt","_reponame":"medical-chatgpt","_stars":227,"_forks":19,"_watches":25,"_language":"Python","_homepage":"","_description":"medical-chatgpt: Implementation of ChatGPT, but tailored towards primary care medicine, with the reward being able to collect patient histories in a thorough and efficient manner and come up with a reasonable differential diagnosis","_organization":"lucidrains","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-12-10T00:00:00.000Z","_age_weeks":10,"_stars_per_week":21.47,"_topics":["artificial-intelligence","attention-mechanisms","deep-learning","transformers","medicine"],"_last_commit_date":"2023-02-12T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["ell-hol@orange","lucidrains"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["orange"],"_pop_contributor_orgs_raw":["Orange"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.21,"_pop_updated_issues_count":2,"_pop_closed_issues_count":2,"_pop_created_since_days":2,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":10.97,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lucidrains/medical-chatgpt/master/README.md","_readme_localurl":"lucidrains~medical-chatgpt~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lucidrains/medical-chatgpt/master/setup.py"],"_requirements_localurls":["lucidrains~medical-chatgpt~setup.py"]},{"index":274,"category":"data","githuburl":"https://github.com/amzn/ion-python","featured":null,"links":null,"description":null,"_repopath":"amzn/ion-python","_reponame":"ion-python","_stars":223,"_forks":49,"_watches":25,"_language":"Python","_homepage":"https://amazon-ion.github.io/ion-docs/","_description":"ion-python: A Python implementation of Amazon Ion.","_organization":"amzn","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2016-04-07T00:00:00.000Z","_age_weeks":358,"_stars_per_week":0.62,"_topics":[],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":25,"_pop_contributor_logins":["Antrikshy@amazon","almann","cheqianh@amazon","daniel-butler","dlurton@amzn","mijamo911@nope","popematt@amzn","rmarrowstone@amazon","rubcuevas","tgregg"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazon","amzn","nope"],"_pop_contributor_orgs_raw":["@amzn ","Amazon","Nope"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.38,"_pop_updated_issues_count":25,"_pop_closed_issues_count":13,"_pop_created_since_days":84,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":25.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":35.22,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/amzn/ion-python/master/README.md","_readme_localurl":"amzn~ion-python~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/amzn/ion-python/master/requirements.txt","https://raw.githubusercontent.com/amzn/ion-python/master/setup.py"],"_requirements_localurls":["amzn~ion-python~requirements.txt","amzn~ion-python~setup.py"]},{"index":491,"category":"gis","githuburl":"https://github.com/cogeotiff/rio-cogeo","featured":null,"links":null,"description":null,"_repopath":"cogeotiff/rio-cogeo","_reponame":"rio-cogeo","_stars":218,"_forks":31,"_watches":44,"_language":"Python","_homepage":"https://cogeotiff.github.io/rio-cogeo/","_description":"rio-cogeo: Cloud Optimized GeoTIFF creation and validation plugin for rasterio","_organization":"cogeotiff","_updated_at":"2023-02-10T00:00:00.000Z","_created_at":"2018-03-09T00:00:00.000Z","_age_weeks":258,"_stars_per_week":0.84,"_topics":["satellite","cog","geotiff","rasterio","cogeotiff"],"_last_commit_date":"2022-10-26T00:00:00.000Z","_pop_contributor_count":13,"_pop_contributor_logins":["drnextgis@satellogic","geospatial-jeff@regrowag","j08lue@developmentseed","kant","kylebarron","perliedman@solvi","pierotofy@uav4geo","rukku@phl-microsatdpad","sgillies@planetlabs","vincentsarago@developmentseed"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["developmentseed","phl-microsatdpad","planetlabs","regrowag","satellogic","solvi","uav4geo"],"_pop_contributor_orgs_raw":["@developmentseed ","@planetlabs","@regrowag","@satellogic","Development Seed","PHL-Microsat DPAD","Solvi","UAV4GEO"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.52,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":60,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":3.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.7,"_pop_dependents_count":0,"_pop_score":37.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cogeotiff/rio-cogeo/master/README.md","_readme_localurl":"cogeotiff~rio-cogeo~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cogeotiff/rio-cogeo/master/pyproject.toml"],"_requirements_localurls":["cogeotiff~rio-cogeo~pyproject.toml"]},{"index":249,"category":"sim","githuburl":"https://github.com/bilhim/trafficsimulator","featured":null,"links":null,"description":null,"_repopath":"bilhim/trafficsimulator","_reponame":"trafficSimulator","_stars":217,"_forks":81,"_watches":16,"_language":"Python","_homepage":null,"_description":"bilhim/trafficsimulator","_organization":"bilhim","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2021-09-05T00:00:00.000Z","_age_weeks":76,"_stars_per_week":2.84,"_topics":[],"_last_commit_date":"2021-09-07T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["BilHim","hamolicious"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":18,"_pop_updated_since_days":18,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":3.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bilhim/trafficsimulator/master/README.md","_readme_localurl":"bilhim~trafficsimulator~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/bilhim/trafficsimulator/master/requirements.txt"],"_requirements_localurls":["bilhim~trafficsimulator~requirements.txt"]},{"index":337,"category":"util","githuburl":"https://github.com/mrabarnett/mrab-regex","featured":null,"links":null,"description":null,"_repopath":"mrabarnett/mrab-regex","_reponame":"mrab-regex","_stars":214,"_forks":27,"_watches":6,"_language":"C","_homepage":null,"_description":"mrabarnett/mrab-regex","_organization":"mrabarnett","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2020-11-02T00:00:00.000Z","_age_weeks":120,"_stars_per_week":1.78,"_topics":[],"_last_commit_date":"2022-10-31T00:00:00.000Z","_pop_contributor_count":9,"_pop_contributor_logins":["animalize","gpshead@google","mrabarnett","zsol@facebook"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["facebook","google"],"_pop_contributor_orgs_raw":["@facebook ","Google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.25,"_pop_updated_issues_count":7,"_pop_closed_issues_count":3,"_pop_created_since_days":28,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":7.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":26.52,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/mrabarnett/mrab-regex/master/README.rst","_readme_localurl":"mrabarnett~mrab-regex~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/mrabarnett/mrab-regex/master/setup.py"],"_requirements_localurls":["mrabarnett~mrab-regex~setup.py"]},{"index":520,"category":"gis","githuburl":"https://github.com/lydorn/polygonization-by-frame-field-learning","featured":null,"links":null,"description":null,"_repopath":"lydorn/polygonization-by-frame-field-learning","_reponame":"Polygonization-by-Frame-Field-Learning","_stars":214,"_forks":54,"_watches":11,"_language":"Python","_homepage":"","_description":"Polygonization-by-Frame-Field-Learning: This repository contains the code for our fast polygonal building extraction from overhead images pipeline.","_organization":"lydorn","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2020-05-26T00:00:00.000Z","_age_weeks":143,"_stars_per_week":1.5,"_topics":["segmentation","polygonization","remote","sensing","frame","field"],"_last_commit_date":"2022-12-09T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["Lydorn"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":5,"_pop_closed_issues_count":0,"_pop_created_since_days":33,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":5.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":10.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lydorn/polygonization-by-frame-field-learning/master/README.md","_readme_localurl":"lydorn~polygonization-by-frame-field-learning~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lydorn/polygonization-by-frame-field-learning/master/requirements.txt","https://raw.githubusercontent.com/lydorn/polygonization-by-frame-field-learning/master/setup.py"],"_requirements_localurls":["lydorn~polygonization-by-frame-field-learning~requirements.txt","lydorn~polygonization-by-frame-field-learning~setup.py"]},{"index":467,"category":"math","githuburl":"https://github.com/lukaszahradnik/pyneuralogic","featured":null,"links":null,"description":null,"_repopath":"lukaszahradnik/pyneuralogic","_reponame":"PyNeuraLogic","_stars":214,"_forks":17,"_watches":5,"_language":"Python","_homepage":"https://pyneuralogic.readthedocs.io/","_description":"PyNeuraLogic lets you use Python to create Differentiable Logic Programs","_organization":"lukaszahradnik","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-12-06T00:00:00.000Z","_age_weeks":115,"_stars_per_week":1.85,"_topics":["machine-learning","deep-learning","graph-neural-networks","relational-learning","python","geometric-deep-learning","pytorch","logic-programming","differentiable-programming"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["GustikS@czechtechnicaluniversity","LukasZahradnik","joaquincabezas@adevinta"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["adevinta","czechtechnicaluniversity"],"_pop_contributor_orgs_raw":["Adevinta","Czech Technical University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.06,"_pop_updated_issues_count":4,"_pop_closed_issues_count":4,"_pop_created_since_days":27,"_pop_updated_since_days":0,"_pop_recent_releases_count":18,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":18,"_pop_issue_count":4.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":32.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/README.md","_readme_localurl":"lukaszahradnik~pyneuralogic~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/requirements.txt","https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/setup.py","https://raw.githubusercontent.com/lukaszahradnik/pyneuralogic/master/pyproject.toml"],"_requirements_localurls":["lukaszahradnik~pyneuralogic~requirements.txt","lukaszahradnik~pyneuralogic~setup.py","lukaszahradnik~pyneuralogic~pyproject.toml"]},{"index":981,"category":"util","githuburl":"https://github.com/google/pyglove","featured":1.0,"links":null,"description":null,"_repopath":"google/pyglove","_reponame":"pyglove","_stars":212,"_forks":8,"_watches":6,"_language":"Python","_homepage":"","_description":"pyglove: Manipulating Python Programs","_organization":"google","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-05-12T00:00:00.000Z","_age_weeks":40,"_stars_per_week":5.19,"_topics":["automl","evolution","machine-learning","meta-learning","meta-programming","symbolic-programming","manipulation","python"],"_last_commit_date":"2023-02-08T00:00:00.000Z","_pop_contributor_count":5,"_pop_contributor_logins":["D-X-Y@google","daiyip","rchen152","sinopalnikov","xingyousong@googlebrain"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","googlebrain"],"_pop_contributor_orgs_raw":["Google","Google Brain"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.21,"_pop_updated_issues_count":29,"_pop_closed_issues_count":27,"_pop_created_since_days":9,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":29.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":26.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/pyglove/master/README.md","_readme_localurl":"google~pyglove~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/pyglove/master/setup.py"],"_requirements_localurls":["google~pyglove~setup.py"]},{"index":819,"category":"time-series","githuburl":"https://github.com/salesforce/deeptime","featured":null,"links":null,"description":null,"_repopath":"salesforce/deeptime","_reponame":"DeepTime","_stars":207,"_forks":32,"_watches":7,"_language":"Python","_homepage":"","_description":"PyTorch code for DeepTime: Deep Time-Index Meta-Learning for Non-Stationary Time-Series Forecasting","_organization":"salesforce","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-06-27T00:00:00.000Z","_age_weeks":34,"_stars_per_week":6.04,"_topics":["deep-learning","forecasting","meta-learning","time-series","time-series-forecasting","time-series-regression","implicit-neural-representation"],"_last_commit_date":"2022-11-03T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["dependabot[bot]","gorold"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.21,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":8,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":5.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":9.74,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/salesforce/deeptime/master/README.md","_readme_localurl":"salesforce~deeptime~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/salesforce/deeptime/master/requirements.txt"],"_requirements_localurls":["salesforce~deeptime~requirements.txt"]},{"index":243,"category":"ml","githuburl":"https://github.com/carla-recourse/carla","featured":null,"links":null,"description":null,"_repopath":"carla-recourse/carla","_reponame":"CARLA","_stars":206,"_forks":48,"_watches":5,"_language":"Python","_homepage":"","_description":"CARLA: A Python Library to Benchmark Algorithmic Recourse and Counterfactual Explanation Algorithms","_organization":"carla-recourse","_updated_at":"2023-02-08T00:00:00.000Z","_created_at":"2020-12-09T00:00:00.000Z","_age_weeks":115,"_stars_per_week":1.79,"_topics":["python","machine-learning","artificial-intelligence","explainable-ai","explainable-ml","explainability","counterfactual-explanations","counterfactuals","counterfactual","recourse","benchmark","benchmarking","tensorflow","tensorflow2","pytorch"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["JohanvandenHeuvel","Philoso-Fish","Voulgaris-Sot","ah-ansari","aredelmeier","indyfree@bezerocarbon"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bezerocarbon"],"_pop_contributor_orgs_raw":["@BeZeroCarbon "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.67,"_pop_updated_issues_count":8,"_pop_closed_issues_count":5,"_pop_created_since_days":27,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":8.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":20.95,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/carla-recourse/carla/master/README.md","_readme_localurl":"carla-recourse~carla~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/carla-recourse/carla/master/setup.py"],"_requirements_localurls":["carla-recourse~carla~setup.py"]},{"index":733,"category":"ml","githuburl":"https://github.com/autonlab/auton-survival","featured":null,"links":null,"description":null,"_repopath":"autonlab/auton-survival","_reponame":"auton-survival","_stars":206,"_forks":51,"_watches":7,"_language":"Python","_homepage":"http://autonlab.github.io/auton-survival","_description":"auton-survival: Auton Survival - an open source package for Regression, Counterfactual Estimation, Evaluation and Phenotyping with Censored Time-to-Events ","_organization":"autonlab","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-04-01T00:00:00.000Z","_age_weeks":151,"_stars_per_week":1.36,"_topics":["survival-analysis","reliability-analysis","python","data-science","deep-learning","machine-learning","time-to-event","counterfactual-inference","regression","causal-inference","graphical-models"],"_last_commit_date":"2022-11-05T00:00:00.000Z","_pop_contributor_count":10,"_pop_contributor_logins":["Jeanselme@universityofcambridge","PotosnakW","chiragnagpal@carnegiemellonuniversity","chufangao@carnegiemellonuniversity","haivanle","kishanmaharaj@indianinstituteoftechnologybombay","shikhareddy"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["carnegiemellonuniversity","indianinstituteoftechnologybombay","universityofcambridge"],"_pop_contributor_orgs_raw":["Carnegie Mellon University","Indian Institute Of Technology Bombay ","University of Cambridge"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.23,"_pop_updated_issues_count":4,"_pop_closed_issues_count":3,"_pop_created_since_days":35,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.8,"_pop_dependents_count":0,"_pop_score":26.7,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/autonlab/auton-survival/master/README.md","_readme_localurl":"autonlab~auton-survival~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/autonlab/auton-survival/master/requirements.txt"],"_requirements_localurls":["autonlab~auton-survival~requirements.txt"]},{"index":240,"category":"sim","githuburl":"https://github.com/nv-tlabs/gamegan_code","featured":null,"links":null,"description":null,"_repopath":"nv-tlabs/gamegan_code","_reponame":"GameGAN_code","_stars":205,"_forks":34,"_watches":10,"_language":"Python","_homepage":null,"_description":"GameGAN_code: Learning to Simulate Dynamic Environments with GameGAN (CVPR 2020)","_organization":"nv-tlabs","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-12-11T00:00:00.000Z","_age_weeks":114,"_stars_per_week":1.79,"_topics":[],"_last_commit_date":"2021-11-11T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["daniel-kukiela","seung-kim"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":27,"_pop_updated_since_days":16,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":4.26,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/nv-tlabs/gamegan_code/master/readme.md","_readme_localurl":"nv-tlabs~gamegan_code~readme.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/nv-tlabs/gamegan_code/master/requirements.txt"],"_requirements_localurls":["nv-tlabs~gamegan_code~requirements.txt"]},{"index":859,"category":"jupyter","githuburl":"https://github.com/jupyter/nbformat","featured":null,"links":null,"description":null,"_repopath":"jupyter/nbformat","_reponame":"nbformat","_stars":204,"_forks":143,"_watches":25,"_language":"Python","_homepage":"http://nbformat.readthedocs.io/","_description":"nbformat: Reference implementation of the Jupyter Notebook format","_organization":"jupyter","_updated_at":"2023-02-11T00:00:00.000Z","_created_at":"2015-04-09T00:00:00.000Z","_age_weeks":410,"_stars_per_week":0.5,"_topics":[],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":74,"_pop_contributor_logins":["Carreau@quansight-labs","MSeal@noteable-io","blink1073@mongodb","ellisonbg@amazonwebservices","jdfreder@google","jhamrick","minrk@simularesearchlaboratory","mpacer@netflix","pre-commit-ci[bot]","takluyver"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazonwebservices","google","mongodb","netflix","noteable-io","quansight-labs","simularesearchlaboratory"],"_pop_contributor_orgs_raw":["@Quansight-Labs","@google ","@noteable-io","Amazon Web Services","MongoDB","Netflix","Simula Research Laboratory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.5,"_pop_updated_issues_count":22,"_pop_closed_issues_count":18,"_pop_created_since_days":96,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":22.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":45.8,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jupyter/nbformat/master/README.md","_readme_localurl":"jupyter~nbformat~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jupyter/nbformat/master/pyproject.toml"],"_requirements_localurls":["jupyter~nbformat~pyproject.toml"]},{"index":456,"category":"gis","githuburl":"https://github.com/graal-research/deepparse","featured":null,"links":null,"description":null,"_repopath":"graal-research/deepparse","_reponame":"deepparse","_stars":203,"_forks":23,"_watches":4,"_language":"Python","_homepage":"https://deepparse.org/","_description":"Deepparse is a state-of-the-art library for parsing multinational street addresses using deep learning","_organization":"graal-research","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2020-07-01T00:00:00.000Z","_age_weeks":138,"_stars_per_week":1.47,"_topics":["machine-learning","python","addresses-parsing"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["GameSetAndMatch@baseline","MAYAS3","davebulaval@baseline.qu\u00e9bec","dependabot[bot]","freud14","yogeshchandrasekharuni"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["baseline","baseline.qu\u00e9bec"],"_pop_contributor_orgs_raw":["Baseline.qu\u00e9bec","baseline"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.35,"_pop_updated_issues_count":14,"_pop_closed_issues_count":14,"_pop_created_since_days":32,"_pop_updated_since_days":0,"_pop_recent_releases_count":15,"_pop_recent_releases_estimated_tags":17,"_pop_recent_releases_adjusted_count":15,"_pop_issue_count":14.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.1,"_pop_dependents_count":0,"_pop_score":30.94,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/graal-research/deepparse/master/README.md","_readme_localurl":"graal-research~deepparse~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/graal-research/deepparse/master/requirements.txt","https://raw.githubusercontent.com/graal-research/deepparse/master/setup.py","https://raw.githubusercontent.com/graal-research/deepparse/master/pyproject.toml"],"_requirements_localurls":["graal-research~deepparse~requirements.txt","graal-research~deepparse~setup.py","graal-research~deepparse~pyproject.toml"]},{"index":836,"category":"gis","githuburl":"https://github.com/r-barnes/richdem","featured":null,"links":null,"description":null,"_repopath":"r-barnes/richdem","_reponame":"richdem","_stars":199,"_forks":59,"_watches":14,"_language":"C++","_homepage":"","_description":"richdem: High-performance Terrain and Hydrology Analysis ","_organization":"r-barnes","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2013-01-06T00:00:00.000Z","_age_weeks":528,"_stars_per_week":0.38,"_topics":["digital-elevation-model","geosciences","geospatial","hydrology","hydrologic-modeling","big-data"],"_last_commit_date":"2022-11-18T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["benbovy","mcflugen@universityofcolorado","r-barnes","tbartholomaus@universityofidaho"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["universityofcolorado","universityofidaho"],"_pop_contributor_orgs_raw":["University of Colorado","University of Idaho"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.56,"_pop_updated_issues_count":8,"_pop_closed_issues_count":1,"_pop_created_since_days":123,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":8.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":23.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/r-barnes/richdem/master/README.md","_readme_localurl":"r-barnes~richdem~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/r-barnes/richdem/master/requirements.txt"],"_requirements_localurls":["r-barnes~richdem~requirements.txt"]},{"index":207,"category":"util","githuburl":"https://github.com/aws/aws-lambda-python-runtime-interface-client","featured":null,"links":null,"description":null,"_repopath":"aws/aws-lambda-python-runtime-interface-client","_reponame":"aws-lambda-python-runtime-interface-client","_stars":195,"_forks":48,"_watches":15,"_language":"Python","_homepage":null,"_description":"aws/aws-lambda-python-runtime-interface-client","_organization":"aws","_updated_at":"2023-02-10T00:00:00.000Z","_created_at":"2020-09-02T00:00:00.000Z","_age_weeks":129,"_stars_per_week":1.51,"_topics":[],"_last_commit_date":"2023-02-16T00:00:00.000Z","_pop_contributor_count":23,"_pop_contributor_logins":["SukanyaHanumanthu@356","aboelhamd@aws","adamchainz@django,djangolondon","amazon-auto@amazon","carlzogh@amazonwebservices","keshayad@amazonwebservices","preearor","smirnoal","stefanbotez","zsombor-balogh"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["356","amazon","amazonwebservices","aws","django,djangolondon"],"_pop_contributor_orgs_raw":["356","@aws","@django, @djangolondon","Amazon","Amazon Web Services"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":8,"_pop_closed_issues_count":2,"_pop_created_since_days":30,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":8.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":32.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aws/aws-lambda-python-runtime-interface-client/master/README.md","_readme_localurl":"aws~aws-lambda-python-runtime-interface-client~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aws/aws-lambda-python-runtime-interface-client/master/setup.py"],"_requirements_localurls":["aws~aws-lambda-python-runtime-interface-client~setup.py"]},{"index":954,"category":"diffusion","githuburl":"https://github.com/lunarring/latentblending","featured":null,"links":null,"description":null,"_repopath":"lunarring/latentblending","_reponame":"latentblending","_stars":194,"_forks":18,"_watches":11,"_language":"Python","_homepage":"","_description":"latentblending: Create butter-smooth transitions between prompts, powered by stable diffusion","_organization":"lunarring","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-11-19T00:00:00.000Z","_age_weeks":13,"_stars_per_week":14.29,"_topics":["animation","diffusion","stable-diffusion"],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":9,"_pop_contributor_logins":["brianfitzgerald","jjnnss","lunarring","maxlund"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.12,"_pop_updated_issues_count":8,"_pop_closed_issues_count":7,"_pop_created_since_days":3,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":8.0,"_pop_comment_count":27.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.4,"_pop_dependents_count":0,"_pop_score":21.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lunarring/latentblending/master/README.md","_readme_localurl":"lunarring~latentblending~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lunarring/latentblending/master/requirements.txt","https://raw.githubusercontent.com/lunarring/latentblending/master/setup.py"],"_requirements_localurls":["lunarring~latentblending~requirements.txt","lunarring~latentblending~setup.py"]},{"index":899,"category":"gis","githuburl":"https://github.com/kuanb/peartree","featured":null,"links":null,"description":null,"_repopath":"kuanb/peartree","_reponame":"peartree","_stars":192,"_forks":17,"_watches":13,"_language":"Python","_homepage":"","_description":"peartree: A library for converting transit data into a directed graph for sketch network analysis.","_organization":"kuanb","_updated_at":"2023-02-16T00:00:00.000Z","_created_at":"2017-11-12T00:00:00.000Z","_age_weeks":275,"_stars_per_week":0.7,"_topics":["network-analysis","transit","graphs","gtfs","spatial-analysis","gis","modeling"],"_last_commit_date":"2021-01-18T00:00:00.000Z","_pop_contributor_count":5,"_pop_contributor_logins":["bryanculbertson@eradb","d3netxer","kuanb@mapbox","pitrz"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["eradb","mapbox"],"_pop_contributor_orgs_raw":["@eradb ","@mapbox"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":64,"_pop_updated_since_days":25,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":15.82,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/kuanb/peartree/master/README.rst","_readme_localurl":"kuanb~peartree~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kuanb/peartree/master/requirements.txt","https://raw.githubusercontent.com/kuanb/peartree/master/setup.py"],"_requirements_localurls":["kuanb~peartree~requirements.txt","kuanb~peartree~setup.py"]},{"index":446,"category":"gis","githuburl":"https://github.com/pysal/spopt","featured":null,"links":null,"description":null,"_repopath":"pysal/spopt","_reponame":"spopt","_stars":187,"_forks":34,"_watches":13,"_language":"Python","_homepage":"https://pysal.org/spopt/","_description":"spopt: Spatial Optimization","_organization":"pysal","_updated_at":"2023-02-13T00:00:00.000Z","_created_at":"2019-03-01T00:00:00.000Z","_age_weeks":207,"_stars_per_week":0.9,"_topics":["spatial-optimization","regionalization","facility-location","routing","transportation","spatial-analysis","location-allocation","location-modeling","resource-planning","python"],"_last_commit_date":"2023-02-13T00:00:00.000Z","_pop_contributor_count":17,"_pop_contributor_logins":["TimMcCauley","dependabot[bot]","erinrolson","gegen07","jGaboardi@ornl","knaaptime@center-for-open-geographical-science","pre-commit-ci[bot]","rwei5","sjsrey@centerforopengeographicalscience","xf37@universityofoklahoma"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["center-for-open-geographical-science","centerforopengeographicalscience","ornl","universityofoklahoma"],"_pop_contributor_orgs_raw":["@center-for-open-geographical-science","Center for Open Geographical Science","ORNL","University of Oklahoma"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.63,"_pop_updated_issues_count":57,"_pop_closed_issues_count":43,"_pop_created_since_days":48,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":57.0,"_pop_comment_count":79.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.4,"_pop_dependents_count":0,"_pop_score":41.49,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pysal/spopt/master/README.md","_readme_localurl":"pysal~spopt~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/pysal/spopt/master/requirements.txt","https://raw.githubusercontent.com/pysal/spopt/master/setup.py"],"_requirements_localurls":["pysal~spopt~requirements.txt","pysal~spopt~setup.py"]},{"index":339,"category":"perf","githuburl":"https://github.com/tlkh/tf-metal-experiments","featured":null,"links":null,"description":null,"_repopath":"tlkh/tf-metal-experiments","_reponame":"tf-metal-experiments","_stars":187,"_forks":19,"_watches":11,"_language":"Jupyter Notebook","_homepage":"","_description":"tf-metal-experiments: TensorFlow Metal Backend on Apple Silicon Experiments (just for fun)","_organization":"tlkh","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2021-10-26T00:00:00.000Z","_age_weeks":69,"_stars_per_week":2.7,"_topics":["gpu","deep-learning","tensorflow","m1","m1-max","benchmark","bert"],"_last_commit_date":"2021-11-15T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["mend-bolt-for-github[bot]","tlkh@singaporeuniversityoftechnologyanddesign"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["singaporeuniversityoftechnologyanddesign"],"_pop_contributor_orgs_raw":["Singapore University of Technology and Design"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":16,"_pop_updated_since_days":15,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":7.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/tlkh/tf-metal-experiments/master/README.md","_readme_localurl":"tlkh~tf-metal-experiments~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":266,"category":"nlp","githuburl":"https://github.com/allenai/s2orc-doc2json","featured":null,"links":null,"description":null,"_repopath":"allenai/s2orc-doc2json","_reponame":"s2orc-doc2json","_stars":181,"_forks":34,"_watches":6,"_language":"Python","_homepage":"","_description":"s2orc-doc2json: Parsers for scientific papers (PDF2JSON, TEX2JSON, JATS2JSON)","_organization":"allenai","_updated_at":"2023-02-06T00:00:00.000Z","_created_at":"2020-12-10T00:00:00.000Z","_age_weeks":114,"_stars_per_week":1.58,"_topics":[],"_last_commit_date":"2022-12-09T00:00:00.000Z","_pop_contributor_count":9,"_pop_contributor_logins":["Kabongosalomon@universityofhannover,l3sandtib","TrellixVulnTeam","a3nm","castedo@castedo.com","gabrielmbmb","kyleclo@allenai","lucylw","nayha-auradkar","tsogi"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["allenai","castedo.com","universityofhannover,l3sandtib"],"_pop_contributor_orgs_raw":["@allenai ","University of Hannover, L3S and TIB","castedo.com"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":3,"_pop_closed_issues_count":2,"_pop_created_since_days":27,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.3,"_pop_dependents_count":0,"_pop_score":21.66,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/README.md","_readme_localurl":"allenai~s2orc-doc2json~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/requirements.txt","https://raw.githubusercontent.com/allenai/s2orc-doc2json/master/setup.py"],"_requirements_localurls":["allenai~s2orc-doc2json~requirements.txt","allenai~s2orc-doc2json~setup.py"]},{"index":585,"category":"gis","githuburl":"https://github.com/spatialucr/geosnap","featured":null,"links":null,"description":null,"_repopath":"spatialucr/geosnap","_reponame":"geosnap","_stars":181,"_forks":28,"_watches":17,"_language":"Python","_homepage":"https://spatialucr.github.io/geosnap-guide","_description":"geosnap: The Geospatial Neighborhood Analysis Package","_organization":"spatialucr","_updated_at":"2023-02-14T00:00:00.000Z","_created_at":"2018-09-19T00:00:00.000Z","_age_weeks":231,"_stars_per_week":0.78,"_topics":[],"_last_commit_date":"2023-01-25T00:00:00.000Z","_pop_contributor_count":9,"_pop_contributor_logins":["AnGWar26@mansueto-institute","jGaboardi@ornl","knaaptime@center-for-open-geographical-science","ljwolf@geogbristol","renanxcortes","sjsrey@centerforopengeographicalscience","suhanmappingideas","weikang9009@universityofnorthtexas"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["center-for-open-geographical-science","centerforopengeographicalscience","geogbristol","mansueto-institute","ornl","universityofnorthtexas"],"_pop_contributor_orgs_raw":["@center-for-open-geographical-science","@geogbristol ","@mansueto-institute","Center for Open Geographical Science","ORNL","University of North Texas"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.98,"_pop_updated_issues_count":10,"_pop_closed_issues_count":4,"_pop_created_since_days":54,"_pop_updated_since_days":1,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":10.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":35.5,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/spatialucr/geosnap/master/README.md","_readme_localurl":"spatialucr~geosnap~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/spatialucr/geosnap/master/requirements.txt","https://raw.githubusercontent.com/spatialucr/geosnap/master/setup.py"],"_requirements_localurls":["spatialucr~geosnap~requirements.txt","spatialucr~geosnap~setup.py"]},{"index":461,"category":"nlp","githuburl":"https://github.com/yoadtew/zero-shot-image-to-text","featured":null,"links":null,"description":null,"_repopath":"yoadtew/zero-shot-image-to-text","_reponame":"zero-shot-image-to-text","_stars":181,"_forks":26,"_watches":7,"_language":"Python","_homepage":"","_description":"zero-shot-image-to-text: Implementation of Zero-Shot Image-to-Text Generation for Visual-Semantic Arithmetic","_organization":"yoadtew","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2021-11-26T00:00:00.000Z","_age_weeks":64,"_stars_per_week":2.8,"_topics":[],"_last_commit_date":"2022-09-17T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["YoadTew","chenxwh","idansc","itsyoavshalev"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":3,"_pop_closed_issues_count":1,"_pop_created_since_days":15,"_pop_updated_since_days":5,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.38,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/yoadtew/zero-shot-image-to-text/master/README.md","_readme_localurl":"yoadtew~zero-shot-image-to-text~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/yoadtew/zero-shot-image-to-text/master/requirements.txt","https://raw.githubusercontent.com/yoadtew/zero-shot-image-to-text/master/setup.py"],"_requirements_localurls":["yoadtew~zero-shot-image-to-text~requirements.txt","yoadtew~zero-shot-image-to-text~setup.py"]},{"index":731,"category":"gis","githuburl":"https://github.com/bowenc0221/boundary-iou-api","featured":null,"links":null,"description":null,"_repopath":"bowenc0221/boundary-iou-api","_reponame":"boundary-iou-api","_stars":178,"_forks":19,"_watches":8,"_language":"Python","_homepage":"","_description":"boundary-iou-api: Boundary IoU API (Beta version)","_organization":"bowenc0221","_updated_at":"2023-01-12T00:00:00.000Z","_created_at":"2021-03-29T00:00:00.000Z","_age_weeks":99,"_stars_per_week":1.79,"_topics":[],"_last_commit_date":"2021-04-05T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["bowenc0221","ppwwyyxx"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":23,"_pop_updated_since_days":23,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":3.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/bowenc0221/boundary-iou-api/master/README.md","_readme_localurl":"bowenc0221~boundary-iou-api~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/bowenc0221/boundary-iou-api/master/setup.py"],"_requirements_localurls":["bowenc0221~boundary-iou-api~setup.py"]},{"index":33,"category":"gis","githuburl":"https://github.com/jasonrig/address-net","featured":null,"links":null,"description":null,"_repopath":"jasonrig/address-net","_reponame":"address-net","_stars":175,"_forks":73,"_watches":13,"_language":"Python","_homepage":null,"_description":"address-net: A package to structure Australian addresses","_organization":"jasonrig","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2018-12-05T00:00:00.000Z","_age_weeks":220,"_stars_per_week":0.8,"_topics":["rnn","deep-learning","machine-learning","address-parser"],"_last_commit_date":"2020-09-09T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["Stallon-niranjan@deceptiveai","jasonrig@monash-mercpay-baymax"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["deceptiveai","monash-mercpay-baymax"],"_pop_contributor_orgs_raw":["@monash-merc @Pay-Baymax","Deceptive AI"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":51,"_pop_updated_since_days":30,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":10.17,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jasonrig/address-net/master/README.md","_readme_localurl":"jasonrig~address-net~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jasonrig/address-net/master/setup.py"],"_requirements_localurls":["jasonrig~address-net~setup.py"]},{"index":415,"category":"ml-dl","githuburl":"https://github.com/rafiqhasan/auto-tensorflow","featured":null,"links":null,"description":null,"_repopath":"rafiqhasan/auto-tensorflow","_reponame":"auto-tensorflow","_stars":174,"_forks":34,"_watches":13,"_language":"Python","_homepage":"","_description":"auto-tensorflow: Build Low Code Automated Tensorflow explainable models in just 3 lines of code. Library created by: Hasan Rafiq - https://www.linkedin.com/in/sam04/","_organization":"rafiqhasan","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2021-07-05T00:00:00.000Z","_age_weeks":85,"_stars_per_week":2.04,"_topics":["tensorflow","deeplearning","neural-networks","machinelearning","tfx","machine-learning","automl","auto-tensorflow","autotensorflow"],"_last_commit_date":"2022-12-09T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["rafiqhasan@google"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google"],"_pop_contributor_orgs_raw":["Google"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.1,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":20,"_pop_updated_since_days":2,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":12.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rafiqhasan/auto-tensorflow/master/README.md","_readme_localurl":"rafiqhasan~auto-tensorflow~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/rafiqhasan/auto-tensorflow/master/setup.py","https://raw.githubusercontent.com/rafiqhasan/auto-tensorflow/master/pyproject.toml"],"_requirements_localurls":["rafiqhasan~auto-tensorflow~setup.py","rafiqhasan~auto-tensorflow~pyproject.toml"]},{"index":948,"category":"nlp","githuburl":"https://github.com/ibm/transition-amr-parser","featured":null,"links":null,"description":null,"_repopath":"ibm/transition-amr-parser","_reponame":"transition-amr-parser","_stars":173,"_forks":39,"_watches":9,"_language":"Python","_homepage":"","_description":"transition-amr-parser: SoTA Abstract Meaning Representation (AMR) parsing with word-node alignments in Pytorch. Includes checkpoints and other tools such as statistical significance Smatch.","_organization":"ibm","_updated_at":"2023-02-10T00:00:00.000Z","_created_at":"2019-10-08T00:00:00.000Z","_age_weeks":176,"_stars_per_week":0.98,"_topics":["machine-learning","nlp","semantic-parsing","amr","amr-parser","abstract-meaning-representation","amr-parsing","amr-graphs"],"_last_commit_date":"2023-02-01T00:00:00.000Z","_pop_contributor_count":15,"_pop_contributor_logins":["cpendus","gangiswag","jzhou316","kant","kjbarker-work","mrdrozdov","ramon-astudillo@ibm","sadhana01","tahira","ysuklee@github.com/ibm"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["github.com/ibm","ibm"],"_pop_contributor_orgs_raw":["@IBM","github.com/IBM"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":5.83,"_pop_updated_issues_count":9,"_pop_closed_issues_count":6,"_pop_created_since_days":41,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":9.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":32.54,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ibm/transition-amr-parser/master/README.md","_readme_localurl":"ibm~transition-amr-parser~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ibm/transition-amr-parser/master/setup.py"],"_requirements_localurls":["ibm~transition-amr-parser~setup.py"]},{"index":901,"category":"gis","githuburl":"https://github.com/amazon-science/earth-forecasting-transformer","featured":null,"links":null,"description":null,"_repopath":"amazon-science/earth-forecasting-transformer","_reponame":"earth-forecasting-transformer","_stars":171,"_forks":29,"_watches":10,"_language":"Jupyter Notebook","_homepage":"","_description":"earth-forecasting-transformer: Official implementation of Earthformer","_organization":"amazon-science","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2022-09-12T00:00:00.000Z","_age_weeks":23,"_stars_per_week":7.34,"_topics":[],"_last_commit_date":"2023-02-03T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["amazon-auto@amazon","bryanyzhu@amazonai","gaozhihan@hongkonguniversityofscienceandtechnology","giswqs@universityoftennessee","sxjscience@amazonwebservices","vitusbenson"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazon","amazonai","amazonwebservices","hongkonguniversityofscienceandtechnology","universityoftennessee"],"_pop_contributor_orgs_raw":["Amazon","Amazon AI","Amazon Web Services","Hong Kong University of Science and Technology","University of Tennessee"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.77,"_pop_updated_issues_count":15,"_pop_closed_issues_count":13,"_pop_created_since_days":5,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":15.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":23.29,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/amazon-science/earth-forecasting-transformer/master/README.md","_readme_localurl":"amazon-science~earth-forecasting-transformer~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/amazon-science/earth-forecasting-transformer/master/setup.py"],"_requirements_localurls":["amazon-science~earth-forecasting-transformer~setup.py"]},{"index":955,"category":"diffusion","githuburl":"https://github.com/coyote-a/ultimate-upscale-for-automatic1111","featured":null,"links":null,"description":null,"_repopath":"coyote-a/ultimate-upscale-for-automatic1111","_reponame":"ultimate-upscale-for-automatic1111","_stars":170,"_forks":14,"_watches":4,"_language":"Python","_homepage":null,"_description":"coyote-a/ultimate-upscale-for-automatic1111","_organization":"coyote-a","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2023-01-02T00:00:00.000Z","_age_weeks":7,"_stars_per_week":23.33,"_topics":[],"_last_commit_date":"2023-02-07T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["Coyote-A","Danamir","Jopezzia"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.19,"_pop_updated_issues_count":33,"_pop_closed_issues_count":16,"_pop_created_since_days":2,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":33.0,"_pop_comment_count":83.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.5,"_pop_dependents_count":0,"_pop_score":18.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/coyote-a/ultimate-upscale-for-automatic1111/master/README.md","_readme_localurl":"coyote-a~ultimate-upscale-for-automatic1111~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":959,"category":"util","githuburl":"https://github.com/cqcl/tket","featured":null,"links":null,"description":null,"_repopath":"cqcl/tket","_reponame":"tket","_stars":167,"_forks":30,"_watches":14,"_language":"C++","_homepage":"","_description":"tket: Source code for the TKET quantum compiler, Python bindings and utilities","_organization":"cqcl","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2021-09-13T00:00:00.000Z","_age_weeks":75,"_stars_per_week":2.22,"_topics":["quantum-computing","compiler"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":22,"_pop_contributor_logins":["CalMacCQ@quantinuum","Roland-djee","aborgna-q@quantinuum","cqc-alec","cqc-melf","lmondada@cambridgequantumcomputing","sjdilkes","ss2165@quantinuum","willsimmons1465@cambridgequantumcomputing","yao-cqc"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cambridgequantumcomputing","quantinuum"],"_pop_contributor_orgs_raw":["Cambridge Quantum Computing","Quantinuum"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":7.48,"_pop_updated_issues_count":109,"_pop_closed_issues_count":95,"_pop_created_since_days":18,"_pop_updated_since_days":0,"_pop_recent_releases_count":53,"_pop_recent_releases_estimated_tags":57,"_pop_recent_releases_adjusted_count":53,"_pop_issue_count":109.0,"_pop_comment_count":58.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":38.92,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cqcl/tket/master/README.md","_readme_localurl":"cqcl~tket~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":743,"category":"study","githuburl":"https://github.com/koaning/calm-notebooks","featured":null,"links":null,"description":null,"_repopath":"koaning/calm-notebooks","_reponame":"calm-notebooks","_stars":166,"_forks":150,"_watches":7,"_language":"Jupyter Notebook","_homepage":"https://calmcode.io","_description":"calm-notebooks: notebooks that are used at calmcode.io","_organization":"koaning","_updated_at":"2023-02-07T00:00:00.000Z","_created_at":"2020-03-01T00:00:00.000Z","_age_weeks":155,"_stars_per_week":1.07,"_topics":[],"_last_commit_date":"2021-10-21T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["koaning@explosion"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["explosion"],"_pop_contributor_orgs_raw":["@explosion"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":36,"_pop_updated_since_days":16,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":7.22,"_readme_filename":"readme.md","_readme_giturl":"https://raw.githubusercontent.com/koaning/calm-notebooks/master/readme.md","_readme_localurl":"koaning~calm-notebooks~readme.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":890,"category":"graph","githuburl":"https://github.com/h4kor/graph-force","featured":null,"links":null,"description":null,"_repopath":"h4kor/graph-force","_reponame":"graph-force","_stars":163,"_forks":0,"_watches":9,"_language":"Rust","_homepage":"https://pypi.org/project/graph-force/","_description":"graph-force: Python library for embedding large graphs in 2D space, using force-directed layouts.","_organization":"h4kor","_updated_at":"2023-02-16T00:00:00.000Z","_created_at":"2022-11-28T00:00:00.000Z","_age_weeks":12,"_stars_per_week":13.27,"_topics":["force-directed-graphs","graph-algorithms","python","python3"],"_last_commit_date":"2022-11-28T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["H4kor"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.77,"_pop_updated_issues_count":4,"_pop_closed_issues_count":0,"_pop_created_since_days":3,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":4.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":5.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/h4kor/graph-force/master/README.md","_readme_localurl":"h4kor~graph-force~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/h4kor/graph-force/master/requirements.txt","https://raw.githubusercontent.com/h4kor/graph-force/master/pyproject.toml"],"_requirements_localurls":["h4kor~graph-force~requirements.txt","h4kor~graph-force~pyproject.toml"]},{"index":775,"category":"sim","githuburl":"https://github.com/activitysim/activitysim","featured":null,"links":null,"description":null,"_repopath":"activitysim/activitysim","_reponame":"activitysim","_stars":150,"_forks":87,"_watches":42,"_language":"Jupyter Notebook","_homepage":"https://activitysim.github.io","_description":"activitysim: An Open Platform for Activity-Based Travel Modeling","_organization":"activitysim","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2014-06-18T00:00:00.000Z","_age_weeks":453,"_stars_per_week":0.33,"_topics":["python","travel-modeling","data-science","bsd-3-clause","microsimulation","activitysim"],"_last_commit_date":"2023-01-31T00:00:00.000Z","_pop_contributor_count":31,"_pop_contributor_logins":["JoeJimFlood","bstabler@ptvgroup","chesterharvey","dhensle","fscottfoti@populus-aimapcraftlabsoaklandanalytics","jiffyclub@populus-ai","jpn--@cambridgesystematics|georgiatech","mxndrwgrdnr","nick-fournier-rsg@rsg","toliwaga"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cambridgesystematics|georgiatech","populus-ai","populus-aimapcraftlabsoaklandanalytics","ptvgroup","rsg"],"_pop_contributor_orgs_raw":["@populus-ai ","@populus-ai @mapcraftlabs @oaklandanalytics ","Cambridge Systematics | Georgia Tech","PTV Group","RSG Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":14.88,"_pop_updated_issues_count":55,"_pop_closed_issues_count":35,"_pop_created_since_days":106,"_pop_updated_since_days":1,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":55.0,"_pop_comment_count":56.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":44.23,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/activitysim/activitysim/master/README.md","_readme_localurl":"activitysim~activitysim~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/activitysim/activitysim/master/setup.py","https://raw.githubusercontent.com/activitysim/activitysim/master/pyproject.toml"],"_requirements_localurls":["activitysim~activitysim~setup.py","activitysim~activitysim~pyproject.toml"]},{"index":606,"category":"util","githuburl":"https://github.com/pyscript/pyscript-cli","featured":null,"links":null,"description":null,"_repopath":"pyscript/pyscript-cli","_reponame":"pyscript-cli","_stars":146,"_forks":14,"_watches":12,"_language":"Python","_homepage":null,"_description":"pyscript-cli: A CLI for PyScript","_organization":"pyscript","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2022-05-01T00:00:00.000Z","_age_weeks":42,"_stars_per_week":3.44,"_topics":[],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["KennyOliver@sixthformcsstudent","anaconda-renovate-bot","fpliger","mattkram@anaconda","ntoll","ozanturker","pre-commit-ci[bot]","pww217"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anaconda","sixthformcsstudent"],"_pop_contributor_orgs_raw":["Anaconda, Inc.","Sixth Form CS Student"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.58,"_pop_updated_issues_count":34,"_pop_closed_issues_count":26,"_pop_created_since_days":10,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":34.0,"_pop_comment_count":17.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":29.12,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyscript/pyscript-cli/master/README.md","_readme_localurl":"pyscript~pyscript-cli~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyscript/pyscript-cli/master/pyproject.toml"],"_requirements_localurls":["pyscript~pyscript-cli~pyproject.toml"]},{"index":869,"category":"util","githuburl":"https://github.com/hugovk/pypistats","featured":null,"links":null,"description":null,"_repopath":"hugovk/pypistats","_reponame":"pypistats","_stars":145,"_forks":26,"_watches":4,"_language":"Python","_homepage":"https://pypistats.org/api/","_description":"pypistats: Command-line interface to PyPI Stats API to get download stats for Python packages","_organization":"hugovk","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2018-09-22T00:00:00.000Z","_age_weeks":230,"_stars_per_week":0.63,"_topics":["python","python3","pypi","statistics","stats","api","cli","command-line","command-line-tool","downloads","hacktoberfest"],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":12,"_pop_contributor_logins":["CozyDoomer","banesullivan@kitware","cclauss@christianclauss","dependabot-preview[bot]","dependabot[bot]","erayerdin","github-actions[bot]","hugovk@nordsoftware","pre-commit-ci[bot]","renovate[bot]"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["christianclauss","kitware","nordsoftware"],"_pop_contributor_orgs_raw":["@Kitware","Christian Clauss","Nord Software"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.52,"_pop_updated_issues_count":16,"_pop_closed_issues_count":15,"_pop_created_since_days":54,"_pop_updated_since_days":0,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":16.0,"_pop_comment_count":14.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.9,"_pop_dependents_count":0,"_pop_score":34.36,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hugovk/pypistats/master/README.md","_readme_localurl":"hugovk~pypistats~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/hugovk/pypistats/master/requirements.txt","https://raw.githubusercontent.com/hugovk/pypistats/master/pyproject.toml"],"_requirements_localurls":["hugovk~pypistats~requirements.txt","hugovk~pypistats~pyproject.toml"]},{"index":936,"category":"ml","githuburl":"https://github.com/jonasgeiping/breaching","featured":null,"links":null,"description":null,"_repopath":"jonasgeiping/breaching","_reponame":"breaching","_stars":144,"_forks":32,"_watches":3,"_language":"Python","_homepage":"","_description":"Breaching privacy in federated learning scenarios for vision and text","_organization":"jonasgeiping","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2022-02-15T00:00:00.000Z","_age_weeks":53,"_stars_per_week":2.71,"_topics":["security","machine-learning","pytorch","federated-learning","decentralized-learning","privacy-audit"],"_last_commit_date":"2023-02-09T00:00:00.000Z","_pop_contributor_count":17,"_pop_contributor_logins":["JonasGeiping@computerscienceatumd","YuxinWenRick@universityofmaryland","lhfowl"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["computerscienceatumd","universityofmaryland"],"_pop_contributor_orgs_raw":["Computer Science at UMD","University of Maryland"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.88,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":12,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":24.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jonasgeiping/breaching/master/README.md","_readme_localurl":"jonasgeiping~breaching~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jonasgeiping/breaching/master/pyproject.toml"],"_requirements_localurls":["jonasgeiping~breaching~pyproject.toml"]},{"index":231,"category":"template","githuburl":"https://github.com/crmne/cookiecutter-modern-datascience","featured":null,"links":null,"description":null,"_repopath":"crmne/cookiecutter-modern-datascience","_reponame":"cookiecutter-modern-datascience","_stars":142,"_forks":29,"_watches":3,"_language":"Python","_homepage":"","_description":"cookiecutter-modern-datascience: Start a data science project with modern tools","_organization":"crmne","_updated_at":"2023-01-15T00:00:00.000Z","_created_at":"2020-07-06T00:00:00.000Z","_age_weeks":137,"_stars_per_week":1.03,"_topics":["cookiecutter","cookiecutter-template","cookiecutter-data-science","python","datascience"],"_last_commit_date":"2022-06-10T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["crmne@freshflowai","dependabot[bot]"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["freshflowai"],"_pop_contributor_orgs_raw":["@freshflowai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.02,"_pop_updated_issues_count":5,"_pop_closed_issues_count":0,"_pop_created_since_days":32,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":5.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":11.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/crmne/cookiecutter-modern-datascience/master/README.md","_readme_localurl":"crmne~cookiecutter-modern-datascience~README.md","_requirements_filenames":["Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/crmne/cookiecutter-modern-datascience/master/Pipfile"],"_requirements_localurls":["crmne~cookiecutter-modern-datascience~Pipfile"]},{"index":785,"category":"util","githuburl":"https://github.com/brokenloop/jsontopydantic","featured":null,"links":null,"description":null,"_repopath":"brokenloop/jsontopydantic","_reponame":"jsontopydantic","_stars":140,"_forks":8,"_watches":3,"_language":"TypeScript","_homepage":"https://jsontopydantic.com","_description":"jsontopydantic: Web tool for generating Pydantic models from JSON objects","_organization":"brokenloop","_updated_at":"2023-02-04T00:00:00.000Z","_created_at":"2020-11-28T00:00:00.000Z","_age_weeks":116,"_stars_per_week":1.2,"_topics":[],"_last_commit_date":"2022-05-13T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["brokenloop","matthieudesprez"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.06,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":27,"_pop_updated_since_days":9,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":6.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/brokenloop/jsontopydantic/master/README.md","_readme_localurl":"brokenloop~jsontopydantic~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":466,"category":"nlp","githuburl":"https://github.com/infinitylogesh/mutate","featured":null,"links":null,"description":null,"_repopath":"infinitylogesh/mutate","_reponame":"mutate","_stars":140,"_forks":11,"_watches":3,"_language":"Python","_homepage":"","_description":"mutate: A library to synthesize text datasets using Large Language Models (LLM)","_organization":"infinitylogesh","_updated_at":"2023-02-16T00:00:00.000Z","_created_at":"2021-12-29T00:00:00.000Z","_age_weeks":60,"_stars_per_week":2.33,"_topics":["nlp-library","text-generation","language-model","data-augmentation","data-labeling"],"_last_commit_date":"2023-01-17T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["davidberenstein1957@argilla-io","infinitylogesh"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["argilla-io"],"_pop_contributor_orgs_raw":["@argilla-io "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.23,"_pop_updated_issues_count":3,"_pop_closed_issues_count":3,"_pop_created_since_days":14,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":18.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/infinitylogesh/mutate/master/README.md","_readme_localurl":"infinitylogesh~mutate~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/infinitylogesh/mutate/master/requirements.txt","https://raw.githubusercontent.com/infinitylogesh/mutate/master/setup.py","https://raw.githubusercontent.com/infinitylogesh/mutate/master/pyproject.toml"],"_requirements_localurls":["infinitylogesh~mutate~requirements.txt","infinitylogesh~mutate~setup.py","infinitylogesh~mutate~pyproject.toml"]},{"index":774,"category":"sim","githuburl":"https://github.com/openfisca/openfisca-core","featured":null,"links":null,"description":null,"_repopath":"openfisca/openfisca-core","_reponame":"openfisca-core","_stars":139,"_forks":70,"_watches":24,"_language":"Python","_homepage":"https://openfisca.org","_description":"openfisca-core: OpenFisca core engine. See other repositories for countries-specific code & data.","_organization":"openfisca","_updated_at":"2023-02-08T00:00:00.000Z","_created_at":"2013-12-29T00:00:00.000Z","_age_weeks":477,"_stars_per_week":0.29,"_topics":["legislation-as-code","rules-as-code","better-rules","microsimulation"],"_last_commit_date":"2023-01-24T00:00:00.000Z","_pop_contributor_count":58,"_pop_contributor_logins":["Anna-Livia","HAEKADI@codeworks","MattiSG","Morendil@codeworksfrance","benjello","clems","eraviart","fpagnoux","maukoquiroga","sandcha"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["codeworks","codeworksfrance"],"_pop_contributor_orgs_raw":["@CodeWorksFrance","CodeWorks"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":3.0,"_pop_updated_issues_count":52,"_pop_closed_issues_count":31,"_pop_created_since_days":111,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":42,"_pop_recent_releases_adjusted_count":42,"_pop_issue_count":52.0,"_pop_comment_count":69.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.3,"_pop_dependents_count":0,"_pop_score":43.44,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/openfisca/openfisca-core/master/README.md","_readme_localurl":"openfisca~openfisca-core~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/openfisca/openfisca-core/master/setup.py"],"_requirements_localurls":["openfisca~openfisca-core~setup.py"]},{"index":564,"category":"gis","githuburl":"https://github.com/geopandas/pyogrio","featured":null,"links":null,"description":null,"_repopath":"geopandas/pyogrio","_reponame":"pyogrio","_stars":139,"_forks":10,"_watches":9,"_language":"Python","_homepage":"https://pyogrio.readthedocs.io","_description":"pyogrio: Vectorized vector I/O using OGR","_organization":"geopandas","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2020-03-27T00:00:00.000Z","_age_weeks":151,"_stars_per_week":0.92,"_topics":[],"_last_commit_date":"2023-02-08T00:00:00.000Z","_pop_contributor_count":9,"_pop_contributor_logins":["EwoutH","TheBiggerGuy","brendan-ward@astutespruce","dependabot[bot]","jorisvandenbossche","martinfleis","theroggy","tqa236@descartesunderwriting","weiji14@developmentseed"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["astutespruce","descartesunderwriting","developmentseed"],"_pop_contributor_orgs_raw":["@developmentseed","Astute Spruce, LLC","Descartes Underwriting"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.08,"_pop_updated_issues_count":54,"_pop_closed_issues_count":41,"_pop_created_since_days":35,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":54.0,"_pop_comment_count":83.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.5,"_pop_dependents_count":0,"_pop_score":36.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/geopandas/pyogrio/master/README.md","_readme_localurl":"geopandas~pyogrio~README.md","_requirements_filenames":["setup.py","pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/geopandas/pyogrio/master/setup.py","https://raw.githubusercontent.com/geopandas/pyogrio/master/pyproject.toml","https://raw.githubusercontent.com/geopandas/pyogrio/master/Pipfile"],"_requirements_localurls":["geopandas~pyogrio~setup.py","geopandas~pyogrio~pyproject.toml","geopandas~pyogrio~Pipfile"]},{"index":555,"category":"ml","githuburl":"https://github.com/nicolas-chaulet/torch-points3d","featured":null,"links":null,"description":null,"_repopath":"nicolas-chaulet/torch-points3d","_reponame":"torch-points3d","_stars":133,"_forks":32,"_watches":0,"_language":null,"_homepage":"https://torch-points3d.readthedocs.io/en/latest/","_description":"torch-points3d: Pytorch framework for doing deep learning on point clouds.","_organization":"nicolas-chaulet","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2022-01-09T00:00:00.000Z","_age_weeks":58,"_stars_per_week":2.28,"_topics":[],"_last_commit_date":"2021-12-10T00:00:00.000Z","_pop_contributor_count":29,"_pop_contributor_logins":["CCInc@universityoftexasatdallas","daili650","ggrzeczkowicz","humanpose1","liubigli","loicland@strudel/ign","nicolas-chaulet@canoapbc","tchaton@lightning.ai|pytorchlightning","tristanheywood","zeliu98@microsoftresearchasia"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["canoapbc","lightning.ai|pytorchlightning","microsoftresearchasia","strudel/ign","universityoftexasatdallas"],"_pop_contributor_orgs_raw":["@CanoaPBC","Lightning.ai | Pytorch Lightning","Microsoft Research Asia","STRUDEL/ IGN","University of Texas at Dallas"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":14,"_pop_updated_since_days":15,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":22.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nicolas-chaulet/torch-points3d/master/README.md","_readme_localurl":"nicolas-chaulet~torch-points3d~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/nicolas-chaulet/torch-points3d/master/requirements.txt","https://raw.githubusercontent.com/nicolas-chaulet/torch-points3d/master/pyproject.toml"],"_requirements_localurls":["nicolas-chaulet~torch-points3d~requirements.txt","nicolas-chaulet~torch-points3d~pyproject.toml"]},{"index":147,"category":"graph","githuburl":"https://github.com/guyallard/markov_clustering","featured":null,"links":null,"description":null,"_repopath":"guyallard/markov_clustering","_reponame":"markov_clustering","_stars":133,"_forks":34,"_watches":9,"_language":"Python","_homepage":null,"_description":"markov_clustering: markov clustering in python","_organization":"guyallard","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2017-09-27T00:00:00.000Z","_age_weeks":282,"_stars_per_week":0.47,"_topics":["markov-clustering","clustering","python","networks"],"_last_commit_date":"2018-12-11T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["GuyAllard","jonahar"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":66,"_pop_updated_since_days":51,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":7.87,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/guyallard/markov_clustering/master/README.md","_readme_localurl":"guyallard~markov_clustering~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/guyallard/markov_clustering/master/requirements.txt","https://raw.githubusercontent.com/guyallard/markov_clustering/master/setup.py"],"_requirements_localurls":["guyallard~markov_clustering~requirements.txt","guyallard~markov_clustering~setup.py"]},{"index":316,"category":"util","githuburl":"https://github.com/irmen/pyminiaudio","featured":null,"links":null,"description":null,"_repopath":"irmen/pyminiaudio","_reponame":"pyminiaudio","_stars":128,"_forks":16,"_watches":3,"_language":"C","_homepage":"","_description":"pyminiaudio: python interface to the miniaudio audio playback, recording, decoding and conversion library","_organization":"irmen","_updated_at":"2023-02-14T00:00:00.000Z","_created_at":"2019-06-30T00:00:00.000Z","_age_weeks":190,"_stars_per_week":0.67,"_topics":[],"_last_commit_date":"2023-02-09T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["cameronmaske@closedlooplabs","irmen","martinosspa","shauneccles"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["closedlooplabs"],"_pop_contributor_orgs_raw":["Closed Loop Labs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.4,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":44,"_pop_updated_since_days":0,"_pop_recent_releases_count":6,"_pop_recent_releases_estimated_tags":9,"_pop_recent_releases_adjusted_count":6,"_pop_issue_count":4.0,"_pop_comment_count":9.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":27.76,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/irmen/pyminiaudio/master/README.md","_readme_localurl":"irmen~pyminiaudio~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/irmen/pyminiaudio/master/setup.py"],"_requirements_localurls":["irmen~pyminiaudio~setup.py"]},{"index":290,"category":"template","githuburl":"https://github.com/eugeneyan/python-collab-template","featured":null,"links":null,"description":null,"_repopath":"eugeneyan/python-collab-template","_reponame":"python-collab-template","_stars":127,"_forks":37,"_watches":4,"_language":"Python","_homepage":"https://eugeneyan.com/writing/setting-up-python-project-for-automation-and-collaboration/","_description":"python-collab-template: \ud83d\udee0 Python project template with unit tests, code coverage, linting, type checking, Makefile wrapper, and GitHub Actions.","_organization":"eugeneyan","_updated_at":"2023-01-24T00:00:00.000Z","_created_at":"2020-06-21T00:00:00.000Z","_age_weeks":139,"_stars_per_week":0.91,"_topics":["python","unit-testing","linting","type-checking","github-actions","makefile","coverage","hacktoberfest"],"_last_commit_date":"2022-07-02T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["eugeneyan@amzn","segunadelowo"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amzn"],"_pop_contributor_orgs_raw":["@amzn"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":32,"_pop_updated_since_days":8,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.69,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/eugeneyan/python-collab-template/master/README.md","_readme_localurl":"eugeneyan~python-collab-template~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":407,"category":"data","githuburl":"https://github.com/google/weather-tools","featured":null,"links":null,"description":null,"_repopath":"google/weather-tools","_reponame":"weather-tools","_stars":125,"_forks":27,"_watches":15,"_language":"Python","_homepage":"https://weather-tools.readthedocs.io/","_description":"weather-tools: Apache Beam pipelines to make weather data accessible and useful.","_organization":"google","_updated_at":"2023-02-14T00:00:00.000Z","_created_at":"2021-11-22T00:00:00.000Z","_age_weeks":65,"_stars_per_week":1.91,"_topics":["python","apache-beam","weather"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":26,"_pop_contributor_logins":["CillianFn","alxmrs","deepgabani8@infocuspinnovationspvt.ltd.","dlowell12","ksic8","mahrsee1997","pbattaglia","pramodg","sgreenberg@google","uhager"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["google","infocuspinnovationspvt.ltd."],"_pop_contributor_orgs_raw":["Google","Infocusp Innovations Pvt. Ltd."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.79,"_pop_updated_issues_count":48,"_pop_closed_issues_count":29,"_pop_created_since_days":15,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":47.0,"_pop_comment_count":25.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":33.0,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/google/weather-tools/master/README.md","_readme_localurl":"google~weather-tools~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/google/weather-tools/master/setup.py"],"_requirements_localurls":["google~weather-tools~setup.py"]},{"index":835,"category":"typing","githuburl":"https://github.com/jellezijlstra/autotyping","featured":null,"links":null,"description":null,"_repopath":"jellezijlstra/autotyping","_reponame":"autotyping","_stars":124,"_forks":9,"_watches":4,"_language":"Python","_homepage":null,"_description":"jellezijlstra/autotyping","_organization":"jellezijlstra","_updated_at":"2023-02-16T00:00:00.000Z","_created_at":"2021-06-25T00:00:00.000Z","_age_weeks":86,"_stars_per_week":1.43,"_topics":[],"_last_commit_date":"2023-02-14T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["DmytroLitvinov@softformance","JelleZijlstra@quora","MarcoGorelli@quansight","hauntsaninja@openai","jakkdl","orsinium@sendcloud","sobolevn"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["openai","quansight","quora","sendcloud","softformance"],"_pop_contributor_orgs_raw":["@OpenAI","@quora ","@sendcloud","@softformance ","Quansight"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.35,"_pop_updated_issues_count":15,"_pop_closed_issues_count":14,"_pop_created_since_days":20,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":15.0,"_pop_comment_count":25.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":32.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jellezijlstra/autotyping/master/README.md","_readme_localurl":"jellezijlstra~autotyping~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/jellezijlstra/autotyping/master/setup.py","https://raw.githubusercontent.com/jellezijlstra/autotyping/master/pyproject.toml"],"_requirements_localurls":["jellezijlstra~autotyping~setup.py","jellezijlstra~autotyping~pyproject.toml"]},{"index":305,"category":"util","githuburl":"https://github.com/xrudelis/pytrait","featured":null,"links":null,"description":null,"_repopath":"xrudelis/pytrait","_reponame":"pytrait","_stars":123,"_forks":3,"_watches":3,"_language":"Python","_homepage":null,"_description":"pytrait: Traits for Python3","_organization":"xrudelis","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2021-11-21T00:00:00.000Z","_age_weeks":65,"_stars_per_week":1.88,"_topics":[],"_last_commit_date":"2021-11-27T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["sobolevn","xrudelis"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":15,"_pop_updated_since_days":15,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":3.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/xrudelis/pytrait/master/README.md","_readme_localurl":"xrudelis~pytrait~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/xrudelis/pytrait/master/setup.py"],"_requirements_localurls":["xrudelis~pytrait~setup.py"]},{"index":571,"category":"gis","githuburl":"https://github.com/developmentseed/geojson-pydantic","featured":null,"links":null,"description":null,"_repopath":"developmentseed/geojson-pydantic","_reponame":"geojson-pydantic","_stars":122,"_forks":28,"_watches":11,"_language":"Python","_homepage":null,"_description":"geojson-pydantic: Pydantic data models for the GeoJSON spec","_organization":"developmentseed","_updated_at":"2023-02-21T00:00:00.000Z","_created_at":"2020-05-21T00:00:00.000Z","_age_weeks":143,"_stars_per_week":0.85,"_topics":["geojson","pydantic","geojson-spec"],"_last_commit_date":"2023-02-10T00:00:00.000Z","_pop_contributor_count":19,"_pop_contributor_logins":["dorianturba","drewbo@cloud-gov(work)+personalprojects;","eseglem@bigbear.ai","geospatial-jeff@regrowag","hawkaa@duneanalytics","iwpnd@tiermobility","moradology","regisfbrilhante","vincentsarago@developmentseed","yellowcap"],"_pop_contributor_orgs_len":6,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["bigbear.ai","cloud-gov(work)+personalprojects;","developmentseed","duneanalytics","regrowag","tiermobility"],"_pop_contributor_orgs_raw":["@TierMobility ","@cloud-gov (work) + personal projects; ","@developmentseed ","@duneanalytics","@regrowag","BigBear.ai"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.44,"_pop_updated_issues_count":24,"_pop_closed_issues_count":17,"_pop_created_since_days":34,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":24.0,"_pop_comment_count":53.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":40.42,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/geojson-pydantic/master/README.md","_readme_localurl":"developmentseed~geojson-pydantic~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/developmentseed/geojson-pydantic/master/pyproject.toml"],"_requirements_localurls":["developmentseed~geojson-pydantic~pyproject.toml"]},{"index":583,"category":"web","githuburl":"https://github.com/developmentseed/fastai-serving","featured":null,"links":null,"description":null,"_repopath":"developmentseed/fastai-serving","_reponame":"fastai-serving","_stars":121,"_forks":11,"_watches":8,"_language":"Python","_homepage":"","_description":"fastai-serving: A Docker image for serving fast.ai models, mimicking the API of Tensorflow Serving","_organization":"developmentseed","_updated_at":"2022-04-08T00:00:00.000Z","_created_at":"2019-07-01T00:00:00.000Z","_age_weeks":190,"_stars_per_week":0.64,"_topics":["machine-learning","python","deep-learning","pytorch","docker"],"_last_commit_date":"2020-02-10T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["drewbo@cloud-gov(work)+personalprojects;"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cloud-gov(work)+personalprojects;"],"_pop_contributor_orgs_raw":["@cloud-gov (work) + personal projects; "],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":44,"_pop_updated_since_days":37,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":6.85,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/fastai-serving/master/README.md","_readme_localurl":"developmentseed~fastai-serving~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":973,"category":"data","githuburl":"https://github.com/nickreynke/python-gedcom","featured":null,"links":null,"description":null,"_repopath":"nickreynke/python-gedcom","_reponame":"python-gedcom","_stars":121,"_forks":31,"_watches":16,"_language":"Python","_homepage":"https://nickreynke.github.io/python-gedcom/gedcom/index.html","_description":"python-gedcom: Python module for parsing, analyzing, and manipulating GEDCOM files","_organization":"nickreynke","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2018-01-09T00:00:00.000Z","_age_weeks":267,"_stars_per_week":0.45,"_topics":["python","gedcom","parser","gedcom-parser"],"_last_commit_date":"2021-06-03T00:00:00.000Z","_pop_contributor_count":16,"_pop_contributor_logins":["KeithPetro","damonbrodie","joephayes@telegraphio","jonorthwash","madprime@openhumans","mameen","mtdcr","nickreynke","paulproteus@day:reduct.night:?!","scavone"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["day:reduct.night:?!","openhumans","telegraphio"],"_pop_contributor_orgs_raw":["@OpenHumans ","@telegraphio","Day: Reduct. Night: ?!"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":2,"_pop_closed_issues_count":1,"_pop_created_since_days":62,"_pop_updated_since_days":21,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":20.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/nickreynke/python-gedcom/master/README.md","_readme_localurl":"nickreynke~python-gedcom~README.md","_requirements_filenames":["setup.py","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/nickreynke/python-gedcom/master/setup.py","https://raw.githubusercontent.com/nickreynke/python-gedcom/master/Pipfile"],"_requirements_localurls":["nickreynke~python-gedcom~setup.py","nickreynke~python-gedcom~Pipfile"]},{"index":463,"category":"data","githuburl":"https://github.com/psycoguana/subredditmediadownloader","featured":null,"links":null,"description":null,"_repopath":"psycoguana/subredditmediadownloader","_reponame":"SubredditMediaDownloader","_stars":112,"_forks":8,"_watches":3,"_language":"Python","_homepage":null,"_description":"SubredditMediaDownloader: Simple Python script to download images and videos from public subreddits without using Reddit's API \ud83d\ude0e","_organization":"psycoguana","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2022-02-18T00:00:00.000Z","_age_weeks":52,"_stars_per_week":2.12,"_topics":[],"_last_commit_date":"2023-01-17T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["Psycoguana","coenvlietstra"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":3,"_pop_closed_issues_count":3,"_pop_created_since_days":12,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":12.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":4.0,"_pop_dependents_count":0,"_pop_score":16.91,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/psycoguana/subredditmediadownloader/master/README.md","_readme_localurl":"psycoguana~subredditmediadownloader~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/psycoguana/subredditmediadownloader/master/requirements.txt"],"_requirements_localurls":["psycoguana~subredditmediadownloader~requirements.txt"]},{"index":893,"category":"sim","githuburl":"https://github.com/crowdbotp/socialways","featured":null,"links":null,"description":null,"_repopath":"crowdbotp/socialways","_reponame":"socialways","_stars":111,"_forks":45,"_watches":9,"_language":"Python","_homepage":"","_description":"socialways: Social Ways: Learning Multi-Modal Distributions of Pedestrian Trajectories with GANs (CVPR 2019)","_organization":"crowdbotp","_updated_at":"2023-01-26T00:00:00.000Z","_created_at":"2019-04-23T00:00:00.000Z","_age_weeks":200,"_stars_per_week":0.55,"_topics":["trajectory-prediction","human-trajectory-prediction","gan","social-navigation","social-ways","pedestrian-trajectories","pedestrian","social-gan","social-robots","generative-adversarial-network","trajectory-forecasting","self-driving-car","prediction-model","info-gan","crowd-simulation"],"_last_commit_date":"2020-03-20T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["amiryanj@inriaresearchcenter","franciscovalentecastro","jbhayet@cimat"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cimat","inriaresearchcenter"],"_pop_contributor_orgs_raw":["CIMAT","Inria Research Center"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":47,"_pop_updated_since_days":36,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.86,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/crowdbotp/socialways/master/README.md","_readme_localurl":"crowdbotp~socialways~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":945,"category":"web","githuburl":"https://github.com/rawheel/fastapi-boilerplate","featured":null,"links":null,"description":null,"_repopath":"rawheel/fastapi-boilerplate","_reponame":"fastapi-boilerplate","_stars":108,"_forks":10,"_watches":1,"_language":"Python","_homepage":"","_description":"fastapi-boilerplate: Dockerized FastAPI boiler plate similar to Django code structure with views, serializers(pydantic) and model( Sqlalchemy ORM) with dockerized database(PostgresSQL) and PgAdmin. \ud83d\ude80 ","_organization":"rawheel","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-12-28T00:00:00.000Z","_age_weeks":8,"_stars_per_week":13.5,"_topics":["alembic","boilerplate","docker","fastapi","fastapi-boilerplate","fastapi-sqlalchemy","postgresql","pydantic","python3","docker-compose","sqlalchemy","sqlalchemy-orm","poetry-python","orm"],"_last_commit_date":"2023-01-07T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["rawheel@github","sebastianmarines@clickit:devops&softwaredevelopment"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["clickit:devops&softwaredevelopment","github"],"_pop_contributor_orgs_raw":["ClickIT: DevOps & Software Development","GitHub"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.27,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":2,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":10.58,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/rawheel/fastapi-boilerplate/master/README.md","_readme_localurl":"rawheel~fastapi-boilerplate~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/rawheel/fastapi-boilerplate/master/pyproject.toml"],"_requirements_localurls":["rawheel~fastapi-boilerplate~pyproject.toml"]},{"index":847,"category":"gis","githuburl":"https://github.com/remotesensinglab/raster4ml","featured":null,"links":null,"description":null,"_repopath":"remotesensinglab/raster4ml","_reponame":"raster4ml","_stars":105,"_forks":12,"_watches":4,"_language":"Python","_homepage":"https://raster4ml.readthedocs.io","_description":"raster4ml: A geospatial raster processing library for machine learning","_organization":"remotesensinglab","_updated_at":"2023-02-09T00:00:00.000Z","_created_at":"2022-07-11T00:00:00.000Z","_age_weeks":32,"_stars_per_week":3.25,"_topics":["agriculture-research","data-science","geospatial-data","machine-learning","remote-sensing","vegetation","vegetation-index","python"],"_last_commit_date":"2022-11-01T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["souravbhadra@saintlouisuniversity"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["saintlouisuniversity"],"_pop_contributor_orgs_raw":["Saint Louis University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.96,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":8,"_pop_updated_since_days":4,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.14,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/remotesensinglab/raster4ml/master/README.md","_readme_localurl":"remotesensinglab~raster4ml~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/remotesensinglab/raster4ml/master/requirements.txt","https://raw.githubusercontent.com/remotesensinglab/raster4ml/master/setup.py"],"_requirements_localurls":["remotesensinglab~raster4ml~requirements.txt","remotesensinglab~raster4ml~setup.py"]},{"index":527,"category":"ml","githuburl":"https://github.com/hazyresearch/domino","featured":null,"links":null,"description":null,"_repopath":"hazyresearch/domino","_reponame":"domino","_stars":104,"_forks":16,"_watches":20,"_language":"Python","_homepage":null,"_description":"hazyresearch/domino","_organization":"hazyresearch","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2021-11-29T00:00:00.000Z","_age_weeks":64,"_stars_per_week":1.62,"_topics":[],"_last_commit_date":"2022-08-02T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["seyuboglu"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.08,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":15,"_pop_updated_since_days":7,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hazyresearch/domino/master/README.md","_readme_localurl":"hazyresearch~domino~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/hazyresearch/domino/master/setup.py"],"_requirements_localurls":["hazyresearch~domino~setup.py"]},{"index":533,"category":"gis","githuburl":"https://github.com/gdaosu/lod2buildingmodel","featured":null,"links":null,"description":null,"_repopath":"gdaosu/lod2buildingmodel","_reponame":"LOD2BuildingModel","_stars":102,"_forks":23,"_watches":9,"_language":"Python","_homepage":"","_description":"LOD2BuildingModel: SAT2LoD2: Automated LoD-2 Model Reconstruction from Satellite-derived DSM and Orthophoto","_organization":"gdaosu","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2021-08-30T00:00:00.000Z","_age_weeks":77,"_stars_per_week":1.32,"_topics":[],"_last_commit_date":"2022-07-21T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["Ggs1mida","HeavenswordG@ohiostateuniversity"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ohiostateuniversity"],"_pop_contributor_orgs_raw":["Ohio State University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":18,"_pop_updated_since_days":7,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":12.88,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gdaosu/lod2buildingmodel/master/README.md","_readme_localurl":"gdaosu~lod2buildingmodel~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":667,"category":"gis","githuburl":"https://github.com/zorzi-s/polyworldpretrainednetwork","featured":null,"links":null,"description":null,"_repopath":"zorzi-s/polyworldpretrainednetwork","_reponame":"PolyWorldPretrainedNetwork","_stars":101,"_forks":15,"_watches":7,"_language":"Python","_homepage":null,"_description":"PolyWorldPretrainedNetwork: PolyWorld: Polygonal Building Extraction with Graph Neural Networks in Satellite Images","_organization":"zorzi-s","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2022-03-23T00:00:00.000Z","_age_weeks":48,"_stars_per_week":2.1,"_topics":[],"_last_commit_date":"2022-11-10T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["zorzi-s"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.4,"_pop_updated_issues_count":5,"_pop_closed_issues_count":2,"_pop_created_since_days":11,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":5.0,"_pop_comment_count":11.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.2,"_pop_dependents_count":0,"_pop_score":12.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zorzi-s/polyworldpretrainednetwork/master/README.md","_readme_localurl":"zorzi-s~polyworldpretrainednetwork~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":457,"category":"nlp","githuburl":"https://github.com/coastalcph/lex-glue","featured":null,"links":null,"description":null,"_repopath":"coastalcph/lex-glue","_reponame":"lex-glue","_stars":101,"_forks":24,"_watches":6,"_language":"Python","_homepage":"","_description":"lex-glue: LexGLUE: A Benchmark Dataset for Legal Language Understanding in English","_organization":"coastalcph","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2021-09-27T00:00:00.000Z","_age_weeks":73,"_stars_per_week":1.38,"_topics":["legal","nlp","benchmark","legaltech","lawtech"],"_last_commit_date":"2022-11-04T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["danigoju","iliaschalkidis"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.38,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":17,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":12.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/coastalcph/lex-glue/master/README.md","_readme_localurl":"coastalcph~lex-glue~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/coastalcph/lex-glue/master/requirements.txt"],"_requirements_localurls":["coastalcph~lex-glue~requirements.txt"]},{"index":529,"category":"nlp","githuburl":"https://github.com/hazyresearch/fonduer-tutorials","featured":null,"links":null,"description":null,"_repopath":"hazyresearch/fonduer-tutorials","_reponame":"fonduer-tutorials","_stars":97,"_forks":25,"_watches":18,"_language":"Jupyter Notebook","_homepage":"https://github.com/HazyResearch/fonduer","_description":"fonduer-tutorials: A collection of simple tutorials for using Fonduer","_organization":"hazyresearch","_updated_at":"2023-02-05T00:00:00.000Z","_created_at":"2018-03-23T00:00:00.000Z","_age_weeks":256,"_stars_per_week":0.38,"_topics":[],"_last_commit_date":"2020-05-27T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["HiromuHota@https://snorkel.ai/","j-rausch","lukehsiao@numbersstationai","nicholaschiang@numbersstationai","rehanguha@vodafone","senwu"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["https://snorkel.ai/","numbersstationai","vodafone"],"_pop_contributor_orgs_raw":["@NumbersStationAI","@NumbersStationAI ","@Vodafone","https://snorkel.ai/"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":60,"_pop_updated_since_days":33,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":15.57,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/hazyresearch/fonduer-tutorials/master/README.md","_readme_localurl":"hazyresearch~fonduer-tutorials~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/hazyresearch/fonduer-tutorials/master/requirements.txt"],"_requirements_localurls":["hazyresearch~fonduer-tutorials~requirements.txt"]},{"index":746,"category":"data","githuburl":"https://github.com/ktrueda/parquet-tools","featured":null,"links":null,"description":null,"_repopath":"ktrueda/parquet-tools","_reponame":"parquet-tools","_stars":96,"_forks":12,"_watches":3,"_language":"Python","_homepage":"","_description":"parquet-tools: easy install parquet-tools","_organization":"ktrueda","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2020-05-02T00:00:00.000Z","_age_weeks":146,"_stars_per_week":0.65,"_topics":["parquet","parquet-tools","cli"],"_last_commit_date":"2023-01-18T00:00:00.000Z","_pop_contributor_count":12,"_pop_contributor_logins":["dependabot[bot]","engstrom@discogs","exaspace","fabaff","jdblischak","ktrueda","mrdavidlaing@shopify","omo","sattler@tumi8","sbrandtb@fri-day"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["discogs","fri-day","shopify","tumi8"],"_pop_contributor_orgs_raw":["@FRI-DAY ","@Shopify ","@discogs ","@tumi8"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.19,"_pop_updated_issues_count":7,"_pop_closed_issues_count":5,"_pop_created_since_days":34,"_pop_updated_since_days":1,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":7.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":28.93,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ktrueda/parquet-tools/master/README.md","_readme_localurl":"ktrueda~parquet-tools~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/ktrueda/parquet-tools/master/pyproject.toml"],"_requirements_localurls":["ktrueda~parquet-tools~pyproject.toml"]},{"index":781,"category":"gis","githuburl":"https://github.com/ghislainv/forestatrisk","featured":null,"links":null,"description":null,"_repopath":"ghislainv/forestatrisk","_reponame":"forestatrisk","_stars":95,"_forks":21,"_watches":4,"_language":"Python","_homepage":"https://ecology.ghislainv.fr/forestatrisk","_description":"forestatrisk: :package: :snake: Python package to model and forecast the risk of deforestation","_organization":"ghislainv","_updated_at":"2023-01-31T00:00:00.000Z","_created_at":"2016-12-01T00:00:00.000Z","_age_weeks":324,"_stars_per_week":0.29,"_topics":["python","land-use-change","spatial-modelling","spatial-analysis","forecasting","spatial-autocorrelation","tropical-forests","roads","protected-areas","biodiversity-scenario","ipbes","co2-emissions","ipcc","forest-cover-change","deforestation","deforestation-risk","redd"],"_last_commit_date":"2022-08-23T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["12rambau@faoopenforis","danielskatz@uiuc","ethanwhite@weecology,univofflorida","ghislainv@cirad","kbarnhart","molgor@lancasteruniversity"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cirad","faoopenforis","lancasteruniversity","uiuc","weecology,univofflorida"],"_pop_contributor_orgs_raw":["@weecology, Univ of Florida ","Cirad","FAO @openforis","Lancaster University","UIUC"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.15,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":76,"_pop_updated_since_days":6,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":22.0,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/ghislainv/forestatrisk/master/README.rst","_readme_localurl":"ghislainv~forestatrisk~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ghislainv/forestatrisk/master/requirements.txt","https://raw.githubusercontent.com/ghislainv/forestatrisk/master/setup.py"],"_requirements_localurls":["ghislainv~forestatrisk~requirements.txt","ghislainv~forestatrisk~setup.py"]},{"index":558,"category":"gis","githuburl":"https://github.com/darribas/gds_env","featured":null,"links":null,"description":null,"_repopath":"darribas/gds_env","_reponame":"gds_env","_stars":93,"_forks":36,"_watches":9,"_language":"Jupyter Notebook","_homepage":"https://darribas.org/gds_env","_description":"gds_env: A containerised platform for Geographic Data Science","_organization":"darribas","_updated_at":"2022-11-16T00:00:00.000Z","_created_at":"2016-08-12T00:00:00.000Z","_age_weeks":340,"_stars_per_week":0.27,"_topics":["geographic-data-science","docker","python","r","latex","jupyter-lab"],"_last_commit_date":"2022-12-09T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["actions-user@actions","darribas","fcorowe@universityofliverpool","jreades@ucl","ljwolf@geogbristol","martinfleis","ocefpaf"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["actions","geogbristol","ucl","universityofliverpool"],"_pop_contributor_orgs_raw":["@actions","@geogbristol ","UCL","University of Liverpool"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.79,"_pop_updated_issues_count":4,"_pop_closed_issues_count":1,"_pop_created_since_days":79,"_pop_updated_since_days":2,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":4.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":27.56,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/darribas/gds_env/master/README.md","_readme_localurl":"darribas~gds_env~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":534,"category":"ml-dl","githuburl":"https://github.com/benedekrozemberczki/tigerlily","featured":null,"links":null,"description":null,"_repopath":"benedekrozemberczki/tigerlily","_reponame":"tigerlily","_stars":91,"_forks":9,"_watches":1,"_language":"Jupyter Notebook","_homepage":"","_description":"TigerLily: Finding drug interactions in silico with the Graph.","_organization":"benedekrozemberczki","_updated_at":"2022-12-30T00:00:00.000Z","_created_at":"2022-02-28T00:00:00.000Z","_age_weeks":51,"_stars_per_week":1.77,"_topics":["node","embedding","node-embedding","graph-embedding","ddi","drug-drug-interaction","gradient-boosting","graph","pharmaceuticals","network-science","biology","heterogeneous-graph","knowledge-graph","deep-learning","machine-learning","unsupervised-learning","tigergraph","graph-database","graph-machine-learning"],"_last_commit_date":"2022-12-17T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["benedekrozemberczki@isomorphiclabs"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["isomorphiclabs"],"_pop_contributor_orgs_raw":["@isomorphiclabs"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.98,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":12,"_pop_updated_since_days":2,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":12.01,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/benedekrozemberczki/tigerlily/master/README.md","_readme_localurl":"benedekrozemberczki~tigerlily~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/benedekrozemberczki/tigerlily/master/setup.py","https://raw.githubusercontent.com/benedekrozemberczki/tigerlily/master/pyproject.toml"],"_requirements_localurls":["benedekrozemberczki~tigerlily~setup.py","benedekrozemberczki~tigerlily~pyproject.toml"]},{"index":744,"category":"ml-ops","githuburl":"https://github.com/aiqc/aiqc","featured":null,"links":null,"description":null,"_repopath":"aiqc/aiqc","_reponame":"AIQC","_stars":91,"_forks":20,"_watches":4,"_language":"Jupyter Notebook","_homepage":"","_description":"AIQC: End-to-end deep learning on your desktop or server.","_organization":"aiqc","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2020-12-02T00:00:00.000Z","_age_weeks":116,"_stars_per_week":0.78,"_topics":[],"_last_commit_date":"2022-12-16T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["Bennylave","aiqc@aiqc","amoh-godwin@deuteronomyworks","layne-sadler@aiqc","sahilgupta2105"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aiqc","deuteronomyworks"],"_pop_contributor_orgs_raw":["AIQC","Deuteronomy Works"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":6.9,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":27,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":20.46,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aiqc/aiqc/master/README.md","_readme_localurl":"aiqc~aiqc~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aiqc/aiqc/master/requirements.txt","https://raw.githubusercontent.com/aiqc/aiqc/master/setup.py"],"_requirements_localurls":["aiqc~aiqc~requirements.txt","aiqc~aiqc~setup.py"]},{"index":842,"category":"jupyter","githuburl":"https://github.com/cmudig/autoprofiler","featured":null,"links":null,"description":null,"_repopath":"cmudig/autoprofiler","_reponame":"AutoProfiler","_stars":87,"_forks":4,"_watches":1,"_language":"Svelte","_homepage":"","_description":"AutoProfiler: Automatically profile dataframes in the Jupyter sidebar","_organization":"cmudig","_updated_at":"2023-02-09T00:00:00.000Z","_created_at":"2022-03-24T00:00:00.000Z","_age_weeks":47,"_stars_per_week":1.82,"_topics":["jupyter","pandas","python"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["domoritz@cmu,apple","vaish399","willeppy@cmu","yuqizhang99"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cmu","cmu,apple"],"_pop_contributor_orgs_raw":["CMU","CMU, Apple"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.17,"_pop_updated_issues_count":41,"_pop_closed_issues_count":30,"_pop_created_since_days":11,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":41.0,"_pop_comment_count":19.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.5,"_pop_dependents_count":0,"_pop_score":25.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cmudig/autoprofiler/master/README.md","_readme_localurl":"cmudig~autoprofiler~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/cmudig/autoprofiler/master/requirements.txt","https://raw.githubusercontent.com/cmudig/autoprofiler/master/setup.py","https://raw.githubusercontent.com/cmudig/autoprofiler/master/pyproject.toml"],"_requirements_localurls":["cmudig~autoprofiler~requirements.txt","cmudig~autoprofiler~setup.py","cmudig~autoprofiler~pyproject.toml"]},{"index":485,"category":"gis","githuburl":"https://github.com/scisco/area","featured":null,"links":null,"description":null,"_repopath":"scisco/area","_reponame":"area","_stars":87,"_forks":20,"_watches":3,"_language":"Python","_homepage":null,"_description":"area: Calculate the area inside of any GeoJSON geometry. This is a port of Mapbox's geojson-area for Python","_organization":"scisco","_updated_at":"2022-12-14T00:00:00.000Z","_created_at":"2015-11-25T00:00:00.000Z","_age_weeks":378,"_stars_per_week":0.23,"_topics":[],"_last_commit_date":"2018-10-31T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["lgw4","scisco"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":88,"_pop_updated_since_days":52,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":5.1,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/scisco/area/master/README.rst","_readme_localurl":"scisco~area~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/scisco/area/master/setup.py"],"_requirements_localurls":["scisco~area~setup.py"]},{"index":974,"category":"data","githuburl":"https://github.com/vmiklos/ged2dot","featured":null,"links":null,"description":null,"_repopath":"vmiklos/ged2dot","_reponame":"ged2dot","_stars":87,"_forks":17,"_watches":6,"_language":"Python","_homepage":"https://vmiklos.hu/ged2dot/","_description":"ged2dot: GEDCOM to Graphviz converter","_organization":"vmiklos","_updated_at":"2023-02-12T00:00:00.000Z","_created_at":"2013-11-01T00:00:00.000Z","_age_weeks":485,"_stars_per_week":0.18,"_topics":["gedcom","dot","python","libreoffice"],"_last_commit_date":"2023-02-17T00:00:00.000Z","_pop_contributor_count":9,"_pop_contributor_logins":["ColinChargy","bAndie91","dougstarfish@starfishstorage","drzraf","fetsorn","rgerkin@ozymandianindustries","schuellerf","vmiklos"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ozymandianindustries","starfishstorage"],"_pop_contributor_orgs_raw":["Ozymandian Industries","Starfish Storage"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.83,"_pop_updated_issues_count":14,"_pop_closed_issues_count":14,"_pop_created_since_days":113,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":14.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":30.1,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/vmiklos/ged2dot/master/README.md","_readme_localurl":"vmiklos~ged2dot~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/vmiklos/ged2dot/master/requirements.txt"],"_requirements_localurls":["vmiklos~ged2dot~requirements.txt"]},{"index":562,"category":"gis","githuburl":"https://github.com/geopandas/xyzservices","featured":null,"links":null,"description":null,"_repopath":"geopandas/xyzservices","_reponame":"xyzservices","_stars":84,"_forks":19,"_watches":11,"_language":"Python","_homepage":"https://xyzservices.readthedocs.io/","_description":"xyzservices: Source of XYZ tiles providers","_organization":"geopandas","_updated_at":"2023-01-04T00:00:00.000Z","_created_at":"2021-05-21T00:00:00.000Z","_age_weeks":91,"_stars_per_week":0.92,"_topics":[],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":17,"_pop_contributor_logins":["EdwardBetts","HaudinFlorence@quantstack","SylvainCorlay@quantstack","benoit9126@roseautechnologies","darribas","davidbrochart@quantstack","dependabot[bot]","drnextgis@satellogic","martinfleis","tsutterley@uw-eduappliedphysicslaboratory"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["quantstack","roseautechnologies","satellogic","uw-eduappliedphysicslaboratory"],"_pop_contributor_orgs_raw":["@QuantStack","@RoseauTechnologies ","@satellogic","@uw-edu Applied Physics Laboratory","QuantStack"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.94,"_pop_updated_issues_count":2,"_pop_closed_issues_count":2,"_pop_created_since_days":21,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":29.31,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/geopandas/xyzservices/master/README.md","_readme_localurl":"geopandas~xyzservices~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/geopandas/xyzservices/master/setup.py"],"_requirements_localurls":["geopandas~xyzservices~setup.py"]},{"index":269,"category":"term","githuburl":"https://github.com/deeplook/sparklines","featured":null,"links":null,"description":null,"_repopath":"deeplook/sparklines","_reponame":"sparklines","_stars":84,"_forks":6,"_watches":3,"_language":"Python","_homepage":"","_description":"sparklines: Text-based sparkline command line mimicking those of Edward Tuft.","_organization":"deeplook","_updated_at":"2022-12-28T00:00:00.000Z","_created_at":"2016-05-17T00:00:00.000Z","_age_weeks":353,"_stars_per_week":0.24,"_topics":["python","command-line-tool","graphs","ascii","sparklines","sparkline-graphs"],"_last_commit_date":"2021-06-26T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["aldencolerain","deeplook","deepsource-autofix[bot]","deepsourcebot@deepsourcelabs","mkgs@investnext","quantifiedcode-bot@quantifiedcode"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["deepsourcelabs","investnext","quantifiedcode"],"_pop_contributor_orgs_raw":["@deepsourcelabs","@investnext","QuantifiedCode"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":82,"_pop_updated_since_days":20,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":15.92,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/deeplook/sparklines/master/README.rst","_readme_localurl":"deeplook~sparklines~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/deeplook/sparklines/master/setup.py"],"_requirements_localurls":["deeplook~sparklines~setup.py"]},{"index":769,"category":"ml-dl","githuburl":"https://github.com/praw-dev/asyncpraw","featured":null,"links":null,"description":null,"_repopath":"praw-dev/asyncpraw","_reponame":"asyncpraw","_stars":82,"_forks":13,"_watches":3,"_language":"Python","_homepage":"https://asyncpraw.readthedocs.io","_description":"asyncpraw: Async PRAW, an abbreviation for \"Asynchronous Python Reddit API Wrapper\", is a python package that allows for simple access to Reddit's API.","_organization":"praw-dev","_updated_at":"2023-01-31T00:00:00.000Z","_created_at":"2019-02-05T00:00:00.000Z","_age_weeks":211,"_stars_per_week":0.39,"_topics":["python","api","oauth","reddit","reddit-api","async","asyncpraw","praw"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":226,"_pop_contributor_logins":["13steinj","Damgaard@billy","LilSpazJoekp@indeed","PythonCoderAS","bboe@netflix","jarhill0@appfolio","leviroth","nmtake","tmelz","voussoir"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["appfolio","billy","indeed","netflix"],"_pop_contributor_orgs_raw":["@appfolio","@netflix","Billy","Indeed, Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.67,"_pop_updated_issues_count":34,"_pop_closed_issues_count":34,"_pop_created_since_days":49,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":34.0,"_pop_comment_count":6.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.2,"_pop_dependents_count":0,"_pop_score":41.8,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/praw-dev/asyncpraw/master/README.rst","_readme_localurl":"praw-dev~asyncpraw~README.rst","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/praw-dev/asyncpraw/master/setup.py","https://raw.githubusercontent.com/praw-dev/asyncpraw/master/pyproject.toml"],"_requirements_localurls":["praw-dev~asyncpraw~setup.py","praw-dev~asyncpraw~pyproject.toml"]},{"index":925,"category":"gis","githuburl":"https://github.com/benbovy/spherely","featured":null,"links":null,"description":null,"_repopath":"benbovy/spherely","_reponame":"spherely","_stars":82,"_forks":2,"_watches":4,"_language":"C++","_homepage":"https://spherely.readthedocs.io/","_description":"spherely: Manipulation and analysis of geometric objects on the sphere.","_organization":"benbovy","_updated_at":"2023-02-09T00:00:00.000Z","_created_at":"2022-11-24T00:00:00.000Z","_age_weeks":12,"_stars_per_week":6.38,"_topics":[],"_last_commit_date":"2023-01-12T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["benbovy","jorisvandenbossche"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.79,"_pop_updated_issues_count":14,"_pop_closed_issues_count":10,"_pop_created_since_days":3,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":14.0,"_pop_comment_count":30.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.1,"_pop_dependents_count":0,"_pop_score":14.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/benbovy/spherely/master/README.md","_readme_localurl":"benbovy~spherely~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/benbovy/spherely/master/pyproject.toml"],"_requirements_localurls":["benbovy~spherely~pyproject.toml"]},{"index":668,"category":"gis","githuburl":"https://github.com/zorzi-s/projectregularization","featured":null,"links":null,"description":null,"_repopath":"zorzi-s/projectregularization","_reponame":"projectRegularization","_stars":81,"_forks":7,"_watches":2,"_language":"Python","_homepage":null,"_description":"projectRegularization: Regularization of Building Boundaries using Adversarial and Regularized losses","_organization":"zorzi-s","_updated_at":"2023-02-09T00:00:00.000Z","_created_at":"2021-05-18T00:00:00.000Z","_age_weeks":92,"_stars_per_week":0.88,"_topics":[],"_last_commit_date":"2021-09-17T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["zorzi-s"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":21,"_pop_updated_since_days":17,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":2.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zorzi-s/projectregularization/master/README.md","_readme_localurl":"zorzi-s~projectregularization~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":327,"category":"security","githuburl":"https://github.com/sonatype-nexus-community/jake","featured":null,"links":null,"description":null,"_repopath":"sonatype-nexus-community/jake","_reponame":"jake","_stars":80,"_forks":21,"_watches":8,"_language":"Python","_homepage":"https://jake.readthedocs.io/","_description":"jake: Check your Python environments for vulnerable Open Source packages with OSS Index or Sonatype Nexus Lifecycle.","_organization":"sonatype-nexus-community","_updated_at":"2023-01-25T00:00:00.000Z","_created_at":"2019-10-10T00:00:00.000Z","_age_weeks":175,"_stars_per_week":0.45,"_topics":["python","vulnerabilities","vulnerability-scanners","ossindex","nexus-iq","sonatype-iq"],"_last_commit_date":"2022-12-14T00:00:00.000Z","_pop_contributor_count":15,"_pop_contributor_logins":["ButterB0wl@nginxinc","DarthHater@sonatype","allenhsieh","arichtman@silverrail","bhamail","daviskirk@oniqgmbh","jwa5426","madpah@sonatypecyclonedx","sanzoghenzo","therealak12"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["nginxinc","oniqgmbh","silverrail","sonatype","sonatypecyclonedx"],"_pop_contributor_orgs_raw":["@nginxinc ","@sonatype ","@sonatype @CycloneDX ","ONIQ GmbH","SilverRail"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.54,"_pop_updated_issues_count":6,"_pop_closed_issues_count":3,"_pop_created_since_days":41,"_pop_updated_since_days":2,"_pop_recent_releases_count":4,"_pop_recent_releases_estimated_tags":39,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":6.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.7,"_pop_dependents_count":0,"_pop_score":31.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/sonatype-nexus-community/jake/master/README.md","_readme_localurl":"sonatype-nexus-community~jake~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/sonatype-nexus-community/jake/master/pyproject.toml"],"_requirements_localurls":["sonatype-nexus-community~jake~pyproject.toml"]},{"index":816,"category":"util","githuburl":"https://github.com/aws-samples/sagemaker-ssh-helper","featured":null,"links":null,"description":null,"_repopath":"aws-samples/sagemaker-ssh-helper","_reponame":"sagemaker-ssh-helper","_stars":80,"_forks":10,"_watches":7,"_language":"Python","_homepage":"","_description":"sagemaker-ssh-helper: A helper library to connect into Amazon SageMaker with AWS Systems Manager and SSH","_organization":"aws-samples","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2022-10-14T00:00:00.000Z","_age_weeks":18,"_stars_per_week":4.27,"_topics":["amazon-sagemaker","aws","aws-systems-manager","machine-learning","pycharm","sagemaker","sagemaker-studio","ssh","vscode"],"_last_commit_date":"2023-01-20T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["amazon-auto@amazon","gilinachum@amazon","ivan-khvostishkov@amazonwebservices(aws)"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["amazon","amazonwebservices(aws)"],"_pop_contributor_orgs_raw":["Amazon","Amazon Web Services (AWS)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.73,"_pop_updated_issues_count":12,"_pop_closed_issues_count":6,"_pop_created_since_days":4,"_pop_updated_since_days":1,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":12.0,"_pop_comment_count":20.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.7,"_pop_dependents_count":0,"_pop_score":23.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/aws-samples/sagemaker-ssh-helper/master/README.md","_readme_localurl":"aws-samples~sagemaker-ssh-helper~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/aws-samples/sagemaker-ssh-helper/master/setup.py"],"_requirements_localurls":["aws-samples~sagemaker-ssh-helper~setup.py"]},{"index":584,"category":"gis","githuburl":"https://github.com/developmentseed/cogeo-mosaic","featured":null,"links":null,"description":null,"_repopath":"developmentseed/cogeo-mosaic","_reponame":"cogeo-mosaic","_stars":78,"_forks":20,"_watches":8,"_language":"Python","_homepage":"https://developmentseed.org/cogeo-mosaic/","_description":"cogeo-mosaic: Create and use COG mosaic based on mosaicJSON","_organization":"developmentseed","_updated_at":"2023-02-14T00:00:00.000Z","_created_at":"2019-05-14T00:00:00.000Z","_age_weeks":197,"_stars_per_week":0.4,"_topics":[],"_last_commit_date":"2023-02-06T00:00:00.000Z","_pop_contributor_count":9,"_pop_contributor_logins":["AndreaGiardini","RichardScottOZ@ozminerals","andrewharvey@alantgeo","christoe@qualicodeconsulting","drnextgis@satellogic","geospatial-jeff@regrowag","kylebarron","lseelenbinder@stadiamaps","vincentsarago@developmentseed"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["alantgeo","developmentseed","ozminerals","qualicodeconsulting","regrowag","satellogic","stadiamaps"],"_pop_contributor_orgs_raw":["@developmentseed ","@regrowag","@satellogic","@stadiamaps ","Alantgeo","OZ Minerals","Qualicode Consulting"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.5,"_pop_updated_issues_count":4,"_pop_closed_issues_count":4,"_pop_created_since_days":46,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":11,"_pop_recent_releases_adjusted_count":11,"_pop_issue_count":4.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":35.85,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/developmentseed/cogeo-mosaic/master/README.md","_readme_localurl":"developmentseed~cogeo-mosaic~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/developmentseed/cogeo-mosaic/master/setup.py","https://raw.githubusercontent.com/developmentseed/cogeo-mosaic/master/pyproject.toml"],"_requirements_localurls":["developmentseed~cogeo-mosaic~setup.py","developmentseed~cogeo-mosaic~pyproject.toml"]},{"index":530,"category":"ml","githuburl":"https://github.com/brohrer/cottonwood","featured":null,"links":null,"description":null,"_repopath":"brohrer/cottonwood","_reponame":"cottonwood","_stars":74,"_forks":13,"_watches":14,"_language":"Python","_homepage":"https://end-to-end-machine-learning.teachable.com/p/write-a-neural-network-framework/","_description":"cottonwood: A flexible neural network framework for running experiments and trying ideas.","_organization":"brohrer","_updated_at":"2023-02-11T00:00:00.000Z","_created_at":"2019-09-29T00:00:00.000Z","_age_weeks":177,"_stars_per_week":0.42,"_topics":[],"_last_commit_date":"2020-02-02T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["ShahriyarR@azerbaijanpug","brohrer","gkaissis@tum,imperialcollege,openmined"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["azerbaijanpug","tum,imperialcollege,openmined"],"_pop_contributor_orgs_raw":["Azerbaijan PUG","TUM, Imperial College, OpenMined"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":41,"_pop_updated_since_days":37,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":12.34,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/brohrer/cottonwood/master/README.md","_readme_localurl":"brohrer~cottonwood~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/brohrer/cottonwood/master/setup.py"],"_requirements_localurls":["brohrer~cottonwood~setup.py"]},{"index":851,"category":"profiling","githuburl":"https://github.com/kshitij12345/torchnnprofiler","featured":null,"links":null,"description":null,"_repopath":"kshitij12345/torchnnprofiler","_reponame":"torchnnprofiler","_stars":74,"_forks":3,"_watches":4,"_language":"Python","_homepage":null,"_description":"torchnnprofiler: Context Manager to profile the forward and backward times of PyTorch's nn.Module","_organization":"kshitij12345","_updated_at":"2023-01-17T00:00:00.000Z","_created_at":"2022-10-22T00:00:00.000Z","_age_weeks":17,"_stars_per_week":4.21,"_topics":[],"_last_commit_date":"2022-11-02T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["kshitij12345@quansight"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["quansight"],"_pop_contributor_orgs_raw":["Quansight"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.96,"_pop_updated_issues_count":3,"_pop_closed_issues_count":2,"_pop_created_since_days":4,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":3.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.3,"_pop_dependents_count":0,"_pop_score":13.24,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/kshitij12345/torchnnprofiler/master/README.md","_readme_localurl":"kshitij12345~torchnnprofiler~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/kshitij12345/torchnnprofiler/master/setup.py"],"_requirements_localurls":["kshitij12345~torchnnprofiler~setup.py"]},{"index":453,"category":"gis","githuburl":"https://github.com/googlecloudplatform/dataflow-geobeam","featured":null,"links":null,"description":null,"_repopath":"googlecloudplatform/dataflow-geobeam","_reponame":"dataflow-geobeam","_stars":67,"_forks":26,"_watches":10,"_language":"Python","_homepage":null,"_description":"googlecloudplatform/dataflow-geobeam","_organization":"googlecloudplatform","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2021-02-04T00:00:00.000Z","_age_weeks":106,"_stars_per_week":0.63,"_topics":[],"_last_commit_date":"2022-11-29T00:00:00.000Z","_pop_contributor_count":5,"_pop_contributor_logins":["hashkanna","koshy1123@calthorpeanalytics","mbforr@carto","remylouisew","tjwebb@googlegooglecloudplatform"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["calthorpeanalytics","carto","googlegooglecloudplatform"],"_pop_contributor_orgs_raw":["@CalthorpeAnalytics ","@google @GoogleCloudPlatform ","CARTO"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.62,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":25,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":22.55,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/googlecloudplatform/dataflow-geobeam/master/README.md","_readme_localurl":"googlecloudplatform~dataflow-geobeam~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/googlecloudplatform/dataflow-geobeam/master/setup.py"],"_requirements_localurls":["googlecloudplatform~dataflow-geobeam~setup.py"]},{"index":234,"category":"crypto","githuburl":"https://github.com/blockchainsllc/in3","featured":null,"links":null,"description":null,"_repopath":"blockchainsllc/in3","_reponame":"in3","_stars":66,"_forks":19,"_watches":12,"_language":"C","_homepage":"https://in3.readthedocs.io/en/develop/index.html","_description":"in3: The IN3 client (written in C).","_organization":"blockchainsllc","_updated_at":"2023-01-30T00:00:00.000Z","_created_at":"2019-09-17T00:00:00.000Z","_age_weeks":179,"_stars_per_week":0.37,"_topics":["blockchain","verify","crypto-economic","ethereum","ipfs"],"_last_commit_date":"2022-04-01T00:00:00.000Z","_pop_contributor_count":35,"_pop_contributor_logins":["cerealkill@sni","chirag-parmar@slock.it","devrajsinghrawat","hu55a1n1","jbentke","kgeweniger@slock.it","leonardostsouza","leonardotc","simon-jentzsch@blockchains","unparalleled-js"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["blockchains","slock.it","sni"],"_pop_contributor_orgs_raw":["@SNI","@slock.it","Blockchains LLC","Slock.it"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.87,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":42,"_pop_updated_since_days":11,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":27,"_pop_recent_releases_adjusted_count":27,"_pop_issue_count":2.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":30.48,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/blockchainsllc/in3/master/README.md","_readme_localurl":"blockchainsllc~in3~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":568,"category":"sim","githuburl":"https://github.com/gboeing/street-network-models","featured":null,"links":null,"description":null,"_repopath":"gboeing/street-network-models","_reponame":"street-network-models","_stars":64,"_forks":4,"_watches":2,"_language":"Python","_homepage":"https://osf.io/f2dqc","_description":"street-network-models: Street network models and indicators for every urban area in the world","_organization":"gboeing","_updated_at":"2022-12-13T00:00:00.000Z","_created_at":"2020-04-13T00:00:00.000Z","_age_weeks":149,"_stars_per_week":0.43,"_topics":[],"_last_commit_date":"2021-03-05T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["gboeing@universityofsoutherncalifornia"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["universityofsoutherncalifornia"],"_pop_contributor_orgs_raw":["University of Southern California"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":35,"_pop_updated_since_days":24,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":6.21,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gboeing/street-network-models/master/README.md","_readme_localurl":"gboeing~street-network-models~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":968,"category":"math","githuburl":"https://github.com/albahnsen/pycircular","featured":1.0,"links":null,"description":null,"_repopath":"albahnsen/pycircular","_reponame":"pycircular","_stars":60,"_forks":3,"_watches":5,"_language":"Python","_homepage":"","_description":"pycircular is a Python module for circular data analysis","_organization":"albahnsen","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-09-12T00:00:00.000Z","_age_weeks":23,"_stars_per_week":2.58,"_topics":[],"_last_commit_date":"2023-01-21T00:00:00.000Z","_pop_contributor_count":5,"_pop_contributor_logins":["albahnsen","jdacevedo3010","jussalcedoga"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.83,"_pop_updated_issues_count":13,"_pop_closed_issues_count":3,"_pop_created_since_days":5,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":13.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":12.69,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/albahnsen/pycircular/master/README.rst","_readme_localurl":"albahnsen~pycircular~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/albahnsen/pycircular/master/setup.py"],"_requirements_localurls":["albahnsen~pycircular~setup.py"]},{"index":535,"category":"gis","githuburl":"https://github.com/cloudsen12/easystac","featured":null,"links":null,"description":null,"_repopath":"cloudsen12/easystac","_reponame":"easystac","_stars":60,"_forks":1,"_watches":3,"_language":"Python","_homepage":"https://easystac.readthedocs.io/","_description":"easystac: A Python package for simple STAC queries","_organization":"cloudsen12","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-01-20T00:00:00.000Z","_age_weeks":56,"_stars_per_week":1.06,"_topics":["stac","remote-sensing","gis","earth-observation","python","python3","spatio-temporal","spatio-temporal-data","planetary-computer","radiant"],"_last_commit_date":"2022-08-07T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["csaybar@emcdestudent","davemlz@rsc4earth|universityofleipzig","duckontheweb@regrowag"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["emcdestudent","regrowag","rsc4earth|universityofleipzig"],"_pop_contributor_orgs_raw":["@regrowag","EMCDE Student","RSC4Earth | University of Leipzig"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.08,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":13,"_pop_updated_since_days":7,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":13.37,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/cloudsen12/easystac/master/README.md","_readme_localurl":"cloudsen12~easystac~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/cloudsen12/easystac/master/setup.py"],"_requirements_localurls":["cloudsen12~easystac~setup.py"]},{"index":912,"category":"security","githuburl":"https://github.com/abnamro/repository-scanner","featured":null,"links":null,"description":null,"_repopath":"abnamro/repository-scanner","_reponame":"repository-scanner","_stars":57,"_forks":2,"_watches":6,"_language":"Python","_homepage":"","_description":"repository-scanner: Tool to detect secrets in source code management systems.","_organization":"abnamro","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2022-09-08T00:00:00.000Z","_age_weeks":23,"_stars_per_week":2.39,"_topics":[],"_last_commit_date":"2023-02-21T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["DamienVermaas","Peter-v-d-Spek","Usman2ABN","ajaikuruppath","amrityamrout","b-abderrahmane-abnamro"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.73,"_pop_updated_issues_count":38,"_pop_closed_issues_count":36,"_pop_created_since_days":6,"_pop_updated_since_days":0,"_pop_recent_releases_count":5,"_pop_recent_releases_estimated_tags":10,"_pop_recent_releases_adjusted_count":5,"_pop_issue_count":38.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.1,"_pop_dependents_count":0,"_pop_score":19.71,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/abnamro/repository-scanner/master/README.md","_readme_localurl":"abnamro~repository-scanner~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":521,"category":"gis","githuburl":"https://github.com/lydorn/mapalignment","featured":null,"links":null,"description":null,"_repopath":"lydorn/mapalignment","_reponame":"mapalignment","_stars":57,"_forks":14,"_watches":4,"_language":"Python","_homepage":"","_description":"mapalignment: Aligning and Updating Cadaster Maps with Remote Sensing Images","_organization":"lydorn","_updated_at":"2023-02-10T00:00:00.000Z","_created_at":"2018-09-05T00:00:00.000Z","_age_weeks":233,"_stars_per_week":0.24,"_topics":[],"_last_commit_date":"2020-09-03T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["Lydorn","netsimilarity"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":54,"_pop_updated_since_days":30,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":4.44,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lydorn/mapalignment/master/README.md","_readme_localurl":"lydorn~mapalignment~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":854,"category":"util","githuburl":"https://github.com/backtick-se/cowait","featured":null,"links":null,"description":null,"_repopath":"backtick-se/cowait","_reponame":"cowait","_stars":55,"_forks":5,"_watches":8,"_language":"Python","_homepage":"https://cowait.io","_description":"cowait: Containerized distributed programming framework for Python","_organization":"backtick-se","_updated_at":"2022-11-16T00:00:00.000Z","_created_at":"2019-09-18T00:00:00.000Z","_age_weeks":179,"_stars_per_week":0.31,"_topics":["python","task-scheduler","data-science","data-engineering","spark","dask","kubernetes","docker","workflow-engine"],"_last_commit_date":"2022-09-22T00:00:00.000Z","_pop_contributor_count":10,"_pop_contributor_logins":["MTullbergDebricked","Martomate","OskarHandmark@backticktechnologies","dependabot[bot]","emil-debricked","emilwareus","fredrikolsson96@backticktechnologies","johanhenriksson","michalstypa@backticktechnologies"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["backticktechnologies"],"_pop_contributor_orgs_raw":["Backtick Technologies"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.25,"_pop_updated_issues_count":6,"_pop_closed_issues_count":0,"_pop_created_since_days":42,"_pop_updated_since_days":5,"_pop_recent_releases_count":3,"_pop_recent_releases_estimated_tags":13,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":6.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":19.05,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/backtick-se/cowait/master/README.md","_readme_localurl":"backtick-se~cowait~README.md","_requirements_filenames":["requirements.txt","setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/backtick-se/cowait/master/requirements.txt","https://raw.githubusercontent.com/backtick-se/cowait/master/setup.py","https://raw.githubusercontent.com/backtick-se/cowait/master/pyproject.toml"],"_requirements_localurls":["backtick-se~cowait~requirements.txt","backtick-se~cowait~setup.py","backtick-se~cowait~pyproject.toml"]},{"index":400,"category":"study","githuburl":"https://github.com/dylanhogg/crazy-awesome-python","featured":null,"links":null,"description":null,"_repopath":"dylanhogg/crazy-awesome-python","_reponame":"crazy-awesome-python","_stars":53,"_forks":8,"_watches":3,"_language":"HTML","_homepage":"https://www.awesomepython.org/","_description":"crazy-awesome-python: A curated list of awesome Python frameworks, with a bias towards data and machine learning","_organization":"dylanhogg","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2020-06-20T00:00:00.000Z","_age_weeks":139,"_stars_per_week":0.38,"_topics":["python","python-data","awesome-list","python-machine-learning","python-nlp","python-frameworks","python-library","data","machine-learning","natural-language-processing"],"_last_commit_date":"2023-02-11T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["dependabot[bot]","dylanhogg@infocruncher"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["infocruncher"],"_pop_contributor_orgs_raw":["Infocruncher"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.54,"_pop_updated_issues_count":2,"_pop_closed_issues_count":2,"_pop_created_since_days":33,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":20.15,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dylanhogg/crazy-awesome-python/master/README.md","_readme_localurl":"dylanhogg~crazy-awesome-python~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/dylanhogg/crazy-awesome-python/master/requirements.txt"],"_requirements_localurls":["dylanhogg~crazy-awesome-python~requirements.txt"]},{"index":326,"category":"security","githuburl":"https://github.com/snyk-labs/pysnyk","featured":null,"links":null,"description":null,"_repopath":"snyk-labs/pysnyk","_reponame":"pysnyk","_stars":52,"_forks":93,"_watches":10,"_language":"Python","_homepage":"https://snyk.docs.apiary.io/","_description":"pysnyk: A Python client for the Snyk API.","_organization":"snyk-labs","_updated_at":"2023-01-20T00:00:00.000Z","_created_at":"2019-02-03T00:00:00.000Z","_age_weeks":211,"_stars_per_week":0.25,"_topics":["snyk","python","api"],"_last_commit_date":"2023-01-20T00:00:00.000Z","_pop_contributor_count":30,"_pop_contributor_logins":["colinbarr@paddlehq","garethr@snyk","jdewinne@replicated.com","jgresty","lili2311@snyk","maxjeffos","mnimmny","mrzarquon@gitpod-io","nirfuchs@snyk","xavierxmorris"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["gitpod-io","paddlehq","replicated.com","snyk"],"_pop_contributor_orgs_raw":["@PaddleHQ","@gitpod-io ","@snyk","@snyk ","Snyk","replicated.com"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.56,"_pop_updated_issues_count":28,"_pop_closed_issues_count":16,"_pop_created_since_days":49,"_pop_updated_since_days":1,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":5,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":28.0,"_pop_comment_count":21.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":36.73,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/snyk-labs/pysnyk/master/README.md","_readme_localurl":"snyk-labs~pysnyk~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/snyk-labs/pysnyk/master/pyproject.toml"],"_requirements_localurls":["snyk-labs~pysnyk~pyproject.toml"]},{"index":401,"category":"crypto","githuburl":"https://github.com/dylanhogg/crazy-awesome-crypto","featured":null,"links":null,"description":null,"_repopath":"dylanhogg/crazy-awesome-crypto","_reponame":"crazy-awesome-crypto","_stars":46,"_forks":15,"_watches":4,"_language":"Python","_homepage":"https://www.awesomecrypto.xyz/","_description":"crazy-awesome-crypto: A list of awesome crypto and blockchain projects","_organization":"dylanhogg","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2021-09-27T00:00:00.000Z","_age_weeks":73,"_stars_per_week":0.63,"_topics":["crypto","cryptocurrency","blockchain","bitcoin","ethereum","awesome-list","data","data-analysis","github","awesome"],"_last_commit_date":"2023-02-13T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["dylanhogg@infocruncher"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["infocruncher"],"_pop_contributor_orgs_raw":["Infocruncher"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.33,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":17,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":14.13,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dylanhogg/crazy-awesome-crypto/master/README.md","_readme_localurl":"dylanhogg~crazy-awesome-crypto~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/dylanhogg/crazy-awesome-crypto/master/requirements.txt"],"_requirements_localurls":["dylanhogg~crazy-awesome-crypto~requirements.txt"]},{"index":924,"category":"gis","githuburl":"https://github.com/radiantearth/radiant-mlhub","featured":null,"links":null,"description":null,"_repopath":"radiantearth/radiant-mlhub","_reponame":"radiant-mlhub","_stars":46,"_forks":10,"_watches":5,"_language":"Python","_homepage":"https://radiant-mlhub.readthedocs.io/","_description":"radiant-mlhub: A Python client for the Radiant MLHub API (https://mlhub.earth).","_organization":"radiantearth","_updated_at":"2023-02-02T00:00:00.000Z","_created_at":"2020-10-13T00:00:00.000Z","_age_weeks":123,"_stars_per_week":0.37,"_topics":["machine-learning","satellite-imagery","python","python-client","python-3","stac"],"_last_commit_date":"2023-02-13T00:00:00.000Z","_pop_contributor_count":9,"_pop_contributor_logins":["PowerChell@radiantearth","adamjstewart@universityofillinoisaturbana-champaign","dependabot[bot]","duckontheweb@regrowag","guidorice@regrow","kbgg@radiantearth","rowenarono95"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["radiantearth","regrow","regrowag","universityofillinoisaturbana-champaign"],"_pop_contributor_orgs_raw":["@radiantearth ","@regrowag","Regrow","University of Illinois at Urbana-Champaign"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.44,"_pop_updated_issues_count":12,"_pop_closed_issues_count":8,"_pop_created_since_days":29,"_pop_updated_since_days":0,"_pop_recent_releases_count":7,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":12.0,"_pop_comment_count":7.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.6,"_pop_dependents_count":0,"_pop_score":33.11,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/radiantearth/radiant-mlhub/master/README.md","_readme_localurl":"radiantearth~radiant-mlhub~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/radiantearth/radiant-mlhub/master/setup.py","https://raw.githubusercontent.com/radiantearth/radiant-mlhub/master/pyproject.toml"],"_requirements_localurls":["radiantearth~radiant-mlhub~setup.py","radiantearth~radiant-mlhub~pyproject.toml"]},{"index":202,"category":"crypto","githuburl":"https://github.com/nerolation/ethereum-datafarm","featured":null,"links":null,"description":null,"_repopath":"nerolation/ethereum-datafarm","_reponame":"ethereum-datafarm","_stars":45,"_forks":10,"_watches":1,"_language":"Python","_homepage":null,"_description":"ethereum-datafarm: Scrap blockchain data from the public API of Etherscan.io","_organization":"nerolation","_updated_at":"2023-02-19T00:00:00.000Z","_created_at":"2021-03-13T00:00:00.000Z","_age_weeks":101,"_stars_per_week":0.44,"_topics":[],"_last_commit_date":"2023-01-21T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["nerolation@viennauniversityofeconomicsandbusiness(wu)"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["viennauniversityofeconomicsandbusiness(wu)"],"_pop_contributor_orgs_raw":["Vienna University of Economics and Business (WU)"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.69,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":24,"_pop_updated_since_days":1,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":13.2,"_readme_filename":"Readme.md","_readme_giturl":"https://raw.githubusercontent.com/nerolation/ethereum-datafarm/master/Readme.md","_readme_localurl":"nerolation~ethereum-datafarm~Readme.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/nerolation/ethereum-datafarm/master/requirements.txt"],"_requirements_localurls":["nerolation~ethereum-datafarm~requirements.txt"]},{"index":776,"category":"sim","githuburl":"https://github.com/activitysim/populationsim","featured":null,"links":null,"description":null,"_repopath":"activitysim/populationsim","_reponame":"populationsim","_stars":40,"_forks":27,"_watches":11,"_language":"Jupyter Notebook","_homepage":"https://activitysim.github.io/populationsim","_description":"populationsim: An Open Platform for Population Synthesis","_organization":"activitysim","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2017-02-14T00:00:00.000Z","_age_weeks":314,"_stars_per_week":0.13,"_topics":["python","data-science","population-synthesis","activitysim","bsd-3-clause","microsimulation"],"_last_commit_date":"2021-11-19T00:00:00.000Z","_pop_contributor_count":9,"_pop_contributor_logins":["bettinardi@oregondepartmentoftransportation","binnympaul","blakerosenthal","bstabler@ptvgroup","jamiecook","jfdman","johnklawlor","toliwaga"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["oregondepartmentoftransportation","ptvgroup"],"_pop_contributor_orgs_raw":["Oregon Department of Transportation","PTV Group"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":5,"_pop_closed_issues_count":1,"_pop_created_since_days":73,"_pop_updated_since_days":15,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":5.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.8,"_pop_dependents_count":0,"_pop_score":20.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/activitysim/populationsim/master/README.md","_readme_localurl":"activitysim~populationsim~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/activitysim/populationsim/master/setup.py"],"_requirements_localurls":["activitysim~populationsim~setup.py"]},{"index":979,"category":"sim","githuburl":"https://github.com/glpcc/pokerpy","featured":null,"links":null,"description":null,"_repopath":"glpcc/pokerpy","_reponame":"PokerPy","_stars":40,"_forks":4,"_watches":1,"_language":"C++","_homepage":"","_description":"PokerPy: Texas Hold'em Poker Probability Calculator in Python","_organization":"glpcc","_updated_at":"2023-02-10T00:00:00.000Z","_created_at":"2022-12-11T00:00:00.000Z","_age_weeks":10,"_stars_per_week":3.84,"_topics":["cpp","fast","performance","poker","pybind11","python","texas-holdem"],"_last_commit_date":"2023-02-10T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["glpcc@universidadpolit\u00e9cnicademadrid","luigibrancati"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["universidadpolit\u00e9cnicademadrid"],"_pop_contributor_orgs_raw":["Universidad Polit\u00e9cnica de Madrid"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.08,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":2,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":8.0,"_pop_dependents_count":0,"_pop_score":20.66,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/glpcc/pokerpy/master/README.md","_readme_localurl":"glpcc~pokerpy~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/glpcc/pokerpy/master/setup.py","https://raw.githubusercontent.com/glpcc/pokerpy/master/pyproject.toml"],"_requirements_localurls":["glpcc~pokerpy~setup.py","glpcc~pokerpy~pyproject.toml"]},{"index":821,"category":"pandas","githuburl":"https://github.com/ddelange/mapply","featured":null,"links":null,"description":null,"_repopath":"ddelange/mapply","_reponame":"mapply","_stars":39,"_forks":3,"_watches":4,"_language":"Python","_homepage":"","_description":"mapply: Sensible multi-core apply function for Pandas","_organization":"ddelange","_updated_at":"2023-02-15T00:00:00.000Z","_created_at":"2020-10-26T00:00:00.000Z","_age_weeks":121,"_stars_per_week":0.32,"_topics":[],"_last_commit_date":"2022-12-16T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["ddelange"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.29,"_pop_updated_issues_count":5,"_pop_closed_issues_count":4,"_pop_created_since_days":28,"_pop_updated_since_days":2,"_pop_recent_releases_count":9,"_pop_recent_releases_estimated_tags":8,"_pop_recent_releases_adjusted_count":9,"_pop_issue_count":5.0,"_pop_comment_count":8.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.6,"_pop_dependents_count":0,"_pop_score":18.43,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ddelange/mapply/master/README.md","_readme_localurl":"ddelange~mapply~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ddelange/mapply/master/setup.py"],"_requirements_localurls":["ddelange~mapply~setup.py"]},{"index":940,"category":"data","githuburl":"https://github.com/scylladb/python-driver","featured":null,"links":null,"description":null,"_repopath":"scylladb/python-driver","_reponame":"python-driver","_stars":38,"_forks":27,"_watches":6,"_language":"Python","_homepage":"https://python-driver.docs.scylladb.com","_description":"python-driver: ScyllaDB Python Driver, originally DataStax Python Driver for Apache Cassandra","_organization":"scylladb","_updated_at":"2023-02-02T00:00:00.000Z","_created_at":"2018-11-20T00:00:00.000Z","_age_weeks":222,"_stars_per_week":0.17,"_topics":["scylladb","python"],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":204,"_pop_contributor_logins":["GregBestland","TheRealFalcon@canonical","aboudreault@kovarogroup","aholmberg","bdeggleston@apple","fruch@scylladb","joaquincasares@audiusproject","mambocab@rapid7","rustyrazorblade@apple","thobbs@anticlassicstudios"],"_pop_contributor_orgs_len":7,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anticlassicstudios","apple","audiusproject","canonical","kovarogroup","rapid7","scylladb"],"_pop_contributor_orgs_raw":["@AudiusProject","@scylladb","Anticlassic Studios, LLC","Apple","Canonical","Kovaro Group","Rapid7"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.75,"_pop_updated_issues_count":36,"_pop_closed_issues_count":23,"_pop_created_since_days":52,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":26,"_pop_recent_releases_adjusted_count":26,"_pop_issue_count":36.0,"_pop_comment_count":67.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.9,"_pop_dependents_count":0,"_pop_score":51.46,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/scylladb/python-driver/master/README.rst","_readme_localurl":"scylladb~python-driver~README.rst","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/scylladb/python-driver/master/requirements.txt","https://raw.githubusercontent.com/scylladb/python-driver/master/setup.py"],"_requirements_localurls":["scylladb~python-driver~requirements.txt","scylladb~python-driver~setup.py"]},{"index":386,"category":"nlp","githuburl":"https://github.com/ferdinandzhong/punctuator","featured":null,"links":null,"description":null,"_repopath":"ferdinandzhong/punctuator","_reponame":"punctuator","_stars":36,"_forks":5,"_watches":1,"_language":"Python","_homepage":"","_description":"punctuator: A small seq2seq punctuator tool based on DistilBERT","_organization":"ferdinandzhong","_updated_at":"2023-02-07T00:00:00.000Z","_created_at":"2020-11-19T00:00:00.000Z","_age_weeks":117,"_stars_per_week":0.31,"_topics":["bert","nlp","seq2seq","punctuation","deep-learning","pytorch","bert-ner","chinese-nlp"],"_last_commit_date":"2022-09-28T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["FerdinandZhong"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.17,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":27,"_pop_updated_since_days":5,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":10.45,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/ferdinandzhong/punctuator/master/README.md","_readme_localurl":"ferdinandzhong~punctuator~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/ferdinandzhong/punctuator/master/requirements.txt","https://raw.githubusercontent.com/ferdinandzhong/punctuator/master/setup.py"],"_requirements_localurls":["ferdinandzhong~punctuator~requirements.txt","ferdinandzhong~punctuator~setup.py"]},{"index":918,"category":"ml-ops","githuburl":"https://github.com/anyscale/airflow-provider-ray","featured":null,"links":null,"description":null,"_repopath":"anyscale/airflow-provider-ray","_reponame":"airflow-provider-ray","_stars":32,"_forks":10,"_watches":13,"_language":"Python","_homepage":null,"_description":"airflow-provider-ray: Ray provider for Apache Airflow","_organization":"anyscale","_updated_at":"2022-11-16T00:00:00.000Z","_created_at":"2021-03-05T00:00:00.000Z","_age_weeks":102,"_stars_per_week":0.31,"_topics":[],"_last_commit_date":"2021-10-03T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["dimberman@astronomerio","mrrobby@advocatingdistributeddataplatforms","petedejoy@astronomer","pgzmnk@astronomer.io","richardliaw@anyscale","sunkickr@astronomer"],"_pop_contributor_orgs_len":5,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["advocatingdistributeddataplatforms","anyscale","astronomer","astronomer.io","astronomerio"],"_pop_contributor_orgs_raw":["@anyscale","@astronomer","@astronomerio","Advocating Distributed Data Platforms","Astronomer","Astronomer.io"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":24,"_pop_updated_since_days":17,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":3.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":3.0,"_pop_dependents_count":0,"_pop_score":22.03,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/anyscale/airflow-provider-ray/master/README.md","_readme_localurl":"anyscale~airflow-provider-ray~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/anyscale/airflow-provider-ray/master/requirements.txt","https://raw.githubusercontent.com/anyscale/airflow-provider-ray/master/setup.py"],"_requirements_localurls":["anyscale~airflow-provider-ray~requirements.txt","anyscale~airflow-provider-ray~setup.py"]},{"index":333,"category":"util","githuburl":"https://github.com/gondolav/pyfuncol","featured":null,"links":null,"description":null,"_repopath":"gondolav/pyfuncol","_reponame":"pyfuncol","_stars":32,"_forks":2,"_watches":3,"_language":"Python","_homepage":"https://pyfuncol.readthedocs.io/","_description":"pyfuncol: Functional collections extension functions for Python","_organization":"gondolav","_updated_at":"2022-11-16T00:00:00.000Z","_created_at":"2021-12-16T00:00:00.000Z","_age_weeks":61,"_stars_per_week":0.52,"_topics":["functional","collections","python","parallel","python3","extension-functions"],"_last_commit_date":"2023-01-14T00:00:00.000Z","_pop_contributor_count":4,"_pop_contributor_logins":["Gondolav","dependabot[bot]","m-doescode","samuelchassot@epfl"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["epfl"],"_pop_contributor_orgs_raw":["EPFL"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.71,"_pop_updated_issues_count":25,"_pop_closed_issues_count":20,"_pop_created_since_days":14,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":6,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":25.0,"_pop_comment_count":30.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":22.64,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gondolav/pyfuncol/master/README.md","_readme_localurl":"gondolav~pyfuncol~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gondolav/pyfuncol/master/requirements.txt","https://raw.githubusercontent.com/gondolav/pyfuncol/master/setup.py"],"_requirements_localurls":["gondolav~pyfuncol~requirements.txt","gondolav~pyfuncol~setup.py"]},{"index":921,"category":"util","githuburl":"https://github.com/python-odin/odin","featured":null,"links":null,"description":null,"_repopath":"python-odin/odin","_reponame":"odin","_stars":29,"_forks":7,"_watches":3,"_language":"Python","_homepage":"https://odin.readthedocs.org/en/latest/","_description":"odin: Data-structure definition/validation/traversal, mapping and serialisation toolkit for Python","_organization":"python-odin","_updated_at":"2023-02-14T00:00:00.000Z","_created_at":"2013-08-20T00:00:00.000Z","_age_weeks":496,"_stars_per_week":0.06,"_topics":["python","validation","data-structures","data-mapping","serialize","de-serialize","json","csv","msgpack","xml","yaml"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["dependabot-preview[bot]","dependabot[bot]","pyup-bot@pyupio","thedrow","timsavage@westpac"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["pyupio","westpac"],"_pop_contributor_orgs_raw":["@pyupio","Westpac"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":2.21,"_pop_updated_issues_count":11,"_pop_closed_issues_count":9,"_pop_created_since_days":116,"_pop_updated_since_days":0,"_pop_recent_releases_count":12,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":11.0,"_pop_comment_count":13.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":36.36,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/python-odin/odin/master/README.rst","_readme_localurl":"python-odin~odin~README.rst","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/python-odin/odin/master/pyproject.toml"],"_requirements_localurls":["python-odin~odin~pyproject.toml"]},{"index":711,"category":"gis","githuburl":"https://github.com/artelys/geonetworkx","featured":null,"links":null,"description":null,"_repopath":"artelys/geonetworkx","_reponame":"geonetworkx","_stars":29,"_forks":1,"_watches":7,"_language":"Python","_homepage":null,"_description":"geonetworkx: Python tools for geographic graphs","_organization":"artelys","_updated_at":"2022-12-22T00:00:00.000Z","_created_at":"2019-10-24T00:00:00.000Z","_age_weeks":173,"_stars_per_week":0.17,"_topics":[],"_last_commit_date":"2021-06-28T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["Hyrae","frapac@argonnenationallaboratory"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["argonnenationallaboratory"],"_pop_contributor_orgs_raw":["Argonne National Laboratory"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":41,"_pop_updated_since_days":20,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":12.44,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/artelys/geonetworkx/master/README.md","_readme_localurl":"artelys~geonetworkx~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/artelys/geonetworkx/master/requirements.txt","https://raw.githubusercontent.com/artelys/geonetworkx/master/setup.py"],"_requirements_localurls":["artelys~geonetworkx~requirements.txt","artelys~geonetworkx~setup.py"]},{"index":502,"category":"gis","githuburl":"https://github.com/gregorhd/mapcompare","featured":null,"links":null,"description":null,"_repopath":"gregorhd/mapcompare","_reponame":"mapcompare","_stars":28,"_forks":0,"_watches":2,"_language":"Python","_homepage":"","_description":"mapcompare: Comparison of Python packages and libraries for visualising geospatial vector data: applications for Smarter Cities.","_organization":"gregorhd","_updated_at":"2022-12-06T00:00:00.000Z","_created_at":"2021-05-21T00:00:00.000Z","_age_weeks":91,"_stars_per_week":0.31,"_topics":["visualisation-libraries","sample-visualisation","comparison","data-visualisation","data-viz","urban-data-science","interactive-visualisations"],"_last_commit_date":"2022-12-03T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["gregorhd@gafag"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["gafag"],"_pop_contributor_orgs_raw":["GAF AG"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":21,"_pop_updated_since_days":3,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":11.53,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/gregorhd/mapcompare/master/README.md","_readme_localurl":"gregorhd~mapcompare~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/gregorhd/mapcompare/master/setup.py"],"_requirements_localurls":["gregorhd~mapcompare~setup.py"]},{"index":934,"category":"ml","githuburl":"https://github.com/pgniewko/forward_forward_vhts","featured":null,"links":null,"description":null,"_repopath":"pgniewko/forward_forward_vhts","_reponame":"forward_forward_vhts","_stars":28,"_forks":5,"_watches":1,"_language":"Jupyter Notebook","_homepage":null,"_description":"forward_forward_vhts: The Forward-Forward Algorithm for Drug Discovery","_organization":"pgniewko","_updated_at":"2023-02-18T00:00:00.000Z","_created_at":"2022-12-29T00:00:00.000Z","_age_weeks":7,"_stars_per_week":3.56,"_topics":[],"_last_commit_date":"2022-12-30T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["pgniewko@atomwise"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["atomwise"],"_pop_contributor_orgs_raw":["Atomwise, Inc."],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.12,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":2,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":6.47,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pgniewko/forward_forward_vhts/master/README.md","_readme_localurl":"pgniewko~forward_forward_vhts~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":894,"category":"sim","githuburl":"https://github.com/crowddynamics/crowddynamics","featured":null,"links":null,"description":null,"_repopath":"crowddynamics/crowddynamics","_reponame":"crowddynamics","_stars":28,"_forks":9,"_watches":9,"_language":"Python","_homepage":"https://jaantollander.com/post/how-to-implement-continuous-time-multi-agent-crowd-simulation/","_description":"crowddynamics: Continuous-time multi-agent crowd simulation engine implemented in Python using Numba and Numpy for performance.","_organization":"crowddynamics","_updated_at":"2023-01-31T00:00:00.000Z","_created_at":"2016-03-22T00:00:00.000Z","_age_weeks":361,"_stars_per_week":0.08,"_topics":["crowd-dynamics","multi-agent","continuous-time","crowd-simulation"],"_last_commit_date":"2020-01-02T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["jaantollander@aaltouniversity","pyup-bot@pyupio"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["aaltouniversity","pyupio"],"_pop_contributor_orgs_raw":["@pyupio","Aalto University"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":84,"_pop_updated_since_days":38,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":13.52,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/crowddynamics/crowddynamics/master/README.md","_readme_localurl":"crowddynamics~crowddynamics~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/crowddynamics/crowddynamics/master/requirements.txt","https://raw.githubusercontent.com/crowddynamics/crowddynamics/master/setup.py"],"_requirements_localurls":["crowddynamics~crowddynamics~requirements.txt","crowddynamics~crowddynamics~setup.py"]},{"index":578,"category":"term","githuburl":"https://github.com/matthewdeanmartin/terminaltables","featured":null,"links":null,"description":null,"_repopath":"matthewdeanmartin/terminaltables","_reponame":"terminaltables","_stars":25,"_forks":5,"_watches":0,"_language":"Python","_homepage":"https://robpol86.github.io/terminaltables","_description":"terminaltables: Generate simple tables in terminals from a nested list of strings.","_organization":"matthewdeanmartin","_updated_at":"2023-02-16T00:00:00.000Z","_created_at":"2021-12-04T00:00:00.000Z","_age_weeks":63,"_stars_per_week":0.39,"_topics":[],"_last_commit_date":"2022-01-30T00:00:00.000Z","_pop_contributor_count":10,"_pop_contributor_logins":["Robpol86","aleivag","bcho","kovacsbalu","liiight","matthewdeanmartin","mgorny@projg2","msabramo@adobe","zqqf16"],"_pop_contributor_orgs_len":2,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["adobe","projg2"],"_pop_contributor_orgs_raw":["@adobe","@projg2"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":15,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":12,"_pop_recent_releases_adjusted_count":12,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":17.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/matthewdeanmartin/terminaltables/master/README.md","_readme_localurl":"matthewdeanmartin~terminaltables~README.md","_requirements_filenames":["pyproject.toml","Pipfile"],"_requirements_giturls":["https://raw.githubusercontent.com/matthewdeanmartin/terminaltables/master/pyproject.toml","https://raw.githubusercontent.com/matthewdeanmartin/terminaltables/master/Pipfile"],"_requirements_localurls":["matthewdeanmartin~terminaltables~pyproject.toml","matthewdeanmartin~terminaltables~Pipfile"]},{"index":688,"category":"ml-dl","githuburl":"https://github.com/jerryyli/valhalla-nmt","featured":null,"links":null,"description":null,"_repopath":"jerryyli/valhalla-nmt","_reponame":"valhalla-nmt","_stars":23,"_forks":4,"_watches":1,"_language":"Python","_homepage":"","_description":"valhalla-nmt: Code repository for CVPR 2022 paper \"VALHALLA: Visual Hallucination for Machine Translation\"","_organization":"jerryyli","_updated_at":"2023-02-11T00:00:00.000Z","_created_at":"2022-03-22T00:00:00.000Z","_age_weeks":48,"_stars_per_week":0.48,"_topics":["computer-vision","machine-translation","multimodal-learning","natural-language-processing"],"_last_commit_date":"2023-02-19T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["JerryYLi","rpand002@mit-ibmwatsonailab"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["mit-ibmwatsonailab"],"_pop_contributor_orgs_raw":["MIT-IBM Watson AI Lab"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.33,"_pop_updated_issues_count":1,"_pop_closed_issues_count":1,"_pop_created_since_days":11,"_pop_updated_since_days":0,"_pop_recent_releases_count":2,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":1.0,"_pop_comment_count":2.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":2.0,"_pop_dependents_count":0,"_pop_score":21.39,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jerryyli/valhalla-nmt/master/README.md","_readme_localurl":"jerryyli~valhalla-nmt~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":37,"category":"math","githuburl":"https://github.com/jszymon/pacal","featured":null,"links":null,"description":null,"_repopath":"jszymon/pacal","_reponame":"pacal","_stars":21,"_forks":8,"_watches":6,"_language":"Python","_homepage":null,"_description":"PaCAL - ProbAbilistic CALculator","_organization":"jszymon","_updated_at":"2022-11-02T00:00:00.000Z","_created_at":"2014-08-04T00:00:00.000Z","_age_weeks":446,"_stars_per_week":0.05,"_topics":[],"_last_commit_date":"2022-11-02T00:00:00.000Z","_pop_contributor_count":8,"_pop_contributor_logins":["jszymon","mkorzen1729","ricardoV94"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":104,"_pop_updated_since_days":4,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":14.08,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/jszymon/pacal/master/README.md","_readme_localurl":"jszymon~pacal~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/jszymon/pacal/master/requirements.txt","https://raw.githubusercontent.com/jszymon/pacal/master/setup.py"],"_requirements_localurls":["jszymon~pacal~requirements.txt","jszymon~pacal~setup.py"]},{"index":840,"category":"data","githuburl":"https://github.com/codait/pardata","featured":null,"links":null,"description":null,"_repopath":"codait/pardata","_reponame":"pardata","_stars":18,"_forks":5,"_watches":11,"_language":"Python","_homepage":"https://pardata.readthedocs.io/en/latest/","_description":"codait/pardata","_organization":"codait","_updated_at":"2022-08-14T00:00:00.000Z","_created_at":"2020-11-17T00:00:00.000Z","_age_weeks":118,"_stars_per_week":0.15,"_topics":["dataset","python","machine-learning","artificial-intelligence","data-science"],"_last_commit_date":"2021-12-01T00:00:00.000Z","_pop_contributor_count":7,"_pop_contributor_logins":["cclauss@christianclauss","dependabot[bot]","djalova","edwardleardi@ibmcodait","renovate[bot]","tlzhu19@ibm","xuhdev@google"],"_pop_contributor_orgs_len":4,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["christianclauss","google","ibm","ibmcodait"],"_pop_contributor_orgs_raw":["@Google","@IBM @CODAIT ","Christian Clauss","IBM"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":28,"_pop_updated_since_days":15,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":3,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":17.57,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/codait/pardata/master/README.rst","_readme_localurl":"codait~pardata~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/codait/pardata/master/setup.py"],"_requirements_localurls":["codait~pardata~setup.py"]},{"index":919,"category":"study","githuburl":"https://github.com/anyscale/rl-course","featured":null,"links":null,"description":null,"_repopath":"anyscale/rl-course","_reponame":"rl-course","_stars":17,"_forks":0,"_watches":5,"_language":"Jupyter Notebook","_homepage":null,"_description":"anyscale/rl-course","_organization":"anyscale","_updated_at":"2023-02-07T00:00:00.000Z","_created_at":"2022-03-01T00:00:00.000Z","_age_weeks":51,"_stars_per_week":0.33,"_topics":[],"_last_commit_date":"2023-01-02T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["maxpumperla"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":4.96,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":12,"_pop_updated_since_days":2,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":9.67,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/anyscale/rl-course/master/README.md","_readme_localurl":"anyscale~rl-course~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/anyscale/rl-course/master/requirements.txt"],"_requirements_localurls":["anyscale~rl-course~requirements.txt"]},{"index":669,"category":"gis","githuburl":"https://github.com/zorzi-s/maprepair","featured":null,"links":null,"description":null,"_repopath":"zorzi-s/maprepair","_reponame":"MapRepair","_stars":17,"_forks":4,"_watches":2,"_language":"Python","_homepage":null,"_description":"MapRepair: Deep Cadastre Maps Alignment and Temporal Inconsistencies Fix in Satellite Images","_organization":"zorzi-s","_updated_at":"2023-02-17T00:00:00.000Z","_created_at":"2020-07-30T00:00:00.000Z","_age_weeks":133,"_stars_per_week":0.13,"_topics":[],"_last_commit_date":"2021-05-17T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["zorzi-s"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":31,"_pop_updated_since_days":22,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":2.72,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/zorzi-s/maprepair/master/README.md","_readme_localurl":"zorzi-s~maprepair~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]},{"index":679,"category":"util","githuburl":"https://github.com/markhershey/arxiv-dl","featured":null,"links":null,"description":null,"_repopath":"markhershey/arxiv-dl","_reponame":"arxiv-dl","_stars":16,"_forks":4,"_watches":2,"_language":"Python","_homepage":"https://pypi.org/project/arxiv-dl/","_description":"arxiv-dl: Command-line ArXiv & CVF (CVPR, ICCV, WACV) Paper Downloader","_organization":"markhershey","_updated_at":"2022-12-02T00:00:00.000Z","_created_at":"2021-01-21T00:00:00.000Z","_age_weeks":108,"_stars_per_week":0.15,"_topics":["arxiv","paper","downloader","command-line-tool","paper-with-code","cvpr"],"_last_commit_date":"2023-01-30T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["MarkHershey","lambdaofgod"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.37,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":25,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":3,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":14.52,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/markhershey/arxiv-dl/master/README.md","_readme_localurl":"markhershey~arxiv-dl~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/markhershey/arxiv-dl/master/requirements.txt","https://raw.githubusercontent.com/markhershey/arxiv-dl/master/setup.py"],"_requirements_localurls":["markhershey~arxiv-dl~requirements.txt","markhershey~arxiv-dl~setup.py"]},{"index":892,"category":"util","githuburl":"https://github.com/pyodide/micropip","featured":null,"links":null,"description":null,"_repopath":"pyodide/micropip","_reponame":"micropip","_stars":16,"_forks":5,"_watches":5,"_language":"Python","_homepage":"https://micropip.pyodide.org","_description":"micropip: A lightweight Python package installer for Pyodide","_organization":"pyodide","_updated_at":"2023-01-26T00:00:00.000Z","_created_at":"2022-09-15T00:00:00.000Z","_age_weeks":22,"_stars_per_week":0.7,"_topics":["package-installer","pyodide","python","webassembly"],"_last_commit_date":"2023-02-20T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["hoodmane@mitmathdepartment","joemarshall","mentalisttraceur","pre-commit-ci[bot]","rth","ryanking13"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["mitmathdepartment"],"_pop_contributor_orgs_raw":["MIT Math Department"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.71,"_pop_updated_issues_count":30,"_pop_closed_issues_count":27,"_pop_created_since_days":5,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":7,"_pop_recent_releases_adjusted_count":7,"_pop_issue_count":30.0,"_pop_comment_count":37.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.2,"_pop_dependents_count":0,"_pop_score":25.82,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/pyodide/micropip/master/README.md","_readme_localurl":"pyodide~micropip~README.md","_requirements_filenames":["pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/pyodide/micropip/master/pyproject.toml"],"_requirements_localurls":["pyodide~micropip~pyproject.toml"]},{"index":702,"category":"data","githuburl":"https://github.com/harangju/wikinet","featured":null,"links":null,"description":null,"_repopath":"harangju/wikinet","_reponame":"wikinet","_stars":10,"_forks":5,"_watches":3,"_language":"Jupyter Notebook","_homepage":"","_description":"wikinet: Python library for exploring networks of hyperlinked Wikipedia articles","_organization":"harangju","_updated_at":"2022-12-16T00:00:00.000Z","_created_at":"2019-08-05T00:00:00.000Z","_age_weeks":185,"_stars_per_week":0.05,"_topics":[],"_last_commit_date":"2022-01-25T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["erteich","harangju"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":43,"_pop_updated_since_days":13,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":8.18,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/harangju/wikinet/master/README.md","_readme_localurl":"harangju~wikinet~README.md","_requirements_filenames":["setup.py","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/harangju/wikinet/master/setup.py","https://raw.githubusercontent.com/harangju/wikinet/master/pyproject.toml"],"_requirements_localurls":["harangju~wikinet~setup.py","harangju~wikinet~pyproject.toml"]},{"index":608,"category":"typing","githuburl":"https://github.com/tk0miya/docutils-stubs","featured":null,"links":null,"description":null,"_repopath":"tk0miya/docutils-stubs","_reponame":"docutils-stubs","_stars":7,"_forks":5,"_watches":6,"_language":"Python","_homepage":null,"_description":"tk0miya/docutils-stubs","_organization":"tk0miya","_updated_at":"2022-01-02T00:00:00.000Z","_created_at":"2018-11-02T00:00:00.000Z","_age_weeks":224,"_stars_per_week":0.03,"_topics":[],"_last_commit_date":"2022-01-02T00:00:00.000Z","_pop_contributor_count":6,"_pop_contributor_logins":["Huy-Ngo","McSinyx@unist","cocoatomo","danieleades","flying-sheep@cellarity","tk0miya@timeintermedia(timedia)"],"_pop_contributor_orgs_len":3,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["cellarity","timeintermedia(timedia)","unist"],"_pop_contributor_orgs_raw":["@Cellarity","Time Intermedia (@timedia)","UNIST"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":52,"_pop_updated_since_days":14,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":4,"_pop_recent_releases_adjusted_count":4,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":18.15,"_readme_filename":"README.rst","_readme_giturl":"https://raw.githubusercontent.com/tk0miya/docutils-stubs/master/README.rst","_readme_localurl":"tk0miya~docutils-stubs~README.rst","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/tk0miya/docutils-stubs/master/setup.py"],"_requirements_localurls":["tk0miya~docutils-stubs~setup.py"]},{"index":920,"category":"ml-ops","githuburl":"https://github.com/anyscale/prefect-anyscale","featured":null,"links":null,"description":null,"_repopath":"anyscale/prefect-anyscale","_reponame":"prefect-anyscale","_stars":6,"_forks":1,"_watches":3,"_language":"Python","_homepage":null,"_description":"prefect-anyscale: Prefect integration with Anyscale","_organization":"anyscale","_updated_at":"2023-02-20T00:00:00.000Z","_created_at":"2022-11-07T00:00:00.000Z","_age_weeks":15,"_stars_per_week":0.39,"_topics":[],"_last_commit_date":"2023-02-15T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["pcmoritz@anyscale"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["anyscale"],"_pop_contributor_orgs_raw":["Anyscale"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.44,"_pop_updated_issues_count":10,"_pop_closed_issues_count":8,"_pop_created_since_days":4,"_pop_updated_since_days":0,"_pop_recent_releases_count":8,"_pop_recent_releases_estimated_tags":24,"_pop_recent_releases_adjusted_count":8,"_pop_issue_count":10.0,"_pop_comment_count":4.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.4,"_pop_dependents_count":0,"_pop_score":18.41,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/anyscale/prefect-anyscale/master/README.md","_readme_localurl":"anyscale~prefect-anyscale~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/anyscale/prefect-anyscale/master/setup.py"],"_requirements_localurls":["anyscale~prefect-anyscale~setup.py"]},{"index":180,"category":"sim","githuburl":"https://github.com/artemyk/dynpy","featured":null,"links":null,"description":null,"_repopath":"artemyk/dynpy","_reponame":"dynpy","_stars":6,"_forks":5,"_watches":3,"_language":"Python","_homepage":null,"_description":"dynpy: Dynamical systems for Python","_organization":"artemyk","_updated_at":"2022-12-27T00:00:00.000Z","_created_at":"2014-09-12T00:00:00.000Z","_age_weeks":440,"_stars_per_week":0.01,"_topics":[],"_last_commit_date":"2018-09-28T00:00:00.000Z","_pop_contributor_count":5,"_pop_contributor_logins":["artemyk","gdmcbain"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":103,"_pop_updated_since_days":54,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":6.51,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/artemyk/dynpy/master/README.md","_readme_localurl":"artemyk~dynpy~README.md","_requirements_filenames":["setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/artemyk/dynpy/master/setup.py"],"_requirements_localurls":["artemyk~dynpy~setup.py"]},{"index":911,"category":"data","githuburl":"https://github.com/malloydata/malloy-py","featured":null,"links":null,"description":null,"_repopath":"malloydata/malloy-py","_reponame":"malloy-py","_stars":3,"_forks":1,"_watches":4,"_language":"Python","_homepage":"","_description":"malloy-py: Python package for executing Malloy","_organization":"malloydata","_updated_at":"2023-02-07T00:00:00.000Z","_created_at":"2022-11-02T00:00:00.000Z","_age_weeks":16,"_stars_per_week":0.19,"_topics":["business-analytics","business-intelligence","data","data-modeling","python","sql","semantic-modeling"],"_last_commit_date":"2023-01-17T00:00:00.000Z","_pop_contributor_count":1,"_pop_contributor_logins":["gmaden"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":1.02,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":4,"_pop_updated_since_days":1,"_pop_recent_releases_count":1,"_pop_recent_releases_estimated_tags":15,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":10.02,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/malloydata/malloy-py/master/README.md","_readme_localurl":"malloydata~malloy-py~README.md","_requirements_filenames":["requirements.txt","pyproject.toml"],"_requirements_giturls":["https://raw.githubusercontent.com/malloydata/malloy-py/master/requirements.txt","https://raw.githubusercontent.com/malloydata/malloy-py/master/pyproject.toml"],"_requirements_localurls":["malloydata~malloy-py~requirements.txt","malloydata~malloy-py~pyproject.toml"]},{"index":526,"category":"gis","githuburl":"https://github.com/lycantropos/wagyu","featured":null,"links":null,"description":null,"_repopath":"lycantropos/wagyu","_reponame":"wagyu","_stars":3,"_forks":2,"_watches":1,"_language":"Python","_homepage":"https://github.com/mapbox/wagyu","_description":"wagyu: Python port of mapbox/wagyu library (with separate C++ binding)","_organization":"lycantropos","_updated_at":"2022-07-19T00:00:00.000Z","_created_at":"2020-06-30T00:00:00.000Z","_age_weeks":138,"_stars_per_week":0.02,"_topics":[],"_last_commit_date":"2020-11-21T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["lycantropos","synapticarbors"],"_pop_contributor_orgs_len":0,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":[],"_pop_contributor_orgs_raw":[],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.0,"_pop_updated_issues_count":0,"_pop_closed_issues_count":0,"_pop_created_since_days":32,"_pop_updated_since_days":27,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":2,"_pop_recent_releases_adjusted_count":2,"_pop_issue_count":0.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":5.4,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/lycantropos/wagyu/master/README.md","_readme_localurl":"lycantropos~wagyu~README.md","_requirements_filenames":["requirements.txt","setup.py"],"_requirements_giturls":["https://raw.githubusercontent.com/lycantropos/wagyu/master/requirements.txt","https://raw.githubusercontent.com/lycantropos/wagyu/master/setup.py"],"_requirements_localurls":["lycantropos~wagyu~requirements.txt","lycantropos~wagyu~setup.py"]},{"index":420,"category":"template","githuburl":"https://github.com/dylanhogg/python-project-template","featured":null,"links":null,"description":null,"_repopath":"dylanhogg/python-project-template","_reponame":"python-project-template","_stars":1,"_forks":0,"_watches":2,"_language":"Python","_homepage":"","_description":"python-project-template: A quick-start Python project template with helpful functionality and common libraries.","_organization":"dylanhogg","_updated_at":"2022-08-19T00:00:00.000Z","_created_at":"2020-02-12T00:00:00.000Z","_age_weeks":158,"_stars_per_week":0.01,"_topics":["python","template","jupyterlab","cookiecutter"],"_last_commit_date":"2022-08-19T00:00:00.000Z","_pop_contributor_count":2,"_pop_contributor_logins":["dependabot[bot]","dylanhogg@infocruncher"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["infocruncher"],"_pop_contributor_orgs_raw":["Infocruncher"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.04,"_pop_updated_issues_count":2,"_pop_closed_issues_count":0,"_pop_created_since_days":37,"_pop_updated_since_days":6,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":1,"_pop_recent_releases_adjusted_count":1,"_pop_issue_count":2.0,"_pop_comment_count":0.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":0.0,"_pop_dependents_count":0,"_pop_score":12.65,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/dylanhogg/python-project-template/master/README.md","_readme_localurl":"dylanhogg~python-project-template~README.md","_requirements_filenames":["requirements.txt"],"_requirements_giturls":["https://raw.githubusercontent.com/dylanhogg/python-project-template/master/requirements.txt"],"_requirements_localurls":["dylanhogg~python-project-template~requirements.txt"]},{"index":751,"category":"gis","githuburl":"https://github.com/edomel/boundaryvt","featured":null,"links":null,"description":null,"_repopath":"edomel/boundaryvt","_reponame":"BoundaryVT","_stars":1,"_forks":0,"_watches":2,"_language":"Python","_homepage":null,"_description":"edomel/boundaryvt","_organization":"edomel","_updated_at":"2022-12-19T00:00:00.000Z","_created_at":"2022-07-29T00:00:00.000Z","_age_weeks":29,"_stars_per_week":0.03,"_topics":[],"_last_commit_date":"2023-01-11T00:00:00.000Z","_pop_contributor_count":3,"_pop_contributor_logins":["ajadchhatkuli@ethzurich","edomel"],"_pop_contributor_orgs_len":1,"_pop_contributor_orgs_max":10,"_pop_contributor_orgs":["ethzurich"],"_pop_contributor_orgs_raw":["ETH Zurich"],"_pop_contributor_orgs_error":null,"_pop_commit_frequency":0.13,"_pop_updated_issues_count":1,"_pop_closed_issues_count":0,"_pop_created_since_days":7,"_pop_updated_since_days":0,"_pop_recent_releases_count":0,"_pop_recent_releases_estimated_tags":0,"_pop_recent_releases_adjusted_count":0,"_pop_issue_count":1.0,"_pop_comment_count":1.0,"_pop_comment_count_lookback_days":90.0,"_pop_comment_frequency":1.0,"_pop_dependents_count":0,"_pop_score":15.96,"_readme_filename":"README.md","_readme_giturl":"https://raw.githubusercontent.com/edomel/boundaryvt/master/README.md","_readme_localurl":"edomel~boundaryvt~README.md","_requirements_filenames":[],"_requirements_giturls":[],"_requirements_localurls":[]}]} \ No newline at end of file diff --git a/github_tags_data.json b/github_tags_data.json index 2be2160..5b3756e 100644 --- a/github_tags_data.json +++ b/github_tags_data.json @@ -24,8 +24,10 @@ "big-data": "big-data", "bitcoin": "bitcoin", "c-plus-plus": "c-plus-plus", + "classification": "classification", "cli": "cli", "closember": "closember", + "compiler": "compiler", "computer-vision": "computer-vision", "cookiecutter": "cookiecutter", "crawler": "crawler", @@ -45,12 +47,11 @@ "database": "database", "dataframe": "dataframe", "datascience": "datascience", - "dataset": "dataset", "datasets": "datasets", + "dataviz": "dataviz", "debugger": "debugger", "deep-learning": "deep-learning", "deep-neural-networks": "deep-neural-networks", - "deep-reinforcement-learning": "deep-reinforcement-learning", "deeplearning": "deeplearning", "distributed": "distributed", "distributed-computing": "distributed-computing", @@ -58,6 +59,7 @@ "docker": "docker", "ethereum": "ethereum", "etl": "etl", + "explainable-ai": "explainable-ai", "fastapi": "fastapi", "feature-engineering": "feature-engineering", "flask": "flask", @@ -68,19 +70,19 @@ "geospatial": "geospatial", "gis": "gis", "gpu": "gpu", - "gradient-boosting": "gradient-boosting", "graph-neural-networks": "graph-neural-networks", "gui": "gui", "hacktoberfest": "hacktoberfest", + "holoviews": "holoviews", "holoviz": "holoviz", "http": "http", "http-server": "http-server", "huggingface": "huggingface", "hyperparameter-optimization": "hyperparameter-optimization", + "hyperparameter-tuning": "hyperparameter-tuning", "image-classification": "image-classification", "image-processing": "image-processing", "inference": "inference", - "information-retrieval": "information-retrieval", "interpretability": "interpretability", "ipython": "ipython", "javascript": "javascript", @@ -94,21 +96,18 @@ "keras": "keras", "kubernetes": "kubernetes", "language-model": "language-model", - "latex": "latex", "library": "library", "linter": "linter", "linux": "linux", "logging": "logging", "machine-learning": "machine-learning", "machine-learning-algorithms": "machine-learning-algorithms", - "machine-translation": "machine-translation", "machinelearning": "machinelearning", "macos": "macos", "mapping": "mapping", "maps": "maps", "markdown": "markdown", "matplotlib": "matplotlib", - "microservices": "microservices", "ml": "ml", "mlops": "mlops", "models": "models", @@ -117,7 +116,6 @@ "natural-language-processing": "natural-language-processing", "neural-network": "neural-network", "neural-networks": "neural-networks", - "neural-search": "neural-search", "nlp": "nlp", "nlp-library": "nlp-library", "notebook": "notebook", @@ -129,11 +127,14 @@ "openapi": "openapi", "opengl": "opengl", "openstreetmap": "openstreetmap", + "optimization": "optimization", + "orm": "orm", "packaging": "packaging", "pallets": "pallets", "pandas": "pandas", "pandas-dataframe": "pandas-dataframe", "parallel": "parallel", + "performance": "performance", "pipeline": "pipeline", "plotly": "plotly", "plotly-dash": "plotly-dash", @@ -151,12 +152,11 @@ "pytorch": "pytorch", "r": "r", "raster": "raster", - "react": "react", "regression": "regression", "reinforcement-learning": "reinforcement-learning", "remote-sensing": "remote-sensing", "rest": "rest", - "robotics": "robotics", + "satellite-imagery": "satellite-imagery", "scikit-learn": "scikit-learn", "security": "security", "semantic-search": "semantic-search", @@ -171,6 +171,7 @@ "stable-diffusion": "stable-diffusion", "starlette": "starlette", "static-analysis": "static-analysis", + "static-code-analysis": "static-code-analysis", "statistics": "statistics", "streamlit": "streamlit", "super-resolution": "super-resolution", @@ -183,14 +184,13 @@ "time": "time", "time-series": "time-series", "time-series-analysis": "time-series-analysis", - "topic-modeling": "topic-modeling", "transfer-learning": "transfer-learning", "transformer": "transformer", "transformers": "transformers", "trio": "trio", - "ui": "ui", "visualization": "visualization", "web": "web", + "web-framework": "web-framework", "windows": "windows", "word-embeddings": "word-embeddings", "workflow": "workflow", From b49d813c4570ae0d87e17a0ef6eedd97e3c792a0 Mon Sep 17 00:00:00 2001 From: Dylan Hogg Date: Wed, 22 Feb 2023 13:59:03 +1100 Subject: [PATCH 13/20] Updated scorer v2. --- src/library/scorer.py | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/src/library/scorer.py b/src/library/scorer.py index b2688e0..41efde0 100644 --- a/src/library/scorer.py +++ b/src/library/scorer.py @@ -13,27 +13,27 @@ def score(row): # Weights for various parameters. CREATED_SINCE_WEIGHT = 1 UPDATED_SINCE_WEIGHT = -1 - CONTRIBUTOR_COUNT_WEIGHT = 2 + CONTRIBUTOR_COUNT_WEIGHT = 1 ORG_COUNT_WEIGHT = 1 COMMIT_FREQUENCY_WEIGHT = 1 RECENT_RELEASES_WEIGHT = 0.5 CLOSED_ISSUES_WEIGHT = 0.5 UPDATED_ISSUES_WEIGHT = 0.5 - COMMENT_FREQUENCY_WEIGHT = 1 - DEPENDENTS_COUNT_WEIGHT = 2 + COMMENT_FREQUENCY_WEIGHT = 1.5 + STARS_PER_WEEK_WEIGHT = 6 # Max thresholds for various parameters. CREATED_SINCE_THRESHOLD = 120 UPDATED_SINCE_THRESHOLD = 120 - CONTRIBUTOR_COUNT_THRESHOLD = 5000 + CONTRIBUTOR_COUNT_THRESHOLD = 2000 ORG_COUNT_THRESHOLD = 10 - COMMIT_FREQUENCY_THRESHOLD = 1000 - RECENT_RELEASES_THRESHOLD = 26 + COMMIT_FREQUENCY_THRESHOLD = 500 + RECENT_RELEASES_THRESHOLD = 10 CLOSED_ISSUES_THRESHOLD = 5000 UPDATED_ISSUES_THRESHOLD = 5000 COMMENT_FREQUENCY_THRESHOLD = 15 - DEPENDENTS_COUNT_THRESHOLD = 500000 - + STARS_PER_WEEK_THRESHOLD = 400 + def _get_param_score(param, max_value, weight=1.0): """Return paramater score given its current value, max value and parameter weight.""" @@ -43,7 +43,7 @@ def _get_param_score(param, max_value, weight=1.0): CONTRIBUTOR_COUNT_WEIGHT + ORG_COUNT_WEIGHT + COMMIT_FREQUENCY_WEIGHT + RECENT_RELEASES_WEIGHT + CLOSED_ISSUES_WEIGHT + UPDATED_ISSUES_WEIGHT + - COMMENT_FREQUENCY_WEIGHT + DEPENDENTS_COUNT_WEIGHT) + COMMENT_FREQUENCY_WEIGHT + STARS_PER_WEEK_WEIGHT) score_sum = ((_get_param_score(row['_pop_created_since_days'], CREATED_SINCE_THRESHOLD, CREATED_SINCE_WEIGHT)) + @@ -63,9 +63,10 @@ def _get_param_score(param, max_value, weight=1.0): UPDATED_ISSUES_THRESHOLD, UPDATED_ISSUES_WEIGHT)) + (_get_param_score(row['_pop_comment_frequency'], COMMENT_FREQUENCY_THRESHOLD, COMMENT_FREQUENCY_WEIGHT)) + - (_get_param_score(row['_pop_dependents_count'], - DEPENDENTS_COUNT_THRESHOLD, DEPENDENTS_COUNT_WEIGHT))) + (_get_param_score(row['_stars_per_week'], + STARS_PER_WEEK_THRESHOLD, STARS_PER_WEEK_WEIGHT)) + ) criticality_score = round(100 * score_sum / total_weight, 5) - logger.info(f"Calculated {criticality_score=} for {row['_repopath']}") + logger.trace(f"Calculated {criticality_score=} for {row['_repopath']}") return criticality_score From 4b3b860daecaad148358c4efb3a59881de89321e Mon Sep 17 00:00:00 2001 From: Dylan Hogg Date: Wed, 22 Feb 2023 16:11:37 +1100 Subject: [PATCH 14/20] Remove dependents_count and refactoring. --- src/app.py | 3 +- src/library/metrics.py | 243 +++++++++++-------------------------- src/library/postprocess.py | 2 - src/library/render.py | 27 ++--- 4 files changed, 83 insertions(+), 192 deletions(-) diff --git a/src/app.py b/src/app.py index c5d4c1a..d4bf0e8 100644 --- a/src/app.py +++ b/src/app.py @@ -18,9 +18,10 @@ def main(): def write_tags(): + # TEMP: remove once tag filtering implemented github_json_filename = "github_data.json" github_tags_json_filename = "github_tags_data.json" - postprocess.write_tags(github_json_filename, github_tags_json_filename, 200) + postprocess.write_tags(github_json_filename, github_tags_json_filename, most_common=200) if __name__ == "__main__": diff --git a/src/library/metrics.py b/src/library/metrics.py index d319d3b..cdc8ae0 100644 --- a/src/library/metrics.py +++ b/src/library/metrics.py @@ -1,9 +1,6 @@ -import requests import time -import re from datetime import datetime, timedelta -from typing import List -from tenacity import retry, wait_exponential, stop_after_attempt, retry_if_exception_type +from tenacity import retry, wait_exponential, stop_after_attempt from loguru import logger from library.ghw import GithubWrapper from joblib import Memory @@ -13,34 +10,26 @@ memory = Memory(".joblib_cache") +def log_retry(state): + msg = f"Tenacity retry {state.fn.__name__}: {state.attempt_number=}, {state.idle_for=}, {state.seconds_since_start=}" + if state.attempt_number < 1: + logger.info(msg) + else: + logger.exception(msg) + + class StandardMetrics: @staticmethod - @memory.cache(ignore=["token_list"]) - @retry( - wait=wait_exponential(multiplier=2, min=10, max=1200), - stop=stop_after_attempt(50), - before_sleep=lambda x: logger.exception( - f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), - ) - @retry( - wait=wait_exponential(multiplier=2, min=10, max=1200), - stop=stop_after_attempt(50), - before_sleep=lambda x: logger.exception( - f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), - ) - def get_repo_topics(token_list: List[str], name: str): - return GithubWrapper(token_list).get_repo(name).get_topics() + @memory.cache(ignore=["ghw"]) + @retry(wait=wait_exponential(multiplier=2, min=10, max=1200), stop=stop_after_attempt(50), before_sleep=log_retry) + def get_repo_topics(ghw: GithubWrapper, name: str): + return ghw.get_repo(name).get_topics() @staticmethod - @memory.cache(ignore=["token_list"]) - @retry( - wait=wait_exponential(multiplier=2, min=10, max=1200), - stop=stop_after_attempt(50), - before_sleep=lambda x: logger.exception( - f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), - ) - def last_commit_date(token_list: List[str], name: str): - modified = GithubWrapper(token_list).get_repo(name).get_commits().get_page(0)[0].last_modified + @memory.cache(ignore=["ghw"]) + @retry(wait=wait_exponential(multiplier=2, min=10, max=1200), stop=stop_after_attempt(50), before_sleep=log_retry) + def last_commit_date(ghw: GithubWrapper, name: str): + modified = ghw.get_repo(name).get_commits().get_page(0)[0].last_modified return datetime.strptime( modified, "%a, %d %b %Y %H:%M:%S %Z", @@ -54,34 +43,18 @@ class PopularityMetrics: """ @staticmethod - @memory.cache(ignore=["token_list"]) - @retry( - wait=wait_exponential(multiplier=2, min=10, max=1200), - stop=stop_after_attempt(50), - before_sleep=lambda x: logger.exception( - f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), - ) - def _get_contributors(token_list: List[str], name: str, anon: str = "true") -> PaginatedList: - repo = GithubWrapper(token_list).get_repo(name) + @memory.cache(ignore=["ghw"]) + @retry(wait=wait_exponential(multiplier=2, min=10, max=1200), stop=stop_after_attempt(50), before_sleep=log_retry) + def _get_contributors(ghw: GithubWrapper, name: str, anon: str = "true") -> PaginatedList: + repo = ghw.get_repo(name) return repo.get_contributors(anon=anon) @staticmethod - @memory.cache(ignore=["token_list"]) - @retry( - wait=wait_exponential(multiplier=2, min=10, max=1200), - stop=stop_after_attempt(50), - before_sleep=lambda x: logger.exception( - f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), - ) - @retry( - wait=wait_exponential(multiplier=2, min=10, max=1200), - stop=stop_after_attempt(50), - retry=retry_if_exception_type(RateLimitExceededException), - before_sleep=lambda x: logger.exception(f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), - ) - def contributor_count(token_list: List[str], name: str) -> int: + @memory.cache(ignore=["ghw"]) + @retry(wait=wait_exponential(multiplier=2, min=10, max=1200), stop=stop_after_attempt(50), before_sleep=log_retry) + def contributor_count(ghw: GithubWrapper, name: str) -> int: try: - return PopularityMetrics._get_contributors(token_list, name).totalCount + return PopularityMetrics._get_contributors(ghw, name).totalCount except RateLimitExceededException as ex: logger.error(f"contributor_count rate exception: {ex}") raise ex @@ -96,15 +69,10 @@ def contributor_count(token_list: List[str], name: str) -> int: # return contributor.company @staticmethod - @memory.cache(ignore=["token_list"]) - @retry( - wait=wait_exponential(multiplier=2, min=10, max=1200), - stop=stop_after_attempt(50), - retry=retry_if_exception_type(RateLimitExceededException), - before_sleep=lambda x: logger.exception(f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), - ) - def contributor_orgs_dict(token_list: List[str], name: str, sleep: int = 1, max_contrib_count: int = 10) -> dict: - repo = GithubWrapper(token_list).get_repo(name) # TODO: randomise token_list in ghw?? + @memory.cache(ignore=["ghw"]) + @retry(wait=wait_exponential(multiplier=2, min=10, max=1200), stop=stop_after_attempt(50), before_sleep=log_retry) + def contributor_orgs_dict(ghw: GithubWrapper, name: str, sleep: int = 1, max_contrib_count: int = 10) -> dict: + repo = ghw.get_repo(name) # TODO: randomise token_list in ghw?? def _filter_name(org_name): return org_name.lower().replace(' ', '').replace(',inc.', '').replace('inc.', '') \ @@ -133,39 +101,33 @@ def _filter_name(org_name): contributor_logins.add(contributor.login) except RateLimitExceededException as ex: logger.warning(f"get_contributor_company rate exception ({sleep=}): {ex}") - # TODO: add sleep and retry raise ex except Exception as ex: # Typically a large number of contributors - # TODO: add sleep and retry logger.warning(f"get_contributor_company {type(ex)} exception: {ex}") return { - "_pop_contributor_logins": None, + # "_pop_contributor_logins": None, "_pop_contributor_orgs_len": -1, - "_pop_contributor_orgs_max": max_contrib_count, - "_pop_contributor_orgs": None, - "_pop_contributor_orgs_raw": None, - "_pop_contributor_orgs_error": str(ex) + # "_pop_contributor_orgs_max": max_contrib_count, + # "_pop_contributor_orgs": None, + # "_pop_contributor_orgs_raw": None, + "_pop_contributor_orgs_error": len(str(ex)) + # "_pop_contributor_orgs_error": str(ex) } return { - "_pop_contributor_logins": sorted(contributor_logins), + # "_pop_contributor_logins": sorted(contributor_logins), "_pop_contributor_orgs_len": len(orgs), - "_pop_contributor_orgs_max": max_contrib_count, - "_pop_contributor_orgs": sorted(orgs), - "_pop_contributor_orgs_raw": sorted(orgs_raw), - "_pop_contributor_orgs_error": None + # "_pop_contributor_orgs_max": max_contrib_count, + # "_pop_contributor_orgs": sorted(orgs), + # "_pop_contributor_orgs_raw": sorted(orgs_raw), + # "_pop_contributor_orgs_error": None } @staticmethod - @memory.cache(ignore=["token_list"]) - @retry( - wait=wait_exponential(multiplier=2, min=10, max=1200), - stop=stop_after_attempt(50), - before_sleep=lambda x: logger.exception( - f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), - ) - def commit_frequency(token_list: List[str], name: str) -> float: - repo = GithubWrapper(token_list).get_repo(name) + @memory.cache(ignore=["ghw"]) + @retry(wait=wait_exponential(multiplier=2, min=10, max=1200), stop=stop_after_attempt(50), before_sleep=log_retry) + def commit_frequency(ghw: GithubWrapper, name: str) -> float: + repo = ghw.get_repo(name) # NOTE: get_stats_commit_activity Returns the last year of commit activity grouped by week stats_commit_activity = repo.get_stats_commit_activity() assert len(stats_commit_activity) == 52 @@ -175,46 +137,31 @@ def commit_frequency(token_list: List[str], name: str) -> float: return round(total / len(stats_commit_activity), 2) @staticmethod - @memory.cache(ignore=["token_list"]) - @retry( - wait=wait_exponential(multiplier=2, min=10, max=1200), - stop=stop_after_attempt(50), - before_sleep=lambda x: logger.exception( - f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), - ) - def updated_issues_count(token_list: List[str], name: str) -> int: + @memory.cache(ignore=["ghw"]) + @retry(wait=wait_exponential(multiplier=2, min=10, max=1200), stop=stop_after_attempt(50), before_sleep=log_retry) + def updated_issues_count(ghw: GithubWrapper, name: str) -> int: ISSUE_LOOKBACK_DAYS = 90 - repo = GithubWrapper(token_list).get_repo(name) + repo = ghw.get_repo(name) issues_since_time = datetime.utcnow() - timedelta(days=ISSUE_LOOKBACK_DAYS) # NOTE: get_issues includes PR's return repo.get_issues(state='all', since=issues_since_time).totalCount @staticmethod - @memory.cache(ignore=["token_list"]) - @retry( - wait=wait_exponential(multiplier=2, min=10, max=1200), - stop=stop_after_attempt(50), - before_sleep=lambda x: logger.exception( - f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), - ) - def closed_issues_count(token_list: List[str], name: str) -> int: + @memory.cache(ignore=["ghw"]) + @retry(wait=wait_exponential(multiplier=2, min=10, max=1200), stop=stop_after_attempt(50), before_sleep=log_retry) + def closed_issues_count(ghw: GithubWrapper, name: str) -> int: ISSUE_LOOKBACK_DAYS = 90 # TODO: make generic with updated_issues_count? - repo = GithubWrapper(token_list).get_repo(name) + repo = ghw.get_repo(name) issues_since_time = datetime.utcnow() - timedelta(days=ISSUE_LOOKBACK_DAYS) # NOTE: get_issues includes PR's return repo.get_issues(state='closed', since=issues_since_time).totalCount @staticmethod - @memory.cache(ignore=["token_list"]) - @retry( - wait=wait_exponential(multiplier=2, min=10, max=1200), - stop=stop_after_attempt(50), - before_sleep=lambda x: logger.exception( - f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), - ) - def created_since_days(token_list: List[str], name: str) -> int: - repo = GithubWrapper(token_list).get_repo(name) + @memory.cache(ignore=["ghw"]) + @retry(wait=wait_exponential(multiplier=2, min=10, max=1200), stop=stop_after_attempt(50), before_sleep=log_retry) + def created_since_days(ghw: GithubWrapper, name: str) -> int: + repo = ghw.get_repo(name) creation_time = repo.created_at # See if there exist any commits before this repository creation @@ -234,31 +181,21 @@ def created_since_days(token_list: List[str], name: str) -> int: return round(difference.days / 30) @staticmethod - @memory.cache(ignore=["token_list"]) - @retry( - wait=wait_exponential(multiplier=2, min=10, max=1200), - stop=stop_after_attempt(50), - before_sleep=lambda x: logger.exception( - f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), - ) - def updated_since_days(token_list: List[str], name: str) -> int: - repo = GithubWrapper(token_list).get_repo(name) + @memory.cache(ignore=["ghw"]) + @retry(wait=wait_exponential(multiplier=2, min=10, max=1200), stop=stop_after_attempt(50), before_sleep=log_retry) + def updated_since_days(ghw: GithubWrapper, name: str) -> int: + repo = ghw.get_repo(name) last_commit = repo.get_commits()[0] last_commit_time = last_commit.commit.author.date difference = datetime.utcnow() - last_commit_time return round(difference.days / 30) @staticmethod - @memory.cache(ignore=["token_list"]) - @retry( - wait=wait_exponential(multiplier=2, min=10, max=1200), - stop=stop_after_attempt(50), - before_sleep=lambda x: logger.exception( - f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), - ) - def recent_releases_count_dict(token_list: List[str], name: str) -> dict: + @memory.cache(ignore=["ghw"]) + @retry(wait=wait_exponential(multiplier=2, min=10, max=1200), stop=stop_after_attempt(50), before_sleep=log_retry) + def recent_releases_count_dict(ghw: GithubWrapper, name: str) -> dict: RELEASE_LOOKBACK_DAYS = 365 - repo = GithubWrapper(token_list).get_repo(name) + repo = ghw.get_repo(name) recent_releases_count = 0 for release in repo.get_releases(): if (datetime.utcnow() - @@ -270,7 +207,7 @@ def recent_releases_count_dict(token_list: List[str], name: str) -> dict: # Make rough estimation of tags used in last year from overall # project history. This query is extremely expensive, so instead # do the rough calculation. - days_since_creation = PopularityMetrics.created_since_days(token_list, name) * 30 + days_since_creation = PopularityMetrics.created_since_days(ghw, name) * 30 if days_since_creation: total_tags = repo.get_tags().totalCount estimated_tags = round( @@ -287,16 +224,11 @@ def recent_releases_count_dict(token_list: List[str], name: str) -> dict: } @staticmethod - @memory.cache(ignore=["token_list"]) - @retry( - wait=wait_exponential(multiplier=2, min=10, max=1200), - stop=stop_after_attempt(50), - before_sleep=lambda x: logger.exception( - f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), - ) - def comment_frequency(token_list: List[str], name: str) -> dict: + @memory.cache(ignore=["ghw"]) + @retry(wait=wait_exponential(multiplier=2, min=10, max=1200), stop=stop_after_attempt(50), before_sleep=log_retry) + def comment_frequency(ghw: GithubWrapper, name: str) -> dict: ISSUE_LOOKBACK_DAYS = 90 - repo = GithubWrapper(token_list).get_repo(name) + repo = ghw.get_repo(name) issues_since_time = datetime.utcnow() - timedelta(days=ISSUE_LOOKBACK_DAYS) # NOTE: get_issues includes PR's issue_count = repo.get_issues(state='all', since=issues_since_time).totalCount @@ -320,40 +252,3 @@ def comment_frequency(token_list: List[str], name: str) -> dict: "_pop_comment_count_lookback_days": ISSUE_LOOKBACK_DAYS, "_pop_comment_frequency": comment_frequency, } - - @staticmethod - @memory.cache(ignore=["token_list"]) - @retry( - wait=wait_exponential(multiplier=2, min=10, max=1200), - stop=stop_after_attempt(50), - retry=retry_if_exception_type(RuntimeError), - before_sleep=lambda x: logger.exception(f"Tenacity retry {x.fn.__name__}: {x.attempt_number=}, {x.idle_for=}, {x.seconds_since_start=}"), - ) - def dependents_count(token_list: List[str], name: str, sleep: int = 1) -> int: - return 0 # TODO: dependents_count is expensive and can have many fails - - ghw = GithubWrapper(token_list) - DEPENDENTS_REGEX = re.compile(b'.*[^0-9,]([0-9,]+).*commit results', re.DOTALL) - # TODO: Take package manager dependency trees into account. If we decide - # to replace this, then find a solution for C/C++ as well. - # parsed_url = urllib.parse.urlparse(self.url) - # repo_name = parsed_url.path.strip('/') - # TODO: add in gh token in url?? - dependents_url = f'https://github.com/search?q="{name}"&type=commits' - logger.trace(f"Call dependents_count: {dependents_url=}, {name=}") - content = b'' - time.sleep(sleep) - - # result = requests.get(dependents_url) - result = requests.get(dependents_url, headers={"Authorization": f"TOK:{ghw.token()}"}) - if result.status_code == 429: # 429=Too Many Requests - logger.error(f"dependents_url requests, {name=}, {result.status_code=}, {result=}") - raise RuntimeError(f"dependents_url exception, {name=}, {result.status_code=}, {result=}") - if result.status_code != 200: - logger.error(f"dependents_url requests, {name=}, {result.status_code=}, {result=}") - raise Exception(f"dependents_url exception, {name=}, {result.status_code=}, {result=}") - - match = DEPENDENTS_REGEX.match(content) - if not match: - return 0 - return int(match.group(1).replace(b',', b'')) diff --git a/src/library/postprocess.py b/src/library/postprocess.py index 75f5fe2..7f35f04 100644 --- a/src/library/postprocess.py +++ b/src/library/postprocess.py @@ -1,8 +1,6 @@ import json import itertools from collections import Counter -from datetime import datetime -from loguru import logger def write_tags(github_json_filename: str, github_tags_json_filename: str, most_common: int): diff --git a/src/library/render.py b/src/library/render.py index b783f12..d35fe83 100644 --- a/src/library/render.py +++ b/src/library/render.py @@ -131,59 +131,56 @@ def process(df_input: pd.DataFrame, token_list: List[str]) -> pd.DataFrame: logger.info(f"Add popularity metric columns...") std_metrics = StandardMetrics() t0 = datetime.now() - _column_apply(df, "_topics", "_repopath", lambda x: std_metrics.get_repo_topics(token_list, x)) - _column_apply(df, "_last_commit_date", "_repopath", lambda x: std_metrics.last_commit_date(token_list, x)) + _column_apply(df, "_topics", "_repopath", lambda x: std_metrics.get_repo_topics(ghw, x)) + _column_apply(df, "_last_commit_date", "_repopath", lambda x: std_metrics.last_commit_date(ghw, x)) timing_std = datetime.now() - t0 logger.info(f"Timing: {timing_std.total_seconds()=}") # Add popularity metric columns ------------------------------------------------ logger.info(f"Add popularity metric columns...") pop_metrics = PopularityMetrics() + ghw = GithubWrapper(token_list) t0 = datetime.now() df["_pop_contributor_count"] = df["_repopath"].apply( - lambda x: pop_metrics.contributor_count(token_list, x) + lambda x: pop_metrics.contributor_count(ghw, x) ) # TODO: optimise contributor_orgs_dict # Long, many interations thru repo contibutors for company info # Can rate limit, esp if sleep < 2sec - df_pop_contributor_orgs_dict = df.apply(lambda row: pop_metrics.contributor_orgs_dict(token_list, row["_repopath"]), + df_pop_contributor_orgs_dict = df.apply(lambda row: pop_metrics.contributor_orgs_dict(ghw, row["_repopath"]), axis="columns", result_type="expand") df = pd.concat([df, df_pop_contributor_orgs_dict], axis="columns") df["_pop_commit_frequency"] = df["_repopath"].apply( - lambda x: pop_metrics.commit_frequency(token_list, x) + lambda x: pop_metrics.commit_frequency(ghw, x) ) df["_pop_updated_issues_count"] = df["_repopath"].apply( - lambda x: pop_metrics.updated_issues_count(token_list, x) + lambda x: pop_metrics.updated_issues_count(ghw, x) ) df["_pop_closed_issues_count"] = df["_repopath"].apply( - lambda x: pop_metrics.closed_issues_count(token_list, x) + lambda x: pop_metrics.closed_issues_count(ghw, x) ) df["_pop_created_since_days"] = df["_repopath"].apply( - lambda x: pop_metrics.created_since_days(token_list, x) + lambda x: pop_metrics.created_since_days(ghw, x) ) df["_pop_updated_since_days"] = df["_repopath"].apply( - lambda x: pop_metrics.updated_since_days(token_list, x) + lambda x: pop_metrics.updated_since_days(ghw, x) ) - df_pop_recent_releases_count = df.apply(lambda row: pop_metrics.recent_releases_count_dict(token_list, row["_repopath"]), + df_pop_recent_releases_count = df.apply(lambda row: pop_metrics.recent_releases_count_dict(ghw, row["_repopath"]), axis="columns", result_type="expand") df = pd.concat([df, df_pop_recent_releases_count], axis="columns") - df_pop_comment_frequency = df.apply(lambda row: pop_metrics.comment_frequency(token_list, row["_repopath"]), + df_pop_comment_frequency = df.apply(lambda row: pop_metrics.comment_frequency(ghw, row["_repopath"]), axis="columns", result_type="expand") df = pd.concat([df, df_pop_comment_frequency], axis="columns") - # TODO: dependents_count is expensive and can have many fails - df["_pop_dependents_count"] = df["_repopath"].apply( - lambda x: pop_metrics.dependents_count(token_list, x) - ) timing_pop = datetime.now() - t0 logger.info(f"Timing: {timing_lookup.total_seconds()=}") logger.info(f"Timing: {timing_std.total_seconds()=}") From 01f1bf1e9d7960988b7684cc8c17803357b03d41 Mon Sep 17 00:00:00 2001 From: Dylan Hogg Date: Mon, 27 Feb 2023 16:43:02 +1100 Subject: [PATCH 15/20] Update test with correct token_list and df.columns. --- tests/test_render.py | 37 ++++++++++++++++++------------------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/tests/test_render.py b/tests/test_render.py index 7aa5d48..2f95838 100644 --- a/tests/test_render.py +++ b/tests/test_render.py @@ -3,7 +3,9 @@ def test_render_process(): - token = env.get("GITHUB_ACCESS_TOKEN") + token_delim = env.get("GITHUB_ACCESS_TOKEN") + token_list = token_delim.split("|") + csv_location = "tests/test_repos_source.csv" df_input = render.get_input_data(csv_location) @@ -15,7 +17,7 @@ def test_render_process(): # test_repos = ["https://github.com/dylanhogg/crazy-awesome-python"] df_input = df_input[df_input["githuburl"].isin(test_repos)] assert len(df_input) == len(test_repos) - df = render.process(df_input, token) + df = render.process(df_input, token_list) logger.info(f"{df.shape=}") logger.info(f"{df.columns=}") @@ -24,20 +26,17 @@ def test_render_process(): logger.info(df.iloc[i]) assert len(df) == len(df_input), "Unexpected number of rows" - # logger.info(f"{df.columns=}") - assert list(df.columns) == [ - "category", "githuburl", "featured", "links", "description", - "_repopath", "_reponame", "_stars", "_forks", "_watches", "_topics", - "_language", "_homepage", "_description", "_organization", - "_updated_at", "_last_commit_date", "_created_at", "_age_weeks", - "_stars_per_week", "_pop_contributor_count", - "_pop_contributor_orgs_len", "_pop_contributor_orgs_max", - "_pop_contributor_orgs", "_pop_contributor_orgs_error", - "_pop_commit_frequency", "_pop_updated_issues_count", - "_pop_closed_issues_count", "_pop_created_since_days", - "_pop_updated_since_days", "_pop_recent_releases_count", - "_pop_recent_releases_estimated_tags", - "_pop_recent_releases_adjusted_count", "_pop_issue_count", - "_pop_comment_count", "_pop_comment_frequency", - "_pop_comment_frequency_lookback_days", "_pop_dependents_count", "_pop_score" - ] + # logger.warning(f"{df.columns=}") + assert list(df.columns) == ["category", "githuburl", "featured", "links", "description", + "_repopath", "_reponame", "_stars", "_forks", "_watches", "_language", + "_homepage", "_description", "_organization", "_updated_at", + "_created_at", "_age_weeks", "_stars_per_week", "_topics", + "_last_commit_date", "_pop_contributor_count", + "_pop_contributor_orgs_len", "_pop_commit_frequency", + "_pop_updated_issues_count", "_pop_closed_issues_count", + "_pop_created_since_days", "_pop_updated_since_days", + "_pop_recent_releases_count", "_pop_recent_releases_estimated_tags", + "_pop_recent_releases_adjusted_count", "_pop_issue_count", + "_pop_comment_count", "_pop_comment_count_lookback_days", + "_pop_comment_frequency", "_pop_score" + ] From 8bd559838de75145bf72b66bff133b6ee4cc1974 Mon Sep 17 00:00:00 2001 From: Dylan Hogg Date: Mon, 27 Feb 2023 16:45:04 +1100 Subject: [PATCH 16/20] Black update. --- src/library/metrics.py | 41 +++++++++++++++++---------- src/library/render.py | 63 +++++++++++++++++++----------------------- src/library/scorer.py | 54 +++++++++++++++++++----------------- tests/test_render.py | 50 ++++++++++++++++++++++++--------- 4 files changed, 119 insertions(+), 89 deletions(-) diff --git a/src/library/metrics.py b/src/library/metrics.py index cdc8ae0..09d76c6 100644 --- a/src/library/metrics.py +++ b/src/library/metrics.py @@ -11,7 +11,9 @@ def log_retry(state): - msg = f"Tenacity retry {state.fn.__name__}: {state.attempt_number=}, {state.idle_for=}, {state.seconds_since_start=}" + msg = ( + f"Tenacity retry {state.fn.__name__}: {state.attempt_number=}, {state.idle_for=}, {state.seconds_since_start=}" + ) if state.attempt_number < 1: logger.info(msg) else: @@ -75,8 +77,15 @@ def contributor_orgs_dict(ghw: GithubWrapper, name: str, sleep: int = 1, max_con repo = ghw.get_repo(name) # TODO: randomise token_list in ghw?? def _filter_name(org_name): - return org_name.lower().replace(' ', '').replace(',inc.', '').replace('inc.', '') \ - .replace('llc', '').replace('@', '').rstrip(',') + return ( + org_name.lower() + .replace(" ", "") + .replace(",inc.", "") + .replace("inc.", "") + .replace("llc", "") + .replace("@", "") + .rstrip(",") + ) contributor_logins = set() orgs = set() @@ -91,8 +100,10 @@ def _filter_name(org_name): time.sleep(sleep) if contributor_company: filtered_contributor_company = _filter_name(contributor_company) - logger.info(f"{i}. Company hit : {name=}, {contributor.login=}, " - f"{contributor_company=}, {filtered_contributor_company=}") + logger.info( + f"{i}. Company hit : {name=}, {contributor.login=}, " + f"{contributor_company=}, {filtered_contributor_company=}" + ) orgs_raw.add(contributor_company) orgs.add(filtered_contributor_company) contributor_logins.add(f"{contributor.login}@{filtered_contributor_company}") @@ -144,7 +155,7 @@ def updated_issues_count(ghw: GithubWrapper, name: str) -> int: repo = ghw.get_repo(name) issues_since_time = datetime.utcnow() - timedelta(days=ISSUE_LOOKBACK_DAYS) # NOTE: get_issues includes PR's - return repo.get_issues(state='all', since=issues_since_time).totalCount + return repo.get_issues(state="all", since=issues_since_time).totalCount @staticmethod @memory.cache(ignore=["ghw"]) @@ -155,7 +166,7 @@ def closed_issues_count(ghw: GithubWrapper, name: str) -> int: repo = ghw.get_repo(name) issues_since_time = datetime.utcnow() - timedelta(days=ISSUE_LOOKBACK_DAYS) # NOTE: get_issues includes PR's - return repo.get_issues(state='closed', since=issues_since_time).totalCount + return repo.get_issues(state="closed", since=issues_since_time).totalCount @staticmethod @memory.cache(ignore=["ghw"]) @@ -170,8 +181,10 @@ def created_since_days(ghw: GithubWrapper, name: str) -> int: # commit date. prior_creation_commit_count = repo.get_commits(until=creation_time).totalCount if prior_creation_commit_count: - logger.warning(f"{name} has {prior_creation_commit_count=}, repository creation time is not correct, " - f"and it was residing somewhere else before") + logger.warning( + f"{name} has {prior_creation_commit_count=}, repository creation time is not correct, " + f"and it was residing somewhere else before" + ) # TODO: see how often this happens # first_commit_time = self.get_first_commit_time() # if first_commit_time: @@ -198,8 +211,7 @@ def recent_releases_count_dict(ghw: GithubWrapper, name: str) -> dict: repo = ghw.get_repo(name) recent_releases_count = 0 for release in repo.get_releases(): - if (datetime.utcnow() - - release.created_at).days > RELEASE_LOOKBACK_DAYS: + if (datetime.utcnow() - release.created_at).days > RELEASE_LOOKBACK_DAYS: continue recent_releases_count += 1 @@ -210,8 +222,7 @@ def recent_releases_count_dict(ghw: GithubWrapper, name: str) -> dict: days_since_creation = PopularityMetrics.created_since_days(ghw, name) * 30 if days_since_creation: total_tags = repo.get_tags().totalCount - estimated_tags = round( - (total_tags / days_since_creation) * RELEASE_LOOKBACK_DAYS) + estimated_tags = round((total_tags / days_since_creation) * RELEASE_LOOKBACK_DAYS) recent_releases_adjusted_count = recent_releases_count if not recent_releases_count: @@ -220,7 +231,7 @@ def recent_releases_count_dict(ghw: GithubWrapper, name: str) -> dict: return { "_pop_recent_releases_count": recent_releases_count, "_pop_recent_releases_estimated_tags": estimated_tags, - "_pop_recent_releases_adjusted_count": recent_releases_adjusted_count # TODO: review need and name + "_pop_recent_releases_adjusted_count": recent_releases_adjusted_count, # TODO: review need and name } @staticmethod @@ -231,7 +242,7 @@ def comment_frequency(ghw: GithubWrapper, name: str) -> dict: repo = ghw.get_repo(name) issues_since_time = datetime.utcnow() - timedelta(days=ISSUE_LOOKBACK_DAYS) # NOTE: get_issues includes PR's - issue_count = repo.get_issues(state='all', since=issues_since_time).totalCount + issue_count = repo.get_issues(state="all", since=issues_since_time).totalCount try: comment_count = repo.get_issues_comments(since=issues_since_time).totalCount diff --git a/src/library/render.py b/src/library/render.py index d35fe83..880ba5a 100644 --- a/src/library/render.py +++ b/src/library/render.py @@ -116,14 +116,17 @@ def process(df_input: pd.DataFrame, token_list: List[str]) -> pd.DataFrame: _column_apply(df, "_organization", "_repopath", lambda x: x.split("/")[0]) _column_apply(df, "_updated_at", "_repopath", lambda x: ghw.get_repo(x).updated_at.date()) _column_apply(df, "_created_at", "_repopath", lambda x: ghw.get_repo(x).created_at.date()) - _column_apply(df, "_age_weeks", "_repopath", - lambda x: (datetime.now().date() - ghw.get_repo(x).created_at.date()).days // 7 - ) - _column_apply(df, "_stars_per_week", "_repopath", - lambda x: ghw.get_repo(x).stargazers_count - * 7 - / (datetime.now().date() - ghw.get_repo(x).created_at.date()).days - ) + _column_apply( + df, "_age_weeks", "_repopath", lambda x: (datetime.now().date() - ghw.get_repo(x).created_at.date()).days // 7 + ) + _column_apply( + df, + "_stars_per_week", + "_repopath", + lambda x: ghw.get_repo(x).stargazers_count + * 7 + / (datetime.now().date() - ghw.get_repo(x).created_at.date()).days, + ) timing_lookup = datetime.now() - t0 logger.info(f"Timing: {timing_lookup.total_seconds()=}") @@ -142,43 +145,34 @@ def process(df_input: pd.DataFrame, token_list: List[str]) -> pd.DataFrame: ghw = GithubWrapper(token_list) t0 = datetime.now() - df["_pop_contributor_count"] = df["_repopath"].apply( - lambda x: pop_metrics.contributor_count(ghw, x) - ) + df["_pop_contributor_count"] = df["_repopath"].apply(lambda x: pop_metrics.contributor_count(ghw, x)) # TODO: optimise contributor_orgs_dict # Long, many interations thru repo contibutors for company info # Can rate limit, esp if sleep < 2sec - df_pop_contributor_orgs_dict = df.apply(lambda row: pop_metrics.contributor_orgs_dict(ghw, row["_repopath"]), - axis="columns", result_type="expand") + df_pop_contributor_orgs_dict = df.apply( + lambda row: pop_metrics.contributor_orgs_dict(ghw, row["_repopath"]), axis="columns", result_type="expand" + ) df = pd.concat([df, df_pop_contributor_orgs_dict], axis="columns") - df["_pop_commit_frequency"] = df["_repopath"].apply( - lambda x: pop_metrics.commit_frequency(ghw, x) - ) + df["_pop_commit_frequency"] = df["_repopath"].apply(lambda x: pop_metrics.commit_frequency(ghw, x)) - df["_pop_updated_issues_count"] = df["_repopath"].apply( - lambda x: pop_metrics.updated_issues_count(ghw, x) - ) + df["_pop_updated_issues_count"] = df["_repopath"].apply(lambda x: pop_metrics.updated_issues_count(ghw, x)) - df["_pop_closed_issues_count"] = df["_repopath"].apply( - lambda x: pop_metrics.closed_issues_count(ghw, x) - ) + df["_pop_closed_issues_count"] = df["_repopath"].apply(lambda x: pop_metrics.closed_issues_count(ghw, x)) - df["_pop_created_since_days"] = df["_repopath"].apply( - lambda x: pop_metrics.created_since_days(ghw, x) - ) + df["_pop_created_since_days"] = df["_repopath"].apply(lambda x: pop_metrics.created_since_days(ghw, x)) - df["_pop_updated_since_days"] = df["_repopath"].apply( - lambda x: pop_metrics.updated_since_days(ghw, x) - ) + df["_pop_updated_since_days"] = df["_repopath"].apply(lambda x: pop_metrics.updated_since_days(ghw, x)) - df_pop_recent_releases_count = df.apply(lambda row: pop_metrics.recent_releases_count_dict(ghw, row["_repopath"]), - axis="columns", result_type="expand") + df_pop_recent_releases_count = df.apply( + lambda row: pop_metrics.recent_releases_count_dict(ghw, row["_repopath"]), axis="columns", result_type="expand" + ) df = pd.concat([df, df_pop_recent_releases_count], axis="columns") - df_pop_comment_frequency = df.apply(lambda row: pop_metrics.comment_frequency(ghw, row["_repopath"]), - axis="columns", result_type="expand") + df_pop_comment_frequency = df.apply( + lambda row: pop_metrics.comment_frequency(ghw, row["_repopath"]), axis="columns", result_type="expand" + ) df = pd.concat([df, df_pop_comment_frequency], axis="columns") timing_pop = datetime.now() - t0 @@ -190,6 +184,7 @@ def process(df_input: pd.DataFrame, token_list: List[str]) -> pd.DataFrame: logger.info(f"Write temp process results to csv...") df.to_csv("_temp_df_process.csv") import json + with open("_temp_df_process.json", "w") as f: json_results = df.to_json(orient="table", double_precision=2) data = json.loads(json_results) @@ -197,9 +192,7 @@ def process(df_input: pd.DataFrame, token_list: List[str]) -> pd.DataFrame: # /TEMP: scorer = PopularityScorer() - df["_pop_score"] = df.apply( - lambda row: scorer.score(row), axis="columns" - ) + df["_pop_score"] = df.apply(lambda row: scorer.score(row), axis="columns") return df.sort_values("_pop_score", ascending=False) diff --git a/src/library/scorer.py b/src/library/scorer.py index 41efde0..316afc3 100644 --- a/src/library/scorer.py +++ b/src/library/scorer.py @@ -39,33 +39,35 @@ def _get_param_score(param, max_value, weight=1.0): parameter weight.""" return (math.log(1 + param) / math.log(1 + max(param, max_value))) * weight - total_weight = (CREATED_SINCE_WEIGHT + UPDATED_SINCE_WEIGHT + - CONTRIBUTOR_COUNT_WEIGHT + ORG_COUNT_WEIGHT + - COMMIT_FREQUENCY_WEIGHT + RECENT_RELEASES_WEIGHT + - CLOSED_ISSUES_WEIGHT + UPDATED_ISSUES_WEIGHT + - COMMENT_FREQUENCY_WEIGHT + STARS_PER_WEEK_WEIGHT) + total_weight = ( + CREATED_SINCE_WEIGHT + + UPDATED_SINCE_WEIGHT + + CONTRIBUTOR_COUNT_WEIGHT + + ORG_COUNT_WEIGHT + + COMMIT_FREQUENCY_WEIGHT + + RECENT_RELEASES_WEIGHT + + CLOSED_ISSUES_WEIGHT + + UPDATED_ISSUES_WEIGHT + + COMMENT_FREQUENCY_WEIGHT + + STARS_PER_WEEK_WEIGHT + ) - score_sum = ((_get_param_score(row['_pop_created_since_days'], - CREATED_SINCE_THRESHOLD, CREATED_SINCE_WEIGHT)) + - (_get_param_score(row['_pop_updated_since_days'], - UPDATED_SINCE_THRESHOLD, UPDATED_SINCE_WEIGHT)) + - (_get_param_score(row['_pop_contributor_count'], - CONTRIBUTOR_COUNT_THRESHOLD, CONTRIBUTOR_COUNT_WEIGHT)) + - (_get_param_score(row['_pop_contributor_orgs_len'], - ORG_COUNT_THRESHOLD, ORG_COUNT_WEIGHT)) + - (_get_param_score(row['_pop_commit_frequency'], - COMMIT_FREQUENCY_THRESHOLD, COMMIT_FREQUENCY_WEIGHT)) + - (_get_param_score(row['_pop_recent_releases_adjusted_count'], - RECENT_RELEASES_THRESHOLD, RECENT_RELEASES_WEIGHT)) + - (_get_param_score(row['_pop_closed_issues_count'], - CLOSED_ISSUES_THRESHOLD, CLOSED_ISSUES_WEIGHT)) + - (_get_param_score(row['_pop_updated_issues_count'], - UPDATED_ISSUES_THRESHOLD, UPDATED_ISSUES_WEIGHT)) + - (_get_param_score(row['_pop_comment_frequency'], - COMMENT_FREQUENCY_THRESHOLD, COMMENT_FREQUENCY_WEIGHT)) + - (_get_param_score(row['_stars_per_week'], - STARS_PER_WEEK_THRESHOLD, STARS_PER_WEEK_WEIGHT)) - ) + score_sum = ( + (_get_param_score(row["_pop_created_since_days"], CREATED_SINCE_THRESHOLD, CREATED_SINCE_WEIGHT)) + + (_get_param_score(row["_pop_updated_since_days"], UPDATED_SINCE_THRESHOLD, UPDATED_SINCE_WEIGHT)) + + (_get_param_score(row["_pop_contributor_count"], CONTRIBUTOR_COUNT_THRESHOLD, CONTRIBUTOR_COUNT_WEIGHT)) + + (_get_param_score(row["_pop_contributor_orgs_len"], ORG_COUNT_THRESHOLD, ORG_COUNT_WEIGHT)) + + (_get_param_score(row["_pop_commit_frequency"], COMMIT_FREQUENCY_THRESHOLD, COMMIT_FREQUENCY_WEIGHT)) + + ( + _get_param_score( + row["_pop_recent_releases_adjusted_count"], RECENT_RELEASES_THRESHOLD, RECENT_RELEASES_WEIGHT + ) + ) + + (_get_param_score(row["_pop_closed_issues_count"], CLOSED_ISSUES_THRESHOLD, CLOSED_ISSUES_WEIGHT)) + + (_get_param_score(row["_pop_updated_issues_count"], UPDATED_ISSUES_THRESHOLD, UPDATED_ISSUES_WEIGHT)) + + (_get_param_score(row["_pop_comment_frequency"], COMMENT_FREQUENCY_THRESHOLD, COMMENT_FREQUENCY_WEIGHT)) + + (_get_param_score(row["_stars_per_week"], STARS_PER_WEEK_THRESHOLD, STARS_PER_WEEK_WEIGHT)) + ) criticality_score = round(100 * score_sum / total_weight, 5) logger.trace(f"Calculated {criticality_score=} for {row['_repopath']}") diff --git a/tests/test_render.py b/tests/test_render.py index 2f95838..6de361c 100644 --- a/tests/test_render.py +++ b/tests/test_render.py @@ -27,16 +27,40 @@ def test_render_process(): assert len(df) == len(df_input), "Unexpected number of rows" # logger.warning(f"{df.columns=}") - assert list(df.columns) == ["category", "githuburl", "featured", "links", "description", - "_repopath", "_reponame", "_stars", "_forks", "_watches", "_language", - "_homepage", "_description", "_organization", "_updated_at", - "_created_at", "_age_weeks", "_stars_per_week", "_topics", - "_last_commit_date", "_pop_contributor_count", - "_pop_contributor_orgs_len", "_pop_commit_frequency", - "_pop_updated_issues_count", "_pop_closed_issues_count", - "_pop_created_since_days", "_pop_updated_since_days", - "_pop_recent_releases_count", "_pop_recent_releases_estimated_tags", - "_pop_recent_releases_adjusted_count", "_pop_issue_count", - "_pop_comment_count", "_pop_comment_count_lookback_days", - "_pop_comment_frequency", "_pop_score" - ] + assert list(df.columns) == [ + "category", + "githuburl", + "featured", + "links", + "description", + "_repopath", + "_reponame", + "_stars", + "_forks", + "_watches", + "_language", + "_homepage", + "_description", + "_organization", + "_updated_at", + "_created_at", + "_age_weeks", + "_stars_per_week", + "_topics", + "_last_commit_date", + "_pop_contributor_count", + "_pop_contributor_orgs_len", + "_pop_commit_frequency", + "_pop_updated_issues_count", + "_pop_closed_issues_count", + "_pop_created_since_days", + "_pop_updated_since_days", + "_pop_recent_releases_count", + "_pop_recent_releases_estimated_tags", + "_pop_recent_releases_adjusted_count", + "_pop_issue_count", + "_pop_comment_count", + "_pop_comment_count_lookback_days", + "_pop_comment_frequency", + "_pop_score", + ] From c049ace55b3bbec7a312fab0155b698e579033ae Mon Sep 17 00:00:00 2001 From: Dylan Hogg Date: Sun, 5 Mar 2023 15:16:38 +1100 Subject: [PATCH 17/20] Popularity score updates and UI min json. --- client/Makefile | 4 ++-- client/app/app.html | 4 ++-- client/app/app.js | 35 +++++++++++++++++++++++------------ github_data.ui.min.json | 1 + src/library/crawler.py | 19 ++++++++++++++++--- 5 files changed, 44 insertions(+), 19 deletions(-) create mode 100644 github_data.ui.min.json diff --git a/client/Makefile b/client/Makefile index 0aede23..8ea4cf4 100644 --- a/client/Makefile +++ b/client/Makefile @@ -14,8 +14,7 @@ serve-local-app: ## Copy processed data to local client for testing copy-data-local-app: remove-data-local-app - cp ../github_data.json app/ - cp ../github_data.min.json app/ + cp ../github_data.ui.min.json app/ cp ../github_tags_data.json app/ cp -r ../data app/data @@ -23,6 +22,7 @@ copy-data-local-app: remove-data-local-app remove-data-local-app: rm app/github_data.json || true rm app/github_data.min.json || true + rm app/github_data.ui.min.json || true rm -rf app/data ## Browse local js client diff --git a/client/app/app.html b/client/app/app.html index 1f4f5c3..63c358b 100644 --- a/client/app/app.html +++ b/client/app/app.html @@ -12,7 +12,7 @@ - + @@ -31,7 +31,7 @@ - +